1 /*******************************************************************************
2 * This file contains the iSCSI Target specific Task Management functions.
4 * \u00a9 Copyright 2007-2011 RisingTide Systems LLC.
6 * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
8 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
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.
19 ******************************************************************************/
21 #include <asm/unaligned.h>
22 #include <scsi/iscsi_proto.h>
23 #include <target/target_core_base.h>
24 #include <target/target_core_fabric.h>
26 #include "iscsi_target_core.h"
27 #include "iscsi_target_seq_pdu_list.h"
28 #include "iscsi_target_datain_values.h"
29 #include "iscsi_target_device.h"
30 #include "iscsi_target_erl0.h"
31 #include "iscsi_target_erl1.h"
32 #include "iscsi_target_erl2.h"
33 #include "iscsi_target_tmr.h"
34 #include "iscsi_target_tpg.h"
35 #include "iscsi_target_util.h"
36 #include "iscsi_target.h"
38 u8
iscsit_tmr_abort_task(
39 struct iscsi_cmd
*cmd
,
42 struct iscsi_cmd
*ref_cmd
;
43 struct iscsi_conn
*conn
= cmd
->conn
;
44 struct iscsi_tmr_req
*tmr_req
= cmd
->tmr_req
;
45 struct se_tmr_req
*se_tmr
= cmd
->se_cmd
.se_tmr_req
;
46 struct iscsi_tm
*hdr
= (struct iscsi_tm
*) buf
;
48 ref_cmd
= iscsit_find_cmd_from_itt(conn
, hdr
->rtt
);
50 pr_err("Unable to locate RefTaskTag: 0x%08x on CID:"
51 " %hu.\n", hdr
->rtt
, conn
->cid
);
52 return ((hdr
->refcmdsn
>= conn
->sess
->exp_cmd_sn
) &&
53 (hdr
->refcmdsn
<= conn
->sess
->max_cmd_sn
)) ?
54 ISCSI_TMF_RSP_COMPLETE
: ISCSI_TMF_RSP_NO_TASK
;
56 if (ref_cmd
->cmd_sn
!= hdr
->refcmdsn
) {
57 pr_err("RefCmdSN 0x%08x does not equal"
58 " task's CmdSN 0x%08x. Rejecting ABORT_TASK.\n",
59 hdr
->refcmdsn
, ref_cmd
->cmd_sn
);
60 return ISCSI_TMF_RSP_REJECTED
;
63 se_tmr
->ref_task_tag
= hdr
->rtt
;
64 se_tmr
->ref_cmd
= &ref_cmd
->se_cmd
;
65 tmr_req
->ref_cmd_sn
= hdr
->refcmdsn
;
66 tmr_req
->exp_data_sn
= hdr
->exp_datasn
;
68 return ISCSI_TMF_RSP_COMPLETE
;
72 * Called from iscsit_handle_task_mgt_cmd().
74 int iscsit_tmr_task_warm_reset(
75 struct iscsi_conn
*conn
,
76 struct iscsi_tmr_req
*tmr_req
,
79 struct iscsi_session
*sess
= conn
->sess
;
80 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
82 struct iscsi_init_task_mgt_cmnd
*hdr
=
83 (struct iscsi_init_task_mgt_cmnd
*) buf
;
85 if (!na
->tmr_warm_reset
) {
86 pr_err("TMR Opcode TARGET_WARM_RESET authorization"
87 " failed for Initiator Node: %s\n",
88 sess
->se_sess
->se_node_acl
->initiatorname
);
92 * Do the real work in transport_generic_do_tmr().
97 int iscsit_tmr_task_cold_reset(
98 struct iscsi_conn
*conn
,
99 struct iscsi_tmr_req
*tmr_req
,
102 struct iscsi_session
*sess
= conn
->sess
;
103 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
105 if (!na
->tmr_cold_reset
) {
106 pr_err("TMR Opcode TARGET_COLD_RESET authorization"
107 " failed for Initiator Node: %s\n",
108 sess
->se_sess
->se_node_acl
->initiatorname
);
112 * Do the real work in transport_generic_do_tmr().
117 u8
iscsit_tmr_task_reassign(
118 struct iscsi_cmd
*cmd
,
121 struct iscsi_cmd
*ref_cmd
= NULL
;
122 struct iscsi_conn
*conn
= cmd
->conn
;
123 struct iscsi_conn_recovery
*cr
= NULL
;
124 struct iscsi_tmr_req
*tmr_req
= cmd
->tmr_req
;
125 struct se_tmr_req
*se_tmr
= cmd
->se_cmd
.se_tmr_req
;
126 struct iscsi_tm
*hdr
= (struct iscsi_tm
*) buf
;
129 pr_debug("Got TASK_REASSIGN TMR ITT: 0x%08x,"
130 " RefTaskTag: 0x%08x, ExpDataSN: 0x%08x, CID: %hu\n",
131 hdr
->itt
, hdr
->rtt
, hdr
->exp_datasn
, conn
->cid
);
133 if (conn
->sess
->sess_ops
->ErrorRecoveryLevel
!= 2) {
134 pr_err("TMR TASK_REASSIGN not supported in ERL<2,"
135 " ignoring request.\n");
136 return ISCSI_TMF_RSP_NOT_SUPPORTED
;
139 ret
= iscsit_find_cmd_for_recovery(conn
->sess
, &ref_cmd
, &cr
, hdr
->rtt
);
141 pr_err("Command ITT: 0x%08x is still alligent to CID:"
142 " %hu\n", ref_cmd
->init_task_tag
, cr
->cid
);
143 return ISCSI_TMF_RSP_TASK_ALLEGIANT
;
144 } else if (ret
== -1) {
145 pr_err("Unable to locate RefTaskTag: 0x%08x in"
146 " connection recovery command list.\n", hdr
->rtt
);
147 return ISCSI_TMF_RSP_NO_TASK
;
150 * Temporary check to prevent connection recovery for
151 * connections with a differing MaxRecvDataSegmentLength.
153 if (cr
->maxrecvdatasegmentlength
!=
154 conn
->conn_ops
->MaxRecvDataSegmentLength
) {
155 pr_err("Unable to perform connection recovery for"
156 " differing MaxRecvDataSegmentLength, rejecting"
157 " TMR TASK_REASSIGN.\n");
158 return ISCSI_TMF_RSP_REJECTED
;
161 se_tmr
->ref_task_tag
= hdr
->rtt
;
162 se_tmr
->ref_cmd
= &ref_cmd
->se_cmd
;
163 se_tmr
->ref_task_lun
= get_unaligned_le64(&hdr
->lun
);
164 tmr_req
->ref_cmd_sn
= hdr
->refcmdsn
;
165 tmr_req
->exp_data_sn
= hdr
->exp_datasn
;
166 tmr_req
->conn_recovery
= cr
;
167 tmr_req
->task_reassign
= 1;
169 * Command can now be reassigned to a new connection.
170 * The task management response must be sent before the
171 * reassignment actually happens. See iscsi_tmr_post_handler().
173 return ISCSI_TMF_RSP_COMPLETE
;
176 static void iscsit_task_reassign_remove_cmd(
177 struct iscsi_cmd
*cmd
,
178 struct iscsi_conn_recovery
*cr
,
179 struct iscsi_session
*sess
)
183 spin_lock(&cr
->conn_recovery_cmd_lock
);
184 ret
= iscsit_remove_cmd_from_connection_recovery(cmd
, sess
);
185 spin_unlock(&cr
->conn_recovery_cmd_lock
);
187 pr_debug("iSCSI connection recovery successful for CID:"
188 " %hu on SID: %u\n", cr
->cid
, sess
->sid
);
189 iscsit_remove_active_connection_recovery_entry(cr
, sess
);
193 static int iscsit_task_reassign_complete_nop_out(
194 struct iscsi_tmr_req
*tmr_req
,
195 struct iscsi_conn
*conn
)
197 struct se_tmr_req
*se_tmr
= tmr_req
->se_tmr_req
;
198 struct se_cmd
*se_cmd
= se_tmr
->ref_cmd
;
199 struct iscsi_cmd
*cmd
= container_of(se_cmd
, struct iscsi_cmd
, se_cmd
);
200 struct iscsi_conn_recovery
*cr
;
203 pr_err("struct iscsi_conn_recovery pointer for ITT: 0x%08x"
204 " is NULL!\n", cmd
->init_task_tag
);
210 * Reset the StatSN so a new one for this commands new connection
212 * Reset the ExpStatSN as well so we may receive Status SNACKs.
214 cmd
->stat_sn
= cmd
->exp_stat_sn
= 0;
216 iscsit_task_reassign_remove_cmd(cmd
, cr
, conn
->sess
);
218 spin_lock_bh(&conn
->cmd_lock
);
219 list_add_tail(&cmd
->i_list
, &conn
->conn_cmd_list
);
220 spin_unlock_bh(&conn
->cmd_lock
);
222 cmd
->i_state
= ISTATE_SEND_NOPIN
;
223 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
227 static int iscsit_task_reassign_complete_write(
228 struct iscsi_cmd
*cmd
,
229 struct iscsi_tmr_req
*tmr_req
)
231 int no_build_r2ts
= 0;
232 u32 length
= 0, offset
= 0;
233 struct iscsi_conn
*conn
= cmd
->conn
;
234 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
236 * The Initiator must not send a R2T SNACK with a Begrun less than
237 * the TMR TASK_REASSIGN's ExpDataSN.
239 if (!tmr_req
->exp_data_sn
) {
240 cmd
->cmd_flags
&= ~ICF_GOT_DATACK_SNACK
;
241 cmd
->acked_data_sn
= 0;
243 cmd
->cmd_flags
|= ICF_GOT_DATACK_SNACK
;
244 cmd
->acked_data_sn
= (tmr_req
->exp_data_sn
- 1);
248 * The TMR TASK_REASSIGN's ExpDataSN contains the next R2TSN the
249 * Initiator is expecting. The Target controls all WRITE operations
250 * so if we have received all DataOUT we can safety ignore Initiator.
252 if (cmd
->cmd_flags
& ICF_GOT_LAST_DATAOUT
) {
253 if (!(cmd
->se_cmd
.transport_state
& CMD_T_SENT
)) {
254 pr_debug("WRITE ITT: 0x%08x: t_state: %d"
255 " never sent to transport\n",
256 cmd
->init_task_tag
, cmd
->se_cmd
.t_state
);
257 return transport_generic_handle_data(se_cmd
);
260 cmd
->i_state
= ISTATE_SEND_STATUS
;
261 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
266 * Special case to deal with DataSequenceInOrder=No and Non-Immeidate
267 * Unsolicited DataOut.
269 if (cmd
->unsolicited_data
) {
270 cmd
->unsolicited_data
= 0;
272 offset
= cmd
->next_burst_len
= cmd
->write_data_done
;
274 if ((conn
->sess
->sess_ops
->FirstBurstLength
- offset
) >=
277 length
= (cmd
->data_length
- offset
);
279 length
= (conn
->sess
->sess_ops
->FirstBurstLength
- offset
);
281 spin_lock_bh(&cmd
->r2t_lock
);
282 if (iscsit_add_r2t_to_list(cmd
, offset
, length
, 0, 0) < 0) {
283 spin_unlock_bh(&cmd
->r2t_lock
);
286 cmd
->outstanding_r2ts
++;
287 spin_unlock_bh(&cmd
->r2t_lock
);
293 * iscsit_build_r2ts_for_cmd() can handle the rest from here.
295 return iscsit_build_r2ts_for_cmd(cmd
, conn
, 2);
298 static int iscsit_task_reassign_complete_read(
299 struct iscsi_cmd
*cmd
,
300 struct iscsi_tmr_req
*tmr_req
)
302 struct iscsi_conn
*conn
= cmd
->conn
;
303 struct iscsi_datain_req
*dr
;
304 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
306 * The Initiator must not send a Data SNACK with a BegRun less than
307 * the TMR TASK_REASSIGN's ExpDataSN.
309 if (!tmr_req
->exp_data_sn
) {
310 cmd
->cmd_flags
&= ~ICF_GOT_DATACK_SNACK
;
311 cmd
->acked_data_sn
= 0;
313 cmd
->cmd_flags
|= ICF_GOT_DATACK_SNACK
;
314 cmd
->acked_data_sn
= (tmr_req
->exp_data_sn
- 1);
317 if (!(cmd
->se_cmd
.transport_state
& CMD_T_SENT
)) {
318 pr_debug("READ ITT: 0x%08x: t_state: %d never sent to"
319 " transport\n", cmd
->init_task_tag
,
320 cmd
->se_cmd
.t_state
);
321 transport_handle_cdb_direct(se_cmd
);
325 if (!(se_cmd
->transport_state
& CMD_T_COMPLETE
)) {
326 pr_err("READ ITT: 0x%08x: t_state: %d, never returned"
327 " from transport\n", cmd
->init_task_tag
,
328 cmd
->se_cmd
.t_state
);
332 dr
= iscsit_allocate_datain_req();
336 * The TMR TASK_REASSIGN's ExpDataSN contains the next DataSN the
337 * Initiator is expecting.
339 dr
->data_sn
= dr
->begrun
= tmr_req
->exp_data_sn
;
341 dr
->generate_recovery_values
= 1;
342 dr
->recovery
= DATAIN_CONNECTION_RECOVERY
;
344 iscsit_attach_datain_req(cmd
, dr
);
346 cmd
->i_state
= ISTATE_SEND_DATAIN
;
347 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
351 static int iscsit_task_reassign_complete_none(
352 struct iscsi_cmd
*cmd
,
353 struct iscsi_tmr_req
*tmr_req
)
355 struct iscsi_conn
*conn
= cmd
->conn
;
357 cmd
->i_state
= ISTATE_SEND_STATUS
;
358 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
362 static int iscsit_task_reassign_complete_scsi_cmnd(
363 struct iscsi_tmr_req
*tmr_req
,
364 struct iscsi_conn
*conn
)
366 struct se_tmr_req
*se_tmr
= tmr_req
->se_tmr_req
;
367 struct se_cmd
*se_cmd
= se_tmr
->ref_cmd
;
368 struct iscsi_cmd
*cmd
= container_of(se_cmd
, struct iscsi_cmd
, se_cmd
);
369 struct iscsi_conn_recovery
*cr
;
372 pr_err("struct iscsi_conn_recovery pointer for ITT: 0x%08x"
373 " is NULL!\n", cmd
->init_task_tag
);
379 * Reset the StatSN so a new one for this commands new connection
381 * Reset the ExpStatSN as well so we may receive Status SNACKs.
383 cmd
->stat_sn
= cmd
->exp_stat_sn
= 0;
385 iscsit_task_reassign_remove_cmd(cmd
, cr
, conn
->sess
);
387 spin_lock_bh(&conn
->cmd_lock
);
388 list_add_tail(&cmd
->i_list
, &conn
->conn_cmd_list
);
389 spin_unlock_bh(&conn
->cmd_lock
);
391 if (se_cmd
->se_cmd_flags
& SCF_SENT_CHECK_CONDITION
) {
392 cmd
->i_state
= ISTATE_SEND_STATUS
;
393 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
397 switch (cmd
->data_direction
) {
399 return iscsit_task_reassign_complete_write(cmd
, tmr_req
);
400 case DMA_FROM_DEVICE
:
401 return iscsit_task_reassign_complete_read(cmd
, tmr_req
);
403 return iscsit_task_reassign_complete_none(cmd
, tmr_req
);
405 pr_err("Unknown cmd->data_direction: 0x%02x\n",
406 cmd
->data_direction
);
413 static int iscsit_task_reassign_complete(
414 struct iscsi_tmr_req
*tmr_req
,
415 struct iscsi_conn
*conn
)
417 struct se_tmr_req
*se_tmr
= tmr_req
->se_tmr_req
;
418 struct se_cmd
*se_cmd
;
419 struct iscsi_cmd
*cmd
;
422 if (!se_tmr
->ref_cmd
) {
423 pr_err("TMR Request is missing a RefCmd struct iscsi_cmd.\n");
426 se_cmd
= se_tmr
->ref_cmd
;
427 cmd
= container_of(se_cmd
, struct iscsi_cmd
, se_cmd
);
431 switch (cmd
->iscsi_opcode
) {
432 case ISCSI_OP_NOOP_OUT
:
433 ret
= iscsit_task_reassign_complete_nop_out(tmr_req
, conn
);
435 case ISCSI_OP_SCSI_CMD
:
436 ret
= iscsit_task_reassign_complete_scsi_cmnd(tmr_req
, conn
);
439 pr_err("Illegal iSCSI Opcode 0x%02x during"
440 " command realligence\n", cmd
->iscsi_opcode
);
447 pr_debug("Completed connection realligence for Opcode: 0x%02x,"
448 " ITT: 0x%08x to CID: %hu.\n", cmd
->iscsi_opcode
,
449 cmd
->init_task_tag
, conn
->cid
);
455 * Handles special after-the-fact actions related to TMRs.
456 * Right now the only one that its really needed for is
457 * connection recovery releated TASK_REASSIGN.
459 extern int iscsit_tmr_post_handler(struct iscsi_cmd
*cmd
, struct iscsi_conn
*conn
)
461 struct iscsi_tmr_req
*tmr_req
= cmd
->tmr_req
;
462 struct se_tmr_req
*se_tmr
= cmd
->se_cmd
.se_tmr_req
;
464 if (tmr_req
->task_reassign
&&
465 (se_tmr
->response
== ISCSI_TMF_RSP_COMPLETE
))
466 return iscsit_task_reassign_complete(tmr_req
, conn
);
472 * Nothing to do here, but leave it for good measure. :-)
474 int iscsit_task_reassign_prepare_read(
475 struct iscsi_tmr_req
*tmr_req
,
476 struct iscsi_conn
*conn
)
481 static void iscsit_task_reassign_prepare_unsolicited_dataout(
482 struct iscsi_cmd
*cmd
,
483 struct iscsi_conn
*conn
)
486 struct iscsi_pdu
*pdu
= NULL
;
487 struct iscsi_seq
*seq
= NULL
;
489 if (conn
->sess
->sess_ops
->DataSequenceInOrder
) {
492 if (cmd
->immediate_data
)
493 cmd
->r2t_offset
+= (cmd
->first_burst_len
-
494 cmd
->seq_start_offset
);
496 if (conn
->sess
->sess_ops
->DataPDUInOrder
) {
497 cmd
->write_data_done
-= (cmd
->immediate_data
) ?
498 (cmd
->first_burst_len
-
499 cmd
->seq_start_offset
) :
500 cmd
->first_burst_len
;
501 cmd
->first_burst_len
= 0;
505 for (i
= 0; i
< cmd
->pdu_count
; i
++) {
506 pdu
= &cmd
->pdu_list
[i
];
508 if (pdu
->status
!= ISCSI_PDU_RECEIVED_OK
)
511 if ((pdu
->offset
>= cmd
->seq_start_offset
) &&
512 ((pdu
->offset
+ pdu
->length
) <=
513 cmd
->seq_end_offset
)) {
514 cmd
->first_burst_len
-= pdu
->length
;
515 cmd
->write_data_done
-= pdu
->length
;
516 pdu
->status
= ISCSI_PDU_NOT_RECEIVED
;
520 for (i
= 0; i
< cmd
->seq_count
; i
++) {
521 seq
= &cmd
->seq_list
[i
];
523 if (seq
->type
!= SEQTYPE_UNSOLICITED
)
526 cmd
->write_data_done
-=
527 (seq
->offset
- seq
->orig_offset
);
528 cmd
->first_burst_len
= 0;
530 seq
->offset
= seq
->orig_offset
;
531 seq
->next_burst_len
= 0;
532 seq
->status
= DATAOUT_SEQUENCE_WITHIN_COMMAND_RECOVERY
;
534 if (conn
->sess
->sess_ops
->DataPDUInOrder
)
537 for (j
= 0; j
< seq
->pdu_count
; j
++) {
538 pdu
= &cmd
->pdu_list
[j
+seq
->pdu_start
];
540 if (pdu
->status
!= ISCSI_PDU_RECEIVED_OK
)
543 pdu
->status
= ISCSI_PDU_NOT_RECEIVED
;
549 int iscsit_task_reassign_prepare_write(
550 struct iscsi_tmr_req
*tmr_req
,
551 struct iscsi_conn
*conn
)
553 struct se_tmr_req
*se_tmr
= tmr_req
->se_tmr_req
;
554 struct se_cmd
*se_cmd
= se_tmr
->ref_cmd
;
555 struct iscsi_cmd
*cmd
= container_of(se_cmd
, struct iscsi_cmd
, se_cmd
);
556 struct iscsi_pdu
*pdu
= NULL
;
557 struct iscsi_r2t
*r2t
= NULL
, *r2t_tmp
;
558 int first_incomplete_r2t
= 1, i
= 0;
561 * The command was in the process of receiving Unsolicited DataOUT when
562 * the connection failed.
564 if (cmd
->unsolicited_data
)
565 iscsit_task_reassign_prepare_unsolicited_dataout(cmd
, conn
);
568 * The Initiator is requesting R2Ts starting from zero, skip
569 * checking acknowledged R2Ts and start checking struct iscsi_r2ts
572 if (!tmr_req
->exp_data_sn
)
573 goto drop_unacknowledged_r2ts
;
576 * We now check that the PDUs in DataOUT sequences below
577 * the TMR TASK_REASSIGN ExpDataSN (R2TSN the Initiator is
578 * expecting next) have all the DataOUT they require to complete
579 * the DataOUT sequence. First scan from R2TSN 0 to TMR
580 * TASK_REASSIGN ExpDataSN-1.
582 * If we have not received all DataOUT in question, we must
583 * make sure to make the appropriate changes to values in
584 * struct iscsi_cmd (and elsewhere depending on session parameters)
585 * so iscsit_build_r2ts_for_cmd() in iscsit_task_reassign_complete_write()
586 * will resend a new R2T for the DataOUT sequences in question.
588 spin_lock_bh(&cmd
->r2t_lock
);
589 if (list_empty(&cmd
->cmd_r2t_list
)) {
590 spin_unlock_bh(&cmd
->r2t_lock
);
594 list_for_each_entry(r2t
, &cmd
->cmd_r2t_list
, r2t_list
) {
596 if (r2t
->r2t_sn
>= tmr_req
->exp_data_sn
)
599 * Safely ignore Recovery R2Ts and R2Ts that have completed
602 if (r2t
->seq_complete
)
605 if (r2t
->recovery_r2t
)
609 * DataSequenceInOrder=Yes:
611 * Taking into account the iSCSI implementation requirement of
612 * MaxOutstandingR2T=1 while ErrorRecoveryLevel>0 and
613 * DataSequenceInOrder=Yes, we must take into consideration
616 * DataSequenceInOrder=No:
618 * Taking into account that the Initiator controls the (possibly
619 * random) PDU Order in (possibly random) Sequence Order of
620 * DataOUT the target requests with R2Ts, we must take into
621 * consideration the following:
623 * DataPDUInOrder=Yes for DataSequenceInOrder=[Yes,No]:
625 * While processing non-complete R2T DataOUT sequence requests
626 * the Target will re-request only the total sequence length
627 * minus current received offset. This is because we must
628 * assume the initiator will continue sending DataOUT from the
629 * last PDU before the connection failed.
631 * DataPDUInOrder=No for DataSequenceInOrder=[Yes,No]:
633 * While processing non-complete R2T DataOUT sequence requests
634 * the Target will re-request the entire DataOUT sequence if
635 * any single PDU is missing from the sequence. This is because
636 * we have no logical method to determine the next PDU offset,
637 * and we must assume the Initiator will be sending any random
638 * PDU offset in the current sequence after TASK_REASSIGN
641 if (conn
->sess
->sess_ops
->DataSequenceInOrder
) {
642 if (!first_incomplete_r2t
) {
643 cmd
->r2t_offset
-= r2t
->xfer_len
;
647 if (conn
->sess
->sess_ops
->DataPDUInOrder
) {
649 cmd
->r2t_offset
-= (r2t
->xfer_len
-
650 cmd
->next_burst_len
);
651 first_incomplete_r2t
= 0;
656 cmd
->r2t_offset
-= r2t
->xfer_len
;
658 for (i
= 0; i
< cmd
->pdu_count
; i
++) {
659 pdu
= &cmd
->pdu_list
[i
];
661 if (pdu
->status
!= ISCSI_PDU_RECEIVED_OK
)
664 if ((pdu
->offset
>= r2t
->offset
) &&
665 (pdu
->offset
< (r2t
->offset
+
667 cmd
->next_burst_len
-= pdu
->length
;
668 cmd
->write_data_done
-= pdu
->length
;
669 pdu
->status
= ISCSI_PDU_NOT_RECEIVED
;
673 first_incomplete_r2t
= 0;
675 struct iscsi_seq
*seq
;
677 seq
= iscsit_get_seq_holder(cmd
, r2t
->offset
,
680 spin_unlock_bh(&cmd
->r2t_lock
);
684 cmd
->write_data_done
-=
685 (seq
->offset
- seq
->orig_offset
);
687 seq
->offset
= seq
->orig_offset
;
688 seq
->next_burst_len
= 0;
689 seq
->status
= DATAOUT_SEQUENCE_WITHIN_COMMAND_RECOVERY
;
691 cmd
->seq_send_order
--;
693 if (conn
->sess
->sess_ops
->DataPDUInOrder
)
696 for (i
= 0; i
< seq
->pdu_count
; i
++) {
697 pdu
= &cmd
->pdu_list
[i
+seq
->pdu_start
];
699 if (pdu
->status
!= ISCSI_PDU_RECEIVED_OK
)
702 pdu
->status
= ISCSI_PDU_NOT_RECEIVED
;
707 cmd
->outstanding_r2ts
--;
709 spin_unlock_bh(&cmd
->r2t_lock
);
712 * We now drop all unacknowledged R2Ts, ie: ExpDataSN from TMR
713 * TASK_REASSIGN to the last R2T in the list.. We are also careful
714 * to check that the Initiator is not requesting R2Ts for DataOUT
715 * sequences it has already completed.
717 * Free each R2T in question and adjust values in struct iscsi_cmd
718 * accordingly so iscsit_build_r2ts_for_cmd() do the rest of
719 * the work after the TMR TASK_REASSIGN Response is sent.
721 drop_unacknowledged_r2ts
:
723 cmd
->cmd_flags
&= ~ICF_SENT_LAST_R2T
;
724 cmd
->r2t_sn
= tmr_req
->exp_data_sn
;
726 spin_lock_bh(&cmd
->r2t_lock
);
727 list_for_each_entry_safe(r2t
, r2t_tmp
, &cmd
->cmd_r2t_list
, r2t_list
) {
729 * Skip up to the R2T Sequence number provided by the
730 * iSCSI TASK_REASSIGN TMR
732 if (r2t
->r2t_sn
< tmr_req
->exp_data_sn
)
735 if (r2t
->seq_complete
) {
736 pr_err("Initiator is requesting R2Ts from"
737 " R2TSN: 0x%08x, but R2TSN: 0x%08x, Offset: %u,"
738 " Length: %u is already complete."
739 " BAD INITIATOR ERL=2 IMPLEMENTATION!\n",
740 tmr_req
->exp_data_sn
, r2t
->r2t_sn
,
741 r2t
->offset
, r2t
->xfer_len
);
742 spin_unlock_bh(&cmd
->r2t_lock
);
746 if (r2t
->recovery_r2t
) {
747 iscsit_free_r2t(r2t
, cmd
);
751 /* DataSequenceInOrder=Yes:
753 * Taking into account the iSCSI implementation requirement of
754 * MaxOutstandingR2T=1 while ErrorRecoveryLevel>0 and
755 * DataSequenceInOrder=Yes, it's safe to subtract the R2Ts
756 * entire transfer length from the commands R2T offset marker.
758 * DataSequenceInOrder=No:
760 * We subtract the difference from struct iscsi_seq between the
761 * current offset and original offset from cmd->write_data_done
762 * for account for DataOUT PDUs already received. Then reset
763 * the current offset to the original and zero out the current
764 * burst length, to make sure we re-request the entire DataOUT
767 if (conn
->sess
->sess_ops
->DataSequenceInOrder
)
768 cmd
->r2t_offset
-= r2t
->xfer_len
;
770 cmd
->seq_send_order
--;
772 cmd
->outstanding_r2ts
--;
773 iscsit_free_r2t(r2t
, cmd
);
775 spin_unlock_bh(&cmd
->r2t_lock
);
781 * Performs sanity checks TMR TASK_REASSIGN's ExpDataSN for
782 * a given struct iscsi_cmd.
784 int iscsit_check_task_reassign_expdatasn(
785 struct iscsi_tmr_req
*tmr_req
,
786 struct iscsi_conn
*conn
)
788 struct se_tmr_req
*se_tmr
= tmr_req
->se_tmr_req
;
789 struct se_cmd
*se_cmd
= se_tmr
->ref_cmd
;
790 struct iscsi_cmd
*ref_cmd
= container_of(se_cmd
, struct iscsi_cmd
, se_cmd
);
792 if (ref_cmd
->iscsi_opcode
!= ISCSI_OP_SCSI_CMD
)
795 if (se_cmd
->se_cmd_flags
& SCF_SENT_CHECK_CONDITION
)
798 if (ref_cmd
->data_direction
== DMA_NONE
)
802 * For READs the TMR TASK_REASSIGNs ExpDataSN contains the next DataSN
803 * of DataIN the Initiator is expecting.
805 * Also check that the Initiator is not re-requesting DataIN that has
806 * already been acknowledged with a DataAck SNACK.
808 if (ref_cmd
->data_direction
== DMA_FROM_DEVICE
) {
809 if (tmr_req
->exp_data_sn
> ref_cmd
->data_sn
) {
810 pr_err("Received ExpDataSN: 0x%08x for READ"
811 " in TMR TASK_REASSIGN greater than command's"
812 " DataSN: 0x%08x.\n", tmr_req
->exp_data_sn
,
816 if ((ref_cmd
->cmd_flags
& ICF_GOT_DATACK_SNACK
) &&
817 (tmr_req
->exp_data_sn
<= ref_cmd
->acked_data_sn
)) {
818 pr_err("Received ExpDataSN: 0x%08x for READ"
819 " in TMR TASK_REASSIGN for previously"
820 " acknowledged DataIN: 0x%08x,"
821 " protocol error\n", tmr_req
->exp_data_sn
,
822 ref_cmd
->acked_data_sn
);
825 return iscsit_task_reassign_prepare_read(tmr_req
, conn
);
829 * For WRITEs the TMR TASK_REASSIGNs ExpDataSN contains the next R2TSN
830 * for R2Ts the Initiator is expecting.
832 * Do the magic in iscsit_task_reassign_prepare_write().
834 if (ref_cmd
->data_direction
== DMA_TO_DEVICE
) {
835 if (tmr_req
->exp_data_sn
> ref_cmd
->r2t_sn
) {
836 pr_err("Received ExpDataSN: 0x%08x for WRITE"
837 " in TMR TASK_REASSIGN greater than command's"
838 " R2TSN: 0x%08x.\n", tmr_req
->exp_data_sn
,
842 return iscsit_task_reassign_prepare_write(tmr_req
, conn
);
845 pr_err("Unknown iSCSI data_direction: 0x%02x\n",
846 ref_cmd
->data_direction
);