2 * iSCSI Initiator over TCP/IP Data-Path
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
6 * Copyright (C) 2005 - 2006 Mike Christie
7 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
8 * maintained by open-iscsi@googlegroups.com
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
12 * by the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * See the file COPYING included with this distribution for more details.
29 #include <linux/types.h>
30 #include <linux/list.h>
31 #include <linux/inet.h>
32 #include <linux/blkdev.h>
33 #include <linux/crypto.h>
34 #include <linux/delay.h>
35 #include <linux/kfifo.h>
36 #include <linux/scatterlist.h>
37 #include <linux/mutex.h>
39 #include <scsi/scsi_cmnd.h>
40 #include <scsi/scsi_host.h>
41 #include <scsi/scsi.h>
42 #include <scsi/scsi_transport_iscsi.h>
44 #include "iscsi_tcp.h"
46 #define ISCSI_TCP_VERSION "1.0-595"
48 MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
49 "Alex Aizman <itn780@yahoo.com>");
50 MODULE_DESCRIPTION("iSCSI/TCP data-path");
51 MODULE_LICENSE("GPL");
52 MODULE_VERSION(ISCSI_TCP_VERSION
);
53 /* #define DEBUG_TCP */
57 #define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
59 #define debug_tcp(fmt...)
69 static unsigned int iscsi_max_lun
= 512;
70 module_param_named(max_lun
, iscsi_max_lun
, uint
, S_IRUGO
);
73 iscsi_buf_init_iov(struct iscsi_buf
*ibuf
, char *vbuf
, int size
)
75 ibuf
->sg
.page
= virt_to_page(vbuf
);
76 ibuf
->sg
.offset
= offset_in_page(vbuf
);
77 ibuf
->sg
.length
= size
;
79 ibuf
->use_sendmsg
= 1;
83 iscsi_buf_init_sg(struct iscsi_buf
*ibuf
, struct scatterlist
*sg
)
85 ibuf
->sg
.page
= sg
->page
;
86 ibuf
->sg
.offset
= sg
->offset
;
87 ibuf
->sg
.length
= sg
->length
;
89 * Fastpath: sg element fits into single page
91 if (sg
->length
+ sg
->offset
<= PAGE_SIZE
&& !PageSlab(sg
->page
))
92 ibuf
->use_sendmsg
= 0;
94 ibuf
->use_sendmsg
= 1;
99 iscsi_buf_left(struct iscsi_buf
*ibuf
)
103 rc
= ibuf
->sg
.length
- ibuf
->sent
;
109 iscsi_hdr_digest(struct iscsi_conn
*conn
, struct iscsi_buf
*buf
,
112 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
114 crypto_digest_digest(tcp_conn
->tx_tfm
, &buf
->sg
, 1, crc
);
115 buf
->sg
.length
+= sizeof(uint32_t);
119 iscsi_hdr_extract(struct iscsi_tcp_conn
*tcp_conn
)
121 struct sk_buff
*skb
= tcp_conn
->in
.skb
;
123 tcp_conn
->in
.zero_copy_hdr
= 0;
125 if (tcp_conn
->in
.copy
>= tcp_conn
->hdr_size
&&
126 tcp_conn
->in_progress
== IN_PROGRESS_WAIT_HEADER
) {
128 * Zero-copy PDU Header: using connection context
129 * to store header pointer.
131 if (skb_shinfo(skb
)->frag_list
== NULL
&&
132 !skb_shinfo(skb
)->nr_frags
) {
133 tcp_conn
->in
.hdr
= (struct iscsi_hdr
*)
134 ((char*)skb
->data
+ tcp_conn
->in
.offset
);
135 tcp_conn
->in
.zero_copy_hdr
= 1;
137 /* ignoring return code since we checked
139 skb_copy_bits(skb
, tcp_conn
->in
.offset
,
140 &tcp_conn
->hdr
, tcp_conn
->hdr_size
);
141 tcp_conn
->in
.hdr
= &tcp_conn
->hdr
;
143 tcp_conn
->in
.offset
+= tcp_conn
->hdr_size
;
144 tcp_conn
->in
.copy
-= tcp_conn
->hdr_size
;
150 * PDU header scattered across SKB's,
151 * copying it... This'll happen quite rarely.
154 if (tcp_conn
->in_progress
== IN_PROGRESS_WAIT_HEADER
)
155 tcp_conn
->in
.hdr_offset
= 0;
157 hdr_remains
= tcp_conn
->hdr_size
- tcp_conn
->in
.hdr_offset
;
158 BUG_ON(hdr_remains
<= 0);
160 copylen
= min(tcp_conn
->in
.copy
, hdr_remains
);
161 skb_copy_bits(skb
, tcp_conn
->in
.offset
,
162 (char*)&tcp_conn
->hdr
+ tcp_conn
->in
.hdr_offset
,
165 debug_tcp("PDU gather offset %d bytes %d in.offset %d "
166 "in.copy %d\n", tcp_conn
->in
.hdr_offset
, copylen
,
167 tcp_conn
->in
.offset
, tcp_conn
->in
.copy
);
169 tcp_conn
->in
.offset
+= copylen
;
170 tcp_conn
->in
.copy
-= copylen
;
171 if (copylen
< hdr_remains
) {
172 tcp_conn
->in_progress
= IN_PROGRESS_HEADER_GATHER
;
173 tcp_conn
->in
.hdr_offset
+= copylen
;
176 tcp_conn
->in
.hdr
= &tcp_conn
->hdr
;
177 tcp_conn
->discontiguous_hdr_cnt
++;
178 tcp_conn
->in_progress
= IN_PROGRESS_WAIT_HEADER
;
185 * must be called with session lock
188 __iscsi_ctask_cleanup(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
190 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
191 struct scsi_cmnd
*sc
;
197 tcp_ctask
->xmstate
= XMSTATE_IDLE
;
198 tcp_ctask
->r2t
= NULL
;
202 * iscsi_data_rsp - SCSI Data-In Response processing
203 * @conn: iscsi connection
204 * @ctask: scsi command task
207 iscsi_data_rsp(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
210 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
211 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
212 struct iscsi_data_rsp
*rhdr
= (struct iscsi_data_rsp
*)tcp_conn
->in
.hdr
;
213 struct iscsi_session
*session
= conn
->session
;
214 int datasn
= be32_to_cpu(rhdr
->datasn
);
216 rc
= iscsi_check_assign_cmdsn(session
, (struct iscsi_nopin
*)rhdr
);
220 * setup Data-In byte counter (gets decremented..)
222 ctask
->data_count
= tcp_conn
->in
.datalen
;
224 if (tcp_conn
->in
.datalen
== 0)
227 if (ctask
->datasn
!= datasn
)
228 return ISCSI_ERR_DATASN
;
232 tcp_ctask
->data_offset
= be32_to_cpu(rhdr
->offset
);
233 if (tcp_ctask
->data_offset
+ tcp_conn
->in
.datalen
> ctask
->total_length
)
234 return ISCSI_ERR_DATA_OFFSET
;
236 if (rhdr
->flags
& ISCSI_FLAG_DATA_STATUS
) {
237 struct scsi_cmnd
*sc
= ctask
->sc
;
239 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
240 if (rhdr
->flags
& ISCSI_FLAG_DATA_UNDERFLOW
) {
241 int res_count
= be32_to_cpu(rhdr
->residual_count
);
244 res_count
<= sc
->request_bufflen
) {
245 sc
->resid
= res_count
;
246 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
248 sc
->result
= (DID_BAD_TARGET
<< 16) |
250 } else if (rhdr
->flags
& ISCSI_FLAG_DATA_OVERFLOW
) {
251 sc
->resid
= be32_to_cpu(rhdr
->residual_count
);
252 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
254 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
257 conn
->datain_pdus_cnt
++;
262 * iscsi_solicit_data_init - initialize first Data-Out
263 * @conn: iscsi connection
264 * @ctask: scsi command task
268 * Initialize first Data-Out within this R2T sequence and finds
269 * proper data_offset within this SCSI command.
271 * This function is called with connection lock taken.
274 iscsi_solicit_data_init(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
,
275 struct iscsi_r2t_info
*r2t
)
277 struct iscsi_data
*hdr
;
278 struct scsi_cmnd
*sc
= ctask
->sc
;
279 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
281 hdr
= &r2t
->dtask
.hdr
;
282 memset(hdr
, 0, sizeof(struct iscsi_data
));
284 hdr
->datasn
= cpu_to_be32(r2t
->solicit_datasn
);
285 r2t
->solicit_datasn
++;
286 hdr
->opcode
= ISCSI_OP_SCSI_DATA_OUT
;
287 memcpy(hdr
->lun
, ctask
->hdr
->lun
, sizeof(hdr
->lun
));
288 hdr
->itt
= ctask
->hdr
->itt
;
289 hdr
->exp_statsn
= r2t
->exp_statsn
;
290 hdr
->offset
= cpu_to_be32(r2t
->data_offset
);
291 if (r2t
->data_length
> conn
->max_xmit_dlength
) {
292 hton24(hdr
->dlength
, conn
->max_xmit_dlength
);
293 r2t
->data_count
= conn
->max_xmit_dlength
;
296 hton24(hdr
->dlength
, r2t
->data_length
);
297 r2t
->data_count
= r2t
->data_length
;
298 hdr
->flags
= ISCSI_FLAG_CMD_FINAL
;
300 conn
->dataout_pdus_cnt
++;
304 iscsi_buf_init_iov(&r2t
->headbuf
, (char*)hdr
,
305 sizeof(struct iscsi_hdr
));
309 struct scatterlist
*sg
= sc
->request_buffer
;
312 for (i
= 0; i
< sc
->use_sg
; i
++, sg
+= 1) {
313 /* FIXME: prefetch ? */
314 if (sg_count
+ sg
->length
> r2t
->data_offset
) {
319 /* offset within this page */
320 page_offset
= r2t
->data_offset
- sg_count
;
322 /* fill in this buffer */
323 iscsi_buf_init_sg(&r2t
->sendbuf
, sg
);
324 r2t
->sendbuf
.sg
.offset
+= page_offset
;
325 r2t
->sendbuf
.sg
.length
-= page_offset
;
327 /* xmit logic will continue with next one */
331 sg_count
+= sg
->length
;
333 BUG_ON(r2t
->sg
== NULL
);
335 iscsi_buf_init_iov(&tcp_ctask
->sendbuf
,
336 (char*)sc
->request_buffer
+ r2t
->data_offset
,
341 * iscsi_r2t_rsp - iSCSI R2T Response processing
342 * @conn: iscsi connection
343 * @ctask: scsi command task
346 iscsi_r2t_rsp(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
348 struct iscsi_r2t_info
*r2t
;
349 struct iscsi_session
*session
= conn
->session
;
350 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
351 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
352 struct iscsi_r2t_rsp
*rhdr
= (struct iscsi_r2t_rsp
*)tcp_conn
->in
.hdr
;
353 int r2tsn
= be32_to_cpu(rhdr
->r2tsn
);
356 if (tcp_conn
->in
.datalen
)
357 return ISCSI_ERR_DATALEN
;
359 if (tcp_ctask
->exp_r2tsn
&& tcp_ctask
->exp_r2tsn
!= r2tsn
)
360 return ISCSI_ERR_R2TSN
;
362 rc
= iscsi_check_assign_cmdsn(session
, (struct iscsi_nopin
*)rhdr
);
366 /* FIXME: use R2TSN to detect missing R2T */
368 /* fill-in new R2T associated with the task */
369 spin_lock(&session
->lock
);
370 if (!ctask
->sc
|| ctask
->mtask
||
371 session
->state
!= ISCSI_STATE_LOGGED_IN
) {
372 printk(KERN_INFO
"iscsi_tcp: dropping R2T itt %d in "
373 "recovery...\n", ctask
->itt
);
374 spin_unlock(&session
->lock
);
377 rc
= __kfifo_get(tcp_ctask
->r2tpool
.queue
, (void*)&r2t
, sizeof(void*));
380 r2t
->exp_statsn
= rhdr
->statsn
;
381 r2t
->data_length
= be32_to_cpu(rhdr
->data_length
);
382 if (r2t
->data_length
== 0 ||
383 r2t
->data_length
> session
->max_burst
) {
384 spin_unlock(&session
->lock
);
385 return ISCSI_ERR_DATALEN
;
388 r2t
->data_offset
= be32_to_cpu(rhdr
->data_offset
);
389 if (r2t
->data_offset
+ r2t
->data_length
> ctask
->total_length
) {
390 spin_unlock(&session
->lock
);
391 return ISCSI_ERR_DATALEN
;
394 r2t
->ttt
= rhdr
->ttt
; /* no flip */
395 r2t
->solicit_datasn
= 0;
397 iscsi_solicit_data_init(conn
, ctask
, r2t
);
399 tcp_ctask
->exp_r2tsn
= r2tsn
+ 1;
400 tcp_ctask
->xmstate
|= XMSTATE_SOL_HDR
;
401 __kfifo_put(tcp_ctask
->r2tqueue
, (void*)&r2t
, sizeof(void*));
402 __kfifo_put(conn
->xmitqueue
, (void*)&ctask
, sizeof(void*));
404 scsi_queue_work(session
->host
, &conn
->xmitwork
);
405 conn
->r2t_pdus_cnt
++;
406 spin_unlock(&session
->lock
);
412 iscsi_tcp_hdr_recv(struct iscsi_conn
*conn
)
414 int rc
= 0, opcode
, ahslen
;
415 struct iscsi_hdr
*hdr
;
416 struct iscsi_session
*session
= conn
->session
;
417 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
418 uint32_t cdgst
, rdgst
= 0, itt
;
420 hdr
= tcp_conn
->in
.hdr
;
422 /* verify PDU length */
423 tcp_conn
->in
.datalen
= ntoh24(hdr
->dlength
);
424 if (tcp_conn
->in
.datalen
> conn
->max_recv_dlength
) {
425 printk(KERN_ERR
"iscsi_tcp: datalen %d > %d\n",
426 tcp_conn
->in
.datalen
, conn
->max_recv_dlength
);
427 return ISCSI_ERR_DATALEN
;
429 tcp_conn
->data_copied
= 0;
432 ahslen
= hdr
->hlength
<< 2;
433 tcp_conn
->in
.offset
+= ahslen
;
434 tcp_conn
->in
.copy
-= ahslen
;
435 if (tcp_conn
->in
.copy
< 0) {
436 printk(KERN_ERR
"iscsi_tcp: can't handle AHS with length "
437 "%d bytes\n", ahslen
);
438 return ISCSI_ERR_AHSLEN
;
441 /* calculate read padding */
442 tcp_conn
->in
.padding
= tcp_conn
->in
.datalen
& (ISCSI_PAD_LEN
-1);
443 if (tcp_conn
->in
.padding
) {
444 tcp_conn
->in
.padding
= ISCSI_PAD_LEN
- tcp_conn
->in
.padding
;
445 debug_scsi("read padding %d bytes\n", tcp_conn
->in
.padding
);
448 if (conn
->hdrdgst_en
) {
449 struct scatterlist sg
;
451 sg_init_one(&sg
, (u8
*)hdr
,
452 sizeof(struct iscsi_hdr
) + ahslen
);
453 crypto_digest_digest(tcp_conn
->rx_tfm
, &sg
, 1, (u8
*)&cdgst
);
454 rdgst
= *(uint32_t*)((char*)hdr
+ sizeof(struct iscsi_hdr
) +
456 if (cdgst
!= rdgst
) {
457 printk(KERN_ERR
"iscsi_tcp: hdrdgst error "
458 "recv 0x%x calc 0x%x\n", rdgst
, cdgst
);
459 return ISCSI_ERR_HDR_DGST
;
463 opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
464 /* verify itt (itt encoding: age+cid+itt) */
465 rc
= iscsi_verify_itt(conn
, hdr
, &itt
);
466 if (rc
== ISCSI_ERR_NO_SCSI_CMD
) {
467 tcp_conn
->in
.datalen
= 0; /* force drop */
472 debug_tcp("opcode 0x%x offset %d copy %d ahslen %d datalen %d\n",
473 opcode
, tcp_conn
->in
.offset
, tcp_conn
->in
.copy
,
474 ahslen
, tcp_conn
->in
.datalen
);
477 case ISCSI_OP_SCSI_DATA_IN
:
478 tcp_conn
->in
.ctask
= session
->cmds
[itt
];
479 rc
= iscsi_data_rsp(conn
, tcp_conn
->in
.ctask
);
481 case ISCSI_OP_SCSI_CMD_RSP
:
482 tcp_conn
->in
.ctask
= session
->cmds
[itt
];
483 if (tcp_conn
->in
.datalen
)
486 spin_lock(&session
->lock
);
487 __iscsi_ctask_cleanup(conn
, tcp_conn
->in
.ctask
);
488 rc
= __iscsi_complete_pdu(conn
, hdr
, NULL
, 0);
489 spin_unlock(&session
->lock
);
492 tcp_conn
->in
.ctask
= session
->cmds
[itt
];
494 rc
= ISCSI_ERR_AHSLEN
;
495 else if (tcp_conn
->in
.ctask
->sc
->sc_data_direction
==
497 rc
= iscsi_r2t_rsp(conn
, tcp_conn
->in
.ctask
);
499 rc
= ISCSI_ERR_PROTO
;
501 case ISCSI_OP_LOGIN_RSP
:
502 case ISCSI_OP_TEXT_RSP
:
503 case ISCSI_OP_LOGOUT_RSP
:
504 case ISCSI_OP_NOOP_IN
:
505 case ISCSI_OP_REJECT
:
506 case ISCSI_OP_ASYNC_EVENT
:
507 if (tcp_conn
->in
.datalen
)
510 case ISCSI_OP_SCSI_TMFUNC_RSP
:
511 rc
= iscsi_complete_pdu(conn
, hdr
, NULL
, 0);
514 rc
= ISCSI_ERR_BAD_OPCODE
;
522 * if we did zero copy for the header but we will need multiple
523 * skbs to complete the command then we have to copy the header
526 if (tcp_conn
->in
.zero_copy_hdr
&& tcp_conn
->in
.copy
<
527 (tcp_conn
->in
.datalen
+ tcp_conn
->in
.padding
+
528 (conn
->datadgst_en
? 4 : 0))) {
529 debug_tcp("Copying header for later use. in.copy %d in.datalen"
530 " %d\n", tcp_conn
->in
.copy
, tcp_conn
->in
.datalen
);
531 memcpy(&tcp_conn
->hdr
, tcp_conn
->in
.hdr
,
532 sizeof(struct iscsi_hdr
));
533 tcp_conn
->in
.hdr
= &tcp_conn
->hdr
;
534 tcp_conn
->in
.zero_copy_hdr
= 0;
540 * iscsi_ctask_copy - copy skb bits to the destanation cmd task
541 * @conn: iscsi tcp connection
542 * @ctask: scsi command task
543 * @buf: buffer to copy to
544 * @buf_size: size of buffer
545 * @offset: offset within the buffer
548 * The function calls skb_copy_bits() and updates per-connection and
549 * per-cmd byte counters.
551 * Read counters (in bytes):
553 * conn->in.offset offset within in progress SKB
554 * conn->in.copy left to copy from in progress SKB
556 * conn->in.copied copied already from in progress SKB
557 * conn->data_copied copied already from in progress buffer
558 * ctask->sent total bytes sent up to the MidLayer
559 * ctask->data_count left to copy from in progress Data-In
560 * buf_left left to copy from in progress buffer
563 iscsi_ctask_copy(struct iscsi_tcp_conn
*tcp_conn
, struct iscsi_cmd_task
*ctask
,
564 void *buf
, int buf_size
, int offset
)
566 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
567 int buf_left
= buf_size
- (tcp_conn
->data_copied
+ offset
);
568 int size
= min(tcp_conn
->in
.copy
, buf_left
);
571 size
= min(size
, ctask
->data_count
);
573 debug_tcp("ctask_copy %d bytes at offset %d copied %d\n",
574 size
, tcp_conn
->in
.offset
, tcp_conn
->in
.copied
);
577 BUG_ON(tcp_ctask
->sent
+ size
> ctask
->total_length
);
579 rc
= skb_copy_bits(tcp_conn
->in
.skb
, tcp_conn
->in
.offset
,
580 (char*)buf
+ (offset
+ tcp_conn
->data_copied
), size
);
581 /* must fit into skb->len */
584 tcp_conn
->in
.offset
+= size
;
585 tcp_conn
->in
.copy
-= size
;
586 tcp_conn
->in
.copied
+= size
;
587 tcp_conn
->data_copied
+= size
;
588 tcp_ctask
->sent
+= size
;
589 ctask
->data_count
-= size
;
591 BUG_ON(tcp_conn
->in
.copy
< 0);
592 BUG_ON(ctask
->data_count
< 0);
594 if (buf_size
!= (tcp_conn
->data_copied
+ offset
)) {
595 if (!ctask
->data_count
) {
596 BUG_ON(buf_size
- tcp_conn
->data_copied
< 0);
597 /* done with this PDU */
598 return buf_size
- tcp_conn
->data_copied
;
603 /* done with this buffer or with both - PDU and buffer */
604 tcp_conn
->data_copied
= 0;
609 * iscsi_tcp_copy - copy skb bits to the destanation buffer
610 * @conn: iscsi tcp connection
613 * The function calls skb_copy_bits() and updates per-connection
617 iscsi_tcp_copy(struct iscsi_tcp_conn
*tcp_conn
)
619 void *buf
= tcp_conn
->data
;
620 int buf_size
= tcp_conn
->in
.datalen
;
621 int buf_left
= buf_size
- tcp_conn
->data_copied
;
622 int size
= min(tcp_conn
->in
.copy
, buf_left
);
625 debug_tcp("tcp_copy %d bytes at offset %d copied %d\n",
626 size
, tcp_conn
->in
.offset
, tcp_conn
->data_copied
);
629 rc
= skb_copy_bits(tcp_conn
->in
.skb
, tcp_conn
->in
.offset
,
630 (char*)buf
+ tcp_conn
->data_copied
, size
);
633 tcp_conn
->in
.offset
+= size
;
634 tcp_conn
->in
.copy
-= size
;
635 tcp_conn
->in
.copied
+= size
;
636 tcp_conn
->data_copied
+= size
;
638 if (buf_size
!= tcp_conn
->data_copied
)
645 partial_sg_digest_update(struct iscsi_tcp_conn
*tcp_conn
,
646 struct scatterlist
*sg
, int offset
, int length
)
648 struct scatterlist temp
;
650 memcpy(&temp
, sg
, sizeof(struct scatterlist
));
651 temp
.offset
= offset
;
652 temp
.length
= length
;
653 crypto_digest_update(tcp_conn
->data_rx_tfm
, &temp
, 1);
657 iscsi_recv_digest_update(struct iscsi_tcp_conn
*tcp_conn
, char* buf
, int len
)
659 struct scatterlist tmp
;
661 sg_init_one(&tmp
, buf
, len
);
662 crypto_digest_update(tcp_conn
->data_rx_tfm
, &tmp
, 1);
665 static int iscsi_scsi_data_in(struct iscsi_conn
*conn
)
667 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
668 struct iscsi_cmd_task
*ctask
= tcp_conn
->in
.ctask
;
669 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
670 struct scsi_cmnd
*sc
= ctask
->sc
;
671 struct scatterlist
*sg
;
672 int i
, offset
, rc
= 0;
674 BUG_ON((void*)ctask
!= sc
->SCp
.ptr
);
677 * copying Data-In into the Scsi_Cmnd
680 i
= ctask
->data_count
;
681 rc
= iscsi_ctask_copy(tcp_conn
, ctask
, sc
->request_buffer
,
683 tcp_ctask
->data_offset
);
686 if (conn
->datadgst_en
)
687 iscsi_recv_digest_update(tcp_conn
, sc
->request_buffer
,
693 offset
= tcp_ctask
->data_offset
;
694 sg
= sc
->request_buffer
;
696 if (tcp_ctask
->data_offset
)
697 for (i
= 0; i
< tcp_ctask
->sg_count
; i
++)
698 offset
-= sg
[i
].length
;
699 /* we've passed through partial sg*/
703 for (i
= tcp_ctask
->sg_count
; i
< sc
->use_sg
; i
++) {
706 dest
= kmap_atomic(sg
[i
].page
, KM_SOFTIRQ0
);
707 rc
= iscsi_ctask_copy(tcp_conn
, ctask
, dest
+ sg
[i
].offset
,
708 sg
[i
].length
, offset
);
709 kunmap_atomic(dest
, KM_SOFTIRQ0
);
711 /* continue with the next SKB/PDU */
714 if (conn
->datadgst_en
) {
716 crypto_digest_update(
717 tcp_conn
->data_rx_tfm
,
720 partial_sg_digest_update(tcp_conn
,
722 sg
[i
].offset
+ offset
,
723 sg
[i
].length
- offset
);
726 tcp_ctask
->sg_count
++;
729 if (!ctask
->data_count
) {
730 if (rc
&& conn
->datadgst_en
)
732 * data-in is complete, but buffer not...
734 partial_sg_digest_update(tcp_conn
, &sg
[i
],
735 sg
[i
].offset
, sg
[i
].length
-rc
);
740 if (!tcp_conn
->in
.copy
)
743 BUG_ON(ctask
->data_count
);
746 /* check for non-exceptional status */
747 if (tcp_conn
->in
.hdr
->flags
& ISCSI_FLAG_DATA_STATUS
) {
748 debug_scsi("done [sc %lx res %d itt 0x%x]\n",
749 (long)sc
, sc
->result
, ctask
->itt
);
750 spin_lock(&conn
->session
->lock
);
751 __iscsi_ctask_cleanup(conn
, ctask
);
752 __iscsi_complete_pdu(conn
, tcp_conn
->in
.hdr
, NULL
, 0);
753 spin_unlock(&conn
->session
->lock
);
760 iscsi_data_recv(struct iscsi_conn
*conn
)
762 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
765 opcode
= tcp_conn
->in
.hdr
->opcode
& ISCSI_OPCODE_MASK
;
767 case ISCSI_OP_SCSI_DATA_IN
:
768 rc
= iscsi_scsi_data_in(conn
);
770 case ISCSI_OP_SCSI_CMD_RSP
:
771 spin_lock(&conn
->session
->lock
);
772 __iscsi_ctask_cleanup(conn
, tcp_conn
->in
.ctask
);
773 spin_unlock(&conn
->session
->lock
);
774 case ISCSI_OP_TEXT_RSP
:
775 case ISCSI_OP_LOGIN_RSP
:
776 case ISCSI_OP_NOOP_IN
:
777 case ISCSI_OP_ASYNC_EVENT
:
778 case ISCSI_OP_REJECT
:
780 * Collect data segment to the connection's data
783 if (iscsi_tcp_copy(tcp_conn
)) {
788 rc
= iscsi_complete_pdu(conn
, tcp_conn
->in
.hdr
, tcp_conn
->data
,
789 tcp_conn
->in
.datalen
);
790 if (!rc
&& conn
->datadgst_en
&& opcode
!= ISCSI_OP_LOGIN_RSP
)
791 iscsi_recv_digest_update(tcp_conn
, tcp_conn
->data
,
792 tcp_conn
->in
.datalen
);
802 * iscsi_tcp_data_recv - TCP receive in sendfile fashion
803 * @rd_desc: read descriptor
804 * @skb: socket buffer
805 * @offset: offset in skb
806 * @len: skb->len - offset
809 iscsi_tcp_data_recv(read_descriptor_t
*rd_desc
, struct sk_buff
*skb
,
810 unsigned int offset
, size_t len
)
813 struct iscsi_conn
*conn
= rd_desc
->arg
.data
;
814 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
816 char pad
[ISCSI_PAD_LEN
];
817 struct scatterlist sg
;
820 * Save current SKB and its offset in the corresponding
821 * connection context.
823 tcp_conn
->in
.copy
= skb
->len
- offset
;
824 tcp_conn
->in
.offset
= offset
;
825 tcp_conn
->in
.skb
= skb
;
826 tcp_conn
->in
.len
= tcp_conn
->in
.copy
;
827 BUG_ON(tcp_conn
->in
.copy
<= 0);
828 debug_tcp("in %d bytes\n", tcp_conn
->in
.copy
);
831 tcp_conn
->in
.copied
= 0;
834 if (unlikely(conn
->suspend_rx
)) {
835 debug_tcp("conn %d Rx suspended!\n", conn
->id
);
839 if (tcp_conn
->in_progress
== IN_PROGRESS_WAIT_HEADER
||
840 tcp_conn
->in_progress
== IN_PROGRESS_HEADER_GATHER
) {
841 rc
= iscsi_hdr_extract(tcp_conn
);
846 iscsi_conn_failure(conn
, rc
);
852 * Verify and process incoming PDU header.
854 rc
= iscsi_tcp_hdr_recv(conn
);
855 if (!rc
&& tcp_conn
->in
.datalen
) {
856 if (conn
->datadgst_en
) {
857 BUG_ON(!tcp_conn
->data_rx_tfm
);
858 crypto_digest_init(tcp_conn
->data_rx_tfm
);
860 tcp_conn
->in_progress
= IN_PROGRESS_DATA_RECV
;
862 iscsi_conn_failure(conn
, rc
);
867 if (tcp_conn
->in_progress
== IN_PROGRESS_DDIGEST_RECV
) {
868 uint32_t recv_digest
;
870 debug_tcp("extra data_recv offset %d copy %d\n",
871 tcp_conn
->in
.offset
, tcp_conn
->in
.copy
);
872 skb_copy_bits(tcp_conn
->in
.skb
, tcp_conn
->in
.offset
,
874 tcp_conn
->in
.offset
+= 4;
875 tcp_conn
->in
.copy
-= 4;
876 if (recv_digest
!= tcp_conn
->in
.datadgst
) {
877 debug_tcp("iscsi_tcp: data digest error!"
878 "0x%x != 0x%x\n", recv_digest
,
879 tcp_conn
->in
.datadgst
);
880 iscsi_conn_failure(conn
, ISCSI_ERR_DATA_DGST
);
883 debug_tcp("iscsi_tcp: data digest match!"
884 "0x%x == 0x%x\n", recv_digest
,
885 tcp_conn
->in
.datadgst
);
886 tcp_conn
->in_progress
= IN_PROGRESS_WAIT_HEADER
;
890 if (tcp_conn
->in_progress
== IN_PROGRESS_DATA_RECV
&&
893 debug_tcp("data_recv offset %d copy %d\n",
894 tcp_conn
->in
.offset
, tcp_conn
->in
.copy
);
896 rc
= iscsi_data_recv(conn
);
900 iscsi_conn_failure(conn
, rc
);
903 tcp_conn
->in
.copy
-= tcp_conn
->in
.padding
;
904 tcp_conn
->in
.offset
+= tcp_conn
->in
.padding
;
905 if (conn
->datadgst_en
) {
906 if (tcp_conn
->in
.padding
) {
907 debug_tcp("padding -> %d\n",
908 tcp_conn
->in
.padding
);
909 memset(pad
, 0, tcp_conn
->in
.padding
);
910 sg_init_one(&sg
, pad
, tcp_conn
->in
.padding
);
911 crypto_digest_update(tcp_conn
->data_rx_tfm
,
914 crypto_digest_final(tcp_conn
->data_rx_tfm
,
915 (u8
*) & tcp_conn
->in
.datadgst
);
916 debug_tcp("rx digest 0x%x\n", tcp_conn
->in
.datadgst
);
917 tcp_conn
->in_progress
= IN_PROGRESS_DDIGEST_RECV
;
919 tcp_conn
->in_progress
= IN_PROGRESS_WAIT_HEADER
;
922 debug_tcp("f, processed %d from out of %d padding %d\n",
923 tcp_conn
->in
.offset
- offset
, (int)len
, tcp_conn
->in
.padding
);
924 BUG_ON(tcp_conn
->in
.offset
- offset
> len
);
926 if (tcp_conn
->in
.offset
- offset
!= len
) {
927 debug_tcp("continue to process %d bytes\n",
928 (int)len
- (tcp_conn
->in
.offset
- offset
));
933 processed
= tcp_conn
->in
.offset
- offset
;
934 BUG_ON(processed
== 0);
938 processed
= tcp_conn
->in
.offset
- offset
;
939 debug_tcp("c, processed %d from out of %d rd_desc_cnt %d\n",
940 processed
, (int)len
, (int)rd_desc
->count
);
941 BUG_ON(processed
== 0);
942 BUG_ON(processed
> len
);
944 conn
->rxdata_octets
+= processed
;
949 iscsi_tcp_data_ready(struct sock
*sk
, int flag
)
951 struct iscsi_conn
*conn
= sk
->sk_user_data
;
952 read_descriptor_t rd_desc
;
954 read_lock(&sk
->sk_callback_lock
);
957 * Use rd_desc to pass 'conn' to iscsi_tcp_data_recv.
958 * We set count to 1 because we want the network layer to
959 * hand us all the skbs that are available. iscsi_tcp_data_recv
960 * handled pdus that cross buffers or pdus that still need data.
962 rd_desc
.arg
.data
= conn
;
964 tcp_read_sock(sk
, &rd_desc
, iscsi_tcp_data_recv
);
966 read_unlock(&sk
->sk_callback_lock
);
970 iscsi_tcp_state_change(struct sock
*sk
)
972 struct iscsi_tcp_conn
*tcp_conn
;
973 struct iscsi_conn
*conn
;
974 struct iscsi_session
*session
;
975 void (*old_state_change
)(struct sock
*);
977 read_lock(&sk
->sk_callback_lock
);
979 conn
= (struct iscsi_conn
*)sk
->sk_user_data
;
980 session
= conn
->session
;
982 if ((sk
->sk_state
== TCP_CLOSE_WAIT
||
983 sk
->sk_state
== TCP_CLOSE
) &&
984 !atomic_read(&sk
->sk_rmem_alloc
)) {
985 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
986 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
989 tcp_conn
= conn
->dd_data
;
990 old_state_change
= tcp_conn
->old_state_change
;
992 read_unlock(&sk
->sk_callback_lock
);
994 old_state_change(sk
);
998 * iscsi_write_space - Called when more output buffer space is available
999 * @sk: socket space is available for
1002 iscsi_write_space(struct sock
*sk
)
1004 struct iscsi_conn
*conn
= (struct iscsi_conn
*)sk
->sk_user_data
;
1005 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1007 tcp_conn
->old_write_space(sk
);
1008 debug_tcp("iscsi_write_space: cid %d\n", conn
->id
);
1009 scsi_queue_work(conn
->session
->host
, &conn
->xmitwork
);
1013 iscsi_conn_set_callbacks(struct iscsi_conn
*conn
)
1015 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1016 struct sock
*sk
= tcp_conn
->sock
->sk
;
1018 /* assign new callbacks */
1019 write_lock_bh(&sk
->sk_callback_lock
);
1020 sk
->sk_user_data
= conn
;
1021 tcp_conn
->old_data_ready
= sk
->sk_data_ready
;
1022 tcp_conn
->old_state_change
= sk
->sk_state_change
;
1023 tcp_conn
->old_write_space
= sk
->sk_write_space
;
1024 sk
->sk_data_ready
= iscsi_tcp_data_ready
;
1025 sk
->sk_state_change
= iscsi_tcp_state_change
;
1026 sk
->sk_write_space
= iscsi_write_space
;
1027 write_unlock_bh(&sk
->sk_callback_lock
);
1031 iscsi_conn_restore_callbacks(struct iscsi_conn
*conn
)
1033 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1034 struct sock
*sk
= tcp_conn
->sock
->sk
;
1036 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1037 write_lock_bh(&sk
->sk_callback_lock
);
1038 sk
->sk_user_data
= NULL
;
1039 sk
->sk_data_ready
= tcp_conn
->old_data_ready
;
1040 sk
->sk_state_change
= tcp_conn
->old_state_change
;
1041 sk
->sk_write_space
= tcp_conn
->old_write_space
;
1042 sk
->sk_no_check
= 0;
1043 write_unlock_bh(&sk
->sk_callback_lock
);
1047 * iscsi_send - generic send routine
1048 * @sk: kernel's socket
1049 * @buf: buffer to write from
1050 * @size: actual size to write
1051 * @flags: socket's flags
1054 iscsi_send(struct iscsi_conn
*conn
, struct iscsi_buf
*buf
, int size
, int flags
)
1056 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1057 struct socket
*sk
= tcp_conn
->sock
;
1058 int offset
= buf
->sg
.offset
+ buf
->sent
, res
;
1061 * if we got use_sg=0 or are sending something we kmallocd
1062 * then we did not have to do kmap (kmap returns page_address)
1064 * if we got use_sg > 0, but had to drop down, we do not
1065 * set clustering so this should only happen for that
1068 if (buf
->use_sendmsg
)
1069 res
= sock_no_sendpage(sk
, buf
->sg
.page
, offset
, size
, flags
);
1071 res
= tcp_conn
->sendpage(sk
, buf
->sg
.page
, offset
, size
, flags
);
1074 conn
->txdata_octets
+= res
;
1079 tcp_conn
->sendpage_failures_cnt
++;
1083 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1088 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1089 * @conn: iscsi connection
1090 * @buf: buffer to write from
1091 * @datalen: lenght of data to be sent after the header
1097 iscsi_sendhdr(struct iscsi_conn
*conn
, struct iscsi_buf
*buf
, int datalen
)
1099 int flags
= 0; /* MSG_DONTWAIT; */
1102 size
= buf
->sg
.length
- buf
->sent
;
1103 BUG_ON(buf
->sent
+ size
> buf
->sg
.length
);
1104 if (buf
->sent
+ size
!= buf
->sg
.length
|| datalen
)
1107 res
= iscsi_send(conn
, buf
, size
, flags
);
1108 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size
, buf
->sent
, res
);
1119 * iscsi_sendpage - send one page of iSCSI Data-Out.
1120 * @conn: iscsi connection
1121 * @buf: buffer to write from
1122 * @count: remaining data
1123 * @sent: number of bytes sent
1129 iscsi_sendpage(struct iscsi_conn
*conn
, struct iscsi_buf
*buf
,
1130 int *count
, int *sent
)
1132 int flags
= 0; /* MSG_DONTWAIT; */
1135 size
= buf
->sg
.length
- buf
->sent
;
1136 BUG_ON(buf
->sent
+ size
> buf
->sg
.length
);
1139 if (buf
->sent
+ size
!= buf
->sg
.length
|| *count
!= size
)
1142 res
= iscsi_send(conn
, buf
, size
, flags
);
1143 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1144 size
, buf
->sent
, *count
, *sent
, res
);
1157 iscsi_data_digest_init(struct iscsi_tcp_conn
*tcp_conn
,
1158 struct iscsi_cmd_task
*ctask
)
1160 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1162 BUG_ON(!tcp_conn
->data_tx_tfm
);
1163 crypto_digest_init(tcp_conn
->data_tx_tfm
);
1164 tcp_ctask
->digest_count
= 4;
1168 iscsi_digest_final_send(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
,
1169 struct iscsi_buf
*buf
, uint32_t *digest
, int final
)
1171 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1172 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1177 crypto_digest_final(tcp_conn
->data_tx_tfm
, (u8
*)digest
);
1179 iscsi_buf_init_iov(buf
, (char*)digest
, 4);
1180 rc
= iscsi_sendpage(conn
, buf
, &tcp_ctask
->digest_count
, &sent
);
1182 tcp_ctask
->datadigest
= *digest
;
1183 tcp_ctask
->xmstate
|= XMSTATE_DATA_DIGEST
;
1185 tcp_ctask
->digest_count
= 4;
1190 * iscsi_solicit_data_cont - initialize next Data-Out
1191 * @conn: iscsi connection
1192 * @ctask: scsi command task
1194 * @left: bytes left to transfer
1197 * Initialize next Data-Out within this R2T sequence and continue
1198 * to process next Scatter-Gather element(if any) of this SCSI command.
1200 * Called under connection lock.
1203 iscsi_solicit_data_cont(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
,
1204 struct iscsi_r2t_info
*r2t
, int left
)
1206 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1207 struct iscsi_data
*hdr
;
1208 struct scsi_cmnd
*sc
= ctask
->sc
;
1211 hdr
= &r2t
->dtask
.hdr
;
1212 memset(hdr
, 0, sizeof(struct iscsi_data
));
1213 hdr
->ttt
= r2t
->ttt
;
1214 hdr
->datasn
= cpu_to_be32(r2t
->solicit_datasn
);
1215 r2t
->solicit_datasn
++;
1216 hdr
->opcode
= ISCSI_OP_SCSI_DATA_OUT
;
1217 memcpy(hdr
->lun
, ctask
->hdr
->lun
, sizeof(hdr
->lun
));
1218 hdr
->itt
= ctask
->hdr
->itt
;
1219 hdr
->exp_statsn
= r2t
->exp_statsn
;
1220 new_offset
= r2t
->data_offset
+ r2t
->sent
;
1221 hdr
->offset
= cpu_to_be32(new_offset
);
1222 if (left
> conn
->max_xmit_dlength
) {
1223 hton24(hdr
->dlength
, conn
->max_xmit_dlength
);
1224 r2t
->data_count
= conn
->max_xmit_dlength
;
1226 hton24(hdr
->dlength
, left
);
1227 r2t
->data_count
= left
;
1228 hdr
->flags
= ISCSI_FLAG_CMD_FINAL
;
1230 conn
->dataout_pdus_cnt
++;
1232 iscsi_buf_init_iov(&r2t
->headbuf
, (char*)hdr
,
1233 sizeof(struct iscsi_hdr
));
1235 if (sc
->use_sg
&& !iscsi_buf_left(&r2t
->sendbuf
)) {
1236 BUG_ON(tcp_ctask
->bad_sg
== r2t
->sg
);
1237 iscsi_buf_init_sg(&r2t
->sendbuf
, r2t
->sg
);
1240 iscsi_buf_init_iov(&tcp_ctask
->sendbuf
,
1241 (char*)sc
->request_buffer
+ new_offset
,
1246 iscsi_unsolicit_data_init(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
1248 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1249 struct iscsi_data_task
*dtask
;
1251 dtask
= tcp_ctask
->dtask
= &tcp_ctask
->unsol_dtask
;
1252 iscsi_prep_unsolicit_data_pdu(ctask
, &dtask
->hdr
,
1253 tcp_ctask
->r2t_data_count
);
1254 iscsi_buf_init_iov(&tcp_ctask
->headbuf
, (char*)&dtask
->hdr
,
1255 sizeof(struct iscsi_hdr
));
1259 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
1260 * @conn: iscsi connection
1261 * @ctask: scsi command task
1265 iscsi_tcp_cmd_init(struct iscsi_cmd_task
*ctask
)
1267 struct scsi_cmnd
*sc
= ctask
->sc
;
1268 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1270 BUG_ON(__kfifo_len(tcp_ctask
->r2tqueue
));
1272 tcp_ctask
->sent
= 0;
1273 tcp_ctask
->sg_count
= 0;
1275 if (sc
->sc_data_direction
== DMA_TO_DEVICE
) {
1276 tcp_ctask
->xmstate
= XMSTATE_W_HDR
;
1277 tcp_ctask
->exp_r2tsn
= 0;
1278 BUG_ON(ctask
->total_length
== 0);
1281 struct scatterlist
*sg
= sc
->request_buffer
;
1283 iscsi_buf_init_sg(&tcp_ctask
->sendbuf
,
1284 &sg
[tcp_ctask
->sg_count
++]);
1286 tcp_ctask
->bad_sg
= sg
+ sc
->use_sg
;
1288 iscsi_buf_init_iov(&tcp_ctask
->sendbuf
,
1290 sc
->request_bufflen
);
1292 if (ctask
->imm_count
)
1293 tcp_ctask
->xmstate
|= XMSTATE_IMM_DATA
;
1295 tcp_ctask
->pad_count
= ctask
->total_length
& (ISCSI_PAD_LEN
-1);
1296 if (tcp_ctask
->pad_count
) {
1297 tcp_ctask
->pad_count
= ISCSI_PAD_LEN
-
1298 tcp_ctask
->pad_count
;
1299 debug_scsi("write padding %d bytes\n",
1300 tcp_ctask
->pad_count
);
1301 tcp_ctask
->xmstate
|= XMSTATE_W_PAD
;
1304 if (ctask
->unsol_count
)
1305 tcp_ctask
->xmstate
|= XMSTATE_UNS_HDR
|
1307 tcp_ctask
->r2t_data_count
= ctask
->total_length
-
1311 debug_scsi("cmd [itt %x total %d imm %d imm_data %d "
1313 ctask
->itt
, ctask
->total_length
, ctask
->imm_count
,
1314 ctask
->unsol_count
, tcp_ctask
->r2t_data_count
);
1316 tcp_ctask
->xmstate
= XMSTATE_R_HDR
;
1318 iscsi_buf_init_iov(&tcp_ctask
->headbuf
, (char*)ctask
->hdr
,
1319 sizeof(struct iscsi_hdr
));
1323 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
1324 * @conn: iscsi connection
1325 * @mtask: task management task
1328 * The function can return -EAGAIN in which case caller must
1329 * call it again later, or recover. '0' return code means successful
1332 * Management xmit state machine consists of two states:
1333 * IN_PROGRESS_IMM_HEAD - PDU Header xmit in progress
1334 * IN_PROGRESS_IMM_DATA - PDU Data xmit in progress
1337 iscsi_tcp_mtask_xmit(struct iscsi_conn
*conn
, struct iscsi_mgmt_task
*mtask
)
1339 struct iscsi_tcp_mgmt_task
*tcp_mtask
= mtask
->dd_data
;
1342 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
1343 conn
->id
, tcp_mtask
->xmstate
, mtask
->itt
);
1345 if (tcp_mtask
->xmstate
& XMSTATE_IMM_HDR
) {
1346 tcp_mtask
->xmstate
&= ~XMSTATE_IMM_HDR
;
1347 if (mtask
->data_count
)
1348 tcp_mtask
->xmstate
|= XMSTATE_IMM_DATA
;
1349 if (conn
->c_stage
!= ISCSI_CONN_INITIAL_STAGE
&&
1350 conn
->stop_stage
!= STOP_CONN_RECOVER
&&
1352 iscsi_hdr_digest(conn
, &tcp_mtask
->headbuf
,
1353 (u8
*)tcp_mtask
->hdrext
);
1354 rc
= iscsi_sendhdr(conn
, &tcp_mtask
->headbuf
,
1357 tcp_mtask
->xmstate
|= XMSTATE_IMM_HDR
;
1358 if (mtask
->data_count
)
1359 tcp_mtask
->xmstate
&= ~XMSTATE_IMM_DATA
;
1364 if (tcp_mtask
->xmstate
& XMSTATE_IMM_DATA
) {
1365 BUG_ON(!mtask
->data_count
);
1366 tcp_mtask
->xmstate
&= ~XMSTATE_IMM_DATA
;
1367 /* FIXME: implement.
1368 * Virtual buffer could be spreaded across multiple pages...
1373 rc
= iscsi_sendpage(conn
, &tcp_mtask
->sendbuf
,
1374 &mtask
->data_count
, &tcp_mtask
->sent
);
1376 tcp_mtask
->xmstate
|= XMSTATE_IMM_DATA
;
1379 } while (mtask
->data_count
);
1382 BUG_ON(tcp_mtask
->xmstate
!= XMSTATE_IDLE
);
1383 if (mtask
->hdr
->itt
== cpu_to_be32(ISCSI_RESERVED_TAG
)) {
1384 struct iscsi_session
*session
= conn
->session
;
1386 spin_lock_bh(&session
->lock
);
1387 list_del(&conn
->mtask
->running
);
1388 __kfifo_put(session
->mgmtpool
.queue
, (void*)&conn
->mtask
,
1390 spin_unlock_bh(&session
->lock
);
1396 handle_xmstate_r_hdr(struct iscsi_conn
*conn
,
1397 struct iscsi_tcp_cmd_task
*tcp_ctask
)
1401 tcp_ctask
->xmstate
&= ~XMSTATE_R_HDR
;
1402 if (conn
->hdrdgst_en
)
1403 iscsi_hdr_digest(conn
, &tcp_ctask
->headbuf
,
1404 (u8
*)tcp_ctask
->hdrext
);
1405 rc
= iscsi_sendhdr(conn
, &tcp_ctask
->headbuf
, 0);
1407 BUG_ON(tcp_ctask
->xmstate
!= XMSTATE_IDLE
);
1408 return 0; /* wait for Data-In */
1410 tcp_ctask
->xmstate
|= XMSTATE_R_HDR
;
1415 handle_xmstate_w_hdr(struct iscsi_conn
*conn
,
1416 struct iscsi_cmd_task
*ctask
)
1418 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1421 tcp_ctask
->xmstate
&= ~XMSTATE_W_HDR
;
1422 if (conn
->hdrdgst_en
)
1423 iscsi_hdr_digest(conn
, &tcp_ctask
->headbuf
,
1424 (u8
*)tcp_ctask
->hdrext
);
1425 rc
= iscsi_sendhdr(conn
, &tcp_ctask
->headbuf
, ctask
->imm_count
);
1427 tcp_ctask
->xmstate
|= XMSTATE_W_HDR
;
1432 handle_xmstate_data_digest(struct iscsi_conn
*conn
,
1433 struct iscsi_cmd_task
*ctask
)
1435 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1438 tcp_ctask
->xmstate
&= ~XMSTATE_DATA_DIGEST
;
1439 debug_tcp("resent data digest 0x%x\n", tcp_ctask
->datadigest
);
1440 rc
= iscsi_digest_final_send(conn
, ctask
, &tcp_ctask
->immbuf
,
1441 &tcp_ctask
->datadigest
, 0);
1443 tcp_ctask
->xmstate
|= XMSTATE_DATA_DIGEST
;
1444 debug_tcp("resent data digest 0x%x fail!\n",
1445 tcp_ctask
->datadigest
);
1452 handle_xmstate_imm_data(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
1454 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1455 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1458 BUG_ON(!ctask
->imm_count
);
1459 tcp_ctask
->xmstate
&= ~XMSTATE_IMM_DATA
;
1461 if (conn
->datadgst_en
) {
1462 iscsi_data_digest_init(tcp_conn
, ctask
);
1463 tcp_ctask
->immdigest
= 0;
1467 rc
= iscsi_sendpage(conn
, &tcp_ctask
->sendbuf
,
1468 &ctask
->imm_count
, &tcp_ctask
->sent
);
1470 tcp_ctask
->xmstate
|= XMSTATE_IMM_DATA
;
1471 if (conn
->datadgst_en
) {
1472 crypto_digest_final(tcp_conn
->data_tx_tfm
,
1473 (u8
*)&tcp_ctask
->immdigest
);
1474 debug_tcp("tx imm sendpage fail 0x%x\n",
1475 tcp_ctask
->datadigest
);
1479 if (conn
->datadgst_en
)
1480 crypto_digest_update(tcp_conn
->data_tx_tfm
,
1481 &tcp_ctask
->sendbuf
.sg
, 1);
1483 if (!ctask
->imm_count
)
1485 iscsi_buf_init_sg(&tcp_ctask
->sendbuf
,
1486 &tcp_ctask
->sg
[tcp_ctask
->sg_count
++]);
1489 if (conn
->datadgst_en
&& !(tcp_ctask
->xmstate
& XMSTATE_W_PAD
)) {
1490 rc
= iscsi_digest_final_send(conn
, ctask
, &tcp_ctask
->immbuf
,
1491 &tcp_ctask
->immdigest
, 1);
1493 debug_tcp("sending imm digest 0x%x fail!\n",
1494 tcp_ctask
->immdigest
);
1497 debug_tcp("sending imm digest 0x%x\n", tcp_ctask
->immdigest
);
1504 handle_xmstate_uns_hdr(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
1506 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1507 struct iscsi_data_task
*dtask
;
1510 tcp_ctask
->xmstate
|= XMSTATE_UNS_DATA
;
1511 if (tcp_ctask
->xmstate
& XMSTATE_UNS_INIT
) {
1512 iscsi_unsolicit_data_init(conn
, ctask
);
1513 dtask
= tcp_ctask
->dtask
;
1514 if (conn
->hdrdgst_en
)
1515 iscsi_hdr_digest(conn
, &tcp_ctask
->headbuf
,
1516 (u8
*)dtask
->hdrext
);
1517 tcp_ctask
->xmstate
&= ~XMSTATE_UNS_INIT
;
1520 rc
= iscsi_sendhdr(conn
, &tcp_ctask
->headbuf
, ctask
->data_count
);
1522 tcp_ctask
->xmstate
&= ~XMSTATE_UNS_DATA
;
1523 tcp_ctask
->xmstate
|= XMSTATE_UNS_HDR
;
1527 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
1528 ctask
->itt
, ctask
->unsol_count
, tcp_ctask
->sent
);
1533 handle_xmstate_uns_data(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
1535 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1536 struct iscsi_data_task
*dtask
= tcp_ctask
->dtask
;
1537 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1540 BUG_ON(!ctask
->data_count
);
1541 tcp_ctask
->xmstate
&= ~XMSTATE_UNS_DATA
;
1543 if (conn
->datadgst_en
) {
1544 iscsi_data_digest_init(tcp_conn
, ctask
);
1549 int start
= tcp_ctask
->sent
;
1551 rc
= iscsi_sendpage(conn
, &tcp_ctask
->sendbuf
,
1552 &ctask
->data_count
, &tcp_ctask
->sent
);
1554 ctask
->unsol_count
-= tcp_ctask
->sent
- start
;
1555 tcp_ctask
->xmstate
|= XMSTATE_UNS_DATA
;
1556 /* will continue with this ctask later.. */
1557 if (conn
->datadgst_en
) {
1558 crypto_digest_final(tcp_conn
->data_tx_tfm
,
1559 (u8
*)&dtask
->digest
);
1560 debug_tcp("tx uns data fail 0x%x\n",
1566 BUG_ON(tcp_ctask
->sent
> ctask
->total_length
);
1567 ctask
->unsol_count
-= tcp_ctask
->sent
- start
;
1570 * XXX:we may run here with un-initial sendbuf.
1573 if (conn
->datadgst_en
&& tcp_ctask
->sent
- start
> 0)
1574 crypto_digest_update(tcp_conn
->data_tx_tfm
,
1575 &tcp_ctask
->sendbuf
.sg
, 1);
1577 if (!ctask
->data_count
)
1579 iscsi_buf_init_sg(&tcp_ctask
->sendbuf
,
1580 &tcp_ctask
->sg
[tcp_ctask
->sg_count
++]);
1582 BUG_ON(ctask
->unsol_count
< 0);
1585 * Done with the Data-Out. Next, check if we need
1586 * to send another unsolicited Data-Out.
1588 if (ctask
->unsol_count
) {
1589 if (conn
->datadgst_en
) {
1590 rc
= iscsi_digest_final_send(conn
, ctask
,
1594 debug_tcp("send uns digest 0x%x fail\n",
1598 debug_tcp("sending uns digest 0x%x, more uns\n",
1601 tcp_ctask
->xmstate
|= XMSTATE_UNS_INIT
;
1605 if (conn
->datadgst_en
&& !(tcp_ctask
->xmstate
& XMSTATE_W_PAD
)) {
1606 rc
= iscsi_digest_final_send(conn
, ctask
,
1610 debug_tcp("send last uns digest 0x%x fail\n",
1614 debug_tcp("sending uns digest 0x%x\n",dtask
->digest
);
1621 handle_xmstate_sol_data(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
1623 struct iscsi_session
*session
= conn
->session
;
1624 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1625 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1626 struct iscsi_r2t_info
*r2t
= tcp_ctask
->r2t
;
1627 struct iscsi_data_task
*dtask
= &r2t
->dtask
;
1630 tcp_ctask
->xmstate
&= ~XMSTATE_SOL_DATA
;
1631 tcp_ctask
->dtask
= dtask
;
1633 if (conn
->datadgst_en
) {
1634 iscsi_data_digest_init(tcp_conn
, ctask
);
1639 * send Data-Out whitnin this R2T sequence.
1641 if (!r2t
->data_count
)
1644 rc
= iscsi_sendpage(conn
, &r2t
->sendbuf
, &r2t
->data_count
, &r2t
->sent
);
1646 tcp_ctask
->xmstate
|= XMSTATE_SOL_DATA
;
1647 /* will continue with this ctask later.. */
1648 if (conn
->datadgst_en
) {
1649 crypto_digest_final(tcp_conn
->data_tx_tfm
,
1650 (u8
*)&dtask
->digest
);
1651 debug_tcp("r2t data send fail 0x%x\n", dtask
->digest
);
1656 BUG_ON(r2t
->data_count
< 0);
1657 if (conn
->datadgst_en
)
1658 crypto_digest_update(tcp_conn
->data_tx_tfm
, &r2t
->sendbuf
.sg
,
1661 if (r2t
->data_count
) {
1662 BUG_ON(ctask
->sc
->use_sg
== 0);
1663 if (!iscsi_buf_left(&r2t
->sendbuf
)) {
1664 BUG_ON(tcp_ctask
->bad_sg
== r2t
->sg
);
1665 iscsi_buf_init_sg(&r2t
->sendbuf
, r2t
->sg
);
1673 * Done with this Data-Out. Next, check if we have
1674 * to send another Data-Out for this R2T.
1676 BUG_ON(r2t
->data_length
- r2t
->sent
< 0);
1677 left
= r2t
->data_length
- r2t
->sent
;
1679 if (conn
->datadgst_en
) {
1680 rc
= iscsi_digest_final_send(conn
, ctask
,
1684 debug_tcp("send r2t data digest 0x%x"
1685 "fail\n", dtask
->digest
);
1688 debug_tcp("r2t data send digest 0x%x\n",
1691 iscsi_solicit_data_cont(conn
, ctask
, r2t
, left
);
1692 tcp_ctask
->xmstate
|= XMSTATE_SOL_DATA
;
1693 tcp_ctask
->xmstate
&= ~XMSTATE_SOL_HDR
;
1698 * Done with this R2T. Check if there are more
1699 * outstanding R2Ts ready to be processed.
1701 BUG_ON(tcp_ctask
->r2t_data_count
- r2t
->data_length
< 0);
1702 if (conn
->datadgst_en
) {
1703 rc
= iscsi_digest_final_send(conn
, ctask
, &dtask
->digestbuf
,
1706 debug_tcp("send last r2t data digest 0x%x"
1707 "fail\n", dtask
->digest
);
1710 debug_tcp("r2t done dout digest 0x%x\n", dtask
->digest
);
1713 tcp_ctask
->r2t_data_count
-= r2t
->data_length
;
1714 tcp_ctask
->r2t
= NULL
;
1715 spin_lock_bh(&session
->lock
);
1716 __kfifo_put(tcp_ctask
->r2tpool
.queue
, (void*)&r2t
, sizeof(void*));
1717 spin_unlock_bh(&session
->lock
);
1718 if (__kfifo_get(tcp_ctask
->r2tqueue
, (void*)&r2t
, sizeof(void*))) {
1719 tcp_ctask
->r2t
= r2t
;
1720 tcp_ctask
->xmstate
|= XMSTATE_SOL_DATA
;
1721 tcp_ctask
->xmstate
&= ~XMSTATE_SOL_HDR
;
1729 handle_xmstate_w_pad(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
1731 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1732 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1733 struct iscsi_data_task
*dtask
= tcp_ctask
->dtask
;
1736 tcp_ctask
->xmstate
&= ~XMSTATE_W_PAD
;
1737 iscsi_buf_init_iov(&tcp_ctask
->sendbuf
, (char*)&tcp_ctask
->pad
,
1738 tcp_ctask
->pad_count
);
1739 rc
= iscsi_sendpage(conn
, &tcp_ctask
->sendbuf
, &tcp_ctask
->pad_count
,
1742 tcp_ctask
->xmstate
|= XMSTATE_W_PAD
;
1746 if (conn
->datadgst_en
) {
1747 crypto_digest_update(tcp_conn
->data_tx_tfm
,
1748 &tcp_ctask
->sendbuf
.sg
, 1);
1751 rc
= iscsi_digest_final_send(conn
, ctask
,
1753 &tcp_ctask
->immdigest
, 1);
1755 debug_tcp("send padding digest 0x%x"
1756 "fail!\n", tcp_ctask
->immdigest
);
1759 debug_tcp("done with padding, digest 0x%x\n",
1760 tcp_ctask
->datadigest
);
1762 rc
= iscsi_digest_final_send(conn
, ctask
,
1766 debug_tcp("send padding digest 0x%x"
1767 "fail\n", dtask
->digest
);
1770 debug_tcp("done with padding, digest 0x%x\n",
1779 iscsi_tcp_ctask_xmit(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
1781 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1784 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
1785 conn
->id
, tcp_ctask
->xmstate
, ctask
->itt
);
1788 * serialize with TMF AbortTask
1793 if (tcp_ctask
->xmstate
& XMSTATE_R_HDR
)
1794 return handle_xmstate_r_hdr(conn
, tcp_ctask
);
1796 if (tcp_ctask
->xmstate
& XMSTATE_W_HDR
) {
1797 rc
= handle_xmstate_w_hdr(conn
, ctask
);
1802 /* XXX: for data digest xmit recover */
1803 if (tcp_ctask
->xmstate
& XMSTATE_DATA_DIGEST
) {
1804 rc
= handle_xmstate_data_digest(conn
, ctask
);
1809 if (tcp_ctask
->xmstate
& XMSTATE_IMM_DATA
) {
1810 rc
= handle_xmstate_imm_data(conn
, ctask
);
1815 if (tcp_ctask
->xmstate
& XMSTATE_UNS_HDR
) {
1816 BUG_ON(!ctask
->unsol_count
);
1817 tcp_ctask
->xmstate
&= ~XMSTATE_UNS_HDR
;
1818 unsolicit_head_again
:
1819 rc
= handle_xmstate_uns_hdr(conn
, ctask
);
1824 if (tcp_ctask
->xmstate
& XMSTATE_UNS_DATA
) {
1825 rc
= handle_xmstate_uns_data(conn
, ctask
);
1827 goto unsolicit_head_again
;
1833 if (tcp_ctask
->xmstate
& XMSTATE_SOL_HDR
) {
1834 struct iscsi_r2t_info
*r2t
;
1836 tcp_ctask
->xmstate
&= ~XMSTATE_SOL_HDR
;
1837 tcp_ctask
->xmstate
|= XMSTATE_SOL_DATA
;
1838 if (!tcp_ctask
->r2t
)
1839 __kfifo_get(tcp_ctask
->r2tqueue
, (void*)&tcp_ctask
->r2t
,
1842 r2t
= tcp_ctask
->r2t
;
1843 if (conn
->hdrdgst_en
)
1844 iscsi_hdr_digest(conn
, &r2t
->headbuf
,
1845 (u8
*)r2t
->dtask
.hdrext
);
1846 rc
= iscsi_sendhdr(conn
, &r2t
->headbuf
, r2t
->data_count
);
1848 tcp_ctask
->xmstate
&= ~XMSTATE_SOL_DATA
;
1849 tcp_ctask
->xmstate
|= XMSTATE_SOL_HDR
;
1853 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1854 r2t
->solicit_datasn
- 1, ctask
->itt
, r2t
->data_count
,
1858 if (tcp_ctask
->xmstate
& XMSTATE_SOL_DATA
) {
1859 rc
= handle_xmstate_sol_data(conn
, ctask
);
1861 goto solicit_head_again
;
1868 * Last thing to check is whether we need to send write
1869 * padding. Note that we check for xmstate equality, not just the bit.
1871 if (tcp_ctask
->xmstate
== XMSTATE_W_PAD
)
1872 rc
= handle_xmstate_w_pad(conn
, ctask
);
1877 static struct iscsi_cls_conn
*
1878 iscsi_tcp_conn_create(struct iscsi_cls_session
*cls_session
, uint32_t conn_idx
)
1880 struct iscsi_conn
*conn
;
1881 struct iscsi_cls_conn
*cls_conn
;
1882 struct iscsi_tcp_conn
*tcp_conn
;
1884 cls_conn
= iscsi_conn_setup(cls_session
, conn_idx
);
1887 conn
= cls_conn
->dd_data
;
1889 * due to strange issues with iser these are not set
1890 * in iscsi_conn_setup
1892 conn
->max_recv_dlength
= DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH
;
1894 tcp_conn
= kzalloc(sizeof(*tcp_conn
), GFP_KERNEL
);
1896 goto tcp_conn_alloc_fail
;
1898 conn
->dd_data
= tcp_conn
;
1899 tcp_conn
->iscsi_conn
= conn
;
1900 tcp_conn
->in_progress
= IN_PROGRESS_WAIT_HEADER
;
1901 /* initial operational parameters */
1902 tcp_conn
->hdr_size
= sizeof(struct iscsi_hdr
);
1903 tcp_conn
->data_size
= DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH
;
1905 /* allocate initial PDU receive place holder */
1906 if (tcp_conn
->data_size
<= PAGE_SIZE
)
1907 tcp_conn
->data
= kmalloc(tcp_conn
->data_size
, GFP_KERNEL
);
1909 tcp_conn
->data
= (void*)__get_free_pages(GFP_KERNEL
,
1910 get_order(tcp_conn
->data_size
));
1911 if (!tcp_conn
->data
)
1912 goto max_recv_dlenght_alloc_fail
;
1916 max_recv_dlenght_alloc_fail
:
1918 tcp_conn_alloc_fail
:
1919 iscsi_conn_teardown(cls_conn
);
1924 iscsi_tcp_conn_destroy(struct iscsi_cls_conn
*cls_conn
)
1926 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1927 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1930 if (conn
->hdrdgst_en
|| conn
->datadgst_en
)
1933 iscsi_conn_teardown(cls_conn
);
1935 /* now free tcp_conn */
1937 if (tcp_conn
->tx_tfm
)
1938 crypto_free_tfm(tcp_conn
->tx_tfm
);
1939 if (tcp_conn
->rx_tfm
)
1940 crypto_free_tfm(tcp_conn
->rx_tfm
);
1941 if (tcp_conn
->data_tx_tfm
)
1942 crypto_free_tfm(tcp_conn
->data_tx_tfm
);
1943 if (tcp_conn
->data_rx_tfm
)
1944 crypto_free_tfm(tcp_conn
->data_rx_tfm
);
1947 /* free conn->data, size = MaxRecvDataSegmentLength */
1948 if (tcp_conn
->data_size
<= PAGE_SIZE
)
1949 kfree(tcp_conn
->data
);
1951 free_pages((unsigned long)tcp_conn
->data
,
1952 get_order(tcp_conn
->data_size
));
1957 iscsi_tcp_conn_bind(struct iscsi_cls_session
*cls_session
,
1958 struct iscsi_cls_conn
*cls_conn
, uint64_t transport_eph
,
1961 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1962 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1964 struct socket
*sock
;
1967 /* lookup for existing socket */
1968 sock
= sockfd_lookup((int)transport_eph
, &err
);
1970 printk(KERN_ERR
"iscsi_tcp: sockfd_lookup failed %d\n", err
);
1974 err
= iscsi_conn_bind(cls_session
, cls_conn
, is_leading
);
1978 /* bind iSCSI connection and socket */
1979 tcp_conn
->sock
= sock
;
1981 /* setup Socket parameters */
1984 sk
->sk_sndtimeo
= 15 * HZ
; /* FIXME: make it configurable */
1985 sk
->sk_allocation
= GFP_ATOMIC
;
1987 /* FIXME: disable Nagle's algorithm */
1990 * Intercept TCP callbacks for sendfile like receive
1993 conn
->recv_lock
= &sk
->sk_callback_lock
;
1994 iscsi_conn_set_callbacks(conn
);
1995 tcp_conn
->sendpage
= tcp_conn
->sock
->ops
->sendpage
;
1997 * set receive state machine into initial state
1999 tcp_conn
->in_progress
= IN_PROGRESS_WAIT_HEADER
;
2005 iscsi_tcp_cleanup_ctask(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
2007 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
2008 struct iscsi_r2t_info
*r2t
;
2010 /* flush ctask's r2t queues */
2011 while (__kfifo_get(tcp_ctask
->r2tqueue
, (void*)&r2t
, sizeof(void*)))
2012 __kfifo_put(tcp_ctask
->r2tpool
.queue
, (void*)&r2t
,
2015 __iscsi_ctask_cleanup(conn
, ctask
);
2019 iscsi_tcp_suspend_conn_rx(struct iscsi_conn
*conn
)
2021 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2024 if (!tcp_conn
->sock
)
2027 sk
= tcp_conn
->sock
->sk
;
2028 write_lock_bh(&sk
->sk_callback_lock
);
2029 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
2030 write_unlock_bh(&sk
->sk_callback_lock
);
2034 iscsi_tcp_terminate_conn(struct iscsi_conn
*conn
)
2036 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2038 if (!tcp_conn
->sock
)
2041 sock_hold(tcp_conn
->sock
->sk
);
2042 iscsi_conn_restore_callbacks(conn
);
2043 sock_put(tcp_conn
->sock
->sk
);
2045 sock_release(tcp_conn
->sock
);
2046 tcp_conn
->sock
= NULL
;
2047 conn
->recv_lock
= NULL
;
2050 /* called with host lock */
2052 iscsi_tcp_mgmt_init(struct iscsi_conn
*conn
, struct iscsi_mgmt_task
*mtask
,
2053 char *data
, uint32_t data_size
)
2055 struct iscsi_tcp_mgmt_task
*tcp_mtask
= mtask
->dd_data
;
2057 iscsi_buf_init_iov(&tcp_mtask
->headbuf
, (char*)mtask
->hdr
,
2058 sizeof(struct iscsi_hdr
));
2059 tcp_mtask
->xmstate
= XMSTATE_IMM_HDR
;
2061 if (mtask
->data_count
)
2062 iscsi_buf_init_iov(&tcp_mtask
->sendbuf
, (char*)mtask
->data
,
2067 iscsi_r2tpool_alloc(struct iscsi_session
*session
)
2073 * initialize per-task: R2T pool and xmit queue
2075 for (cmd_i
= 0; cmd_i
< session
->cmds_max
; cmd_i
++) {
2076 struct iscsi_cmd_task
*ctask
= session
->cmds
[cmd_i
];
2077 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
2080 * pre-allocated x4 as much r2ts to handle race when
2081 * target acks DataOut faster than we data_xmit() queues
2082 * could replenish r2tqueue.
2086 if (iscsi_pool_init(&tcp_ctask
->r2tpool
, session
->max_r2t
* 4,
2087 (void***)&tcp_ctask
->r2ts
,
2088 sizeof(struct iscsi_r2t_info
))) {
2089 goto r2t_alloc_fail
;
2092 /* R2T xmit queue */
2093 tcp_ctask
->r2tqueue
= kfifo_alloc(
2094 session
->max_r2t
* 4 * sizeof(void*), GFP_KERNEL
, NULL
);
2095 if (tcp_ctask
->r2tqueue
== ERR_PTR(-ENOMEM
)) {
2096 iscsi_pool_free(&tcp_ctask
->r2tpool
,
2097 (void**)tcp_ctask
->r2ts
);
2098 goto r2t_alloc_fail
;
2105 for (i
= 0; i
< cmd_i
; i
++) {
2106 struct iscsi_cmd_task
*ctask
= session
->cmds
[i
];
2107 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
2109 kfifo_free(tcp_ctask
->r2tqueue
);
2110 iscsi_pool_free(&tcp_ctask
->r2tpool
,
2111 (void**)tcp_ctask
->r2ts
);
2117 iscsi_r2tpool_free(struct iscsi_session
*session
)
2121 for (i
= 0; i
< session
->cmds_max
; i
++) {
2122 struct iscsi_cmd_task
*ctask
= session
->cmds
[i
];
2123 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
2125 kfifo_free(tcp_ctask
->r2tqueue
);
2126 iscsi_pool_free(&tcp_ctask
->r2tpool
,
2127 (void**)tcp_ctask
->r2ts
);
2132 iscsi_conn_set_param(struct iscsi_cls_conn
*cls_conn
, enum iscsi_param param
,
2133 char *buf
, int buflen
)
2135 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2136 struct iscsi_session
*session
= conn
->session
;
2137 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2141 case ISCSI_PARAM_MAX_RECV_DLENGTH
: {
2142 char *saveptr
= tcp_conn
->data
;
2143 gfp_t flags
= GFP_KERNEL
;
2145 sscanf(buf
, "%d", &value
);
2146 if (tcp_conn
->data_size
>= value
) {
2147 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2151 spin_lock_bh(&session
->lock
);
2152 if (conn
->stop_stage
== STOP_CONN_RECOVER
)
2154 spin_unlock_bh(&session
->lock
);
2156 if (value
<= PAGE_SIZE
)
2157 tcp_conn
->data
= kmalloc(value
, flags
);
2159 tcp_conn
->data
= (void*)__get_free_pages(flags
,
2161 if (tcp_conn
->data
== NULL
) {
2162 tcp_conn
->data
= saveptr
;
2165 if (tcp_conn
->data_size
<= PAGE_SIZE
)
2168 free_pages((unsigned long)saveptr
,
2169 get_order(tcp_conn
->data_size
));
2170 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2171 tcp_conn
->data_size
= value
;
2174 case ISCSI_PARAM_HDRDGST_EN
:
2175 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2176 tcp_conn
->hdr_size
= sizeof(struct iscsi_hdr
);
2177 if (conn
->hdrdgst_en
) {
2178 tcp_conn
->hdr_size
+= sizeof(__u32
);
2179 if (!tcp_conn
->tx_tfm
)
2180 tcp_conn
->tx_tfm
= crypto_alloc_tfm("crc32c",
2182 if (!tcp_conn
->tx_tfm
)
2184 if (!tcp_conn
->rx_tfm
)
2185 tcp_conn
->rx_tfm
= crypto_alloc_tfm("crc32c",
2187 if (!tcp_conn
->rx_tfm
) {
2188 crypto_free_tfm(tcp_conn
->tx_tfm
);
2192 if (tcp_conn
->tx_tfm
)
2193 crypto_free_tfm(tcp_conn
->tx_tfm
);
2194 if (tcp_conn
->rx_tfm
)
2195 crypto_free_tfm(tcp_conn
->rx_tfm
);
2198 case ISCSI_PARAM_DATADGST_EN
:
2199 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2200 if (conn
->datadgst_en
) {
2201 if (!tcp_conn
->data_tx_tfm
)
2202 tcp_conn
->data_tx_tfm
=
2203 crypto_alloc_tfm("crc32c", 0);
2204 if (!tcp_conn
->data_tx_tfm
)
2206 if (!tcp_conn
->data_rx_tfm
)
2207 tcp_conn
->data_rx_tfm
=
2208 crypto_alloc_tfm("crc32c", 0);
2209 if (!tcp_conn
->data_rx_tfm
) {
2210 crypto_free_tfm(tcp_conn
->data_tx_tfm
);
2214 if (tcp_conn
->data_tx_tfm
)
2215 crypto_free_tfm(tcp_conn
->data_tx_tfm
);
2216 if (tcp_conn
->data_rx_tfm
)
2217 crypto_free_tfm(tcp_conn
->data_rx_tfm
);
2219 tcp_conn
->sendpage
= conn
->datadgst_en
?
2220 sock_no_sendpage
: tcp_conn
->sock
->ops
->sendpage
;
2222 case ISCSI_PARAM_MAX_R2T
:
2223 sscanf(buf
, "%d", &value
);
2224 if (session
->max_r2t
== roundup_pow_of_two(value
))
2226 iscsi_r2tpool_free(session
);
2227 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2228 if (session
->max_r2t
& (session
->max_r2t
- 1))
2229 session
->max_r2t
= roundup_pow_of_two(session
->max_r2t
);
2230 if (iscsi_r2tpool_alloc(session
))
2234 return iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2241 iscsi_tcp_conn_get_param(struct iscsi_cls_conn
*cls_conn
,
2242 enum iscsi_param param
, char *buf
)
2244 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2245 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2246 struct inet_sock
*inet
;
2247 struct ipv6_pinfo
*np
;
2252 case ISCSI_PARAM_CONN_PORT
:
2253 mutex_lock(&conn
->xmitmutex
);
2254 if (!tcp_conn
->sock
) {
2255 mutex_unlock(&conn
->xmitmutex
);
2259 inet
= inet_sk(tcp_conn
->sock
->sk
);
2260 len
= sprintf(buf
, "%hu\n", be16_to_cpu(inet
->dport
));
2261 mutex_unlock(&conn
->xmitmutex
);
2263 case ISCSI_PARAM_CONN_ADDRESS
:
2264 mutex_lock(&conn
->xmitmutex
);
2265 if (!tcp_conn
->sock
) {
2266 mutex_unlock(&conn
->xmitmutex
);
2270 sk
= tcp_conn
->sock
->sk
;
2271 if (sk
->sk_family
== PF_INET
) {
2273 len
= sprintf(buf
, "%u.%u.%u.%u\n",
2274 NIPQUAD(inet
->daddr
));
2278 "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
2281 mutex_unlock(&conn
->xmitmutex
);
2284 return iscsi_conn_get_param(cls_conn
, param
, buf
);
2291 iscsi_conn_get_stats(struct iscsi_cls_conn
*cls_conn
, struct iscsi_stats
*stats
)
2293 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2294 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2296 stats
->txdata_octets
= conn
->txdata_octets
;
2297 stats
->rxdata_octets
= conn
->rxdata_octets
;
2298 stats
->scsicmd_pdus
= conn
->scsicmd_pdus_cnt
;
2299 stats
->dataout_pdus
= conn
->dataout_pdus_cnt
;
2300 stats
->scsirsp_pdus
= conn
->scsirsp_pdus_cnt
;
2301 stats
->datain_pdus
= conn
->datain_pdus_cnt
;
2302 stats
->r2t_pdus
= conn
->r2t_pdus_cnt
;
2303 stats
->tmfcmd_pdus
= conn
->tmfcmd_pdus_cnt
;
2304 stats
->tmfrsp_pdus
= conn
->tmfrsp_pdus_cnt
;
2305 stats
->custom_length
= 3;
2306 strcpy(stats
->custom
[0].desc
, "tx_sendpage_failures");
2307 stats
->custom
[0].value
= tcp_conn
->sendpage_failures_cnt
;
2308 strcpy(stats
->custom
[1].desc
, "rx_discontiguous_hdr");
2309 stats
->custom
[1].value
= tcp_conn
->discontiguous_hdr_cnt
;
2310 strcpy(stats
->custom
[2].desc
, "eh_abort_cnt");
2311 stats
->custom
[2].value
= conn
->eh_abort_cnt
;
2314 static struct iscsi_cls_session
*
2315 iscsi_tcp_session_create(struct iscsi_transport
*iscsit
,
2316 struct scsi_transport_template
*scsit
,
2317 uint32_t initial_cmdsn
, uint32_t *hostno
)
2319 struct iscsi_cls_session
*cls_session
;
2320 struct iscsi_session
*session
;
2324 cls_session
= iscsi_session_setup(iscsit
, scsit
,
2325 sizeof(struct iscsi_tcp_cmd_task
),
2326 sizeof(struct iscsi_tcp_mgmt_task
),
2327 initial_cmdsn
, &hn
);
2332 session
= class_to_transport_session(cls_session
);
2333 for (cmd_i
= 0; cmd_i
< session
->cmds_max
; cmd_i
++) {
2334 struct iscsi_cmd_task
*ctask
= session
->cmds
[cmd_i
];
2335 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
2337 ctask
->hdr
= &tcp_ctask
->hdr
;
2340 for (cmd_i
= 0; cmd_i
< session
->mgmtpool_max
; cmd_i
++) {
2341 struct iscsi_mgmt_task
*mtask
= session
->mgmt_cmds
[cmd_i
];
2342 struct iscsi_tcp_mgmt_task
*tcp_mtask
= mtask
->dd_data
;
2344 mtask
->hdr
= &tcp_mtask
->hdr
;
2347 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session
)))
2348 goto r2tpool_alloc_fail
;
2353 iscsi_session_teardown(cls_session
);
2357 static void iscsi_tcp_session_destroy(struct iscsi_cls_session
*cls_session
)
2359 iscsi_r2tpool_free(class_to_transport_session(cls_session
));
2360 iscsi_session_teardown(cls_session
);
2363 static struct scsi_host_template iscsi_sht
= {
2364 .name
= "iSCSI Initiator over TCP/IP, v"
2366 .queuecommand
= iscsi_queuecommand
,
2367 .change_queue_depth
= iscsi_change_queue_depth
,
2368 .can_queue
= ISCSI_XMIT_CMDS_MAX
- 1,
2369 .sg_tablesize
= ISCSI_SG_TABLESIZE
,
2370 .cmd_per_lun
= ISCSI_DEF_CMD_PER_LUN
,
2371 .eh_abort_handler
= iscsi_eh_abort
,
2372 .eh_host_reset_handler
= iscsi_eh_host_reset
,
2373 .use_clustering
= DISABLE_CLUSTERING
,
2374 .proc_name
= "iscsi_tcp",
2378 static struct iscsi_transport iscsi_tcp_transport
= {
2379 .owner
= THIS_MODULE
,
2381 .caps
= CAP_RECOVERY_L0
| CAP_MULTI_R2T
| CAP_HDRDGST
2383 .param_mask
= ISCSI_MAX_RECV_DLENGTH
|
2384 ISCSI_MAX_XMIT_DLENGTH
|
2387 ISCSI_INITIAL_R2T_EN
|
2392 ISCSI_PDU_INORDER_EN
|
2393 ISCSI_DATASEQ_INORDER_EN
|
2396 ISCSI_CONN_ADDRESS
|
2398 ISCSI_PERSISTENT_PORT
|
2399 ISCSI_PERSISTENT_ADDRESS
|
2402 .host_template
= &iscsi_sht
,
2403 .conndata_size
= sizeof(struct iscsi_conn
),
2405 .max_cmd_len
= ISCSI_TCP_MAX_CMD_LEN
,
2406 /* session management */
2407 .create_session
= iscsi_tcp_session_create
,
2408 .destroy_session
= iscsi_tcp_session_destroy
,
2409 /* connection management */
2410 .create_conn
= iscsi_tcp_conn_create
,
2411 .bind_conn
= iscsi_tcp_conn_bind
,
2412 .destroy_conn
= iscsi_tcp_conn_destroy
,
2413 .set_param
= iscsi_conn_set_param
,
2414 .get_conn_param
= iscsi_tcp_conn_get_param
,
2415 .get_session_param
= iscsi_session_get_param
,
2416 .start_conn
= iscsi_conn_start
,
2417 .stop_conn
= iscsi_conn_stop
,
2418 /* these are called as part of conn recovery */
2419 .suspend_conn_recv
= iscsi_tcp_suspend_conn_rx
,
2420 .terminate_conn
= iscsi_tcp_terminate_conn
,
2422 .send_pdu
= iscsi_conn_send_pdu
,
2423 .get_stats
= iscsi_conn_get_stats
,
2424 .init_cmd_task
= iscsi_tcp_cmd_init
,
2425 .init_mgmt_task
= iscsi_tcp_mgmt_init
,
2426 .xmit_cmd_task
= iscsi_tcp_ctask_xmit
,
2427 .xmit_mgmt_task
= iscsi_tcp_mtask_xmit
,
2428 .cleanup_cmd_task
= iscsi_tcp_cleanup_ctask
,
2430 .session_recovery_timedout
= iscsi_session_recovery_timedout
,
2434 iscsi_tcp_init(void)
2436 if (iscsi_max_lun
< 1) {
2437 printk(KERN_ERR
"iscsi_tcp: Invalid max_lun value of %u\n",
2441 iscsi_tcp_transport
.max_lun
= iscsi_max_lun
;
2443 if (!iscsi_register_transport(&iscsi_tcp_transport
))
2450 iscsi_tcp_exit(void)
2452 iscsi_unregister_transport(&iscsi_tcp_transport
);
2455 module_init(iscsi_tcp_init
);
2456 module_exit(iscsi_tcp_exit
);