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