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 <asm/unaligned.h>
31 #include <scsi/scsi_cmnd.h>
32 #include <scsi/scsi_device.h>
33 #include <scsi/scsi_eh.h>
34 #include <scsi/scsi_tcq.h>
35 #include <scsi/scsi_host.h>
36 #include <scsi/scsi.h>
37 #include <scsi/iscsi_proto.h>
38 #include <scsi/scsi_transport.h>
39 #include <scsi/scsi_transport_iscsi.h>
40 #include <scsi/libiscsi.h>
42 static int iscsi_dbg_lib_conn
;
43 module_param_named(debug_libiscsi_conn
, iscsi_dbg_lib_conn
, int,
45 MODULE_PARM_DESC(debug_libiscsi_conn
,
46 "Turn on debugging for connections in libiscsi module. "
47 "Set to 1 to turn on, and zero to turn off. Default is off.");
49 static int iscsi_dbg_lib_session
;
50 module_param_named(debug_libiscsi_session
, iscsi_dbg_lib_session
, int,
52 MODULE_PARM_DESC(debug_libiscsi_session
,
53 "Turn on debugging for sessions in libiscsi module. "
54 "Set to 1 to turn on, and zero to turn off. Default is off.");
56 static int iscsi_dbg_lib_eh
;
57 module_param_named(debug_libiscsi_eh
, iscsi_dbg_lib_eh
, int,
59 MODULE_PARM_DESC(debug_libiscsi_eh
,
60 "Turn on debugging for error handling in libiscsi module. "
61 "Set to 1 to turn on, and zero to turn off. Default is off.");
63 #define ISCSI_DBG_CONN(_conn, dbg_fmt, arg...) \
65 if (iscsi_dbg_lib_conn) \
66 iscsi_conn_printk(KERN_INFO, _conn, \
71 #define ISCSI_DBG_SESSION(_session, dbg_fmt, arg...) \
73 if (iscsi_dbg_lib_session) \
74 iscsi_session_printk(KERN_INFO, _session, \
79 #define ISCSI_DBG_EH(_session, dbg_fmt, arg...) \
81 if (iscsi_dbg_lib_eh) \
82 iscsi_session_printk(KERN_INFO, _session, \
87 /* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
88 #define SNA32_CHECK 2147483648UL
90 static int iscsi_sna_lt(u32 n1
, u32 n2
)
92 return n1
!= n2
&& ((n1
< n2
&& (n2
- n1
< SNA32_CHECK
)) ||
93 (n1
> n2
&& (n2
- n1
< SNA32_CHECK
)));
96 /* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
97 static int iscsi_sna_lte(u32 n1
, u32 n2
)
99 return n1
== n2
|| ((n1
< n2
&& (n2
- n1
< SNA32_CHECK
)) ||
100 (n1
> n2
&& (n2
- n1
< SNA32_CHECK
)));
103 inline void iscsi_conn_queue_work(struct iscsi_conn
*conn
)
105 struct Scsi_Host
*shost
= conn
->session
->host
;
106 struct iscsi_host
*ihost
= shost_priv(shost
);
109 queue_work(ihost
->workq
, &conn
->xmitwork
);
111 EXPORT_SYMBOL_GPL(iscsi_conn_queue_work
);
113 static void __iscsi_update_cmdsn(struct iscsi_session
*session
,
114 uint32_t exp_cmdsn
, uint32_t max_cmdsn
)
117 * standard specifies this check for when to update expected and
118 * max sequence numbers
120 if (iscsi_sna_lt(max_cmdsn
, exp_cmdsn
- 1))
123 if (exp_cmdsn
!= session
->exp_cmdsn
&&
124 !iscsi_sna_lt(exp_cmdsn
, session
->exp_cmdsn
))
125 session
->exp_cmdsn
= exp_cmdsn
;
127 if (max_cmdsn
!= session
->max_cmdsn
&&
128 !iscsi_sna_lt(max_cmdsn
, session
->max_cmdsn
)) {
129 session
->max_cmdsn
= max_cmdsn
;
131 * if the window closed with IO queued, then kick the
134 if (!list_empty(&session
->leadconn
->cmdqueue
) ||
135 !list_empty(&session
->leadconn
->mgmtqueue
))
136 iscsi_conn_queue_work(session
->leadconn
);
140 void iscsi_update_cmdsn(struct iscsi_session
*session
, struct iscsi_nopin
*hdr
)
142 __iscsi_update_cmdsn(session
, be32_to_cpu(hdr
->exp_cmdsn
),
143 be32_to_cpu(hdr
->max_cmdsn
));
145 EXPORT_SYMBOL_GPL(iscsi_update_cmdsn
);
148 * iscsi_prep_data_out_pdu - initialize Data-Out
149 * @task: scsi command task
151 * @hdr: iscsi data in pdu
154 * Initialize Data-Out within this R2T sequence and finds
155 * proper data_offset within this SCSI command.
157 * This function is called with connection lock taken.
159 void iscsi_prep_data_out_pdu(struct iscsi_task
*task
, struct iscsi_r2t_info
*r2t
,
160 struct iscsi_data
*hdr
)
162 struct iscsi_conn
*conn
= task
->conn
;
163 unsigned int left
= r2t
->data_length
- r2t
->sent
;
165 task
->hdr_len
= sizeof(struct iscsi_data
);
167 memset(hdr
, 0, sizeof(struct iscsi_data
));
169 hdr
->datasn
= cpu_to_be32(r2t
->datasn
);
171 hdr
->opcode
= ISCSI_OP_SCSI_DATA_OUT
;
172 memcpy(hdr
->lun
, task
->lun
, sizeof(hdr
->lun
));
173 hdr
->itt
= task
->hdr_itt
;
174 hdr
->exp_statsn
= r2t
->exp_statsn
;
175 hdr
->offset
= cpu_to_be32(r2t
->data_offset
+ r2t
->sent
);
176 if (left
> conn
->max_xmit_dlength
) {
177 hton24(hdr
->dlength
, conn
->max_xmit_dlength
);
178 r2t
->data_count
= conn
->max_xmit_dlength
;
181 hton24(hdr
->dlength
, left
);
182 r2t
->data_count
= left
;
183 hdr
->flags
= ISCSI_FLAG_CMD_FINAL
;
185 conn
->dataout_pdus_cnt
++;
187 EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu
);
189 static int iscsi_add_hdr(struct iscsi_task
*task
, unsigned len
)
191 unsigned exp_len
= task
->hdr_len
+ len
;
193 if (exp_len
> task
->hdr_max
) {
198 WARN_ON(len
& (ISCSI_PAD_LEN
- 1)); /* caller must pad the AHS */
199 task
->hdr_len
= exp_len
;
204 * make an extended cdb AHS
206 static int iscsi_prep_ecdb_ahs(struct iscsi_task
*task
)
208 struct scsi_cmnd
*cmd
= task
->sc
;
209 unsigned rlen
, pad_len
;
210 unsigned short ahslength
;
211 struct iscsi_ecdb_ahdr
*ecdb_ahdr
;
214 ecdb_ahdr
= iscsi_next_hdr(task
);
215 rlen
= cmd
->cmd_len
- ISCSI_CDB_SIZE
;
217 BUG_ON(rlen
> sizeof(ecdb_ahdr
->ecdb
));
218 ahslength
= rlen
+ sizeof(ecdb_ahdr
->reserved
);
220 pad_len
= iscsi_padding(rlen
);
222 rc
= iscsi_add_hdr(task
, sizeof(ecdb_ahdr
->ahslength
) +
223 sizeof(ecdb_ahdr
->ahstype
) + ahslength
+ pad_len
);
228 memset(&ecdb_ahdr
->ecdb
[rlen
], 0, pad_len
);
230 ecdb_ahdr
->ahslength
= cpu_to_be16(ahslength
);
231 ecdb_ahdr
->ahstype
= ISCSI_AHSTYPE_CDB
;
232 ecdb_ahdr
->reserved
= 0;
233 memcpy(ecdb_ahdr
->ecdb
, cmd
->cmnd
+ ISCSI_CDB_SIZE
, rlen
);
235 ISCSI_DBG_SESSION(task
->conn
->session
,
236 "iscsi_prep_ecdb_ahs: varlen_cdb_len %d "
237 "rlen %d pad_len %d ahs_length %d iscsi_headers_size "
238 "%u\n", cmd
->cmd_len
, rlen
, pad_len
, ahslength
,
243 static int iscsi_prep_bidi_ahs(struct iscsi_task
*task
)
245 struct scsi_cmnd
*sc
= task
->sc
;
246 struct iscsi_rlength_ahdr
*rlen_ahdr
;
249 rlen_ahdr
= iscsi_next_hdr(task
);
250 rc
= iscsi_add_hdr(task
, sizeof(*rlen_ahdr
));
254 rlen_ahdr
->ahslength
=
255 cpu_to_be16(sizeof(rlen_ahdr
->read_length
) +
256 sizeof(rlen_ahdr
->reserved
));
257 rlen_ahdr
->ahstype
= ISCSI_AHSTYPE_RLENGTH
;
258 rlen_ahdr
->reserved
= 0;
259 rlen_ahdr
->read_length
= cpu_to_be32(scsi_in(sc
)->length
);
261 ISCSI_DBG_SESSION(task
->conn
->session
,
262 "bidi-in rlen_ahdr->read_length(%d) "
263 "rlen_ahdr->ahslength(%d)\n",
264 be32_to_cpu(rlen_ahdr
->read_length
),
265 be16_to_cpu(rlen_ahdr
->ahslength
));
270 * iscsi_check_tmf_restrictions - check if a task is affected by TMF
272 * @opcode: opcode to check for
274 * During TMF a task has to be checked if it's affected.
275 * All unrelated I/O can be passed through, but I/O to the
276 * affected LUN should be restricted.
277 * If 'fast_abort' is set we won't be sending any I/O to the
279 * Otherwise the target is waiting for all TTTs to be completed,
280 * so we have to send all outstanding Data-Out PDUs to the target.
282 static int iscsi_check_tmf_restrictions(struct iscsi_task
*task
, int opcode
)
284 struct iscsi_conn
*conn
= task
->conn
;
285 struct iscsi_tm
*tmf
= &conn
->tmhdr
;
286 unsigned int hdr_lun
;
288 if (conn
->tmf_state
== TMF_INITIAL
)
291 if ((tmf
->opcode
& ISCSI_OPCODE_MASK
) != ISCSI_OP_SCSI_TMFUNC
)
294 switch (ISCSI_TM_FUNC_VALUE(tmf
)) {
295 case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET
:
297 * Allow PDUs for unrelated LUNs
299 hdr_lun
= scsilun_to_int((struct scsi_lun
*)tmf
->lun
);
300 if (hdr_lun
!= task
->sc
->device
->lun
)
303 case ISCSI_TM_FUNC_TARGET_WARM_RESET
:
305 * Fail all SCSI cmd PDUs
307 if (opcode
!= ISCSI_OP_SCSI_DATA_OUT
) {
308 iscsi_conn_printk(KERN_INFO
, conn
,
309 "task [op %x/%x itt "
312 task
->hdr
->opcode
, opcode
,
313 task
->itt
, task
->hdr_itt
);
317 * And also all data-out PDUs in response to R2T
318 * if fast_abort is set.
320 if (conn
->session
->fast_abort
) {
321 iscsi_conn_printk(KERN_INFO
, conn
,
322 "task [op %x/%x itt "
323 "0x%x/0x%x] fast abort.\n",
324 task
->hdr
->opcode
, opcode
,
325 task
->itt
, task
->hdr_itt
);
329 case ISCSI_TM_FUNC_ABORT_TASK
:
331 * the caller has already checked if the task
332 * they want to abort was in the pending queue so if
333 * we are here the cmd pdu has gone out already, and
334 * we will only hit this for data-outs
336 if (opcode
== ISCSI_OP_SCSI_DATA_OUT
&&
337 task
->hdr_itt
== tmf
->rtt
) {
338 ISCSI_DBG_SESSION(conn
->session
,
339 "Preventing task %x/%x from sending "
340 "data-out due to abort task in "
341 "progress\n", task
->itt
,
352 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
355 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
356 * fields like dlength or final based on how much data it sends
358 static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task
*task
)
360 struct iscsi_conn
*conn
= task
->conn
;
361 struct iscsi_session
*session
= conn
->session
;
362 struct scsi_cmnd
*sc
= task
->sc
;
363 struct iscsi_cmd
*hdr
;
364 unsigned hdrlength
, cmd_len
;
368 rc
= iscsi_check_tmf_restrictions(task
, ISCSI_OP_SCSI_CMD
);
372 if (conn
->session
->tt
->alloc_pdu
) {
373 rc
= conn
->session
->tt
->alloc_pdu(task
, ISCSI_OP_SCSI_CMD
);
377 hdr
= (struct iscsi_cmd
*) task
->hdr
;
379 memset(hdr
, 0, sizeof(*hdr
));
381 if (session
->tt
->parse_pdu_itt
)
382 hdr
->itt
= task
->hdr_itt
= itt
;
384 hdr
->itt
= task
->hdr_itt
= build_itt(task
->itt
,
385 task
->conn
->session
->age
);
387 rc
= iscsi_add_hdr(task
, sizeof(*hdr
));
390 hdr
->opcode
= ISCSI_OP_SCSI_CMD
;
391 hdr
->flags
= ISCSI_ATTR_SIMPLE
;
392 int_to_scsilun(sc
->device
->lun
, (struct scsi_lun
*)hdr
->lun
);
393 memcpy(task
->lun
, hdr
->lun
, sizeof(task
->lun
));
394 hdr
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
395 cmd_len
= sc
->cmd_len
;
396 if (cmd_len
< ISCSI_CDB_SIZE
)
397 memset(&hdr
->cdb
[cmd_len
], 0, ISCSI_CDB_SIZE
- cmd_len
);
398 else if (cmd_len
> ISCSI_CDB_SIZE
) {
399 rc
= iscsi_prep_ecdb_ahs(task
);
402 cmd_len
= ISCSI_CDB_SIZE
;
404 memcpy(hdr
->cdb
, sc
->cmnd
, cmd_len
);
407 if (scsi_bidi_cmnd(sc
)) {
408 hdr
->flags
|= ISCSI_FLAG_CMD_READ
;
409 rc
= iscsi_prep_bidi_ahs(task
);
413 if (sc
->sc_data_direction
== DMA_TO_DEVICE
) {
414 unsigned out_len
= scsi_out(sc
)->length
;
415 struct iscsi_r2t_info
*r2t
= &task
->unsol_r2t
;
417 hdr
->data_length
= cpu_to_be32(out_len
);
418 hdr
->flags
|= ISCSI_FLAG_CMD_WRITE
;
422 * imm_count bytes to be sent right after
425 * unsol_count bytes(as Data-Out) to be sent
426 * without R2T ack right after
429 * r2t data_length bytes to be sent via R2T ack's
431 * pad_count bytes to be sent as zero-padding
433 memset(r2t
, 0, sizeof(*r2t
));
435 if (session
->imm_data_en
) {
436 if (out_len
>= session
->first_burst
)
437 task
->imm_count
= min(session
->first_burst
,
438 conn
->max_xmit_dlength
);
440 task
->imm_count
= min(out_len
,
441 conn
->max_xmit_dlength
);
442 hton24(hdr
->dlength
, task
->imm_count
);
444 zero_data(hdr
->dlength
);
446 if (!session
->initial_r2t_en
) {
447 r2t
->data_length
= min(session
->first_burst
, out_len
) -
449 r2t
->data_offset
= task
->imm_count
;
450 r2t
->ttt
= cpu_to_be32(ISCSI_RESERVED_TAG
);
451 r2t
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
454 if (!task
->unsol_r2t
.data_length
)
455 /* No unsolicit Data-Out's */
456 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
458 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
459 zero_data(hdr
->dlength
);
460 hdr
->data_length
= cpu_to_be32(scsi_in(sc
)->length
);
462 if (sc
->sc_data_direction
== DMA_FROM_DEVICE
)
463 hdr
->flags
|= ISCSI_FLAG_CMD_READ
;
466 /* calculate size of additional header segments (AHSs) */
467 hdrlength
= task
->hdr_len
- sizeof(*hdr
);
469 WARN_ON(hdrlength
& (ISCSI_PAD_LEN
-1));
470 hdrlength
/= ISCSI_PAD_LEN
;
472 WARN_ON(hdrlength
>= 256);
473 hdr
->hlength
= hdrlength
& 0xFF;
474 hdr
->cmdsn
= task
->cmdsn
= cpu_to_be32(session
->cmdsn
);
476 if (session
->tt
->init_task
&& session
->tt
->init_task(task
))
479 task
->state
= ISCSI_TASK_RUNNING
;
482 conn
->scsicmd_pdus_cnt
++;
483 ISCSI_DBG_SESSION(session
, "iscsi prep [%s cid %d sc %p cdb 0x%x "
484 "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n",
485 scsi_bidi_cmnd(sc
) ? "bidirectional" :
486 sc
->sc_data_direction
== DMA_TO_DEVICE
?
487 "write" : "read", conn
->id
, sc
, sc
->cmnd
[0],
488 task
->itt
, scsi_bufflen(sc
),
489 scsi_bidi_cmnd(sc
) ? scsi_in(sc
)->length
: 0,
491 session
->max_cmdsn
- session
->exp_cmdsn
+ 1);
496 * iscsi_free_task - free a task
497 * @task: iscsi cmd task
499 * Must be called with session lock.
500 * This function returns the scsi command to scsi-ml or cleans
501 * up mgmt tasks then returns the task to the pool.
503 static void iscsi_free_task(struct iscsi_task
*task
)
505 struct iscsi_conn
*conn
= task
->conn
;
506 struct iscsi_session
*session
= conn
->session
;
507 struct scsi_cmnd
*sc
= task
->sc
;
509 ISCSI_DBG_SESSION(session
, "freeing task itt 0x%x state %d sc %p\n",
510 task
->itt
, task
->state
, task
->sc
);
512 session
->tt
->cleanup_task(task
);
513 task
->state
= ISCSI_TASK_FREE
;
516 * login task is preallocated so do not free
518 if (conn
->login_task
== task
)
521 kfifo_in(&session
->cmdpool
.queue
, (void*)&task
, sizeof(void*));
525 /* SCSI eh reuses commands to verify us */
528 * queue command may call this to free the task, but
529 * not have setup the sc callback
536 void __iscsi_get_task(struct iscsi_task
*task
)
538 atomic_inc(&task
->refcount
);
540 EXPORT_SYMBOL_GPL(__iscsi_get_task
);
542 static void __iscsi_put_task(struct iscsi_task
*task
)
544 if (atomic_dec_and_test(&task
->refcount
))
545 iscsi_free_task(task
);
548 void iscsi_put_task(struct iscsi_task
*task
)
550 struct iscsi_session
*session
= task
->conn
->session
;
552 spin_lock_bh(&session
->lock
);
553 __iscsi_put_task(task
);
554 spin_unlock_bh(&session
->lock
);
556 EXPORT_SYMBOL_GPL(iscsi_put_task
);
559 * iscsi_complete_task - finish a task
560 * @task: iscsi cmd task
561 * @state: state to complete task with
563 * Must be called with session lock.
565 static void iscsi_complete_task(struct iscsi_task
*task
, int state
)
567 struct iscsi_conn
*conn
= task
->conn
;
569 ISCSI_DBG_SESSION(conn
->session
,
570 "complete task itt 0x%x state %d sc %p\n",
571 task
->itt
, task
->state
, task
->sc
);
572 if (task
->state
== ISCSI_TASK_COMPLETED
||
573 task
->state
== ISCSI_TASK_ABRT_TMF
||
574 task
->state
== ISCSI_TASK_ABRT_SESS_RECOV
)
576 WARN_ON_ONCE(task
->state
== ISCSI_TASK_FREE
);
579 if (!list_empty(&task
->running
))
580 list_del_init(&task
->running
);
582 if (conn
->task
== task
)
585 if (conn
->ping_task
== task
)
586 conn
->ping_task
= NULL
;
588 /* release get from queueing */
589 __iscsi_put_task(task
);
593 * iscsi_complete_scsi_task - finish scsi task normally
594 * @task: iscsi task for scsi cmd
595 * @exp_cmdsn: expected cmd sn in cpu format
596 * @max_cmdsn: max cmd sn in cpu format
598 * This is used when drivers do not need or cannot perform
599 * lower level pdu processing.
601 * Called with session lock
603 void iscsi_complete_scsi_task(struct iscsi_task
*task
,
604 uint32_t exp_cmdsn
, uint32_t max_cmdsn
)
606 struct iscsi_conn
*conn
= task
->conn
;
608 ISCSI_DBG_SESSION(conn
->session
, "[itt 0x%x]\n", task
->itt
);
610 conn
->last_recv
= jiffies
;
611 __iscsi_update_cmdsn(conn
->session
, exp_cmdsn
, max_cmdsn
);
612 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
614 EXPORT_SYMBOL_GPL(iscsi_complete_scsi_task
);
618 * session lock must be held and if not called for a task that is
619 * still pending or from the xmit thread, then xmit thread must
622 static void fail_scsi_task(struct iscsi_task
*task
, int err
)
624 struct iscsi_conn
*conn
= task
->conn
;
625 struct scsi_cmnd
*sc
;
629 * if a command completes and we get a successful tmf response
630 * we will hit this because the scsi eh abort code does not take
637 if (task
->state
== ISCSI_TASK_PENDING
) {
639 * cmd never made it to the xmit thread, so we should not count
640 * the cmd in the sequencing
642 conn
->session
->queued_cmdsn
--;
643 /* it was never sent so just complete like normal */
644 state
= ISCSI_TASK_COMPLETED
;
645 } else if (err
== DID_TRANSPORT_DISRUPTED
)
646 state
= ISCSI_TASK_ABRT_SESS_RECOV
;
648 state
= ISCSI_TASK_ABRT_TMF
;
650 sc
->result
= err
<< 16;
651 if (!scsi_bidi_cmnd(sc
))
652 scsi_set_resid(sc
, scsi_bufflen(sc
));
654 scsi_out(sc
)->resid
= scsi_out(sc
)->length
;
655 scsi_in(sc
)->resid
= scsi_in(sc
)->length
;
658 iscsi_complete_task(task
, state
);
661 static int iscsi_prep_mgmt_task(struct iscsi_conn
*conn
,
662 struct iscsi_task
*task
)
664 struct iscsi_session
*session
= conn
->session
;
665 struct iscsi_hdr
*hdr
= task
->hdr
;
666 struct iscsi_nopout
*nop
= (struct iscsi_nopout
*)hdr
;
667 uint8_t opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
669 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
)
672 if (opcode
!= ISCSI_OP_LOGIN
&& opcode
!= ISCSI_OP_TEXT
)
673 nop
->exp_statsn
= cpu_to_be32(conn
->exp_statsn
);
675 * pre-format CmdSN for outgoing PDU.
677 nop
->cmdsn
= cpu_to_be32(session
->cmdsn
);
678 if (hdr
->itt
!= RESERVED_ITT
) {
680 * TODO: We always use immediate for normal session pdus.
681 * If we start to send tmfs or nops as non-immediate then
682 * we should start checking the cmdsn numbers for mgmt tasks.
684 * During discovery sessions iscsid sends TEXT as non immediate,
685 * but we always only send one PDU at a time.
687 if (conn
->c_stage
== ISCSI_CONN_STARTED
&&
688 !(hdr
->opcode
& ISCSI_OP_IMMEDIATE
)) {
689 session
->queued_cmdsn
++;
694 if (session
->tt
->init_task
&& session
->tt
->init_task(task
))
697 if ((hdr
->opcode
& ISCSI_OPCODE_MASK
) == ISCSI_OP_LOGOUT
)
698 session
->state
= ISCSI_STATE_LOGGING_OUT
;
700 task
->state
= ISCSI_TASK_RUNNING
;
701 ISCSI_DBG_SESSION(session
, "mgmtpdu [op 0x%x hdr->itt 0x%x "
702 "datalen %d]\n", hdr
->opcode
& ISCSI_OPCODE_MASK
,
703 hdr
->itt
, task
->data_count
);
707 static struct iscsi_task
*
708 __iscsi_conn_send_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
709 char *data
, uint32_t data_size
)
711 struct iscsi_session
*session
= conn
->session
;
712 struct iscsi_host
*ihost
= shost_priv(session
->host
);
713 uint8_t opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
714 struct iscsi_task
*task
;
717 if (session
->state
== ISCSI_STATE_TERMINATE
)
720 if (opcode
== ISCSI_OP_LOGIN
|| opcode
== ISCSI_OP_TEXT
) {
722 * Login and Text are sent serially, in
723 * request-followed-by-response sequence.
724 * Same task can be used. Same ITT must be used.
725 * Note that login_task is preallocated at conn_create().
727 if (conn
->login_task
->state
!= ISCSI_TASK_FREE
) {
728 iscsi_conn_printk(KERN_ERR
, conn
, "Login/Text in "
729 "progress. Cannot start new task.\n");
733 task
= conn
->login_task
;
735 if (session
->state
!= ISCSI_STATE_LOGGED_IN
)
738 BUG_ON(conn
->c_stage
== ISCSI_CONN_INITIAL_STAGE
);
739 BUG_ON(conn
->c_stage
== ISCSI_CONN_STOPPED
);
741 if (!kfifo_out(&session
->cmdpool
.queue
,
742 (void*)&task
, sizeof(void*)))
746 * released in complete pdu for task we expect a response for, and
747 * released by the lld when it has transmitted the task for
748 * pdus we do not expect a response for.
750 atomic_set(&task
->refcount
, 1);
753 INIT_LIST_HEAD(&task
->running
);
754 task
->state
= ISCSI_TASK_PENDING
;
757 memcpy(task
->data
, data
, data_size
);
758 task
->data_count
= data_size
;
760 task
->data_count
= 0;
762 if (conn
->session
->tt
->alloc_pdu
) {
763 if (conn
->session
->tt
->alloc_pdu(task
, hdr
->opcode
)) {
764 iscsi_conn_printk(KERN_ERR
, conn
, "Could not allocate "
765 "pdu for mgmt task.\n");
770 itt
= task
->hdr
->itt
;
771 task
->hdr_len
= sizeof(struct iscsi_hdr
);
772 memcpy(task
->hdr
, hdr
, sizeof(struct iscsi_hdr
));
774 if (hdr
->itt
!= RESERVED_ITT
) {
775 if (session
->tt
->parse_pdu_itt
)
776 task
->hdr
->itt
= itt
;
778 task
->hdr
->itt
= build_itt(task
->itt
,
779 task
->conn
->session
->age
);
783 if (iscsi_prep_mgmt_task(conn
, task
))
786 if (session
->tt
->xmit_task(task
))
789 list_add_tail(&task
->running
, &conn
->mgmtqueue
);
790 iscsi_conn_queue_work(conn
);
796 __iscsi_put_task(task
);
800 int iscsi_conn_send_pdu(struct iscsi_cls_conn
*cls_conn
, struct iscsi_hdr
*hdr
,
801 char *data
, uint32_t data_size
)
803 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
804 struct iscsi_session
*session
= conn
->session
;
807 spin_lock_bh(&session
->lock
);
808 if (!__iscsi_conn_send_pdu(conn
, hdr
, data
, data_size
))
810 spin_unlock_bh(&session
->lock
);
813 EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu
);
816 * iscsi_cmd_rsp - SCSI Command Response processing
817 * @conn: iscsi connection
819 * @task: scsi command task
820 * @data: cmd data buffer
821 * @datalen: len of buffer
823 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
824 * then completes the command and task.
826 static void iscsi_scsi_cmd_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
827 struct iscsi_task
*task
, char *data
,
830 struct iscsi_cmd_rsp
*rhdr
= (struct iscsi_cmd_rsp
*)hdr
;
831 struct iscsi_session
*session
= conn
->session
;
832 struct scsi_cmnd
*sc
= task
->sc
;
834 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)rhdr
);
835 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
837 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
839 if (rhdr
->response
!= ISCSI_STATUS_CMD_COMPLETED
) {
840 sc
->result
= DID_ERROR
<< 16;
844 if (rhdr
->cmd_status
== SAM_STAT_CHECK_CONDITION
) {
849 iscsi_conn_printk(KERN_ERR
, conn
,
850 "Got CHECK_CONDITION but invalid data "
851 "buffer size of %d\n", datalen
);
852 sc
->result
= DID_BAD_TARGET
<< 16;
856 senselen
= get_unaligned_be16(data
);
857 if (datalen
< senselen
)
858 goto invalid_datalen
;
860 memcpy(sc
->sense_buffer
, data
+ 2,
861 min_t(uint16_t, senselen
, SCSI_SENSE_BUFFERSIZE
));
862 ISCSI_DBG_SESSION(session
, "copied %d bytes of sense\n",
863 min_t(uint16_t, senselen
,
864 SCSI_SENSE_BUFFERSIZE
));
867 if (rhdr
->flags
& (ISCSI_FLAG_CMD_BIDI_UNDERFLOW
|
868 ISCSI_FLAG_CMD_BIDI_OVERFLOW
)) {
869 int res_count
= be32_to_cpu(rhdr
->bi_residual_count
);
871 if (scsi_bidi_cmnd(sc
) && res_count
> 0 &&
872 (rhdr
->flags
& ISCSI_FLAG_CMD_BIDI_OVERFLOW
||
873 res_count
<= scsi_in(sc
)->length
))
874 scsi_in(sc
)->resid
= res_count
;
876 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
879 if (rhdr
->flags
& (ISCSI_FLAG_CMD_UNDERFLOW
|
880 ISCSI_FLAG_CMD_OVERFLOW
)) {
881 int res_count
= be32_to_cpu(rhdr
->residual_count
);
884 (rhdr
->flags
& ISCSI_FLAG_CMD_OVERFLOW
||
885 res_count
<= scsi_bufflen(sc
)))
886 /* write side for bidi or uni-io set_resid */
887 scsi_set_resid(sc
, res_count
);
889 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
892 ISCSI_DBG_SESSION(session
, "cmd rsp done [sc %p res %d itt 0x%x]\n",
893 sc
, sc
->result
, task
->itt
);
894 conn
->scsirsp_pdus_cnt
++;
895 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
899 * iscsi_data_in_rsp - SCSI Data-In Response processing
900 * @conn: iscsi connection
902 * @task: scsi command task
905 iscsi_data_in_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
906 struct iscsi_task
*task
)
908 struct iscsi_data_rsp
*rhdr
= (struct iscsi_data_rsp
*)hdr
;
909 struct scsi_cmnd
*sc
= task
->sc
;
911 if (!(rhdr
->flags
& ISCSI_FLAG_DATA_STATUS
))
914 iscsi_update_cmdsn(conn
->session
, (struct iscsi_nopin
*)hdr
);
915 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
916 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
917 if (rhdr
->flags
& (ISCSI_FLAG_DATA_UNDERFLOW
|
918 ISCSI_FLAG_DATA_OVERFLOW
)) {
919 int res_count
= be32_to_cpu(rhdr
->residual_count
);
922 (rhdr
->flags
& ISCSI_FLAG_CMD_OVERFLOW
||
923 res_count
<= scsi_in(sc
)->length
))
924 scsi_in(sc
)->resid
= res_count
;
926 sc
->result
= (DID_BAD_TARGET
<< 16) | rhdr
->cmd_status
;
929 ISCSI_DBG_SESSION(conn
->session
, "data in with status done "
930 "[sc %p res %d itt 0x%x]\n",
931 sc
, sc
->result
, task
->itt
);
932 conn
->scsirsp_pdus_cnt
++;
933 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
936 static void iscsi_tmf_rsp(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
)
938 struct iscsi_tm_rsp
*tmf
= (struct iscsi_tm_rsp
*)hdr
;
940 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
941 conn
->tmfrsp_pdus_cnt
++;
943 if (conn
->tmf_state
!= TMF_QUEUED
)
946 if (tmf
->response
== ISCSI_TMF_RSP_COMPLETE
)
947 conn
->tmf_state
= TMF_SUCCESS
;
948 else if (tmf
->response
== ISCSI_TMF_RSP_NO_TASK
)
949 conn
->tmf_state
= TMF_NOT_FOUND
;
951 conn
->tmf_state
= TMF_FAILED
;
952 wake_up(&conn
->ehwait
);
955 static void iscsi_send_nopout(struct iscsi_conn
*conn
, struct iscsi_nopin
*rhdr
)
957 struct iscsi_nopout hdr
;
958 struct iscsi_task
*task
;
960 if (!rhdr
&& conn
->ping_task
)
963 memset(&hdr
, 0, sizeof(struct iscsi_nopout
));
964 hdr
.opcode
= ISCSI_OP_NOOP_OUT
| ISCSI_OP_IMMEDIATE
;
965 hdr
.flags
= ISCSI_FLAG_CMD_FINAL
;
968 memcpy(hdr
.lun
, rhdr
->lun
, 8);
970 hdr
.itt
= RESERVED_ITT
;
972 hdr
.ttt
= RESERVED_ITT
;
974 task
= __iscsi_conn_send_pdu(conn
, (struct iscsi_hdr
*)&hdr
, NULL
, 0);
976 iscsi_conn_printk(KERN_ERR
, conn
, "Could not send nopout\n");
978 /* only track our nops */
979 conn
->ping_task
= task
;
980 conn
->last_ping
= jiffies
;
984 static int iscsi_nop_out_rsp(struct iscsi_task
*task
,
985 struct iscsi_nopin
*nop
, char *data
, int datalen
)
987 struct iscsi_conn
*conn
= task
->conn
;
990 if (conn
->ping_task
!= task
) {
992 * If this is not in response to one of our
993 * nops then it must be from userspace.
995 if (iscsi_recv_pdu(conn
->cls_conn
, (struct iscsi_hdr
*)nop
,
997 rc
= ISCSI_ERR_CONN_FAILED
;
999 mod_timer(&conn
->transport_timer
, jiffies
+ conn
->recv_timeout
);
1000 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1004 static int iscsi_handle_reject(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
1005 char *data
, int datalen
)
1007 struct iscsi_reject
*reject
= (struct iscsi_reject
*)hdr
;
1008 struct iscsi_hdr rejected_pdu
;
1011 conn
->exp_statsn
= be32_to_cpu(reject
->statsn
) + 1;
1013 if (ntoh24(reject
->dlength
) > datalen
||
1014 ntoh24(reject
->dlength
) < sizeof(struct iscsi_hdr
)) {
1015 iscsi_conn_printk(KERN_ERR
, conn
, "Cannot handle rejected "
1016 "pdu. Invalid data length (pdu dlength "
1017 "%u, datalen %d\n", ntoh24(reject
->dlength
),
1019 return ISCSI_ERR_PROTO
;
1021 memcpy(&rejected_pdu
, data
, sizeof(struct iscsi_hdr
));
1022 opcode
= rejected_pdu
.opcode
& ISCSI_OPCODE_MASK
;
1024 switch (reject
->reason
) {
1025 case ISCSI_REASON_DATA_DIGEST_ERROR
:
1026 iscsi_conn_printk(KERN_ERR
, conn
,
1027 "pdu (op 0x%x itt 0x%x) rejected "
1028 "due to DataDigest error.\n",
1029 rejected_pdu
.itt
, opcode
);
1031 case ISCSI_REASON_IMM_CMD_REJECT
:
1032 iscsi_conn_printk(KERN_ERR
, conn
,
1033 "pdu (op 0x%x itt 0x%x) rejected. Too many "
1034 "immediate commands.\n",
1035 rejected_pdu
.itt
, opcode
);
1037 * We only send one TMF at a time so if the target could not
1038 * handle it, then it should get fixed (RFC mandates that
1039 * a target can handle one immediate TMF per conn).
1041 * For nops-outs, we could have sent more than one if
1042 * the target is sending us lots of nop-ins
1044 if (opcode
!= ISCSI_OP_NOOP_OUT
)
1047 if (rejected_pdu
.itt
== cpu_to_be32(ISCSI_RESERVED_TAG
))
1049 * nop-out in response to target's nop-out rejected.
1052 iscsi_send_nopout(conn
,
1053 (struct iscsi_nopin
*)&rejected_pdu
);
1055 struct iscsi_task
*task
;
1057 * Our nop as ping got dropped. We know the target
1058 * and transport are ok so just clean up
1060 task
= iscsi_itt_to_task(conn
, rejected_pdu
.itt
);
1062 iscsi_conn_printk(KERN_ERR
, conn
,
1063 "Invalid pdu reject. Could "
1064 "not lookup rejected task.\n");
1065 rc
= ISCSI_ERR_BAD_ITT
;
1067 rc
= iscsi_nop_out_rsp(task
,
1068 (struct iscsi_nopin
*)&rejected_pdu
,
1073 iscsi_conn_printk(KERN_ERR
, conn
,
1074 "pdu (op 0x%x itt 0x%x) rejected. Reason "
1075 "code 0x%x\n", rejected_pdu
.itt
,
1076 rejected_pdu
.opcode
, reject
->reason
);
1083 * iscsi_itt_to_task - look up task by itt
1084 * @conn: iscsi connection
1087 * This should be used for mgmt tasks like login and nops, or if
1088 * the LDD's itt space does not include the session age.
1090 * The session lock must be held.
1092 struct iscsi_task
*iscsi_itt_to_task(struct iscsi_conn
*conn
, itt_t itt
)
1094 struct iscsi_session
*session
= conn
->session
;
1097 if (itt
== RESERVED_ITT
)
1100 if (session
->tt
->parse_pdu_itt
)
1101 session
->tt
->parse_pdu_itt(conn
, itt
, &i
, NULL
);
1104 if (i
>= session
->cmds_max
)
1107 return session
->cmds
[i
];
1109 EXPORT_SYMBOL_GPL(iscsi_itt_to_task
);
1112 * __iscsi_complete_pdu - complete pdu
1114 * @hdr: iscsi header
1115 * @data: data buffer
1116 * @datalen: len of data buffer
1118 * Completes pdu processing by freeing any resources allocated at
1119 * queuecommand or send generic. session lock must be held and verify
1120 * itt must have been called.
1122 int __iscsi_complete_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
1123 char *data
, int datalen
)
1125 struct iscsi_session
*session
= conn
->session
;
1126 int opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
, rc
= 0;
1127 struct iscsi_task
*task
;
1130 conn
->last_recv
= jiffies
;
1131 rc
= iscsi_verify_itt(conn
, hdr
->itt
);
1135 if (hdr
->itt
!= RESERVED_ITT
)
1136 itt
= get_itt(hdr
->itt
);
1140 ISCSI_DBG_SESSION(session
, "[op 0x%x cid %d itt 0x%x len %d]\n",
1141 opcode
, conn
->id
, itt
, datalen
);
1144 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1147 case ISCSI_OP_NOOP_IN
:
1149 rc
= ISCSI_ERR_PROTO
;
1153 if (hdr
->ttt
== cpu_to_be32(ISCSI_RESERVED_TAG
))
1156 iscsi_send_nopout(conn
, (struct iscsi_nopin
*)hdr
);
1158 case ISCSI_OP_REJECT
:
1159 rc
= iscsi_handle_reject(conn
, hdr
, data
, datalen
);
1161 case ISCSI_OP_ASYNC_EVENT
:
1162 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1163 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
1164 rc
= ISCSI_ERR_CONN_FAILED
;
1167 rc
= ISCSI_ERR_BAD_OPCODE
;
1174 case ISCSI_OP_SCSI_CMD_RSP
:
1175 case ISCSI_OP_SCSI_DATA_IN
:
1176 task
= iscsi_itt_to_ctask(conn
, hdr
->itt
);
1178 return ISCSI_ERR_BAD_ITT
;
1179 task
->last_xfer
= jiffies
;
1183 * LLD handles R2Ts if they need to.
1186 case ISCSI_OP_LOGOUT_RSP
:
1187 case ISCSI_OP_LOGIN_RSP
:
1188 case ISCSI_OP_TEXT_RSP
:
1189 case ISCSI_OP_SCSI_TMFUNC_RSP
:
1190 case ISCSI_OP_NOOP_IN
:
1191 task
= iscsi_itt_to_task(conn
, hdr
->itt
);
1193 return ISCSI_ERR_BAD_ITT
;
1196 return ISCSI_ERR_BAD_OPCODE
;
1200 case ISCSI_OP_SCSI_CMD_RSP
:
1201 iscsi_scsi_cmd_rsp(conn
, hdr
, task
, data
, datalen
);
1203 case ISCSI_OP_SCSI_DATA_IN
:
1204 iscsi_data_in_rsp(conn
, hdr
, task
);
1206 case ISCSI_OP_LOGOUT_RSP
:
1207 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1209 rc
= ISCSI_ERR_PROTO
;
1212 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1214 case ISCSI_OP_LOGIN_RSP
:
1215 case ISCSI_OP_TEXT_RSP
:
1216 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1218 * login related PDU's exp_statsn is handled in
1222 case ISCSI_OP_SCSI_TMFUNC_RSP
:
1223 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1225 rc
= ISCSI_ERR_PROTO
;
1229 iscsi_tmf_rsp(conn
, hdr
);
1230 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1232 case ISCSI_OP_NOOP_IN
:
1233 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)hdr
);
1234 if (hdr
->ttt
!= cpu_to_be32(ISCSI_RESERVED_TAG
) || datalen
) {
1235 rc
= ISCSI_ERR_PROTO
;
1238 conn
->exp_statsn
= be32_to_cpu(hdr
->statsn
) + 1;
1240 rc
= iscsi_nop_out_rsp(task
, (struct iscsi_nopin
*)hdr
,
1244 rc
= ISCSI_ERR_BAD_OPCODE
;
1251 if (iscsi_recv_pdu(conn
->cls_conn
, hdr
, data
, datalen
))
1252 rc
= ISCSI_ERR_CONN_FAILED
;
1253 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1256 EXPORT_SYMBOL_GPL(__iscsi_complete_pdu
);
1258 int iscsi_complete_pdu(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
,
1259 char *data
, int datalen
)
1263 spin_lock(&conn
->session
->lock
);
1264 rc
= __iscsi_complete_pdu(conn
, hdr
, data
, datalen
);
1265 spin_unlock(&conn
->session
->lock
);
1268 EXPORT_SYMBOL_GPL(iscsi_complete_pdu
);
1270 int iscsi_verify_itt(struct iscsi_conn
*conn
, itt_t itt
)
1272 struct iscsi_session
*session
= conn
->session
;
1275 if (itt
== RESERVED_ITT
)
1278 if (session
->tt
->parse_pdu_itt
)
1279 session
->tt
->parse_pdu_itt(conn
, itt
, &i
, &age
);
1282 age
= ((__force u32
)itt
>> ISCSI_AGE_SHIFT
) & ISCSI_AGE_MASK
;
1285 if (age
!= session
->age
) {
1286 iscsi_conn_printk(KERN_ERR
, conn
,
1287 "received itt %x expected session age (%x)\n",
1288 (__force u32
)itt
, session
->age
);
1289 return ISCSI_ERR_BAD_ITT
;
1292 if (i
>= session
->cmds_max
) {
1293 iscsi_conn_printk(KERN_ERR
, conn
,
1294 "received invalid itt index %u (max cmds "
1295 "%u.\n", i
, session
->cmds_max
);
1296 return ISCSI_ERR_BAD_ITT
;
1300 EXPORT_SYMBOL_GPL(iscsi_verify_itt
);
1303 * iscsi_itt_to_ctask - look up ctask by itt
1304 * @conn: iscsi connection
1307 * This should be used for cmd tasks.
1309 * The session lock must be held.
1311 struct iscsi_task
*iscsi_itt_to_ctask(struct iscsi_conn
*conn
, itt_t itt
)
1313 struct iscsi_task
*task
;
1315 if (iscsi_verify_itt(conn
, itt
))
1318 task
= iscsi_itt_to_task(conn
, itt
);
1319 if (!task
|| !task
->sc
)
1322 if (task
->sc
->SCp
.phase
!= conn
->session
->age
) {
1323 iscsi_session_printk(KERN_ERR
, conn
->session
,
1324 "task's session age %d, expected %d\n",
1325 task
->sc
->SCp
.phase
, conn
->session
->age
);
1331 EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask
);
1333 void iscsi_session_failure(struct iscsi_session
*session
,
1336 struct iscsi_conn
*conn
;
1338 unsigned long flags
;
1340 spin_lock_irqsave(&session
->lock
, flags
);
1341 conn
= session
->leadconn
;
1342 if (session
->state
== ISCSI_STATE_TERMINATE
|| !conn
) {
1343 spin_unlock_irqrestore(&session
->lock
, flags
);
1347 dev
= get_device(&conn
->cls_conn
->dev
);
1348 spin_unlock_irqrestore(&session
->lock
, flags
);
1352 * if the host is being removed bypass the connection
1353 * recovery initialization because we are going to kill
1356 if (err
== ISCSI_ERR_INVALID_HOST
)
1357 iscsi_conn_error_event(conn
->cls_conn
, err
);
1359 iscsi_conn_failure(conn
, err
);
1362 EXPORT_SYMBOL_GPL(iscsi_session_failure
);
1364 void iscsi_conn_failure(struct iscsi_conn
*conn
, enum iscsi_err err
)
1366 struct iscsi_session
*session
= conn
->session
;
1367 unsigned long flags
;
1369 spin_lock_irqsave(&session
->lock
, flags
);
1370 if (session
->state
== ISCSI_STATE_FAILED
) {
1371 spin_unlock_irqrestore(&session
->lock
, flags
);
1375 if (conn
->stop_stage
== 0)
1376 session
->state
= ISCSI_STATE_FAILED
;
1377 spin_unlock_irqrestore(&session
->lock
, flags
);
1379 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1380 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
1381 iscsi_conn_error_event(conn
->cls_conn
, err
);
1383 EXPORT_SYMBOL_GPL(iscsi_conn_failure
);
1385 static int iscsi_check_cmdsn_window_closed(struct iscsi_conn
*conn
)
1387 struct iscsi_session
*session
= conn
->session
;
1390 * Check for iSCSI window and take care of CmdSN wrap-around
1392 if (!iscsi_sna_lte(session
->queued_cmdsn
, session
->max_cmdsn
)) {
1393 ISCSI_DBG_SESSION(session
, "iSCSI CmdSN closed. ExpCmdSn "
1394 "%u MaxCmdSN %u CmdSN %u/%u\n",
1395 session
->exp_cmdsn
, session
->max_cmdsn
,
1396 session
->cmdsn
, session
->queued_cmdsn
);
1402 static int iscsi_xmit_task(struct iscsi_conn
*conn
)
1404 struct iscsi_task
*task
= conn
->task
;
1407 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
))
1410 __iscsi_get_task(task
);
1411 spin_unlock_bh(&conn
->session
->lock
);
1412 rc
= conn
->session
->tt
->xmit_task(task
);
1413 spin_lock_bh(&conn
->session
->lock
);
1415 /* done with this task */
1416 task
->last_xfer
= jiffies
;
1419 __iscsi_put_task(task
);
1424 * iscsi_requeue_task - requeue task to run from session workqueue
1425 * @task: task to requeue
1427 * LLDs that need to run a task from the session workqueue should call
1428 * this. The session lock must be held. This should only be called
1429 * by software drivers.
1431 void iscsi_requeue_task(struct iscsi_task
*task
)
1433 struct iscsi_conn
*conn
= task
->conn
;
1436 * this may be on the requeue list already if the xmit_task callout
1437 * is handling the r2ts while we are adding new ones
1439 if (list_empty(&task
->running
))
1440 list_add_tail(&task
->running
, &conn
->requeue
);
1441 iscsi_conn_queue_work(conn
);
1443 EXPORT_SYMBOL_GPL(iscsi_requeue_task
);
1446 * iscsi_data_xmit - xmit any command into the scheduled connection
1447 * @conn: iscsi connection
1450 * The function can return -EAGAIN in which case the caller must
1451 * re-schedule it again later or recover. '0' return code means
1454 static int iscsi_data_xmit(struct iscsi_conn
*conn
)
1456 struct iscsi_task
*task
;
1459 spin_lock_bh(&conn
->session
->lock
);
1460 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
)) {
1461 ISCSI_DBG_SESSION(conn
->session
, "Tx suspended!\n");
1462 spin_unlock_bh(&conn
->session
->lock
);
1467 rc
= iscsi_xmit_task(conn
);
1473 * process mgmt pdus like nops before commands since we should
1474 * only have one nop-out as a ping from us and targets should not
1475 * overflow us with nop-ins
1478 while (!list_empty(&conn
->mgmtqueue
)) {
1479 conn
->task
= list_entry(conn
->mgmtqueue
.next
,
1480 struct iscsi_task
, running
);
1481 list_del_init(&conn
->task
->running
);
1482 if (iscsi_prep_mgmt_task(conn
, conn
->task
)) {
1483 __iscsi_put_task(conn
->task
);
1487 rc
= iscsi_xmit_task(conn
);
1492 /* process pending command queue */
1493 while (!list_empty(&conn
->cmdqueue
)) {
1494 conn
->task
= list_entry(conn
->cmdqueue
.next
, struct iscsi_task
,
1496 list_del_init(&conn
->task
->running
);
1497 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
) {
1498 fail_scsi_task(conn
->task
, DID_IMM_RETRY
);
1501 rc
= iscsi_prep_scsi_cmd_pdu(conn
->task
);
1503 if (rc
== -ENOMEM
|| rc
== -EACCES
) {
1504 list_add_tail(&conn
->task
->running
,
1509 fail_scsi_task(conn
->task
, DID_ABORT
);
1512 rc
= iscsi_xmit_task(conn
);
1516 * we could continuously get new task requests so
1517 * we need to check the mgmt queue for nops that need to
1518 * be sent to aviod starvation
1520 if (!list_empty(&conn
->mgmtqueue
))
1524 while (!list_empty(&conn
->requeue
)) {
1526 * we always do fastlogout - conn stop code will clean up.
1528 if (conn
->session
->state
== ISCSI_STATE_LOGGING_OUT
)
1531 task
= list_entry(conn
->requeue
.next
, struct iscsi_task
,
1533 if (iscsi_check_tmf_restrictions(task
, ISCSI_OP_SCSI_DATA_OUT
))
1537 list_del_init(&conn
->task
->running
);
1538 conn
->task
->state
= ISCSI_TASK_RUNNING
;
1539 rc
= iscsi_xmit_task(conn
);
1542 if (!list_empty(&conn
->mgmtqueue
))
1545 spin_unlock_bh(&conn
->session
->lock
);
1549 spin_unlock_bh(&conn
->session
->lock
);
1553 static void iscsi_xmitworker(struct work_struct
*work
)
1555 struct iscsi_conn
*conn
=
1556 container_of(work
, struct iscsi_conn
, xmitwork
);
1559 * serialize Xmit worker on a per-connection basis.
1562 rc
= iscsi_data_xmit(conn
);
1563 } while (rc
>= 0 || rc
== -EAGAIN
);
1566 static inline struct iscsi_task
*iscsi_alloc_task(struct iscsi_conn
*conn
,
1567 struct scsi_cmnd
*sc
)
1569 struct iscsi_task
*task
;
1571 if (!kfifo_out(&conn
->session
->cmdpool
.queue
,
1572 (void *) &task
, sizeof(void *)))
1575 sc
->SCp
.phase
= conn
->session
->age
;
1576 sc
->SCp
.ptr
= (char *) task
;
1578 atomic_set(&task
->refcount
, 1);
1579 task
->state
= ISCSI_TASK_PENDING
;
1582 task
->have_checked_conn
= false;
1583 task
->last_timeout
= jiffies
;
1584 task
->last_xfer
= jiffies
;
1585 INIT_LIST_HEAD(&task
->running
);
1590 FAILURE_BAD_HOST
= 1,
1591 FAILURE_SESSION_FAILED
,
1592 FAILURE_SESSION_FREED
,
1593 FAILURE_WINDOW_CLOSED
,
1595 FAILURE_SESSION_TERMINATE
,
1596 FAILURE_SESSION_IN_RECOVERY
,
1597 FAILURE_SESSION_RECOVERY_TIMEOUT
,
1598 FAILURE_SESSION_LOGGING_OUT
,
1599 FAILURE_SESSION_NOT_READY
,
1602 int iscsi_queuecommand(struct scsi_cmnd
*sc
, void (*done
)(struct scsi_cmnd
*))
1604 struct iscsi_cls_session
*cls_session
;
1605 struct Scsi_Host
*host
;
1606 struct iscsi_host
*ihost
;
1608 struct iscsi_session
*session
;
1609 struct iscsi_conn
*conn
;
1610 struct iscsi_task
*task
= NULL
;
1612 sc
->scsi_done
= done
;
1616 host
= sc
->device
->host
;
1617 ihost
= shost_priv(host
);
1618 spin_unlock(host
->host_lock
);
1620 cls_session
= starget_to_session(scsi_target(sc
->device
));
1621 session
= cls_session
->dd_data
;
1622 spin_lock(&session
->lock
);
1624 reason
= iscsi_session_chkready(cls_session
);
1626 sc
->result
= reason
;
1630 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
1632 * to handle the race between when we set the recovery state
1633 * and block the session we requeue here (commands could
1634 * be entering our queuecommand while a block is starting
1635 * up because the block code is not locked)
1637 switch (session
->state
) {
1638 case ISCSI_STATE_FAILED
:
1639 case ISCSI_STATE_IN_RECOVERY
:
1640 reason
= FAILURE_SESSION_IN_RECOVERY
;
1641 sc
->result
= DID_IMM_RETRY
<< 16;
1643 case ISCSI_STATE_LOGGING_OUT
:
1644 reason
= FAILURE_SESSION_LOGGING_OUT
;
1645 sc
->result
= DID_IMM_RETRY
<< 16;
1647 case ISCSI_STATE_RECOVERY_FAILED
:
1648 reason
= FAILURE_SESSION_RECOVERY_TIMEOUT
;
1649 sc
->result
= DID_TRANSPORT_FAILFAST
<< 16;
1651 case ISCSI_STATE_TERMINATE
:
1652 reason
= FAILURE_SESSION_TERMINATE
;
1653 sc
->result
= DID_NO_CONNECT
<< 16;
1656 reason
= FAILURE_SESSION_FREED
;
1657 sc
->result
= DID_NO_CONNECT
<< 16;
1662 conn
= session
->leadconn
;
1664 reason
= FAILURE_SESSION_FREED
;
1665 sc
->result
= DID_NO_CONNECT
<< 16;
1669 if (test_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
)) {
1670 reason
= FAILURE_SESSION_IN_RECOVERY
;
1671 sc
->result
= DID_REQUEUE
;
1675 if (iscsi_check_cmdsn_window_closed(conn
)) {
1676 reason
= FAILURE_WINDOW_CLOSED
;
1680 task
= iscsi_alloc_task(conn
, sc
);
1682 reason
= FAILURE_OOM
;
1686 if (!ihost
->workq
) {
1687 reason
= iscsi_prep_scsi_cmd_pdu(task
);
1689 if (reason
== -ENOMEM
|| reason
== -EACCES
) {
1690 reason
= FAILURE_OOM
;
1693 sc
->result
= DID_ABORT
<< 16;
1697 if (session
->tt
->xmit_task(task
)) {
1699 reason
= FAILURE_SESSION_NOT_READY
;
1703 list_add_tail(&task
->running
, &conn
->cmdqueue
);
1704 iscsi_conn_queue_work(conn
);
1707 session
->queued_cmdsn
++;
1708 spin_unlock(&session
->lock
);
1709 spin_lock(host
->host_lock
);
1713 sc
->scsi_done
= NULL
;
1714 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1716 spin_unlock(&session
->lock
);
1717 ISCSI_DBG_SESSION(session
, "cmd 0x%x rejected (%d)\n",
1718 sc
->cmnd
[0], reason
);
1719 spin_lock(host
->host_lock
);
1720 return SCSI_MLQUEUE_TARGET_BUSY
;
1723 sc
->scsi_done
= NULL
;
1724 iscsi_complete_task(task
, ISCSI_TASK_COMPLETED
);
1726 spin_unlock(&session
->lock
);
1727 ISCSI_DBG_SESSION(session
, "iscsi: cmd 0x%x is not queued (%d)\n",
1728 sc
->cmnd
[0], reason
);
1729 if (!scsi_bidi_cmnd(sc
))
1730 scsi_set_resid(sc
, scsi_bufflen(sc
));
1732 scsi_out(sc
)->resid
= scsi_out(sc
)->length
;
1733 scsi_in(sc
)->resid
= scsi_in(sc
)->length
;
1736 spin_lock(host
->host_lock
);
1739 EXPORT_SYMBOL_GPL(iscsi_queuecommand
);
1741 int iscsi_change_queue_depth(struct scsi_device
*sdev
, int depth
, int reason
)
1744 case SCSI_QDEPTH_DEFAULT
:
1745 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), depth
);
1747 case SCSI_QDEPTH_QFULL
:
1748 scsi_track_queue_full(sdev
, depth
);
1750 case SCSI_QDEPTH_RAMP_UP
:
1751 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), depth
);
1756 return sdev
->queue_depth
;
1758 EXPORT_SYMBOL_GPL(iscsi_change_queue_depth
);
1760 int iscsi_target_alloc(struct scsi_target
*starget
)
1762 struct iscsi_cls_session
*cls_session
= starget_to_session(starget
);
1763 struct iscsi_session
*session
= cls_session
->dd_data
;
1765 starget
->can_queue
= session
->scsi_cmds_max
;
1768 EXPORT_SYMBOL_GPL(iscsi_target_alloc
);
1770 static void iscsi_tmf_timedout(unsigned long data
)
1772 struct iscsi_conn
*conn
= (struct iscsi_conn
*)data
;
1773 struct iscsi_session
*session
= conn
->session
;
1775 spin_lock(&session
->lock
);
1776 if (conn
->tmf_state
== TMF_QUEUED
) {
1777 conn
->tmf_state
= TMF_TIMEDOUT
;
1778 ISCSI_DBG_EH(session
, "tmf timedout\n");
1779 /* unblock eh_abort() */
1780 wake_up(&conn
->ehwait
);
1782 spin_unlock(&session
->lock
);
1785 static int iscsi_exec_task_mgmt_fn(struct iscsi_conn
*conn
,
1786 struct iscsi_tm
*hdr
, int age
,
1789 struct iscsi_session
*session
= conn
->session
;
1790 struct iscsi_task
*task
;
1792 task
= __iscsi_conn_send_pdu(conn
, (struct iscsi_hdr
*)hdr
,
1795 spin_unlock_bh(&session
->lock
);
1796 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1797 spin_lock_bh(&session
->lock
);
1798 ISCSI_DBG_EH(session
, "tmf exec failure\n");
1801 conn
->tmfcmd_pdus_cnt
++;
1802 conn
->tmf_timer
.expires
= timeout
* HZ
+ jiffies
;
1803 conn
->tmf_timer
.function
= iscsi_tmf_timedout
;
1804 conn
->tmf_timer
.data
= (unsigned long)conn
;
1805 add_timer(&conn
->tmf_timer
);
1806 ISCSI_DBG_EH(session
, "tmf set timeout\n");
1808 spin_unlock_bh(&session
->lock
);
1809 mutex_unlock(&session
->eh_mutex
);
1812 * block eh thread until:
1816 * 3) session is terminated or restarted or userspace has
1817 * given up on recovery
1819 wait_event_interruptible(conn
->ehwait
, age
!= session
->age
||
1820 session
->state
!= ISCSI_STATE_LOGGED_IN
||
1821 conn
->tmf_state
!= TMF_QUEUED
);
1822 if (signal_pending(current
))
1823 flush_signals(current
);
1824 del_timer_sync(&conn
->tmf_timer
);
1826 mutex_lock(&session
->eh_mutex
);
1827 spin_lock_bh(&session
->lock
);
1828 /* if the session drops it will clean up the task */
1829 if (age
!= session
->age
||
1830 session
->state
!= ISCSI_STATE_LOGGED_IN
)
1836 * Fail commands. session lock held and recv side suspended and xmit
1839 static void fail_scsi_tasks(struct iscsi_conn
*conn
, unsigned lun
,
1842 struct iscsi_task
*task
;
1845 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
1846 task
= conn
->session
->cmds
[i
];
1847 if (!task
->sc
|| task
->state
== ISCSI_TASK_FREE
)
1850 if (lun
!= -1 && lun
!= task
->sc
->device
->lun
)
1853 ISCSI_DBG_SESSION(conn
->session
,
1854 "failing sc %p itt 0x%x state %d\n",
1855 task
->sc
, task
->itt
, task
->state
);
1856 fail_scsi_task(task
, error
);
1861 * iscsi_suspend_queue - suspend iscsi_queuecommand
1862 * @conn: iscsi conn to stop queueing IO on
1864 * This grabs the session lock to make sure no one is in
1865 * xmit_task/queuecommand, and then sets suspend to prevent
1866 * new commands from being queued. This only needs to be called
1867 * by offload drivers that need to sync a path like ep disconnect
1868 * with the iscsi_queuecommand/xmit_task. To start IO again libiscsi
1869 * will call iscsi_start_tx and iscsi_unblock_session when in FFP.
1871 void iscsi_suspend_queue(struct iscsi_conn
*conn
)
1873 spin_lock_bh(&conn
->session
->lock
);
1874 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1875 spin_unlock_bh(&conn
->session
->lock
);
1877 EXPORT_SYMBOL_GPL(iscsi_suspend_queue
);
1880 * iscsi_suspend_tx - suspend iscsi_data_xmit
1881 * @conn: iscsi conn tp stop processing IO on.
1883 * This function sets the suspend bit to prevent iscsi_data_xmit
1884 * from sending new IO, and if work is queued on the xmit thread
1885 * it will wait for it to be completed.
1887 void iscsi_suspend_tx(struct iscsi_conn
*conn
)
1889 struct Scsi_Host
*shost
= conn
->session
->host
;
1890 struct iscsi_host
*ihost
= shost_priv(shost
);
1892 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1894 flush_workqueue(ihost
->workq
);
1896 EXPORT_SYMBOL_GPL(iscsi_suspend_tx
);
1898 static void iscsi_start_tx(struct iscsi_conn
*conn
)
1900 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
1901 iscsi_conn_queue_work(conn
);
1905 * We want to make sure a ping is in flight. It has timed out.
1906 * And we are not busy processing a pdu that is making
1907 * progress but got started before the ping and is taking a while
1908 * to complete so the ping is just stuck behind it in a queue.
1910 static int iscsi_has_ping_timed_out(struct iscsi_conn
*conn
)
1912 if (conn
->ping_task
&&
1913 time_before_eq(conn
->last_recv
+ (conn
->recv_timeout
* HZ
) +
1914 (conn
->ping_timeout
* HZ
), jiffies
))
1920 static enum blk_eh_timer_return
iscsi_eh_cmd_timed_out(struct scsi_cmnd
*sc
)
1922 enum blk_eh_timer_return rc
= BLK_EH_NOT_HANDLED
;
1923 struct iscsi_task
*task
= NULL
, *running_task
;
1924 struct iscsi_cls_session
*cls_session
;
1925 struct iscsi_session
*session
;
1926 struct iscsi_conn
*conn
;
1929 cls_session
= starget_to_session(scsi_target(sc
->device
));
1930 session
= cls_session
->dd_data
;
1932 ISCSI_DBG_EH(session
, "scsi cmd %p timedout\n", sc
);
1934 spin_lock(&session
->lock
);
1935 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
1937 * We are probably in the middle of iscsi recovery so let
1938 * that complete and handle the error.
1940 rc
= BLK_EH_RESET_TIMER
;
1944 conn
= session
->leadconn
;
1946 /* In the middle of shuting down */
1947 rc
= BLK_EH_RESET_TIMER
;
1951 task
= (struct iscsi_task
*)sc
->SCp
.ptr
;
1954 * Raced with completion. Just reset timer, and let it
1957 rc
= BLK_EH_RESET_TIMER
;
1962 * If we have sent (at least queued to the network layer) a pdu or
1963 * recvd one for the task since the last timeout ask for
1964 * more time. If on the next timeout we have not made progress
1965 * we can check if it is the task or connection when we send the
1968 if (time_after(task
->last_xfer
, task
->last_timeout
)) {
1969 ISCSI_DBG_EH(session
, "Command making progress. Asking "
1970 "scsi-ml for more time to complete. "
1971 "Last data xfer at %lu. Last timeout was at "
1972 "%lu\n.", task
->last_xfer
, task
->last_timeout
);
1973 task
->have_checked_conn
= false;
1974 rc
= BLK_EH_RESET_TIMER
;
1978 if (!conn
->recv_timeout
&& !conn
->ping_timeout
)
1981 * if the ping timedout then we are in the middle of cleaning up
1982 * and can let the iscsi eh handle it
1984 if (iscsi_has_ping_timed_out(conn
)) {
1985 rc
= BLK_EH_RESET_TIMER
;
1989 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
1990 running_task
= conn
->session
->cmds
[i
];
1991 if (!running_task
->sc
|| running_task
== task
||
1992 running_task
->state
!= ISCSI_TASK_RUNNING
)
1996 * Only check if cmds started before this one have made
1997 * progress, or this could never fail
1999 if (time_after(running_task
->sc
->jiffies_at_alloc
,
2000 task
->sc
->jiffies_at_alloc
))
2003 if (time_after(running_task
->last_xfer
, task
->last_timeout
)) {
2005 * This task has not made progress, but a task
2006 * started before us has transferred data since
2007 * we started/last-checked. We could be queueing
2008 * too many tasks or the LU is bad.
2010 * If the device is bad the cmds ahead of us on
2011 * other devs will complete, and this loop will
2012 * eventually fail starting the scsi eh.
2014 ISCSI_DBG_EH(session
, "Command has not made progress "
2015 "but commands ahead of it have. "
2016 "Asking scsi-ml for more time to "
2017 "complete. Our last xfer vs running task "
2018 "last xfer %lu/%lu. Last check %lu.\n",
2019 task
->last_xfer
, running_task
->last_xfer
,
2020 task
->last_timeout
);
2021 rc
= BLK_EH_RESET_TIMER
;
2026 /* Assumes nop timeout is shorter than scsi cmd timeout */
2027 if (task
->have_checked_conn
)
2031 * Checking the transport already or nop from a cmd timeout still
2034 if (conn
->ping_task
) {
2035 task
->have_checked_conn
= true;
2036 rc
= BLK_EH_RESET_TIMER
;
2040 /* Make sure there is a transport check done */
2041 iscsi_send_nopout(conn
, NULL
);
2042 task
->have_checked_conn
= true;
2043 rc
= BLK_EH_RESET_TIMER
;
2047 task
->last_timeout
= jiffies
;
2048 spin_unlock(&session
->lock
);
2049 ISCSI_DBG_EH(session
, "return %s\n", rc
== BLK_EH_RESET_TIMER
?
2050 "timer reset" : "nh");
2054 static void iscsi_check_transport_timeouts(unsigned long data
)
2056 struct iscsi_conn
*conn
= (struct iscsi_conn
*)data
;
2057 struct iscsi_session
*session
= conn
->session
;
2058 unsigned long recv_timeout
, next_timeout
= 0, last_recv
;
2060 spin_lock(&session
->lock
);
2061 if (session
->state
!= ISCSI_STATE_LOGGED_IN
)
2064 recv_timeout
= conn
->recv_timeout
;
2069 last_recv
= conn
->last_recv
;
2071 if (iscsi_has_ping_timed_out(conn
)) {
2072 iscsi_conn_printk(KERN_ERR
, conn
, "ping timeout of %d secs "
2073 "expired, recv timeout %d, last rx %lu, "
2074 "last ping %lu, now %lu\n",
2075 conn
->ping_timeout
, conn
->recv_timeout
,
2076 last_recv
, conn
->last_ping
, jiffies
);
2077 spin_unlock(&session
->lock
);
2078 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
2082 if (time_before_eq(last_recv
+ recv_timeout
, jiffies
)) {
2083 /* send a ping to try to provoke some traffic */
2084 ISCSI_DBG_CONN(conn
, "Sending nopout as ping\n");
2085 iscsi_send_nopout(conn
, NULL
);
2086 next_timeout
= conn
->last_ping
+ (conn
->ping_timeout
* HZ
);
2088 next_timeout
= last_recv
+ recv_timeout
;
2090 ISCSI_DBG_CONN(conn
, "Setting next tmo %lu\n", next_timeout
);
2091 mod_timer(&conn
->transport_timer
, next_timeout
);
2093 spin_unlock(&session
->lock
);
2096 static void iscsi_prep_abort_task_pdu(struct iscsi_task
*task
,
2097 struct iscsi_tm
*hdr
)
2099 memset(hdr
, 0, sizeof(*hdr
));
2100 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2101 hdr
->flags
= ISCSI_TM_FUNC_ABORT_TASK
& ISCSI_FLAG_TM_FUNC_MASK
;
2102 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2103 memcpy(hdr
->lun
, task
->lun
, sizeof(hdr
->lun
));
2104 hdr
->rtt
= task
->hdr_itt
;
2105 hdr
->refcmdsn
= task
->cmdsn
;
2108 int iscsi_eh_abort(struct scsi_cmnd
*sc
)
2110 struct iscsi_cls_session
*cls_session
;
2111 struct iscsi_session
*session
;
2112 struct iscsi_conn
*conn
;
2113 struct iscsi_task
*task
;
2114 struct iscsi_tm
*hdr
;
2117 cls_session
= starget_to_session(scsi_target(sc
->device
));
2118 session
= cls_session
->dd_data
;
2120 ISCSI_DBG_EH(session
, "aborting sc %p\n", sc
);
2122 mutex_lock(&session
->eh_mutex
);
2123 spin_lock_bh(&session
->lock
);
2125 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
2129 ISCSI_DBG_EH(session
, "sc never reached iscsi layer or "
2131 spin_unlock_bh(&session
->lock
);
2132 mutex_unlock(&session
->eh_mutex
);
2137 * If we are not logged in or we have started a new session
2138 * then let the host reset code handle this
2140 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
||
2141 sc
->SCp
.phase
!= session
->age
) {
2142 spin_unlock_bh(&session
->lock
);
2143 mutex_unlock(&session
->eh_mutex
);
2144 ISCSI_DBG_EH(session
, "failing abort due to dropped "
2149 conn
= session
->leadconn
;
2150 conn
->eh_abort_cnt
++;
2153 task
= (struct iscsi_task
*)sc
->SCp
.ptr
;
2154 ISCSI_DBG_EH(session
, "aborting [sc %p itt 0x%x]\n",
2157 /* task completed before time out */
2159 ISCSI_DBG_EH(session
, "sc completed while abort in progress\n");
2163 if (task
->state
== ISCSI_TASK_PENDING
) {
2164 fail_scsi_task(task
, DID_ABORT
);
2168 /* only have one tmf outstanding at a time */
2169 if (conn
->tmf_state
!= TMF_INITIAL
)
2171 conn
->tmf_state
= TMF_QUEUED
;
2174 iscsi_prep_abort_task_pdu(task
, hdr
);
2176 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, age
, session
->abort_timeout
)) {
2181 switch (conn
->tmf_state
) {
2183 spin_unlock_bh(&session
->lock
);
2185 * stop tx side incase the target had sent a abort rsp but
2186 * the initiator was still writing out data.
2188 iscsi_suspend_tx(conn
);
2190 * we do not stop the recv side because targets have been
2191 * good and have never sent us a successful tmf response
2192 * then sent more data for the cmd.
2194 spin_lock_bh(&session
->lock
);
2195 fail_scsi_task(task
, DID_ABORT
);
2196 conn
->tmf_state
= TMF_INITIAL
;
2197 memset(hdr
, 0, sizeof(*hdr
));
2198 spin_unlock_bh(&session
->lock
);
2199 iscsi_start_tx(conn
);
2200 goto success_unlocked
;
2202 spin_unlock_bh(&session
->lock
);
2203 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
2204 goto failed_unlocked
;
2207 conn
->tmf_state
= TMF_INITIAL
;
2208 memset(hdr
, 0, sizeof(*hdr
));
2209 /* task completed before tmf abort response */
2210 ISCSI_DBG_EH(session
, "sc completed while abort in "
2216 conn
->tmf_state
= TMF_INITIAL
;
2221 spin_unlock_bh(&session
->lock
);
2223 ISCSI_DBG_EH(session
, "abort success [sc %p itt 0x%x]\n",
2225 mutex_unlock(&session
->eh_mutex
);
2229 spin_unlock_bh(&session
->lock
);
2231 ISCSI_DBG_EH(session
, "abort failed [sc %p itt 0x%x]\n", sc
,
2232 task
? task
->itt
: 0);
2233 mutex_unlock(&session
->eh_mutex
);
2236 EXPORT_SYMBOL_GPL(iscsi_eh_abort
);
2238 static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd
*sc
, struct iscsi_tm
*hdr
)
2240 memset(hdr
, 0, sizeof(*hdr
));
2241 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2242 hdr
->flags
= ISCSI_TM_FUNC_LOGICAL_UNIT_RESET
& ISCSI_FLAG_TM_FUNC_MASK
;
2243 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2244 int_to_scsilun(sc
->device
->lun
, (struct scsi_lun
*)hdr
->lun
);
2245 hdr
->rtt
= RESERVED_ITT
;
2248 int iscsi_eh_device_reset(struct scsi_cmnd
*sc
)
2250 struct iscsi_cls_session
*cls_session
;
2251 struct iscsi_session
*session
;
2252 struct iscsi_conn
*conn
;
2253 struct iscsi_tm
*hdr
;
2256 cls_session
= starget_to_session(scsi_target(sc
->device
));
2257 session
= cls_session
->dd_data
;
2259 ISCSI_DBG_EH(session
, "LU Reset [sc %p lun %u]\n", sc
, sc
->device
->lun
);
2261 mutex_lock(&session
->eh_mutex
);
2262 spin_lock_bh(&session
->lock
);
2264 * Just check if we are not logged in. We cannot check for
2265 * the phase because the reset could come from a ioctl.
2267 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
)
2269 conn
= session
->leadconn
;
2271 /* only have one tmf outstanding at a time */
2272 if (conn
->tmf_state
!= TMF_INITIAL
)
2274 conn
->tmf_state
= TMF_QUEUED
;
2277 iscsi_prep_lun_reset_pdu(sc
, hdr
);
2279 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, session
->age
,
2280 session
->lu_reset_timeout
)) {
2285 switch (conn
->tmf_state
) {
2289 spin_unlock_bh(&session
->lock
);
2290 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
2293 conn
->tmf_state
= TMF_INITIAL
;
2298 spin_unlock_bh(&session
->lock
);
2300 iscsi_suspend_tx(conn
);
2302 spin_lock_bh(&session
->lock
);
2303 memset(hdr
, 0, sizeof(*hdr
));
2304 fail_scsi_tasks(conn
, sc
->device
->lun
, DID_ERROR
);
2305 conn
->tmf_state
= TMF_INITIAL
;
2306 spin_unlock_bh(&session
->lock
);
2308 iscsi_start_tx(conn
);
2312 spin_unlock_bh(&session
->lock
);
2314 ISCSI_DBG_EH(session
, "dev reset result = %s\n",
2315 rc
== SUCCESS
? "SUCCESS" : "FAILED");
2316 mutex_unlock(&session
->eh_mutex
);
2319 EXPORT_SYMBOL_GPL(iscsi_eh_device_reset
);
2321 void iscsi_session_recovery_timedout(struct iscsi_cls_session
*cls_session
)
2323 struct iscsi_session
*session
= cls_session
->dd_data
;
2325 spin_lock_bh(&session
->lock
);
2326 if (session
->state
!= ISCSI_STATE_LOGGED_IN
) {
2327 session
->state
= ISCSI_STATE_RECOVERY_FAILED
;
2328 if (session
->leadconn
)
2329 wake_up(&session
->leadconn
->ehwait
);
2331 spin_unlock_bh(&session
->lock
);
2333 EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout
);
2336 * iscsi_eh_session_reset - drop session and attempt relogin
2339 * This function will wait for a relogin, session termination from
2340 * userspace, or a recovery/replacement timeout.
2342 int iscsi_eh_session_reset(struct scsi_cmnd
*sc
)
2344 struct iscsi_cls_session
*cls_session
;
2345 struct iscsi_session
*session
;
2346 struct iscsi_conn
*conn
;
2348 cls_session
= starget_to_session(scsi_target(sc
->device
));
2349 session
= cls_session
->dd_data
;
2350 conn
= session
->leadconn
;
2352 mutex_lock(&session
->eh_mutex
);
2353 spin_lock_bh(&session
->lock
);
2354 if (session
->state
== ISCSI_STATE_TERMINATE
) {
2356 ISCSI_DBG_EH(session
,
2357 "failing session reset: Could not log back into "
2358 "%s, %s [age %d]\n", session
->targetname
,
2359 conn
->persistent_address
, session
->age
);
2360 spin_unlock_bh(&session
->lock
);
2361 mutex_unlock(&session
->eh_mutex
);
2365 spin_unlock_bh(&session
->lock
);
2366 mutex_unlock(&session
->eh_mutex
);
2368 * we drop the lock here but the leadconn cannot be destoyed while
2369 * we are in the scsi eh
2371 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
2373 ISCSI_DBG_EH(session
, "wait for relogin\n");
2374 wait_event_interruptible(conn
->ehwait
,
2375 session
->state
== ISCSI_STATE_TERMINATE
||
2376 session
->state
== ISCSI_STATE_LOGGED_IN
||
2377 session
->state
== ISCSI_STATE_RECOVERY_FAILED
);
2378 if (signal_pending(current
))
2379 flush_signals(current
);
2381 mutex_lock(&session
->eh_mutex
);
2382 spin_lock_bh(&session
->lock
);
2383 if (session
->state
== ISCSI_STATE_LOGGED_IN
) {
2384 ISCSI_DBG_EH(session
,
2385 "session reset succeeded for %s,%s\n",
2386 session
->targetname
, conn
->persistent_address
);
2389 spin_unlock_bh(&session
->lock
);
2390 mutex_unlock(&session
->eh_mutex
);
2393 EXPORT_SYMBOL_GPL(iscsi_eh_session_reset
);
2395 static void iscsi_prep_tgt_reset_pdu(struct scsi_cmnd
*sc
, struct iscsi_tm
*hdr
)
2397 memset(hdr
, 0, sizeof(*hdr
));
2398 hdr
->opcode
= ISCSI_OP_SCSI_TMFUNC
| ISCSI_OP_IMMEDIATE
;
2399 hdr
->flags
= ISCSI_TM_FUNC_TARGET_WARM_RESET
& ISCSI_FLAG_TM_FUNC_MASK
;
2400 hdr
->flags
|= ISCSI_FLAG_CMD_FINAL
;
2401 hdr
->rtt
= RESERVED_ITT
;
2405 * iscsi_eh_target_reset - reset target
2408 * This will attempt to send a warm target reset.
2410 int iscsi_eh_target_reset(struct scsi_cmnd
*sc
)
2412 struct iscsi_cls_session
*cls_session
;
2413 struct iscsi_session
*session
;
2414 struct iscsi_conn
*conn
;
2415 struct iscsi_tm
*hdr
;
2418 cls_session
= starget_to_session(scsi_target(sc
->device
));
2419 session
= cls_session
->dd_data
;
2421 ISCSI_DBG_EH(session
, "tgt Reset [sc %p tgt %s]\n", sc
,
2422 session
->targetname
);
2424 mutex_lock(&session
->eh_mutex
);
2425 spin_lock_bh(&session
->lock
);
2427 * Just check if we are not logged in. We cannot check for
2428 * the phase because the reset could come from a ioctl.
2430 if (!session
->leadconn
|| session
->state
!= ISCSI_STATE_LOGGED_IN
)
2432 conn
= session
->leadconn
;
2434 /* only have one tmf outstanding at a time */
2435 if (conn
->tmf_state
!= TMF_INITIAL
)
2437 conn
->tmf_state
= TMF_QUEUED
;
2440 iscsi_prep_tgt_reset_pdu(sc
, hdr
);
2442 if (iscsi_exec_task_mgmt_fn(conn
, hdr
, session
->age
,
2443 session
->tgt_reset_timeout
)) {
2448 switch (conn
->tmf_state
) {
2452 spin_unlock_bh(&session
->lock
);
2453 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
2456 conn
->tmf_state
= TMF_INITIAL
;
2461 spin_unlock_bh(&session
->lock
);
2463 iscsi_suspend_tx(conn
);
2465 spin_lock_bh(&session
->lock
);
2466 memset(hdr
, 0, sizeof(*hdr
));
2467 fail_scsi_tasks(conn
, -1, DID_ERROR
);
2468 conn
->tmf_state
= TMF_INITIAL
;
2469 spin_unlock_bh(&session
->lock
);
2471 iscsi_start_tx(conn
);
2475 spin_unlock_bh(&session
->lock
);
2477 ISCSI_DBG_EH(session
, "tgt %s reset result = %s\n", session
->targetname
,
2478 rc
== SUCCESS
? "SUCCESS" : "FAILED");
2479 mutex_unlock(&session
->eh_mutex
);
2482 EXPORT_SYMBOL_GPL(iscsi_eh_target_reset
);
2485 * iscsi_eh_recover_target - reset target and possibly the session
2488 * This will attempt to send a warm target reset. If that fails,
2489 * we will escalate to ERL0 session recovery.
2491 int iscsi_eh_recover_target(struct scsi_cmnd
*sc
)
2495 rc
= iscsi_eh_target_reset(sc
);
2497 rc
= iscsi_eh_session_reset(sc
);
2500 EXPORT_SYMBOL_GPL(iscsi_eh_recover_target
);
2503 * Pre-allocate a pool of @max items of @item_size. By default, the pool
2504 * should be accessed via kfifo_{get,put} on q->queue.
2505 * Optionally, the caller can obtain the array of object pointers
2506 * by passing in a non-NULL @items pointer
2509 iscsi_pool_init(struct iscsi_pool
*q
, int max
, void ***items
, int item_size
)
2511 int i
, num_arrays
= 1;
2513 memset(q
, 0, sizeof(*q
));
2517 /* If the user passed an items pointer, he wants a copy of
2521 q
->pool
= kzalloc(num_arrays
* max
* sizeof(void*), GFP_KERNEL
);
2522 if (q
->pool
== NULL
)
2525 kfifo_init(&q
->queue
, (void*)q
->pool
, max
* sizeof(void*));
2527 for (i
= 0; i
< max
; i
++) {
2528 q
->pool
[i
] = kzalloc(item_size
, GFP_KERNEL
);
2529 if (q
->pool
[i
] == NULL
) {
2533 kfifo_in(&q
->queue
, (void*)&q
->pool
[i
], sizeof(void*));
2537 *items
= q
->pool
+ max
;
2538 memcpy(*items
, q
->pool
, max
* sizeof(void *));
2547 EXPORT_SYMBOL_GPL(iscsi_pool_init
);
2549 void iscsi_pool_free(struct iscsi_pool
*q
)
2553 for (i
= 0; i
< q
->max
; i
++)
2557 EXPORT_SYMBOL_GPL(iscsi_pool_free
);
2560 * iscsi_host_add - add host to system
2562 * @pdev: parent device
2564 * This should be called by partial offload and software iscsi drivers
2565 * to add a host to the system.
2567 int iscsi_host_add(struct Scsi_Host
*shost
, struct device
*pdev
)
2569 if (!shost
->can_queue
)
2570 shost
->can_queue
= ISCSI_DEF_XMIT_CMDS_MAX
;
2572 if (!shost
->cmd_per_lun
)
2573 shost
->cmd_per_lun
= ISCSI_DEF_CMD_PER_LUN
;
2575 if (!shost
->transportt
->eh_timed_out
)
2576 shost
->transportt
->eh_timed_out
= iscsi_eh_cmd_timed_out
;
2577 return scsi_add_host(shost
, pdev
);
2579 EXPORT_SYMBOL_GPL(iscsi_host_add
);
2582 * iscsi_host_alloc - allocate a host and driver data
2583 * @sht: scsi host template
2584 * @dd_data_size: driver host data size
2585 * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue
2587 * This should be called by partial offload and software iscsi drivers.
2588 * To access the driver specific memory use the iscsi_host_priv() macro.
2590 struct Scsi_Host
*iscsi_host_alloc(struct scsi_host_template
*sht
,
2591 int dd_data_size
, bool xmit_can_sleep
)
2593 struct Scsi_Host
*shost
;
2594 struct iscsi_host
*ihost
;
2596 shost
= scsi_host_alloc(sht
, sizeof(struct iscsi_host
) + dd_data_size
);
2599 ihost
= shost_priv(shost
);
2601 if (xmit_can_sleep
) {
2602 snprintf(ihost
->workq_name
, sizeof(ihost
->workq_name
),
2603 "iscsi_q_%d", shost
->host_no
);
2604 ihost
->workq
= create_singlethread_workqueue(ihost
->workq_name
);
2609 spin_lock_init(&ihost
->lock
);
2610 ihost
->state
= ISCSI_HOST_SETUP
;
2611 ihost
->num_sessions
= 0;
2612 init_waitqueue_head(&ihost
->session_removal_wq
);
2616 scsi_host_put(shost
);
2619 EXPORT_SYMBOL_GPL(iscsi_host_alloc
);
2621 static void iscsi_notify_host_removed(struct iscsi_cls_session
*cls_session
)
2623 iscsi_session_failure(cls_session
->dd_data
, ISCSI_ERR_INVALID_HOST
);
2627 * iscsi_host_remove - remove host and sessions
2630 * If there are any sessions left, this will initiate the removal and wait
2631 * for the completion.
2633 void iscsi_host_remove(struct Scsi_Host
*shost
)
2635 struct iscsi_host
*ihost
= shost_priv(shost
);
2636 unsigned long flags
;
2638 spin_lock_irqsave(&ihost
->lock
, flags
);
2639 ihost
->state
= ISCSI_HOST_REMOVED
;
2640 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2642 iscsi_host_for_each_session(shost
, iscsi_notify_host_removed
);
2643 wait_event_interruptible(ihost
->session_removal_wq
,
2644 ihost
->num_sessions
== 0);
2645 if (signal_pending(current
))
2646 flush_signals(current
);
2648 scsi_remove_host(shost
);
2650 destroy_workqueue(ihost
->workq
);
2652 EXPORT_SYMBOL_GPL(iscsi_host_remove
);
2654 void iscsi_host_free(struct Scsi_Host
*shost
)
2656 struct iscsi_host
*ihost
= shost_priv(shost
);
2658 kfree(ihost
->netdev
);
2659 kfree(ihost
->hwaddress
);
2660 kfree(ihost
->initiatorname
);
2661 scsi_host_put(shost
);
2663 EXPORT_SYMBOL_GPL(iscsi_host_free
);
2665 static void iscsi_host_dec_session_cnt(struct Scsi_Host
*shost
)
2667 struct iscsi_host
*ihost
= shost_priv(shost
);
2668 unsigned long flags
;
2670 shost
= scsi_host_get(shost
);
2672 printk(KERN_ERR
"Invalid state. Cannot notify host removal "
2673 "of session teardown event because host already "
2678 spin_lock_irqsave(&ihost
->lock
, flags
);
2679 ihost
->num_sessions
--;
2680 if (ihost
->num_sessions
== 0)
2681 wake_up(&ihost
->session_removal_wq
);
2682 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2683 scsi_host_put(shost
);
2687 * iscsi_session_setup - create iscsi cls session and host and session
2688 * @iscsit: iscsi transport template
2690 * @cmds_max: session can queue
2691 * @cmd_task_size: LLD task private data size
2692 * @initial_cmdsn: initial CmdSN
2694 * This can be used by software iscsi_transports that allocate
2695 * a session per scsi host.
2697 * Callers should set cmds_max to the largest total numer (mgmt + scsi) of
2698 * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks
2699 * for nop handling and login/logout requests.
2701 struct iscsi_cls_session
*
2702 iscsi_session_setup(struct iscsi_transport
*iscsit
, struct Scsi_Host
*shost
,
2703 uint16_t cmds_max
, int dd_size
, int cmd_task_size
,
2704 uint32_t initial_cmdsn
, unsigned int id
)
2706 struct iscsi_host
*ihost
= shost_priv(shost
);
2707 struct iscsi_session
*session
;
2708 struct iscsi_cls_session
*cls_session
;
2709 int cmd_i
, scsi_cmds
, total_cmds
= cmds_max
;
2710 unsigned long flags
;
2712 spin_lock_irqsave(&ihost
->lock
, flags
);
2713 if (ihost
->state
== ISCSI_HOST_REMOVED
) {
2714 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2717 ihost
->num_sessions
++;
2718 spin_unlock_irqrestore(&ihost
->lock
, flags
);
2721 total_cmds
= ISCSI_DEF_XMIT_CMDS_MAX
;
2723 * The iscsi layer needs some tasks for nop handling and tmfs,
2724 * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX
2725 * + 1 command for scsi IO.
2727 if (total_cmds
< ISCSI_TOTAL_CMDS_MIN
) {
2728 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2729 "must be a power of two that is at least %d.\n",
2730 total_cmds
, ISCSI_TOTAL_CMDS_MIN
);
2731 goto dec_session_count
;
2734 if (total_cmds
> ISCSI_TOTAL_CMDS_MAX
) {
2735 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2736 "must be a power of 2 less than or equal to %d.\n",
2737 cmds_max
, ISCSI_TOTAL_CMDS_MAX
);
2738 total_cmds
= ISCSI_TOTAL_CMDS_MAX
;
2741 if (!is_power_of_2(total_cmds
)) {
2742 printk(KERN_ERR
"iscsi: invalid can_queue of %d. can_queue "
2743 "must be a power of 2.\n", total_cmds
);
2744 total_cmds
= rounddown_pow_of_two(total_cmds
);
2745 if (total_cmds
< ISCSI_TOTAL_CMDS_MIN
)
2747 printk(KERN_INFO
"iscsi: Rounding can_queue to %d.\n",
2750 scsi_cmds
= total_cmds
- ISCSI_MGMT_CMDS_MAX
;
2752 cls_session
= iscsi_alloc_session(shost
, iscsit
,
2753 sizeof(struct iscsi_session
) +
2756 goto dec_session_count
;
2757 session
= cls_session
->dd_data
;
2758 session
->cls_session
= cls_session
;
2759 session
->host
= shost
;
2760 session
->state
= ISCSI_STATE_FREE
;
2761 session
->fast_abort
= 1;
2762 session
->tgt_reset_timeout
= 30;
2763 session
->lu_reset_timeout
= 15;
2764 session
->abort_timeout
= 10;
2765 session
->scsi_cmds_max
= scsi_cmds
;
2766 session
->cmds_max
= total_cmds
;
2767 session
->queued_cmdsn
= session
->cmdsn
= initial_cmdsn
;
2768 session
->exp_cmdsn
= initial_cmdsn
+ 1;
2769 session
->max_cmdsn
= initial_cmdsn
+ 1;
2770 session
->max_r2t
= 1;
2771 session
->tt
= iscsit
;
2772 session
->dd_data
= cls_session
->dd_data
+ sizeof(*session
);
2773 mutex_init(&session
->eh_mutex
);
2774 spin_lock_init(&session
->lock
);
2776 /* initialize SCSI PDU commands pool */
2777 if (iscsi_pool_init(&session
->cmdpool
, session
->cmds_max
,
2778 (void***)&session
->cmds
,
2779 cmd_task_size
+ sizeof(struct iscsi_task
)))
2780 goto cmdpool_alloc_fail
;
2782 /* pre-format cmds pool with ITT */
2783 for (cmd_i
= 0; cmd_i
< session
->cmds_max
; cmd_i
++) {
2784 struct iscsi_task
*task
= session
->cmds
[cmd_i
];
2787 task
->dd_data
= &task
[1];
2789 task
->state
= ISCSI_TASK_FREE
;
2790 INIT_LIST_HEAD(&task
->running
);
2793 if (!try_module_get(iscsit
->owner
))
2794 goto module_get_fail
;
2796 if (iscsi_add_session(cls_session
, id
))
2797 goto cls_session_fail
;
2802 module_put(iscsit
->owner
);
2804 iscsi_pool_free(&session
->cmdpool
);
2806 iscsi_free_session(cls_session
);
2808 iscsi_host_dec_session_cnt(shost
);
2811 EXPORT_SYMBOL_GPL(iscsi_session_setup
);
2814 * iscsi_session_teardown - destroy session, host, and cls_session
2815 * @cls_session: iscsi session
2817 * The driver must have called iscsi_remove_session before
2820 void iscsi_session_teardown(struct iscsi_cls_session
*cls_session
)
2822 struct iscsi_session
*session
= cls_session
->dd_data
;
2823 struct module
*owner
= cls_session
->transport
->owner
;
2824 struct Scsi_Host
*shost
= session
->host
;
2826 iscsi_pool_free(&session
->cmdpool
);
2828 kfree(session
->password
);
2829 kfree(session
->password_in
);
2830 kfree(session
->username
);
2831 kfree(session
->username_in
);
2832 kfree(session
->targetname
);
2833 kfree(session
->initiatorname
);
2834 kfree(session
->ifacename
);
2836 iscsi_destroy_session(cls_session
);
2837 iscsi_host_dec_session_cnt(shost
);
2840 EXPORT_SYMBOL_GPL(iscsi_session_teardown
);
2843 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
2844 * @cls_session: iscsi_cls_session
2845 * @dd_size: private driver data size
2848 struct iscsi_cls_conn
*
2849 iscsi_conn_setup(struct iscsi_cls_session
*cls_session
, int dd_size
,
2852 struct iscsi_session
*session
= cls_session
->dd_data
;
2853 struct iscsi_conn
*conn
;
2854 struct iscsi_cls_conn
*cls_conn
;
2857 cls_conn
= iscsi_create_conn(cls_session
, sizeof(*conn
) + dd_size
,
2861 conn
= cls_conn
->dd_data
;
2862 memset(conn
, 0, sizeof(*conn
) + dd_size
);
2864 conn
->dd_data
= cls_conn
->dd_data
+ sizeof(*conn
);
2865 conn
->session
= session
;
2866 conn
->cls_conn
= cls_conn
;
2867 conn
->c_stage
= ISCSI_CONN_INITIAL_STAGE
;
2868 conn
->id
= conn_idx
;
2869 conn
->exp_statsn
= 0;
2870 conn
->tmf_state
= TMF_INITIAL
;
2872 init_timer(&conn
->transport_timer
);
2873 conn
->transport_timer
.data
= (unsigned long)conn
;
2874 conn
->transport_timer
.function
= iscsi_check_transport_timeouts
;
2876 INIT_LIST_HEAD(&conn
->mgmtqueue
);
2877 INIT_LIST_HEAD(&conn
->cmdqueue
);
2878 INIT_LIST_HEAD(&conn
->requeue
);
2879 INIT_WORK(&conn
->xmitwork
, iscsi_xmitworker
);
2881 /* allocate login_task used for the login/text sequences */
2882 spin_lock_bh(&session
->lock
);
2883 if (!kfifo_out(&session
->cmdpool
.queue
,
2884 (void*)&conn
->login_task
,
2886 spin_unlock_bh(&session
->lock
);
2887 goto login_task_alloc_fail
;
2889 spin_unlock_bh(&session
->lock
);
2891 data
= (char *) __get_free_pages(GFP_KERNEL
,
2892 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN
));
2894 goto login_task_data_alloc_fail
;
2895 conn
->login_task
->data
= conn
->data
= data
;
2897 init_timer(&conn
->tmf_timer
);
2898 init_waitqueue_head(&conn
->ehwait
);
2902 login_task_data_alloc_fail
:
2903 kfifo_in(&session
->cmdpool
.queue
, (void*)&conn
->login_task
,
2905 login_task_alloc_fail
:
2906 iscsi_destroy_conn(cls_conn
);
2909 EXPORT_SYMBOL_GPL(iscsi_conn_setup
);
2912 * iscsi_conn_teardown - teardown iscsi connection
2913 * cls_conn: iscsi class connection
2915 * TODO: we may need to make this into a two step process
2916 * like scsi-mls remove + put host
2918 void iscsi_conn_teardown(struct iscsi_cls_conn
*cls_conn
)
2920 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2921 struct iscsi_session
*session
= conn
->session
;
2922 unsigned long flags
;
2924 del_timer_sync(&conn
->transport_timer
);
2926 spin_lock_bh(&session
->lock
);
2927 conn
->c_stage
= ISCSI_CONN_CLEANUP_WAIT
;
2928 if (session
->leadconn
== conn
) {
2930 * leading connection? then give up on recovery.
2932 session
->state
= ISCSI_STATE_TERMINATE
;
2933 wake_up(&conn
->ehwait
);
2935 spin_unlock_bh(&session
->lock
);
2938 * Block until all in-progress commands for this connection
2942 spin_lock_irqsave(session
->host
->host_lock
, flags
);
2943 if (!session
->host
->host_busy
) { /* OK for ERL == 0 */
2944 spin_unlock_irqrestore(session
->host
->host_lock
, flags
);
2947 spin_unlock_irqrestore(session
->host
->host_lock
, flags
);
2948 msleep_interruptible(500);
2949 iscsi_conn_printk(KERN_INFO
, conn
, "iscsi conn_destroy(): "
2950 "host_busy %d host_failed %d\n",
2951 session
->host
->host_busy
,
2952 session
->host
->host_failed
);
2954 * force eh_abort() to unblock
2956 wake_up(&conn
->ehwait
);
2959 /* flush queued up work because we free the connection below */
2960 iscsi_suspend_tx(conn
);
2962 spin_lock_bh(&session
->lock
);
2963 free_pages((unsigned long) conn
->data
,
2964 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN
));
2965 kfree(conn
->persistent_address
);
2966 kfifo_in(&session
->cmdpool
.queue
, (void*)&conn
->login_task
,
2968 if (session
->leadconn
== conn
)
2969 session
->leadconn
= NULL
;
2970 spin_unlock_bh(&session
->lock
);
2972 iscsi_destroy_conn(cls_conn
);
2974 EXPORT_SYMBOL_GPL(iscsi_conn_teardown
);
2976 int iscsi_conn_start(struct iscsi_cls_conn
*cls_conn
)
2978 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2979 struct iscsi_session
*session
= conn
->session
;
2982 iscsi_conn_printk(KERN_ERR
, conn
,
2983 "can't start unbound connection\n");
2987 if ((session
->imm_data_en
|| !session
->initial_r2t_en
) &&
2988 session
->first_burst
> session
->max_burst
) {
2989 iscsi_conn_printk(KERN_INFO
, conn
, "invalid burst lengths: "
2990 "first_burst %d max_burst %d\n",
2991 session
->first_burst
, session
->max_burst
);
2995 if (conn
->ping_timeout
&& !conn
->recv_timeout
) {
2996 iscsi_conn_printk(KERN_ERR
, conn
, "invalid recv timeout of "
2997 "zero. Using 5 seconds\n.");
2998 conn
->recv_timeout
= 5;
3001 if (conn
->recv_timeout
&& !conn
->ping_timeout
) {
3002 iscsi_conn_printk(KERN_ERR
, conn
, "invalid ping timeout of "
3003 "zero. Using 5 seconds.\n");
3004 conn
->ping_timeout
= 5;
3007 spin_lock_bh(&session
->lock
);
3008 conn
->c_stage
= ISCSI_CONN_STARTED
;
3009 session
->state
= ISCSI_STATE_LOGGED_IN
;
3010 session
->queued_cmdsn
= session
->cmdsn
;
3012 conn
->last_recv
= jiffies
;
3013 conn
->last_ping
= jiffies
;
3014 if (conn
->recv_timeout
&& conn
->ping_timeout
)
3015 mod_timer(&conn
->transport_timer
,
3016 jiffies
+ (conn
->recv_timeout
* HZ
));
3018 switch(conn
->stop_stage
) {
3019 case STOP_CONN_RECOVER
:
3021 * unblock eh_abort() if it is blocked. re-try all
3022 * commands after successful recovery
3024 conn
->stop_stage
= 0;
3025 conn
->tmf_state
= TMF_INITIAL
;
3027 if (session
->age
== 16)
3030 case STOP_CONN_TERM
:
3031 conn
->stop_stage
= 0;
3036 spin_unlock_bh(&session
->lock
);
3038 iscsi_unblock_session(session
->cls_session
);
3039 wake_up(&conn
->ehwait
);
3042 EXPORT_SYMBOL_GPL(iscsi_conn_start
);
3045 fail_mgmt_tasks(struct iscsi_session
*session
, struct iscsi_conn
*conn
)
3047 struct iscsi_task
*task
;
3050 for (i
= 0; i
< conn
->session
->cmds_max
; i
++) {
3051 task
= conn
->session
->cmds
[i
];
3055 if (task
->state
== ISCSI_TASK_FREE
)
3058 ISCSI_DBG_SESSION(conn
->session
,
3059 "failing mgmt itt 0x%x state %d\n",
3060 task
->itt
, task
->state
);
3061 state
= ISCSI_TASK_ABRT_SESS_RECOV
;
3062 if (task
->state
== ISCSI_TASK_PENDING
)
3063 state
= ISCSI_TASK_COMPLETED
;
3064 iscsi_complete_task(task
, state
);
3069 static void iscsi_start_session_recovery(struct iscsi_session
*session
,
3070 struct iscsi_conn
*conn
, int flag
)
3074 mutex_lock(&session
->eh_mutex
);
3075 spin_lock_bh(&session
->lock
);
3076 if (conn
->stop_stage
== STOP_CONN_TERM
) {
3077 spin_unlock_bh(&session
->lock
);
3078 mutex_unlock(&session
->eh_mutex
);
3083 * When this is called for the in_login state, we only want to clean
3084 * up the login task and connection. We do not need to block and set
3085 * the recovery state again
3087 if (flag
== STOP_CONN_TERM
)
3088 session
->state
= ISCSI_STATE_TERMINATE
;
3089 else if (conn
->stop_stage
!= STOP_CONN_RECOVER
)
3090 session
->state
= ISCSI_STATE_IN_RECOVERY
;
3092 old_stop_stage
= conn
->stop_stage
;
3093 conn
->stop_stage
= flag
;
3094 spin_unlock_bh(&session
->lock
);
3096 del_timer_sync(&conn
->transport_timer
);
3097 iscsi_suspend_tx(conn
);
3099 spin_lock_bh(&session
->lock
);
3100 conn
->c_stage
= ISCSI_CONN_STOPPED
;
3101 spin_unlock_bh(&session
->lock
);
3104 * for connection level recovery we should not calculate
3105 * header digest. conn->hdr_size used for optimization
3106 * in hdr_extract() and will be re-negotiated at
3109 if (flag
== STOP_CONN_RECOVER
) {
3110 conn
->hdrdgst_en
= 0;
3111 conn
->datadgst_en
= 0;
3112 if (session
->state
== ISCSI_STATE_IN_RECOVERY
&&
3113 old_stop_stage
!= STOP_CONN_RECOVER
) {
3114 ISCSI_DBG_SESSION(session
, "blocking session\n");
3115 iscsi_block_session(session
->cls_session
);
3122 spin_lock_bh(&session
->lock
);
3123 fail_scsi_tasks(conn
, -1, DID_TRANSPORT_DISRUPTED
);
3124 fail_mgmt_tasks(session
, conn
);
3125 memset(&conn
->tmhdr
, 0, sizeof(conn
->tmhdr
));
3126 spin_unlock_bh(&session
->lock
);
3127 mutex_unlock(&session
->eh_mutex
);
3130 void iscsi_conn_stop(struct iscsi_cls_conn
*cls_conn
, int flag
)
3132 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3133 struct iscsi_session
*session
= conn
->session
;
3136 case STOP_CONN_RECOVER
:
3137 case STOP_CONN_TERM
:
3138 iscsi_start_session_recovery(session
, conn
, flag
);
3141 iscsi_conn_printk(KERN_ERR
, conn
,
3142 "invalid stop flag %d\n", flag
);
3145 EXPORT_SYMBOL_GPL(iscsi_conn_stop
);
3147 int iscsi_conn_bind(struct iscsi_cls_session
*cls_session
,
3148 struct iscsi_cls_conn
*cls_conn
, int is_leading
)
3150 struct iscsi_session
*session
= cls_session
->dd_data
;
3151 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3153 spin_lock_bh(&session
->lock
);
3155 session
->leadconn
= conn
;
3156 spin_unlock_bh(&session
->lock
);
3159 * Unblock xmitworker(), Login Phase will pass through.
3161 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
3162 clear_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_tx
);
3165 EXPORT_SYMBOL_GPL(iscsi_conn_bind
);
3167 static int iscsi_switch_str_param(char **param
, char *new_val_buf
)
3172 if (!strcmp(*param
, new_val_buf
))
3176 new_val
= kstrdup(new_val_buf
, GFP_NOIO
);
3185 int iscsi_set_param(struct iscsi_cls_conn
*cls_conn
,
3186 enum iscsi_param param
, char *buf
, int buflen
)
3188 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3189 struct iscsi_session
*session
= conn
->session
;
3193 case ISCSI_PARAM_FAST_ABORT
:
3194 sscanf(buf
, "%d", &session
->fast_abort
);
3196 case ISCSI_PARAM_ABORT_TMO
:
3197 sscanf(buf
, "%d", &session
->abort_timeout
);
3199 case ISCSI_PARAM_LU_RESET_TMO
:
3200 sscanf(buf
, "%d", &session
->lu_reset_timeout
);
3202 case ISCSI_PARAM_TGT_RESET_TMO
:
3203 sscanf(buf
, "%d", &session
->tgt_reset_timeout
);
3205 case ISCSI_PARAM_PING_TMO
:
3206 sscanf(buf
, "%d", &conn
->ping_timeout
);
3208 case ISCSI_PARAM_RECV_TMO
:
3209 sscanf(buf
, "%d", &conn
->recv_timeout
);
3211 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
3212 sscanf(buf
, "%d", &conn
->max_recv_dlength
);
3214 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
3215 sscanf(buf
, "%d", &conn
->max_xmit_dlength
);
3217 case ISCSI_PARAM_HDRDGST_EN
:
3218 sscanf(buf
, "%d", &conn
->hdrdgst_en
);
3220 case ISCSI_PARAM_DATADGST_EN
:
3221 sscanf(buf
, "%d", &conn
->datadgst_en
);
3223 case ISCSI_PARAM_INITIAL_R2T_EN
:
3224 sscanf(buf
, "%d", &session
->initial_r2t_en
);
3226 case ISCSI_PARAM_MAX_R2T
:
3227 sscanf(buf
, "%d", &session
->max_r2t
);
3229 case ISCSI_PARAM_IMM_DATA_EN
:
3230 sscanf(buf
, "%d", &session
->imm_data_en
);
3232 case ISCSI_PARAM_FIRST_BURST
:
3233 sscanf(buf
, "%d", &session
->first_burst
);
3235 case ISCSI_PARAM_MAX_BURST
:
3236 sscanf(buf
, "%d", &session
->max_burst
);
3238 case ISCSI_PARAM_PDU_INORDER_EN
:
3239 sscanf(buf
, "%d", &session
->pdu_inorder_en
);
3241 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
3242 sscanf(buf
, "%d", &session
->dataseq_inorder_en
);
3244 case ISCSI_PARAM_ERL
:
3245 sscanf(buf
, "%d", &session
->erl
);
3247 case ISCSI_PARAM_IFMARKER_EN
:
3248 sscanf(buf
, "%d", &value
);
3251 case ISCSI_PARAM_OFMARKER_EN
:
3252 sscanf(buf
, "%d", &value
);
3255 case ISCSI_PARAM_EXP_STATSN
:
3256 sscanf(buf
, "%u", &conn
->exp_statsn
);
3258 case ISCSI_PARAM_USERNAME
:
3259 return iscsi_switch_str_param(&session
->username
, buf
);
3260 case ISCSI_PARAM_USERNAME_IN
:
3261 return iscsi_switch_str_param(&session
->username_in
, buf
);
3262 case ISCSI_PARAM_PASSWORD
:
3263 return iscsi_switch_str_param(&session
->password
, buf
);
3264 case ISCSI_PARAM_PASSWORD_IN
:
3265 return iscsi_switch_str_param(&session
->password_in
, buf
);
3266 case ISCSI_PARAM_TARGET_NAME
:
3267 return iscsi_switch_str_param(&session
->targetname
, buf
);
3268 case ISCSI_PARAM_TPGT
:
3269 sscanf(buf
, "%d", &session
->tpgt
);
3271 case ISCSI_PARAM_PERSISTENT_PORT
:
3272 sscanf(buf
, "%d", &conn
->persistent_port
);
3274 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
3275 return iscsi_switch_str_param(&conn
->persistent_address
, buf
);
3276 case ISCSI_PARAM_IFACE_NAME
:
3277 return iscsi_switch_str_param(&session
->ifacename
, buf
);
3278 case ISCSI_PARAM_INITIATOR_NAME
:
3279 return iscsi_switch_str_param(&session
->initiatorname
, buf
);
3286 EXPORT_SYMBOL_GPL(iscsi_set_param
);
3288 int iscsi_session_get_param(struct iscsi_cls_session
*cls_session
,
3289 enum iscsi_param param
, char *buf
)
3291 struct iscsi_session
*session
= cls_session
->dd_data
;
3295 case ISCSI_PARAM_FAST_ABORT
:
3296 len
= sprintf(buf
, "%d\n", session
->fast_abort
);
3298 case ISCSI_PARAM_ABORT_TMO
:
3299 len
= sprintf(buf
, "%d\n", session
->abort_timeout
);
3301 case ISCSI_PARAM_LU_RESET_TMO
:
3302 len
= sprintf(buf
, "%d\n", session
->lu_reset_timeout
);
3304 case ISCSI_PARAM_TGT_RESET_TMO
:
3305 len
= sprintf(buf
, "%d\n", session
->tgt_reset_timeout
);
3307 case ISCSI_PARAM_INITIAL_R2T_EN
:
3308 len
= sprintf(buf
, "%d\n", session
->initial_r2t_en
);
3310 case ISCSI_PARAM_MAX_R2T
:
3311 len
= sprintf(buf
, "%hu\n", session
->max_r2t
);
3313 case ISCSI_PARAM_IMM_DATA_EN
:
3314 len
= sprintf(buf
, "%d\n", session
->imm_data_en
);
3316 case ISCSI_PARAM_FIRST_BURST
:
3317 len
= sprintf(buf
, "%u\n", session
->first_burst
);
3319 case ISCSI_PARAM_MAX_BURST
:
3320 len
= sprintf(buf
, "%u\n", session
->max_burst
);
3322 case ISCSI_PARAM_PDU_INORDER_EN
:
3323 len
= sprintf(buf
, "%d\n", session
->pdu_inorder_en
);
3325 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
3326 len
= sprintf(buf
, "%d\n", session
->dataseq_inorder_en
);
3328 case ISCSI_PARAM_ERL
:
3329 len
= sprintf(buf
, "%d\n", session
->erl
);
3331 case ISCSI_PARAM_TARGET_NAME
:
3332 len
= sprintf(buf
, "%s\n", session
->targetname
);
3334 case ISCSI_PARAM_TPGT
:
3335 len
= sprintf(buf
, "%d\n", session
->tpgt
);
3337 case ISCSI_PARAM_USERNAME
:
3338 len
= sprintf(buf
, "%s\n", session
->username
);
3340 case ISCSI_PARAM_USERNAME_IN
:
3341 len
= sprintf(buf
, "%s\n", session
->username_in
);
3343 case ISCSI_PARAM_PASSWORD
:
3344 len
= sprintf(buf
, "%s\n", session
->password
);
3346 case ISCSI_PARAM_PASSWORD_IN
:
3347 len
= sprintf(buf
, "%s\n", session
->password_in
);
3349 case ISCSI_PARAM_IFACE_NAME
:
3350 len
= sprintf(buf
, "%s\n", session
->ifacename
);
3352 case ISCSI_PARAM_INITIATOR_NAME
:
3353 len
= sprintf(buf
, "%s\n", session
->initiatorname
);
3361 EXPORT_SYMBOL_GPL(iscsi_session_get_param
);
3363 int iscsi_conn_get_param(struct iscsi_cls_conn
*cls_conn
,
3364 enum iscsi_param param
, char *buf
)
3366 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
3370 case ISCSI_PARAM_PING_TMO
:
3371 len
= sprintf(buf
, "%u\n", conn
->ping_timeout
);
3373 case ISCSI_PARAM_RECV_TMO
:
3374 len
= sprintf(buf
, "%u\n", conn
->recv_timeout
);
3376 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
3377 len
= sprintf(buf
, "%u\n", conn
->max_recv_dlength
);
3379 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
3380 len
= sprintf(buf
, "%u\n", conn
->max_xmit_dlength
);
3382 case ISCSI_PARAM_HDRDGST_EN
:
3383 len
= sprintf(buf
, "%d\n", conn
->hdrdgst_en
);
3385 case ISCSI_PARAM_DATADGST_EN
:
3386 len
= sprintf(buf
, "%d\n", conn
->datadgst_en
);
3388 case ISCSI_PARAM_IFMARKER_EN
:
3389 len
= sprintf(buf
, "%d\n", conn
->ifmarker_en
);
3391 case ISCSI_PARAM_OFMARKER_EN
:
3392 len
= sprintf(buf
, "%d\n", conn
->ofmarker_en
);
3394 case ISCSI_PARAM_EXP_STATSN
:
3395 len
= sprintf(buf
, "%u\n", conn
->exp_statsn
);
3397 case ISCSI_PARAM_PERSISTENT_PORT
:
3398 len
= sprintf(buf
, "%d\n", conn
->persistent_port
);
3400 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
3401 len
= sprintf(buf
, "%s\n", conn
->persistent_address
);
3409 EXPORT_SYMBOL_GPL(iscsi_conn_get_param
);
3411 int iscsi_host_get_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
3414 struct iscsi_host
*ihost
= shost_priv(shost
);
3418 case ISCSI_HOST_PARAM_NETDEV_NAME
:
3419 len
= sprintf(buf
, "%s\n", ihost
->netdev
);
3421 case ISCSI_HOST_PARAM_HWADDRESS
:
3422 len
= sprintf(buf
, "%s\n", ihost
->hwaddress
);
3424 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
3425 len
= sprintf(buf
, "%s\n", ihost
->initiatorname
);
3427 case ISCSI_HOST_PARAM_IPADDRESS
:
3428 len
= sprintf(buf
, "%s\n", ihost
->local_address
);
3436 EXPORT_SYMBOL_GPL(iscsi_host_get_param
);
3438 int iscsi_host_set_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
3439 char *buf
, int buflen
)
3441 struct iscsi_host
*ihost
= shost_priv(shost
);
3444 case ISCSI_HOST_PARAM_NETDEV_NAME
:
3445 return iscsi_switch_str_param(&ihost
->netdev
, buf
);
3446 case ISCSI_HOST_PARAM_HWADDRESS
:
3447 return iscsi_switch_str_param(&ihost
->hwaddress
, buf
);
3448 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
3449 return iscsi_switch_str_param(&ihost
->initiatorname
, buf
);
3456 EXPORT_SYMBOL_GPL(iscsi_host_set_param
);
3458 MODULE_AUTHOR("Mike Christie");
3459 MODULE_DESCRIPTION("iSCSI library functions");
3460 MODULE_LICENSE("GPL");