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
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.
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.
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.
24 #include <linux/types.h>
25 #include <linux/kfifo.h>
26 #include <linux/delay.h>
27 #include <asm/unaligned.h>
29 #include <scsi/scsi_cmnd.h>
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_eh.h>
32 #include <scsi/scsi_tcq.h>
33 #include <scsi/scsi_host.h>
34 #include <scsi/scsi.h>
35 #include <scsi/iscsi_proto.h>
36 #include <scsi/scsi_transport.h>
37 #include <scsi/scsi_transport_iscsi.h>
38 #include <scsi/libiscsi.h>
40 struct iscsi_session
*
41 class_to_transport_session(struct iscsi_cls_session
*cls_session
)
43 struct Scsi_Host
*shost
= iscsi_session_to_shost(cls_session
);
44 return iscsi_hostdata(shost
->hostdata
);
46 EXPORT_SYMBOL_GPL(class_to_transport_session
);
48 /* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
49 #define SNA32_CHECK 2147483648UL
51 static int iscsi_sna_lt(u32 n1
, u32 n2
)
53 return n1
!= n2
&& ((n1
< n2
&& (n2
- n1
< SNA32_CHECK
)) ||
54 (n1
> n2
&& (n2
- n1
< SNA32_CHECK
)));
57 /* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
58 static int iscsi_sna_lte(u32 n1
, u32 n2
)
60 return n1
== n2
|| ((n1
< n2
&& (n2
- n1
< SNA32_CHECK
)) ||
61 (n1
> n2
&& (n2
- n1
< SNA32_CHECK
)));
65 iscsi_update_cmdsn(struct iscsi_session
*session
, struct iscsi_nopin
*hdr
)
67 uint32_t max_cmdsn
= be32_to_cpu(hdr
->max_cmdsn
);
68 uint32_t exp_cmdsn
= be32_to_cpu(hdr
->exp_cmdsn
);
71 * standard specifies this check for when to update expected and
72 * max sequence numbers
74 if (iscsi_sna_lt(max_cmdsn
, exp_cmdsn
- 1))
77 if (exp_cmdsn
!= session
->exp_cmdsn
&&
78 !iscsi_sna_lt(exp_cmdsn
, session
->exp_cmdsn
))
79 session
->exp_cmdsn
= exp_cmdsn
;
81 if (max_cmdsn
!= session
->max_cmdsn
&&
82 !iscsi_sna_lt(max_cmdsn
, session
->max_cmdsn
)) {
83 session
->max_cmdsn
= max_cmdsn
;
85 * if the window closed with IO queued, then kick the
88 if (!list_empty(&session
->leadconn
->xmitqueue
) ||
89 __kfifo_len(session
->leadconn
->mgmtqueue
))
90 scsi_queue_work(session
->host
,
91 &session
->leadconn
->xmitwork
);
94 EXPORT_SYMBOL_GPL(iscsi_update_cmdsn
);
96 void iscsi_prep_unsolicit_data_pdu(struct iscsi_cmd_task
*ctask
,
97 struct iscsi_data
*hdr
)
99 struct iscsi_conn
*conn
= ctask
->conn
;
101 memset(hdr
, 0, sizeof(struct iscsi_data
));
102 hdr
->ttt
= cpu_to_be32(ISCSI_RESERVED_TAG
);
103 hdr
->datasn
= cpu_to_be32(ctask
->unsol_datasn
);
104 ctask
->unsol_datasn
++;
105 hdr
->opcode
= ISCSI_OP_SCSI_DATA_OUT
;
106 memcpy(hdr
->lun
, ctask
->hdr
->lun
, sizeof(hdr
->lun
));
108 hdr
->itt
= ctask
->hdr
->itt
;
109 hdr
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
110 hdr
->offset
= cpu_to_be32(ctask
->unsol_offset
);
112 if (ctask
->unsol_count
> conn
->max_xmit_dlength
) {
113 hton24(hdr
->dlength
, conn
->max_xmit_dlength
);
114 ctask
->data_count
= conn
->max_xmit_dlength
;
115 ctask
->unsol_offset
+= ctask
->data_count
;
118 hton24(hdr
->dlength
, ctask
->unsol_count
);
119 ctask
->data_count
= ctask
->unsol_count
;
120 hdr
->flags
= ISCSI_FLAG_CMD_FINAL
;
123 EXPORT_SYMBOL_GPL(iscsi_prep_unsolicit_data_pdu
);
126 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
127 * @ctask: iscsi cmd task
129 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
130 * fields like dlength or final based on how much data it sends
132 static void iscsi_prep_scsi_cmd_pdu(struct iscsi_cmd_task
*ctask
)
134 struct iscsi_conn
*conn
= ctask
->conn
;
135 struct iscsi_session
*session
= conn
->session
;
136 struct iscsi_cmd
*hdr
= ctask
->hdr
;
137 struct scsi_cmnd
*sc
= ctask
->sc
;
139 hdr
->opcode
= ISCSI_OP_SCSI_CMD
;
140 hdr
->flags
= ISCSI_ATTR_SIMPLE
;
141 int_to_scsilun(sc
->device
->lun
, (struct scsi_lun
*)hdr
->lun
);
142 hdr
->itt
= build_itt(ctask
->itt
, conn
->id
, session
->age
);
143 hdr
->data_length
= cpu_to_be32(scsi_bufflen(sc
));
144 hdr
->cmdsn
= cpu_to_be32(session
->cmdsn
);
146 hdr
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
147 memcpy(hdr
->cdb
, sc
->cmnd
, sc
->cmd_len
);
148 if (sc
->cmd_len
< MAX_COMMAND_SIZE
)
149 memset(&hdr
->cdb
[sc
->cmd_len
], 0,
150 MAX_COMMAND_SIZE
- sc
->cmd_len
);
152 ctask
->data_count
= 0;
153 ctask
->imm_count
= 0;
154 if (sc
->sc_data_direction
== DMA_TO_DEVICE
) {
155 hdr
->flags
|= ISCSI_FLAG_CMD_WRITE
;
159 * imm_count bytes to be sent right after
162 * unsol_count bytes(as Data-Out) to be sent
163 * without R2T ack right after
166 * r2t_data_count bytes to be sent via R2T ack's
168 * pad_count bytes to be sent as zero-padding
170 ctask
->unsol_count
= 0;
171 ctask
->unsol_offset
= 0;
172 ctask
->unsol_datasn
= 0;
174 if (session
->imm_data_en
) {
175 if (scsi_bufflen(sc
) >= session
->first_burst
)
176 ctask
->imm_count
= min(session
->first_burst
,
177 conn
->max_xmit_dlength
);
179 ctask
->imm_count
= min(scsi_bufflen(sc
),
180 conn
->max_xmit_dlength
);
181 hton24(ctask
->hdr
->dlength
, ctask
->imm_count
);
183 zero_data(ctask
->hdr
->dlength
);
185 if (!session
->initial_r2t_en
) {
186 ctask
->unsol_count
= min((session
->first_burst
),
187 (scsi_bufflen(sc
))) - ctask
->imm_count
;
188 ctask
->unsol_offset
= ctask
->imm_count
;
191 if (!ctask
->unsol_count
)
192 /* No unsolicit Data-Out's */
193 ctask
->hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
195 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
196 zero_data(hdr
->dlength
);
198 if (sc
->sc_data_direction
== DMA_FROM_DEVICE
)
199 hdr
->flags
|= ISCSI_FLAG_CMD_READ
;
202 conn
->scsicmd_pdus_cnt
++;
204 debug_scsi("iscsi prep [%s cid %d sc %p cdb 0x%x itt 0x%x len %d "
205 "cmdsn %d win %d]\n",
206 sc
->sc_data_direction
== DMA_TO_DEVICE
? "write" : "read",
207 conn
->id
, sc
, sc
->cmnd
[0], ctask
->itt
, scsi_bufflen(sc
),
208 session
->cmdsn
, session
->max_cmdsn
- session
->exp_cmdsn
+ 1);
212 * iscsi_complete_command - return command back to scsi-ml
213 * @ctask: iscsi cmd task
215 * Must be called with session lock.
216 * This function returns the scsi command to scsi-ml and returns
217 * the cmd task to the pool of available cmd tasks.
219 static void iscsi_complete_command(struct iscsi_cmd_task
*ctask
)
221 struct iscsi_session
*session
= ctask
->conn
->session
;
222 struct scsi_cmnd
*sc
= ctask
->sc
;
224 ctask
->state
= ISCSI_TASK_COMPLETED
;
226 /* SCSI eh reuses commands to verify us */
228 list_del_init(&ctask
->running
);
229 __kfifo_put(session
->cmdpool
.queue
, (void*)&ctask
, sizeof(void*));
233 static void __iscsi_get_ctask(struct iscsi_cmd_task
*ctask
)
235 atomic_inc(&ctask
->refcount
);
238 static void __iscsi_put_ctask(struct iscsi_cmd_task
*ctask
)
240 if (atomic_dec_and_test(&ctask
->refcount
))
241 iscsi_complete_command(ctask
);
245 * iscsi_cmd_rsp - SCSI Command Response processing
246 * @conn: iscsi connection
248 * @ctask: scsi command task
249 * @data: cmd data buffer
250 * @datalen: len of buffer
252 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
253 * then completes the command and task.
255 static void iscsi_scsi_cmd_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
256 struct iscsi_cmd_task
*ctask
, char *data
,
259 struct iscsi_cmd_rsp
*rhdr
= (struct iscsi_cmd_rsp
*)hdr
;
260 struct iscsi_session
*session
= conn
->session
;
261 struct scsi_cmnd
*sc
= ctask
->sc
;
263 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)rhdr
);
264 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
266 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
268 if (rhdr
->response
!= ISCSI_STATUS_CMD_COMPLETED
) {
269 sc
->result
= DID_ERROR
<< 16;
273 if (rhdr
->cmd_status
== SAM_STAT_CHECK_CONDITION
) {
278 printk(KERN_ERR
"iscsi: Got CHECK_CONDITION but "
279 "invalid data buffer size of %d\n", datalen
);
280 sc
->result
= DID_BAD_TARGET
<< 16;
284 senselen
= be16_to_cpu(get_unaligned((__be16
*) data
));
285 if (datalen
< senselen
)
286 goto invalid_datalen
;
288 memcpy(sc
->sense_buffer
, data
+ 2,
289 min_t(uint16_t, senselen
, SCSI_SENSE_BUFFERSIZE
));
290 debug_scsi("copied %d bytes of sense\n",
291 min_t(uint16_t, senselen
, SCSI_SENSE_BUFFERSIZE
));
294 if (sc
->sc_data_direction
== DMA_TO_DEVICE
)
297 if (rhdr
->flags
& ISCSI_FLAG_CMD_UNDERFLOW
) {
298 int res_count
= be32_to_cpu(rhdr
->residual_count
);
300 if (res_count
> 0 && res_count
<= scsi_bufflen(sc
))
301 scsi_set_resid(sc
, res_count
);
303 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
304 } else if (rhdr
->flags
& ISCSI_FLAG_CMD_BIDI_UNDERFLOW
)
305 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
306 else if (rhdr
->flags
& ISCSI_FLAG_CMD_OVERFLOW
)
307 scsi_set_resid(sc
, be32_to_cpu(rhdr
->residual_count
));
310 debug_scsi("done [sc %lx res %d itt 0x%x]\n",
311 (long)sc
, sc
->result
, ctask
->itt
);
312 conn
->scsirsp_pdus_cnt
++;
314 __iscsi_put_ctask(ctask
);
317 static void iscsi_tmf_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
)
319 struct iscsi_tm_rsp
*tmf
= (struct iscsi_tm_rsp
*)hdr
;
321 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
322 conn
->tmfrsp_pdus_cnt
++;
324 if (conn
->tmabort_state
!= TMABORT_INITIAL
)
327 if (tmf
->response
== ISCSI_TMF_RSP_COMPLETE
)
328 conn
->tmabort_state
= TMABORT_SUCCESS
;
329 else if (tmf
->response
== ISCSI_TMF_RSP_NO_TASK
)
330 conn
->tmabort_state
= TMABORT_NOT_FOUND
;
332 conn
->tmabort_state
= TMABORT_FAILED
;
333 wake_up(&conn
->ehwait
);
336 static int iscsi_handle_reject(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
337 char *data
, int datalen
)
339 struct iscsi_reject
*reject
= (struct iscsi_reject
*)hdr
;
340 struct iscsi_hdr rejected_pdu
;
343 conn
->exp_statsn
= be32_to_cpu(reject
->statsn
) + 1;
345 if (reject
->reason
== ISCSI_REASON_DATA_DIGEST_ERROR
) {
346 if (ntoh24(reject
->dlength
) > datalen
)
347 return ISCSI_ERR_PROTO
;
349 if (ntoh24(reject
->dlength
) >= sizeof(struct iscsi_hdr
)) {
350 memcpy(&rejected_pdu
, data
, sizeof(struct iscsi_hdr
));
351 itt
= get_itt(rejected_pdu
.itt
);
352 printk(KERN_ERR
"itt 0x%x had pdu (op 0x%x) rejected "
353 "due to DataDigest error.\n", itt
,
354 rejected_pdu
.opcode
);
361 * __iscsi_complete_pdu - complete pdu
365 * @datalen: len of data buffer
367 * Completes pdu processing by freeing any resources allocated at
368 * queuecommand or send generic. session lock must be held and verify
369 * itt must have been called.
371 int __iscsi_complete_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
372 char *data
, int datalen
)
374 struct iscsi_session
*session
= conn
->session
;
375 int opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
, rc
= 0;
376 struct iscsi_cmd_task
*ctask
;
377 struct iscsi_mgmt_task
*mtask
;
380 if (hdr
->itt
!= RESERVED_ITT
)
381 itt
= get_itt(hdr
->itt
);
385 if (itt
< session
->cmds_max
) {
386 ctask
= session
->cmds
[itt
];
388 debug_scsi("cmdrsp [op 0x%x cid %d itt 0x%x len %d]\n",
389 opcode
, conn
->id
, ctask
->itt
, datalen
);
392 case ISCSI_OP_SCSI_CMD_RSP
:
393 BUG_ON((void*)ctask
!= ctask
->sc
->SCp
.ptr
);
394 iscsi_scsi_cmd_rsp(conn
, hdr
, ctask
, data
,
397 case ISCSI_OP_SCSI_DATA_IN
:
398 BUG_ON((void*)ctask
!= ctask
->sc
->SCp
.ptr
);
399 if (hdr
->flags
& ISCSI_FLAG_DATA_STATUS
) {
400 conn
->scsirsp_pdus_cnt
++;
401 __iscsi_put_ctask(ctask
);
405 /* LLD handles this for now */
408 rc
= ISCSI_ERR_BAD_OPCODE
;
411 } else if (itt
>= ISCSI_MGMT_ITT_OFFSET
&&
412 itt
< ISCSI_MGMT_ITT_OFFSET
+ session
->mgmtpool_max
) {
413 mtask
= session
->mgmt_cmds
[itt
- ISCSI_MGMT_ITT_OFFSET
];
415 debug_scsi("immrsp [op 0x%x cid %d itt 0x%x len %d]\n",
416 opcode
, conn
->id
, mtask
->itt
, datalen
);
418 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
420 case ISCSI_OP_LOGOUT_RSP
:
422 rc
= ISCSI_ERR_PROTO
;
425 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
427 case ISCSI_OP_LOGIN_RSP
:
428 case ISCSI_OP_TEXT_RSP
:
430 * login related PDU's exp_statsn is handled in
433 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
434 rc
= ISCSI_ERR_CONN_FAILED
;
435 list_del(&mtask
->running
);
436 if (conn
->login_mtask
!= mtask
)
437 __kfifo_put(session
->mgmtpool
.queue
,
438 (void*)&mtask
, sizeof(void*));
440 case ISCSI_OP_SCSI_TMFUNC_RSP
:
442 rc
= ISCSI_ERR_PROTO
;
446 iscsi_tmf_rsp(conn
, hdr
);
448 case ISCSI_OP_NOOP_IN
:
449 if (hdr
->ttt
!= cpu_to_be32(ISCSI_RESERVED_TAG
) || datalen
) {
450 rc
= ISCSI_ERR_PROTO
;
453 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
455 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
456 rc
= ISCSI_ERR_CONN_FAILED
;
457 list_del(&mtask
->running
);
458 if (conn
->login_mtask
!= mtask
)
459 __kfifo_put(session
->mgmtpool
.queue
,
460 (void*)&mtask
, sizeof(void*));
463 rc
= ISCSI_ERR_BAD_OPCODE
;
466 } else if (itt
== ~0U) {
467 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
470 case ISCSI_OP_NOOP_IN
:
472 rc
= ISCSI_ERR_PROTO
;
476 if (hdr
->ttt
== cpu_to_be32(ISCSI_RESERVED_TAG
))
479 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, NULL
, 0))
480 rc
= ISCSI_ERR_CONN_FAILED
;
482 case ISCSI_OP_REJECT
:
483 rc
= iscsi_handle_reject(conn
, hdr
, data
, datalen
);
485 case ISCSI_OP_ASYNC_EVENT
:
486 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
487 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
488 rc
= ISCSI_ERR_CONN_FAILED
;
491 rc
= ISCSI_ERR_BAD_OPCODE
;
495 rc
= ISCSI_ERR_BAD_ITT
;
499 EXPORT_SYMBOL_GPL(__iscsi_complete_pdu
);
501 int iscsi_complete_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
502 char *data
, int datalen
)
506 spin_lock(&conn
->session
->lock
);
507 rc
= __iscsi_complete_pdu(conn
, hdr
, data
, datalen
);
508 spin_unlock(&conn
->session
->lock
);
511 EXPORT_SYMBOL_GPL(iscsi_complete_pdu
);
513 /* verify itt (itt encoding: age+cid+itt) */
514 int iscsi_verify_itt(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
517 struct iscsi_session
*session
= conn
->session
;
518 struct iscsi_cmd_task
*ctask
;
521 if (hdr
->itt
!= RESERVED_ITT
) {
522 if (((__force u32
)hdr
->itt
& ISCSI_AGE_MASK
) !=
523 (session
->age
<< ISCSI_AGE_SHIFT
)) {
524 printk(KERN_ERR
"iscsi: received itt %x expected "
525 "session age (%x)\n", (__force u32
)hdr
->itt
,
526 session
->age
& ISCSI_AGE_MASK
);
527 return ISCSI_ERR_BAD_ITT
;
530 if (((__force u32
)hdr
->itt
& ISCSI_CID_MASK
) !=
531 (conn
->id
<< ISCSI_CID_SHIFT
)) {
532 printk(KERN_ERR
"iscsi: received itt %x, expected "
533 "CID (%x)\n", (__force u32
)hdr
->itt
, conn
->id
);
534 return ISCSI_ERR_BAD_ITT
;
536 itt
= get_itt(hdr
->itt
);
540 if (itt
< session
->cmds_max
) {
541 ctask
= session
->cmds
[itt
];
544 printk(KERN_INFO
"iscsi: dropping ctask with "
545 "itt 0x%x\n", ctask
->itt
);
547 return ISCSI_ERR_NO_SCSI_CMD
;
550 if (ctask
->sc
->SCp
.phase
!= session
->age
) {
551 printk(KERN_ERR
"iscsi: ctask's session age %d, "
552 "expected %d\n", ctask
->sc
->SCp
.phase
,
554 return ISCSI_ERR_SESSION_FAILED
;
561 EXPORT_SYMBOL_GPL(iscsi_verify_itt
);
563 void iscsi_conn_failure(struct iscsi_conn
*conn
, enum iscsi_err err
)
565 struct iscsi_session
*session
= conn
->session
;
568 spin_lock_irqsave(&session
->lock
, flags
);
569 if (session
->state
== ISCSI_STATE_FAILED
) {
570 spin_unlock_irqrestore(&session
->lock
, flags
);
574 if (conn
->stop_stage
== 0)
575 session
->state
= ISCSI_STATE_FAILED
;
576 spin_unlock_irqrestore(&session
->lock
, flags
);
577 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
578 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
579 iscsi_conn_error(conn
->cls_conn
, err
);
581 EXPORT_SYMBOL_GPL(iscsi_conn_failure
);
583 static void iscsi_prep_mtask(struct iscsi_conn
*conn
,
584 struct iscsi_mgmt_task
*mtask
)
586 struct iscsi_session
*session
= conn
->session
;
587 struct iscsi_hdr
*hdr
= mtask
->hdr
;
588 struct iscsi_nopout
*nop
= (struct iscsi_nopout
*)hdr
;
590 if (hdr
->opcode
!= (ISCSI_OP_LOGIN
| ISCSI_OP_IMMEDIATE
) &&
591 hdr
->opcode
!= (ISCSI_OP_TEXT
| ISCSI_OP_IMMEDIATE
))
592 nop
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
594 * pre-format CmdSN for outgoing PDU.
596 nop
->cmdsn
= cpu_to_be32(session
->cmdsn
);
597 if (hdr
->itt
!= RESERVED_ITT
) {
598 hdr
->itt
= build_itt(mtask
->itt
, conn
->id
, session
->age
);
600 * TODO: We always use immediate, so we never hit this.
601 * If we start to send tmfs or nops as non-immediate then
602 * we should start checking the cmdsn numbers for mgmt tasks.
604 if (conn
->c_stage
== ISCSI_CONN_STARTED
&&
605 !(hdr
->opcode
& ISCSI_OP_IMMEDIATE
)) {
606 session
->queued_cmdsn
++;
611 if (session
->tt
->init_mgmt_task
)
612 session
->tt
->init_mgmt_task(conn
, mtask
);
614 debug_scsi("mgmtpdu [op 0x%x hdr->itt 0x%x datalen %d]\n",
615 hdr
->opcode
, hdr
->itt
, mtask
->data_count
);
618 static int iscsi_xmit_mtask(struct iscsi_conn
*conn
)
620 struct iscsi_hdr
*hdr
= conn
->mtask
->hdr
;
621 int rc
, was_logout
= 0;
623 spin_unlock_bh(&conn
->session
->lock
);
624 if ((hdr
->opcode
& ISCSI_OPCODE_MASK
) == ISCSI_OP_LOGOUT
) {
625 conn
->session
->state
= ISCSI_STATE_IN_RECOVERY
;
626 iscsi_block_session(session_to_cls(conn
->session
));
629 rc
= conn
->session
->tt
->xmit_mgmt_task(conn
, conn
->mtask
);
630 spin_lock_bh(&conn
->session
->lock
);
634 /* done with this in-progress mtask */
638 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
644 static int iscsi_check_cmdsn_window_closed(struct iscsi_conn
*conn
)
646 struct iscsi_session
*session
= conn
->session
;
649 * Check for iSCSI window and take care of CmdSN wrap-around
651 if (!iscsi_sna_lte(session
->queued_cmdsn
, session
->max_cmdsn
)) {
652 debug_scsi("iSCSI CmdSN closed. ExpCmdSn %u MaxCmdSN %u "
653 "CmdSN %u/%u\n", session
->exp_cmdsn
,
654 session
->max_cmdsn
, session
->cmdsn
,
655 session
->queued_cmdsn
);
661 static int iscsi_xmit_ctask(struct iscsi_conn
*conn
)
663 struct iscsi_cmd_task
*ctask
= conn
->ctask
;
667 * serialize with TMF AbortTask
669 if (ctask
->state
== ISCSI_TASK_ABORTING
)
672 __iscsi_get_ctask(ctask
);
673 spin_unlock_bh(&conn
->session
->lock
);
674 rc
= conn
->session
->tt
->xmit_cmd_task(conn
, ctask
);
675 spin_lock_bh(&conn
->session
->lock
);
676 __iscsi_put_ctask(ctask
);
680 /* done with this ctask */
686 * iscsi_data_xmit - xmit any command into the scheduled connection
687 * @conn: iscsi connection
690 * The function can return -EAGAIN in which case the caller must
691 * re-schedule it again later or recover. '0' return code means
694 static int iscsi_data_xmit(struct iscsi_conn
*conn
)
698 spin_lock_bh(&conn
->session
->lock
);
699 if (unlikely(conn
->suspend_tx
)) {
700 debug_scsi("conn %d Tx suspended!\n", conn
->id
);
701 spin_unlock_bh(&conn
->session
->lock
);
706 rc
= iscsi_xmit_ctask(conn
);
712 rc
= iscsi_xmit_mtask(conn
);
718 * process mgmt pdus like nops before commands since we should
719 * only have one nop-out as a ping from us and targets should not
720 * overflow us with nop-ins
723 while (__kfifo_get(conn
->mgmtqueue
, (void*)&conn
->mtask
,
725 iscsi_prep_mtask(conn
, conn
->mtask
);
726 list_add_tail(&conn
->mtask
->running
, &conn
->mgmt_run_list
);
727 rc
= iscsi_xmit_mtask(conn
);
732 /* process command queue */
733 while (!list_empty(&conn
->xmitqueue
)) {
735 * iscsi tcp may readd the task to the xmitqueue to send
738 conn
->ctask
= list_entry(conn
->xmitqueue
.next
,
739 struct iscsi_cmd_task
, running
);
740 if (conn
->ctask
->state
== ISCSI_TASK_PENDING
) {
741 iscsi_prep_scsi_cmd_pdu(conn
->ctask
);
742 conn
->session
->tt
->init_cmd_task(conn
->ctask
);
744 conn
->ctask
->state
= ISCSI_TASK_RUNNING
;
745 list_move_tail(conn
->xmitqueue
.next
, &conn
->run_list
);
746 rc
= iscsi_xmit_ctask(conn
);
750 * we could continuously get new ctask requests so
751 * we need to check the mgmt queue for nops that need to
752 * be sent to aviod starvation
754 if (__kfifo_len(conn
->mgmtqueue
))
757 spin_unlock_bh(&conn
->session
->lock
);
761 if (unlikely(conn
->suspend_tx
))
763 spin_unlock_bh(&conn
->session
->lock
);
767 static void iscsi_xmitworker(struct work_struct
*work
)
769 struct iscsi_conn
*conn
=
770 container_of(work
, struct iscsi_conn
, xmitwork
);
773 * serialize Xmit worker on a per-connection basis.
776 rc
= iscsi_data_xmit(conn
);
777 } while (rc
>= 0 || rc
== -EAGAIN
);
781 FAILURE_BAD_HOST
= 1,
782 FAILURE_SESSION_FAILED
,
783 FAILURE_SESSION_FREED
,
784 FAILURE_WINDOW_CLOSED
,
786 FAILURE_SESSION_TERMINATE
,
787 FAILURE_SESSION_IN_RECOVERY
,
788 FAILURE_SESSION_RECOVERY_TIMEOUT
,
791 int iscsi_queuecommand(struct scsi_cmnd
*sc
, void (*done
)(struct scsi_cmnd
*))
793 struct Scsi_Host
*host
;
795 struct iscsi_session
*session
;
796 struct iscsi_conn
*conn
;
797 struct iscsi_cmd_task
*ctask
= NULL
;
799 sc
->scsi_done
= done
;
803 host
= sc
->device
->host
;
804 session
= iscsi_hostdata(host
->hostdata
);
806 spin_lock(&session
->lock
);
809 * ISCSI_STATE_FAILED is a temp. state. The recovery
810 * code will decide what is best to do with command queued
813 if (session
->state
!= ISCSI_STATE_LOGGED_IN
&&
814 session
->state
!= ISCSI_STATE_FAILED
) {
816 * to handle the race between when we set the recovery state
817 * and block the session we requeue here (commands could
818 * be entering our queuecommand while a block is starting
819 * up because the block code is not locked)
821 if (session
->state
== ISCSI_STATE_IN_RECOVERY
) {
822 reason
= FAILURE_SESSION_IN_RECOVERY
;
826 if (session
->state
== ISCSI_STATE_RECOVERY_FAILED
)
827 reason
= FAILURE_SESSION_RECOVERY_TIMEOUT
;
828 else if (session
->state
== ISCSI_STATE_TERMINATE
)
829 reason
= FAILURE_SESSION_TERMINATE
;
831 reason
= FAILURE_SESSION_FREED
;
835 conn
= session
->leadconn
;
837 reason
= FAILURE_SESSION_FREED
;
841 if (iscsi_check_cmdsn_window_closed(conn
)) {
842 reason
= FAILURE_WINDOW_CLOSED
;
846 if (!__kfifo_get(session
->cmdpool
.queue
, (void*)&ctask
,
848 reason
= FAILURE_OOM
;
851 session
->queued_cmdsn
++;
853 sc
->SCp
.phase
= session
->age
;
854 sc
->SCp
.ptr
= (char *)ctask
;
856 atomic_set(&ctask
->refcount
, 1);
857 ctask
->state
= ISCSI_TASK_PENDING
;
861 INIT_LIST_HEAD(&ctask
->running
);
863 list_add_tail(&ctask
->running
, &conn
->xmitqueue
);
864 spin_unlock(&session
->lock
);
866 scsi_queue_work(host
, &conn
->xmitwork
);
870 spin_unlock(&session
->lock
);
871 debug_scsi("cmd 0x%x rejected (%d)\n", sc
->cmnd
[0], reason
);
872 return SCSI_MLQUEUE_HOST_BUSY
;
875 spin_unlock(&session
->lock
);
876 printk(KERN_ERR
"iscsi: cmd 0x%x is not queued (%d)\n",
877 sc
->cmnd
[0], reason
);
878 sc
->result
= (DID_NO_CONNECT
<< 16);
879 scsi_set_resid(sc
, scsi_bufflen(sc
));
883 EXPORT_SYMBOL_GPL(iscsi_queuecommand
);
885 int iscsi_change_queue_depth(struct scsi_device
*sdev
, int depth
)
887 if (depth
> ISCSI_MAX_CMD_PER_LUN
)
888 depth
= ISCSI_MAX_CMD_PER_LUN
;
889 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), depth
);
890 return sdev
->queue_depth
;
892 EXPORT_SYMBOL_GPL(iscsi_change_queue_depth
);
894 static struct iscsi_mgmt_task
*
895 __iscsi_conn_send_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
896 char *data
, uint32_t data_size
)
898 struct iscsi_session
*session
= conn
->session
;
899 struct iscsi_mgmt_task
*mtask
;
901 if (session
->state
== ISCSI_STATE_TERMINATE
)
904 if (hdr
->opcode
== (ISCSI_OP_LOGIN
| ISCSI_OP_IMMEDIATE
) ||
905 hdr
->opcode
== (ISCSI_OP_TEXT
| ISCSI_OP_IMMEDIATE
))
907 * Login and Text are sent serially, in
908 * request-followed-by-response sequence.
909 * Same mtask can be used. Same ITT must be used.
910 * Note that login_mtask is preallocated at conn_create().
912 mtask
= conn
->login_mtask
;
914 BUG_ON(conn
->c_stage
== ISCSI_CONN_INITIAL_STAGE
);
915 BUG_ON(conn
->c_stage
== ISCSI_CONN_STOPPED
);
917 if (!__kfifo_get(session
->mgmtpool
.queue
,
918 (void*)&mtask
, sizeof(void*)))
923 memcpy(mtask
->data
, data
, data_size
);
924 mtask
->data_count
= data_size
;
926 mtask
->data_count
= 0;
928 INIT_LIST_HEAD(&mtask
->running
);
929 memcpy(mtask
->hdr
, hdr
, sizeof(struct iscsi_hdr
));
930 __kfifo_put(conn
->mgmtqueue
, (void*)&mtask
, sizeof(void*));
934 int iscsi_conn_send_pdu(struct iscsi_cls_conn
*cls_conn
, struct iscsi_hdr
*hdr
,
935 char *data
, uint32_t data_size
)
937 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
938 struct iscsi_session
*session
= conn
->session
;
941 spin_lock_bh(&session
->lock
);
942 if (!__iscsi_conn_send_pdu(conn
, hdr
, data
, data_size
))
944 spin_unlock_bh(&session
->lock
);
945 scsi_queue_work(session
->host
, &conn
->xmitwork
);
948 EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu
);
950 void iscsi_session_recovery_timedout(struct iscsi_cls_session
*cls_session
)
952 struct iscsi_session
*session
= class_to_transport_session(cls_session
);
953 struct iscsi_conn
*conn
= session
->leadconn
;
955 spin_lock_bh(&session
->lock
);
956 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
957 session
->state
= ISCSI_STATE_RECOVERY_FAILED
;
959 wake_up(&conn
->ehwait
);
961 spin_unlock_bh(&session
->lock
);
963 EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout
);
965 int iscsi_eh_host_reset(struct scsi_cmnd
*sc
)
967 struct Scsi_Host
*host
= sc
->device
->host
;
968 struct iscsi_session
*session
= iscsi_hostdata(host
->hostdata
);
969 struct iscsi_conn
*conn
= session
->leadconn
;
970 int fail_session
= 0;
972 spin_lock_bh(&session
->lock
);
973 if (session
->state
== ISCSI_STATE_TERMINATE
) {
975 debug_scsi("failing host reset: session terminated "
976 "[CID %d age %d]\n", conn
->id
, session
->age
);
977 spin_unlock_bh(&session
->lock
);
981 if (sc
->SCp
.phase
== session
->age
) {
982 debug_scsi("failing connection CID %d due to SCSI host reset\n",
986 spin_unlock_bh(&session
->lock
);
989 * we drop the lock here but the leadconn cannot be destoyed while
990 * we are in the scsi eh
993 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
995 debug_scsi("iscsi_eh_host_reset wait for relogin\n");
996 wait_event_interruptible(conn
->ehwait
,
997 session
->state
== ISCSI_STATE_TERMINATE
||
998 session
->state
== ISCSI_STATE_LOGGED_IN
||
999 session
->state
== ISCSI_STATE_RECOVERY_FAILED
);
1000 if (signal_pending(current
))
1001 flush_signals(current
);
1003 spin_lock_bh(&session
->lock
);
1004 if (session
->state
== ISCSI_STATE_LOGGED_IN
)
1005 printk(KERN_INFO
"iscsi: host reset succeeded\n");
1008 spin_unlock_bh(&session
->lock
);
1012 EXPORT_SYMBOL_GPL(iscsi_eh_host_reset
);
1014 static void iscsi_tmabort_timedout(unsigned long data
)
1016 struct iscsi_cmd_task
*ctask
= (struct iscsi_cmd_task
*)data
;
1017 struct iscsi_conn
*conn
= ctask
->conn
;
1018 struct iscsi_session
*session
= conn
->session
;
1020 spin_lock(&session
->lock
);
1021 if (conn
->tmabort_state
== TMABORT_INITIAL
) {
1022 conn
->tmabort_state
= TMABORT_TIMEDOUT
;
1023 debug_scsi("tmabort timedout [sc %p itt 0x%x]\n",
1024 ctask
->sc
, ctask
->itt
);
1025 /* unblock eh_abort() */
1026 wake_up(&conn
->ehwait
);
1028 spin_unlock(&session
->lock
);
1031 static int iscsi_exec_abort_task(struct scsi_cmnd
*sc
,
1032 struct iscsi_cmd_task
*ctask
)
1034 struct iscsi_conn
*conn
= ctask
->conn
;
1035 struct iscsi_session
*session
= conn
->session
;
1036 struct iscsi_tm
*hdr
= &conn
->tmhdr
;
1039 * ctask timed out but session is OK requests must be serialized.
1041 memset(hdr
, 0, sizeof(struct iscsi_tm
));
1042 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
1043 hdr
->flags
= ISCSI_TM_FUNC_ABORT_TASK
;
1044 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
1045 memcpy(hdr
->lun
, ctask
->hdr
->lun
, sizeof(hdr
->lun
));
1046 hdr
->rtt
= ctask
->hdr
->itt
;
1047 hdr
->refcmdsn
= ctask
->hdr
->cmdsn
;
1049 ctask
->mtask
= __iscsi_conn_send_pdu(conn
, (struct iscsi_hdr
*)hdr
,
1051 if (!ctask
->mtask
) {
1052 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1053 debug_scsi("abort sent failure [itt 0x%x]\n", ctask
->itt
);
1056 ctask
->state
= ISCSI_TASK_ABORTING
;
1058 debug_scsi("abort sent [itt 0x%x]\n", ctask
->itt
);
1060 if (conn
->tmabort_state
== TMABORT_INITIAL
) {
1061 conn
->tmfcmd_pdus_cnt
++;
1062 conn
->tmabort_timer
.expires
= 20*HZ
+ jiffies
;
1063 conn
->tmabort_timer
.function
= iscsi_tmabort_timedout
;
1064 conn
->tmabort_timer
.data
= (unsigned long)ctask
;
1065 add_timer(&conn
->tmabort_timer
);
1066 debug_scsi("abort set timeout [itt 0x%x]\n", ctask
->itt
);
1068 spin_unlock_bh(&session
->lock
);
1069 scsi_queue_work(session
->host
, &conn
->xmitwork
);
1072 * block eh thread until:
1076 * 3) session is terminated or restarted or userspace has
1077 * given up on recovery
1079 wait_event_interruptible(conn
->ehwait
,
1080 sc
->SCp
.phase
!= session
->age
||
1081 session
->state
!= ISCSI_STATE_LOGGED_IN
||
1082 conn
->tmabort_state
!= TMABORT_INITIAL
);
1083 if (signal_pending(current
))
1084 flush_signals(current
);
1085 del_timer_sync(&conn
->tmabort_timer
);
1086 spin_lock_bh(&session
->lock
);
1091 * session lock must be held
1093 static struct iscsi_mgmt_task
*
1094 iscsi_remove_mgmt_task(struct kfifo
*fifo
, uint32_t itt
)
1096 int i
, nr_tasks
= __kfifo_len(fifo
) / sizeof(void*);
1097 struct iscsi_mgmt_task
*task
;
1099 debug_scsi("searching %d tasks\n", nr_tasks
);
1101 for (i
= 0; i
< nr_tasks
; i
++) {
1102 __kfifo_get(fifo
, (void*)&task
, sizeof(void*));
1103 debug_scsi("check task %u\n", task
->itt
);
1105 if (task
->itt
== itt
) {
1106 debug_scsi("matched task\n");
1110 __kfifo_put(fifo
, (void*)&task
, sizeof(void*));
1115 static int iscsi_ctask_mtask_cleanup(struct iscsi_cmd_task
*ctask
)
1117 struct iscsi_conn
*conn
= ctask
->conn
;
1118 struct iscsi_session
*session
= conn
->session
;
1123 if (!iscsi_remove_mgmt_task(conn
->mgmtqueue
, ctask
->mtask
->itt
))
1124 list_del(&ctask
->mtask
->running
);
1125 __kfifo_put(session
->mgmtpool
.queue
, (void*)&ctask
->mtask
,
1127 ctask
->mtask
= NULL
;
1132 * session lock must be held
1134 static void fail_command(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
,
1137 struct scsi_cmnd
*sc
;
1143 if (ctask
->state
== ISCSI_TASK_PENDING
)
1145 * cmd never made it to the xmit thread, so we should not count
1146 * the cmd in the sequencing
1148 conn
->session
->queued_cmdsn
--;
1150 conn
->session
->tt
->cleanup_cmd_task(conn
, ctask
);
1151 iscsi_ctask_mtask_cleanup(ctask
);
1154 scsi_set_resid(sc
, scsi_bufflen(sc
));
1155 if (conn
->ctask
== ctask
)
1157 /* release ref from queuecommand */
1158 __iscsi_put_ctask(ctask
);
1161 int iscsi_eh_abort(struct scsi_cmnd
*sc
)
1163 struct iscsi_cmd_task
*ctask
;
1164 struct iscsi_conn
*conn
;
1165 struct iscsi_session
*session
;
1169 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
1173 debug_scsi("sc never reached iscsi layer or it completed.\n");
1177 ctask
= (struct iscsi_cmd_task
*)sc
->SCp
.ptr
;
1179 session
= conn
->session
;
1181 conn
->eh_abort_cnt
++;
1182 debug_scsi("aborting [sc %p itt 0x%x]\n", sc
, ctask
->itt
);
1184 spin_lock_bh(&session
->lock
);
1187 * If we are not logged in or we have started a new session
1188 * then let the host reset code handle this
1190 if (session
->state
!= ISCSI_STATE_LOGGED_IN
||
1191 sc
->SCp
.phase
!= session
->age
)
1194 /* ctask completed before time out */
1196 debug_scsi("sc completed while abort in progress\n");
1200 /* what should we do here ? */
1201 if (conn
->ctask
== ctask
) {
1202 printk(KERN_INFO
"iscsi: sc %p itt 0x%x partially sent. "
1203 "Failing abort\n", sc
, ctask
->itt
);
1207 if (ctask
->state
== ISCSI_TASK_PENDING
) {
1208 fail_command(conn
, ctask
, DID_ABORT
<< 16);
1212 conn
->tmabort_state
= TMABORT_INITIAL
;
1213 rc
= iscsi_exec_abort_task(sc
, ctask
);
1214 if (rc
|| sc
->SCp
.phase
!= session
->age
||
1215 session
->state
!= ISCSI_STATE_LOGGED_IN
)
1217 iscsi_ctask_mtask_cleanup(ctask
);
1219 switch (conn
->tmabort_state
) {
1220 case TMABORT_SUCCESS
:
1221 spin_unlock_bh(&session
->lock
);
1223 * clean up task if aborted. grab the recv lock as a writer
1225 write_lock_bh(conn
->recv_lock
);
1226 spin_lock(&session
->lock
);
1227 fail_command(conn
, ctask
, DID_ABORT
<< 16);
1228 spin_unlock(&session
->lock
);
1229 write_unlock_bh(conn
->recv_lock
);
1231 * make sure xmit thread is not still touching the
1234 scsi_flush_work(session
->host
);
1235 goto success_unlocked
;
1236 case TMABORT_NOT_FOUND
:
1238 /* ctask completed before tmf abort response */
1239 debug_scsi("sc completed while abort in progress\n");
1244 /* timedout or failed */
1245 spin_unlock_bh(&session
->lock
);
1246 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1247 goto failed_unlocked
;
1251 spin_unlock_bh(&session
->lock
);
1253 debug_scsi("abort success [sc %lx itt 0x%x]\n", (long)sc
, ctask
->itt
);
1257 spin_unlock_bh(&session
->lock
);
1259 debug_scsi("abort failed [sc %lx itt 0x%x]\n", (long)sc
, ctask
->itt
);
1262 EXPORT_SYMBOL_GPL(iscsi_eh_abort
);
1265 iscsi_pool_init(struct iscsi_queue
*q
, int max
, void ***items
, int item_size
)
1269 *items
= kmalloc(max
* sizeof(void*), GFP_KERNEL
);
1274 q
->pool
= kmalloc(max
* sizeof(void*), GFP_KERNEL
);
1275 if (q
->pool
== NULL
) {
1280 q
->queue
= kfifo_init((void*)q
->pool
, max
* sizeof(void*),
1282 if (q
->queue
== ERR_PTR(-ENOMEM
)) {
1288 for (i
= 0; i
< max
; i
++) {
1289 q
->pool
[i
] = kmalloc(item_size
, GFP_KERNEL
);
1290 if (q
->pool
[i
] == NULL
) {
1293 for (j
= 0; j
< i
; j
++)
1296 kfifo_free(q
->queue
);
1301 memset(q
->pool
[i
], 0, item_size
);
1302 (*items
)[i
] = q
->pool
[i
];
1303 __kfifo_put(q
->queue
, (void*)&q
->pool
[i
], sizeof(void*));
1307 EXPORT_SYMBOL_GPL(iscsi_pool_init
);
1309 void iscsi_pool_free(struct iscsi_queue
*q
, void **items
)
1313 for (i
= 0; i
< q
->max
; i
++)
1318 EXPORT_SYMBOL_GPL(iscsi_pool_free
);
1321 * iSCSI Session's hostdata organization:
1323 * *------------------* <== hostdata_session(host->hostdata)
1324 * | ptr to class sess|
1325 * |------------------| <== iscsi_hostdata(host->hostdata)
1327 * *------------------*
1330 #define hostdata_privsize(_sz) (sizeof(unsigned long) + _sz + \
1331 _sz % sizeof(unsigned long))
1333 #define hostdata_session(_hostdata) (iscsi_ptr(*(unsigned long *)_hostdata))
1336 * iscsi_session_setup - create iscsi cls session and host and session
1337 * @scsit: scsi transport template
1338 * @iscsit: iscsi transport template
1339 * @cmds_max: scsi host can queue
1340 * @qdepth: scsi host cmds per lun
1341 * @cmd_task_size: LLD ctask private data size
1342 * @mgmt_task_size: LLD mtask private data size
1343 * @initial_cmdsn: initial CmdSN
1344 * @hostno: host no allocated
1346 * This can be used by software iscsi_transports that allocate
1347 * a session per scsi host.
1349 struct iscsi_cls_session
*
1350 iscsi_session_setup(struct iscsi_transport
*iscsit
,
1351 struct scsi_transport_template
*scsit
,
1352 uint16_t cmds_max
, uint16_t qdepth
,
1353 int cmd_task_size
, int mgmt_task_size
,
1354 uint32_t initial_cmdsn
, uint32_t *hostno
)
1356 struct Scsi_Host
*shost
;
1357 struct iscsi_session
*session
;
1358 struct iscsi_cls_session
*cls_session
;
1361 if (qdepth
> ISCSI_MAX_CMD_PER_LUN
|| qdepth
< 1) {
1363 printk(KERN_ERR
"iscsi: invalid queue depth of %d. "
1364 "Queue depth must be between 1 and %d.\n",
1365 qdepth
, ISCSI_MAX_CMD_PER_LUN
);
1366 qdepth
= ISCSI_DEF_CMD_PER_LUN
;
1369 if (cmds_max
< 2 || (cmds_max
& (cmds_max
- 1)) ||
1370 cmds_max
>= ISCSI_MGMT_ITT_OFFSET
) {
1372 printk(KERN_ERR
"iscsi: invalid can_queue of %d. "
1373 "can_queue must be a power of 2 and between "
1374 "2 and %d - setting to %d.\n", cmds_max
,
1375 ISCSI_MGMT_ITT_OFFSET
, ISCSI_DEF_XMIT_CMDS_MAX
);
1376 cmds_max
= ISCSI_DEF_XMIT_CMDS_MAX
;
1379 shost
= scsi_host_alloc(iscsit
->host_template
,
1380 hostdata_privsize(sizeof(*session
)));
1384 /* the iscsi layer takes one task for reserve */
1385 shost
->can_queue
= cmds_max
- 1;
1386 shost
->cmd_per_lun
= qdepth
;
1388 shost
->max_channel
= 0;
1389 shost
->max_lun
= iscsit
->max_lun
;
1390 shost
->max_cmd_len
= iscsit
->max_cmd_len
;
1391 shost
->transportt
= scsit
;
1392 shost
->transportt
->create_work_queue
= 1;
1393 *hostno
= shost
->host_no
;
1395 session
= iscsi_hostdata(shost
->hostdata
);
1396 memset(session
, 0, sizeof(struct iscsi_session
));
1397 session
->host
= shost
;
1398 session
->state
= ISCSI_STATE_FREE
;
1399 session
->mgmtpool_max
= ISCSI_MGMT_CMDS_MAX
;
1400 session
->cmds_max
= cmds_max
;
1401 session
->queued_cmdsn
= session
->cmdsn
= initial_cmdsn
;
1402 session
->exp_cmdsn
= initial_cmdsn
+ 1;
1403 session
->max_cmdsn
= initial_cmdsn
+ 1;
1404 session
->max_r2t
= 1;
1405 session
->tt
= iscsit
;
1407 /* initialize SCSI PDU commands pool */
1408 if (iscsi_pool_init(&session
->cmdpool
, session
->cmds_max
,
1409 (void***)&session
->cmds
,
1410 cmd_task_size
+ sizeof(struct iscsi_cmd_task
)))
1411 goto cmdpool_alloc_fail
;
1413 /* pre-format cmds pool with ITT */
1414 for (cmd_i
= 0; cmd_i
< session
->cmds_max
; cmd_i
++) {
1415 struct iscsi_cmd_task
*ctask
= session
->cmds
[cmd_i
];
1418 ctask
->dd_data
= &ctask
[1];
1420 INIT_LIST_HEAD(&ctask
->running
);
1423 spin_lock_init(&session
->lock
);
1425 /* initialize immediate command pool */
1426 if (iscsi_pool_init(&session
->mgmtpool
, session
->mgmtpool_max
,
1427 (void***)&session
->mgmt_cmds
,
1428 mgmt_task_size
+ sizeof(struct iscsi_mgmt_task
)))
1429 goto mgmtpool_alloc_fail
;
1432 /* pre-format immediate cmds pool with ITT */
1433 for (cmd_i
= 0; cmd_i
< session
->mgmtpool_max
; cmd_i
++) {
1434 struct iscsi_mgmt_task
*mtask
= session
->mgmt_cmds
[cmd_i
];
1437 mtask
->dd_data
= &mtask
[1];
1438 mtask
->itt
= ISCSI_MGMT_ITT_OFFSET
+ cmd_i
;
1439 INIT_LIST_HEAD(&mtask
->running
);
1442 if (scsi_add_host(shost
, NULL
))
1445 if (!try_module_get(iscsit
->owner
))
1446 goto cls_session_fail
;
1448 cls_session
= iscsi_create_session(shost
, iscsit
, 0);
1451 *(unsigned long*)shost
->hostdata
= (unsigned long)cls_session
;
1456 module_put(iscsit
->owner
);
1458 scsi_remove_host(shost
);
1460 iscsi_pool_free(&session
->mgmtpool
, (void**)session
->mgmt_cmds
);
1461 mgmtpool_alloc_fail
:
1462 iscsi_pool_free(&session
->cmdpool
, (void**)session
->cmds
);
1464 scsi_host_put(shost
);
1467 EXPORT_SYMBOL_GPL(iscsi_session_setup
);
1470 * iscsi_session_teardown - destroy session, host, and cls_session
1473 * This can be used by software iscsi_transports that allocate
1474 * a session per scsi host.
1476 void iscsi_session_teardown(struct iscsi_cls_session
*cls_session
)
1478 struct Scsi_Host
*shost
= iscsi_session_to_shost(cls_session
);
1479 struct iscsi_session
*session
= iscsi_hostdata(shost
->hostdata
);
1480 struct module
*owner
= cls_session
->transport
->owner
;
1482 iscsi_unblock_session(cls_session
);
1483 scsi_remove_host(shost
);
1485 iscsi_pool_free(&session
->mgmtpool
, (void**)session
->mgmt_cmds
);
1486 iscsi_pool_free(&session
->cmdpool
, (void**)session
->cmds
);
1488 kfree(session
->password
);
1489 kfree(session
->password_in
);
1490 kfree(session
->username
);
1491 kfree(session
->username_in
);
1492 kfree(session
->targetname
);
1493 kfree(session
->netdev
);
1494 kfree(session
->hwaddress
);
1495 kfree(session
->initiatorname
);
1497 iscsi_destroy_session(cls_session
);
1498 scsi_host_put(shost
);
1501 EXPORT_SYMBOL_GPL(iscsi_session_teardown
);
1504 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
1505 * @cls_session: iscsi_cls_session
1508 struct iscsi_cls_conn
*
1509 iscsi_conn_setup(struct iscsi_cls_session
*cls_session
, uint32_t conn_idx
)
1511 struct iscsi_session
*session
= class_to_transport_session(cls_session
);
1512 struct iscsi_conn
*conn
;
1513 struct iscsi_cls_conn
*cls_conn
;
1516 cls_conn
= iscsi_create_conn(cls_session
, conn_idx
);
1519 conn
= cls_conn
->dd_data
;
1520 memset(conn
, 0, sizeof(*conn
));
1522 conn
->session
= session
;
1523 conn
->cls_conn
= cls_conn
;
1524 conn
->c_stage
= ISCSI_CONN_INITIAL_STAGE
;
1525 conn
->id
= conn_idx
;
1526 conn
->exp_statsn
= 0;
1527 conn
->tmabort_state
= TMABORT_INITIAL
;
1528 INIT_LIST_HEAD(&conn
->run_list
);
1529 INIT_LIST_HEAD(&conn
->mgmt_run_list
);
1530 INIT_LIST_HEAD(&conn
->xmitqueue
);
1532 /* initialize general immediate & non-immediate PDU commands queue */
1533 conn
->mgmtqueue
= kfifo_alloc(session
->mgmtpool_max
* sizeof(void*),
1535 if (conn
->mgmtqueue
== ERR_PTR(-ENOMEM
))
1536 goto mgmtqueue_alloc_fail
;
1538 INIT_WORK(&conn
->xmitwork
, iscsi_xmitworker
);
1540 /* allocate login_mtask used for the login/text sequences */
1541 spin_lock_bh(&session
->lock
);
1542 if (!__kfifo_get(session
->mgmtpool
.queue
,
1543 (void*)&conn
->login_mtask
,
1545 spin_unlock_bh(&session
->lock
);
1546 goto login_mtask_alloc_fail
;
1548 spin_unlock_bh(&session
->lock
);
1550 data
= kmalloc(ISCSI_DEF_MAX_RECV_SEG_LEN
, GFP_KERNEL
);
1552 goto login_mtask_data_alloc_fail
;
1553 conn
->login_mtask
->data
= conn
->data
= data
;
1555 init_timer(&conn
->tmabort_timer
);
1556 init_waitqueue_head(&conn
->ehwait
);
1560 login_mtask_data_alloc_fail
:
1561 __kfifo_put(session
->mgmtpool
.queue
, (void*)&conn
->login_mtask
,
1563 login_mtask_alloc_fail
:
1564 kfifo_free(conn
->mgmtqueue
);
1565 mgmtqueue_alloc_fail
:
1566 iscsi_destroy_conn(cls_conn
);
1569 EXPORT_SYMBOL_GPL(iscsi_conn_setup
);
1572 * iscsi_conn_teardown - teardown iscsi connection
1573 * cls_conn: iscsi class connection
1575 * TODO: we may need to make this into a two step process
1576 * like scsi-mls remove + put host
1578 void iscsi_conn_teardown(struct iscsi_cls_conn
*cls_conn
)
1580 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1581 struct iscsi_session
*session
= conn
->session
;
1582 unsigned long flags
;
1584 spin_lock_bh(&session
->lock
);
1585 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1586 conn
->c_stage
= ISCSI_CONN_CLEANUP_WAIT
;
1587 if (session
->leadconn
== conn
) {
1589 * leading connection? then give up on recovery.
1591 session
->state
= ISCSI_STATE_TERMINATE
;
1592 wake_up(&conn
->ehwait
);
1594 spin_unlock_bh(&session
->lock
);
1597 * Block until all in-progress commands for this connection
1601 spin_lock_irqsave(session
->host
->host_lock
, flags
);
1602 if (!session
->host
->host_busy
) { /* OK for ERL == 0 */
1603 spin_unlock_irqrestore(session
->host
->host_lock
, flags
);
1606 spin_unlock_irqrestore(session
->host
->host_lock
, flags
);
1607 msleep_interruptible(500);
1608 printk(KERN_INFO
"iscsi: scsi conn_destroy(): host_busy %d "
1609 "host_failed %d\n", session
->host
->host_busy
,
1610 session
->host
->host_failed
);
1612 * force eh_abort() to unblock
1614 wake_up(&conn
->ehwait
);
1617 /* flush queued up work because we free the connection below */
1618 scsi_flush_work(session
->host
);
1620 spin_lock_bh(&session
->lock
);
1622 kfree(conn
->persistent_address
);
1623 __kfifo_put(session
->mgmtpool
.queue
, (void*)&conn
->login_mtask
,
1625 if (session
->leadconn
== conn
)
1626 session
->leadconn
= NULL
;
1627 spin_unlock_bh(&session
->lock
);
1629 kfifo_free(conn
->mgmtqueue
);
1631 iscsi_destroy_conn(cls_conn
);
1633 EXPORT_SYMBOL_GPL(iscsi_conn_teardown
);
1635 int iscsi_conn_start(struct iscsi_cls_conn
*cls_conn
)
1637 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1638 struct iscsi_session
*session
= conn
->session
;
1641 printk(KERN_ERR
"iscsi: can't start unbound connection\n");
1645 if ((session
->imm_data_en
|| !session
->initial_r2t_en
) &&
1646 session
->first_burst
> session
->max_burst
) {
1647 printk("iscsi: invalid burst lengths: "
1648 "first_burst %d max_burst %d\n",
1649 session
->first_burst
, session
->max_burst
);
1653 spin_lock_bh(&session
->lock
);
1654 conn
->c_stage
= ISCSI_CONN_STARTED
;
1655 session
->state
= ISCSI_STATE_LOGGED_IN
;
1656 session
->queued_cmdsn
= session
->cmdsn
;
1658 switch(conn
->stop_stage
) {
1659 case STOP_CONN_RECOVER
:
1661 * unblock eh_abort() if it is blocked. re-try all
1662 * commands after successful recovery
1664 conn
->stop_stage
= 0;
1665 conn
->tmabort_state
= TMABORT_INITIAL
;
1667 spin_unlock_bh(&session
->lock
);
1669 iscsi_unblock_session(session_to_cls(session
));
1670 wake_up(&conn
->ehwait
);
1672 case STOP_CONN_TERM
:
1673 conn
->stop_stage
= 0;
1678 spin_unlock_bh(&session
->lock
);
1682 EXPORT_SYMBOL_GPL(iscsi_conn_start
);
1685 flush_control_queues(struct iscsi_session
*session
, struct iscsi_conn
*conn
)
1687 struct iscsi_mgmt_task
*mtask
, *tmp
;
1689 /* handle pending */
1690 while (__kfifo_get(conn
->mgmtqueue
, (void*)&mtask
, sizeof(void*))) {
1691 if (mtask
== conn
->login_mtask
)
1693 debug_scsi("flushing pending mgmt task itt 0x%x\n", mtask
->itt
);
1694 __kfifo_put(session
->mgmtpool
.queue
, (void*)&mtask
,
1698 /* handle running */
1699 list_for_each_entry_safe(mtask
, tmp
, &conn
->mgmt_run_list
, running
) {
1700 debug_scsi("flushing running mgmt task itt 0x%x\n", mtask
->itt
);
1701 list_del(&mtask
->running
);
1703 if (mtask
== conn
->login_mtask
)
1705 __kfifo_put(session
->mgmtpool
.queue
, (void*)&mtask
,
1712 /* Fail commands. Mutex and session lock held and recv side suspended */
1713 static void fail_all_commands(struct iscsi_conn
*conn
)
1715 struct iscsi_cmd_task
*ctask
, *tmp
;
1718 list_for_each_entry_safe(ctask
, tmp
, &conn
->xmitqueue
, running
) {
1719 debug_scsi("failing pending sc %p itt 0x%x\n", ctask
->sc
,
1721 fail_command(conn
, ctask
, DID_BUS_BUSY
<< 16);
1724 /* fail all other running */
1725 list_for_each_entry_safe(ctask
, tmp
, &conn
->run_list
, running
) {
1726 debug_scsi("failing in progress sc %p itt 0x%x\n",
1727 ctask
->sc
, ctask
->itt
);
1728 fail_command(conn
, ctask
, DID_BUS_BUSY
<< 16);
1734 static void iscsi_start_session_recovery(struct iscsi_session
*session
,
1735 struct iscsi_conn
*conn
, int flag
)
1739 spin_lock_bh(&session
->lock
);
1740 if (conn
->stop_stage
== STOP_CONN_TERM
) {
1741 spin_unlock_bh(&session
->lock
);
1746 * When this is called for the in_login state, we only want to clean
1747 * up the login task and connection. We do not need to block and set
1748 * the recovery state again
1750 if (flag
== STOP_CONN_TERM
)
1751 session
->state
= ISCSI_STATE_TERMINATE
;
1752 else if (conn
->stop_stage
!= STOP_CONN_RECOVER
)
1753 session
->state
= ISCSI_STATE_IN_RECOVERY
;
1755 old_stop_stage
= conn
->stop_stage
;
1756 conn
->stop_stage
= flag
;
1757 conn
->c_stage
= ISCSI_CONN_STOPPED
;
1758 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1759 spin_unlock_bh(&session
->lock
);
1760 scsi_flush_work(session
->host
);
1762 write_lock_bh(conn
->recv_lock
);
1763 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
1764 write_unlock_bh(conn
->recv_lock
);
1767 * for connection level recovery we should not calculate
1768 * header digest. conn->hdr_size used for optimization
1769 * in hdr_extract() and will be re-negotiated at
1772 if (flag
== STOP_CONN_RECOVER
) {
1773 conn
->hdrdgst_en
= 0;
1774 conn
->datadgst_en
= 0;
1775 if (session
->state
== ISCSI_STATE_IN_RECOVERY
&&
1776 old_stop_stage
!= STOP_CONN_RECOVER
) {
1777 debug_scsi("blocking session\n");
1778 iscsi_block_session(session_to_cls(session
));
1785 spin_lock_bh(&session
->lock
);
1786 fail_all_commands(conn
);
1787 flush_control_queues(session
, conn
);
1788 spin_unlock_bh(&session
->lock
);
1791 void iscsi_conn_stop(struct iscsi_cls_conn
*cls_conn
, int flag
)
1793 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1794 struct iscsi_session
*session
= conn
->session
;
1797 case STOP_CONN_RECOVER
:
1798 case STOP_CONN_TERM
:
1799 iscsi_start_session_recovery(session
, conn
, flag
);
1802 printk(KERN_ERR
"iscsi: invalid stop flag %d\n", flag
);
1805 EXPORT_SYMBOL_GPL(iscsi_conn_stop
);
1807 int iscsi_conn_bind(struct iscsi_cls_session
*cls_session
,
1808 struct iscsi_cls_conn
*cls_conn
, int is_leading
)
1810 struct iscsi_session
*session
= class_to_transport_session(cls_session
);
1811 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1813 spin_lock_bh(&session
->lock
);
1815 session
->leadconn
= conn
;
1816 spin_unlock_bh(&session
->lock
);
1819 * Unblock xmitworker(), Login Phase will pass through.
1821 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
1822 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1825 EXPORT_SYMBOL_GPL(iscsi_conn_bind
);
1828 int iscsi_set_param(struct iscsi_cls_conn
*cls_conn
,
1829 enum iscsi_param param
, char *buf
, int buflen
)
1831 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1832 struct iscsi_session
*session
= conn
->session
;
1836 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
1837 sscanf(buf
, "%d", &conn
->max_recv_dlength
);
1839 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
1840 sscanf(buf
, "%d", &conn
->max_xmit_dlength
);
1842 case ISCSI_PARAM_HDRDGST_EN
:
1843 sscanf(buf
, "%d", &conn
->hdrdgst_en
);
1845 case ISCSI_PARAM_DATADGST_EN
:
1846 sscanf(buf
, "%d", &conn
->datadgst_en
);
1848 case ISCSI_PARAM_INITIAL_R2T_EN
:
1849 sscanf(buf
, "%d", &session
->initial_r2t_en
);
1851 case ISCSI_PARAM_MAX_R2T
:
1852 sscanf(buf
, "%d", &session
->max_r2t
);
1854 case ISCSI_PARAM_IMM_DATA_EN
:
1855 sscanf(buf
, "%d", &session
->imm_data_en
);
1857 case ISCSI_PARAM_FIRST_BURST
:
1858 sscanf(buf
, "%d", &session
->first_burst
);
1860 case ISCSI_PARAM_MAX_BURST
:
1861 sscanf(buf
, "%d", &session
->max_burst
);
1863 case ISCSI_PARAM_PDU_INORDER_EN
:
1864 sscanf(buf
, "%d", &session
->pdu_inorder_en
);
1866 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
1867 sscanf(buf
, "%d", &session
->dataseq_inorder_en
);
1869 case ISCSI_PARAM_ERL
:
1870 sscanf(buf
, "%d", &session
->erl
);
1872 case ISCSI_PARAM_IFMARKER_EN
:
1873 sscanf(buf
, "%d", &value
);
1876 case ISCSI_PARAM_OFMARKER_EN
:
1877 sscanf(buf
, "%d", &value
);
1880 case ISCSI_PARAM_EXP_STATSN
:
1881 sscanf(buf
, "%u", &conn
->exp_statsn
);
1883 case ISCSI_PARAM_USERNAME
:
1884 kfree(session
->username
);
1885 session
->username
= kstrdup(buf
, GFP_KERNEL
);
1886 if (!session
->username
)
1889 case ISCSI_PARAM_USERNAME_IN
:
1890 kfree(session
->username_in
);
1891 session
->username_in
= kstrdup(buf
, GFP_KERNEL
);
1892 if (!session
->username_in
)
1895 case ISCSI_PARAM_PASSWORD
:
1896 kfree(session
->password
);
1897 session
->password
= kstrdup(buf
, GFP_KERNEL
);
1898 if (!session
->password
)
1901 case ISCSI_PARAM_PASSWORD_IN
:
1902 kfree(session
->password_in
);
1903 session
->password_in
= kstrdup(buf
, GFP_KERNEL
);
1904 if (!session
->password_in
)
1907 case ISCSI_PARAM_TARGET_NAME
:
1908 /* this should not change between logins */
1909 if (session
->targetname
)
1912 session
->targetname
= kstrdup(buf
, GFP_KERNEL
);
1913 if (!session
->targetname
)
1916 case ISCSI_PARAM_TPGT
:
1917 sscanf(buf
, "%d", &session
->tpgt
);
1919 case ISCSI_PARAM_PERSISTENT_PORT
:
1920 sscanf(buf
, "%d", &conn
->persistent_port
);
1922 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
1924 * this is the address returned in discovery so it should
1925 * not change between logins.
1927 if (conn
->persistent_address
)
1930 conn
->persistent_address
= kstrdup(buf
, GFP_KERNEL
);
1931 if (!conn
->persistent_address
)
1940 EXPORT_SYMBOL_GPL(iscsi_set_param
);
1942 int iscsi_session_get_param(struct iscsi_cls_session
*cls_session
,
1943 enum iscsi_param param
, char *buf
)
1945 struct Scsi_Host
*shost
= iscsi_session_to_shost(cls_session
);
1946 struct iscsi_session
*session
= iscsi_hostdata(shost
->hostdata
);
1950 case ISCSI_PARAM_INITIAL_R2T_EN
:
1951 len
= sprintf(buf
, "%d\n", session
->initial_r2t_en
);
1953 case ISCSI_PARAM_MAX_R2T
:
1954 len
= sprintf(buf
, "%hu\n", session
->max_r2t
);
1956 case ISCSI_PARAM_IMM_DATA_EN
:
1957 len
= sprintf(buf
, "%d\n", session
->imm_data_en
);
1959 case ISCSI_PARAM_FIRST_BURST
:
1960 len
= sprintf(buf
, "%u\n", session
->first_burst
);
1962 case ISCSI_PARAM_MAX_BURST
:
1963 len
= sprintf(buf
, "%u\n", session
->max_burst
);
1965 case ISCSI_PARAM_PDU_INORDER_EN
:
1966 len
= sprintf(buf
, "%d\n", session
->pdu_inorder_en
);
1968 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
1969 len
= sprintf(buf
, "%d\n", session
->dataseq_inorder_en
);
1971 case ISCSI_PARAM_ERL
:
1972 len
= sprintf(buf
, "%d\n", session
->erl
);
1974 case ISCSI_PARAM_TARGET_NAME
:
1975 len
= sprintf(buf
, "%s\n", session
->targetname
);
1977 case ISCSI_PARAM_TPGT
:
1978 len
= sprintf(buf
, "%d\n", session
->tpgt
);
1980 case ISCSI_PARAM_USERNAME
:
1981 len
= sprintf(buf
, "%s\n", session
->username
);
1983 case ISCSI_PARAM_USERNAME_IN
:
1984 len
= sprintf(buf
, "%s\n", session
->username_in
);
1986 case ISCSI_PARAM_PASSWORD
:
1987 len
= sprintf(buf
, "%s\n", session
->password
);
1989 case ISCSI_PARAM_PASSWORD_IN
:
1990 len
= sprintf(buf
, "%s\n", session
->password_in
);
1998 EXPORT_SYMBOL_GPL(iscsi_session_get_param
);
2000 int iscsi_conn_get_param(struct iscsi_cls_conn
*cls_conn
,
2001 enum iscsi_param param
, char *buf
)
2003 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2007 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
2008 len
= sprintf(buf
, "%u\n", conn
->max_recv_dlength
);
2010 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
2011 len
= sprintf(buf
, "%u\n", conn
->max_xmit_dlength
);
2013 case ISCSI_PARAM_HDRDGST_EN
:
2014 len
= sprintf(buf
, "%d\n", conn
->hdrdgst_en
);
2016 case ISCSI_PARAM_DATADGST_EN
:
2017 len
= sprintf(buf
, "%d\n", conn
->datadgst_en
);
2019 case ISCSI_PARAM_IFMARKER_EN
:
2020 len
= sprintf(buf
, "%d\n", conn
->ifmarker_en
);
2022 case ISCSI_PARAM_OFMARKER_EN
:
2023 len
= sprintf(buf
, "%d\n", conn
->ofmarker_en
);
2025 case ISCSI_PARAM_EXP_STATSN
:
2026 len
= sprintf(buf
, "%u\n", conn
->exp_statsn
);
2028 case ISCSI_PARAM_PERSISTENT_PORT
:
2029 len
= sprintf(buf
, "%d\n", conn
->persistent_port
);
2031 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
2032 len
= sprintf(buf
, "%s\n", conn
->persistent_address
);
2040 EXPORT_SYMBOL_GPL(iscsi_conn_get_param
);
2042 int iscsi_host_get_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
2045 struct iscsi_session
*session
= iscsi_hostdata(shost
->hostdata
);
2049 case ISCSI_HOST_PARAM_NETDEV_NAME
:
2050 if (!session
->netdev
)
2051 len
= sprintf(buf
, "%s\n", "default");
2053 len
= sprintf(buf
, "%s\n", session
->netdev
);
2055 case ISCSI_HOST_PARAM_HWADDRESS
:
2056 if (!session
->hwaddress
)
2057 len
= sprintf(buf
, "%s\n", "default");
2059 len
= sprintf(buf
, "%s\n", session
->hwaddress
);
2061 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
2062 if (!session
->initiatorname
)
2063 len
= sprintf(buf
, "%s\n", "unknown");
2065 len
= sprintf(buf
, "%s\n", session
->initiatorname
);
2074 EXPORT_SYMBOL_GPL(iscsi_host_get_param
);
2076 int iscsi_host_set_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
2077 char *buf
, int buflen
)
2079 struct iscsi_session
*session
= iscsi_hostdata(shost
->hostdata
);
2082 case ISCSI_HOST_PARAM_NETDEV_NAME
:
2083 if (!session
->netdev
)
2084 session
->netdev
= kstrdup(buf
, GFP_KERNEL
);
2086 case ISCSI_HOST_PARAM_HWADDRESS
:
2087 if (!session
->hwaddress
)
2088 session
->hwaddress
= kstrdup(buf
, GFP_KERNEL
);
2090 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
2091 if (!session
->initiatorname
)
2092 session
->initiatorname
= kstrdup(buf
, GFP_KERNEL
);
2100 EXPORT_SYMBOL_GPL(iscsi_host_set_param
);
2102 MODULE_AUTHOR("Mike Christie");
2103 MODULE_DESCRIPTION("iSCSI library functions");
2104 MODULE_LICENSE("GPL");