blob: e7942628ac4aa4824c10d08066a5eff86e13fe20 [file] [log] [blame]
Mike Christie7996a772006-04-06 21:13:41 -05001/*
2 * iSCSI lib functions
3 *
4 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
5 * Copyright (C) 2004 - 2006 Mike Christie
6 * Copyright (C) 2004 - 2005 Dmitry Yusupov
7 * Copyright (C) 2004 - 2005 Alex Aizman
8 * maintained by open-iscsi@googlegroups.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 */
24#include <linux/types.h>
Mike Christie7996a772006-04-06 21:13:41 -050025#include <linux/kfifo.h>
26#include <linux/delay.h>
vignesh babu11836572007-12-13 12:43:41 -060027#include <linux/log2.h>
Mike Christie8eb00532007-02-28 17:32:19 -060028#include <asm/unaligned.h>
Mike Christie7996a772006-04-06 21:13:41 -050029#include <net/tcp.h>
30#include <scsi/scsi_cmnd.h>
31#include <scsi/scsi_device.h>
32#include <scsi/scsi_eh.h>
33#include <scsi/scsi_tcq.h>
34#include <scsi/scsi_host.h>
35#include <scsi/scsi.h>
36#include <scsi/iscsi_proto.h>
37#include <scsi/scsi_transport.h>
38#include <scsi/scsi_transport_iscsi.h>
39#include <scsi/libiscsi.h>
40
41struct iscsi_session *
42class_to_transport_session(struct iscsi_cls_session *cls_session)
43{
44 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
45 return iscsi_hostdata(shost->hostdata);
46}
47EXPORT_SYMBOL_GPL(class_to_transport_session);
48
Mike Christie77a23c22007-05-30 12:57:18 -050049/* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
50#define SNA32_CHECK 2147483648UL
Mike Christie7996a772006-04-06 21:13:41 -050051
Mike Christie77a23c22007-05-30 12:57:18 -050052static int iscsi_sna_lt(u32 n1, u32 n2)
53{
54 return n1 != n2 && ((n1 < n2 && (n2 - n1 < SNA32_CHECK)) ||
55 (n1 > n2 && (n2 - n1 < SNA32_CHECK)));
56}
57
58/* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
59static int iscsi_sna_lte(u32 n1, u32 n2)
60{
61 return n1 == n2 || ((n1 < n2 && (n2 - n1 < SNA32_CHECK)) ||
62 (n1 > n2 && (n2 - n1 < SNA32_CHECK)));
63}
64
65void
66iscsi_update_cmdsn(struct iscsi_session *session, struct iscsi_nopin *hdr)
Mike Christie7996a772006-04-06 21:13:41 -050067{
68 uint32_t max_cmdsn = be32_to_cpu(hdr->max_cmdsn);
69 uint32_t exp_cmdsn = be32_to_cpu(hdr->exp_cmdsn);
70
Mike Christie77a23c22007-05-30 12:57:18 -050071 /*
72 * standard specifies this check for when to update expected and
73 * max sequence numbers
74 */
75 if (iscsi_sna_lt(max_cmdsn, exp_cmdsn - 1))
76 return;
77
78 if (exp_cmdsn != session->exp_cmdsn &&
79 !iscsi_sna_lt(exp_cmdsn, session->exp_cmdsn))
Mike Christie7996a772006-04-06 21:13:41 -050080 session->exp_cmdsn = exp_cmdsn;
81
Mike Christie77a23c22007-05-30 12:57:18 -050082 if (max_cmdsn != session->max_cmdsn &&
83 !iscsi_sna_lt(max_cmdsn, session->max_cmdsn)) {
84 session->max_cmdsn = max_cmdsn;
85 /*
86 * if the window closed with IO queued, then kick the
87 * xmit thread
88 */
89 if (!list_empty(&session->leadconn->xmitqueue) ||
Mike Christie843c0a82007-12-13 12:43:20 -060090 !list_empty(&session->leadconn->mgmtqueue))
Mike Christie77a23c22007-05-30 12:57:18 -050091 scsi_queue_work(session->host,
92 &session->leadconn->xmitwork);
93 }
Mike Christie7996a772006-04-06 21:13:41 -050094}
Mike Christie77a23c22007-05-30 12:57:18 -050095EXPORT_SYMBOL_GPL(iscsi_update_cmdsn);
Mike Christie7996a772006-04-06 21:13:41 -050096
97void iscsi_prep_unsolicit_data_pdu(struct iscsi_cmd_task *ctask,
Mike Christieffd04362006-08-31 18:09:24 -040098 struct iscsi_data *hdr)
Mike Christie7996a772006-04-06 21:13:41 -050099{
100 struct iscsi_conn *conn = ctask->conn;
101
102 memset(hdr, 0, sizeof(struct iscsi_data));
103 hdr->ttt = cpu_to_be32(ISCSI_RESERVED_TAG);
104 hdr->datasn = cpu_to_be32(ctask->unsol_datasn);
105 ctask->unsol_datasn++;
106 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
107 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
108
109 hdr->itt = ctask->hdr->itt;
110 hdr->exp_statsn = cpu_to_be32(conn->exp_statsn);
Mike Christieffd04362006-08-31 18:09:24 -0400111 hdr->offset = cpu_to_be32(ctask->unsol_offset);
Mike Christie7996a772006-04-06 21:13:41 -0500112
113 if (ctask->unsol_count > conn->max_xmit_dlength) {
114 hton24(hdr->dlength, conn->max_xmit_dlength);
115 ctask->data_count = conn->max_xmit_dlength;
Mike Christieffd04362006-08-31 18:09:24 -0400116 ctask->unsol_offset += ctask->data_count;
Mike Christie7996a772006-04-06 21:13:41 -0500117 hdr->flags = 0;
118 } else {
119 hton24(hdr->dlength, ctask->unsol_count);
120 ctask->data_count = ctask->unsol_count;
121 hdr->flags = ISCSI_FLAG_CMD_FINAL;
122 }
123}
124EXPORT_SYMBOL_GPL(iscsi_prep_unsolicit_data_pdu);
125
Boaz Harrosh004d6532007-12-13 12:43:23 -0600126static int iscsi_add_hdr(struct iscsi_cmd_task *ctask, unsigned len)
127{
128 unsigned exp_len = ctask->hdr_len + len;
129
130 if (exp_len > ctask->hdr_max) {
131 WARN_ON(1);
132 return -EINVAL;
133 }
134
135 WARN_ON(len & (ISCSI_PAD_LEN - 1)); /* caller must pad the AHS */
136 ctask->hdr_len = exp_len;
137 return 0;
138}
139
Mike Christie7996a772006-04-06 21:13:41 -0500140/**
141 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
142 * @ctask: iscsi cmd task
143 *
144 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
145 * fields like dlength or final based on how much data it sends
146 */
Boaz Harrosh004d6532007-12-13 12:43:23 -0600147static int iscsi_prep_scsi_cmd_pdu(struct iscsi_cmd_task *ctask)
Mike Christie7996a772006-04-06 21:13:41 -0500148{
149 struct iscsi_conn *conn = ctask->conn;
150 struct iscsi_session *session = conn->session;
151 struct iscsi_cmd *hdr = ctask->hdr;
152 struct scsi_cmnd *sc = ctask->sc;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600153 unsigned hdrlength;
154 int rc;
Mike Christie7996a772006-04-06 21:13:41 -0500155
Boaz Harrosh004d6532007-12-13 12:43:23 -0600156 ctask->hdr_len = 0;
157 rc = iscsi_add_hdr(ctask, sizeof(*hdr));
158 if (rc)
159 return rc;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600160 hdr->opcode = ISCSI_OP_SCSI_CMD;
161 hdr->flags = ISCSI_ATTR_SIMPLE;
162 int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun);
163 hdr->itt = build_itt(ctask->itt, conn->id, session->age);
164 hdr->data_length = cpu_to_be32(scsi_bufflen(sc));
165 hdr->cmdsn = cpu_to_be32(session->cmdsn);
166 session->cmdsn++;
167 hdr->exp_statsn = cpu_to_be32(conn->exp_statsn);
168 memcpy(hdr->cdb, sc->cmnd, sc->cmd_len);
Mike Christied473cc72007-05-30 12:57:14 -0500169 if (sc->cmd_len < MAX_COMMAND_SIZE)
170 memset(&hdr->cdb[sc->cmd_len], 0,
171 MAX_COMMAND_SIZE - sc->cmd_len);
Mike Christie7996a772006-04-06 21:13:41 -0500172
Mike Christie218432c2007-05-30 12:57:17 -0500173 ctask->imm_count = 0;
Mike Christie7996a772006-04-06 21:13:41 -0500174 if (sc->sc_data_direction == DMA_TO_DEVICE) {
175 hdr->flags |= ISCSI_FLAG_CMD_WRITE;
176 /*
177 * Write counters:
178 *
179 * imm_count bytes to be sent right after
180 * SCSI PDU Header
181 *
182 * unsol_count bytes(as Data-Out) to be sent
183 * without R2T ack right after
184 * immediate data
185 *
186 * r2t_data_count bytes to be sent via R2T ack's
187 *
188 * pad_count bytes to be sent as zero-padding
189 */
Mike Christie7996a772006-04-06 21:13:41 -0500190 ctask->unsol_count = 0;
Mike Christieffd04362006-08-31 18:09:24 -0400191 ctask->unsol_offset = 0;
Mike Christie7996a772006-04-06 21:13:41 -0500192 ctask->unsol_datasn = 0;
193
194 if (session->imm_data_en) {
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900195 if (scsi_bufflen(sc) >= session->first_burst)
Mike Christie7996a772006-04-06 21:13:41 -0500196 ctask->imm_count = min(session->first_burst,
197 conn->max_xmit_dlength);
198 else
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900199 ctask->imm_count = min(scsi_bufflen(sc),
Mike Christie7996a772006-04-06 21:13:41 -0500200 conn->max_xmit_dlength);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600201 hton24(hdr->dlength, ctask->imm_count);
Mike Christie7996a772006-04-06 21:13:41 -0500202 } else
Olaf Kircha8ac6312007-12-13 12:43:35 -0600203 zero_data(hdr->dlength);
Mike Christie7996a772006-04-06 21:13:41 -0500204
Mike Christieffd04362006-08-31 18:09:24 -0400205 if (!session->initial_r2t_en) {
Mike Christie857ae0b2007-05-30 12:57:15 -0500206 ctask->unsol_count = min((session->first_burst),
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900207 (scsi_bufflen(sc))) - ctask->imm_count;
Mike Christieffd04362006-08-31 18:09:24 -0400208 ctask->unsol_offset = ctask->imm_count;
209 }
210
Mike Christie7996a772006-04-06 21:13:41 -0500211 if (!ctask->unsol_count)
212 /* No unsolicit Data-Out's */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600213 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Mike Christie7996a772006-04-06 21:13:41 -0500214 } else {
Mike Christie7996a772006-04-06 21:13:41 -0500215 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
216 zero_data(hdr->dlength);
217
218 if (sc->sc_data_direction == DMA_FROM_DEVICE)
219 hdr->flags |= ISCSI_FLAG_CMD_READ;
220 }
221
Boaz Harrosh004d6532007-12-13 12:43:23 -0600222 /* calculate size of additional header segments (AHSs) */
223 hdrlength = ctask->hdr_len - sizeof(*hdr);
224
225 WARN_ON(hdrlength & (ISCSI_PAD_LEN-1));
226 hdrlength /= ISCSI_PAD_LEN;
227
228 WARN_ON(hdrlength >= 256);
229 hdr->hlength = hdrlength & 0xFF;
230
Olaf Kircha8ac6312007-12-13 12:43:35 -0600231 if (conn->session->tt->init_cmd_task(conn->ctask))
232 return EIO;
Mike Christie77a23c22007-05-30 12:57:18 -0500233
Olaf Kircha8ac6312007-12-13 12:43:35 -0600234 conn->scsicmd_pdus_cnt++;
235 debug_scsi("iscsi prep [%s cid %d sc %p cdb 0x%x itt 0x%x len %d "
Mike Christie77a23c22007-05-30 12:57:18 -0500236 "cmdsn %d win %d]\n",
Olaf Kircha8ac6312007-12-13 12:43:35 -0600237 sc->sc_data_direction == DMA_TO_DEVICE ? "write" : "read",
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900238 conn->id, sc, sc->cmnd[0], ctask->itt, scsi_bufflen(sc),
Olaf Kircha8ac6312007-12-13 12:43:35 -0600239 session->cmdsn, session->max_cmdsn - session->exp_cmdsn + 1);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600240 return 0;
Mike Christie7996a772006-04-06 21:13:41 -0500241}
Mike Christie7996a772006-04-06 21:13:41 -0500242
243/**
244 * iscsi_complete_command - return command back to scsi-ml
Mike Christie7996a772006-04-06 21:13:41 -0500245 * @ctask: iscsi cmd task
246 *
247 * Must be called with session lock.
248 * This function returns the scsi command to scsi-ml and returns
249 * the cmd task to the pool of available cmd tasks.
250 */
Mike Christie60ecebf2006-08-31 18:09:25 -0400251static void iscsi_complete_command(struct iscsi_cmd_task *ctask)
Mike Christie7996a772006-04-06 21:13:41 -0500252{
Mike Christiec1635cb2007-12-13 12:43:33 -0600253 struct iscsi_conn *conn = ctask->conn;
254 struct iscsi_session *session = conn->session;
Mike Christie7996a772006-04-06 21:13:41 -0500255 struct scsi_cmnd *sc = ctask->sc;
256
Mike Christieb6c395e2006-07-24 15:47:15 -0500257 ctask->state = ISCSI_TASK_COMPLETED;
Mike Christie7996a772006-04-06 21:13:41 -0500258 ctask->sc = NULL;
Mike Christief47f2cf2006-08-31 18:09:33 -0400259 /* SCSI eh reuses commands to verify us */
260 sc->SCp.ptr = NULL;
Mike Christiec1635cb2007-12-13 12:43:33 -0600261 if (conn->ctask == ctask)
262 conn->ctask = NULL;
Mike Christie7996a772006-04-06 21:13:41 -0500263 list_del_init(&ctask->running);
264 __kfifo_put(session->cmdpool.queue, (void*)&ctask, sizeof(void*));
265 sc->scsi_done(sc);
266}
267
Mike Christie60ecebf2006-08-31 18:09:25 -0400268static void __iscsi_get_ctask(struct iscsi_cmd_task *ctask)
269{
270 atomic_inc(&ctask->refcount);
271}
272
Mike Christie60ecebf2006-08-31 18:09:25 -0400273static void __iscsi_put_ctask(struct iscsi_cmd_task *ctask)
274{
Mike Christiee648f632006-08-31 18:09:34 -0400275 if (atomic_dec_and_test(&ctask->refcount))
Mike Christie60ecebf2006-08-31 18:09:25 -0400276 iscsi_complete_command(ctask);
Mike Christie60ecebf2006-08-31 18:09:25 -0400277}
278
Mike Christieb3a7ea82007-12-13 12:43:26 -0600279/*
280 * session lock must be held
281 */
282static void fail_command(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
283 int err)
284{
285 struct scsi_cmnd *sc;
286
287 sc = ctask->sc;
288 if (!sc)
289 return;
290
291 if (ctask->state == ISCSI_TASK_PENDING)
292 /*
293 * cmd never made it to the xmit thread, so we should not count
294 * the cmd in the sequencing
295 */
296 conn->session->queued_cmdsn--;
297 else
298 conn->session->tt->cleanup_cmd_task(conn, ctask);
299
300 sc->result = err;
301 scsi_set_resid(sc, scsi_bufflen(sc));
302 if (conn->ctask == ctask)
303 conn->ctask = NULL;
304 /* release ref from queuecommand */
305 __iscsi_put_ctask(ctask);
306}
307
308/**
309 * iscsi_free_mgmt_task - return mgmt task back to pool
310 * @conn: iscsi connection
311 * @mtask: mtask
312 *
313 * Must be called with session lock.
314 */
315void iscsi_free_mgmt_task(struct iscsi_conn *conn,
316 struct iscsi_mgmt_task *mtask)
317{
318 list_del_init(&mtask->running);
319 if (conn->login_mtask == mtask)
320 return;
Mike Christief6d51802007-12-13 12:43:30 -0600321
322 if (conn->ping_mtask == mtask)
323 conn->ping_mtask = NULL;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600324 __kfifo_put(conn->session->mgmtpool.queue,
325 (void*)&mtask, sizeof(void*));
326}
327EXPORT_SYMBOL_GPL(iscsi_free_mgmt_task);
328
Mike Christief6d51802007-12-13 12:43:30 -0600329static struct iscsi_mgmt_task *
330__iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
331 char *data, uint32_t data_size)
332{
333 struct iscsi_session *session = conn->session;
334 struct iscsi_mgmt_task *mtask;
335
336 if (session->state == ISCSI_STATE_TERMINATE)
337 return NULL;
338
339 if (hdr->opcode == (ISCSI_OP_LOGIN | ISCSI_OP_IMMEDIATE) ||
340 hdr->opcode == (ISCSI_OP_TEXT | ISCSI_OP_IMMEDIATE))
341 /*
342 * Login and Text are sent serially, in
343 * request-followed-by-response sequence.
344 * Same mtask can be used. Same ITT must be used.
345 * Note that login_mtask is preallocated at conn_create().
346 */
347 mtask = conn->login_mtask;
348 else {
349 BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE);
350 BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED);
351
352 if (!__kfifo_get(session->mgmtpool.queue,
353 (void*)&mtask, sizeof(void*)))
354 return NULL;
355 }
356
357 if (data_size) {
358 memcpy(mtask->data, data, data_size);
359 mtask->data_count = data_size;
360 } else
361 mtask->data_count = 0;
362
363 memcpy(mtask->hdr, hdr, sizeof(struct iscsi_hdr));
364 INIT_LIST_HEAD(&mtask->running);
365 list_add_tail(&mtask->running, &conn->mgmtqueue);
366 return mtask;
367}
368
369int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr,
370 char *data, uint32_t data_size)
371{
372 struct iscsi_conn *conn = cls_conn->dd_data;
373 struct iscsi_session *session = conn->session;
374 int err = 0;
375
376 spin_lock_bh(&session->lock);
377 if (!__iscsi_conn_send_pdu(conn, hdr, data, data_size))
378 err = -EPERM;
379 spin_unlock_bh(&session->lock);
380 scsi_queue_work(session->host, &conn->xmitwork);
381 return err;
382}
383EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu);
384
Mike Christie7996a772006-04-06 21:13:41 -0500385/**
386 * iscsi_cmd_rsp - SCSI Command Response processing
387 * @conn: iscsi connection
388 * @hdr: iscsi header
389 * @ctask: scsi command task
390 * @data: cmd data buffer
391 * @datalen: len of buffer
392 *
393 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
394 * then completes the command and task.
395 **/
Mike Christie77a23c22007-05-30 12:57:18 -0500396static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
397 struct iscsi_cmd_task *ctask, char *data,
398 int datalen)
Mike Christie7996a772006-04-06 21:13:41 -0500399{
Mike Christie7996a772006-04-06 21:13:41 -0500400 struct iscsi_cmd_rsp *rhdr = (struct iscsi_cmd_rsp *)hdr;
401 struct iscsi_session *session = conn->session;
402 struct scsi_cmnd *sc = ctask->sc;
403
Mike Christie77a23c22007-05-30 12:57:18 -0500404 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Mike Christie7996a772006-04-06 21:13:41 -0500405 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
406
407 sc->result = (DID_OK << 16) | rhdr->cmd_status;
408
409 if (rhdr->response != ISCSI_STATUS_CMD_COMPLETED) {
410 sc->result = DID_ERROR << 16;
411 goto out;
412 }
413
414 if (rhdr->cmd_status == SAM_STAT_CHECK_CONDITION) {
Mike Christie9b80cb42006-12-17 12:10:28 -0600415 uint16_t senselen;
Mike Christie7996a772006-04-06 21:13:41 -0500416
417 if (datalen < 2) {
418invalid_datalen:
Or Gerlitzbe2df722006-05-02 19:46:43 -0500419 printk(KERN_ERR "iscsi: Got CHECK_CONDITION but "
420 "invalid data buffer size of %d\n", datalen);
Mike Christie7996a772006-04-06 21:13:41 -0500421 sc->result = DID_BAD_TARGET << 16;
422 goto out;
423 }
424
Mike Christie8eb00532007-02-28 17:32:19 -0600425 senselen = be16_to_cpu(get_unaligned((__be16 *) data));
Mike Christie7996a772006-04-06 21:13:41 -0500426 if (datalen < senselen)
427 goto invalid_datalen;
428
429 memcpy(sc->sense_buffer, data + 2,
Mike Christie9b80cb42006-12-17 12:10:28 -0600430 min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
Mike Christie7996a772006-04-06 21:13:41 -0500431 debug_scsi("copied %d bytes of sense\n",
Mike Christie8eb00532007-02-28 17:32:19 -0600432 min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
Mike Christie7996a772006-04-06 21:13:41 -0500433 }
434
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600435 if (rhdr->flags & (ISCSI_FLAG_CMD_UNDERFLOW |
436 ISCSI_FLAG_CMD_OVERFLOW)) {
Mike Christie7996a772006-04-06 21:13:41 -0500437 int res_count = be32_to_cpu(rhdr->residual_count);
438
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600439 if (res_count > 0 &&
440 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
441 res_count <= scsi_bufflen(sc)))
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900442 scsi_set_resid(sc, res_count);
Mike Christie7996a772006-04-06 21:13:41 -0500443 else
444 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600445 } else if (rhdr->flags & (ISCSI_FLAG_CMD_BIDI_UNDERFLOW |
446 ISCSI_FLAG_CMD_BIDI_OVERFLOW))
Mike Christie7996a772006-04-06 21:13:41 -0500447 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
Mike Christie7996a772006-04-06 21:13:41 -0500448
449out:
450 debug_scsi("done [sc %lx res %d itt 0x%x]\n",
451 (long)sc, sc->result, ctask->itt);
452 conn->scsirsp_pdus_cnt++;
453
Mike Christie60ecebf2006-08-31 18:09:25 -0400454 __iscsi_put_ctask(ctask);
Mike Christie7996a772006-04-06 21:13:41 -0500455}
456
Mike Christie7ea8b822006-07-24 15:47:22 -0500457static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
458{
459 struct iscsi_tm_rsp *tmf = (struct iscsi_tm_rsp *)hdr;
460
461 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
462 conn->tmfrsp_pdus_cnt++;
463
Mike Christie843c0a82007-12-13 12:43:20 -0600464 if (conn->tmf_state != TMF_QUEUED)
Mike Christie7ea8b822006-07-24 15:47:22 -0500465 return;
466
467 if (tmf->response == ISCSI_TMF_RSP_COMPLETE)
Mike Christie843c0a82007-12-13 12:43:20 -0600468 conn->tmf_state = TMF_SUCCESS;
Mike Christie7ea8b822006-07-24 15:47:22 -0500469 else if (tmf->response == ISCSI_TMF_RSP_NO_TASK)
Mike Christie843c0a82007-12-13 12:43:20 -0600470 conn->tmf_state = TMF_NOT_FOUND;
Mike Christie7ea8b822006-07-24 15:47:22 -0500471 else
Mike Christie843c0a82007-12-13 12:43:20 -0600472 conn->tmf_state = TMF_FAILED;
Mike Christie7ea8b822006-07-24 15:47:22 -0500473 wake_up(&conn->ehwait);
474}
475
Mike Christief6d51802007-12-13 12:43:30 -0600476static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr)
477{
478 struct iscsi_nopout hdr;
479 struct iscsi_mgmt_task *mtask;
480
481 if (!rhdr && conn->ping_mtask)
482 return;
483
484 memset(&hdr, 0, sizeof(struct iscsi_nopout));
485 hdr.opcode = ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE;
486 hdr.flags = ISCSI_FLAG_CMD_FINAL;
487
488 if (rhdr) {
489 memcpy(hdr.lun, rhdr->lun, 8);
490 hdr.ttt = rhdr->ttt;
491 hdr.itt = RESERVED_ITT;
492 } else
493 hdr.ttt = RESERVED_ITT;
494
495 mtask = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0);
496 if (!mtask) {
497 printk(KERN_ERR "Could not send nopout\n");
498 return;
499 }
500
501 /* only track our nops */
502 if (!rhdr) {
503 conn->ping_mtask = mtask;
504 conn->last_ping = jiffies;
505 }
506 scsi_queue_work(conn->session->host, &conn->xmitwork);
507}
508
Mike Christie62f38302006-08-31 18:09:27 -0400509static int iscsi_handle_reject(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
510 char *data, int datalen)
511{
512 struct iscsi_reject *reject = (struct iscsi_reject *)hdr;
513 struct iscsi_hdr rejected_pdu;
514 uint32_t itt;
515
516 conn->exp_statsn = be32_to_cpu(reject->statsn) + 1;
517
518 if (reject->reason == ISCSI_REASON_DATA_DIGEST_ERROR) {
519 if (ntoh24(reject->dlength) > datalen)
520 return ISCSI_ERR_PROTO;
521
522 if (ntoh24(reject->dlength) >= sizeof(struct iscsi_hdr)) {
523 memcpy(&rejected_pdu, data, sizeof(struct iscsi_hdr));
Al Virob4377352007-02-09 16:39:40 +0000524 itt = get_itt(rejected_pdu.itt);
Mike Christie62f38302006-08-31 18:09:27 -0400525 printk(KERN_ERR "itt 0x%x had pdu (op 0x%x) rejected "
526 "due to DataDigest error.\n", itt,
527 rejected_pdu.opcode);
528 }
529 }
530 return 0;
531}
532
Mike Christie7996a772006-04-06 21:13:41 -0500533/**
534 * __iscsi_complete_pdu - complete pdu
535 * @conn: iscsi conn
536 * @hdr: iscsi header
537 * @data: data buffer
538 * @datalen: len of data buffer
539 *
540 * Completes pdu processing by freeing any resources allocated at
541 * queuecommand or send generic. session lock must be held and verify
542 * itt must have been called.
543 */
Adrian Bunkf8d9d652008-01-29 00:11:27 +0200544static int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
545 char *data, int datalen)
Mike Christie7996a772006-04-06 21:13:41 -0500546{
547 struct iscsi_session *session = conn->session;
548 int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0;
549 struct iscsi_cmd_task *ctask;
550 struct iscsi_mgmt_task *mtask;
551 uint32_t itt;
552
Mike Christief6d51802007-12-13 12:43:30 -0600553 conn->last_recv = jiffies;
Al Virob4377352007-02-09 16:39:40 +0000554 if (hdr->itt != RESERVED_ITT)
555 itt = get_itt(hdr->itt);
Mike Christie7996a772006-04-06 21:13:41 -0500556 else
Al Virob4377352007-02-09 16:39:40 +0000557 itt = ~0U;
Mike Christie7996a772006-04-06 21:13:41 -0500558
559 if (itt < session->cmds_max) {
560 ctask = session->cmds[itt];
561
562 debug_scsi("cmdrsp [op 0x%x cid %d itt 0x%x len %d]\n",
563 opcode, conn->id, ctask->itt, datalen);
564
565 switch(opcode) {
566 case ISCSI_OP_SCSI_CMD_RSP:
567 BUG_ON((void*)ctask != ctask->sc->SCp.ptr);
Mike Christie77a23c22007-05-30 12:57:18 -0500568 iscsi_scsi_cmd_rsp(conn, hdr, ctask, data,
569 datalen);
Mike Christie7996a772006-04-06 21:13:41 -0500570 break;
571 case ISCSI_OP_SCSI_DATA_IN:
572 BUG_ON((void*)ctask != ctask->sc->SCp.ptr);
573 if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
574 conn->scsirsp_pdus_cnt++;
Mike Christie60ecebf2006-08-31 18:09:25 -0400575 __iscsi_put_ctask(ctask);
Mike Christie7996a772006-04-06 21:13:41 -0500576 }
577 break;
578 case ISCSI_OP_R2T:
579 /* LLD handles this for now */
580 break;
581 default:
582 rc = ISCSI_ERR_BAD_OPCODE;
583 break;
584 }
585 } else if (itt >= ISCSI_MGMT_ITT_OFFSET &&
586 itt < ISCSI_MGMT_ITT_OFFSET + session->mgmtpool_max) {
587 mtask = session->mgmt_cmds[itt - ISCSI_MGMT_ITT_OFFSET];
588
589 debug_scsi("immrsp [op 0x%x cid %d itt 0x%x len %d]\n",
590 opcode, conn->id, mtask->itt, datalen);
591
Mike Christie77a23c22007-05-30 12:57:18 -0500592 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
Mike Christie7996a772006-04-06 21:13:41 -0500593 switch(opcode) {
Mike Christie8d2860b2006-05-02 19:46:47 -0500594 case ISCSI_OP_LOGOUT_RSP:
Mike Christiec8dc1e52006-07-24 15:47:39 -0500595 if (datalen) {
596 rc = ISCSI_ERR_PROTO;
597 break;
598 }
Mike Christie8d2860b2006-05-02 19:46:47 -0500599 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
600 /* fall through */
Mike Christie7996a772006-04-06 21:13:41 -0500601 case ISCSI_OP_LOGIN_RSP:
602 case ISCSI_OP_TEXT_RSP:
Mike Christie8d2860b2006-05-02 19:46:47 -0500603 /*
604 * login related PDU's exp_statsn is handled in
605 * userspace
606 */
Mike Christie40527af2006-07-24 15:47:45 -0500607 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
608 rc = ISCSI_ERR_CONN_FAILED;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600609 iscsi_free_mgmt_task(conn, mtask);
Mike Christie7996a772006-04-06 21:13:41 -0500610 break;
611 case ISCSI_OP_SCSI_TMFUNC_RSP:
Mike Christie7996a772006-04-06 21:13:41 -0500612 if (datalen) {
613 rc = ISCSI_ERR_PROTO;
614 break;
615 }
Mike Christie8d2860b2006-05-02 19:46:47 -0500616
Mike Christie7ea8b822006-07-24 15:47:22 -0500617 iscsi_tmf_rsp(conn, hdr);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600618 iscsi_free_mgmt_task(conn, mtask);
Mike Christie7996a772006-04-06 21:13:41 -0500619 break;
620 case ISCSI_OP_NOOP_IN:
Mike Christief6d51802007-12-13 12:43:30 -0600621 if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) ||
622 datalen) {
Mike Christie7996a772006-04-06 21:13:41 -0500623 rc = ISCSI_ERR_PROTO;
624 break;
625 }
Mike Christie7996a772006-04-06 21:13:41 -0500626 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
627
Mike Christief6d51802007-12-13 12:43:30 -0600628 if (conn->ping_mtask != mtask) {
629 /*
630 * If this is not in response to one of our
631 * nops then it must be from userspace.
632 */
633 if (iscsi_recv_pdu(conn->cls_conn, hdr, data,
634 datalen))
635 rc = ISCSI_ERR_CONN_FAILED;
636 }
Mike Christieb3a7ea82007-12-13 12:43:26 -0600637 iscsi_free_mgmt_task(conn, mtask);
Mike Christie7996a772006-04-06 21:13:41 -0500638 break;
639 default:
640 rc = ISCSI_ERR_BAD_OPCODE;
641 break;
642 }
Al Virob4377352007-02-09 16:39:40 +0000643 } else if (itt == ~0U) {
Mike Christie77a23c22007-05-30 12:57:18 -0500644 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
Mike Christie62f38302006-08-31 18:09:27 -0400645
Mike Christie7996a772006-04-06 21:13:41 -0500646 switch(opcode) {
647 case ISCSI_OP_NOOP_IN:
Mike Christie40527af2006-07-24 15:47:45 -0500648 if (datalen) {
Mike Christie7996a772006-04-06 21:13:41 -0500649 rc = ISCSI_ERR_PROTO;
Mike Christie40527af2006-07-24 15:47:45 -0500650 break;
651 }
652
Al Virob4377352007-02-09 16:39:40 +0000653 if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG))
Mike Christie40527af2006-07-24 15:47:45 -0500654 break;
655
Mike Christief6d51802007-12-13 12:43:30 -0600656 iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr);
Mike Christie7996a772006-04-06 21:13:41 -0500657 break;
658 case ISCSI_OP_REJECT:
Mike Christie62f38302006-08-31 18:09:27 -0400659 rc = iscsi_handle_reject(conn, hdr, data, datalen);
660 break;
Mike Christie7996a772006-04-06 21:13:41 -0500661 case ISCSI_OP_ASYNC_EVENT:
Mike Christie8d2860b2006-05-02 19:46:47 -0500662 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
Mike Christie5831c732006-10-16 18:09:41 -0400663 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
664 rc = ISCSI_ERR_CONN_FAILED;
Mike Christie7996a772006-04-06 21:13:41 -0500665 break;
666 default:
667 rc = ISCSI_ERR_BAD_OPCODE;
668 break;
669 }
670 } else
671 rc = ISCSI_ERR_BAD_ITT;
672
673 return rc;
674}
Mike Christie7996a772006-04-06 21:13:41 -0500675
676int iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
677 char *data, int datalen)
678{
679 int rc;
680
681 spin_lock(&conn->session->lock);
682 rc = __iscsi_complete_pdu(conn, hdr, data, datalen);
683 spin_unlock(&conn->session->lock);
684 return rc;
685}
686EXPORT_SYMBOL_GPL(iscsi_complete_pdu);
687
688/* verify itt (itt encoding: age+cid+itt) */
689int iscsi_verify_itt(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
690 uint32_t *ret_itt)
691{
692 struct iscsi_session *session = conn->session;
693 struct iscsi_cmd_task *ctask;
694 uint32_t itt;
695
Al Virob4377352007-02-09 16:39:40 +0000696 if (hdr->itt != RESERVED_ITT) {
697 if (((__force u32)hdr->itt & ISCSI_AGE_MASK) !=
Mike Christie7996a772006-04-06 21:13:41 -0500698 (session->age << ISCSI_AGE_SHIFT)) {
Or Gerlitzbe2df722006-05-02 19:46:43 -0500699 printk(KERN_ERR "iscsi: received itt %x expected "
Al Virob4377352007-02-09 16:39:40 +0000700 "session age (%x)\n", (__force u32)hdr->itt,
Mike Christie7996a772006-04-06 21:13:41 -0500701 session->age & ISCSI_AGE_MASK);
702 return ISCSI_ERR_BAD_ITT;
703 }
704
Al Virob4377352007-02-09 16:39:40 +0000705 if (((__force u32)hdr->itt & ISCSI_CID_MASK) !=
Mike Christie7996a772006-04-06 21:13:41 -0500706 (conn->id << ISCSI_CID_SHIFT)) {
Or Gerlitzbe2df722006-05-02 19:46:43 -0500707 printk(KERN_ERR "iscsi: received itt %x, expected "
Al Virob4377352007-02-09 16:39:40 +0000708 "CID (%x)\n", (__force u32)hdr->itt, conn->id);
Mike Christie7996a772006-04-06 21:13:41 -0500709 return ISCSI_ERR_BAD_ITT;
710 }
Al Virob4377352007-02-09 16:39:40 +0000711 itt = get_itt(hdr->itt);
Mike Christie7996a772006-04-06 21:13:41 -0500712 } else
Al Virob4377352007-02-09 16:39:40 +0000713 itt = ~0U;
Mike Christie7996a772006-04-06 21:13:41 -0500714
715 if (itt < session->cmds_max) {
716 ctask = session->cmds[itt];
717
718 if (!ctask->sc) {
Or Gerlitzbe2df722006-05-02 19:46:43 -0500719 printk(KERN_INFO "iscsi: dropping ctask with "
Mike Christie7996a772006-04-06 21:13:41 -0500720 "itt 0x%x\n", ctask->itt);
721 /* force drop */
722 return ISCSI_ERR_NO_SCSI_CMD;
723 }
724
725 if (ctask->sc->SCp.phase != session->age) {
Or Gerlitzbe2df722006-05-02 19:46:43 -0500726 printk(KERN_ERR "iscsi: ctask's session age %d, "
Mike Christie7996a772006-04-06 21:13:41 -0500727 "expected %d\n", ctask->sc->SCp.phase,
728 session->age);
729 return ISCSI_ERR_SESSION_FAILED;
730 }
731 }
732
733 *ret_itt = itt;
734 return 0;
735}
736EXPORT_SYMBOL_GPL(iscsi_verify_itt);
737
738void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err)
739{
740 struct iscsi_session *session = conn->session;
741 unsigned long flags;
742
743 spin_lock_irqsave(&session->lock, flags);
Mike Christie656cffc2006-05-18 20:31:42 -0500744 if (session->state == ISCSI_STATE_FAILED) {
745 spin_unlock_irqrestore(&session->lock, flags);
746 return;
747 }
748
Mike Christie67a61112006-05-30 00:37:20 -0500749 if (conn->stop_stage == 0)
Mike Christie7996a772006-04-06 21:13:41 -0500750 session->state = ISCSI_STATE_FAILED;
751 spin_unlock_irqrestore(&session->lock, flags);
752 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
753 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
754 iscsi_conn_error(conn->cls_conn, err);
755}
756EXPORT_SYMBOL_GPL(iscsi_conn_failure);
757
Mike Christie77a23c22007-05-30 12:57:18 -0500758static void iscsi_prep_mtask(struct iscsi_conn *conn,
759 struct iscsi_mgmt_task *mtask)
760{
761 struct iscsi_session *session = conn->session;
762 struct iscsi_hdr *hdr = mtask->hdr;
763 struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr;
764
765 if (hdr->opcode != (ISCSI_OP_LOGIN | ISCSI_OP_IMMEDIATE) &&
766 hdr->opcode != (ISCSI_OP_TEXT | ISCSI_OP_IMMEDIATE))
767 nop->exp_statsn = cpu_to_be32(conn->exp_statsn);
768 /*
769 * pre-format CmdSN for outgoing PDU.
770 */
771 nop->cmdsn = cpu_to_be32(session->cmdsn);
772 if (hdr->itt != RESERVED_ITT) {
773 hdr->itt = build_itt(mtask->itt, conn->id, session->age);
Mike Christiee0726402007-07-26 12:46:48 -0500774 /*
775 * TODO: We always use immediate, so we never hit this.
776 * If we start to send tmfs or nops as non-immediate then
777 * we should start checking the cmdsn numbers for mgmt tasks.
778 */
Mike Christie77a23c22007-05-30 12:57:18 -0500779 if (conn->c_stage == ISCSI_CONN_STARTED &&
Mike Christiee0726402007-07-26 12:46:48 -0500780 !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
781 session->queued_cmdsn++;
Mike Christie77a23c22007-05-30 12:57:18 -0500782 session->cmdsn++;
Mike Christiee0726402007-07-26 12:46:48 -0500783 }
Mike Christie77a23c22007-05-30 12:57:18 -0500784 }
785
786 if (session->tt->init_mgmt_task)
787 session->tt->init_mgmt_task(conn, mtask);
788
789 debug_scsi("mgmtpdu [op 0x%x hdr->itt 0x%x datalen %d]\n",
Mike Christie843c0a82007-12-13 12:43:20 -0600790 hdr->opcode & ISCSI_OPCODE_MASK, hdr->itt,
791 mtask->data_count);
Mike Christie77a23c22007-05-30 12:57:18 -0500792}
793
Mike Christie05db8882007-02-28 17:32:16 -0600794static int iscsi_xmit_mtask(struct iscsi_conn *conn)
Mike Christieb5072ea2006-10-16 18:09:42 -0400795{
796 struct iscsi_hdr *hdr = conn->mtask->hdr;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600797 int rc;
Mike Christieb5072ea2006-10-16 18:09:42 -0400798
Mike Christieb3a7ea82007-12-13 12:43:26 -0600799 if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
800 conn->session->state = ISCSI_STATE_LOGGING_OUT;
Mike Christie77a23c22007-05-30 12:57:18 -0500801 spin_unlock_bh(&conn->session->lock);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600802
Mike Christieb5072ea2006-10-16 18:09:42 -0400803 rc = conn->session->tt->xmit_mgmt_task(conn, conn->mtask);
Mike Christie77a23c22007-05-30 12:57:18 -0500804 spin_lock_bh(&conn->session->lock);
Mike Christieb5072ea2006-10-16 18:09:42 -0400805 if (rc)
806 return rc;
807
Mike Christie05db8882007-02-28 17:32:16 -0600808 /* done with this in-progress mtask */
809 conn->mtask = NULL;
Mike Christieb5072ea2006-10-16 18:09:42 -0400810 return 0;
811}
812
Mike Christie77a23c22007-05-30 12:57:18 -0500813static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn)
814{
815 struct iscsi_session *session = conn->session;
816
817 /*
818 * Check for iSCSI window and take care of CmdSN wrap-around
819 */
Mike Christiee0726402007-07-26 12:46:48 -0500820 if (!iscsi_sna_lte(session->queued_cmdsn, session->max_cmdsn)) {
821 debug_scsi("iSCSI CmdSN closed. ExpCmdSn %u MaxCmdSN %u "
822 "CmdSN %u/%u\n", session->exp_cmdsn,
823 session->max_cmdsn, session->cmdsn,
824 session->queued_cmdsn);
Mike Christie77a23c22007-05-30 12:57:18 -0500825 return -ENOSPC;
826 }
827 return 0;
828}
829
830static int iscsi_xmit_ctask(struct iscsi_conn *conn)
831{
832 struct iscsi_cmd_task *ctask = conn->ctask;
Mike Christie843c0a82007-12-13 12:43:20 -0600833 int rc;
Mike Christie77a23c22007-05-30 12:57:18 -0500834
835 __iscsi_get_ctask(ctask);
836 spin_unlock_bh(&conn->session->lock);
837 rc = conn->session->tt->xmit_cmd_task(conn, ctask);
838 spin_lock_bh(&conn->session->lock);
839 __iscsi_put_ctask(ctask);
Mike Christie77a23c22007-05-30 12:57:18 -0500840 if (!rc)
841 /* done with this ctask */
842 conn->ctask = NULL;
843 return rc;
844}
845
Mike Christie7996a772006-04-06 21:13:41 -0500846/**
Mike Christie843c0a82007-12-13 12:43:20 -0600847 * iscsi_requeue_ctask - requeue ctask to run from session workqueue
848 * @ctask: ctask to requeue
849 *
850 * LLDs that need to run a ctask from the session workqueue should call
851 * this. The session lock must be held.
852 */
853void iscsi_requeue_ctask(struct iscsi_cmd_task *ctask)
854{
855 struct iscsi_conn *conn = ctask->conn;
856
857 list_move_tail(&ctask->running, &conn->requeue);
858 scsi_queue_work(conn->session->host, &conn->xmitwork);
859}
860EXPORT_SYMBOL_GPL(iscsi_requeue_ctask);
861
862/**
Mike Christie7996a772006-04-06 21:13:41 -0500863 * iscsi_data_xmit - xmit any command into the scheduled connection
864 * @conn: iscsi connection
865 *
866 * Notes:
867 * The function can return -EAGAIN in which case the caller must
868 * re-schedule it again later or recover. '0' return code means
869 * successful xmit.
870 **/
871static int iscsi_data_xmit(struct iscsi_conn *conn)
872{
Mike Christie3219e522006-05-30 00:37:28 -0500873 int rc = 0;
Mike Christie7996a772006-04-06 21:13:41 -0500874
Mike Christie77a23c22007-05-30 12:57:18 -0500875 spin_lock_bh(&conn->session->lock);
Mike Christie7996a772006-04-06 21:13:41 -0500876 if (unlikely(conn->suspend_tx)) {
877 debug_scsi("conn %d Tx suspended!\n", conn->id);
Mike Christie77a23c22007-05-30 12:57:18 -0500878 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -0500879 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -0500880 }
Mike Christie7996a772006-04-06 21:13:41 -0500881
882 if (conn->ctask) {
Mike Christie77a23c22007-05-30 12:57:18 -0500883 rc = iscsi_xmit_ctask(conn);
Mike Christie3219e522006-05-30 00:37:28 -0500884 if (rc)
Mike Christie7996a772006-04-06 21:13:41 -0500885 goto again;
Mike Christie7996a772006-04-06 21:13:41 -0500886 }
Mike Christie77a23c22007-05-30 12:57:18 -0500887
Mike Christie7996a772006-04-06 21:13:41 -0500888 if (conn->mtask) {
Mike Christie05db8882007-02-28 17:32:16 -0600889 rc = iscsi_xmit_mtask(conn);
Mike Christie3219e522006-05-30 00:37:28 -0500890 if (rc)
Mike Christie7996a772006-04-06 21:13:41 -0500891 goto again;
Mike Christie7996a772006-04-06 21:13:41 -0500892 }
893
Mike Christie77a23c22007-05-30 12:57:18 -0500894 /*
895 * process mgmt pdus like nops before commands since we should
896 * only have one nop-out as a ping from us and targets should not
897 * overflow us with nop-ins
898 */
899check_mgmt:
Mike Christie843c0a82007-12-13 12:43:20 -0600900 while (!list_empty(&conn->mgmtqueue)) {
901 conn->mtask = list_entry(conn->mgmtqueue.next,
902 struct iscsi_mgmt_task, running);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600903 if (conn->session->state == ISCSI_STATE_LOGGING_OUT) {
904 iscsi_free_mgmt_task(conn, conn->mtask);
905 conn->mtask = NULL;
906 continue;
907 }
908
Mike Christie77a23c22007-05-30 12:57:18 -0500909 iscsi_prep_mtask(conn, conn->mtask);
Mike Christie843c0a82007-12-13 12:43:20 -0600910 list_move_tail(conn->mgmtqueue.next, &conn->mgmt_run_list);
Mike Christie77a23c22007-05-30 12:57:18 -0500911 rc = iscsi_xmit_mtask(conn);
912 if (rc)
913 goto again;
Mike Christie7996a772006-04-06 21:13:41 -0500914 }
915
Mike Christie843c0a82007-12-13 12:43:20 -0600916 /* process pending command queue */
Mike Christieb6c395e2006-07-24 15:47:15 -0500917 while (!list_empty(&conn->xmitqueue)) {
Mike Christie843c0a82007-12-13 12:43:20 -0600918 if (conn->tmf_state == TMF_QUEUED)
919 break;
920
Mike Christieb6c395e2006-07-24 15:47:15 -0500921 conn->ctask = list_entry(conn->xmitqueue.next,
922 struct iscsi_cmd_task, running);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600923 if (conn->session->state == ISCSI_STATE_LOGGING_OUT) {
Mike Christie9000bcd2007-12-13 12:43:32 -0600924 fail_command(conn, conn->ctask, DID_IMM_RETRY << 16);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600925 continue;
926 }
Boaz Harrosh004d6532007-12-13 12:43:23 -0600927 if (iscsi_prep_scsi_cmd_pdu(conn->ctask)) {
928 fail_command(conn, conn->ctask, DID_ABORT << 16);
929 continue;
930 }
Olaf Kircha8ac6312007-12-13 12:43:35 -0600931
Mike Christie843c0a82007-12-13 12:43:20 -0600932 conn->ctask->state = ISCSI_TASK_RUNNING;
Mike Christieb6c395e2006-07-24 15:47:15 -0500933 list_move_tail(conn->xmitqueue.next, &conn->run_list);
Mike Christie77a23c22007-05-30 12:57:18 -0500934 rc = iscsi_xmit_ctask(conn);
935 if (rc)
Mike Christie60ecebf2006-08-31 18:09:25 -0400936 goto again;
Mike Christie77a23c22007-05-30 12:57:18 -0500937 /*
938 * we could continuously get new ctask requests so
939 * we need to check the mgmt queue for nops that need to
940 * be sent to aviod starvation
941 */
Mike Christie843c0a82007-12-13 12:43:20 -0600942 if (!list_empty(&conn->mgmtqueue))
943 goto check_mgmt;
944 }
945
946 while (!list_empty(&conn->requeue)) {
947 if (conn->session->fast_abort && conn->tmf_state != TMF_INITIAL)
948 break;
949
Mike Christieb3a7ea82007-12-13 12:43:26 -0600950 /*
951 * we always do fastlogout - conn stop code will clean up.
952 */
953 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
954 break;
955
Mike Christie843c0a82007-12-13 12:43:20 -0600956 conn->ctask = list_entry(conn->requeue.next,
957 struct iscsi_cmd_task, running);
958 conn->ctask->state = ISCSI_TASK_RUNNING;
959 list_move_tail(conn->requeue.next, &conn->run_list);
960 rc = iscsi_xmit_ctask(conn);
961 if (rc)
962 goto again;
963 if (!list_empty(&conn->mgmtqueue))
Mike Christie77a23c22007-05-30 12:57:18 -0500964 goto check_mgmt;
Mike Christie7996a772006-04-06 21:13:41 -0500965 }
Mike Christieb6c395e2006-07-24 15:47:15 -0500966 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -0500967 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -0500968
969again:
970 if (unlikely(conn->suspend_tx))
Mike Christie77a23c22007-05-30 12:57:18 -0500971 rc = -ENODATA;
972 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -0500973 return rc;
Mike Christie7996a772006-04-06 21:13:41 -0500974}
975
David Howellsc4028952006-11-22 14:57:56 +0000976static void iscsi_xmitworker(struct work_struct *work)
Mike Christie7996a772006-04-06 21:13:41 -0500977{
David Howellsc4028952006-11-22 14:57:56 +0000978 struct iscsi_conn *conn =
979 container_of(work, struct iscsi_conn, xmitwork);
Mike Christie3219e522006-05-30 00:37:28 -0500980 int rc;
Mike Christie7996a772006-04-06 21:13:41 -0500981 /*
982 * serialize Xmit worker on a per-connection basis.
983 */
Mike Christie3219e522006-05-30 00:37:28 -0500984 do {
985 rc = iscsi_data_xmit(conn);
986 } while (rc >= 0 || rc == -EAGAIN);
Mike Christie7996a772006-04-06 21:13:41 -0500987}
988
989enum {
990 FAILURE_BAD_HOST = 1,
991 FAILURE_SESSION_FAILED,
992 FAILURE_SESSION_FREED,
993 FAILURE_WINDOW_CLOSED,
Mike Christie60ecebf2006-08-31 18:09:25 -0400994 FAILURE_OOM,
Mike Christie7996a772006-04-06 21:13:41 -0500995 FAILURE_SESSION_TERMINATE,
Mike Christie656cffc2006-05-18 20:31:42 -0500996 FAILURE_SESSION_IN_RECOVERY,
Mike Christie7996a772006-04-06 21:13:41 -0500997 FAILURE_SESSION_RECOVERY_TIMEOUT,
Mike Christieb3a7ea82007-12-13 12:43:26 -0600998 FAILURE_SESSION_LOGGING_OUT,
Mike Christie7996a772006-04-06 21:13:41 -0500999};
1000
1001int iscsi_queuecommand(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))
1002{
1003 struct Scsi_Host *host;
1004 int reason = 0;
1005 struct iscsi_session *session;
1006 struct iscsi_conn *conn;
1007 struct iscsi_cmd_task *ctask = NULL;
1008
1009 sc->scsi_done = done;
1010 sc->result = 0;
Mike Christief47f2cf2006-08-31 18:09:33 -04001011 sc->SCp.ptr = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001012
1013 host = sc->device->host;
Mike Christie1040c992007-12-13 12:43:34 -06001014 spin_unlock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001015
Mike Christie1040c992007-12-13 12:43:34 -06001016 session = iscsi_hostdata(host->hostdata);
Mike Christie7996a772006-04-06 21:13:41 -05001017 spin_lock(&session->lock);
1018
Mike Christie656cffc2006-05-18 20:31:42 -05001019 /*
1020 * ISCSI_STATE_FAILED is a temp. state. The recovery
1021 * code will decide what is best to do with command queued
1022 * during this time
1023 */
1024 if (session->state != ISCSI_STATE_LOGGED_IN &&
1025 session->state != ISCSI_STATE_FAILED) {
1026 /*
1027 * to handle the race between when we set the recovery state
1028 * and block the session we requeue here (commands could
1029 * be entering our queuecommand while a block is starting
1030 * up because the block code is not locked)
1031 */
Mike Christie9000bcd2007-12-13 12:43:32 -06001032 switch (session->state) {
1033 case ISCSI_STATE_IN_RECOVERY:
Mike Christie656cffc2006-05-18 20:31:42 -05001034 reason = FAILURE_SESSION_IN_RECOVERY;
Mike Christie67a61112006-05-30 00:37:20 -05001035 goto reject;
Mike Christie9000bcd2007-12-13 12:43:32 -06001036 case ISCSI_STATE_LOGGING_OUT:
1037 reason = FAILURE_SESSION_LOGGING_OUT;
1038 goto reject;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001039 case ISCSI_STATE_RECOVERY_FAILED:
Mike Christie656cffc2006-05-18 20:31:42 -05001040 reason = FAILURE_SESSION_RECOVERY_TIMEOUT;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001041 break;
1042 case ISCSI_STATE_TERMINATE:
Mike Christie656cffc2006-05-18 20:31:42 -05001043 reason = FAILURE_SESSION_TERMINATE;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001044 break;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001045 default:
Mike Christie656cffc2006-05-18 20:31:42 -05001046 reason = FAILURE_SESSION_FREED;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001047 }
Mike Christie7996a772006-04-06 21:13:41 -05001048 goto fault;
1049 }
1050
Mike Christie7996a772006-04-06 21:13:41 -05001051 conn = session->leadconn;
Mike Christie98644042006-10-16 18:09:39 -04001052 if (!conn) {
1053 reason = FAILURE_SESSION_FREED;
1054 goto fault;
1055 }
Mike Christie7996a772006-04-06 21:13:41 -05001056
Mike Christie77a23c22007-05-30 12:57:18 -05001057 if (iscsi_check_cmdsn_window_closed(conn)) {
1058 reason = FAILURE_WINDOW_CLOSED;
1059 goto reject;
1060 }
1061
Mike Christie60ecebf2006-08-31 18:09:25 -04001062 if (!__kfifo_get(session->cmdpool.queue, (void*)&ctask,
1063 sizeof(void*))) {
1064 reason = FAILURE_OOM;
1065 goto reject;
1066 }
Mike Christiee0726402007-07-26 12:46:48 -05001067 session->queued_cmdsn++;
1068
Mike Christie7996a772006-04-06 21:13:41 -05001069 sc->SCp.phase = session->age;
1070 sc->SCp.ptr = (char *)ctask;
1071
Mike Christie60ecebf2006-08-31 18:09:25 -04001072 atomic_set(&ctask->refcount, 1);
Mike Christieb6c395e2006-07-24 15:47:15 -05001073 ctask->state = ISCSI_TASK_PENDING;
Mike Christie7996a772006-04-06 21:13:41 -05001074 ctask->conn = conn;
1075 ctask->sc = sc;
1076 INIT_LIST_HEAD(&ctask->running);
Mike Christie7996a772006-04-06 21:13:41 -05001077
Mike Christieb6c395e2006-07-24 15:47:15 -05001078 list_add_tail(&ctask->running, &conn->xmitqueue);
Mike Christie7996a772006-04-06 21:13:41 -05001079 spin_unlock(&session->lock);
1080
1081 scsi_queue_work(host, &conn->xmitwork);
Mike Christie1040c992007-12-13 12:43:34 -06001082 spin_lock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001083 return 0;
1084
1085reject:
1086 spin_unlock(&session->lock);
1087 debug_scsi("cmd 0x%x rejected (%d)\n", sc->cmnd[0], reason);
Mike Christie1040c992007-12-13 12:43:34 -06001088 spin_lock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001089 return SCSI_MLQUEUE_HOST_BUSY;
1090
1091fault:
1092 spin_unlock(&session->lock);
Or Gerlitzbe2df722006-05-02 19:46:43 -05001093 printk(KERN_ERR "iscsi: cmd 0x%x is not queued (%d)\n",
Mike Christie7996a772006-04-06 21:13:41 -05001094 sc->cmnd[0], reason);
1095 sc->result = (DID_NO_CONNECT << 16);
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001096 scsi_set_resid(sc, scsi_bufflen(sc));
Mike Christie7996a772006-04-06 21:13:41 -05001097 sc->scsi_done(sc);
Mike Christie1040c992007-12-13 12:43:34 -06001098 spin_lock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001099 return 0;
1100}
1101EXPORT_SYMBOL_GPL(iscsi_queuecommand);
1102
1103int iscsi_change_queue_depth(struct scsi_device *sdev, int depth)
1104{
1105 if (depth > ISCSI_MAX_CMD_PER_LUN)
1106 depth = ISCSI_MAX_CMD_PER_LUN;
1107 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
1108 return sdev->queue_depth;
1109}
1110EXPORT_SYMBOL_GPL(iscsi_change_queue_depth);
1111
Mike Christie7996a772006-04-06 21:13:41 -05001112void iscsi_session_recovery_timedout(struct iscsi_cls_session *cls_session)
1113{
1114 struct iscsi_session *session = class_to_transport_session(cls_session);
Mike Christie7996a772006-04-06 21:13:41 -05001115
1116 spin_lock_bh(&session->lock);
1117 if (session->state != ISCSI_STATE_LOGGED_IN) {
Mike Christie656cffc2006-05-18 20:31:42 -05001118 session->state = ISCSI_STATE_RECOVERY_FAILED;
Mike Christie843c0a82007-12-13 12:43:20 -06001119 if (session->leadconn)
1120 wake_up(&session->leadconn->ehwait);
Mike Christie7996a772006-04-06 21:13:41 -05001121 }
1122 spin_unlock_bh(&session->lock);
1123}
1124EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout);
1125
1126int iscsi_eh_host_reset(struct scsi_cmnd *sc)
1127{
1128 struct Scsi_Host *host = sc->device->host;
1129 struct iscsi_session *session = iscsi_hostdata(host->hostdata);
1130 struct iscsi_conn *conn = session->leadconn;
Mike Christie7996a772006-04-06 21:13:41 -05001131
Mike Christiebc436b22007-12-13 12:43:28 -06001132 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001133 spin_lock_bh(&session->lock);
1134 if (session->state == ISCSI_STATE_TERMINATE) {
1135failed:
1136 debug_scsi("failing host reset: session terminated "
Pete Wyckoffd6e24d12006-11-08 15:58:32 -06001137 "[CID %d age %d]\n", conn->id, session->age);
Mike Christie7996a772006-04-06 21:13:41 -05001138 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001139 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001140 return FAILED;
1141 }
1142
Mike Christie7996a772006-04-06 21:13:41 -05001143 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001144 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001145 /*
1146 * we drop the lock here but the leadconn cannot be destoyed while
1147 * we are in the scsi eh
1148 */
Mike Christie843c0a82007-12-13 12:43:20 -06001149 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Mike Christie7996a772006-04-06 21:13:41 -05001150
1151 debug_scsi("iscsi_eh_host_reset wait for relogin\n");
1152 wait_event_interruptible(conn->ehwait,
1153 session->state == ISCSI_STATE_TERMINATE ||
1154 session->state == ISCSI_STATE_LOGGED_IN ||
Mike Christie656cffc2006-05-18 20:31:42 -05001155 session->state == ISCSI_STATE_RECOVERY_FAILED);
Mike Christie7996a772006-04-06 21:13:41 -05001156 if (signal_pending(current))
1157 flush_signals(current);
1158
Mike Christiebc436b22007-12-13 12:43:28 -06001159 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001160 spin_lock_bh(&session->lock);
1161 if (session->state == ISCSI_STATE_LOGGED_IN)
Or Gerlitzbe2df722006-05-02 19:46:43 -05001162 printk(KERN_INFO "iscsi: host reset succeeded\n");
Mike Christie7996a772006-04-06 21:13:41 -05001163 else
1164 goto failed;
1165 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001166 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001167 return SUCCESS;
1168}
1169EXPORT_SYMBOL_GPL(iscsi_eh_host_reset);
1170
Mike Christie843c0a82007-12-13 12:43:20 -06001171static void iscsi_tmf_timedout(unsigned long data)
Mike Christie7996a772006-04-06 21:13:41 -05001172{
Mike Christie843c0a82007-12-13 12:43:20 -06001173 struct iscsi_conn *conn = (struct iscsi_conn *)data;
Mike Christie7996a772006-04-06 21:13:41 -05001174 struct iscsi_session *session = conn->session;
1175
1176 spin_lock(&session->lock);
Mike Christie843c0a82007-12-13 12:43:20 -06001177 if (conn->tmf_state == TMF_QUEUED) {
1178 conn->tmf_state = TMF_TIMEDOUT;
1179 debug_scsi("tmf timedout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001180 /* unblock eh_abort() */
1181 wake_up(&conn->ehwait);
1182 }
1183 spin_unlock(&session->lock);
1184}
1185
Mike Christie843c0a82007-12-13 12:43:20 -06001186static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn,
Mike Christief6d51802007-12-13 12:43:30 -06001187 struct iscsi_tm *hdr, int age,
1188 int timeout)
Mike Christie7996a772006-04-06 21:13:41 -05001189{
Mike Christie7996a772006-04-06 21:13:41 -05001190 struct iscsi_session *session = conn->session;
Mike Christie843c0a82007-12-13 12:43:20 -06001191 struct iscsi_mgmt_task *mtask;
Mike Christie7996a772006-04-06 21:13:41 -05001192
Mike Christie843c0a82007-12-13 12:43:20 -06001193 mtask = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr,
1194 NULL, 0);
1195 if (!mtask) {
Mike Christie6724add2007-08-15 01:38:30 -05001196 spin_unlock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05001197 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Mike Christie843c0a82007-12-13 12:43:20 -06001198 spin_lock_bh(&session->lock);
1199 debug_scsi("tmf exec failure\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001200 return -EPERM;
Mike Christie7996a772006-04-06 21:13:41 -05001201 }
Mike Christie843c0a82007-12-13 12:43:20 -06001202 conn->tmfcmd_pdus_cnt++;
Mike Christief6d51802007-12-13 12:43:30 -06001203 conn->tmf_timer.expires = timeout * HZ + jiffies;
Mike Christie843c0a82007-12-13 12:43:20 -06001204 conn->tmf_timer.function = iscsi_tmf_timedout;
1205 conn->tmf_timer.data = (unsigned long)conn;
1206 add_timer(&conn->tmf_timer);
1207 debug_scsi("tmf set timeout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001208
Mike Christie7996a772006-04-06 21:13:41 -05001209 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05001210 mutex_unlock(&session->eh_mutex);
Mike Christie77a23c22007-05-30 12:57:18 -05001211 scsi_queue_work(session->host, &conn->xmitwork);
Mike Christie7996a772006-04-06 21:13:41 -05001212
1213 /*
1214 * block eh thread until:
1215 *
Mike Christie843c0a82007-12-13 12:43:20 -06001216 * 1) tmf response
1217 * 2) tmf timeout
Mike Christie7996a772006-04-06 21:13:41 -05001218 * 3) session is terminated or restarted or userspace has
1219 * given up on recovery
1220 */
Mike Christie843c0a82007-12-13 12:43:20 -06001221 wait_event_interruptible(conn->ehwait, age != session->age ||
Mike Christie7996a772006-04-06 21:13:41 -05001222 session->state != ISCSI_STATE_LOGGED_IN ||
Mike Christie843c0a82007-12-13 12:43:20 -06001223 conn->tmf_state != TMF_QUEUED);
Mike Christie7996a772006-04-06 21:13:41 -05001224 if (signal_pending(current))
1225 flush_signals(current);
Mike Christie843c0a82007-12-13 12:43:20 -06001226 del_timer_sync(&conn->tmf_timer);
1227
Mike Christie6724add2007-08-15 01:38:30 -05001228 mutex_lock(&session->eh_mutex);
Mike Christie77a23c22007-05-30 12:57:18 -05001229 spin_lock_bh(&session->lock);
Mike Christie843c0a82007-12-13 12:43:20 -06001230 /* if the session drops it will clean up the mtask */
1231 if (age != session->age ||
1232 session->state != ISCSI_STATE_LOGGED_IN)
1233 return -ENOTCONN;
Mike Christie7996a772006-04-06 21:13:41 -05001234 return 0;
1235}
1236
1237/*
Mike Christie843c0a82007-12-13 12:43:20 -06001238 * Fail commands. session lock held and recv side suspended and xmit
1239 * thread flushed
1240 */
1241static void fail_all_commands(struct iscsi_conn *conn, unsigned lun)
1242{
1243 struct iscsi_cmd_task *ctask, *tmp;
1244
1245 if (conn->ctask && (conn->ctask->sc->device->lun == lun || lun == -1))
1246 conn->ctask = NULL;
1247
1248 /* flush pending */
1249 list_for_each_entry_safe(ctask, tmp, &conn->xmitqueue, running) {
1250 if (lun == ctask->sc->device->lun || lun == -1) {
1251 debug_scsi("failing pending sc %p itt 0x%x\n",
1252 ctask->sc, ctask->itt);
1253 fail_command(conn, ctask, DID_BUS_BUSY << 16);
1254 }
1255 }
1256
1257 list_for_each_entry_safe(ctask, tmp, &conn->requeue, running) {
1258 if (lun == ctask->sc->device->lun || lun == -1) {
1259 debug_scsi("failing requeued sc %p itt 0x%x\n",
1260 ctask->sc, ctask->itt);
1261 fail_command(conn, ctask, DID_BUS_BUSY << 16);
1262 }
1263 }
1264
1265 /* fail all other running */
1266 list_for_each_entry_safe(ctask, tmp, &conn->run_list, running) {
1267 if (lun == ctask->sc->device->lun || lun == -1) {
1268 debug_scsi("failing in progress sc %p itt 0x%x\n",
1269 ctask->sc, ctask->itt);
1270 fail_command(conn, ctask, DID_BUS_BUSY << 16);
1271 }
1272 }
1273}
1274
Mike Christie6724add2007-08-15 01:38:30 -05001275static void iscsi_suspend_tx(struct iscsi_conn *conn)
1276{
1277 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1278 scsi_flush_work(conn->session->host);
1279}
1280
1281static void iscsi_start_tx(struct iscsi_conn *conn)
1282{
1283 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1284 scsi_queue_work(conn->session->host, &conn->xmitwork);
1285}
1286
Mike Christief6d51802007-12-13 12:43:30 -06001287static enum scsi_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *scmd)
1288{
1289 struct iscsi_cls_session *cls_session;
1290 struct iscsi_session *session;
1291 struct iscsi_conn *conn;
1292 enum scsi_eh_timer_return rc = EH_NOT_HANDLED;
1293
1294 cls_session = starget_to_session(scsi_target(scmd->device));
1295 session = class_to_transport_session(cls_session);
1296
1297 debug_scsi("scsi cmd %p timedout\n", scmd);
1298
1299 spin_lock(&session->lock);
1300 if (session->state != ISCSI_STATE_LOGGED_IN) {
1301 /*
1302 * We are probably in the middle of iscsi recovery so let
1303 * that complete and handle the error.
1304 */
1305 rc = EH_RESET_TIMER;
1306 goto done;
1307 }
1308
1309 conn = session->leadconn;
1310 if (!conn) {
1311 /* In the middle of shuting down */
1312 rc = EH_RESET_TIMER;
1313 goto done;
1314 }
1315
1316 if (!conn->recv_timeout && !conn->ping_timeout)
1317 goto done;
1318 /*
1319 * if the ping timedout then we are in the middle of cleaning up
1320 * and can let the iscsi eh handle it
1321 */
1322 if (time_before_eq(conn->last_recv + (conn->recv_timeout * HZ) +
1323 (conn->ping_timeout * HZ), jiffies))
1324 rc = EH_RESET_TIMER;
1325 /*
1326 * if we are about to check the transport then give the command
1327 * more time
1328 */
1329 if (time_before_eq(conn->last_recv + (conn->recv_timeout * HZ),
1330 jiffies))
1331 rc = EH_RESET_TIMER;
1332 /* if in the middle of checking the transport then give us more time */
1333 if (conn->ping_mtask)
1334 rc = EH_RESET_TIMER;
1335done:
1336 spin_unlock(&session->lock);
1337 debug_scsi("return %s\n", rc == EH_RESET_TIMER ? "timer reset" : "nh");
1338 return rc;
1339}
1340
1341static void iscsi_check_transport_timeouts(unsigned long data)
1342{
1343 struct iscsi_conn *conn = (struct iscsi_conn *)data;
1344 struct iscsi_session *session = conn->session;
1345 unsigned long timeout, next_timeout = 0, last_recv;
1346
1347 spin_lock(&session->lock);
1348 if (session->state != ISCSI_STATE_LOGGED_IN)
1349 goto done;
1350
1351 timeout = conn->recv_timeout;
1352 if (!timeout)
1353 goto done;
1354
1355 timeout *= HZ;
1356 last_recv = conn->last_recv;
1357 if (time_before_eq(last_recv + timeout + (conn->ping_timeout * HZ),
1358 jiffies)) {
1359 printk(KERN_ERR "ping timeout of %d secs expired, "
1360 "last rx %lu, last ping %lu, now %lu\n",
1361 conn->ping_timeout, last_recv,
1362 conn->last_ping, jiffies);
1363 spin_unlock(&session->lock);
1364 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1365 return;
1366 }
1367
1368 if (time_before_eq(last_recv + timeout, jiffies)) {
1369 if (time_before_eq(conn->last_ping, last_recv)) {
1370 /* send a ping to try to provoke some traffic */
1371 debug_scsi("Sending nopout as ping on conn %p\n", conn);
1372 iscsi_send_nopout(conn, NULL);
1373 }
1374 next_timeout = last_recv + timeout + (conn->ping_timeout * HZ);
1375 } else {
1376 next_timeout = last_recv + timeout;
1377 }
1378
1379 if (next_timeout) {
1380 debug_scsi("Setting next tmo %lu\n", next_timeout);
1381 mod_timer(&conn->transport_timer, next_timeout);
1382 }
1383done:
1384 spin_unlock(&session->lock);
1385}
1386
Mike Christie843c0a82007-12-13 12:43:20 -06001387static void iscsi_prep_abort_task_pdu(struct iscsi_cmd_task *ctask,
1388 struct iscsi_tm *hdr)
1389{
1390 memset(hdr, 0, sizeof(*hdr));
1391 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
1392 hdr->flags = ISCSI_TM_FUNC_ABORT_TASK & ISCSI_FLAG_TM_FUNC_MASK;
1393 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
1394 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1395 hdr->rtt = ctask->hdr->itt;
1396 hdr->refcmdsn = ctask->hdr->cmdsn;
1397}
1398
Mike Christie7996a772006-04-06 21:13:41 -05001399int iscsi_eh_abort(struct scsi_cmnd *sc)
1400{
Mike Christie6724add2007-08-15 01:38:30 -05001401 struct Scsi_Host *host = sc->device->host;
1402 struct iscsi_session *session = iscsi_hostdata(host->hostdata);
Mike Christief47f2cf2006-08-31 18:09:33 -04001403 struct iscsi_conn *conn;
Mike Christie843c0a82007-12-13 12:43:20 -06001404 struct iscsi_cmd_task *ctask;
1405 struct iscsi_tm *hdr;
1406 int rc, age;
Mike Christie7996a772006-04-06 21:13:41 -05001407
Mike Christie6724add2007-08-15 01:38:30 -05001408 mutex_lock(&session->eh_mutex);
1409 spin_lock_bh(&session->lock);
Mike Christief47f2cf2006-08-31 18:09:33 -04001410 /*
1411 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
1412 * got the command.
1413 */
1414 if (!sc->SCp.ptr) {
1415 debug_scsi("sc never reached iscsi layer or it completed.\n");
Mike Christie6724add2007-08-15 01:38:30 -05001416 spin_unlock_bh(&session->lock);
1417 mutex_unlock(&session->eh_mutex);
Mike Christief47f2cf2006-08-31 18:09:33 -04001418 return SUCCESS;
1419 }
1420
Mike Christie7996a772006-04-06 21:13:41 -05001421 /*
1422 * If we are not logged in or we have started a new session
1423 * then let the host reset code handle this
1424 */
Mike Christie843c0a82007-12-13 12:43:20 -06001425 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN ||
1426 sc->SCp.phase != session->age) {
1427 spin_unlock_bh(&session->lock);
1428 mutex_unlock(&session->eh_mutex);
1429 return FAILED;
1430 }
1431
1432 conn = session->leadconn;
1433 conn->eh_abort_cnt++;
1434 age = session->age;
1435
1436 ctask = (struct iscsi_cmd_task *)sc->SCp.ptr;
1437 debug_scsi("aborting [sc %p itt 0x%x]\n", sc, ctask->itt);
Mike Christie7996a772006-04-06 21:13:41 -05001438
1439 /* ctask completed before time out */
Mike Christie7ea8b822006-07-24 15:47:22 -05001440 if (!ctask->sc) {
Mike Christie7ea8b822006-07-24 15:47:22 -05001441 debug_scsi("sc completed while abort in progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001442 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05001443 }
Mike Christie7996a772006-04-06 21:13:41 -05001444
Mike Christie77a23c22007-05-30 12:57:18 -05001445 if (ctask->state == ISCSI_TASK_PENDING) {
1446 fail_command(conn, ctask, DID_ABORT << 16);
1447 goto success;
1448 }
Mike Christie7996a772006-04-06 21:13:41 -05001449
Mike Christie843c0a82007-12-13 12:43:20 -06001450 /* only have one tmf outstanding at a time */
1451 if (conn->tmf_state != TMF_INITIAL)
Mike Christie7996a772006-04-06 21:13:41 -05001452 goto failed;
Mike Christie843c0a82007-12-13 12:43:20 -06001453 conn->tmf_state = TMF_QUEUED;
Mike Christie7996a772006-04-06 21:13:41 -05001454
Mike Christie843c0a82007-12-13 12:43:20 -06001455 hdr = &conn->tmhdr;
1456 iscsi_prep_abort_task_pdu(ctask, hdr);
1457
Mike Christief6d51802007-12-13 12:43:30 -06001458 if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06001459 rc = FAILED;
1460 goto failed;
1461 }
1462
1463 switch (conn->tmf_state) {
1464 case TMF_SUCCESS:
Mike Christie77a23c22007-05-30 12:57:18 -05001465 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05001466 iscsi_suspend_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001467 /*
1468 * clean up task if aborted. grab the recv lock as a writer
1469 */
1470 write_lock_bh(conn->recv_lock);
1471 spin_lock(&session->lock);
1472 fail_command(conn, ctask, DID_ABORT << 16);
Mike Christie843c0a82007-12-13 12:43:20 -06001473 conn->tmf_state = TMF_INITIAL;
Mike Christie77a23c22007-05-30 12:57:18 -05001474 spin_unlock(&session->lock);
1475 write_unlock_bh(conn->recv_lock);
Mike Christie6724add2007-08-15 01:38:30 -05001476 iscsi_start_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001477 goto success_unlocked;
Mike Christie843c0a82007-12-13 12:43:20 -06001478 case TMF_TIMEDOUT:
1479 spin_unlock_bh(&session->lock);
1480 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1481 goto failed_unlocked;
1482 case TMF_NOT_FOUND:
1483 if (!sc->SCp.ptr) {
1484 conn->tmf_state = TMF_INITIAL;
Mike Christie7ea8b822006-07-24 15:47:22 -05001485 /* ctask completed before tmf abort response */
Mike Christie7ea8b822006-07-24 15:47:22 -05001486 debug_scsi("sc completed while abort in progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001487 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05001488 }
1489 /* fall through */
1490 default:
Mike Christie843c0a82007-12-13 12:43:20 -06001491 conn->tmf_state = TMF_INITIAL;
1492 goto failed;
Mike Christie7996a772006-04-06 21:13:41 -05001493 }
1494
Mike Christie77a23c22007-05-30 12:57:18 -05001495success:
Mike Christie7996a772006-04-06 21:13:41 -05001496 spin_unlock_bh(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -05001497success_unlocked:
1498 debug_scsi("abort success [sc %lx itt 0x%x]\n", (long)sc, ctask->itt);
Mike Christie6724add2007-08-15 01:38:30 -05001499 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001500 return SUCCESS;
1501
1502failed:
1503 spin_unlock_bh(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -05001504failed_unlocked:
Mike Christie843c0a82007-12-13 12:43:20 -06001505 debug_scsi("abort failed [sc %p itt 0x%x]\n", sc,
1506 ctask ? ctask->itt : 0);
Mike Christie6724add2007-08-15 01:38:30 -05001507 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001508 return FAILED;
1509}
1510EXPORT_SYMBOL_GPL(iscsi_eh_abort);
1511
Mike Christie843c0a82007-12-13 12:43:20 -06001512static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
1513{
1514 memset(hdr, 0, sizeof(*hdr));
1515 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
1516 hdr->flags = ISCSI_TM_FUNC_LOGICAL_UNIT_RESET & ISCSI_FLAG_TM_FUNC_MASK;
1517 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
1518 int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun);
Mike Christief6d51802007-12-13 12:43:30 -06001519 hdr->rtt = RESERVED_ITT;
Mike Christie843c0a82007-12-13 12:43:20 -06001520}
1521
1522int iscsi_eh_device_reset(struct scsi_cmnd *sc)
1523{
1524 struct Scsi_Host *host = sc->device->host;
1525 struct iscsi_session *session = iscsi_hostdata(host->hostdata);
1526 struct iscsi_conn *conn;
1527 struct iscsi_tm *hdr;
1528 int rc = FAILED;
1529
1530 debug_scsi("LU Reset [sc %p lun %u]\n", sc, sc->device->lun);
1531
1532 mutex_lock(&session->eh_mutex);
1533 spin_lock_bh(&session->lock);
1534 /*
1535 * Just check if we are not logged in. We cannot check for
1536 * the phase because the reset could come from a ioctl.
1537 */
1538 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
1539 goto unlock;
1540 conn = session->leadconn;
1541
1542 /* only have one tmf outstanding at a time */
1543 if (conn->tmf_state != TMF_INITIAL)
1544 goto unlock;
1545 conn->tmf_state = TMF_QUEUED;
1546
1547 hdr = &conn->tmhdr;
1548 iscsi_prep_lun_reset_pdu(sc, hdr);
1549
Mike Christief6d51802007-12-13 12:43:30 -06001550 if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
1551 session->lu_reset_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06001552 rc = FAILED;
1553 goto unlock;
1554 }
1555
1556 switch (conn->tmf_state) {
1557 case TMF_SUCCESS:
1558 break;
1559 case TMF_TIMEDOUT:
1560 spin_unlock_bh(&session->lock);
1561 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1562 goto done;
1563 default:
1564 conn->tmf_state = TMF_INITIAL;
1565 goto unlock;
1566 }
1567
1568 rc = SUCCESS;
1569 spin_unlock_bh(&session->lock);
1570
1571 iscsi_suspend_tx(conn);
1572 /* need to grab the recv lock then session lock */
1573 write_lock_bh(conn->recv_lock);
1574 spin_lock(&session->lock);
1575 fail_all_commands(conn, sc->device->lun);
1576 conn->tmf_state = TMF_INITIAL;
1577 spin_unlock(&session->lock);
1578 write_unlock_bh(conn->recv_lock);
1579
1580 iscsi_start_tx(conn);
1581 goto done;
1582
1583unlock:
1584 spin_unlock_bh(&session->lock);
1585done:
1586 debug_scsi("iscsi_eh_device_reset %s\n",
1587 rc == SUCCESS ? "SUCCESS" : "FAILED");
1588 mutex_unlock(&session->eh_mutex);
1589 return rc;
1590}
1591EXPORT_SYMBOL_GPL(iscsi_eh_device_reset);
1592
Olaf Kirch63203772007-12-13 12:43:25 -06001593/*
1594 * Pre-allocate a pool of @max items of @item_size. By default, the pool
1595 * should be accessed via kfifo_{get,put} on q->queue.
1596 * Optionally, the caller can obtain the array of object pointers
1597 * by passing in a non-NULL @items pointer
1598 */
Mike Christie7996a772006-04-06 21:13:41 -05001599int
Olaf Kirch63203772007-12-13 12:43:25 -06001600iscsi_pool_init(struct iscsi_pool *q, int max, void ***items, int item_size)
Mike Christie7996a772006-04-06 21:13:41 -05001601{
Olaf Kirch63203772007-12-13 12:43:25 -06001602 int i, num_arrays = 1;
Mike Christie7996a772006-04-06 21:13:41 -05001603
Olaf Kirch63203772007-12-13 12:43:25 -06001604 memset(q, 0, sizeof(*q));
Mike Christie7996a772006-04-06 21:13:41 -05001605
1606 q->max = max;
Olaf Kirch63203772007-12-13 12:43:25 -06001607
1608 /* If the user passed an items pointer, he wants a copy of
1609 * the array. */
1610 if (items)
1611 num_arrays++;
1612 q->pool = kzalloc(num_arrays * max * sizeof(void*), GFP_KERNEL);
1613 if (q->pool == NULL)
1614 goto enomem;
Mike Christie7996a772006-04-06 21:13:41 -05001615
1616 q->queue = kfifo_init((void*)q->pool, max * sizeof(void*),
1617 GFP_KERNEL, NULL);
Olaf Kirch63203772007-12-13 12:43:25 -06001618 if (q->queue == ERR_PTR(-ENOMEM))
1619 goto enomem;
Mike Christie7996a772006-04-06 21:13:41 -05001620
1621 for (i = 0; i < max; i++) {
Olaf Kirch63203772007-12-13 12:43:25 -06001622 q->pool[i] = kzalloc(item_size, GFP_KERNEL);
Mike Christie7996a772006-04-06 21:13:41 -05001623 if (q->pool[i] == NULL) {
Olaf Kirch63203772007-12-13 12:43:25 -06001624 q->max = i;
1625 goto enomem;
Mike Christie7996a772006-04-06 21:13:41 -05001626 }
Mike Christie7996a772006-04-06 21:13:41 -05001627 __kfifo_put(q->queue, (void*)&q->pool[i], sizeof(void*));
1628 }
Olaf Kirch63203772007-12-13 12:43:25 -06001629
1630 if (items) {
1631 *items = q->pool + max;
1632 memcpy(*items, q->pool, max * sizeof(void *));
1633 }
1634
Mike Christie7996a772006-04-06 21:13:41 -05001635 return 0;
Olaf Kirch63203772007-12-13 12:43:25 -06001636
1637enomem:
1638 iscsi_pool_free(q);
1639 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05001640}
1641EXPORT_SYMBOL_GPL(iscsi_pool_init);
1642
Olaf Kirch63203772007-12-13 12:43:25 -06001643void iscsi_pool_free(struct iscsi_pool *q)
Mike Christie7996a772006-04-06 21:13:41 -05001644{
1645 int i;
1646
1647 for (i = 0; i < q->max; i++)
Olaf Kirch63203772007-12-13 12:43:25 -06001648 kfree(q->pool[i]);
1649 if (q->pool)
1650 kfree(q->pool);
Mike Christie7996a772006-04-06 21:13:41 -05001651}
1652EXPORT_SYMBOL_GPL(iscsi_pool_free);
1653
1654/*
1655 * iSCSI Session's hostdata organization:
1656 *
1657 * *------------------* <== hostdata_session(host->hostdata)
1658 * | ptr to class sess|
1659 * |------------------| <== iscsi_hostdata(host->hostdata)
1660 * | iscsi_session |
1661 * *------------------*
1662 */
1663
1664#define hostdata_privsize(_sz) (sizeof(unsigned long) + _sz + \
1665 _sz % sizeof(unsigned long))
1666
1667#define hostdata_session(_hostdata) (iscsi_ptr(*(unsigned long *)_hostdata))
1668
1669/**
1670 * iscsi_session_setup - create iscsi cls session and host and session
1671 * @scsit: scsi transport template
1672 * @iscsit: iscsi transport template
Mike Christie15482712007-05-30 12:57:19 -05001673 * @cmds_max: scsi host can queue
1674 * @qdepth: scsi host cmds per lun
1675 * @cmd_task_size: LLD ctask private data size
1676 * @mgmt_task_size: LLD mtask private data size
Mike Christie7996a772006-04-06 21:13:41 -05001677 * @initial_cmdsn: initial CmdSN
1678 * @hostno: host no allocated
1679 *
1680 * This can be used by software iscsi_transports that allocate
1681 * a session per scsi host.
1682 **/
1683struct iscsi_cls_session *
1684iscsi_session_setup(struct iscsi_transport *iscsit,
1685 struct scsi_transport_template *scsit,
Mike Christie15482712007-05-30 12:57:19 -05001686 uint16_t cmds_max, uint16_t qdepth,
Mike Christie7996a772006-04-06 21:13:41 -05001687 int cmd_task_size, int mgmt_task_size,
1688 uint32_t initial_cmdsn, uint32_t *hostno)
1689{
1690 struct Scsi_Host *shost;
1691 struct iscsi_session *session;
1692 struct iscsi_cls_session *cls_session;
1693 int cmd_i;
1694
Mike Christie15482712007-05-30 12:57:19 -05001695 if (qdepth > ISCSI_MAX_CMD_PER_LUN || qdepth < 1) {
1696 if (qdepth != 0)
1697 printk(KERN_ERR "iscsi: invalid queue depth of %d. "
1698 "Queue depth must be between 1 and %d.\n",
1699 qdepth, ISCSI_MAX_CMD_PER_LUN);
1700 qdepth = ISCSI_DEF_CMD_PER_LUN;
1701 }
1702
vignesh babu11836572007-12-13 12:43:41 -06001703 if (!is_power_of_2(cmds_max) ||
Mike Christie15482712007-05-30 12:57:19 -05001704 cmds_max >= ISCSI_MGMT_ITT_OFFSET) {
1705 if (cmds_max != 0)
1706 printk(KERN_ERR "iscsi: invalid can_queue of %d. "
1707 "can_queue must be a power of 2 and between "
1708 "2 and %d - setting to %d.\n", cmds_max,
1709 ISCSI_MGMT_ITT_OFFSET, ISCSI_DEF_XMIT_CMDS_MAX);
1710 cmds_max = ISCSI_DEF_XMIT_CMDS_MAX;
1711 }
1712
Mike Christie7996a772006-04-06 21:13:41 -05001713 shost = scsi_host_alloc(iscsit->host_template,
1714 hostdata_privsize(sizeof(*session)));
1715 if (!shost)
1716 return NULL;
1717
Mike Christie15482712007-05-30 12:57:19 -05001718 /* the iscsi layer takes one task for reserve */
1719 shost->can_queue = cmds_max - 1;
1720 shost->cmd_per_lun = qdepth;
Mike Christie7996a772006-04-06 21:13:41 -05001721 shost->max_id = 1;
1722 shost->max_channel = 0;
1723 shost->max_lun = iscsit->max_lun;
1724 shost->max_cmd_len = iscsit->max_cmd_len;
1725 shost->transportt = scsit;
1726 shost->transportt->create_work_queue = 1;
Mike Christief6d51802007-12-13 12:43:30 -06001727 shost->transportt->eh_timed_out = iscsi_eh_cmd_timed_out;
Mike Christie7996a772006-04-06 21:13:41 -05001728 *hostno = shost->host_no;
1729
1730 session = iscsi_hostdata(shost->hostdata);
1731 memset(session, 0, sizeof(struct iscsi_session));
1732 session->host = shost;
1733 session->state = ISCSI_STATE_FREE;
Mike Christief6d51802007-12-13 12:43:30 -06001734 session->fast_abort = 1;
Mike Christie4cd49ea2007-12-13 12:43:38 -06001735 session->lu_reset_timeout = 15;
1736 session->abort_timeout = 10;
Mike Christie7996a772006-04-06 21:13:41 -05001737 session->mgmtpool_max = ISCSI_MGMT_CMDS_MAX;
Mike Christie15482712007-05-30 12:57:19 -05001738 session->cmds_max = cmds_max;
Mike Christiee0726402007-07-26 12:46:48 -05001739 session->queued_cmdsn = session->cmdsn = initial_cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05001740 session->exp_cmdsn = initial_cmdsn + 1;
1741 session->max_cmdsn = initial_cmdsn + 1;
1742 session->max_r2t = 1;
1743 session->tt = iscsit;
Mike Christie6724add2007-08-15 01:38:30 -05001744 mutex_init(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001745
1746 /* initialize SCSI PDU commands pool */
1747 if (iscsi_pool_init(&session->cmdpool, session->cmds_max,
1748 (void***)&session->cmds,
1749 cmd_task_size + sizeof(struct iscsi_cmd_task)))
1750 goto cmdpool_alloc_fail;
1751
1752 /* pre-format cmds pool with ITT */
1753 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1754 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
1755
1756 if (cmd_task_size)
1757 ctask->dd_data = &ctask[1];
1758 ctask->itt = cmd_i;
Mike Christieb6c395e2006-07-24 15:47:15 -05001759 INIT_LIST_HEAD(&ctask->running);
Mike Christie7996a772006-04-06 21:13:41 -05001760 }
1761
1762 spin_lock_init(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05001763
1764 /* initialize immediate command pool */
1765 if (iscsi_pool_init(&session->mgmtpool, session->mgmtpool_max,
1766 (void***)&session->mgmt_cmds,
1767 mgmt_task_size + sizeof(struct iscsi_mgmt_task)))
1768 goto mgmtpool_alloc_fail;
1769
1770
1771 /* pre-format immediate cmds pool with ITT */
1772 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
1773 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
1774
1775 if (mgmt_task_size)
1776 mtask->dd_data = &mtask[1];
1777 mtask->itt = ISCSI_MGMT_ITT_OFFSET + cmd_i;
Mike Christieb6c395e2006-07-24 15:47:15 -05001778 INIT_LIST_HEAD(&mtask->running);
Mike Christie7996a772006-04-06 21:13:41 -05001779 }
1780
1781 if (scsi_add_host(shost, NULL))
1782 goto add_host_fail;
1783
Mike Christief53a88d2006-06-28 12:00:27 -05001784 if (!try_module_get(iscsit->owner))
1785 goto cls_session_fail;
1786
Mike Christie6a8a0d32006-06-28 12:00:31 -05001787 cls_session = iscsi_create_session(shost, iscsit, 0);
Mike Christie7996a772006-04-06 21:13:41 -05001788 if (!cls_session)
Mike Christief53a88d2006-06-28 12:00:27 -05001789 goto module_put;
Mike Christie7996a772006-04-06 21:13:41 -05001790 *(unsigned long*)shost->hostdata = (unsigned long)cls_session;
1791
1792 return cls_session;
1793
Mike Christief53a88d2006-06-28 12:00:27 -05001794module_put:
1795 module_put(iscsit->owner);
Mike Christie7996a772006-04-06 21:13:41 -05001796cls_session_fail:
1797 scsi_remove_host(shost);
1798add_host_fail:
Olaf Kirch63203772007-12-13 12:43:25 -06001799 iscsi_pool_free(&session->mgmtpool);
Mike Christie7996a772006-04-06 21:13:41 -05001800mgmtpool_alloc_fail:
Olaf Kirch63203772007-12-13 12:43:25 -06001801 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05001802cmdpool_alloc_fail:
1803 scsi_host_put(shost);
1804 return NULL;
1805}
1806EXPORT_SYMBOL_GPL(iscsi_session_setup);
1807
1808/**
1809 * iscsi_session_teardown - destroy session, host, and cls_session
1810 * shost: scsi host
1811 *
1812 * This can be used by software iscsi_transports that allocate
1813 * a session per scsi host.
1814 **/
1815void iscsi_session_teardown(struct iscsi_cls_session *cls_session)
1816{
1817 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
1818 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
Mike Christie63f75cc2006-07-24 15:47:29 -05001819 struct module *owner = cls_session->transport->owner;
Mike Christie7996a772006-04-06 21:13:41 -05001820
Mike Christie26974782007-12-13 12:43:29 -06001821 iscsi_remove_session(cls_session);
Mike Christie7996a772006-04-06 21:13:41 -05001822 scsi_remove_host(shost);
1823
Olaf Kirch63203772007-12-13 12:43:25 -06001824 iscsi_pool_free(&session->mgmtpool);
1825 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05001826
Mike Christieb2c64162007-05-30 12:57:16 -05001827 kfree(session->password);
1828 kfree(session->password_in);
1829 kfree(session->username);
1830 kfree(session->username_in);
Mike Christief3ff0c32006-07-24 15:47:50 -05001831 kfree(session->targetname);
Mike Christied8196ed2007-05-30 12:57:25 -05001832 kfree(session->netdev);
Mike Christie0801c242007-05-30 12:57:12 -05001833 kfree(session->hwaddress);
Mike Christie8ad57812007-05-30 12:57:13 -05001834 kfree(session->initiatorname);
Mike Christief3ff0c32006-07-24 15:47:50 -05001835
Mike Christie26974782007-12-13 12:43:29 -06001836 iscsi_free_session(cls_session);
Mike Christie7996a772006-04-06 21:13:41 -05001837 scsi_host_put(shost);
Mike Christie63f75cc2006-07-24 15:47:29 -05001838 module_put(owner);
Mike Christie7996a772006-04-06 21:13:41 -05001839}
1840EXPORT_SYMBOL_GPL(iscsi_session_teardown);
1841
1842/**
1843 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
1844 * @cls_session: iscsi_cls_session
1845 * @conn_idx: cid
1846 **/
1847struct iscsi_cls_conn *
1848iscsi_conn_setup(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
1849{
1850 struct iscsi_session *session = class_to_transport_session(cls_session);
1851 struct iscsi_conn *conn;
1852 struct iscsi_cls_conn *cls_conn;
Mike Christied36ab6f2006-05-18 20:31:34 -05001853 char *data;
Mike Christie7996a772006-04-06 21:13:41 -05001854
1855 cls_conn = iscsi_create_conn(cls_session, conn_idx);
1856 if (!cls_conn)
1857 return NULL;
1858 conn = cls_conn->dd_data;
1859 memset(conn, 0, sizeof(*conn));
1860
1861 conn->session = session;
1862 conn->cls_conn = cls_conn;
1863 conn->c_stage = ISCSI_CONN_INITIAL_STAGE;
1864 conn->id = conn_idx;
1865 conn->exp_statsn = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06001866 conn->tmf_state = TMF_INITIAL;
Mike Christief6d51802007-12-13 12:43:30 -06001867
1868 init_timer(&conn->transport_timer);
1869 conn->transport_timer.data = (unsigned long)conn;
1870 conn->transport_timer.function = iscsi_check_transport_timeouts;
1871
Mike Christie7996a772006-04-06 21:13:41 -05001872 INIT_LIST_HEAD(&conn->run_list);
1873 INIT_LIST_HEAD(&conn->mgmt_run_list);
Mike Christie843c0a82007-12-13 12:43:20 -06001874 INIT_LIST_HEAD(&conn->mgmtqueue);
Mike Christieb6c395e2006-07-24 15:47:15 -05001875 INIT_LIST_HEAD(&conn->xmitqueue);
Mike Christie843c0a82007-12-13 12:43:20 -06001876 INIT_LIST_HEAD(&conn->requeue);
David Howellsc4028952006-11-22 14:57:56 +00001877 INIT_WORK(&conn->xmitwork, iscsi_xmitworker);
Mike Christie7996a772006-04-06 21:13:41 -05001878
1879 /* allocate login_mtask used for the login/text sequences */
1880 spin_lock_bh(&session->lock);
1881 if (!__kfifo_get(session->mgmtpool.queue,
1882 (void*)&conn->login_mtask,
1883 sizeof(void*))) {
1884 spin_unlock_bh(&session->lock);
1885 goto login_mtask_alloc_fail;
1886 }
1887 spin_unlock_bh(&session->lock);
1888
Mike Christiebf32ed32007-02-28 17:32:17 -06001889 data = kmalloc(ISCSI_DEF_MAX_RECV_SEG_LEN, GFP_KERNEL);
Mike Christied36ab6f2006-05-18 20:31:34 -05001890 if (!data)
1891 goto login_mtask_data_alloc_fail;
Mike Christiec8dc1e52006-07-24 15:47:39 -05001892 conn->login_mtask->data = conn->data = data;
Mike Christied36ab6f2006-05-18 20:31:34 -05001893
Mike Christie843c0a82007-12-13 12:43:20 -06001894 init_timer(&conn->tmf_timer);
Mike Christie7996a772006-04-06 21:13:41 -05001895 init_waitqueue_head(&conn->ehwait);
1896
1897 return cls_conn;
1898
Mike Christied36ab6f2006-05-18 20:31:34 -05001899login_mtask_data_alloc_fail:
1900 __kfifo_put(session->mgmtpool.queue, (void*)&conn->login_mtask,
1901 sizeof(void*));
Mike Christie7996a772006-04-06 21:13:41 -05001902login_mtask_alloc_fail:
Mike Christie7996a772006-04-06 21:13:41 -05001903 iscsi_destroy_conn(cls_conn);
1904 return NULL;
1905}
1906EXPORT_SYMBOL_GPL(iscsi_conn_setup);
1907
1908/**
1909 * iscsi_conn_teardown - teardown iscsi connection
1910 * cls_conn: iscsi class connection
1911 *
1912 * TODO: we may need to make this into a two step process
1913 * like scsi-mls remove + put host
1914 */
1915void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn)
1916{
1917 struct iscsi_conn *conn = cls_conn->dd_data;
1918 struct iscsi_session *session = conn->session;
1919 unsigned long flags;
1920
Mike Christief6d51802007-12-13 12:43:30 -06001921 del_timer_sync(&conn->transport_timer);
1922
Mike Christie7996a772006-04-06 21:13:41 -05001923 spin_lock_bh(&session->lock);
1924 conn->c_stage = ISCSI_CONN_CLEANUP_WAIT;
1925 if (session->leadconn == conn) {
1926 /*
1927 * leading connection? then give up on recovery.
1928 */
1929 session->state = ISCSI_STATE_TERMINATE;
1930 wake_up(&conn->ehwait);
1931 }
1932 spin_unlock_bh(&session->lock);
1933
Mike Christie7996a772006-04-06 21:13:41 -05001934 /*
1935 * Block until all in-progress commands for this connection
1936 * time out or fail.
1937 */
1938 for (;;) {
1939 spin_lock_irqsave(session->host->host_lock, flags);
1940 if (!session->host->host_busy) { /* OK for ERL == 0 */
1941 spin_unlock_irqrestore(session->host->host_lock, flags);
1942 break;
1943 }
1944 spin_unlock_irqrestore(session->host->host_lock, flags);
1945 msleep_interruptible(500);
Or Gerlitzbe2df722006-05-02 19:46:43 -05001946 printk(KERN_INFO "iscsi: scsi conn_destroy(): host_busy %d "
1947 "host_failed %d\n", session->host->host_busy,
1948 session->host->host_failed);
Mike Christie7996a772006-04-06 21:13:41 -05001949 /*
1950 * force eh_abort() to unblock
1951 */
1952 wake_up(&conn->ehwait);
1953 }
1954
Mike Christie779ea122007-02-28 17:32:15 -06001955 /* flush queued up work because we free the connection below */
Mike Christie843c0a82007-12-13 12:43:20 -06001956 iscsi_suspend_tx(conn);
Mike Christie779ea122007-02-28 17:32:15 -06001957
Mike Christie7996a772006-04-06 21:13:41 -05001958 spin_lock_bh(&session->lock);
Mike Christiec8dc1e52006-07-24 15:47:39 -05001959 kfree(conn->data);
Mike Christief3ff0c32006-07-24 15:47:50 -05001960 kfree(conn->persistent_address);
Mike Christie7996a772006-04-06 21:13:41 -05001961 __kfifo_put(session->mgmtpool.queue, (void*)&conn->login_mtask,
1962 sizeof(void*));
Mike Christiee0726402007-07-26 12:46:48 -05001963 if (session->leadconn == conn)
Mike Christie7996a772006-04-06 21:13:41 -05001964 session->leadconn = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001965 spin_unlock_bh(&session->lock);
1966
Mike Christie7996a772006-04-06 21:13:41 -05001967 iscsi_destroy_conn(cls_conn);
1968}
1969EXPORT_SYMBOL_GPL(iscsi_conn_teardown);
1970
1971int iscsi_conn_start(struct iscsi_cls_conn *cls_conn)
1972{
1973 struct iscsi_conn *conn = cls_conn->dd_data;
1974 struct iscsi_session *session = conn->session;
1975
Mike Christieffd04362006-08-31 18:09:24 -04001976 if (!session) {
Mike Christie7996a772006-04-06 21:13:41 -05001977 printk(KERN_ERR "iscsi: can't start unbound connection\n");
1978 return -EPERM;
1979 }
1980
Mike Christiedb98ccd2006-08-31 18:09:31 -04001981 if ((session->imm_data_en || !session->initial_r2t_en) &&
1982 session->first_burst > session->max_burst) {
Mike Christieffd04362006-08-31 18:09:24 -04001983 printk("iscsi: invalid burst lengths: "
1984 "first_burst %d max_burst %d\n",
1985 session->first_burst, session->max_burst);
1986 return -EINVAL;
1987 }
1988
Mike Christief6d51802007-12-13 12:43:30 -06001989 if (conn->ping_timeout && !conn->recv_timeout) {
1990 printk(KERN_ERR "iscsi: invalid recv timeout of zero "
1991 "Using 5 seconds\n.");
1992 conn->recv_timeout = 5;
1993 }
1994
1995 if (conn->recv_timeout && !conn->ping_timeout) {
1996 printk(KERN_ERR "iscsi: invalid ping timeout of zero "
1997 "Using 5 seconds.\n");
1998 conn->ping_timeout = 5;
1999 }
2000
Mike Christie7996a772006-04-06 21:13:41 -05002001 spin_lock_bh(&session->lock);
2002 conn->c_stage = ISCSI_CONN_STARTED;
2003 session->state = ISCSI_STATE_LOGGED_IN;
Mike Christiee0726402007-07-26 12:46:48 -05002004 session->queued_cmdsn = session->cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05002005
Mike Christief6d51802007-12-13 12:43:30 -06002006 conn->last_recv = jiffies;
2007 conn->last_ping = jiffies;
2008 if (conn->recv_timeout && conn->ping_timeout)
2009 mod_timer(&conn->transport_timer,
2010 jiffies + (conn->recv_timeout * HZ));
2011
Mike Christie7996a772006-04-06 21:13:41 -05002012 switch(conn->stop_stage) {
2013 case STOP_CONN_RECOVER:
2014 /*
2015 * unblock eh_abort() if it is blocked. re-try all
2016 * commands after successful recovery
2017 */
Mike Christie7996a772006-04-06 21:13:41 -05002018 conn->stop_stage = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06002019 conn->tmf_state = TMF_INITIAL;
Mike Christie7996a772006-04-06 21:13:41 -05002020 session->age++;
Mike Christie7996a772006-04-06 21:13:41 -05002021 spin_unlock_bh(&session->lock);
2022
2023 iscsi_unblock_session(session_to_cls(session));
2024 wake_up(&conn->ehwait);
2025 return 0;
2026 case STOP_CONN_TERM:
Mike Christie7996a772006-04-06 21:13:41 -05002027 conn->stop_stage = 0;
2028 break;
Mike Christie7996a772006-04-06 21:13:41 -05002029 default:
2030 break;
2031 }
2032 spin_unlock_bh(&session->lock);
2033
2034 return 0;
2035}
2036EXPORT_SYMBOL_GPL(iscsi_conn_start);
2037
2038static void
2039flush_control_queues(struct iscsi_session *session, struct iscsi_conn *conn)
2040{
2041 struct iscsi_mgmt_task *mtask, *tmp;
2042
2043 /* handle pending */
Mike Christie843c0a82007-12-13 12:43:20 -06002044 list_for_each_entry_safe(mtask, tmp, &conn->mgmtqueue, running) {
2045 debug_scsi("flushing pending mgmt task itt 0x%x\n", mtask->itt);
Mike Christieb3a7ea82007-12-13 12:43:26 -06002046 iscsi_free_mgmt_task(conn, mtask);
Mike Christie7996a772006-04-06 21:13:41 -05002047 }
2048
2049 /* handle running */
2050 list_for_each_entry_safe(mtask, tmp, &conn->mgmt_run_list, running) {
2051 debug_scsi("flushing running mgmt task itt 0x%x\n", mtask->itt);
Mike Christieb3a7ea82007-12-13 12:43:26 -06002052 iscsi_free_mgmt_task(conn, mtask);
Mike Christie7996a772006-04-06 21:13:41 -05002053 }
2054
2055 conn->mtask = NULL;
2056}
2057
Mike Christie656cffc2006-05-18 20:31:42 -05002058static void iscsi_start_session_recovery(struct iscsi_session *session,
2059 struct iscsi_conn *conn, int flag)
Mike Christie7996a772006-04-06 21:13:41 -05002060{
Mike Christieed2abc72006-05-02 19:46:40 -05002061 int old_stop_stage;
2062
Mike Christief6d51802007-12-13 12:43:30 -06002063 del_timer_sync(&conn->transport_timer);
2064
Mike Christie6724add2007-08-15 01:38:30 -05002065 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002066 spin_lock_bh(&session->lock);
Mike Christieed2abc72006-05-02 19:46:40 -05002067 if (conn->stop_stage == STOP_CONN_TERM) {
Mike Christie7996a772006-04-06 21:13:41 -05002068 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002069 mutex_unlock(&session->eh_mutex);
2070 return;
2071 }
2072
2073 /*
2074 * The LLD either freed/unset the lock on us, or userspace called
2075 * stop but did not create a proper connection (connection was never
2076 * bound or it was unbound then stop was called).
2077 */
2078 if (!conn->recv_lock) {
2079 spin_unlock_bh(&session->lock);
2080 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002081 return;
2082 }
Mike Christieed2abc72006-05-02 19:46:40 -05002083
2084 /*
2085 * When this is called for the in_login state, we only want to clean
Mike Christie67a61112006-05-30 00:37:20 -05002086 * up the login task and connection. We do not need to block and set
2087 * the recovery state again
Mike Christieed2abc72006-05-02 19:46:40 -05002088 */
Mike Christie67a61112006-05-30 00:37:20 -05002089 if (flag == STOP_CONN_TERM)
2090 session->state = ISCSI_STATE_TERMINATE;
2091 else if (conn->stop_stage != STOP_CONN_RECOVER)
2092 session->state = ISCSI_STATE_IN_RECOVERY;
Mike Christieed2abc72006-05-02 19:46:40 -05002093
2094 old_stop_stage = conn->stop_stage;
Mike Christie7996a772006-04-06 21:13:41 -05002095 conn->stop_stage = flag;
Mike Christie67a61112006-05-30 00:37:20 -05002096 conn->c_stage = ISCSI_CONN_STOPPED;
Mike Christie7996a772006-04-06 21:13:41 -05002097 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002098
2099 iscsi_suspend_tx(conn);
Mike Christie7996a772006-04-06 21:13:41 -05002100
Mike Christie1c834692006-07-24 15:47:26 -05002101 write_lock_bh(conn->recv_lock);
2102 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
2103 write_unlock_bh(conn->recv_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002104
Mike Christie7996a772006-04-06 21:13:41 -05002105 /*
2106 * for connection level recovery we should not calculate
2107 * header digest. conn->hdr_size used for optimization
2108 * in hdr_extract() and will be re-negotiated at
2109 * set_param() time.
2110 */
2111 if (flag == STOP_CONN_RECOVER) {
2112 conn->hdrdgst_en = 0;
2113 conn->datadgst_en = 0;
Mike Christie656cffc2006-05-18 20:31:42 -05002114 if (session->state == ISCSI_STATE_IN_RECOVERY &&
Mike Christie67a61112006-05-30 00:37:20 -05002115 old_stop_stage != STOP_CONN_RECOVER) {
2116 debug_scsi("blocking session\n");
Mike Christie7996a772006-04-06 21:13:41 -05002117 iscsi_block_session(session_to_cls(session));
Mike Christie67a61112006-05-30 00:37:20 -05002118 }
Mike Christie7996a772006-04-06 21:13:41 -05002119 }
Mike Christie656cffc2006-05-18 20:31:42 -05002120
Mike Christie656cffc2006-05-18 20:31:42 -05002121 /*
2122 * flush queues.
2123 */
2124 spin_lock_bh(&session->lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002125 fail_all_commands(conn, -1);
Mike Christie656cffc2006-05-18 20:31:42 -05002126 flush_control_queues(session, conn);
2127 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002128 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002129}
Mike Christie7996a772006-04-06 21:13:41 -05002130
2131void iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
2132{
2133 struct iscsi_conn *conn = cls_conn->dd_data;
2134 struct iscsi_session *session = conn->session;
2135
2136 switch (flag) {
2137 case STOP_CONN_RECOVER:
2138 case STOP_CONN_TERM:
2139 iscsi_start_session_recovery(session, conn, flag);
Mike Christie8d2860b2006-05-02 19:46:47 -05002140 break;
Mike Christie7996a772006-04-06 21:13:41 -05002141 default:
Or Gerlitzbe2df722006-05-02 19:46:43 -05002142 printk(KERN_ERR "iscsi: invalid stop flag %d\n", flag);
Mike Christie7996a772006-04-06 21:13:41 -05002143 }
2144}
2145EXPORT_SYMBOL_GPL(iscsi_conn_stop);
2146
2147int iscsi_conn_bind(struct iscsi_cls_session *cls_session,
2148 struct iscsi_cls_conn *cls_conn, int is_leading)
2149{
2150 struct iscsi_session *session = class_to_transport_session(cls_session);
Mike Christie98644042006-10-16 18:09:39 -04002151 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05002152
Mike Christie7996a772006-04-06 21:13:41 -05002153 spin_lock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05002154 if (is_leading)
2155 session->leadconn = conn;
Mike Christie98644042006-10-16 18:09:39 -04002156 spin_unlock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05002157
2158 /*
2159 * Unblock xmitworker(), Login Phase will pass through.
2160 */
2161 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
2162 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
2163 return 0;
2164}
2165EXPORT_SYMBOL_GPL(iscsi_conn_bind);
2166
Mike Christiea54a52c2006-06-28 12:00:23 -05002167
2168int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
2169 enum iscsi_param param, char *buf, int buflen)
2170{
2171 struct iscsi_conn *conn = cls_conn->dd_data;
2172 struct iscsi_session *session = conn->session;
2173 uint32_t value;
2174
2175 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06002176 case ISCSI_PARAM_FAST_ABORT:
2177 sscanf(buf, "%d", &session->fast_abort);
2178 break;
Mike Christief6d51802007-12-13 12:43:30 -06002179 case ISCSI_PARAM_ABORT_TMO:
2180 sscanf(buf, "%d", &session->abort_timeout);
2181 break;
2182 case ISCSI_PARAM_LU_RESET_TMO:
2183 sscanf(buf, "%d", &session->lu_reset_timeout);
2184 break;
2185 case ISCSI_PARAM_PING_TMO:
2186 sscanf(buf, "%d", &conn->ping_timeout);
2187 break;
2188 case ISCSI_PARAM_RECV_TMO:
2189 sscanf(buf, "%d", &conn->recv_timeout);
2190 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002191 case ISCSI_PARAM_MAX_RECV_DLENGTH:
2192 sscanf(buf, "%d", &conn->max_recv_dlength);
2193 break;
2194 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2195 sscanf(buf, "%d", &conn->max_xmit_dlength);
2196 break;
2197 case ISCSI_PARAM_HDRDGST_EN:
2198 sscanf(buf, "%d", &conn->hdrdgst_en);
2199 break;
2200 case ISCSI_PARAM_DATADGST_EN:
2201 sscanf(buf, "%d", &conn->datadgst_en);
2202 break;
2203 case ISCSI_PARAM_INITIAL_R2T_EN:
2204 sscanf(buf, "%d", &session->initial_r2t_en);
2205 break;
2206 case ISCSI_PARAM_MAX_R2T:
2207 sscanf(buf, "%d", &session->max_r2t);
2208 break;
2209 case ISCSI_PARAM_IMM_DATA_EN:
2210 sscanf(buf, "%d", &session->imm_data_en);
2211 break;
2212 case ISCSI_PARAM_FIRST_BURST:
2213 sscanf(buf, "%d", &session->first_burst);
2214 break;
2215 case ISCSI_PARAM_MAX_BURST:
2216 sscanf(buf, "%d", &session->max_burst);
2217 break;
2218 case ISCSI_PARAM_PDU_INORDER_EN:
2219 sscanf(buf, "%d", &session->pdu_inorder_en);
2220 break;
2221 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2222 sscanf(buf, "%d", &session->dataseq_inorder_en);
2223 break;
2224 case ISCSI_PARAM_ERL:
2225 sscanf(buf, "%d", &session->erl);
2226 break;
2227 case ISCSI_PARAM_IFMARKER_EN:
2228 sscanf(buf, "%d", &value);
2229 BUG_ON(value);
2230 break;
2231 case ISCSI_PARAM_OFMARKER_EN:
2232 sscanf(buf, "%d", &value);
2233 BUG_ON(value);
2234 break;
2235 case ISCSI_PARAM_EXP_STATSN:
2236 sscanf(buf, "%u", &conn->exp_statsn);
2237 break;
Mike Christieb2c64162007-05-30 12:57:16 -05002238 case ISCSI_PARAM_USERNAME:
2239 kfree(session->username);
2240 session->username = kstrdup(buf, GFP_KERNEL);
2241 if (!session->username)
2242 return -ENOMEM;
2243 break;
2244 case ISCSI_PARAM_USERNAME_IN:
2245 kfree(session->username_in);
2246 session->username_in = kstrdup(buf, GFP_KERNEL);
2247 if (!session->username_in)
2248 return -ENOMEM;
2249 break;
2250 case ISCSI_PARAM_PASSWORD:
2251 kfree(session->password);
2252 session->password = kstrdup(buf, GFP_KERNEL);
2253 if (!session->password)
2254 return -ENOMEM;
2255 break;
2256 case ISCSI_PARAM_PASSWORD_IN:
2257 kfree(session->password_in);
2258 session->password_in = kstrdup(buf, GFP_KERNEL);
2259 if (!session->password_in)
2260 return -ENOMEM;
2261 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002262 case ISCSI_PARAM_TARGET_NAME:
2263 /* this should not change between logins */
2264 if (session->targetname)
2265 break;
2266
2267 session->targetname = kstrdup(buf, GFP_KERNEL);
2268 if (!session->targetname)
2269 return -ENOMEM;
2270 break;
2271 case ISCSI_PARAM_TPGT:
2272 sscanf(buf, "%d", &session->tpgt);
2273 break;
2274 case ISCSI_PARAM_PERSISTENT_PORT:
2275 sscanf(buf, "%d", &conn->persistent_port);
2276 break;
2277 case ISCSI_PARAM_PERSISTENT_ADDRESS:
2278 /*
2279 * this is the address returned in discovery so it should
2280 * not change between logins.
2281 */
2282 if (conn->persistent_address)
2283 break;
2284
2285 conn->persistent_address = kstrdup(buf, GFP_KERNEL);
2286 if (!conn->persistent_address)
2287 return -ENOMEM;
2288 break;
2289 default:
2290 return -ENOSYS;
2291 }
2292
2293 return 0;
2294}
2295EXPORT_SYMBOL_GPL(iscsi_set_param);
2296
2297int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
2298 enum iscsi_param param, char *buf)
2299{
2300 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
2301 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
2302 int len;
2303
2304 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06002305 case ISCSI_PARAM_FAST_ABORT:
2306 len = sprintf(buf, "%d\n", session->fast_abort);
2307 break;
Mike Christief6d51802007-12-13 12:43:30 -06002308 case ISCSI_PARAM_ABORT_TMO:
2309 len = sprintf(buf, "%d\n", session->abort_timeout);
2310 break;
2311 case ISCSI_PARAM_LU_RESET_TMO:
2312 len = sprintf(buf, "%d\n", session->lu_reset_timeout);
2313 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002314 case ISCSI_PARAM_INITIAL_R2T_EN:
2315 len = sprintf(buf, "%d\n", session->initial_r2t_en);
2316 break;
2317 case ISCSI_PARAM_MAX_R2T:
2318 len = sprintf(buf, "%hu\n", session->max_r2t);
2319 break;
2320 case ISCSI_PARAM_IMM_DATA_EN:
2321 len = sprintf(buf, "%d\n", session->imm_data_en);
2322 break;
2323 case ISCSI_PARAM_FIRST_BURST:
2324 len = sprintf(buf, "%u\n", session->first_burst);
2325 break;
2326 case ISCSI_PARAM_MAX_BURST:
2327 len = sprintf(buf, "%u\n", session->max_burst);
2328 break;
2329 case ISCSI_PARAM_PDU_INORDER_EN:
2330 len = sprintf(buf, "%d\n", session->pdu_inorder_en);
2331 break;
2332 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2333 len = sprintf(buf, "%d\n", session->dataseq_inorder_en);
2334 break;
2335 case ISCSI_PARAM_ERL:
2336 len = sprintf(buf, "%d\n", session->erl);
2337 break;
2338 case ISCSI_PARAM_TARGET_NAME:
2339 len = sprintf(buf, "%s\n", session->targetname);
2340 break;
2341 case ISCSI_PARAM_TPGT:
2342 len = sprintf(buf, "%d\n", session->tpgt);
2343 break;
Mike Christieb2c64162007-05-30 12:57:16 -05002344 case ISCSI_PARAM_USERNAME:
2345 len = sprintf(buf, "%s\n", session->username);
2346 break;
2347 case ISCSI_PARAM_USERNAME_IN:
2348 len = sprintf(buf, "%s\n", session->username_in);
2349 break;
2350 case ISCSI_PARAM_PASSWORD:
2351 len = sprintf(buf, "%s\n", session->password);
2352 break;
2353 case ISCSI_PARAM_PASSWORD_IN:
2354 len = sprintf(buf, "%s\n", session->password_in);
2355 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002356 default:
2357 return -ENOSYS;
2358 }
2359
2360 return len;
2361}
2362EXPORT_SYMBOL_GPL(iscsi_session_get_param);
2363
2364int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
2365 enum iscsi_param param, char *buf)
2366{
2367 struct iscsi_conn *conn = cls_conn->dd_data;
2368 int len;
2369
2370 switch(param) {
Mike Christief6d51802007-12-13 12:43:30 -06002371 case ISCSI_PARAM_PING_TMO:
2372 len = sprintf(buf, "%u\n", conn->ping_timeout);
2373 break;
2374 case ISCSI_PARAM_RECV_TMO:
2375 len = sprintf(buf, "%u\n", conn->recv_timeout);
2376 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002377 case ISCSI_PARAM_MAX_RECV_DLENGTH:
2378 len = sprintf(buf, "%u\n", conn->max_recv_dlength);
2379 break;
2380 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2381 len = sprintf(buf, "%u\n", conn->max_xmit_dlength);
2382 break;
2383 case ISCSI_PARAM_HDRDGST_EN:
2384 len = sprintf(buf, "%d\n", conn->hdrdgst_en);
2385 break;
2386 case ISCSI_PARAM_DATADGST_EN:
2387 len = sprintf(buf, "%d\n", conn->datadgst_en);
2388 break;
2389 case ISCSI_PARAM_IFMARKER_EN:
2390 len = sprintf(buf, "%d\n", conn->ifmarker_en);
2391 break;
2392 case ISCSI_PARAM_OFMARKER_EN:
2393 len = sprintf(buf, "%d\n", conn->ofmarker_en);
2394 break;
2395 case ISCSI_PARAM_EXP_STATSN:
2396 len = sprintf(buf, "%u\n", conn->exp_statsn);
2397 break;
2398 case ISCSI_PARAM_PERSISTENT_PORT:
2399 len = sprintf(buf, "%d\n", conn->persistent_port);
2400 break;
2401 case ISCSI_PARAM_PERSISTENT_ADDRESS:
2402 len = sprintf(buf, "%s\n", conn->persistent_address);
2403 break;
2404 default:
2405 return -ENOSYS;
2406 }
2407
2408 return len;
2409}
2410EXPORT_SYMBOL_GPL(iscsi_conn_get_param);
2411
Mike Christie0801c242007-05-30 12:57:12 -05002412int iscsi_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
2413 char *buf)
2414{
2415 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
2416 int len;
2417
2418 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05002419 case ISCSI_HOST_PARAM_NETDEV_NAME:
2420 if (!session->netdev)
2421 len = sprintf(buf, "%s\n", "default");
2422 else
2423 len = sprintf(buf, "%s\n", session->netdev);
2424 break;
Mike Christie0801c242007-05-30 12:57:12 -05002425 case ISCSI_HOST_PARAM_HWADDRESS:
2426 if (!session->hwaddress)
2427 len = sprintf(buf, "%s\n", "default");
2428 else
2429 len = sprintf(buf, "%s\n", session->hwaddress);
2430 break;
Mike Christie8ad57812007-05-30 12:57:13 -05002431 case ISCSI_HOST_PARAM_INITIATOR_NAME:
2432 if (!session->initiatorname)
2433 len = sprintf(buf, "%s\n", "unknown");
2434 else
2435 len = sprintf(buf, "%s\n", session->initiatorname);
2436 break;
2437
Mike Christie0801c242007-05-30 12:57:12 -05002438 default:
2439 return -ENOSYS;
2440 }
2441
2442 return len;
2443}
2444EXPORT_SYMBOL_GPL(iscsi_host_get_param);
2445
2446int iscsi_host_set_param(struct Scsi_Host *shost, enum iscsi_host_param param,
2447 char *buf, int buflen)
2448{
2449 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
2450
2451 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05002452 case ISCSI_HOST_PARAM_NETDEV_NAME:
2453 if (!session->netdev)
2454 session->netdev = kstrdup(buf, GFP_KERNEL);
2455 break;
Mike Christie0801c242007-05-30 12:57:12 -05002456 case ISCSI_HOST_PARAM_HWADDRESS:
2457 if (!session->hwaddress)
2458 session->hwaddress = kstrdup(buf, GFP_KERNEL);
2459 break;
Mike Christie8ad57812007-05-30 12:57:13 -05002460 case ISCSI_HOST_PARAM_INITIATOR_NAME:
2461 if (!session->initiatorname)
2462 session->initiatorname = kstrdup(buf, GFP_KERNEL);
2463 break;
Mike Christie0801c242007-05-30 12:57:12 -05002464 default:
2465 return -ENOSYS;
2466 }
2467
2468 return 0;
2469}
2470EXPORT_SYMBOL_GPL(iscsi_host_set_param);
2471
Mike Christie7996a772006-04-06 21:13:41 -05002472MODULE_AUTHOR("Mike Christie");
2473MODULE_DESCRIPTION("iSCSI library functions");
2474MODULE_LICENSE("GPL");