1 /*******************************************************************************
2 * This file contains error recovery level two functions used by
3 * the iSCSI Target driver.
5 * (c) Copyright 2007-2013 Datera, Inc.
7 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 ******************************************************************************/
20 #include <linux/slab.h>
21 #include <scsi/iscsi_proto.h>
22 #include <target/target_core_base.h>
23 #include <target/target_core_fabric.h>
25 #include <target/iscsi/iscsi_target_core.h>
26 #include "iscsi_target_datain_values.h"
27 #include "iscsi_target_util.h"
28 #include "iscsi_target_erl0.h"
29 #include "iscsi_target_erl1.h"
30 #include "iscsi_target_erl2.h"
31 #include "iscsi_target.h"
34 * FIXME: Does RData SNACK apply here as well?
36 void iscsit_create_conn_recovery_datain_values(
37 struct iscsi_cmd
*cmd
,
41 struct iscsi_conn
*conn
= cmd
->conn
;
43 cmd
->next_burst_len
= 0;
44 cmd
->read_data_done
= 0;
46 while (be32_to_cpu(exp_data_sn
) > data_sn
) {
47 if ((cmd
->next_burst_len
+
48 conn
->conn_ops
->MaxRecvDataSegmentLength
) <
49 conn
->sess
->sess_ops
->MaxBurstLength
) {
50 cmd
->read_data_done
+=
51 conn
->conn_ops
->MaxRecvDataSegmentLength
;
52 cmd
->next_burst_len
+=
53 conn
->conn_ops
->MaxRecvDataSegmentLength
;
55 cmd
->read_data_done
+=
56 (conn
->sess
->sess_ops
->MaxBurstLength
-
58 cmd
->next_burst_len
= 0;
64 void iscsit_create_conn_recovery_dataout_values(
65 struct iscsi_cmd
*cmd
)
67 u32 write_data_done
= 0;
68 struct iscsi_conn
*conn
= cmd
->conn
;
71 cmd
->next_burst_len
= 0;
73 while (cmd
->write_data_done
> write_data_done
) {
74 if ((write_data_done
+ conn
->sess
->sess_ops
->MaxBurstLength
) <=
76 write_data_done
+= conn
->sess
->sess_ops
->MaxBurstLength
;
81 cmd
->write_data_done
= write_data_done
;
84 static int iscsit_attach_active_connection_recovery_entry(
85 struct iscsi_session
*sess
,
86 struct iscsi_conn_recovery
*cr
)
88 spin_lock(&sess
->cr_a_lock
);
89 list_add_tail(&cr
->cr_list
, &sess
->cr_active_list
);
90 spin_unlock(&sess
->cr_a_lock
);
95 static int iscsit_attach_inactive_connection_recovery_entry(
96 struct iscsi_session
*sess
,
97 struct iscsi_conn_recovery
*cr
)
99 spin_lock(&sess
->cr_i_lock
);
100 list_add_tail(&cr
->cr_list
, &sess
->cr_inactive_list
);
102 sess
->conn_recovery_count
++;
103 pr_debug("Incremented connection recovery count to %u for"
104 " SID: %u\n", sess
->conn_recovery_count
, sess
->sid
);
105 spin_unlock(&sess
->cr_i_lock
);
110 struct iscsi_conn_recovery
*iscsit_get_inactive_connection_recovery_entry(
111 struct iscsi_session
*sess
,
114 struct iscsi_conn_recovery
*cr
;
116 spin_lock(&sess
->cr_i_lock
);
117 list_for_each_entry(cr
, &sess
->cr_inactive_list
, cr_list
) {
118 if (cr
->cid
== cid
) {
119 spin_unlock(&sess
->cr_i_lock
);
123 spin_unlock(&sess
->cr_i_lock
);
128 void iscsit_free_connection_recovery_entires(struct iscsi_session
*sess
)
130 struct iscsi_cmd
*cmd
, *cmd_tmp
;
131 struct iscsi_conn_recovery
*cr
, *cr_tmp
;
133 spin_lock(&sess
->cr_a_lock
);
134 list_for_each_entry_safe(cr
, cr_tmp
, &sess
->cr_active_list
, cr_list
) {
135 list_del(&cr
->cr_list
);
136 spin_unlock(&sess
->cr_a_lock
);
138 spin_lock(&cr
->conn_recovery_cmd_lock
);
139 list_for_each_entry_safe(cmd
, cmd_tmp
,
140 &cr
->conn_recovery_cmd_list
, i_conn_node
) {
142 list_del_init(&cmd
->i_conn_node
);
144 spin_unlock(&cr
->conn_recovery_cmd_lock
);
145 iscsit_free_cmd(cmd
, true);
146 spin_lock(&cr
->conn_recovery_cmd_lock
);
148 spin_unlock(&cr
->conn_recovery_cmd_lock
);
149 spin_lock(&sess
->cr_a_lock
);
153 spin_unlock(&sess
->cr_a_lock
);
155 spin_lock(&sess
->cr_i_lock
);
156 list_for_each_entry_safe(cr
, cr_tmp
, &sess
->cr_inactive_list
, cr_list
) {
157 list_del(&cr
->cr_list
);
158 spin_unlock(&sess
->cr_i_lock
);
160 spin_lock(&cr
->conn_recovery_cmd_lock
);
161 list_for_each_entry_safe(cmd
, cmd_tmp
,
162 &cr
->conn_recovery_cmd_list
, i_conn_node
) {
164 list_del_init(&cmd
->i_conn_node
);
166 spin_unlock(&cr
->conn_recovery_cmd_lock
);
167 iscsit_free_cmd(cmd
, true);
168 spin_lock(&cr
->conn_recovery_cmd_lock
);
170 spin_unlock(&cr
->conn_recovery_cmd_lock
);
171 spin_lock(&sess
->cr_i_lock
);
175 spin_unlock(&sess
->cr_i_lock
);
178 int iscsit_remove_active_connection_recovery_entry(
179 struct iscsi_conn_recovery
*cr
,
180 struct iscsi_session
*sess
)
182 spin_lock(&sess
->cr_a_lock
);
183 list_del(&cr
->cr_list
);
185 sess
->conn_recovery_count
--;
186 pr_debug("Decremented connection recovery count to %u for"
187 " SID: %u\n", sess
->conn_recovery_count
, sess
->sid
);
188 spin_unlock(&sess
->cr_a_lock
);
195 static void iscsit_remove_inactive_connection_recovery_entry(
196 struct iscsi_conn_recovery
*cr
,
197 struct iscsi_session
*sess
)
199 spin_lock(&sess
->cr_i_lock
);
200 list_del(&cr
->cr_list
);
201 spin_unlock(&sess
->cr_i_lock
);
205 * Called with cr->conn_recovery_cmd_lock help.
207 int iscsit_remove_cmd_from_connection_recovery(
208 struct iscsi_cmd
*cmd
,
209 struct iscsi_session
*sess
)
211 struct iscsi_conn_recovery
*cr
;
214 pr_err("struct iscsi_conn_recovery pointer for ITT: 0x%08x"
215 " is NULL!\n", cmd
->init_task_tag
);
220 list_del_init(&cmd
->i_conn_node
);
221 return --cr
->cmd_count
;
224 void iscsit_discard_cr_cmds_by_expstatsn(
225 struct iscsi_conn_recovery
*cr
,
228 u32 dropped_count
= 0;
229 struct iscsi_cmd
*cmd
, *cmd_tmp
;
230 struct iscsi_session
*sess
= cr
->sess
;
232 spin_lock(&cr
->conn_recovery_cmd_lock
);
233 list_for_each_entry_safe(cmd
, cmd_tmp
,
234 &cr
->conn_recovery_cmd_list
, i_conn_node
) {
236 if (((cmd
->deferred_i_state
!= ISTATE_SENT_STATUS
) &&
237 (cmd
->deferred_i_state
!= ISTATE_REMOVE
)) ||
238 (cmd
->stat_sn
>= exp_statsn
)) {
243 pr_debug("Dropping Acknowledged ITT: 0x%08x, StatSN:"
244 " 0x%08x, CID: %hu.\n", cmd
->init_task_tag
,
245 cmd
->stat_sn
, cr
->cid
);
247 iscsit_remove_cmd_from_connection_recovery(cmd
, sess
);
249 spin_unlock(&cr
->conn_recovery_cmd_lock
);
250 iscsit_free_cmd(cmd
, true);
251 spin_lock(&cr
->conn_recovery_cmd_lock
);
253 spin_unlock(&cr
->conn_recovery_cmd_lock
);
255 pr_debug("Dropped %u total acknowledged commands on"
256 " CID: %hu less than old ExpStatSN: 0x%08x\n",
257 dropped_count
, cr
->cid
, exp_statsn
);
259 if (!cr
->cmd_count
) {
260 pr_debug("No commands to be reassigned for failed"
261 " connection CID: %hu on SID: %u\n",
263 iscsit_remove_inactive_connection_recovery_entry(cr
, sess
);
264 iscsit_attach_active_connection_recovery_entry(sess
, cr
);
265 pr_debug("iSCSI connection recovery successful for CID:"
266 " %hu on SID: %u\n", cr
->cid
, sess
->sid
);
267 iscsit_remove_active_connection_recovery_entry(cr
, sess
);
269 iscsit_remove_inactive_connection_recovery_entry(cr
, sess
);
270 iscsit_attach_active_connection_recovery_entry(sess
, cr
);
274 int iscsit_discard_unacknowledged_ooo_cmdsns_for_conn(struct iscsi_conn
*conn
)
276 u32 dropped_count
= 0;
277 struct iscsi_cmd
*cmd
, *cmd_tmp
;
278 struct iscsi_ooo_cmdsn
*ooo_cmdsn
, *ooo_cmdsn_tmp
;
279 struct iscsi_session
*sess
= conn
->sess
;
281 mutex_lock(&sess
->cmdsn_mutex
);
282 list_for_each_entry_safe(ooo_cmdsn
, ooo_cmdsn_tmp
,
283 &sess
->sess_ooo_cmdsn_list
, ooo_list
) {
285 if (ooo_cmdsn
->cid
!= conn
->cid
)
289 pr_debug("Dropping unacknowledged CmdSN:"
290 " 0x%08x during connection recovery on CID: %hu\n",
291 ooo_cmdsn
->cmdsn
, conn
->cid
);
292 iscsit_remove_ooo_cmdsn(sess
, ooo_cmdsn
);
294 mutex_unlock(&sess
->cmdsn_mutex
);
296 spin_lock_bh(&conn
->cmd_lock
);
297 list_for_each_entry_safe(cmd
, cmd_tmp
, &conn
->conn_cmd_list
, i_conn_node
) {
298 if (!(cmd
->cmd_flags
& ICF_OOO_CMDSN
))
301 list_del_init(&cmd
->i_conn_node
);
303 spin_unlock_bh(&conn
->cmd_lock
);
304 iscsit_free_cmd(cmd
, true);
305 spin_lock_bh(&conn
->cmd_lock
);
307 spin_unlock_bh(&conn
->cmd_lock
);
309 pr_debug("Dropped %u total unacknowledged commands on CID:"
310 " %hu for ExpCmdSN: 0x%08x.\n", dropped_count
, conn
->cid
,
315 int iscsit_prepare_cmds_for_reallegiance(struct iscsi_conn
*conn
)
318 struct iscsi_cmd
*cmd
, *cmd_tmp
;
319 struct iscsi_conn_recovery
*cr
;
322 * Allocate an struct iscsi_conn_recovery for this connection.
323 * Each struct iscsi_cmd contains an struct iscsi_conn_recovery pointer
324 * (struct iscsi_cmd->cr) so we need to allocate this before preparing the
325 * connection's command list for connection recovery.
327 cr
= kzalloc(sizeof(struct iscsi_conn_recovery
), GFP_KERNEL
);
329 pr_err("Unable to allocate memory for"
330 " struct iscsi_conn_recovery.\n");
333 INIT_LIST_HEAD(&cr
->cr_list
);
334 INIT_LIST_HEAD(&cr
->conn_recovery_cmd_list
);
335 spin_lock_init(&cr
->conn_recovery_cmd_lock
);
337 * Only perform connection recovery on ISCSI_OP_SCSI_CMD or
338 * ISCSI_OP_NOOP_OUT opcodes. For all other opcodes call
339 * list_del_init(&cmd->i_conn_node); to release the command to the
340 * session pool and remove it from the connection's list.
342 * Also stop the DataOUT timer, which will be restarted after
343 * sending the TMR response.
345 spin_lock_bh(&conn
->cmd_lock
);
346 list_for_each_entry_safe(cmd
, cmd_tmp
, &conn
->conn_cmd_list
, i_conn_node
) {
348 if ((cmd
->iscsi_opcode
!= ISCSI_OP_SCSI_CMD
) &&
349 (cmd
->iscsi_opcode
!= ISCSI_OP_NOOP_OUT
)) {
350 pr_debug("Not performing reallegiance on"
351 " Opcode: 0x%02x, ITT: 0x%08x, CmdSN: 0x%08x,"
352 " CID: %hu\n", cmd
->iscsi_opcode
,
353 cmd
->init_task_tag
, cmd
->cmd_sn
, conn
->cid
);
355 list_del_init(&cmd
->i_conn_node
);
356 spin_unlock_bh(&conn
->cmd_lock
);
357 iscsit_free_cmd(cmd
, true);
358 spin_lock_bh(&conn
->cmd_lock
);
363 * Special case where commands greater than or equal to
364 * the session's ExpCmdSN are attached to the connection
365 * list but not to the out of order CmdSN list. The one
366 * obvious case is when a command with immediate data
367 * attached must only check the CmdSN against ExpCmdSN
368 * after the data is received. The special case below
369 * is when the connection fails before data is received,
370 * but also may apply to other PDUs, so it has been
373 if (!(cmd
->cmd_flags
& ICF_OOO_CMDSN
) && !cmd
->immediate_cmd
&&
374 iscsi_sna_gte(cmd
->cmd_sn
, conn
->sess
->exp_cmd_sn
)) {
375 list_del_init(&cmd
->i_conn_node
);
376 spin_unlock_bh(&conn
->cmd_lock
);
377 iscsit_free_cmd(cmd
, true);
378 spin_lock_bh(&conn
->cmd_lock
);
383 pr_debug("Preparing Opcode: 0x%02x, ITT: 0x%08x,"
384 " CmdSN: 0x%08x, StatSN: 0x%08x, CID: %hu for"
385 " reallegiance.\n", cmd
->iscsi_opcode
,
386 cmd
->init_task_tag
, cmd
->cmd_sn
, cmd
->stat_sn
,
389 cmd
->deferred_i_state
= cmd
->i_state
;
390 cmd
->i_state
= ISTATE_IN_CONNECTION_RECOVERY
;
392 if (cmd
->data_direction
== DMA_TO_DEVICE
)
393 iscsit_stop_dataout_timer(cmd
);
395 cmd
->sess
= conn
->sess
;
397 list_del_init(&cmd
->i_conn_node
);
398 spin_unlock_bh(&conn
->cmd_lock
);
400 iscsit_free_all_datain_reqs(cmd
);
402 transport_wait_for_tasks(&cmd
->se_cmd
);
404 * Add the struct iscsi_cmd to the connection recovery cmd list
406 spin_lock(&cr
->conn_recovery_cmd_lock
);
407 list_add_tail(&cmd
->i_conn_node
, &cr
->conn_recovery_cmd_list
);
408 spin_unlock(&cr
->conn_recovery_cmd_lock
);
410 spin_lock_bh(&conn
->cmd_lock
);
414 spin_unlock_bh(&conn
->cmd_lock
);
416 * Fill in the various values in the preallocated struct iscsi_conn_recovery.
419 cr
->cmd_count
= cmd_count
;
420 cr
->maxrecvdatasegmentlength
= conn
->conn_ops
->MaxRecvDataSegmentLength
;
421 cr
->maxxmitdatasegmentlength
= conn
->conn_ops
->MaxXmitDataSegmentLength
;
422 cr
->sess
= conn
->sess
;
424 iscsit_attach_inactive_connection_recovery_entry(conn
->sess
, cr
);
429 int iscsit_connection_recovery_transport_reset(struct iscsi_conn
*conn
)
431 atomic_set(&conn
->connection_recovery
, 1);
433 if (iscsit_close_connection(conn
) < 0)