blob: 0b73f90c9c54583a712e3b06e1c1f3b54169dd1c [file] [log] [blame]
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001/*******************************************************************************
2 * This file contains the iSCSI Target specific utility functions.
3 *
4 * \u00a9 Copyright 2007-2011 RisingTide Systems LLC.
5 *
6 * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
7 *
8 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 ******************************************************************************/
20
21#include <linux/list.h>
22#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 Bellingere48354c2011-07-23 06:43:04 +000026#include <target/target_core_configfs.h>
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -080027#include <target/iscsi/iscsi_transport.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000028
29#include "iscsi_target_core.h"
30#include "iscsi_target_parameters.h"
31#include "iscsi_target_seq_pdu_list.h"
32#include "iscsi_target_datain_values.h"
33#include "iscsi_target_erl0.h"
34#include "iscsi_target_erl1.h"
35#include "iscsi_target_erl2.h"
36#include "iscsi_target_tpg.h"
37#include "iscsi_target_tq.h"
38#include "iscsi_target_util.h"
39#include "iscsi_target.h"
40
41#define PRINT_BUFF(buff, len) \
42{ \
43 int zzz; \
44 \
45 pr_debug("%d:\n", __LINE__); \
46 for (zzz = 0; zzz < len; zzz++) { \
47 if (zzz % 16 == 0) { \
48 if (zzz) \
49 pr_debug("\n"); \
50 pr_debug("%4i: ", zzz); \
51 } \
52 pr_debug("%02x ", (unsigned char) (buff)[zzz]); \
53 } \
54 if ((len + 1) % 16) \
55 pr_debug("\n"); \
56}
57
58extern struct list_head g_tiqn_list;
59extern spinlock_t tiqn_lock;
60
61/*
62 * Called with cmd->r2t_lock held.
63 */
64int iscsit_add_r2t_to_list(
65 struct iscsi_cmd *cmd,
66 u32 offset,
67 u32 xfer_len,
68 int recovery,
69 u32 r2t_sn)
70{
71 struct iscsi_r2t *r2t;
72
73 r2t = kmem_cache_zalloc(lio_r2t_cache, GFP_ATOMIC);
74 if (!r2t) {
75 pr_err("Unable to allocate memory for struct iscsi_r2t.\n");
76 return -1;
77 }
78 INIT_LIST_HEAD(&r2t->r2t_list);
79
80 r2t->recovery_r2t = recovery;
81 r2t->r2t_sn = (!r2t_sn) ? cmd->r2t_sn++ : r2t_sn;
82 r2t->offset = offset;
83 r2t->xfer_len = xfer_len;
84 list_add_tail(&r2t->r2t_list, &cmd->cmd_r2t_list);
85 spin_unlock_bh(&cmd->r2t_lock);
86
87 iscsit_add_cmd_to_immediate_queue(cmd, cmd->conn, ISTATE_SEND_R2T);
88
89 spin_lock_bh(&cmd->r2t_lock);
90 return 0;
91}
92
93struct iscsi_r2t *iscsit_get_r2t_for_eos(
94 struct iscsi_cmd *cmd,
95 u32 offset,
96 u32 length)
97{
98 struct iscsi_r2t *r2t;
99
100 spin_lock_bh(&cmd->r2t_lock);
101 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
102 if ((r2t->offset <= offset) &&
103 (r2t->offset + r2t->xfer_len) >= (offset + length)) {
104 spin_unlock_bh(&cmd->r2t_lock);
105 return r2t;
106 }
107 }
108 spin_unlock_bh(&cmd->r2t_lock);
109
110 pr_err("Unable to locate R2T for Offset: %u, Length:"
111 " %u\n", offset, length);
112 return NULL;
113}
114
115struct iscsi_r2t *iscsit_get_r2t_from_list(struct iscsi_cmd *cmd)
116{
117 struct iscsi_r2t *r2t;
118
119 spin_lock_bh(&cmd->r2t_lock);
120 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
121 if (!r2t->sent_r2t) {
122 spin_unlock_bh(&cmd->r2t_lock);
123 return r2t;
124 }
125 }
126 spin_unlock_bh(&cmd->r2t_lock);
127
128 pr_err("Unable to locate next R2T to send for ITT:"
129 " 0x%08x.\n", cmd->init_task_tag);
130 return NULL;
131}
132
133/*
134 * Called with cmd->r2t_lock held.
135 */
136void iscsit_free_r2t(struct iscsi_r2t *r2t, struct iscsi_cmd *cmd)
137{
138 list_del(&r2t->r2t_list);
139 kmem_cache_free(lio_r2t_cache, r2t);
140}
141
142void iscsit_free_r2ts_from_list(struct iscsi_cmd *cmd)
143{
144 struct iscsi_r2t *r2t, *r2t_tmp;
145
146 spin_lock_bh(&cmd->r2t_lock);
147 list_for_each_entry_safe(r2t, r2t_tmp, &cmd->cmd_r2t_list, r2t_list)
148 iscsit_free_r2t(r2t, cmd);
149 spin_unlock_bh(&cmd->r2t_lock);
150}
151
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800152struct iscsi_cmd *iscsit_alloc_cmd(struct iscsi_conn *conn, gfp_t gfp_mask)
153{
154 struct iscsi_cmd *cmd;
155
156 cmd = kmem_cache_zalloc(lio_cmd_cache, gfp_mask);
157 if (!cmd)
158 return NULL;
159
160 cmd->release_cmd = &iscsit_release_cmd;
161 return cmd;
162}
163
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000164/*
165 * May be called from software interrupt (timer) context for allocating
166 * iSCSI NopINs.
167 */
168struct iscsi_cmd *iscsit_allocate_cmd(struct iscsi_conn *conn, gfp_t gfp_mask)
169{
170 struct iscsi_cmd *cmd;
171
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800172 cmd = conn->conn_transport->iscsit_alloc_cmd(conn, gfp_mask);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000173 if (!cmd) {
174 pr_err("Unable to allocate memory for struct iscsi_cmd.\n");
175 return NULL;
176 }
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800177 cmd->conn = conn;
Andy Grover2fbb4712012-04-03 15:51:01 -0700178 INIT_LIST_HEAD(&cmd->i_conn_node);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000179 INIT_LIST_HEAD(&cmd->datain_list);
180 INIT_LIST_HEAD(&cmd->cmd_r2t_list);
181 init_completion(&cmd->reject_comp);
182 spin_lock_init(&cmd->datain_lock);
183 spin_lock_init(&cmd->dataout_timeout_lock);
184 spin_lock_init(&cmd->istate_lock);
185 spin_lock_init(&cmd->error_lock);
186 spin_lock_init(&cmd->r2t_lock);
187
188 return cmd;
189}
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800190EXPORT_SYMBOL(iscsit_allocate_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000191
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000192struct iscsi_seq *iscsit_get_seq_holder_for_datain(
193 struct iscsi_cmd *cmd,
194 u32 seq_send_order)
195{
196 u32 i;
197
198 for (i = 0; i < cmd->seq_count; i++)
199 if (cmd->seq_list[i].seq_send_order == seq_send_order)
200 return &cmd->seq_list[i];
201
202 return NULL;
203}
204
205struct iscsi_seq *iscsit_get_seq_holder_for_r2t(struct iscsi_cmd *cmd)
206{
207 u32 i;
208
209 if (!cmd->seq_list) {
210 pr_err("struct iscsi_cmd->seq_list is NULL!\n");
211 return NULL;
212 }
213
214 for (i = 0; i < cmd->seq_count; i++) {
215 if (cmd->seq_list[i].type != SEQTYPE_NORMAL)
216 continue;
217 if (cmd->seq_list[i].seq_send_order == cmd->seq_send_order) {
218 cmd->seq_send_order++;
219 return &cmd->seq_list[i];
220 }
221 }
222
223 return NULL;
224}
225
226struct iscsi_r2t *iscsit_get_holder_for_r2tsn(
227 struct iscsi_cmd *cmd,
228 u32 r2t_sn)
229{
230 struct iscsi_r2t *r2t;
231
232 spin_lock_bh(&cmd->r2t_lock);
233 list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) {
234 if (r2t->r2t_sn == r2t_sn) {
235 spin_unlock_bh(&cmd->r2t_lock);
236 return r2t;
237 }
238 }
239 spin_unlock_bh(&cmd->r2t_lock);
240
241 return NULL;
242}
243
244static inline int iscsit_check_received_cmdsn(struct iscsi_session *sess, u32 cmdsn)
245{
246 int ret;
247
248 /*
249 * This is the proper method of checking received CmdSN against
250 * ExpCmdSN and MaxCmdSN values, as well as accounting for out
251 * or order CmdSNs due to multiple connection sessions and/or
252 * CRC failures.
253 */
254 if (iscsi_sna_gt(cmdsn, sess->max_cmd_sn)) {
255 pr_err("Received CmdSN: 0x%08x is greater than"
256 " MaxCmdSN: 0x%08x, protocol error.\n", cmdsn,
257 sess->max_cmd_sn);
258 ret = CMDSN_ERROR_CANNOT_RECOVER;
259
260 } else if (cmdsn == sess->exp_cmd_sn) {
261 sess->exp_cmd_sn++;
262 pr_debug("Received CmdSN matches ExpCmdSN,"
263 " incremented ExpCmdSN to: 0x%08x\n",
264 sess->exp_cmd_sn);
265 ret = CMDSN_NORMAL_OPERATION;
266
267 } else if (iscsi_sna_gt(cmdsn, sess->exp_cmd_sn)) {
268 pr_debug("Received CmdSN: 0x%08x is greater"
269 " than ExpCmdSN: 0x%08x, not acknowledging.\n",
270 cmdsn, sess->exp_cmd_sn);
271 ret = CMDSN_HIGHER_THAN_EXP;
272
273 } else {
274 pr_err("Received CmdSN: 0x%08x is less than"
275 " ExpCmdSN: 0x%08x, ignoring.\n", cmdsn,
276 sess->exp_cmd_sn);
277 ret = CMDSN_LOWER_THAN_EXP;
278 }
279
280 return ret;
281}
282
283/*
284 * Commands may be received out of order if MC/S is in use.
285 * Ensure they are executed in CmdSN order.
286 */
287int iscsit_sequence_cmd(
288 struct iscsi_conn *conn,
289 struct iscsi_cmd *cmd,
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400290 __be32 cmdsn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000291{
292 int ret;
293 int cmdsn_ret;
294
295 mutex_lock(&conn->sess->cmdsn_mutex);
296
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400297 cmdsn_ret = iscsit_check_received_cmdsn(conn->sess, be32_to_cpu(cmdsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000298 switch (cmdsn_ret) {
299 case CMDSN_NORMAL_OPERATION:
300 ret = iscsit_execute_cmd(cmd, 0);
301 if ((ret >= 0) && !list_empty(&conn->sess->sess_ooo_cmdsn_list))
302 iscsit_execute_ooo_cmdsns(conn->sess);
303 break;
304 case CMDSN_HIGHER_THAN_EXP:
Christoph Hellwig50e5c872012-09-26 08:00:40 -0400305 ret = iscsit_handle_ooo_cmdsn(conn->sess, cmd, be32_to_cpu(cmdsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000306 break;
307 case CMDSN_LOWER_THAN_EXP:
308 cmd->i_state = ISTATE_REMOVE;
309 iscsit_add_cmd_to_immediate_queue(cmd, conn, cmd->i_state);
310 ret = cmdsn_ret;
311 break;
312 default:
313 ret = cmdsn_ret;
314 break;
315 }
316 mutex_unlock(&conn->sess->cmdsn_mutex);
317
318 return ret;
319}
320
321int iscsit_check_unsolicited_dataout(struct iscsi_cmd *cmd, unsigned char *buf)
322{
323 struct iscsi_conn *conn = cmd->conn;
324 struct se_cmd *se_cmd = &cmd->se_cmd;
325 struct iscsi_data *hdr = (struct iscsi_data *) buf;
326 u32 payload_length = ntoh24(hdr->dlength);
327
328 if (conn->sess->sess_ops->InitialR2T) {
329 pr_err("Received unexpected unsolicited data"
330 " while InitialR2T=Yes, protocol error.\n");
331 transport_send_check_condition_and_sense(se_cmd,
332 TCM_UNEXPECTED_UNSOLICITED_DATA, 0);
333 return -1;
334 }
335
336 if ((cmd->first_burst_len + payload_length) >
337 conn->sess->sess_ops->FirstBurstLength) {
338 pr_err("Total %u bytes exceeds FirstBurstLength: %u"
339 " for this Unsolicited DataOut Burst.\n",
340 (cmd->first_burst_len + payload_length),
341 conn->sess->sess_ops->FirstBurstLength);
342 transport_send_check_condition_and_sense(se_cmd,
343 TCM_INCORRECT_AMOUNT_OF_DATA, 0);
344 return -1;
345 }
346
347 if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL))
348 return 0;
349
Andy Groverebf1d952012-04-03 15:51:24 -0700350 if (((cmd->first_burst_len + payload_length) != cmd->se_cmd.data_length) &&
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000351 ((cmd->first_burst_len + payload_length) !=
352 conn->sess->sess_ops->FirstBurstLength)) {
353 pr_err("Unsolicited non-immediate data received %u"
354 " does not equal FirstBurstLength: %u, and does"
355 " not equal ExpXferLen %u.\n",
356 (cmd->first_burst_len + payload_length),
Andy Groverebf1d952012-04-03 15:51:24 -0700357 conn->sess->sess_ops->FirstBurstLength, cmd->se_cmd.data_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000358 transport_send_check_condition_and_sense(se_cmd,
359 TCM_INCORRECT_AMOUNT_OF_DATA, 0);
360 return -1;
361 }
362 return 0;
363}
364
365struct iscsi_cmd *iscsit_find_cmd_from_itt(
366 struct iscsi_conn *conn,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400367 itt_t init_task_tag)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000368{
369 struct iscsi_cmd *cmd;
370
371 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700372 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000373 if (cmd->init_task_tag == init_task_tag) {
374 spin_unlock_bh(&conn->cmd_lock);
375 return cmd;
376 }
377 }
378 spin_unlock_bh(&conn->cmd_lock);
379
380 pr_err("Unable to locate ITT: 0x%08x on CID: %hu",
381 init_task_tag, conn->cid);
382 return NULL;
383}
384
385struct iscsi_cmd *iscsit_find_cmd_from_itt_or_dump(
386 struct iscsi_conn *conn,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400387 itt_t init_task_tag,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000388 u32 length)
389{
390 struct iscsi_cmd *cmd;
391
392 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700393 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000394 if (cmd->init_task_tag == init_task_tag) {
395 spin_unlock_bh(&conn->cmd_lock);
396 return cmd;
397 }
398 }
399 spin_unlock_bh(&conn->cmd_lock);
400
401 pr_err("Unable to locate ITT: 0x%08x on CID: %hu,"
402 " dumping payload\n", init_task_tag, conn->cid);
403 if (length)
404 iscsit_dump_data_payload(conn, length, 1);
405
406 return NULL;
407}
408
409struct iscsi_cmd *iscsit_find_cmd_from_ttt(
410 struct iscsi_conn *conn,
411 u32 targ_xfer_tag)
412{
413 struct iscsi_cmd *cmd = NULL;
414
415 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700416 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000417 if (cmd->targ_xfer_tag == targ_xfer_tag) {
418 spin_unlock_bh(&conn->cmd_lock);
419 return cmd;
420 }
421 }
422 spin_unlock_bh(&conn->cmd_lock);
423
424 pr_err("Unable to locate TTT: 0x%08x on CID: %hu\n",
425 targ_xfer_tag, conn->cid);
426 return NULL;
427}
428
429int iscsit_find_cmd_for_recovery(
430 struct iscsi_session *sess,
431 struct iscsi_cmd **cmd_ptr,
432 struct iscsi_conn_recovery **cr_ptr,
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400433 itt_t init_task_tag)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000434{
435 struct iscsi_cmd *cmd = NULL;
436 struct iscsi_conn_recovery *cr;
437 /*
438 * Scan through the inactive connection recovery list's command list.
439 * If init_task_tag matches the command is still alligent.
440 */
441 spin_lock(&sess->cr_i_lock);
442 list_for_each_entry(cr, &sess->cr_inactive_list, cr_list) {
443 spin_lock(&cr->conn_recovery_cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700444 list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000445 if (cmd->init_task_tag == init_task_tag) {
446 spin_unlock(&cr->conn_recovery_cmd_lock);
447 spin_unlock(&sess->cr_i_lock);
448
449 *cr_ptr = cr;
450 *cmd_ptr = cmd;
451 return -2;
452 }
453 }
454 spin_unlock(&cr->conn_recovery_cmd_lock);
455 }
456 spin_unlock(&sess->cr_i_lock);
457 /*
458 * Scan through the active connection recovery list's command list.
459 * If init_task_tag matches the command is ready to be reassigned.
460 */
461 spin_lock(&sess->cr_a_lock);
462 list_for_each_entry(cr, &sess->cr_active_list, cr_list) {
463 spin_lock(&cr->conn_recovery_cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700464 list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000465 if (cmd->init_task_tag == init_task_tag) {
466 spin_unlock(&cr->conn_recovery_cmd_lock);
467 spin_unlock(&sess->cr_a_lock);
468
469 *cr_ptr = cr;
470 *cmd_ptr = cmd;
471 return 0;
472 }
473 }
474 spin_unlock(&cr->conn_recovery_cmd_lock);
475 }
476 spin_unlock(&sess->cr_a_lock);
477
478 return -1;
479}
480
481void iscsit_add_cmd_to_immediate_queue(
482 struct iscsi_cmd *cmd,
483 struct iscsi_conn *conn,
484 u8 state)
485{
486 struct iscsi_queue_req *qr;
487
488 qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC);
489 if (!qr) {
490 pr_err("Unable to allocate memory for"
491 " struct iscsi_queue_req\n");
492 return;
493 }
494 INIT_LIST_HEAD(&qr->qr_list);
495 qr->cmd = cmd;
496 qr->state = state;
497
498 spin_lock_bh(&conn->immed_queue_lock);
499 list_add_tail(&qr->qr_list, &conn->immed_queue_list);
500 atomic_inc(&cmd->immed_queue_count);
501 atomic_set(&conn->check_immediate_queue, 1);
502 spin_unlock_bh(&conn->immed_queue_lock);
503
Roland Dreierd5627ac2012-10-31 09:16:46 -0700504 wake_up(&conn->queues_wq);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000505}
506
507struct iscsi_queue_req *iscsit_get_cmd_from_immediate_queue(struct iscsi_conn *conn)
508{
509 struct iscsi_queue_req *qr;
510
511 spin_lock_bh(&conn->immed_queue_lock);
512 if (list_empty(&conn->immed_queue_list)) {
513 spin_unlock_bh(&conn->immed_queue_lock);
514 return NULL;
515 }
Roland Dreier1f981de2012-10-31 09:16:47 -0700516 qr = list_first_entry(&conn->immed_queue_list,
517 struct iscsi_queue_req, qr_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000518
519 list_del(&qr->qr_list);
520 if (qr->cmd)
521 atomic_dec(&qr->cmd->immed_queue_count);
522 spin_unlock_bh(&conn->immed_queue_lock);
523
524 return qr;
525}
526
527static void iscsit_remove_cmd_from_immediate_queue(
528 struct iscsi_cmd *cmd,
529 struct iscsi_conn *conn)
530{
531 struct iscsi_queue_req *qr, *qr_tmp;
532
533 spin_lock_bh(&conn->immed_queue_lock);
534 if (!atomic_read(&cmd->immed_queue_count)) {
535 spin_unlock_bh(&conn->immed_queue_lock);
536 return;
537 }
538
539 list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) {
540 if (qr->cmd != cmd)
541 continue;
542
543 atomic_dec(&qr->cmd->immed_queue_count);
544 list_del(&qr->qr_list);
545 kmem_cache_free(lio_qr_cache, qr);
546 }
547 spin_unlock_bh(&conn->immed_queue_lock);
548
549 if (atomic_read(&cmd->immed_queue_count)) {
550 pr_err("ITT: 0x%08x immed_queue_count: %d\n",
551 cmd->init_task_tag,
552 atomic_read(&cmd->immed_queue_count));
553 }
554}
555
556void iscsit_add_cmd_to_response_queue(
557 struct iscsi_cmd *cmd,
558 struct iscsi_conn *conn,
559 u8 state)
560{
561 struct iscsi_queue_req *qr;
562
563 qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC);
564 if (!qr) {
565 pr_err("Unable to allocate memory for"
566 " struct iscsi_queue_req\n");
567 return;
568 }
569 INIT_LIST_HEAD(&qr->qr_list);
570 qr->cmd = cmd;
571 qr->state = state;
572
573 spin_lock_bh(&conn->response_queue_lock);
574 list_add_tail(&qr->qr_list, &conn->response_queue_list);
575 atomic_inc(&cmd->response_queue_count);
576 spin_unlock_bh(&conn->response_queue_lock);
577
Roland Dreierd5627ac2012-10-31 09:16:46 -0700578 wake_up(&conn->queues_wq);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000579}
580
581struct iscsi_queue_req *iscsit_get_cmd_from_response_queue(struct iscsi_conn *conn)
582{
583 struct iscsi_queue_req *qr;
584
585 spin_lock_bh(&conn->response_queue_lock);
586 if (list_empty(&conn->response_queue_list)) {
587 spin_unlock_bh(&conn->response_queue_lock);
588 return NULL;
589 }
590
Roland Dreier1f981de2012-10-31 09:16:47 -0700591 qr = list_first_entry(&conn->response_queue_list,
592 struct iscsi_queue_req, qr_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000593
594 list_del(&qr->qr_list);
595 if (qr->cmd)
596 atomic_dec(&qr->cmd->response_queue_count);
597 spin_unlock_bh(&conn->response_queue_lock);
598
599 return qr;
600}
601
602static void iscsit_remove_cmd_from_response_queue(
603 struct iscsi_cmd *cmd,
604 struct iscsi_conn *conn)
605{
606 struct iscsi_queue_req *qr, *qr_tmp;
607
608 spin_lock_bh(&conn->response_queue_lock);
609 if (!atomic_read(&cmd->response_queue_count)) {
610 spin_unlock_bh(&conn->response_queue_lock);
611 return;
612 }
613
614 list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list,
615 qr_list) {
616 if (qr->cmd != cmd)
617 continue;
618
619 atomic_dec(&qr->cmd->response_queue_count);
620 list_del(&qr->qr_list);
621 kmem_cache_free(lio_qr_cache, qr);
622 }
623 spin_unlock_bh(&conn->response_queue_lock);
624
625 if (atomic_read(&cmd->response_queue_count)) {
626 pr_err("ITT: 0x%08x response_queue_count: %d\n",
627 cmd->init_task_tag,
628 atomic_read(&cmd->response_queue_count));
629 }
630}
631
Roland Dreierd5627ac2012-10-31 09:16:46 -0700632bool iscsit_conn_all_queues_empty(struct iscsi_conn *conn)
633{
634 bool empty;
635
636 spin_lock_bh(&conn->immed_queue_lock);
637 empty = list_empty(&conn->immed_queue_list);
638 spin_unlock_bh(&conn->immed_queue_lock);
639
640 if (!empty)
641 return empty;
642
643 spin_lock_bh(&conn->response_queue_lock);
644 empty = list_empty(&conn->response_queue_list);
645 spin_unlock_bh(&conn->response_queue_lock);
646
647 return empty;
648}
649
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000650void iscsit_free_queue_reqs_for_conn(struct iscsi_conn *conn)
651{
652 struct iscsi_queue_req *qr, *qr_tmp;
653
654 spin_lock_bh(&conn->immed_queue_lock);
655 list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) {
656 list_del(&qr->qr_list);
657 if (qr->cmd)
658 atomic_dec(&qr->cmd->immed_queue_count);
659
660 kmem_cache_free(lio_qr_cache, qr);
661 }
662 spin_unlock_bh(&conn->immed_queue_lock);
663
664 spin_lock_bh(&conn->response_queue_lock);
665 list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list,
666 qr_list) {
667 list_del(&qr->qr_list);
668 if (qr->cmd)
669 atomic_dec(&qr->cmd->response_queue_count);
670
671 kmem_cache_free(lio_qr_cache, qr);
672 }
673 spin_unlock_bh(&conn->response_queue_lock);
674}
675
676void iscsit_release_cmd(struct iscsi_cmd *cmd)
677{
678 struct iscsi_conn *conn = cmd->conn;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000679
680 iscsit_free_r2ts_from_list(cmd);
681 iscsit_free_all_datain_reqs(cmd);
682
683 kfree(cmd->buf_ptr);
684 kfree(cmd->pdu_list);
685 kfree(cmd->seq_list);
686 kfree(cmd->tmr_req);
687 kfree(cmd->iov_data);
688
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000689 if (conn) {
690 iscsit_remove_cmd_from_immediate_queue(cmd, conn);
691 iscsit_remove_cmd_from_response_queue(cmd, conn);
692 }
693
694 kmem_cache_free(lio_cmd_cache, cmd);
695}
696
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700697void iscsit_free_cmd(struct iscsi_cmd *cmd)
698{
699 /*
Masanari Iida20879692012-08-27 22:46:00 +0900700 * Determine if a struct se_cmd is associated with
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700701 * this struct iscsi_cmd.
702 */
703 switch (cmd->iscsi_opcode) {
704 case ISCSI_OP_SCSI_CMD:
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800705 if (cmd->data_direction == DMA_TO_DEVICE)
706 iscsit_stop_dataout_timer(cmd);
707 /*
708 * Fallthrough
709 */
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700710 case ISCSI_OP_SCSI_TMFUNC:
711 transport_generic_free_cmd(&cmd->se_cmd, 1);
712 break;
Nicholas Bellingerc1ce4bd2012-01-16 16:04:15 -0800713 case ISCSI_OP_REJECT:
714 /*
715 * Handle special case for REJECT when iscsi_add_reject*() has
716 * overwritten the original iscsi_opcode assignment, and the
717 * associated cmd->se_cmd needs to be released.
718 */
719 if (cmd->se_cmd.se_tfo != NULL) {
720 transport_generic_free_cmd(&cmd->se_cmd, 1);
721 break;
722 }
723 /* Fall-through */
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700724 default:
Nicholas Bellingercdb72662013-03-06 22:09:17 -0800725 cmd->release_cmd(cmd);
Nicholas Bellingerd2701902011-10-09 01:48:14 -0700726 break;
727 }
728}
729
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000730int iscsit_check_session_usage_count(struct iscsi_session *sess)
731{
732 spin_lock_bh(&sess->session_usage_lock);
733 if (sess->session_usage_count != 0) {
734 sess->session_waiting_on_uc = 1;
735 spin_unlock_bh(&sess->session_usage_lock);
736 if (in_interrupt())
737 return 2;
738
739 wait_for_completion(&sess->session_waiting_on_uc_comp);
740 return 1;
741 }
742 spin_unlock_bh(&sess->session_usage_lock);
743
744 return 0;
745}
746
747void iscsit_dec_session_usage_count(struct iscsi_session *sess)
748{
749 spin_lock_bh(&sess->session_usage_lock);
750 sess->session_usage_count--;
751
752 if (!sess->session_usage_count && sess->session_waiting_on_uc)
753 complete(&sess->session_waiting_on_uc_comp);
754
755 spin_unlock_bh(&sess->session_usage_lock);
756}
757
758void iscsit_inc_session_usage_count(struct iscsi_session *sess)
759{
760 spin_lock_bh(&sess->session_usage_lock);
761 sess->session_usage_count++;
762 spin_unlock_bh(&sess->session_usage_lock);
763}
764
765/*
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000766 * Setup conn->if_marker and conn->of_marker values based upon
767 * the initial marker-less interval. (see iSCSI v19 A.2)
768 */
769int iscsit_set_sync_and_steering_values(struct iscsi_conn *conn)
770{
771 int login_ifmarker_count = 0, login_ofmarker_count = 0, next_marker = 0;
772 /*
773 * IFMarkInt and OFMarkInt are negotiated as 32-bit words.
774 */
775 u32 IFMarkInt = (conn->conn_ops->IFMarkInt * 4);
776 u32 OFMarkInt = (conn->conn_ops->OFMarkInt * 4);
777
778 if (conn->conn_ops->OFMarker) {
779 /*
780 * Account for the first Login Command received not
781 * via iscsi_recv_msg().
782 */
783 conn->of_marker += ISCSI_HDR_LEN;
784 if (conn->of_marker <= OFMarkInt) {
785 conn->of_marker = (OFMarkInt - conn->of_marker);
786 } else {
787 login_ofmarker_count = (conn->of_marker / OFMarkInt);
788 next_marker = (OFMarkInt * (login_ofmarker_count + 1)) +
789 (login_ofmarker_count * MARKER_SIZE);
790 conn->of_marker = (next_marker - conn->of_marker);
791 }
792 conn->of_marker_offset = 0;
793 pr_debug("Setting OFMarker value to %u based on Initial"
794 " Markerless Interval.\n", conn->of_marker);
795 }
796
797 if (conn->conn_ops->IFMarker) {
798 if (conn->if_marker <= IFMarkInt) {
799 conn->if_marker = (IFMarkInt - conn->if_marker);
800 } else {
801 login_ifmarker_count = (conn->if_marker / IFMarkInt);
802 next_marker = (IFMarkInt * (login_ifmarker_count + 1)) +
803 (login_ifmarker_count * MARKER_SIZE);
804 conn->if_marker = (next_marker - conn->if_marker);
805 }
806 pr_debug("Setting IFMarker value to %u based on Initial"
807 " Markerless Interval.\n", conn->if_marker);
808 }
809
810 return 0;
811}
812
813struct iscsi_conn *iscsit_get_conn_from_cid(struct iscsi_session *sess, u16 cid)
814{
815 struct iscsi_conn *conn;
816
817 spin_lock_bh(&sess->conn_lock);
818 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
819 if ((conn->cid == cid) &&
820 (conn->conn_state == TARG_CONN_STATE_LOGGED_IN)) {
821 iscsit_inc_conn_usage_count(conn);
822 spin_unlock_bh(&sess->conn_lock);
823 return conn;
824 }
825 }
826 spin_unlock_bh(&sess->conn_lock);
827
828 return NULL;
829}
830
831struct iscsi_conn *iscsit_get_conn_from_cid_rcfr(struct iscsi_session *sess, u16 cid)
832{
833 struct iscsi_conn *conn;
834
835 spin_lock_bh(&sess->conn_lock);
836 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
837 if (conn->cid == cid) {
838 iscsit_inc_conn_usage_count(conn);
839 spin_lock(&conn->state_lock);
840 atomic_set(&conn->connection_wait_rcfr, 1);
841 spin_unlock(&conn->state_lock);
842 spin_unlock_bh(&sess->conn_lock);
843 return conn;
844 }
845 }
846 spin_unlock_bh(&sess->conn_lock);
847
848 return NULL;
849}
850
851void iscsit_check_conn_usage_count(struct iscsi_conn *conn)
852{
853 spin_lock_bh(&conn->conn_usage_lock);
854 if (conn->conn_usage_count != 0) {
855 conn->conn_waiting_on_uc = 1;
856 spin_unlock_bh(&conn->conn_usage_lock);
857
858 wait_for_completion(&conn->conn_waiting_on_uc_comp);
859 return;
860 }
861 spin_unlock_bh(&conn->conn_usage_lock);
862}
863
864void iscsit_dec_conn_usage_count(struct iscsi_conn *conn)
865{
866 spin_lock_bh(&conn->conn_usage_lock);
867 conn->conn_usage_count--;
868
869 if (!conn->conn_usage_count && conn->conn_waiting_on_uc)
870 complete(&conn->conn_waiting_on_uc_comp);
871
872 spin_unlock_bh(&conn->conn_usage_lock);
873}
874
875void iscsit_inc_conn_usage_count(struct iscsi_conn *conn)
876{
877 spin_lock_bh(&conn->conn_usage_lock);
878 conn->conn_usage_count++;
879 spin_unlock_bh(&conn->conn_usage_lock);
880}
881
882static int iscsit_add_nopin(struct iscsi_conn *conn, int want_response)
883{
884 u8 state;
885 struct iscsi_cmd *cmd;
886
887 cmd = iscsit_allocate_cmd(conn, GFP_ATOMIC);
888 if (!cmd)
889 return -1;
890
891 cmd->iscsi_opcode = ISCSI_OP_NOOP_IN;
892 state = (want_response) ? ISTATE_SEND_NOPIN_WANT_RESPONSE :
893 ISTATE_SEND_NOPIN_NO_RESPONSE;
Christoph Hellwig66c7db62012-09-26 08:00:39 -0400894 cmd->init_task_tag = RESERVED_ITT;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000895 spin_lock_bh(&conn->sess->ttt_lock);
896 cmd->targ_xfer_tag = (want_response) ? conn->sess->targ_xfer_tag++ :
897 0xFFFFFFFF;
898 if (want_response && (cmd->targ_xfer_tag == 0xFFFFFFFF))
899 cmd->targ_xfer_tag = conn->sess->targ_xfer_tag++;
900 spin_unlock_bh(&conn->sess->ttt_lock);
901
902 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700903 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000904 spin_unlock_bh(&conn->cmd_lock);
905
906 if (want_response)
907 iscsit_start_nopin_response_timer(conn);
908 iscsit_add_cmd_to_immediate_queue(cmd, conn, state);
909
910 return 0;
911}
912
913static void iscsit_handle_nopin_response_timeout(unsigned long data)
914{
915 struct iscsi_conn *conn = (struct iscsi_conn *) data;
916
917 iscsit_inc_conn_usage_count(conn);
918
919 spin_lock_bh(&conn->nopin_timer_lock);
920 if (conn->nopin_response_timer_flags & ISCSI_TF_STOP) {
921 spin_unlock_bh(&conn->nopin_timer_lock);
922 iscsit_dec_conn_usage_count(conn);
923 return;
924 }
925
926 pr_debug("Did not receive response to NOPIN on CID: %hu on"
927 " SID: %u, failing connection.\n", conn->cid,
928 conn->sess->sid);
929 conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING;
930 spin_unlock_bh(&conn->nopin_timer_lock);
931
932 {
933 struct iscsi_portal_group *tpg = conn->sess->tpg;
934 struct iscsi_tiqn *tiqn = tpg->tpg_tiqn;
935
936 if (tiqn) {
937 spin_lock_bh(&tiqn->sess_err_stats.lock);
938 strcpy(tiqn->sess_err_stats.last_sess_fail_rem_name,
Jörn Engel8359cf42011-11-24 02:05:51 +0100939 conn->sess->sess_ops->InitiatorName);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000940 tiqn->sess_err_stats.last_sess_failure_type =
941 ISCSI_SESS_ERR_CXN_TIMEOUT;
942 tiqn->sess_err_stats.cxn_timeout_errors++;
943 conn->sess->conn_timeout_errors++;
944 spin_unlock_bh(&tiqn->sess_err_stats.lock);
945 }
946 }
947
948 iscsit_cause_connection_reinstatement(conn, 0);
949 iscsit_dec_conn_usage_count(conn);
950}
951
952void iscsit_mod_nopin_response_timer(struct iscsi_conn *conn)
953{
954 struct iscsi_session *sess = conn->sess;
955 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
956
957 spin_lock_bh(&conn->nopin_timer_lock);
958 if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) {
959 spin_unlock_bh(&conn->nopin_timer_lock);
960 return;
961 }
962
963 mod_timer(&conn->nopin_response_timer,
964 (get_jiffies_64() + na->nopin_response_timeout * HZ));
965 spin_unlock_bh(&conn->nopin_timer_lock);
966}
967
968/*
969 * Called with conn->nopin_timer_lock held.
970 */
971void iscsit_start_nopin_response_timer(struct iscsi_conn *conn)
972{
973 struct iscsi_session *sess = conn->sess;
974 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
975
976 spin_lock_bh(&conn->nopin_timer_lock);
977 if (conn->nopin_response_timer_flags & ISCSI_TF_RUNNING) {
978 spin_unlock_bh(&conn->nopin_timer_lock);
979 return;
980 }
981
982 init_timer(&conn->nopin_response_timer);
983 conn->nopin_response_timer.expires =
984 (get_jiffies_64() + na->nopin_response_timeout * HZ);
985 conn->nopin_response_timer.data = (unsigned long)conn;
986 conn->nopin_response_timer.function = iscsit_handle_nopin_response_timeout;
987 conn->nopin_response_timer_flags &= ~ISCSI_TF_STOP;
988 conn->nopin_response_timer_flags |= ISCSI_TF_RUNNING;
989 add_timer(&conn->nopin_response_timer);
990
991 pr_debug("Started NOPIN Response Timer on CID: %d to %u"
992 " seconds\n", conn->cid, na->nopin_response_timeout);
993 spin_unlock_bh(&conn->nopin_timer_lock);
994}
995
996void iscsit_stop_nopin_response_timer(struct iscsi_conn *conn)
997{
998 spin_lock_bh(&conn->nopin_timer_lock);
999 if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) {
1000 spin_unlock_bh(&conn->nopin_timer_lock);
1001 return;
1002 }
1003 conn->nopin_response_timer_flags |= ISCSI_TF_STOP;
1004 spin_unlock_bh(&conn->nopin_timer_lock);
1005
1006 del_timer_sync(&conn->nopin_response_timer);
1007
1008 spin_lock_bh(&conn->nopin_timer_lock);
1009 conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING;
1010 spin_unlock_bh(&conn->nopin_timer_lock);
1011}
1012
1013static void iscsit_handle_nopin_timeout(unsigned long data)
1014{
1015 struct iscsi_conn *conn = (struct iscsi_conn *) data;
1016
1017 iscsit_inc_conn_usage_count(conn);
1018
1019 spin_lock_bh(&conn->nopin_timer_lock);
1020 if (conn->nopin_timer_flags & ISCSI_TF_STOP) {
1021 spin_unlock_bh(&conn->nopin_timer_lock);
1022 iscsit_dec_conn_usage_count(conn);
1023 return;
1024 }
1025 conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING;
1026 spin_unlock_bh(&conn->nopin_timer_lock);
1027
1028 iscsit_add_nopin(conn, 1);
1029 iscsit_dec_conn_usage_count(conn);
1030}
1031
1032/*
1033 * Called with conn->nopin_timer_lock held.
1034 */
1035void __iscsit_start_nopin_timer(struct iscsi_conn *conn)
1036{
1037 struct iscsi_session *sess = conn->sess;
1038 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
1039 /*
1040 * NOPIN timeout is disabled.
1041 */
1042 if (!na->nopin_timeout)
1043 return;
1044
1045 if (conn->nopin_timer_flags & ISCSI_TF_RUNNING)
1046 return;
1047
1048 init_timer(&conn->nopin_timer);
1049 conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ);
1050 conn->nopin_timer.data = (unsigned long)conn;
1051 conn->nopin_timer.function = iscsit_handle_nopin_timeout;
1052 conn->nopin_timer_flags &= ~ISCSI_TF_STOP;
1053 conn->nopin_timer_flags |= ISCSI_TF_RUNNING;
1054 add_timer(&conn->nopin_timer);
1055
1056 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1057 " interval\n", conn->cid, na->nopin_timeout);
1058}
1059
1060void iscsit_start_nopin_timer(struct iscsi_conn *conn)
1061{
1062 struct iscsi_session *sess = conn->sess;
1063 struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess);
1064 /*
1065 * NOPIN timeout is disabled..
1066 */
1067 if (!na->nopin_timeout)
1068 return;
1069
1070 spin_lock_bh(&conn->nopin_timer_lock);
1071 if (conn->nopin_timer_flags & ISCSI_TF_RUNNING) {
1072 spin_unlock_bh(&conn->nopin_timer_lock);
1073 return;
1074 }
1075
1076 init_timer(&conn->nopin_timer);
1077 conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ);
1078 conn->nopin_timer.data = (unsigned long)conn;
1079 conn->nopin_timer.function = iscsit_handle_nopin_timeout;
1080 conn->nopin_timer_flags &= ~ISCSI_TF_STOP;
1081 conn->nopin_timer_flags |= ISCSI_TF_RUNNING;
1082 add_timer(&conn->nopin_timer);
1083
1084 pr_debug("Started NOPIN Timer on CID: %d at %u second"
1085 " interval\n", conn->cid, na->nopin_timeout);
1086 spin_unlock_bh(&conn->nopin_timer_lock);
1087}
1088
1089void iscsit_stop_nopin_timer(struct iscsi_conn *conn)
1090{
1091 spin_lock_bh(&conn->nopin_timer_lock);
1092 if (!(conn->nopin_timer_flags & ISCSI_TF_RUNNING)) {
1093 spin_unlock_bh(&conn->nopin_timer_lock);
1094 return;
1095 }
1096 conn->nopin_timer_flags |= ISCSI_TF_STOP;
1097 spin_unlock_bh(&conn->nopin_timer_lock);
1098
1099 del_timer_sync(&conn->nopin_timer);
1100
1101 spin_lock_bh(&conn->nopin_timer_lock);
1102 conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING;
1103 spin_unlock_bh(&conn->nopin_timer_lock);
1104}
1105
1106int iscsit_send_tx_data(
1107 struct iscsi_cmd *cmd,
1108 struct iscsi_conn *conn,
1109 int use_misc)
1110{
1111 int tx_sent, tx_size;
1112 u32 iov_count;
1113 struct kvec *iov;
1114
1115send_data:
1116 tx_size = cmd->tx_size;
1117
1118 if (!use_misc) {
1119 iov = &cmd->iov_data[0];
1120 iov_count = cmd->iov_data_count;
1121 } else {
1122 iov = &cmd->iov_misc[0];
1123 iov_count = cmd->iov_misc_count;
1124 }
1125
1126 tx_sent = tx_data(conn, &iov[0], iov_count, tx_size);
1127 if (tx_size != tx_sent) {
1128 if (tx_sent == -EAGAIN) {
1129 pr_err("tx_data() returned -EAGAIN\n");
1130 goto send_data;
1131 } else
1132 return -1;
1133 }
1134 cmd->tx_size = 0;
1135
1136 return 0;
1137}
1138
1139int iscsit_fe_sendpage_sg(
1140 struct iscsi_cmd *cmd,
1141 struct iscsi_conn *conn)
1142{
1143 struct scatterlist *sg = cmd->first_data_sg;
1144 struct kvec iov;
1145 u32 tx_hdr_size, data_len;
1146 u32 offset = cmd->first_data_sg_off;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001147 int tx_sent, iov_off;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001148
1149send_hdr:
1150 tx_hdr_size = ISCSI_HDR_LEN;
1151 if (conn->conn_ops->HeaderDigest)
1152 tx_hdr_size += ISCSI_CRC_LEN;
1153
1154 iov.iov_base = cmd->pdu;
1155 iov.iov_len = tx_hdr_size;
1156
1157 tx_sent = tx_data(conn, &iov, 1, tx_hdr_size);
1158 if (tx_hdr_size != tx_sent) {
1159 if (tx_sent == -EAGAIN) {
1160 pr_err("tx_data() returned -EAGAIN\n");
1161 goto send_hdr;
1162 }
1163 return -1;
1164 }
1165
1166 data_len = cmd->tx_size - tx_hdr_size - cmd->padding;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001167 /*
1168 * Set iov_off used by padding and data digest tx_data() calls below
1169 * in order to determine proper offset into cmd->iov_data[]
1170 */
1171 if (conn->conn_ops->DataDigest) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001172 data_len -= ISCSI_CRC_LEN;
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001173 if (cmd->padding)
1174 iov_off = (cmd->iov_data_count - 2);
1175 else
1176 iov_off = (cmd->iov_data_count - 1);
1177 } else {
1178 iov_off = (cmd->iov_data_count - 1);
1179 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001180 /*
1181 * Perform sendpage() for each page in the scatterlist
1182 */
1183 while (data_len) {
1184 u32 space = (sg->length - offset);
1185 u32 sub_len = min_t(u32, data_len, space);
1186send_pg:
1187 tx_sent = conn->sock->ops->sendpage(conn->sock,
1188 sg_page(sg), sg->offset + offset, sub_len, 0);
1189 if (tx_sent != sub_len) {
1190 if (tx_sent == -EAGAIN) {
1191 pr_err("tcp_sendpage() returned"
1192 " -EAGAIN\n");
1193 goto send_pg;
1194 }
1195
1196 pr_err("tcp_sendpage() failure: %d\n",
1197 tx_sent);
1198 return -1;
1199 }
1200
1201 data_len -= sub_len;
1202 offset = 0;
1203 sg = sg_next(sg);
1204 }
1205
1206send_padding:
1207 if (cmd->padding) {
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001208 struct kvec *iov_p = &cmd->iov_data[iov_off++];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001209
1210 tx_sent = tx_data(conn, iov_p, 1, cmd->padding);
1211 if (cmd->padding != tx_sent) {
1212 if (tx_sent == -EAGAIN) {
1213 pr_err("tx_data() returned -EAGAIN\n");
1214 goto send_padding;
1215 }
1216 return -1;
1217 }
1218 }
1219
1220send_datacrc:
1221 if (conn->conn_ops->DataDigest) {
Nicholas Bellinger40b05492011-09-16 16:55:47 -07001222 struct kvec *iov_d = &cmd->iov_data[iov_off];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001223
1224 tx_sent = tx_data(conn, iov_d, 1, ISCSI_CRC_LEN);
1225 if (ISCSI_CRC_LEN != tx_sent) {
1226 if (tx_sent == -EAGAIN) {
1227 pr_err("tx_data() returned -EAGAIN\n");
1228 goto send_datacrc;
1229 }
1230 return -1;
1231 }
1232 }
1233
1234 return 0;
1235}
1236
1237/*
1238 * This function is used for mainly sending a ISCSI_TARG_LOGIN_RSP PDU
1239 * back to the Initiator when an expection condition occurs with the
1240 * errors set in status_class and status_detail.
1241 *
1242 * Parameters: iSCSI Connection, Status Class, Status Detail.
1243 * Returns: 0 on success, -1 on error.
1244 */
1245int iscsit_tx_login_rsp(struct iscsi_conn *conn, u8 status_class, u8 status_detail)
1246{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001247 struct iscsi_login_rsp *hdr;
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001248 struct iscsi_login *login = conn->conn_login;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001249
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001250 login->login_failed = 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001251 iscsit_collect_login_stats(conn, status_class, status_detail);
1252
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001253 hdr = (struct iscsi_login_rsp *)&login->rsp[0];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001254 hdr->opcode = ISCSI_OP_LOGIN_RSP;
1255 hdr->status_class = status_class;
1256 hdr->status_detail = status_detail;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001257 hdr->itt = conn->login_itt;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001258
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001259 return conn->conn_transport->iscsit_put_login_tx(conn, login, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001260}
1261
1262void iscsit_print_session_params(struct iscsi_session *sess)
1263{
1264 struct iscsi_conn *conn;
1265
1266 pr_debug("-----------------------------[Session Params for"
1267 " SID: %u]-----------------------------\n", sess->sid);
1268 spin_lock_bh(&sess->conn_lock);
1269 list_for_each_entry(conn, &sess->sess_conn_list, conn_list)
1270 iscsi_dump_conn_ops(conn->conn_ops);
1271 spin_unlock_bh(&sess->conn_lock);
1272
1273 iscsi_dump_sess_ops(sess->sess_ops);
1274}
1275
1276static int iscsit_do_rx_data(
1277 struct iscsi_conn *conn,
1278 struct iscsi_data_count *count)
1279{
1280 int data = count->data_length, rx_loop = 0, total_rx = 0, iov_len;
Nicholas Bellinger2ff017f2011-09-16 01:44:54 -07001281 struct kvec *iov_p;
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));
1288
Nicholas Bellinger2ff017f2011-09-16 01:44:54 -07001289 iov_p = count->iov;
1290 iov_len = count->iov_count;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001291
1292 while (total_rx < data) {
1293 rx_loop = kernel_recvmsg(conn->sock, &msg, iov_p, iov_len,
1294 (data - total_rx), MSG_WAITALL);
1295 if (rx_loop <= 0) {
1296 pr_debug("rx_loop: %d total_rx: %d\n",
1297 rx_loop, total_rx);
1298 return rx_loop;
1299 }
1300 total_rx += rx_loop;
1301 pr_debug("rx_loop: %d, total_rx: %d, data: %d\n",
1302 rx_loop, total_rx, data);
1303 }
1304
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001305 return total_rx;
1306}
1307
1308static int iscsit_do_tx_data(
1309 struct iscsi_conn *conn,
1310 struct iscsi_data_count *count)
1311{
1312 int data = count->data_length, total_tx = 0, tx_loop = 0, iov_len;
Nicholas Bellinger2ff017f2011-09-16 01:44:54 -07001313 struct kvec *iov_p;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001314 struct msghdr msg;
1315
1316 if (!conn || !conn->sock || !conn->conn_ops)
1317 return -1;
1318
1319 if (data <= 0) {
1320 pr_err("Data length is: %d\n", data);
1321 return -1;
1322 }
1323
1324 memset(&msg, 0, sizeof(struct msghdr));
1325
Nicholas Bellinger2ff017f2011-09-16 01:44:54 -07001326 iov_p = count->iov;
1327 iov_len = count->iov_count;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001328
1329 while (total_tx < data) {
1330 tx_loop = kernel_sendmsg(conn->sock, &msg, iov_p, iov_len,
1331 (data - total_tx));
1332 if (tx_loop <= 0) {
1333 pr_debug("tx_loop: %d total_tx %d\n",
1334 tx_loop, total_tx);
1335 return tx_loop;
1336 }
1337 total_tx += tx_loop;
1338 pr_debug("tx_loop: %d, total_tx: %d, data: %d\n",
1339 tx_loop, total_tx, data);
1340 }
1341
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001342 return total_tx;
1343}
1344
1345int rx_data(
1346 struct iscsi_conn *conn,
1347 struct kvec *iov,
1348 int iov_count,
1349 int data)
1350{
1351 struct iscsi_data_count c;
1352
1353 if (!conn || !conn->sock || !conn->conn_ops)
1354 return -1;
1355
1356 memset(&c, 0, sizeof(struct iscsi_data_count));
1357 c.iov = iov;
1358 c.iov_count = iov_count;
1359 c.data_length = data;
1360 c.type = ISCSI_RX_DATA;
1361
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001362 return iscsit_do_rx_data(conn, &c);
1363}
1364
1365int tx_data(
1366 struct iscsi_conn *conn,
1367 struct kvec *iov,
1368 int iov_count,
1369 int data)
1370{
1371 struct iscsi_data_count c;
1372
1373 if (!conn || !conn->sock || !conn->conn_ops)
1374 return -1;
1375
1376 memset(&c, 0, sizeof(struct iscsi_data_count));
1377 c.iov = iov;
1378 c.iov_count = iov_count;
1379 c.data_length = data;
1380 c.type = ISCSI_TX_DATA;
1381
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001382 return iscsit_do_tx_data(conn, &c);
1383}
1384
1385void iscsit_collect_login_stats(
1386 struct iscsi_conn *conn,
1387 u8 status_class,
1388 u8 status_detail)
1389{
1390 struct iscsi_param *intrname = NULL;
1391 struct iscsi_tiqn *tiqn;
1392 struct iscsi_login_stats *ls;
1393
1394 tiqn = iscsit_snmp_get_tiqn(conn);
1395 if (!tiqn)
1396 return;
1397
1398 ls = &tiqn->login_stats;
1399
1400 spin_lock(&ls->lock);
1401 if (!strcmp(conn->login_ip, ls->last_intr_fail_ip_addr) &&
1402 ((get_jiffies_64() - ls->last_fail_time) < 10)) {
1403 /* We already have the failure info for this login */
1404 spin_unlock(&ls->lock);
1405 return;
1406 }
1407
1408 if (status_class == ISCSI_STATUS_CLS_SUCCESS)
1409 ls->accepts++;
1410 else if (status_class == ISCSI_STATUS_CLS_REDIRECT) {
1411 ls->redirects++;
1412 ls->last_fail_type = ISCSI_LOGIN_FAIL_REDIRECT;
1413 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1414 (status_detail == ISCSI_LOGIN_STATUS_AUTH_FAILED)) {
1415 ls->authenticate_fails++;
1416 ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHENTICATE;
1417 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1418 (status_detail == ISCSI_LOGIN_STATUS_TGT_FORBIDDEN)) {
1419 ls->authorize_fails++;
1420 ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHORIZE;
1421 } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) &&
1422 (status_detail == ISCSI_LOGIN_STATUS_INIT_ERR)) {
1423 ls->negotiate_fails++;
1424 ls->last_fail_type = ISCSI_LOGIN_FAIL_NEGOTIATE;
1425 } else {
1426 ls->other_fails++;
1427 ls->last_fail_type = ISCSI_LOGIN_FAIL_OTHER;
1428 }
1429
1430 /* Save initiator name, ip address and time, if it is a failed login */
1431 if (status_class != ISCSI_STATUS_CLS_SUCCESS) {
1432 if (conn->param_list)
1433 intrname = iscsi_find_param_from_key(INITIATORNAME,
1434 conn->param_list);
1435 strcpy(ls->last_intr_fail_name,
1436 (intrname ? intrname->value : "Unknown"));
1437
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08001438 ls->last_intr_fail_ip_family = conn->login_family;
1439
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001440 snprintf(ls->last_intr_fail_ip_addr, IPV6_ADDRESS_SPACE,
1441 "%s", conn->login_ip);
1442 ls->last_fail_time = get_jiffies_64();
1443 }
1444
1445 spin_unlock(&ls->lock);
1446}
1447
1448struct iscsi_tiqn *iscsit_snmp_get_tiqn(struct iscsi_conn *conn)
1449{
1450 struct iscsi_portal_group *tpg;
1451
1452 if (!conn || !conn->sess)
1453 return NULL;
1454
1455 tpg = conn->sess->tpg;
1456 if (!tpg)
1457 return NULL;
1458
1459 if (!tpg->tpg_tiqn)
1460 return NULL;
1461
1462 return tpg->tpg_tiqn;
1463}