blob: ec38a18c7fab965630646818564c4ba8c35faefe [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>
Ingo Molnar3f07c012017-02-08 18:51:30 +010029#include <linux/sched/signal.h>
Paul Gortmakeracf3368f2011-05-27 09:47:43 -040030#include <linux/module.h>
Mike Christie8eb00532007-02-28 17:32:19 -060031#include <asm/unaligned.h>
Mike Christie7996a772006-04-06 21:13:41 -050032#include <net/tcp.h>
33#include <scsi/scsi_cmnd.h>
34#include <scsi/scsi_device.h>
35#include <scsi/scsi_eh.h>
36#include <scsi/scsi_tcq.h>
37#include <scsi/scsi_host.h>
38#include <scsi/scsi.h>
39#include <scsi/iscsi_proto.h>
40#include <scsi/scsi_transport.h>
41#include <scsi/scsi_transport_iscsi.h>
42#include <scsi/libiscsi.h>
43
Erez Zilberbd2199d2009-06-15 22:11:10 -050044static int iscsi_dbg_lib_conn;
45module_param_named(debug_libiscsi_conn, iscsi_dbg_lib_conn, int,
46 S_IRUGO | S_IWUSR);
47MODULE_PARM_DESC(debug_libiscsi_conn,
48 "Turn on debugging for connections in libiscsi module. "
49 "Set to 1 to turn on, and zero to turn off. Default is off.");
50
51static int iscsi_dbg_lib_session;
52module_param_named(debug_libiscsi_session, iscsi_dbg_lib_session, int,
53 S_IRUGO | S_IWUSR);
54MODULE_PARM_DESC(debug_libiscsi_session,
55 "Turn on debugging for sessions in libiscsi module. "
56 "Set to 1 to turn on, and zero to turn off. Default is off.");
57
58static int iscsi_dbg_lib_eh;
59module_param_named(debug_libiscsi_eh, iscsi_dbg_lib_eh, int,
60 S_IRUGO | S_IWUSR);
61MODULE_PARM_DESC(debug_libiscsi_eh,
62 "Turn on debugging for error handling in libiscsi module. "
63 "Set to 1 to turn on, and zero to turn off. Default is off.");
Mike Christie1b2c7af2009-03-05 14:45:58 -060064
65#define ISCSI_DBG_CONN(_conn, dbg_fmt, arg...) \
66 do { \
Erez Zilberbd2199d2009-06-15 22:11:10 -050067 if (iscsi_dbg_lib_conn) \
Mike Christie1b2c7af2009-03-05 14:45:58 -060068 iscsi_conn_printk(KERN_INFO, _conn, \
69 "%s " dbg_fmt, \
70 __func__, ##arg); \
71 } while (0);
72
73#define ISCSI_DBG_SESSION(_session, dbg_fmt, arg...) \
74 do { \
Erez Zilberbd2199d2009-06-15 22:11:10 -050075 if (iscsi_dbg_lib_session) \
76 iscsi_session_printk(KERN_INFO, _session, \
77 "%s " dbg_fmt, \
78 __func__, ##arg); \
79 } while (0);
80
81#define ISCSI_DBG_EH(_session, dbg_fmt, arg...) \
82 do { \
83 if (iscsi_dbg_lib_eh) \
Mike Christie1b2c7af2009-03-05 14:45:58 -060084 iscsi_session_printk(KERN_INFO, _session, \
85 "%s " dbg_fmt, \
86 __func__, ##arg); \
87 } while (0);
88
Mike Christie32ae7632009-03-05 14:46:03 -060089inline void iscsi_conn_queue_work(struct iscsi_conn *conn)
90{
91 struct Scsi_Host *shost = conn->session->host;
92 struct iscsi_host *ihost = shost_priv(shost);
93
Mike Christie1336aed2009-05-13 17:57:48 -050094 if (ihost->workq)
95 queue_work(ihost->workq, &conn->xmitwork);
Mike Christie32ae7632009-03-05 14:46:03 -060096}
97EXPORT_SYMBOL_GPL(iscsi_conn_queue_work);
98
Mike Christie4c0ba5d2009-09-05 07:34:23 +053099static void __iscsi_update_cmdsn(struct iscsi_session *session,
100 uint32_t exp_cmdsn, uint32_t max_cmdsn)
Mike Christie7996a772006-04-06 21:13:41 -0500101{
Mike Christie77a23c22007-05-30 12:57:18 -0500102 /*
103 * standard specifies this check for when to update expected and
104 * max sequence numbers
105 */
106 if (iscsi_sna_lt(max_cmdsn, exp_cmdsn - 1))
107 return;
108
109 if (exp_cmdsn != session->exp_cmdsn &&
110 !iscsi_sna_lt(exp_cmdsn, session->exp_cmdsn))
Mike Christie7996a772006-04-06 21:13:41 -0500111 session->exp_cmdsn = exp_cmdsn;
112
Mike Christie77a23c22007-05-30 12:57:18 -0500113 if (max_cmdsn != session->max_cmdsn &&
Mike Christie46a84c62014-02-07 00:41:39 -0600114 !iscsi_sna_lt(max_cmdsn, session->max_cmdsn))
Mike Christie77a23c22007-05-30 12:57:18 -0500115 session->max_cmdsn = max_cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -0500116}
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530117
118void iscsi_update_cmdsn(struct iscsi_session *session, struct iscsi_nopin *hdr)
119{
120 __iscsi_update_cmdsn(session, be32_to_cpu(hdr->exp_cmdsn),
121 be32_to_cpu(hdr->max_cmdsn));
122}
Mike Christie77a23c22007-05-30 12:57:18 -0500123EXPORT_SYMBOL_GPL(iscsi_update_cmdsn);
Mike Christie7996a772006-04-06 21:13:41 -0500124
Mike Christie577577d2008-12-02 00:32:05 -0600125/**
126 * iscsi_prep_data_out_pdu - initialize Data-Out
127 * @task: scsi command task
128 * @r2t: R2T info
129 * @hdr: iscsi data in pdu
130 *
131 * Notes:
132 * Initialize Data-Out within this R2T sequence and finds
133 * proper data_offset within this SCSI command.
134 *
135 * This function is called with connection lock taken.
136 **/
137void iscsi_prep_data_out_pdu(struct iscsi_task *task, struct iscsi_r2t_info *r2t,
138 struct iscsi_data *hdr)
Mike Christie7996a772006-04-06 21:13:41 -0500139{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500140 struct iscsi_conn *conn = task->conn;
Mike Christie577577d2008-12-02 00:32:05 -0600141 unsigned int left = r2t->data_length - r2t->sent;
142
143 task->hdr_len = sizeof(struct iscsi_data);
Mike Christie7996a772006-04-06 21:13:41 -0500144
145 memset(hdr, 0, sizeof(struct iscsi_data));
Mike Christie577577d2008-12-02 00:32:05 -0600146 hdr->ttt = r2t->ttt;
147 hdr->datasn = cpu_to_be32(r2t->datasn);
148 r2t->datasn++;
Mike Christie7996a772006-04-06 21:13:41 -0500149 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Andy Grover55bdabd2011-06-16 15:57:09 -0700150 hdr->lun = task->lun;
Mike Christie577577d2008-12-02 00:32:05 -0600151 hdr->itt = task->hdr_itt;
152 hdr->exp_statsn = r2t->exp_statsn;
153 hdr->offset = cpu_to_be32(r2t->data_offset + r2t->sent);
154 if (left > conn->max_xmit_dlength) {
Mike Christie7996a772006-04-06 21:13:41 -0500155 hton24(hdr->dlength, conn->max_xmit_dlength);
Mike Christie577577d2008-12-02 00:32:05 -0600156 r2t->data_count = conn->max_xmit_dlength;
Mike Christie7996a772006-04-06 21:13:41 -0500157 hdr->flags = 0;
158 } else {
Mike Christie577577d2008-12-02 00:32:05 -0600159 hton24(hdr->dlength, left);
160 r2t->data_count = left;
Mike Christie7996a772006-04-06 21:13:41 -0500161 hdr->flags = ISCSI_FLAG_CMD_FINAL;
162 }
Mike Christie577577d2008-12-02 00:32:05 -0600163 conn->dataout_pdus_cnt++;
Mike Christie7996a772006-04-06 21:13:41 -0500164}
Mike Christie577577d2008-12-02 00:32:05 -0600165EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu);
Mike Christie7996a772006-04-06 21:13:41 -0500166
Mike Christie9c19a7d2008-05-21 15:54:09 -0500167static int iscsi_add_hdr(struct iscsi_task *task, unsigned len)
Boaz Harrosh004d6532007-12-13 12:43:23 -0600168{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500169 unsigned exp_len = task->hdr_len + len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600170
Mike Christie9c19a7d2008-05-21 15:54:09 -0500171 if (exp_len > task->hdr_max) {
Boaz Harrosh004d6532007-12-13 12:43:23 -0600172 WARN_ON(1);
173 return -EINVAL;
174 }
175
176 WARN_ON(len & (ISCSI_PAD_LEN - 1)); /* caller must pad the AHS */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500177 task->hdr_len = exp_len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600178 return 0;
179}
180
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500181/*
182 * make an extended cdb AHS
183 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500184static int iscsi_prep_ecdb_ahs(struct iscsi_task *task)
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500185{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500186 struct scsi_cmnd *cmd = task->sc;
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500187 unsigned rlen, pad_len;
188 unsigned short ahslength;
189 struct iscsi_ecdb_ahdr *ecdb_ahdr;
190 int rc;
191
Mike Christie9c19a7d2008-05-21 15:54:09 -0500192 ecdb_ahdr = iscsi_next_hdr(task);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500193 rlen = cmd->cmd_len - ISCSI_CDB_SIZE;
194
195 BUG_ON(rlen > sizeof(ecdb_ahdr->ecdb));
196 ahslength = rlen + sizeof(ecdb_ahdr->reserved);
197
198 pad_len = iscsi_padding(rlen);
199
Mike Christie9c19a7d2008-05-21 15:54:09 -0500200 rc = iscsi_add_hdr(task, sizeof(ecdb_ahdr->ahslength) +
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500201 sizeof(ecdb_ahdr->ahstype) + ahslength + pad_len);
202 if (rc)
203 return rc;
204
205 if (pad_len)
206 memset(&ecdb_ahdr->ecdb[rlen], 0, pad_len);
207
208 ecdb_ahdr->ahslength = cpu_to_be16(ahslength);
209 ecdb_ahdr->ahstype = ISCSI_AHSTYPE_CDB;
210 ecdb_ahdr->reserved = 0;
211 memcpy(ecdb_ahdr->ecdb, cmd->cmnd + ISCSI_CDB_SIZE, rlen);
212
Mike Christie1b2c7af2009-03-05 14:45:58 -0600213 ISCSI_DBG_SESSION(task->conn->session,
214 "iscsi_prep_ecdb_ahs: varlen_cdb_len %d "
215 "rlen %d pad_len %d ahs_length %d iscsi_headers_size "
216 "%u\n", cmd->cmd_len, rlen, pad_len, ahslength,
217 task->hdr_len);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500218 return 0;
219}
220
Mike Christie9c19a7d2008-05-21 15:54:09 -0500221static int iscsi_prep_bidi_ahs(struct iscsi_task *task)
Boaz Harroshc07d4442008-04-18 10:11:52 -0500222{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500223 struct scsi_cmnd *sc = task->sc;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500224 struct iscsi_rlength_ahdr *rlen_ahdr;
225 int rc;
226
Mike Christie9c19a7d2008-05-21 15:54:09 -0500227 rlen_ahdr = iscsi_next_hdr(task);
228 rc = iscsi_add_hdr(task, sizeof(*rlen_ahdr));
Boaz Harroshc07d4442008-04-18 10:11:52 -0500229 if (rc)
230 return rc;
231
232 rlen_ahdr->ahslength =
233 cpu_to_be16(sizeof(rlen_ahdr->read_length) +
234 sizeof(rlen_ahdr->reserved));
235 rlen_ahdr->ahstype = ISCSI_AHSTYPE_RLENGTH;
236 rlen_ahdr->reserved = 0;
237 rlen_ahdr->read_length = cpu_to_be32(scsi_in(sc)->length);
238
Mike Christie1b2c7af2009-03-05 14:45:58 -0600239 ISCSI_DBG_SESSION(task->conn->session,
240 "bidi-in rlen_ahdr->read_length(%d) "
241 "rlen_ahdr->ahslength(%d)\n",
242 be32_to_cpu(rlen_ahdr->read_length),
243 be16_to_cpu(rlen_ahdr->ahslength));
Boaz Harroshc07d4442008-04-18 10:11:52 -0500244 return 0;
245}
246
Mike Christie7996a772006-04-06 21:13:41 -0500247/**
Mike Christie5d12c052009-11-11 16:34:32 -0600248 * iscsi_check_tmf_restrictions - check if a task is affected by TMF
249 * @task: iscsi task
250 * @opcode: opcode to check for
251 *
252 * During TMF a task has to be checked if it's affected.
253 * All unrelated I/O can be passed through, but I/O to the
254 * affected LUN should be restricted.
255 * If 'fast_abort' is set we won't be sending any I/O to the
256 * affected LUN.
257 * Otherwise the target is waiting for all TTTs to be completed,
258 * so we have to send all outstanding Data-Out PDUs to the target.
259 */
260static int iscsi_check_tmf_restrictions(struct iscsi_task *task, int opcode)
261{
262 struct iscsi_conn *conn = task->conn;
263 struct iscsi_tm *tmf = &conn->tmhdr;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200264 u64 hdr_lun;
Mike Christie5d12c052009-11-11 16:34:32 -0600265
266 if (conn->tmf_state == TMF_INITIAL)
267 return 0;
268
269 if ((tmf->opcode & ISCSI_OPCODE_MASK) != ISCSI_OP_SCSI_TMFUNC)
270 return 0;
271
272 switch (ISCSI_TM_FUNC_VALUE(tmf)) {
273 case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET:
274 /*
275 * Allow PDUs for unrelated LUNs
276 */
Andy Grover55bdabd2011-06-16 15:57:09 -0700277 hdr_lun = scsilun_to_int(&tmf->lun);
Mike Christie5d12c052009-11-11 16:34:32 -0600278 if (hdr_lun != task->sc->device->lun)
279 return 0;
Mike Christie3fe5ae82009-11-11 16:34:33 -0600280 /* fall through */
281 case ISCSI_TM_FUNC_TARGET_WARM_RESET:
Mike Christie5d12c052009-11-11 16:34:32 -0600282 /*
283 * Fail all SCSI cmd PDUs
284 */
285 if (opcode != ISCSI_OP_SCSI_DATA_OUT) {
286 iscsi_conn_printk(KERN_INFO, conn,
287 "task [op %x/%x itt "
Mike Christie3fe5ae82009-11-11 16:34:33 -0600288 "0x%x/0x%x] "
Mike Christie5d12c052009-11-11 16:34:32 -0600289 "rejected.\n",
290 task->hdr->opcode, opcode,
Mike Christie3fe5ae82009-11-11 16:34:33 -0600291 task->itt, task->hdr_itt);
Mike Christie5d12c052009-11-11 16:34:32 -0600292 return -EACCES;
293 }
294 /*
295 * And also all data-out PDUs in response to R2T
296 * if fast_abort is set.
297 */
298 if (conn->session->fast_abort) {
299 iscsi_conn_printk(KERN_INFO, conn,
300 "task [op %x/%x itt "
Mike Christie3fe5ae82009-11-11 16:34:33 -0600301 "0x%x/0x%x] fast abort.\n",
Mike Christie5d12c052009-11-11 16:34:32 -0600302 task->hdr->opcode, opcode,
Mike Christie3fe5ae82009-11-11 16:34:33 -0600303 task->itt, task->hdr_itt);
Mike Christie5d12c052009-11-11 16:34:32 -0600304 return -EACCES;
305 }
306 break;
307 case ISCSI_TM_FUNC_ABORT_TASK:
308 /*
309 * the caller has already checked if the task
310 * they want to abort was in the pending queue so if
311 * we are here the cmd pdu has gone out already, and
312 * we will only hit this for data-outs
313 */
314 if (opcode == ISCSI_OP_SCSI_DATA_OUT &&
315 task->hdr_itt == tmf->rtt) {
316 ISCSI_DBG_SESSION(conn->session,
317 "Preventing task %x/%x from sending "
318 "data-out due to abort task in "
319 "progress\n", task->itt,
320 task->hdr_itt);
321 return -EACCES;
322 }
323 break;
324 }
325
326 return 0;
327}
328
329/**
Mike Christie7996a772006-04-06 21:13:41 -0500330 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
Mike Christie9c19a7d2008-05-21 15:54:09 -0500331 * @task: iscsi task
Mike Christie7996a772006-04-06 21:13:41 -0500332 *
333 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
334 * fields like dlength or final based on how much data it sends
335 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500336static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task *task)
Mike Christie7996a772006-04-06 21:13:41 -0500337{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500338 struct iscsi_conn *conn = task->conn;
Mike Christie7996a772006-04-06 21:13:41 -0500339 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500340 struct scsi_cmnd *sc = task->sc;
Nicholas Bellinger12352182011-05-27 11:16:33 +0000341 struct iscsi_scsi_req *hdr;
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300342 unsigned hdrlength, cmd_len, transfer_length;
Mike Christie262ef632008-12-02 00:32:13 -0600343 itt_t itt;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600344 int rc;
Mike Christie7996a772006-04-06 21:13:41 -0500345
Mike Christie5d12c052009-11-11 16:34:32 -0600346 rc = iscsi_check_tmf_restrictions(task, ISCSI_OP_SCSI_CMD);
347 if (rc)
348 return rc;
349
Mike Christie184b57c2009-05-13 17:57:39 -0500350 if (conn->session->tt->alloc_pdu) {
351 rc = conn->session->tt->alloc_pdu(task, ISCSI_OP_SCSI_CMD);
352 if (rc)
353 return rc;
354 }
Nicholas Bellinger12352182011-05-27 11:16:33 +0000355 hdr = (struct iscsi_scsi_req *)task->hdr;
Mike Christie262ef632008-12-02 00:32:13 -0600356 itt = hdr->itt;
Mike Christie577577d2008-12-02 00:32:05 -0600357 memset(hdr, 0, sizeof(*hdr));
358
Mike Christie2ff79d52008-12-02 00:32:14 -0600359 if (session->tt->parse_pdu_itt)
360 hdr->itt = task->hdr_itt = itt;
361 else
362 hdr->itt = task->hdr_itt = build_itt(task->itt,
363 task->conn->session->age);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500364 task->hdr_len = 0;
365 rc = iscsi_add_hdr(task, sizeof(*hdr));
Boaz Harrosh004d6532007-12-13 12:43:23 -0600366 if (rc)
367 return rc;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600368 hdr->opcode = ISCSI_OP_SCSI_CMD;
369 hdr->flags = ISCSI_ATTR_SIMPLE;
Andy Grover55bdabd2011-06-16 15:57:09 -0700370 int_to_scsilun(sc->device->lun, &hdr->lun);
371 task->lun = hdr->lun;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600372 hdr->exp_statsn = cpu_to_be32(conn->exp_statsn);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500373 cmd_len = sc->cmd_len;
374 if (cmd_len < ISCSI_CDB_SIZE)
375 memset(&hdr->cdb[cmd_len], 0, ISCSI_CDB_SIZE - cmd_len);
376 else if (cmd_len > ISCSI_CDB_SIZE) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500377 rc = iscsi_prep_ecdb_ahs(task);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500378 if (rc)
379 return rc;
380 cmd_len = ISCSI_CDB_SIZE;
381 }
382 memcpy(hdr->cdb, sc->cmnd, cmd_len);
Mike Christie7996a772006-04-06 21:13:41 -0500383
Mike Christie9c19a7d2008-05-21 15:54:09 -0500384 task->imm_count = 0;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500385 if (scsi_bidi_cmnd(sc)) {
386 hdr->flags |= ISCSI_FLAG_CMD_READ;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500387 rc = iscsi_prep_bidi_ahs(task);
Boaz Harroshc07d4442008-04-18 10:11:52 -0500388 if (rc)
389 return rc;
390 }
Sagi Grimberg55e51ed2014-03-05 19:43:49 +0200391
392 if (scsi_get_prot_op(sc) != SCSI_PROT_NORMAL)
393 task->protected = true;
394
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300395 transfer_length = scsi_transfer_length(sc);
396 hdr->data_length = cpu_to_be32(transfer_length);
Mike Christie7996a772006-04-06 21:13:41 -0500397 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Mike Christie577577d2008-12-02 00:32:05 -0600398 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
399
Mike Christie7996a772006-04-06 21:13:41 -0500400 hdr->flags |= ISCSI_FLAG_CMD_WRITE;
401 /*
402 * Write counters:
403 *
404 * imm_count bytes to be sent right after
405 * SCSI PDU Header
406 *
407 * unsol_count bytes(as Data-Out) to be sent
408 * without R2T ack right after
409 * immediate data
410 *
Mike Christie577577d2008-12-02 00:32:05 -0600411 * r2t data_length bytes to be sent via R2T ack's
Mike Christie7996a772006-04-06 21:13:41 -0500412 *
413 * pad_count bytes to be sent as zero-padding
414 */
Mike Christie577577d2008-12-02 00:32:05 -0600415 memset(r2t, 0, sizeof(*r2t));
Mike Christie7996a772006-04-06 21:13:41 -0500416
417 if (session->imm_data_en) {
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300418 if (transfer_length >= session->first_burst)
Mike Christie9c19a7d2008-05-21 15:54:09 -0500419 task->imm_count = min(session->first_burst,
Mike Christie7996a772006-04-06 21:13:41 -0500420 conn->max_xmit_dlength);
421 else
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300422 task->imm_count = min(transfer_length,
423 conn->max_xmit_dlength);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500424 hton24(hdr->dlength, task->imm_count);
Mike Christie7996a772006-04-06 21:13:41 -0500425 } else
Olaf Kircha8ac6312007-12-13 12:43:35 -0600426 zero_data(hdr->dlength);
Mike Christie7996a772006-04-06 21:13:41 -0500427
Mike Christieffd04362006-08-31 18:09:24 -0400428 if (!session->initial_r2t_en) {
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300429 r2t->data_length = min(session->first_burst,
430 transfer_length) -
Mike Christie577577d2008-12-02 00:32:05 -0600431 task->imm_count;
432 r2t->data_offset = task->imm_count;
433 r2t->ttt = cpu_to_be32(ISCSI_RESERVED_TAG);
434 r2t->exp_statsn = cpu_to_be32(conn->exp_statsn);
Mike Christieffd04362006-08-31 18:09:24 -0400435 }
436
Mike Christie577577d2008-12-02 00:32:05 -0600437 if (!task->unsol_r2t.data_length)
Mike Christie7996a772006-04-06 21:13:41 -0500438 /* No unsolicit Data-Out's */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600439 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Mike Christie7996a772006-04-06 21:13:41 -0500440 } else {
Mike Christie7996a772006-04-06 21:13:41 -0500441 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
442 zero_data(hdr->dlength);
443
444 if (sc->sc_data_direction == DMA_FROM_DEVICE)
445 hdr->flags |= ISCSI_FLAG_CMD_READ;
446 }
447
Boaz Harrosh004d6532007-12-13 12:43:23 -0600448 /* calculate size of additional header segments (AHSs) */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500449 hdrlength = task->hdr_len - sizeof(*hdr);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600450
451 WARN_ON(hdrlength & (ISCSI_PAD_LEN-1));
452 hdrlength /= ISCSI_PAD_LEN;
453
454 WARN_ON(hdrlength >= 256);
455 hdr->hlength = hdrlength & 0xFF;
Mike Christie96b1f962010-04-24 16:21:19 -0500456 hdr->cmdsn = task->cmdsn = cpu_to_be32(session->cmdsn);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600457
Mike Christie577577d2008-12-02 00:32:05 -0600458 if (session->tt->init_task && session->tt->init_task(task))
Mike Christie052d0142008-05-21 15:54:05 -0500459 return -EIO;
460
Mike Christie9c19a7d2008-05-21 15:54:09 -0500461 task->state = ISCSI_TASK_RUNNING;
Mike Christied3305f32009-08-20 15:10:58 -0500462 session->cmdsn++;
Mike Christie77a23c22007-05-30 12:57:18 -0500463
Olaf Kircha8ac6312007-12-13 12:43:35 -0600464 conn->scsicmd_pdus_cnt++;
Mike Christie1b2c7af2009-03-05 14:45:58 -0600465 ISCSI_DBG_SESSION(session, "iscsi prep [%s cid %d sc %p cdb 0x%x "
466 "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n",
467 scsi_bidi_cmnd(sc) ? "bidirectional" :
468 sc->sc_data_direction == DMA_TO_DEVICE ?
469 "write" : "read", conn->id, sc, sc->cmnd[0],
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300470 task->itt, transfer_length,
Mike Christie1b2c7af2009-03-05 14:45:58 -0600471 scsi_bidi_cmnd(sc) ? scsi_in(sc)->length : 0,
472 session->cmdsn,
473 session->max_cmdsn - session->exp_cmdsn + 1);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600474 return 0;
Mike Christie7996a772006-04-06 21:13:41 -0500475}
Mike Christie7996a772006-04-06 21:13:41 -0500476
477/**
Mike Christie3bbaaad2009-05-13 17:57:46 -0500478 * iscsi_free_task - free a task
Mike Christie9c19a7d2008-05-21 15:54:09 -0500479 * @task: iscsi cmd task
Mike Christie7996a772006-04-06 21:13:41 -0500480 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600481 * Must be called with session back_lock.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500482 * This function returns the scsi command to scsi-ml or cleans
483 * up mgmt tasks then returns the task to the pool.
Mike Christie7996a772006-04-06 21:13:41 -0500484 */
Mike Christie3bbaaad2009-05-13 17:57:46 -0500485static void iscsi_free_task(struct iscsi_task *task)
Mike Christie7996a772006-04-06 21:13:41 -0500486{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500487 struct iscsi_conn *conn = task->conn;
Mike Christiec1635cb2007-12-13 12:43:33 -0600488 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500489 struct scsi_cmnd *sc = task->sc;
Mike Christief41d4722010-12-31 02:22:21 -0600490 int oldstate = task->state;
Mike Christie7996a772006-04-06 21:13:41 -0500491
Mike Christie4421c9e2009-05-13 17:57:50 -0500492 ISCSI_DBG_SESSION(session, "freeing task itt 0x%x state %d sc %p\n",
493 task->itt, task->state, task->sc);
494
Mike Christie577577d2008-12-02 00:32:05 -0600495 session->tt->cleanup_task(task);
Mike Christie3bbaaad2009-05-13 17:57:46 -0500496 task->state = ISCSI_TASK_FREE;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500497 task->sc = NULL;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500498 /*
Mike Christie9c19a7d2008-05-21 15:54:09 -0500499 * login task is preallocated so do not free
Mike Christie3e5c28a2008-05-21 15:54:06 -0500500 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500501 if (conn->login_task == task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500502 return;
503
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800504 kfifo_in(&session->cmdpool.queue, (void*)&task, sizeof(void*));
Mike Christie052d0142008-05-21 15:54:05 -0500505
Mike Christie3e5c28a2008-05-21 15:54:06 -0500506 if (sc) {
Mike Christie3e5c28a2008-05-21 15:54:06 -0500507 /* SCSI eh reuses commands to verify us */
508 sc->SCp.ptr = NULL;
509 /*
Mike Christief41d4722010-12-31 02:22:21 -0600510 * queue command may call this to free the task, so
511 * it will decide how to return sc to scsi-ml.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500512 */
Mike Christief41d4722010-12-31 02:22:21 -0600513 if (oldstate != ISCSI_TASK_REQUEUE_SCSIQ)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500514 sc->scsi_done(sc);
515 }
Mike Christie7996a772006-04-06 21:13:41 -0500516}
517
Mike Christie913e5bf2008-05-21 15:54:18 -0500518void __iscsi_get_task(struct iscsi_task *task)
Mike Christie60ecebf2006-08-31 18:09:25 -0400519{
Elena Reshetova6dc618c2017-03-09 13:46:58 +0200520 refcount_inc(&task->refcount);
Mike Christie60ecebf2006-08-31 18:09:25 -0400521}
Mike Christie913e5bf2008-05-21 15:54:18 -0500522EXPORT_SYMBOL_GPL(__iscsi_get_task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400523
Eddie Wai8eea2f52010-11-23 15:29:21 -0800524void __iscsi_put_task(struct iscsi_task *task)
Mike Christie60ecebf2006-08-31 18:09:25 -0400525{
Elena Reshetova6dc618c2017-03-09 13:46:58 +0200526 if (refcount_dec_and_test(&task->refcount))
Mike Christie3bbaaad2009-05-13 17:57:46 -0500527 iscsi_free_task(task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400528}
Eddie Wai8eea2f52010-11-23 15:29:21 -0800529EXPORT_SYMBOL_GPL(__iscsi_put_task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400530
Mike Christie9c19a7d2008-05-21 15:54:09 -0500531void iscsi_put_task(struct iscsi_task *task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500532{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500533 struct iscsi_session *session = task->conn->session;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500534
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600535 /* regular RX path uses back_lock */
536 spin_lock_bh(&session->back_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500537 __iscsi_put_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600538 spin_unlock_bh(&session->back_lock);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500539}
Mike Christie9c19a7d2008-05-21 15:54:09 -0500540EXPORT_SYMBOL_GPL(iscsi_put_task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500541
Mike Christie3bbaaad2009-05-13 17:57:46 -0500542/**
543 * iscsi_complete_task - finish a task
544 * @task: iscsi cmd task
Mike Christieb3cd5052009-05-13 17:57:49 -0500545 * @state: state to complete task with
Mike Christie3bbaaad2009-05-13 17:57:46 -0500546 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600547 * Must be called with session back_lock.
Mike Christieb3a7ea82007-12-13 12:43:26 -0600548 */
Mike Christieb3cd5052009-05-13 17:57:49 -0500549static void iscsi_complete_task(struct iscsi_task *task, int state)
Mike Christieb3a7ea82007-12-13 12:43:26 -0600550{
Mike Christie3bbaaad2009-05-13 17:57:46 -0500551 struct iscsi_conn *conn = task->conn;
552
Mike Christie4421c9e2009-05-13 17:57:50 -0500553 ISCSI_DBG_SESSION(conn->session,
554 "complete task itt 0x%x state %d sc %p\n",
555 task->itt, task->state, task->sc);
Mike Christieb3cd5052009-05-13 17:57:49 -0500556 if (task->state == ISCSI_TASK_COMPLETED ||
557 task->state == ISCSI_TASK_ABRT_TMF ||
Mike Christief41d4722010-12-31 02:22:21 -0600558 task->state == ISCSI_TASK_ABRT_SESS_RECOV ||
559 task->state == ISCSI_TASK_REQUEUE_SCSIQ)
Mike Christie3bbaaad2009-05-13 17:57:46 -0500560 return;
561 WARN_ON_ONCE(task->state == ISCSI_TASK_FREE);
Mike Christieb3cd5052009-05-13 17:57:49 -0500562 task->state = state;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500563
564 if (!list_empty(&task->running))
565 list_del_init(&task->running);
566
567 if (conn->task == task)
568 conn->task = NULL;
569
570 if (conn->ping_task == task)
571 conn->ping_task = NULL;
572
573 /* release get from queueing */
574 __iscsi_put_task(task);
575}
576
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530577/**
578 * iscsi_complete_scsi_task - finish scsi task normally
579 * @task: iscsi task for scsi cmd
580 * @exp_cmdsn: expected cmd sn in cpu format
581 * @max_cmdsn: max cmd sn in cpu format
582 *
583 * This is used when drivers do not need or cannot perform
584 * lower level pdu processing.
585 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600586 * Called with session back_lock
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530587 */
588void iscsi_complete_scsi_task(struct iscsi_task *task,
589 uint32_t exp_cmdsn, uint32_t max_cmdsn)
590{
591 struct iscsi_conn *conn = task->conn;
592
593 ISCSI_DBG_SESSION(conn->session, "[itt 0x%x]\n", task->itt);
594
595 conn->last_recv = jiffies;
596 __iscsi_update_cmdsn(conn->session, exp_cmdsn, max_cmdsn);
597 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
598}
599EXPORT_SYMBOL_GPL(iscsi_complete_scsi_task);
600
601
Mike Christie3bbaaad2009-05-13 17:57:46 -0500602/*
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600603 * session back_lock must be held and if not called for a task that is
Mike Christie3bbaaad2009-05-13 17:57:46 -0500604 * still pending or from the xmit thread, then xmit thread must
605 * be suspended.
606 */
607static void fail_scsi_task(struct iscsi_task *task, int err)
608{
609 struct iscsi_conn *conn = task->conn;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600610 struct scsi_cmnd *sc;
Mike Christieb3cd5052009-05-13 17:57:49 -0500611 int state;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600612
Mike Christie3bbaaad2009-05-13 17:57:46 -0500613 /*
614 * if a command completes and we get a successful tmf response
615 * we will hit this because the scsi eh abort code does not take
616 * a ref to the task.
617 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500618 sc = task->sc;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600619 if (!sc)
620 return;
621
Mike Christieb3cd5052009-05-13 17:57:49 -0500622 if (task->state == ISCSI_TASK_PENDING) {
Mike Christieb3a7ea82007-12-13 12:43:26 -0600623 /*
624 * cmd never made it to the xmit thread, so we should not count
625 * the cmd in the sequencing
626 */
627 conn->session->queued_cmdsn--;
Mike Christieb3cd5052009-05-13 17:57:49 -0500628 /* it was never sent so just complete like normal */
629 state = ISCSI_TASK_COMPLETED;
630 } else if (err == DID_TRANSPORT_DISRUPTED)
631 state = ISCSI_TASK_ABRT_SESS_RECOV;
632 else
633 state = ISCSI_TASK_ABRT_TMF;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600634
Mike Christieb3cd5052009-05-13 17:57:49 -0500635 sc->result = err << 16;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500636 if (!scsi_bidi_cmnd(sc))
637 scsi_set_resid(sc, scsi_bufflen(sc));
638 else {
639 scsi_out(sc)->resid = scsi_out(sc)->length;
640 scsi_in(sc)->resid = scsi_in(sc)->length;
641 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500642
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600643 /* regular RX path uses back_lock */
644 spin_lock_bh(&conn->session->back_lock);
Mike Christieb3cd5052009-05-13 17:57:49 -0500645 iscsi_complete_task(task, state);
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600646 spin_unlock_bh(&conn->session->back_lock);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600647}
648
Mike Christie3e5c28a2008-05-21 15:54:06 -0500649static int iscsi_prep_mgmt_task(struct iscsi_conn *conn,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500650 struct iscsi_task *task)
Mike Christie052d0142008-05-21 15:54:05 -0500651{
652 struct iscsi_session *session = conn->session;
Mike Christie577577d2008-12-02 00:32:05 -0600653 struct iscsi_hdr *hdr = task->hdr;
Mike Christie052d0142008-05-21 15:54:05 -0500654 struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr;
Mike Christie4f704dc2009-11-11 16:34:31 -0600655 uint8_t opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Mike Christie052d0142008-05-21 15:54:05 -0500656
657 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
658 return -ENOTCONN;
659
Mike Christie4f704dc2009-11-11 16:34:31 -0600660 if (opcode != ISCSI_OP_LOGIN && opcode != ISCSI_OP_TEXT)
Mike Christie052d0142008-05-21 15:54:05 -0500661 nop->exp_statsn = cpu_to_be32(conn->exp_statsn);
662 /*
663 * pre-format CmdSN for outgoing PDU.
664 */
665 nop->cmdsn = cpu_to_be32(session->cmdsn);
666 if (hdr->itt != RESERVED_ITT) {
Mike Christie052d0142008-05-21 15:54:05 -0500667 /*
Mike Christie4f704dc2009-11-11 16:34:31 -0600668 * TODO: We always use immediate for normal session pdus.
Mike Christie052d0142008-05-21 15:54:05 -0500669 * If we start to send tmfs or nops as non-immediate then
670 * we should start checking the cmdsn numbers for mgmt tasks.
Mike Christie4f704dc2009-11-11 16:34:31 -0600671 *
672 * During discovery sessions iscsid sends TEXT as non immediate,
673 * but we always only send one PDU at a time.
Mike Christie052d0142008-05-21 15:54:05 -0500674 */
675 if (conn->c_stage == ISCSI_CONN_STARTED &&
676 !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
677 session->queued_cmdsn++;
678 session->cmdsn++;
679 }
680 }
681
Mike Christieae15f802008-12-02 00:32:15 -0600682 if (session->tt->init_task && session->tt->init_task(task))
683 return -EIO;
Mike Christie052d0142008-05-21 15:54:05 -0500684
685 if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
686 session->state = ISCSI_STATE_LOGGING_OUT;
687
Mike Christie577577d2008-12-02 00:32:05 -0600688 task->state = ISCSI_TASK_RUNNING;
Mike Christie1b2c7af2009-03-05 14:45:58 -0600689 ISCSI_DBG_SESSION(session, "mgmtpdu [op 0x%x hdr->itt 0x%x "
690 "datalen %d]\n", hdr->opcode & ISCSI_OPCODE_MASK,
691 hdr->itt, task->data_count);
Mike Christie052d0142008-05-21 15:54:05 -0500692 return 0;
693}
694
Mike Christie9c19a7d2008-05-21 15:54:09 -0500695static struct iscsi_task *
Mike Christief6d51802007-12-13 12:43:30 -0600696__iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
697 char *data, uint32_t data_size)
698{
699 struct iscsi_session *session = conn->session;
Mike Christie1336aed2009-05-13 17:57:48 -0500700 struct iscsi_host *ihost = shost_priv(session->host);
Mike Christie4f704dc2009-11-11 16:34:31 -0600701 uint8_t opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500702 struct iscsi_task *task;
Mike Christie262ef632008-12-02 00:32:13 -0600703 itt_t itt;
Mike Christief6d51802007-12-13 12:43:30 -0600704
705 if (session->state == ISCSI_STATE_TERMINATE)
706 return NULL;
707
Mike Christie4f704dc2009-11-11 16:34:31 -0600708 if (opcode == ISCSI_OP_LOGIN || opcode == ISCSI_OP_TEXT) {
Mike Christief6d51802007-12-13 12:43:30 -0600709 /*
710 * Login and Text are sent serially, in
711 * request-followed-by-response sequence.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500712 * Same task can be used. Same ITT must be used.
713 * Note that login_task is preallocated at conn_create().
Mike Christief6d51802007-12-13 12:43:30 -0600714 */
Mike Christie4f704dc2009-11-11 16:34:31 -0600715 if (conn->login_task->state != ISCSI_TASK_FREE) {
716 iscsi_conn_printk(KERN_ERR, conn, "Login/Text in "
717 "progress. Cannot start new task.\n");
718 return NULL;
719 }
720
Mike Christiecbaa4222014-09-03 00:00:39 -0500721 if (data_size > ISCSI_DEF_MAX_RECV_SEG_LEN) {
722 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);
723 return NULL;
724 }
725
Mike Christie9c19a7d2008-05-21 15:54:09 -0500726 task = conn->login_task;
Mike Christie4f704dc2009-11-11 16:34:31 -0600727 } else {
Mike Christie26013ad2009-05-13 17:57:43 -0500728 if (session->state != ISCSI_STATE_LOGGED_IN)
729 return NULL;
730
Mike Christiecbaa4222014-09-03 00:00:39 -0500731 if (data_size != 0) {
732 iscsi_conn_printk(KERN_ERR, conn, "Can not send data buffer of len %u for op 0x%x\n", data_size, opcode);
733 return NULL;
734 }
735
Mike Christief6d51802007-12-13 12:43:30 -0600736 BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE);
737 BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED);
738
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800739 if (!kfifo_out(&session->cmdpool.queue,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500740 (void*)&task, sizeof(void*)))
Mike Christief6d51802007-12-13 12:43:30 -0600741 return NULL;
742 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500743 /*
744 * released in complete pdu for task we expect a response for, and
745 * released by the lld when it has transmitted the task for
746 * pdus we do not expect a response for.
747 */
Elena Reshetova6dc618c2017-03-09 13:46:58 +0200748 refcount_set(&task->refcount, 1);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500749 task->conn = conn;
750 task->sc = NULL;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500751 INIT_LIST_HEAD(&task->running);
752 task->state = ISCSI_TASK_PENDING;
Mike Christief6d51802007-12-13 12:43:30 -0600753
754 if (data_size) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500755 memcpy(task->data, data, data_size);
756 task->data_count = data_size;
Mike Christief6d51802007-12-13 12:43:30 -0600757 } else
Mike Christie9c19a7d2008-05-21 15:54:09 -0500758 task->data_count = 0;
Mike Christief6d51802007-12-13 12:43:30 -0600759
Mike Christie184b57c2009-05-13 17:57:39 -0500760 if (conn->session->tt->alloc_pdu) {
761 if (conn->session->tt->alloc_pdu(task, hdr->opcode)) {
762 iscsi_conn_printk(KERN_ERR, conn, "Could not allocate "
763 "pdu for mgmt task.\n");
Mike Christie3bbaaad2009-05-13 17:57:46 -0500764 goto free_task;
Mike Christie184b57c2009-05-13 17:57:39 -0500765 }
Mike Christie577577d2008-12-02 00:32:05 -0600766 }
Mike Christie184b57c2009-05-13 17:57:39 -0500767
Mike Christie262ef632008-12-02 00:32:13 -0600768 itt = task->hdr->itt;
Mike Christie577577d2008-12-02 00:32:05 -0600769 task->hdr_len = sizeof(struct iscsi_hdr);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500770 memcpy(task->hdr, hdr, sizeof(struct iscsi_hdr));
Mike Christie262ef632008-12-02 00:32:13 -0600771
772 if (hdr->itt != RESERVED_ITT) {
773 if (session->tt->parse_pdu_itt)
774 task->hdr->itt = itt;
775 else
776 task->hdr->itt = build_itt(task->itt,
777 task->conn->session->age);
778 }
779
Mike Christie1336aed2009-05-13 17:57:48 -0500780 if (!ihost->workq) {
Mike Christie577577d2008-12-02 00:32:05 -0600781 if (iscsi_prep_mgmt_task(conn, task))
782 goto free_task;
Mike Christie052d0142008-05-21 15:54:05 -0500783
Mike Christie9c19a7d2008-05-21 15:54:09 -0500784 if (session->tt->xmit_task(task))
Mike Christie577577d2008-12-02 00:32:05 -0600785 goto free_task;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500786 } else {
787 list_add_tail(&task->running, &conn->mgmtqueue);
Mike Christie32ae7632009-03-05 14:46:03 -0600788 iscsi_conn_queue_work(conn);
Mike Christie3bbaaad2009-05-13 17:57:46 -0500789 }
Mike Christie052d0142008-05-21 15:54:05 -0500790
Mike Christie9c19a7d2008-05-21 15:54:09 -0500791 return task;
Mike Christie577577d2008-12-02 00:32:05 -0600792
793free_task:
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600794 /* regular RX path uses back_lock */
Jitendra Bhivare4fa50792016-10-13 12:08:48 +0530795 spin_lock(&session->back_lock);
Mike Christie577577d2008-12-02 00:32:05 -0600796 __iscsi_put_task(task);
Jitendra Bhivare4fa50792016-10-13 12:08:48 +0530797 spin_unlock(&session->back_lock);
Mike Christie577577d2008-12-02 00:32:05 -0600798 return NULL;
Mike Christief6d51802007-12-13 12:43:30 -0600799}
800
801int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr,
802 char *data, uint32_t data_size)
803{
804 struct iscsi_conn *conn = cls_conn->dd_data;
805 struct iscsi_session *session = conn->session;
806 int err = 0;
807
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600808 spin_lock_bh(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -0600809 if (!__iscsi_conn_send_pdu(conn, hdr, data, data_size))
810 err = -EPERM;
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600811 spin_unlock_bh(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -0600812 return err;
813}
814EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu);
815
Mike Christie7996a772006-04-06 21:13:41 -0500816/**
817 * iscsi_cmd_rsp - SCSI Command Response processing
818 * @conn: iscsi connection
819 * @hdr: iscsi header
Mike Christie9c19a7d2008-05-21 15:54:09 -0500820 * @task: scsi command task
Mike Christie7996a772006-04-06 21:13:41 -0500821 * @data: cmd data buffer
822 * @datalen: len of buffer
823 *
824 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
Mike Christie9c19a7d2008-05-21 15:54:09 -0500825 * then completes the command and task.
Mike Christie7996a772006-04-06 21:13:41 -0500826 **/
Mike Christie77a23c22007-05-30 12:57:18 -0500827static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500828 struct iscsi_task *task, char *data,
Mike Christie77a23c22007-05-30 12:57:18 -0500829 int datalen)
Mike Christie7996a772006-04-06 21:13:41 -0500830{
Nicholas Bellinger12352182011-05-27 11:16:33 +0000831 struct iscsi_scsi_rsp *rhdr = (struct iscsi_scsi_rsp *)hdr;
Mike Christie7996a772006-04-06 21:13:41 -0500832 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500833 struct scsi_cmnd *sc = task->sc;
Mike Christie7996a772006-04-06 21:13:41 -0500834
Mike Christie77a23c22007-05-30 12:57:18 -0500835 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Mike Christie7996a772006-04-06 21:13:41 -0500836 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
837
838 sc->result = (DID_OK << 16) | rhdr->cmd_status;
839
Sagi Grimberg55e51ed2014-03-05 19:43:49 +0200840 if (task->protected) {
841 sector_t sector;
842 u8 ascq;
843
844 /**
845 * Transports that didn't implement check_protection
846 * callback but still published T10-PI support to scsi-mid
847 * deserve this BUG_ON.
848 **/
849 BUG_ON(!session->tt->check_protection);
850
851 ascq = session->tt->check_protection(task, &sector);
852 if (ascq) {
853 sc->result = DRIVER_SENSE << 24 |
854 SAM_STAT_CHECK_CONDITION;
855 scsi_build_sense_buffer(1, sc->sense_buffer,
856 ILLEGAL_REQUEST, 0x10, ascq);
Sagi Grimberga73c2a22015-07-15 10:55:39 +0300857 scsi_set_sense_information(sc->sense_buffer,
858 SCSI_SENSE_BUFFERSIZE,
859 sector);
Sagi Grimberg55e51ed2014-03-05 19:43:49 +0200860 goto out;
861 }
862 }
863
Mike Christie7996a772006-04-06 21:13:41 -0500864 if (rhdr->response != ISCSI_STATUS_CMD_COMPLETED) {
865 sc->result = DID_ERROR << 16;
866 goto out;
867 }
868
869 if (rhdr->cmd_status == SAM_STAT_CHECK_CONDITION) {
Mike Christie9b80cb42006-12-17 12:10:28 -0600870 uint16_t senselen;
Mike Christie7996a772006-04-06 21:13:41 -0500871
872 if (datalen < 2) {
873invalid_datalen:
Mike Christie322d7392008-01-31 13:36:52 -0600874 iscsi_conn_printk(KERN_ERR, conn,
875 "Got CHECK_CONDITION but invalid data "
876 "buffer size of %d\n", datalen);
Mike Christie7996a772006-04-06 21:13:41 -0500877 sc->result = DID_BAD_TARGET << 16;
878 goto out;
879 }
880
Harvey Harrison8f3339912008-05-21 15:54:20 -0500881 senselen = get_unaligned_be16(data);
Mike Christie7996a772006-04-06 21:13:41 -0500882 if (datalen < senselen)
883 goto invalid_datalen;
884
885 memcpy(sc->sense_buffer, data + 2,
Mike Christie9b80cb42006-12-17 12:10:28 -0600886 min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
Mike Christie1b2c7af2009-03-05 14:45:58 -0600887 ISCSI_DBG_SESSION(session, "copied %d bytes of sense\n",
888 min_t(uint16_t, senselen,
889 SCSI_SENSE_BUFFERSIZE));
Mike Christie7996a772006-04-06 21:13:41 -0500890 }
891
Boaz Harroshc07d4442008-04-18 10:11:52 -0500892 if (rhdr->flags & (ISCSI_FLAG_CMD_BIDI_UNDERFLOW |
893 ISCSI_FLAG_CMD_BIDI_OVERFLOW)) {
894 int res_count = be32_to_cpu(rhdr->bi_residual_count);
895
896 if (scsi_bidi_cmnd(sc) && res_count > 0 &&
897 (rhdr->flags & ISCSI_FLAG_CMD_BIDI_OVERFLOW ||
898 res_count <= scsi_in(sc)->length))
899 scsi_in(sc)->resid = res_count;
900 else
901 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
902 }
903
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600904 if (rhdr->flags & (ISCSI_FLAG_CMD_UNDERFLOW |
905 ISCSI_FLAG_CMD_OVERFLOW)) {
Mike Christie7996a772006-04-06 21:13:41 -0500906 int res_count = be32_to_cpu(rhdr->residual_count);
907
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600908 if (res_count > 0 &&
909 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
910 res_count <= scsi_bufflen(sc)))
Boaz Harroshc07d4442008-04-18 10:11:52 -0500911 /* write side for bidi or uni-io set_resid */
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900912 scsi_set_resid(sc, res_count);
Mike Christie7996a772006-04-06 21:13:41 -0500913 else
914 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500915 }
Mike Christie7996a772006-04-06 21:13:41 -0500916out:
Mike Christie3bbaaad2009-05-13 17:57:46 -0500917 ISCSI_DBG_SESSION(session, "cmd rsp done [sc %p res %d itt 0x%x]\n",
Mike Christie1b2c7af2009-03-05 14:45:58 -0600918 sc, sc->result, task->itt);
Mike Christie7996a772006-04-06 21:13:41 -0500919 conn->scsirsp_pdus_cnt++;
Mike Christieb3cd5052009-05-13 17:57:49 -0500920 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie7996a772006-04-06 21:13:41 -0500921}
922
Mike Christie1d9edf02008-09-24 11:46:09 -0500923/**
924 * iscsi_data_in_rsp - SCSI Data-In Response processing
925 * @conn: iscsi connection
926 * @hdr: iscsi pdu
927 * @task: scsi command task
928 **/
929static void
930iscsi_data_in_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
931 struct iscsi_task *task)
932{
933 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)hdr;
934 struct scsi_cmnd *sc = task->sc;
935
936 if (!(rhdr->flags & ISCSI_FLAG_DATA_STATUS))
937 return;
938
Mike Christieedbc9aa052009-05-13 17:57:42 -0500939 iscsi_update_cmdsn(conn->session, (struct iscsi_nopin *)hdr);
Mike Christie1d9edf02008-09-24 11:46:09 -0500940 sc->result = (DID_OK << 16) | rhdr->cmd_status;
941 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
942 if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW |
943 ISCSI_FLAG_DATA_OVERFLOW)) {
944 int res_count = be32_to_cpu(rhdr->residual_count);
945
946 if (res_count > 0 &&
947 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
948 res_count <= scsi_in(sc)->length))
949 scsi_in(sc)->resid = res_count;
950 else
951 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
952 }
953
Mike Christie3bbaaad2009-05-13 17:57:46 -0500954 ISCSI_DBG_SESSION(conn->session, "data in with status done "
955 "[sc %p res %d itt 0x%x]\n",
956 sc, sc->result, task->itt);
Mike Christie1d9edf02008-09-24 11:46:09 -0500957 conn->scsirsp_pdus_cnt++;
Mike Christieb3cd5052009-05-13 17:57:49 -0500958 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie1d9edf02008-09-24 11:46:09 -0500959}
960
Mike Christie7ea8b822006-07-24 15:47:22 -0500961static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
962{
963 struct iscsi_tm_rsp *tmf = (struct iscsi_tm_rsp *)hdr;
964
965 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
966 conn->tmfrsp_pdus_cnt++;
967
Mike Christie843c0a82007-12-13 12:43:20 -0600968 if (conn->tmf_state != TMF_QUEUED)
Mike Christie7ea8b822006-07-24 15:47:22 -0500969 return;
970
971 if (tmf->response == ISCSI_TMF_RSP_COMPLETE)
Mike Christie843c0a82007-12-13 12:43:20 -0600972 conn->tmf_state = TMF_SUCCESS;
Mike Christie7ea8b822006-07-24 15:47:22 -0500973 else if (tmf->response == ISCSI_TMF_RSP_NO_TASK)
Mike Christie843c0a82007-12-13 12:43:20 -0600974 conn->tmf_state = TMF_NOT_FOUND;
Mike Christie7ea8b822006-07-24 15:47:22 -0500975 else
Mike Christie843c0a82007-12-13 12:43:20 -0600976 conn->tmf_state = TMF_FAILED;
Mike Christie7ea8b822006-07-24 15:47:22 -0500977 wake_up(&conn->ehwait);
978}
979
Ariel Nahum52f56642015-09-03 19:49:55 +0300980static int iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr)
Mike Christief6d51802007-12-13 12:43:30 -0600981{
982 struct iscsi_nopout hdr;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500983 struct iscsi_task *task;
Mike Christief6d51802007-12-13 12:43:30 -0600984
Mike Christie9c19a7d2008-05-21 15:54:09 -0500985 if (!rhdr && conn->ping_task)
Ariel Nahum52f56642015-09-03 19:49:55 +0300986 return -EINVAL;
Mike Christief6d51802007-12-13 12:43:30 -0600987
988 memset(&hdr, 0, sizeof(struct iscsi_nopout));
989 hdr.opcode = ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE;
990 hdr.flags = ISCSI_FLAG_CMD_FINAL;
991
992 if (rhdr) {
Andy Grover55bdabd2011-06-16 15:57:09 -0700993 hdr.lun = rhdr->lun;
Mike Christief6d51802007-12-13 12:43:30 -0600994 hdr.ttt = rhdr->ttt;
995 hdr.itt = RESERVED_ITT;
996 } else
997 hdr.ttt = RESERVED_ITT;
998
Mike Christie9c19a7d2008-05-21 15:54:09 -0500999 task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0);
Ariel Nahum52f56642015-09-03 19:49:55 +03001000 if (!task) {
Mike Christie322d7392008-01-31 13:36:52 -06001001 iscsi_conn_printk(KERN_ERR, conn, "Could not send nopout\n");
Ariel Nahum52f56642015-09-03 19:49:55 +03001002 return -EIO;
1003 } else if (!rhdr) {
Mike Christied3acf022008-12-01 12:13:00 -06001004 /* only track our nops */
1005 conn->ping_task = task;
1006 conn->last_ping = jiffies;
1007 }
Ariel Nahum52f56642015-09-03 19:49:55 +03001008
1009 return 0;
Mike Christief6d51802007-12-13 12:43:30 -06001010}
1011
Mike Christie8afa1432009-08-20 15:10:59 -05001012static int iscsi_nop_out_rsp(struct iscsi_task *task,
1013 struct iscsi_nopin *nop, char *data, int datalen)
1014{
1015 struct iscsi_conn *conn = task->conn;
1016 int rc = 0;
1017
1018 if (conn->ping_task != task) {
1019 /*
1020 * If this is not in response to one of our
1021 * nops then it must be from userspace.
1022 */
1023 if (iscsi_recv_pdu(conn->cls_conn, (struct iscsi_hdr *)nop,
1024 data, datalen))
1025 rc = ISCSI_ERR_CONN_FAILED;
1026 } else
1027 mod_timer(&conn->transport_timer, jiffies + conn->recv_timeout);
1028 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
1029 return rc;
1030}
1031
Mike Christie62f38302006-08-31 18:09:27 -04001032static int iscsi_handle_reject(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1033 char *data, int datalen)
1034{
1035 struct iscsi_reject *reject = (struct iscsi_reject *)hdr;
1036 struct iscsi_hdr rejected_pdu;
Mike Christie8afa1432009-08-20 15:10:59 -05001037 int opcode, rc = 0;
Mike Christie62f38302006-08-31 18:09:27 -04001038
1039 conn->exp_statsn = be32_to_cpu(reject->statsn) + 1;
1040
Mike Christie8afa1432009-08-20 15:10:59 -05001041 if (ntoh24(reject->dlength) > datalen ||
1042 ntoh24(reject->dlength) < sizeof(struct iscsi_hdr)) {
1043 iscsi_conn_printk(KERN_ERR, conn, "Cannot handle rejected "
1044 "pdu. Invalid data length (pdu dlength "
1045 "%u, datalen %d\n", ntoh24(reject->dlength),
1046 datalen);
1047 return ISCSI_ERR_PROTO;
Mike Christie62f38302006-08-31 18:09:27 -04001048 }
Mike Christie8afa1432009-08-20 15:10:59 -05001049 memcpy(&rejected_pdu, data, sizeof(struct iscsi_hdr));
1050 opcode = rejected_pdu.opcode & ISCSI_OPCODE_MASK;
1051
1052 switch (reject->reason) {
1053 case ISCSI_REASON_DATA_DIGEST_ERROR:
1054 iscsi_conn_printk(KERN_ERR, conn,
1055 "pdu (op 0x%x itt 0x%x) rejected "
1056 "due to DataDigest error.\n",
Vaughan Caoe5dbbe22014-01-09 10:21:34 +08001057 opcode, rejected_pdu.itt);
Mike Christie8afa1432009-08-20 15:10:59 -05001058 break;
1059 case ISCSI_REASON_IMM_CMD_REJECT:
1060 iscsi_conn_printk(KERN_ERR, conn,
1061 "pdu (op 0x%x itt 0x%x) rejected. Too many "
1062 "immediate commands.\n",
Vaughan Caoe5dbbe22014-01-09 10:21:34 +08001063 opcode, rejected_pdu.itt);
Mike Christie8afa1432009-08-20 15:10:59 -05001064 /*
1065 * We only send one TMF at a time so if the target could not
1066 * handle it, then it should get fixed (RFC mandates that
1067 * a target can handle one immediate TMF per conn).
1068 *
1069 * For nops-outs, we could have sent more than one if
1070 * the target is sending us lots of nop-ins
1071 */
1072 if (opcode != ISCSI_OP_NOOP_OUT)
1073 return 0;
1074
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001075 if (rejected_pdu.itt == cpu_to_be32(ISCSI_RESERVED_TAG)) {
Mike Christie8afa1432009-08-20 15:10:59 -05001076 /*
1077 * nop-out in response to target's nop-out rejected.
1078 * Just resend.
1079 */
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001080 /* In RX path we are under back lock */
1081 spin_unlock(&conn->session->back_lock);
1082 spin_lock(&conn->session->frwd_lock);
Mike Christie8afa1432009-08-20 15:10:59 -05001083 iscsi_send_nopout(conn,
1084 (struct iscsi_nopin*)&rejected_pdu);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001085 spin_unlock(&conn->session->frwd_lock);
1086 spin_lock(&conn->session->back_lock);
1087 } else {
Mike Christie8afa1432009-08-20 15:10:59 -05001088 struct iscsi_task *task;
1089 /*
1090 * Our nop as ping got dropped. We know the target
1091 * and transport are ok so just clean up
1092 */
1093 task = iscsi_itt_to_task(conn, rejected_pdu.itt);
1094 if (!task) {
1095 iscsi_conn_printk(KERN_ERR, conn,
1096 "Invalid pdu reject. Could "
1097 "not lookup rejected task.\n");
1098 rc = ISCSI_ERR_BAD_ITT;
1099 } else
1100 rc = iscsi_nop_out_rsp(task,
1101 (struct iscsi_nopin*)&rejected_pdu,
1102 NULL, 0);
1103 }
1104 break;
1105 default:
1106 iscsi_conn_printk(KERN_ERR, conn,
1107 "pdu (op 0x%x itt 0x%x) rejected. Reason "
Vaughan Caoe5dbbe22014-01-09 10:21:34 +08001108 "code 0x%x\n", rejected_pdu.opcode,
1109 rejected_pdu.itt, reject->reason);
Mike Christie8afa1432009-08-20 15:10:59 -05001110 break;
1111 }
1112 return rc;
Mike Christie62f38302006-08-31 18:09:27 -04001113}
1114
Mike Christie7996a772006-04-06 21:13:41 -05001115/**
Mike Christie913e5bf2008-05-21 15:54:18 -05001116 * iscsi_itt_to_task - look up task by itt
1117 * @conn: iscsi connection
1118 * @itt: itt
1119 *
1120 * This should be used for mgmt tasks like login and nops, or if
1121 * the LDD's itt space does not include the session age.
1122 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001123 * The session back_lock must be held.
Mike Christie913e5bf2008-05-21 15:54:18 -05001124 */
Mike Christie8f9256c2009-05-13 17:57:41 -05001125struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt)
Mike Christie913e5bf2008-05-21 15:54:18 -05001126{
1127 struct iscsi_session *session = conn->session;
Mike Christie262ef632008-12-02 00:32:13 -06001128 int i;
Mike Christie913e5bf2008-05-21 15:54:18 -05001129
1130 if (itt == RESERVED_ITT)
1131 return NULL;
1132
Mike Christie262ef632008-12-02 00:32:13 -06001133 if (session->tt->parse_pdu_itt)
1134 session->tt->parse_pdu_itt(conn, itt, &i, NULL);
1135 else
1136 i = get_itt(itt);
Mike Christie913e5bf2008-05-21 15:54:18 -05001137 if (i >= session->cmds_max)
1138 return NULL;
1139
1140 return session->cmds[i];
1141}
Mike Christie8f9256c2009-05-13 17:57:41 -05001142EXPORT_SYMBOL_GPL(iscsi_itt_to_task);
Mike Christie913e5bf2008-05-21 15:54:18 -05001143
1144/**
Mike Christie7996a772006-04-06 21:13:41 -05001145 * __iscsi_complete_pdu - complete pdu
1146 * @conn: iscsi conn
1147 * @hdr: iscsi header
1148 * @data: data buffer
1149 * @datalen: len of data buffer
1150 *
1151 * Completes pdu processing by freeing any resources allocated at
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001152 * queuecommand or send generic. session back_lock must be held and verify
Mike Christie7996a772006-04-06 21:13:41 -05001153 * itt must have been called.
1154 */
Mike Christie913e5bf2008-05-21 15:54:18 -05001155int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1156 char *data, int datalen)
Mike Christie7996a772006-04-06 21:13:41 -05001157{
1158 struct iscsi_session *session = conn->session;
1159 int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001160 struct iscsi_task *task;
Mike Christie7996a772006-04-06 21:13:41 -05001161 uint32_t itt;
1162
Mike Christief6d51802007-12-13 12:43:30 -06001163 conn->last_recv = jiffies;
Mike Christie0af967f2008-05-21 15:54:04 -05001164 rc = iscsi_verify_itt(conn, hdr->itt);
1165 if (rc)
1166 return rc;
1167
Al Virob4377352007-02-09 16:39:40 +00001168 if (hdr->itt != RESERVED_ITT)
1169 itt = get_itt(hdr->itt);
Mike Christie7996a772006-04-06 21:13:41 -05001170 else
Al Virob4377352007-02-09 16:39:40 +00001171 itt = ~0U;
Mike Christie7996a772006-04-06 21:13:41 -05001172
Mike Christie1b2c7af2009-03-05 14:45:58 -06001173 ISCSI_DBG_SESSION(session, "[op 0x%x cid %d itt 0x%x len %d]\n",
1174 opcode, conn->id, itt, datalen);
Mike Christie7996a772006-04-06 21:13:41 -05001175
Mike Christie3e5c28a2008-05-21 15:54:06 -05001176 if (itt == ~0U) {
Mike Christie77a23c22007-05-30 12:57:18 -05001177 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
Mike Christie62f38302006-08-31 18:09:27 -04001178
Mike Christie7996a772006-04-06 21:13:41 -05001179 switch(opcode) {
1180 case ISCSI_OP_NOOP_IN:
Mike Christie40527af2006-07-24 15:47:45 -05001181 if (datalen) {
Mike Christie7996a772006-04-06 21:13:41 -05001182 rc = ISCSI_ERR_PROTO;
Mike Christie40527af2006-07-24 15:47:45 -05001183 break;
1184 }
1185
Al Virob4377352007-02-09 16:39:40 +00001186 if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG))
Mike Christie40527af2006-07-24 15:47:45 -05001187 break;
1188
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001189 /* In RX path we are under back lock */
1190 spin_unlock(&session->back_lock);
1191 spin_lock(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -06001192 iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001193 spin_unlock(&session->frwd_lock);
1194 spin_lock(&session->back_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001195 break;
1196 case ISCSI_OP_REJECT:
Mike Christie62f38302006-08-31 18:09:27 -04001197 rc = iscsi_handle_reject(conn, hdr, data, datalen);
1198 break;
Mike Christie7996a772006-04-06 21:13:41 -05001199 case ISCSI_OP_ASYNC_EVENT:
Mike Christie8d2860b2006-05-02 19:46:47 -05001200 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
Mike Christie5831c732006-10-16 18:09:41 -04001201 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
1202 rc = ISCSI_ERR_CONN_FAILED;
Mike Christie7996a772006-04-06 21:13:41 -05001203 break;
1204 default:
1205 rc = ISCSI_ERR_BAD_OPCODE;
1206 break;
1207 }
Mike Christie3e5c28a2008-05-21 15:54:06 -05001208 goto out;
1209 }
Mike Christie7996a772006-04-06 21:13:41 -05001210
Mike Christie3e5c28a2008-05-21 15:54:06 -05001211 switch(opcode) {
1212 case ISCSI_OP_SCSI_CMD_RSP:
Mike Christie913e5bf2008-05-21 15:54:18 -05001213 case ISCSI_OP_SCSI_DATA_IN:
1214 task = iscsi_itt_to_ctask(conn, hdr->itt);
1215 if (!task)
1216 return ISCSI_ERR_BAD_ITT;
Mike Christied355e572009-06-15 22:11:08 -05001217 task->last_xfer = jiffies;
Mike Christie913e5bf2008-05-21 15:54:18 -05001218 break;
1219 case ISCSI_OP_R2T:
1220 /*
1221 * LLD handles R2Ts if they need to.
1222 */
1223 return 0;
1224 case ISCSI_OP_LOGOUT_RSP:
1225 case ISCSI_OP_LOGIN_RSP:
1226 case ISCSI_OP_TEXT_RSP:
1227 case ISCSI_OP_SCSI_TMFUNC_RSP:
1228 case ISCSI_OP_NOOP_IN:
1229 task = iscsi_itt_to_task(conn, hdr->itt);
1230 if (!task)
1231 return ISCSI_ERR_BAD_ITT;
1232 break;
1233 default:
1234 return ISCSI_ERR_BAD_OPCODE;
1235 }
1236
1237 switch(opcode) {
1238 case ISCSI_OP_SCSI_CMD_RSP:
Mike Christie9c19a7d2008-05-21 15:54:09 -05001239 iscsi_scsi_cmd_rsp(conn, hdr, task, data, datalen);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001240 break;
1241 case ISCSI_OP_SCSI_DATA_IN:
Mike Christie1d9edf02008-09-24 11:46:09 -05001242 iscsi_data_in_rsp(conn, hdr, task);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001243 break;
Mike Christie3e5c28a2008-05-21 15:54:06 -05001244 case ISCSI_OP_LOGOUT_RSP:
1245 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1246 if (datalen) {
1247 rc = ISCSI_ERR_PROTO;
1248 break;
1249 }
1250 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1251 goto recv_pdu;
1252 case ISCSI_OP_LOGIN_RSP:
1253 case ISCSI_OP_TEXT_RSP:
1254 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1255 /*
1256 * login related PDU's exp_statsn is handled in
1257 * userspace
1258 */
1259 goto recv_pdu;
1260 case ISCSI_OP_SCSI_TMFUNC_RSP:
1261 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1262 if (datalen) {
1263 rc = ISCSI_ERR_PROTO;
1264 break;
1265 }
1266
1267 iscsi_tmf_rsp(conn, hdr);
Mike Christieb3cd5052009-05-13 17:57:49 -05001268 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001269 break;
1270 case ISCSI_OP_NOOP_IN:
1271 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1272 if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) || datalen) {
1273 rc = ISCSI_ERR_PROTO;
1274 break;
1275 }
1276 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1277
Mike Christie8afa1432009-08-20 15:10:59 -05001278 rc = iscsi_nop_out_rsp(task, (struct iscsi_nopin*)hdr,
1279 data, datalen);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001280 break;
1281 default:
1282 rc = ISCSI_ERR_BAD_OPCODE;
1283 break;
1284 }
1285
1286out:
1287 return rc;
1288recv_pdu:
1289 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
1290 rc = ISCSI_ERR_CONN_FAILED;
Mike Christieb3cd5052009-05-13 17:57:49 -05001291 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie7996a772006-04-06 21:13:41 -05001292 return rc;
1293}
Mike Christie913e5bf2008-05-21 15:54:18 -05001294EXPORT_SYMBOL_GPL(__iscsi_complete_pdu);
Mike Christie7996a772006-04-06 21:13:41 -05001295
1296int iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1297 char *data, int datalen)
1298{
1299 int rc;
1300
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001301 spin_lock(&conn->session->back_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001302 rc = __iscsi_complete_pdu(conn, hdr, data, datalen);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001303 spin_unlock(&conn->session->back_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001304 return rc;
1305}
1306EXPORT_SYMBOL_GPL(iscsi_complete_pdu);
1307
Mike Christie0af967f2008-05-21 15:54:04 -05001308int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt)
Mike Christie7996a772006-04-06 21:13:41 -05001309{
1310 struct iscsi_session *session = conn->session;
Mike Christie262ef632008-12-02 00:32:13 -06001311 int age = 0, i = 0;
Mike Christie7996a772006-04-06 21:13:41 -05001312
Mike Christie0af967f2008-05-21 15:54:04 -05001313 if (itt == RESERVED_ITT)
1314 return 0;
Mike Christie7996a772006-04-06 21:13:41 -05001315
Mike Christie262ef632008-12-02 00:32:13 -06001316 if (session->tt->parse_pdu_itt)
1317 session->tt->parse_pdu_itt(conn, itt, &i, &age);
1318 else {
1319 i = get_itt(itt);
1320 age = ((__force u32)itt >> ISCSI_AGE_SHIFT) & ISCSI_AGE_MASK;
1321 }
1322
1323 if (age != session->age) {
Mike Christie0af967f2008-05-21 15:54:04 -05001324 iscsi_conn_printk(KERN_ERR, conn,
1325 "received itt %x expected session age (%x)\n",
Mike Christie913e5bf2008-05-21 15:54:18 -05001326 (__force u32)itt, session->age);
Mike Christie0af967f2008-05-21 15:54:04 -05001327 return ISCSI_ERR_BAD_ITT;
1328 }
Mike Christie7996a772006-04-06 21:13:41 -05001329
Mike Christie3e5c28a2008-05-21 15:54:06 -05001330 if (i >= session->cmds_max) {
1331 iscsi_conn_printk(KERN_ERR, conn,
1332 "received invalid itt index %u (max cmds "
1333 "%u.\n", i, session->cmds_max);
1334 return ISCSI_ERR_BAD_ITT;
Mike Christie7996a772006-04-06 21:13:41 -05001335 }
Mike Christie7996a772006-04-06 21:13:41 -05001336 return 0;
1337}
1338EXPORT_SYMBOL_GPL(iscsi_verify_itt);
1339
Mike Christie913e5bf2008-05-21 15:54:18 -05001340/**
1341 * iscsi_itt_to_ctask - look up ctask by itt
1342 * @conn: iscsi connection
1343 * @itt: itt
1344 *
1345 * This should be used for cmd tasks.
1346 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001347 * The session back_lock must be held.
Mike Christie913e5bf2008-05-21 15:54:18 -05001348 */
1349struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *conn, itt_t itt)
Mike Christie0af967f2008-05-21 15:54:04 -05001350{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001351 struct iscsi_task *task;
Mike Christie0af967f2008-05-21 15:54:04 -05001352
1353 if (iscsi_verify_itt(conn, itt))
1354 return NULL;
1355
Mike Christie913e5bf2008-05-21 15:54:18 -05001356 task = iscsi_itt_to_task(conn, itt);
1357 if (!task || !task->sc)
Mike Christie0af967f2008-05-21 15:54:04 -05001358 return NULL;
1359
Mike Christie913e5bf2008-05-21 15:54:18 -05001360 if (task->sc->SCp.phase != conn->session->age) {
1361 iscsi_session_printk(KERN_ERR, conn->session,
1362 "task's session age %d, expected %d\n",
1363 task->sc->SCp.phase, conn->session->age);
Mike Christie0af967f2008-05-21 15:54:04 -05001364 return NULL;
Mike Christie913e5bf2008-05-21 15:54:18 -05001365 }
Mike Christie0af967f2008-05-21 15:54:04 -05001366
Mike Christie9c19a7d2008-05-21 15:54:09 -05001367 return task;
Mike Christie0af967f2008-05-21 15:54:04 -05001368}
1369EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask);
1370
Mike Christie40a06e72009-03-05 14:46:05 -06001371void iscsi_session_failure(struct iscsi_session *session,
Mike Christiee5bd7b52008-09-24 11:46:10 -05001372 enum iscsi_err err)
1373{
Mike Christiee5bd7b52008-09-24 11:46:10 -05001374 struct iscsi_conn *conn;
1375 struct device *dev;
Mike Christiee5bd7b52008-09-24 11:46:10 -05001376
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001377 spin_lock_bh(&session->frwd_lock);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001378 conn = session->leadconn;
1379 if (session->state == ISCSI_STATE_TERMINATE || !conn) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001380 spin_unlock_bh(&session->frwd_lock);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001381 return;
1382 }
1383
1384 dev = get_device(&conn->cls_conn->dev);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001385 spin_unlock_bh(&session->frwd_lock);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001386 if (!dev)
1387 return;
1388 /*
1389 * if the host is being removed bypass the connection
1390 * recovery initialization because we are going to kill
1391 * the session.
1392 */
1393 if (err == ISCSI_ERR_INVALID_HOST)
1394 iscsi_conn_error_event(conn->cls_conn, err);
1395 else
1396 iscsi_conn_failure(conn, err);
1397 put_device(dev);
1398}
1399EXPORT_SYMBOL_GPL(iscsi_session_failure);
1400
Mike Christie7996a772006-04-06 21:13:41 -05001401void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err)
1402{
1403 struct iscsi_session *session = conn->session;
Mike Christie7996a772006-04-06 21:13:41 -05001404
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001405 spin_lock_bh(&session->frwd_lock);
Mike Christie656cffc2006-05-18 20:31:42 -05001406 if (session->state == ISCSI_STATE_FAILED) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001407 spin_unlock_bh(&session->frwd_lock);
Mike Christie656cffc2006-05-18 20:31:42 -05001408 return;
1409 }
1410
Mike Christie67a61112006-05-30 00:37:20 -05001411 if (conn->stop_stage == 0)
Mike Christie7996a772006-04-06 21:13:41 -05001412 session->state = ISCSI_STATE_FAILED;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001413 spin_unlock_bh(&session->frwd_lock);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001414
Mike Christie7996a772006-04-06 21:13:41 -05001415 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1416 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001417 iscsi_conn_error_event(conn->cls_conn, err);
Mike Christie7996a772006-04-06 21:13:41 -05001418}
1419EXPORT_SYMBOL_GPL(iscsi_conn_failure);
1420
Mike Christie77a23c22007-05-30 12:57:18 -05001421static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn)
1422{
1423 struct iscsi_session *session = conn->session;
1424
1425 /*
1426 * Check for iSCSI window and take care of CmdSN wrap-around
1427 */
Mike Christiee0726402007-07-26 12:46:48 -05001428 if (!iscsi_sna_lte(session->queued_cmdsn, session->max_cmdsn)) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001429 ISCSI_DBG_SESSION(session, "iSCSI CmdSN closed. ExpCmdSn "
1430 "%u MaxCmdSN %u CmdSN %u/%u\n",
1431 session->exp_cmdsn, session->max_cmdsn,
1432 session->cmdsn, session->queued_cmdsn);
Mike Christie77a23c22007-05-30 12:57:18 -05001433 return -ENOSPC;
1434 }
1435 return 0;
1436}
1437
Mike Christie9c19a7d2008-05-21 15:54:09 -05001438static int iscsi_xmit_task(struct iscsi_conn *conn)
Mike Christie77a23c22007-05-30 12:57:18 -05001439{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001440 struct iscsi_task *task = conn->task;
Mike Christie843c0a82007-12-13 12:43:20 -06001441 int rc;
Mike Christie77a23c22007-05-30 12:57:18 -05001442
Mike Christie70b31c12009-08-20 15:11:03 -05001443 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx))
1444 return -ENODATA;
1445
Mike Christie9c19a7d2008-05-21 15:54:09 -05001446 __iscsi_get_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001447 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001448 rc = conn->session->tt->xmit_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001449 spin_lock_bh(&conn->session->frwd_lock);
Mike Christied355e572009-06-15 22:11:08 -05001450 if (!rc) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05001451 /* done with this task */
Mike Christied355e572009-06-15 22:11:08 -05001452 task->last_xfer = jiffies;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001453 conn->task = NULL;
Mike Christied355e572009-06-15 22:11:08 -05001454 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001455 /* regular RX path uses back_lock */
Shlomo Pongratz72b974022014-03-30 15:26:29 +03001456 spin_lock(&conn->session->back_lock);
Mike Christied355e572009-06-15 22:11:08 -05001457 __iscsi_put_task(task);
Shlomo Pongratz72b974022014-03-30 15:26:29 +03001458 spin_unlock(&conn->session->back_lock);
Mike Christie77a23c22007-05-30 12:57:18 -05001459 return rc;
1460}
1461
Mike Christie7996a772006-04-06 21:13:41 -05001462/**
Mike Christie9c19a7d2008-05-21 15:54:09 -05001463 * iscsi_requeue_task - requeue task to run from session workqueue
1464 * @task: task to requeue
Mike Christie843c0a82007-12-13 12:43:20 -06001465 *
Mike Christie9c19a7d2008-05-21 15:54:09 -05001466 * LLDs that need to run a task from the session workqueue should call
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001467 * this. The session frwd_lock must be held. This should only be called
Mike Christie052d0142008-05-21 15:54:05 -05001468 * by software drivers.
Mike Christie843c0a82007-12-13 12:43:20 -06001469 */
Mike Christie9c19a7d2008-05-21 15:54:09 -05001470void iscsi_requeue_task(struct iscsi_task *task)
Mike Christie843c0a82007-12-13 12:43:20 -06001471{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001472 struct iscsi_conn *conn = task->conn;
Mike Christie843c0a82007-12-13 12:43:20 -06001473
Mike Christie3bbaaad2009-05-13 17:57:46 -05001474 /*
1475 * this may be on the requeue list already if the xmit_task callout
1476 * is handling the r2ts while we are adding new ones
1477 */
1478 if (list_empty(&task->running))
1479 list_add_tail(&task->running, &conn->requeue);
Mike Christie32ae7632009-03-05 14:46:03 -06001480 iscsi_conn_queue_work(conn);
Mike Christie843c0a82007-12-13 12:43:20 -06001481}
Mike Christie9c19a7d2008-05-21 15:54:09 -05001482EXPORT_SYMBOL_GPL(iscsi_requeue_task);
Mike Christie843c0a82007-12-13 12:43:20 -06001483
1484/**
Mike Christie7996a772006-04-06 21:13:41 -05001485 * iscsi_data_xmit - xmit any command into the scheduled connection
1486 * @conn: iscsi connection
1487 *
1488 * Notes:
1489 * The function can return -EAGAIN in which case the caller must
1490 * re-schedule it again later or recover. '0' return code means
1491 * successful xmit.
1492 **/
1493static int iscsi_data_xmit(struct iscsi_conn *conn)
1494{
Mike Christie5d12c052009-11-11 16:34:32 -06001495 struct iscsi_task *task;
Mike Christie3219e522006-05-30 00:37:28 -05001496 int rc = 0;
Mike Christie7996a772006-04-06 21:13:41 -05001497
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001498 spin_lock_bh(&conn->session->frwd_lock);
Mike Christie70b31c12009-08-20 15:11:03 -05001499 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001500 ISCSI_DBG_SESSION(conn->session, "Tx suspended!\n");
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001501 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie3219e522006-05-30 00:37:28 -05001502 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -05001503 }
Mike Christie7996a772006-04-06 21:13:41 -05001504
Mike Christie9c19a7d2008-05-21 15:54:09 -05001505 if (conn->task) {
1506 rc = iscsi_xmit_task(conn);
Mike Christie3219e522006-05-30 00:37:28 -05001507 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001508 goto done;
Mike Christie7996a772006-04-06 21:13:41 -05001509 }
1510
Mike Christie77a23c22007-05-30 12:57:18 -05001511 /*
1512 * process mgmt pdus like nops before commands since we should
1513 * only have one nop-out as a ping from us and targets should not
1514 * overflow us with nop-ins
1515 */
1516check_mgmt:
Mike Christie843c0a82007-12-13 12:43:20 -06001517 while (!list_empty(&conn->mgmtqueue)) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05001518 conn->task = list_entry(conn->mgmtqueue.next,
1519 struct iscsi_task, running);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001520 list_del_init(&conn->task->running);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001521 if (iscsi_prep_mgmt_task(conn, conn->task)) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001522 /* regular RX path uses back_lock */
1523 spin_lock_bh(&conn->session->back_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001524 __iscsi_put_task(conn->task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001525 spin_unlock_bh(&conn->session->back_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001526 conn->task = NULL;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001527 continue;
1528 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001529 rc = iscsi_xmit_task(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001530 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001531 goto done;
Mike Christie7996a772006-04-06 21:13:41 -05001532 }
1533
Mike Christie843c0a82007-12-13 12:43:20 -06001534 /* process pending command queue */
Mike Christie3bbaaad2009-05-13 17:57:46 -05001535 while (!list_empty(&conn->cmdqueue)) {
Mike Christie5d12c052009-11-11 16:34:32 -06001536 conn->task = list_entry(conn->cmdqueue.next, struct iscsi_task,
1537 running);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001538 list_del_init(&conn->task->running);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001539 if (conn->session->state == ISCSI_STATE_LOGGING_OUT) {
Mike Christieb3cd5052009-05-13 17:57:49 -05001540 fail_scsi_task(conn->task, DID_IMM_RETRY);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001541 continue;
1542 }
Mike Christie577577d2008-12-02 00:32:05 -06001543 rc = iscsi_prep_scsi_cmd_pdu(conn->task);
1544 if (rc) {
Mike Christie5d12c052009-11-11 16:34:32 -06001545 if (rc == -ENOMEM || rc == -EACCES) {
Mike Christie3bbaaad2009-05-13 17:57:46 -05001546 list_add_tail(&conn->task->running,
1547 &conn->cmdqueue);
Mike Christie577577d2008-12-02 00:32:05 -06001548 conn->task = NULL;
Mike Christie70b31c12009-08-20 15:11:03 -05001549 goto done;
Mike Christie577577d2008-12-02 00:32:05 -06001550 } else
Mike Christieb3cd5052009-05-13 17:57:49 -05001551 fail_scsi_task(conn->task, DID_ABORT);
Boaz Harrosh004d6532007-12-13 12:43:23 -06001552 continue;
1553 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001554 rc = iscsi_xmit_task(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001555 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001556 goto done;
Mike Christie77a23c22007-05-30 12:57:18 -05001557 /*
Mike Christie9c19a7d2008-05-21 15:54:09 -05001558 * we could continuously get new task requests so
Mike Christie77a23c22007-05-30 12:57:18 -05001559 * we need to check the mgmt queue for nops that need to
1560 * be sent to aviod starvation
1561 */
Mike Christie843c0a82007-12-13 12:43:20 -06001562 if (!list_empty(&conn->mgmtqueue))
1563 goto check_mgmt;
1564 }
1565
1566 while (!list_empty(&conn->requeue)) {
Mike Christieb3a7ea82007-12-13 12:43:26 -06001567 /*
1568 * we always do fastlogout - conn stop code will clean up.
1569 */
1570 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
1571 break;
1572
Mike Christie5d12c052009-11-11 16:34:32 -06001573 task = list_entry(conn->requeue.next, struct iscsi_task,
1574 running);
1575 if (iscsi_check_tmf_restrictions(task, ISCSI_OP_SCSI_DATA_OUT))
1576 break;
1577
1578 conn->task = task;
Mike Christie3bbaaad2009-05-13 17:57:46 -05001579 list_del_init(&conn->task->running);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001580 conn->task->state = ISCSI_TASK_RUNNING;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001581 rc = iscsi_xmit_task(conn);
Mike Christie843c0a82007-12-13 12:43:20 -06001582 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001583 goto done;
Mike Christie843c0a82007-12-13 12:43:20 -06001584 if (!list_empty(&conn->mgmtqueue))
Mike Christie77a23c22007-05-30 12:57:18 -05001585 goto check_mgmt;
Mike Christie7996a772006-04-06 21:13:41 -05001586 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001587 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie3219e522006-05-30 00:37:28 -05001588 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -05001589
Mike Christie70b31c12009-08-20 15:11:03 -05001590done:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001591 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie3219e522006-05-30 00:37:28 -05001592 return rc;
Mike Christie7996a772006-04-06 21:13:41 -05001593}
1594
David Howellsc4028952006-11-22 14:57:56 +00001595static void iscsi_xmitworker(struct work_struct *work)
Mike Christie7996a772006-04-06 21:13:41 -05001596{
David Howellsc4028952006-11-22 14:57:56 +00001597 struct iscsi_conn *conn =
1598 container_of(work, struct iscsi_conn, xmitwork);
Mike Christie3219e522006-05-30 00:37:28 -05001599 int rc;
Mike Christie7996a772006-04-06 21:13:41 -05001600 /*
1601 * serialize Xmit worker on a per-connection basis.
1602 */
Mike Christie3219e522006-05-30 00:37:28 -05001603 do {
1604 rc = iscsi_data_xmit(conn);
1605 } while (rc >= 0 || rc == -EAGAIN);
Mike Christie7996a772006-04-06 21:13:41 -05001606}
1607
Mike Christie577577d2008-12-02 00:32:05 -06001608static inline struct iscsi_task *iscsi_alloc_task(struct iscsi_conn *conn,
1609 struct scsi_cmnd *sc)
1610{
1611 struct iscsi_task *task;
1612
Stefani Seibold7acd72e2009-12-21 14:37:28 -08001613 if (!kfifo_out(&conn->session->cmdpool.queue,
Mike Christie577577d2008-12-02 00:32:05 -06001614 (void *) &task, sizeof(void *)))
1615 return NULL;
1616
1617 sc->SCp.phase = conn->session->age;
1618 sc->SCp.ptr = (char *) task;
1619
Elena Reshetova6dc618c2017-03-09 13:46:58 +02001620 refcount_set(&task->refcount, 1);
Mike Christie577577d2008-12-02 00:32:05 -06001621 task->state = ISCSI_TASK_PENDING;
1622 task->conn = conn;
1623 task->sc = sc;
Mike Christied355e572009-06-15 22:11:08 -05001624 task->have_checked_conn = false;
1625 task->last_timeout = jiffies;
1626 task->last_xfer = jiffies;
Sagi Grimberg55e51ed2014-03-05 19:43:49 +02001627 task->protected = false;
Mike Christie577577d2008-12-02 00:32:05 -06001628 INIT_LIST_HEAD(&task->running);
1629 return task;
1630}
1631
Mike Christie7996a772006-04-06 21:13:41 -05001632enum {
1633 FAILURE_BAD_HOST = 1,
1634 FAILURE_SESSION_FAILED,
1635 FAILURE_SESSION_FREED,
1636 FAILURE_WINDOW_CLOSED,
Mike Christie60ecebf2006-08-31 18:09:25 -04001637 FAILURE_OOM,
Mike Christie7996a772006-04-06 21:13:41 -05001638 FAILURE_SESSION_TERMINATE,
Mike Christie656cffc2006-05-18 20:31:42 -05001639 FAILURE_SESSION_IN_RECOVERY,
Mike Christie7996a772006-04-06 21:13:41 -05001640 FAILURE_SESSION_RECOVERY_TIMEOUT,
Mike Christieb3a7ea82007-12-13 12:43:26 -06001641 FAILURE_SESSION_LOGGING_OUT,
Mike Christie6eabafb2008-01-31 13:36:43 -06001642 FAILURE_SESSION_NOT_READY,
Mike Christie7996a772006-04-06 21:13:41 -05001643};
1644
Mike Christief41d4722010-12-31 02:22:21 -06001645int iscsi_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *sc)
Mike Christie7996a772006-04-06 21:13:41 -05001646{
Mike Christie75613522008-05-21 15:53:59 -05001647 struct iscsi_cls_session *cls_session;
Mike Christie1336aed2009-05-13 17:57:48 -05001648 struct iscsi_host *ihost;
Mike Christie7996a772006-04-06 21:13:41 -05001649 int reason = 0;
1650 struct iscsi_session *session;
1651 struct iscsi_conn *conn;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001652 struct iscsi_task *task = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001653
Mike Christie7996a772006-04-06 21:13:41 -05001654 sc->result = 0;
Mike Christief47f2cf2006-08-31 18:09:33 -04001655 sc->SCp.ptr = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001656
Mike Christie1336aed2009-05-13 17:57:48 -05001657 ihost = shost_priv(host);
Mike Christie7996a772006-04-06 21:13:41 -05001658
Mike Christie75613522008-05-21 15:53:59 -05001659 cls_session = starget_to_session(scsi_target(sc->device));
1660 session = cls_session->dd_data;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001661 spin_lock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001662
Mike Christie75613522008-05-21 15:53:59 -05001663 reason = iscsi_session_chkready(cls_session);
Mike Christie6eabafb2008-01-31 13:36:43 -06001664 if (reason) {
1665 sc->result = reason;
1666 goto fault;
1667 }
1668
Mike Christie301e0f7e2009-05-13 17:57:47 -05001669 if (session->state != ISCSI_STATE_LOGGED_IN) {
Mike Christie656cffc2006-05-18 20:31:42 -05001670 /*
1671 * to handle the race between when we set the recovery state
1672 * and block the session we requeue here (commands could
1673 * be entering our queuecommand while a block is starting
1674 * up because the block code is not locked)
1675 */
Mike Christie9000bcd2007-12-13 12:43:32 -06001676 switch (session->state) {
Mike Christie301e0f7e2009-05-13 17:57:47 -05001677 case ISCSI_STATE_FAILED:
Mike Christie9000bcd2007-12-13 12:43:32 -06001678 case ISCSI_STATE_IN_RECOVERY:
Mike Christie656cffc2006-05-18 20:31:42 -05001679 reason = FAILURE_SESSION_IN_RECOVERY;
Mike Christie301e0f7e2009-05-13 17:57:47 -05001680 sc->result = DID_IMM_RETRY << 16;
1681 break;
Mike Christie9000bcd2007-12-13 12:43:32 -06001682 case ISCSI_STATE_LOGGING_OUT:
1683 reason = FAILURE_SESSION_LOGGING_OUT;
Mike Christie301e0f7e2009-05-13 17:57:47 -05001684 sc->result = DID_IMM_RETRY << 16;
1685 break;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001686 case ISCSI_STATE_RECOVERY_FAILED:
Mike Christie656cffc2006-05-18 20:31:42 -05001687 reason = FAILURE_SESSION_RECOVERY_TIMEOUT;
Mike Christie56d7fcf2008-08-19 18:45:26 -05001688 sc->result = DID_TRANSPORT_FAILFAST << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001689 break;
1690 case ISCSI_STATE_TERMINATE:
Mike Christie656cffc2006-05-18 20:31:42 -05001691 reason = FAILURE_SESSION_TERMINATE;
Mike Christie6eabafb2008-01-31 13:36:43 -06001692 sc->result = DID_NO_CONNECT << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001693 break;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001694 default:
Mike Christie656cffc2006-05-18 20:31:42 -05001695 reason = FAILURE_SESSION_FREED;
Mike Christie6eabafb2008-01-31 13:36:43 -06001696 sc->result = DID_NO_CONNECT << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001697 }
Mike Christie7996a772006-04-06 21:13:41 -05001698 goto fault;
1699 }
1700
Mike Christie7996a772006-04-06 21:13:41 -05001701 conn = session->leadconn;
Mike Christie98644042006-10-16 18:09:39 -04001702 if (!conn) {
1703 reason = FAILURE_SESSION_FREED;
Mike Christie6eabafb2008-01-31 13:36:43 -06001704 sc->result = DID_NO_CONNECT << 16;
Mike Christie98644042006-10-16 18:09:39 -04001705 goto fault;
1706 }
Mike Christie7996a772006-04-06 21:13:41 -05001707
Mike Christie661134a2009-09-05 07:35:33 +05301708 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) {
1709 reason = FAILURE_SESSION_IN_RECOVERY;
1710 sc->result = DID_REQUEUE;
1711 goto fault;
1712 }
1713
Mike Christie77a23c22007-05-30 12:57:18 -05001714 if (iscsi_check_cmdsn_window_closed(conn)) {
1715 reason = FAILURE_WINDOW_CLOSED;
1716 goto reject;
1717 }
1718
Mike Christie577577d2008-12-02 00:32:05 -06001719 task = iscsi_alloc_task(conn, sc);
1720 if (!task) {
Mike Christie60ecebf2006-08-31 18:09:25 -04001721 reason = FAILURE_OOM;
1722 goto reject;
1723 }
Mike Christie7996a772006-04-06 21:13:41 -05001724
Mike Christie1336aed2009-05-13 17:57:48 -05001725 if (!ihost->workq) {
Mike Christie577577d2008-12-02 00:32:05 -06001726 reason = iscsi_prep_scsi_cmd_pdu(task);
1727 if (reason) {
Mike Christie5d12c052009-11-11 16:34:32 -06001728 if (reason == -ENOMEM || reason == -EACCES) {
Mike Christie577577d2008-12-02 00:32:05 -06001729 reason = FAILURE_OOM;
1730 goto prepd_reject;
1731 } else {
1732 sc->result = DID_ABORT << 16;
1733 goto prepd_fault;
1734 }
Mike Christie052d0142008-05-21 15:54:05 -05001735 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001736 if (session->tt->xmit_task(task)) {
Mike Christied3305f32009-08-20 15:10:58 -05001737 session->cmdsn--;
Mike Christie052d0142008-05-21 15:54:05 -05001738 reason = FAILURE_SESSION_NOT_READY;
Mike Christie577577d2008-12-02 00:32:05 -06001739 goto prepd_reject;
Mike Christie052d0142008-05-21 15:54:05 -05001740 }
Mike Christie3bbaaad2009-05-13 17:57:46 -05001741 } else {
1742 list_add_tail(&task->running, &conn->cmdqueue);
Mike Christie32ae7632009-03-05 14:46:03 -06001743 iscsi_conn_queue_work(conn);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001744 }
Mike Christie052d0142008-05-21 15:54:05 -05001745
1746 session->queued_cmdsn++;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001747 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001748 return 0;
1749
Mike Christie577577d2008-12-02 00:32:05 -06001750prepd_reject:
Mike Christief41d4722010-12-31 02:22:21 -06001751 iscsi_complete_task(task, ISCSI_TASK_REQUEUE_SCSIQ);
Mike Christie7996a772006-04-06 21:13:41 -05001752reject:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001753 spin_unlock_bh(&session->frwd_lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001754 ISCSI_DBG_SESSION(session, "cmd 0x%x rejected (%d)\n",
1755 sc->cmnd[0], reason);
Mike Christied6d13ee2008-08-17 15:24:43 -05001756 return SCSI_MLQUEUE_TARGET_BUSY;
Mike Christie7996a772006-04-06 21:13:41 -05001757
Mike Christie577577d2008-12-02 00:32:05 -06001758prepd_fault:
Mike Christief41d4722010-12-31 02:22:21 -06001759 iscsi_complete_task(task, ISCSI_TASK_REQUEUE_SCSIQ);
Mike Christie7996a772006-04-06 21:13:41 -05001760fault:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001761 spin_unlock_bh(&session->frwd_lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001762 ISCSI_DBG_SESSION(session, "iscsi: cmd 0x%x is not queued (%d)\n",
1763 sc->cmnd[0], reason);
Boaz Harroshc07d4442008-04-18 10:11:52 -05001764 if (!scsi_bidi_cmnd(sc))
1765 scsi_set_resid(sc, scsi_bufflen(sc));
1766 else {
1767 scsi_out(sc)->resid = scsi_out(sc)->length;
1768 scsi_in(sc)->resid = scsi_in(sc)->length;
1769 }
Mike Christief41d4722010-12-31 02:22:21 -06001770 sc->scsi_done(sc);
Mike Christie7996a772006-04-06 21:13:41 -05001771 return 0;
1772}
1773EXPORT_SYMBOL_GPL(iscsi_queuecommand);
1774
Mike Christie6b5d6c42009-04-21 15:32:32 -05001775int iscsi_target_alloc(struct scsi_target *starget)
1776{
1777 struct iscsi_cls_session *cls_session = starget_to_session(starget);
1778 struct iscsi_session *session = cls_session->dd_data;
1779
1780 starget->can_queue = session->scsi_cmds_max;
1781 return 0;
1782}
1783EXPORT_SYMBOL_GPL(iscsi_target_alloc);
1784
Mike Christie843c0a82007-12-13 12:43:20 -06001785static void iscsi_tmf_timedout(unsigned long data)
Mike Christie7996a772006-04-06 21:13:41 -05001786{
Mike Christie843c0a82007-12-13 12:43:20 -06001787 struct iscsi_conn *conn = (struct iscsi_conn *)data;
Mike Christie7996a772006-04-06 21:13:41 -05001788 struct iscsi_session *session = conn->session;
1789
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001790 spin_lock(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06001791 if (conn->tmf_state == TMF_QUEUED) {
1792 conn->tmf_state = TMF_TIMEDOUT;
Erez Zilberbd2199d2009-06-15 22:11:10 -05001793 ISCSI_DBG_EH(session, "tmf timedout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001794 /* unblock eh_abort() */
1795 wake_up(&conn->ehwait);
1796 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001797 spin_unlock(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001798}
1799
Mike Christie9c19a7d2008-05-21 15:54:09 -05001800static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn,
Mike Christief6d51802007-12-13 12:43:30 -06001801 struct iscsi_tm *hdr, int age,
1802 int timeout)
Mike Christie7996a772006-04-06 21:13:41 -05001803{
Mike Christie7996a772006-04-06 21:13:41 -05001804 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001805 struct iscsi_task *task;
Mike Christie7996a772006-04-06 21:13:41 -05001806
Mike Christie9c19a7d2008-05-21 15:54:09 -05001807 task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr,
Mike Christie843c0a82007-12-13 12:43:20 -06001808 NULL, 0);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001809 if (!task) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001810 spin_unlock_bh(&session->frwd_lock);
Mike Christiedf4da5c2010-12-31 02:22:18 -06001811 iscsi_conn_printk(KERN_ERR, conn, "Could not send TMF.\n");
Mike Christie7996a772006-04-06 21:13:41 -05001812 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001813 spin_lock_bh(&session->frwd_lock);
Mike Christie77a23c22007-05-30 12:57:18 -05001814 return -EPERM;
Mike Christie7996a772006-04-06 21:13:41 -05001815 }
Mike Christie843c0a82007-12-13 12:43:20 -06001816 conn->tmfcmd_pdus_cnt++;
Mike Christief6d51802007-12-13 12:43:30 -06001817 conn->tmf_timer.expires = timeout * HZ + jiffies;
Mike Christie843c0a82007-12-13 12:43:20 -06001818 conn->tmf_timer.function = iscsi_tmf_timedout;
1819 conn->tmf_timer.data = (unsigned long)conn;
1820 add_timer(&conn->tmf_timer);
Erez Zilberbd2199d2009-06-15 22:11:10 -05001821 ISCSI_DBG_EH(session, "tmf set timeout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001822
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001823 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05001824 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001825
1826 /*
1827 * block eh thread until:
1828 *
Mike Christie843c0a82007-12-13 12:43:20 -06001829 * 1) tmf response
1830 * 2) tmf timeout
Mike Christie7996a772006-04-06 21:13:41 -05001831 * 3) session is terminated or restarted or userspace has
1832 * given up on recovery
1833 */
Mike Christie843c0a82007-12-13 12:43:20 -06001834 wait_event_interruptible(conn->ehwait, age != session->age ||
Mike Christie7996a772006-04-06 21:13:41 -05001835 session->state != ISCSI_STATE_LOGGED_IN ||
Mike Christie843c0a82007-12-13 12:43:20 -06001836 conn->tmf_state != TMF_QUEUED);
Mike Christie7996a772006-04-06 21:13:41 -05001837 if (signal_pending(current))
1838 flush_signals(current);
Mike Christie843c0a82007-12-13 12:43:20 -06001839 del_timer_sync(&conn->tmf_timer);
1840
Mike Christie6724add2007-08-15 01:38:30 -05001841 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001842 spin_lock_bh(&session->frwd_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001843 /* if the session drops it will clean up the task */
Mike Christie843c0a82007-12-13 12:43:20 -06001844 if (age != session->age ||
1845 session->state != ISCSI_STATE_LOGGED_IN)
1846 return -ENOTCONN;
Mike Christie7996a772006-04-06 21:13:41 -05001847 return 0;
1848}
1849
1850/*
Mike Christie843c0a82007-12-13 12:43:20 -06001851 * Fail commands. session lock held and recv side suspended and xmit
1852 * thread flushed
1853 */
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001854static void fail_scsi_tasks(struct iscsi_conn *conn, u64 lun, int error)
Mike Christie843c0a82007-12-13 12:43:20 -06001855{
Mike Christie3bbaaad2009-05-13 17:57:46 -05001856 struct iscsi_task *task;
1857 int i;
Mike Christie843c0a82007-12-13 12:43:20 -06001858
Mike Christie3bbaaad2009-05-13 17:57:46 -05001859 for (i = 0; i < conn->session->cmds_max; i++) {
1860 task = conn->session->cmds[i];
1861 if (!task->sc || task->state == ISCSI_TASK_FREE)
1862 continue;
Mike Christie843c0a82007-12-13 12:43:20 -06001863
Mike Christie3bbaaad2009-05-13 17:57:46 -05001864 if (lun != -1 && lun != task->sc->device->lun)
1865 continue;
Mike Christie843c0a82007-12-13 12:43:20 -06001866
Mike Christie3bbaaad2009-05-13 17:57:46 -05001867 ISCSI_DBG_SESSION(conn->session,
1868 "failing sc %p itt 0x%x state %d\n",
1869 task->sc, task->itt, task->state);
Mike Christieb3cd5052009-05-13 17:57:49 -05001870 fail_scsi_task(task, error);
Mike Christie843c0a82007-12-13 12:43:20 -06001871 }
1872}
1873
Mike Christie661134a2009-09-05 07:35:33 +05301874/**
1875 * iscsi_suspend_queue - suspend iscsi_queuecommand
1876 * @conn: iscsi conn to stop queueing IO on
1877 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001878 * This grabs the session frwd_lock to make sure no one is in
Mike Christie661134a2009-09-05 07:35:33 +05301879 * xmit_task/queuecommand, and then sets suspend to prevent
1880 * new commands from being queued. This only needs to be called
1881 * by offload drivers that need to sync a path like ep disconnect
1882 * with the iscsi_queuecommand/xmit_task. To start IO again libiscsi
1883 * will call iscsi_start_tx and iscsi_unblock_session when in FFP.
1884 */
1885void iscsi_suspend_queue(struct iscsi_conn *conn)
1886{
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001887 spin_lock_bh(&conn->session->frwd_lock);
Mike Christie661134a2009-09-05 07:35:33 +05301888 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001889 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie661134a2009-09-05 07:35:33 +05301890}
1891EXPORT_SYMBOL_GPL(iscsi_suspend_queue);
1892
1893/**
1894 * iscsi_suspend_tx - suspend iscsi_data_xmit
1895 * @conn: iscsi conn tp stop processing IO on.
1896 *
1897 * This function sets the suspend bit to prevent iscsi_data_xmit
1898 * from sending new IO, and if work is queued on the xmit thread
1899 * it will wait for it to be completed.
1900 */
Mike Christieb40977d2008-05-21 15:54:03 -05001901void iscsi_suspend_tx(struct iscsi_conn *conn)
Mike Christie6724add2007-08-15 01:38:30 -05001902{
Mike Christie32ae7632009-03-05 14:46:03 -06001903 struct Scsi_Host *shost = conn->session->host;
1904 struct iscsi_host *ihost = shost_priv(shost);
1905
Mike Christie6724add2007-08-15 01:38:30 -05001906 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie1336aed2009-05-13 17:57:48 -05001907 if (ihost->workq)
Mike Christie32ae7632009-03-05 14:46:03 -06001908 flush_workqueue(ihost->workq);
Mike Christie6724add2007-08-15 01:38:30 -05001909}
Mike Christieb40977d2008-05-21 15:54:03 -05001910EXPORT_SYMBOL_GPL(iscsi_suspend_tx);
Mike Christie6724add2007-08-15 01:38:30 -05001911
1912static void iscsi_start_tx(struct iscsi_conn *conn)
1913{
1914 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie1336aed2009-05-13 17:57:48 -05001915 iscsi_conn_queue_work(conn);
Mike Christie6724add2007-08-15 01:38:30 -05001916}
1917
Mike Christie4c48a822009-05-13 17:57:45 -05001918/*
1919 * We want to make sure a ping is in flight. It has timed out.
1920 * And we are not busy processing a pdu that is making
1921 * progress but got started before the ping and is taking a while
1922 * to complete so the ping is just stuck behind it in a queue.
1923 */
1924static int iscsi_has_ping_timed_out(struct iscsi_conn *conn)
1925{
1926 if (conn->ping_task &&
1927 time_before_eq(conn->last_recv + (conn->recv_timeout * HZ) +
1928 (conn->ping_timeout * HZ), jiffies))
1929 return 1;
1930 else
1931 return 0;
1932}
1933
Christoph Hellwigb6a05c82017-01-30 13:18:58 +01001934enum blk_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *sc)
Mike Christief6d51802007-12-13 12:43:30 -06001935{
Mike Christied355e572009-06-15 22:11:08 -05001936 enum blk_eh_timer_return rc = BLK_EH_NOT_HANDLED;
Mike Christie92ed4d62010-02-10 16:51:45 -06001937 struct iscsi_task *task = NULL, *running_task;
Mike Christief6d51802007-12-13 12:43:30 -06001938 struct iscsi_cls_session *cls_session;
1939 struct iscsi_session *session;
1940 struct iscsi_conn *conn;
Mike Christie92ed4d62010-02-10 16:51:45 -06001941 int i;
Mike Christief6d51802007-12-13 12:43:30 -06001942
Mike Christied355e572009-06-15 22:11:08 -05001943 cls_session = starget_to_session(scsi_target(sc->device));
Mike Christie75613522008-05-21 15:53:59 -05001944 session = cls_session->dd_data;
Mike Christief6d51802007-12-13 12:43:30 -06001945
Erez Zilberbd2199d2009-06-15 22:11:10 -05001946 ISCSI_DBG_EH(session, "scsi cmd %p timedout\n", sc);
Mike Christief6d51802007-12-13 12:43:30 -06001947
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001948 spin_lock(&session->frwd_lock);
Mike Christiee3d338a2012-01-26 21:13:11 -06001949 task = (struct iscsi_task *)sc->SCp.ptr;
1950 if (!task) {
1951 /*
1952 * Raced with completion. Blk layer has taken ownership
1953 * so let timeout code complete it now.
1954 */
1955 rc = BLK_EH_HANDLED;
1956 goto done;
1957 }
1958
Mike Christief6d51802007-12-13 12:43:30 -06001959 if (session->state != ISCSI_STATE_LOGGED_IN) {
1960 /*
1961 * We are probably in the middle of iscsi recovery so let
1962 * that complete and handle the error.
1963 */
Jens Axboe242f9dc2008-09-14 05:55:09 -07001964 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001965 goto done;
1966 }
1967
1968 conn = session->leadconn;
1969 if (!conn) {
1970 /* In the middle of shuting down */
Jens Axboe242f9dc2008-09-14 05:55:09 -07001971 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001972 goto done;
1973 }
1974
Mike Christied355e572009-06-15 22:11:08 -05001975 /*
1976 * If we have sent (at least queued to the network layer) a pdu or
1977 * recvd one for the task since the last timeout ask for
1978 * more time. If on the next timeout we have not made progress
1979 * we can check if it is the task or connection when we send the
1980 * nop as a ping.
1981 */
Mike Christie92ed4d62010-02-10 16:51:45 -06001982 if (time_after(task->last_xfer, task->last_timeout)) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05001983 ISCSI_DBG_EH(session, "Command making progress. Asking "
1984 "scsi-ml for more time to complete. "
Mike Christie92ed4d62010-02-10 16:51:45 -06001985 "Last data xfer at %lu. Last timeout was at "
Erez Zilberbd2199d2009-06-15 22:11:10 -05001986 "%lu\n.", task->last_xfer, task->last_timeout);
Mike Christied355e572009-06-15 22:11:08 -05001987 task->have_checked_conn = false;
1988 rc = BLK_EH_RESET_TIMER;
1989 goto done;
1990 }
1991
Mike Christief6d51802007-12-13 12:43:30 -06001992 if (!conn->recv_timeout && !conn->ping_timeout)
1993 goto done;
1994 /*
1995 * if the ping timedout then we are in the middle of cleaning up
1996 * and can let the iscsi eh handle it
1997 */
Mike Christie4c48a822009-05-13 17:57:45 -05001998 if (iscsi_has_ping_timed_out(conn)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07001999 rc = BLK_EH_RESET_TIMER;
Mike Christie4c48a822009-05-13 17:57:45 -05002000 goto done;
2001 }
Mike Christied355e572009-06-15 22:11:08 -05002002
Mike Christie92ed4d62010-02-10 16:51:45 -06002003 for (i = 0; i < conn->session->cmds_max; i++) {
2004 running_task = conn->session->cmds[i];
2005 if (!running_task->sc || running_task == task ||
2006 running_task->state != ISCSI_TASK_RUNNING)
2007 continue;
2008
2009 /*
2010 * Only check if cmds started before this one have made
2011 * progress, or this could never fail
2012 */
2013 if (time_after(running_task->sc->jiffies_at_alloc,
2014 task->sc->jiffies_at_alloc))
2015 continue;
2016
2017 if (time_after(running_task->last_xfer, task->last_timeout)) {
2018 /*
2019 * This task has not made progress, but a task
2020 * started before us has transferred data since
2021 * we started/last-checked. We could be queueing
2022 * too many tasks or the LU is bad.
2023 *
2024 * If the device is bad the cmds ahead of us on
2025 * other devs will complete, and this loop will
2026 * eventually fail starting the scsi eh.
2027 */
2028 ISCSI_DBG_EH(session, "Command has not made progress "
2029 "but commands ahead of it have. "
2030 "Asking scsi-ml for more time to "
2031 "complete. Our last xfer vs running task "
2032 "last xfer %lu/%lu. Last check %lu.\n",
2033 task->last_xfer, running_task->last_xfer,
2034 task->last_timeout);
2035 rc = BLK_EH_RESET_TIMER;
2036 goto done;
2037 }
2038 }
2039
Mike Christied355e572009-06-15 22:11:08 -05002040 /* Assumes nop timeout is shorter than scsi cmd timeout */
2041 if (task->have_checked_conn)
2042 goto done;
2043
Mike Christief6d51802007-12-13 12:43:30 -06002044 /*
Mike Christied355e572009-06-15 22:11:08 -05002045 * Checking the transport already or nop from a cmd timeout still
2046 * running
Mike Christief6d51802007-12-13 12:43:30 -06002047 */
Mike Christied355e572009-06-15 22:11:08 -05002048 if (conn->ping_task) {
2049 task->have_checked_conn = true;
Jens Axboe242f9dc2008-09-14 05:55:09 -07002050 rc = BLK_EH_RESET_TIMER;
Mike Christie4c48a822009-05-13 17:57:45 -05002051 goto done;
2052 }
2053
Mike Christied355e572009-06-15 22:11:08 -05002054 /* Make sure there is a transport check done */
2055 iscsi_send_nopout(conn, NULL);
2056 task->have_checked_conn = true;
2057 rc = BLK_EH_RESET_TIMER;
2058
Mike Christief6d51802007-12-13 12:43:30 -06002059done:
Mike Christied355e572009-06-15 22:11:08 -05002060 if (task)
2061 task->last_timeout = jiffies;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002062 spin_unlock(&session->frwd_lock);
Erez Zilberbd2199d2009-06-15 22:11:10 -05002063 ISCSI_DBG_EH(session, "return %s\n", rc == BLK_EH_RESET_TIMER ?
2064 "timer reset" : "nh");
Mike Christief6d51802007-12-13 12:43:30 -06002065 return rc;
2066}
Christoph Hellwigb6a05c82017-01-30 13:18:58 +01002067EXPORT_SYMBOL_GPL(iscsi_eh_cmd_timed_out);
Mike Christief6d51802007-12-13 12:43:30 -06002068
2069static void iscsi_check_transport_timeouts(unsigned long data)
2070{
2071 struct iscsi_conn *conn = (struct iscsi_conn *)data;
2072 struct iscsi_session *session = conn->session;
Mike Christie4cf10432008-05-07 20:43:52 -05002073 unsigned long recv_timeout, next_timeout = 0, last_recv;
Mike Christief6d51802007-12-13 12:43:30 -06002074
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002075 spin_lock(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -06002076 if (session->state != ISCSI_STATE_LOGGED_IN)
2077 goto done;
2078
Mike Christie4cf10432008-05-07 20:43:52 -05002079 recv_timeout = conn->recv_timeout;
2080 if (!recv_timeout)
Mike Christief6d51802007-12-13 12:43:30 -06002081 goto done;
2082
Mike Christie4cf10432008-05-07 20:43:52 -05002083 recv_timeout *= HZ;
Mike Christief6d51802007-12-13 12:43:30 -06002084 last_recv = conn->last_recv;
Mike Christie4c48a822009-05-13 17:57:45 -05002085
2086 if (iscsi_has_ping_timed_out(conn)) {
Mike Christie322d7392008-01-31 13:36:52 -06002087 iscsi_conn_printk(KERN_ERR, conn, "ping timeout of %d secs "
Mike Christie4c48a822009-05-13 17:57:45 -05002088 "expired, recv timeout %d, last rx %lu, "
2089 "last ping %lu, now %lu\n",
2090 conn->ping_timeout, conn->recv_timeout,
2091 last_recv, conn->last_ping, jiffies);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002092 spin_unlock(&session->frwd_lock);
Mike Christie09ff7422014-07-12 15:51:51 -05002093 iscsi_conn_failure(conn, ISCSI_ERR_NOP_TIMEDOUT);
Mike Christief6d51802007-12-13 12:43:30 -06002094 return;
2095 }
2096
Mike Christie4cf10432008-05-07 20:43:52 -05002097 if (time_before_eq(last_recv + recv_timeout, jiffies)) {
Mike Christiec8611f92008-05-08 20:15:34 -05002098 /* send a ping to try to provoke some traffic */
Mike Christie1b2c7af2009-03-05 14:45:58 -06002099 ISCSI_DBG_CONN(conn, "Sending nopout as ping\n");
Ariel Nahum52f56642015-09-03 19:49:55 +03002100 if (iscsi_send_nopout(conn, NULL))
2101 next_timeout = jiffies + (1 * HZ);
2102 else
2103 next_timeout = conn->last_ping + (conn->ping_timeout * HZ);
Mike Christiead294e92008-01-31 13:36:50 -06002104 } else
Mike Christie4cf10432008-05-07 20:43:52 -05002105 next_timeout = last_recv + recv_timeout;
Mike Christief6d51802007-12-13 12:43:30 -06002106
Mike Christie1b2c7af2009-03-05 14:45:58 -06002107 ISCSI_DBG_CONN(conn, "Setting next tmo %lu\n", next_timeout);
Mike Christiead294e92008-01-31 13:36:50 -06002108 mod_timer(&conn->transport_timer, next_timeout);
Mike Christief6d51802007-12-13 12:43:30 -06002109done:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002110 spin_unlock(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -06002111}
2112
Mike Christie9c19a7d2008-05-21 15:54:09 -05002113static void iscsi_prep_abort_task_pdu(struct iscsi_task *task,
Mike Christie843c0a82007-12-13 12:43:20 -06002114 struct iscsi_tm *hdr)
2115{
2116 memset(hdr, 0, sizeof(*hdr));
2117 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2118 hdr->flags = ISCSI_TM_FUNC_ABORT_TASK & ISCSI_FLAG_TM_FUNC_MASK;
2119 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Andy Grover55bdabd2011-06-16 15:57:09 -07002120 hdr->lun = task->lun;
Mike Christie577577d2008-12-02 00:32:05 -06002121 hdr->rtt = task->hdr_itt;
2122 hdr->refcmdsn = task->cmdsn;
Mike Christie843c0a82007-12-13 12:43:20 -06002123}
2124
Mike Christie7996a772006-04-06 21:13:41 -05002125int iscsi_eh_abort(struct scsi_cmnd *sc)
2126{
Mike Christie75613522008-05-21 15:53:59 -05002127 struct iscsi_cls_session *cls_session;
2128 struct iscsi_session *session;
Mike Christief47f2cf2006-08-31 18:09:33 -04002129 struct iscsi_conn *conn;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002130 struct iscsi_task *task;
Mike Christie843c0a82007-12-13 12:43:20 -06002131 struct iscsi_tm *hdr;
Bart Van Asschee9e410e2016-03-30 11:27:08 -07002132 int age;
Mike Christie7996a772006-04-06 21:13:41 -05002133
Mike Christie75613522008-05-21 15:53:59 -05002134 cls_session = starget_to_session(scsi_target(sc->device));
2135 session = cls_session->dd_data;
2136
Erez Zilberbd2199d2009-06-15 22:11:10 -05002137 ISCSI_DBG_EH(session, "aborting sc %p\n", sc);
Mike Christie4421c9e2009-05-13 17:57:50 -05002138
Mike Christie6724add2007-08-15 01:38:30 -05002139 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002140 spin_lock_bh(&session->frwd_lock);
Mike Christief47f2cf2006-08-31 18:09:33 -04002141 /*
2142 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
2143 * got the command.
2144 */
2145 if (!sc->SCp.ptr) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05002146 ISCSI_DBG_EH(session, "sc never reached iscsi layer or "
2147 "it completed.\n");
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002148 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05002149 mutex_unlock(&session->eh_mutex);
Mike Christief47f2cf2006-08-31 18:09:33 -04002150 return SUCCESS;
2151 }
2152
Mike Christie7996a772006-04-06 21:13:41 -05002153 /*
2154 * If we are not logged in or we have started a new session
2155 * then let the host reset code handle this
2156 */
Mike Christie843c0a82007-12-13 12:43:20 -06002157 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN ||
2158 sc->SCp.phase != session->age) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002159 spin_unlock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002160 mutex_unlock(&session->eh_mutex);
Erez Zilberbd2199d2009-06-15 22:11:10 -05002161 ISCSI_DBG_EH(session, "failing abort due to dropped "
Mike Christie4421c9e2009-05-13 17:57:50 -05002162 "session.\n");
Mike Christie843c0a82007-12-13 12:43:20 -06002163 return FAILED;
2164 }
2165
2166 conn = session->leadconn;
2167 conn->eh_abort_cnt++;
2168 age = session->age;
2169
Mike Christie9c19a7d2008-05-21 15:54:09 -05002170 task = (struct iscsi_task *)sc->SCp.ptr;
Erez Zilberbd2199d2009-06-15 22:11:10 -05002171 ISCSI_DBG_EH(session, "aborting [sc %p itt 0x%x]\n",
2172 sc, task->itt);
Mike Christie7996a772006-04-06 21:13:41 -05002173
Mike Christie9c19a7d2008-05-21 15:54:09 -05002174 /* task completed before time out */
2175 if (!task->sc) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05002176 ISCSI_DBG_EH(session, "sc completed while abort in progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05002177 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05002178 }
Mike Christie7996a772006-04-06 21:13:41 -05002179
Mike Christie9c19a7d2008-05-21 15:54:09 -05002180 if (task->state == ISCSI_TASK_PENDING) {
Mike Christieb3cd5052009-05-13 17:57:49 -05002181 fail_scsi_task(task, DID_ABORT);
Mike Christie77a23c22007-05-30 12:57:18 -05002182 goto success;
2183 }
Mike Christie7996a772006-04-06 21:13:41 -05002184
Mike Christie843c0a82007-12-13 12:43:20 -06002185 /* only have one tmf outstanding at a time */
2186 if (conn->tmf_state != TMF_INITIAL)
Mike Christie7996a772006-04-06 21:13:41 -05002187 goto failed;
Mike Christie843c0a82007-12-13 12:43:20 -06002188 conn->tmf_state = TMF_QUEUED;
Mike Christie7996a772006-04-06 21:13:41 -05002189
Mike Christie843c0a82007-12-13 12:43:20 -06002190 hdr = &conn->tmhdr;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002191 iscsi_prep_abort_task_pdu(task, hdr);
Mike Christie843c0a82007-12-13 12:43:20 -06002192
Bart Van Asschee9e410e2016-03-30 11:27:08 -07002193 if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout))
Mike Christie843c0a82007-12-13 12:43:20 -06002194 goto failed;
Mike Christie843c0a82007-12-13 12:43:20 -06002195
2196 switch (conn->tmf_state) {
2197 case TMF_SUCCESS:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002198 spin_unlock_bh(&session->frwd_lock);
Mike Christie913e5bf2008-05-21 15:54:18 -05002199 /*
2200 * stop tx side incase the target had sent a abort rsp but
2201 * the initiator was still writing out data.
2202 */
Mike Christie6724add2007-08-15 01:38:30 -05002203 iscsi_suspend_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05002204 /*
Mike Christie913e5bf2008-05-21 15:54:18 -05002205 * we do not stop the recv side because targets have been
2206 * good and have never sent us a successful tmf response
2207 * then sent more data for the cmd.
Mike Christie77a23c22007-05-30 12:57:18 -05002208 */
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002209 spin_lock_bh(&session->frwd_lock);
Mike Christieb3cd5052009-05-13 17:57:49 -05002210 fail_scsi_task(task, DID_ABORT);
Mike Christie843c0a82007-12-13 12:43:20 -06002211 conn->tmf_state = TMF_INITIAL;
Mike Christie5d12c052009-11-11 16:34:32 -06002212 memset(hdr, 0, sizeof(*hdr));
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002213 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05002214 iscsi_start_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05002215 goto success_unlocked;
Mike Christie843c0a82007-12-13 12:43:20 -06002216 case TMF_TIMEDOUT:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002217 spin_unlock_bh(&session->frwd_lock);
Mike Christiedf4da5c2010-12-31 02:22:18 -06002218 iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
Mike Christie843c0a82007-12-13 12:43:20 -06002219 goto failed_unlocked;
2220 case TMF_NOT_FOUND:
2221 if (!sc->SCp.ptr) {
2222 conn->tmf_state = TMF_INITIAL;
Mike Christie5d12c052009-11-11 16:34:32 -06002223 memset(hdr, 0, sizeof(*hdr));
Mike Christie9c19a7d2008-05-21 15:54:09 -05002224 /* task completed before tmf abort response */
Erez Zilberbd2199d2009-06-15 22:11:10 -05002225 ISCSI_DBG_EH(session, "sc completed while abort in "
2226 "progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05002227 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05002228 }
2229 /* fall through */
2230 default:
Mike Christie843c0a82007-12-13 12:43:20 -06002231 conn->tmf_state = TMF_INITIAL;
2232 goto failed;
Mike Christie7996a772006-04-06 21:13:41 -05002233 }
2234
Mike Christie77a23c22007-05-30 12:57:18 -05002235success:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002236 spin_unlock_bh(&session->frwd_lock);
Mike Christie77a23c22007-05-30 12:57:18 -05002237success_unlocked:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002238 ISCSI_DBG_EH(session, "abort success [sc %p itt 0x%x]\n",
2239 sc, task->itt);
Mike Christie6724add2007-08-15 01:38:30 -05002240 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002241 return SUCCESS;
2242
2243failed:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002244 spin_unlock_bh(&session->frwd_lock);
Mike Christie77a23c22007-05-30 12:57:18 -05002245failed_unlocked:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002246 ISCSI_DBG_EH(session, "abort failed [sc %p itt 0x%x]\n", sc,
2247 task ? task->itt : 0);
Mike Christie6724add2007-08-15 01:38:30 -05002248 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002249 return FAILED;
2250}
2251EXPORT_SYMBOL_GPL(iscsi_eh_abort);
2252
Mike Christie843c0a82007-12-13 12:43:20 -06002253static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
2254{
2255 memset(hdr, 0, sizeof(*hdr));
2256 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2257 hdr->flags = ISCSI_TM_FUNC_LOGICAL_UNIT_RESET & ISCSI_FLAG_TM_FUNC_MASK;
2258 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Andy Grover55bdabd2011-06-16 15:57:09 -07002259 int_to_scsilun(sc->device->lun, &hdr->lun);
Mike Christief6d51802007-12-13 12:43:30 -06002260 hdr->rtt = RESERVED_ITT;
Mike Christie843c0a82007-12-13 12:43:20 -06002261}
2262
2263int iscsi_eh_device_reset(struct scsi_cmnd *sc)
2264{
Mike Christie75613522008-05-21 15:53:59 -05002265 struct iscsi_cls_session *cls_session;
2266 struct iscsi_session *session;
Mike Christie843c0a82007-12-13 12:43:20 -06002267 struct iscsi_conn *conn;
2268 struct iscsi_tm *hdr;
2269 int rc = FAILED;
2270
Mike Christie75613522008-05-21 15:53:59 -05002271 cls_session = starget_to_session(scsi_target(sc->device));
2272 session = cls_session->dd_data;
2273
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002274 ISCSI_DBG_EH(session, "LU Reset [sc %p lun %llu]\n", sc,
2275 sc->device->lun);
Mike Christie843c0a82007-12-13 12:43:20 -06002276
2277 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002278 spin_lock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002279 /*
2280 * Just check if we are not logged in. We cannot check for
2281 * the phase because the reset could come from a ioctl.
2282 */
2283 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
2284 goto unlock;
2285 conn = session->leadconn;
2286
2287 /* only have one tmf outstanding at a time */
2288 if (conn->tmf_state != TMF_INITIAL)
2289 goto unlock;
2290 conn->tmf_state = TMF_QUEUED;
2291
2292 hdr = &conn->tmhdr;
2293 iscsi_prep_lun_reset_pdu(sc, hdr);
2294
Mike Christie9c19a7d2008-05-21 15:54:09 -05002295 if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
Mike Christief6d51802007-12-13 12:43:30 -06002296 session->lu_reset_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06002297 rc = FAILED;
2298 goto unlock;
2299 }
2300
2301 switch (conn->tmf_state) {
2302 case TMF_SUCCESS:
2303 break;
2304 case TMF_TIMEDOUT:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002305 spin_unlock_bh(&session->frwd_lock);
Mike Christiedf4da5c2010-12-31 02:22:18 -06002306 iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
Mike Christie843c0a82007-12-13 12:43:20 -06002307 goto done;
2308 default:
2309 conn->tmf_state = TMF_INITIAL;
2310 goto unlock;
2311 }
2312
2313 rc = SUCCESS;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002314 spin_unlock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002315
2316 iscsi_suspend_tx(conn);
Mike Christie913e5bf2008-05-21 15:54:18 -05002317
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002318 spin_lock_bh(&session->frwd_lock);
Mike Christie5d12c052009-11-11 16:34:32 -06002319 memset(hdr, 0, sizeof(*hdr));
Mike Christie3bbaaad2009-05-13 17:57:46 -05002320 fail_scsi_tasks(conn, sc->device->lun, DID_ERROR);
Mike Christie843c0a82007-12-13 12:43:20 -06002321 conn->tmf_state = TMF_INITIAL;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002322 spin_unlock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002323
2324 iscsi_start_tx(conn);
2325 goto done;
2326
2327unlock:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002328 spin_unlock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002329done:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002330 ISCSI_DBG_EH(session, "dev reset result = %s\n",
2331 rc == SUCCESS ? "SUCCESS" : "FAILED");
Mike Christie843c0a82007-12-13 12:43:20 -06002332 mutex_unlock(&session->eh_mutex);
2333 return rc;
2334}
2335EXPORT_SYMBOL_GPL(iscsi_eh_device_reset);
2336
Mike Christie3fe5ae82009-11-11 16:34:33 -06002337void iscsi_session_recovery_timedout(struct iscsi_cls_session *cls_session)
2338{
2339 struct iscsi_session *session = cls_session->dd_data;
2340
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002341 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002342 if (session->state != ISCSI_STATE_LOGGED_IN) {
2343 session->state = ISCSI_STATE_RECOVERY_FAILED;
2344 if (session->leadconn)
2345 wake_up(&session->leadconn->ehwait);
2346 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002347 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002348}
2349EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout);
2350
2351/**
2352 * iscsi_eh_session_reset - drop session and attempt relogin
2353 * @sc: scsi command
2354 *
2355 * This function will wait for a relogin, session termination from
2356 * userspace, or a recovery/replacement timeout.
2357 */
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302358int iscsi_eh_session_reset(struct scsi_cmnd *sc)
Mike Christie3fe5ae82009-11-11 16:34:33 -06002359{
2360 struct iscsi_cls_session *cls_session;
2361 struct iscsi_session *session;
2362 struct iscsi_conn *conn;
2363
2364 cls_session = starget_to_session(scsi_target(sc->device));
2365 session = cls_session->dd_data;
2366 conn = session->leadconn;
2367
2368 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002369 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002370 if (session->state == ISCSI_STATE_TERMINATE) {
2371failed:
2372 ISCSI_DBG_EH(session,
2373 "failing session reset: Could not log back into "
2374 "%s, %s [age %d]\n", session->targetname,
2375 conn->persistent_address, session->age);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002376 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002377 mutex_unlock(&session->eh_mutex);
2378 return FAILED;
2379 }
2380
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002381 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002382 mutex_unlock(&session->eh_mutex);
2383 /*
2384 * we drop the lock here but the leadconn cannot be destoyed while
2385 * we are in the scsi eh
2386 */
Mike Christiedf4da5c2010-12-31 02:22:18 -06002387 iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002388
2389 ISCSI_DBG_EH(session, "wait for relogin\n");
2390 wait_event_interruptible(conn->ehwait,
2391 session->state == ISCSI_STATE_TERMINATE ||
2392 session->state == ISCSI_STATE_LOGGED_IN ||
2393 session->state == ISCSI_STATE_RECOVERY_FAILED);
2394 if (signal_pending(current))
2395 flush_signals(current);
2396
2397 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002398 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002399 if (session->state == ISCSI_STATE_LOGGED_IN) {
2400 ISCSI_DBG_EH(session,
2401 "session reset succeeded for %s,%s\n",
2402 session->targetname, conn->persistent_address);
2403 } else
2404 goto failed;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002405 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002406 mutex_unlock(&session->eh_mutex);
2407 return SUCCESS;
2408}
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302409EXPORT_SYMBOL_GPL(iscsi_eh_session_reset);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002410
2411static void iscsi_prep_tgt_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
2412{
2413 memset(hdr, 0, sizeof(*hdr));
2414 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2415 hdr->flags = ISCSI_TM_FUNC_TARGET_WARM_RESET & ISCSI_FLAG_TM_FUNC_MASK;
2416 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2417 hdr->rtt = RESERVED_ITT;
2418}
2419
2420/**
2421 * iscsi_eh_target_reset - reset target
2422 * @sc: scsi command
2423 *
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302424 * This will attempt to send a warm target reset.
Mike Christie3fe5ae82009-11-11 16:34:33 -06002425 */
Bart Van Assche3907adf2016-03-30 11:26:46 -07002426static int iscsi_eh_target_reset(struct scsi_cmnd *sc)
Mike Christie3fe5ae82009-11-11 16:34:33 -06002427{
2428 struct iscsi_cls_session *cls_session;
2429 struct iscsi_session *session;
2430 struct iscsi_conn *conn;
2431 struct iscsi_tm *hdr;
2432 int rc = FAILED;
2433
2434 cls_session = starget_to_session(scsi_target(sc->device));
2435 session = cls_session->dd_data;
2436
2437 ISCSI_DBG_EH(session, "tgt Reset [sc %p tgt %s]\n", sc,
2438 session->targetname);
2439
2440 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002441 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002442 /*
2443 * Just check if we are not logged in. We cannot check for
2444 * the phase because the reset could come from a ioctl.
2445 */
2446 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
2447 goto unlock;
2448 conn = session->leadconn;
2449
2450 /* only have one tmf outstanding at a time */
2451 if (conn->tmf_state != TMF_INITIAL)
2452 goto unlock;
2453 conn->tmf_state = TMF_QUEUED;
2454
2455 hdr = &conn->tmhdr;
2456 iscsi_prep_tgt_reset_pdu(sc, hdr);
2457
2458 if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
2459 session->tgt_reset_timeout)) {
2460 rc = FAILED;
2461 goto unlock;
2462 }
2463
2464 switch (conn->tmf_state) {
2465 case TMF_SUCCESS:
2466 break;
2467 case TMF_TIMEDOUT:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002468 spin_unlock_bh(&session->frwd_lock);
Mike Christiedf4da5c2010-12-31 02:22:18 -06002469 iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002470 goto done;
2471 default:
2472 conn->tmf_state = TMF_INITIAL;
2473 goto unlock;
2474 }
2475
2476 rc = SUCCESS;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002477 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002478
2479 iscsi_suspend_tx(conn);
2480
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002481 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002482 memset(hdr, 0, sizeof(*hdr));
2483 fail_scsi_tasks(conn, -1, DID_ERROR);
2484 conn->tmf_state = TMF_INITIAL;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002485 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002486
2487 iscsi_start_tx(conn);
2488 goto done;
2489
2490unlock:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002491 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002492done:
2493 ISCSI_DBG_EH(session, "tgt %s reset result = %s\n", session->targetname,
2494 rc == SUCCESS ? "SUCCESS" : "FAILED");
2495 mutex_unlock(&session->eh_mutex);
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302496 return rc;
2497}
Mike Christie3fe5ae82009-11-11 16:34:33 -06002498
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302499/**
2500 * iscsi_eh_recover_target - reset target and possibly the session
2501 * @sc: scsi command
2502 *
2503 * This will attempt to send a warm target reset. If that fails,
2504 * we will escalate to ERL0 session recovery.
2505 */
2506int iscsi_eh_recover_target(struct scsi_cmnd *sc)
2507{
2508 int rc;
2509
2510 rc = iscsi_eh_target_reset(sc);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002511 if (rc == FAILED)
2512 rc = iscsi_eh_session_reset(sc);
2513 return rc;
2514}
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302515EXPORT_SYMBOL_GPL(iscsi_eh_recover_target);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002516
Olaf Kirch63203772007-12-13 12:43:25 -06002517/*
2518 * Pre-allocate a pool of @max items of @item_size. By default, the pool
2519 * should be accessed via kfifo_{get,put} on q->queue.
2520 * Optionally, the caller can obtain the array of object pointers
2521 * by passing in a non-NULL @items pointer
2522 */
Mike Christie7996a772006-04-06 21:13:41 -05002523int
Olaf Kirch63203772007-12-13 12:43:25 -06002524iscsi_pool_init(struct iscsi_pool *q, int max, void ***items, int item_size)
Mike Christie7996a772006-04-06 21:13:41 -05002525{
Olaf Kirch63203772007-12-13 12:43:25 -06002526 int i, num_arrays = 1;
Mike Christie7996a772006-04-06 21:13:41 -05002527
Olaf Kirch63203772007-12-13 12:43:25 -06002528 memset(q, 0, sizeof(*q));
Mike Christie7996a772006-04-06 21:13:41 -05002529
2530 q->max = max;
Olaf Kirch63203772007-12-13 12:43:25 -06002531
2532 /* If the user passed an items pointer, he wants a copy of
2533 * the array. */
2534 if (items)
2535 num_arrays++;
2536 q->pool = kzalloc(num_arrays * max * sizeof(void*), GFP_KERNEL);
2537 if (q->pool == NULL)
Jean Delvaref474a372009-03-05 14:45:55 -06002538 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05002539
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002540 kfifo_init(&q->queue, (void*)q->pool, max * sizeof(void*));
Mike Christie7996a772006-04-06 21:13:41 -05002541
2542 for (i = 0; i < max; i++) {
Olaf Kirch63203772007-12-13 12:43:25 -06002543 q->pool[i] = kzalloc(item_size, GFP_KERNEL);
Mike Christie7996a772006-04-06 21:13:41 -05002544 if (q->pool[i] == NULL) {
Olaf Kirch63203772007-12-13 12:43:25 -06002545 q->max = i;
2546 goto enomem;
Mike Christie7996a772006-04-06 21:13:41 -05002547 }
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002548 kfifo_in(&q->queue, (void*)&q->pool[i], sizeof(void*));
Mike Christie7996a772006-04-06 21:13:41 -05002549 }
Olaf Kirch63203772007-12-13 12:43:25 -06002550
2551 if (items) {
2552 *items = q->pool + max;
2553 memcpy(*items, q->pool, max * sizeof(void *));
2554 }
2555
Mike Christie7996a772006-04-06 21:13:41 -05002556 return 0;
Olaf Kirch63203772007-12-13 12:43:25 -06002557
2558enomem:
2559 iscsi_pool_free(q);
2560 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05002561}
2562EXPORT_SYMBOL_GPL(iscsi_pool_init);
2563
Olaf Kirch63203772007-12-13 12:43:25 -06002564void iscsi_pool_free(struct iscsi_pool *q)
Mike Christie7996a772006-04-06 21:13:41 -05002565{
2566 int i;
2567
2568 for (i = 0; i < q->max; i++)
Olaf Kirch63203772007-12-13 12:43:25 -06002569 kfree(q->pool[i]);
Jean Delvaref474a372009-03-05 14:45:55 -06002570 kfree(q->pool);
Mike Christie7996a772006-04-06 21:13:41 -05002571}
2572EXPORT_SYMBOL_GPL(iscsi_pool_free);
2573
Mike Christiea4804cd2008-05-21 15:54:00 -05002574/**
2575 * iscsi_host_add - add host to system
2576 * @shost: scsi host
2577 * @pdev: parent device
2578 *
2579 * This should be called by partial offload and software iscsi drivers
2580 * to add a host to the system.
2581 */
2582int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev)
Mike Christie7996a772006-04-06 21:13:41 -05002583{
Mike Christie8e9a20c2008-06-16 10:11:33 -05002584 if (!shost->can_queue)
2585 shost->can_queue = ISCSI_DEF_XMIT_CMDS_MAX;
2586
Mike Christie4d108352009-03-05 14:46:04 -06002587 if (!shost->cmd_per_lun)
2588 shost->cmd_per_lun = ISCSI_DEF_CMD_PER_LUN;
2589
Mike Christiea4804cd2008-05-21 15:54:00 -05002590 return scsi_add_host(shost, pdev);
2591}
2592EXPORT_SYMBOL_GPL(iscsi_host_add);
2593
2594/**
2595 * iscsi_host_alloc - allocate a host and driver data
2596 * @sht: scsi host template
2597 * @dd_data_size: driver host data size
Mike Christie32ae7632009-03-05 14:46:03 -06002598 * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue
Mike Christiea4804cd2008-05-21 15:54:00 -05002599 *
2600 * This should be called by partial offload and software iscsi drivers.
2601 * To access the driver specific memory use the iscsi_host_priv() macro.
2602 */
2603struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht,
Mike Christie4d108352009-03-05 14:46:04 -06002604 int dd_data_size, bool xmit_can_sleep)
Mike Christiea4804cd2008-05-21 15:54:00 -05002605{
2606 struct Scsi_Host *shost;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002607 struct iscsi_host *ihost;
Mike Christiea4804cd2008-05-21 15:54:00 -05002608
2609 shost = scsi_host_alloc(sht, sizeof(struct iscsi_host) + dd_data_size);
2610 if (!shost)
2611 return NULL;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002612 ihost = shost_priv(shost);
Mike Christie32ae7632009-03-05 14:46:03 -06002613
2614 if (xmit_can_sleep) {
2615 snprintf(ihost->workq_name, sizeof(ihost->workq_name),
2616 "iscsi_q_%d", shost->host_no);
2617 ihost->workq = create_singlethread_workqueue(ihost->workq_name);
2618 if (!ihost->workq)
2619 goto free_host;
2620 }
2621
Mike Christiee5bd7b52008-09-24 11:46:10 -05002622 spin_lock_init(&ihost->lock);
2623 ihost->state = ISCSI_HOST_SETUP;
2624 ihost->num_sessions = 0;
2625 init_waitqueue_head(&ihost->session_removal_wq);
Mike Christiea4804cd2008-05-21 15:54:00 -05002626 return shost;
Mike Christie32ae7632009-03-05 14:46:03 -06002627
2628free_host:
2629 scsi_host_put(shost);
2630 return NULL;
Mike Christie75613522008-05-21 15:53:59 -05002631}
Mike Christiea4804cd2008-05-21 15:54:00 -05002632EXPORT_SYMBOL_GPL(iscsi_host_alloc);
Mike Christie75613522008-05-21 15:53:59 -05002633
Mike Christiee5bd7b52008-09-24 11:46:10 -05002634static void iscsi_notify_host_removed(struct iscsi_cls_session *cls_session)
2635{
Mike Christie40a06e72009-03-05 14:46:05 -06002636 iscsi_session_failure(cls_session->dd_data, ISCSI_ERR_INVALID_HOST);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002637}
2638
Mike Christiea4804cd2008-05-21 15:54:00 -05002639/**
2640 * iscsi_host_remove - remove host and sessions
2641 * @shost: scsi host
2642 *
Mike Christiee5bd7b52008-09-24 11:46:10 -05002643 * If there are any sessions left, this will initiate the removal and wait
2644 * for the completion.
Mike Christiea4804cd2008-05-21 15:54:00 -05002645 */
2646void iscsi_host_remove(struct Scsi_Host *shost)
2647{
Mike Christiee5bd7b52008-09-24 11:46:10 -05002648 struct iscsi_host *ihost = shost_priv(shost);
2649 unsigned long flags;
2650
2651 spin_lock_irqsave(&ihost->lock, flags);
2652 ihost->state = ISCSI_HOST_REMOVED;
2653 spin_unlock_irqrestore(&ihost->lock, flags);
2654
2655 iscsi_host_for_each_session(shost, iscsi_notify_host_removed);
2656 wait_event_interruptible(ihost->session_removal_wq,
2657 ihost->num_sessions == 0);
2658 if (signal_pending(current))
2659 flush_signals(current);
2660
Mike Christiea4804cd2008-05-21 15:54:00 -05002661 scsi_remove_host(shost);
Mike Christie32ae7632009-03-05 14:46:03 -06002662 if (ihost->workq)
2663 destroy_workqueue(ihost->workq);
Mike Christiea4804cd2008-05-21 15:54:00 -05002664}
2665EXPORT_SYMBOL_GPL(iscsi_host_remove);
2666
2667void iscsi_host_free(struct Scsi_Host *shost)
Mike Christie75613522008-05-21 15:53:59 -05002668{
2669 struct iscsi_host *ihost = shost_priv(shost);
2670
2671 kfree(ihost->netdev);
2672 kfree(ihost->hwaddress);
2673 kfree(ihost->initiatorname);
Mike Christiea4804cd2008-05-21 15:54:00 -05002674 scsi_host_put(shost);
Mike Christie75613522008-05-21 15:53:59 -05002675}
Mike Christiea4804cd2008-05-21 15:54:00 -05002676EXPORT_SYMBOL_GPL(iscsi_host_free);
Mike Christie75613522008-05-21 15:53:59 -05002677
Mike Christiee5bd7b52008-09-24 11:46:10 -05002678static void iscsi_host_dec_session_cnt(struct Scsi_Host *shost)
2679{
2680 struct iscsi_host *ihost = shost_priv(shost);
2681 unsigned long flags;
2682
2683 shost = scsi_host_get(shost);
2684 if (!shost) {
2685 printk(KERN_ERR "Invalid state. Cannot notify host removal "
2686 "of session teardown event because host already "
2687 "removed.\n");
2688 return;
2689 }
2690
2691 spin_lock_irqsave(&ihost->lock, flags);
2692 ihost->num_sessions--;
2693 if (ihost->num_sessions == 0)
2694 wake_up(&ihost->session_removal_wq);
2695 spin_unlock_irqrestore(&ihost->lock, flags);
2696 scsi_host_put(shost);
2697}
2698
Mike Christie75613522008-05-21 15:53:59 -05002699/**
2700 * iscsi_session_setup - create iscsi cls session and host and session
2701 * @iscsit: iscsi transport template
2702 * @shost: scsi host
2703 * @cmds_max: session can queue
Mike Christie9c19a7d2008-05-21 15:54:09 -05002704 * @cmd_task_size: LLD task private data size
Mike Christie75613522008-05-21 15:53:59 -05002705 * @initial_cmdsn: initial CmdSN
2706 *
2707 * This can be used by software iscsi_transports that allocate
2708 * a session per scsi host.
Mike Christie3cf7b232008-05-21 15:54:17 -05002709 *
2710 * Callers should set cmds_max to the largest total numer (mgmt + scsi) of
2711 * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks
2712 * for nop handling and login/logout requests.
Mike Christie75613522008-05-21 15:53:59 -05002713 */
2714struct iscsi_cls_session *
2715iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302716 uint16_t cmds_max, int dd_size, int cmd_task_size,
Mike Christie79706342008-05-21 15:54:12 -05002717 uint32_t initial_cmdsn, unsigned int id)
Mike Christie75613522008-05-21 15:53:59 -05002718{
Mike Christiee5bd7b52008-09-24 11:46:10 -05002719 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie75613522008-05-21 15:53:59 -05002720 struct iscsi_session *session;
2721 struct iscsi_cls_session *cls_session;
Mike Christie3cf7b232008-05-21 15:54:17 -05002722 int cmd_i, scsi_cmds, total_cmds = cmds_max;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002723 unsigned long flags;
2724
2725 spin_lock_irqsave(&ihost->lock, flags);
2726 if (ihost->state == ISCSI_HOST_REMOVED) {
2727 spin_unlock_irqrestore(&ihost->lock, flags);
2728 return NULL;
2729 }
2730 ihost->num_sessions++;
2731 spin_unlock_irqrestore(&ihost->lock, flags);
Mike Christie8e9a20c2008-06-16 10:11:33 -05002732
2733 if (!total_cmds)
2734 total_cmds = ISCSI_DEF_XMIT_CMDS_MAX;
Mike Christie3e5c28a2008-05-21 15:54:06 -05002735 /*
Mike Christie3cf7b232008-05-21 15:54:17 -05002736 * The iscsi layer needs some tasks for nop handling and tmfs,
2737 * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX
2738 * + 1 command for scsi IO.
Mike Christie3e5c28a2008-05-21 15:54:06 -05002739 */
Mike Christie3cf7b232008-05-21 15:54:17 -05002740 if (total_cmds < ISCSI_TOTAL_CMDS_MIN) {
2741 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2742 "must be a power of two that is at least %d.\n",
2743 total_cmds, ISCSI_TOTAL_CMDS_MIN);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002744 goto dec_session_count;
Mike Christie15482712007-05-30 12:57:19 -05002745 }
Mike Christie3cf7b232008-05-21 15:54:17 -05002746
2747 if (total_cmds > ISCSI_TOTAL_CMDS_MAX) {
2748 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2749 "must be a power of 2 less than or equal to %d.\n",
2750 cmds_max, ISCSI_TOTAL_CMDS_MAX);
2751 total_cmds = ISCSI_TOTAL_CMDS_MAX;
2752 }
2753
2754 if (!is_power_of_2(total_cmds)) {
2755 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2756 "must be a power of 2.\n", total_cmds);
2757 total_cmds = rounddown_pow_of_two(total_cmds);
2758 if (total_cmds < ISCSI_TOTAL_CMDS_MIN)
2759 return NULL;
2760 printk(KERN_INFO "iscsi: Rounding can_queue to %d.\n",
2761 total_cmds);
2762 }
2763 scsi_cmds = total_cmds - ISCSI_MGMT_CMDS_MAX;
Mike Christie15482712007-05-30 12:57:19 -05002764
Mike Christie5d91e202008-05-21 15:54:01 -05002765 cls_session = iscsi_alloc_session(shost, iscsit,
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302766 sizeof(struct iscsi_session) +
2767 dd_size);
Mike Christie75613522008-05-21 15:53:59 -05002768 if (!cls_session)
Mike Christiee5bd7b52008-09-24 11:46:10 -05002769 goto dec_session_count;
Mike Christie75613522008-05-21 15:53:59 -05002770 session = cls_session->dd_data;
2771 session->cls_session = cls_session;
Mike Christie7996a772006-04-06 21:13:41 -05002772 session->host = shost;
2773 session->state = ISCSI_STATE_FREE;
Mike Christief6d51802007-12-13 12:43:30 -06002774 session->fast_abort = 1;
Mike Christie3fe5ae82009-11-11 16:34:33 -06002775 session->tgt_reset_timeout = 30;
Mike Christie4cd49ea2007-12-13 12:43:38 -06002776 session->lu_reset_timeout = 15;
2777 session->abort_timeout = 10;
Mike Christie3cf7b232008-05-21 15:54:17 -05002778 session->scsi_cmds_max = scsi_cmds;
2779 session->cmds_max = total_cmds;
Mike Christiee0726402007-07-26 12:46:48 -05002780 session->queued_cmdsn = session->cmdsn = initial_cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05002781 session->exp_cmdsn = initial_cmdsn + 1;
2782 session->max_cmdsn = initial_cmdsn + 1;
2783 session->max_r2t = 1;
2784 session->tt = iscsit;
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302785 session->dd_data = cls_session->dd_data + sizeof(*session);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002786
Mike Christie6724add2007-08-15 01:38:30 -05002787 mutex_init(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002788 spin_lock_init(&session->frwd_lock);
2789 spin_lock_init(&session->back_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002790
2791 /* initialize SCSI PDU commands pool */
2792 if (iscsi_pool_init(&session->cmdpool, session->cmds_max,
2793 (void***)&session->cmds,
Mike Christie9c19a7d2008-05-21 15:54:09 -05002794 cmd_task_size + sizeof(struct iscsi_task)))
Mike Christie7996a772006-04-06 21:13:41 -05002795 goto cmdpool_alloc_fail;
2796
2797 /* pre-format cmds pool with ITT */
2798 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05002799 struct iscsi_task *task = session->cmds[cmd_i];
Mike Christie7996a772006-04-06 21:13:41 -05002800
Mike Christie9c19a7d2008-05-21 15:54:09 -05002801 if (cmd_task_size)
2802 task->dd_data = &task[1];
2803 task->itt = cmd_i;
Mike Christie3bbaaad2009-05-13 17:57:46 -05002804 task->state = ISCSI_TASK_FREE;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002805 INIT_LIST_HEAD(&task->running);
Mike Christie7996a772006-04-06 21:13:41 -05002806 }
2807
Mike Christief53a88d2006-06-28 12:00:27 -05002808 if (!try_module_get(iscsit->owner))
Mike Christie75613522008-05-21 15:53:59 -05002809 goto module_get_fail;
2810
Mike Christie79706342008-05-21 15:54:12 -05002811 if (iscsi_add_session(cls_session, id))
Mike Christief53a88d2006-06-28 12:00:27 -05002812 goto cls_session_fail;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002813
Mike Christie7996a772006-04-06 21:13:41 -05002814 return cls_session;
2815
2816cls_session_fail:
Mike Christie75613522008-05-21 15:53:59 -05002817 module_put(iscsit->owner);
2818module_get_fail:
Olaf Kirch63203772007-12-13 12:43:25 -06002819 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05002820cmdpool_alloc_fail:
Mike Christie75613522008-05-21 15:53:59 -05002821 iscsi_free_session(cls_session);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002822dec_session_count:
2823 iscsi_host_dec_session_cnt(shost);
Mike Christie7996a772006-04-06 21:13:41 -05002824 return NULL;
2825}
2826EXPORT_SYMBOL_GPL(iscsi_session_setup);
2827
2828/**
2829 * iscsi_session_teardown - destroy session, host, and cls_session
Mike Christie75613522008-05-21 15:53:59 -05002830 * @cls_session: iscsi session
Mike Christie7996a772006-04-06 21:13:41 -05002831 *
Mike Christie75613522008-05-21 15:53:59 -05002832 * The driver must have called iscsi_remove_session before
2833 * calling this.
2834 */
Mike Christie7996a772006-04-06 21:13:41 -05002835void iscsi_session_teardown(struct iscsi_cls_session *cls_session)
2836{
Mike Christie75613522008-05-21 15:53:59 -05002837 struct iscsi_session *session = cls_session->dd_data;
Mike Christie63f75cc2006-07-24 15:47:29 -05002838 struct module *owner = cls_session->transport->owner;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002839 struct Scsi_Host *shost = session->host;
Mike Christie7996a772006-04-06 21:13:41 -05002840
Olaf Kirch63203772007-12-13 12:43:25 -06002841 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05002842
Mike Christieb2c64162007-05-30 12:57:16 -05002843 kfree(session->password);
2844 kfree(session->password_in);
2845 kfree(session->username);
2846 kfree(session->username_in);
Mike Christief3ff0c32006-07-24 15:47:50 -05002847 kfree(session->targetname);
Vikas Chaudhary3c5c4802012-01-19 03:06:53 -08002848 kfree(session->targetalias);
Mike Christie88dfd342008-05-21 15:54:16 -05002849 kfree(session->initiatorname);
Eddie Wai3b9373e2013-06-20 10:21:26 -07002850 kfree(session->boot_root);
2851 kfree(session->boot_nic);
2852 kfree(session->boot_target);
Mike Christie88dfd342008-05-21 15:54:16 -05002853 kfree(session->ifacename);
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04002854 kfree(session->portal_type);
2855 kfree(session->discovery_parent_type);
Mike Christief3ff0c32006-07-24 15:47:50 -05002856
Mike Christie75613522008-05-21 15:53:59 -05002857 iscsi_destroy_session(cls_session);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002858 iscsi_host_dec_session_cnt(shost);
Mike Christie63f75cc2006-07-24 15:47:29 -05002859 module_put(owner);
Mike Christie7996a772006-04-06 21:13:41 -05002860}
2861EXPORT_SYMBOL_GPL(iscsi_session_teardown);
2862
2863/**
2864 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
2865 * @cls_session: iscsi_cls_session
Mike Christie5d91e202008-05-21 15:54:01 -05002866 * @dd_size: private driver data size
Mike Christie7996a772006-04-06 21:13:41 -05002867 * @conn_idx: cid
Mike Christie5d91e202008-05-21 15:54:01 -05002868 */
Mike Christie7996a772006-04-06 21:13:41 -05002869struct iscsi_cls_conn *
Mike Christie5d91e202008-05-21 15:54:01 -05002870iscsi_conn_setup(struct iscsi_cls_session *cls_session, int dd_size,
2871 uint32_t conn_idx)
Mike Christie7996a772006-04-06 21:13:41 -05002872{
Mike Christie75613522008-05-21 15:53:59 -05002873 struct iscsi_session *session = cls_session->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05002874 struct iscsi_conn *conn;
2875 struct iscsi_cls_conn *cls_conn;
Mike Christied36ab6f2006-05-18 20:31:34 -05002876 char *data;
Mike Christie7996a772006-04-06 21:13:41 -05002877
Mike Christie5d91e202008-05-21 15:54:01 -05002878 cls_conn = iscsi_create_conn(cls_session, sizeof(*conn) + dd_size,
2879 conn_idx);
Mike Christie7996a772006-04-06 21:13:41 -05002880 if (!cls_conn)
2881 return NULL;
2882 conn = cls_conn->dd_data;
Mike Christie5d91e202008-05-21 15:54:01 -05002883 memset(conn, 0, sizeof(*conn) + dd_size);
Mike Christie7996a772006-04-06 21:13:41 -05002884
Mike Christie5d91e202008-05-21 15:54:01 -05002885 conn->dd_data = cls_conn->dd_data + sizeof(*conn);
Mike Christie7996a772006-04-06 21:13:41 -05002886 conn->session = session;
2887 conn->cls_conn = cls_conn;
2888 conn->c_stage = ISCSI_CONN_INITIAL_STAGE;
2889 conn->id = conn_idx;
2890 conn->exp_statsn = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06002891 conn->tmf_state = TMF_INITIAL;
Mike Christief6d51802007-12-13 12:43:30 -06002892
2893 init_timer(&conn->transport_timer);
2894 conn->transport_timer.data = (unsigned long)conn;
2895 conn->transport_timer.function = iscsi_check_transport_timeouts;
2896
Mike Christie843c0a82007-12-13 12:43:20 -06002897 INIT_LIST_HEAD(&conn->mgmtqueue);
Mike Christie3bbaaad2009-05-13 17:57:46 -05002898 INIT_LIST_HEAD(&conn->cmdqueue);
Mike Christie843c0a82007-12-13 12:43:20 -06002899 INIT_LIST_HEAD(&conn->requeue);
David Howellsc4028952006-11-22 14:57:56 +00002900 INIT_WORK(&conn->xmitwork, iscsi_xmitworker);
Mike Christie7996a772006-04-06 21:13:41 -05002901
Mike Christie9c19a7d2008-05-21 15:54:09 -05002902 /* allocate login_task used for the login/text sequences */
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002903 spin_lock_bh(&session->frwd_lock);
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002904 if (!kfifo_out(&session->cmdpool.queue,
Mike Christie9c19a7d2008-05-21 15:54:09 -05002905 (void*)&conn->login_task,
Mike Christie7996a772006-04-06 21:13:41 -05002906 sizeof(void*))) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002907 spin_unlock_bh(&session->frwd_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05002908 goto login_task_alloc_fail;
Mike Christie7996a772006-04-06 21:13:41 -05002909 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002910 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002911
Mike Christiecfeb2cf2008-12-02 00:32:09 -06002912 data = (char *) __get_free_pages(GFP_KERNEL,
2913 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
Mike Christied36ab6f2006-05-18 20:31:34 -05002914 if (!data)
Mike Christie9c19a7d2008-05-21 15:54:09 -05002915 goto login_task_data_alloc_fail;
2916 conn->login_task->data = conn->data = data;
Mike Christied36ab6f2006-05-18 20:31:34 -05002917
Mike Christie843c0a82007-12-13 12:43:20 -06002918 init_timer(&conn->tmf_timer);
Mike Christie7996a772006-04-06 21:13:41 -05002919 init_waitqueue_head(&conn->ehwait);
2920
2921 return cls_conn;
2922
Mike Christie9c19a7d2008-05-21 15:54:09 -05002923login_task_data_alloc_fail:
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002924 kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task,
Mike Christied36ab6f2006-05-18 20:31:34 -05002925 sizeof(void*));
Mike Christie9c19a7d2008-05-21 15:54:09 -05002926login_task_alloc_fail:
Mike Christie7996a772006-04-06 21:13:41 -05002927 iscsi_destroy_conn(cls_conn);
2928 return NULL;
2929}
2930EXPORT_SYMBOL_GPL(iscsi_conn_setup);
2931
2932/**
2933 * iscsi_conn_teardown - teardown iscsi connection
2934 * cls_conn: iscsi class connection
2935 *
2936 * TODO: we may need to make this into a two step process
2937 * like scsi-mls remove + put host
2938 */
2939void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn)
2940{
2941 struct iscsi_conn *conn = cls_conn->dd_data;
2942 struct iscsi_session *session = conn->session;
Mike Christie7996a772006-04-06 21:13:41 -05002943
Mike Christief6d51802007-12-13 12:43:30 -06002944 del_timer_sync(&conn->transport_timer);
2945
John Soni Jose660d0832015-06-24 06:41:58 +05302946 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002947 spin_lock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002948 conn->c_stage = ISCSI_CONN_CLEANUP_WAIT;
2949 if (session->leadconn == conn) {
2950 /*
2951 * leading connection? then give up on recovery.
2952 */
2953 session->state = ISCSI_STATE_TERMINATE;
2954 wake_up(&conn->ehwait);
2955 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002956 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002957
Mike Christie779ea122007-02-28 17:32:15 -06002958 /* flush queued up work because we free the connection below */
Mike Christie843c0a82007-12-13 12:43:20 -06002959 iscsi_suspend_tx(conn);
Mike Christie779ea122007-02-28 17:32:15 -06002960
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002961 spin_lock_bh(&session->frwd_lock);
Mike Christiecfeb2cf2008-12-02 00:32:09 -06002962 free_pages((unsigned long) conn->data,
2963 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
Mike Christief3ff0c32006-07-24 15:47:50 -05002964 kfree(conn->persistent_address);
Adheer Chandravanshiae56ff42013-11-22 05:28:21 -05002965 kfree(conn->local_ipaddr);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002966 /* regular RX path uses back_lock */
2967 spin_lock_bh(&session->back_lock);
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002968 kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task,
Mike Christie7996a772006-04-06 21:13:41 -05002969 sizeof(void*));
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002970 spin_unlock_bh(&session->back_lock);
Mike Christiee0726402007-07-26 12:46:48 -05002971 if (session->leadconn == conn)
Mike Christie7996a772006-04-06 21:13:41 -05002972 session->leadconn = NULL;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002973 spin_unlock_bh(&session->frwd_lock);
John Soni Jose660d0832015-06-24 06:41:58 +05302974 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002975
Mike Christie7996a772006-04-06 21:13:41 -05002976 iscsi_destroy_conn(cls_conn);
2977}
2978EXPORT_SYMBOL_GPL(iscsi_conn_teardown);
2979
2980int iscsi_conn_start(struct iscsi_cls_conn *cls_conn)
2981{
2982 struct iscsi_conn *conn = cls_conn->dd_data;
2983 struct iscsi_session *session = conn->session;
2984
Mike Christieffd04362006-08-31 18:09:24 -04002985 if (!session) {
Mike Christie322d7392008-01-31 13:36:52 -06002986 iscsi_conn_printk(KERN_ERR, conn,
2987 "can't start unbound connection\n");
Mike Christie7996a772006-04-06 21:13:41 -05002988 return -EPERM;
2989 }
2990
Mike Christiedb98ccd2006-08-31 18:09:31 -04002991 if ((session->imm_data_en || !session->initial_r2t_en) &&
2992 session->first_burst > session->max_burst) {
Mike Christie322d7392008-01-31 13:36:52 -06002993 iscsi_conn_printk(KERN_INFO, conn, "invalid burst lengths: "
2994 "first_burst %d max_burst %d\n",
2995 session->first_burst, session->max_burst);
Mike Christieffd04362006-08-31 18:09:24 -04002996 return -EINVAL;
2997 }
2998
Mike Christief6d51802007-12-13 12:43:30 -06002999 if (conn->ping_timeout && !conn->recv_timeout) {
Mike Christie322d7392008-01-31 13:36:52 -06003000 iscsi_conn_printk(KERN_ERR, conn, "invalid recv timeout of "
3001 "zero. Using 5 seconds\n.");
Mike Christief6d51802007-12-13 12:43:30 -06003002 conn->recv_timeout = 5;
3003 }
3004
3005 if (conn->recv_timeout && !conn->ping_timeout) {
Mike Christie322d7392008-01-31 13:36:52 -06003006 iscsi_conn_printk(KERN_ERR, conn, "invalid ping timeout of "
3007 "zero. Using 5 seconds.\n");
Mike Christief6d51802007-12-13 12:43:30 -06003008 conn->ping_timeout = 5;
3009 }
3010
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003011 spin_lock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003012 conn->c_stage = ISCSI_CONN_STARTED;
3013 session->state = ISCSI_STATE_LOGGED_IN;
Mike Christiee0726402007-07-26 12:46:48 -05003014 session->queued_cmdsn = session->cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05003015
Mike Christief6d51802007-12-13 12:43:30 -06003016 conn->last_recv = jiffies;
3017 conn->last_ping = jiffies;
3018 if (conn->recv_timeout && conn->ping_timeout)
3019 mod_timer(&conn->transport_timer,
3020 jiffies + (conn->recv_timeout * HZ));
3021
Mike Christie7996a772006-04-06 21:13:41 -05003022 switch(conn->stop_stage) {
3023 case STOP_CONN_RECOVER:
3024 /*
3025 * unblock eh_abort() if it is blocked. re-try all
3026 * commands after successful recovery
3027 */
Mike Christie7996a772006-04-06 21:13:41 -05003028 conn->stop_stage = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06003029 conn->tmf_state = TMF_INITIAL;
Mike Christie7996a772006-04-06 21:13:41 -05003030 session->age++;
Mike Christie8b1d0342008-01-31 13:36:53 -06003031 if (session->age == 16)
3032 session->age = 0;
Mike Christie6eabafb2008-01-31 13:36:43 -06003033 break;
Mike Christie7996a772006-04-06 21:13:41 -05003034 case STOP_CONN_TERM:
Mike Christie7996a772006-04-06 21:13:41 -05003035 conn->stop_stage = 0;
3036 break;
Mike Christie7996a772006-04-06 21:13:41 -05003037 default:
3038 break;
3039 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003040 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003041
Mike Christie75613522008-05-21 15:53:59 -05003042 iscsi_unblock_session(session->cls_session);
Mike Christie6eabafb2008-01-31 13:36:43 -06003043 wake_up(&conn->ehwait);
Mike Christie7996a772006-04-06 21:13:41 -05003044 return 0;
3045}
3046EXPORT_SYMBOL_GPL(iscsi_conn_start);
3047
3048static void
Mike Christie3bbaaad2009-05-13 17:57:46 -05003049fail_mgmt_tasks(struct iscsi_session *session, struct iscsi_conn *conn)
Mike Christie7996a772006-04-06 21:13:41 -05003050{
Mike Christie3bbaaad2009-05-13 17:57:46 -05003051 struct iscsi_task *task;
Mike Christieb3cd5052009-05-13 17:57:49 -05003052 int i, state;
Mike Christie7996a772006-04-06 21:13:41 -05003053
Mike Christie3bbaaad2009-05-13 17:57:46 -05003054 for (i = 0; i < conn->session->cmds_max; i++) {
3055 task = conn->session->cmds[i];
3056 if (task->sc)
3057 continue;
3058
3059 if (task->state == ISCSI_TASK_FREE)
3060 continue;
3061
3062 ISCSI_DBG_SESSION(conn->session,
3063 "failing mgmt itt 0x%x state %d\n",
3064 task->itt, task->state);
Mike Christieb3cd5052009-05-13 17:57:49 -05003065 state = ISCSI_TASK_ABRT_SESS_RECOV;
3066 if (task->state == ISCSI_TASK_PENDING)
3067 state = ISCSI_TASK_COMPLETED;
3068 iscsi_complete_task(task, state);
3069
Mike Christie7996a772006-04-06 21:13:41 -05003070 }
Mike Christie7996a772006-04-06 21:13:41 -05003071}
3072
Mike Christie656cffc2006-05-18 20:31:42 -05003073static void iscsi_start_session_recovery(struct iscsi_session *session,
3074 struct iscsi_conn *conn, int flag)
Mike Christie7996a772006-04-06 21:13:41 -05003075{
Mike Christieed2abc72006-05-02 19:46:40 -05003076 int old_stop_stage;
3077
Mike Christie6724add2007-08-15 01:38:30 -05003078 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003079 spin_lock_bh(&session->frwd_lock);
Mike Christieed2abc72006-05-02 19:46:40 -05003080 if (conn->stop_stage == STOP_CONN_TERM) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003081 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05003082 mutex_unlock(&session->eh_mutex);
3083 return;
3084 }
3085
3086 /*
Mike Christieed2abc72006-05-02 19:46:40 -05003087 * When this is called for the in_login state, we only want to clean
Mike Christie9c19a7d2008-05-21 15:54:09 -05003088 * up the login task and connection. We do not need to block and set
Mike Christie67a61112006-05-30 00:37:20 -05003089 * the recovery state again
Mike Christieed2abc72006-05-02 19:46:40 -05003090 */
Mike Christie67a61112006-05-30 00:37:20 -05003091 if (flag == STOP_CONN_TERM)
3092 session->state = ISCSI_STATE_TERMINATE;
3093 else if (conn->stop_stage != STOP_CONN_RECOVER)
3094 session->state = ISCSI_STATE_IN_RECOVERY;
Mike Christie4ae0a6c2010-03-09 14:14:51 -06003095
3096 old_stop_stage = conn->stop_stage;
3097 conn->stop_stage = flag;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003098 spin_unlock_bh(&session->frwd_lock);
Mike Christieed2abc72006-05-02 19:46:40 -05003099
Mike Christie26013ad2009-05-13 17:57:43 -05003100 del_timer_sync(&conn->transport_timer);
3101 iscsi_suspend_tx(conn);
3102
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003103 spin_lock_bh(&session->frwd_lock);
Mike Christie67a61112006-05-30 00:37:20 -05003104 conn->c_stage = ISCSI_CONN_STOPPED;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003105 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05003106
Mike Christie7996a772006-04-06 21:13:41 -05003107 /*
3108 * for connection level recovery we should not calculate
3109 * header digest. conn->hdr_size used for optimization
3110 * in hdr_extract() and will be re-negotiated at
3111 * set_param() time.
3112 */
3113 if (flag == STOP_CONN_RECOVER) {
3114 conn->hdrdgst_en = 0;
3115 conn->datadgst_en = 0;
Mike Christie656cffc2006-05-18 20:31:42 -05003116 if (session->state == ISCSI_STATE_IN_RECOVERY &&
Mike Christie67a61112006-05-30 00:37:20 -05003117 old_stop_stage != STOP_CONN_RECOVER) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06003118 ISCSI_DBG_SESSION(session, "blocking session\n");
Mike Christie75613522008-05-21 15:53:59 -05003119 iscsi_block_session(session->cls_session);
Mike Christie67a61112006-05-30 00:37:20 -05003120 }
Mike Christie7996a772006-04-06 21:13:41 -05003121 }
Mike Christie656cffc2006-05-18 20:31:42 -05003122
Mike Christie656cffc2006-05-18 20:31:42 -05003123 /*
3124 * flush queues.
3125 */
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003126 spin_lock_bh(&session->frwd_lock);
Mike Christieb3cd5052009-05-13 17:57:49 -05003127 fail_scsi_tasks(conn, -1, DID_TRANSPORT_DISRUPTED);
Mike Christie3bbaaad2009-05-13 17:57:46 -05003128 fail_mgmt_tasks(session, conn);
Mike Christie5d12c052009-11-11 16:34:32 -06003129 memset(&conn->tmhdr, 0, sizeof(conn->tmhdr));
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003130 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05003131 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05003132}
Mike Christie7996a772006-04-06 21:13:41 -05003133
3134void iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
3135{
3136 struct iscsi_conn *conn = cls_conn->dd_data;
3137 struct iscsi_session *session = conn->session;
3138
3139 switch (flag) {
3140 case STOP_CONN_RECOVER:
3141 case STOP_CONN_TERM:
3142 iscsi_start_session_recovery(session, conn, flag);
Mike Christie8d2860b2006-05-02 19:46:47 -05003143 break;
Mike Christie7996a772006-04-06 21:13:41 -05003144 default:
Mike Christie322d7392008-01-31 13:36:52 -06003145 iscsi_conn_printk(KERN_ERR, conn,
3146 "invalid stop flag %d\n", flag);
Mike Christie7996a772006-04-06 21:13:41 -05003147 }
3148}
3149EXPORT_SYMBOL_GPL(iscsi_conn_stop);
3150
3151int iscsi_conn_bind(struct iscsi_cls_session *cls_session,
3152 struct iscsi_cls_conn *cls_conn, int is_leading)
3153{
Mike Christie75613522008-05-21 15:53:59 -05003154 struct iscsi_session *session = cls_session->dd_data;
Mike Christie98644042006-10-16 18:09:39 -04003155 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05003156
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003157 spin_lock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003158 if (is_leading)
3159 session->leadconn = conn;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003160 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003161
3162 /*
3163 * Unblock xmitworker(), Login Phase will pass through.
3164 */
3165 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
3166 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
3167 return 0;
3168}
3169EXPORT_SYMBOL_GPL(iscsi_conn_bind);
3170
Adheer Chandravanshiadaf6992013-03-22 07:41:30 -04003171int iscsi_switch_str_param(char **param, char *new_val_buf)
Mike Christie5700b1a2009-05-13 17:57:40 -05003172{
3173 char *new_val;
3174
3175 if (*param) {
3176 if (!strcmp(*param, new_val_buf))
3177 return 0;
3178 }
3179
3180 new_val = kstrdup(new_val_buf, GFP_NOIO);
3181 if (!new_val)
3182 return -ENOMEM;
3183
3184 kfree(*param);
3185 *param = new_val;
3186 return 0;
3187}
Adheer Chandravanshiadaf6992013-03-22 07:41:30 -04003188EXPORT_SYMBOL_GPL(iscsi_switch_str_param);
Mike Christiea54a52c2006-06-28 12:00:23 -05003189
3190int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
3191 enum iscsi_param param, char *buf, int buflen)
3192{
3193 struct iscsi_conn *conn = cls_conn->dd_data;
3194 struct iscsi_session *session = conn->session;
Or Gerlitz6a06a4b2013-08-08 13:44:29 +03003195 int val;
Mike Christiea54a52c2006-06-28 12:00:23 -05003196
3197 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06003198 case ISCSI_PARAM_FAST_ABORT:
3199 sscanf(buf, "%d", &session->fast_abort);
3200 break;
Mike Christief6d51802007-12-13 12:43:30 -06003201 case ISCSI_PARAM_ABORT_TMO:
3202 sscanf(buf, "%d", &session->abort_timeout);
3203 break;
3204 case ISCSI_PARAM_LU_RESET_TMO:
3205 sscanf(buf, "%d", &session->lu_reset_timeout);
3206 break;
Mike Christie3fe5ae82009-11-11 16:34:33 -06003207 case ISCSI_PARAM_TGT_RESET_TMO:
3208 sscanf(buf, "%d", &session->tgt_reset_timeout);
3209 break;
Mike Christief6d51802007-12-13 12:43:30 -06003210 case ISCSI_PARAM_PING_TMO:
3211 sscanf(buf, "%d", &conn->ping_timeout);
3212 break;
3213 case ISCSI_PARAM_RECV_TMO:
3214 sscanf(buf, "%d", &conn->recv_timeout);
3215 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003216 case ISCSI_PARAM_MAX_RECV_DLENGTH:
3217 sscanf(buf, "%d", &conn->max_recv_dlength);
3218 break;
3219 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3220 sscanf(buf, "%d", &conn->max_xmit_dlength);
3221 break;
3222 case ISCSI_PARAM_HDRDGST_EN:
3223 sscanf(buf, "%d", &conn->hdrdgst_en);
3224 break;
3225 case ISCSI_PARAM_DATADGST_EN:
3226 sscanf(buf, "%d", &conn->datadgst_en);
3227 break;
3228 case ISCSI_PARAM_INITIAL_R2T_EN:
3229 sscanf(buf, "%d", &session->initial_r2t_en);
3230 break;
3231 case ISCSI_PARAM_MAX_R2T:
Mike Christie1304be52012-01-26 21:13:10 -06003232 sscanf(buf, "%hu", &session->max_r2t);
Mike Christiea54a52c2006-06-28 12:00:23 -05003233 break;
3234 case ISCSI_PARAM_IMM_DATA_EN:
3235 sscanf(buf, "%d", &session->imm_data_en);
3236 break;
3237 case ISCSI_PARAM_FIRST_BURST:
3238 sscanf(buf, "%d", &session->first_burst);
3239 break;
3240 case ISCSI_PARAM_MAX_BURST:
3241 sscanf(buf, "%d", &session->max_burst);
3242 break;
3243 case ISCSI_PARAM_PDU_INORDER_EN:
3244 sscanf(buf, "%d", &session->pdu_inorder_en);
3245 break;
3246 case ISCSI_PARAM_DATASEQ_INORDER_EN:
3247 sscanf(buf, "%d", &session->dataseq_inorder_en);
3248 break;
3249 case ISCSI_PARAM_ERL:
3250 sscanf(buf, "%d", &session->erl);
3251 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003252 case ISCSI_PARAM_EXP_STATSN:
3253 sscanf(buf, "%u", &conn->exp_statsn);
3254 break;
Mike Christieb2c64162007-05-30 12:57:16 -05003255 case ISCSI_PARAM_USERNAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003256 return iscsi_switch_str_param(&session->username, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05003257 case ISCSI_PARAM_USERNAME_IN:
Mike Christie5700b1a2009-05-13 17:57:40 -05003258 return iscsi_switch_str_param(&session->username_in, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05003259 case ISCSI_PARAM_PASSWORD:
Mike Christie5700b1a2009-05-13 17:57:40 -05003260 return iscsi_switch_str_param(&session->password, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05003261 case ISCSI_PARAM_PASSWORD_IN:
Mike Christie5700b1a2009-05-13 17:57:40 -05003262 return iscsi_switch_str_param(&session->password_in, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05003263 case ISCSI_PARAM_TARGET_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003264 return iscsi_switch_str_param(&session->targetname, buf);
Vikas Chaudhary3c5c4802012-01-19 03:06:53 -08003265 case ISCSI_PARAM_TARGET_ALIAS:
3266 return iscsi_switch_str_param(&session->targetalias, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05003267 case ISCSI_PARAM_TPGT:
3268 sscanf(buf, "%d", &session->tpgt);
3269 break;
3270 case ISCSI_PARAM_PERSISTENT_PORT:
3271 sscanf(buf, "%d", &conn->persistent_port);
3272 break;
3273 case ISCSI_PARAM_PERSISTENT_ADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003274 return iscsi_switch_str_param(&conn->persistent_address, buf);
Mike Christie88dfd342008-05-21 15:54:16 -05003275 case ISCSI_PARAM_IFACE_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003276 return iscsi_switch_str_param(&session->ifacename, buf);
Mike Christie88dfd342008-05-21 15:54:16 -05003277 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003278 return iscsi_switch_str_param(&session->initiatorname, buf);
Eddie Wai3b9373e2013-06-20 10:21:26 -07003279 case ISCSI_PARAM_BOOT_ROOT:
3280 return iscsi_switch_str_param(&session->boot_root, buf);
3281 case ISCSI_PARAM_BOOT_NIC:
3282 return iscsi_switch_str_param(&session->boot_nic, buf);
3283 case ISCSI_PARAM_BOOT_TARGET:
3284 return iscsi_switch_str_param(&session->boot_target, buf);
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04003285 case ISCSI_PARAM_PORTAL_TYPE:
3286 return iscsi_switch_str_param(&session->portal_type, buf);
3287 case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
3288 return iscsi_switch_str_param(&session->discovery_parent_type,
3289 buf);
Or Gerlitz6a06a4b2013-08-08 13:44:29 +03003290 case ISCSI_PARAM_DISCOVERY_SESS:
3291 sscanf(buf, "%d", &val);
3292 session->discovery_sess = !!val;
3293 break;
Adheer Chandravanshiae56ff42013-11-22 05:28:21 -05003294 case ISCSI_PARAM_LOCAL_IPADDR:
3295 return iscsi_switch_str_param(&conn->local_ipaddr, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05003296 default:
3297 return -ENOSYS;
3298 }
3299
3300 return 0;
3301}
3302EXPORT_SYMBOL_GPL(iscsi_set_param);
3303
3304int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
3305 enum iscsi_param param, char *buf)
3306{
Mike Christie75613522008-05-21 15:53:59 -05003307 struct iscsi_session *session = cls_session->dd_data;
Mike Christiea54a52c2006-06-28 12:00:23 -05003308 int len;
3309
3310 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06003311 case ISCSI_PARAM_FAST_ABORT:
3312 len = sprintf(buf, "%d\n", session->fast_abort);
3313 break;
Mike Christief6d51802007-12-13 12:43:30 -06003314 case ISCSI_PARAM_ABORT_TMO:
3315 len = sprintf(buf, "%d\n", session->abort_timeout);
3316 break;
3317 case ISCSI_PARAM_LU_RESET_TMO:
3318 len = sprintf(buf, "%d\n", session->lu_reset_timeout);
3319 break;
Mike Christie3fe5ae82009-11-11 16:34:33 -06003320 case ISCSI_PARAM_TGT_RESET_TMO:
3321 len = sprintf(buf, "%d\n", session->tgt_reset_timeout);
3322 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003323 case ISCSI_PARAM_INITIAL_R2T_EN:
3324 len = sprintf(buf, "%d\n", session->initial_r2t_en);
3325 break;
3326 case ISCSI_PARAM_MAX_R2T:
3327 len = sprintf(buf, "%hu\n", session->max_r2t);
3328 break;
3329 case ISCSI_PARAM_IMM_DATA_EN:
3330 len = sprintf(buf, "%d\n", session->imm_data_en);
3331 break;
3332 case ISCSI_PARAM_FIRST_BURST:
3333 len = sprintf(buf, "%u\n", session->first_burst);
3334 break;
3335 case ISCSI_PARAM_MAX_BURST:
3336 len = sprintf(buf, "%u\n", session->max_burst);
3337 break;
3338 case ISCSI_PARAM_PDU_INORDER_EN:
3339 len = sprintf(buf, "%d\n", session->pdu_inorder_en);
3340 break;
3341 case ISCSI_PARAM_DATASEQ_INORDER_EN:
3342 len = sprintf(buf, "%d\n", session->dataseq_inorder_en);
3343 break;
Adheer Chandravanshi5f09e1f2013-07-22 07:46:10 -04003344 case ISCSI_PARAM_DEF_TASKMGMT_TMO:
3345 len = sprintf(buf, "%d\n", session->def_taskmgmt_tmo);
3346 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003347 case ISCSI_PARAM_ERL:
3348 len = sprintf(buf, "%d\n", session->erl);
3349 break;
3350 case ISCSI_PARAM_TARGET_NAME:
3351 len = sprintf(buf, "%s\n", session->targetname);
3352 break;
Vikas Chaudhary3c5c4802012-01-19 03:06:53 -08003353 case ISCSI_PARAM_TARGET_ALIAS:
3354 len = sprintf(buf, "%s\n", session->targetalias);
3355 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003356 case ISCSI_PARAM_TPGT:
3357 len = sprintf(buf, "%d\n", session->tpgt);
3358 break;
Mike Christieb2c64162007-05-30 12:57:16 -05003359 case ISCSI_PARAM_USERNAME:
3360 len = sprintf(buf, "%s\n", session->username);
3361 break;
3362 case ISCSI_PARAM_USERNAME_IN:
3363 len = sprintf(buf, "%s\n", session->username_in);
3364 break;
3365 case ISCSI_PARAM_PASSWORD:
3366 len = sprintf(buf, "%s\n", session->password);
3367 break;
3368 case ISCSI_PARAM_PASSWORD_IN:
3369 len = sprintf(buf, "%s\n", session->password_in);
3370 break;
Mike Christie88dfd342008-05-21 15:54:16 -05003371 case ISCSI_PARAM_IFACE_NAME:
3372 len = sprintf(buf, "%s\n", session->ifacename);
3373 break;
3374 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003375 len = sprintf(buf, "%s\n", session->initiatorname);
Mike Christie88dfd342008-05-21 15:54:16 -05003376 break;
Eddie Wai3b9373e2013-06-20 10:21:26 -07003377 case ISCSI_PARAM_BOOT_ROOT:
3378 len = sprintf(buf, "%s\n", session->boot_root);
3379 break;
3380 case ISCSI_PARAM_BOOT_NIC:
3381 len = sprintf(buf, "%s\n", session->boot_nic);
3382 break;
3383 case ISCSI_PARAM_BOOT_TARGET:
3384 len = sprintf(buf, "%s\n", session->boot_target);
Adheer Chandravanshi9a2307b2013-07-22 07:46:09 -04003385 break;
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04003386 case ISCSI_PARAM_AUTO_SND_TGT_DISABLE:
3387 len = sprintf(buf, "%u\n", session->auto_snd_tgt_disable);
3388 break;
3389 case ISCSI_PARAM_DISCOVERY_SESS:
3390 len = sprintf(buf, "%u\n", session->discovery_sess);
3391 break;
3392 case ISCSI_PARAM_PORTAL_TYPE:
3393 len = sprintf(buf, "%s\n", session->portal_type);
3394 break;
3395 case ISCSI_PARAM_CHAP_AUTH_EN:
3396 len = sprintf(buf, "%u\n", session->chap_auth_en);
3397 break;
3398 case ISCSI_PARAM_DISCOVERY_LOGOUT_EN:
3399 len = sprintf(buf, "%u\n", session->discovery_logout_en);
3400 break;
3401 case ISCSI_PARAM_BIDI_CHAP_EN:
3402 len = sprintf(buf, "%u\n", session->bidi_chap_en);
3403 break;
3404 case ISCSI_PARAM_DISCOVERY_AUTH_OPTIONAL:
3405 len = sprintf(buf, "%u\n", session->discovery_auth_optional);
3406 break;
3407 case ISCSI_PARAM_DEF_TIME2WAIT:
3408 len = sprintf(buf, "%d\n", session->time2wait);
3409 break;
3410 case ISCSI_PARAM_DEF_TIME2RETAIN:
3411 len = sprintf(buf, "%d\n", session->time2retain);
3412 break;
3413 case ISCSI_PARAM_TSID:
3414 len = sprintf(buf, "%u\n", session->tsid);
3415 break;
3416 case ISCSI_PARAM_ISID:
3417 len = sprintf(buf, "%02x%02x%02x%02x%02x%02x\n",
3418 session->isid[0], session->isid[1],
3419 session->isid[2], session->isid[3],
3420 session->isid[4], session->isid[5]);
3421 break;
3422 case ISCSI_PARAM_DISCOVERY_PARENT_IDX:
3423 len = sprintf(buf, "%u\n", session->discovery_parent_idx);
3424 break;
3425 case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
3426 if (session->discovery_parent_type)
3427 len = sprintf(buf, "%s\n",
3428 session->discovery_parent_type);
3429 else
3430 len = sprintf(buf, "\n");
Eddie Wai3b9373e2013-06-20 10:21:26 -07003431 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003432 default:
3433 return -ENOSYS;
3434 }
3435
3436 return len;
3437}
3438EXPORT_SYMBOL_GPL(iscsi_session_get_param);
3439
Mike Christie00f37082011-02-16 15:04:35 -06003440int iscsi_conn_get_addr_param(struct sockaddr_storage *addr,
3441 enum iscsi_param param, char *buf)
3442{
3443 struct sockaddr_in6 *sin6 = NULL;
3444 struct sockaddr_in *sin = NULL;
3445 int len;
3446
3447 switch (addr->ss_family) {
3448 case AF_INET:
3449 sin = (struct sockaddr_in *)addr;
3450 break;
3451 case AF_INET6:
3452 sin6 = (struct sockaddr_in6 *)addr;
3453 break;
3454 default:
3455 return -EINVAL;
3456 }
3457
3458 switch (param) {
3459 case ISCSI_PARAM_CONN_ADDRESS:
3460 case ISCSI_HOST_PARAM_IPADDRESS:
3461 if (sin)
3462 len = sprintf(buf, "%pI4\n", &sin->sin_addr.s_addr);
3463 else
3464 len = sprintf(buf, "%pI6\n", &sin6->sin6_addr);
3465 break;
3466 case ISCSI_PARAM_CONN_PORT:
Mike Christie4bfb8ebf2014-09-29 13:55:42 -05003467 case ISCSI_PARAM_LOCAL_PORT:
Mike Christie00f37082011-02-16 15:04:35 -06003468 if (sin)
3469 len = sprintf(buf, "%hu\n", be16_to_cpu(sin->sin_port));
3470 else
3471 len = sprintf(buf, "%hu\n",
3472 be16_to_cpu(sin6->sin6_port));
3473 break;
3474 default:
3475 return -EINVAL;
3476 }
3477
3478 return len;
3479}
3480EXPORT_SYMBOL_GPL(iscsi_conn_get_addr_param);
3481
Mike Christiea54a52c2006-06-28 12:00:23 -05003482int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
3483 enum iscsi_param param, char *buf)
3484{
3485 struct iscsi_conn *conn = cls_conn->dd_data;
3486 int len;
3487
3488 switch(param) {
Mike Christief6d51802007-12-13 12:43:30 -06003489 case ISCSI_PARAM_PING_TMO:
3490 len = sprintf(buf, "%u\n", conn->ping_timeout);
3491 break;
3492 case ISCSI_PARAM_RECV_TMO:
3493 len = sprintf(buf, "%u\n", conn->recv_timeout);
3494 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003495 case ISCSI_PARAM_MAX_RECV_DLENGTH:
3496 len = sprintf(buf, "%u\n", conn->max_recv_dlength);
3497 break;
3498 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3499 len = sprintf(buf, "%u\n", conn->max_xmit_dlength);
3500 break;
3501 case ISCSI_PARAM_HDRDGST_EN:
3502 len = sprintf(buf, "%d\n", conn->hdrdgst_en);
3503 break;
3504 case ISCSI_PARAM_DATADGST_EN:
3505 len = sprintf(buf, "%d\n", conn->datadgst_en);
3506 break;
3507 case ISCSI_PARAM_IFMARKER_EN:
3508 len = sprintf(buf, "%d\n", conn->ifmarker_en);
3509 break;
3510 case ISCSI_PARAM_OFMARKER_EN:
3511 len = sprintf(buf, "%d\n", conn->ofmarker_en);
3512 break;
3513 case ISCSI_PARAM_EXP_STATSN:
3514 len = sprintf(buf, "%u\n", conn->exp_statsn);
3515 break;
3516 case ISCSI_PARAM_PERSISTENT_PORT:
3517 len = sprintf(buf, "%d\n", conn->persistent_port);
3518 break;
3519 case ISCSI_PARAM_PERSISTENT_ADDRESS:
3520 len = sprintf(buf, "%s\n", conn->persistent_address);
3521 break;
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04003522 case ISCSI_PARAM_STATSN:
3523 len = sprintf(buf, "%u\n", conn->statsn);
3524 break;
3525 case ISCSI_PARAM_MAX_SEGMENT_SIZE:
3526 len = sprintf(buf, "%u\n", conn->max_segment_size);
3527 break;
3528 case ISCSI_PARAM_KEEPALIVE_TMO:
3529 len = sprintf(buf, "%u\n", conn->keepalive_tmo);
3530 break;
3531 case ISCSI_PARAM_LOCAL_PORT:
3532 len = sprintf(buf, "%u\n", conn->local_port);
3533 break;
3534 case ISCSI_PARAM_TCP_TIMESTAMP_STAT:
3535 len = sprintf(buf, "%u\n", conn->tcp_timestamp_stat);
3536 break;
3537 case ISCSI_PARAM_TCP_NAGLE_DISABLE:
3538 len = sprintf(buf, "%u\n", conn->tcp_nagle_disable);
3539 break;
3540 case ISCSI_PARAM_TCP_WSF_DISABLE:
3541 len = sprintf(buf, "%u\n", conn->tcp_wsf_disable);
3542 break;
3543 case ISCSI_PARAM_TCP_TIMER_SCALE:
3544 len = sprintf(buf, "%u\n", conn->tcp_timer_scale);
3545 break;
3546 case ISCSI_PARAM_TCP_TIMESTAMP_EN:
3547 len = sprintf(buf, "%u\n", conn->tcp_timestamp_en);
3548 break;
3549 case ISCSI_PARAM_IP_FRAGMENT_DISABLE:
3550 len = sprintf(buf, "%u\n", conn->fragment_disable);
3551 break;
3552 case ISCSI_PARAM_IPV4_TOS:
3553 len = sprintf(buf, "%u\n", conn->ipv4_tos);
3554 break;
3555 case ISCSI_PARAM_IPV6_TC:
3556 len = sprintf(buf, "%u\n", conn->ipv6_traffic_class);
3557 break;
Adheer Chandravanshi5f09e1f2013-07-22 07:46:10 -04003558 case ISCSI_PARAM_IPV6_FLOW_LABEL:
3559 len = sprintf(buf, "%u\n", conn->ipv6_flow_label);
3560 break;
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04003561 case ISCSI_PARAM_IS_FW_ASSIGNED_IPV6:
3562 len = sprintf(buf, "%u\n", conn->is_fw_assigned_ipv6);
3563 break;
3564 case ISCSI_PARAM_TCP_XMIT_WSF:
3565 len = sprintf(buf, "%u\n", conn->tcp_xmit_wsf);
3566 break;
3567 case ISCSI_PARAM_TCP_RECV_WSF:
3568 len = sprintf(buf, "%u\n", conn->tcp_recv_wsf);
3569 break;
Adheer Chandravanshiae56ff42013-11-22 05:28:21 -05003570 case ISCSI_PARAM_LOCAL_IPADDR:
3571 len = sprintf(buf, "%s\n", conn->local_ipaddr);
3572 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003573 default:
3574 return -ENOSYS;
3575 }
3576
3577 return len;
3578}
3579EXPORT_SYMBOL_GPL(iscsi_conn_get_param);
3580
Mike Christie0801c242007-05-30 12:57:12 -05003581int iscsi_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3582 char *buf)
3583{
Mike Christie75613522008-05-21 15:53:59 -05003584 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie0801c242007-05-30 12:57:12 -05003585 int len;
3586
3587 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05003588 case ISCSI_HOST_PARAM_NETDEV_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003589 len = sprintf(buf, "%s\n", ihost->netdev);
Mike Christied8196ed2007-05-30 12:57:25 -05003590 break;
Mike Christie0801c242007-05-30 12:57:12 -05003591 case ISCSI_HOST_PARAM_HWADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003592 len = sprintf(buf, "%s\n", ihost->hwaddress);
Mike Christie0801c242007-05-30 12:57:12 -05003593 break;
Mike Christie8ad57812007-05-30 12:57:13 -05003594 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003595 len = sprintf(buf, "%s\n", ihost->initiatorname);
Mike Christie8ad57812007-05-30 12:57:13 -05003596 break;
Mike Christie0801c242007-05-30 12:57:12 -05003597 default:
3598 return -ENOSYS;
3599 }
3600
3601 return len;
3602}
3603EXPORT_SYMBOL_GPL(iscsi_host_get_param);
3604
3605int iscsi_host_set_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3606 char *buf, int buflen)
3607{
Mike Christie75613522008-05-21 15:53:59 -05003608 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie0801c242007-05-30 12:57:12 -05003609
3610 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05003611 case ISCSI_HOST_PARAM_NETDEV_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003612 return iscsi_switch_str_param(&ihost->netdev, buf);
Mike Christie0801c242007-05-30 12:57:12 -05003613 case ISCSI_HOST_PARAM_HWADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003614 return iscsi_switch_str_param(&ihost->hwaddress, buf);
Mike Christie8ad57812007-05-30 12:57:13 -05003615 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003616 return iscsi_switch_str_param(&ihost->initiatorname, buf);
Mike Christie0801c242007-05-30 12:57:12 -05003617 default:
3618 return -ENOSYS;
3619 }
3620
3621 return 0;
3622}
3623EXPORT_SYMBOL_GPL(iscsi_host_set_param);
3624
Mike Christie7996a772006-04-06 21:13:41 -05003625MODULE_AUTHOR("Mike Christie");
3626MODULE_DESCRIPTION("iSCSI library functions");
3627MODULE_LICENSE("GPL");