1e48354ceSNicholas Bellinger /*******************************************************************************
2e48354ceSNicholas Bellinger  * This file contains the iSCSI Target specific Task Management functions.
3e48354ceSNicholas Bellinger  *
4e48354ceSNicholas Bellinger  * \u00a9 Copyright 2007-2011 RisingTide Systems LLC.
5e48354ceSNicholas Bellinger  *
6e48354ceSNicholas Bellinger  * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
7e48354ceSNicholas Bellinger  *
8e48354ceSNicholas Bellinger  * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
9e48354ceSNicholas Bellinger  *
10e48354ceSNicholas Bellinger  * This program is free software; you can redistribute it and/or modify
11e48354ceSNicholas Bellinger  * it under the terms of the GNU General Public License as published by
12e48354ceSNicholas Bellinger  * the Free Software Foundation; either version 2 of the License, or
13e48354ceSNicholas Bellinger  * (at your option) any later version.
14e48354ceSNicholas Bellinger  *
15e48354ceSNicholas Bellinger  * This program is distributed in the hope that it will be useful,
16e48354ceSNicholas Bellinger  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17e48354ceSNicholas Bellinger  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18e48354ceSNicholas Bellinger  * GNU General Public License for more details.
19e48354ceSNicholas Bellinger  ******************************************************************************/
20e48354ceSNicholas Bellinger 
21e48354ceSNicholas Bellinger #include <asm/unaligned.h>
229f3eb93eSChristoph Hellwig #include <scsi/scsi_device.h>
23e48354ceSNicholas Bellinger #include <scsi/iscsi_proto.h>
24e48354ceSNicholas Bellinger #include <target/target_core_base.h>
25c4795fb2SChristoph Hellwig #include <target/target_core_fabric.h>
26e48354ceSNicholas Bellinger 
27e48354ceSNicholas Bellinger #include "iscsi_target_core.h"
28e48354ceSNicholas Bellinger #include "iscsi_target_seq_pdu_list.h"
29e48354ceSNicholas Bellinger #include "iscsi_target_datain_values.h"
30e48354ceSNicholas Bellinger #include "iscsi_target_device.h"
31e48354ceSNicholas Bellinger #include "iscsi_target_erl0.h"
32e48354ceSNicholas Bellinger #include "iscsi_target_erl1.h"
33e48354ceSNicholas Bellinger #include "iscsi_target_erl2.h"
34e48354ceSNicholas Bellinger #include "iscsi_target_tmr.h"
35e48354ceSNicholas Bellinger #include "iscsi_target_tpg.h"
36e48354ceSNicholas Bellinger #include "iscsi_target_util.h"
37e48354ceSNicholas Bellinger #include "iscsi_target.h"
38e48354ceSNicholas Bellinger 
39e48354ceSNicholas Bellinger u8 iscsit_tmr_abort_task(
40e48354ceSNicholas Bellinger 	struct iscsi_cmd *cmd,
41e48354ceSNicholas Bellinger 	unsigned char *buf)
42e48354ceSNicholas Bellinger {
43e48354ceSNicholas Bellinger 	struct iscsi_cmd *ref_cmd;
44e48354ceSNicholas Bellinger 	struct iscsi_conn *conn = cmd->conn;
45e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req = cmd->tmr_req;
46e48354ceSNicholas Bellinger 	struct se_tmr_req *se_tmr = cmd->se_cmd.se_tmr_req;
47e48354ceSNicholas Bellinger 	struct iscsi_tm *hdr = (struct iscsi_tm *) buf;
48e48354ceSNicholas Bellinger 
49e48354ceSNicholas Bellinger 	ref_cmd = iscsit_find_cmd_from_itt(conn, hdr->rtt);
50e48354ceSNicholas Bellinger 	if (!ref_cmd) {
51e48354ceSNicholas Bellinger 		pr_err("Unable to locate RefTaskTag: 0x%08x on CID:"
52e48354ceSNicholas Bellinger 			" %hu.\n", hdr->rtt, conn->cid);
53e48354ceSNicholas Bellinger 		return ((hdr->refcmdsn >= conn->sess->exp_cmd_sn) &&
54e48354ceSNicholas Bellinger 			(hdr->refcmdsn <= conn->sess->max_cmd_sn)) ?
55e48354ceSNicholas Bellinger 			ISCSI_TMF_RSP_COMPLETE : ISCSI_TMF_RSP_NO_TASK;
56e48354ceSNicholas Bellinger 	}
57e48354ceSNicholas Bellinger 	if (ref_cmd->cmd_sn != hdr->refcmdsn) {
58e48354ceSNicholas Bellinger 		pr_err("RefCmdSN 0x%08x does not equal"
59e48354ceSNicholas Bellinger 			" task's CmdSN 0x%08x. Rejecting ABORT_TASK.\n",
60e48354ceSNicholas Bellinger 			hdr->refcmdsn, ref_cmd->cmd_sn);
61e48354ceSNicholas Bellinger 		return ISCSI_TMF_RSP_REJECTED;
62e48354ceSNicholas Bellinger 	}
63e48354ceSNicholas Bellinger 
64e48354ceSNicholas Bellinger 	se_tmr->ref_task_tag		= hdr->rtt;
659f3eb93eSChristoph Hellwig 	tmr_req->ref_cmd		= ref_cmd;
66e48354ceSNicholas Bellinger 	tmr_req->ref_cmd_sn		= hdr->refcmdsn;
67e48354ceSNicholas Bellinger 	tmr_req->exp_data_sn		= hdr->exp_datasn;
68e48354ceSNicholas Bellinger 
69e48354ceSNicholas Bellinger 	return ISCSI_TMF_RSP_COMPLETE;
70e48354ceSNicholas Bellinger }
71e48354ceSNicholas Bellinger 
72e48354ceSNicholas Bellinger /*
73e48354ceSNicholas Bellinger  *	Called from iscsit_handle_task_mgt_cmd().
74e48354ceSNicholas Bellinger  */
75e48354ceSNicholas Bellinger int iscsit_tmr_task_warm_reset(
76e48354ceSNicholas Bellinger 	struct iscsi_conn *conn,
77e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req,
78e48354ceSNicholas Bellinger 	unsigned char *buf)
79e48354ceSNicholas Bellinger {
80e48354ceSNicholas Bellinger 	struct iscsi_session *sess = conn->sess;
81e48354ceSNicholas Bellinger 	struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
828b1e1244SAndy Grover 
83e48354ceSNicholas Bellinger 	if (!na->tmr_warm_reset) {
84e48354ceSNicholas Bellinger 		pr_err("TMR Opcode TARGET_WARM_RESET authorization"
85e48354ceSNicholas Bellinger 			" failed for Initiator Node: %s\n",
86e48354ceSNicholas Bellinger 			sess->se_sess->se_node_acl->initiatorname);
87e48354ceSNicholas Bellinger 		 return -1;
88e48354ceSNicholas Bellinger 	}
89e48354ceSNicholas Bellinger 	/*
90e48354ceSNicholas Bellinger 	 * Do the real work in transport_generic_do_tmr().
91e48354ceSNicholas Bellinger 	 */
92e48354ceSNicholas Bellinger 	return 0;
93e48354ceSNicholas Bellinger }
94e48354ceSNicholas Bellinger 
95e48354ceSNicholas Bellinger int iscsit_tmr_task_cold_reset(
96e48354ceSNicholas Bellinger 	struct iscsi_conn *conn,
97e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req,
98e48354ceSNicholas Bellinger 	unsigned char *buf)
99e48354ceSNicholas Bellinger {
100e48354ceSNicholas Bellinger 	struct iscsi_session *sess = conn->sess;
101e48354ceSNicholas Bellinger 	struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
102e48354ceSNicholas Bellinger 
103e48354ceSNicholas Bellinger 	if (!na->tmr_cold_reset) {
104e48354ceSNicholas Bellinger 		pr_err("TMR Opcode TARGET_COLD_RESET authorization"
105e48354ceSNicholas Bellinger 			" failed for Initiator Node: %s\n",
106e48354ceSNicholas Bellinger 			sess->se_sess->se_node_acl->initiatorname);
107e48354ceSNicholas Bellinger 		return -1;
108e48354ceSNicholas Bellinger 	}
109e48354ceSNicholas Bellinger 	/*
110e48354ceSNicholas Bellinger 	 * Do the real work in transport_generic_do_tmr().
111e48354ceSNicholas Bellinger 	 */
112e48354ceSNicholas Bellinger 	return 0;
113e48354ceSNicholas Bellinger }
114e48354ceSNicholas Bellinger 
115e48354ceSNicholas Bellinger u8 iscsit_tmr_task_reassign(
116e48354ceSNicholas Bellinger 	struct iscsi_cmd *cmd,
117e48354ceSNicholas Bellinger 	unsigned char *buf)
118e48354ceSNicholas Bellinger {
119e48354ceSNicholas Bellinger 	struct iscsi_cmd *ref_cmd = NULL;
120e48354ceSNicholas Bellinger 	struct iscsi_conn *conn = cmd->conn;
121e48354ceSNicholas Bellinger 	struct iscsi_conn_recovery *cr = NULL;
122e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req = cmd->tmr_req;
123e48354ceSNicholas Bellinger 	struct se_tmr_req *se_tmr = cmd->se_cmd.se_tmr_req;
124e48354ceSNicholas Bellinger 	struct iscsi_tm *hdr = (struct iscsi_tm *) buf;
1259f3eb93eSChristoph Hellwig 	int ret, ref_lun;
126e48354ceSNicholas Bellinger 
127e48354ceSNicholas Bellinger 	pr_debug("Got TASK_REASSIGN TMR ITT: 0x%08x,"
128e48354ceSNicholas Bellinger 		" RefTaskTag: 0x%08x, ExpDataSN: 0x%08x, CID: %hu\n",
129e48354ceSNicholas Bellinger 		hdr->itt, hdr->rtt, hdr->exp_datasn, conn->cid);
130e48354ceSNicholas Bellinger 
131e48354ceSNicholas Bellinger 	if (conn->sess->sess_ops->ErrorRecoveryLevel != 2) {
132e48354ceSNicholas Bellinger 		pr_err("TMR TASK_REASSIGN not supported in ERL<2,"
133e48354ceSNicholas Bellinger 				" ignoring request.\n");
134e48354ceSNicholas Bellinger 		return ISCSI_TMF_RSP_NOT_SUPPORTED;
135e48354ceSNicholas Bellinger 	}
136e48354ceSNicholas Bellinger 
137e48354ceSNicholas Bellinger 	ret = iscsit_find_cmd_for_recovery(conn->sess, &ref_cmd, &cr, hdr->rtt);
138e48354ceSNicholas Bellinger 	if (ret == -2) {
139e48354ceSNicholas Bellinger 		pr_err("Command ITT: 0x%08x is still alligent to CID:"
140e48354ceSNicholas Bellinger 			" %hu\n", ref_cmd->init_task_tag, cr->cid);
141e48354ceSNicholas Bellinger 		return ISCSI_TMF_RSP_TASK_ALLEGIANT;
142e48354ceSNicholas Bellinger 	} else if (ret == -1) {
143e48354ceSNicholas Bellinger 		pr_err("Unable to locate RefTaskTag: 0x%08x in"
144e48354ceSNicholas Bellinger 			" connection recovery command list.\n", hdr->rtt);
145e48354ceSNicholas Bellinger 		return ISCSI_TMF_RSP_NO_TASK;
146e48354ceSNicholas Bellinger 	}
147e48354ceSNicholas Bellinger 	/*
148e48354ceSNicholas Bellinger 	 * Temporary check to prevent connection recovery for
149e48354ceSNicholas Bellinger 	 * connections with a differing MaxRecvDataSegmentLength.
150e48354ceSNicholas Bellinger 	 */
151e48354ceSNicholas Bellinger 	if (cr->maxrecvdatasegmentlength !=
152e48354ceSNicholas Bellinger 	    conn->conn_ops->MaxRecvDataSegmentLength) {
153e48354ceSNicholas Bellinger 		pr_err("Unable to perform connection recovery for"
154e48354ceSNicholas Bellinger 			" differing MaxRecvDataSegmentLength, rejecting"
155e48354ceSNicholas Bellinger 			" TMR TASK_REASSIGN.\n");
156e48354ceSNicholas Bellinger 		return ISCSI_TMF_RSP_REJECTED;
157e48354ceSNicholas Bellinger 	}
158e48354ceSNicholas Bellinger 
1599f3eb93eSChristoph Hellwig 	ref_lun = scsilun_to_int(&hdr->lun);
1609f3eb93eSChristoph Hellwig 	if (ref_lun != ref_cmd->se_cmd.orig_fe_lun) {
1619f3eb93eSChristoph Hellwig 		pr_err("Unable to perform connection recovery for"
1629f3eb93eSChristoph Hellwig 			" differing ref_lun: %d ref_cmd orig_fe_lun: %u\n",
1639f3eb93eSChristoph Hellwig 			ref_lun, ref_cmd->se_cmd.orig_fe_lun);
1649f3eb93eSChristoph Hellwig 		return ISCSI_TMF_RSP_REJECTED;
1659f3eb93eSChristoph Hellwig 	}
1669f3eb93eSChristoph Hellwig 
167e48354ceSNicholas Bellinger 	se_tmr->ref_task_tag		= hdr->rtt;
1689f3eb93eSChristoph Hellwig 	tmr_req->ref_cmd		= ref_cmd;
169e48354ceSNicholas Bellinger 	tmr_req->ref_cmd_sn		= hdr->refcmdsn;
170e48354ceSNicholas Bellinger 	tmr_req->exp_data_sn		= hdr->exp_datasn;
171e48354ceSNicholas Bellinger 	tmr_req->conn_recovery		= cr;
172e48354ceSNicholas Bellinger 	tmr_req->task_reassign		= 1;
173e48354ceSNicholas Bellinger 	/*
174e48354ceSNicholas Bellinger 	 * Command can now be reassigned to a new connection.
175e48354ceSNicholas Bellinger 	 * The task management response must be sent before the
176e48354ceSNicholas Bellinger 	 * reassignment actually happens.  See iscsi_tmr_post_handler().
177e48354ceSNicholas Bellinger 	 */
178e48354ceSNicholas Bellinger 	return ISCSI_TMF_RSP_COMPLETE;
179e48354ceSNicholas Bellinger }
180e48354ceSNicholas Bellinger 
181e48354ceSNicholas Bellinger static void iscsit_task_reassign_remove_cmd(
182e48354ceSNicholas Bellinger 	struct iscsi_cmd *cmd,
183e48354ceSNicholas Bellinger 	struct iscsi_conn_recovery *cr,
184e48354ceSNicholas Bellinger 	struct iscsi_session *sess)
185e48354ceSNicholas Bellinger {
186e48354ceSNicholas Bellinger 	int ret;
187e48354ceSNicholas Bellinger 
188e48354ceSNicholas Bellinger 	spin_lock(&cr->conn_recovery_cmd_lock);
189e48354ceSNicholas Bellinger 	ret = iscsit_remove_cmd_from_connection_recovery(cmd, sess);
190e48354ceSNicholas Bellinger 	spin_unlock(&cr->conn_recovery_cmd_lock);
191e48354ceSNicholas Bellinger 	if (!ret) {
192e48354ceSNicholas Bellinger 		pr_debug("iSCSI connection recovery successful for CID:"
193e48354ceSNicholas Bellinger 			" %hu on SID: %u\n", cr->cid, sess->sid);
194e48354ceSNicholas Bellinger 		iscsit_remove_active_connection_recovery_entry(cr, sess);
195e48354ceSNicholas Bellinger 	}
196e48354ceSNicholas Bellinger }
197e48354ceSNicholas Bellinger 
198e48354ceSNicholas Bellinger static int iscsit_task_reassign_complete_nop_out(
199e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req,
200e48354ceSNicholas Bellinger 	struct iscsi_conn *conn)
201e48354ceSNicholas Bellinger {
2029f3eb93eSChristoph Hellwig 	struct iscsi_cmd *cmd = tmr_req->ref_cmd;
203e48354ceSNicholas Bellinger 	struct iscsi_conn_recovery *cr;
204e48354ceSNicholas Bellinger 
205e48354ceSNicholas Bellinger 	if (!cmd->cr) {
206e48354ceSNicholas Bellinger 		pr_err("struct iscsi_conn_recovery pointer for ITT: 0x%08x"
207e48354ceSNicholas Bellinger 			" is NULL!\n", cmd->init_task_tag);
208e48354ceSNicholas Bellinger 		return -1;
209e48354ceSNicholas Bellinger 	}
210e48354ceSNicholas Bellinger 	cr = cmd->cr;
211e48354ceSNicholas Bellinger 
212e48354ceSNicholas Bellinger 	/*
213e48354ceSNicholas Bellinger 	 * Reset the StatSN so a new one for this commands new connection
214e48354ceSNicholas Bellinger 	 * will be assigned.
215e48354ceSNicholas Bellinger 	 * Reset the ExpStatSN as well so we may receive Status SNACKs.
216e48354ceSNicholas Bellinger 	 */
217e48354ceSNicholas Bellinger 	cmd->stat_sn = cmd->exp_stat_sn = 0;
218e48354ceSNicholas Bellinger 
219e48354ceSNicholas Bellinger 	iscsit_task_reassign_remove_cmd(cmd, cr, conn->sess);
220e48354ceSNicholas Bellinger 
221e48354ceSNicholas Bellinger 	spin_lock_bh(&conn->cmd_lock);
2222fbb471eSAndy Grover 	list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
223e48354ceSNicholas Bellinger 	spin_unlock_bh(&conn->cmd_lock);
224e48354ceSNicholas Bellinger 
225e48354ceSNicholas Bellinger 	cmd->i_state = ISTATE_SEND_NOPIN;
226e48354ceSNicholas Bellinger 	iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
227e48354ceSNicholas Bellinger 	return 0;
228e48354ceSNicholas Bellinger }
229e48354ceSNicholas Bellinger 
230e48354ceSNicholas Bellinger static int iscsit_task_reassign_complete_write(
231e48354ceSNicholas Bellinger 	struct iscsi_cmd *cmd,
232e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req)
233e48354ceSNicholas Bellinger {
234e48354ceSNicholas Bellinger 	int no_build_r2ts = 0;
235e48354ceSNicholas Bellinger 	u32 length = 0, offset = 0;
236e48354ceSNicholas Bellinger 	struct iscsi_conn *conn = cmd->conn;
237e48354ceSNicholas Bellinger 	struct se_cmd *se_cmd = &cmd->se_cmd;
238e48354ceSNicholas Bellinger 	/*
239e48354ceSNicholas Bellinger 	 * The Initiator must not send a R2T SNACK with a Begrun less than
240e48354ceSNicholas Bellinger 	 * the TMR TASK_REASSIGN's ExpDataSN.
241e48354ceSNicholas Bellinger 	 */
242e48354ceSNicholas Bellinger 	if (!tmr_req->exp_data_sn) {
243e48354ceSNicholas Bellinger 		cmd->cmd_flags &= ~ICF_GOT_DATACK_SNACK;
244e48354ceSNicholas Bellinger 		cmd->acked_data_sn = 0;
245e48354ceSNicholas Bellinger 	} else {
246e48354ceSNicholas Bellinger 		cmd->cmd_flags |= ICF_GOT_DATACK_SNACK;
247e48354ceSNicholas Bellinger 		cmd->acked_data_sn = (tmr_req->exp_data_sn - 1);
248e48354ceSNicholas Bellinger 	}
249e48354ceSNicholas Bellinger 
250e48354ceSNicholas Bellinger 	/*
251e48354ceSNicholas Bellinger 	 * The TMR TASK_REASSIGN's ExpDataSN contains the next R2TSN the
252e48354ceSNicholas Bellinger 	 * Initiator is expecting.  The Target controls all WRITE operations
253e48354ceSNicholas Bellinger 	 * so if we have received all DataOUT we can safety ignore Initiator.
254e48354ceSNicholas Bellinger 	 */
255e48354ceSNicholas Bellinger 	if (cmd->cmd_flags & ICF_GOT_LAST_DATAOUT) {
2567d680f3bSChristoph Hellwig 		if (!(cmd->se_cmd.transport_state & CMD_T_SENT)) {
257e48354ceSNicholas Bellinger 			pr_debug("WRITE ITT: 0x%08x: t_state: %d"
258e48354ceSNicholas Bellinger 				" never sent to transport\n",
259e48354ceSNicholas Bellinger 				cmd->init_task_tag, cmd->se_cmd.t_state);
260e48354ceSNicholas Bellinger 			return transport_generic_handle_data(se_cmd);
261e48354ceSNicholas Bellinger 		}
262e48354ceSNicholas Bellinger 
263e48354ceSNicholas Bellinger 		cmd->i_state = ISTATE_SEND_STATUS;
264e48354ceSNicholas Bellinger 		iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
265e48354ceSNicholas Bellinger 		return 0;
266e48354ceSNicholas Bellinger 	}
267e48354ceSNicholas Bellinger 
268e48354ceSNicholas Bellinger 	/*
269e48354ceSNicholas Bellinger 	 * Special case to deal with DataSequenceInOrder=No and Non-Immeidate
270e48354ceSNicholas Bellinger 	 * Unsolicited DataOut.
271e48354ceSNicholas Bellinger 	 */
272e48354ceSNicholas Bellinger 	if (cmd->unsolicited_data) {
273e48354ceSNicholas Bellinger 		cmd->unsolicited_data = 0;
274e48354ceSNicholas Bellinger 
275e48354ceSNicholas Bellinger 		offset = cmd->next_burst_len = cmd->write_data_done;
276e48354ceSNicholas Bellinger 
277e48354ceSNicholas Bellinger 		if ((conn->sess->sess_ops->FirstBurstLength - offset) >=
278ebf1d95cSAndy Grover 		     cmd->se_cmd.data_length) {
279e48354ceSNicholas Bellinger 			no_build_r2ts = 1;
280ebf1d95cSAndy Grover 			length = (cmd->se_cmd.data_length - offset);
281e48354ceSNicholas Bellinger 		} else
282e48354ceSNicholas Bellinger 			length = (conn->sess->sess_ops->FirstBurstLength - offset);
283e48354ceSNicholas Bellinger 
284e48354ceSNicholas Bellinger 		spin_lock_bh(&cmd->r2t_lock);
285e48354ceSNicholas Bellinger 		if (iscsit_add_r2t_to_list(cmd, offset, length, 0, 0) < 0) {
286e48354ceSNicholas Bellinger 			spin_unlock_bh(&cmd->r2t_lock);
287e48354ceSNicholas Bellinger 			return -1;
288e48354ceSNicholas Bellinger 		}
289e48354ceSNicholas Bellinger 		cmd->outstanding_r2ts++;
290e48354ceSNicholas Bellinger 		spin_unlock_bh(&cmd->r2t_lock);
291e48354ceSNicholas Bellinger 
292e48354ceSNicholas Bellinger 		if (no_build_r2ts)
293e48354ceSNicholas Bellinger 			return 0;
294e48354ceSNicholas Bellinger 	}
295e48354ceSNicholas Bellinger 	/*
296e48354ceSNicholas Bellinger 	 * iscsit_build_r2ts_for_cmd() can handle the rest from here.
297e48354ceSNicholas Bellinger 	 */
2988b1e1244SAndy Grover 	return iscsit_build_r2ts_for_cmd(cmd, conn, true);
299e48354ceSNicholas Bellinger }
300e48354ceSNicholas Bellinger 
301e48354ceSNicholas Bellinger static int iscsit_task_reassign_complete_read(
302e48354ceSNicholas Bellinger 	struct iscsi_cmd *cmd,
303e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req)
304e48354ceSNicholas Bellinger {
305e48354ceSNicholas Bellinger 	struct iscsi_conn *conn = cmd->conn;
306e48354ceSNicholas Bellinger 	struct iscsi_datain_req *dr;
307e48354ceSNicholas Bellinger 	struct se_cmd *se_cmd = &cmd->se_cmd;
308e48354ceSNicholas Bellinger 	/*
309e48354ceSNicholas Bellinger 	 * The Initiator must not send a Data SNACK with a BegRun less than
310e48354ceSNicholas Bellinger 	 * the TMR TASK_REASSIGN's ExpDataSN.
311e48354ceSNicholas Bellinger 	 */
312e48354ceSNicholas Bellinger 	if (!tmr_req->exp_data_sn) {
313e48354ceSNicholas Bellinger 		cmd->cmd_flags &= ~ICF_GOT_DATACK_SNACK;
314e48354ceSNicholas Bellinger 		cmd->acked_data_sn = 0;
315e48354ceSNicholas Bellinger 	} else {
316e48354ceSNicholas Bellinger 		cmd->cmd_flags |= ICF_GOT_DATACK_SNACK;
317e48354ceSNicholas Bellinger 		cmd->acked_data_sn = (tmr_req->exp_data_sn - 1);
318e48354ceSNicholas Bellinger 	}
319e48354ceSNicholas Bellinger 
3207d680f3bSChristoph Hellwig 	if (!(cmd->se_cmd.transport_state & CMD_T_SENT)) {
321e48354ceSNicholas Bellinger 		pr_debug("READ ITT: 0x%08x: t_state: %d never sent to"
322e48354ceSNicholas Bellinger 			" transport\n", cmd->init_task_tag,
323e48354ceSNicholas Bellinger 			cmd->se_cmd.t_state);
324acf3ecc4SChristoph Hellwig 		transport_handle_cdb_direct(se_cmd);
325e48354ceSNicholas Bellinger 		return 0;
326e48354ceSNicholas Bellinger 	}
327e48354ceSNicholas Bellinger 
3287d680f3bSChristoph Hellwig 	if (!(se_cmd->transport_state & CMD_T_COMPLETE)) {
329e48354ceSNicholas Bellinger 		pr_err("READ ITT: 0x%08x: t_state: %d, never returned"
330e48354ceSNicholas Bellinger 			" from transport\n", cmd->init_task_tag,
331e48354ceSNicholas Bellinger 			cmd->se_cmd.t_state);
332e48354ceSNicholas Bellinger 		return -1;
333e48354ceSNicholas Bellinger 	}
334e48354ceSNicholas Bellinger 
335e48354ceSNicholas Bellinger 	dr = iscsit_allocate_datain_req();
336e48354ceSNicholas Bellinger 	if (!dr)
337e48354ceSNicholas Bellinger 		return -1;
338e48354ceSNicholas Bellinger 	/*
339e48354ceSNicholas Bellinger 	 * The TMR TASK_REASSIGN's ExpDataSN contains the next DataSN the
340e48354ceSNicholas Bellinger 	 * Initiator is expecting.
341e48354ceSNicholas Bellinger 	 */
342e48354ceSNicholas Bellinger 	dr->data_sn = dr->begrun = tmr_req->exp_data_sn;
343e48354ceSNicholas Bellinger 	dr->runlength = 0;
344e48354ceSNicholas Bellinger 	dr->generate_recovery_values = 1;
345e48354ceSNicholas Bellinger 	dr->recovery = DATAIN_CONNECTION_RECOVERY;
346e48354ceSNicholas Bellinger 
347e48354ceSNicholas Bellinger 	iscsit_attach_datain_req(cmd, dr);
348e48354ceSNicholas Bellinger 
349e48354ceSNicholas Bellinger 	cmd->i_state = ISTATE_SEND_DATAIN;
350e48354ceSNicholas Bellinger 	iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
351e48354ceSNicholas Bellinger 	return 0;
352e48354ceSNicholas Bellinger }
353e48354ceSNicholas Bellinger 
354e48354ceSNicholas Bellinger static int iscsit_task_reassign_complete_none(
355e48354ceSNicholas Bellinger 	struct iscsi_cmd *cmd,
356e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req)
357e48354ceSNicholas Bellinger {
358e48354ceSNicholas Bellinger 	struct iscsi_conn *conn = cmd->conn;
359e48354ceSNicholas Bellinger 
360e48354ceSNicholas Bellinger 	cmd->i_state = ISTATE_SEND_STATUS;
361e48354ceSNicholas Bellinger 	iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
362e48354ceSNicholas Bellinger 	return 0;
363e48354ceSNicholas Bellinger }
364e48354ceSNicholas Bellinger 
365e48354ceSNicholas Bellinger static int iscsit_task_reassign_complete_scsi_cmnd(
366e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req,
367e48354ceSNicholas Bellinger 	struct iscsi_conn *conn)
368e48354ceSNicholas Bellinger {
3699f3eb93eSChristoph Hellwig 	struct iscsi_cmd *cmd = tmr_req->ref_cmd;
370e48354ceSNicholas Bellinger 	struct iscsi_conn_recovery *cr;
371e48354ceSNicholas Bellinger 
372e48354ceSNicholas Bellinger 	if (!cmd->cr) {
373e48354ceSNicholas Bellinger 		pr_err("struct iscsi_conn_recovery pointer for ITT: 0x%08x"
374e48354ceSNicholas Bellinger 			" is NULL!\n", cmd->init_task_tag);
375e48354ceSNicholas Bellinger 		return -1;
376e48354ceSNicholas Bellinger 	}
377e48354ceSNicholas Bellinger 	cr = cmd->cr;
378e48354ceSNicholas Bellinger 
379e48354ceSNicholas Bellinger 	/*
380e48354ceSNicholas Bellinger 	 * Reset the StatSN so a new one for this commands new connection
381e48354ceSNicholas Bellinger 	 * will be assigned.
382e48354ceSNicholas Bellinger 	 * Reset the ExpStatSN as well so we may receive Status SNACKs.
383e48354ceSNicholas Bellinger 	 */
384e48354ceSNicholas Bellinger 	cmd->stat_sn = cmd->exp_stat_sn = 0;
385e48354ceSNicholas Bellinger 
386e48354ceSNicholas Bellinger 	iscsit_task_reassign_remove_cmd(cmd, cr, conn->sess);
387e48354ceSNicholas Bellinger 
388e48354ceSNicholas Bellinger 	spin_lock_bh(&conn->cmd_lock);
3892fbb471eSAndy Grover 	list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
390e48354ceSNicholas Bellinger 	spin_unlock_bh(&conn->cmd_lock);
391e48354ceSNicholas Bellinger 
3929f3eb93eSChristoph Hellwig 	if (cmd->se_cmd.se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
393e48354ceSNicholas Bellinger 		cmd->i_state = ISTATE_SEND_STATUS;
394e48354ceSNicholas Bellinger 		iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
395e48354ceSNicholas Bellinger 		return 0;
396e48354ceSNicholas Bellinger 	}
397e48354ceSNicholas Bellinger 
398e48354ceSNicholas Bellinger 	switch (cmd->data_direction) {
399e48354ceSNicholas Bellinger 	case DMA_TO_DEVICE:
400e48354ceSNicholas Bellinger 		return iscsit_task_reassign_complete_write(cmd, tmr_req);
401e48354ceSNicholas Bellinger 	case DMA_FROM_DEVICE:
402e48354ceSNicholas Bellinger 		return iscsit_task_reassign_complete_read(cmd, tmr_req);
403e48354ceSNicholas Bellinger 	case DMA_NONE:
404e48354ceSNicholas Bellinger 		return iscsit_task_reassign_complete_none(cmd, tmr_req);
405e48354ceSNicholas Bellinger 	default:
406e48354ceSNicholas Bellinger 		pr_err("Unknown cmd->data_direction: 0x%02x\n",
407e48354ceSNicholas Bellinger 				cmd->data_direction);
408e48354ceSNicholas Bellinger 		return -1;
409e48354ceSNicholas Bellinger 	}
410e48354ceSNicholas Bellinger 
411e48354ceSNicholas Bellinger 	return 0;
412e48354ceSNicholas Bellinger }
413e48354ceSNicholas Bellinger 
414e48354ceSNicholas Bellinger static int iscsit_task_reassign_complete(
415e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req,
416e48354ceSNicholas Bellinger 	struct iscsi_conn *conn)
417e48354ceSNicholas Bellinger {
418e48354ceSNicholas Bellinger 	struct iscsi_cmd *cmd;
419e48354ceSNicholas Bellinger 	int ret = 0;
420e48354ceSNicholas Bellinger 
4219f3eb93eSChristoph Hellwig 	if (!tmr_req->ref_cmd) {
422e48354ceSNicholas Bellinger 		pr_err("TMR Request is missing a RefCmd struct iscsi_cmd.\n");
423e48354ceSNicholas Bellinger 		return -1;
424e48354ceSNicholas Bellinger 	}
4259f3eb93eSChristoph Hellwig 	cmd = tmr_req->ref_cmd;
426e48354ceSNicholas Bellinger 
427e48354ceSNicholas Bellinger 	cmd->conn = conn;
428e48354ceSNicholas Bellinger 
429e48354ceSNicholas Bellinger 	switch (cmd->iscsi_opcode) {
430e48354ceSNicholas Bellinger 	case ISCSI_OP_NOOP_OUT:
431e48354ceSNicholas Bellinger 		ret = iscsit_task_reassign_complete_nop_out(tmr_req, conn);
432e48354ceSNicholas Bellinger 		break;
433e48354ceSNicholas Bellinger 	case ISCSI_OP_SCSI_CMD:
434e48354ceSNicholas Bellinger 		ret = iscsit_task_reassign_complete_scsi_cmnd(tmr_req, conn);
435e48354ceSNicholas Bellinger 		break;
436e48354ceSNicholas Bellinger 	default:
437e48354ceSNicholas Bellinger 		 pr_err("Illegal iSCSI Opcode 0x%02x during"
438e48354ceSNicholas Bellinger 			" command realligence\n", cmd->iscsi_opcode);
439e48354ceSNicholas Bellinger 		return -1;
440e48354ceSNicholas Bellinger 	}
441e48354ceSNicholas Bellinger 
442e48354ceSNicholas Bellinger 	if (ret != 0)
443e48354ceSNicholas Bellinger 		return ret;
444e48354ceSNicholas Bellinger 
445e48354ceSNicholas Bellinger 	pr_debug("Completed connection realligence for Opcode: 0x%02x,"
446e48354ceSNicholas Bellinger 		" ITT: 0x%08x to CID: %hu.\n", cmd->iscsi_opcode,
447e48354ceSNicholas Bellinger 			cmd->init_task_tag, conn->cid);
448e48354ceSNicholas Bellinger 
449e48354ceSNicholas Bellinger 	return 0;
450e48354ceSNicholas Bellinger }
451e48354ceSNicholas Bellinger 
452e48354ceSNicholas Bellinger /*
453e48354ceSNicholas Bellinger  *	Handles special after-the-fact actions related to TMRs.
454e48354ceSNicholas Bellinger  *	Right now the only one that its really needed for is
455e48354ceSNicholas Bellinger  *	connection recovery releated TASK_REASSIGN.
456e48354ceSNicholas Bellinger  */
457e48354ceSNicholas Bellinger extern int iscsit_tmr_post_handler(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
458e48354ceSNicholas Bellinger {
459e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req = cmd->tmr_req;
460e48354ceSNicholas Bellinger 	struct se_tmr_req *se_tmr = cmd->se_cmd.se_tmr_req;
461e48354ceSNicholas Bellinger 
462e48354ceSNicholas Bellinger 	if (tmr_req->task_reassign &&
463e48354ceSNicholas Bellinger 	   (se_tmr->response == ISCSI_TMF_RSP_COMPLETE))
464e48354ceSNicholas Bellinger 		return iscsit_task_reassign_complete(tmr_req, conn);
465e48354ceSNicholas Bellinger 
466e48354ceSNicholas Bellinger 	return 0;
467e48354ceSNicholas Bellinger }
468e48354ceSNicholas Bellinger 
469e48354ceSNicholas Bellinger /*
470e48354ceSNicholas Bellinger  *	Nothing to do here, but leave it for good measure. :-)
471e48354ceSNicholas Bellinger  */
472e48354ceSNicholas Bellinger int iscsit_task_reassign_prepare_read(
473e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req,
474e48354ceSNicholas Bellinger 	struct iscsi_conn *conn)
475e48354ceSNicholas Bellinger {
476e48354ceSNicholas Bellinger 	return 0;
477e48354ceSNicholas Bellinger }
478e48354ceSNicholas Bellinger 
479e48354ceSNicholas Bellinger static void iscsit_task_reassign_prepare_unsolicited_dataout(
480e48354ceSNicholas Bellinger 	struct iscsi_cmd *cmd,
481e48354ceSNicholas Bellinger 	struct iscsi_conn *conn)
482e48354ceSNicholas Bellinger {
483e48354ceSNicholas Bellinger 	int i, j;
484e48354ceSNicholas Bellinger 	struct iscsi_pdu *pdu = NULL;
485e48354ceSNicholas Bellinger 	struct iscsi_seq *seq = NULL;
486e48354ceSNicholas Bellinger 
487e48354ceSNicholas Bellinger 	if (conn->sess->sess_ops->DataSequenceInOrder) {
488e48354ceSNicholas Bellinger 		cmd->data_sn = 0;
489e48354ceSNicholas Bellinger 
490e48354ceSNicholas Bellinger 		if (cmd->immediate_data)
491e48354ceSNicholas Bellinger 			cmd->r2t_offset += (cmd->first_burst_len -
492e48354ceSNicholas Bellinger 				cmd->seq_start_offset);
493e48354ceSNicholas Bellinger 
494e48354ceSNicholas Bellinger 		if (conn->sess->sess_ops->DataPDUInOrder) {
495e48354ceSNicholas Bellinger 			cmd->write_data_done -= (cmd->immediate_data) ?
496e48354ceSNicholas Bellinger 						(cmd->first_burst_len -
497e48354ceSNicholas Bellinger 						 cmd->seq_start_offset) :
498e48354ceSNicholas Bellinger 						 cmd->first_burst_len;
499e48354ceSNicholas Bellinger 			cmd->first_burst_len = 0;
500e48354ceSNicholas Bellinger 			return;
501e48354ceSNicholas Bellinger 		}
502e48354ceSNicholas Bellinger 
503e48354ceSNicholas Bellinger 		for (i = 0; i < cmd->pdu_count; i++) {
504e48354ceSNicholas Bellinger 			pdu = &cmd->pdu_list[i];
505e48354ceSNicholas Bellinger 
506e48354ceSNicholas Bellinger 			if (pdu->status != ISCSI_PDU_RECEIVED_OK)
507e48354ceSNicholas Bellinger 				continue;
508e48354ceSNicholas Bellinger 
509e48354ceSNicholas Bellinger 			if ((pdu->offset >= cmd->seq_start_offset) &&
510e48354ceSNicholas Bellinger 			   ((pdu->offset + pdu->length) <=
511e48354ceSNicholas Bellinger 			     cmd->seq_end_offset)) {
512e48354ceSNicholas Bellinger 				cmd->first_burst_len -= pdu->length;
513e48354ceSNicholas Bellinger 				cmd->write_data_done -= pdu->length;
514e48354ceSNicholas Bellinger 				pdu->status = ISCSI_PDU_NOT_RECEIVED;
515e48354ceSNicholas Bellinger 			}
516e48354ceSNicholas Bellinger 		}
517e48354ceSNicholas Bellinger 	} else {
518e48354ceSNicholas Bellinger 		for (i = 0; i < cmd->seq_count; i++) {
519e48354ceSNicholas Bellinger 			seq = &cmd->seq_list[i];
520e48354ceSNicholas Bellinger 
521e48354ceSNicholas Bellinger 			if (seq->type != SEQTYPE_UNSOLICITED)
522e48354ceSNicholas Bellinger 				continue;
523e48354ceSNicholas Bellinger 
524e48354ceSNicholas Bellinger 			cmd->write_data_done -=
525e48354ceSNicholas Bellinger 					(seq->offset - seq->orig_offset);
526e48354ceSNicholas Bellinger 			cmd->first_burst_len = 0;
527e48354ceSNicholas Bellinger 			seq->data_sn = 0;
528e48354ceSNicholas Bellinger 			seq->offset = seq->orig_offset;
529e48354ceSNicholas Bellinger 			seq->next_burst_len = 0;
530e48354ceSNicholas Bellinger 			seq->status = DATAOUT_SEQUENCE_WITHIN_COMMAND_RECOVERY;
531e48354ceSNicholas Bellinger 
532e48354ceSNicholas Bellinger 			if (conn->sess->sess_ops->DataPDUInOrder)
533e48354ceSNicholas Bellinger 				continue;
534e48354ceSNicholas Bellinger 
535e48354ceSNicholas Bellinger 			for (j = 0; j < seq->pdu_count; j++) {
536e48354ceSNicholas Bellinger 				pdu = &cmd->pdu_list[j+seq->pdu_start];
537e48354ceSNicholas Bellinger 
538e48354ceSNicholas Bellinger 				if (pdu->status != ISCSI_PDU_RECEIVED_OK)
539e48354ceSNicholas Bellinger 					continue;
540e48354ceSNicholas Bellinger 
541e48354ceSNicholas Bellinger 				pdu->status = ISCSI_PDU_NOT_RECEIVED;
542e48354ceSNicholas Bellinger 			}
543e48354ceSNicholas Bellinger 		}
544e48354ceSNicholas Bellinger 	}
545e48354ceSNicholas Bellinger }
546e48354ceSNicholas Bellinger 
547e48354ceSNicholas Bellinger int iscsit_task_reassign_prepare_write(
548e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req,
549e48354ceSNicholas Bellinger 	struct iscsi_conn *conn)
550e48354ceSNicholas Bellinger {
5519f3eb93eSChristoph Hellwig 	struct iscsi_cmd *cmd = tmr_req->ref_cmd;
552e48354ceSNicholas Bellinger 	struct iscsi_pdu *pdu = NULL;
553e48354ceSNicholas Bellinger 	struct iscsi_r2t *r2t = NULL, *r2t_tmp;
554e48354ceSNicholas Bellinger 	int first_incomplete_r2t = 1, i = 0;
555e48354ceSNicholas Bellinger 
556e48354ceSNicholas Bellinger 	/*
557e48354ceSNicholas Bellinger 	 * The command was in the process of receiving Unsolicited DataOUT when
558e48354ceSNicholas Bellinger 	 * the connection failed.
559e48354ceSNicholas Bellinger 	 */
560e48354ceSNicholas Bellinger 	if (cmd->unsolicited_data)
561e48354ceSNicholas Bellinger 		iscsit_task_reassign_prepare_unsolicited_dataout(cmd, conn);
562e48354ceSNicholas Bellinger 
563e48354ceSNicholas Bellinger 	/*
564e48354ceSNicholas Bellinger 	 * The Initiator is requesting R2Ts starting from zero,  skip
565e48354ceSNicholas Bellinger 	 * checking acknowledged R2Ts and start checking struct iscsi_r2ts
566e48354ceSNicholas Bellinger 	 * greater than zero.
567e48354ceSNicholas Bellinger 	 */
568e48354ceSNicholas Bellinger 	if (!tmr_req->exp_data_sn)
569e48354ceSNicholas Bellinger 		goto drop_unacknowledged_r2ts;
570e48354ceSNicholas Bellinger 
571e48354ceSNicholas Bellinger 	/*
572e48354ceSNicholas Bellinger 	 * We now check that the PDUs in DataOUT sequences below
573e48354ceSNicholas Bellinger 	 * the TMR TASK_REASSIGN ExpDataSN (R2TSN the Initiator is
574e48354ceSNicholas Bellinger 	 * expecting next) have all the DataOUT they require to complete
575e48354ceSNicholas Bellinger 	 * the DataOUT sequence.  First scan from R2TSN 0 to TMR
576e48354ceSNicholas Bellinger 	 * TASK_REASSIGN ExpDataSN-1.
577e48354ceSNicholas Bellinger 	 *
578e48354ceSNicholas Bellinger 	 * If we have not received all DataOUT in question,  we must
579e48354ceSNicholas Bellinger 	 * make sure to make the appropriate changes to values in
580e48354ceSNicholas Bellinger 	 * struct iscsi_cmd (and elsewhere depending on session parameters)
581e48354ceSNicholas Bellinger 	 * so iscsit_build_r2ts_for_cmd() in iscsit_task_reassign_complete_write()
582e48354ceSNicholas Bellinger 	 * will resend a new R2T for the DataOUT sequences in question.
583e48354ceSNicholas Bellinger 	 */
584e48354ceSNicholas Bellinger 	spin_lock_bh(&cmd->r2t_lock);
585e48354ceSNicholas Bellinger 	if (list_empty(&cmd->cmd_r2t_list)) {
586e48354ceSNicholas Bellinger 		spin_unlock_bh(&cmd->r2t_lock);
587e48354ceSNicholas Bellinger 		return -1;
588e48354ceSNicholas Bellinger 	}
589e48354ceSNicholas Bellinger 
590e48354ceSNicholas Bellinger 	list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
591e48354ceSNicholas Bellinger 
592e48354ceSNicholas Bellinger 		if (r2t->r2t_sn >= tmr_req->exp_data_sn)
593e48354ceSNicholas Bellinger 			continue;
594e48354ceSNicholas Bellinger 		/*
595e48354ceSNicholas Bellinger 		 * Safely ignore Recovery R2Ts and R2Ts that have completed
596e48354ceSNicholas Bellinger 		 * DataOUT sequences.
597e48354ceSNicholas Bellinger 		 */
598e48354ceSNicholas Bellinger 		if (r2t->seq_complete)
599e48354ceSNicholas Bellinger 			continue;
600e48354ceSNicholas Bellinger 
601e48354ceSNicholas Bellinger 		if (r2t->recovery_r2t)
602e48354ceSNicholas Bellinger 			continue;
603e48354ceSNicholas Bellinger 
604e48354ceSNicholas Bellinger 		/*
605e48354ceSNicholas Bellinger 		 *                 DataSequenceInOrder=Yes:
606e48354ceSNicholas Bellinger 		 *
607e48354ceSNicholas Bellinger 		 * Taking into account the iSCSI implementation requirement of
608e48354ceSNicholas Bellinger 		 * MaxOutstandingR2T=1 while ErrorRecoveryLevel>0 and
609e48354ceSNicholas Bellinger 		 * DataSequenceInOrder=Yes, we must take into consideration
610e48354ceSNicholas Bellinger 		 * the following:
611e48354ceSNicholas Bellinger 		 *
612e48354ceSNicholas Bellinger 		 *                  DataSequenceInOrder=No:
613e48354ceSNicholas Bellinger 		 *
614e48354ceSNicholas Bellinger 		 * Taking into account that the Initiator controls the (possibly
615e48354ceSNicholas Bellinger 		 * random) PDU Order in (possibly random) Sequence Order of
616e48354ceSNicholas Bellinger 		 * DataOUT the target requests with R2Ts,  we must take into
617e48354ceSNicholas Bellinger 		 * consideration the following:
618e48354ceSNicholas Bellinger 		 *
619e48354ceSNicholas Bellinger 		 *      DataPDUInOrder=Yes for DataSequenceInOrder=[Yes,No]:
620e48354ceSNicholas Bellinger 		 *
621e48354ceSNicholas Bellinger 		 * While processing non-complete R2T DataOUT sequence requests
622e48354ceSNicholas Bellinger 		 * the Target will re-request only the total sequence length
623e48354ceSNicholas Bellinger 		 * minus current received offset.  This is because we must
624e48354ceSNicholas Bellinger 		 * assume the initiator will continue sending DataOUT from the
625e48354ceSNicholas Bellinger 		 * last PDU before the connection failed.
626e48354ceSNicholas Bellinger 		 *
627e48354ceSNicholas Bellinger 		 *      DataPDUInOrder=No for DataSequenceInOrder=[Yes,No]:
628e48354ceSNicholas Bellinger 		 *
629e48354ceSNicholas Bellinger 		 * While processing non-complete R2T DataOUT sequence requests
630e48354ceSNicholas Bellinger 		 * the Target will re-request the entire DataOUT sequence if
631e48354ceSNicholas Bellinger 		 * any single PDU is missing from the sequence.  This is because
632e48354ceSNicholas Bellinger 		 * we have no logical method to determine the next PDU offset,
633e48354ceSNicholas Bellinger 		 * and we must assume the Initiator will be sending any random
634e48354ceSNicholas Bellinger 		 * PDU offset in the current sequence after TASK_REASSIGN
635e48354ceSNicholas Bellinger 		 * has completed.
636e48354ceSNicholas Bellinger 		 */
637e48354ceSNicholas Bellinger 		if (conn->sess->sess_ops->DataSequenceInOrder) {
638e48354ceSNicholas Bellinger 			if (!first_incomplete_r2t) {
639e48354ceSNicholas Bellinger 				cmd->r2t_offset -= r2t->xfer_len;
640e48354ceSNicholas Bellinger 				goto next;
641e48354ceSNicholas Bellinger 			}
642e48354ceSNicholas Bellinger 
643e48354ceSNicholas Bellinger 			if (conn->sess->sess_ops->DataPDUInOrder) {
644e48354ceSNicholas Bellinger 				cmd->data_sn = 0;
645e48354ceSNicholas Bellinger 				cmd->r2t_offset -= (r2t->xfer_len -
646e48354ceSNicholas Bellinger 					cmd->next_burst_len);
647e48354ceSNicholas Bellinger 				first_incomplete_r2t = 0;
648e48354ceSNicholas Bellinger 				goto next;
649e48354ceSNicholas Bellinger 			}
650e48354ceSNicholas Bellinger 
651e48354ceSNicholas Bellinger 			cmd->data_sn = 0;
652e48354ceSNicholas Bellinger 			cmd->r2t_offset -= r2t->xfer_len;
653e48354ceSNicholas Bellinger 
654e48354ceSNicholas Bellinger 			for (i = 0; i < cmd->pdu_count; i++) {
655e48354ceSNicholas Bellinger 				pdu = &cmd->pdu_list[i];
656e48354ceSNicholas Bellinger 
657e48354ceSNicholas Bellinger 				if (pdu->status != ISCSI_PDU_RECEIVED_OK)
658e48354ceSNicholas Bellinger 					continue;
659e48354ceSNicholas Bellinger 
660e48354ceSNicholas Bellinger 				if ((pdu->offset >= r2t->offset) &&
661e48354ceSNicholas Bellinger 				    (pdu->offset < (r2t->offset +
662e48354ceSNicholas Bellinger 						r2t->xfer_len))) {
663e48354ceSNicholas Bellinger 					cmd->next_burst_len -= pdu->length;
664e48354ceSNicholas Bellinger 					cmd->write_data_done -= pdu->length;
665e48354ceSNicholas Bellinger 					pdu->status = ISCSI_PDU_NOT_RECEIVED;
666e48354ceSNicholas Bellinger 				}
667e48354ceSNicholas Bellinger 			}
668e48354ceSNicholas Bellinger 
669e48354ceSNicholas Bellinger 			first_incomplete_r2t = 0;
670e48354ceSNicholas Bellinger 		} else {
671e48354ceSNicholas Bellinger 			struct iscsi_seq *seq;
672e48354ceSNicholas Bellinger 
673e48354ceSNicholas Bellinger 			seq = iscsit_get_seq_holder(cmd, r2t->offset,
674e48354ceSNicholas Bellinger 					r2t->xfer_len);
675e48354ceSNicholas Bellinger 			if (!seq) {
676e48354ceSNicholas Bellinger 				spin_unlock_bh(&cmd->r2t_lock);
677e48354ceSNicholas Bellinger 				return -1;
678e48354ceSNicholas Bellinger 			}
679e48354ceSNicholas Bellinger 
680e48354ceSNicholas Bellinger 			cmd->write_data_done -=
681e48354ceSNicholas Bellinger 					(seq->offset - seq->orig_offset);
682e48354ceSNicholas Bellinger 			seq->data_sn = 0;
683e48354ceSNicholas Bellinger 			seq->offset = seq->orig_offset;
684e48354ceSNicholas Bellinger 			seq->next_burst_len = 0;
685e48354ceSNicholas Bellinger 			seq->status = DATAOUT_SEQUENCE_WITHIN_COMMAND_RECOVERY;
686e48354ceSNicholas Bellinger 
687e48354ceSNicholas Bellinger 			cmd->seq_send_order--;
688e48354ceSNicholas Bellinger 
689e48354ceSNicholas Bellinger 			if (conn->sess->sess_ops->DataPDUInOrder)
690e48354ceSNicholas Bellinger 				goto next;
691e48354ceSNicholas Bellinger 
692e48354ceSNicholas Bellinger 			for (i = 0; i < seq->pdu_count; i++) {
693e48354ceSNicholas Bellinger 				pdu = &cmd->pdu_list[i+seq->pdu_start];
694e48354ceSNicholas Bellinger 
695e48354ceSNicholas Bellinger 				if (pdu->status != ISCSI_PDU_RECEIVED_OK)
696e48354ceSNicholas Bellinger 					continue;
697e48354ceSNicholas Bellinger 
698e48354ceSNicholas Bellinger 				pdu->status = ISCSI_PDU_NOT_RECEIVED;
699e48354ceSNicholas Bellinger 			}
700e48354ceSNicholas Bellinger 		}
701e48354ceSNicholas Bellinger 
702e48354ceSNicholas Bellinger next:
703e48354ceSNicholas Bellinger 		cmd->outstanding_r2ts--;
704e48354ceSNicholas Bellinger 	}
705e48354ceSNicholas Bellinger 	spin_unlock_bh(&cmd->r2t_lock);
706e48354ceSNicholas Bellinger 
707e48354ceSNicholas Bellinger 	/*
708e48354ceSNicholas Bellinger 	 * We now drop all unacknowledged R2Ts, ie: ExpDataSN from TMR
709e48354ceSNicholas Bellinger 	 * TASK_REASSIGN to the last R2T in the list..  We are also careful
710e48354ceSNicholas Bellinger 	 * to check that the Initiator is not requesting R2Ts for DataOUT
711e48354ceSNicholas Bellinger 	 * sequences it has already completed.
712e48354ceSNicholas Bellinger 	 *
713e48354ceSNicholas Bellinger 	 * Free each R2T in question and adjust values in struct iscsi_cmd
714e48354ceSNicholas Bellinger 	 * accordingly so iscsit_build_r2ts_for_cmd() do the rest of
715e48354ceSNicholas Bellinger 	 * the work after the TMR TASK_REASSIGN Response is sent.
716e48354ceSNicholas Bellinger 	 */
717e48354ceSNicholas Bellinger drop_unacknowledged_r2ts:
718e48354ceSNicholas Bellinger 
719e48354ceSNicholas Bellinger 	cmd->cmd_flags &= ~ICF_SENT_LAST_R2T;
720e48354ceSNicholas Bellinger 	cmd->r2t_sn = tmr_req->exp_data_sn;
721e48354ceSNicholas Bellinger 
722e48354ceSNicholas Bellinger 	spin_lock_bh(&cmd->r2t_lock);
723e48354ceSNicholas Bellinger 	list_for_each_entry_safe(r2t, r2t_tmp, &cmd->cmd_r2t_list, r2t_list) {
724e48354ceSNicholas Bellinger 		/*
725e48354ceSNicholas Bellinger 		 * Skip up to the R2T Sequence number provided by the
726e48354ceSNicholas Bellinger 		 * iSCSI TASK_REASSIGN TMR
727e48354ceSNicholas Bellinger 		 */
728e48354ceSNicholas Bellinger 		if (r2t->r2t_sn < tmr_req->exp_data_sn)
729e48354ceSNicholas Bellinger 			continue;
730e48354ceSNicholas Bellinger 
731e48354ceSNicholas Bellinger 		if (r2t->seq_complete) {
732e48354ceSNicholas Bellinger 			pr_err("Initiator is requesting R2Ts from"
733e48354ceSNicholas Bellinger 				" R2TSN: 0x%08x, but R2TSN: 0x%08x, Offset: %u,"
734e48354ceSNicholas Bellinger 				" Length: %u is already complete."
735e48354ceSNicholas Bellinger 				"   BAD INITIATOR ERL=2 IMPLEMENTATION!\n",
736e48354ceSNicholas Bellinger 				tmr_req->exp_data_sn, r2t->r2t_sn,
737e48354ceSNicholas Bellinger 				r2t->offset, r2t->xfer_len);
738e48354ceSNicholas Bellinger 			spin_unlock_bh(&cmd->r2t_lock);
739e48354ceSNicholas Bellinger 			return -1;
740e48354ceSNicholas Bellinger 		}
741e48354ceSNicholas Bellinger 
742e48354ceSNicholas Bellinger 		if (r2t->recovery_r2t) {
743e48354ceSNicholas Bellinger 			iscsit_free_r2t(r2t, cmd);
744e48354ceSNicholas Bellinger 			continue;
745e48354ceSNicholas Bellinger 		}
746e48354ceSNicholas Bellinger 
747e48354ceSNicholas Bellinger 		/*		   DataSequenceInOrder=Yes:
748e48354ceSNicholas Bellinger 		 *
749e48354ceSNicholas Bellinger 		 * Taking into account the iSCSI implementation requirement of
750e48354ceSNicholas Bellinger 		 * MaxOutstandingR2T=1 while ErrorRecoveryLevel>0 and
751e48354ceSNicholas Bellinger 		 * DataSequenceInOrder=Yes, it's safe to subtract the R2Ts
752e48354ceSNicholas Bellinger 		 * entire transfer length from the commands R2T offset marker.
753e48354ceSNicholas Bellinger 		 *
754e48354ceSNicholas Bellinger 		 *		   DataSequenceInOrder=No:
755e48354ceSNicholas Bellinger 		 *
756e48354ceSNicholas Bellinger 		 * We subtract the difference from struct iscsi_seq between the
757e48354ceSNicholas Bellinger 		 * current offset and original offset from cmd->write_data_done
758e48354ceSNicholas Bellinger 		 * for account for DataOUT PDUs already received.  Then reset
759e48354ceSNicholas Bellinger 		 * the current offset to the original and zero out the current
760e48354ceSNicholas Bellinger 		 * burst length,  to make sure we re-request the entire DataOUT
761e48354ceSNicholas Bellinger 		 * sequence.
762e48354ceSNicholas Bellinger 		 */
763e48354ceSNicholas Bellinger 		if (conn->sess->sess_ops->DataSequenceInOrder)
764e48354ceSNicholas Bellinger 			cmd->r2t_offset -= r2t->xfer_len;
765e48354ceSNicholas Bellinger 		else
766e48354ceSNicholas Bellinger 			cmd->seq_send_order--;
767e48354ceSNicholas Bellinger 
768e48354ceSNicholas Bellinger 		cmd->outstanding_r2ts--;
769e48354ceSNicholas Bellinger 		iscsit_free_r2t(r2t, cmd);
770e48354ceSNicholas Bellinger 	}
771e48354ceSNicholas Bellinger 	spin_unlock_bh(&cmd->r2t_lock);
772e48354ceSNicholas Bellinger 
773e48354ceSNicholas Bellinger 	return 0;
774e48354ceSNicholas Bellinger }
775e48354ceSNicholas Bellinger 
776e48354ceSNicholas Bellinger /*
777e48354ceSNicholas Bellinger  *	Performs sanity checks TMR TASK_REASSIGN's ExpDataSN for
778e48354ceSNicholas Bellinger  *	a given struct iscsi_cmd.
779e48354ceSNicholas Bellinger  */
780e48354ceSNicholas Bellinger int iscsit_check_task_reassign_expdatasn(
781e48354ceSNicholas Bellinger 	struct iscsi_tmr_req *tmr_req,
782e48354ceSNicholas Bellinger 	struct iscsi_conn *conn)
783e48354ceSNicholas Bellinger {
7849f3eb93eSChristoph Hellwig 	struct iscsi_cmd *ref_cmd = tmr_req->ref_cmd;
785e48354ceSNicholas Bellinger 
786e48354ceSNicholas Bellinger 	if (ref_cmd->iscsi_opcode != ISCSI_OP_SCSI_CMD)
787e48354ceSNicholas Bellinger 		return 0;
788e48354ceSNicholas Bellinger 
7899f3eb93eSChristoph Hellwig 	if (ref_cmd->se_cmd.se_cmd_flags & SCF_SENT_CHECK_CONDITION)
790e48354ceSNicholas Bellinger 		return 0;
791e48354ceSNicholas Bellinger 
792e48354ceSNicholas Bellinger 	if (ref_cmd->data_direction == DMA_NONE)
793e48354ceSNicholas Bellinger 		return 0;
794e48354ceSNicholas Bellinger 
795e48354ceSNicholas Bellinger 	/*
796e48354ceSNicholas Bellinger 	 * For READs the TMR TASK_REASSIGNs ExpDataSN contains the next DataSN
797e48354ceSNicholas Bellinger 	 * of DataIN the Initiator is expecting.
798e48354ceSNicholas Bellinger 	 *
799e48354ceSNicholas Bellinger 	 * Also check that the Initiator is not re-requesting DataIN that has
800e48354ceSNicholas Bellinger 	 * already been acknowledged with a DataAck SNACK.
801e48354ceSNicholas Bellinger 	 */
802e48354ceSNicholas Bellinger 	if (ref_cmd->data_direction == DMA_FROM_DEVICE) {
803e48354ceSNicholas Bellinger 		if (tmr_req->exp_data_sn > ref_cmd->data_sn) {
804e48354ceSNicholas Bellinger 			pr_err("Received ExpDataSN: 0x%08x for READ"
805e48354ceSNicholas Bellinger 				" in TMR TASK_REASSIGN greater than command's"
806e48354ceSNicholas Bellinger 				" DataSN: 0x%08x.\n", tmr_req->exp_data_sn,
807e48354ceSNicholas Bellinger 				ref_cmd->data_sn);
808e48354ceSNicholas Bellinger 			return -1;
809e48354ceSNicholas Bellinger 		}
810e48354ceSNicholas Bellinger 		if ((ref_cmd->cmd_flags & ICF_GOT_DATACK_SNACK) &&
811e48354ceSNicholas Bellinger 		    (tmr_req->exp_data_sn <= ref_cmd->acked_data_sn)) {
812e48354ceSNicholas Bellinger 			pr_err("Received ExpDataSN: 0x%08x for READ"
813e48354ceSNicholas Bellinger 				" in TMR TASK_REASSIGN for previously"
814e48354ceSNicholas Bellinger 				" acknowledged DataIN: 0x%08x,"
815e48354ceSNicholas Bellinger 				" protocol error\n", tmr_req->exp_data_sn,
816e48354ceSNicholas Bellinger 				ref_cmd->acked_data_sn);
817e48354ceSNicholas Bellinger 			return -1;
818e48354ceSNicholas Bellinger 		}
819e48354ceSNicholas Bellinger 		return iscsit_task_reassign_prepare_read(tmr_req, conn);
820e48354ceSNicholas Bellinger 	}
821e48354ceSNicholas Bellinger 
822e48354ceSNicholas Bellinger 	/*
823e48354ceSNicholas Bellinger 	 * For WRITEs the TMR TASK_REASSIGNs ExpDataSN contains the next R2TSN
824e48354ceSNicholas Bellinger 	 * for R2Ts the Initiator is expecting.
825e48354ceSNicholas Bellinger 	 *
826e48354ceSNicholas Bellinger 	 * Do the magic in iscsit_task_reassign_prepare_write().
827e48354ceSNicholas Bellinger 	 */
828e48354ceSNicholas Bellinger 	if (ref_cmd->data_direction == DMA_TO_DEVICE) {
829e48354ceSNicholas Bellinger 		if (tmr_req->exp_data_sn > ref_cmd->r2t_sn) {
830e48354ceSNicholas Bellinger 			pr_err("Received ExpDataSN: 0x%08x for WRITE"
831e48354ceSNicholas Bellinger 				" in TMR TASK_REASSIGN greater than command's"
832e48354ceSNicholas Bellinger 				" R2TSN: 0x%08x.\n", tmr_req->exp_data_sn,
833e48354ceSNicholas Bellinger 					ref_cmd->r2t_sn);
834e48354ceSNicholas Bellinger 			return -1;
835e48354ceSNicholas Bellinger 		}
836e48354ceSNicholas Bellinger 		return iscsit_task_reassign_prepare_write(tmr_req, conn);
837e48354ceSNicholas Bellinger 	}
838e48354ceSNicholas Bellinger 
839e48354ceSNicholas Bellinger 	pr_err("Unknown iSCSI data_direction: 0x%02x\n",
840e48354ceSNicholas Bellinger 			ref_cmd->data_direction);
841e48354ceSNicholas Bellinger 
842e48354ceSNicholas Bellinger 	return -1;
843e48354ceSNicholas Bellinger }
844