blob: 43e176f1048e4eecf61c455b60b18438a7414503 [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>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000021#include <scsi/scsi_tcq.h>
22#include <scsi/iscsi_proto.h>
23#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050024#include <target/target_core_fabric.h>
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -080025#include <target/iscsi/iscsi_transport.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000026
Sagi Grimberg67f091f2015-01-07 14:57:31 +020027#include <target/iscsi/iscsi_target_core.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000028#include "iscsi_target_parameters.h"
29#include "iscsi_target_seq_pdu_list.h"
30#include "iscsi_target_datain_values.h"
31#include "iscsi_target_erl0.h"
32#include "iscsi_target_erl1.h"
33#include "iscsi_target_erl2.h"
34#include "iscsi_target_tpg.h"
Nicholas Bellingere48354c2011-07-23 06:43:04 +000035#include "iscsi_target_util.h"
36#include "iscsi_target.h"
37
38#define PRINT_BUFF(buff, len) \
39{ \
40 int zzz; \
41 \
42 pr_debug("%d:\n", __LINE__); \
43 for (zzz = 0; zzz < len; zzz++) { \
44 if (zzz % 16 == 0) { \
45 if (zzz) \
46 pr_debug("\n"); \
47 pr_debug("%4i: ", zzz); \
48 } \
49 pr_debug("%02x ", (unsigned char) (buff)[zzz]); \
50 } \
51 if ((len + 1) % 16) \
52 pr_debug("\n"); \
53}
54
55extern struct list_head g_tiqn_list;
56extern spinlock_t tiqn_lock;
57
58/*
59 * Called with cmd->r2t_lock held.
60 */
61int iscsit_add_r2t_to_list(
62 struct iscsi_cmd *cmd,
63 u32 offset,
64 u32 xfer_len,
65 int recovery,
66 u32 r2t_sn)
67{
68 struct iscsi_r2t *r2t;
69
70 r2t = kmem_cache_zalloc(lio_r2t_cache, GFP_ATOMIC);
71 if (!r2t) {
72 pr_err("Unable to allocate memory for struct iscsi_r2t.\n");
73 return -1;
74 }
75 INIT_LIST_HEAD(&r2t->r2t_list);
76
77 r2t->recovery_r2t = recovery;
78 r2t->r2t_sn = (!r2t_sn) ? cmd->r2t_sn++ : r2t_sn;
79 r2t->offset = offset;
80 r2t->xfer_len = xfer_len;
81 list_add_tail(&r2t->r2t_list, &cmd->cmd_r2t_list);
82 spin_unlock_bh(&cmd->r2t_lock);
83
84 iscsit_add_cmd_to_immediate_queue(cmd, cmd->conn, ISTATE_SEND_R2T);
85
86 spin_lock_bh(&cmd->r2t_lock);
87 return 0;
88}
89
90struct iscsi_r2t *iscsit_get_r2t_for_eos(
91 struct iscsi_cmd *cmd,
92 u32 offset,
93 u32 length)
94{
95 struct iscsi_r2t *r2t;
96
97 spin_lock_bh(&cmd->r2t_lock);
98 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
99 if ((r2t->offset <= offset) &&
100 (r2t->offset + r2t->xfer_len) >= (offset + length)) {
101 spin_unlock_bh(&cmd->r2t_lock);
102 return r2t;
103 }
104 }
105 spin_unlock_bh(&cmd->r2t_lock);
106
107 pr_err("Unable to locate R2T for Offset: %u, Length:"
108 " %u\n", offset, length);
109 return NULL;
110}
111
112struct iscsi_r2t *iscsit_get_r2t_from_list(struct iscsi_cmd *cmd)
113{
114 struct iscsi_r2t *r2t;
115
116 spin_lock_bh(&cmd->r2t_lock);
117 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
118 if (!r2t->sent_r2t) {
119 spin_unlock_bh(&cmd->r2t_lock);
120 return r2t;
121 }
122 }
123 spin_unlock_bh(&cmd->r2t_lock);
124
125 pr_err("Unable to locate next R2T to send for ITT:"
126 " 0x%08x.\n", cmd->init_task_tag);
127 return NULL;
128}
129
130/*
131 * Called with cmd->r2t_lock held.
132 */
133void iscsit_free_r2t(struct iscsi_r2t *r2t, struct iscsi_cmd *cmd)
134{
135 list_del(&r2t->r2t_list);
136 kmem_cache_free(lio_r2t_cache, r2t);
137}
138
139void iscsit_free_r2ts_from_list(struct iscsi_cmd *cmd)
140{
141 struct iscsi_r2t *r2t, *r2t_tmp;
142
143 spin_lock_bh(&cmd->r2t_lock);
144 list_for_each_entry_safe(r2t, r2t_tmp, &cmd->cmd_r2t_list, r2t_list)
145 iscsit_free_r2t(r2t, cmd);
146 spin_unlock_bh(&cmd->r2t_lock);
147}
148
149/*
150 * May be called from software interrupt (timer) context for allocating
151 * iSCSI NopINs.
152 */
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000153struct iscsi_cmd *iscsit_allocate_cmd(struct iscsi_conn *conn, int state)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000154{
155 struct iscsi_cmd *cmd;
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700156 struct se_session *se_sess = conn->sess->se_sess;
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000157 int size, tag;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000158
Kent Overstreet6f6b5d12014-01-19 08:26:37 +0000159 tag = percpu_ida_alloc(&se_sess->sess_tag_pool, state);
160 if (tag < 0)
161 return NULL;
162
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700163 size = sizeof(struct iscsi_cmd) + conn->conn_transport->priv_size;
164 cmd = (struct iscsi_cmd *)(se_sess->sess_cmd_map + (tag * size));
165 memset(cmd, 0, size);
166
167 cmd->se_cmd.map_tag = tag;
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800168 cmd->conn = conn;
Andy Grover2fbb4712012-04-03 15:51:01 -0700169 INIT_LIST_HEAD(&cmd->i_conn_node);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000170 INIT_LIST_HEAD(&cmd->datain_list);
171 INIT_LIST_HEAD(&cmd->cmd_r2t_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000172 spin_lock_init(&cmd->datain_lock);
173 spin_lock_init(&cmd->dataout_timeout_lock);
174 spin_lock_init(&cmd->istate_lock);
175 spin_lock_init(&cmd->error_lock);
176 spin_lock_init(&cmd->r2t_lock);
177
178 return cmd;
179}
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800180EXPORT_SYMBOL(iscsit_allocate_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000181
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000182struct iscsi_seq *iscsit_get_seq_holder_for_datain(
183 struct iscsi_cmd *cmd,
184 u32 seq_send_order)
185{
186 u32 i;
187
188 for (i = 0; i < cmd->seq_count; i++)
189 if (cmd->seq_list[i].seq_send_order == seq_send_order)
190 return &cmd->seq_list[i];
191
192 return NULL;
193}
194
195struct iscsi_seq *iscsit_get_seq_holder_for_r2t(struct iscsi_cmd *cmd)
196{
197 u32 i;
198
199 if (!cmd->seq_list) {
200 pr_err("struct iscsi_cmd->seq_list is NULL!\n");
201 return NULL;
202 }
203
204 for (i = 0; i < cmd->seq_count; i++) {
205 if (cmd->seq_list[i].type != SEQTYPE_NORMAL)
206 continue;
207 if (cmd->seq_list[i].seq_send_order == cmd->seq_send_order) {
208 cmd->seq_send_order++;
209 return &cmd->seq_list[i];
210 }
211 }
212
213 return NULL;
214}
215
216struct iscsi_r2t *iscsit_get_holder_for_r2tsn(
217 struct iscsi_cmd *cmd,
218 u32 r2t_sn)
219{
220 struct iscsi_r2t *r2t;
221
222 spin_lock_bh(&cmd->r2t_lock);
223 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
224 if (r2t->r2t_sn == r2t_sn) {
225 spin_unlock_bh(&cmd->r2t_lock);
226 return r2t;
227 }
228 }
229 spin_unlock_bh(&cmd->r2t_lock);
230
231 return NULL;
232}
233
234static inline int iscsit_check_received_cmdsn(struct iscsi_session *sess, u32 cmdsn)
235{
Roland Dreier109e2382015-07-23 14:53:32 -0700236 u32 max_cmdsn;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000237 int ret;
238
239 /*
240 * This is the proper method of checking received CmdSN against
241 * ExpCmdSN and MaxCmdSN values, as well as accounting for out
242 * or order CmdSNs due to multiple connection sessions and/or
243 * CRC failures.
244 */
Roland Dreier109e2382015-07-23 14:53:32 -0700245 max_cmdsn = atomic_read(&sess->max_cmd_sn);
246 if (iscsi_sna_gt(cmdsn, max_cmdsn)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000247 pr_err("Received CmdSN: 0x%08x is greater than"
Roland Dreier109e2382015-07-23 14:53:32 -0700248 " MaxCmdSN: 0x%08x, ignoring.\n", cmdsn, max_cmdsn);
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800249 ret = CMDSN_MAXCMDSN_OVERRUN;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000250
251 } else if (cmdsn == sess->exp_cmd_sn) {
252 sess->exp_cmd_sn++;
253 pr_debug("Received CmdSN matches ExpCmdSN,"
254 " incremented ExpCmdSN to: 0x%08x\n",
255 sess->exp_cmd_sn);
256 ret = CMDSN_NORMAL_OPERATION;
257
258 } else if (iscsi_sna_gt(cmdsn, sess->exp_cmd_sn)) {
259 pr_debug("Received CmdSN: 0x%08x is greater"
260 " than ExpCmdSN: 0x%08x, not acknowledging.\n",
261 cmdsn, sess->exp_cmd_sn);
262 ret = CMDSN_HIGHER_THAN_EXP;
263
264 } else {
265 pr_err("Received CmdSN: 0x%08x is less than"
266 " ExpCmdSN: 0x%08x, ignoring.\n", cmdsn,
267 sess->exp_cmd_sn);
268 ret = CMDSN_LOWER_THAN_EXP;
269 }
270
271 return ret;
272}
273
274/*
275 * Commands may be received out of order if MC/S is in use.
276 * Ensure they are executed in CmdSN order.
277 */
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700278int iscsit_sequence_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
279 unsigned char *buf, __be32 cmdsn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000280{
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700281 int ret, cmdsn_ret;
282 bool reject = false;
283 u8 reason = ISCSI_REASON_BOOKMARK_NO_RESOURCES;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000284
285 mutex_lock(&conn->sess->cmdsn_mutex);
286
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400287 cmdsn_ret = iscsit_check_received_cmdsn(conn->sess, be32_to_cpu(cmdsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000288 switch (cmdsn_ret) {
289 case CMDSN_NORMAL_OPERATION:
290 ret = iscsit_execute_cmd(cmd, 0);
291 if ((ret >= 0) && !list_empty(&conn->sess->sess_ooo_cmdsn_list))
292 iscsit_execute_ooo_cmdsns(conn->sess);
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700293 else if (ret < 0) {
294 reject = true;
295 ret = CMDSN_ERROR_CANNOT_RECOVER;
296 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000297 break;
298 case CMDSN_HIGHER_THAN_EXP:
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400299 ret = iscsit_handle_ooo_cmdsn(conn->sess, cmd, be32_to_cpu(cmdsn));
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700300 if (ret < 0) {
301 reject = true;
302 ret = CMDSN_ERROR_CANNOT_RECOVER;
303 break;
304 }
305 ret = CMDSN_HIGHER_THAN_EXP;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000306 break;
307 case CMDSN_LOWER_THAN_EXP:
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800308 case CMDSN_MAXCMDSN_OVERRUN:
309 default:
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000310 cmd->i_state = ISTATE_REMOVE;
311 iscsit_add_cmd_to_immediate_queue(cmd, conn, cmd->i_state);
Nicholas Bellingerea7e32b2013-11-18 10:55:10 -0800312 /*
313 * Existing callers for iscsit_sequence_cmd() will silently
314 * ignore commands with CMDSN_LOWER_THAN_EXP, so force this
315 * return for CMDSN_MAXCMDSN_OVERRUN as well..
316 */
317 ret = CMDSN_LOWER_THAN_EXP;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000318 break;
319 }
320 mutex_unlock(&conn->sess->cmdsn_mutex);
321
Nicholas Bellinger561bf152013-07-03 03:58:58 -0700322 if (reject)
323 iscsit_reject_cmd(cmd, reason, buf);
324
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000325 return ret;
326}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800327EXPORT_SYMBOL(iscsit_sequence_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000328
329int iscsit_check_unsolicited_dataout(struct iscsi_cmd *cmd, unsigned char *buf)
330{
331 struct iscsi_conn *conn = cmd->conn;
332 struct se_cmd *se_cmd = &cmd->se_cmd;
333 struct iscsi_data *hdr = (struct iscsi_data *) buf;
334 u32 payload_length = ntoh24(hdr->dlength);
335
336 if (conn->sess->sess_ops->InitialR2T) {
337 pr_err("Received unexpected unsolicited data"
338 " while InitialR2T=Yes, protocol error.\n");
339 transport_send_check_condition_and_sense(se_cmd,
340 TCM_UNEXPECTED_UNSOLICITED_DATA, 0);
341 return -1;
342 }
343
344 if ((cmd->first_burst_len + payload_length) >
345 conn->sess->sess_ops->FirstBurstLength) {
346 pr_err("Total %u bytes exceeds FirstBurstLength: %u"
347 " for this Unsolicited DataOut Burst.\n",
348 (cmd->first_burst_len + payload_length),
349 conn->sess->sess_ops->FirstBurstLength);
350 transport_send_check_condition_and_sense(se_cmd,
351 TCM_INCORRECT_AMOUNT_OF_DATA, 0);
352 return -1;
353 }
354
355 if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL))
356 return 0;
357
Andy Groverebf1d952012-04-03 15:51:24 -0700358 if (((cmd->first_burst_len + payload_length) != cmd->se_cmd.data_length) &&
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000359 ((cmd->first_burst_len + payload_length) !=
360 conn->sess->sess_ops->FirstBurstLength)) {
361 pr_err("Unsolicited non-immediate data received %u"
362 " does not equal FirstBurstLength: %u, and does"
363 " not equal ExpXferLen %u.\n",
364 (cmd->first_burst_len + payload_length),
Andy Groverebf1d952012-04-03 15:51:24 -0700365 conn->sess->sess_ops->FirstBurstLength, cmd->se_cmd.data_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000366 transport_send_check_condition_and_sense(se_cmd,
367 TCM_INCORRECT_AMOUNT_OF_DATA, 0);
368 return -1;
369 }
370 return 0;
371}
372
373struct iscsi_cmd *iscsit_find_cmd_from_itt(
374 struct iscsi_conn *conn,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400375 itt_t init_task_tag)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000376{
377 struct iscsi_cmd *cmd;
378
379 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700380 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000381 if (cmd->init_task_tag == init_task_tag) {
382 spin_unlock_bh(&conn->cmd_lock);
383 return cmd;
384 }
385 }
386 spin_unlock_bh(&conn->cmd_lock);
387
388 pr_err("Unable to locate ITT: 0x%08x on CID: %hu",
389 init_task_tag, conn->cid);
390 return NULL;
391}
Sagi Grimberge4f4e802015-02-09 18:07:25 +0200392EXPORT_SYMBOL(iscsit_find_cmd_from_itt);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000393
394struct iscsi_cmd *iscsit_find_cmd_from_itt_or_dump(
395 struct iscsi_conn *conn,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400396 itt_t init_task_tag,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000397 u32 length)
398{
399 struct iscsi_cmd *cmd;
400
401 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700402 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellinger3687db82014-07-07 18:25:04 -0700403 if (cmd->cmd_flags & ICF_GOT_LAST_DATAOUT)
404 continue;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000405 if (cmd->init_task_tag == init_task_tag) {
406 spin_unlock_bh(&conn->cmd_lock);
407 return cmd;
408 }
409 }
410 spin_unlock_bh(&conn->cmd_lock);
411
412 pr_err("Unable to locate ITT: 0x%08x on CID: %hu,"
413 " dumping payload\n", init_task_tag, conn->cid);
414 if (length)
415 iscsit_dump_data_payload(conn, length, 1);
416
417 return NULL;
418}
419
420struct iscsi_cmd *iscsit_find_cmd_from_ttt(
421 struct iscsi_conn *conn,
422 u32 targ_xfer_tag)
423{
424 struct iscsi_cmd *cmd = NULL;
425
426 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700427 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000428 if (cmd->targ_xfer_tag == targ_xfer_tag) {
429 spin_unlock_bh(&conn->cmd_lock);
430 return cmd;
431 }
432 }
433 spin_unlock_bh(&conn->cmd_lock);
434
435 pr_err("Unable to locate TTT: 0x%08x on CID: %hu\n",
436 targ_xfer_tag, conn->cid);
437 return NULL;
438}
439
440int iscsit_find_cmd_for_recovery(
441 struct iscsi_session *sess,
442 struct iscsi_cmd **cmd_ptr,
443 struct iscsi_conn_recovery **cr_ptr,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400444 itt_t init_task_tag)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000445{
446 struct iscsi_cmd *cmd = NULL;
447 struct iscsi_conn_recovery *cr;
448 /*
449 * Scan through the inactive connection recovery list's command list.
450 * If init_task_tag matches the command is still alligent.
451 */
452 spin_lock(&sess->cr_i_lock);
453 list_for_each_entry(cr, &sess->cr_inactive_list, cr_list) {
454 spin_lock(&cr->conn_recovery_cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700455 list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000456 if (cmd->init_task_tag == init_task_tag) {
457 spin_unlock(&cr->conn_recovery_cmd_lock);
458 spin_unlock(&sess->cr_i_lock);
459
460 *cr_ptr = cr;
461 *cmd_ptr = cmd;
462 return -2;
463 }
464 }
465 spin_unlock(&cr->conn_recovery_cmd_lock);
466 }
467 spin_unlock(&sess->cr_i_lock);
468 /*
469 * Scan through the active connection recovery list's command list.
470 * If init_task_tag matches the command is ready to be reassigned.
471 */
472 spin_lock(&sess->cr_a_lock);
473 list_for_each_entry(cr, &sess->cr_active_list, cr_list) {
474 spin_lock(&cr->conn_recovery_cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700475 list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000476 if (cmd->init_task_tag == init_task_tag) {
477 spin_unlock(&cr->conn_recovery_cmd_lock);
478 spin_unlock(&sess->cr_a_lock);
479
480 *cr_ptr = cr;
481 *cmd_ptr = cmd;
482 return 0;
483 }
484 }
485 spin_unlock(&cr->conn_recovery_cmd_lock);
486 }
487 spin_unlock(&sess->cr_a_lock);
488
489 return -1;
490}
491
492void iscsit_add_cmd_to_immediate_queue(
493 struct iscsi_cmd *cmd,
494 struct iscsi_conn *conn,
495 u8 state)
496{
497 struct iscsi_queue_req *qr;
498
499 qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC);
500 if (!qr) {
501 pr_err("Unable to allocate memory for"
502 " struct iscsi_queue_req\n");
503 return;
504 }
505 INIT_LIST_HEAD(&qr->qr_list);
506 qr->cmd = cmd;
507 qr->state = state;
508
509 spin_lock_bh(&conn->immed_queue_lock);
510 list_add_tail(&qr->qr_list, &conn->immed_queue_list);
511 atomic_inc(&cmd->immed_queue_count);
512 atomic_set(&conn->check_immediate_queue, 1);
513 spin_unlock_bh(&conn->immed_queue_lock);
514
Roland Dreierd5627ac2012-10-31 09:16:46 -0700515 wake_up(&conn->queues_wq);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000516}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530517EXPORT_SYMBOL(iscsit_add_cmd_to_immediate_queue);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000518
519struct iscsi_queue_req *iscsit_get_cmd_from_immediate_queue(struct iscsi_conn *conn)
520{
521 struct iscsi_queue_req *qr;
522
523 spin_lock_bh(&conn->immed_queue_lock);
524 if (list_empty(&conn->immed_queue_list)) {
525 spin_unlock_bh(&conn->immed_queue_lock);
526 return NULL;
527 }
Roland Dreier1f981de2012-10-31 09:16:47 -0700528 qr = list_first_entry(&conn->immed_queue_list,
529 struct iscsi_queue_req, qr_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000530
531 list_del(&qr->qr_list);
532 if (qr->cmd)
533 atomic_dec(&qr->cmd->immed_queue_count);
534 spin_unlock_bh(&conn->immed_queue_lock);
535
536 return qr;
537}
538
539static void iscsit_remove_cmd_from_immediate_queue(
540 struct iscsi_cmd *cmd,
541 struct iscsi_conn *conn)
542{
543 struct iscsi_queue_req *qr, *qr_tmp;
544
545 spin_lock_bh(&conn->immed_queue_lock);
546 if (!atomic_read(&cmd->immed_queue_count)) {
547 spin_unlock_bh(&conn->immed_queue_lock);
548 return;
549 }
550
551 list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) {
552 if (qr->cmd != cmd)
553 continue;
554
555 atomic_dec(&qr->cmd->immed_queue_count);
556 list_del(&qr->qr_list);
557 kmem_cache_free(lio_qr_cache, qr);
558 }
559 spin_unlock_bh(&conn->immed_queue_lock);
560
561 if (atomic_read(&cmd->immed_queue_count)) {
562 pr_err("ITT: 0x%08x immed_queue_count: %d\n",
563 cmd->init_task_tag,
564 atomic_read(&cmd->immed_queue_count));
565 }
566}
567
568void iscsit_add_cmd_to_response_queue(
569 struct iscsi_cmd *cmd,
570 struct iscsi_conn *conn,
571 u8 state)
572{
573 struct iscsi_queue_req *qr;
574
575 qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC);
576 if (!qr) {
577 pr_err("Unable to allocate memory for"
578 " struct iscsi_queue_req\n");
579 return;
580 }
581 INIT_LIST_HEAD(&qr->qr_list);
582 qr->cmd = cmd;
583 qr->state = state;
584
585 spin_lock_bh(&conn->response_queue_lock);
586 list_add_tail(&qr->qr_list, &conn->response_queue_list);
587 atomic_inc(&cmd->response_queue_count);
588 spin_unlock_bh(&conn->response_queue_lock);
589
Roland Dreierd5627ac2012-10-31 09:16:46 -0700590 wake_up(&conn->queues_wq);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000591}
592
593struct iscsi_queue_req *iscsit_get_cmd_from_response_queue(struct iscsi_conn *conn)
594{
595 struct iscsi_queue_req *qr;
596
597 spin_lock_bh(&conn->response_queue_lock);
598 if (list_empty(&conn->response_queue_list)) {
599 spin_unlock_bh(&conn->response_queue_lock);
600 return NULL;
601 }
602
Roland Dreier1f981de2012-10-31 09:16:47 -0700603 qr = list_first_entry(&conn->response_queue_list,
604 struct iscsi_queue_req, qr_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000605
606 list_del(&qr->qr_list);
607 if (qr->cmd)
608 atomic_dec(&qr->cmd->response_queue_count);
609 spin_unlock_bh(&conn->response_queue_lock);
610
611 return qr;
612}
613
614static void iscsit_remove_cmd_from_response_queue(
615 struct iscsi_cmd *cmd,
616 struct iscsi_conn *conn)
617{
618 struct iscsi_queue_req *qr, *qr_tmp;
619
620 spin_lock_bh(&conn->response_queue_lock);
621 if (!atomic_read(&cmd->response_queue_count)) {
622 spin_unlock_bh(&conn->response_queue_lock);
623 return;
624 }
625
626 list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list,
627 qr_list) {
628 if (qr->cmd != cmd)
629 continue;
630
631 atomic_dec(&qr->cmd->response_queue_count);
632 list_del(&qr->qr_list);
633 kmem_cache_free(lio_qr_cache, qr);
634 }
635 spin_unlock_bh(&conn->response_queue_lock);
636
637 if (atomic_read(&cmd->response_queue_count)) {
638 pr_err("ITT: 0x%08x response_queue_count: %d\n",
639 cmd->init_task_tag,
640 atomic_read(&cmd->response_queue_count));
641 }
642}
643
Roland Dreierd5627ac2012-10-31 09:16:46 -0700644bool iscsit_conn_all_queues_empty(struct iscsi_conn *conn)
645{
646 bool empty;
647
648 spin_lock_bh(&conn->immed_queue_lock);
649 empty = list_empty(&conn->immed_queue_list);
650 spin_unlock_bh(&conn->immed_queue_lock);
651
652 if (!empty)
653 return empty;
654
655 spin_lock_bh(&conn->response_queue_lock);
656 empty = list_empty(&conn->response_queue_list);
657 spin_unlock_bh(&conn->response_queue_lock);
658
659 return empty;
660}
661
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000662void iscsit_free_queue_reqs_for_conn(struct iscsi_conn *conn)
663{
664 struct iscsi_queue_req *qr, *qr_tmp;
665
666 spin_lock_bh(&conn->immed_queue_lock);
667 list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) {
668 list_del(&qr->qr_list);
669 if (qr->cmd)
670 atomic_dec(&qr->cmd->immed_queue_count);
671
672 kmem_cache_free(lio_qr_cache, qr);
673 }
674 spin_unlock_bh(&conn->immed_queue_lock);
675
676 spin_lock_bh(&conn->response_queue_lock);
677 list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list,
678 qr_list) {
679 list_del(&qr->qr_list);
680 if (qr->cmd)
681 atomic_dec(&qr->cmd->response_queue_count);
682
683 kmem_cache_free(lio_qr_cache, qr);
684 }
685 spin_unlock_bh(&conn->response_queue_lock);
686}
687
688void iscsit_release_cmd(struct iscsi_cmd *cmd)
689{
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700690 struct iscsi_session *sess;
691 struct se_cmd *se_cmd = &cmd->se_cmd;
692
693 if (cmd->conn)
694 sess = cmd->conn->sess;
695 else
696 sess = cmd->sess;
697
698 BUG_ON(!sess || !sess->se_sess);
699
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000700 kfree(cmd->buf_ptr);
701 kfree(cmd->pdu_list);
702 kfree(cmd->seq_list);
703 kfree(cmd->tmr_req);
704 kfree(cmd->iov_data);
Nicholas Bellinger9864ca92013-06-19 22:43:11 -0700705 kfree(cmd->text_in_ptr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000706
Nicholas Bellinger988e3a82013-08-17 15:49:08 -0700707 percpu_ida_free(&sess->se_sess->sess_tag_pool, se_cmd->map_tag);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000708}
Nicholas Bellingerd703ce22013-08-17 14:27:56 -0700709EXPORT_SYMBOL(iscsit_release_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000710
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700711void __iscsit_free_cmd(struct iscsi_cmd *cmd, bool scsi_cmd,
712 bool check_queues)
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700713{
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700714 struct iscsi_conn *conn = cmd->conn;
715
716 if (scsi_cmd) {
717 if (cmd->data_direction == DMA_TO_DEVICE) {
718 iscsit_stop_dataout_timer(cmd);
719 iscsit_free_r2ts_from_list(cmd);
720 }
721 if (cmd->data_direction == DMA_FROM_DEVICE)
722 iscsit_free_all_datain_reqs(cmd);
723 }
724
725 if (conn && check_queues) {
726 iscsit_remove_cmd_from_immediate_queue(cmd, conn);
727 iscsit_remove_cmd_from_response_queue(cmd, conn);
728 }
Varun Prakash7ec811a2016-04-20 00:00:09 +0530729
730 if (conn && conn->conn_transport->iscsit_release_cmd)
731 conn->conn_transport->iscsit_release_cmd(conn, cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700732}
733
734void iscsit_free_cmd(struct iscsi_cmd *cmd, bool shutdown)
735{
736 struct se_cmd *se_cmd = NULL;
737 int rc;
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700738 /*
Masanari Iida20879692012-08-27 22:46:00 +0900739 * Determine if a struct se_cmd is associated with
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700740 * this struct iscsi_cmd.
741 */
742 switch (cmd->iscsi_opcode) {
743 case ISCSI_OP_SCSI_CMD:
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700744 se_cmd = &cmd->se_cmd;
745 __iscsit_free_cmd(cmd, true, shutdown);
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 Bellingere255a282013-10-03 13:37:21 -0700750 rc = transport_generic_free_cmd(&cmd->se_cmd, shutdown);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700751 if (!rc && shutdown && se_cmd && se_cmd->se_sess) {
752 __iscsit_free_cmd(cmd, true, shutdown);
Bart Van Asscheafc16602015-04-27 13:52:36 +0200753 target_put_sess_cmd(se_cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700754 }
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700755 break;
Nicholas Bellingerc1ce4bd2012-01-16 16:04:15 -0800756 case ISCSI_OP_REJECT:
757 /*
758 * Handle special case for REJECT when iscsi_add_reject*() has
759 * overwritten the original iscsi_opcode assignment, and the
760 * associated cmd->se_cmd needs to be released.
761 */
762 if (cmd->se_cmd.se_tfo != NULL) {
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700763 se_cmd = &cmd->se_cmd;
764 __iscsit_free_cmd(cmd, true, shutdown);
765
Nicholas Bellingere255a282013-10-03 13:37:21 -0700766 rc = transport_generic_free_cmd(&cmd->se_cmd, shutdown);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700767 if (!rc && shutdown && se_cmd->se_sess) {
768 __iscsit_free_cmd(cmd, true, shutdown);
Bart Van Asscheafc16602015-04-27 13:52:36 +0200769 target_put_sess_cmd(se_cmd);
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700770 }
Nicholas Bellingerc1ce4bd2012-01-16 16:04:15 -0800771 break;
772 }
773 /* Fall-through */
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700774 default:
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700775 __iscsit_free_cmd(cmd, false, shutdown);
Nicholas Bellingerd703ce22013-08-17 14:27:56 -0700776 iscsit_release_cmd(cmd);
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700777 break;
778 }
779}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530780EXPORT_SYMBOL(iscsit_free_cmd);
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700781
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000782int iscsit_check_session_usage_count(struct iscsi_session *sess)
783{
784 spin_lock_bh(&sess->session_usage_lock);
785 if (sess->session_usage_count != 0) {
786 sess->session_waiting_on_uc = 1;
787 spin_unlock_bh(&sess->session_usage_lock);
788 if (in_interrupt())
789 return 2;
790
791 wait_for_completion(&sess->session_waiting_on_uc_comp);
792 return 1;
793 }
794 spin_unlock_bh(&sess->session_usage_lock);
795
796 return 0;
797}
798
799void iscsit_dec_session_usage_count(struct iscsi_session *sess)
800{
801 spin_lock_bh(&sess->session_usage_lock);
802 sess->session_usage_count--;
803
804 if (!sess->session_usage_count && sess->session_waiting_on_uc)
805 complete(&sess->session_waiting_on_uc_comp);
806
807 spin_unlock_bh(&sess->session_usage_lock);
808}
809
810void iscsit_inc_session_usage_count(struct iscsi_session *sess)
811{
812 spin_lock_bh(&sess->session_usage_lock);
813 sess->session_usage_count++;
814 spin_unlock_bh(&sess->session_usage_lock);
815}
816
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000817struct iscsi_conn *iscsit_get_conn_from_cid(struct iscsi_session *sess, u16 cid)
818{
819 struct iscsi_conn *conn;
820
821 spin_lock_bh(&sess->conn_lock);
822 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
823 if ((conn->cid == cid) &&
824 (conn->conn_state == TARG_CONN_STATE_LOGGED_IN)) {
825 iscsit_inc_conn_usage_count(conn);
826 spin_unlock_bh(&sess->conn_lock);
827 return conn;
828 }
829 }
830 spin_unlock_bh(&sess->conn_lock);
831
832 return NULL;
833}
834
835struct iscsi_conn *iscsit_get_conn_from_cid_rcfr(struct iscsi_session *sess, u16 cid)
836{
837 struct iscsi_conn *conn;
838
839 spin_lock_bh(&sess->conn_lock);
840 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
841 if (conn->cid == cid) {
842 iscsit_inc_conn_usage_count(conn);
843 spin_lock(&conn->state_lock);
844 atomic_set(&conn->connection_wait_rcfr, 1);
845 spin_unlock(&conn->state_lock);
846 spin_unlock_bh(&sess->conn_lock);
847 return conn;
848 }
849 }
850 spin_unlock_bh(&sess->conn_lock);
851
852 return NULL;
853}
854
855void iscsit_check_conn_usage_count(struct iscsi_conn *conn)
856{
857 spin_lock_bh(&conn->conn_usage_lock);
858 if (conn->conn_usage_count != 0) {
859 conn->conn_waiting_on_uc = 1;
860 spin_unlock_bh(&conn->conn_usage_lock);
861
862 wait_for_completion(&conn->conn_waiting_on_uc_comp);
863 return;
864 }
865 spin_unlock_bh(&conn->conn_usage_lock);
866}
867
868void iscsit_dec_conn_usage_count(struct iscsi_conn *conn)
869{
870 spin_lock_bh(&conn->conn_usage_lock);
871 conn->conn_usage_count--;
872
873 if (!conn->conn_usage_count && conn->conn_waiting_on_uc)
874 complete(&conn->conn_waiting_on_uc_comp);
875
876 spin_unlock_bh(&conn->conn_usage_lock);
877}
878
879void iscsit_inc_conn_usage_count(struct iscsi_conn *conn)
880{
881 spin_lock_bh(&conn->conn_usage_lock);
882 conn->conn_usage_count++;
883 spin_unlock_bh(&conn->conn_usage_lock);
884}
885
886static int iscsit_add_nopin(struct iscsi_conn *conn, int want_response)
887{
888 u8 state;
889 struct iscsi_cmd *cmd;
890
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000891 cmd = iscsit_allocate_cmd(conn, TASK_RUNNING);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000892 if (!cmd)
893 return -1;
894
895 cmd->iscsi_opcode = ISCSI_OP_NOOP_IN;
896 state = (want_response) ? ISTATE_SEND_NOPIN_WANT_RESPONSE :
897 ISTATE_SEND_NOPIN_NO_RESPONSE;
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400898 cmd->init_task_tag = RESERVED_ITT;
Sagi Grimbergc1e34b62015-01-26 12:49:05 +0200899 cmd->targ_xfer_tag = (want_response) ?
900 session_get_next_ttt(conn->sess) : 0xFFFFFFFF;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000901 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700902 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000903 spin_unlock_bh(&conn->cmd_lock);
904
905 if (want_response)
906 iscsit_start_nopin_response_timer(conn);
907 iscsit_add_cmd_to_immediate_queue(cmd, conn, state);
908
909 return 0;
910}
911
912static void iscsit_handle_nopin_response_timeout(unsigned long data)
913{
914 struct iscsi_conn *conn = (struct iscsi_conn *) data;
915
916 iscsit_inc_conn_usage_count(conn);
917
918 spin_lock_bh(&conn->nopin_timer_lock);
919 if (conn->nopin_response_timer_flags & ISCSI_TF_STOP) {
920 spin_unlock_bh(&conn->nopin_timer_lock);
921 iscsit_dec_conn_usage_count(conn);
922 return;
923 }
924
925 pr_debug("Did not receive response to NOPIN on CID: %hu on"
926 " SID: %u, failing connection.\n", conn->cid,
927 conn->sess->sid);
928 conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING;
929 spin_unlock_bh(&conn->nopin_timer_lock);
930
931 {
932 struct iscsi_portal_group *tpg = conn->sess->tpg;
933 struct iscsi_tiqn *tiqn = tpg->tpg_tiqn;
934
935 if (tiqn) {
936 spin_lock_bh(&tiqn->sess_err_stats.lock);
937 strcpy(tiqn->sess_err_stats.last_sess_fail_rem_name,
Jörn Engel8359cf42011-11-24 02:05:51 +0100938 conn->sess->sess_ops->InitiatorName);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000939 tiqn->sess_err_stats.last_sess_failure_type =
940 ISCSI_SESS_ERR_CXN_TIMEOUT;
941 tiqn->sess_err_stats.cxn_timeout_errors++;
Nicholas Bellinger04f3b312013-11-13 18:54:45 -0800942 atomic_long_inc(&conn->sess->conn_timeout_errors);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000943 spin_unlock_bh(&tiqn->sess_err_stats.lock);
944 }
945 }
946
947 iscsit_cause_connection_reinstatement(conn, 0);
948 iscsit_dec_conn_usage_count(conn);
949}
950
951void iscsit_mod_nopin_response_timer(struct iscsi_conn *conn)
952{
953 struct iscsi_session *sess = conn->sess;
954 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
955
956 spin_lock_bh(&conn->nopin_timer_lock);
957 if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) {
958 spin_unlock_bh(&conn->nopin_timer_lock);
959 return;
960 }
961
962 mod_timer(&conn->nopin_response_timer,
963 (get_jiffies_64() + na->nopin_response_timeout * HZ));
964 spin_unlock_bh(&conn->nopin_timer_lock);
965}
966
967/*
968 * Called with conn->nopin_timer_lock held.
969 */
970void iscsit_start_nopin_response_timer(struct iscsi_conn *conn)
971{
972 struct iscsi_session *sess = conn->sess;
973 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
974
975 spin_lock_bh(&conn->nopin_timer_lock);
976 if (conn->nopin_response_timer_flags & ISCSI_TF_RUNNING) {
977 spin_unlock_bh(&conn->nopin_timer_lock);
978 return;
979 }
980
981 init_timer(&conn->nopin_response_timer);
982 conn->nopin_response_timer.expires =
983 (get_jiffies_64() + na->nopin_response_timeout * HZ);
984 conn->nopin_response_timer.data = (unsigned long)conn;
985 conn->nopin_response_timer.function = iscsit_handle_nopin_response_timeout;
986 conn->nopin_response_timer_flags &= ~ISCSI_TF_STOP;
987 conn->nopin_response_timer_flags |= ISCSI_TF_RUNNING;
988 add_timer(&conn->nopin_response_timer);
989
990 pr_debug("Started NOPIN Response Timer on CID: %d to %u"
991 " seconds\n", conn->cid, na->nopin_response_timeout);
992 spin_unlock_bh(&conn->nopin_timer_lock);
993}
994
995void iscsit_stop_nopin_response_timer(struct iscsi_conn *conn)
996{
997 spin_lock_bh(&conn->nopin_timer_lock);
998 if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) {
999 spin_unlock_bh(&conn->nopin_timer_lock);
1000 return;
1001 }
1002 conn->nopin_response_timer_flags |= ISCSI_TF_STOP;
1003 spin_unlock_bh(&conn->nopin_timer_lock);
1004
1005 del_timer_sync(&conn->nopin_response_timer);
1006
1007 spin_lock_bh(&conn->nopin_timer_lock);
1008 conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING;
1009 spin_unlock_bh(&conn->nopin_timer_lock);
1010}
1011
1012static void iscsit_handle_nopin_timeout(unsigned long data)
1013{
1014 struct iscsi_conn *conn = (struct iscsi_conn *) data;
1015
1016 iscsit_inc_conn_usage_count(conn);
1017
1018 spin_lock_bh(&conn->nopin_timer_lock);
1019 if (conn->nopin_timer_flags & ISCSI_TF_STOP) {
1020 spin_unlock_bh(&conn->nopin_timer_lock);
1021 iscsit_dec_conn_usage_count(conn);
1022 return;
1023 }
1024 conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING;
1025 spin_unlock_bh(&conn->nopin_timer_lock);
1026
1027 iscsit_add_nopin(conn, 1);
1028 iscsit_dec_conn_usage_count(conn);
1029}
1030
1031/*
1032 * Called with conn->nopin_timer_lock held.
1033 */
1034void __iscsit_start_nopin_timer(struct iscsi_conn *conn)
1035{
1036 struct iscsi_session *sess = conn->sess;
1037 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
1038 /*
1039 * NOPIN timeout is disabled.
1040 */
1041 if (!na->nopin_timeout)
1042 return;
1043
1044 if (conn->nopin_timer_flags & ISCSI_TF_RUNNING)
1045 return;
1046
1047 init_timer(&conn->nopin_timer);
1048 conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ);
1049 conn->nopin_timer.data = (unsigned long)conn;
1050 conn->nopin_timer.function = iscsit_handle_nopin_timeout;
1051 conn->nopin_timer_flags &= ~ISCSI_TF_STOP;
1052 conn->nopin_timer_flags |= ISCSI_TF_RUNNING;
1053 add_timer(&conn->nopin_timer);
1054
1055 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1056 " interval\n", conn->cid, na->nopin_timeout);
1057}
1058
1059void iscsit_start_nopin_timer(struct iscsi_conn *conn)
1060{
1061 struct iscsi_session *sess = conn->sess;
1062 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
1063 /*
1064 * NOPIN timeout is disabled..
1065 */
1066 if (!na->nopin_timeout)
1067 return;
1068
1069 spin_lock_bh(&conn->nopin_timer_lock);
1070 if (conn->nopin_timer_flags & ISCSI_TF_RUNNING) {
1071 spin_unlock_bh(&conn->nopin_timer_lock);
1072 return;
1073 }
1074
1075 init_timer(&conn->nopin_timer);
1076 conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ);
1077 conn->nopin_timer.data = (unsigned long)conn;
1078 conn->nopin_timer.function = iscsit_handle_nopin_timeout;
1079 conn->nopin_timer_flags &= ~ISCSI_TF_STOP;
1080 conn->nopin_timer_flags |= ISCSI_TF_RUNNING;
1081 add_timer(&conn->nopin_timer);
1082
1083 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1084 " interval\n", conn->cid, na->nopin_timeout);
1085 spin_unlock_bh(&conn->nopin_timer_lock);
1086}
1087
1088void iscsit_stop_nopin_timer(struct iscsi_conn *conn)
1089{
1090 spin_lock_bh(&conn->nopin_timer_lock);
1091 if (!(conn->nopin_timer_flags & ISCSI_TF_RUNNING)) {
1092 spin_unlock_bh(&conn->nopin_timer_lock);
1093 return;
1094 }
1095 conn->nopin_timer_flags |= ISCSI_TF_STOP;
1096 spin_unlock_bh(&conn->nopin_timer_lock);
1097
1098 del_timer_sync(&conn->nopin_timer);
1099
1100 spin_lock_bh(&conn->nopin_timer_lock);
1101 conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING;
1102 spin_unlock_bh(&conn->nopin_timer_lock);
1103}
1104
1105int iscsit_send_tx_data(
1106 struct iscsi_cmd *cmd,
1107 struct iscsi_conn *conn,
1108 int use_misc)
1109{
1110 int tx_sent, tx_size;
1111 u32 iov_count;
1112 struct kvec *iov;
1113
1114send_data:
1115 tx_size = cmd->tx_size;
1116
1117 if (!use_misc) {
1118 iov = &cmd->iov_data[0];
1119 iov_count = cmd->iov_data_count;
1120 } else {
1121 iov = &cmd->iov_misc[0];
1122 iov_count = cmd->iov_misc_count;
1123 }
1124
1125 tx_sent = tx_data(conn, &iov[0], iov_count, tx_size);
1126 if (tx_size != tx_sent) {
1127 if (tx_sent == -EAGAIN) {
1128 pr_err("tx_data() returned -EAGAIN\n");
1129 goto send_data;
1130 } else
1131 return -1;
1132 }
1133 cmd->tx_size = 0;
1134
1135 return 0;
1136}
1137
1138int iscsit_fe_sendpage_sg(
1139 struct iscsi_cmd *cmd,
1140 struct iscsi_conn *conn)
1141{
1142 struct scatterlist *sg = cmd->first_data_sg;
1143 struct kvec iov;
1144 u32 tx_hdr_size, data_len;
1145 u32 offset = cmd->first_data_sg_off;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001146 int tx_sent, iov_off;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001147
1148send_hdr:
1149 tx_hdr_size = ISCSI_HDR_LEN;
1150 if (conn->conn_ops->HeaderDigest)
1151 tx_hdr_size += ISCSI_CRC_LEN;
1152
1153 iov.iov_base = cmd->pdu;
1154 iov.iov_len = tx_hdr_size;
1155
1156 tx_sent = tx_data(conn, &iov, 1, tx_hdr_size);
1157 if (tx_hdr_size != tx_sent) {
1158 if (tx_sent == -EAGAIN) {
1159 pr_err("tx_data() returned -EAGAIN\n");
1160 goto send_hdr;
1161 }
1162 return -1;
1163 }
1164
1165 data_len = cmd->tx_size - tx_hdr_size - cmd->padding;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001166 /*
1167 * Set iov_off used by padding and data digest tx_data() calls below
1168 * in order to determine proper offset into cmd->iov_data[]
1169 */
1170 if (conn->conn_ops->DataDigest) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001171 data_len -= ISCSI_CRC_LEN;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001172 if (cmd->padding)
1173 iov_off = (cmd->iov_data_count - 2);
1174 else
1175 iov_off = (cmd->iov_data_count - 1);
1176 } else {
1177 iov_off = (cmd->iov_data_count - 1);
1178 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001179 /*
1180 * Perform sendpage() for each page in the scatterlist
1181 */
1182 while (data_len) {
1183 u32 space = (sg->length - offset);
1184 u32 sub_len = min_t(u32, data_len, space);
1185send_pg:
1186 tx_sent = conn->sock->ops->sendpage(conn->sock,
1187 sg_page(sg), sg->offset + offset, sub_len, 0);
1188 if (tx_sent != sub_len) {
1189 if (tx_sent == -EAGAIN) {
1190 pr_err("tcp_sendpage() returned"
1191 " -EAGAIN\n");
1192 goto send_pg;
1193 }
1194
1195 pr_err("tcp_sendpage() failure: %d\n",
1196 tx_sent);
1197 return -1;
1198 }
1199
1200 data_len -= sub_len;
1201 offset = 0;
1202 sg = sg_next(sg);
1203 }
1204
1205send_padding:
1206 if (cmd->padding) {
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001207 struct kvec *iov_p = &cmd->iov_data[iov_off++];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001208
1209 tx_sent = tx_data(conn, iov_p, 1, cmd->padding);
1210 if (cmd->padding != tx_sent) {
1211 if (tx_sent == -EAGAIN) {
1212 pr_err("tx_data() returned -EAGAIN\n");
1213 goto send_padding;
1214 }
1215 return -1;
1216 }
1217 }
1218
1219send_datacrc:
1220 if (conn->conn_ops->DataDigest) {
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001221 struct kvec *iov_d = &cmd->iov_data[iov_off];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001222
1223 tx_sent = tx_data(conn, iov_d, 1, ISCSI_CRC_LEN);
1224 if (ISCSI_CRC_LEN != tx_sent) {
1225 if (tx_sent == -EAGAIN) {
1226 pr_err("tx_data() returned -EAGAIN\n");
1227 goto send_datacrc;
1228 }
1229 return -1;
1230 }
1231 }
1232
1233 return 0;
1234}
1235
1236/*
1237 * This function is used for mainly sending a ISCSI_TARG_LOGIN_RSP PDU
1238 * back to the Initiator when an expection condition occurs with the
1239 * errors set in status_class and status_detail.
1240 *
1241 * Parameters: iSCSI Connection, Status Class, Status Detail.
1242 * Returns: 0 on success, -1 on error.
1243 */
1244int iscsit_tx_login_rsp(struct iscsi_conn *conn, u8 status_class, u8 status_detail)
1245{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001246 struct iscsi_login_rsp *hdr;
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001247 struct iscsi_login *login = conn->conn_login;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001248
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001249 login->login_failed = 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001250 iscsit_collect_login_stats(conn, status_class, status_detail);
1251
Nicholas Bellinger68349752014-06-17 21:54:38 +00001252 memset(&login->rsp[0], 0, ISCSI_HDR_LEN);
1253
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001254 hdr = (struct iscsi_login_rsp *)&login->rsp[0];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001255 hdr->opcode = ISCSI_OP_LOGIN_RSP;
1256 hdr->status_class = status_class;
1257 hdr->status_detail = status_detail;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001258 hdr->itt = conn->login_itt;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001259
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001260 return conn->conn_transport->iscsit_put_login_tx(conn, login, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001261}
1262
1263void iscsit_print_session_params(struct iscsi_session *sess)
1264{
1265 struct iscsi_conn *conn;
1266
1267 pr_debug("-----------------------------[Session Params for"
1268 " SID: %u]-----------------------------\n", sess->sid);
1269 spin_lock_bh(&sess->conn_lock);
1270 list_for_each_entry(conn, &sess->sess_conn_list, conn_list)
1271 iscsi_dump_conn_ops(conn->conn_ops);
1272 spin_unlock_bh(&sess->conn_lock);
1273
1274 iscsi_dump_sess_ops(sess->sess_ops);
1275}
1276
1277static int iscsit_do_rx_data(
1278 struct iscsi_conn *conn,
1279 struct iscsi_data_count *count)
1280{
Al Viroe5a4b0b2014-11-24 18:17:55 -05001281 int data = count->data_length, rx_loop = 0, total_rx = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001282 struct msghdr msg;
1283
1284 if (!conn || !conn->sock || !conn->conn_ops)
1285 return -1;
1286
1287 memset(&msg, 0, sizeof(struct msghdr));
Al Viroe5a4b0b2014-11-24 18:17:55 -05001288 iov_iter_kvec(&msg.msg_iter, READ | ITER_KVEC,
1289 count->iov, count->iov_count, data);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001290
1291 while (total_rx < data) {
Al Viroe5a4b0b2014-11-24 18:17:55 -05001292 rx_loop = sock_recvmsg(conn->sock, &msg,
1293 (data - total_rx), MSG_WAITALL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001294 if (rx_loop <= 0) {
1295 pr_debug("rx_loop: %d total_rx: %d\n",
1296 rx_loop, total_rx);
1297 return rx_loop;
1298 }
1299 total_rx += rx_loop;
1300 pr_debug("rx_loop: %d, total_rx: %d, data: %d\n",
1301 rx_loop, total_rx, data);
1302 }
1303
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001304 return total_rx;
1305}
1306
1307static int iscsit_do_tx_data(
1308 struct iscsi_conn *conn,
1309 struct iscsi_data_count *count)
1310{
Nicholas Bellinger6bf6ca72014-11-20 20:50:07 -08001311 int ret, iov_len;
Nicholas Bellinger2ff017f2011-09-16 01:44:54 -07001312 struct kvec *iov_p;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001313 struct msghdr msg;
1314
1315 if (!conn || !conn->sock || !conn->conn_ops)
1316 return -1;
1317
Nicholas Bellinger6bf6ca72014-11-20 20:50:07 -08001318 if (count->data_length <= 0) {
1319 pr_err("Data length is: %d\n", count->data_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001320 return -1;
1321 }
1322
1323 memset(&msg, 0, sizeof(struct msghdr));
1324
Nicholas Bellinger2ff017f2011-09-16 01:44:54 -07001325 iov_p = count->iov;
1326 iov_len = count->iov_count;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001327
Nicholas Bellinger6bf6ca72014-11-20 20:50:07 -08001328 ret = kernel_sendmsg(conn->sock, &msg, iov_p, iov_len,
1329 count->data_length);
1330 if (ret != count->data_length) {
1331 pr_err("Unexpected ret: %d send data %d\n",
1332 ret, count->data_length);
1333 return -EPIPE;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001334 }
Nicholas Bellinger6bf6ca72014-11-20 20:50:07 -08001335 pr_debug("ret: %d, sent data: %d\n", ret, count->data_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001336
Nicholas Bellinger6bf6ca72014-11-20 20:50:07 -08001337 return ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001338}
1339
1340int rx_data(
1341 struct iscsi_conn *conn,
1342 struct kvec *iov,
1343 int iov_count,
1344 int data)
1345{
1346 struct iscsi_data_count c;
1347
1348 if (!conn || !conn->sock || !conn->conn_ops)
1349 return -1;
1350
1351 memset(&c, 0, sizeof(struct iscsi_data_count));
1352 c.iov = iov;
1353 c.iov_count = iov_count;
1354 c.data_length = data;
1355 c.type = ISCSI_RX_DATA;
1356
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001357 return iscsit_do_rx_data(conn, &c);
1358}
1359
1360int tx_data(
1361 struct iscsi_conn *conn,
1362 struct kvec *iov,
1363 int iov_count,
1364 int data)
1365{
1366 struct iscsi_data_count c;
1367
1368 if (!conn || !conn->sock || !conn->conn_ops)
1369 return -1;
1370
1371 memset(&c, 0, sizeof(struct iscsi_data_count));
1372 c.iov = iov;
1373 c.iov_count = iov_count;
1374 c.data_length = data;
1375 c.type = ISCSI_TX_DATA;
1376
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001377 return iscsit_do_tx_data(conn, &c);
1378}
1379
Andy Groverdc58f762015-08-24 10:26:05 -07001380static bool sockaddr_equal(struct sockaddr_storage *x, struct sockaddr_storage *y)
1381{
1382 switch (x->ss_family) {
1383 case AF_INET: {
1384 struct sockaddr_in *sinx = (struct sockaddr_in *)x;
1385 struct sockaddr_in *siny = (struct sockaddr_in *)y;
1386 if (sinx->sin_addr.s_addr != siny->sin_addr.s_addr)
1387 return false;
1388 if (sinx->sin_port != siny->sin_port)
1389 return false;
1390 break;
1391 }
1392 case AF_INET6: {
1393 struct sockaddr_in6 *sinx = (struct sockaddr_in6 *)x;
1394 struct sockaddr_in6 *siny = (struct sockaddr_in6 *)y;
1395 if (!ipv6_addr_equal(&sinx->sin6_addr, &siny->sin6_addr))
1396 return false;
1397 if (sinx->sin6_port != siny->sin6_port)
1398 return false;
1399 break;
1400 }
1401 default:
1402 return false;
1403 }
1404 return true;
1405}
1406
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001407void iscsit_collect_login_stats(
1408 struct iscsi_conn *conn,
1409 u8 status_class,
1410 u8 status_detail)
1411{
1412 struct iscsi_param *intrname = NULL;
1413 struct iscsi_tiqn *tiqn;
1414 struct iscsi_login_stats *ls;
1415
1416 tiqn = iscsit_snmp_get_tiqn(conn);
1417 if (!tiqn)
1418 return;
1419
1420 ls = &tiqn->login_stats;
1421
1422 spin_lock(&ls->lock);
Andy Groverdc58f762015-08-24 10:26:05 -07001423 if (sockaddr_equal(&conn->login_sockaddr, &ls->last_intr_fail_sockaddr) &&
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001424 ((get_jiffies_64() - ls->last_fail_time) < 10)) {
1425 /* We already have the failure info for this login */
1426 spin_unlock(&ls->lock);
1427 return;
1428 }
1429
1430 if (status_class == ISCSI_STATUS_CLS_SUCCESS)
1431 ls->accepts++;
1432 else if (status_class == ISCSI_STATUS_CLS_REDIRECT) {
1433 ls->redirects++;
1434 ls->last_fail_type = ISCSI_LOGIN_FAIL_REDIRECT;
1435 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1436 (status_detail == ISCSI_LOGIN_STATUS_AUTH_FAILED)) {
1437 ls->authenticate_fails++;
1438 ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHENTICATE;
1439 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1440 (status_detail == ISCSI_LOGIN_STATUS_TGT_FORBIDDEN)) {
1441 ls->authorize_fails++;
1442 ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHORIZE;
1443 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1444 (status_detail == ISCSI_LOGIN_STATUS_INIT_ERR)) {
1445 ls->negotiate_fails++;
1446 ls->last_fail_type = ISCSI_LOGIN_FAIL_NEGOTIATE;
1447 } else {
1448 ls->other_fails++;
1449 ls->last_fail_type = ISCSI_LOGIN_FAIL_OTHER;
1450 }
1451
1452 /* Save initiator name, ip address and time, if it is a failed login */
1453 if (status_class != ISCSI_STATUS_CLS_SUCCESS) {
1454 if (conn->param_list)
1455 intrname = iscsi_find_param_from_key(INITIATORNAME,
1456 conn->param_list);
Joern Engelfdc84d12014-09-02 17:49:55 -04001457 strlcpy(ls->last_intr_fail_name,
1458 (intrname ? intrname->value : "Unknown"),
1459 sizeof(ls->last_intr_fail_name));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001460
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001461 ls->last_intr_fail_ip_family = conn->login_family;
1462
Andy Groverdc58f762015-08-24 10:26:05 -07001463 ls->last_intr_fail_sockaddr = conn->login_sockaddr;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001464 ls->last_fail_time = get_jiffies_64();
1465 }
1466
1467 spin_unlock(&ls->lock);
1468}
1469
1470struct iscsi_tiqn *iscsit_snmp_get_tiqn(struct iscsi_conn *conn)
1471{
1472 struct iscsi_portal_group *tpg;
1473
1474 if (!conn || !conn->sess)
1475 return NULL;
1476
1477 tpg = conn->sess->tpg;
1478 if (!tpg)
1479 return NULL;
1480
1481 if (!tpg->tpg_tiqn)
1482 return NULL;
1483
1484 return tpg->tpg_tiqn;
1485}