blob: b4640338f8d83616be789d0173469eccc8939d93 [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;
Andy Grover2fbb4712012-04-03 15:51:01 -0700170 INIT_LIST_HEAD(&cmd->i_conn_node);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000171 INIT_LIST_HEAD(&cmd->datain_list);
172 INIT_LIST_HEAD(&cmd->cmd_r2t_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000173 spin_lock_init(&cmd->datain_lock);
174 spin_lock_init(&cmd->dataout_timeout_lock);
175 spin_lock_init(&cmd->istate_lock);
176 spin_lock_init(&cmd->error_lock);
177 spin_lock_init(&cmd->r2t_lock);
178
179 return cmd;
180}
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800181EXPORT_SYMBOL(iscsit_allocate_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000182
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000183struct iscsi_seq *iscsit_get_seq_holder_for_datain(
184 struct iscsi_cmd *cmd,
185 u32 seq_send_order)
186{
187 u32 i;
188
189 for (i = 0; i < cmd->seq_count; i++)
190 if (cmd->seq_list[i].seq_send_order == seq_send_order)
191 return &cmd->seq_list[i];
192
193 return NULL;
194}
195
196struct iscsi_seq *iscsit_get_seq_holder_for_r2t(struct iscsi_cmd *cmd)
197{
198 u32 i;
199
200 if (!cmd->seq_list) {
201 pr_err("struct iscsi_cmd->seq_list is NULL!\n");
202 return NULL;
203 }
204
205 for (i = 0; i < cmd->seq_count; i++) {
206 if (cmd->seq_list[i].type != SEQTYPE_NORMAL)
207 continue;
208 if (cmd->seq_list[i].seq_send_order == cmd->seq_send_order) {
209 cmd->seq_send_order++;
210 return &cmd->seq_list[i];
211 }
212 }
213
214 return NULL;
215}
216
217struct iscsi_r2t *iscsit_get_holder_for_r2tsn(
218 struct iscsi_cmd *cmd,
219 u32 r2t_sn)
220{
221 struct iscsi_r2t *r2t;
222
223 spin_lock_bh(&cmd->r2t_lock);
224 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
225 if (r2t->r2t_sn == r2t_sn) {
226 spin_unlock_bh(&cmd->r2t_lock);
227 return r2t;
228 }
229 }
230 spin_unlock_bh(&cmd->r2t_lock);
231
232 return NULL;
233}
234
235static inline int iscsit_check_received_cmdsn(struct iscsi_session *sess, u32 cmdsn)
236{
Roland Dreier109e2382015-07-23 14:53:32 -0700237 u32 max_cmdsn;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000238 int ret;
239
240 /*
241 * This is the proper method of checking received CmdSN against
242 * ExpCmdSN and MaxCmdSN values, as well as accounting for out
243 * or order CmdSNs due to multiple connection sessions and/or
244 * CRC failures.
245 */
Roland Dreier109e2382015-07-23 14:53:32 -0700246 max_cmdsn = atomic_read(&sess->max_cmd_sn);
247 if (iscsi_sna_gt(cmdsn, max_cmdsn)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000248 pr_err("Received CmdSN: 0x%08x is greater than"
Roland Dreier109e2382015-07-23 14:53:32 -0700249 " MaxCmdSN: 0x%08x, ignoring.\n", cmdsn, max_cmdsn);
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800250 ret = CMDSN_MAXCMDSN_OVERRUN;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000251
252 } else if (cmdsn == sess->exp_cmd_sn) {
253 sess->exp_cmd_sn++;
254 pr_debug("Received CmdSN matches ExpCmdSN,"
255 " incremented ExpCmdSN to: 0x%08x\n",
256 sess->exp_cmd_sn);
257 ret = CMDSN_NORMAL_OPERATION;
258
259 } else if (iscsi_sna_gt(cmdsn, sess->exp_cmd_sn)) {
260 pr_debug("Received CmdSN: 0x%08x is greater"
261 " than ExpCmdSN: 0x%08x, not acknowledging.\n",
262 cmdsn, sess->exp_cmd_sn);
263 ret = CMDSN_HIGHER_THAN_EXP;
264
265 } else {
266 pr_err("Received CmdSN: 0x%08x is less than"
267 " ExpCmdSN: 0x%08x, ignoring.\n", cmdsn,
268 sess->exp_cmd_sn);
269 ret = CMDSN_LOWER_THAN_EXP;
270 }
271
272 return ret;
273}
274
275/*
276 * Commands may be received out of order if MC/S is in use.
277 * Ensure they are executed in CmdSN order.
278 */
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700279int iscsit_sequence_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
280 unsigned char *buf, __be32 cmdsn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000281{
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700282 int ret, cmdsn_ret;
283 bool reject = false;
284 u8 reason = ISCSI_REASON_BOOKMARK_NO_RESOURCES;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000285
286 mutex_lock(&conn->sess->cmdsn_mutex);
287
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400288 cmdsn_ret = iscsit_check_received_cmdsn(conn->sess, be32_to_cpu(cmdsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000289 switch (cmdsn_ret) {
290 case CMDSN_NORMAL_OPERATION:
291 ret = iscsit_execute_cmd(cmd, 0);
292 if ((ret >= 0) && !list_empty(&conn->sess->sess_ooo_cmdsn_list))
293 iscsit_execute_ooo_cmdsns(conn->sess);
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700294 else if (ret < 0) {
295 reject = true;
296 ret = CMDSN_ERROR_CANNOT_RECOVER;
297 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000298 break;
299 case CMDSN_HIGHER_THAN_EXP:
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400300 ret = iscsit_handle_ooo_cmdsn(conn->sess, cmd, be32_to_cpu(cmdsn));
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700301 if (ret < 0) {
302 reject = true;
303 ret = CMDSN_ERROR_CANNOT_RECOVER;
304 break;
305 }
306 ret = CMDSN_HIGHER_THAN_EXP;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000307 break;
308 case CMDSN_LOWER_THAN_EXP:
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800309 case CMDSN_MAXCMDSN_OVERRUN:
310 default:
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000311 cmd->i_state = ISTATE_REMOVE;
312 iscsit_add_cmd_to_immediate_queue(cmd, conn, cmd->i_state);
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800313 /*
314 * Existing callers for iscsit_sequence_cmd() will silently
315 * ignore commands with CMDSN_LOWER_THAN_EXP, so force this
316 * return for CMDSN_MAXCMDSN_OVERRUN as well..
317 */
318 ret = CMDSN_LOWER_THAN_EXP;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000319 break;
320 }
321 mutex_unlock(&conn->sess->cmdsn_mutex);
322
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700323 if (reject)
324 iscsit_reject_cmd(cmd, reason, buf);
325
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000326 return ret;
327}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800328EXPORT_SYMBOL(iscsit_sequence_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000329
330int iscsit_check_unsolicited_dataout(struct iscsi_cmd *cmd, unsigned char *buf)
331{
332 struct iscsi_conn *conn = cmd->conn;
333 struct se_cmd *se_cmd = &cmd->se_cmd;
334 struct iscsi_data *hdr = (struct iscsi_data *) buf;
335 u32 payload_length = ntoh24(hdr->dlength);
336
337 if (conn->sess->sess_ops->InitialR2T) {
338 pr_err("Received unexpected unsolicited data"
339 " while InitialR2T=Yes, protocol error.\n");
340 transport_send_check_condition_and_sense(se_cmd,
341 TCM_UNEXPECTED_UNSOLICITED_DATA, 0);
342 return -1;
343 }
344
345 if ((cmd->first_burst_len + payload_length) >
346 conn->sess->sess_ops->FirstBurstLength) {
347 pr_err("Total %u bytes exceeds FirstBurstLength: %u"
348 " for this Unsolicited DataOut Burst.\n",
349 (cmd->first_burst_len + payload_length),
350 conn->sess->sess_ops->FirstBurstLength);
351 transport_send_check_condition_and_sense(se_cmd,
352 TCM_INCORRECT_AMOUNT_OF_DATA, 0);
353 return -1;
354 }
355
356 if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL))
357 return 0;
358
Andy Groverebf1d952012-04-03 15:51:24 -0700359 if (((cmd->first_burst_len + payload_length) != cmd->se_cmd.data_length) &&
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000360 ((cmd->first_burst_len + payload_length) !=
361 conn->sess->sess_ops->FirstBurstLength)) {
362 pr_err("Unsolicited non-immediate data received %u"
363 " does not equal FirstBurstLength: %u, and does"
364 " not equal ExpXferLen %u.\n",
365 (cmd->first_burst_len + payload_length),
Andy Groverebf1d952012-04-03 15:51:24 -0700366 conn->sess->sess_ops->FirstBurstLength, cmd->se_cmd.data_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000367 transport_send_check_condition_and_sense(se_cmd,
368 TCM_INCORRECT_AMOUNT_OF_DATA, 0);
369 return -1;
370 }
371 return 0;
372}
373
374struct iscsi_cmd *iscsit_find_cmd_from_itt(
375 struct iscsi_conn *conn,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400376 itt_t init_task_tag)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000377{
378 struct iscsi_cmd *cmd;
379
380 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700381 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000382 if (cmd->init_task_tag == init_task_tag) {
383 spin_unlock_bh(&conn->cmd_lock);
384 return cmd;
385 }
386 }
387 spin_unlock_bh(&conn->cmd_lock);
388
389 pr_err("Unable to locate ITT: 0x%08x on CID: %hu",
390 init_task_tag, conn->cid);
391 return NULL;
392}
Sagi Grimberge4f4e802015-02-09 18:07:25 +0200393EXPORT_SYMBOL(iscsit_find_cmd_from_itt);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000394
395struct iscsi_cmd *iscsit_find_cmd_from_itt_or_dump(
396 struct iscsi_conn *conn,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400397 itt_t init_task_tag,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000398 u32 length)
399{
400 struct iscsi_cmd *cmd;
401
402 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700403 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellinger3687db82014-07-07 18:25:04 -0700404 if (cmd->cmd_flags & ICF_GOT_LAST_DATAOUT)
405 continue;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000406 if (cmd->init_task_tag == init_task_tag) {
407 spin_unlock_bh(&conn->cmd_lock);
408 return cmd;
409 }
410 }
411 spin_unlock_bh(&conn->cmd_lock);
412
413 pr_err("Unable to locate ITT: 0x%08x on CID: %hu,"
414 " dumping payload\n", init_task_tag, conn->cid);
415 if (length)
416 iscsit_dump_data_payload(conn, length, 1);
417
418 return NULL;
419}
Varun Prakash9a584bf2017-01-13 20:53:21 +0530420EXPORT_SYMBOL(iscsit_find_cmd_from_itt_or_dump);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000421
422struct iscsi_cmd *iscsit_find_cmd_from_ttt(
423 struct iscsi_conn *conn,
424 u32 targ_xfer_tag)
425{
426 struct iscsi_cmd *cmd = NULL;
427
428 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700429 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000430 if (cmd->targ_xfer_tag == targ_xfer_tag) {
431 spin_unlock_bh(&conn->cmd_lock);
432 return cmd;
433 }
434 }
435 spin_unlock_bh(&conn->cmd_lock);
436
437 pr_err("Unable to locate TTT: 0x%08x on CID: %hu\n",
438 targ_xfer_tag, conn->cid);
439 return NULL;
440}
441
442int iscsit_find_cmd_for_recovery(
443 struct iscsi_session *sess,
444 struct iscsi_cmd **cmd_ptr,
445 struct iscsi_conn_recovery **cr_ptr,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400446 itt_t init_task_tag)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000447{
448 struct iscsi_cmd *cmd = NULL;
449 struct iscsi_conn_recovery *cr;
450 /*
451 * Scan through the inactive connection recovery list's command list.
452 * If init_task_tag matches the command is still alligent.
453 */
454 spin_lock(&sess->cr_i_lock);
455 list_for_each_entry(cr, &sess->cr_inactive_list, cr_list) {
456 spin_lock(&cr->conn_recovery_cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700457 list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000458 if (cmd->init_task_tag == init_task_tag) {
459 spin_unlock(&cr->conn_recovery_cmd_lock);
460 spin_unlock(&sess->cr_i_lock);
461
462 *cr_ptr = cr;
463 *cmd_ptr = cmd;
464 return -2;
465 }
466 }
467 spin_unlock(&cr->conn_recovery_cmd_lock);
468 }
469 spin_unlock(&sess->cr_i_lock);
470 /*
471 * Scan through the active connection recovery list's command list.
472 * If init_task_tag matches the command is ready to be reassigned.
473 */
474 spin_lock(&sess->cr_a_lock);
475 list_for_each_entry(cr, &sess->cr_active_list, cr_list) {
476 spin_lock(&cr->conn_recovery_cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700477 list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000478 if (cmd->init_task_tag == init_task_tag) {
479 spin_unlock(&cr->conn_recovery_cmd_lock);
480 spin_unlock(&sess->cr_a_lock);
481
482 *cr_ptr = cr;
483 *cmd_ptr = cmd;
484 return 0;
485 }
486 }
487 spin_unlock(&cr->conn_recovery_cmd_lock);
488 }
489 spin_unlock(&sess->cr_a_lock);
490
491 return -1;
492}
493
494void iscsit_add_cmd_to_immediate_queue(
495 struct iscsi_cmd *cmd,
496 struct iscsi_conn *conn,
497 u8 state)
498{
499 struct iscsi_queue_req *qr;
500
501 qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC);
502 if (!qr) {
503 pr_err("Unable to allocate memory for"
504 " struct iscsi_queue_req\n");
505 return;
506 }
507 INIT_LIST_HEAD(&qr->qr_list);
508 qr->cmd = cmd;
509 qr->state = state;
510
511 spin_lock_bh(&conn->immed_queue_lock);
512 list_add_tail(&qr->qr_list, &conn->immed_queue_list);
513 atomic_inc(&cmd->immed_queue_count);
514 atomic_set(&conn->check_immediate_queue, 1);
515 spin_unlock_bh(&conn->immed_queue_lock);
516
Roland Dreierd5627ac2012-10-31 09:16:46 -0700517 wake_up(&conn->queues_wq);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000518}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530519EXPORT_SYMBOL(iscsit_add_cmd_to_immediate_queue);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000520
521struct iscsi_queue_req *iscsit_get_cmd_from_immediate_queue(struct iscsi_conn *conn)
522{
523 struct iscsi_queue_req *qr;
524
525 spin_lock_bh(&conn->immed_queue_lock);
526 if (list_empty(&conn->immed_queue_list)) {
527 spin_unlock_bh(&conn->immed_queue_lock);
528 return NULL;
529 }
Roland Dreier1f981de2012-10-31 09:16:47 -0700530 qr = list_first_entry(&conn->immed_queue_list,
531 struct iscsi_queue_req, qr_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000532
533 list_del(&qr->qr_list);
534 if (qr->cmd)
535 atomic_dec(&qr->cmd->immed_queue_count);
536 spin_unlock_bh(&conn->immed_queue_lock);
537
538 return qr;
539}
540
541static void iscsit_remove_cmd_from_immediate_queue(
542 struct iscsi_cmd *cmd,
543 struct iscsi_conn *conn)
544{
545 struct iscsi_queue_req *qr, *qr_tmp;
546
547 spin_lock_bh(&conn->immed_queue_lock);
548 if (!atomic_read(&cmd->immed_queue_count)) {
549 spin_unlock_bh(&conn->immed_queue_lock);
550 return;
551 }
552
553 list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) {
554 if (qr->cmd != cmd)
555 continue;
556
557 atomic_dec(&qr->cmd->immed_queue_count);
558 list_del(&qr->qr_list);
559 kmem_cache_free(lio_qr_cache, qr);
560 }
561 spin_unlock_bh(&conn->immed_queue_lock);
562
563 if (atomic_read(&cmd->immed_queue_count)) {
564 pr_err("ITT: 0x%08x immed_queue_count: %d\n",
565 cmd->init_task_tag,
566 atomic_read(&cmd->immed_queue_count));
567 }
568}
569
570void iscsit_add_cmd_to_response_queue(
571 struct iscsi_cmd *cmd,
572 struct iscsi_conn *conn,
573 u8 state)
574{
575 struct iscsi_queue_req *qr;
576
577 qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC);
578 if (!qr) {
579 pr_err("Unable to allocate memory for"
580 " struct iscsi_queue_req\n");
581 return;
582 }
583 INIT_LIST_HEAD(&qr->qr_list);
584 qr->cmd = cmd;
585 qr->state = state;
586
587 spin_lock_bh(&conn->response_queue_lock);
588 list_add_tail(&qr->qr_list, &conn->response_queue_list);
589 atomic_inc(&cmd->response_queue_count);
590 spin_unlock_bh(&conn->response_queue_lock);
591
Roland Dreierd5627ac2012-10-31 09:16:46 -0700592 wake_up(&conn->queues_wq);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000593}
594
595struct iscsi_queue_req *iscsit_get_cmd_from_response_queue(struct iscsi_conn *conn)
596{
597 struct iscsi_queue_req *qr;
598
599 spin_lock_bh(&conn->response_queue_lock);
600 if (list_empty(&conn->response_queue_list)) {
601 spin_unlock_bh(&conn->response_queue_lock);
602 return NULL;
603 }
604
Roland Dreier1f981de2012-10-31 09:16:47 -0700605 qr = list_first_entry(&conn->response_queue_list,
606 struct iscsi_queue_req, qr_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000607
608 list_del(&qr->qr_list);
609 if (qr->cmd)
610 atomic_dec(&qr->cmd->response_queue_count);
611 spin_unlock_bh(&conn->response_queue_lock);
612
613 return qr;
614}
615
616static void iscsit_remove_cmd_from_response_queue(
617 struct iscsi_cmd *cmd,
618 struct iscsi_conn *conn)
619{
620 struct iscsi_queue_req *qr, *qr_tmp;
621
622 spin_lock_bh(&conn->response_queue_lock);
623 if (!atomic_read(&cmd->response_queue_count)) {
624 spin_unlock_bh(&conn->response_queue_lock);
625 return;
626 }
627
628 list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list,
629 qr_list) {
630 if (qr->cmd != cmd)
631 continue;
632
633 atomic_dec(&qr->cmd->response_queue_count);
634 list_del(&qr->qr_list);
635 kmem_cache_free(lio_qr_cache, qr);
636 }
637 spin_unlock_bh(&conn->response_queue_lock);
638
639 if (atomic_read(&cmd->response_queue_count)) {
640 pr_err("ITT: 0x%08x response_queue_count: %d\n",
641 cmd->init_task_tag,
642 atomic_read(&cmd->response_queue_count));
643 }
644}
645
Roland Dreierd5627ac2012-10-31 09:16:46 -0700646bool iscsit_conn_all_queues_empty(struct iscsi_conn *conn)
647{
648 bool empty;
649
650 spin_lock_bh(&conn->immed_queue_lock);
651 empty = list_empty(&conn->immed_queue_list);
652 spin_unlock_bh(&conn->immed_queue_lock);
653
654 if (!empty)
655 return empty;
656
657 spin_lock_bh(&conn->response_queue_lock);
658 empty = list_empty(&conn->response_queue_list);
659 spin_unlock_bh(&conn->response_queue_lock);
660
661 return empty;
662}
663
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000664void iscsit_free_queue_reqs_for_conn(struct iscsi_conn *conn)
665{
666 struct iscsi_queue_req *qr, *qr_tmp;
667
668 spin_lock_bh(&conn->immed_queue_lock);
669 list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) {
670 list_del(&qr->qr_list);
671 if (qr->cmd)
672 atomic_dec(&qr->cmd->immed_queue_count);
673
674 kmem_cache_free(lio_qr_cache, qr);
675 }
676 spin_unlock_bh(&conn->immed_queue_lock);
677
678 spin_lock_bh(&conn->response_queue_lock);
679 list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list,
680 qr_list) {
681 list_del(&qr->qr_list);
682 if (qr->cmd)
683 atomic_dec(&qr->cmd->response_queue_count);
684
685 kmem_cache_free(lio_qr_cache, qr);
686 }
687 spin_unlock_bh(&conn->response_queue_lock);
688}
689
690void iscsit_release_cmd(struct iscsi_cmd *cmd)
691{
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700692 struct iscsi_session *sess;
693 struct se_cmd *se_cmd = &cmd->se_cmd;
694
695 if (cmd->conn)
696 sess = cmd->conn->sess;
697 else
698 sess = cmd->sess;
699
700 BUG_ON(!sess || !sess->se_sess);
701
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000702 kfree(cmd->buf_ptr);
703 kfree(cmd->pdu_list);
704 kfree(cmd->seq_list);
705 kfree(cmd->tmr_req);
706 kfree(cmd->iov_data);
Nicholas Bellinger9864ca92013-06-19 22:43:11 -0700707 kfree(cmd->text_in_ptr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000708
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700709 percpu_ida_free(&sess->se_sess->sess_tag_pool, se_cmd->map_tag);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000710}
Nicholas Bellingerd703ce22013-08-17 14:27:56 -0700711EXPORT_SYMBOL(iscsit_release_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000712
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700713void __iscsit_free_cmd(struct iscsi_cmd *cmd, bool scsi_cmd,
714 bool check_queues)
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700715{
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700716 struct iscsi_conn *conn = cmd->conn;
717
718 if (scsi_cmd) {
719 if (cmd->data_direction == DMA_TO_DEVICE) {
720 iscsit_stop_dataout_timer(cmd);
721 iscsit_free_r2ts_from_list(cmd);
722 }
723 if (cmd->data_direction == DMA_FROM_DEVICE)
724 iscsit_free_all_datain_reqs(cmd);
725 }
726
727 if (conn && check_queues) {
728 iscsit_remove_cmd_from_immediate_queue(cmd, conn);
729 iscsit_remove_cmd_from_response_queue(cmd, conn);
730 }
Varun Prakash7ec811a2016-04-20 00:00:09 +0530731
732 if (conn && conn->conn_transport->iscsit_release_cmd)
733 conn->conn_transport->iscsit_release_cmd(conn, cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700734}
735
736void iscsit_free_cmd(struct iscsi_cmd *cmd, bool shutdown)
737{
738 struct se_cmd *se_cmd = NULL;
739 int rc;
Nicholas Bellingerefb2ea72017-03-23 17:19:24 -0700740 bool op_scsi = false;
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700741 /*
Masanari Iida20879692012-08-27 22:46:00 +0900742 * Determine if a struct se_cmd is associated with
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700743 * this struct iscsi_cmd.
744 */
745 switch (cmd->iscsi_opcode) {
746 case ISCSI_OP_SCSI_CMD:
Nicholas Bellingerefb2ea72017-03-23 17:19:24 -0700747 op_scsi = true;
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800748 /*
749 * Fallthrough
750 */
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700751 case ISCSI_OP_SCSI_TMFUNC:
Nicholas Bellingerefb2ea72017-03-23 17:19:24 -0700752 se_cmd = &cmd->se_cmd;
753 __iscsit_free_cmd(cmd, op_scsi, shutdown);
754 rc = transport_generic_free_cmd(se_cmd, shutdown);
755 if (!rc && shutdown && se_cmd->se_sess) {
756 __iscsit_free_cmd(cmd, op_scsi, shutdown);
Bart Van Asscheafc16602015-04-27 13:52:36 +0200757 target_put_sess_cmd(se_cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700758 }
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700759 break;
Nicholas Bellingerc1ce4bd2012-01-16 16:04:15 -0800760 case ISCSI_OP_REJECT:
761 /*
762 * Handle special case for REJECT when iscsi_add_reject*() has
763 * overwritten the original iscsi_opcode assignment, and the
764 * associated cmd->se_cmd needs to be released.
765 */
766 if (cmd->se_cmd.se_tfo != NULL) {
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700767 se_cmd = &cmd->se_cmd;
768 __iscsit_free_cmd(cmd, true, shutdown);
769
Nicholas Bellingere255a282013-10-03 13:37:21 -0700770 rc = transport_generic_free_cmd(&cmd->se_cmd, shutdown);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700771 if (!rc && shutdown && se_cmd->se_sess) {
772 __iscsit_free_cmd(cmd, true, shutdown);
Bart Van Asscheafc16602015-04-27 13:52:36 +0200773 target_put_sess_cmd(se_cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700774 }
Nicholas Bellingerc1ce4bd2012-01-16 16:04:15 -0800775 break;
776 }
777 /* Fall-through */
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700778 default:
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700779 __iscsit_free_cmd(cmd, false, shutdown);
Nicholas Bellingerd703ce22013-08-17 14:27:56 -0700780 iscsit_release_cmd(cmd);
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700781 break;
782 }
783}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530784EXPORT_SYMBOL(iscsit_free_cmd);
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700785
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000786int iscsit_check_session_usage_count(struct iscsi_session *sess)
787{
788 spin_lock_bh(&sess->session_usage_lock);
789 if (sess->session_usage_count != 0) {
790 sess->session_waiting_on_uc = 1;
791 spin_unlock_bh(&sess->session_usage_lock);
792 if (in_interrupt())
793 return 2;
794
795 wait_for_completion(&sess->session_waiting_on_uc_comp);
796 return 1;
797 }
798 spin_unlock_bh(&sess->session_usage_lock);
799
800 return 0;
801}
802
803void iscsit_dec_session_usage_count(struct iscsi_session *sess)
804{
805 spin_lock_bh(&sess->session_usage_lock);
806 sess->session_usage_count--;
807
808 if (!sess->session_usage_count && sess->session_waiting_on_uc)
809 complete(&sess->session_waiting_on_uc_comp);
810
811 spin_unlock_bh(&sess->session_usage_lock);
812}
813
814void iscsit_inc_session_usage_count(struct iscsi_session *sess)
815{
816 spin_lock_bh(&sess->session_usage_lock);
817 sess->session_usage_count++;
818 spin_unlock_bh(&sess->session_usage_lock);
819}
820
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000821struct iscsi_conn *iscsit_get_conn_from_cid(struct iscsi_session *sess, u16 cid)
822{
823 struct iscsi_conn *conn;
824
825 spin_lock_bh(&sess->conn_lock);
826 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
827 if ((conn->cid == cid) &&
828 (conn->conn_state == TARG_CONN_STATE_LOGGED_IN)) {
829 iscsit_inc_conn_usage_count(conn);
830 spin_unlock_bh(&sess->conn_lock);
831 return conn;
832 }
833 }
834 spin_unlock_bh(&sess->conn_lock);
835
836 return NULL;
837}
838
839struct iscsi_conn *iscsit_get_conn_from_cid_rcfr(struct iscsi_session *sess, u16 cid)
840{
841 struct iscsi_conn *conn;
842
843 spin_lock_bh(&sess->conn_lock);
844 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
845 if (conn->cid == cid) {
846 iscsit_inc_conn_usage_count(conn);
847 spin_lock(&conn->state_lock);
848 atomic_set(&conn->connection_wait_rcfr, 1);
849 spin_unlock(&conn->state_lock);
850 spin_unlock_bh(&sess->conn_lock);
851 return conn;
852 }
853 }
854 spin_unlock_bh(&sess->conn_lock);
855
856 return NULL;
857}
858
859void iscsit_check_conn_usage_count(struct iscsi_conn *conn)
860{
861 spin_lock_bh(&conn->conn_usage_lock);
862 if (conn->conn_usage_count != 0) {
863 conn->conn_waiting_on_uc = 1;
864 spin_unlock_bh(&conn->conn_usage_lock);
865
866 wait_for_completion(&conn->conn_waiting_on_uc_comp);
867 return;
868 }
869 spin_unlock_bh(&conn->conn_usage_lock);
870}
871
872void iscsit_dec_conn_usage_count(struct iscsi_conn *conn)
873{
874 spin_lock_bh(&conn->conn_usage_lock);
875 conn->conn_usage_count--;
876
877 if (!conn->conn_usage_count && conn->conn_waiting_on_uc)
878 complete(&conn->conn_waiting_on_uc_comp);
879
880 spin_unlock_bh(&conn->conn_usage_lock);
881}
882
883void iscsit_inc_conn_usage_count(struct iscsi_conn *conn)
884{
885 spin_lock_bh(&conn->conn_usage_lock);
886 conn->conn_usage_count++;
887 spin_unlock_bh(&conn->conn_usage_lock);
888}
889
890static int iscsit_add_nopin(struct iscsi_conn *conn, int want_response)
891{
892 u8 state;
893 struct iscsi_cmd *cmd;
894
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000895 cmd = iscsit_allocate_cmd(conn, TASK_RUNNING);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000896 if (!cmd)
897 return -1;
898
899 cmd->iscsi_opcode = ISCSI_OP_NOOP_IN;
900 state = (want_response) ? ISTATE_SEND_NOPIN_WANT_RESPONSE :
901 ISTATE_SEND_NOPIN_NO_RESPONSE;
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400902 cmd->init_task_tag = RESERVED_ITT;
Sagi Grimbergc1e34b62015-01-26 12:49:05 +0200903 cmd->targ_xfer_tag = (want_response) ?
904 session_get_next_ttt(conn->sess) : 0xFFFFFFFF;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000905 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700906 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000907 spin_unlock_bh(&conn->cmd_lock);
908
909 if (want_response)
910 iscsit_start_nopin_response_timer(conn);
911 iscsit_add_cmd_to_immediate_queue(cmd, conn, state);
912
913 return 0;
914}
915
916static void iscsit_handle_nopin_response_timeout(unsigned long data)
917{
918 struct iscsi_conn *conn = (struct iscsi_conn *) data;
919
920 iscsit_inc_conn_usage_count(conn);
921
922 spin_lock_bh(&conn->nopin_timer_lock);
923 if (conn->nopin_response_timer_flags & ISCSI_TF_STOP) {
924 spin_unlock_bh(&conn->nopin_timer_lock);
925 iscsit_dec_conn_usage_count(conn);
926 return;
927 }
928
929 pr_debug("Did not receive response to NOPIN on CID: %hu on"
930 " SID: %u, failing connection.\n", conn->cid,
931 conn->sess->sid);
932 conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING;
933 spin_unlock_bh(&conn->nopin_timer_lock);
934
935 {
936 struct iscsi_portal_group *tpg = conn->sess->tpg;
937 struct iscsi_tiqn *tiqn = tpg->tpg_tiqn;
938
939 if (tiqn) {
940 spin_lock_bh(&tiqn->sess_err_stats.lock);
941 strcpy(tiqn->sess_err_stats.last_sess_fail_rem_name,
Jörn Engel8359cf42011-11-24 02:05:51 +0100942 conn->sess->sess_ops->InitiatorName);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000943 tiqn->sess_err_stats.last_sess_failure_type =
944 ISCSI_SESS_ERR_CXN_TIMEOUT;
945 tiqn->sess_err_stats.cxn_timeout_errors++;
Nicholas Bellinger04f3b312013-11-13 18:54:45 -0800946 atomic_long_inc(&conn->sess->conn_timeout_errors);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000947 spin_unlock_bh(&tiqn->sess_err_stats.lock);
948 }
949 }
950
951 iscsit_cause_connection_reinstatement(conn, 0);
952 iscsit_dec_conn_usage_count(conn);
953}
954
955void iscsit_mod_nopin_response_timer(struct iscsi_conn *conn)
956{
957 struct iscsi_session *sess = conn->sess;
958 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
959
960 spin_lock_bh(&conn->nopin_timer_lock);
961 if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) {
962 spin_unlock_bh(&conn->nopin_timer_lock);
963 return;
964 }
965
966 mod_timer(&conn->nopin_response_timer,
967 (get_jiffies_64() + na->nopin_response_timeout * HZ));
968 spin_unlock_bh(&conn->nopin_timer_lock);
969}
970
971/*
972 * Called with conn->nopin_timer_lock held.
973 */
974void iscsit_start_nopin_response_timer(struct iscsi_conn *conn)
975{
976 struct iscsi_session *sess = conn->sess;
977 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
978
979 spin_lock_bh(&conn->nopin_timer_lock);
980 if (conn->nopin_response_timer_flags & ISCSI_TF_RUNNING) {
981 spin_unlock_bh(&conn->nopin_timer_lock);
982 return;
983 }
984
985 init_timer(&conn->nopin_response_timer);
986 conn->nopin_response_timer.expires =
987 (get_jiffies_64() + na->nopin_response_timeout * HZ);
988 conn->nopin_response_timer.data = (unsigned long)conn;
989 conn->nopin_response_timer.function = iscsit_handle_nopin_response_timeout;
990 conn->nopin_response_timer_flags &= ~ISCSI_TF_STOP;
991 conn->nopin_response_timer_flags |= ISCSI_TF_RUNNING;
992 add_timer(&conn->nopin_response_timer);
993
994 pr_debug("Started NOPIN Response Timer on CID: %d to %u"
995 " seconds\n", conn->cid, na->nopin_response_timeout);
996 spin_unlock_bh(&conn->nopin_timer_lock);
997}
998
999void iscsit_stop_nopin_response_timer(struct iscsi_conn *conn)
1000{
1001 spin_lock_bh(&conn->nopin_timer_lock);
1002 if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) {
1003 spin_unlock_bh(&conn->nopin_timer_lock);
1004 return;
1005 }
1006 conn->nopin_response_timer_flags |= ISCSI_TF_STOP;
1007 spin_unlock_bh(&conn->nopin_timer_lock);
1008
1009 del_timer_sync(&conn->nopin_response_timer);
1010
1011 spin_lock_bh(&conn->nopin_timer_lock);
1012 conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING;
1013 spin_unlock_bh(&conn->nopin_timer_lock);
1014}
1015
1016static void iscsit_handle_nopin_timeout(unsigned long data)
1017{
1018 struct iscsi_conn *conn = (struct iscsi_conn *) data;
1019
1020 iscsit_inc_conn_usage_count(conn);
1021
1022 spin_lock_bh(&conn->nopin_timer_lock);
1023 if (conn->nopin_timer_flags & ISCSI_TF_STOP) {
1024 spin_unlock_bh(&conn->nopin_timer_lock);
1025 iscsit_dec_conn_usage_count(conn);
1026 return;
1027 }
1028 conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING;
1029 spin_unlock_bh(&conn->nopin_timer_lock);
1030
1031 iscsit_add_nopin(conn, 1);
1032 iscsit_dec_conn_usage_count(conn);
1033}
1034
1035/*
1036 * Called with conn->nopin_timer_lock held.
1037 */
1038void __iscsit_start_nopin_timer(struct iscsi_conn *conn)
1039{
1040 struct iscsi_session *sess = conn->sess;
1041 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
1042 /*
1043 * NOPIN timeout is disabled.
1044 */
1045 if (!na->nopin_timeout)
1046 return;
1047
1048 if (conn->nopin_timer_flags & ISCSI_TF_RUNNING)
1049 return;
1050
1051 init_timer(&conn->nopin_timer);
1052 conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ);
1053 conn->nopin_timer.data = (unsigned long)conn;
1054 conn->nopin_timer.function = iscsit_handle_nopin_timeout;
1055 conn->nopin_timer_flags &= ~ISCSI_TF_STOP;
1056 conn->nopin_timer_flags |= ISCSI_TF_RUNNING;
1057 add_timer(&conn->nopin_timer);
1058
1059 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1060 " interval\n", conn->cid, na->nopin_timeout);
1061}
1062
1063void iscsit_start_nopin_timer(struct iscsi_conn *conn)
1064{
1065 struct iscsi_session *sess = conn->sess;
1066 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
1067 /*
1068 * NOPIN timeout is disabled..
1069 */
1070 if (!na->nopin_timeout)
1071 return;
1072
1073 spin_lock_bh(&conn->nopin_timer_lock);
1074 if (conn->nopin_timer_flags & ISCSI_TF_RUNNING) {
1075 spin_unlock_bh(&conn->nopin_timer_lock);
1076 return;
1077 }
1078
1079 init_timer(&conn->nopin_timer);
1080 conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ);
1081 conn->nopin_timer.data = (unsigned long)conn;
1082 conn->nopin_timer.function = iscsit_handle_nopin_timeout;
1083 conn->nopin_timer_flags &= ~ISCSI_TF_STOP;
1084 conn->nopin_timer_flags |= ISCSI_TF_RUNNING;
1085 add_timer(&conn->nopin_timer);
1086
1087 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1088 " interval\n", conn->cid, na->nopin_timeout);
1089 spin_unlock_bh(&conn->nopin_timer_lock);
1090}
1091
1092void iscsit_stop_nopin_timer(struct iscsi_conn *conn)
1093{
1094 spin_lock_bh(&conn->nopin_timer_lock);
1095 if (!(conn->nopin_timer_flags & ISCSI_TF_RUNNING)) {
1096 spin_unlock_bh(&conn->nopin_timer_lock);
1097 return;
1098 }
1099 conn->nopin_timer_flags |= ISCSI_TF_STOP;
1100 spin_unlock_bh(&conn->nopin_timer_lock);
1101
1102 del_timer_sync(&conn->nopin_timer);
1103
1104 spin_lock_bh(&conn->nopin_timer_lock);
1105 conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING;
1106 spin_unlock_bh(&conn->nopin_timer_lock);
1107}
1108
1109int iscsit_send_tx_data(
1110 struct iscsi_cmd *cmd,
1111 struct iscsi_conn *conn,
1112 int use_misc)
1113{
1114 int tx_sent, tx_size;
1115 u32 iov_count;
1116 struct kvec *iov;
1117
1118send_data:
1119 tx_size = cmd->tx_size;
1120
1121 if (!use_misc) {
1122 iov = &cmd->iov_data[0];
1123 iov_count = cmd->iov_data_count;
1124 } else {
1125 iov = &cmd->iov_misc[0];
1126 iov_count = cmd->iov_misc_count;
1127 }
1128
1129 tx_sent = tx_data(conn, &iov[0], iov_count, tx_size);
1130 if (tx_size != tx_sent) {
1131 if (tx_sent == -EAGAIN) {
1132 pr_err("tx_data() returned -EAGAIN\n");
1133 goto send_data;
1134 } else
1135 return -1;
1136 }
1137 cmd->tx_size = 0;
1138
1139 return 0;
1140}
1141
1142int iscsit_fe_sendpage_sg(
1143 struct iscsi_cmd *cmd,
1144 struct iscsi_conn *conn)
1145{
1146 struct scatterlist *sg = cmd->first_data_sg;
1147 struct kvec iov;
1148 u32 tx_hdr_size, data_len;
1149 u32 offset = cmd->first_data_sg_off;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001150 int tx_sent, iov_off;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001151
1152send_hdr:
1153 tx_hdr_size = ISCSI_HDR_LEN;
1154 if (conn->conn_ops->HeaderDigest)
1155 tx_hdr_size += ISCSI_CRC_LEN;
1156
1157 iov.iov_base = cmd->pdu;
1158 iov.iov_len = tx_hdr_size;
1159
1160 tx_sent = tx_data(conn, &iov, 1, tx_hdr_size);
1161 if (tx_hdr_size != tx_sent) {
1162 if (tx_sent == -EAGAIN) {
1163 pr_err("tx_data() returned -EAGAIN\n");
1164 goto send_hdr;
1165 }
1166 return -1;
1167 }
1168
1169 data_len = cmd->tx_size - tx_hdr_size - cmd->padding;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001170 /*
1171 * Set iov_off used by padding and data digest tx_data() calls below
1172 * in order to determine proper offset into cmd->iov_data[]
1173 */
1174 if (conn->conn_ops->DataDigest) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001175 data_len -= ISCSI_CRC_LEN;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001176 if (cmd->padding)
1177 iov_off = (cmd->iov_data_count - 2);
1178 else
1179 iov_off = (cmd->iov_data_count - 1);
1180 } else {
1181 iov_off = (cmd->iov_data_count - 1);
1182 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001183 /*
1184 * Perform sendpage() for each page in the scatterlist
1185 */
1186 while (data_len) {
1187 u32 space = (sg->length - offset);
1188 u32 sub_len = min_t(u32, data_len, space);
1189send_pg:
1190 tx_sent = conn->sock->ops->sendpage(conn->sock,
1191 sg_page(sg), sg->offset + offset, sub_len, 0);
1192 if (tx_sent != sub_len) {
1193 if (tx_sent == -EAGAIN) {
1194 pr_err("tcp_sendpage() returned"
1195 " -EAGAIN\n");
1196 goto send_pg;
1197 }
1198
1199 pr_err("tcp_sendpage() failure: %d\n",
1200 tx_sent);
1201 return -1;
1202 }
1203
1204 data_len -= sub_len;
1205 offset = 0;
1206 sg = sg_next(sg);
1207 }
1208
1209send_padding:
1210 if (cmd->padding) {
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001211 struct kvec *iov_p = &cmd->iov_data[iov_off++];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001212
1213 tx_sent = tx_data(conn, iov_p, 1, cmd->padding);
1214 if (cmd->padding != tx_sent) {
1215 if (tx_sent == -EAGAIN) {
1216 pr_err("tx_data() returned -EAGAIN\n");
1217 goto send_padding;
1218 }
1219 return -1;
1220 }
1221 }
1222
1223send_datacrc:
1224 if (conn->conn_ops->DataDigest) {
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001225 struct kvec *iov_d = &cmd->iov_data[iov_off];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001226
1227 tx_sent = tx_data(conn, iov_d, 1, ISCSI_CRC_LEN);
1228 if (ISCSI_CRC_LEN != tx_sent) {
1229 if (tx_sent == -EAGAIN) {
1230 pr_err("tx_data() returned -EAGAIN\n");
1231 goto send_datacrc;
1232 }
1233 return -1;
1234 }
1235 }
1236
1237 return 0;
1238}
1239
1240/*
1241 * This function is used for mainly sending a ISCSI_TARG_LOGIN_RSP PDU
1242 * back to the Initiator when an expection condition occurs with the
1243 * errors set in status_class and status_detail.
1244 *
1245 * Parameters: iSCSI Connection, Status Class, Status Detail.
1246 * Returns: 0 on success, -1 on error.
1247 */
1248int iscsit_tx_login_rsp(struct iscsi_conn *conn, u8 status_class, u8 status_detail)
1249{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001250 struct iscsi_login_rsp *hdr;
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001251 struct iscsi_login *login = conn->conn_login;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001252
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001253 login->login_failed = 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001254 iscsit_collect_login_stats(conn, status_class, status_detail);
1255
Nicholas Bellinger68349752014-06-17 21:54:38 +00001256 memset(&login->rsp[0], 0, ISCSI_HDR_LEN);
1257
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001258 hdr = (struct iscsi_login_rsp *)&login->rsp[0];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001259 hdr->opcode = ISCSI_OP_LOGIN_RSP;
1260 hdr->status_class = status_class;
1261 hdr->status_detail = status_detail;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001262 hdr->itt = conn->login_itt;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001263
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001264 return conn->conn_transport->iscsit_put_login_tx(conn, login, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001265}
1266
1267void iscsit_print_session_params(struct iscsi_session *sess)
1268{
1269 struct iscsi_conn *conn;
1270
1271 pr_debug("-----------------------------[Session Params for"
1272 " SID: %u]-----------------------------\n", sess->sid);
1273 spin_lock_bh(&sess->conn_lock);
1274 list_for_each_entry(conn, &sess->sess_conn_list, conn_list)
1275 iscsi_dump_conn_ops(conn->conn_ops);
1276 spin_unlock_bh(&sess->conn_lock);
1277
1278 iscsi_dump_sess_ops(sess->sess_ops);
1279}
1280
1281static int iscsit_do_rx_data(
1282 struct iscsi_conn *conn,
1283 struct iscsi_data_count *count)
1284{
Al Viroe5a4b0b2014-11-24 18:17:55 -05001285 int data = count->data_length, rx_loop = 0, total_rx = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001286 struct msghdr msg;
1287
1288 if (!conn || !conn->sock || !conn->conn_ops)
1289 return -1;
1290
1291 memset(&msg, 0, sizeof(struct msghdr));
Al Viroe5a4b0b2014-11-24 18:17:55 -05001292 iov_iter_kvec(&msg.msg_iter, READ | ITER_KVEC,
1293 count->iov, count->iov_count, data);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001294
Al Viro2da62902015-03-14 21:13:46 -04001295 while (msg_data_left(&msg)) {
1296 rx_loop = sock_recvmsg(conn->sock, &msg, MSG_WAITALL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001297 if (rx_loop <= 0) {
1298 pr_debug("rx_loop: %d total_rx: %d\n",
1299 rx_loop, total_rx);
1300 return rx_loop;
1301 }
1302 total_rx += rx_loop;
1303 pr_debug("rx_loop: %d, total_rx: %d, data: %d\n",
1304 rx_loop, total_rx, data);
1305 }
1306
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001307 return total_rx;
1308}
1309
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001310int rx_data(
1311 struct iscsi_conn *conn,
1312 struct kvec *iov,
1313 int iov_count,
1314 int data)
1315{
1316 struct iscsi_data_count c;
1317
1318 if (!conn || !conn->sock || !conn->conn_ops)
1319 return -1;
1320
1321 memset(&c, 0, sizeof(struct iscsi_data_count));
1322 c.iov = iov;
1323 c.iov_count = iov_count;
1324 c.data_length = data;
1325 c.type = ISCSI_RX_DATA;
1326
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001327 return iscsit_do_rx_data(conn, &c);
1328}
1329
1330int tx_data(
1331 struct iscsi_conn *conn,
1332 struct kvec *iov,
1333 int iov_count,
1334 int data)
1335{
Al Viro4113e472014-12-21 02:14:47 -05001336 struct msghdr msg;
1337 int total_tx = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001338
1339 if (!conn || !conn->sock || !conn->conn_ops)
1340 return -1;
1341
Al Viro4113e472014-12-21 02:14:47 -05001342 if (data <= 0) {
1343 pr_err("Data length is: %d\n", data);
1344 return -1;
1345 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001346
Al Viro4113e472014-12-21 02:14:47 -05001347 memset(&msg, 0, sizeof(struct msghdr));
1348
1349 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC,
1350 iov, iov_count, data);
1351
1352 while (msg_data_left(&msg)) {
1353 int tx_loop = sock_sendmsg(conn->sock, &msg);
1354 if (tx_loop <= 0) {
1355 pr_debug("tx_loop: %d total_tx %d\n",
1356 tx_loop, total_tx);
1357 return tx_loop;
1358 }
1359 total_tx += tx_loop;
1360 pr_debug("tx_loop: %d, total_tx: %d, data: %d\n",
1361 tx_loop, total_tx, data);
1362 }
1363
1364 return total_tx;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001365}
1366
1367void iscsit_collect_login_stats(
1368 struct iscsi_conn *conn,
1369 u8 status_class,
1370 u8 status_detail)
1371{
1372 struct iscsi_param *intrname = NULL;
1373 struct iscsi_tiqn *tiqn;
1374 struct iscsi_login_stats *ls;
1375
1376 tiqn = iscsit_snmp_get_tiqn(conn);
1377 if (!tiqn)
1378 return;
1379
1380 ls = &tiqn->login_stats;
1381
1382 spin_lock(&ls->lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001383 if (status_class == ISCSI_STATUS_CLS_SUCCESS)
1384 ls->accepts++;
1385 else if (status_class == ISCSI_STATUS_CLS_REDIRECT) {
1386 ls->redirects++;
1387 ls->last_fail_type = ISCSI_LOGIN_FAIL_REDIRECT;
1388 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1389 (status_detail == ISCSI_LOGIN_STATUS_AUTH_FAILED)) {
1390 ls->authenticate_fails++;
1391 ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHENTICATE;
1392 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1393 (status_detail == ISCSI_LOGIN_STATUS_TGT_FORBIDDEN)) {
1394 ls->authorize_fails++;
1395 ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHORIZE;
1396 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1397 (status_detail == ISCSI_LOGIN_STATUS_INIT_ERR)) {
1398 ls->negotiate_fails++;
1399 ls->last_fail_type = ISCSI_LOGIN_FAIL_NEGOTIATE;
1400 } else {
1401 ls->other_fails++;
1402 ls->last_fail_type = ISCSI_LOGIN_FAIL_OTHER;
1403 }
1404
1405 /* Save initiator name, ip address and time, if it is a failed login */
1406 if (status_class != ISCSI_STATUS_CLS_SUCCESS) {
1407 if (conn->param_list)
1408 intrname = iscsi_find_param_from_key(INITIATORNAME,
1409 conn->param_list);
Joern Engelfdc84d12014-09-02 17:49:55 -04001410 strlcpy(ls->last_intr_fail_name,
1411 (intrname ? intrname->value : "Unknown"),
1412 sizeof(ls->last_intr_fail_name));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001413
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001414 ls->last_intr_fail_ip_family = conn->login_family;
1415
Andy Groverdc58f762015-08-24 10:26:05 -07001416 ls->last_intr_fail_sockaddr = conn->login_sockaddr;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001417 ls->last_fail_time = get_jiffies_64();
1418 }
1419
1420 spin_unlock(&ls->lock);
1421}
1422
1423struct iscsi_tiqn *iscsit_snmp_get_tiqn(struct iscsi_conn *conn)
1424{
1425 struct iscsi_portal_group *tpg;
1426
Nicholas Bellinger17c61ad2017-02-23 21:26:31 -08001427 if (!conn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001428 return NULL;
1429
Nicholas Bellinger17c61ad2017-02-23 21:26:31 -08001430 tpg = conn->tpg;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001431 if (!tpg)
1432 return NULL;
1433
1434 if (!tpg->tpg_tiqn)
1435 return NULL;
1436
1437 return tpg->tpg_tiqn;
1438}