blob: 41b9e7cc08b86fd7c258a872499e14e3f0948394 [file] [log] [blame]
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001/*******************************************************************************
2 * This file contains the iSCSI Target specific utility functions.
3 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07004 * (c) Copyright 2007-2013 Datera, Inc.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00005 *
6 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
7 *
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.
12 *
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 ******************************************************************************/
18
19#include <linux/list.h>
Nicholas Bellinger988e3a82013-08-17 15:49:08 -070020#include <linux/percpu_ida.h>
Bart Van Assche8dcf07b2016-11-14 15:47:14 -080021#include <net/ipv6.h> /* ipv6_addr_equal() */
Nicholas Bellingere48354c2011-07-23 06:43:04 +000022#include <scsi/scsi_tcq.h>
23#include <scsi/iscsi_proto.h>
24#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050025#include <target/target_core_fabric.h>
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -080026#include <target/iscsi/iscsi_transport.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000027
Sagi Grimberg67f091f2015-01-07 14:57:31 +020028#include <target/iscsi/iscsi_target_core.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000029#include "iscsi_target_parameters.h"
30#include "iscsi_target_seq_pdu_list.h"
31#include "iscsi_target_datain_values.h"
32#include "iscsi_target_erl0.h"
33#include "iscsi_target_erl1.h"
34#include "iscsi_target_erl2.h"
35#include "iscsi_target_tpg.h"
Nicholas Bellingere48354c2011-07-23 06:43:04 +000036#include "iscsi_target_util.h"
37#include "iscsi_target.h"
38
39#define PRINT_BUFF(buff, len) \
40{ \
41 int zzz; \
42 \
43 pr_debug("%d:\n", __LINE__); \
44 for (zzz = 0; zzz < len; zzz++) { \
45 if (zzz % 16 == 0) { \
46 if (zzz) \
47 pr_debug("\n"); \
48 pr_debug("%4i: ", zzz); \
49 } \
50 pr_debug("%02x ", (unsigned char) (buff)[zzz]); \
51 } \
52 if ((len + 1) % 16) \
53 pr_debug("\n"); \
54}
55
56extern struct list_head g_tiqn_list;
57extern spinlock_t tiqn_lock;
58
59/*
60 * Called with cmd->r2t_lock held.
61 */
62int iscsit_add_r2t_to_list(
63 struct iscsi_cmd *cmd,
64 u32 offset,
65 u32 xfer_len,
66 int recovery,
67 u32 r2t_sn)
68{
69 struct iscsi_r2t *r2t;
70
71 r2t = kmem_cache_zalloc(lio_r2t_cache, GFP_ATOMIC);
72 if (!r2t) {
73 pr_err("Unable to allocate memory for struct iscsi_r2t.\n");
74 return -1;
75 }
76 INIT_LIST_HEAD(&r2t->r2t_list);
77
78 r2t->recovery_r2t = recovery;
79 r2t->r2t_sn = (!r2t_sn) ? cmd->r2t_sn++ : r2t_sn;
80 r2t->offset = offset;
81 r2t->xfer_len = xfer_len;
82 list_add_tail(&r2t->r2t_list, &cmd->cmd_r2t_list);
83 spin_unlock_bh(&cmd->r2t_lock);
84
85 iscsit_add_cmd_to_immediate_queue(cmd, cmd->conn, ISTATE_SEND_R2T);
86
87 spin_lock_bh(&cmd->r2t_lock);
88 return 0;
89}
90
91struct iscsi_r2t *iscsit_get_r2t_for_eos(
92 struct iscsi_cmd *cmd,
93 u32 offset,
94 u32 length)
95{
96 struct iscsi_r2t *r2t;
97
98 spin_lock_bh(&cmd->r2t_lock);
99 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
100 if ((r2t->offset <= offset) &&
101 (r2t->offset + r2t->xfer_len) >= (offset + length)) {
102 spin_unlock_bh(&cmd->r2t_lock);
103 return r2t;
104 }
105 }
106 spin_unlock_bh(&cmd->r2t_lock);
107
108 pr_err("Unable to locate R2T for Offset: %u, Length:"
109 " %u\n", offset, length);
110 return NULL;
111}
112
113struct iscsi_r2t *iscsit_get_r2t_from_list(struct iscsi_cmd *cmd)
114{
115 struct iscsi_r2t *r2t;
116
117 spin_lock_bh(&cmd->r2t_lock);
118 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
119 if (!r2t->sent_r2t) {
120 spin_unlock_bh(&cmd->r2t_lock);
121 return r2t;
122 }
123 }
124 spin_unlock_bh(&cmd->r2t_lock);
125
126 pr_err("Unable to locate next R2T to send for ITT:"
127 " 0x%08x.\n", cmd->init_task_tag);
128 return NULL;
129}
130
131/*
132 * Called with cmd->r2t_lock held.
133 */
134void iscsit_free_r2t(struct iscsi_r2t *r2t, struct iscsi_cmd *cmd)
135{
136 list_del(&r2t->r2t_list);
137 kmem_cache_free(lio_r2t_cache, r2t);
138}
139
140void iscsit_free_r2ts_from_list(struct iscsi_cmd *cmd)
141{
142 struct iscsi_r2t *r2t, *r2t_tmp;
143
144 spin_lock_bh(&cmd->r2t_lock);
145 list_for_each_entry_safe(r2t, r2t_tmp, &cmd->cmd_r2t_list, r2t_list)
146 iscsit_free_r2t(r2t, cmd);
147 spin_unlock_bh(&cmd->r2t_lock);
148}
149
150/*
151 * May be called from software interrupt (timer) context for allocating
152 * iSCSI NopINs.
153 */
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000154struct iscsi_cmd *iscsit_allocate_cmd(struct iscsi_conn *conn, int state)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000155{
156 struct iscsi_cmd *cmd;
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700157 struct se_session *se_sess = conn->sess->se_sess;
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000158 int size, tag;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000159
Kent Overstreet6f6b5d1e2014-01-19 08:26:37 +0000160 tag = percpu_ida_alloc(&se_sess->sess_tag_pool, state);
161 if (tag < 0)
162 return NULL;
163
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700164 size = sizeof(struct iscsi_cmd) + conn->conn_transport->priv_size;
165 cmd = (struct iscsi_cmd *)(se_sess->sess_cmd_map + (tag * size));
166 memset(cmd, 0, size);
167
168 cmd->se_cmd.map_tag = tag;
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800169 cmd->conn = conn;
Bart Van Assche4412a672017-05-23 16:48:43 -0700170 cmd->data_direction = DMA_NONE;
Andy Grover2fbb4712012-04-03 15:51:01 -0700171 INIT_LIST_HEAD(&cmd->i_conn_node);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000172 INIT_LIST_HEAD(&cmd->datain_list);
173 INIT_LIST_HEAD(&cmd->cmd_r2t_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000174 spin_lock_init(&cmd->datain_lock);
175 spin_lock_init(&cmd->dataout_timeout_lock);
176 spin_lock_init(&cmd->istate_lock);
177 spin_lock_init(&cmd->error_lock);
178 spin_lock_init(&cmd->r2t_lock);
179
180 return cmd;
181}
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800182EXPORT_SYMBOL(iscsit_allocate_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000183
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000184struct iscsi_seq *iscsit_get_seq_holder_for_datain(
185 struct iscsi_cmd *cmd,
186 u32 seq_send_order)
187{
188 u32 i;
189
190 for (i = 0; i < cmd->seq_count; i++)
191 if (cmd->seq_list[i].seq_send_order == seq_send_order)
192 return &cmd->seq_list[i];
193
194 return NULL;
195}
196
197struct iscsi_seq *iscsit_get_seq_holder_for_r2t(struct iscsi_cmd *cmd)
198{
199 u32 i;
200
201 if (!cmd->seq_list) {
202 pr_err("struct iscsi_cmd->seq_list is NULL!\n");
203 return NULL;
204 }
205
206 for (i = 0; i < cmd->seq_count; i++) {
207 if (cmd->seq_list[i].type != SEQTYPE_NORMAL)
208 continue;
209 if (cmd->seq_list[i].seq_send_order == cmd->seq_send_order) {
210 cmd->seq_send_order++;
211 return &cmd->seq_list[i];
212 }
213 }
214
215 return NULL;
216}
217
218struct iscsi_r2t *iscsit_get_holder_for_r2tsn(
219 struct iscsi_cmd *cmd,
220 u32 r2t_sn)
221{
222 struct iscsi_r2t *r2t;
223
224 spin_lock_bh(&cmd->r2t_lock);
225 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
226 if (r2t->r2t_sn == r2t_sn) {
227 spin_unlock_bh(&cmd->r2t_lock);
228 return r2t;
229 }
230 }
231 spin_unlock_bh(&cmd->r2t_lock);
232
233 return NULL;
234}
235
236static inline int iscsit_check_received_cmdsn(struct iscsi_session *sess, u32 cmdsn)
237{
Roland Dreier109e2382015-07-23 14:53:32 -0700238 u32 max_cmdsn;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000239 int ret;
240
241 /*
242 * This is the proper method of checking received CmdSN against
243 * ExpCmdSN and MaxCmdSN values, as well as accounting for out
244 * or order CmdSNs due to multiple connection sessions and/or
245 * CRC failures.
246 */
Roland Dreier109e2382015-07-23 14:53:32 -0700247 max_cmdsn = atomic_read(&sess->max_cmd_sn);
248 if (iscsi_sna_gt(cmdsn, max_cmdsn)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000249 pr_err("Received CmdSN: 0x%08x is greater than"
Roland Dreier109e2382015-07-23 14:53:32 -0700250 " MaxCmdSN: 0x%08x, ignoring.\n", cmdsn, max_cmdsn);
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800251 ret = CMDSN_MAXCMDSN_OVERRUN;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000252
253 } else if (cmdsn == sess->exp_cmd_sn) {
254 sess->exp_cmd_sn++;
255 pr_debug("Received CmdSN matches ExpCmdSN,"
256 " incremented ExpCmdSN to: 0x%08x\n",
257 sess->exp_cmd_sn);
258 ret = CMDSN_NORMAL_OPERATION;
259
260 } else if (iscsi_sna_gt(cmdsn, sess->exp_cmd_sn)) {
261 pr_debug("Received CmdSN: 0x%08x is greater"
262 " than ExpCmdSN: 0x%08x, not acknowledging.\n",
263 cmdsn, sess->exp_cmd_sn);
264 ret = CMDSN_HIGHER_THAN_EXP;
265
266 } else {
267 pr_err("Received CmdSN: 0x%08x is less than"
268 " ExpCmdSN: 0x%08x, ignoring.\n", cmdsn,
269 sess->exp_cmd_sn);
270 ret = CMDSN_LOWER_THAN_EXP;
271 }
272
273 return ret;
274}
275
276/*
277 * Commands may be received out of order if MC/S is in use.
278 * Ensure they are executed in CmdSN order.
279 */
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700280int iscsit_sequence_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
281 unsigned char *buf, __be32 cmdsn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000282{
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700283 int ret, cmdsn_ret;
284 bool reject = false;
285 u8 reason = ISCSI_REASON_BOOKMARK_NO_RESOURCES;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000286
287 mutex_lock(&conn->sess->cmdsn_mutex);
288
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400289 cmdsn_ret = iscsit_check_received_cmdsn(conn->sess, be32_to_cpu(cmdsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000290 switch (cmdsn_ret) {
291 case CMDSN_NORMAL_OPERATION:
292 ret = iscsit_execute_cmd(cmd, 0);
293 if ((ret >= 0) && !list_empty(&conn->sess->sess_ooo_cmdsn_list))
294 iscsit_execute_ooo_cmdsns(conn->sess);
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700295 else if (ret < 0) {
296 reject = true;
297 ret = CMDSN_ERROR_CANNOT_RECOVER;
298 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000299 break;
300 case CMDSN_HIGHER_THAN_EXP:
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400301 ret = iscsit_handle_ooo_cmdsn(conn->sess, cmd, be32_to_cpu(cmdsn));
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700302 if (ret < 0) {
303 reject = true;
304 ret = CMDSN_ERROR_CANNOT_RECOVER;
305 break;
306 }
307 ret = CMDSN_HIGHER_THAN_EXP;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000308 break;
309 case CMDSN_LOWER_THAN_EXP:
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800310 case CMDSN_MAXCMDSN_OVERRUN:
311 default:
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000312 cmd->i_state = ISTATE_REMOVE;
313 iscsit_add_cmd_to_immediate_queue(cmd, conn, cmd->i_state);
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800314 /*
315 * Existing callers for iscsit_sequence_cmd() will silently
316 * ignore commands with CMDSN_LOWER_THAN_EXP, so force this
317 * return for CMDSN_MAXCMDSN_OVERRUN as well..
318 */
319 ret = CMDSN_LOWER_THAN_EXP;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000320 break;
321 }
322 mutex_unlock(&conn->sess->cmdsn_mutex);
323
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700324 if (reject)
325 iscsit_reject_cmd(cmd, reason, buf);
326
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000327 return ret;
328}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800329EXPORT_SYMBOL(iscsit_sequence_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000330
331int iscsit_check_unsolicited_dataout(struct iscsi_cmd *cmd, unsigned char *buf)
332{
333 struct iscsi_conn *conn = cmd->conn;
334 struct se_cmd *se_cmd = &cmd->se_cmd;
335 struct iscsi_data *hdr = (struct iscsi_data *) buf;
336 u32 payload_length = ntoh24(hdr->dlength);
337
338 if (conn->sess->sess_ops->InitialR2T) {
339 pr_err("Received unexpected unsolicited data"
340 " while InitialR2T=Yes, protocol error.\n");
341 transport_send_check_condition_and_sense(se_cmd,
342 TCM_UNEXPECTED_UNSOLICITED_DATA, 0);
343 return -1;
344 }
345
346 if ((cmd->first_burst_len + payload_length) >
347 conn->sess->sess_ops->FirstBurstLength) {
348 pr_err("Total %u bytes exceeds FirstBurstLength: %u"
349 " for this Unsolicited DataOut Burst.\n",
350 (cmd->first_burst_len + payload_length),
351 conn->sess->sess_ops->FirstBurstLength);
352 transport_send_check_condition_and_sense(se_cmd,
353 TCM_INCORRECT_AMOUNT_OF_DATA, 0);
354 return -1;
355 }
356
357 if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL))
358 return 0;
359
Andy Groverebf1d952012-04-03 15:51:24 -0700360 if (((cmd->first_burst_len + payload_length) != cmd->se_cmd.data_length) &&
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000361 ((cmd->first_burst_len + payload_length) !=
362 conn->sess->sess_ops->FirstBurstLength)) {
363 pr_err("Unsolicited non-immediate data received %u"
364 " does not equal FirstBurstLength: %u, and does"
365 " not equal ExpXferLen %u.\n",
366 (cmd->first_burst_len + payload_length),
Andy Groverebf1d952012-04-03 15:51:24 -0700367 conn->sess->sess_ops->FirstBurstLength, cmd->se_cmd.data_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000368 transport_send_check_condition_and_sense(se_cmd,
369 TCM_INCORRECT_AMOUNT_OF_DATA, 0);
370 return -1;
371 }
372 return 0;
373}
374
375struct iscsi_cmd *iscsit_find_cmd_from_itt(
376 struct iscsi_conn *conn,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400377 itt_t init_task_tag)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000378{
379 struct iscsi_cmd *cmd;
380
381 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700382 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000383 if (cmd->init_task_tag == init_task_tag) {
384 spin_unlock_bh(&conn->cmd_lock);
385 return cmd;
386 }
387 }
388 spin_unlock_bh(&conn->cmd_lock);
389
390 pr_err("Unable to locate ITT: 0x%08x on CID: %hu",
391 init_task_tag, conn->cid);
392 return NULL;
393}
Sagi Grimberge4f4e802015-02-09 18:07:25 +0200394EXPORT_SYMBOL(iscsit_find_cmd_from_itt);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000395
396struct iscsi_cmd *iscsit_find_cmd_from_itt_or_dump(
397 struct iscsi_conn *conn,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400398 itt_t init_task_tag,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000399 u32 length)
400{
401 struct iscsi_cmd *cmd;
402
403 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700404 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellinger3687db82014-07-07 18:25:04 -0700405 if (cmd->cmd_flags & ICF_GOT_LAST_DATAOUT)
406 continue;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000407 if (cmd->init_task_tag == init_task_tag) {
408 spin_unlock_bh(&conn->cmd_lock);
409 return cmd;
410 }
411 }
412 spin_unlock_bh(&conn->cmd_lock);
413
414 pr_err("Unable to locate ITT: 0x%08x on CID: %hu,"
415 " dumping payload\n", init_task_tag, conn->cid);
416 if (length)
417 iscsit_dump_data_payload(conn, length, 1);
418
419 return NULL;
420}
Varun Prakash9a584bf2017-01-13 20:53:21 +0530421EXPORT_SYMBOL(iscsit_find_cmd_from_itt_or_dump);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000422
423struct iscsi_cmd *iscsit_find_cmd_from_ttt(
424 struct iscsi_conn *conn,
425 u32 targ_xfer_tag)
426{
427 struct iscsi_cmd *cmd = NULL;
428
429 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700430 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000431 if (cmd->targ_xfer_tag == targ_xfer_tag) {
432 spin_unlock_bh(&conn->cmd_lock);
433 return cmd;
434 }
435 }
436 spin_unlock_bh(&conn->cmd_lock);
437
438 pr_err("Unable to locate TTT: 0x%08x on CID: %hu\n",
439 targ_xfer_tag, conn->cid);
440 return NULL;
441}
442
443int iscsit_find_cmd_for_recovery(
444 struct iscsi_session *sess,
445 struct iscsi_cmd **cmd_ptr,
446 struct iscsi_conn_recovery **cr_ptr,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400447 itt_t init_task_tag)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000448{
449 struct iscsi_cmd *cmd = NULL;
450 struct iscsi_conn_recovery *cr;
451 /*
452 * Scan through the inactive connection recovery list's command list.
453 * If init_task_tag matches the command is still alligent.
454 */
455 spin_lock(&sess->cr_i_lock);
456 list_for_each_entry(cr, &sess->cr_inactive_list, cr_list) {
457 spin_lock(&cr->conn_recovery_cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700458 list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000459 if (cmd->init_task_tag == init_task_tag) {
460 spin_unlock(&cr->conn_recovery_cmd_lock);
461 spin_unlock(&sess->cr_i_lock);
462
463 *cr_ptr = cr;
464 *cmd_ptr = cmd;
465 return -2;
466 }
467 }
468 spin_unlock(&cr->conn_recovery_cmd_lock);
469 }
470 spin_unlock(&sess->cr_i_lock);
471 /*
472 * Scan through the active connection recovery list's command list.
473 * If init_task_tag matches the command is ready to be reassigned.
474 */
475 spin_lock(&sess->cr_a_lock);
476 list_for_each_entry(cr, &sess->cr_active_list, cr_list) {
477 spin_lock(&cr->conn_recovery_cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700478 list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000479 if (cmd->init_task_tag == init_task_tag) {
480 spin_unlock(&cr->conn_recovery_cmd_lock);
481 spin_unlock(&sess->cr_a_lock);
482
483 *cr_ptr = cr;
484 *cmd_ptr = cmd;
485 return 0;
486 }
487 }
488 spin_unlock(&cr->conn_recovery_cmd_lock);
489 }
490 spin_unlock(&sess->cr_a_lock);
491
492 return -1;
493}
494
495void iscsit_add_cmd_to_immediate_queue(
496 struct iscsi_cmd *cmd,
497 struct iscsi_conn *conn,
498 u8 state)
499{
500 struct iscsi_queue_req *qr;
501
502 qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC);
503 if (!qr) {
504 pr_err("Unable to allocate memory for"
505 " struct iscsi_queue_req\n");
506 return;
507 }
508 INIT_LIST_HEAD(&qr->qr_list);
509 qr->cmd = cmd;
510 qr->state = state;
511
512 spin_lock_bh(&conn->immed_queue_lock);
513 list_add_tail(&qr->qr_list, &conn->immed_queue_list);
514 atomic_inc(&cmd->immed_queue_count);
515 atomic_set(&conn->check_immediate_queue, 1);
516 spin_unlock_bh(&conn->immed_queue_lock);
517
Roland Dreierd5627ac2012-10-31 09:16:46 -0700518 wake_up(&conn->queues_wq);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000519}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530520EXPORT_SYMBOL(iscsit_add_cmd_to_immediate_queue);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000521
522struct iscsi_queue_req *iscsit_get_cmd_from_immediate_queue(struct iscsi_conn *conn)
523{
524 struct iscsi_queue_req *qr;
525
526 spin_lock_bh(&conn->immed_queue_lock);
527 if (list_empty(&conn->immed_queue_list)) {
528 spin_unlock_bh(&conn->immed_queue_lock);
529 return NULL;
530 }
Roland Dreier1f981de2012-10-31 09:16:47 -0700531 qr = list_first_entry(&conn->immed_queue_list,
532 struct iscsi_queue_req, qr_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000533
534 list_del(&qr->qr_list);
535 if (qr->cmd)
536 atomic_dec(&qr->cmd->immed_queue_count);
537 spin_unlock_bh(&conn->immed_queue_lock);
538
539 return qr;
540}
541
542static void iscsit_remove_cmd_from_immediate_queue(
543 struct iscsi_cmd *cmd,
544 struct iscsi_conn *conn)
545{
546 struct iscsi_queue_req *qr, *qr_tmp;
547
548 spin_lock_bh(&conn->immed_queue_lock);
549 if (!atomic_read(&cmd->immed_queue_count)) {
550 spin_unlock_bh(&conn->immed_queue_lock);
551 return;
552 }
553
554 list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) {
555 if (qr->cmd != cmd)
556 continue;
557
558 atomic_dec(&qr->cmd->immed_queue_count);
559 list_del(&qr->qr_list);
560 kmem_cache_free(lio_qr_cache, qr);
561 }
562 spin_unlock_bh(&conn->immed_queue_lock);
563
564 if (atomic_read(&cmd->immed_queue_count)) {
565 pr_err("ITT: 0x%08x immed_queue_count: %d\n",
566 cmd->init_task_tag,
567 atomic_read(&cmd->immed_queue_count));
568 }
569}
570
Nicholas Bellingera4467012016-10-30 17:30:08 -0700571int iscsit_add_cmd_to_response_queue(
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000572 struct iscsi_cmd *cmd,
573 struct iscsi_conn *conn,
574 u8 state)
575{
576 struct iscsi_queue_req *qr;
577
578 qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC);
579 if (!qr) {
580 pr_err("Unable to allocate memory for"
581 " struct iscsi_queue_req\n");
Nicholas Bellingera4467012016-10-30 17:30:08 -0700582 return -ENOMEM;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000583 }
584 INIT_LIST_HEAD(&qr->qr_list);
585 qr->cmd = cmd;
586 qr->state = state;
587
588 spin_lock_bh(&conn->response_queue_lock);
589 list_add_tail(&qr->qr_list, &conn->response_queue_list);
590 atomic_inc(&cmd->response_queue_count);
591 spin_unlock_bh(&conn->response_queue_lock);
592
Roland Dreierd5627ac2012-10-31 09:16:46 -0700593 wake_up(&conn->queues_wq);
Nicholas Bellingera4467012016-10-30 17:30:08 -0700594 return 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000595}
596
597struct iscsi_queue_req *iscsit_get_cmd_from_response_queue(struct iscsi_conn *conn)
598{
599 struct iscsi_queue_req *qr;
600
601 spin_lock_bh(&conn->response_queue_lock);
602 if (list_empty(&conn->response_queue_list)) {
603 spin_unlock_bh(&conn->response_queue_lock);
604 return NULL;
605 }
606
Roland Dreier1f981de2012-10-31 09:16:47 -0700607 qr = list_first_entry(&conn->response_queue_list,
608 struct iscsi_queue_req, qr_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000609
610 list_del(&qr->qr_list);
611 if (qr->cmd)
612 atomic_dec(&qr->cmd->response_queue_count);
613 spin_unlock_bh(&conn->response_queue_lock);
614
615 return qr;
616}
617
618static void iscsit_remove_cmd_from_response_queue(
619 struct iscsi_cmd *cmd,
620 struct iscsi_conn *conn)
621{
622 struct iscsi_queue_req *qr, *qr_tmp;
623
624 spin_lock_bh(&conn->response_queue_lock);
625 if (!atomic_read(&cmd->response_queue_count)) {
626 spin_unlock_bh(&conn->response_queue_lock);
627 return;
628 }
629
630 list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list,
631 qr_list) {
632 if (qr->cmd != cmd)
633 continue;
634
635 atomic_dec(&qr->cmd->response_queue_count);
636 list_del(&qr->qr_list);
637 kmem_cache_free(lio_qr_cache, qr);
638 }
639 spin_unlock_bh(&conn->response_queue_lock);
640
641 if (atomic_read(&cmd->response_queue_count)) {
642 pr_err("ITT: 0x%08x response_queue_count: %d\n",
643 cmd->init_task_tag,
644 atomic_read(&cmd->response_queue_count));
645 }
646}
647
Roland Dreierd5627ac2012-10-31 09:16:46 -0700648bool iscsit_conn_all_queues_empty(struct iscsi_conn *conn)
649{
650 bool empty;
651
652 spin_lock_bh(&conn->immed_queue_lock);
653 empty = list_empty(&conn->immed_queue_list);
654 spin_unlock_bh(&conn->immed_queue_lock);
655
656 if (!empty)
657 return empty;
658
659 spin_lock_bh(&conn->response_queue_lock);
660 empty = list_empty(&conn->response_queue_list);
661 spin_unlock_bh(&conn->response_queue_lock);
662
663 return empty;
664}
665
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000666void iscsit_free_queue_reqs_for_conn(struct iscsi_conn *conn)
667{
668 struct iscsi_queue_req *qr, *qr_tmp;
669
670 spin_lock_bh(&conn->immed_queue_lock);
671 list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) {
672 list_del(&qr->qr_list);
673 if (qr->cmd)
674 atomic_dec(&qr->cmd->immed_queue_count);
675
676 kmem_cache_free(lio_qr_cache, qr);
677 }
678 spin_unlock_bh(&conn->immed_queue_lock);
679
680 spin_lock_bh(&conn->response_queue_lock);
681 list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list,
682 qr_list) {
683 list_del(&qr->qr_list);
684 if (qr->cmd)
685 atomic_dec(&qr->cmd->response_queue_count);
686
687 kmem_cache_free(lio_qr_cache, qr);
688 }
689 spin_unlock_bh(&conn->response_queue_lock);
690}
691
692void iscsit_release_cmd(struct iscsi_cmd *cmd)
693{
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700694 struct iscsi_session *sess;
695 struct se_cmd *se_cmd = &cmd->se_cmd;
696
697 if (cmd->conn)
698 sess = cmd->conn->sess;
699 else
700 sess = cmd->sess;
701
702 BUG_ON(!sess || !sess->se_sess);
703
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000704 kfree(cmd->buf_ptr);
705 kfree(cmd->pdu_list);
706 kfree(cmd->seq_list);
707 kfree(cmd->tmr_req);
708 kfree(cmd->iov_data);
Nicholas Bellinger9864ca92013-06-19 22:43:11 -0700709 kfree(cmd->text_in_ptr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000710
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700711 percpu_ida_free(&sess->se_sess->sess_tag_pool, se_cmd->map_tag);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000712}
Nicholas Bellingerd703ce22013-08-17 14:27:56 -0700713EXPORT_SYMBOL(iscsit_release_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000714
Bart Van Assche4412a672017-05-23 16:48:43 -0700715void __iscsit_free_cmd(struct iscsi_cmd *cmd, bool check_queues)
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700716{
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700717 struct iscsi_conn *conn = cmd->conn;
718
Bart Van Assche4412a672017-05-23 16:48:43 -0700719 if (cmd->data_direction == DMA_TO_DEVICE) {
720 iscsit_stop_dataout_timer(cmd);
721 iscsit_free_r2ts_from_list(cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700722 }
Bart Van Assche4412a672017-05-23 16:48:43 -0700723 if (cmd->data_direction == DMA_FROM_DEVICE)
724 iscsit_free_all_datain_reqs(cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700725
726 if (conn && check_queues) {
727 iscsit_remove_cmd_from_immediate_queue(cmd, conn);
728 iscsit_remove_cmd_from_response_queue(cmd, conn);
729 }
Varun Prakash7ec811a2016-04-20 00:00:09 +0530730
731 if (conn && conn->conn_transport->iscsit_release_cmd)
732 conn->conn_transport->iscsit_release_cmd(conn, cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700733}
734
735void iscsit_free_cmd(struct iscsi_cmd *cmd, bool shutdown)
736{
737 struct se_cmd *se_cmd = NULL;
738 int rc;
Bart Van Assche4412a672017-05-23 16:48:43 -0700739
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700740 /*
Masanari Iida20879692012-08-27 22:46:00 +0900741 * Determine if a struct se_cmd is associated with
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700742 * this struct iscsi_cmd.
743 */
744 switch (cmd->iscsi_opcode) {
745 case ISCSI_OP_SCSI_CMD:
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800746 /*
747 * Fallthrough
748 */
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700749 case ISCSI_OP_SCSI_TMFUNC:
Nicholas Bellingerefb2ea72017-03-23 17:19:24 -0700750 se_cmd = &cmd->se_cmd;
Bart Van Assche4412a672017-05-23 16:48:43 -0700751 __iscsit_free_cmd(cmd, shutdown);
Nicholas Bellingerefb2ea72017-03-23 17:19:24 -0700752 rc = transport_generic_free_cmd(se_cmd, shutdown);
753 if (!rc && shutdown && se_cmd->se_sess) {
Bart Van Assche4412a672017-05-23 16:48:43 -0700754 __iscsit_free_cmd(cmd, shutdown);
Bart Van Asscheafc16602015-04-27 13:52:36 +0200755 target_put_sess_cmd(se_cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700756 }
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700757 break;
Nicholas Bellingerc1ce4bd2012-01-16 16:04:15 -0800758 case ISCSI_OP_REJECT:
759 /*
760 * Handle special case for REJECT when iscsi_add_reject*() has
761 * overwritten the original iscsi_opcode assignment, and the
762 * associated cmd->se_cmd needs to be released.
763 */
764 if (cmd->se_cmd.se_tfo != NULL) {
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700765 se_cmd = &cmd->se_cmd;
Bart Van Assche4412a672017-05-23 16:48:43 -0700766 __iscsit_free_cmd(cmd, shutdown);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700767
Nicholas Bellingere255a282013-10-03 13:37:21 -0700768 rc = transport_generic_free_cmd(&cmd->se_cmd, shutdown);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700769 if (!rc && shutdown && se_cmd->se_sess) {
Bart Van Assche4412a672017-05-23 16:48:43 -0700770 __iscsit_free_cmd(cmd, shutdown);
Bart Van Asscheafc16602015-04-27 13:52:36 +0200771 target_put_sess_cmd(se_cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700772 }
Nicholas Bellingerc1ce4bd2012-01-16 16:04:15 -0800773 break;
774 }
775 /* Fall-through */
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700776 default:
Bart Van Assche4412a672017-05-23 16:48:43 -0700777 __iscsit_free_cmd(cmd, shutdown);
Nicholas Bellingerd703ce22013-08-17 14:27:56 -0700778 iscsit_release_cmd(cmd);
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700779 break;
780 }
781}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530782EXPORT_SYMBOL(iscsit_free_cmd);
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700783
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000784int iscsit_check_session_usage_count(struct iscsi_session *sess)
785{
786 spin_lock_bh(&sess->session_usage_lock);
787 if (sess->session_usage_count != 0) {
788 sess->session_waiting_on_uc = 1;
789 spin_unlock_bh(&sess->session_usage_lock);
790 if (in_interrupt())
791 return 2;
792
793 wait_for_completion(&sess->session_waiting_on_uc_comp);
794 return 1;
795 }
796 spin_unlock_bh(&sess->session_usage_lock);
797
798 return 0;
799}
800
801void iscsit_dec_session_usage_count(struct iscsi_session *sess)
802{
803 spin_lock_bh(&sess->session_usage_lock);
804 sess->session_usage_count--;
805
806 if (!sess->session_usage_count && sess->session_waiting_on_uc)
807 complete(&sess->session_waiting_on_uc_comp);
808
809 spin_unlock_bh(&sess->session_usage_lock);
810}
811
812void iscsit_inc_session_usage_count(struct iscsi_session *sess)
813{
814 spin_lock_bh(&sess->session_usage_lock);
815 sess->session_usage_count++;
816 spin_unlock_bh(&sess->session_usage_lock);
817}
818
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000819struct iscsi_conn *iscsit_get_conn_from_cid(struct iscsi_session *sess, u16 cid)
820{
821 struct iscsi_conn *conn;
822
823 spin_lock_bh(&sess->conn_lock);
824 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
825 if ((conn->cid == cid) &&
826 (conn->conn_state == TARG_CONN_STATE_LOGGED_IN)) {
827 iscsit_inc_conn_usage_count(conn);
828 spin_unlock_bh(&sess->conn_lock);
829 return conn;
830 }
831 }
832 spin_unlock_bh(&sess->conn_lock);
833
834 return NULL;
835}
836
837struct iscsi_conn *iscsit_get_conn_from_cid_rcfr(struct iscsi_session *sess, u16 cid)
838{
839 struct iscsi_conn *conn;
840
841 spin_lock_bh(&sess->conn_lock);
842 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
843 if (conn->cid == cid) {
844 iscsit_inc_conn_usage_count(conn);
845 spin_lock(&conn->state_lock);
846 atomic_set(&conn->connection_wait_rcfr, 1);
847 spin_unlock(&conn->state_lock);
848 spin_unlock_bh(&sess->conn_lock);
849 return conn;
850 }
851 }
852 spin_unlock_bh(&sess->conn_lock);
853
854 return NULL;
855}
856
857void iscsit_check_conn_usage_count(struct iscsi_conn *conn)
858{
859 spin_lock_bh(&conn->conn_usage_lock);
860 if (conn->conn_usage_count != 0) {
861 conn->conn_waiting_on_uc = 1;
862 spin_unlock_bh(&conn->conn_usage_lock);
863
864 wait_for_completion(&conn->conn_waiting_on_uc_comp);
865 return;
866 }
867 spin_unlock_bh(&conn->conn_usage_lock);
868}
869
870void iscsit_dec_conn_usage_count(struct iscsi_conn *conn)
871{
872 spin_lock_bh(&conn->conn_usage_lock);
873 conn->conn_usage_count--;
874
875 if (!conn->conn_usage_count && conn->conn_waiting_on_uc)
876 complete(&conn->conn_waiting_on_uc_comp);
877
878 spin_unlock_bh(&conn->conn_usage_lock);
879}
880
881void iscsit_inc_conn_usage_count(struct iscsi_conn *conn)
882{
883 spin_lock_bh(&conn->conn_usage_lock);
884 conn->conn_usage_count++;
885 spin_unlock_bh(&conn->conn_usage_lock);
886}
887
888static int iscsit_add_nopin(struct iscsi_conn *conn, int want_response)
889{
890 u8 state;
891 struct iscsi_cmd *cmd;
892
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000893 cmd = iscsit_allocate_cmd(conn, TASK_RUNNING);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000894 if (!cmd)
895 return -1;
896
897 cmd->iscsi_opcode = ISCSI_OP_NOOP_IN;
898 state = (want_response) ? ISTATE_SEND_NOPIN_WANT_RESPONSE :
899 ISTATE_SEND_NOPIN_NO_RESPONSE;
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400900 cmd->init_task_tag = RESERVED_ITT;
Sagi Grimbergc1e34b62015-01-26 12:49:05 +0200901 cmd->targ_xfer_tag = (want_response) ?
902 session_get_next_ttt(conn->sess) : 0xFFFFFFFF;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000903 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700904 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000905 spin_unlock_bh(&conn->cmd_lock);
906
907 if (want_response)
908 iscsit_start_nopin_response_timer(conn);
909 iscsit_add_cmd_to_immediate_queue(cmd, conn, state);
910
911 return 0;
912}
913
914static void iscsit_handle_nopin_response_timeout(unsigned long data)
915{
916 struct iscsi_conn *conn = (struct iscsi_conn *) data;
917
918 iscsit_inc_conn_usage_count(conn);
919
920 spin_lock_bh(&conn->nopin_timer_lock);
921 if (conn->nopin_response_timer_flags & ISCSI_TF_STOP) {
922 spin_unlock_bh(&conn->nopin_timer_lock);
923 iscsit_dec_conn_usage_count(conn);
924 return;
925 }
926
927 pr_debug("Did not receive response to NOPIN on CID: %hu on"
928 " SID: %u, failing connection.\n", conn->cid,
929 conn->sess->sid);
930 conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING;
931 spin_unlock_bh(&conn->nopin_timer_lock);
932
933 {
934 struct iscsi_portal_group *tpg = conn->sess->tpg;
935 struct iscsi_tiqn *tiqn = tpg->tpg_tiqn;
936
937 if (tiqn) {
938 spin_lock_bh(&tiqn->sess_err_stats.lock);
939 strcpy(tiqn->sess_err_stats.last_sess_fail_rem_name,
Jörn Engel8359cf42011-11-24 02:05:51 +0100940 conn->sess->sess_ops->InitiatorName);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000941 tiqn->sess_err_stats.last_sess_failure_type =
942 ISCSI_SESS_ERR_CXN_TIMEOUT;
943 tiqn->sess_err_stats.cxn_timeout_errors++;
Nicholas Bellinger04f3b312013-11-13 18:54:45 -0800944 atomic_long_inc(&conn->sess->conn_timeout_errors);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000945 spin_unlock_bh(&tiqn->sess_err_stats.lock);
946 }
947 }
948
949 iscsit_cause_connection_reinstatement(conn, 0);
950 iscsit_dec_conn_usage_count(conn);
951}
952
953void iscsit_mod_nopin_response_timer(struct iscsi_conn *conn)
954{
955 struct iscsi_session *sess = conn->sess;
956 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
957
958 spin_lock_bh(&conn->nopin_timer_lock);
959 if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) {
960 spin_unlock_bh(&conn->nopin_timer_lock);
961 return;
962 }
963
964 mod_timer(&conn->nopin_response_timer,
965 (get_jiffies_64() + na->nopin_response_timeout * HZ));
966 spin_unlock_bh(&conn->nopin_timer_lock);
967}
968
969/*
970 * Called with conn->nopin_timer_lock held.
971 */
972void iscsit_start_nopin_response_timer(struct iscsi_conn *conn)
973{
974 struct iscsi_session *sess = conn->sess;
975 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
976
977 spin_lock_bh(&conn->nopin_timer_lock);
978 if (conn->nopin_response_timer_flags & ISCSI_TF_RUNNING) {
979 spin_unlock_bh(&conn->nopin_timer_lock);
980 return;
981 }
982
983 init_timer(&conn->nopin_response_timer);
984 conn->nopin_response_timer.expires =
985 (get_jiffies_64() + na->nopin_response_timeout * HZ);
986 conn->nopin_response_timer.data = (unsigned long)conn;
987 conn->nopin_response_timer.function = iscsit_handle_nopin_response_timeout;
988 conn->nopin_response_timer_flags &= ~ISCSI_TF_STOP;
989 conn->nopin_response_timer_flags |= ISCSI_TF_RUNNING;
990 add_timer(&conn->nopin_response_timer);
991
992 pr_debug("Started NOPIN Response Timer on CID: %d to %u"
993 " seconds\n", conn->cid, na->nopin_response_timeout);
994 spin_unlock_bh(&conn->nopin_timer_lock);
995}
996
997void iscsit_stop_nopin_response_timer(struct iscsi_conn *conn)
998{
999 spin_lock_bh(&conn->nopin_timer_lock);
1000 if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) {
1001 spin_unlock_bh(&conn->nopin_timer_lock);
1002 return;
1003 }
1004 conn->nopin_response_timer_flags |= ISCSI_TF_STOP;
1005 spin_unlock_bh(&conn->nopin_timer_lock);
1006
1007 del_timer_sync(&conn->nopin_response_timer);
1008
1009 spin_lock_bh(&conn->nopin_timer_lock);
1010 conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING;
1011 spin_unlock_bh(&conn->nopin_timer_lock);
1012}
1013
1014static void iscsit_handle_nopin_timeout(unsigned long data)
1015{
1016 struct iscsi_conn *conn = (struct iscsi_conn *) data;
1017
1018 iscsit_inc_conn_usage_count(conn);
1019
1020 spin_lock_bh(&conn->nopin_timer_lock);
1021 if (conn->nopin_timer_flags & ISCSI_TF_STOP) {
1022 spin_unlock_bh(&conn->nopin_timer_lock);
1023 iscsit_dec_conn_usage_count(conn);
1024 return;
1025 }
1026 conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING;
1027 spin_unlock_bh(&conn->nopin_timer_lock);
1028
1029 iscsit_add_nopin(conn, 1);
1030 iscsit_dec_conn_usage_count(conn);
1031}
1032
1033/*
1034 * Called with conn->nopin_timer_lock held.
1035 */
1036void __iscsit_start_nopin_timer(struct iscsi_conn *conn)
1037{
1038 struct iscsi_session *sess = conn->sess;
1039 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
1040 /*
1041 * NOPIN timeout is disabled.
1042 */
1043 if (!na->nopin_timeout)
1044 return;
1045
1046 if (conn->nopin_timer_flags & ISCSI_TF_RUNNING)
1047 return;
1048
1049 init_timer(&conn->nopin_timer);
1050 conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ);
1051 conn->nopin_timer.data = (unsigned long)conn;
1052 conn->nopin_timer.function = iscsit_handle_nopin_timeout;
1053 conn->nopin_timer_flags &= ~ISCSI_TF_STOP;
1054 conn->nopin_timer_flags |= ISCSI_TF_RUNNING;
1055 add_timer(&conn->nopin_timer);
1056
1057 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1058 " interval\n", conn->cid, na->nopin_timeout);
1059}
1060
1061void iscsit_start_nopin_timer(struct iscsi_conn *conn)
1062{
1063 struct iscsi_session *sess = conn->sess;
1064 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
1065 /*
1066 * NOPIN timeout is disabled..
1067 */
1068 if (!na->nopin_timeout)
1069 return;
1070
1071 spin_lock_bh(&conn->nopin_timer_lock);
1072 if (conn->nopin_timer_flags & ISCSI_TF_RUNNING) {
1073 spin_unlock_bh(&conn->nopin_timer_lock);
1074 return;
1075 }
1076
1077 init_timer(&conn->nopin_timer);
1078 conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ);
1079 conn->nopin_timer.data = (unsigned long)conn;
1080 conn->nopin_timer.function = iscsit_handle_nopin_timeout;
1081 conn->nopin_timer_flags &= ~ISCSI_TF_STOP;
1082 conn->nopin_timer_flags |= ISCSI_TF_RUNNING;
1083 add_timer(&conn->nopin_timer);
1084
1085 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1086 " interval\n", conn->cid, na->nopin_timeout);
1087 spin_unlock_bh(&conn->nopin_timer_lock);
1088}
1089
1090void iscsit_stop_nopin_timer(struct iscsi_conn *conn)
1091{
1092 spin_lock_bh(&conn->nopin_timer_lock);
1093 if (!(conn->nopin_timer_flags & ISCSI_TF_RUNNING)) {
1094 spin_unlock_bh(&conn->nopin_timer_lock);
1095 return;
1096 }
1097 conn->nopin_timer_flags |= ISCSI_TF_STOP;
1098 spin_unlock_bh(&conn->nopin_timer_lock);
1099
1100 del_timer_sync(&conn->nopin_timer);
1101
1102 spin_lock_bh(&conn->nopin_timer_lock);
1103 conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING;
1104 spin_unlock_bh(&conn->nopin_timer_lock);
1105}
1106
1107int iscsit_send_tx_data(
1108 struct iscsi_cmd *cmd,
1109 struct iscsi_conn *conn,
1110 int use_misc)
1111{
1112 int tx_sent, tx_size;
1113 u32 iov_count;
1114 struct kvec *iov;
1115
1116send_data:
1117 tx_size = cmd->tx_size;
1118
1119 if (!use_misc) {
1120 iov = &cmd->iov_data[0];
1121 iov_count = cmd->iov_data_count;
1122 } else {
1123 iov = &cmd->iov_misc[0];
1124 iov_count = cmd->iov_misc_count;
1125 }
1126
1127 tx_sent = tx_data(conn, &iov[0], iov_count, tx_size);
1128 if (tx_size != tx_sent) {
1129 if (tx_sent == -EAGAIN) {
1130 pr_err("tx_data() returned -EAGAIN\n");
1131 goto send_data;
1132 } else
1133 return -1;
1134 }
1135 cmd->tx_size = 0;
1136
1137 return 0;
1138}
1139
1140int iscsit_fe_sendpage_sg(
1141 struct iscsi_cmd *cmd,
1142 struct iscsi_conn *conn)
1143{
1144 struct scatterlist *sg = cmd->first_data_sg;
1145 struct kvec iov;
1146 u32 tx_hdr_size, data_len;
1147 u32 offset = cmd->first_data_sg_off;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001148 int tx_sent, iov_off;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001149
1150send_hdr:
1151 tx_hdr_size = ISCSI_HDR_LEN;
1152 if (conn->conn_ops->HeaderDigest)
1153 tx_hdr_size += ISCSI_CRC_LEN;
1154
1155 iov.iov_base = cmd->pdu;
1156 iov.iov_len = tx_hdr_size;
1157
1158 tx_sent = tx_data(conn, &iov, 1, tx_hdr_size);
1159 if (tx_hdr_size != tx_sent) {
1160 if (tx_sent == -EAGAIN) {
1161 pr_err("tx_data() returned -EAGAIN\n");
1162 goto send_hdr;
1163 }
1164 return -1;
1165 }
1166
1167 data_len = cmd->tx_size - tx_hdr_size - cmd->padding;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001168 /*
1169 * Set iov_off used by padding and data digest tx_data() calls below
1170 * in order to determine proper offset into cmd->iov_data[]
1171 */
1172 if (conn->conn_ops->DataDigest) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001173 data_len -= ISCSI_CRC_LEN;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001174 if (cmd->padding)
1175 iov_off = (cmd->iov_data_count - 2);
1176 else
1177 iov_off = (cmd->iov_data_count - 1);
1178 } else {
1179 iov_off = (cmd->iov_data_count - 1);
1180 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001181 /*
1182 * Perform sendpage() for each page in the scatterlist
1183 */
1184 while (data_len) {
1185 u32 space = (sg->length - offset);
1186 u32 sub_len = min_t(u32, data_len, space);
1187send_pg:
1188 tx_sent = conn->sock->ops->sendpage(conn->sock,
1189 sg_page(sg), sg->offset + offset, sub_len, 0);
1190 if (tx_sent != sub_len) {
1191 if (tx_sent == -EAGAIN) {
1192 pr_err("tcp_sendpage() returned"
1193 " -EAGAIN\n");
1194 goto send_pg;
1195 }
1196
1197 pr_err("tcp_sendpage() failure: %d\n",
1198 tx_sent);
1199 return -1;
1200 }
1201
1202 data_len -= sub_len;
1203 offset = 0;
1204 sg = sg_next(sg);
1205 }
1206
1207send_padding:
1208 if (cmd->padding) {
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001209 struct kvec *iov_p = &cmd->iov_data[iov_off++];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001210
1211 tx_sent = tx_data(conn, iov_p, 1, cmd->padding);
1212 if (cmd->padding != tx_sent) {
1213 if (tx_sent == -EAGAIN) {
1214 pr_err("tx_data() returned -EAGAIN\n");
1215 goto send_padding;
1216 }
1217 return -1;
1218 }
1219 }
1220
1221send_datacrc:
1222 if (conn->conn_ops->DataDigest) {
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001223 struct kvec *iov_d = &cmd->iov_data[iov_off];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001224
1225 tx_sent = tx_data(conn, iov_d, 1, ISCSI_CRC_LEN);
1226 if (ISCSI_CRC_LEN != tx_sent) {
1227 if (tx_sent == -EAGAIN) {
1228 pr_err("tx_data() returned -EAGAIN\n");
1229 goto send_datacrc;
1230 }
1231 return -1;
1232 }
1233 }
1234
1235 return 0;
1236}
1237
1238/*
1239 * This function is used for mainly sending a ISCSI_TARG_LOGIN_RSP PDU
1240 * back to the Initiator when an expection condition occurs with the
1241 * errors set in status_class and status_detail.
1242 *
1243 * Parameters: iSCSI Connection, Status Class, Status Detail.
1244 * Returns: 0 on success, -1 on error.
1245 */
1246int iscsit_tx_login_rsp(struct iscsi_conn *conn, u8 status_class, u8 status_detail)
1247{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001248 struct iscsi_login_rsp *hdr;
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001249 struct iscsi_login *login = conn->conn_login;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001250
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001251 login->login_failed = 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001252 iscsit_collect_login_stats(conn, status_class, status_detail);
1253
Nicholas Bellinger68349752014-06-17 21:54:38 +00001254 memset(&login->rsp[0], 0, ISCSI_HDR_LEN);
1255
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001256 hdr = (struct iscsi_login_rsp *)&login->rsp[0];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001257 hdr->opcode = ISCSI_OP_LOGIN_RSP;
1258 hdr->status_class = status_class;
1259 hdr->status_detail = status_detail;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001260 hdr->itt = conn->login_itt;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001261
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001262 return conn->conn_transport->iscsit_put_login_tx(conn, login, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001263}
1264
1265void iscsit_print_session_params(struct iscsi_session *sess)
1266{
1267 struct iscsi_conn *conn;
1268
1269 pr_debug("-----------------------------[Session Params for"
1270 " SID: %u]-----------------------------\n", sess->sid);
1271 spin_lock_bh(&sess->conn_lock);
1272 list_for_each_entry(conn, &sess->sess_conn_list, conn_list)
1273 iscsi_dump_conn_ops(conn->conn_ops);
1274 spin_unlock_bh(&sess->conn_lock);
1275
1276 iscsi_dump_sess_ops(sess->sess_ops);
1277}
1278
1279static int iscsit_do_rx_data(
1280 struct iscsi_conn *conn,
1281 struct iscsi_data_count *count)
1282{
Al Viroe5a4b0b2014-11-24 18:17:55 -05001283 int data = count->data_length, rx_loop = 0, total_rx = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001284 struct msghdr msg;
1285
1286 if (!conn || !conn->sock || !conn->conn_ops)
1287 return -1;
1288
1289 memset(&msg, 0, sizeof(struct msghdr));
Al Viroe5a4b0b2014-11-24 18:17:55 -05001290 iov_iter_kvec(&msg.msg_iter, READ | ITER_KVEC,
1291 count->iov, count->iov_count, data);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001292
Al Viro2da62902015-03-14 21:13:46 -04001293 while (msg_data_left(&msg)) {
1294 rx_loop = sock_recvmsg(conn->sock, &msg, MSG_WAITALL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001295 if (rx_loop <= 0) {
1296 pr_debug("rx_loop: %d total_rx: %d\n",
1297 rx_loop, total_rx);
1298 return rx_loop;
1299 }
1300 total_rx += rx_loop;
1301 pr_debug("rx_loop: %d, total_rx: %d, data: %d\n",
1302 rx_loop, total_rx, data);
1303 }
1304
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001305 return total_rx;
1306}
1307
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001308int rx_data(
1309 struct iscsi_conn *conn,
1310 struct kvec *iov,
1311 int iov_count,
1312 int data)
1313{
1314 struct iscsi_data_count c;
1315
1316 if (!conn || !conn->sock || !conn->conn_ops)
1317 return -1;
1318
1319 memset(&c, 0, sizeof(struct iscsi_data_count));
1320 c.iov = iov;
1321 c.iov_count = iov_count;
1322 c.data_length = data;
1323 c.type = ISCSI_RX_DATA;
1324
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001325 return iscsit_do_rx_data(conn, &c);
1326}
1327
1328int tx_data(
1329 struct iscsi_conn *conn,
1330 struct kvec *iov,
1331 int iov_count,
1332 int data)
1333{
Al Viro4113e472014-12-21 02:14:47 -05001334 struct msghdr msg;
1335 int total_tx = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001336
1337 if (!conn || !conn->sock || !conn->conn_ops)
1338 return -1;
1339
Al Viro4113e472014-12-21 02:14:47 -05001340 if (data <= 0) {
1341 pr_err("Data length is: %d\n", data);
1342 return -1;
1343 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001344
Al Viro4113e472014-12-21 02:14:47 -05001345 memset(&msg, 0, sizeof(struct msghdr));
1346
1347 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC,
1348 iov, iov_count, data);
1349
1350 while (msg_data_left(&msg)) {
1351 int tx_loop = sock_sendmsg(conn->sock, &msg);
1352 if (tx_loop <= 0) {
1353 pr_debug("tx_loop: %d total_tx %d\n",
1354 tx_loop, total_tx);
1355 return tx_loop;
1356 }
1357 total_tx += tx_loop;
1358 pr_debug("tx_loop: %d, total_tx: %d, data: %d\n",
1359 tx_loop, total_tx, data);
1360 }
1361
1362 return total_tx;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001363}
1364
1365void iscsit_collect_login_stats(
1366 struct iscsi_conn *conn,
1367 u8 status_class,
1368 u8 status_detail)
1369{
1370 struct iscsi_param *intrname = NULL;
1371 struct iscsi_tiqn *tiqn;
1372 struct iscsi_login_stats *ls;
1373
1374 tiqn = iscsit_snmp_get_tiqn(conn);
1375 if (!tiqn)
1376 return;
1377
1378 ls = &tiqn->login_stats;
1379
1380 spin_lock(&ls->lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001381 if (status_class == ISCSI_STATUS_CLS_SUCCESS)
1382 ls->accepts++;
1383 else if (status_class == ISCSI_STATUS_CLS_REDIRECT) {
1384 ls->redirects++;
1385 ls->last_fail_type = ISCSI_LOGIN_FAIL_REDIRECT;
1386 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1387 (status_detail == ISCSI_LOGIN_STATUS_AUTH_FAILED)) {
1388 ls->authenticate_fails++;
1389 ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHENTICATE;
1390 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1391 (status_detail == ISCSI_LOGIN_STATUS_TGT_FORBIDDEN)) {
1392 ls->authorize_fails++;
1393 ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHORIZE;
1394 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1395 (status_detail == ISCSI_LOGIN_STATUS_INIT_ERR)) {
1396 ls->negotiate_fails++;
1397 ls->last_fail_type = ISCSI_LOGIN_FAIL_NEGOTIATE;
1398 } else {
1399 ls->other_fails++;
1400 ls->last_fail_type = ISCSI_LOGIN_FAIL_OTHER;
1401 }
1402
1403 /* Save initiator name, ip address and time, if it is a failed login */
1404 if (status_class != ISCSI_STATUS_CLS_SUCCESS) {
1405 if (conn->param_list)
1406 intrname = iscsi_find_param_from_key(INITIATORNAME,
1407 conn->param_list);
Joern Engelfdc84d12014-09-02 17:49:55 -04001408 strlcpy(ls->last_intr_fail_name,
1409 (intrname ? intrname->value : "Unknown"),
1410 sizeof(ls->last_intr_fail_name));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001411
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001412 ls->last_intr_fail_ip_family = conn->login_family;
1413
Andy Groverdc58f762015-08-24 10:26:05 -07001414 ls->last_intr_fail_sockaddr = conn->login_sockaddr;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001415 ls->last_fail_time = get_jiffies_64();
1416 }
1417
1418 spin_unlock(&ls->lock);
1419}
1420
1421struct iscsi_tiqn *iscsit_snmp_get_tiqn(struct iscsi_conn *conn)
1422{
1423 struct iscsi_portal_group *tpg;
1424
Nicholas Bellinger17c61ad2017-02-23 21:26:31 -08001425 if (!conn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001426 return NULL;
1427
Nicholas Bellinger17c61ad2017-02-23 21:26:31 -08001428 tpg = conn->tpg;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001429 if (!tpg)
1430 return NULL;
1431
1432 if (!tpg->tpg_tiqn)
1433 return NULL;
1434
1435 return tpg->tpg_tiqn;
1436}