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
;
117 void iscsi_update_cmdsn(struct iscsi_session
*session
, struct iscsi_nopin
*hdr
)
119 __iscsi_update_cmdsn(session
, be32_to_cpu(hdr
->exp_cmdsn
),
120 be32_to_cpu(hdr
->max_cmdsn
));
122 EXPORT_SYMBOL_GPL(iscsi_update_cmdsn
);
125 * iscsi_prep_data_out_pdu - initialize Data-Out
126 * @task: scsi command task
128 * @hdr: iscsi data in pdu
131 * Initialize Data-Out within this R2T sequence and finds
132 * proper data_offset within this SCSI command.
134 * This function is called with connection lock taken.
136 void iscsi_prep_data_out_pdu(struct iscsi_task
*task
, struct iscsi_r2t_info
*r2t
,
137 struct iscsi_data
*hdr
)
139 struct iscsi_conn
*conn
= task
->conn
;
140 unsigned int left
= r2t
->data_length
- r2t
->sent
;
142 task
->hdr_len
= sizeof(struct iscsi_data
);
144 memset(hdr
, 0, sizeof(struct iscsi_data
));
146 hdr
->datasn
= cpu_to_be32(r2t
->datasn
);
148 hdr
->opcode
= ISCSI_OP_SCSI_DATA_OUT
;
149 hdr
->lun
= task
->lun
;
150 hdr
->itt
= task
->hdr_itt
;
151 hdr
->exp_statsn
= r2t
->exp_statsn
;
152 hdr
->offset
= cpu_to_be32(r2t
->data_offset
+ r2t
->sent
);
153 if (left
> conn
->max_xmit_dlength
) {
154 hton24(hdr
->dlength
, conn
->max_xmit_dlength
);
155 r2t
->data_count
= conn
->max_xmit_dlength
;
158 hton24(hdr
->dlength
, left
);
159 r2t
->data_count
= left
;
160 hdr
->flags
= ISCSI_FLAG_CMD_FINAL
;
162 conn
->dataout_pdus_cnt
++;
164 EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu
);
166 static int iscsi_add_hdr(struct iscsi_task
*task
, unsigned len
)
168 unsigned exp_len
= task
->hdr_len
+ len
;
170 if (exp_len
> task
->hdr_max
) {
175 WARN_ON(len
& (ISCSI_PAD_LEN
- 1)); /* caller must pad the AHS */
176 task
->hdr_len
= exp_len
;
181 * make an extended cdb AHS
183 static int iscsi_prep_ecdb_ahs(struct iscsi_task
*task
)
185 struct scsi_cmnd
*cmd
= task
->sc
;
186 unsigned rlen
, pad_len
;
187 unsigned short ahslength
;
188 struct iscsi_ecdb_ahdr
*ecdb_ahdr
;
191 ecdb_ahdr
= iscsi_next_hdr(task
);
192 rlen
= cmd
->cmd_len
- ISCSI_CDB_SIZE
;
194 BUG_ON(rlen
> sizeof(ecdb_ahdr
->ecdb
));
195 ahslength
= rlen
+ sizeof(ecdb_ahdr
->reserved
);
197 pad_len
= iscsi_padding(rlen
);
199 rc
= iscsi_add_hdr(task
, sizeof(ecdb_ahdr
->ahslength
) +
200 sizeof(ecdb_ahdr
->ahstype
) + ahslength
+ pad_len
);
205 memset(&ecdb_ahdr
->ecdb
[rlen
], 0, pad_len
);
207 ecdb_ahdr
->ahslength
= cpu_to_be16(ahslength
);
208 ecdb_ahdr
->ahstype
= ISCSI_AHSTYPE_CDB
;
209 ecdb_ahdr
->reserved
= 0;
210 memcpy(ecdb_ahdr
->ecdb
, cmd
->cmnd
+ ISCSI_CDB_SIZE
, rlen
);
212 ISCSI_DBG_SESSION(task
->conn
->session
,
213 "iscsi_prep_ecdb_ahs: varlen_cdb_len %d "
214 "rlen %d pad_len %d ahs_length %d iscsi_headers_size "
215 "%u\n", cmd
->cmd_len
, rlen
, pad_len
, ahslength
,
220 static int iscsi_prep_bidi_ahs(struct iscsi_task
*task
)
222 struct scsi_cmnd
*sc
= task
->sc
;
223 struct iscsi_rlength_ahdr
*rlen_ahdr
;
226 rlen_ahdr
= iscsi_next_hdr(task
);
227 rc
= iscsi_add_hdr(task
, sizeof(*rlen_ahdr
));
231 rlen_ahdr
->ahslength
=
232 cpu_to_be16(sizeof(rlen_ahdr
->read_length
) +
233 sizeof(rlen_ahdr
->reserved
));
234 rlen_ahdr
->ahstype
= ISCSI_AHSTYPE_RLENGTH
;
235 rlen_ahdr
->reserved
= 0;
236 rlen_ahdr
->read_length
= cpu_to_be32(scsi_in(sc
)->length
);
238 ISCSI_DBG_SESSION(task
->conn
->session
,
239 "bidi-in rlen_ahdr->read_length(%d) "
240 "rlen_ahdr->ahslength(%d)\n",
241 be32_to_cpu(rlen_ahdr
->read_length
),
242 be16_to_cpu(rlen_ahdr
->ahslength
));
247 * iscsi_check_tmf_restrictions - check if a task is affected by TMF
249 * @opcode: opcode to check for
251 * During TMF a task has to be checked if it's affected.
252 * All unrelated I/O can be passed through, but I/O to the
253 * affected LUN should be restricted.
254 * If 'fast_abort' is set we won't be sending any I/O to the
256 * Otherwise the target is waiting for all TTTs to be completed,
257 * so we have to send all outstanding Data-Out PDUs to the target.
259 static int iscsi_check_tmf_restrictions(struct iscsi_task
*task
, int opcode
)
261 struct iscsi_conn
*conn
= task
->conn
;
262 struct iscsi_tm
*tmf
= &conn
->tmhdr
;
265 if (conn
->tmf_state
== TMF_INITIAL
)
268 if ((tmf
->opcode
& ISCSI_OPCODE_MASK
) != ISCSI_OP_SCSI_TMFUNC
)
271 switch (ISCSI_TM_FUNC_VALUE(tmf
)) {
272 case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET
:
274 * Allow PDUs for unrelated LUNs
276 hdr_lun
= scsilun_to_int(&tmf
->lun
);
277 if (hdr_lun
!= task
->sc
->device
->lun
)
280 case ISCSI_TM_FUNC_TARGET_WARM_RESET
:
282 * Fail all SCSI cmd PDUs
284 if (opcode
!= ISCSI_OP_SCSI_DATA_OUT
) {
285 iscsi_conn_printk(KERN_INFO
, conn
,
286 "task [op %x/%x itt "
289 task
->hdr
->opcode
, opcode
,
290 task
->itt
, task
->hdr_itt
);
294 * And also all data-out PDUs in response to R2T
295 * if fast_abort is set.
297 if (conn
->session
->fast_abort
) {
298 iscsi_conn_printk(KERN_INFO
, conn
,
299 "task [op %x/%x itt "
300 "0x%x/0x%x] fast abort.\n",
301 task
->hdr
->opcode
, opcode
,
302 task
->itt
, task
->hdr_itt
);
306 case ISCSI_TM_FUNC_ABORT_TASK
:
308 * the caller has already checked if the task
309 * they want to abort was in the pending queue so if
310 * we are here the cmd pdu has gone out already, and
311 * we will only hit this for data-outs
313 if (opcode
== ISCSI_OP_SCSI_DATA_OUT
&&
314 task
->hdr_itt
== tmf
->rtt
) {
315 ISCSI_DBG_SESSION(conn
->session
,
316 "Preventing task %x/%x from sending "
317 "data-out due to abort task in "
318 "progress\n", task
->itt
,
329 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
332 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
333 * fields like dlength or final based on how much data it sends
335 static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task
*task
)
337 struct iscsi_conn
*conn
= task
->conn
;
338 struct iscsi_session
*session
= conn
->session
;
339 struct scsi_cmnd
*sc
= task
->sc
;
340 struct iscsi_scsi_req
*hdr
;
341 unsigned hdrlength
, cmd_len
, transfer_length
;
345 rc
= iscsi_check_tmf_restrictions(task
, ISCSI_OP_SCSI_CMD
);
349 if (conn
->session
->tt
->alloc_pdu
) {
350 rc
= conn
->session
->tt
->alloc_pdu(task
, ISCSI_OP_SCSI_CMD
);
354 hdr
= (struct iscsi_scsi_req
*)task
->hdr
;
356 memset(hdr
, 0, sizeof(*hdr
));
358 if (session
->tt
->parse_pdu_itt
)
359 hdr
->itt
= task
->hdr_itt
= itt
;
361 hdr
->itt
= task
->hdr_itt
= build_itt(task
->itt
,
362 task
->conn
->session
->age
);
364 rc
= iscsi_add_hdr(task
, sizeof(*hdr
));
367 hdr
->opcode
= ISCSI_OP_SCSI_CMD
;
368 hdr
->flags
= ISCSI_ATTR_SIMPLE
;
369 int_to_scsilun(sc
->device
->lun
, &hdr
->lun
);
370 task
->lun
= hdr
->lun
;
371 hdr
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
372 cmd_len
= sc
->cmd_len
;
373 if (cmd_len
< ISCSI_CDB_SIZE
)
374 memset(&hdr
->cdb
[cmd_len
], 0, ISCSI_CDB_SIZE
- cmd_len
);
375 else if (cmd_len
> ISCSI_CDB_SIZE
) {
376 rc
= iscsi_prep_ecdb_ahs(task
);
379 cmd_len
= ISCSI_CDB_SIZE
;
381 memcpy(hdr
->cdb
, sc
->cmnd
, cmd_len
);
384 if (scsi_bidi_cmnd(sc
)) {
385 hdr
->flags
|= ISCSI_FLAG_CMD_READ
;
386 rc
= iscsi_prep_bidi_ahs(task
);
391 if (scsi_get_prot_op(sc
) != SCSI_PROT_NORMAL
)
392 task
->protected = true;
394 transfer_length
= scsi_transfer_length(sc
);
395 hdr
->data_length
= cpu_to_be32(transfer_length
);
396 if (sc
->sc_data_direction
== DMA_TO_DEVICE
) {
397 struct iscsi_r2t_info
*r2t
= &task
->unsol_r2t
;
399 hdr
->flags
|= ISCSI_FLAG_CMD_WRITE
;
403 * imm_count bytes to be sent right after
406 * unsol_count bytes(as Data-Out) to be sent
407 * without R2T ack right after
410 * r2t data_length bytes to be sent via R2T ack's
412 * pad_count bytes to be sent as zero-padding
414 memset(r2t
, 0, sizeof(*r2t
));
416 if (session
->imm_data_en
) {
417 if (transfer_length
>= session
->first_burst
)
418 task
->imm_count
= min(session
->first_burst
,
419 conn
->max_xmit_dlength
);
421 task
->imm_count
= min(transfer_length
,
422 conn
->max_xmit_dlength
);
423 hton24(hdr
->dlength
, task
->imm_count
);
425 zero_data(hdr
->dlength
);
427 if (!session
->initial_r2t_en
) {
428 r2t
->data_length
= min(session
->first_burst
,
431 r2t
->data_offset
= task
->imm_count
;
432 r2t
->ttt
= cpu_to_be32(ISCSI_RESERVED_TAG
);
433 r2t
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
436 if (!task
->unsol_r2t
.data_length
)
437 /* No unsolicit Data-Out's */
438 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
440 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
441 zero_data(hdr
->dlength
);
443 if (sc
->sc_data_direction
== DMA_FROM_DEVICE
)
444 hdr
->flags
|= ISCSI_FLAG_CMD_READ
;
447 /* calculate size of additional header segments (AHSs) */
448 hdrlength
= task
->hdr_len
- sizeof(*hdr
);
450 WARN_ON(hdrlength
& (ISCSI_PAD_LEN
-1));
451 hdrlength
/= ISCSI_PAD_LEN
;
453 WARN_ON(hdrlength
>= 256);
454 hdr
->hlength
= hdrlength
& 0xFF;
455 hdr
->cmdsn
= task
->cmdsn
= cpu_to_be32(session
->cmdsn
);
457 if (session
->tt
->init_task
&& session
->tt
->init_task(task
))
460 task
->state
= ISCSI_TASK_RUNNING
;
463 conn
->scsicmd_pdus_cnt
++;
464 ISCSI_DBG_SESSION(session
, "iscsi prep [%s cid %d sc %p cdb 0x%x "
465 "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n",
466 scsi_bidi_cmnd(sc
) ? "bidirectional" :
467 sc
->sc_data_direction
== DMA_TO_DEVICE
?
468 "write" : "read", conn
->id
, sc
, sc
->cmnd
[0],
469 task
->itt
, transfer_length
,
470 scsi_bidi_cmnd(sc
) ? scsi_in(sc
)->length
: 0,
472 session
->max_cmdsn
- session
->exp_cmdsn
+ 1);
477 * iscsi_free_task - free a task
478 * @task: iscsi cmd task
480 * Must be called with session back_lock.
481 * This function returns the scsi command to scsi-ml or cleans
482 * up mgmt tasks then returns the task to the pool.
484 static void iscsi_free_task(struct iscsi_task
*task
)
486 struct iscsi_conn
*conn
= task
->conn
;
487 struct iscsi_session
*session
= conn
->session
;
488 struct scsi_cmnd
*sc
= task
->sc
;
489 int oldstate
= task
->state
;
491 ISCSI_DBG_SESSION(session
, "freeing task itt 0x%x state %d sc %p\n",
492 task
->itt
, task
->state
, task
->sc
);
494 session
->tt
->cleanup_task(task
);
495 task
->state
= ISCSI_TASK_FREE
;
498 * login task is preallocated so do not free
500 if (conn
->login_task
== task
)
503 kfifo_in(&session
->cmdpool
.queue
, (void*)&task
, sizeof(void*));
506 /* SCSI eh reuses commands to verify us */
509 * queue command may call this to free the task, so
510 * it will decide how to return sc to scsi-ml.
512 if (oldstate
!= ISCSI_TASK_REQUEUE_SCSIQ
)
517 void __iscsi_get_task(struct iscsi_task
*task
)
519 atomic_inc(&task
->refcount
);
521 EXPORT_SYMBOL_GPL(__iscsi_get_task
);
523 void __iscsi_put_task(struct iscsi_task
*task
)
525 if (atomic_dec_and_test(&task
->refcount
))
526 iscsi_free_task(task
);
528 EXPORT_SYMBOL_GPL(__iscsi_put_task
);
530 void iscsi_put_task(struct iscsi_task
*task
)
532 struct iscsi_session
*session
= task
->conn
->session
;
534 /* regular RX path uses back_lock */
535 spin_lock_bh(&session
->back_lock
);
536 __iscsi_put_task(task
);
537 spin_unlock_bh(&session
->back_lock
);
539 EXPORT_SYMBOL_GPL(iscsi_put_task
);
542 * iscsi_complete_task - finish a task
543 * @task: iscsi cmd task
544 * @state: state to complete task with
546 * Must be called with session back_lock.
548 static void iscsi_complete_task(struct iscsi_task
*task
, int state
)
550 struct iscsi_conn
*conn
= task
->conn
;
552 ISCSI_DBG_SESSION(conn
->session
,
553 "complete task itt 0x%x state %d sc %p\n",
554 task
->itt
, task
->state
, task
->sc
);
555 if (task
->state
== ISCSI_TASK_COMPLETED
||
556 task
->state
== ISCSI_TASK_ABRT_TMF
||
557 task
->state
== ISCSI_TASK_ABRT_SESS_RECOV
||
558 task
->state
== ISCSI_TASK_REQUEUE_SCSIQ
)
560 WARN_ON_ONCE(task
->state
== ISCSI_TASK_FREE
);
563 spin_lock_bh(&conn
->taskqueuelock
);
564 if (!list_empty(&task
->running
)) {
565 pr_debug_once("%s while task on list", __func__
);
566 list_del_init(&task
->running
);
568 spin_unlock_bh(&conn
->taskqueuelock
);
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 back_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 back_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 /* regular RX path uses back_lock */
647 spin_lock_bh(&conn
->session
->back_lock
);
648 iscsi_complete_task(task
, state
);
649 spin_unlock_bh(&conn
->session
->back_lock
);
652 static int iscsi_prep_mgmt_task(struct iscsi_conn
*conn
,
653 struct iscsi_task
*task
)
655 struct iscsi_session
*session
= conn
->session
;
656 struct iscsi_hdr
*hdr
= task
->hdr
;
657 struct iscsi_nopout
*nop
= (struct iscsi_nopout
*)hdr
;
658 uint8_t opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
660 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
)
663 if (opcode
!= ISCSI_OP_LOGIN
&& opcode
!= ISCSI_OP_TEXT
)
664 nop
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
666 * pre-format CmdSN for outgoing PDU.
668 nop
->cmdsn
= cpu_to_be32(session
->cmdsn
);
669 if (hdr
->itt
!= RESERVED_ITT
) {
671 * TODO: We always use immediate for normal session pdus.
672 * If we start to send tmfs or nops as non-immediate then
673 * we should start checking the cmdsn numbers for mgmt tasks.
675 * During discovery sessions iscsid sends TEXT as non immediate,
676 * but we always only send one PDU at a time.
678 if (conn
->c_stage
== ISCSI_CONN_STARTED
&&
679 !(hdr
->opcode
& ISCSI_OP_IMMEDIATE
)) {
680 session
->queued_cmdsn
++;
685 if (session
->tt
->init_task
&& session
->tt
->init_task(task
))
688 if ((hdr
->opcode
& ISCSI_OPCODE_MASK
) == ISCSI_OP_LOGOUT
)
689 session
->state
= ISCSI_STATE_LOGGING_OUT
;
691 task
->state
= ISCSI_TASK_RUNNING
;
692 ISCSI_DBG_SESSION(session
, "mgmtpdu [op 0x%x hdr->itt 0x%x "
693 "datalen %d]\n", hdr
->opcode
& ISCSI_OPCODE_MASK
,
694 hdr
->itt
, task
->data_count
);
698 static struct iscsi_task
*
699 __iscsi_conn_send_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
700 char *data
, uint32_t data_size
)
702 struct iscsi_session
*session
= conn
->session
;
703 struct iscsi_host
*ihost
= shost_priv(session
->host
);
704 uint8_t opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
705 struct iscsi_task
*task
;
708 if (session
->state
== ISCSI_STATE_TERMINATE
)
711 if (opcode
== ISCSI_OP_LOGIN
|| opcode
== ISCSI_OP_TEXT
) {
713 * Login and Text are sent serially, in
714 * request-followed-by-response sequence.
715 * Same task can be used. Same ITT must be used.
716 * Note that login_task is preallocated at conn_create().
718 if (conn
->login_task
->state
!= ISCSI_TASK_FREE
) {
719 iscsi_conn_printk(KERN_ERR
, conn
, "Login/Text in "
720 "progress. Cannot start new task.\n");
724 if (data_size
> ISCSI_DEF_MAX_RECV_SEG_LEN
) {
725 iscsi_conn_printk(KERN_ERR
, conn
, "Invalid buffer len of %u for login task. Max len is %u\n", data_size
, ISCSI_DEF_MAX_RECV_SEG_LEN
);
729 task
= conn
->login_task
;
731 if (session
->state
!= ISCSI_STATE_LOGGED_IN
)
734 if (data_size
!= 0) {
735 iscsi_conn_printk(KERN_ERR
, conn
, "Can not send data buffer of len %u for op 0x%x\n", data_size
, opcode
);
739 BUG_ON(conn
->c_stage
== ISCSI_CONN_INITIAL_STAGE
);
740 BUG_ON(conn
->c_stage
== ISCSI_CONN_STOPPED
);
742 if (!kfifo_out(&session
->cmdpool
.queue
,
743 (void*)&task
, sizeof(void*)))
747 * released in complete pdu for task we expect a response for, and
748 * released by the lld when it has transmitted the task for
749 * pdus we do not expect a response for.
751 atomic_set(&task
->refcount
, 1);
754 INIT_LIST_HEAD(&task
->running
);
755 task
->state
= ISCSI_TASK_PENDING
;
758 memcpy(task
->data
, data
, data_size
);
759 task
->data_count
= data_size
;
761 task
->data_count
= 0;
763 if (conn
->session
->tt
->alloc_pdu
) {
764 if (conn
->session
->tt
->alloc_pdu(task
, hdr
->opcode
)) {
765 iscsi_conn_printk(KERN_ERR
, conn
, "Could not allocate "
766 "pdu for mgmt task.\n");
771 itt
= task
->hdr
->itt
;
772 task
->hdr_len
= sizeof(struct iscsi_hdr
);
773 memcpy(task
->hdr
, hdr
, sizeof(struct iscsi_hdr
));
775 if (hdr
->itt
!= RESERVED_ITT
) {
776 if (session
->tt
->parse_pdu_itt
)
777 task
->hdr
->itt
= itt
;
779 task
->hdr
->itt
= build_itt(task
->itt
,
780 task
->conn
->session
->age
);
784 if (iscsi_prep_mgmt_task(conn
, task
))
787 if (session
->tt
->xmit_task(task
))
790 spin_lock_bh(&conn
->taskqueuelock
);
791 list_add_tail(&task
->running
, &conn
->mgmtqueue
);
792 spin_unlock_bh(&conn
->taskqueuelock
);
793 iscsi_conn_queue_work(conn
);
799 /* regular RX path uses back_lock */
800 spin_lock(&session
->back_lock
);
801 __iscsi_put_task(task
);
802 spin_unlock(&session
->back_lock
);
806 int iscsi_conn_send_pdu(struct iscsi_cls_conn
*cls_conn
, struct iscsi_hdr
*hdr
,
807 char *data
, uint32_t data_size
)
809 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
810 struct iscsi_session
*session
= conn
->session
;
813 spin_lock_bh(&session
->frwd_lock
);
814 if (!__iscsi_conn_send_pdu(conn
, hdr
, data
, data_size
))
816 spin_unlock_bh(&session
->frwd_lock
);
819 EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu
);
822 * iscsi_cmd_rsp - SCSI Command Response processing
823 * @conn: iscsi connection
825 * @task: scsi command task
826 * @data: cmd data buffer
827 * @datalen: len of buffer
829 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
830 * then completes the command and task.
832 static void iscsi_scsi_cmd_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
833 struct iscsi_task
*task
, char *data
,
836 struct iscsi_scsi_rsp
*rhdr
= (struct iscsi_scsi_rsp
*)hdr
;
837 struct iscsi_session
*session
= conn
->session
;
838 struct scsi_cmnd
*sc
= task
->sc
;
840 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)rhdr
);
841 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
843 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
845 if (task
->protected) {
850 * Transports that didn't implement check_protection
851 * callback but still published T10-PI support to scsi-mid
852 * deserve this BUG_ON.
854 BUG_ON(!session
->tt
->check_protection
);
856 ascq
= session
->tt
->check_protection(task
, §or
);
858 sc
->result
= DRIVER_SENSE
<< 24 |
859 SAM_STAT_CHECK_CONDITION
;
860 scsi_build_sense_buffer(1, sc
->sense_buffer
,
861 ILLEGAL_REQUEST
, 0x10, ascq
);
862 scsi_set_sense_information(sc
->sense_buffer
,
863 SCSI_SENSE_BUFFERSIZE
,
869 if (rhdr
->response
!= ISCSI_STATUS_CMD_COMPLETED
) {
870 sc
->result
= DID_ERROR
<< 16;
874 if (rhdr
->cmd_status
== SAM_STAT_CHECK_CONDITION
) {
879 iscsi_conn_printk(KERN_ERR
, conn
,
880 "Got CHECK_CONDITION but invalid data "
881 "buffer size of %d\n", datalen
);
882 sc
->result
= DID_BAD_TARGET
<< 16;
886 senselen
= get_unaligned_be16(data
);
887 if (datalen
< senselen
)
888 goto invalid_datalen
;
890 memcpy(sc
->sense_buffer
, data
+ 2,
891 min_t(uint16_t, senselen
, SCSI_SENSE_BUFFERSIZE
));
892 ISCSI_DBG_SESSION(session
, "copied %d bytes of sense\n",
893 min_t(uint16_t, senselen
,
894 SCSI_SENSE_BUFFERSIZE
));
897 if (rhdr
->flags
& (ISCSI_FLAG_CMD_BIDI_UNDERFLOW
|
898 ISCSI_FLAG_CMD_BIDI_OVERFLOW
)) {
899 int res_count
= be32_to_cpu(rhdr
->bi_residual_count
);
901 if (scsi_bidi_cmnd(sc
) && res_count
> 0 &&
902 (rhdr
->flags
& ISCSI_FLAG_CMD_BIDI_OVERFLOW
||
903 res_count
<= scsi_in(sc
)->length
))
904 scsi_in(sc
)->resid
= res_count
;
906 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
909 if (rhdr
->flags
& (ISCSI_FLAG_CMD_UNDERFLOW
|
910 ISCSI_FLAG_CMD_OVERFLOW
)) {
911 int res_count
= be32_to_cpu(rhdr
->residual_count
);
914 (rhdr
->flags
& ISCSI_FLAG_CMD_OVERFLOW
||
915 res_count
<= scsi_bufflen(sc
)))
916 /* write side for bidi or uni-io set_resid */
917 scsi_set_resid(sc
, res_count
);
919 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
922 ISCSI_DBG_SESSION(session
, "cmd rsp done [sc %p res %d itt 0x%x]\n",
923 sc
, sc
->result
, task
->itt
);
924 conn
->scsirsp_pdus_cnt
++;
925 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
929 * iscsi_data_in_rsp - SCSI Data-In Response processing
930 * @conn: iscsi connection
932 * @task: scsi command task
935 iscsi_data_in_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
936 struct iscsi_task
*task
)
938 struct iscsi_data_rsp
*rhdr
= (struct iscsi_data_rsp
*)hdr
;
939 struct scsi_cmnd
*sc
= task
->sc
;
941 if (!(rhdr
->flags
& ISCSI_FLAG_DATA_STATUS
))
944 iscsi_update_cmdsn(conn
->session
, (struct iscsi_nopin
*)hdr
);
945 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
946 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
947 if (rhdr
->flags
& (ISCSI_FLAG_DATA_UNDERFLOW
|
948 ISCSI_FLAG_DATA_OVERFLOW
)) {
949 int res_count
= be32_to_cpu(rhdr
->residual_count
);
952 (rhdr
->flags
& ISCSI_FLAG_CMD_OVERFLOW
||
953 res_count
<= scsi_in(sc
)->length
))
954 scsi_in(sc
)->resid
= res_count
;
956 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
959 ISCSI_DBG_SESSION(conn
->session
, "data in with status done "
960 "[sc %p res %d itt 0x%x]\n",
961 sc
, sc
->result
, task
->itt
);
962 conn
->scsirsp_pdus_cnt
++;
963 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
966 static void iscsi_tmf_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
)
968 struct iscsi_tm_rsp
*tmf
= (struct iscsi_tm_rsp
*)hdr
;
970 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
971 conn
->tmfrsp_pdus_cnt
++;
973 if (conn
->tmf_state
!= TMF_QUEUED
)
976 if (tmf
->response
== ISCSI_TMF_RSP_COMPLETE
)
977 conn
->tmf_state
= TMF_SUCCESS
;
978 else if (tmf
->response
== ISCSI_TMF_RSP_NO_TASK
)
979 conn
->tmf_state
= TMF_NOT_FOUND
;
981 conn
->tmf_state
= TMF_FAILED
;
982 wake_up(&conn
->ehwait
);
985 static int iscsi_send_nopout(struct iscsi_conn
*conn
, struct iscsi_nopin
*rhdr
)
987 struct iscsi_nopout hdr
;
988 struct iscsi_task
*task
;
990 if (!rhdr
&& conn
->ping_task
)
993 memset(&hdr
, 0, sizeof(struct iscsi_nopout
));
994 hdr
.opcode
= ISCSI_OP_NOOP_OUT
| ISCSI_OP_IMMEDIATE
;
995 hdr
.flags
= ISCSI_FLAG_CMD_FINAL
;
1000 hdr
.itt
= RESERVED_ITT
;
1002 hdr
.ttt
= RESERVED_ITT
;
1004 task
= __iscsi_conn_send_pdu(conn
, (struct iscsi_hdr
*)&hdr
, NULL
, 0);
1006 iscsi_conn_printk(KERN_ERR
, conn
, "Could not send nopout\n");
1009 /* only track our nops */
1010 conn
->ping_task
= task
;
1011 conn
->last_ping
= jiffies
;
1017 static int iscsi_nop_out_rsp(struct iscsi_task
*task
,
1018 struct iscsi_nopin
*nop
, char *data
, int datalen
)
1020 struct iscsi_conn
*conn
= task
->conn
;
1023 if (conn
->ping_task
!= task
) {
1025 * If this is not in response to one of our
1026 * nops then it must be from userspace.
1028 if (iscsi_recv_pdu(conn
->cls_conn
, (struct iscsi_hdr
*)nop
,
1030 rc
= ISCSI_ERR_CONN_FAILED
;
1032 mod_timer(&conn
->transport_timer
, jiffies
+ conn
->recv_timeout
);
1033 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1037 static int iscsi_handle_reject(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
1038 char *data
, int datalen
)
1040 struct iscsi_reject
*reject
= (struct iscsi_reject
*)hdr
;
1041 struct iscsi_hdr rejected_pdu
;
1044 conn
->exp_statsn
= be32_to_cpu(reject
->statsn
) + 1;
1046 if (ntoh24(reject
->dlength
) > datalen
||
1047 ntoh24(reject
->dlength
) < sizeof(struct iscsi_hdr
)) {
1048 iscsi_conn_printk(KERN_ERR
, conn
, "Cannot handle rejected "
1049 "pdu. Invalid data length (pdu dlength "
1050 "%u, datalen %d\n", ntoh24(reject
->dlength
),
1052 return ISCSI_ERR_PROTO
;
1054 memcpy(&rejected_pdu
, data
, sizeof(struct iscsi_hdr
));
1055 opcode
= rejected_pdu
.opcode
& ISCSI_OPCODE_MASK
;
1057 switch (reject
->reason
) {
1058 case ISCSI_REASON_DATA_DIGEST_ERROR
:
1059 iscsi_conn_printk(KERN_ERR
, conn
,
1060 "pdu (op 0x%x itt 0x%x) rejected "
1061 "due to DataDigest error.\n",
1062 opcode
, rejected_pdu
.itt
);
1064 case ISCSI_REASON_IMM_CMD_REJECT
:
1065 iscsi_conn_printk(KERN_ERR
, conn
,
1066 "pdu (op 0x%x itt 0x%x) rejected. Too many "
1067 "immediate commands.\n",
1068 opcode
, rejected_pdu
.itt
);
1070 * We only send one TMF at a time so if the target could not
1071 * handle it, then it should get fixed (RFC mandates that
1072 * a target can handle one immediate TMF per conn).
1074 * For nops-outs, we could have sent more than one if
1075 * the target is sending us lots of nop-ins
1077 if (opcode
!= ISCSI_OP_NOOP_OUT
)
1080 if (rejected_pdu
.itt
== cpu_to_be32(ISCSI_RESERVED_TAG
)) {
1082 * nop-out in response to target's nop-out rejected.
1085 /* In RX path we are under back lock */
1086 spin_unlock(&conn
->session
->back_lock
);
1087 spin_lock(&conn
->session
->frwd_lock
);
1088 iscsi_send_nopout(conn
,
1089 (struct iscsi_nopin
*)&rejected_pdu
);
1090 spin_unlock(&conn
->session
->frwd_lock
);
1091 spin_lock(&conn
->session
->back_lock
);
1093 struct iscsi_task
*task
;
1095 * Our nop as ping got dropped. We know the target
1096 * and transport are ok so just clean up
1098 task
= iscsi_itt_to_task(conn
, rejected_pdu
.itt
);
1100 iscsi_conn_printk(KERN_ERR
, conn
,
1101 "Invalid pdu reject. Could "
1102 "not lookup rejected task.\n");
1103 rc
= ISCSI_ERR_BAD_ITT
;
1105 rc
= iscsi_nop_out_rsp(task
,
1106 (struct iscsi_nopin
*)&rejected_pdu
,
1111 iscsi_conn_printk(KERN_ERR
, conn
,
1112 "pdu (op 0x%x itt 0x%x) rejected. Reason "
1113 "code 0x%x\n", rejected_pdu
.opcode
,
1114 rejected_pdu
.itt
, reject
->reason
);
1121 * iscsi_itt_to_task - look up task by itt
1122 * @conn: iscsi connection
1125 * This should be used for mgmt tasks like login and nops, or if
1126 * the LDD's itt space does not include the session age.
1128 * The session back_lock must be held.
1130 struct iscsi_task
*iscsi_itt_to_task(struct iscsi_conn
*conn
, itt_t itt
)
1132 struct iscsi_session
*session
= conn
->session
;
1135 if (itt
== RESERVED_ITT
)
1138 if (session
->tt
->parse_pdu_itt
)
1139 session
->tt
->parse_pdu_itt(conn
, itt
, &i
, NULL
);
1142 if (i
>= session
->cmds_max
)
1145 return session
->cmds
[i
];
1147 EXPORT_SYMBOL_GPL(iscsi_itt_to_task
);
1150 * __iscsi_complete_pdu - complete pdu
1152 * @hdr: iscsi header
1153 * @data: data buffer
1154 * @datalen: len of data buffer
1156 * Completes pdu processing by freeing any resources allocated at
1157 * queuecommand or send generic. session back_lock must be held and verify
1158 * itt must have been called.
1160 int __iscsi_complete_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
1161 char *data
, int datalen
)
1163 struct iscsi_session
*session
= conn
->session
;
1164 int opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
, rc
= 0;
1165 struct iscsi_task
*task
;
1168 conn
->last_recv
= jiffies
;
1169 rc
= iscsi_verify_itt(conn
, hdr
->itt
);
1173 if (hdr
->itt
!= RESERVED_ITT
)
1174 itt
= get_itt(hdr
->itt
);
1178 ISCSI_DBG_SESSION(session
, "[op 0x%x cid %d itt 0x%x len %d]\n",
1179 opcode
, conn
->id
, itt
, datalen
);
1182 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1185 case ISCSI_OP_NOOP_IN
:
1187 rc
= ISCSI_ERR_PROTO
;
1191 if (hdr
->ttt
== cpu_to_be32(ISCSI_RESERVED_TAG
))
1194 /* In RX path we are under back lock */
1195 spin_unlock(&session
->back_lock
);
1196 spin_lock(&session
->frwd_lock
);
1197 iscsi_send_nopout(conn
, (struct iscsi_nopin
*)hdr
);
1198 spin_unlock(&session
->frwd_lock
);
1199 spin_lock(&session
->back_lock
);
1201 case ISCSI_OP_REJECT
:
1202 rc
= iscsi_handle_reject(conn
, hdr
, data
, datalen
);
1204 case ISCSI_OP_ASYNC_EVENT
:
1205 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1206 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
1207 rc
= ISCSI_ERR_CONN_FAILED
;
1210 rc
= ISCSI_ERR_BAD_OPCODE
;
1217 case ISCSI_OP_SCSI_CMD_RSP
:
1218 case ISCSI_OP_SCSI_DATA_IN
:
1219 task
= iscsi_itt_to_ctask(conn
, hdr
->itt
);
1221 return ISCSI_ERR_BAD_ITT
;
1222 task
->last_xfer
= jiffies
;
1226 * LLD handles R2Ts if they need to.
1229 case ISCSI_OP_LOGOUT_RSP
:
1230 case ISCSI_OP_LOGIN_RSP
:
1231 case ISCSI_OP_TEXT_RSP
:
1232 case ISCSI_OP_SCSI_TMFUNC_RSP
:
1233 case ISCSI_OP_NOOP_IN
:
1234 task
= iscsi_itt_to_task(conn
, hdr
->itt
);
1236 return ISCSI_ERR_BAD_ITT
;
1239 return ISCSI_ERR_BAD_OPCODE
;
1243 case ISCSI_OP_SCSI_CMD_RSP
:
1244 iscsi_scsi_cmd_rsp(conn
, hdr
, task
, data
, datalen
);
1246 case ISCSI_OP_SCSI_DATA_IN
:
1247 iscsi_data_in_rsp(conn
, hdr
, task
);
1249 case ISCSI_OP_LOGOUT_RSP
:
1250 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1252 rc
= ISCSI_ERR_PROTO
;
1255 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1257 case ISCSI_OP_LOGIN_RSP
:
1258 case ISCSI_OP_TEXT_RSP
:
1259 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1261 * login related PDU's exp_statsn is handled in
1265 case ISCSI_OP_SCSI_TMFUNC_RSP
:
1266 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1268 rc
= ISCSI_ERR_PROTO
;
1272 iscsi_tmf_rsp(conn
, hdr
);
1273 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1275 case ISCSI_OP_NOOP_IN
:
1276 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1277 if (hdr
->ttt
!= cpu_to_be32(ISCSI_RESERVED_TAG
) || datalen
) {
1278 rc
= ISCSI_ERR_PROTO
;
1281 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1283 rc
= iscsi_nop_out_rsp(task
, (struct iscsi_nopin
*)hdr
,
1287 rc
= ISCSI_ERR_BAD_OPCODE
;
1294 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
1295 rc
= ISCSI_ERR_CONN_FAILED
;
1296 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1299 EXPORT_SYMBOL_GPL(__iscsi_complete_pdu
);
1301 int iscsi_complete_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
1302 char *data
, int datalen
)
1306 spin_lock(&conn
->session
->back_lock
);
1307 rc
= __iscsi_complete_pdu(conn
, hdr
, data
, datalen
);
1308 spin_unlock(&conn
->session
->back_lock
);
1311 EXPORT_SYMBOL_GPL(iscsi_complete_pdu
);
1313 int iscsi_verify_itt(struct iscsi_conn
*conn
, itt_t itt
)
1315 struct iscsi_session
*session
= conn
->session
;
1318 if (itt
== RESERVED_ITT
)
1321 if (session
->tt
->parse_pdu_itt
)
1322 session
->tt
->parse_pdu_itt(conn
, itt
, &i
, &age
);
1325 age
= ((__force u32
)itt
>> ISCSI_AGE_SHIFT
) & ISCSI_AGE_MASK
;
1328 if (age
!= session
->age
) {
1329 iscsi_conn_printk(KERN_ERR
, conn
,
1330 "received itt %x expected session age (%x)\n",
1331 (__force u32
)itt
, session
->age
);
1332 return ISCSI_ERR_BAD_ITT
;
1335 if (i
>= session
->cmds_max
) {
1336 iscsi_conn_printk(KERN_ERR
, conn
,
1337 "received invalid itt index %u (max cmds "
1338 "%u.\n", i
, session
->cmds_max
);
1339 return ISCSI_ERR_BAD_ITT
;
1343 EXPORT_SYMBOL_GPL(iscsi_verify_itt
);
1346 * iscsi_itt_to_ctask - look up ctask by itt
1347 * @conn: iscsi connection
1350 * This should be used for cmd tasks.
1352 * The session back_lock must be held.
1354 struct iscsi_task
*iscsi_itt_to_ctask(struct iscsi_conn
*conn
, itt_t itt
)
1356 struct iscsi_task
*task
;
1358 if (iscsi_verify_itt(conn
, itt
))
1361 task
= iscsi_itt_to_task(conn
, itt
);
1362 if (!task
|| !task
->sc
)
1365 if (task
->sc
->SCp
.phase
!= conn
->session
->age
) {
1366 iscsi_session_printk(KERN_ERR
, conn
->session
,
1367 "task's session age %d, expected %d\n",
1368 task
->sc
->SCp
.phase
, conn
->session
->age
);
1374 EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask
);
1376 void iscsi_session_failure(struct iscsi_session
*session
,
1379 struct iscsi_conn
*conn
;
1382 spin_lock_bh(&session
->frwd_lock
);
1383 conn
= session
->leadconn
;
1384 if (session
->state
== ISCSI_STATE_TERMINATE
|| !conn
) {
1385 spin_unlock_bh(&session
->frwd_lock
);
1389 dev
= get_device(&conn
->cls_conn
->dev
);
1390 spin_unlock_bh(&session
->frwd_lock
);
1394 * if the host is being removed bypass the connection
1395 * recovery initialization because we are going to kill
1398 if (err
== ISCSI_ERR_INVALID_HOST
)
1399 iscsi_conn_error_event(conn
->cls_conn
, err
);
1401 iscsi_conn_failure(conn
, err
);
1404 EXPORT_SYMBOL_GPL(iscsi_session_failure
);
1406 void iscsi_conn_failure(struct iscsi_conn
*conn
, enum iscsi_err err
)
1408 struct iscsi_session
*session
= conn
->session
;
1410 spin_lock_bh(&session
->frwd_lock
);
1411 if (session
->state
== ISCSI_STATE_FAILED
) {
1412 spin_unlock_bh(&session
->frwd_lock
);
1416 if (conn
->stop_stage
== 0)
1417 session
->state
= ISCSI_STATE_FAILED
;
1418 spin_unlock_bh(&session
->frwd_lock
);
1420 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1421 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
1422 iscsi_conn_error_event(conn
->cls_conn
, err
);
1424 EXPORT_SYMBOL_GPL(iscsi_conn_failure
);
1426 static int iscsi_check_cmdsn_window_closed(struct iscsi_conn
*conn
)
1428 struct iscsi_session
*session
= conn
->session
;
1431 * Check for iSCSI window and take care of CmdSN wrap-around
1433 if (!iscsi_sna_lte(session
->queued_cmdsn
, session
->max_cmdsn
)) {
1434 ISCSI_DBG_SESSION(session
, "iSCSI CmdSN closed. ExpCmdSn "
1435 "%u MaxCmdSN %u CmdSN %u/%u\n",
1436 session
->exp_cmdsn
, session
->max_cmdsn
,
1437 session
->cmdsn
, session
->queued_cmdsn
);
1443 static int iscsi_xmit_task(struct iscsi_conn
*conn
)
1445 struct iscsi_task
*task
= conn
->task
;
1448 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
))
1451 __iscsi_get_task(task
);
1452 spin_unlock_bh(&conn
->session
->frwd_lock
);
1453 rc
= conn
->session
->tt
->xmit_task(task
);
1454 spin_lock_bh(&conn
->session
->frwd_lock
);
1456 /* done with this task */
1457 task
->last_xfer
= jiffies
;
1460 /* regular RX path uses back_lock */
1461 spin_lock(&conn
->session
->back_lock
);
1462 __iscsi_put_task(task
);
1463 spin_unlock(&conn
->session
->back_lock
);
1468 * iscsi_requeue_task - requeue task to run from session workqueue
1469 * @task: task to requeue
1471 * LLDs that need to run a task from the session workqueue should call
1472 * this. The session frwd_lock must be held. This should only be called
1473 * by software drivers.
1475 void iscsi_requeue_task(struct iscsi_task
*task
)
1477 struct iscsi_conn
*conn
= task
->conn
;
1480 * this may be on the requeue list already if the xmit_task callout
1481 * is handling the r2ts while we are adding new ones
1483 spin_lock_bh(&conn
->taskqueuelock
);
1484 if (list_empty(&task
->running
))
1485 list_add_tail(&task
->running
, &conn
->requeue
);
1486 spin_unlock_bh(&conn
->taskqueuelock
);
1487 iscsi_conn_queue_work(conn
);
1489 EXPORT_SYMBOL_GPL(iscsi_requeue_task
);
1492 * iscsi_data_xmit - xmit any command into the scheduled connection
1493 * @conn: iscsi connection
1496 * The function can return -EAGAIN in which case the caller must
1497 * re-schedule it again later or recover. '0' return code means
1500 static int iscsi_data_xmit(struct iscsi_conn
*conn
)
1502 struct iscsi_task
*task
;
1505 spin_lock_bh(&conn
->session
->frwd_lock
);
1506 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
)) {
1507 ISCSI_DBG_SESSION(conn
->session
, "Tx suspended!\n");
1508 spin_unlock_bh(&conn
->session
->frwd_lock
);
1513 rc
= iscsi_xmit_task(conn
);
1519 * process mgmt pdus like nops before commands since we should
1520 * only have one nop-out as a ping from us and targets should not
1521 * overflow us with nop-ins
1523 spin_lock_bh(&conn
->taskqueuelock
);
1525 while (!list_empty(&conn
->mgmtqueue
)) {
1526 conn
->task
= list_entry(conn
->mgmtqueue
.next
,
1527 struct iscsi_task
, running
);
1528 list_del_init(&conn
->task
->running
);
1529 spin_unlock_bh(&conn
->taskqueuelock
);
1530 if (iscsi_prep_mgmt_task(conn
, conn
->task
)) {
1531 /* regular RX path uses back_lock */
1532 spin_lock_bh(&conn
->session
->back_lock
);
1533 __iscsi_put_task(conn
->task
);
1534 spin_unlock_bh(&conn
->session
->back_lock
);
1536 spin_lock_bh(&conn
->taskqueuelock
);
1539 rc
= iscsi_xmit_task(conn
);
1542 spin_lock_bh(&conn
->taskqueuelock
);
1545 /* process pending command queue */
1546 while (!list_empty(&conn
->cmdqueue
)) {
1547 conn
->task
= list_entry(conn
->cmdqueue
.next
, struct iscsi_task
,
1549 list_del_init(&conn
->task
->running
);
1550 spin_unlock_bh(&conn
->taskqueuelock
);
1551 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
) {
1552 fail_scsi_task(conn
->task
, DID_IMM_RETRY
);
1553 spin_lock_bh(&conn
->taskqueuelock
);
1556 rc
= iscsi_prep_scsi_cmd_pdu(conn
->task
);
1558 if (rc
== -ENOMEM
|| rc
== -EACCES
) {
1559 spin_lock_bh(&conn
->taskqueuelock
);
1560 list_add_tail(&conn
->task
->running
,
1563 spin_unlock_bh(&conn
->taskqueuelock
);
1566 fail_scsi_task(conn
->task
, DID_ABORT
);
1567 spin_lock_bh(&conn
->taskqueuelock
);
1570 rc
= iscsi_xmit_task(conn
);
1574 * we could continuously get new task requests so
1575 * we need to check the mgmt queue for nops that need to
1576 * be sent to aviod starvation
1578 spin_lock_bh(&conn
->taskqueuelock
);
1579 if (!list_empty(&conn
->mgmtqueue
))
1583 while (!list_empty(&conn
->requeue
)) {
1585 * we always do fastlogout - conn stop code will clean up.
1587 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
)
1590 task
= list_entry(conn
->requeue
.next
, struct iscsi_task
,
1592 if (iscsi_check_tmf_restrictions(task
, ISCSI_OP_SCSI_DATA_OUT
))
1596 list_del_init(&conn
->task
->running
);
1597 conn
->task
->state
= ISCSI_TASK_RUNNING
;
1598 spin_unlock_bh(&conn
->taskqueuelock
);
1599 rc
= iscsi_xmit_task(conn
);
1602 spin_lock_bh(&conn
->taskqueuelock
);
1603 if (!list_empty(&conn
->mgmtqueue
))
1606 spin_unlock_bh(&conn
->taskqueuelock
);
1607 spin_unlock_bh(&conn
->session
->frwd_lock
);
1611 spin_unlock_bh(&conn
->session
->frwd_lock
);
1615 static void iscsi_xmitworker(struct work_struct
*work
)
1617 struct iscsi_conn
*conn
=
1618 container_of(work
, struct iscsi_conn
, xmitwork
);
1621 * serialize Xmit worker on a per-connection basis.
1624 rc
= iscsi_data_xmit(conn
);
1625 } while (rc
>= 0 || rc
== -EAGAIN
);
1628 static inline struct iscsi_task
*iscsi_alloc_task(struct iscsi_conn
*conn
,
1629 struct scsi_cmnd
*sc
)
1631 struct iscsi_task
*task
;
1633 if (!kfifo_out(&conn
->session
->cmdpool
.queue
,
1634 (void *) &task
, sizeof(void *)))
1637 sc
->SCp
.phase
= conn
->session
->age
;
1638 sc
->SCp
.ptr
= (char *) task
;
1640 atomic_set(&task
->refcount
, 1);
1641 task
->state
= ISCSI_TASK_PENDING
;
1644 task
->have_checked_conn
= false;
1645 task
->last_timeout
= jiffies
;
1646 task
->last_xfer
= jiffies
;
1647 task
->protected = false;
1648 INIT_LIST_HEAD(&task
->running
);
1653 FAILURE_BAD_HOST
= 1,
1654 FAILURE_SESSION_FAILED
,
1655 FAILURE_SESSION_FREED
,
1656 FAILURE_WINDOW_CLOSED
,
1658 FAILURE_SESSION_TERMINATE
,
1659 FAILURE_SESSION_IN_RECOVERY
,
1660 FAILURE_SESSION_RECOVERY_TIMEOUT
,
1661 FAILURE_SESSION_LOGGING_OUT
,
1662 FAILURE_SESSION_NOT_READY
,
1665 int iscsi_queuecommand(struct Scsi_Host
*host
, struct scsi_cmnd
*sc
)
1667 struct iscsi_cls_session
*cls_session
;
1668 struct iscsi_host
*ihost
;
1670 struct iscsi_session
*session
;
1671 struct iscsi_conn
*conn
;
1672 struct iscsi_task
*task
= NULL
;
1677 ihost
= shost_priv(host
);
1679 cls_session
= starget_to_session(scsi_target(sc
->device
));
1680 session
= cls_session
->dd_data
;
1681 spin_lock_bh(&session
->frwd_lock
);
1683 reason
= iscsi_session_chkready(cls_session
);
1685 sc
->result
= reason
;
1689 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
1691 * to handle the race between when we set the recovery state
1692 * and block the session we requeue here (commands could
1693 * be entering our queuecommand while a block is starting
1694 * up because the block code is not locked)
1696 switch (session
->state
) {
1697 case ISCSI_STATE_FAILED
:
1699 * cmds should fail during shutdown, if the session
1700 * state is bad, allowing completion to happen
1702 if (unlikely(system_state
!= SYSTEM_RUNNING
)) {
1703 reason
= FAILURE_SESSION_FAILED
;
1704 sc
->result
= DID_NO_CONNECT
<< 16;
1707 case ISCSI_STATE_IN_RECOVERY
:
1708 reason
= FAILURE_SESSION_IN_RECOVERY
;
1709 sc
->result
= DID_IMM_RETRY
<< 16;
1711 case ISCSI_STATE_LOGGING_OUT
:
1712 reason
= FAILURE_SESSION_LOGGING_OUT
;
1713 sc
->result
= DID_IMM_RETRY
<< 16;
1715 case ISCSI_STATE_RECOVERY_FAILED
:
1716 reason
= FAILURE_SESSION_RECOVERY_TIMEOUT
;
1717 sc
->result
= DID_TRANSPORT_FAILFAST
<< 16;
1719 case ISCSI_STATE_TERMINATE
:
1720 reason
= FAILURE_SESSION_TERMINATE
;
1721 sc
->result
= DID_NO_CONNECT
<< 16;
1724 reason
= FAILURE_SESSION_FREED
;
1725 sc
->result
= DID_NO_CONNECT
<< 16;
1730 conn
= session
->leadconn
;
1732 reason
= FAILURE_SESSION_FREED
;
1733 sc
->result
= DID_NO_CONNECT
<< 16;
1737 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
)) {
1738 reason
= FAILURE_SESSION_IN_RECOVERY
;
1739 sc
->result
= DID_REQUEUE
<< 16;
1743 if (iscsi_check_cmdsn_window_closed(conn
)) {
1744 reason
= FAILURE_WINDOW_CLOSED
;
1748 task
= iscsi_alloc_task(conn
, sc
);
1750 reason
= FAILURE_OOM
;
1754 if (!ihost
->workq
) {
1755 reason
= iscsi_prep_scsi_cmd_pdu(task
);
1757 if (reason
== -ENOMEM
|| reason
== -EACCES
) {
1758 reason
= FAILURE_OOM
;
1761 sc
->result
= DID_ABORT
<< 16;
1765 if (session
->tt
->xmit_task(task
)) {
1767 reason
= FAILURE_SESSION_NOT_READY
;
1771 spin_lock_bh(&conn
->taskqueuelock
);
1772 list_add_tail(&task
->running
, &conn
->cmdqueue
);
1773 spin_unlock_bh(&conn
->taskqueuelock
);
1774 iscsi_conn_queue_work(conn
);
1777 session
->queued_cmdsn
++;
1778 spin_unlock_bh(&session
->frwd_lock
);
1782 iscsi_complete_task(task
, ISCSI_TASK_REQUEUE_SCSIQ
);
1784 spin_unlock_bh(&session
->frwd_lock
);
1785 ISCSI_DBG_SESSION(session
, "cmd 0x%x rejected (%d)\n",
1786 sc
->cmnd
[0], reason
);
1787 return SCSI_MLQUEUE_TARGET_BUSY
;
1790 iscsi_complete_task(task
, ISCSI_TASK_REQUEUE_SCSIQ
);
1792 spin_unlock_bh(&session
->frwd_lock
);
1793 ISCSI_DBG_SESSION(session
, "iscsi: cmd 0x%x is not queued (%d)\n",
1794 sc
->cmnd
[0], reason
);
1795 if (!scsi_bidi_cmnd(sc
))
1796 scsi_set_resid(sc
, scsi_bufflen(sc
));
1798 scsi_out(sc
)->resid
= scsi_out(sc
)->length
;
1799 scsi_in(sc
)->resid
= scsi_in(sc
)->length
;
1804 EXPORT_SYMBOL_GPL(iscsi_queuecommand
);
1806 int iscsi_target_alloc(struct scsi_target
*starget
)
1808 struct iscsi_cls_session
*cls_session
= starget_to_session(starget
);
1809 struct iscsi_session
*session
= cls_session
->dd_data
;
1811 starget
->can_queue
= session
->scsi_cmds_max
;
1814 EXPORT_SYMBOL_GPL(iscsi_target_alloc
);
1816 static void iscsi_tmf_timedout(unsigned long data
)
1818 struct iscsi_conn
*conn
= (struct iscsi_conn
*)data
;
1819 struct iscsi_session
*session
= conn
->session
;
1821 spin_lock(&session
->frwd_lock
);
1822 if (conn
->tmf_state
== TMF_QUEUED
) {
1823 conn
->tmf_state
= TMF_TIMEDOUT
;
1824 ISCSI_DBG_EH(session
, "tmf timedout\n");
1825 /* unblock eh_abort() */
1826 wake_up(&conn
->ehwait
);
1828 spin_unlock(&session
->frwd_lock
);
1831 static int iscsi_exec_task_mgmt_fn(struct iscsi_conn
*conn
,
1832 struct iscsi_tm
*hdr
, int age
,
1835 struct iscsi_session
*session
= conn
->session
;
1836 struct iscsi_task
*task
;
1838 task
= __iscsi_conn_send_pdu(conn
, (struct iscsi_hdr
*)hdr
,
1841 spin_unlock_bh(&session
->frwd_lock
);
1842 iscsi_conn_printk(KERN_ERR
, conn
, "Could not send TMF.\n");
1843 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1844 spin_lock_bh(&session
->frwd_lock
);
1847 conn
->tmfcmd_pdus_cnt
++;
1848 conn
->tmf_timer
.expires
= timeout
* HZ
+ jiffies
;
1849 conn
->tmf_timer
.function
= iscsi_tmf_timedout
;
1850 conn
->tmf_timer
.data
= (unsigned long)conn
;
1851 add_timer(&conn
->tmf_timer
);
1852 ISCSI_DBG_EH(session
, "tmf set timeout\n");
1854 spin_unlock_bh(&session
->frwd_lock
);
1855 mutex_unlock(&session
->eh_mutex
);
1858 * block eh thread until:
1862 * 3) session is terminated or restarted or userspace has
1863 * given up on recovery
1865 wait_event_interruptible(conn
->ehwait
, age
!= session
->age
||
1866 session
->state
!= ISCSI_STATE_LOGGED_IN
||
1867 conn
->tmf_state
!= TMF_QUEUED
);
1868 if (signal_pending(current
))
1869 flush_signals(current
);
1870 del_timer_sync(&conn
->tmf_timer
);
1872 mutex_lock(&session
->eh_mutex
);
1873 spin_lock_bh(&session
->frwd_lock
);
1874 /* if the session drops it will clean up the task */
1875 if (age
!= session
->age
||
1876 session
->state
!= ISCSI_STATE_LOGGED_IN
)
1882 * Fail commands. session lock held and recv side suspended and xmit
1885 static void fail_scsi_tasks(struct iscsi_conn
*conn
, u64 lun
, int error
)
1887 struct iscsi_task
*task
;
1890 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
1891 task
= conn
->session
->cmds
[i
];
1892 if (!task
->sc
|| task
->state
== ISCSI_TASK_FREE
)
1895 if (lun
!= -1 && lun
!= task
->sc
->device
->lun
)
1898 ISCSI_DBG_SESSION(conn
->session
,
1899 "failing sc %p itt 0x%x state %d\n",
1900 task
->sc
, task
->itt
, task
->state
);
1901 fail_scsi_task(task
, error
);
1906 * iscsi_suspend_queue - suspend iscsi_queuecommand
1907 * @conn: iscsi conn to stop queueing IO on
1909 * This grabs the session frwd_lock to make sure no one is in
1910 * xmit_task/queuecommand, and then sets suspend to prevent
1911 * new commands from being queued. This only needs to be called
1912 * by offload drivers that need to sync a path like ep disconnect
1913 * with the iscsi_queuecommand/xmit_task. To start IO again libiscsi
1914 * will call iscsi_start_tx and iscsi_unblock_session when in FFP.
1916 void iscsi_suspend_queue(struct iscsi_conn
*conn
)
1918 spin_lock_bh(&conn
->session
->frwd_lock
);
1919 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1920 spin_unlock_bh(&conn
->session
->frwd_lock
);
1922 EXPORT_SYMBOL_GPL(iscsi_suspend_queue
);
1925 * iscsi_suspend_tx - suspend iscsi_data_xmit
1926 * @conn: iscsi conn tp stop processing IO on.
1928 * This function sets the suspend bit to prevent iscsi_data_xmit
1929 * from sending new IO, and if work is queued on the xmit thread
1930 * it will wait for it to be completed.
1932 void iscsi_suspend_tx(struct iscsi_conn
*conn
)
1934 struct Scsi_Host
*shost
= conn
->session
->host
;
1935 struct iscsi_host
*ihost
= shost_priv(shost
);
1937 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1939 flush_workqueue(ihost
->workq
);
1941 EXPORT_SYMBOL_GPL(iscsi_suspend_tx
);
1943 static void iscsi_start_tx(struct iscsi_conn
*conn
)
1945 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1946 iscsi_conn_queue_work(conn
);
1950 * We want to make sure a ping is in flight. It has timed out.
1951 * And we are not busy processing a pdu that is making
1952 * progress but got started before the ping and is taking a while
1953 * to complete so the ping is just stuck behind it in a queue.
1955 static int iscsi_has_ping_timed_out(struct iscsi_conn
*conn
)
1957 if (conn
->ping_task
&&
1958 time_before_eq(conn
->last_recv
+ (conn
->recv_timeout
* HZ
) +
1959 (conn
->ping_timeout
* HZ
), jiffies
))
1965 static enum blk_eh_timer_return
iscsi_eh_cmd_timed_out(struct scsi_cmnd
*sc
)
1967 enum blk_eh_timer_return rc
= BLK_EH_NOT_HANDLED
;
1968 struct iscsi_task
*task
= NULL
, *running_task
;
1969 struct iscsi_cls_session
*cls_session
;
1970 struct iscsi_session
*session
;
1971 struct iscsi_conn
*conn
;
1974 cls_session
= starget_to_session(scsi_target(sc
->device
));
1975 session
= cls_session
->dd_data
;
1977 ISCSI_DBG_EH(session
, "scsi cmd %p timedout\n", sc
);
1979 spin_lock(&session
->frwd_lock
);
1980 task
= (struct iscsi_task
*)sc
->SCp
.ptr
;
1983 * Raced with completion. Blk layer has taken ownership
1984 * so let timeout code complete it now.
1986 rc
= BLK_EH_HANDLED
;
1990 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
1992 * During shutdown, if session is prematurely disconnected,
1993 * recovery won't happen and there will be hung cmds. Not
1994 * handling cmds would trigger EH, also bad in this case.
1995 * Instead, handle cmd, allow completion to happen and let
1996 * upper layer to deal with the result.
1998 if (unlikely(system_state
!= SYSTEM_RUNNING
)) {
1999 sc
->result
= DID_NO_CONNECT
<< 16;
2000 ISCSI_DBG_EH(session
, "sc on shutdown, handled\n");
2001 rc
= BLK_EH_HANDLED
;
2005 * We are probably in the middle of iscsi recovery so let
2006 * that complete and handle the error.
2008 rc
= BLK_EH_RESET_TIMER
;
2012 conn
= session
->leadconn
;
2014 /* In the middle of shuting down */
2015 rc
= BLK_EH_RESET_TIMER
;
2020 * If we have sent (at least queued to the network layer) a pdu or
2021 * recvd one for the task since the last timeout ask for
2022 * more time. If on the next timeout we have not made progress
2023 * we can check if it is the task or connection when we send the
2026 if (time_after(task
->last_xfer
, task
->last_timeout
)) {
2027 ISCSI_DBG_EH(session
, "Command making progress. Asking "
2028 "scsi-ml for more time to complete. "
2029 "Last data xfer at %lu. Last timeout was at "
2030 "%lu\n.", task
->last_xfer
, task
->last_timeout
);
2031 task
->have_checked_conn
= false;
2032 rc
= BLK_EH_RESET_TIMER
;
2036 if (!conn
->recv_timeout
&& !conn
->ping_timeout
)
2039 * if the ping timedout then we are in the middle of cleaning up
2040 * and can let the iscsi eh handle it
2042 if (iscsi_has_ping_timed_out(conn
)) {
2043 rc
= BLK_EH_RESET_TIMER
;
2047 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
2048 running_task
= conn
->session
->cmds
[i
];
2049 if (!running_task
->sc
|| running_task
== task
||
2050 running_task
->state
!= ISCSI_TASK_RUNNING
)
2054 * Only check if cmds started before this one have made
2055 * progress, or this could never fail
2057 if (time_after(running_task
->sc
->jiffies_at_alloc
,
2058 task
->sc
->jiffies_at_alloc
))
2061 if (time_after(running_task
->last_xfer
, task
->last_timeout
)) {
2063 * This task has not made progress, but a task
2064 * started before us has transferred data since
2065 * we started/last-checked. We could be queueing
2066 * too many tasks or the LU is bad.
2068 * If the device is bad the cmds ahead of us on
2069 * other devs will complete, and this loop will
2070 * eventually fail starting the scsi eh.
2072 ISCSI_DBG_EH(session
, "Command has not made progress "
2073 "but commands ahead of it have. "
2074 "Asking scsi-ml for more time to "
2075 "complete. Our last xfer vs running task "
2076 "last xfer %lu/%lu. Last check %lu.\n",
2077 task
->last_xfer
, running_task
->last_xfer
,
2078 task
->last_timeout
);
2079 rc
= BLK_EH_RESET_TIMER
;
2084 /* Assumes nop timeout is shorter than scsi cmd timeout */
2085 if (task
->have_checked_conn
)
2089 * Checking the transport already or nop from a cmd timeout still
2092 if (conn
->ping_task
) {
2093 task
->have_checked_conn
= true;
2094 rc
= BLK_EH_RESET_TIMER
;
2098 /* Make sure there is a transport check done */
2099 iscsi_send_nopout(conn
, NULL
);
2100 task
->have_checked_conn
= true;
2101 rc
= BLK_EH_RESET_TIMER
;
2105 task
->last_timeout
= jiffies
;
2106 spin_unlock(&session
->frwd_lock
);
2107 ISCSI_DBG_EH(session
, "return %s\n", rc
== BLK_EH_RESET_TIMER
?
2108 "timer reset" : "shutdown or nh");
2112 static void iscsi_check_transport_timeouts(unsigned long data
)
2114 struct iscsi_conn
*conn
= (struct iscsi_conn
*)data
;
2115 struct iscsi_session
*session
= conn
->session
;
2116 unsigned long recv_timeout
, next_timeout
= 0, last_recv
;
2118 spin_lock(&session
->frwd_lock
);
2119 if (session
->state
!= ISCSI_STATE_LOGGED_IN
)
2122 recv_timeout
= conn
->recv_timeout
;
2127 last_recv
= conn
->last_recv
;
2129 if (iscsi_has_ping_timed_out(conn
)) {
2130 iscsi_conn_printk(KERN_ERR
, conn
, "ping timeout of %d secs "
2131 "expired, recv timeout %d, last rx %lu, "
2132 "last ping %lu, now %lu\n",
2133 conn
->ping_timeout
, conn
->recv_timeout
,
2134 last_recv
, conn
->last_ping
, jiffies
);
2135 spin_unlock(&session
->frwd_lock
);
2136 iscsi_conn_failure(conn
, ISCSI_ERR_NOP_TIMEDOUT
);
2140 if (time_before_eq(last_recv
+ recv_timeout
, jiffies
)) {
2141 /* send a ping to try to provoke some traffic */
2142 ISCSI_DBG_CONN(conn
, "Sending nopout as ping\n");
2143 if (iscsi_send_nopout(conn
, NULL
))
2144 next_timeout
= jiffies
+ (1 * HZ
);
2146 next_timeout
= conn
->last_ping
+ (conn
->ping_timeout
* HZ
);
2148 next_timeout
= last_recv
+ recv_timeout
;
2150 ISCSI_DBG_CONN(conn
, "Setting next tmo %lu\n", next_timeout
);
2151 mod_timer(&conn
->transport_timer
, next_timeout
);
2153 spin_unlock(&session
->frwd_lock
);
2156 static void iscsi_prep_abort_task_pdu(struct iscsi_task
*task
,
2157 struct iscsi_tm
*hdr
)
2159 memset(hdr
, 0, sizeof(*hdr
));
2160 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2161 hdr
->flags
= ISCSI_TM_FUNC_ABORT_TASK
& ISCSI_FLAG_TM_FUNC_MASK
;
2162 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2163 hdr
->lun
= task
->lun
;
2164 hdr
->rtt
= task
->hdr_itt
;
2165 hdr
->refcmdsn
= task
->cmdsn
;
2168 int iscsi_eh_abort(struct scsi_cmnd
*sc
)
2170 struct iscsi_cls_session
*cls_session
;
2171 struct iscsi_session
*session
;
2172 struct iscsi_conn
*conn
;
2173 struct iscsi_task
*task
;
2174 struct iscsi_tm
*hdr
;
2177 cls_session
= starget_to_session(scsi_target(sc
->device
));
2178 session
= cls_session
->dd_data
;
2180 ISCSI_DBG_EH(session
, "aborting sc %p\n", sc
);
2182 mutex_lock(&session
->eh_mutex
);
2183 spin_lock_bh(&session
->frwd_lock
);
2185 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
2189 ISCSI_DBG_EH(session
, "sc never reached iscsi layer or "
2191 spin_unlock_bh(&session
->frwd_lock
);
2192 mutex_unlock(&session
->eh_mutex
);
2197 * If we are not logged in or we have started a new session
2198 * then let the host reset code handle this
2200 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
||
2201 sc
->SCp
.phase
!= session
->age
) {
2202 spin_unlock_bh(&session
->frwd_lock
);
2203 mutex_unlock(&session
->eh_mutex
);
2204 ISCSI_DBG_EH(session
, "failing abort due to dropped "
2209 conn
= session
->leadconn
;
2210 conn
->eh_abort_cnt
++;
2213 task
= (struct iscsi_task
*)sc
->SCp
.ptr
;
2214 ISCSI_DBG_EH(session
, "aborting [sc %p itt 0x%x]\n",
2217 /* task completed before time out */
2219 ISCSI_DBG_EH(session
, "sc completed while abort in progress\n");
2223 if (task
->state
== ISCSI_TASK_PENDING
) {
2224 fail_scsi_task(task
, DID_ABORT
);
2228 /* only have one tmf outstanding at a time */
2229 if (conn
->tmf_state
!= TMF_INITIAL
)
2231 conn
->tmf_state
= TMF_QUEUED
;
2234 iscsi_prep_abort_task_pdu(task
, hdr
);
2236 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, age
, session
->abort_timeout
))
2239 switch (conn
->tmf_state
) {
2241 spin_unlock_bh(&session
->frwd_lock
);
2243 * stop tx side incase the target had sent a abort rsp but
2244 * the initiator was still writing out data.
2246 iscsi_suspend_tx(conn
);
2248 * we do not stop the recv side because targets have been
2249 * good and have never sent us a successful tmf response
2250 * then sent more data for the cmd.
2252 spin_lock_bh(&session
->frwd_lock
);
2253 fail_scsi_task(task
, DID_ABORT
);
2254 conn
->tmf_state
= TMF_INITIAL
;
2255 memset(hdr
, 0, sizeof(*hdr
));
2256 spin_unlock_bh(&session
->frwd_lock
);
2257 iscsi_start_tx(conn
);
2258 goto success_unlocked
;
2260 spin_unlock_bh(&session
->frwd_lock
);
2261 iscsi_conn_failure(conn
, ISCSI_ERR_SCSI_EH_SESSION_RST
);
2262 goto failed_unlocked
;
2265 conn
->tmf_state
= TMF_INITIAL
;
2266 memset(hdr
, 0, sizeof(*hdr
));
2267 /* task completed before tmf abort response */
2268 ISCSI_DBG_EH(session
, "sc completed while abort in "
2274 conn
->tmf_state
= TMF_INITIAL
;
2279 spin_unlock_bh(&session
->frwd_lock
);
2281 ISCSI_DBG_EH(session
, "abort success [sc %p itt 0x%x]\n",
2283 mutex_unlock(&session
->eh_mutex
);
2287 spin_unlock_bh(&session
->frwd_lock
);
2289 ISCSI_DBG_EH(session
, "abort failed [sc %p itt 0x%x]\n", sc
,
2290 task
? task
->itt
: 0);
2291 mutex_unlock(&session
->eh_mutex
);
2294 EXPORT_SYMBOL_GPL(iscsi_eh_abort
);
2296 static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd
*sc
, struct iscsi_tm
*hdr
)
2298 memset(hdr
, 0, sizeof(*hdr
));
2299 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2300 hdr
->flags
= ISCSI_TM_FUNC_LOGICAL_UNIT_RESET
& ISCSI_FLAG_TM_FUNC_MASK
;
2301 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2302 int_to_scsilun(sc
->device
->lun
, &hdr
->lun
);
2303 hdr
->rtt
= RESERVED_ITT
;
2306 int iscsi_eh_device_reset(struct scsi_cmnd
*sc
)
2308 struct iscsi_cls_session
*cls_session
;
2309 struct iscsi_session
*session
;
2310 struct iscsi_conn
*conn
;
2311 struct iscsi_tm
*hdr
;
2314 cls_session
= starget_to_session(scsi_target(sc
->device
));
2315 session
= cls_session
->dd_data
;
2317 ISCSI_DBG_EH(session
, "LU Reset [sc %p lun %llu]\n", sc
,
2320 mutex_lock(&session
->eh_mutex
);
2321 spin_lock_bh(&session
->frwd_lock
);
2323 * Just check if we are not logged in. We cannot check for
2324 * the phase because the reset could come from a ioctl.
2326 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
)
2328 conn
= session
->leadconn
;
2330 /* only have one tmf outstanding at a time */
2331 if (conn
->tmf_state
!= TMF_INITIAL
)
2333 conn
->tmf_state
= TMF_QUEUED
;
2336 iscsi_prep_lun_reset_pdu(sc
, hdr
);
2338 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, session
->age
,
2339 session
->lu_reset_timeout
)) {
2344 switch (conn
->tmf_state
) {
2348 spin_unlock_bh(&session
->frwd_lock
);
2349 iscsi_conn_failure(conn
, ISCSI_ERR_SCSI_EH_SESSION_RST
);
2352 conn
->tmf_state
= TMF_INITIAL
;
2357 spin_unlock_bh(&session
->frwd_lock
);
2359 iscsi_suspend_tx(conn
);
2361 spin_lock_bh(&session
->frwd_lock
);
2362 memset(hdr
, 0, sizeof(*hdr
));
2363 fail_scsi_tasks(conn
, sc
->device
->lun
, DID_ERROR
);
2364 conn
->tmf_state
= TMF_INITIAL
;
2365 spin_unlock_bh(&session
->frwd_lock
);
2367 iscsi_start_tx(conn
);
2371 spin_unlock_bh(&session
->frwd_lock
);
2373 ISCSI_DBG_EH(session
, "dev reset result = %s\n",
2374 rc
== SUCCESS
? "SUCCESS" : "FAILED");
2375 mutex_unlock(&session
->eh_mutex
);
2378 EXPORT_SYMBOL_GPL(iscsi_eh_device_reset
);
2380 void iscsi_session_recovery_timedout(struct iscsi_cls_session
*cls_session
)
2382 struct iscsi_session
*session
= cls_session
->dd_data
;
2384 spin_lock_bh(&session
->frwd_lock
);
2385 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
2386 session
->state
= ISCSI_STATE_RECOVERY_FAILED
;
2387 if (session
->leadconn
)
2388 wake_up(&session
->leadconn
->ehwait
);
2390 spin_unlock_bh(&session
->frwd_lock
);
2392 EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout
);
2395 * iscsi_eh_session_reset - drop session and attempt relogin
2398 * This function will wait for a relogin, session termination from
2399 * userspace, or a recovery/replacement timeout.
2401 int iscsi_eh_session_reset(struct scsi_cmnd
*sc
)
2403 struct iscsi_cls_session
*cls_session
;
2404 struct iscsi_session
*session
;
2405 struct iscsi_conn
*conn
;
2407 cls_session
= starget_to_session(scsi_target(sc
->device
));
2408 session
= cls_session
->dd_data
;
2409 conn
= session
->leadconn
;
2411 mutex_lock(&session
->eh_mutex
);
2412 spin_lock_bh(&session
->frwd_lock
);
2413 if (session
->state
== ISCSI_STATE_TERMINATE
) {
2415 ISCSI_DBG_EH(session
,
2416 "failing session reset: Could not log back into "
2417 "%s, %s [age %d]\n", session
->targetname
,
2418 conn
->persistent_address
, session
->age
);
2419 spin_unlock_bh(&session
->frwd_lock
);
2420 mutex_unlock(&session
->eh_mutex
);
2424 spin_unlock_bh(&session
->frwd_lock
);
2425 mutex_unlock(&session
->eh_mutex
);
2427 * we drop the lock here but the leadconn cannot be destoyed while
2428 * we are in the scsi eh
2430 iscsi_conn_failure(conn
, ISCSI_ERR_SCSI_EH_SESSION_RST
);
2432 ISCSI_DBG_EH(session
, "wait for relogin\n");
2433 wait_event_interruptible(conn
->ehwait
,
2434 session
->state
== ISCSI_STATE_TERMINATE
||
2435 session
->state
== ISCSI_STATE_LOGGED_IN
||
2436 session
->state
== ISCSI_STATE_RECOVERY_FAILED
);
2437 if (signal_pending(current
))
2438 flush_signals(current
);
2440 mutex_lock(&session
->eh_mutex
);
2441 spin_lock_bh(&session
->frwd_lock
);
2442 if (session
->state
== ISCSI_STATE_LOGGED_IN
) {
2443 ISCSI_DBG_EH(session
,
2444 "session reset succeeded for %s,%s\n",
2445 session
->targetname
, conn
->persistent_address
);
2448 spin_unlock_bh(&session
->frwd_lock
);
2449 mutex_unlock(&session
->eh_mutex
);
2452 EXPORT_SYMBOL_GPL(iscsi_eh_session_reset
);
2454 static void iscsi_prep_tgt_reset_pdu(struct scsi_cmnd
*sc
, struct iscsi_tm
*hdr
)
2456 memset(hdr
, 0, sizeof(*hdr
));
2457 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2458 hdr
->flags
= ISCSI_TM_FUNC_TARGET_WARM_RESET
& ISCSI_FLAG_TM_FUNC_MASK
;
2459 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2460 hdr
->rtt
= RESERVED_ITT
;
2464 * iscsi_eh_target_reset - reset target
2467 * This will attempt to send a warm target reset.
2469 static int iscsi_eh_target_reset(struct scsi_cmnd
*sc
)
2471 struct iscsi_cls_session
*cls_session
;
2472 struct iscsi_session
*session
;
2473 struct iscsi_conn
*conn
;
2474 struct iscsi_tm
*hdr
;
2477 cls_session
= starget_to_session(scsi_target(sc
->device
));
2478 session
= cls_session
->dd_data
;
2480 ISCSI_DBG_EH(session
, "tgt Reset [sc %p tgt %s]\n", sc
,
2481 session
->targetname
);
2483 mutex_lock(&session
->eh_mutex
);
2484 spin_lock_bh(&session
->frwd_lock
);
2486 * Just check if we are not logged in. We cannot check for
2487 * the phase because the reset could come from a ioctl.
2489 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
)
2491 conn
= session
->leadconn
;
2493 /* only have one tmf outstanding at a time */
2494 if (conn
->tmf_state
!= TMF_INITIAL
)
2496 conn
->tmf_state
= TMF_QUEUED
;
2499 iscsi_prep_tgt_reset_pdu(sc
, hdr
);
2501 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, session
->age
,
2502 session
->tgt_reset_timeout
)) {
2507 switch (conn
->tmf_state
) {
2511 spin_unlock_bh(&session
->frwd_lock
);
2512 iscsi_conn_failure(conn
, ISCSI_ERR_SCSI_EH_SESSION_RST
);
2515 conn
->tmf_state
= TMF_INITIAL
;
2520 spin_unlock_bh(&session
->frwd_lock
);
2522 iscsi_suspend_tx(conn
);
2524 spin_lock_bh(&session
->frwd_lock
);
2525 memset(hdr
, 0, sizeof(*hdr
));
2526 fail_scsi_tasks(conn
, -1, DID_ERROR
);
2527 conn
->tmf_state
= TMF_INITIAL
;
2528 spin_unlock_bh(&session
->frwd_lock
);
2530 iscsi_start_tx(conn
);
2534 spin_unlock_bh(&session
->frwd_lock
);
2536 ISCSI_DBG_EH(session
, "tgt %s reset result = %s\n", session
->targetname
,
2537 rc
== SUCCESS
? "SUCCESS" : "FAILED");
2538 mutex_unlock(&session
->eh_mutex
);
2543 * iscsi_eh_recover_target - reset target and possibly the session
2546 * This will attempt to send a warm target reset. If that fails,
2547 * we will escalate to ERL0 session recovery.
2549 int iscsi_eh_recover_target(struct scsi_cmnd
*sc
)
2553 rc
= iscsi_eh_target_reset(sc
);
2555 rc
= iscsi_eh_session_reset(sc
);
2558 EXPORT_SYMBOL_GPL(iscsi_eh_recover_target
);
2561 * Pre-allocate a pool of @max items of @item_size. By default, the pool
2562 * should be accessed via kfifo_{get,put} on q->queue.
2563 * Optionally, the caller can obtain the array of object pointers
2564 * by passing in a non-NULL @items pointer
2567 iscsi_pool_init(struct iscsi_pool
*q
, int max
, void ***items
, int item_size
)
2569 int i
, num_arrays
= 1;
2571 memset(q
, 0, sizeof(*q
));
2575 /* If the user passed an items pointer, he wants a copy of
2579 q
->pool
= kzalloc(num_arrays
* max
* sizeof(void*), GFP_KERNEL
);
2580 if (q
->pool
== NULL
)
2583 kfifo_init(&q
->queue
, (void*)q
->pool
, max
* sizeof(void*));
2585 for (i
= 0; i
< max
; i
++) {
2586 q
->pool
[i
] = kzalloc(item_size
, GFP_KERNEL
);
2587 if (q
->pool
[i
] == NULL
) {
2591 kfifo_in(&q
->queue
, (void*)&q
->pool
[i
], sizeof(void*));
2595 *items
= q
->pool
+ max
;
2596 memcpy(*items
, q
->pool
, max
* sizeof(void *));
2605 EXPORT_SYMBOL_GPL(iscsi_pool_init
);
2607 void iscsi_pool_free(struct iscsi_pool
*q
)
2611 for (i
= 0; i
< q
->max
; i
++)
2615 EXPORT_SYMBOL_GPL(iscsi_pool_free
);
2618 * iscsi_host_add - add host to system
2620 * @pdev: parent device
2622 * This should be called by partial offload and software iscsi drivers
2623 * to add a host to the system.
2625 int iscsi_host_add(struct Scsi_Host
*shost
, struct device
*pdev
)
2627 if (!shost
->can_queue
)
2628 shost
->can_queue
= ISCSI_DEF_XMIT_CMDS_MAX
;
2630 if (!shost
->cmd_per_lun
)
2631 shost
->cmd_per_lun
= ISCSI_DEF_CMD_PER_LUN
;
2633 if (!shost
->transportt
->eh_timed_out
)
2634 shost
->transportt
->eh_timed_out
= iscsi_eh_cmd_timed_out
;
2635 return scsi_add_host(shost
, pdev
);
2637 EXPORT_SYMBOL_GPL(iscsi_host_add
);
2640 * iscsi_host_alloc - allocate a host and driver data
2641 * @sht: scsi host template
2642 * @dd_data_size: driver host data size
2643 * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue
2645 * This should be called by partial offload and software iscsi drivers.
2646 * To access the driver specific memory use the iscsi_host_priv() macro.
2648 struct Scsi_Host
*iscsi_host_alloc(struct scsi_host_template
*sht
,
2649 int dd_data_size
, bool xmit_can_sleep
)
2651 struct Scsi_Host
*shost
;
2652 struct iscsi_host
*ihost
;
2654 shost
= scsi_host_alloc(sht
, sizeof(struct iscsi_host
) + dd_data_size
);
2657 ihost
= shost_priv(shost
);
2659 if (xmit_can_sleep
) {
2660 snprintf(ihost
->workq_name
, sizeof(ihost
->workq_name
),
2661 "iscsi_q_%d", shost
->host_no
);
2662 ihost
->workq
= create_singlethread_workqueue(ihost
->workq_name
);
2667 spin_lock_init(&ihost
->lock
);
2668 ihost
->state
= ISCSI_HOST_SETUP
;
2669 ihost
->num_sessions
= 0;
2670 init_waitqueue_head(&ihost
->session_removal_wq
);
2674 scsi_host_put(shost
);
2677 EXPORT_SYMBOL_GPL(iscsi_host_alloc
);
2679 static void iscsi_notify_host_removed(struct iscsi_cls_session
*cls_session
)
2681 iscsi_session_failure(cls_session
->dd_data
, ISCSI_ERR_INVALID_HOST
);
2685 * iscsi_host_remove - remove host and sessions
2688 * If there are any sessions left, this will initiate the removal and wait
2689 * for the completion.
2691 void iscsi_host_remove(struct Scsi_Host
*shost
)
2693 struct iscsi_host
*ihost
= shost_priv(shost
);
2694 unsigned long flags
;
2696 spin_lock_irqsave(&ihost
->lock
, flags
);
2697 ihost
->state
= ISCSI_HOST_REMOVED
;
2698 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2700 iscsi_host_for_each_session(shost
, iscsi_notify_host_removed
);
2701 wait_event_interruptible(ihost
->session_removal_wq
,
2702 ihost
->num_sessions
== 0);
2703 if (signal_pending(current
))
2704 flush_signals(current
);
2706 scsi_remove_host(shost
);
2708 destroy_workqueue(ihost
->workq
);
2710 EXPORT_SYMBOL_GPL(iscsi_host_remove
);
2712 void iscsi_host_free(struct Scsi_Host
*shost
)
2714 struct iscsi_host
*ihost
= shost_priv(shost
);
2716 kfree(ihost
->netdev
);
2717 kfree(ihost
->hwaddress
);
2718 kfree(ihost
->initiatorname
);
2719 scsi_host_put(shost
);
2721 EXPORT_SYMBOL_GPL(iscsi_host_free
);
2723 static void iscsi_host_dec_session_cnt(struct Scsi_Host
*shost
)
2725 struct iscsi_host
*ihost
= shost_priv(shost
);
2726 unsigned long flags
;
2728 shost
= scsi_host_get(shost
);
2730 printk(KERN_ERR
"Invalid state. Cannot notify host removal "
2731 "of session teardown event because host already "
2736 spin_lock_irqsave(&ihost
->lock
, flags
);
2737 ihost
->num_sessions
--;
2738 if (ihost
->num_sessions
== 0)
2739 wake_up(&ihost
->session_removal_wq
);
2740 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2741 scsi_host_put(shost
);
2745 * iscsi_session_setup - create iscsi cls session and host and session
2746 * @iscsit: iscsi transport template
2748 * @cmds_max: session can queue
2749 * @cmd_task_size: LLD task private data size
2750 * @initial_cmdsn: initial CmdSN
2752 * This can be used by software iscsi_transports that allocate
2753 * a session per scsi host.
2755 * Callers should set cmds_max to the largest total numer (mgmt + scsi) of
2756 * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks
2757 * for nop handling and login/logout requests.
2759 struct iscsi_cls_session
*
2760 iscsi_session_setup(struct iscsi_transport
*iscsit
, struct Scsi_Host
*shost
,
2761 uint16_t cmds_max
, int dd_size
, int cmd_task_size
,
2762 uint32_t initial_cmdsn
, unsigned int id
)
2764 struct iscsi_host
*ihost
= shost_priv(shost
);
2765 struct iscsi_session
*session
;
2766 struct iscsi_cls_session
*cls_session
;
2767 int cmd_i
, scsi_cmds
, total_cmds
= cmds_max
;
2768 unsigned long flags
;
2770 spin_lock_irqsave(&ihost
->lock
, flags
);
2771 if (ihost
->state
== ISCSI_HOST_REMOVED
) {
2772 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2775 ihost
->num_sessions
++;
2776 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2779 total_cmds
= ISCSI_DEF_XMIT_CMDS_MAX
;
2781 * The iscsi layer needs some tasks for nop handling and tmfs,
2782 * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX
2783 * + 1 command for scsi IO.
2785 if (total_cmds
< ISCSI_TOTAL_CMDS_MIN
) {
2786 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2787 "must be a power of two that is at least %d.\n",
2788 total_cmds
, ISCSI_TOTAL_CMDS_MIN
);
2789 goto dec_session_count
;
2792 if (total_cmds
> ISCSI_TOTAL_CMDS_MAX
) {
2793 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2794 "must be a power of 2 less than or equal to %d.\n",
2795 cmds_max
, ISCSI_TOTAL_CMDS_MAX
);
2796 total_cmds
= ISCSI_TOTAL_CMDS_MAX
;
2799 if (!is_power_of_2(total_cmds
)) {
2800 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2801 "must be a power of 2.\n", total_cmds
);
2802 total_cmds
= rounddown_pow_of_two(total_cmds
);
2803 if (total_cmds
< ISCSI_TOTAL_CMDS_MIN
)
2805 printk(KERN_INFO
"iscsi: Rounding can_queue to %d.\n",
2808 scsi_cmds
= total_cmds
- ISCSI_MGMT_CMDS_MAX
;
2810 cls_session
= iscsi_alloc_session(shost
, iscsit
,
2811 sizeof(struct iscsi_session
) +
2814 goto dec_session_count
;
2815 session
= cls_session
->dd_data
;
2816 session
->cls_session
= cls_session
;
2817 session
->host
= shost
;
2818 session
->state
= ISCSI_STATE_FREE
;
2819 session
->fast_abort
= 1;
2820 session
->tgt_reset_timeout
= 30;
2821 session
->lu_reset_timeout
= 15;
2822 session
->abort_timeout
= 10;
2823 session
->scsi_cmds_max
= scsi_cmds
;
2824 session
->cmds_max
= total_cmds
;
2825 session
->queued_cmdsn
= session
->cmdsn
= initial_cmdsn
;
2826 session
->exp_cmdsn
= initial_cmdsn
+ 1;
2827 session
->max_cmdsn
= initial_cmdsn
+ 1;
2828 session
->max_r2t
= 1;
2829 session
->tt
= iscsit
;
2830 session
->dd_data
= cls_session
->dd_data
+ sizeof(*session
);
2832 mutex_init(&session
->eh_mutex
);
2833 spin_lock_init(&session
->frwd_lock
);
2834 spin_lock_init(&session
->back_lock
);
2836 /* initialize SCSI PDU commands pool */
2837 if (iscsi_pool_init(&session
->cmdpool
, session
->cmds_max
,
2838 (void***)&session
->cmds
,
2839 cmd_task_size
+ sizeof(struct iscsi_task
)))
2840 goto cmdpool_alloc_fail
;
2842 /* pre-format cmds pool with ITT */
2843 for (cmd_i
= 0; cmd_i
< session
->cmds_max
; cmd_i
++) {
2844 struct iscsi_task
*task
= session
->cmds
[cmd_i
];
2847 task
->dd_data
= &task
[1];
2849 task
->state
= ISCSI_TASK_FREE
;
2850 INIT_LIST_HEAD(&task
->running
);
2853 if (!try_module_get(iscsit
->owner
))
2854 goto module_get_fail
;
2856 if (iscsi_add_session(cls_session
, id
))
2857 goto cls_session_fail
;
2862 module_put(iscsit
->owner
);
2864 iscsi_pool_free(&session
->cmdpool
);
2866 iscsi_free_session(cls_session
);
2868 iscsi_host_dec_session_cnt(shost
);
2871 EXPORT_SYMBOL_GPL(iscsi_session_setup
);
2874 * iscsi_session_teardown - destroy session, host, and cls_session
2875 * @cls_session: iscsi session
2877 * The driver must have called iscsi_remove_session before
2880 void iscsi_session_teardown(struct iscsi_cls_session
*cls_session
)
2882 struct iscsi_session
*session
= cls_session
->dd_data
;
2883 struct module
*owner
= cls_session
->transport
->owner
;
2884 struct Scsi_Host
*shost
= session
->host
;
2886 iscsi_pool_free(&session
->cmdpool
);
2888 kfree(session
->password
);
2889 kfree(session
->password_in
);
2890 kfree(session
->username
);
2891 kfree(session
->username_in
);
2892 kfree(session
->targetname
);
2893 kfree(session
->targetalias
);
2894 kfree(session
->initiatorname
);
2895 kfree(session
->boot_root
);
2896 kfree(session
->boot_nic
);
2897 kfree(session
->boot_target
);
2898 kfree(session
->ifacename
);
2899 kfree(session
->portal_type
);
2900 kfree(session
->discovery_parent_type
);
2902 iscsi_destroy_session(cls_session
);
2903 iscsi_host_dec_session_cnt(shost
);
2906 EXPORT_SYMBOL_GPL(iscsi_session_teardown
);
2909 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
2910 * @cls_session: iscsi_cls_session
2911 * @dd_size: private driver data size
2914 struct iscsi_cls_conn
*
2915 iscsi_conn_setup(struct iscsi_cls_session
*cls_session
, int dd_size
,
2918 struct iscsi_session
*session
= cls_session
->dd_data
;
2919 struct iscsi_conn
*conn
;
2920 struct iscsi_cls_conn
*cls_conn
;
2923 cls_conn
= iscsi_create_conn(cls_session
, sizeof(*conn
) + dd_size
,
2927 conn
= cls_conn
->dd_data
;
2928 memset(conn
, 0, sizeof(*conn
) + dd_size
);
2930 conn
->dd_data
= cls_conn
->dd_data
+ sizeof(*conn
);
2931 conn
->session
= session
;
2932 conn
->cls_conn
= cls_conn
;
2933 conn
->c_stage
= ISCSI_CONN_INITIAL_STAGE
;
2934 conn
->id
= conn_idx
;
2935 conn
->exp_statsn
= 0;
2936 conn
->tmf_state
= TMF_INITIAL
;
2938 init_timer(&conn
->transport_timer
);
2939 conn
->transport_timer
.data
= (unsigned long)conn
;
2940 conn
->transport_timer
.function
= iscsi_check_transport_timeouts
;
2942 INIT_LIST_HEAD(&conn
->mgmtqueue
);
2943 INIT_LIST_HEAD(&conn
->cmdqueue
);
2944 INIT_LIST_HEAD(&conn
->requeue
);
2945 spin_lock_init(&conn
->taskqueuelock
);
2946 INIT_WORK(&conn
->xmitwork
, iscsi_xmitworker
);
2948 /* allocate login_task used for the login/text sequences */
2949 spin_lock_bh(&session
->frwd_lock
);
2950 if (!kfifo_out(&session
->cmdpool
.queue
,
2951 (void*)&conn
->login_task
,
2953 spin_unlock_bh(&session
->frwd_lock
);
2954 goto login_task_alloc_fail
;
2956 spin_unlock_bh(&session
->frwd_lock
);
2958 data
= (char *) __get_free_pages(GFP_KERNEL
,
2959 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN
));
2961 goto login_task_data_alloc_fail
;
2962 conn
->login_task
->data
= conn
->data
= data
;
2964 init_timer(&conn
->tmf_timer
);
2965 init_waitqueue_head(&conn
->ehwait
);
2969 login_task_data_alloc_fail
:
2970 kfifo_in(&session
->cmdpool
.queue
, (void*)&conn
->login_task
,
2972 login_task_alloc_fail
:
2973 iscsi_destroy_conn(cls_conn
);
2976 EXPORT_SYMBOL_GPL(iscsi_conn_setup
);
2979 * iscsi_conn_teardown - teardown iscsi connection
2980 * cls_conn: iscsi class connection
2982 * TODO: we may need to make this into a two step process
2983 * like scsi-mls remove + put host
2985 void iscsi_conn_teardown(struct iscsi_cls_conn
*cls_conn
)
2987 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2988 struct iscsi_session
*session
= conn
->session
;
2990 del_timer_sync(&conn
->transport_timer
);
2992 mutex_lock(&session
->eh_mutex
);
2993 spin_lock_bh(&session
->frwd_lock
);
2994 conn
->c_stage
= ISCSI_CONN_CLEANUP_WAIT
;
2995 if (session
->leadconn
== conn
) {
2997 * leading connection? then give up on recovery.
2999 session
->state
= ISCSI_STATE_TERMINATE
;
3000 wake_up(&conn
->ehwait
);
3002 spin_unlock_bh(&session
->frwd_lock
);
3004 /* flush queued up work because we free the connection below */
3005 iscsi_suspend_tx(conn
);
3007 spin_lock_bh(&session
->frwd_lock
);
3008 free_pages((unsigned long) conn
->data
,
3009 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN
));
3010 kfree(conn
->persistent_address
);
3011 kfree(conn
->local_ipaddr
);
3012 /* regular RX path uses back_lock */
3013 spin_lock_bh(&session
->back_lock
);
3014 kfifo_in(&session
->cmdpool
.queue
, (void*)&conn
->login_task
,
3016 spin_unlock_bh(&session
->back_lock
);
3017 if (session
->leadconn
== conn
)
3018 session
->leadconn
= NULL
;
3019 spin_unlock_bh(&session
->frwd_lock
);
3020 mutex_unlock(&session
->eh_mutex
);
3022 iscsi_destroy_conn(cls_conn
);
3024 EXPORT_SYMBOL_GPL(iscsi_conn_teardown
);
3026 int iscsi_conn_start(struct iscsi_cls_conn
*cls_conn
)
3028 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3029 struct iscsi_session
*session
= conn
->session
;
3032 iscsi_conn_printk(KERN_ERR
, conn
,
3033 "can't start unbound connection\n");
3037 if ((session
->imm_data_en
|| !session
->initial_r2t_en
) &&
3038 session
->first_burst
> session
->max_burst
) {
3039 iscsi_conn_printk(KERN_INFO
, conn
, "invalid burst lengths: "
3040 "first_burst %d max_burst %d\n",
3041 session
->first_burst
, session
->max_burst
);
3045 if (conn
->ping_timeout
&& !conn
->recv_timeout
) {
3046 iscsi_conn_printk(KERN_ERR
, conn
, "invalid recv timeout of "
3047 "zero. Using 5 seconds\n.");
3048 conn
->recv_timeout
= 5;
3051 if (conn
->recv_timeout
&& !conn
->ping_timeout
) {
3052 iscsi_conn_printk(KERN_ERR
, conn
, "invalid ping timeout of "
3053 "zero. Using 5 seconds.\n");
3054 conn
->ping_timeout
= 5;
3057 spin_lock_bh(&session
->frwd_lock
);
3058 conn
->c_stage
= ISCSI_CONN_STARTED
;
3059 session
->state
= ISCSI_STATE_LOGGED_IN
;
3060 session
->queued_cmdsn
= session
->cmdsn
;
3062 conn
->last_recv
= jiffies
;
3063 conn
->last_ping
= jiffies
;
3064 if (conn
->recv_timeout
&& conn
->ping_timeout
)
3065 mod_timer(&conn
->transport_timer
,
3066 jiffies
+ (conn
->recv_timeout
* HZ
));
3068 switch(conn
->stop_stage
) {
3069 case STOP_CONN_RECOVER
:
3071 * unblock eh_abort() if it is blocked. re-try all
3072 * commands after successful recovery
3074 conn
->stop_stage
= 0;
3075 conn
->tmf_state
= TMF_INITIAL
;
3077 if (session
->age
== 16)
3080 case STOP_CONN_TERM
:
3081 conn
->stop_stage
= 0;
3086 spin_unlock_bh(&session
->frwd_lock
);
3088 iscsi_unblock_session(session
->cls_session
);
3089 wake_up(&conn
->ehwait
);
3092 EXPORT_SYMBOL_GPL(iscsi_conn_start
);
3095 fail_mgmt_tasks(struct iscsi_session
*session
, struct iscsi_conn
*conn
)
3097 struct iscsi_task
*task
;
3100 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
3101 task
= conn
->session
->cmds
[i
];
3105 if (task
->state
== ISCSI_TASK_FREE
)
3108 ISCSI_DBG_SESSION(conn
->session
,
3109 "failing mgmt itt 0x%x state %d\n",
3110 task
->itt
, task
->state
);
3111 state
= ISCSI_TASK_ABRT_SESS_RECOV
;
3112 if (task
->state
== ISCSI_TASK_PENDING
)
3113 state
= ISCSI_TASK_COMPLETED
;
3114 iscsi_complete_task(task
, state
);
3119 static void iscsi_start_session_recovery(struct iscsi_session
*session
,
3120 struct iscsi_conn
*conn
, int flag
)
3124 mutex_lock(&session
->eh_mutex
);
3125 spin_lock_bh(&session
->frwd_lock
);
3126 if (conn
->stop_stage
== STOP_CONN_TERM
) {
3127 spin_unlock_bh(&session
->frwd_lock
);
3128 mutex_unlock(&session
->eh_mutex
);
3133 * When this is called for the in_login state, we only want to clean
3134 * up the login task and connection. We do not need to block and set
3135 * the recovery state again
3137 if (flag
== STOP_CONN_TERM
)
3138 session
->state
= ISCSI_STATE_TERMINATE
;
3139 else if (conn
->stop_stage
!= STOP_CONN_RECOVER
)
3140 session
->state
= ISCSI_STATE_IN_RECOVERY
;
3142 old_stop_stage
= conn
->stop_stage
;
3143 conn
->stop_stage
= flag
;
3144 spin_unlock_bh(&session
->frwd_lock
);
3146 del_timer_sync(&conn
->transport_timer
);
3147 iscsi_suspend_tx(conn
);
3149 spin_lock_bh(&session
->frwd_lock
);
3150 conn
->c_stage
= ISCSI_CONN_STOPPED
;
3151 spin_unlock_bh(&session
->frwd_lock
);
3154 * for connection level recovery we should not calculate
3155 * header digest. conn->hdr_size used for optimization
3156 * in hdr_extract() and will be re-negotiated at
3159 if (flag
== STOP_CONN_RECOVER
) {
3160 conn
->hdrdgst_en
= 0;
3161 conn
->datadgst_en
= 0;
3162 if (session
->state
== ISCSI_STATE_IN_RECOVERY
&&
3163 old_stop_stage
!= STOP_CONN_RECOVER
) {
3164 ISCSI_DBG_SESSION(session
, "blocking session\n");
3165 iscsi_block_session(session
->cls_session
);
3172 spin_lock_bh(&session
->frwd_lock
);
3173 fail_scsi_tasks(conn
, -1, DID_TRANSPORT_DISRUPTED
);
3174 fail_mgmt_tasks(session
, conn
);
3175 memset(&conn
->tmhdr
, 0, sizeof(conn
->tmhdr
));
3176 spin_unlock_bh(&session
->frwd_lock
);
3177 mutex_unlock(&session
->eh_mutex
);
3180 void iscsi_conn_stop(struct iscsi_cls_conn
*cls_conn
, int flag
)
3182 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3183 struct iscsi_session
*session
= conn
->session
;
3186 case STOP_CONN_RECOVER
:
3187 case STOP_CONN_TERM
:
3188 iscsi_start_session_recovery(session
, conn
, flag
);
3191 iscsi_conn_printk(KERN_ERR
, conn
,
3192 "invalid stop flag %d\n", flag
);
3195 EXPORT_SYMBOL_GPL(iscsi_conn_stop
);
3197 int iscsi_conn_bind(struct iscsi_cls_session
*cls_session
,
3198 struct iscsi_cls_conn
*cls_conn
, int is_leading
)
3200 struct iscsi_session
*session
= cls_session
->dd_data
;
3201 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3203 spin_lock_bh(&session
->frwd_lock
);
3205 session
->leadconn
= conn
;
3206 spin_unlock_bh(&session
->frwd_lock
);
3209 * Unblock xmitworker(), Login Phase will pass through.
3211 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
3212 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
3215 EXPORT_SYMBOL_GPL(iscsi_conn_bind
);
3217 int iscsi_switch_str_param(char **param
, char *new_val_buf
)
3222 if (!strcmp(*param
, new_val_buf
))
3226 new_val
= kstrdup(new_val_buf
, GFP_NOIO
);
3234 EXPORT_SYMBOL_GPL(iscsi_switch_str_param
);
3236 int iscsi_set_param(struct iscsi_cls_conn
*cls_conn
,
3237 enum iscsi_param param
, char *buf
, int buflen
)
3239 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3240 struct iscsi_session
*session
= conn
->session
;
3244 case ISCSI_PARAM_FAST_ABORT
:
3245 sscanf(buf
, "%d", &session
->fast_abort
);
3247 case ISCSI_PARAM_ABORT_TMO
:
3248 sscanf(buf
, "%d", &session
->abort_timeout
);
3250 case ISCSI_PARAM_LU_RESET_TMO
:
3251 sscanf(buf
, "%d", &session
->lu_reset_timeout
);
3253 case ISCSI_PARAM_TGT_RESET_TMO
:
3254 sscanf(buf
, "%d", &session
->tgt_reset_timeout
);
3256 case ISCSI_PARAM_PING_TMO
:
3257 sscanf(buf
, "%d", &conn
->ping_timeout
);
3259 case ISCSI_PARAM_RECV_TMO
:
3260 sscanf(buf
, "%d", &conn
->recv_timeout
);
3262 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
3263 sscanf(buf
, "%d", &conn
->max_recv_dlength
);
3265 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
3266 sscanf(buf
, "%d", &conn
->max_xmit_dlength
);
3268 case ISCSI_PARAM_HDRDGST_EN
:
3269 sscanf(buf
, "%d", &conn
->hdrdgst_en
);
3271 case ISCSI_PARAM_DATADGST_EN
:
3272 sscanf(buf
, "%d", &conn
->datadgst_en
);
3274 case ISCSI_PARAM_INITIAL_R2T_EN
:
3275 sscanf(buf
, "%d", &session
->initial_r2t_en
);
3277 case ISCSI_PARAM_MAX_R2T
:
3278 sscanf(buf
, "%hu", &session
->max_r2t
);
3280 case ISCSI_PARAM_IMM_DATA_EN
:
3281 sscanf(buf
, "%d", &session
->imm_data_en
);
3283 case ISCSI_PARAM_FIRST_BURST
:
3284 sscanf(buf
, "%d", &session
->first_burst
);
3286 case ISCSI_PARAM_MAX_BURST
:
3287 sscanf(buf
, "%d", &session
->max_burst
);
3289 case ISCSI_PARAM_PDU_INORDER_EN
:
3290 sscanf(buf
, "%d", &session
->pdu_inorder_en
);
3292 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
3293 sscanf(buf
, "%d", &session
->dataseq_inorder_en
);
3295 case ISCSI_PARAM_ERL
:
3296 sscanf(buf
, "%d", &session
->erl
);
3298 case ISCSI_PARAM_EXP_STATSN
:
3299 sscanf(buf
, "%u", &conn
->exp_statsn
);
3301 case ISCSI_PARAM_USERNAME
:
3302 return iscsi_switch_str_param(&session
->username
, buf
);
3303 case ISCSI_PARAM_USERNAME_IN
:
3304 return iscsi_switch_str_param(&session
->username_in
, buf
);
3305 case ISCSI_PARAM_PASSWORD
:
3306 return iscsi_switch_str_param(&session
->password
, buf
);
3307 case ISCSI_PARAM_PASSWORD_IN
:
3308 return iscsi_switch_str_param(&session
->password_in
, buf
);
3309 case ISCSI_PARAM_TARGET_NAME
:
3310 return iscsi_switch_str_param(&session
->targetname
, buf
);
3311 case ISCSI_PARAM_TARGET_ALIAS
:
3312 return iscsi_switch_str_param(&session
->targetalias
, buf
);
3313 case ISCSI_PARAM_TPGT
:
3314 sscanf(buf
, "%d", &session
->tpgt
);
3316 case ISCSI_PARAM_PERSISTENT_PORT
:
3317 sscanf(buf
, "%d", &conn
->persistent_port
);
3319 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
3320 return iscsi_switch_str_param(&conn
->persistent_address
, buf
);
3321 case ISCSI_PARAM_IFACE_NAME
:
3322 return iscsi_switch_str_param(&session
->ifacename
, buf
);
3323 case ISCSI_PARAM_INITIATOR_NAME
:
3324 return iscsi_switch_str_param(&session
->initiatorname
, buf
);
3325 case ISCSI_PARAM_BOOT_ROOT
:
3326 return iscsi_switch_str_param(&session
->boot_root
, buf
);
3327 case ISCSI_PARAM_BOOT_NIC
:
3328 return iscsi_switch_str_param(&session
->boot_nic
, buf
);
3329 case ISCSI_PARAM_BOOT_TARGET
:
3330 return iscsi_switch_str_param(&session
->boot_target
, buf
);
3331 case ISCSI_PARAM_PORTAL_TYPE
:
3332 return iscsi_switch_str_param(&session
->portal_type
, buf
);
3333 case ISCSI_PARAM_DISCOVERY_PARENT_TYPE
:
3334 return iscsi_switch_str_param(&session
->discovery_parent_type
,
3336 case ISCSI_PARAM_DISCOVERY_SESS
:
3337 sscanf(buf
, "%d", &val
);
3338 session
->discovery_sess
= !!val
;
3340 case ISCSI_PARAM_LOCAL_IPADDR
:
3341 return iscsi_switch_str_param(&conn
->local_ipaddr
, buf
);
3348 EXPORT_SYMBOL_GPL(iscsi_set_param
);
3350 int iscsi_session_get_param(struct iscsi_cls_session
*cls_session
,
3351 enum iscsi_param param
, char *buf
)
3353 struct iscsi_session
*session
= cls_session
->dd_data
;
3357 case ISCSI_PARAM_FAST_ABORT
:
3358 len
= sprintf(buf
, "%d\n", session
->fast_abort
);
3360 case ISCSI_PARAM_ABORT_TMO
:
3361 len
= sprintf(buf
, "%d\n", session
->abort_timeout
);
3363 case ISCSI_PARAM_LU_RESET_TMO
:
3364 len
= sprintf(buf
, "%d\n", session
->lu_reset_timeout
);
3366 case ISCSI_PARAM_TGT_RESET_TMO
:
3367 len
= sprintf(buf
, "%d\n", session
->tgt_reset_timeout
);
3369 case ISCSI_PARAM_INITIAL_R2T_EN
:
3370 len
= sprintf(buf
, "%d\n", session
->initial_r2t_en
);
3372 case ISCSI_PARAM_MAX_R2T
:
3373 len
= sprintf(buf
, "%hu\n", session
->max_r2t
);
3375 case ISCSI_PARAM_IMM_DATA_EN
:
3376 len
= sprintf(buf
, "%d\n", session
->imm_data_en
);
3378 case ISCSI_PARAM_FIRST_BURST
:
3379 len
= sprintf(buf
, "%u\n", session
->first_burst
);
3381 case ISCSI_PARAM_MAX_BURST
:
3382 len
= sprintf(buf
, "%u\n", session
->max_burst
);
3384 case ISCSI_PARAM_PDU_INORDER_EN
:
3385 len
= sprintf(buf
, "%d\n", session
->pdu_inorder_en
);
3387 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
3388 len
= sprintf(buf
, "%d\n", session
->dataseq_inorder_en
);
3390 case ISCSI_PARAM_DEF_TASKMGMT_TMO
:
3391 len
= sprintf(buf
, "%d\n", session
->def_taskmgmt_tmo
);
3393 case ISCSI_PARAM_ERL
:
3394 len
= sprintf(buf
, "%d\n", session
->erl
);
3396 case ISCSI_PARAM_TARGET_NAME
:
3397 len
= sprintf(buf
, "%s\n", session
->targetname
);
3399 case ISCSI_PARAM_TARGET_ALIAS
:
3400 len
= sprintf(buf
, "%s\n", session
->targetalias
);
3402 case ISCSI_PARAM_TPGT
:
3403 len
= sprintf(buf
, "%d\n", session
->tpgt
);
3405 case ISCSI_PARAM_USERNAME
:
3406 len
= sprintf(buf
, "%s\n", session
->username
);
3408 case ISCSI_PARAM_USERNAME_IN
:
3409 len
= sprintf(buf
, "%s\n", session
->username_in
);
3411 case ISCSI_PARAM_PASSWORD
:
3412 len
= sprintf(buf
, "%s\n", session
->password
);
3414 case ISCSI_PARAM_PASSWORD_IN
:
3415 len
= sprintf(buf
, "%s\n", session
->password_in
);
3417 case ISCSI_PARAM_IFACE_NAME
:
3418 len
= sprintf(buf
, "%s\n", session
->ifacename
);
3420 case ISCSI_PARAM_INITIATOR_NAME
:
3421 len
= sprintf(buf
, "%s\n", session
->initiatorname
);
3423 case ISCSI_PARAM_BOOT_ROOT
:
3424 len
= sprintf(buf
, "%s\n", session
->boot_root
);
3426 case ISCSI_PARAM_BOOT_NIC
:
3427 len
= sprintf(buf
, "%s\n", session
->boot_nic
);
3429 case ISCSI_PARAM_BOOT_TARGET
:
3430 len
= sprintf(buf
, "%s\n", session
->boot_target
);
3432 case ISCSI_PARAM_AUTO_SND_TGT_DISABLE
:
3433 len
= sprintf(buf
, "%u\n", session
->auto_snd_tgt_disable
);
3435 case ISCSI_PARAM_DISCOVERY_SESS
:
3436 len
= sprintf(buf
, "%u\n", session
->discovery_sess
);
3438 case ISCSI_PARAM_PORTAL_TYPE
:
3439 len
= sprintf(buf
, "%s\n", session
->portal_type
);
3441 case ISCSI_PARAM_CHAP_AUTH_EN
:
3442 len
= sprintf(buf
, "%u\n", session
->chap_auth_en
);
3444 case ISCSI_PARAM_DISCOVERY_LOGOUT_EN
:
3445 len
= sprintf(buf
, "%u\n", session
->discovery_logout_en
);
3447 case ISCSI_PARAM_BIDI_CHAP_EN
:
3448 len
= sprintf(buf
, "%u\n", session
->bidi_chap_en
);
3450 case ISCSI_PARAM_DISCOVERY_AUTH_OPTIONAL
:
3451 len
= sprintf(buf
, "%u\n", session
->discovery_auth_optional
);
3453 case ISCSI_PARAM_DEF_TIME2WAIT
:
3454 len
= sprintf(buf
, "%d\n", session
->time2wait
);
3456 case ISCSI_PARAM_DEF_TIME2RETAIN
:
3457 len
= sprintf(buf
, "%d\n", session
->time2retain
);
3459 case ISCSI_PARAM_TSID
:
3460 len
= sprintf(buf
, "%u\n", session
->tsid
);
3462 case ISCSI_PARAM_ISID
:
3463 len
= sprintf(buf
, "%02x%02x%02x%02x%02x%02x\n",
3464 session
->isid
[0], session
->isid
[1],
3465 session
->isid
[2], session
->isid
[3],
3466 session
->isid
[4], session
->isid
[5]);
3468 case ISCSI_PARAM_DISCOVERY_PARENT_IDX
:
3469 len
= sprintf(buf
, "%u\n", session
->discovery_parent_idx
);
3471 case ISCSI_PARAM_DISCOVERY_PARENT_TYPE
:
3472 if (session
->discovery_parent_type
)
3473 len
= sprintf(buf
, "%s\n",
3474 session
->discovery_parent_type
);
3476 len
= sprintf(buf
, "\n");
3484 EXPORT_SYMBOL_GPL(iscsi_session_get_param
);
3486 int iscsi_conn_get_addr_param(struct sockaddr_storage
*addr
,
3487 enum iscsi_param param
, char *buf
)
3489 struct sockaddr_in6
*sin6
= NULL
;
3490 struct sockaddr_in
*sin
= NULL
;
3493 switch (addr
->ss_family
) {
3495 sin
= (struct sockaddr_in
*)addr
;
3498 sin6
= (struct sockaddr_in6
*)addr
;
3505 case ISCSI_PARAM_CONN_ADDRESS
:
3506 case ISCSI_HOST_PARAM_IPADDRESS
:
3508 len
= sprintf(buf
, "%pI4\n", &sin
->sin_addr
.s_addr
);
3510 len
= sprintf(buf
, "%pI6\n", &sin6
->sin6_addr
);
3512 case ISCSI_PARAM_CONN_PORT
:
3513 case ISCSI_PARAM_LOCAL_PORT
:
3515 len
= sprintf(buf
, "%hu\n", be16_to_cpu(sin
->sin_port
));
3517 len
= sprintf(buf
, "%hu\n",
3518 be16_to_cpu(sin6
->sin6_port
));
3526 EXPORT_SYMBOL_GPL(iscsi_conn_get_addr_param
);
3528 int iscsi_conn_get_param(struct iscsi_cls_conn
*cls_conn
,
3529 enum iscsi_param param
, char *buf
)
3531 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3535 case ISCSI_PARAM_PING_TMO
:
3536 len
= sprintf(buf
, "%u\n", conn
->ping_timeout
);
3538 case ISCSI_PARAM_RECV_TMO
:
3539 len
= sprintf(buf
, "%u\n", conn
->recv_timeout
);
3541 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
3542 len
= sprintf(buf
, "%u\n", conn
->max_recv_dlength
);
3544 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
3545 len
= sprintf(buf
, "%u\n", conn
->max_xmit_dlength
);
3547 case ISCSI_PARAM_HDRDGST_EN
:
3548 len
= sprintf(buf
, "%d\n", conn
->hdrdgst_en
);
3550 case ISCSI_PARAM_DATADGST_EN
:
3551 len
= sprintf(buf
, "%d\n", conn
->datadgst_en
);
3553 case ISCSI_PARAM_IFMARKER_EN
:
3554 len
= sprintf(buf
, "%d\n", conn
->ifmarker_en
);
3556 case ISCSI_PARAM_OFMARKER_EN
:
3557 len
= sprintf(buf
, "%d\n", conn
->ofmarker_en
);
3559 case ISCSI_PARAM_EXP_STATSN
:
3560 len
= sprintf(buf
, "%u\n", conn
->exp_statsn
);
3562 case ISCSI_PARAM_PERSISTENT_PORT
:
3563 len
= sprintf(buf
, "%d\n", conn
->persistent_port
);
3565 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
3566 len
= sprintf(buf
, "%s\n", conn
->persistent_address
);
3568 case ISCSI_PARAM_STATSN
:
3569 len
= sprintf(buf
, "%u\n", conn
->statsn
);
3571 case ISCSI_PARAM_MAX_SEGMENT_SIZE
:
3572 len
= sprintf(buf
, "%u\n", conn
->max_segment_size
);
3574 case ISCSI_PARAM_KEEPALIVE_TMO
:
3575 len
= sprintf(buf
, "%u\n", conn
->keepalive_tmo
);
3577 case ISCSI_PARAM_LOCAL_PORT
:
3578 len
= sprintf(buf
, "%u\n", conn
->local_port
);
3580 case ISCSI_PARAM_TCP_TIMESTAMP_STAT
:
3581 len
= sprintf(buf
, "%u\n", conn
->tcp_timestamp_stat
);
3583 case ISCSI_PARAM_TCP_NAGLE_DISABLE
:
3584 len
= sprintf(buf
, "%u\n", conn
->tcp_nagle_disable
);
3586 case ISCSI_PARAM_TCP_WSF_DISABLE
:
3587 len
= sprintf(buf
, "%u\n", conn
->tcp_wsf_disable
);
3589 case ISCSI_PARAM_TCP_TIMER_SCALE
:
3590 len
= sprintf(buf
, "%u\n", conn
->tcp_timer_scale
);
3592 case ISCSI_PARAM_TCP_TIMESTAMP_EN
:
3593 len
= sprintf(buf
, "%u\n", conn
->tcp_timestamp_en
);
3595 case ISCSI_PARAM_IP_FRAGMENT_DISABLE
:
3596 len
= sprintf(buf
, "%u\n", conn
->fragment_disable
);
3598 case ISCSI_PARAM_IPV4_TOS
:
3599 len
= sprintf(buf
, "%u\n", conn
->ipv4_tos
);
3601 case ISCSI_PARAM_IPV6_TC
:
3602 len
= sprintf(buf
, "%u\n", conn
->ipv6_traffic_class
);
3604 case ISCSI_PARAM_IPV6_FLOW_LABEL
:
3605 len
= sprintf(buf
, "%u\n", conn
->ipv6_flow_label
);
3607 case ISCSI_PARAM_IS_FW_ASSIGNED_IPV6
:
3608 len
= sprintf(buf
, "%u\n", conn
->is_fw_assigned_ipv6
);
3610 case ISCSI_PARAM_TCP_XMIT_WSF
:
3611 len
= sprintf(buf
, "%u\n", conn
->tcp_xmit_wsf
);
3613 case ISCSI_PARAM_TCP_RECV_WSF
:
3614 len
= sprintf(buf
, "%u\n", conn
->tcp_recv_wsf
);
3616 case ISCSI_PARAM_LOCAL_IPADDR
:
3617 len
= sprintf(buf
, "%s\n", conn
->local_ipaddr
);
3625 EXPORT_SYMBOL_GPL(iscsi_conn_get_param
);
3627 int iscsi_host_get_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
3630 struct iscsi_host
*ihost
= shost_priv(shost
);
3634 case ISCSI_HOST_PARAM_NETDEV_NAME
:
3635 len
= sprintf(buf
, "%s\n", ihost
->netdev
);
3637 case ISCSI_HOST_PARAM_HWADDRESS
:
3638 len
= sprintf(buf
, "%s\n", ihost
->hwaddress
);
3640 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
3641 len
= sprintf(buf
, "%s\n", ihost
->initiatorname
);
3649 EXPORT_SYMBOL_GPL(iscsi_host_get_param
);
3651 int iscsi_host_set_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
3652 char *buf
, int buflen
)
3654 struct iscsi_host
*ihost
= shost_priv(shost
);
3657 case ISCSI_HOST_PARAM_NETDEV_NAME
:
3658 return iscsi_switch_str_param(&ihost
->netdev
, buf
);
3659 case ISCSI_HOST_PARAM_HWADDRESS
:
3660 return iscsi_switch_str_param(&ihost
->hwaddress
, buf
);
3661 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
3662 return iscsi_switch_str_param(&ihost
->initiatorname
, buf
);
3669 EXPORT_SYMBOL_GPL(iscsi_host_set_param
);
3671 MODULE_AUTHOR("Mike Christie");
3672 MODULE_DESCRIPTION("iSCSI library functions");
3673 MODULE_LICENSE("GPL");