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 <linux/log2.h>
28 #include <linux/slab.h>
29 #include <linux/module.h>
30 #include <asm/unaligned.h>
32 #include <scsi/scsi_cmnd.h>
33 #include <scsi/scsi_device.h>
34 #include <scsi/scsi_eh.h>
35 #include <scsi/scsi_tcq.h>
36 #include <scsi/scsi_host.h>
37 #include <scsi/scsi.h>
38 #include <scsi/iscsi_proto.h>
39 #include <scsi/scsi_transport.h>
40 #include <scsi/scsi_transport_iscsi.h>
41 #include <scsi/libiscsi.h>
43 static int iscsi_dbg_lib_conn
;
44 module_param_named(debug_libiscsi_conn
, iscsi_dbg_lib_conn
, int,
46 MODULE_PARM_DESC(debug_libiscsi_conn
,
47 "Turn on debugging for connections in libiscsi module. "
48 "Set to 1 to turn on, and zero to turn off. Default is off.");
50 static int iscsi_dbg_lib_session
;
51 module_param_named(debug_libiscsi_session
, iscsi_dbg_lib_session
, int,
53 MODULE_PARM_DESC(debug_libiscsi_session
,
54 "Turn on debugging for sessions in libiscsi module. "
55 "Set to 1 to turn on, and zero to turn off. Default is off.");
57 static int iscsi_dbg_lib_eh
;
58 module_param_named(debug_libiscsi_eh
, iscsi_dbg_lib_eh
, int,
60 MODULE_PARM_DESC(debug_libiscsi_eh
,
61 "Turn on debugging for error handling in libiscsi module. "
62 "Set to 1 to turn on, and zero to turn off. Default is off.");
64 #define ISCSI_DBG_CONN(_conn, dbg_fmt, arg...) \
66 if (iscsi_dbg_lib_conn) \
67 iscsi_conn_printk(KERN_INFO, _conn, \
72 #define ISCSI_DBG_SESSION(_session, dbg_fmt, arg...) \
74 if (iscsi_dbg_lib_session) \
75 iscsi_session_printk(KERN_INFO, _session, \
80 #define ISCSI_DBG_EH(_session, dbg_fmt, arg...) \
82 if (iscsi_dbg_lib_eh) \
83 iscsi_session_printk(KERN_INFO, _session, \
88 inline void iscsi_conn_queue_work(struct iscsi_conn
*conn
)
90 struct Scsi_Host
*shost
= conn
->session
->host
;
91 struct iscsi_host
*ihost
= shost_priv(shost
);
94 queue_work(ihost
->workq
, &conn
->xmitwork
);
96 EXPORT_SYMBOL_GPL(iscsi_conn_queue_work
);
98 static void __iscsi_update_cmdsn(struct iscsi_session
*session
,
99 uint32_t exp_cmdsn
, uint32_t max_cmdsn
)
102 * standard specifies this check for when to update expected and
103 * max sequence numbers
105 if (iscsi_sna_lt(max_cmdsn
, exp_cmdsn
- 1))
108 if (exp_cmdsn
!= session
->exp_cmdsn
&&
109 !iscsi_sna_lt(exp_cmdsn
, session
->exp_cmdsn
))
110 session
->exp_cmdsn
= exp_cmdsn
;
112 if (max_cmdsn
!= session
->max_cmdsn
&&
113 !iscsi_sna_lt(max_cmdsn
, session
->max_cmdsn
)) {
114 session
->max_cmdsn
= max_cmdsn
;
116 * if the window closed with IO queued, then kick the
119 if (!list_empty(&session
->leadconn
->cmdqueue
) ||
120 !list_empty(&session
->leadconn
->mgmtqueue
))
121 iscsi_conn_queue_work(session
->leadconn
);
125 void iscsi_update_cmdsn(struct iscsi_session
*session
, struct iscsi_nopin
*hdr
)
127 __iscsi_update_cmdsn(session
, be32_to_cpu(hdr
->exp_cmdsn
),
128 be32_to_cpu(hdr
->max_cmdsn
));
130 EXPORT_SYMBOL_GPL(iscsi_update_cmdsn
);
133 * iscsi_prep_data_out_pdu - initialize Data-Out
134 * @task: scsi command task
136 * @hdr: iscsi data in pdu
139 * Initialize Data-Out within this R2T sequence and finds
140 * proper data_offset within this SCSI command.
142 * This function is called with connection lock taken.
144 void iscsi_prep_data_out_pdu(struct iscsi_task
*task
, struct iscsi_r2t_info
*r2t
,
145 struct iscsi_data
*hdr
)
147 struct iscsi_conn
*conn
= task
->conn
;
148 unsigned int left
= r2t
->data_length
- r2t
->sent
;
150 task
->hdr_len
= sizeof(struct iscsi_data
);
152 memset(hdr
, 0, sizeof(struct iscsi_data
));
154 hdr
->datasn
= cpu_to_be32(r2t
->datasn
);
156 hdr
->opcode
= ISCSI_OP_SCSI_DATA_OUT
;
157 hdr
->lun
= task
->lun
;
158 hdr
->itt
= task
->hdr_itt
;
159 hdr
->exp_statsn
= r2t
->exp_statsn
;
160 hdr
->offset
= cpu_to_be32(r2t
->data_offset
+ r2t
->sent
);
161 if (left
> conn
->max_xmit_dlength
) {
162 hton24(hdr
->dlength
, conn
->max_xmit_dlength
);
163 r2t
->data_count
= conn
->max_xmit_dlength
;
166 hton24(hdr
->dlength
, left
);
167 r2t
->data_count
= left
;
168 hdr
->flags
= ISCSI_FLAG_CMD_FINAL
;
170 conn
->dataout_pdus_cnt
++;
172 EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu
);
174 static int iscsi_add_hdr(struct iscsi_task
*task
, unsigned len
)
176 unsigned exp_len
= task
->hdr_len
+ len
;
178 if (exp_len
> task
->hdr_max
) {
183 WARN_ON(len
& (ISCSI_PAD_LEN
- 1)); /* caller must pad the AHS */
184 task
->hdr_len
= exp_len
;
189 * make an extended cdb AHS
191 static int iscsi_prep_ecdb_ahs(struct iscsi_task
*task
)
193 struct scsi_cmnd
*cmd
= task
->sc
;
194 unsigned rlen
, pad_len
;
195 unsigned short ahslength
;
196 struct iscsi_ecdb_ahdr
*ecdb_ahdr
;
199 ecdb_ahdr
= iscsi_next_hdr(task
);
200 rlen
= cmd
->cmd_len
- ISCSI_CDB_SIZE
;
202 BUG_ON(rlen
> sizeof(ecdb_ahdr
->ecdb
));
203 ahslength
= rlen
+ sizeof(ecdb_ahdr
->reserved
);
205 pad_len
= iscsi_padding(rlen
);
207 rc
= iscsi_add_hdr(task
, sizeof(ecdb_ahdr
->ahslength
) +
208 sizeof(ecdb_ahdr
->ahstype
) + ahslength
+ pad_len
);
213 memset(&ecdb_ahdr
->ecdb
[rlen
], 0, pad_len
);
215 ecdb_ahdr
->ahslength
= cpu_to_be16(ahslength
);
216 ecdb_ahdr
->ahstype
= ISCSI_AHSTYPE_CDB
;
217 ecdb_ahdr
->reserved
= 0;
218 memcpy(ecdb_ahdr
->ecdb
, cmd
->cmnd
+ ISCSI_CDB_SIZE
, rlen
);
220 ISCSI_DBG_SESSION(task
->conn
->session
,
221 "iscsi_prep_ecdb_ahs: varlen_cdb_len %d "
222 "rlen %d pad_len %d ahs_length %d iscsi_headers_size "
223 "%u\n", cmd
->cmd_len
, rlen
, pad_len
, ahslength
,
228 static int iscsi_prep_bidi_ahs(struct iscsi_task
*task
)
230 struct scsi_cmnd
*sc
= task
->sc
;
231 struct iscsi_rlength_ahdr
*rlen_ahdr
;
234 rlen_ahdr
= iscsi_next_hdr(task
);
235 rc
= iscsi_add_hdr(task
, sizeof(*rlen_ahdr
));
239 rlen_ahdr
->ahslength
=
240 cpu_to_be16(sizeof(rlen_ahdr
->read_length
) +
241 sizeof(rlen_ahdr
->reserved
));
242 rlen_ahdr
->ahstype
= ISCSI_AHSTYPE_RLENGTH
;
243 rlen_ahdr
->reserved
= 0;
244 rlen_ahdr
->read_length
= cpu_to_be32(scsi_in(sc
)->length
);
246 ISCSI_DBG_SESSION(task
->conn
->session
,
247 "bidi-in rlen_ahdr->read_length(%d) "
248 "rlen_ahdr->ahslength(%d)\n",
249 be32_to_cpu(rlen_ahdr
->read_length
),
250 be16_to_cpu(rlen_ahdr
->ahslength
));
255 * iscsi_check_tmf_restrictions - check if a task is affected by TMF
257 * @opcode: opcode to check for
259 * During TMF a task has to be checked if it's affected.
260 * All unrelated I/O can be passed through, but I/O to the
261 * affected LUN should be restricted.
262 * If 'fast_abort' is set we won't be sending any I/O to the
264 * Otherwise the target is waiting for all TTTs to be completed,
265 * so we have to send all outstanding Data-Out PDUs to the target.
267 static int iscsi_check_tmf_restrictions(struct iscsi_task
*task
, int opcode
)
269 struct iscsi_conn
*conn
= task
->conn
;
270 struct iscsi_tm
*tmf
= &conn
->tmhdr
;
271 unsigned int hdr_lun
;
273 if (conn
->tmf_state
== TMF_INITIAL
)
276 if ((tmf
->opcode
& ISCSI_OPCODE_MASK
) != ISCSI_OP_SCSI_TMFUNC
)
279 switch (ISCSI_TM_FUNC_VALUE(tmf
)) {
280 case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET
:
282 * Allow PDUs for unrelated LUNs
284 hdr_lun
= scsilun_to_int(&tmf
->lun
);
285 if (hdr_lun
!= task
->sc
->device
->lun
)
288 case ISCSI_TM_FUNC_TARGET_WARM_RESET
:
290 * Fail all SCSI cmd PDUs
292 if (opcode
!= ISCSI_OP_SCSI_DATA_OUT
) {
293 iscsi_conn_printk(KERN_INFO
, conn
,
294 "task [op %x/%x itt "
297 task
->hdr
->opcode
, opcode
,
298 task
->itt
, task
->hdr_itt
);
302 * And also all data-out PDUs in response to R2T
303 * if fast_abort is set.
305 if (conn
->session
->fast_abort
) {
306 iscsi_conn_printk(KERN_INFO
, conn
,
307 "task [op %x/%x itt "
308 "0x%x/0x%x] fast abort.\n",
309 task
->hdr
->opcode
, opcode
,
310 task
->itt
, task
->hdr_itt
);
314 case ISCSI_TM_FUNC_ABORT_TASK
:
316 * the caller has already checked if the task
317 * they want to abort was in the pending queue so if
318 * we are here the cmd pdu has gone out already, and
319 * we will only hit this for data-outs
321 if (opcode
== ISCSI_OP_SCSI_DATA_OUT
&&
322 task
->hdr_itt
== tmf
->rtt
) {
323 ISCSI_DBG_SESSION(conn
->session
,
324 "Preventing task %x/%x from sending "
325 "data-out due to abort task in "
326 "progress\n", task
->itt
,
337 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
340 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
341 * fields like dlength or final based on how much data it sends
343 static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task
*task
)
345 struct iscsi_conn
*conn
= task
->conn
;
346 struct iscsi_session
*session
= conn
->session
;
347 struct scsi_cmnd
*sc
= task
->sc
;
348 struct iscsi_scsi_req
*hdr
;
349 unsigned hdrlength
, cmd_len
;
353 rc
= iscsi_check_tmf_restrictions(task
, ISCSI_OP_SCSI_CMD
);
357 if (conn
->session
->tt
->alloc_pdu
) {
358 rc
= conn
->session
->tt
->alloc_pdu(task
, ISCSI_OP_SCSI_CMD
);
362 hdr
= (struct iscsi_scsi_req
*)task
->hdr
;
364 memset(hdr
, 0, sizeof(*hdr
));
366 if (session
->tt
->parse_pdu_itt
)
367 hdr
->itt
= task
->hdr_itt
= itt
;
369 hdr
->itt
= task
->hdr_itt
= build_itt(task
->itt
,
370 task
->conn
->session
->age
);
372 rc
= iscsi_add_hdr(task
, sizeof(*hdr
));
375 hdr
->opcode
= ISCSI_OP_SCSI_CMD
;
376 hdr
->flags
= ISCSI_ATTR_SIMPLE
;
377 int_to_scsilun(sc
->device
->lun
, &hdr
->lun
);
378 task
->lun
= hdr
->lun
;
379 hdr
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
380 cmd_len
= sc
->cmd_len
;
381 if (cmd_len
< ISCSI_CDB_SIZE
)
382 memset(&hdr
->cdb
[cmd_len
], 0, ISCSI_CDB_SIZE
- cmd_len
);
383 else if (cmd_len
> ISCSI_CDB_SIZE
) {
384 rc
= iscsi_prep_ecdb_ahs(task
);
387 cmd_len
= ISCSI_CDB_SIZE
;
389 memcpy(hdr
->cdb
, sc
->cmnd
, cmd_len
);
392 if (scsi_bidi_cmnd(sc
)) {
393 hdr
->flags
|= ISCSI_FLAG_CMD_READ
;
394 rc
= iscsi_prep_bidi_ahs(task
);
398 if (sc
->sc_data_direction
== DMA_TO_DEVICE
) {
399 unsigned out_len
= scsi_out(sc
)->length
;
400 struct iscsi_r2t_info
*r2t
= &task
->unsol_r2t
;
402 hdr
->data_length
= cpu_to_be32(out_len
);
403 hdr
->flags
|= ISCSI_FLAG_CMD_WRITE
;
407 * imm_count bytes to be sent right after
410 * unsol_count bytes(as Data-Out) to be sent
411 * without R2T ack right after
414 * r2t data_length bytes to be sent via R2T ack's
416 * pad_count bytes to be sent as zero-padding
418 memset(r2t
, 0, sizeof(*r2t
));
420 if (session
->imm_data_en
) {
421 if (out_len
>= session
->first_burst
)
422 task
->imm_count
= min(session
->first_burst
,
423 conn
->max_xmit_dlength
);
425 task
->imm_count
= min(out_len
,
426 conn
->max_xmit_dlength
);
427 hton24(hdr
->dlength
, task
->imm_count
);
429 zero_data(hdr
->dlength
);
431 if (!session
->initial_r2t_en
) {
432 r2t
->data_length
= min(session
->first_burst
, out_len
) -
434 r2t
->data_offset
= task
->imm_count
;
435 r2t
->ttt
= cpu_to_be32(ISCSI_RESERVED_TAG
);
436 r2t
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
439 if (!task
->unsol_r2t
.data_length
)
440 /* No unsolicit Data-Out's */
441 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
443 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
444 zero_data(hdr
->dlength
);
445 hdr
->data_length
= cpu_to_be32(scsi_in(sc
)->length
);
447 if (sc
->sc_data_direction
== DMA_FROM_DEVICE
)
448 hdr
->flags
|= ISCSI_FLAG_CMD_READ
;
451 /* calculate size of additional header segments (AHSs) */
452 hdrlength
= task
->hdr_len
- sizeof(*hdr
);
454 WARN_ON(hdrlength
& (ISCSI_PAD_LEN
-1));
455 hdrlength
/= ISCSI_PAD_LEN
;
457 WARN_ON(hdrlength
>= 256);
458 hdr
->hlength
= hdrlength
& 0xFF;
459 hdr
->cmdsn
= task
->cmdsn
= cpu_to_be32(session
->cmdsn
);
461 if (session
->tt
->init_task
&& session
->tt
->init_task(task
))
464 task
->state
= ISCSI_TASK_RUNNING
;
467 conn
->scsicmd_pdus_cnt
++;
468 ISCSI_DBG_SESSION(session
, "iscsi prep [%s cid %d sc %p cdb 0x%x "
469 "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n",
470 scsi_bidi_cmnd(sc
) ? "bidirectional" :
471 sc
->sc_data_direction
== DMA_TO_DEVICE
?
472 "write" : "read", conn
->id
, sc
, sc
->cmnd
[0],
473 task
->itt
, scsi_bufflen(sc
),
474 scsi_bidi_cmnd(sc
) ? scsi_in(sc
)->length
: 0,
476 session
->max_cmdsn
- session
->exp_cmdsn
+ 1);
481 * iscsi_free_task - free a task
482 * @task: iscsi cmd task
484 * Must be called with session lock.
485 * This function returns the scsi command to scsi-ml or cleans
486 * up mgmt tasks then returns the task to the pool.
488 static void iscsi_free_task(struct iscsi_task
*task
)
490 struct iscsi_conn
*conn
= task
->conn
;
491 struct iscsi_session
*session
= conn
->session
;
492 struct scsi_cmnd
*sc
= task
->sc
;
493 int oldstate
= task
->state
;
495 ISCSI_DBG_SESSION(session
, "freeing task itt 0x%x state %d sc %p\n",
496 task
->itt
, task
->state
, task
->sc
);
498 session
->tt
->cleanup_task(task
);
499 task
->state
= ISCSI_TASK_FREE
;
502 * login task is preallocated so do not free
504 if (conn
->login_task
== task
)
507 kfifo_in(&session
->cmdpool
.queue
, (void*)&task
, sizeof(void*));
511 /* SCSI eh reuses commands to verify us */
514 * queue command may call this to free the task, so
515 * it will decide how to return sc to scsi-ml.
517 if (oldstate
!= ISCSI_TASK_REQUEUE_SCSIQ
)
522 void __iscsi_get_task(struct iscsi_task
*task
)
524 atomic_inc(&task
->refcount
);
526 EXPORT_SYMBOL_GPL(__iscsi_get_task
);
528 void __iscsi_put_task(struct iscsi_task
*task
)
530 if (atomic_dec_and_test(&task
->refcount
))
531 iscsi_free_task(task
);
533 EXPORT_SYMBOL_GPL(__iscsi_put_task
);
535 void iscsi_put_task(struct iscsi_task
*task
)
537 struct iscsi_session
*session
= task
->conn
->session
;
539 spin_lock_bh(&session
->lock
);
540 __iscsi_put_task(task
);
541 spin_unlock_bh(&session
->lock
);
543 EXPORT_SYMBOL_GPL(iscsi_put_task
);
546 * iscsi_complete_task - finish a task
547 * @task: iscsi cmd task
548 * @state: state to complete task with
550 * Must be called with session lock.
552 static void iscsi_complete_task(struct iscsi_task
*task
, int state
)
554 struct iscsi_conn
*conn
= task
->conn
;
556 ISCSI_DBG_SESSION(conn
->session
,
557 "complete task itt 0x%x state %d sc %p\n",
558 task
->itt
, task
->state
, task
->sc
);
559 if (task
->state
== ISCSI_TASK_COMPLETED
||
560 task
->state
== ISCSI_TASK_ABRT_TMF
||
561 task
->state
== ISCSI_TASK_ABRT_SESS_RECOV
||
562 task
->state
== ISCSI_TASK_REQUEUE_SCSIQ
)
564 WARN_ON_ONCE(task
->state
== ISCSI_TASK_FREE
);
567 if (!list_empty(&task
->running
))
568 list_del_init(&task
->running
);
570 if (conn
->task
== task
)
573 if (conn
->ping_task
== task
)
574 conn
->ping_task
= NULL
;
576 /* release get from queueing */
577 __iscsi_put_task(task
);
581 * iscsi_complete_scsi_task - finish scsi task normally
582 * @task: iscsi task for scsi cmd
583 * @exp_cmdsn: expected cmd sn in cpu format
584 * @max_cmdsn: max cmd sn in cpu format
586 * This is used when drivers do not need or cannot perform
587 * lower level pdu processing.
589 * Called with session lock
591 void iscsi_complete_scsi_task(struct iscsi_task
*task
,
592 uint32_t exp_cmdsn
, uint32_t max_cmdsn
)
594 struct iscsi_conn
*conn
= task
->conn
;
596 ISCSI_DBG_SESSION(conn
->session
, "[itt 0x%x]\n", task
->itt
);
598 conn
->last_recv
= jiffies
;
599 __iscsi_update_cmdsn(conn
->session
, exp_cmdsn
, max_cmdsn
);
600 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
602 EXPORT_SYMBOL_GPL(iscsi_complete_scsi_task
);
606 * session lock must be held and if not called for a task that is
607 * still pending or from the xmit thread, then xmit thread must
610 static void fail_scsi_task(struct iscsi_task
*task
, int err
)
612 struct iscsi_conn
*conn
= task
->conn
;
613 struct scsi_cmnd
*sc
;
617 * if a command completes and we get a successful tmf response
618 * we will hit this because the scsi eh abort code does not take
625 if (task
->state
== ISCSI_TASK_PENDING
) {
627 * cmd never made it to the xmit thread, so we should not count
628 * the cmd in the sequencing
630 conn
->session
->queued_cmdsn
--;
631 /* it was never sent so just complete like normal */
632 state
= ISCSI_TASK_COMPLETED
;
633 } else if (err
== DID_TRANSPORT_DISRUPTED
)
634 state
= ISCSI_TASK_ABRT_SESS_RECOV
;
636 state
= ISCSI_TASK_ABRT_TMF
;
638 sc
->result
= err
<< 16;
639 if (!scsi_bidi_cmnd(sc
))
640 scsi_set_resid(sc
, scsi_bufflen(sc
));
642 scsi_out(sc
)->resid
= scsi_out(sc
)->length
;
643 scsi_in(sc
)->resid
= scsi_in(sc
)->length
;
646 iscsi_complete_task(task
, state
);
649 static int iscsi_prep_mgmt_task(struct iscsi_conn
*conn
,
650 struct iscsi_task
*task
)
652 struct iscsi_session
*session
= conn
->session
;
653 struct iscsi_hdr
*hdr
= task
->hdr
;
654 struct iscsi_nopout
*nop
= (struct iscsi_nopout
*)hdr
;
655 uint8_t opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
657 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
)
660 if (opcode
!= ISCSI_OP_LOGIN
&& opcode
!= ISCSI_OP_TEXT
)
661 nop
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
663 * pre-format CmdSN for outgoing PDU.
665 nop
->cmdsn
= cpu_to_be32(session
->cmdsn
);
666 if (hdr
->itt
!= RESERVED_ITT
) {
668 * TODO: We always use immediate for normal session pdus.
669 * If we start to send tmfs or nops as non-immediate then
670 * we should start checking the cmdsn numbers for mgmt tasks.
672 * During discovery sessions iscsid sends TEXT as non immediate,
673 * but we always only send one PDU at a time.
675 if (conn
->c_stage
== ISCSI_CONN_STARTED
&&
676 !(hdr
->opcode
& ISCSI_OP_IMMEDIATE
)) {
677 session
->queued_cmdsn
++;
682 if (session
->tt
->init_task
&& session
->tt
->init_task(task
))
685 if ((hdr
->opcode
& ISCSI_OPCODE_MASK
) == ISCSI_OP_LOGOUT
)
686 session
->state
= ISCSI_STATE_LOGGING_OUT
;
688 task
->state
= ISCSI_TASK_RUNNING
;
689 ISCSI_DBG_SESSION(session
, "mgmtpdu [op 0x%x hdr->itt 0x%x "
690 "datalen %d]\n", hdr
->opcode
& ISCSI_OPCODE_MASK
,
691 hdr
->itt
, task
->data_count
);
695 static struct iscsi_task
*
696 __iscsi_conn_send_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
697 char *data
, uint32_t data_size
)
699 struct iscsi_session
*session
= conn
->session
;
700 struct iscsi_host
*ihost
= shost_priv(session
->host
);
701 uint8_t opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
702 struct iscsi_task
*task
;
705 if (session
->state
== ISCSI_STATE_TERMINATE
)
708 if (opcode
== ISCSI_OP_LOGIN
|| opcode
== ISCSI_OP_TEXT
) {
710 * Login and Text are sent serially, in
711 * request-followed-by-response sequence.
712 * Same task can be used. Same ITT must be used.
713 * Note that login_task is preallocated at conn_create().
715 if (conn
->login_task
->state
!= ISCSI_TASK_FREE
) {
716 iscsi_conn_printk(KERN_ERR
, conn
, "Login/Text in "
717 "progress. Cannot start new task.\n");
721 task
= conn
->login_task
;
723 if (session
->state
!= ISCSI_STATE_LOGGED_IN
)
726 BUG_ON(conn
->c_stage
== ISCSI_CONN_INITIAL_STAGE
);
727 BUG_ON(conn
->c_stage
== ISCSI_CONN_STOPPED
);
729 if (!kfifo_out(&session
->cmdpool
.queue
,
730 (void*)&task
, sizeof(void*)))
734 * released in complete pdu for task we expect a response for, and
735 * released by the lld when it has transmitted the task for
736 * pdus we do not expect a response for.
738 atomic_set(&task
->refcount
, 1);
741 INIT_LIST_HEAD(&task
->running
);
742 task
->state
= ISCSI_TASK_PENDING
;
745 memcpy(task
->data
, data
, data_size
);
746 task
->data_count
= data_size
;
748 task
->data_count
= 0;
750 if (conn
->session
->tt
->alloc_pdu
) {
751 if (conn
->session
->tt
->alloc_pdu(task
, hdr
->opcode
)) {
752 iscsi_conn_printk(KERN_ERR
, conn
, "Could not allocate "
753 "pdu for mgmt task.\n");
758 itt
= task
->hdr
->itt
;
759 task
->hdr_len
= sizeof(struct iscsi_hdr
);
760 memcpy(task
->hdr
, hdr
, sizeof(struct iscsi_hdr
));
762 if (hdr
->itt
!= RESERVED_ITT
) {
763 if (session
->tt
->parse_pdu_itt
)
764 task
->hdr
->itt
= itt
;
766 task
->hdr
->itt
= build_itt(task
->itt
,
767 task
->conn
->session
->age
);
771 if (iscsi_prep_mgmt_task(conn
, task
))
774 if (session
->tt
->xmit_task(task
))
777 list_add_tail(&task
->running
, &conn
->mgmtqueue
);
778 iscsi_conn_queue_work(conn
);
784 __iscsi_put_task(task
);
788 int iscsi_conn_send_pdu(struct iscsi_cls_conn
*cls_conn
, struct iscsi_hdr
*hdr
,
789 char *data
, uint32_t data_size
)
791 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
792 struct iscsi_session
*session
= conn
->session
;
795 spin_lock_bh(&session
->lock
);
796 if (!__iscsi_conn_send_pdu(conn
, hdr
, data
, data_size
))
798 spin_unlock_bh(&session
->lock
);
801 EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu
);
804 * iscsi_cmd_rsp - SCSI Command Response processing
805 * @conn: iscsi connection
807 * @task: scsi command task
808 * @data: cmd data buffer
809 * @datalen: len of buffer
811 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
812 * then completes the command and task.
814 static void iscsi_scsi_cmd_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
815 struct iscsi_task
*task
, char *data
,
818 struct iscsi_scsi_rsp
*rhdr
= (struct iscsi_scsi_rsp
*)hdr
;
819 struct iscsi_session
*session
= conn
->session
;
820 struct scsi_cmnd
*sc
= task
->sc
;
822 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)rhdr
);
823 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
825 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
827 if (rhdr
->response
!= ISCSI_STATUS_CMD_COMPLETED
) {
828 sc
->result
= DID_ERROR
<< 16;
832 if (rhdr
->cmd_status
== SAM_STAT_CHECK_CONDITION
) {
837 iscsi_conn_printk(KERN_ERR
, conn
,
838 "Got CHECK_CONDITION but invalid data "
839 "buffer size of %d\n", datalen
);
840 sc
->result
= DID_BAD_TARGET
<< 16;
844 senselen
= get_unaligned_be16(data
);
845 if (datalen
< senselen
)
846 goto invalid_datalen
;
848 memcpy(sc
->sense_buffer
, data
+ 2,
849 min_t(uint16_t, senselen
, SCSI_SENSE_BUFFERSIZE
));
850 ISCSI_DBG_SESSION(session
, "copied %d bytes of sense\n",
851 min_t(uint16_t, senselen
,
852 SCSI_SENSE_BUFFERSIZE
));
855 if (rhdr
->flags
& (ISCSI_FLAG_CMD_BIDI_UNDERFLOW
|
856 ISCSI_FLAG_CMD_BIDI_OVERFLOW
)) {
857 int res_count
= be32_to_cpu(rhdr
->bi_residual_count
);
859 if (scsi_bidi_cmnd(sc
) && res_count
> 0 &&
860 (rhdr
->flags
& ISCSI_FLAG_CMD_BIDI_OVERFLOW
||
861 res_count
<= scsi_in(sc
)->length
))
862 scsi_in(sc
)->resid
= res_count
;
864 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
867 if (rhdr
->flags
& (ISCSI_FLAG_CMD_UNDERFLOW
|
868 ISCSI_FLAG_CMD_OVERFLOW
)) {
869 int res_count
= be32_to_cpu(rhdr
->residual_count
);
872 (rhdr
->flags
& ISCSI_FLAG_CMD_OVERFLOW
||
873 res_count
<= scsi_bufflen(sc
)))
874 /* write side for bidi or uni-io set_resid */
875 scsi_set_resid(sc
, res_count
);
877 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
880 ISCSI_DBG_SESSION(session
, "cmd rsp done [sc %p res %d itt 0x%x]\n",
881 sc
, sc
->result
, task
->itt
);
882 conn
->scsirsp_pdus_cnt
++;
883 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
887 * iscsi_data_in_rsp - SCSI Data-In Response processing
888 * @conn: iscsi connection
890 * @task: scsi command task
893 iscsi_data_in_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
894 struct iscsi_task
*task
)
896 struct iscsi_data_rsp
*rhdr
= (struct iscsi_data_rsp
*)hdr
;
897 struct scsi_cmnd
*sc
= task
->sc
;
899 if (!(rhdr
->flags
& ISCSI_FLAG_DATA_STATUS
))
902 iscsi_update_cmdsn(conn
->session
, (struct iscsi_nopin
*)hdr
);
903 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
904 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
905 if (rhdr
->flags
& (ISCSI_FLAG_DATA_UNDERFLOW
|
906 ISCSI_FLAG_DATA_OVERFLOW
)) {
907 int res_count
= be32_to_cpu(rhdr
->residual_count
);
910 (rhdr
->flags
& ISCSI_FLAG_CMD_OVERFLOW
||
911 res_count
<= scsi_in(sc
)->length
))
912 scsi_in(sc
)->resid
= res_count
;
914 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
917 ISCSI_DBG_SESSION(conn
->session
, "data in with status done "
918 "[sc %p res %d itt 0x%x]\n",
919 sc
, sc
->result
, task
->itt
);
920 conn
->scsirsp_pdus_cnt
++;
921 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
924 static void iscsi_tmf_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
)
926 struct iscsi_tm_rsp
*tmf
= (struct iscsi_tm_rsp
*)hdr
;
928 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
929 conn
->tmfrsp_pdus_cnt
++;
931 if (conn
->tmf_state
!= TMF_QUEUED
)
934 if (tmf
->response
== ISCSI_TMF_RSP_COMPLETE
)
935 conn
->tmf_state
= TMF_SUCCESS
;
936 else if (tmf
->response
== ISCSI_TMF_RSP_NO_TASK
)
937 conn
->tmf_state
= TMF_NOT_FOUND
;
939 conn
->tmf_state
= TMF_FAILED
;
940 wake_up(&conn
->ehwait
);
943 static void iscsi_send_nopout(struct iscsi_conn
*conn
, struct iscsi_nopin
*rhdr
)
945 struct iscsi_nopout hdr
;
946 struct iscsi_task
*task
;
948 if (!rhdr
&& conn
->ping_task
)
951 memset(&hdr
, 0, sizeof(struct iscsi_nopout
));
952 hdr
.opcode
= ISCSI_OP_NOOP_OUT
| ISCSI_OP_IMMEDIATE
;
953 hdr
.flags
= ISCSI_FLAG_CMD_FINAL
;
958 hdr
.itt
= RESERVED_ITT
;
960 hdr
.ttt
= RESERVED_ITT
;
962 task
= __iscsi_conn_send_pdu(conn
, (struct iscsi_hdr
*)&hdr
, NULL
, 0);
964 iscsi_conn_printk(KERN_ERR
, conn
, "Could not send nopout\n");
966 /* only track our nops */
967 conn
->ping_task
= task
;
968 conn
->last_ping
= jiffies
;
972 static int iscsi_nop_out_rsp(struct iscsi_task
*task
,
973 struct iscsi_nopin
*nop
, char *data
, int datalen
)
975 struct iscsi_conn
*conn
= task
->conn
;
978 if (conn
->ping_task
!= task
) {
980 * If this is not in response to one of our
981 * nops then it must be from userspace.
983 if (iscsi_recv_pdu(conn
->cls_conn
, (struct iscsi_hdr
*)nop
,
985 rc
= ISCSI_ERR_CONN_FAILED
;
987 mod_timer(&conn
->transport_timer
, jiffies
+ conn
->recv_timeout
);
988 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
992 static int iscsi_handle_reject(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
993 char *data
, int datalen
)
995 struct iscsi_reject
*reject
= (struct iscsi_reject
*)hdr
;
996 struct iscsi_hdr rejected_pdu
;
999 conn
->exp_statsn
= be32_to_cpu(reject
->statsn
) + 1;
1001 if (ntoh24(reject
->dlength
) > datalen
||
1002 ntoh24(reject
->dlength
) < sizeof(struct iscsi_hdr
)) {
1003 iscsi_conn_printk(KERN_ERR
, conn
, "Cannot handle rejected "
1004 "pdu. Invalid data length (pdu dlength "
1005 "%u, datalen %d\n", ntoh24(reject
->dlength
),
1007 return ISCSI_ERR_PROTO
;
1009 memcpy(&rejected_pdu
, data
, sizeof(struct iscsi_hdr
));
1010 opcode
= rejected_pdu
.opcode
& ISCSI_OPCODE_MASK
;
1012 switch (reject
->reason
) {
1013 case ISCSI_REASON_DATA_DIGEST_ERROR
:
1014 iscsi_conn_printk(KERN_ERR
, conn
,
1015 "pdu (op 0x%x itt 0x%x) rejected "
1016 "due to DataDigest error.\n",
1017 rejected_pdu
.itt
, opcode
);
1019 case ISCSI_REASON_IMM_CMD_REJECT
:
1020 iscsi_conn_printk(KERN_ERR
, conn
,
1021 "pdu (op 0x%x itt 0x%x) rejected. Too many "
1022 "immediate commands.\n",
1023 rejected_pdu
.itt
, opcode
);
1025 * We only send one TMF at a time so if the target could not
1026 * handle it, then it should get fixed (RFC mandates that
1027 * a target can handle one immediate TMF per conn).
1029 * For nops-outs, we could have sent more than one if
1030 * the target is sending us lots of nop-ins
1032 if (opcode
!= ISCSI_OP_NOOP_OUT
)
1035 if (rejected_pdu
.itt
== cpu_to_be32(ISCSI_RESERVED_TAG
))
1037 * nop-out in response to target's nop-out rejected.
1040 iscsi_send_nopout(conn
,
1041 (struct iscsi_nopin
*)&rejected_pdu
);
1043 struct iscsi_task
*task
;
1045 * Our nop as ping got dropped. We know the target
1046 * and transport are ok so just clean up
1048 task
= iscsi_itt_to_task(conn
, rejected_pdu
.itt
);
1050 iscsi_conn_printk(KERN_ERR
, conn
,
1051 "Invalid pdu reject. Could "
1052 "not lookup rejected task.\n");
1053 rc
= ISCSI_ERR_BAD_ITT
;
1055 rc
= iscsi_nop_out_rsp(task
,
1056 (struct iscsi_nopin
*)&rejected_pdu
,
1061 iscsi_conn_printk(KERN_ERR
, conn
,
1062 "pdu (op 0x%x itt 0x%x) rejected. Reason "
1063 "code 0x%x\n", rejected_pdu
.itt
,
1064 rejected_pdu
.opcode
, reject
->reason
);
1071 * iscsi_itt_to_task - look up task by itt
1072 * @conn: iscsi connection
1075 * This should be used for mgmt tasks like login and nops, or if
1076 * the LDD's itt space does not include the session age.
1078 * The session lock must be held.
1080 struct iscsi_task
*iscsi_itt_to_task(struct iscsi_conn
*conn
, itt_t itt
)
1082 struct iscsi_session
*session
= conn
->session
;
1085 if (itt
== RESERVED_ITT
)
1088 if (session
->tt
->parse_pdu_itt
)
1089 session
->tt
->parse_pdu_itt(conn
, itt
, &i
, NULL
);
1092 if (i
>= session
->cmds_max
)
1095 return session
->cmds
[i
];
1097 EXPORT_SYMBOL_GPL(iscsi_itt_to_task
);
1100 * __iscsi_complete_pdu - complete pdu
1102 * @hdr: iscsi header
1103 * @data: data buffer
1104 * @datalen: len of data buffer
1106 * Completes pdu processing by freeing any resources allocated at
1107 * queuecommand or send generic. session lock must be held and verify
1108 * itt must have been called.
1110 int __iscsi_complete_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
1111 char *data
, int datalen
)
1113 struct iscsi_session
*session
= conn
->session
;
1114 int opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
, rc
= 0;
1115 struct iscsi_task
*task
;
1118 conn
->last_recv
= jiffies
;
1119 rc
= iscsi_verify_itt(conn
, hdr
->itt
);
1123 if (hdr
->itt
!= RESERVED_ITT
)
1124 itt
= get_itt(hdr
->itt
);
1128 ISCSI_DBG_SESSION(session
, "[op 0x%x cid %d itt 0x%x len %d]\n",
1129 opcode
, conn
->id
, itt
, datalen
);
1132 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1135 case ISCSI_OP_NOOP_IN
:
1137 rc
= ISCSI_ERR_PROTO
;
1141 if (hdr
->ttt
== cpu_to_be32(ISCSI_RESERVED_TAG
))
1144 iscsi_send_nopout(conn
, (struct iscsi_nopin
*)hdr
);
1146 case ISCSI_OP_REJECT
:
1147 rc
= iscsi_handle_reject(conn
, hdr
, data
, datalen
);
1149 case ISCSI_OP_ASYNC_EVENT
:
1150 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1151 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
1152 rc
= ISCSI_ERR_CONN_FAILED
;
1155 rc
= ISCSI_ERR_BAD_OPCODE
;
1162 case ISCSI_OP_SCSI_CMD_RSP
:
1163 case ISCSI_OP_SCSI_DATA_IN
:
1164 task
= iscsi_itt_to_ctask(conn
, hdr
->itt
);
1166 return ISCSI_ERR_BAD_ITT
;
1167 task
->last_xfer
= jiffies
;
1171 * LLD handles R2Ts if they need to.
1174 case ISCSI_OP_LOGOUT_RSP
:
1175 case ISCSI_OP_LOGIN_RSP
:
1176 case ISCSI_OP_TEXT_RSP
:
1177 case ISCSI_OP_SCSI_TMFUNC_RSP
:
1178 case ISCSI_OP_NOOP_IN
:
1179 task
= iscsi_itt_to_task(conn
, hdr
->itt
);
1181 return ISCSI_ERR_BAD_ITT
;
1184 return ISCSI_ERR_BAD_OPCODE
;
1188 case ISCSI_OP_SCSI_CMD_RSP
:
1189 iscsi_scsi_cmd_rsp(conn
, hdr
, task
, data
, datalen
);
1191 case ISCSI_OP_SCSI_DATA_IN
:
1192 iscsi_data_in_rsp(conn
, hdr
, task
);
1194 case ISCSI_OP_LOGOUT_RSP
:
1195 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1197 rc
= ISCSI_ERR_PROTO
;
1200 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1202 case ISCSI_OP_LOGIN_RSP
:
1203 case ISCSI_OP_TEXT_RSP
:
1204 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1206 * login related PDU's exp_statsn is handled in
1210 case ISCSI_OP_SCSI_TMFUNC_RSP
:
1211 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1213 rc
= ISCSI_ERR_PROTO
;
1217 iscsi_tmf_rsp(conn
, hdr
);
1218 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1220 case ISCSI_OP_NOOP_IN
:
1221 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1222 if (hdr
->ttt
!= cpu_to_be32(ISCSI_RESERVED_TAG
) || datalen
) {
1223 rc
= ISCSI_ERR_PROTO
;
1226 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1228 rc
= iscsi_nop_out_rsp(task
, (struct iscsi_nopin
*)hdr
,
1232 rc
= ISCSI_ERR_BAD_OPCODE
;
1239 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
1240 rc
= ISCSI_ERR_CONN_FAILED
;
1241 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1244 EXPORT_SYMBOL_GPL(__iscsi_complete_pdu
);
1246 int iscsi_complete_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
1247 char *data
, int datalen
)
1251 spin_lock(&conn
->session
->lock
);
1252 rc
= __iscsi_complete_pdu(conn
, hdr
, data
, datalen
);
1253 spin_unlock(&conn
->session
->lock
);
1256 EXPORT_SYMBOL_GPL(iscsi_complete_pdu
);
1258 int iscsi_verify_itt(struct iscsi_conn
*conn
, itt_t itt
)
1260 struct iscsi_session
*session
= conn
->session
;
1263 if (itt
== RESERVED_ITT
)
1266 if (session
->tt
->parse_pdu_itt
)
1267 session
->tt
->parse_pdu_itt(conn
, itt
, &i
, &age
);
1270 age
= ((__force u32
)itt
>> ISCSI_AGE_SHIFT
) & ISCSI_AGE_MASK
;
1273 if (age
!= session
->age
) {
1274 iscsi_conn_printk(KERN_ERR
, conn
,
1275 "received itt %x expected session age (%x)\n",
1276 (__force u32
)itt
, session
->age
);
1277 return ISCSI_ERR_BAD_ITT
;
1280 if (i
>= session
->cmds_max
) {
1281 iscsi_conn_printk(KERN_ERR
, conn
,
1282 "received invalid itt index %u (max cmds "
1283 "%u.\n", i
, session
->cmds_max
);
1284 return ISCSI_ERR_BAD_ITT
;
1288 EXPORT_SYMBOL_GPL(iscsi_verify_itt
);
1291 * iscsi_itt_to_ctask - look up ctask by itt
1292 * @conn: iscsi connection
1295 * This should be used for cmd tasks.
1297 * The session lock must be held.
1299 struct iscsi_task
*iscsi_itt_to_ctask(struct iscsi_conn
*conn
, itt_t itt
)
1301 struct iscsi_task
*task
;
1303 if (iscsi_verify_itt(conn
, itt
))
1306 task
= iscsi_itt_to_task(conn
, itt
);
1307 if (!task
|| !task
->sc
)
1310 if (task
->sc
->SCp
.phase
!= conn
->session
->age
) {
1311 iscsi_session_printk(KERN_ERR
, conn
->session
,
1312 "task's session age %d, expected %d\n",
1313 task
->sc
->SCp
.phase
, conn
->session
->age
);
1319 EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask
);
1321 void iscsi_session_failure(struct iscsi_session
*session
,
1324 struct iscsi_conn
*conn
;
1327 spin_lock_bh(&session
->lock
);
1328 conn
= session
->leadconn
;
1329 if (session
->state
== ISCSI_STATE_TERMINATE
|| !conn
) {
1330 spin_unlock_bh(&session
->lock
);
1334 dev
= get_device(&conn
->cls_conn
->dev
);
1335 spin_unlock_bh(&session
->lock
);
1339 * if the host is being removed bypass the connection
1340 * recovery initialization because we are going to kill
1343 if (err
== ISCSI_ERR_INVALID_HOST
)
1344 iscsi_conn_error_event(conn
->cls_conn
, err
);
1346 iscsi_conn_failure(conn
, err
);
1349 EXPORT_SYMBOL_GPL(iscsi_session_failure
);
1351 void iscsi_conn_failure(struct iscsi_conn
*conn
, enum iscsi_err err
)
1353 struct iscsi_session
*session
= conn
->session
;
1355 spin_lock_bh(&session
->lock
);
1356 if (session
->state
== ISCSI_STATE_FAILED
) {
1357 spin_unlock_bh(&session
->lock
);
1361 if (conn
->stop_stage
== 0)
1362 session
->state
= ISCSI_STATE_FAILED
;
1363 spin_unlock_bh(&session
->lock
);
1365 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1366 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
1367 iscsi_conn_error_event(conn
->cls_conn
, err
);
1369 EXPORT_SYMBOL_GPL(iscsi_conn_failure
);
1371 static int iscsi_check_cmdsn_window_closed(struct iscsi_conn
*conn
)
1373 struct iscsi_session
*session
= conn
->session
;
1376 * Check for iSCSI window and take care of CmdSN wrap-around
1378 if (!iscsi_sna_lte(session
->queued_cmdsn
, session
->max_cmdsn
)) {
1379 ISCSI_DBG_SESSION(session
, "iSCSI CmdSN closed. ExpCmdSn "
1380 "%u MaxCmdSN %u CmdSN %u/%u\n",
1381 session
->exp_cmdsn
, session
->max_cmdsn
,
1382 session
->cmdsn
, session
->queued_cmdsn
);
1388 static int iscsi_xmit_task(struct iscsi_conn
*conn
)
1390 struct iscsi_task
*task
= conn
->task
;
1393 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
))
1396 __iscsi_get_task(task
);
1397 spin_unlock_bh(&conn
->session
->lock
);
1398 rc
= conn
->session
->tt
->xmit_task(task
);
1399 spin_lock_bh(&conn
->session
->lock
);
1401 /* done with this task */
1402 task
->last_xfer
= jiffies
;
1405 __iscsi_put_task(task
);
1410 * iscsi_requeue_task - requeue task to run from session workqueue
1411 * @task: task to requeue
1413 * LLDs that need to run a task from the session workqueue should call
1414 * this. The session lock must be held. This should only be called
1415 * by software drivers.
1417 void iscsi_requeue_task(struct iscsi_task
*task
)
1419 struct iscsi_conn
*conn
= task
->conn
;
1422 * this may be on the requeue list already if the xmit_task callout
1423 * is handling the r2ts while we are adding new ones
1425 if (list_empty(&task
->running
))
1426 list_add_tail(&task
->running
, &conn
->requeue
);
1427 iscsi_conn_queue_work(conn
);
1429 EXPORT_SYMBOL_GPL(iscsi_requeue_task
);
1432 * iscsi_data_xmit - xmit any command into the scheduled connection
1433 * @conn: iscsi connection
1436 * The function can return -EAGAIN in which case the caller must
1437 * re-schedule it again later or recover. '0' return code means
1440 static int iscsi_data_xmit(struct iscsi_conn
*conn
)
1442 struct iscsi_task
*task
;
1445 spin_lock_bh(&conn
->session
->lock
);
1446 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
)) {
1447 ISCSI_DBG_SESSION(conn
->session
, "Tx suspended!\n");
1448 spin_unlock_bh(&conn
->session
->lock
);
1453 rc
= iscsi_xmit_task(conn
);
1459 * process mgmt pdus like nops before commands since we should
1460 * only have one nop-out as a ping from us and targets should not
1461 * overflow us with nop-ins
1464 while (!list_empty(&conn
->mgmtqueue
)) {
1465 conn
->task
= list_entry(conn
->mgmtqueue
.next
,
1466 struct iscsi_task
, running
);
1467 list_del_init(&conn
->task
->running
);
1468 if (iscsi_prep_mgmt_task(conn
, conn
->task
)) {
1469 __iscsi_put_task(conn
->task
);
1473 rc
= iscsi_xmit_task(conn
);
1478 /* process pending command queue */
1479 while (!list_empty(&conn
->cmdqueue
)) {
1480 conn
->task
= list_entry(conn
->cmdqueue
.next
, struct iscsi_task
,
1482 list_del_init(&conn
->task
->running
);
1483 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
) {
1484 fail_scsi_task(conn
->task
, DID_IMM_RETRY
);
1487 rc
= iscsi_prep_scsi_cmd_pdu(conn
->task
);
1489 if (rc
== -ENOMEM
|| rc
== -EACCES
) {
1490 list_add_tail(&conn
->task
->running
,
1495 fail_scsi_task(conn
->task
, DID_ABORT
);
1498 rc
= iscsi_xmit_task(conn
);
1502 * we could continuously get new task requests so
1503 * we need to check the mgmt queue for nops that need to
1504 * be sent to aviod starvation
1506 if (!list_empty(&conn
->mgmtqueue
))
1510 while (!list_empty(&conn
->requeue
)) {
1512 * we always do fastlogout - conn stop code will clean up.
1514 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
)
1517 task
= list_entry(conn
->requeue
.next
, struct iscsi_task
,
1519 if (iscsi_check_tmf_restrictions(task
, ISCSI_OP_SCSI_DATA_OUT
))
1523 list_del_init(&conn
->task
->running
);
1524 conn
->task
->state
= ISCSI_TASK_RUNNING
;
1525 rc
= iscsi_xmit_task(conn
);
1528 if (!list_empty(&conn
->mgmtqueue
))
1531 spin_unlock_bh(&conn
->session
->lock
);
1535 spin_unlock_bh(&conn
->session
->lock
);
1539 static void iscsi_xmitworker(struct work_struct
*work
)
1541 struct iscsi_conn
*conn
=
1542 container_of(work
, struct iscsi_conn
, xmitwork
);
1545 * serialize Xmit worker on a per-connection basis.
1548 rc
= iscsi_data_xmit(conn
);
1549 } while (rc
>= 0 || rc
== -EAGAIN
);
1552 static inline struct iscsi_task
*iscsi_alloc_task(struct iscsi_conn
*conn
,
1553 struct scsi_cmnd
*sc
)
1555 struct iscsi_task
*task
;
1557 if (!kfifo_out(&conn
->session
->cmdpool
.queue
,
1558 (void *) &task
, sizeof(void *)))
1561 sc
->SCp
.phase
= conn
->session
->age
;
1562 sc
->SCp
.ptr
= (char *) task
;
1564 atomic_set(&task
->refcount
, 1);
1565 task
->state
= ISCSI_TASK_PENDING
;
1568 task
->have_checked_conn
= false;
1569 task
->last_timeout
= jiffies
;
1570 task
->last_xfer
= jiffies
;
1571 INIT_LIST_HEAD(&task
->running
);
1576 FAILURE_BAD_HOST
= 1,
1577 FAILURE_SESSION_FAILED
,
1578 FAILURE_SESSION_FREED
,
1579 FAILURE_WINDOW_CLOSED
,
1581 FAILURE_SESSION_TERMINATE
,
1582 FAILURE_SESSION_IN_RECOVERY
,
1583 FAILURE_SESSION_RECOVERY_TIMEOUT
,
1584 FAILURE_SESSION_LOGGING_OUT
,
1585 FAILURE_SESSION_NOT_READY
,
1588 int iscsi_queuecommand(struct Scsi_Host
*host
, struct scsi_cmnd
*sc
)
1590 struct iscsi_cls_session
*cls_session
;
1591 struct iscsi_host
*ihost
;
1593 struct iscsi_session
*session
;
1594 struct iscsi_conn
*conn
;
1595 struct iscsi_task
*task
= NULL
;
1600 ihost
= shost_priv(host
);
1602 cls_session
= starget_to_session(scsi_target(sc
->device
));
1603 session
= cls_session
->dd_data
;
1604 spin_lock_bh(&session
->lock
);
1606 reason
= iscsi_session_chkready(cls_session
);
1608 sc
->result
= reason
;
1612 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
1614 * to handle the race between when we set the recovery state
1615 * and block the session we requeue here (commands could
1616 * be entering our queuecommand while a block is starting
1617 * up because the block code is not locked)
1619 switch (session
->state
) {
1620 case ISCSI_STATE_FAILED
:
1621 case ISCSI_STATE_IN_RECOVERY
:
1622 reason
= FAILURE_SESSION_IN_RECOVERY
;
1623 sc
->result
= DID_IMM_RETRY
<< 16;
1625 case ISCSI_STATE_LOGGING_OUT
:
1626 reason
= FAILURE_SESSION_LOGGING_OUT
;
1627 sc
->result
= DID_IMM_RETRY
<< 16;
1629 case ISCSI_STATE_RECOVERY_FAILED
:
1630 reason
= FAILURE_SESSION_RECOVERY_TIMEOUT
;
1631 sc
->result
= DID_TRANSPORT_FAILFAST
<< 16;
1633 case ISCSI_STATE_TERMINATE
:
1634 reason
= FAILURE_SESSION_TERMINATE
;
1635 sc
->result
= DID_NO_CONNECT
<< 16;
1638 reason
= FAILURE_SESSION_FREED
;
1639 sc
->result
= DID_NO_CONNECT
<< 16;
1644 conn
= session
->leadconn
;
1646 reason
= FAILURE_SESSION_FREED
;
1647 sc
->result
= DID_NO_CONNECT
<< 16;
1651 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
)) {
1652 reason
= FAILURE_SESSION_IN_RECOVERY
;
1653 sc
->result
= DID_REQUEUE
;
1657 if (iscsi_check_cmdsn_window_closed(conn
)) {
1658 reason
= FAILURE_WINDOW_CLOSED
;
1662 task
= iscsi_alloc_task(conn
, sc
);
1664 reason
= FAILURE_OOM
;
1668 if (!ihost
->workq
) {
1669 reason
= iscsi_prep_scsi_cmd_pdu(task
);
1671 if (reason
== -ENOMEM
|| reason
== -EACCES
) {
1672 reason
= FAILURE_OOM
;
1675 sc
->result
= DID_ABORT
<< 16;
1679 if (session
->tt
->xmit_task(task
)) {
1681 reason
= FAILURE_SESSION_NOT_READY
;
1685 list_add_tail(&task
->running
, &conn
->cmdqueue
);
1686 iscsi_conn_queue_work(conn
);
1689 session
->queued_cmdsn
++;
1690 spin_unlock_bh(&session
->lock
);
1694 iscsi_complete_task(task
, ISCSI_TASK_REQUEUE_SCSIQ
);
1696 spin_unlock_bh(&session
->lock
);
1697 ISCSI_DBG_SESSION(session
, "cmd 0x%x rejected (%d)\n",
1698 sc
->cmnd
[0], reason
);
1699 return SCSI_MLQUEUE_TARGET_BUSY
;
1702 iscsi_complete_task(task
, ISCSI_TASK_REQUEUE_SCSIQ
);
1704 spin_unlock_bh(&session
->lock
);
1705 ISCSI_DBG_SESSION(session
, "iscsi: cmd 0x%x is not queued (%d)\n",
1706 sc
->cmnd
[0], reason
);
1707 if (!scsi_bidi_cmnd(sc
))
1708 scsi_set_resid(sc
, scsi_bufflen(sc
));
1710 scsi_out(sc
)->resid
= scsi_out(sc
)->length
;
1711 scsi_in(sc
)->resid
= scsi_in(sc
)->length
;
1716 EXPORT_SYMBOL_GPL(iscsi_queuecommand
);
1718 int iscsi_change_queue_depth(struct scsi_device
*sdev
, int depth
, int reason
)
1721 case SCSI_QDEPTH_DEFAULT
:
1722 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), depth
);
1724 case SCSI_QDEPTH_QFULL
:
1725 scsi_track_queue_full(sdev
, depth
);
1727 case SCSI_QDEPTH_RAMP_UP
:
1728 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), depth
);
1733 return sdev
->queue_depth
;
1735 EXPORT_SYMBOL_GPL(iscsi_change_queue_depth
);
1737 int iscsi_target_alloc(struct scsi_target
*starget
)
1739 struct iscsi_cls_session
*cls_session
= starget_to_session(starget
);
1740 struct iscsi_session
*session
= cls_session
->dd_data
;
1742 starget
->can_queue
= session
->scsi_cmds_max
;
1745 EXPORT_SYMBOL_GPL(iscsi_target_alloc
);
1747 static void iscsi_tmf_timedout(unsigned long data
)
1749 struct iscsi_conn
*conn
= (struct iscsi_conn
*)data
;
1750 struct iscsi_session
*session
= conn
->session
;
1752 spin_lock(&session
->lock
);
1753 if (conn
->tmf_state
== TMF_QUEUED
) {
1754 conn
->tmf_state
= TMF_TIMEDOUT
;
1755 ISCSI_DBG_EH(session
, "tmf timedout\n");
1756 /* unblock eh_abort() */
1757 wake_up(&conn
->ehwait
);
1759 spin_unlock(&session
->lock
);
1762 static int iscsi_exec_task_mgmt_fn(struct iscsi_conn
*conn
,
1763 struct iscsi_tm
*hdr
, int age
,
1766 struct iscsi_session
*session
= conn
->session
;
1767 struct iscsi_task
*task
;
1769 task
= __iscsi_conn_send_pdu(conn
, (struct iscsi_hdr
*)hdr
,
1772 spin_unlock_bh(&session
->lock
);
1773 iscsi_conn_printk(KERN_ERR
, conn
, "Could not send TMF.\n");
1774 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1775 spin_lock_bh(&session
->lock
);
1778 conn
->tmfcmd_pdus_cnt
++;
1779 conn
->tmf_timer
.expires
= timeout
* HZ
+ jiffies
;
1780 conn
->tmf_timer
.function
= iscsi_tmf_timedout
;
1781 conn
->tmf_timer
.data
= (unsigned long)conn
;
1782 add_timer(&conn
->tmf_timer
);
1783 ISCSI_DBG_EH(session
, "tmf set timeout\n");
1785 spin_unlock_bh(&session
->lock
);
1786 mutex_unlock(&session
->eh_mutex
);
1789 * block eh thread until:
1793 * 3) session is terminated or restarted or userspace has
1794 * given up on recovery
1796 wait_event_interruptible(conn
->ehwait
, age
!= session
->age
||
1797 session
->state
!= ISCSI_STATE_LOGGED_IN
||
1798 conn
->tmf_state
!= TMF_QUEUED
);
1799 if (signal_pending(current
))
1800 flush_signals(current
);
1801 del_timer_sync(&conn
->tmf_timer
);
1803 mutex_lock(&session
->eh_mutex
);
1804 spin_lock_bh(&session
->lock
);
1805 /* if the session drops it will clean up the task */
1806 if (age
!= session
->age
||
1807 session
->state
!= ISCSI_STATE_LOGGED_IN
)
1813 * Fail commands. session lock held and recv side suspended and xmit
1816 static void fail_scsi_tasks(struct iscsi_conn
*conn
, unsigned lun
,
1819 struct iscsi_task
*task
;
1822 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
1823 task
= conn
->session
->cmds
[i
];
1824 if (!task
->sc
|| task
->state
== ISCSI_TASK_FREE
)
1827 if (lun
!= -1 && lun
!= task
->sc
->device
->lun
)
1830 ISCSI_DBG_SESSION(conn
->session
,
1831 "failing sc %p itt 0x%x state %d\n",
1832 task
->sc
, task
->itt
, task
->state
);
1833 fail_scsi_task(task
, error
);
1838 * iscsi_suspend_queue - suspend iscsi_queuecommand
1839 * @conn: iscsi conn to stop queueing IO on
1841 * This grabs the session lock to make sure no one is in
1842 * xmit_task/queuecommand, and then sets suspend to prevent
1843 * new commands from being queued. This only needs to be called
1844 * by offload drivers that need to sync a path like ep disconnect
1845 * with the iscsi_queuecommand/xmit_task. To start IO again libiscsi
1846 * will call iscsi_start_tx and iscsi_unblock_session when in FFP.
1848 void iscsi_suspend_queue(struct iscsi_conn
*conn
)
1850 spin_lock_bh(&conn
->session
->lock
);
1851 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1852 spin_unlock_bh(&conn
->session
->lock
);
1854 EXPORT_SYMBOL_GPL(iscsi_suspend_queue
);
1857 * iscsi_suspend_tx - suspend iscsi_data_xmit
1858 * @conn: iscsi conn tp stop processing IO on.
1860 * This function sets the suspend bit to prevent iscsi_data_xmit
1861 * from sending new IO, and if work is queued on the xmit thread
1862 * it will wait for it to be completed.
1864 void iscsi_suspend_tx(struct iscsi_conn
*conn
)
1866 struct Scsi_Host
*shost
= conn
->session
->host
;
1867 struct iscsi_host
*ihost
= shost_priv(shost
);
1869 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1871 flush_workqueue(ihost
->workq
);
1873 EXPORT_SYMBOL_GPL(iscsi_suspend_tx
);
1875 static void iscsi_start_tx(struct iscsi_conn
*conn
)
1877 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1878 iscsi_conn_queue_work(conn
);
1882 * We want to make sure a ping is in flight. It has timed out.
1883 * And we are not busy processing a pdu that is making
1884 * progress but got started before the ping and is taking a while
1885 * to complete so the ping is just stuck behind it in a queue.
1887 static int iscsi_has_ping_timed_out(struct iscsi_conn
*conn
)
1889 if (conn
->ping_task
&&
1890 time_before_eq(conn
->last_recv
+ (conn
->recv_timeout
* HZ
) +
1891 (conn
->ping_timeout
* HZ
), jiffies
))
1897 static enum blk_eh_timer_return
iscsi_eh_cmd_timed_out(struct scsi_cmnd
*sc
)
1899 enum blk_eh_timer_return rc
= BLK_EH_NOT_HANDLED
;
1900 struct iscsi_task
*task
= NULL
, *running_task
;
1901 struct iscsi_cls_session
*cls_session
;
1902 struct iscsi_session
*session
;
1903 struct iscsi_conn
*conn
;
1906 cls_session
= starget_to_session(scsi_target(sc
->device
));
1907 session
= cls_session
->dd_data
;
1909 ISCSI_DBG_EH(session
, "scsi cmd %p timedout\n", sc
);
1911 spin_lock(&session
->lock
);
1912 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
1914 * We are probably in the middle of iscsi recovery so let
1915 * that complete and handle the error.
1917 rc
= BLK_EH_RESET_TIMER
;
1921 conn
= session
->leadconn
;
1923 /* In the middle of shuting down */
1924 rc
= BLK_EH_RESET_TIMER
;
1928 task
= (struct iscsi_task
*)sc
->SCp
.ptr
;
1931 * Raced with completion. Just reset timer, and let it
1934 rc
= BLK_EH_RESET_TIMER
;
1939 * If we have sent (at least queued to the network layer) a pdu or
1940 * recvd one for the task since the last timeout ask for
1941 * more time. If on the next timeout we have not made progress
1942 * we can check if it is the task or connection when we send the
1945 if (time_after(task
->last_xfer
, task
->last_timeout
)) {
1946 ISCSI_DBG_EH(session
, "Command making progress. Asking "
1947 "scsi-ml for more time to complete. "
1948 "Last data xfer at %lu. Last timeout was at "
1949 "%lu\n.", task
->last_xfer
, task
->last_timeout
);
1950 task
->have_checked_conn
= false;
1951 rc
= BLK_EH_RESET_TIMER
;
1955 if (!conn
->recv_timeout
&& !conn
->ping_timeout
)
1958 * if the ping timedout then we are in the middle of cleaning up
1959 * and can let the iscsi eh handle it
1961 if (iscsi_has_ping_timed_out(conn
)) {
1962 rc
= BLK_EH_RESET_TIMER
;
1966 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
1967 running_task
= conn
->session
->cmds
[i
];
1968 if (!running_task
->sc
|| running_task
== task
||
1969 running_task
->state
!= ISCSI_TASK_RUNNING
)
1973 * Only check if cmds started before this one have made
1974 * progress, or this could never fail
1976 if (time_after(running_task
->sc
->jiffies_at_alloc
,
1977 task
->sc
->jiffies_at_alloc
))
1980 if (time_after(running_task
->last_xfer
, task
->last_timeout
)) {
1982 * This task has not made progress, but a task
1983 * started before us has transferred data since
1984 * we started/last-checked. We could be queueing
1985 * too many tasks or the LU is bad.
1987 * If the device is bad the cmds ahead of us on
1988 * other devs will complete, and this loop will
1989 * eventually fail starting the scsi eh.
1991 ISCSI_DBG_EH(session
, "Command has not made progress "
1992 "but commands ahead of it have. "
1993 "Asking scsi-ml for more time to "
1994 "complete. Our last xfer vs running task "
1995 "last xfer %lu/%lu. Last check %lu.\n",
1996 task
->last_xfer
, running_task
->last_xfer
,
1997 task
->last_timeout
);
1998 rc
= BLK_EH_RESET_TIMER
;
2003 /* Assumes nop timeout is shorter than scsi cmd timeout */
2004 if (task
->have_checked_conn
)
2008 * Checking the transport already or nop from a cmd timeout still
2011 if (conn
->ping_task
) {
2012 task
->have_checked_conn
= true;
2013 rc
= BLK_EH_RESET_TIMER
;
2017 /* Make sure there is a transport check done */
2018 iscsi_send_nopout(conn
, NULL
);
2019 task
->have_checked_conn
= true;
2020 rc
= BLK_EH_RESET_TIMER
;
2024 task
->last_timeout
= jiffies
;
2025 spin_unlock(&session
->lock
);
2026 ISCSI_DBG_EH(session
, "return %s\n", rc
== BLK_EH_RESET_TIMER
?
2027 "timer reset" : "nh");
2031 static void iscsi_check_transport_timeouts(unsigned long data
)
2033 struct iscsi_conn
*conn
= (struct iscsi_conn
*)data
;
2034 struct iscsi_session
*session
= conn
->session
;
2035 unsigned long recv_timeout
, next_timeout
= 0, last_recv
;
2037 spin_lock(&session
->lock
);
2038 if (session
->state
!= ISCSI_STATE_LOGGED_IN
)
2041 recv_timeout
= conn
->recv_timeout
;
2046 last_recv
= conn
->last_recv
;
2048 if (iscsi_has_ping_timed_out(conn
)) {
2049 iscsi_conn_printk(KERN_ERR
, conn
, "ping timeout of %d secs "
2050 "expired, recv timeout %d, last rx %lu, "
2051 "last ping %lu, now %lu\n",
2052 conn
->ping_timeout
, conn
->recv_timeout
,
2053 last_recv
, conn
->last_ping
, jiffies
);
2054 spin_unlock(&session
->lock
);
2055 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
2059 if (time_before_eq(last_recv
+ recv_timeout
, jiffies
)) {
2060 /* send a ping to try to provoke some traffic */
2061 ISCSI_DBG_CONN(conn
, "Sending nopout as ping\n");
2062 iscsi_send_nopout(conn
, NULL
);
2063 next_timeout
= conn
->last_ping
+ (conn
->ping_timeout
* HZ
);
2065 next_timeout
= last_recv
+ recv_timeout
;
2067 ISCSI_DBG_CONN(conn
, "Setting next tmo %lu\n", next_timeout
);
2068 mod_timer(&conn
->transport_timer
, next_timeout
);
2070 spin_unlock(&session
->lock
);
2073 static void iscsi_prep_abort_task_pdu(struct iscsi_task
*task
,
2074 struct iscsi_tm
*hdr
)
2076 memset(hdr
, 0, sizeof(*hdr
));
2077 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2078 hdr
->flags
= ISCSI_TM_FUNC_ABORT_TASK
& ISCSI_FLAG_TM_FUNC_MASK
;
2079 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2080 hdr
->lun
= task
->lun
;
2081 hdr
->rtt
= task
->hdr_itt
;
2082 hdr
->refcmdsn
= task
->cmdsn
;
2085 int iscsi_eh_abort(struct scsi_cmnd
*sc
)
2087 struct iscsi_cls_session
*cls_session
;
2088 struct iscsi_session
*session
;
2089 struct iscsi_conn
*conn
;
2090 struct iscsi_task
*task
;
2091 struct iscsi_tm
*hdr
;
2094 cls_session
= starget_to_session(scsi_target(sc
->device
));
2095 session
= cls_session
->dd_data
;
2097 ISCSI_DBG_EH(session
, "aborting sc %p\n", sc
);
2099 mutex_lock(&session
->eh_mutex
);
2100 spin_lock_bh(&session
->lock
);
2102 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
2106 ISCSI_DBG_EH(session
, "sc never reached iscsi layer or "
2108 spin_unlock_bh(&session
->lock
);
2109 mutex_unlock(&session
->eh_mutex
);
2114 * If we are not logged in or we have started a new session
2115 * then let the host reset code handle this
2117 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
||
2118 sc
->SCp
.phase
!= session
->age
) {
2119 spin_unlock_bh(&session
->lock
);
2120 mutex_unlock(&session
->eh_mutex
);
2121 ISCSI_DBG_EH(session
, "failing abort due to dropped "
2126 conn
= session
->leadconn
;
2127 conn
->eh_abort_cnt
++;
2130 task
= (struct iscsi_task
*)sc
->SCp
.ptr
;
2131 ISCSI_DBG_EH(session
, "aborting [sc %p itt 0x%x]\n",
2134 /* task completed before time out */
2136 ISCSI_DBG_EH(session
, "sc completed while abort in progress\n");
2140 if (task
->state
== ISCSI_TASK_PENDING
) {
2141 fail_scsi_task(task
, DID_ABORT
);
2145 /* only have one tmf outstanding at a time */
2146 if (conn
->tmf_state
!= TMF_INITIAL
)
2148 conn
->tmf_state
= TMF_QUEUED
;
2151 iscsi_prep_abort_task_pdu(task
, hdr
);
2153 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, age
, session
->abort_timeout
)) {
2158 switch (conn
->tmf_state
) {
2160 spin_unlock_bh(&session
->lock
);
2162 * stop tx side incase the target had sent a abort rsp but
2163 * the initiator was still writing out data.
2165 iscsi_suspend_tx(conn
);
2167 * we do not stop the recv side because targets have been
2168 * good and have never sent us a successful tmf response
2169 * then sent more data for the cmd.
2171 spin_lock_bh(&session
->lock
);
2172 fail_scsi_task(task
, DID_ABORT
);
2173 conn
->tmf_state
= TMF_INITIAL
;
2174 memset(hdr
, 0, sizeof(*hdr
));
2175 spin_unlock_bh(&session
->lock
);
2176 iscsi_start_tx(conn
);
2177 goto success_unlocked
;
2179 spin_unlock_bh(&session
->lock
);
2180 iscsi_conn_failure(conn
, ISCSI_ERR_SCSI_EH_SESSION_RST
);
2181 goto failed_unlocked
;
2184 conn
->tmf_state
= TMF_INITIAL
;
2185 memset(hdr
, 0, sizeof(*hdr
));
2186 /* task completed before tmf abort response */
2187 ISCSI_DBG_EH(session
, "sc completed while abort in "
2193 conn
->tmf_state
= TMF_INITIAL
;
2198 spin_unlock_bh(&session
->lock
);
2200 ISCSI_DBG_EH(session
, "abort success [sc %p itt 0x%x]\n",
2202 mutex_unlock(&session
->eh_mutex
);
2206 spin_unlock_bh(&session
->lock
);
2208 ISCSI_DBG_EH(session
, "abort failed [sc %p itt 0x%x]\n", sc
,
2209 task
? task
->itt
: 0);
2210 mutex_unlock(&session
->eh_mutex
);
2213 EXPORT_SYMBOL_GPL(iscsi_eh_abort
);
2215 static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd
*sc
, struct iscsi_tm
*hdr
)
2217 memset(hdr
, 0, sizeof(*hdr
));
2218 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2219 hdr
->flags
= ISCSI_TM_FUNC_LOGICAL_UNIT_RESET
& ISCSI_FLAG_TM_FUNC_MASK
;
2220 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2221 int_to_scsilun(sc
->device
->lun
, &hdr
->lun
);
2222 hdr
->rtt
= RESERVED_ITT
;
2225 int iscsi_eh_device_reset(struct scsi_cmnd
*sc
)
2227 struct iscsi_cls_session
*cls_session
;
2228 struct iscsi_session
*session
;
2229 struct iscsi_conn
*conn
;
2230 struct iscsi_tm
*hdr
;
2233 cls_session
= starget_to_session(scsi_target(sc
->device
));
2234 session
= cls_session
->dd_data
;
2236 ISCSI_DBG_EH(session
, "LU Reset [sc %p lun %u]\n", sc
, sc
->device
->lun
);
2238 mutex_lock(&session
->eh_mutex
);
2239 spin_lock_bh(&session
->lock
);
2241 * Just check if we are not logged in. We cannot check for
2242 * the phase because the reset could come from a ioctl.
2244 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
)
2246 conn
= session
->leadconn
;
2248 /* only have one tmf outstanding at a time */
2249 if (conn
->tmf_state
!= TMF_INITIAL
)
2251 conn
->tmf_state
= TMF_QUEUED
;
2254 iscsi_prep_lun_reset_pdu(sc
, hdr
);
2256 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, session
->age
,
2257 session
->lu_reset_timeout
)) {
2262 switch (conn
->tmf_state
) {
2266 spin_unlock_bh(&session
->lock
);
2267 iscsi_conn_failure(conn
, ISCSI_ERR_SCSI_EH_SESSION_RST
);
2270 conn
->tmf_state
= TMF_INITIAL
;
2275 spin_unlock_bh(&session
->lock
);
2277 iscsi_suspend_tx(conn
);
2279 spin_lock_bh(&session
->lock
);
2280 memset(hdr
, 0, sizeof(*hdr
));
2281 fail_scsi_tasks(conn
, sc
->device
->lun
, DID_ERROR
);
2282 conn
->tmf_state
= TMF_INITIAL
;
2283 spin_unlock_bh(&session
->lock
);
2285 iscsi_start_tx(conn
);
2289 spin_unlock_bh(&session
->lock
);
2291 ISCSI_DBG_EH(session
, "dev reset result = %s\n",
2292 rc
== SUCCESS
? "SUCCESS" : "FAILED");
2293 mutex_unlock(&session
->eh_mutex
);
2296 EXPORT_SYMBOL_GPL(iscsi_eh_device_reset
);
2298 void iscsi_session_recovery_timedout(struct iscsi_cls_session
*cls_session
)
2300 struct iscsi_session
*session
= cls_session
->dd_data
;
2302 spin_lock_bh(&session
->lock
);
2303 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
2304 session
->state
= ISCSI_STATE_RECOVERY_FAILED
;
2305 if (session
->leadconn
)
2306 wake_up(&session
->leadconn
->ehwait
);
2308 spin_unlock_bh(&session
->lock
);
2310 EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout
);
2313 * iscsi_eh_session_reset - drop session and attempt relogin
2316 * This function will wait for a relogin, session termination from
2317 * userspace, or a recovery/replacement timeout.
2319 int iscsi_eh_session_reset(struct scsi_cmnd
*sc
)
2321 struct iscsi_cls_session
*cls_session
;
2322 struct iscsi_session
*session
;
2323 struct iscsi_conn
*conn
;
2325 cls_session
= starget_to_session(scsi_target(sc
->device
));
2326 session
= cls_session
->dd_data
;
2327 conn
= session
->leadconn
;
2329 mutex_lock(&session
->eh_mutex
);
2330 spin_lock_bh(&session
->lock
);
2331 if (session
->state
== ISCSI_STATE_TERMINATE
) {
2333 ISCSI_DBG_EH(session
,
2334 "failing session reset: Could not log back into "
2335 "%s, %s [age %d]\n", session
->targetname
,
2336 conn
->persistent_address
, session
->age
);
2337 spin_unlock_bh(&session
->lock
);
2338 mutex_unlock(&session
->eh_mutex
);
2342 spin_unlock_bh(&session
->lock
);
2343 mutex_unlock(&session
->eh_mutex
);
2345 * we drop the lock here but the leadconn cannot be destoyed while
2346 * we are in the scsi eh
2348 iscsi_conn_failure(conn
, ISCSI_ERR_SCSI_EH_SESSION_RST
);
2350 ISCSI_DBG_EH(session
, "wait for relogin\n");
2351 wait_event_interruptible(conn
->ehwait
,
2352 session
->state
== ISCSI_STATE_TERMINATE
||
2353 session
->state
== ISCSI_STATE_LOGGED_IN
||
2354 session
->state
== ISCSI_STATE_RECOVERY_FAILED
);
2355 if (signal_pending(current
))
2356 flush_signals(current
);
2358 mutex_lock(&session
->eh_mutex
);
2359 spin_lock_bh(&session
->lock
);
2360 if (session
->state
== ISCSI_STATE_LOGGED_IN
) {
2361 ISCSI_DBG_EH(session
,
2362 "session reset succeeded for %s,%s\n",
2363 session
->targetname
, conn
->persistent_address
);
2366 spin_unlock_bh(&session
->lock
);
2367 mutex_unlock(&session
->eh_mutex
);
2370 EXPORT_SYMBOL_GPL(iscsi_eh_session_reset
);
2372 static void iscsi_prep_tgt_reset_pdu(struct scsi_cmnd
*sc
, struct iscsi_tm
*hdr
)
2374 memset(hdr
, 0, sizeof(*hdr
));
2375 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2376 hdr
->flags
= ISCSI_TM_FUNC_TARGET_WARM_RESET
& ISCSI_FLAG_TM_FUNC_MASK
;
2377 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2378 hdr
->rtt
= RESERVED_ITT
;
2382 * iscsi_eh_target_reset - reset target
2385 * This will attempt to send a warm target reset.
2387 int iscsi_eh_target_reset(struct scsi_cmnd
*sc
)
2389 struct iscsi_cls_session
*cls_session
;
2390 struct iscsi_session
*session
;
2391 struct iscsi_conn
*conn
;
2392 struct iscsi_tm
*hdr
;
2395 cls_session
= starget_to_session(scsi_target(sc
->device
));
2396 session
= cls_session
->dd_data
;
2398 ISCSI_DBG_EH(session
, "tgt Reset [sc %p tgt %s]\n", sc
,
2399 session
->targetname
);
2401 mutex_lock(&session
->eh_mutex
);
2402 spin_lock_bh(&session
->lock
);
2404 * Just check if we are not logged in. We cannot check for
2405 * the phase because the reset could come from a ioctl.
2407 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
)
2409 conn
= session
->leadconn
;
2411 /* only have one tmf outstanding at a time */
2412 if (conn
->tmf_state
!= TMF_INITIAL
)
2414 conn
->tmf_state
= TMF_QUEUED
;
2417 iscsi_prep_tgt_reset_pdu(sc
, hdr
);
2419 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, session
->age
,
2420 session
->tgt_reset_timeout
)) {
2425 switch (conn
->tmf_state
) {
2429 spin_unlock_bh(&session
->lock
);
2430 iscsi_conn_failure(conn
, ISCSI_ERR_SCSI_EH_SESSION_RST
);
2433 conn
->tmf_state
= TMF_INITIAL
;
2438 spin_unlock_bh(&session
->lock
);
2440 iscsi_suspend_tx(conn
);
2442 spin_lock_bh(&session
->lock
);
2443 memset(hdr
, 0, sizeof(*hdr
));
2444 fail_scsi_tasks(conn
, -1, DID_ERROR
);
2445 conn
->tmf_state
= TMF_INITIAL
;
2446 spin_unlock_bh(&session
->lock
);
2448 iscsi_start_tx(conn
);
2452 spin_unlock_bh(&session
->lock
);
2454 ISCSI_DBG_EH(session
, "tgt %s reset result = %s\n", session
->targetname
,
2455 rc
== SUCCESS
? "SUCCESS" : "FAILED");
2456 mutex_unlock(&session
->eh_mutex
);
2459 EXPORT_SYMBOL_GPL(iscsi_eh_target_reset
);
2462 * iscsi_eh_recover_target - reset target and possibly the session
2465 * This will attempt to send a warm target reset. If that fails,
2466 * we will escalate to ERL0 session recovery.
2468 int iscsi_eh_recover_target(struct scsi_cmnd
*sc
)
2472 rc
= iscsi_eh_target_reset(sc
);
2474 rc
= iscsi_eh_session_reset(sc
);
2477 EXPORT_SYMBOL_GPL(iscsi_eh_recover_target
);
2480 * Pre-allocate a pool of @max items of @item_size. By default, the pool
2481 * should be accessed via kfifo_{get,put} on q->queue.
2482 * Optionally, the caller can obtain the array of object pointers
2483 * by passing in a non-NULL @items pointer
2486 iscsi_pool_init(struct iscsi_pool
*q
, int max
, void ***items
, int item_size
)
2488 int i
, num_arrays
= 1;
2490 memset(q
, 0, sizeof(*q
));
2494 /* If the user passed an items pointer, he wants a copy of
2498 q
->pool
= kzalloc(num_arrays
* max
* sizeof(void*), GFP_KERNEL
);
2499 if (q
->pool
== NULL
)
2502 kfifo_init(&q
->queue
, (void*)q
->pool
, max
* sizeof(void*));
2504 for (i
= 0; i
< max
; i
++) {
2505 q
->pool
[i
] = kzalloc(item_size
, GFP_KERNEL
);
2506 if (q
->pool
[i
] == NULL
) {
2510 kfifo_in(&q
->queue
, (void*)&q
->pool
[i
], sizeof(void*));
2514 *items
= q
->pool
+ max
;
2515 memcpy(*items
, q
->pool
, max
* sizeof(void *));
2524 EXPORT_SYMBOL_GPL(iscsi_pool_init
);
2526 void iscsi_pool_free(struct iscsi_pool
*q
)
2530 for (i
= 0; i
< q
->max
; i
++)
2534 EXPORT_SYMBOL_GPL(iscsi_pool_free
);
2537 * iscsi_host_add - add host to system
2539 * @pdev: parent device
2541 * This should be called by partial offload and software iscsi drivers
2542 * to add a host to the system.
2544 int iscsi_host_add(struct Scsi_Host
*shost
, struct device
*pdev
)
2546 if (!shost
->can_queue
)
2547 shost
->can_queue
= ISCSI_DEF_XMIT_CMDS_MAX
;
2549 if (!shost
->cmd_per_lun
)
2550 shost
->cmd_per_lun
= ISCSI_DEF_CMD_PER_LUN
;
2552 if (!shost
->transportt
->eh_timed_out
)
2553 shost
->transportt
->eh_timed_out
= iscsi_eh_cmd_timed_out
;
2554 return scsi_add_host(shost
, pdev
);
2556 EXPORT_SYMBOL_GPL(iscsi_host_add
);
2559 * iscsi_host_alloc - allocate a host and driver data
2560 * @sht: scsi host template
2561 * @dd_data_size: driver host data size
2562 * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue
2564 * This should be called by partial offload and software iscsi drivers.
2565 * To access the driver specific memory use the iscsi_host_priv() macro.
2567 struct Scsi_Host
*iscsi_host_alloc(struct scsi_host_template
*sht
,
2568 int dd_data_size
, bool xmit_can_sleep
)
2570 struct Scsi_Host
*shost
;
2571 struct iscsi_host
*ihost
;
2573 shost
= scsi_host_alloc(sht
, sizeof(struct iscsi_host
) + dd_data_size
);
2576 ihost
= shost_priv(shost
);
2578 if (xmit_can_sleep
) {
2579 snprintf(ihost
->workq_name
, sizeof(ihost
->workq_name
),
2580 "iscsi_q_%d", shost
->host_no
);
2581 ihost
->workq
= create_singlethread_workqueue(ihost
->workq_name
);
2586 spin_lock_init(&ihost
->lock
);
2587 ihost
->state
= ISCSI_HOST_SETUP
;
2588 ihost
->num_sessions
= 0;
2589 init_waitqueue_head(&ihost
->session_removal_wq
);
2593 scsi_host_put(shost
);
2596 EXPORT_SYMBOL_GPL(iscsi_host_alloc
);
2598 static void iscsi_notify_host_removed(struct iscsi_cls_session
*cls_session
)
2600 iscsi_session_failure(cls_session
->dd_data
, ISCSI_ERR_INVALID_HOST
);
2604 * iscsi_host_remove - remove host and sessions
2607 * If there are any sessions left, this will initiate the removal and wait
2608 * for the completion.
2610 void iscsi_host_remove(struct Scsi_Host
*shost
)
2612 struct iscsi_host
*ihost
= shost_priv(shost
);
2613 unsigned long flags
;
2615 spin_lock_irqsave(&ihost
->lock
, flags
);
2616 ihost
->state
= ISCSI_HOST_REMOVED
;
2617 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2619 iscsi_host_for_each_session(shost
, iscsi_notify_host_removed
);
2620 wait_event_interruptible(ihost
->session_removal_wq
,
2621 ihost
->num_sessions
== 0);
2622 if (signal_pending(current
))
2623 flush_signals(current
);
2625 scsi_remove_host(shost
);
2627 destroy_workqueue(ihost
->workq
);
2629 EXPORT_SYMBOL_GPL(iscsi_host_remove
);
2631 void iscsi_host_free(struct Scsi_Host
*shost
)
2633 struct iscsi_host
*ihost
= shost_priv(shost
);
2635 kfree(ihost
->netdev
);
2636 kfree(ihost
->hwaddress
);
2637 kfree(ihost
->initiatorname
);
2638 scsi_host_put(shost
);
2640 EXPORT_SYMBOL_GPL(iscsi_host_free
);
2642 static void iscsi_host_dec_session_cnt(struct Scsi_Host
*shost
)
2644 struct iscsi_host
*ihost
= shost_priv(shost
);
2645 unsigned long flags
;
2647 shost
= scsi_host_get(shost
);
2649 printk(KERN_ERR
"Invalid state. Cannot notify host removal "
2650 "of session teardown event because host already "
2655 spin_lock_irqsave(&ihost
->lock
, flags
);
2656 ihost
->num_sessions
--;
2657 if (ihost
->num_sessions
== 0)
2658 wake_up(&ihost
->session_removal_wq
);
2659 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2660 scsi_host_put(shost
);
2664 * iscsi_session_setup - create iscsi cls session and host and session
2665 * @iscsit: iscsi transport template
2667 * @cmds_max: session can queue
2668 * @cmd_task_size: LLD task private data size
2669 * @initial_cmdsn: initial CmdSN
2671 * This can be used by software iscsi_transports that allocate
2672 * a session per scsi host.
2674 * Callers should set cmds_max to the largest total numer (mgmt + scsi) of
2675 * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks
2676 * for nop handling and login/logout requests.
2678 struct iscsi_cls_session
*
2679 iscsi_session_setup(struct iscsi_transport
*iscsit
, struct Scsi_Host
*shost
,
2680 uint16_t cmds_max
, int dd_size
, int cmd_task_size
,
2681 uint32_t initial_cmdsn
, unsigned int id
)
2683 struct iscsi_host
*ihost
= shost_priv(shost
);
2684 struct iscsi_session
*session
;
2685 struct iscsi_cls_session
*cls_session
;
2686 int cmd_i
, scsi_cmds
, total_cmds
= cmds_max
;
2687 unsigned long flags
;
2689 spin_lock_irqsave(&ihost
->lock
, flags
);
2690 if (ihost
->state
== ISCSI_HOST_REMOVED
) {
2691 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2694 ihost
->num_sessions
++;
2695 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2698 total_cmds
= ISCSI_DEF_XMIT_CMDS_MAX
;
2700 * The iscsi layer needs some tasks for nop handling and tmfs,
2701 * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX
2702 * + 1 command for scsi IO.
2704 if (total_cmds
< ISCSI_TOTAL_CMDS_MIN
) {
2705 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2706 "must be a power of two that is at least %d.\n",
2707 total_cmds
, ISCSI_TOTAL_CMDS_MIN
);
2708 goto dec_session_count
;
2711 if (total_cmds
> ISCSI_TOTAL_CMDS_MAX
) {
2712 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2713 "must be a power of 2 less than or equal to %d.\n",
2714 cmds_max
, ISCSI_TOTAL_CMDS_MAX
);
2715 total_cmds
= ISCSI_TOTAL_CMDS_MAX
;
2718 if (!is_power_of_2(total_cmds
)) {
2719 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2720 "must be a power of 2.\n", total_cmds
);
2721 total_cmds
= rounddown_pow_of_two(total_cmds
);
2722 if (total_cmds
< ISCSI_TOTAL_CMDS_MIN
)
2724 printk(KERN_INFO
"iscsi: Rounding can_queue to %d.\n",
2727 scsi_cmds
= total_cmds
- ISCSI_MGMT_CMDS_MAX
;
2729 cls_session
= iscsi_alloc_session(shost
, iscsit
,
2730 sizeof(struct iscsi_session
) +
2733 goto dec_session_count
;
2734 session
= cls_session
->dd_data
;
2735 session
->cls_session
= cls_session
;
2736 session
->host
= shost
;
2737 session
->state
= ISCSI_STATE_FREE
;
2738 session
->fast_abort
= 1;
2739 session
->tgt_reset_timeout
= 30;
2740 session
->lu_reset_timeout
= 15;
2741 session
->abort_timeout
= 10;
2742 session
->scsi_cmds_max
= scsi_cmds
;
2743 session
->cmds_max
= total_cmds
;
2744 session
->queued_cmdsn
= session
->cmdsn
= initial_cmdsn
;
2745 session
->exp_cmdsn
= initial_cmdsn
+ 1;
2746 session
->max_cmdsn
= initial_cmdsn
+ 1;
2747 session
->max_r2t
= 1;
2748 session
->tt
= iscsit
;
2749 session
->dd_data
= cls_session
->dd_data
+ sizeof(*session
);
2750 mutex_init(&session
->eh_mutex
);
2751 spin_lock_init(&session
->lock
);
2753 /* initialize SCSI PDU commands pool */
2754 if (iscsi_pool_init(&session
->cmdpool
, session
->cmds_max
,
2755 (void***)&session
->cmds
,
2756 cmd_task_size
+ sizeof(struct iscsi_task
)))
2757 goto cmdpool_alloc_fail
;
2759 /* pre-format cmds pool with ITT */
2760 for (cmd_i
= 0; cmd_i
< session
->cmds_max
; cmd_i
++) {
2761 struct iscsi_task
*task
= session
->cmds
[cmd_i
];
2764 task
->dd_data
= &task
[1];
2766 task
->state
= ISCSI_TASK_FREE
;
2767 INIT_LIST_HEAD(&task
->running
);
2770 if (!try_module_get(iscsit
->owner
))
2771 goto module_get_fail
;
2773 if (iscsi_add_session(cls_session
, id
))
2774 goto cls_session_fail
;
2779 module_put(iscsit
->owner
);
2781 iscsi_pool_free(&session
->cmdpool
);
2783 iscsi_free_session(cls_session
);
2785 iscsi_host_dec_session_cnt(shost
);
2788 EXPORT_SYMBOL_GPL(iscsi_session_setup
);
2791 * iscsi_session_teardown - destroy session, host, and cls_session
2792 * @cls_session: iscsi session
2794 * The driver must have called iscsi_remove_session before
2797 void iscsi_session_teardown(struct iscsi_cls_session
*cls_session
)
2799 struct iscsi_session
*session
= cls_session
->dd_data
;
2800 struct module
*owner
= cls_session
->transport
->owner
;
2801 struct Scsi_Host
*shost
= session
->host
;
2803 iscsi_pool_free(&session
->cmdpool
);
2805 kfree(session
->password
);
2806 kfree(session
->password_in
);
2807 kfree(session
->username
);
2808 kfree(session
->username_in
);
2809 kfree(session
->targetname
);
2810 kfree(session
->initiatorname
);
2811 kfree(session
->ifacename
);
2813 iscsi_destroy_session(cls_session
);
2814 iscsi_host_dec_session_cnt(shost
);
2817 EXPORT_SYMBOL_GPL(iscsi_session_teardown
);
2820 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
2821 * @cls_session: iscsi_cls_session
2822 * @dd_size: private driver data size
2825 struct iscsi_cls_conn
*
2826 iscsi_conn_setup(struct iscsi_cls_session
*cls_session
, int dd_size
,
2829 struct iscsi_session
*session
= cls_session
->dd_data
;
2830 struct iscsi_conn
*conn
;
2831 struct iscsi_cls_conn
*cls_conn
;
2834 cls_conn
= iscsi_create_conn(cls_session
, sizeof(*conn
) + dd_size
,
2838 conn
= cls_conn
->dd_data
;
2839 memset(conn
, 0, sizeof(*conn
) + dd_size
);
2841 conn
->dd_data
= cls_conn
->dd_data
+ sizeof(*conn
);
2842 conn
->session
= session
;
2843 conn
->cls_conn
= cls_conn
;
2844 conn
->c_stage
= ISCSI_CONN_INITIAL_STAGE
;
2845 conn
->id
= conn_idx
;
2846 conn
->exp_statsn
= 0;
2847 conn
->tmf_state
= TMF_INITIAL
;
2849 init_timer(&conn
->transport_timer
);
2850 conn
->transport_timer
.data
= (unsigned long)conn
;
2851 conn
->transport_timer
.function
= iscsi_check_transport_timeouts
;
2853 INIT_LIST_HEAD(&conn
->mgmtqueue
);
2854 INIT_LIST_HEAD(&conn
->cmdqueue
);
2855 INIT_LIST_HEAD(&conn
->requeue
);
2856 INIT_WORK(&conn
->xmitwork
, iscsi_xmitworker
);
2858 /* allocate login_task used for the login/text sequences */
2859 spin_lock_bh(&session
->lock
);
2860 if (!kfifo_out(&session
->cmdpool
.queue
,
2861 (void*)&conn
->login_task
,
2863 spin_unlock_bh(&session
->lock
);
2864 goto login_task_alloc_fail
;
2866 spin_unlock_bh(&session
->lock
);
2868 data
= (char *) __get_free_pages(GFP_KERNEL
,
2869 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN
));
2871 goto login_task_data_alloc_fail
;
2872 conn
->login_task
->data
= conn
->data
= data
;
2874 init_timer(&conn
->tmf_timer
);
2875 init_waitqueue_head(&conn
->ehwait
);
2879 login_task_data_alloc_fail
:
2880 kfifo_in(&session
->cmdpool
.queue
, (void*)&conn
->login_task
,
2882 login_task_alloc_fail
:
2883 iscsi_destroy_conn(cls_conn
);
2886 EXPORT_SYMBOL_GPL(iscsi_conn_setup
);
2889 * iscsi_conn_teardown - teardown iscsi connection
2890 * cls_conn: iscsi class connection
2892 * TODO: we may need to make this into a two step process
2893 * like scsi-mls remove + put host
2895 void iscsi_conn_teardown(struct iscsi_cls_conn
*cls_conn
)
2897 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2898 struct iscsi_session
*session
= conn
->session
;
2899 unsigned long flags
;
2901 del_timer_sync(&conn
->transport_timer
);
2903 spin_lock_bh(&session
->lock
);
2904 conn
->c_stage
= ISCSI_CONN_CLEANUP_WAIT
;
2905 if (session
->leadconn
== conn
) {
2907 * leading connection? then give up on recovery.
2909 session
->state
= ISCSI_STATE_TERMINATE
;
2910 wake_up(&conn
->ehwait
);
2912 spin_unlock_bh(&session
->lock
);
2915 * Block until all in-progress commands for this connection
2919 spin_lock_irqsave(session
->host
->host_lock
, flags
);
2920 if (!session
->host
->host_busy
) { /* OK for ERL == 0 */
2921 spin_unlock_irqrestore(session
->host
->host_lock
, flags
);
2924 spin_unlock_irqrestore(session
->host
->host_lock
, flags
);
2925 msleep_interruptible(500);
2926 iscsi_conn_printk(KERN_INFO
, conn
, "iscsi conn_destroy(): "
2927 "host_busy %d host_failed %d\n",
2928 session
->host
->host_busy
,
2929 session
->host
->host_failed
);
2931 * force eh_abort() to unblock
2933 wake_up(&conn
->ehwait
);
2936 /* flush queued up work because we free the connection below */
2937 iscsi_suspend_tx(conn
);
2939 spin_lock_bh(&session
->lock
);
2940 free_pages((unsigned long) conn
->data
,
2941 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN
));
2942 kfree(conn
->persistent_address
);
2943 kfifo_in(&session
->cmdpool
.queue
, (void*)&conn
->login_task
,
2945 if (session
->leadconn
== conn
)
2946 session
->leadconn
= NULL
;
2947 spin_unlock_bh(&session
->lock
);
2949 iscsi_destroy_conn(cls_conn
);
2951 EXPORT_SYMBOL_GPL(iscsi_conn_teardown
);
2953 int iscsi_conn_start(struct iscsi_cls_conn
*cls_conn
)
2955 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2956 struct iscsi_session
*session
= conn
->session
;
2959 iscsi_conn_printk(KERN_ERR
, conn
,
2960 "can't start unbound connection\n");
2964 if ((session
->imm_data_en
|| !session
->initial_r2t_en
) &&
2965 session
->first_burst
> session
->max_burst
) {
2966 iscsi_conn_printk(KERN_INFO
, conn
, "invalid burst lengths: "
2967 "first_burst %d max_burst %d\n",
2968 session
->first_burst
, session
->max_burst
);
2972 if (conn
->ping_timeout
&& !conn
->recv_timeout
) {
2973 iscsi_conn_printk(KERN_ERR
, conn
, "invalid recv timeout of "
2974 "zero. Using 5 seconds\n.");
2975 conn
->recv_timeout
= 5;
2978 if (conn
->recv_timeout
&& !conn
->ping_timeout
) {
2979 iscsi_conn_printk(KERN_ERR
, conn
, "invalid ping timeout of "
2980 "zero. Using 5 seconds.\n");
2981 conn
->ping_timeout
= 5;
2984 spin_lock_bh(&session
->lock
);
2985 conn
->c_stage
= ISCSI_CONN_STARTED
;
2986 session
->state
= ISCSI_STATE_LOGGED_IN
;
2987 session
->queued_cmdsn
= session
->cmdsn
;
2989 conn
->last_recv
= jiffies
;
2990 conn
->last_ping
= jiffies
;
2991 if (conn
->recv_timeout
&& conn
->ping_timeout
)
2992 mod_timer(&conn
->transport_timer
,
2993 jiffies
+ (conn
->recv_timeout
* HZ
));
2995 switch(conn
->stop_stage
) {
2996 case STOP_CONN_RECOVER
:
2998 * unblock eh_abort() if it is blocked. re-try all
2999 * commands after successful recovery
3001 conn
->stop_stage
= 0;
3002 conn
->tmf_state
= TMF_INITIAL
;
3004 if (session
->age
== 16)
3007 case STOP_CONN_TERM
:
3008 conn
->stop_stage
= 0;
3013 spin_unlock_bh(&session
->lock
);
3015 iscsi_unblock_session(session
->cls_session
);
3016 wake_up(&conn
->ehwait
);
3019 EXPORT_SYMBOL_GPL(iscsi_conn_start
);
3022 fail_mgmt_tasks(struct iscsi_session
*session
, struct iscsi_conn
*conn
)
3024 struct iscsi_task
*task
;
3027 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
3028 task
= conn
->session
->cmds
[i
];
3032 if (task
->state
== ISCSI_TASK_FREE
)
3035 ISCSI_DBG_SESSION(conn
->session
,
3036 "failing mgmt itt 0x%x state %d\n",
3037 task
->itt
, task
->state
);
3038 state
= ISCSI_TASK_ABRT_SESS_RECOV
;
3039 if (task
->state
== ISCSI_TASK_PENDING
)
3040 state
= ISCSI_TASK_COMPLETED
;
3041 iscsi_complete_task(task
, state
);
3046 static void iscsi_start_session_recovery(struct iscsi_session
*session
,
3047 struct iscsi_conn
*conn
, int flag
)
3051 mutex_lock(&session
->eh_mutex
);
3052 spin_lock_bh(&session
->lock
);
3053 if (conn
->stop_stage
== STOP_CONN_TERM
) {
3054 spin_unlock_bh(&session
->lock
);
3055 mutex_unlock(&session
->eh_mutex
);
3060 * When this is called for the in_login state, we only want to clean
3061 * up the login task and connection. We do not need to block and set
3062 * the recovery state again
3064 if (flag
== STOP_CONN_TERM
)
3065 session
->state
= ISCSI_STATE_TERMINATE
;
3066 else if (conn
->stop_stage
!= STOP_CONN_RECOVER
)
3067 session
->state
= ISCSI_STATE_IN_RECOVERY
;
3069 old_stop_stage
= conn
->stop_stage
;
3070 conn
->stop_stage
= flag
;
3071 spin_unlock_bh(&session
->lock
);
3073 del_timer_sync(&conn
->transport_timer
);
3074 iscsi_suspend_tx(conn
);
3076 spin_lock_bh(&session
->lock
);
3077 conn
->c_stage
= ISCSI_CONN_STOPPED
;
3078 spin_unlock_bh(&session
->lock
);
3081 * for connection level recovery we should not calculate
3082 * header digest. conn->hdr_size used for optimization
3083 * in hdr_extract() and will be re-negotiated at
3086 if (flag
== STOP_CONN_RECOVER
) {
3087 conn
->hdrdgst_en
= 0;
3088 conn
->datadgst_en
= 0;
3089 if (session
->state
== ISCSI_STATE_IN_RECOVERY
&&
3090 old_stop_stage
!= STOP_CONN_RECOVER
) {
3091 ISCSI_DBG_SESSION(session
, "blocking session\n");
3092 iscsi_block_session(session
->cls_session
);
3099 spin_lock_bh(&session
->lock
);
3100 fail_scsi_tasks(conn
, -1, DID_TRANSPORT_DISRUPTED
);
3101 fail_mgmt_tasks(session
, conn
);
3102 memset(&conn
->tmhdr
, 0, sizeof(conn
->tmhdr
));
3103 spin_unlock_bh(&session
->lock
);
3104 mutex_unlock(&session
->eh_mutex
);
3107 void iscsi_conn_stop(struct iscsi_cls_conn
*cls_conn
, int flag
)
3109 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3110 struct iscsi_session
*session
= conn
->session
;
3113 case STOP_CONN_RECOVER
:
3114 case STOP_CONN_TERM
:
3115 iscsi_start_session_recovery(session
, conn
, flag
);
3118 iscsi_conn_printk(KERN_ERR
, conn
,
3119 "invalid stop flag %d\n", flag
);
3122 EXPORT_SYMBOL_GPL(iscsi_conn_stop
);
3124 int iscsi_conn_bind(struct iscsi_cls_session
*cls_session
,
3125 struct iscsi_cls_conn
*cls_conn
, int is_leading
)
3127 struct iscsi_session
*session
= cls_session
->dd_data
;
3128 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3130 spin_lock_bh(&session
->lock
);
3132 session
->leadconn
= conn
;
3133 spin_unlock_bh(&session
->lock
);
3136 * Unblock xmitworker(), Login Phase will pass through.
3138 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
3139 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
3142 EXPORT_SYMBOL_GPL(iscsi_conn_bind
);
3144 static int iscsi_switch_str_param(char **param
, char *new_val_buf
)
3149 if (!strcmp(*param
, new_val_buf
))
3153 new_val
= kstrdup(new_val_buf
, GFP_NOIO
);
3162 int iscsi_set_param(struct iscsi_cls_conn
*cls_conn
,
3163 enum iscsi_param param
, char *buf
, int buflen
)
3165 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3166 struct iscsi_session
*session
= conn
->session
;
3169 case ISCSI_PARAM_FAST_ABORT
:
3170 sscanf(buf
, "%d", &session
->fast_abort
);
3172 case ISCSI_PARAM_ABORT_TMO
:
3173 sscanf(buf
, "%d", &session
->abort_timeout
);
3175 case ISCSI_PARAM_LU_RESET_TMO
:
3176 sscanf(buf
, "%d", &session
->lu_reset_timeout
);
3178 case ISCSI_PARAM_TGT_RESET_TMO
:
3179 sscanf(buf
, "%d", &session
->tgt_reset_timeout
);
3181 case ISCSI_PARAM_PING_TMO
:
3182 sscanf(buf
, "%d", &conn
->ping_timeout
);
3184 case ISCSI_PARAM_RECV_TMO
:
3185 sscanf(buf
, "%d", &conn
->recv_timeout
);
3187 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
3188 sscanf(buf
, "%d", &conn
->max_recv_dlength
);
3190 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
3191 sscanf(buf
, "%d", &conn
->max_xmit_dlength
);
3193 case ISCSI_PARAM_HDRDGST_EN
:
3194 sscanf(buf
, "%d", &conn
->hdrdgst_en
);
3196 case ISCSI_PARAM_DATADGST_EN
:
3197 sscanf(buf
, "%d", &conn
->datadgst_en
);
3199 case ISCSI_PARAM_INITIAL_R2T_EN
:
3200 sscanf(buf
, "%d", &session
->initial_r2t_en
);
3202 case ISCSI_PARAM_MAX_R2T
:
3203 sscanf(buf
, "%d", &session
->max_r2t
);
3205 case ISCSI_PARAM_IMM_DATA_EN
:
3206 sscanf(buf
, "%d", &session
->imm_data_en
);
3208 case ISCSI_PARAM_FIRST_BURST
:
3209 sscanf(buf
, "%d", &session
->first_burst
);
3211 case ISCSI_PARAM_MAX_BURST
:
3212 sscanf(buf
, "%d", &session
->max_burst
);
3214 case ISCSI_PARAM_PDU_INORDER_EN
:
3215 sscanf(buf
, "%d", &session
->pdu_inorder_en
);
3217 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
3218 sscanf(buf
, "%d", &session
->dataseq_inorder_en
);
3220 case ISCSI_PARAM_ERL
:
3221 sscanf(buf
, "%d", &session
->erl
);
3223 case ISCSI_PARAM_EXP_STATSN
:
3224 sscanf(buf
, "%u", &conn
->exp_statsn
);
3226 case ISCSI_PARAM_USERNAME
:
3227 return iscsi_switch_str_param(&session
->username
, buf
);
3228 case ISCSI_PARAM_USERNAME_IN
:
3229 return iscsi_switch_str_param(&session
->username_in
, buf
);
3230 case ISCSI_PARAM_PASSWORD
:
3231 return iscsi_switch_str_param(&session
->password
, buf
);
3232 case ISCSI_PARAM_PASSWORD_IN
:
3233 return iscsi_switch_str_param(&session
->password_in
, buf
);
3234 case ISCSI_PARAM_TARGET_NAME
:
3235 return iscsi_switch_str_param(&session
->targetname
, buf
);
3236 case ISCSI_PARAM_TPGT
:
3237 sscanf(buf
, "%d", &session
->tpgt
);
3239 case ISCSI_PARAM_PERSISTENT_PORT
:
3240 sscanf(buf
, "%d", &conn
->persistent_port
);
3242 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
3243 return iscsi_switch_str_param(&conn
->persistent_address
, buf
);
3244 case ISCSI_PARAM_IFACE_NAME
:
3245 return iscsi_switch_str_param(&session
->ifacename
, buf
);
3246 case ISCSI_PARAM_INITIATOR_NAME
:
3247 return iscsi_switch_str_param(&session
->initiatorname
, buf
);
3254 EXPORT_SYMBOL_GPL(iscsi_set_param
);
3256 int iscsi_session_get_param(struct iscsi_cls_session
*cls_session
,
3257 enum iscsi_param param
, char *buf
)
3259 struct iscsi_session
*session
= cls_session
->dd_data
;
3263 case ISCSI_PARAM_FAST_ABORT
:
3264 len
= sprintf(buf
, "%d\n", session
->fast_abort
);
3266 case ISCSI_PARAM_ABORT_TMO
:
3267 len
= sprintf(buf
, "%d\n", session
->abort_timeout
);
3269 case ISCSI_PARAM_LU_RESET_TMO
:
3270 len
= sprintf(buf
, "%d\n", session
->lu_reset_timeout
);
3272 case ISCSI_PARAM_TGT_RESET_TMO
:
3273 len
= sprintf(buf
, "%d\n", session
->tgt_reset_timeout
);
3275 case ISCSI_PARAM_INITIAL_R2T_EN
:
3276 len
= sprintf(buf
, "%d\n", session
->initial_r2t_en
);
3278 case ISCSI_PARAM_MAX_R2T
:
3279 len
= sprintf(buf
, "%hu\n", session
->max_r2t
);
3281 case ISCSI_PARAM_IMM_DATA_EN
:
3282 len
= sprintf(buf
, "%d\n", session
->imm_data_en
);
3284 case ISCSI_PARAM_FIRST_BURST
:
3285 len
= sprintf(buf
, "%u\n", session
->first_burst
);
3287 case ISCSI_PARAM_MAX_BURST
:
3288 len
= sprintf(buf
, "%u\n", session
->max_burst
);
3290 case ISCSI_PARAM_PDU_INORDER_EN
:
3291 len
= sprintf(buf
, "%d\n", session
->pdu_inorder_en
);
3293 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
3294 len
= sprintf(buf
, "%d\n", session
->dataseq_inorder_en
);
3296 case ISCSI_PARAM_ERL
:
3297 len
= sprintf(buf
, "%d\n", session
->erl
);
3299 case ISCSI_PARAM_TARGET_NAME
:
3300 len
= sprintf(buf
, "%s\n", session
->targetname
);
3302 case ISCSI_PARAM_TPGT
:
3303 len
= sprintf(buf
, "%d\n", session
->tpgt
);
3305 case ISCSI_PARAM_USERNAME
:
3306 len
= sprintf(buf
, "%s\n", session
->username
);
3308 case ISCSI_PARAM_USERNAME_IN
:
3309 len
= sprintf(buf
, "%s\n", session
->username_in
);
3311 case ISCSI_PARAM_PASSWORD
:
3312 len
= sprintf(buf
, "%s\n", session
->password
);
3314 case ISCSI_PARAM_PASSWORD_IN
:
3315 len
= sprintf(buf
, "%s\n", session
->password_in
);
3317 case ISCSI_PARAM_IFACE_NAME
:
3318 len
= sprintf(buf
, "%s\n", session
->ifacename
);
3320 case ISCSI_PARAM_INITIATOR_NAME
:
3321 len
= sprintf(buf
, "%s\n", session
->initiatorname
);
3329 EXPORT_SYMBOL_GPL(iscsi_session_get_param
);
3331 int iscsi_conn_get_addr_param(struct sockaddr_storage
*addr
,
3332 enum iscsi_param param
, char *buf
)
3334 struct sockaddr_in6
*sin6
= NULL
;
3335 struct sockaddr_in
*sin
= NULL
;
3338 switch (addr
->ss_family
) {
3340 sin
= (struct sockaddr_in
*)addr
;
3343 sin6
= (struct sockaddr_in6
*)addr
;
3350 case ISCSI_PARAM_CONN_ADDRESS
:
3351 case ISCSI_HOST_PARAM_IPADDRESS
:
3353 len
= sprintf(buf
, "%pI4\n", &sin
->sin_addr
.s_addr
);
3355 len
= sprintf(buf
, "%pI6\n", &sin6
->sin6_addr
);
3357 case ISCSI_PARAM_CONN_PORT
:
3359 len
= sprintf(buf
, "%hu\n", be16_to_cpu(sin
->sin_port
));
3361 len
= sprintf(buf
, "%hu\n",
3362 be16_to_cpu(sin6
->sin6_port
));
3370 EXPORT_SYMBOL_GPL(iscsi_conn_get_addr_param
);
3372 int iscsi_conn_get_param(struct iscsi_cls_conn
*cls_conn
,
3373 enum iscsi_param param
, char *buf
)
3375 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3379 case ISCSI_PARAM_PING_TMO
:
3380 len
= sprintf(buf
, "%u\n", conn
->ping_timeout
);
3382 case ISCSI_PARAM_RECV_TMO
:
3383 len
= sprintf(buf
, "%u\n", conn
->recv_timeout
);
3385 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
3386 len
= sprintf(buf
, "%u\n", conn
->max_recv_dlength
);
3388 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
3389 len
= sprintf(buf
, "%u\n", conn
->max_xmit_dlength
);
3391 case ISCSI_PARAM_HDRDGST_EN
:
3392 len
= sprintf(buf
, "%d\n", conn
->hdrdgst_en
);
3394 case ISCSI_PARAM_DATADGST_EN
:
3395 len
= sprintf(buf
, "%d\n", conn
->datadgst_en
);
3397 case ISCSI_PARAM_IFMARKER_EN
:
3398 len
= sprintf(buf
, "%d\n", conn
->ifmarker_en
);
3400 case ISCSI_PARAM_OFMARKER_EN
:
3401 len
= sprintf(buf
, "%d\n", conn
->ofmarker_en
);
3403 case ISCSI_PARAM_EXP_STATSN
:
3404 len
= sprintf(buf
, "%u\n", conn
->exp_statsn
);
3406 case ISCSI_PARAM_PERSISTENT_PORT
:
3407 len
= sprintf(buf
, "%d\n", conn
->persistent_port
);
3409 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
3410 len
= sprintf(buf
, "%s\n", conn
->persistent_address
);
3418 EXPORT_SYMBOL_GPL(iscsi_conn_get_param
);
3420 int iscsi_host_get_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
3423 struct iscsi_host
*ihost
= shost_priv(shost
);
3427 case ISCSI_HOST_PARAM_NETDEV_NAME
:
3428 len
= sprintf(buf
, "%s\n", ihost
->netdev
);
3430 case ISCSI_HOST_PARAM_HWADDRESS
:
3431 len
= sprintf(buf
, "%s\n", ihost
->hwaddress
);
3433 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
3434 len
= sprintf(buf
, "%s\n", ihost
->initiatorname
);
3442 EXPORT_SYMBOL_GPL(iscsi_host_get_param
);
3444 int iscsi_host_set_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
3445 char *buf
, int buflen
)
3447 struct iscsi_host
*ihost
= shost_priv(shost
);
3450 case ISCSI_HOST_PARAM_NETDEV_NAME
:
3451 return iscsi_switch_str_param(&ihost
->netdev
, buf
);
3452 case ISCSI_HOST_PARAM_HWADDRESS
:
3453 return iscsi_switch_str_param(&ihost
->hwaddress
, buf
);
3454 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
3455 return iscsi_switch_str_param(&ihost
->initiatorname
, buf
);
3462 EXPORT_SYMBOL_GPL(iscsi_host_set_param
);
3464 MODULE_AUTHOR("Mike Christie");
3465 MODULE_DESCRIPTION("iSCSI library functions");
3466 MODULE_LICENSE("GPL");