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