1 /*******************************************************************************
2 * This file contains the iSCSI Target specific Task Management 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 <asm/unaligned.h>
20 #include <scsi/scsi_proto.h>
21 #include <scsi/iscsi_proto.h>
22 #include <target/target_core_base.h>
23 #include <target/target_core_fabric.h>
24 #include <target/iscsi/iscsi_transport.h>
26 #include <target/iscsi/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 (iscsi_sna_gte(be32_to_cpu(hdr
->refcmdsn
), conn
->sess
->exp_cmd_sn
) &&
53 iscsi_sna_lte(be32_to_cpu(hdr
->refcmdsn
), (u32
) atomic_read(&conn
->sess
->max_cmd_sn
))) ?
54 ISCSI_TMF_RSP_COMPLETE
: ISCSI_TMF_RSP_NO_TASK
;
56 if (ref_cmd
->cmd_sn
!= be32_to_cpu(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
= (__force u32
)hdr
->rtt
;
64 tmr_req
->ref_cmd
= ref_cmd
;
65 tmr_req
->exp_data_sn
= be32_to_cpu(hdr
->exp_datasn
);
67 return ISCSI_TMF_RSP_COMPLETE
;
71 * Called from iscsit_handle_task_mgt_cmd().
73 int iscsit_tmr_task_warm_reset(
74 struct iscsi_conn
*conn
,
75 struct iscsi_tmr_req
*tmr_req
,
78 struct iscsi_session
*sess
= conn
->sess
;
79 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
81 if (!na
->tmr_warm_reset
) {
82 pr_err("TMR Opcode TARGET_WARM_RESET authorization"
83 " failed for Initiator Node: %s\n",
84 sess
->se_sess
->se_node_acl
->initiatorname
);
88 * Do the real work in transport_generic_do_tmr().
93 int iscsit_tmr_task_cold_reset(
94 struct iscsi_conn
*conn
,
95 struct iscsi_tmr_req
*tmr_req
,
98 struct iscsi_session
*sess
= conn
->sess
;
99 struct iscsi_node_attrib
*na
= iscsit_tpg_get_node_attrib(sess
);
101 if (!na
->tmr_cold_reset
) {
102 pr_err("TMR Opcode TARGET_COLD_RESET authorization"
103 " failed for Initiator Node: %s\n",
104 sess
->se_sess
->se_node_acl
->initiatorname
);
108 * Do the real work in transport_generic_do_tmr().
113 u8
iscsit_tmr_task_reassign(
114 struct iscsi_cmd
*cmd
,
117 struct iscsi_cmd
*ref_cmd
= NULL
;
118 struct iscsi_conn
*conn
= cmd
->conn
;
119 struct iscsi_conn_recovery
*cr
= NULL
;
120 struct iscsi_tmr_req
*tmr_req
= cmd
->tmr_req
;
121 struct se_tmr_req
*se_tmr
= cmd
->se_cmd
.se_tmr_req
;
122 struct iscsi_tm
*hdr
= (struct iscsi_tm
*) buf
;
125 pr_debug("Got TASK_REASSIGN TMR ITT: 0x%08x,"
126 " RefTaskTag: 0x%08x, ExpDataSN: 0x%08x, CID: %hu\n",
127 hdr
->itt
, hdr
->rtt
, hdr
->exp_datasn
, conn
->cid
);
129 if (conn
->sess
->sess_ops
->ErrorRecoveryLevel
!= 2) {
130 pr_err("TMR TASK_REASSIGN not supported in ERL<2,"
131 " ignoring request.\n");
132 return ISCSI_TMF_RSP_NOT_SUPPORTED
;
135 ret
= iscsit_find_cmd_for_recovery(conn
->sess
, &ref_cmd
, &cr
, hdr
->rtt
);
137 pr_err("Command ITT: 0x%08x is still alligent to CID:"
138 " %hu\n", ref_cmd
->init_task_tag
, cr
->cid
);
139 return ISCSI_TMF_RSP_TASK_ALLEGIANT
;
140 } else if (ret
== -1) {
141 pr_err("Unable to locate RefTaskTag: 0x%08x in"
142 " connection recovery command list.\n", hdr
->rtt
);
143 return ISCSI_TMF_RSP_NO_TASK
;
146 * Temporary check to prevent connection recovery for
147 * connections with a differing Max*DataSegmentLength.
149 if (cr
->maxrecvdatasegmentlength
!=
150 conn
->conn_ops
->MaxRecvDataSegmentLength
) {
151 pr_err("Unable to perform connection recovery for"
152 " differing MaxRecvDataSegmentLength, rejecting"
153 " TMR TASK_REASSIGN.\n");
154 return ISCSI_TMF_RSP_REJECTED
;
156 if (cr
->maxxmitdatasegmentlength
!=
157 conn
->conn_ops
->MaxXmitDataSegmentLength
) {
158 pr_err("Unable to perform connection recovery for"
159 " differing MaxXmitDataSegmentLength, rejecting"
160 " TMR TASK_REASSIGN.\n");
161 return ISCSI_TMF_RSP_REJECTED
;
164 ref_lun
= scsilun_to_int(&hdr
->lun
);
165 if (ref_lun
!= ref_cmd
->se_cmd
.orig_fe_lun
) {
166 pr_err("Unable to perform connection recovery for"
167 " differing ref_lun: %llu ref_cmd orig_fe_lun: %llu\n",
168 ref_lun
, ref_cmd
->se_cmd
.orig_fe_lun
);
169 return ISCSI_TMF_RSP_REJECTED
;
172 se_tmr
->ref_task_tag
= (__force u32
)hdr
->rtt
;
173 tmr_req
->ref_cmd
= ref_cmd
;
174 tmr_req
->exp_data_sn
= be32_to_cpu(hdr
->exp_datasn
);
175 tmr_req
->conn_recovery
= cr
;
176 tmr_req
->task_reassign
= 1;
178 * Command can now be reassigned to a new connection.
179 * The task management response must be sent before the
180 * reassignment actually happens. See iscsi_tmr_post_handler().
182 return ISCSI_TMF_RSP_COMPLETE
;
185 static void iscsit_task_reassign_remove_cmd(
186 struct iscsi_cmd
*cmd
,
187 struct iscsi_conn_recovery
*cr
,
188 struct iscsi_session
*sess
)
192 spin_lock(&cr
->conn_recovery_cmd_lock
);
193 ret
= iscsit_remove_cmd_from_connection_recovery(cmd
, sess
);
194 spin_unlock(&cr
->conn_recovery_cmd_lock
);
196 pr_debug("iSCSI connection recovery successful for CID:"
197 " %hu on SID: %u\n", cr
->cid
, sess
->sid
);
198 iscsit_remove_active_connection_recovery_entry(cr
, sess
);
202 static int iscsit_task_reassign_complete_nop_out(
203 struct iscsi_tmr_req
*tmr_req
,
204 struct iscsi_conn
*conn
)
206 struct iscsi_cmd
*cmd
= tmr_req
->ref_cmd
;
207 struct iscsi_conn_recovery
*cr
;
210 pr_err("struct iscsi_conn_recovery pointer for ITT: 0x%08x"
211 " is NULL!\n", cmd
->init_task_tag
);
217 * Reset the StatSN so a new one for this commands new connection
219 * Reset the ExpStatSN as well so we may receive Status SNACKs.
221 cmd
->stat_sn
= cmd
->exp_stat_sn
= 0;
223 iscsit_task_reassign_remove_cmd(cmd
, cr
, conn
->sess
);
225 spin_lock_bh(&conn
->cmd_lock
);
226 list_add_tail(&cmd
->i_conn_node
, &conn
->conn_cmd_list
);
227 spin_unlock_bh(&conn
->cmd_lock
);
229 cmd
->i_state
= ISTATE_SEND_NOPIN
;
230 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
234 static int iscsit_task_reassign_complete_write(
235 struct iscsi_cmd
*cmd
,
236 struct iscsi_tmr_req
*tmr_req
)
238 int no_build_r2ts
= 0;
239 u32 length
= 0, offset
= 0;
240 struct iscsi_conn
*conn
= cmd
->conn
;
241 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
243 * The Initiator must not send a R2T SNACK with a Begrun less than
244 * the TMR TASK_REASSIGN's ExpDataSN.
246 if (!tmr_req
->exp_data_sn
) {
247 cmd
->cmd_flags
&= ~ICF_GOT_DATACK_SNACK
;
248 cmd
->acked_data_sn
= 0;
250 cmd
->cmd_flags
|= ICF_GOT_DATACK_SNACK
;
251 cmd
->acked_data_sn
= (tmr_req
->exp_data_sn
- 1);
255 * The TMR TASK_REASSIGN's ExpDataSN contains the next R2TSN the
256 * Initiator is expecting. The Target controls all WRITE operations
257 * so if we have received all DataOUT we can safety ignore Initiator.
259 if (cmd
->cmd_flags
& ICF_GOT_LAST_DATAOUT
) {
260 if (!(cmd
->se_cmd
.transport_state
& CMD_T_SENT
)) {
261 pr_debug("WRITE ITT: 0x%08x: t_state: %d"
262 " never sent to transport\n",
263 cmd
->init_task_tag
, cmd
->se_cmd
.t_state
);
264 target_execute_cmd(se_cmd
);
268 cmd
->i_state
= ISTATE_SEND_STATUS
;
269 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
274 * Special case to deal with DataSequenceInOrder=No and Non-Immeidate
275 * Unsolicited DataOut.
277 if (cmd
->unsolicited_data
) {
278 cmd
->unsolicited_data
= 0;
280 offset
= cmd
->next_burst_len
= cmd
->write_data_done
;
282 if ((conn
->sess
->sess_ops
->FirstBurstLength
- offset
) >=
283 cmd
->se_cmd
.data_length
) {
285 length
= (cmd
->se_cmd
.data_length
- offset
);
287 length
= (conn
->sess
->sess_ops
->FirstBurstLength
- offset
);
289 spin_lock_bh(&cmd
->r2t_lock
);
290 if (iscsit_add_r2t_to_list(cmd
, offset
, length
, 0, 0) < 0) {
291 spin_unlock_bh(&cmd
->r2t_lock
);
294 cmd
->outstanding_r2ts
++;
295 spin_unlock_bh(&cmd
->r2t_lock
);
301 * iscsit_build_r2ts_for_cmd() can handle the rest from here.
303 return conn
->conn_transport
->iscsit_get_dataout(conn
, cmd
, true);
306 static int iscsit_task_reassign_complete_read(
307 struct iscsi_cmd
*cmd
,
308 struct iscsi_tmr_req
*tmr_req
)
310 struct iscsi_conn
*conn
= cmd
->conn
;
311 struct iscsi_datain_req
*dr
;
312 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
314 * The Initiator must not send a Data SNACK with a BegRun less than
315 * the TMR TASK_REASSIGN's ExpDataSN.
317 if (!tmr_req
->exp_data_sn
) {
318 cmd
->cmd_flags
&= ~ICF_GOT_DATACK_SNACK
;
319 cmd
->acked_data_sn
= 0;
321 cmd
->cmd_flags
|= ICF_GOT_DATACK_SNACK
;
322 cmd
->acked_data_sn
= (tmr_req
->exp_data_sn
- 1);
325 if (!(cmd
->se_cmd
.transport_state
& CMD_T_SENT
)) {
326 pr_debug("READ ITT: 0x%08x: t_state: %d never sent to"
327 " transport\n", cmd
->init_task_tag
,
328 cmd
->se_cmd
.t_state
);
329 transport_handle_cdb_direct(se_cmd
);
333 if (!(se_cmd
->transport_state
& CMD_T_COMPLETE
)) {
334 pr_err("READ ITT: 0x%08x: t_state: %d, never returned"
335 " from transport\n", cmd
->init_task_tag
,
336 cmd
->se_cmd
.t_state
);
340 dr
= iscsit_allocate_datain_req();
344 * The TMR TASK_REASSIGN's ExpDataSN contains the next DataSN the
345 * Initiator is expecting.
347 dr
->data_sn
= dr
->begrun
= tmr_req
->exp_data_sn
;
349 dr
->generate_recovery_values
= 1;
350 dr
->recovery
= DATAIN_CONNECTION_RECOVERY
;
352 iscsit_attach_datain_req(cmd
, dr
);
354 cmd
->i_state
= ISTATE_SEND_DATAIN
;
355 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
359 static int iscsit_task_reassign_complete_none(
360 struct iscsi_cmd
*cmd
,
361 struct iscsi_tmr_req
*tmr_req
)
363 struct iscsi_conn
*conn
= cmd
->conn
;
365 cmd
->i_state
= ISTATE_SEND_STATUS
;
366 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
370 static int iscsit_task_reassign_complete_scsi_cmnd(
371 struct iscsi_tmr_req
*tmr_req
,
372 struct iscsi_conn
*conn
)
374 struct iscsi_cmd
*cmd
= tmr_req
->ref_cmd
;
375 struct iscsi_conn_recovery
*cr
;
378 pr_err("struct iscsi_conn_recovery pointer for ITT: 0x%08x"
379 " is NULL!\n", cmd
->init_task_tag
);
385 * Reset the StatSN so a new one for this commands new connection
387 * Reset the ExpStatSN as well so we may receive Status SNACKs.
389 cmd
->stat_sn
= cmd
->exp_stat_sn
= 0;
391 iscsit_task_reassign_remove_cmd(cmd
, cr
, conn
->sess
);
393 spin_lock_bh(&conn
->cmd_lock
);
394 list_add_tail(&cmd
->i_conn_node
, &conn
->conn_cmd_list
);
395 spin_unlock_bh(&conn
->cmd_lock
);
397 if (cmd
->se_cmd
.se_cmd_flags
& SCF_SENT_CHECK_CONDITION
) {
398 cmd
->i_state
= ISTATE_SEND_STATUS
;
399 iscsit_add_cmd_to_response_queue(cmd
, conn
, cmd
->i_state
);
403 switch (cmd
->data_direction
) {
405 return iscsit_task_reassign_complete_write(cmd
, tmr_req
);
406 case DMA_FROM_DEVICE
:
407 return iscsit_task_reassign_complete_read(cmd
, tmr_req
);
409 return iscsit_task_reassign_complete_none(cmd
, tmr_req
);
411 pr_err("Unknown cmd->data_direction: 0x%02x\n",
412 cmd
->data_direction
);
419 static int iscsit_task_reassign_complete(
420 struct iscsi_tmr_req
*tmr_req
,
421 struct iscsi_conn
*conn
)
423 struct iscsi_cmd
*cmd
;
426 if (!tmr_req
->ref_cmd
) {
427 pr_err("TMR Request is missing a RefCmd struct iscsi_cmd.\n");
430 cmd
= tmr_req
->ref_cmd
;
434 switch (cmd
->iscsi_opcode
) {
435 case ISCSI_OP_NOOP_OUT
:
436 ret
= iscsit_task_reassign_complete_nop_out(tmr_req
, conn
);
438 case ISCSI_OP_SCSI_CMD
:
439 ret
= iscsit_task_reassign_complete_scsi_cmnd(tmr_req
, conn
);
442 pr_err("Illegal iSCSI Opcode 0x%02x during"
443 " command reallegiance\n", cmd
->iscsi_opcode
);
450 pr_debug("Completed connection reallegiance for Opcode: 0x%02x,"
451 " ITT: 0x%08x to CID: %hu.\n", cmd
->iscsi_opcode
,
452 cmd
->init_task_tag
, conn
->cid
);
458 * Handles special after-the-fact actions related to TMRs.
459 * Right now the only one that its really needed for is
460 * connection recovery releated TASK_REASSIGN.
462 int iscsit_tmr_post_handler(struct iscsi_cmd
*cmd
, struct iscsi_conn
*conn
)
464 struct iscsi_tmr_req
*tmr_req
= cmd
->tmr_req
;
465 struct se_tmr_req
*se_tmr
= cmd
->se_cmd
.se_tmr_req
;
467 if (tmr_req
->task_reassign
&&
468 (se_tmr
->response
== ISCSI_TMF_RSP_COMPLETE
))
469 return iscsit_task_reassign_complete(tmr_req
, conn
);
473 EXPORT_SYMBOL(iscsit_tmr_post_handler
);
476 * Nothing to do here, but leave it for good measure. :-)
478 static int iscsit_task_reassign_prepare_read(
479 struct iscsi_tmr_req
*tmr_req
,
480 struct iscsi_conn
*conn
)
485 static void iscsit_task_reassign_prepare_unsolicited_dataout(
486 struct iscsi_cmd
*cmd
,
487 struct iscsi_conn
*conn
)
490 struct iscsi_pdu
*pdu
= NULL
;
491 struct iscsi_seq
*seq
= NULL
;
493 if (conn
->sess
->sess_ops
->DataSequenceInOrder
) {
496 if (cmd
->immediate_data
)
497 cmd
->r2t_offset
+= (cmd
->first_burst_len
-
498 cmd
->seq_start_offset
);
500 if (conn
->sess
->sess_ops
->DataPDUInOrder
) {
501 cmd
->write_data_done
-= (cmd
->immediate_data
) ?
502 (cmd
->first_burst_len
-
503 cmd
->seq_start_offset
) :
504 cmd
->first_burst_len
;
505 cmd
->first_burst_len
= 0;
509 for (i
= 0; i
< cmd
->pdu_count
; i
++) {
510 pdu
= &cmd
->pdu_list
[i
];
512 if (pdu
->status
!= ISCSI_PDU_RECEIVED_OK
)
515 if ((pdu
->offset
>= cmd
->seq_start_offset
) &&
516 ((pdu
->offset
+ pdu
->length
) <=
517 cmd
->seq_end_offset
)) {
518 cmd
->first_burst_len
-= pdu
->length
;
519 cmd
->write_data_done
-= pdu
->length
;
520 pdu
->status
= ISCSI_PDU_NOT_RECEIVED
;
524 for (i
= 0; i
< cmd
->seq_count
; i
++) {
525 seq
= &cmd
->seq_list
[i
];
527 if (seq
->type
!= SEQTYPE_UNSOLICITED
)
530 cmd
->write_data_done
-=
531 (seq
->offset
- seq
->orig_offset
);
532 cmd
->first_burst_len
= 0;
534 seq
->offset
= seq
->orig_offset
;
535 seq
->next_burst_len
= 0;
536 seq
->status
= DATAOUT_SEQUENCE_WITHIN_COMMAND_RECOVERY
;
538 if (conn
->sess
->sess_ops
->DataPDUInOrder
)
541 for (j
= 0; j
< seq
->pdu_count
; j
++) {
542 pdu
= &cmd
->pdu_list
[j
+seq
->pdu_start
];
544 if (pdu
->status
!= ISCSI_PDU_RECEIVED_OK
)
547 pdu
->status
= ISCSI_PDU_NOT_RECEIVED
;
553 static int iscsit_task_reassign_prepare_write(
554 struct iscsi_tmr_req
*tmr_req
,
555 struct iscsi_conn
*conn
)
557 struct iscsi_cmd
*cmd
= tmr_req
->ref_cmd
;
558 struct iscsi_pdu
*pdu
= NULL
;
559 struct iscsi_r2t
*r2t
= NULL
, *r2t_tmp
;
560 int first_incomplete_r2t
= 1, i
= 0;
563 * The command was in the process of receiving Unsolicited DataOUT when
564 * the connection failed.
566 if (cmd
->unsolicited_data
)
567 iscsit_task_reassign_prepare_unsolicited_dataout(cmd
, conn
);
570 * The Initiator is requesting R2Ts starting from zero, skip
571 * checking acknowledged R2Ts and start checking struct iscsi_r2ts
574 if (!tmr_req
->exp_data_sn
)
575 goto drop_unacknowledged_r2ts
;
578 * We now check that the PDUs in DataOUT sequences below
579 * the TMR TASK_REASSIGN ExpDataSN (R2TSN the Initiator is
580 * expecting next) have all the DataOUT they require to complete
581 * the DataOUT sequence. First scan from R2TSN 0 to TMR
582 * TASK_REASSIGN ExpDataSN-1.
584 * If we have not received all DataOUT in question, we must
585 * make sure to make the appropriate changes to values in
586 * struct iscsi_cmd (and elsewhere depending on session parameters)
587 * so iscsit_build_r2ts_for_cmd() in iscsit_task_reassign_complete_write()
588 * will resend a new R2T for the DataOUT sequences in question.
590 spin_lock_bh(&cmd
->r2t_lock
);
591 if (list_empty(&cmd
->cmd_r2t_list
)) {
592 spin_unlock_bh(&cmd
->r2t_lock
);
596 list_for_each_entry(r2t
, &cmd
->cmd_r2t_list
, r2t_list
) {
598 if (r2t
->r2t_sn
>= tmr_req
->exp_data_sn
)
601 * Safely ignore Recovery R2Ts and R2Ts that have completed
604 if (r2t
->seq_complete
)
607 if (r2t
->recovery_r2t
)
611 * DataSequenceInOrder=Yes:
613 * Taking into account the iSCSI implementation requirement of
614 * MaxOutstandingR2T=1 while ErrorRecoveryLevel>0 and
615 * DataSequenceInOrder=Yes, we must take into consideration
618 * DataSequenceInOrder=No:
620 * Taking into account that the Initiator controls the (possibly
621 * random) PDU Order in (possibly random) Sequence Order of
622 * DataOUT the target requests with R2Ts, we must take into
623 * consideration the following:
625 * DataPDUInOrder=Yes for DataSequenceInOrder=[Yes,No]:
627 * While processing non-complete R2T DataOUT sequence requests
628 * the Target will re-request only the total sequence length
629 * minus current received offset. This is because we must
630 * assume the initiator will continue sending DataOUT from the
631 * last PDU before the connection failed.
633 * DataPDUInOrder=No for DataSequenceInOrder=[Yes,No]:
635 * While processing non-complete R2T DataOUT sequence requests
636 * the Target will re-request the entire DataOUT sequence if
637 * any single PDU is missing from the sequence. This is because
638 * we have no logical method to determine the next PDU offset,
639 * and we must assume the Initiator will be sending any random
640 * PDU offset in the current sequence after TASK_REASSIGN
643 if (conn
->sess
->sess_ops
->DataSequenceInOrder
) {
644 if (!first_incomplete_r2t
) {
645 cmd
->r2t_offset
-= r2t
->xfer_len
;
649 if (conn
->sess
->sess_ops
->DataPDUInOrder
) {
651 cmd
->r2t_offset
-= (r2t
->xfer_len
-
652 cmd
->next_burst_len
);
653 first_incomplete_r2t
= 0;
658 cmd
->r2t_offset
-= r2t
->xfer_len
;
660 for (i
= 0; i
< cmd
->pdu_count
; i
++) {
661 pdu
= &cmd
->pdu_list
[i
];
663 if (pdu
->status
!= ISCSI_PDU_RECEIVED_OK
)
666 if ((pdu
->offset
>= r2t
->offset
) &&
667 (pdu
->offset
< (r2t
->offset
+
669 cmd
->next_burst_len
-= pdu
->length
;
670 cmd
->write_data_done
-= pdu
->length
;
671 pdu
->status
= ISCSI_PDU_NOT_RECEIVED
;
675 first_incomplete_r2t
= 0;
677 struct iscsi_seq
*seq
;
679 seq
= iscsit_get_seq_holder(cmd
, r2t
->offset
,
682 spin_unlock_bh(&cmd
->r2t_lock
);
686 cmd
->write_data_done
-=
687 (seq
->offset
- seq
->orig_offset
);
689 seq
->offset
= seq
->orig_offset
;
690 seq
->next_burst_len
= 0;
691 seq
->status
= DATAOUT_SEQUENCE_WITHIN_COMMAND_RECOVERY
;
693 cmd
->seq_send_order
--;
695 if (conn
->sess
->sess_ops
->DataPDUInOrder
)
698 for (i
= 0; i
< seq
->pdu_count
; i
++) {
699 pdu
= &cmd
->pdu_list
[i
+seq
->pdu_start
];
701 if (pdu
->status
!= ISCSI_PDU_RECEIVED_OK
)
704 pdu
->status
= ISCSI_PDU_NOT_RECEIVED
;
709 cmd
->outstanding_r2ts
--;
711 spin_unlock_bh(&cmd
->r2t_lock
);
714 * We now drop all unacknowledged R2Ts, ie: ExpDataSN from TMR
715 * TASK_REASSIGN to the last R2T in the list.. We are also careful
716 * to check that the Initiator is not requesting R2Ts for DataOUT
717 * sequences it has already completed.
719 * Free each R2T in question and adjust values in struct iscsi_cmd
720 * accordingly so iscsit_build_r2ts_for_cmd() do the rest of
721 * the work after the TMR TASK_REASSIGN Response is sent.
723 drop_unacknowledged_r2ts
:
725 cmd
->cmd_flags
&= ~ICF_SENT_LAST_R2T
;
726 cmd
->r2t_sn
= tmr_req
->exp_data_sn
;
728 spin_lock_bh(&cmd
->r2t_lock
);
729 list_for_each_entry_safe(r2t
, r2t_tmp
, &cmd
->cmd_r2t_list
, r2t_list
) {
731 * Skip up to the R2T Sequence number provided by the
732 * iSCSI TASK_REASSIGN TMR
734 if (r2t
->r2t_sn
< tmr_req
->exp_data_sn
)
737 if (r2t
->seq_complete
) {
738 pr_err("Initiator is requesting R2Ts from"
739 " R2TSN: 0x%08x, but R2TSN: 0x%08x, Offset: %u,"
740 " Length: %u is already complete."
741 " BAD INITIATOR ERL=2 IMPLEMENTATION!\n",
742 tmr_req
->exp_data_sn
, r2t
->r2t_sn
,
743 r2t
->offset
, r2t
->xfer_len
);
744 spin_unlock_bh(&cmd
->r2t_lock
);
748 if (r2t
->recovery_r2t
) {
749 iscsit_free_r2t(r2t
, cmd
);
753 /* DataSequenceInOrder=Yes:
755 * Taking into account the iSCSI implementation requirement of
756 * MaxOutstandingR2T=1 while ErrorRecoveryLevel>0 and
757 * DataSequenceInOrder=Yes, it's safe to subtract the R2Ts
758 * entire transfer length from the commands R2T offset marker.
760 * DataSequenceInOrder=No:
762 * We subtract the difference from struct iscsi_seq between the
763 * current offset and original offset from cmd->write_data_done
764 * for account for DataOUT PDUs already received. Then reset
765 * the current offset to the original and zero out the current
766 * burst length, to make sure we re-request the entire DataOUT
769 if (conn
->sess
->sess_ops
->DataSequenceInOrder
)
770 cmd
->r2t_offset
-= r2t
->xfer_len
;
772 cmd
->seq_send_order
--;
774 cmd
->outstanding_r2ts
--;
775 iscsit_free_r2t(r2t
, cmd
);
777 spin_unlock_bh(&cmd
->r2t_lock
);
783 * Performs sanity checks TMR TASK_REASSIGN's ExpDataSN for
784 * a given struct iscsi_cmd.
786 int iscsit_check_task_reassign_expdatasn(
787 struct iscsi_tmr_req
*tmr_req
,
788 struct iscsi_conn
*conn
)
790 struct iscsi_cmd
*ref_cmd
= tmr_req
->ref_cmd
;
792 if (ref_cmd
->iscsi_opcode
!= ISCSI_OP_SCSI_CMD
)
795 if (ref_cmd
->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
);