1 /*******************************************************************************
2 * This file contains the iSCSI Target specific utility functions.
4 * (c) Copyright 2007-2013 Datera, Inc.
6 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 ******************************************************************************/
19 #include <linux/list.h>
20 #include <linux/percpu_ida.h>
21 #include <scsi/scsi_tcq.h>
22 #include <scsi/iscsi_proto.h>
23 #include <target/target_core_base.h>
24 #include <target/target_core_fabric.h>
25 #include <target/iscsi/iscsi_transport.h>
27 #include <target/iscsi/iscsi_target_core.h>
28 #include "iscsi_target_parameters.h"
29 #include "iscsi_target_seq_pdu_list.h"
30 #include "iscsi_target_datain_values.h"
31 #include "iscsi_target_erl0.h"
32 #include "iscsi_target_erl1.h"
33 #include "iscsi_target_erl2.h"
34 #include "iscsi_target_tpg.h"
35 #include "iscsi_target_util.h"
36 #include "iscsi_target.h"
38 #define PRINT_BUFF(buff, len) \
42 pr_debug("%d:\n", __LINE__); \
43 for (zzz = 0; zzz < len; zzz++) { \
44 if (zzz % 16 == 0) { \
47 pr_debug("%4i: ", zzz); \
49 pr_debug("%02x ", (unsigned char) (buff)[zzz]); \
55 extern struct list_head g_tiqn_list
;
56 extern spinlock_t tiqn_lock
;
59 * Called with cmd->r2t_lock held.
61 int iscsit_add_r2t_to_list(
62 struct iscsi_cmd
*cmd
,
68 struct iscsi_r2t
*r2t
;
70 r2t
= kmem_cache_zalloc(lio_r2t_cache
, GFP_ATOMIC
);
72 pr_err("Unable to allocate memory for struct iscsi_r2t.\n");
75 INIT_LIST_HEAD(&r2t
->r2t_list
);
77 r2t
->recovery_r2t
= recovery
;
78 r2t
->r2t_sn
= (!r2t_sn
) ? cmd
->r2t_sn
++ : r2t_sn
;
80 r2t
->xfer_len
= xfer_len
;
81 list_add_tail(&r2t
->r2t_list
, &cmd
->cmd_r2t_list
);
82 spin_unlock_bh(&cmd
->r2t_lock
);
84 iscsit_add_cmd_to_immediate_queue(cmd
, cmd
->conn
, ISTATE_SEND_R2T
);
86 spin_lock_bh(&cmd
->r2t_lock
);
90 struct iscsi_r2t
*iscsit_get_r2t_for_eos(
91 struct iscsi_cmd
*cmd
,
95 struct iscsi_r2t
*r2t
;
97 spin_lock_bh(&cmd
->r2t_lock
);
98 list_for_each_entry(r2t
, &cmd
->cmd_r2t_list
, r2t_list
) {
99 if ((r2t
->offset
<= offset
) &&
100 (r2t
->offset
+ r2t
->xfer_len
) >= (offset
+ length
)) {
101 spin_unlock_bh(&cmd
->r2t_lock
);
105 spin_unlock_bh(&cmd
->r2t_lock
);
107 pr_err("Unable to locate R2T for Offset: %u, Length:"
108 " %u\n", offset
, length
);
112 struct iscsi_r2t
*iscsit_get_r2t_from_list(struct iscsi_cmd
*cmd
)
114 struct iscsi_r2t
*r2t
;
116 spin_lock_bh(&cmd
->r2t_lock
);
117 list_for_each_entry(r2t
, &cmd
->cmd_r2t_list
, r2t_list
) {
118 if (!r2t
->sent_r2t
) {
119 spin_unlock_bh(&cmd
->r2t_lock
);
123 spin_unlock_bh(&cmd
->r2t_lock
);
125 pr_err("Unable to locate next R2T to send for ITT:"
126 " 0x%08x.\n", cmd
->init_task_tag
);
131 * Called with cmd->r2t_lock held.
133 void iscsit_free_r2t(struct iscsi_r2t
*r2t
, struct iscsi_cmd
*cmd
)
135 list_del(&r2t
->r2t_list
);
136 kmem_cache_free(lio_r2t_cache
, r2t
);
139 void iscsit_free_r2ts_from_list(struct iscsi_cmd
*cmd
)
141 struct iscsi_r2t
*r2t
, *r2t_tmp
;
143 spin_lock_bh(&cmd
->r2t_lock
);
144 list_for_each_entry_safe(r2t
, r2t_tmp
, &cmd
->cmd_r2t_list
, r2t_list
)
145 iscsit_free_r2t(r2t
, cmd
);
146 spin_unlock_bh(&cmd
->r2t_lock
);
150 * May be called from software interrupt (timer) context for allocating
153 struct iscsi_cmd
*iscsit_allocate_cmd(struct iscsi_conn
*conn
, int state
)
155 struct iscsi_cmd
*cmd
;
156 struct se_session
*se_sess
= conn
->sess
->se_sess
;
159 tag
= percpu_ida_alloc(&se_sess
->sess_tag_pool
, state
);
163 size
= sizeof(struct iscsi_cmd
) + conn
->conn_transport
->priv_size
;
164 cmd
= (struct iscsi_cmd
*)(se_sess
->sess_cmd_map
+ (tag
* size
));
165 memset(cmd
, 0, size
);
167 cmd
->se_cmd
.map_tag
= tag
;
169 INIT_LIST_HEAD(&cmd
->i_conn_node
);
170 INIT_LIST_HEAD(&cmd
->datain_list
);
171 INIT_LIST_HEAD(&cmd
->cmd_r2t_list
);
172 spin_lock_init(&cmd
->datain_lock
);
173 spin_lock_init(&cmd
->dataout_timeout_lock
);
174 spin_lock_init(&cmd
->istate_lock
);
175 spin_lock_init(&cmd
->error_lock
);
176 spin_lock_init(&cmd
->r2t_lock
);
180 EXPORT_SYMBOL(iscsit_allocate_cmd
);
182 struct iscsi_seq
*iscsit_get_seq_holder_for_datain(
183 struct iscsi_cmd
*cmd
,
188 for (i
= 0; i
< cmd
->seq_count
; i
++)
189 if (cmd
->seq_list
[i
].seq_send_order
== seq_send_order
)
190 return &cmd
->seq_list
[i
];
195 struct iscsi_seq
*iscsit_get_seq_holder_for_r2t(struct iscsi_cmd
*cmd
)
199 if (!cmd
->seq_list
) {
200 pr_err("struct iscsi_cmd->seq_list is NULL!\n");
204 for (i
= 0; i
< cmd
->seq_count
; i
++) {
205 if (cmd
->seq_list
[i
].type
!= SEQTYPE_NORMAL
)
207 if (cmd
->seq_list
[i
].seq_send_order
== cmd
->seq_send_order
) {
208 cmd
->seq_send_order
++;
209 return &cmd
->seq_list
[i
];
216 struct iscsi_r2t
*iscsit_get_holder_for_r2tsn(
217 struct iscsi_cmd
*cmd
,
220 struct iscsi_r2t
*r2t
;
222 spin_lock_bh(&cmd
->r2t_lock
);
223 list_for_each_entry(r2t
, &cmd
->cmd_r2t_list
, r2t_list
) {
224 if (r2t
->r2t_sn
== r2t_sn
) {
225 spin_unlock_bh(&cmd
->r2t_lock
);
229 spin_unlock_bh(&cmd
->r2t_lock
);
234 static inline int iscsit_check_received_cmdsn(struct iscsi_session
*sess
, u32 cmdsn
)
240 * This is the proper method of checking received CmdSN against
241 * ExpCmdSN and MaxCmdSN values, as well as accounting for out
242 * or order CmdSNs due to multiple connection sessions and/or
245 max_cmdsn
= atomic_read(&sess
->max_cmd_sn
);
246 if (iscsi_sna_gt(cmdsn
, max_cmdsn
)) {
247 pr_err("Received CmdSN: 0x%08x is greater than"
248 " MaxCmdSN: 0x%08x, ignoring.\n", cmdsn
, max_cmdsn
);
249 ret
= CMDSN_MAXCMDSN_OVERRUN
;
251 } else if (cmdsn
== sess
->exp_cmd_sn
) {
253 pr_debug("Received CmdSN matches ExpCmdSN,"
254 " incremented ExpCmdSN to: 0x%08x\n",
256 ret
= CMDSN_NORMAL_OPERATION
;
258 } else if (iscsi_sna_gt(cmdsn
, sess
->exp_cmd_sn
)) {
259 pr_debug("Received CmdSN: 0x%08x is greater"
260 " than ExpCmdSN: 0x%08x, not acknowledging.\n",
261 cmdsn
, sess
->exp_cmd_sn
);
262 ret
= CMDSN_HIGHER_THAN_EXP
;
265 pr_err("Received CmdSN: 0x%08x is less than"
266 " ExpCmdSN: 0x%08x, ignoring.\n", cmdsn
,
268 ret
= CMDSN_LOWER_THAN_EXP
;
275 * Commands may be received out of order if MC/S is in use.
276 * Ensure they are executed in CmdSN order.
278 int iscsit_sequence_cmd(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
,
279 unsigned char *buf
, __be32 cmdsn
)
283 u8 reason
= ISCSI_REASON_BOOKMARK_NO_RESOURCES
;
285 mutex_lock(&conn
->sess
->cmdsn_mutex
);
287 cmdsn_ret
= iscsit_check_received_cmdsn(conn
->sess
, be32_to_cpu(cmdsn
));
289 case CMDSN_NORMAL_OPERATION
:
290 ret
= iscsit_execute_cmd(cmd
, 0);
291 if ((ret
>= 0) && !list_empty(&conn
->sess
->sess_ooo_cmdsn_list
))
292 iscsit_execute_ooo_cmdsns(conn
->sess
);
295 ret
= CMDSN_ERROR_CANNOT_RECOVER
;
298 case CMDSN_HIGHER_THAN_EXP
:
299 ret
= iscsit_handle_ooo_cmdsn(conn
->sess
, cmd
, be32_to_cpu(cmdsn
));
302 ret
= CMDSN_ERROR_CANNOT_RECOVER
;
305 ret
= CMDSN_HIGHER_THAN_EXP
;
307 case CMDSN_LOWER_THAN_EXP
:
308 case CMDSN_MAXCMDSN_OVERRUN
:
310 cmd
->i_state
= ISTATE_REMOVE
;
311 iscsit_add_cmd_to_immediate_queue(cmd
, conn
, cmd
->i_state
);
313 * Existing callers for iscsit_sequence_cmd() will silently
314 * ignore commands with CMDSN_LOWER_THAN_EXP, so force this
315 * return for CMDSN_MAXCMDSN_OVERRUN as well..
317 ret
= CMDSN_LOWER_THAN_EXP
;
320 mutex_unlock(&conn
->sess
->cmdsn_mutex
);
323 iscsit_reject_cmd(cmd
, reason
, buf
);
327 EXPORT_SYMBOL(iscsit_sequence_cmd
);
329 int iscsit_check_unsolicited_dataout(struct iscsi_cmd
*cmd
, unsigned char *buf
)
331 struct iscsi_conn
*conn
= cmd
->conn
;
332 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
333 struct iscsi_data
*hdr
= (struct iscsi_data
*) buf
;
334 u32 payload_length
= ntoh24(hdr
->dlength
);
336 if (conn
->sess
->sess_ops
->InitialR2T
) {
337 pr_err("Received unexpected unsolicited data"
338 " while InitialR2T=Yes, protocol error.\n");
339 transport_send_check_condition_and_sense(se_cmd
,
340 TCM_UNEXPECTED_UNSOLICITED_DATA
, 0);
344 if ((cmd
->first_burst_len
+ payload_length
) >
345 conn
->sess
->sess_ops
->FirstBurstLength
) {
346 pr_err("Total %u bytes exceeds FirstBurstLength: %u"
347 " for this Unsolicited DataOut Burst.\n",
348 (cmd
->first_burst_len
+ payload_length
),
349 conn
->sess
->sess_ops
->FirstBurstLength
);
350 transport_send_check_condition_and_sense(se_cmd
,
351 TCM_INCORRECT_AMOUNT_OF_DATA
, 0);
355 if (!(hdr
->flags
& ISCSI_FLAG_CMD_FINAL
))
358 if (((cmd
->first_burst_len
+ payload_length
) != cmd
->se_cmd
.data_length
) &&
359 ((cmd
->first_burst_len
+ payload_length
) !=
360 conn
->sess
->sess_ops
->FirstBurstLength
)) {
361 pr_err("Unsolicited non-immediate data received %u"
362 " does not equal FirstBurstLength: %u, and does"
363 " not equal ExpXferLen %u.\n",
364 (cmd
->first_burst_len
+ payload_length
),
365 conn
->sess
->sess_ops
->FirstBurstLength
, cmd
->se_cmd
.data_length
);
366 transport_send_check_condition_and_sense(se_cmd
,
367 TCM_INCORRECT_AMOUNT_OF_DATA
, 0);
373 struct iscsi_cmd
*iscsit_find_cmd_from_itt(
374 struct iscsi_conn
*conn
,
377 struct iscsi_cmd
*cmd
;
379 spin_lock_bh(&conn
->cmd_lock
);
380 list_for_each_entry(cmd
, &conn
->conn_cmd_list
, i_conn_node
) {
381 if (cmd
->init_task_tag
== init_task_tag
) {
382 spin_unlock_bh(&conn
->cmd_lock
);
386 spin_unlock_bh(&conn
->cmd_lock
);
388 pr_err("Unable to locate ITT: 0x%08x on CID: %hu",
389 init_task_tag
, conn
->cid
);
392 EXPORT_SYMBOL(iscsit_find_cmd_from_itt
);
394 struct iscsi_cmd
*iscsit_find_cmd_from_itt_or_dump(
395 struct iscsi_conn
*conn
,
399 struct iscsi_cmd
*cmd
;
401 spin_lock_bh(&conn
->cmd_lock
);
402 list_for_each_entry(cmd
, &conn
->conn_cmd_list
, i_conn_node
) {
403 if (cmd
->cmd_flags
& ICF_GOT_LAST_DATAOUT
)
405 if (cmd
->init_task_tag
== init_task_tag
) {
406 spin_unlock_bh(&conn
->cmd_lock
);
410 spin_unlock_bh(&conn
->cmd_lock
);
412 pr_err("Unable to locate ITT: 0x%08x on CID: %hu,"
413 " dumping payload\n", init_task_tag
, conn
->cid
);
415 iscsit_dump_data_payload(conn
, length
, 1);
420 struct iscsi_cmd
*iscsit_find_cmd_from_ttt(
421 struct iscsi_conn
*conn
,
424 struct iscsi_cmd
*cmd
= NULL
;
426 spin_lock_bh(&conn
->cmd_lock
);
427 list_for_each_entry(cmd
, &conn
->conn_cmd_list
, i_conn_node
) {
428 if (cmd
->targ_xfer_tag
== targ_xfer_tag
) {
429 spin_unlock_bh(&conn
->cmd_lock
);
433 spin_unlock_bh(&conn
->cmd_lock
);
435 pr_err("Unable to locate TTT: 0x%08x on CID: %hu\n",
436 targ_xfer_tag
, conn
->cid
);
440 int iscsit_find_cmd_for_recovery(
441 struct iscsi_session
*sess
,
442 struct iscsi_cmd
**cmd_ptr
,
443 struct iscsi_conn_recovery
**cr_ptr
,
446 struct iscsi_cmd
*cmd
= NULL
;
447 struct iscsi_conn_recovery
*cr
;
449 * Scan through the inactive connection recovery list's command list.
450 * If init_task_tag matches the command is still alligent.
452 spin_lock(&sess
->cr_i_lock
);
453 list_for_each_entry(cr
, &sess
->cr_inactive_list
, cr_list
) {
454 spin_lock(&cr
->conn_recovery_cmd_lock
);
455 list_for_each_entry(cmd
, &cr
->conn_recovery_cmd_list
, i_conn_node
) {
456 if (cmd
->init_task_tag
== init_task_tag
) {
457 spin_unlock(&cr
->conn_recovery_cmd_lock
);
458 spin_unlock(&sess
->cr_i_lock
);
465 spin_unlock(&cr
->conn_recovery_cmd_lock
);
467 spin_unlock(&sess
->cr_i_lock
);
469 * Scan through the active connection recovery list's command list.
470 * If init_task_tag matches the command is ready to be reassigned.
472 spin_lock(&sess
->cr_a_lock
);
473 list_for_each_entry(cr
, &sess
->cr_active_list
, cr_list
) {
474 spin_lock(&cr
->conn_recovery_cmd_lock
);
475 list_for_each_entry(cmd
, &cr
->conn_recovery_cmd_list
, i_conn_node
) {
476 if (cmd
->init_task_tag
== init_task_tag
) {
477 spin_unlock(&cr
->conn_recovery_cmd_lock
);
478 spin_unlock(&sess
->cr_a_lock
);
485 spin_unlock(&cr
->conn_recovery_cmd_lock
);
487 spin_unlock(&sess
->cr_a_lock
);
492 void iscsit_add_cmd_to_immediate_queue(
493 struct iscsi_cmd
*cmd
,
494 struct iscsi_conn
*conn
,
497 struct iscsi_queue_req
*qr
;
499 qr
= kmem_cache_zalloc(lio_qr_cache
, GFP_ATOMIC
);
501 pr_err("Unable to allocate memory for"
502 " struct iscsi_queue_req\n");
505 INIT_LIST_HEAD(&qr
->qr_list
);
509 spin_lock_bh(&conn
->immed_queue_lock
);
510 list_add_tail(&qr
->qr_list
, &conn
->immed_queue_list
);
511 atomic_inc(&cmd
->immed_queue_count
);
512 atomic_set(&conn
->check_immediate_queue
, 1);
513 spin_unlock_bh(&conn
->immed_queue_lock
);
515 wake_up(&conn
->queues_wq
);
518 struct iscsi_queue_req
*iscsit_get_cmd_from_immediate_queue(struct iscsi_conn
*conn
)
520 struct iscsi_queue_req
*qr
;
522 spin_lock_bh(&conn
->immed_queue_lock
);
523 if (list_empty(&conn
->immed_queue_list
)) {
524 spin_unlock_bh(&conn
->immed_queue_lock
);
527 qr
= list_first_entry(&conn
->immed_queue_list
,
528 struct iscsi_queue_req
, qr_list
);
530 list_del(&qr
->qr_list
);
532 atomic_dec(&qr
->cmd
->immed_queue_count
);
533 spin_unlock_bh(&conn
->immed_queue_lock
);
538 static void iscsit_remove_cmd_from_immediate_queue(
539 struct iscsi_cmd
*cmd
,
540 struct iscsi_conn
*conn
)
542 struct iscsi_queue_req
*qr
, *qr_tmp
;
544 spin_lock_bh(&conn
->immed_queue_lock
);
545 if (!atomic_read(&cmd
->immed_queue_count
)) {
546 spin_unlock_bh(&conn
->immed_queue_lock
);
550 list_for_each_entry_safe(qr
, qr_tmp
, &conn
->immed_queue_list
, qr_list
) {
554 atomic_dec(&qr
->cmd
->immed_queue_count
);
555 list_del(&qr
->qr_list
);
556 kmem_cache_free(lio_qr_cache
, qr
);
558 spin_unlock_bh(&conn
->immed_queue_lock
);
560 if (atomic_read(&cmd
->immed_queue_count
)) {
561 pr_err("ITT: 0x%08x immed_queue_count: %d\n",
563 atomic_read(&cmd
->immed_queue_count
));
567 void iscsit_add_cmd_to_response_queue(
568 struct iscsi_cmd
*cmd
,
569 struct iscsi_conn
*conn
,
572 struct iscsi_queue_req
*qr
;
574 qr
= kmem_cache_zalloc(lio_qr_cache
, GFP_ATOMIC
);
576 pr_err("Unable to allocate memory for"
577 " struct iscsi_queue_req\n");
580 INIT_LIST_HEAD(&qr
->qr_list
);
584 spin_lock_bh(&conn
->response_queue_lock
);
585 list_add_tail(&qr
->qr_list
, &conn
->response_queue_list
);
586 atomic_inc(&cmd
->response_queue_count
);
587 spin_unlock_bh(&conn
->response_queue_lock
);
589 wake_up(&conn
->queues_wq
);
592 struct iscsi_queue_req
*iscsit_get_cmd_from_response_queue(struct iscsi_conn
*conn
)
594 struct iscsi_queue_req
*qr
;
596 spin_lock_bh(&conn
->response_queue_lock
);
597 if (list_empty(&conn
->response_queue_list
)) {
598 spin_unlock_bh(&conn
->response_queue_lock
);
602 qr
= list_first_entry(&conn
->response_queue_list
,
603 struct iscsi_queue_req
, qr_list
);
605 list_del(&qr
->qr_list
);
607 atomic_dec(&qr
->cmd
->response_queue_count
);
608 spin_unlock_bh(&conn
->response_queue_lock
);
613 static void iscsit_remove_cmd_from_response_queue(
614 struct iscsi_cmd
*cmd
,
615 struct iscsi_conn
*conn
)
617 struct iscsi_queue_req
*qr
, *qr_tmp
;
619 spin_lock_bh(&conn
->response_queue_lock
);
620 if (!atomic_read(&cmd
->response_queue_count
)) {
621 spin_unlock_bh(&conn
->response_queue_lock
);
625 list_for_each_entry_safe(qr
, qr_tmp
, &conn
->response_queue_list
,
630 atomic_dec(&qr
->cmd
->response_queue_count
);
631 list_del(&qr
->qr_list
);
632 kmem_cache_free(lio_qr_cache
, qr
);
634 spin_unlock_bh(&conn
->response_queue_lock
);
636 if (atomic_read(&cmd
->response_queue_count
)) {
637 pr_err("ITT: 0x%08x response_queue_count: %d\n",
639 atomic_read(&cmd
->response_queue_count
));
643 bool iscsit_conn_all_queues_empty(struct iscsi_conn
*conn
)
647 spin_lock_bh(&conn
->immed_queue_lock
);
648 empty
= list_empty(&conn
->immed_queue_list
);
649 spin_unlock_bh(&conn
->immed_queue_lock
);
654 spin_lock_bh(&conn
->response_queue_lock
);
655 empty
= list_empty(&conn
->response_queue_list
);
656 spin_unlock_bh(&conn
->response_queue_lock
);
661 void iscsit_free_queue_reqs_for_conn(struct iscsi_conn
*conn
)
663 struct iscsi_queue_req
*qr
, *qr_tmp
;
665 spin_lock_bh(&conn
->immed_queue_lock
);
666 list_for_each_entry_safe(qr
, qr_tmp
, &conn
->immed_queue_list
, qr_list
) {
667 list_del(&qr
->qr_list
);
669 atomic_dec(&qr
->cmd
->immed_queue_count
);
671 kmem_cache_free(lio_qr_cache
, qr
);
673 spin_unlock_bh(&conn
->immed_queue_lock
);
675 spin_lock_bh(&conn
->response_queue_lock
);
676 list_for_each_entry_safe(qr
, qr_tmp
, &conn
->response_queue_list
,
678 list_del(&qr
->qr_list
);
680 atomic_dec(&qr
->cmd
->response_queue_count
);
682 kmem_cache_free(lio_qr_cache
, qr
);
684 spin_unlock_bh(&conn
->response_queue_lock
);
687 void iscsit_release_cmd(struct iscsi_cmd
*cmd
)
689 struct iscsi_session
*sess
;
690 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
693 sess
= cmd
->conn
->sess
;
697 BUG_ON(!sess
|| !sess
->se_sess
);
700 kfree(cmd
->pdu_list
);
701 kfree(cmd
->seq_list
);
703 kfree(cmd
->iov_data
);
704 kfree(cmd
->text_in_ptr
);
706 percpu_ida_free(&sess
->se_sess
->sess_tag_pool
, se_cmd
->map_tag
);
708 EXPORT_SYMBOL(iscsit_release_cmd
);
710 void __iscsit_free_cmd(struct iscsi_cmd
*cmd
, bool scsi_cmd
,
713 struct iscsi_conn
*conn
= cmd
->conn
;
716 if (cmd
->data_direction
== DMA_TO_DEVICE
) {
717 iscsit_stop_dataout_timer(cmd
);
718 iscsit_free_r2ts_from_list(cmd
);
720 if (cmd
->data_direction
== DMA_FROM_DEVICE
)
721 iscsit_free_all_datain_reqs(cmd
);
724 if (conn
&& check_queues
) {
725 iscsit_remove_cmd_from_immediate_queue(cmd
, conn
);
726 iscsit_remove_cmd_from_response_queue(cmd
, conn
);
730 void iscsit_free_cmd(struct iscsi_cmd
*cmd
, bool shutdown
)
732 struct se_cmd
*se_cmd
= NULL
;
735 * Determine if a struct se_cmd is associated with
736 * this struct iscsi_cmd.
738 switch (cmd
->iscsi_opcode
) {
739 case ISCSI_OP_SCSI_CMD
:
740 se_cmd
= &cmd
->se_cmd
;
741 __iscsit_free_cmd(cmd
, true, shutdown
);
745 case ISCSI_OP_SCSI_TMFUNC
:
746 rc
= transport_generic_free_cmd(&cmd
->se_cmd
, shutdown
);
747 if (!rc
&& shutdown
&& se_cmd
&& se_cmd
->se_sess
) {
748 __iscsit_free_cmd(cmd
, true, shutdown
);
749 target_put_sess_cmd(se_cmd
);
752 case ISCSI_OP_REJECT
:
754 * Handle special case for REJECT when iscsi_add_reject*() has
755 * overwritten the original iscsi_opcode assignment, and the
756 * associated cmd->se_cmd needs to be released.
758 if (cmd
->se_cmd
.se_tfo
!= NULL
) {
759 se_cmd
= &cmd
->se_cmd
;
760 __iscsit_free_cmd(cmd
, true, shutdown
);
762 rc
= transport_generic_free_cmd(&cmd
->se_cmd
, shutdown
);
763 if (!rc
&& shutdown
&& se_cmd
->se_sess
) {
764 __iscsit_free_cmd(cmd
, true, shutdown
);
765 target_put_sess_cmd(se_cmd
);
771 __iscsit_free_cmd(cmd
, false, shutdown
);
772 iscsit_release_cmd(cmd
);
777 int iscsit_check_session_usage_count(struct iscsi_session
*sess
)
779 spin_lock_bh(&sess
->session_usage_lock
);
780 if (sess
->session_usage_count
!= 0) {
781 sess
->session_waiting_on_uc
= 1;
782 spin_unlock_bh(&sess
->session_usage_lock
);
786 wait_for_completion(&sess
->session_waiting_on_uc_comp
);
789 spin_unlock_bh(&sess
->session_usage_lock
);
794 void iscsit_dec_session_usage_count(struct iscsi_session
*sess
)
796 spin_lock_bh(&sess
->session_usage_lock
);
797 sess
->session_usage_count
--;
799 if (!sess
->session_usage_count
&& sess
->session_waiting_on_uc
)
800 complete(&sess
->session_waiting_on_uc_comp
);
802 spin_unlock_bh(&sess
->session_usage_lock
);
805 void iscsit_inc_session_usage_count(struct iscsi_session
*sess
)
807 spin_lock_bh(&sess
->session_usage_lock
);
808 sess
->session_usage_count
++;
809 spin_unlock_bh(&sess
->session_usage_lock
);
812 struct iscsi_conn
*iscsit_get_conn_from_cid(struct iscsi_session
*sess
, u16 cid
)
814 struct iscsi_conn
*conn
;
816 spin_lock_bh(&sess
->conn_lock
);
817 list_for_each_entry(conn
, &sess
->sess_conn_list
, conn_list
) {
818 if ((conn
->cid
== cid
) &&
819 (conn
->conn_state
== TARG_CONN_STATE_LOGGED_IN
)) {
820 iscsit_inc_conn_usage_count(conn
);
821 spin_unlock_bh(&sess
->conn_lock
);
825 spin_unlock_bh(&sess
->conn_lock
);
830 struct iscsi_conn
*iscsit_get_conn_from_cid_rcfr(struct iscsi_session
*sess
, u16 cid
)
832 struct iscsi_conn
*conn
;
834 spin_lock_bh(&sess
->conn_lock
);
835 list_for_each_entry(conn
, &sess
->sess_conn_list
, conn_list
) {
836 if (conn
->cid
== cid
) {
837 iscsit_inc_conn_usage_count(conn
);
838 spin_lock(&conn
->state_lock
);
839 atomic_set(&conn
->connection_wait_rcfr
, 1);
840 spin_unlock(&conn
->state_lock
);
841 spin_unlock_bh(&sess
->conn_lock
);
845 spin_unlock_bh(&sess
->conn_lock
);
850 void iscsit_check_conn_usage_count(struct iscsi_conn
*conn
)
852 spin_lock_bh(&conn
->conn_usage_lock
);
853 if (conn
->conn_usage_count
!= 0) {
854 conn
->conn_waiting_on_uc
= 1;
855 spin_unlock_bh(&conn
->conn_usage_lock
);
857 wait_for_completion(&conn
->conn_waiting_on_uc_comp
);
860 spin_unlock_bh(&conn
->conn_usage_lock
);
863 void iscsit_dec_conn_usage_count(struct iscsi_conn
*conn
)
865 spin_lock_bh(&conn
->conn_usage_lock
);
866 conn
->conn_usage_count
--;
868 if (!conn
->conn_usage_count
&& conn
->conn_waiting_on_uc
)
869 complete(&conn
->conn_waiting_on_uc_comp
);
871 spin_unlock_bh(&conn
->conn_usage_lock
);
874 void iscsit_inc_conn_usage_count(struct iscsi_conn
*conn
)
876 spin_lock_bh(&conn
->conn_usage_lock
);
877 conn
->conn_usage_count
++;
878 spin_unlock_bh(&conn
->conn_usage_lock
);
881 static int iscsit_add_nopin(struct iscsi_conn
*conn
, int want_response
)
884 struct iscsi_cmd
*cmd
;
886 cmd
= iscsit_allocate_cmd(conn
, TASK_RUNNING
);
890 cmd
->iscsi_opcode
= ISCSI_OP_NOOP_IN
;
891 state
= (want_response
) ? ISTATE_SEND_NOPIN_WANT_RESPONSE
:
892 ISTATE_SEND_NOPIN_NO_RESPONSE
;
893 cmd
->init_task_tag
= RESERVED_ITT
;
894 cmd
->targ_xfer_tag
= (want_response
) ?
895 session_get_next_ttt(conn
->sess
) : 0xFFFFFFFF;
896 spin_lock_bh(&conn
->cmd_lock
);
897 list_add_tail(&cmd
->i_conn_node
, &conn
->conn_cmd_list
);
898 spin_unlock_bh(&conn
->cmd_lock
);
901 iscsit_start_nopin_response_timer(conn
);
902 iscsit_add_cmd_to_immediate_queue(cmd
, conn
, state
);
907 static void iscsit_handle_nopin_response_timeout(unsigned long data
)
909 struct iscsi_conn
*conn
= (struct iscsi_conn
*) data
;
911 iscsit_inc_conn_usage_count(conn
);
913 spin_lock_bh(&conn
->nopin_timer_lock
);
914 if (conn
->nopin_response_timer_flags
& ISCSI_TF_STOP
) {
915 spin_unlock_bh(&conn
->nopin_timer_lock
);
916 iscsit_dec_conn_usage_count(conn
);
920 pr_debug("Did not receive response to NOPIN on CID: %hu on"
921 " SID: %u, failing connection.\n", conn
->cid
,
923 conn
->nopin_response_timer_flags
&= ~ISCSI_TF_RUNNING
;
924 spin_unlock_bh(&conn
->nopin_timer_lock
);
927 struct iscsi_portal_group
*tpg
= conn
->sess
->tpg
;
928 struct iscsi_tiqn
*tiqn
= tpg
->tpg_tiqn
;
931 spin_lock_bh(&tiqn
->sess_err_stats
.lock
);
932 strcpy(tiqn
->sess_err_stats
.last_sess_fail_rem_name
,
933 conn
->sess
->sess_ops
->InitiatorName
);
934 tiqn
->sess_err_stats
.last_sess_failure_type
=
935 ISCSI_SESS_ERR_CXN_TIMEOUT
;
936 tiqn
->sess_err_stats
.cxn_timeout_errors
++;
937 atomic_long_inc(&conn
->sess
->conn_timeout_errors
);
938 spin_unlock_bh(&tiqn
->sess_err_stats
.lock
);
942 iscsit_cause_connection_reinstatement(conn
, 0);
943 iscsit_dec_conn_usage_count(conn
);
946 void iscsit_mod_nopin_response_timer(struct iscsi_conn
*conn
)
948 struct iscsi_session
*sess
= conn
->sess
;
949 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
951 spin_lock_bh(&conn
->nopin_timer_lock
);
952 if (!(conn
->nopin_response_timer_flags
& ISCSI_TF_RUNNING
)) {
953 spin_unlock_bh(&conn
->nopin_timer_lock
);
957 mod_timer(&conn
->nopin_response_timer
,
958 (get_jiffies_64() + na
->nopin_response_timeout
* HZ
));
959 spin_unlock_bh(&conn
->nopin_timer_lock
);
963 * Called with conn->nopin_timer_lock held.
965 void iscsit_start_nopin_response_timer(struct iscsi_conn
*conn
)
967 struct iscsi_session
*sess
= conn
->sess
;
968 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
970 spin_lock_bh(&conn
->nopin_timer_lock
);
971 if (conn
->nopin_response_timer_flags
& ISCSI_TF_RUNNING
) {
972 spin_unlock_bh(&conn
->nopin_timer_lock
);
976 init_timer(&conn
->nopin_response_timer
);
977 conn
->nopin_response_timer
.expires
=
978 (get_jiffies_64() + na
->nopin_response_timeout
* HZ
);
979 conn
->nopin_response_timer
.data
= (unsigned long)conn
;
980 conn
->nopin_response_timer
.function
= iscsit_handle_nopin_response_timeout
;
981 conn
->nopin_response_timer_flags
&= ~ISCSI_TF_STOP
;
982 conn
->nopin_response_timer_flags
|= ISCSI_TF_RUNNING
;
983 add_timer(&conn
->nopin_response_timer
);
985 pr_debug("Started NOPIN Response Timer on CID: %d to %u"
986 " seconds\n", conn
->cid
, na
->nopin_response_timeout
);
987 spin_unlock_bh(&conn
->nopin_timer_lock
);
990 void iscsit_stop_nopin_response_timer(struct iscsi_conn
*conn
)
992 spin_lock_bh(&conn
->nopin_timer_lock
);
993 if (!(conn
->nopin_response_timer_flags
& ISCSI_TF_RUNNING
)) {
994 spin_unlock_bh(&conn
->nopin_timer_lock
);
997 conn
->nopin_response_timer_flags
|= ISCSI_TF_STOP
;
998 spin_unlock_bh(&conn
->nopin_timer_lock
);
1000 del_timer_sync(&conn
->nopin_response_timer
);
1002 spin_lock_bh(&conn
->nopin_timer_lock
);
1003 conn
->nopin_response_timer_flags
&= ~ISCSI_TF_RUNNING
;
1004 spin_unlock_bh(&conn
->nopin_timer_lock
);
1007 static void iscsit_handle_nopin_timeout(unsigned long data
)
1009 struct iscsi_conn
*conn
= (struct iscsi_conn
*) data
;
1011 iscsit_inc_conn_usage_count(conn
);
1013 spin_lock_bh(&conn
->nopin_timer_lock
);
1014 if (conn
->nopin_timer_flags
& ISCSI_TF_STOP
) {
1015 spin_unlock_bh(&conn
->nopin_timer_lock
);
1016 iscsit_dec_conn_usage_count(conn
);
1019 conn
->nopin_timer_flags
&= ~ISCSI_TF_RUNNING
;
1020 spin_unlock_bh(&conn
->nopin_timer_lock
);
1022 iscsit_add_nopin(conn
, 1);
1023 iscsit_dec_conn_usage_count(conn
);
1027 * Called with conn->nopin_timer_lock held.
1029 void __iscsit_start_nopin_timer(struct iscsi_conn
*conn
)
1031 struct iscsi_session
*sess
= conn
->sess
;
1032 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
1034 * NOPIN timeout is disabled.
1036 if (!na
->nopin_timeout
)
1039 if (conn
->nopin_timer_flags
& ISCSI_TF_RUNNING
)
1042 init_timer(&conn
->nopin_timer
);
1043 conn
->nopin_timer
.expires
= (get_jiffies_64() + na
->nopin_timeout
* HZ
);
1044 conn
->nopin_timer
.data
= (unsigned long)conn
;
1045 conn
->nopin_timer
.function
= iscsit_handle_nopin_timeout
;
1046 conn
->nopin_timer_flags
&= ~ISCSI_TF_STOP
;
1047 conn
->nopin_timer_flags
|= ISCSI_TF_RUNNING
;
1048 add_timer(&conn
->nopin_timer
);
1050 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1051 " interval\n", conn
->cid
, na
->nopin_timeout
);
1054 void iscsit_start_nopin_timer(struct iscsi_conn
*conn
)
1056 struct iscsi_session
*sess
= conn
->sess
;
1057 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
1059 * NOPIN timeout is disabled..
1061 if (!na
->nopin_timeout
)
1064 spin_lock_bh(&conn
->nopin_timer_lock
);
1065 if (conn
->nopin_timer_flags
& ISCSI_TF_RUNNING
) {
1066 spin_unlock_bh(&conn
->nopin_timer_lock
);
1070 init_timer(&conn
->nopin_timer
);
1071 conn
->nopin_timer
.expires
= (get_jiffies_64() + na
->nopin_timeout
* HZ
);
1072 conn
->nopin_timer
.data
= (unsigned long)conn
;
1073 conn
->nopin_timer
.function
= iscsit_handle_nopin_timeout
;
1074 conn
->nopin_timer_flags
&= ~ISCSI_TF_STOP
;
1075 conn
->nopin_timer_flags
|= ISCSI_TF_RUNNING
;
1076 add_timer(&conn
->nopin_timer
);
1078 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1079 " interval\n", conn
->cid
, na
->nopin_timeout
);
1080 spin_unlock_bh(&conn
->nopin_timer_lock
);
1083 void iscsit_stop_nopin_timer(struct iscsi_conn
*conn
)
1085 spin_lock_bh(&conn
->nopin_timer_lock
);
1086 if (!(conn
->nopin_timer_flags
& ISCSI_TF_RUNNING
)) {
1087 spin_unlock_bh(&conn
->nopin_timer_lock
);
1090 conn
->nopin_timer_flags
|= ISCSI_TF_STOP
;
1091 spin_unlock_bh(&conn
->nopin_timer_lock
);
1093 del_timer_sync(&conn
->nopin_timer
);
1095 spin_lock_bh(&conn
->nopin_timer_lock
);
1096 conn
->nopin_timer_flags
&= ~ISCSI_TF_RUNNING
;
1097 spin_unlock_bh(&conn
->nopin_timer_lock
);
1100 int iscsit_send_tx_data(
1101 struct iscsi_cmd
*cmd
,
1102 struct iscsi_conn
*conn
,
1105 int tx_sent
, tx_size
;
1110 tx_size
= cmd
->tx_size
;
1113 iov
= &cmd
->iov_data
[0];
1114 iov_count
= cmd
->iov_data_count
;
1116 iov
= &cmd
->iov_misc
[0];
1117 iov_count
= cmd
->iov_misc_count
;
1120 tx_sent
= tx_data(conn
, &iov
[0], iov_count
, tx_size
);
1121 if (tx_size
!= tx_sent
) {
1122 if (tx_sent
== -EAGAIN
) {
1123 pr_err("tx_data() returned -EAGAIN\n");
1133 int iscsit_fe_sendpage_sg(
1134 struct iscsi_cmd
*cmd
,
1135 struct iscsi_conn
*conn
)
1137 struct scatterlist
*sg
= cmd
->first_data_sg
;
1139 u32 tx_hdr_size
, data_len
;
1140 u32 offset
= cmd
->first_data_sg_off
;
1141 int tx_sent
, iov_off
;
1144 tx_hdr_size
= ISCSI_HDR_LEN
;
1145 if (conn
->conn_ops
->HeaderDigest
)
1146 tx_hdr_size
+= ISCSI_CRC_LEN
;
1148 iov
.iov_base
= cmd
->pdu
;
1149 iov
.iov_len
= tx_hdr_size
;
1151 tx_sent
= tx_data(conn
, &iov
, 1, tx_hdr_size
);
1152 if (tx_hdr_size
!= tx_sent
) {
1153 if (tx_sent
== -EAGAIN
) {
1154 pr_err("tx_data() returned -EAGAIN\n");
1160 data_len
= cmd
->tx_size
- tx_hdr_size
- cmd
->padding
;
1162 * Set iov_off used by padding and data digest tx_data() calls below
1163 * in order to determine proper offset into cmd->iov_data[]
1165 if (conn
->conn_ops
->DataDigest
) {
1166 data_len
-= ISCSI_CRC_LEN
;
1168 iov_off
= (cmd
->iov_data_count
- 2);
1170 iov_off
= (cmd
->iov_data_count
- 1);
1172 iov_off
= (cmd
->iov_data_count
- 1);
1175 * Perform sendpage() for each page in the scatterlist
1178 u32 space
= (sg
->length
- offset
);
1179 u32 sub_len
= min_t(u32
, data_len
, space
);
1181 tx_sent
= conn
->sock
->ops
->sendpage(conn
->sock
,
1182 sg_page(sg
), sg
->offset
+ offset
, sub_len
, 0);
1183 if (tx_sent
!= sub_len
) {
1184 if (tx_sent
== -EAGAIN
) {
1185 pr_err("tcp_sendpage() returned"
1190 pr_err("tcp_sendpage() failure: %d\n",
1195 data_len
-= sub_len
;
1202 struct kvec
*iov_p
= &cmd
->iov_data
[iov_off
++];
1204 tx_sent
= tx_data(conn
, iov_p
, 1, cmd
->padding
);
1205 if (cmd
->padding
!= tx_sent
) {
1206 if (tx_sent
== -EAGAIN
) {
1207 pr_err("tx_data() returned -EAGAIN\n");
1215 if (conn
->conn_ops
->DataDigest
) {
1216 struct kvec
*iov_d
= &cmd
->iov_data
[iov_off
];
1218 tx_sent
= tx_data(conn
, iov_d
, 1, ISCSI_CRC_LEN
);
1219 if (ISCSI_CRC_LEN
!= tx_sent
) {
1220 if (tx_sent
== -EAGAIN
) {
1221 pr_err("tx_data() returned -EAGAIN\n");
1232 * This function is used for mainly sending a ISCSI_TARG_LOGIN_RSP PDU
1233 * back to the Initiator when an expection condition occurs with the
1234 * errors set in status_class and status_detail.
1236 * Parameters: iSCSI Connection, Status Class, Status Detail.
1237 * Returns: 0 on success, -1 on error.
1239 int iscsit_tx_login_rsp(struct iscsi_conn
*conn
, u8 status_class
, u8 status_detail
)
1241 struct iscsi_login_rsp
*hdr
;
1242 struct iscsi_login
*login
= conn
->conn_login
;
1244 login
->login_failed
= 1;
1245 iscsit_collect_login_stats(conn
, status_class
, status_detail
);
1247 memset(&login
->rsp
[0], 0, ISCSI_HDR_LEN
);
1249 hdr
= (struct iscsi_login_rsp
*)&login
->rsp
[0];
1250 hdr
->opcode
= ISCSI_OP_LOGIN_RSP
;
1251 hdr
->status_class
= status_class
;
1252 hdr
->status_detail
= status_detail
;
1253 hdr
->itt
= conn
->login_itt
;
1255 return conn
->conn_transport
->iscsit_put_login_tx(conn
, login
, 0);
1258 void iscsit_print_session_params(struct iscsi_session
*sess
)
1260 struct iscsi_conn
*conn
;
1262 pr_debug("-----------------------------[Session Params for"
1263 " SID: %u]-----------------------------\n", sess
->sid
);
1264 spin_lock_bh(&sess
->conn_lock
);
1265 list_for_each_entry(conn
, &sess
->sess_conn_list
, conn_list
)
1266 iscsi_dump_conn_ops(conn
->conn_ops
);
1267 spin_unlock_bh(&sess
->conn_lock
);
1269 iscsi_dump_sess_ops(sess
->sess_ops
);
1272 static int iscsit_do_rx_data(
1273 struct iscsi_conn
*conn
,
1274 struct iscsi_data_count
*count
)
1276 int data
= count
->data_length
, rx_loop
= 0, total_rx
= 0;
1279 if (!conn
|| !conn
->sock
|| !conn
->conn_ops
)
1282 memset(&msg
, 0, sizeof(struct msghdr
));
1283 iov_iter_kvec(&msg
.msg_iter
, READ
| ITER_KVEC
,
1284 count
->iov
, count
->iov_count
, data
);
1286 while (total_rx
< data
) {
1287 rx_loop
= sock_recvmsg(conn
->sock
, &msg
,
1288 (data
- total_rx
), MSG_WAITALL
);
1290 pr_debug("rx_loop: %d total_rx: %d\n",
1294 total_rx
+= rx_loop
;
1295 pr_debug("rx_loop: %d, total_rx: %d, data: %d\n",
1296 rx_loop
, total_rx
, data
);
1302 static int iscsit_do_tx_data(
1303 struct iscsi_conn
*conn
,
1304 struct iscsi_data_count
*count
)
1310 if (!conn
|| !conn
->sock
|| !conn
->conn_ops
)
1313 if (count
->data_length
<= 0) {
1314 pr_err("Data length is: %d\n", count
->data_length
);
1318 memset(&msg
, 0, sizeof(struct msghdr
));
1321 iov_len
= count
->iov_count
;
1323 ret
= kernel_sendmsg(conn
->sock
, &msg
, iov_p
, iov_len
,
1324 count
->data_length
);
1325 if (ret
!= count
->data_length
) {
1326 pr_err("Unexpected ret: %d send data %d\n",
1327 ret
, count
->data_length
);
1330 pr_debug("ret: %d, sent data: %d\n", ret
, count
->data_length
);
1336 struct iscsi_conn
*conn
,
1341 struct iscsi_data_count c
;
1343 if (!conn
|| !conn
->sock
|| !conn
->conn_ops
)
1346 memset(&c
, 0, sizeof(struct iscsi_data_count
));
1348 c
.iov_count
= iov_count
;
1349 c
.data_length
= data
;
1350 c
.type
= ISCSI_RX_DATA
;
1352 return iscsit_do_rx_data(conn
, &c
);
1356 struct iscsi_conn
*conn
,
1361 struct iscsi_data_count c
;
1363 if (!conn
|| !conn
->sock
|| !conn
->conn_ops
)
1366 memset(&c
, 0, sizeof(struct iscsi_data_count
));
1368 c
.iov_count
= iov_count
;
1369 c
.data_length
= data
;
1370 c
.type
= ISCSI_TX_DATA
;
1372 return iscsit_do_tx_data(conn
, &c
);
1375 static bool sockaddr_equal(struct sockaddr_storage
*x
, struct sockaddr_storage
*y
)
1377 switch (x
->ss_family
) {
1379 struct sockaddr_in
*sinx
= (struct sockaddr_in
*)x
;
1380 struct sockaddr_in
*siny
= (struct sockaddr_in
*)y
;
1381 if (sinx
->sin_addr
.s_addr
!= siny
->sin_addr
.s_addr
)
1383 if (sinx
->sin_port
!= siny
->sin_port
)
1388 struct sockaddr_in6
*sinx
= (struct sockaddr_in6
*)x
;
1389 struct sockaddr_in6
*siny
= (struct sockaddr_in6
*)y
;
1390 if (!ipv6_addr_equal(&sinx
->sin6_addr
, &siny
->sin6_addr
))
1392 if (sinx
->sin6_port
!= siny
->sin6_port
)
1402 void iscsit_collect_login_stats(
1403 struct iscsi_conn
*conn
,
1407 struct iscsi_param
*intrname
= NULL
;
1408 struct iscsi_tiqn
*tiqn
;
1409 struct iscsi_login_stats
*ls
;
1411 tiqn
= iscsit_snmp_get_tiqn(conn
);
1415 ls
= &tiqn
->login_stats
;
1417 spin_lock(&ls
->lock
);
1418 if (sockaddr_equal(&conn
->login_sockaddr
, &ls
->last_intr_fail_sockaddr
) &&
1419 ((get_jiffies_64() - ls
->last_fail_time
) < 10)) {
1420 /* We already have the failure info for this login */
1421 spin_unlock(&ls
->lock
);
1425 if (status_class
== ISCSI_STATUS_CLS_SUCCESS
)
1427 else if (status_class
== ISCSI_STATUS_CLS_REDIRECT
) {
1429 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_REDIRECT
;
1430 } else if ((status_class
== ISCSI_STATUS_CLS_INITIATOR_ERR
) &&
1431 (status_detail
== ISCSI_LOGIN_STATUS_AUTH_FAILED
)) {
1432 ls
->authenticate_fails
++;
1433 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_AUTHENTICATE
;
1434 } else if ((status_class
== ISCSI_STATUS_CLS_INITIATOR_ERR
) &&
1435 (status_detail
== ISCSI_LOGIN_STATUS_TGT_FORBIDDEN
)) {
1436 ls
->authorize_fails
++;
1437 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_AUTHORIZE
;
1438 } else if ((status_class
== ISCSI_STATUS_CLS_INITIATOR_ERR
) &&
1439 (status_detail
== ISCSI_LOGIN_STATUS_INIT_ERR
)) {
1440 ls
->negotiate_fails
++;
1441 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_NEGOTIATE
;
1444 ls
->last_fail_type
= ISCSI_LOGIN_FAIL_OTHER
;
1447 /* Save initiator name, ip address and time, if it is a failed login */
1448 if (status_class
!= ISCSI_STATUS_CLS_SUCCESS
) {
1449 if (conn
->param_list
)
1450 intrname
= iscsi_find_param_from_key(INITIATORNAME
,
1452 strlcpy(ls
->last_intr_fail_name
,
1453 (intrname
? intrname
->value
: "Unknown"),
1454 sizeof(ls
->last_intr_fail_name
));
1456 ls
->last_intr_fail_ip_family
= conn
->login_family
;
1458 ls
->last_intr_fail_sockaddr
= conn
->login_sockaddr
;
1459 ls
->last_fail_time
= get_jiffies_64();
1462 spin_unlock(&ls
->lock
);
1465 struct iscsi_tiqn
*iscsit_snmp_get_tiqn(struct iscsi_conn
*conn
)
1467 struct iscsi_portal_group
*tpg
;
1469 if (!conn
|| !conn
->sess
)
1472 tpg
= conn
->sess
->tpg
;
1479 return tpg
->tpg_tiqn
;