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/file.h>
33 #include <linux/blkdev.h>
34 #include <linux/crypto.h>
35 #include <linux/delay.h>
36 #include <linux/kfifo.h>
37 #include <linux/scatterlist.h>
39 #include <scsi/scsi_cmnd.h>
40 #include <scsi/scsi_device.h>
41 #include <scsi/scsi_host.h>
42 #include <scsi/scsi.h>
43 #include <scsi/scsi_transport_iscsi.h>
45 #include "iscsi_tcp.h"
47 MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
48 "Alex Aizman <itn780@yahoo.com>");
49 MODULE_DESCRIPTION("iSCSI/TCP data-path");
50 MODULE_LICENSE("GPL");
55 #define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
57 #define debug_tcp(fmt...)
67 static unsigned int iscsi_max_lun
= 512;
68 module_param_named(max_lun
, iscsi_max_lun
, uint
, S_IRUGO
);
70 static int iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn
*tcp_conn
,
71 struct iscsi_segment
*segment
);
74 * Scatterlist handling: inside the iscsi_segment, we
75 * remember an index into the scatterlist, and set data/size
76 * to the current scatterlist entry. For highmem pages, we
79 * Note that the page is unmapped when we return from
80 * TCP's data_ready handler, so we may end up mapping and
81 * unmapping the same page repeatedly. The whole reason
82 * for this is that we shouldn't keep the page mapped
83 * outside the softirq.
87 * iscsi_tcp_segment_init_sg - init indicated scatterlist entry
88 * @segment: the buffer object
90 * @offset: byte offset into that sg entry
92 * This function sets up the segment so that subsequent
93 * data is copied to the indicated sg entry, at the given
97 iscsi_tcp_segment_init_sg(struct iscsi_segment
*segment
,
98 struct scatterlist
*sg
, unsigned int offset
)
101 segment
->sg_offset
= offset
;
102 segment
->size
= min(sg
->length
- offset
,
103 segment
->total_size
- segment
->total_copied
);
104 segment
->data
= NULL
;
108 * iscsi_tcp_segment_map - map the current S/G page
109 * @segment: iscsi_segment
110 * @recv: 1 if called from recv path
112 * We only need to possibly kmap data if scatter lists are being used,
113 * because the iscsi passthrough and internal IO paths will never use high
117 iscsi_tcp_segment_map(struct iscsi_segment
*segment
, int recv
)
119 struct scatterlist
*sg
;
121 if (segment
->data
!= NULL
|| !segment
->sg
)
125 BUG_ON(segment
->sg_mapped
);
126 BUG_ON(sg
->length
== 0);
129 * If the page count is greater than one it is ok to send
130 * to the network layer's zero copy send path. If not we
131 * have to go the slow sendmsg path. We always map for the
134 if (page_count(sg_page(sg
)) >= 1 && !recv
)
137 debug_tcp("iscsi_tcp_segment_map %s %p\n", recv
? "recv" : "xmit",
139 segment
->sg_mapped
= kmap_atomic(sg_page(sg
), KM_SOFTIRQ0
);
140 segment
->data
= segment
->sg_mapped
+ sg
->offset
+ segment
->sg_offset
;
144 iscsi_tcp_segment_unmap(struct iscsi_segment
*segment
)
146 debug_tcp("iscsi_tcp_segment_unmap %p\n", segment
);
148 if (segment
->sg_mapped
) {
149 debug_tcp("iscsi_tcp_segment_unmap valid\n");
150 kunmap_atomic(segment
->sg_mapped
, KM_SOFTIRQ0
);
151 segment
->sg_mapped
= NULL
;
152 segment
->data
= NULL
;
157 * Splice the digest buffer into the buffer
160 iscsi_tcp_segment_splice_digest(struct iscsi_segment
*segment
, void *digest
)
162 segment
->data
= digest
;
163 segment
->digest_len
= ISCSI_DIGEST_SIZE
;
164 segment
->total_size
+= ISCSI_DIGEST_SIZE
;
165 segment
->size
= ISCSI_DIGEST_SIZE
;
168 segment
->hash
= NULL
;
172 * iscsi_tcp_segment_done - check whether the segment is complete
173 * @segment: iscsi segment to check
174 * @recv: set to one of this is called from the recv path
175 * @copied: number of bytes copied
177 * Check if we're done receiving this segment. If the receive
178 * buffer is full but we expect more data, move on to the
179 * next entry in the scatterlist.
181 * If the amount of data we received isn't a multiple of 4,
182 * we will transparently receive the pad bytes, too.
184 * This function must be re-entrant.
187 iscsi_tcp_segment_done(struct iscsi_segment
*segment
, int recv
, unsigned copied
)
189 static unsigned char padbuf
[ISCSI_PAD_LEN
];
190 struct scatterlist sg
;
193 debug_tcp("copied %u %u size %u %s\n", segment
->copied
, copied
,
194 segment
->size
, recv
? "recv" : "xmit");
195 if (segment
->hash
&& copied
) {
197 * If a segment is kmapd we must unmap it before sending
198 * to the crypto layer since that will try to kmap it again.
200 iscsi_tcp_segment_unmap(segment
);
202 if (!segment
->data
) {
203 sg_init_table(&sg
, 1);
204 sg_set_page(&sg
, sg_page(segment
->sg
), copied
,
205 segment
->copied
+ segment
->sg_offset
+
206 segment
->sg
->offset
);
208 sg_init_one(&sg
, segment
->data
+ segment
->copied
,
210 crypto_hash_update(segment
->hash
, &sg
, copied
);
213 segment
->copied
+= copied
;
214 if (segment
->copied
< segment
->size
) {
215 iscsi_tcp_segment_map(segment
, recv
);
219 segment
->total_copied
+= segment
->copied
;
223 /* Unmap the current scatterlist page, if there is one. */
224 iscsi_tcp_segment_unmap(segment
);
226 /* Do we have more scatterlist entries? */
227 debug_tcp("total copied %u total size %u\n", segment
->total_copied
,
228 segment
->total_size
);
229 if (segment
->total_copied
< segment
->total_size
) {
230 /* Proceed to the next entry in the scatterlist. */
231 iscsi_tcp_segment_init_sg(segment
, sg_next(segment
->sg
),
233 iscsi_tcp_segment_map(segment
, recv
);
234 BUG_ON(segment
->size
== 0);
238 /* Do we need to handle padding? */
239 pad
= iscsi_padding(segment
->total_copied
);
241 debug_tcp("consume %d pad bytes\n", pad
);
242 segment
->total_size
+= pad
;
244 segment
->data
= padbuf
;
249 * Set us up for transferring the data digest. hdr digest
250 * is completely handled in hdr done function.
253 crypto_hash_final(segment
->hash
, segment
->digest
);
254 iscsi_tcp_segment_splice_digest(segment
,
255 recv
? segment
->recv_digest
: segment
->digest
);
263 * iscsi_tcp_xmit_segment - transmit segment
264 * @tcp_conn: the iSCSI TCP connection
265 * @segment: the buffer to transmnit
267 * This function transmits as much of the buffer as
268 * the network layer will accept, and returns the number of
271 * If CRC hashing is enabled, the function will compute the
272 * hash as it goes. When the entire segment has been transmitted,
273 * it will retrieve the hash value and send it as well.
276 iscsi_tcp_xmit_segment(struct iscsi_tcp_conn
*tcp_conn
,
277 struct iscsi_segment
*segment
)
279 struct socket
*sk
= tcp_conn
->sock
;
280 unsigned int copied
= 0;
283 while (!iscsi_tcp_segment_done(segment
, 0, r
)) {
284 struct scatterlist
*sg
;
285 unsigned int offset
, copy
;
289 offset
= segment
->copied
;
290 copy
= segment
->size
- offset
;
292 if (segment
->total_copied
+ segment
->size
< segment
->total_size
)
295 /* Use sendpage if we can; else fall back to sendmsg */
296 if (!segment
->data
) {
298 offset
+= segment
->sg_offset
+ sg
->offset
;
299 r
= tcp_conn
->sendpage(sk
, sg_page(sg
), offset
, copy
,
302 struct msghdr msg
= { .msg_flags
= flags
};
304 .iov_base
= segment
->data
+ offset
,
308 r
= kernel_sendmsg(sk
, &msg
, &iov
, 1, copy
);
312 iscsi_tcp_segment_unmap(segment
);
313 if (copied
|| r
== -EAGAIN
)
323 * iscsi_tcp_segment_recv - copy data to segment
324 * @tcp_conn: the iSCSI TCP connection
325 * @segment: the buffer to copy to
327 * @len: amount of data available
329 * This function copies up to @len bytes to the
330 * given buffer, and returns the number of bytes
331 * consumed, which can actually be less than @len.
333 * If hash digest is enabled, the function will update the
334 * hash while copying.
335 * Combining these two operations doesn't buy us a lot (yet),
336 * but in the future we could implement combined copy+crc,
337 * just way we do for network layer checksums.
340 iscsi_tcp_segment_recv(struct iscsi_tcp_conn
*tcp_conn
,
341 struct iscsi_segment
*segment
, const void *ptr
,
344 unsigned int copy
= 0, copied
= 0;
346 while (!iscsi_tcp_segment_done(segment
, 1, copy
)) {
348 debug_tcp("iscsi_tcp_segment_recv copied %d bytes\n",
353 copy
= min(len
- copied
, segment
->size
- segment
->copied
);
354 debug_tcp("iscsi_tcp_segment_recv copying %d\n", copy
);
355 memcpy(segment
->data
+ segment
->copied
, ptr
+ copied
, copy
);
362 iscsi_tcp_dgst_header(struct hash_desc
*hash
, const void *hdr
, size_t hdrlen
,
363 unsigned char digest
[ISCSI_DIGEST_SIZE
])
365 struct scatterlist sg
;
367 sg_init_one(&sg
, hdr
, hdrlen
);
368 crypto_hash_digest(hash
, &sg
, hdrlen
, digest
);
372 iscsi_tcp_dgst_verify(struct iscsi_tcp_conn
*tcp_conn
,
373 struct iscsi_segment
*segment
)
375 if (!segment
->digest_len
)
378 if (memcmp(segment
->recv_digest
, segment
->digest
,
379 segment
->digest_len
)) {
380 debug_scsi("digest mismatch\n");
388 * Helper function to set up segment buffer
391 __iscsi_segment_init(struct iscsi_segment
*segment
, size_t size
,
392 iscsi_segment_done_fn_t
*done
, struct hash_desc
*hash
)
394 memset(segment
, 0, sizeof(*segment
));
395 segment
->total_size
= size
;
396 segment
->done
= done
;
399 segment
->hash
= hash
;
400 crypto_hash_init(hash
);
405 iscsi_segment_init_linear(struct iscsi_segment
*segment
, void *data
,
406 size_t size
, iscsi_segment_done_fn_t
*done
,
407 struct hash_desc
*hash
)
409 __iscsi_segment_init(segment
, size
, done
, hash
);
410 segment
->data
= data
;
411 segment
->size
= size
;
415 iscsi_segment_seek_sg(struct iscsi_segment
*segment
,
416 struct scatterlist
*sg_list
, unsigned int sg_count
,
417 unsigned int offset
, size_t size
,
418 iscsi_segment_done_fn_t
*done
, struct hash_desc
*hash
)
420 struct scatterlist
*sg
;
423 debug_scsi("iscsi_segment_seek_sg offset %u size %llu\n",
425 __iscsi_segment_init(segment
, size
, done
, hash
);
426 for_each_sg(sg_list
, sg
, sg_count
, i
) {
427 debug_scsi("sg %d, len %u offset %u\n", i
, sg
->length
,
429 if (offset
< sg
->length
) {
430 iscsi_tcp_segment_init_sg(segment
, sg
, offset
);
433 offset
-= sg
->length
;
436 return ISCSI_ERR_DATA_OFFSET
;
440 * iscsi_tcp_hdr_recv_prep - prep segment for hdr reception
441 * @tcp_conn: iscsi connection to prep for
443 * This function always passes NULL for the hash argument, because when this
444 * function is called we do not yet know the final size of the header and want
445 * to delay the digest processing until we know that.
448 iscsi_tcp_hdr_recv_prep(struct iscsi_tcp_conn
*tcp_conn
)
450 debug_tcp("iscsi_tcp_hdr_recv_prep(%p%s)\n", tcp_conn
,
451 tcp_conn
->iscsi_conn
->hdrdgst_en
? ", digest enabled" : "");
452 iscsi_segment_init_linear(&tcp_conn
->in
.segment
,
453 tcp_conn
->in
.hdr_buf
, sizeof(struct iscsi_hdr
),
454 iscsi_tcp_hdr_recv_done
, NULL
);
458 * Handle incoming reply to any other type of command
461 iscsi_tcp_data_recv_done(struct iscsi_tcp_conn
*tcp_conn
,
462 struct iscsi_segment
*segment
)
464 struct iscsi_conn
*conn
= tcp_conn
->iscsi_conn
;
467 if (!iscsi_tcp_dgst_verify(tcp_conn
, segment
))
468 return ISCSI_ERR_DATA_DGST
;
470 rc
= iscsi_complete_pdu(conn
, tcp_conn
->in
.hdr
,
471 conn
->data
, tcp_conn
->in
.datalen
);
475 iscsi_tcp_hdr_recv_prep(tcp_conn
);
480 iscsi_tcp_data_recv_prep(struct iscsi_tcp_conn
*tcp_conn
)
482 struct iscsi_conn
*conn
= tcp_conn
->iscsi_conn
;
483 struct hash_desc
*rx_hash
= NULL
;
485 if (conn
->datadgst_en
)
486 rx_hash
= &tcp_conn
->rx_hash
;
488 iscsi_segment_init_linear(&tcp_conn
->in
.segment
,
489 conn
->data
, tcp_conn
->in
.datalen
,
490 iscsi_tcp_data_recv_done
, rx_hash
);
494 * must be called with session lock
497 iscsi_tcp_cleanup_ctask(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
499 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
500 struct iscsi_r2t_info
*r2t
;
502 /* flush ctask's r2t queues */
503 while (__kfifo_get(tcp_ctask
->r2tqueue
, (void*)&r2t
, sizeof(void*))) {
504 __kfifo_put(tcp_ctask
->r2tpool
.queue
, (void*)&r2t
,
506 debug_scsi("iscsi_tcp_cleanup_ctask pending r2t dropped\n");
509 r2t
= tcp_ctask
->r2t
;
511 __kfifo_put(tcp_ctask
->r2tpool
.queue
, (void*)&r2t
,
513 tcp_ctask
->r2t
= NULL
;
518 * iscsi_data_rsp - SCSI Data-In Response processing
519 * @conn: iscsi connection
520 * @ctask: scsi command task
523 iscsi_data_rsp(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
525 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
526 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
527 struct iscsi_data_rsp
*rhdr
= (struct iscsi_data_rsp
*)tcp_conn
->in
.hdr
;
528 struct iscsi_session
*session
= conn
->session
;
529 struct scsi_cmnd
*sc
= ctask
->sc
;
530 int datasn
= be32_to_cpu(rhdr
->datasn
);
531 unsigned total_in_length
= scsi_in(sc
)->length
;
533 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)rhdr
);
534 if (tcp_conn
->in
.datalen
== 0)
537 if (tcp_ctask
->exp_datasn
!= datasn
) {
538 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->datasn(%d)\n",
539 __FUNCTION__
, tcp_ctask
->exp_datasn
, datasn
);
540 return ISCSI_ERR_DATASN
;
543 tcp_ctask
->exp_datasn
++;
545 tcp_ctask
->data_offset
= be32_to_cpu(rhdr
->offset
);
546 if (tcp_ctask
->data_offset
+ tcp_conn
->in
.datalen
> total_in_length
) {
547 debug_tcp("%s: data_offset(%d) + data_len(%d) > total_length_in(%d)\n",
548 __FUNCTION__
, tcp_ctask
->data_offset
,
549 tcp_conn
->in
.datalen
, total_in_length
);
550 return ISCSI_ERR_DATA_OFFSET
;
553 if (rhdr
->flags
& ISCSI_FLAG_DATA_STATUS
) {
554 sc
->result
= (DID_OK
<< 16) | rhdr
->cmd_status
;
555 conn
->exp_statsn
= be32_to_cpu(rhdr
->statsn
) + 1;
556 if (rhdr
->flags
& (ISCSI_FLAG_DATA_UNDERFLOW
|
557 ISCSI_FLAG_DATA_OVERFLOW
)) {
558 int res_count
= be32_to_cpu(rhdr
->residual_count
);
561 (rhdr
->flags
& ISCSI_FLAG_CMD_OVERFLOW
||
562 res_count
<= total_in_length
))
563 scsi_in(sc
)->resid
= res_count
;
565 sc
->result
= (DID_BAD_TARGET
<< 16) |
570 conn
->datain_pdus_cnt
++;
575 * iscsi_solicit_data_init - initialize first Data-Out
576 * @conn: iscsi connection
577 * @ctask: scsi command task
581 * Initialize first Data-Out within this R2T sequence and finds
582 * proper data_offset within this SCSI command.
584 * This function is called with connection lock taken.
587 iscsi_solicit_data_init(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
,
588 struct iscsi_r2t_info
*r2t
)
590 struct iscsi_data
*hdr
;
592 hdr
= &r2t
->dtask
.hdr
;
593 memset(hdr
, 0, sizeof(struct iscsi_data
));
595 hdr
->datasn
= cpu_to_be32(r2t
->solicit_datasn
);
596 r2t
->solicit_datasn
++;
597 hdr
->opcode
= ISCSI_OP_SCSI_DATA_OUT
;
598 memcpy(hdr
->lun
, ctask
->hdr
->lun
, sizeof(hdr
->lun
));
599 hdr
->itt
= ctask
->hdr
->itt
;
600 hdr
->exp_statsn
= r2t
->exp_statsn
;
601 hdr
->offset
= cpu_to_be32(r2t
->data_offset
);
602 if (r2t
->data_length
> conn
->max_xmit_dlength
) {
603 hton24(hdr
->dlength
, conn
->max_xmit_dlength
);
604 r2t
->data_count
= conn
->max_xmit_dlength
;
607 hton24(hdr
->dlength
, r2t
->data_length
);
608 r2t
->data_count
= r2t
->data_length
;
609 hdr
->flags
= ISCSI_FLAG_CMD_FINAL
;
611 conn
->dataout_pdus_cnt
++;
617 * iscsi_r2t_rsp - iSCSI R2T Response processing
618 * @conn: iscsi connection
619 * @ctask: scsi command task
622 iscsi_r2t_rsp(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
624 struct iscsi_r2t_info
*r2t
;
625 struct iscsi_session
*session
= conn
->session
;
626 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
627 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
628 struct iscsi_r2t_rsp
*rhdr
= (struct iscsi_r2t_rsp
*)tcp_conn
->in
.hdr
;
629 int r2tsn
= be32_to_cpu(rhdr
->r2tsn
);
632 if (tcp_conn
->in
.datalen
) {
633 iscsi_conn_printk(KERN_ERR
, conn
,
634 "invalid R2t with datalen %d\n",
635 tcp_conn
->in
.datalen
);
636 return ISCSI_ERR_DATALEN
;
639 if (tcp_ctask
->exp_datasn
!= r2tsn
){
640 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->r2tsn(%d)\n",
641 __FUNCTION__
, tcp_ctask
->exp_datasn
, r2tsn
);
642 return ISCSI_ERR_R2TSN
;
645 /* fill-in new R2T associated with the task */
646 iscsi_update_cmdsn(session
, (struct iscsi_nopin
*)rhdr
);
648 if (!ctask
->sc
|| session
->state
!= ISCSI_STATE_LOGGED_IN
) {
649 iscsi_conn_printk(KERN_INFO
, conn
,
650 "dropping R2T itt %d in recovery.\n",
655 rc
= __kfifo_get(tcp_ctask
->r2tpool
.queue
, (void*)&r2t
, sizeof(void*));
658 r2t
->exp_statsn
= rhdr
->statsn
;
659 r2t
->data_length
= be32_to_cpu(rhdr
->data_length
);
660 if (r2t
->data_length
== 0) {
661 iscsi_conn_printk(KERN_ERR
, conn
,
662 "invalid R2T with zero data len\n");
663 __kfifo_put(tcp_ctask
->r2tpool
.queue
, (void*)&r2t
,
665 return ISCSI_ERR_DATALEN
;
668 if (r2t
->data_length
> session
->max_burst
)
669 debug_scsi("invalid R2T with data len %u and max burst %u."
670 "Attempting to execute request.\n",
671 r2t
->data_length
, session
->max_burst
);
673 r2t
->data_offset
= be32_to_cpu(rhdr
->data_offset
);
674 if (r2t
->data_offset
+ r2t
->data_length
> scsi_out(ctask
->sc
)->length
) {
675 iscsi_conn_printk(KERN_ERR
, conn
,
676 "invalid R2T with data len %u at offset %u "
677 "and total length %d\n", r2t
->data_length
,
678 r2t
->data_offset
, scsi_out(ctask
->sc
)->length
);
679 __kfifo_put(tcp_ctask
->r2tpool
.queue
, (void*)&r2t
,
681 return ISCSI_ERR_DATALEN
;
684 r2t
->ttt
= rhdr
->ttt
; /* no flip */
685 r2t
->solicit_datasn
= 0;
687 iscsi_solicit_data_init(conn
, ctask
, r2t
);
689 tcp_ctask
->exp_datasn
= r2tsn
+ 1;
690 __kfifo_put(tcp_ctask
->r2tqueue
, (void*)&r2t
, sizeof(void*));
691 conn
->r2t_pdus_cnt
++;
693 iscsi_requeue_ctask(ctask
);
698 * Handle incoming reply to DataIn command
701 iscsi_tcp_process_data_in(struct iscsi_tcp_conn
*tcp_conn
,
702 struct iscsi_segment
*segment
)
704 struct iscsi_conn
*conn
= tcp_conn
->iscsi_conn
;
705 struct iscsi_hdr
*hdr
= tcp_conn
->in
.hdr
;
708 if (!iscsi_tcp_dgst_verify(tcp_conn
, segment
))
709 return ISCSI_ERR_DATA_DGST
;
711 /* check for non-exceptional status */
712 if (hdr
->flags
& ISCSI_FLAG_DATA_STATUS
) {
713 rc
= iscsi_complete_pdu(conn
, tcp_conn
->in
.hdr
, NULL
, 0);
718 iscsi_tcp_hdr_recv_prep(tcp_conn
);
723 * iscsi_tcp_hdr_dissect - process PDU header
724 * @conn: iSCSI connection
727 * This function analyzes the header of the PDU received,
728 * and performs several sanity checks. If the PDU is accompanied
729 * by data, the receive buffer is set up to copy the incoming data
730 * to the correct location.
733 iscsi_tcp_hdr_dissect(struct iscsi_conn
*conn
, struct iscsi_hdr
*hdr
)
735 int rc
= 0, opcode
, ahslen
;
736 struct iscsi_session
*session
= conn
->session
;
737 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
738 struct iscsi_cmd_task
*ctask
;
741 /* verify PDU length */
742 tcp_conn
->in
.datalen
= ntoh24(hdr
->dlength
);
743 if (tcp_conn
->in
.datalen
> conn
->max_recv_dlength
) {
744 iscsi_conn_printk(KERN_ERR
, conn
,
745 "iscsi_tcp: datalen %d > %d\n",
746 tcp_conn
->in
.datalen
, conn
->max_recv_dlength
);
747 return ISCSI_ERR_DATALEN
;
750 /* Additional header segments. So far, we don't
751 * process additional headers.
753 ahslen
= hdr
->hlength
<< 2;
755 opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
756 /* verify itt (itt encoding: age+cid+itt) */
757 rc
= iscsi_verify_itt(conn
, hdr
, &itt
);
761 debug_tcp("opcode 0x%x ahslen %d datalen %d\n",
762 opcode
, ahslen
, tcp_conn
->in
.datalen
);
765 case ISCSI_OP_SCSI_DATA_IN
:
766 ctask
= session
->cmds
[itt
];
767 spin_lock(&conn
->session
->lock
);
768 rc
= iscsi_data_rsp(conn
, ctask
);
769 spin_unlock(&conn
->session
->lock
);
772 if (tcp_conn
->in
.datalen
) {
773 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
774 struct hash_desc
*rx_hash
= NULL
;
775 struct scsi_data_buffer
*sdb
= scsi_in(ctask
->sc
);
778 * Setup copy of Data-In into the Scsi_Cmnd
780 * We set up the iscsi_segment to point to the next
781 * scatterlist entry to copy to. As we go along,
782 * we move on to the next scatterlist entry and
783 * update the digest per-entry.
785 if (conn
->datadgst_en
)
786 rx_hash
= &tcp_conn
->rx_hash
;
788 debug_tcp("iscsi_tcp_begin_data_in(%p, offset=%d, "
789 "datalen=%d)\n", tcp_conn
,
790 tcp_ctask
->data_offset
,
791 tcp_conn
->in
.datalen
);
792 return iscsi_segment_seek_sg(&tcp_conn
->in
.segment
,
795 tcp_ctask
->data_offset
,
796 tcp_conn
->in
.datalen
,
797 iscsi_tcp_process_data_in
,
801 case ISCSI_OP_SCSI_CMD_RSP
:
802 if (tcp_conn
->in
.datalen
) {
803 iscsi_tcp_data_recv_prep(tcp_conn
);
806 rc
= iscsi_complete_pdu(conn
, hdr
, NULL
, 0);
809 ctask
= session
->cmds
[itt
];
811 rc
= ISCSI_ERR_AHSLEN
;
812 else if (ctask
->sc
->sc_data_direction
== DMA_TO_DEVICE
) {
813 spin_lock(&session
->lock
);
814 rc
= iscsi_r2t_rsp(conn
, ctask
);
815 spin_unlock(&session
->lock
);
817 rc
= ISCSI_ERR_PROTO
;
819 case ISCSI_OP_LOGIN_RSP
:
820 case ISCSI_OP_TEXT_RSP
:
821 case ISCSI_OP_REJECT
:
822 case ISCSI_OP_ASYNC_EVENT
:
824 * It is possible that we could get a PDU with a buffer larger
825 * than 8K, but there are no targets that currently do this.
826 * For now we fail until we find a vendor that needs it
828 if (ISCSI_DEF_MAX_RECV_SEG_LEN
< tcp_conn
->in
.datalen
) {
829 iscsi_conn_printk(KERN_ERR
, conn
,
830 "iscsi_tcp: received buffer of "
831 "len %u but conn buffer is only %u "
833 tcp_conn
->in
.datalen
,
834 ISCSI_DEF_MAX_RECV_SEG_LEN
, opcode
);
835 rc
= ISCSI_ERR_PROTO
;
839 /* If there's data coming in with the response,
840 * receive it to the connection's buffer.
842 if (tcp_conn
->in
.datalen
) {
843 iscsi_tcp_data_recv_prep(tcp_conn
);
847 case ISCSI_OP_LOGOUT_RSP
:
848 case ISCSI_OP_NOOP_IN
:
849 case ISCSI_OP_SCSI_TMFUNC_RSP
:
850 rc
= iscsi_complete_pdu(conn
, hdr
, NULL
, 0);
853 rc
= ISCSI_ERR_BAD_OPCODE
;
858 /* Anything that comes with data should have
859 * been handled above. */
860 if (tcp_conn
->in
.datalen
)
861 return ISCSI_ERR_PROTO
;
862 iscsi_tcp_hdr_recv_prep(tcp_conn
);
869 * iscsi_tcp_hdr_recv_done - process PDU header
871 * This is the callback invoked when the PDU header has
872 * been received. If the header is followed by additional
873 * header segments, we go back for more data.
876 iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn
*tcp_conn
,
877 struct iscsi_segment
*segment
)
879 struct iscsi_conn
*conn
= tcp_conn
->iscsi_conn
;
880 struct iscsi_hdr
*hdr
;
882 /* Check if there are additional header segments
883 * *prior* to computing the digest, because we
884 * may need to go back to the caller for more.
886 hdr
= (struct iscsi_hdr
*) tcp_conn
->in
.hdr_buf
;
887 if (segment
->copied
== sizeof(struct iscsi_hdr
) && hdr
->hlength
) {
888 /* Bump the header length - the caller will
889 * just loop around and get the AHS for us, and
891 unsigned int ahslen
= hdr
->hlength
<< 2;
893 /* Make sure we don't overflow */
894 if (sizeof(*hdr
) + ahslen
> sizeof(tcp_conn
->in
.hdr_buf
))
895 return ISCSI_ERR_AHSLEN
;
897 segment
->total_size
+= ahslen
;
898 segment
->size
+= ahslen
;
902 /* We're done processing the header. See if we're doing
903 * header digests; if so, set up the recv_digest buffer
904 * and go back for more. */
905 if (conn
->hdrdgst_en
) {
906 if (segment
->digest_len
== 0) {
907 iscsi_tcp_segment_splice_digest(segment
,
908 segment
->recv_digest
);
911 iscsi_tcp_dgst_header(&tcp_conn
->rx_hash
, hdr
,
912 segment
->total_copied
- ISCSI_DIGEST_SIZE
,
915 if (!iscsi_tcp_dgst_verify(tcp_conn
, segment
))
916 return ISCSI_ERR_HDR_DGST
;
919 tcp_conn
->in
.hdr
= hdr
;
920 return iscsi_tcp_hdr_dissect(conn
, hdr
);
924 * iscsi_tcp_recv - TCP receive in sendfile fashion
925 * @rd_desc: read descriptor
926 * @skb: socket buffer
927 * @offset: offset in skb
928 * @len: skb->len - offset
931 iscsi_tcp_recv(read_descriptor_t
*rd_desc
, struct sk_buff
*skb
,
932 unsigned int offset
, size_t len
)
934 struct iscsi_conn
*conn
= rd_desc
->arg
.data
;
935 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
936 struct iscsi_segment
*segment
= &tcp_conn
->in
.segment
;
937 struct skb_seq_state seq
;
938 unsigned int consumed
= 0;
941 debug_tcp("in %d bytes\n", skb
->len
- offset
);
943 if (unlikely(conn
->suspend_rx
)) {
944 debug_tcp("conn %d Rx suspended!\n", conn
->id
);
948 skb_prepare_seq_read(skb
, offset
, skb
->len
, &seq
);
953 avail
= skb_seq_read(consumed
, &ptr
, &seq
);
955 debug_tcp("no more data avail. Consumed %d\n",
959 BUG_ON(segment
->copied
>= segment
->size
);
961 debug_tcp("skb %p ptr=%p avail=%u\n", skb
, ptr
, avail
);
962 rc
= iscsi_tcp_segment_recv(tcp_conn
, segment
, ptr
, avail
);
966 if (segment
->total_copied
>= segment
->total_size
) {
967 debug_tcp("segment done\n");
968 rc
= segment
->done(tcp_conn
, segment
);
970 skb_abort_seq_read(&seq
);
974 /* The done() functions sets up the
978 skb_abort_seq_read(&seq
);
979 conn
->rxdata_octets
+= consumed
;
983 debug_tcp("Error receiving PDU, errno=%d\n", rc
);
984 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
989 iscsi_tcp_data_ready(struct sock
*sk
, int flag
)
991 struct iscsi_conn
*conn
= sk
->sk_user_data
;
992 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
993 read_descriptor_t rd_desc
;
995 read_lock(&sk
->sk_callback_lock
);
998 * Use rd_desc to pass 'conn' to iscsi_tcp_recv.
999 * We set count to 1 because we want the network layer to
1000 * hand us all the skbs that are available. iscsi_tcp_recv
1001 * handled pdus that cross buffers or pdus that still need data.
1003 rd_desc
.arg
.data
= conn
;
1005 tcp_read_sock(sk
, &rd_desc
, iscsi_tcp_recv
);
1007 read_unlock(&sk
->sk_callback_lock
);
1009 /* If we had to (atomically) map a highmem page,
1011 iscsi_tcp_segment_unmap(&tcp_conn
->in
.segment
);
1015 iscsi_tcp_state_change(struct sock
*sk
)
1017 struct iscsi_tcp_conn
*tcp_conn
;
1018 struct iscsi_conn
*conn
;
1019 struct iscsi_session
*session
;
1020 void (*old_state_change
)(struct sock
*);
1022 read_lock(&sk
->sk_callback_lock
);
1024 conn
= (struct iscsi_conn
*)sk
->sk_user_data
;
1025 session
= conn
->session
;
1027 if ((sk
->sk_state
== TCP_CLOSE_WAIT
||
1028 sk
->sk_state
== TCP_CLOSE
) &&
1029 !atomic_read(&sk
->sk_rmem_alloc
)) {
1030 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1031 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1034 tcp_conn
= conn
->dd_data
;
1035 old_state_change
= tcp_conn
->old_state_change
;
1037 read_unlock(&sk
->sk_callback_lock
);
1039 old_state_change(sk
);
1043 * iscsi_write_space - Called when more output buffer space is available
1044 * @sk: socket space is available for
1047 iscsi_write_space(struct sock
*sk
)
1049 struct iscsi_conn
*conn
= (struct iscsi_conn
*)sk
->sk_user_data
;
1050 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1052 tcp_conn
->old_write_space(sk
);
1053 debug_tcp("iscsi_write_space: cid %d\n", conn
->id
);
1054 scsi_queue_work(conn
->session
->host
, &conn
->xmitwork
);
1058 iscsi_conn_set_callbacks(struct iscsi_conn
*conn
)
1060 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1061 struct sock
*sk
= tcp_conn
->sock
->sk
;
1063 /* assign new callbacks */
1064 write_lock_bh(&sk
->sk_callback_lock
);
1065 sk
->sk_user_data
= conn
;
1066 tcp_conn
->old_data_ready
= sk
->sk_data_ready
;
1067 tcp_conn
->old_state_change
= sk
->sk_state_change
;
1068 tcp_conn
->old_write_space
= sk
->sk_write_space
;
1069 sk
->sk_data_ready
= iscsi_tcp_data_ready
;
1070 sk
->sk_state_change
= iscsi_tcp_state_change
;
1071 sk
->sk_write_space
= iscsi_write_space
;
1072 write_unlock_bh(&sk
->sk_callback_lock
);
1076 iscsi_conn_restore_callbacks(struct iscsi_tcp_conn
*tcp_conn
)
1078 struct sock
*sk
= tcp_conn
->sock
->sk
;
1080 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1081 write_lock_bh(&sk
->sk_callback_lock
);
1082 sk
->sk_user_data
= NULL
;
1083 sk
->sk_data_ready
= tcp_conn
->old_data_ready
;
1084 sk
->sk_state_change
= tcp_conn
->old_state_change
;
1085 sk
->sk_write_space
= tcp_conn
->old_write_space
;
1086 sk
->sk_no_check
= 0;
1087 write_unlock_bh(&sk
->sk_callback_lock
);
1091 * iscsi_xmit - TCP transmit
1094 iscsi_xmit(struct iscsi_conn
*conn
)
1096 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1097 struct iscsi_segment
*segment
= &tcp_conn
->out
.segment
;
1098 unsigned int consumed
= 0;
1102 rc
= iscsi_tcp_xmit_segment(tcp_conn
, segment
);
1110 if (segment
->total_copied
>= segment
->total_size
) {
1111 if (segment
->done
!= NULL
) {
1112 rc
= segment
->done(tcp_conn
, segment
);
1119 debug_tcp("xmit %d bytes\n", consumed
);
1121 conn
->txdata_octets
+= consumed
;
1125 /* Transmit error. We could initiate error recovery
1127 debug_tcp("Error sending PDU, errno=%d\n", rc
);
1128 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1133 * iscsi_tcp_xmit_qlen - return the number of bytes queued for xmit
1136 iscsi_tcp_xmit_qlen(struct iscsi_conn
*conn
)
1138 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1139 struct iscsi_segment
*segment
= &tcp_conn
->out
.segment
;
1141 return segment
->total_copied
- segment
->total_size
;
1145 iscsi_tcp_flush(struct iscsi_conn
*conn
)
1149 while (iscsi_tcp_xmit_qlen(conn
)) {
1150 rc
= iscsi_xmit(conn
);
1161 * This is called when we're done sending the header.
1162 * Simply copy the data_segment to the send segment, and return.
1165 iscsi_tcp_send_hdr_done(struct iscsi_tcp_conn
*tcp_conn
,
1166 struct iscsi_segment
*segment
)
1168 tcp_conn
->out
.segment
= tcp_conn
->out
.data_segment
;
1169 debug_tcp("Header done. Next segment size %u total_size %u\n",
1170 tcp_conn
->out
.segment
.size
, tcp_conn
->out
.segment
.total_size
);
1175 iscsi_tcp_send_hdr_prep(struct iscsi_conn
*conn
, void *hdr
, size_t hdrlen
)
1177 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1179 debug_tcp("%s(%p%s)\n", __FUNCTION__
, tcp_conn
,
1180 conn
->hdrdgst_en
? ", digest enabled" : "");
1182 /* Clear the data segment - needs to be filled in by the
1183 * caller using iscsi_tcp_send_data_prep() */
1184 memset(&tcp_conn
->out
.data_segment
, 0, sizeof(struct iscsi_segment
));
1186 /* If header digest is enabled, compute the CRC and
1187 * place the digest into the same buffer. We make
1188 * sure that both iscsi_tcp_ctask and mtask have
1191 if (conn
->hdrdgst_en
) {
1192 iscsi_tcp_dgst_header(&tcp_conn
->tx_hash
, hdr
, hdrlen
,
1194 hdrlen
+= ISCSI_DIGEST_SIZE
;
1197 /* Remember header pointer for later, when we need
1198 * to decide whether there's a payload to go along
1199 * with the header. */
1200 tcp_conn
->out
.hdr
= hdr
;
1202 iscsi_segment_init_linear(&tcp_conn
->out
.segment
, hdr
, hdrlen
,
1203 iscsi_tcp_send_hdr_done
, NULL
);
1207 * Prepare the send buffer for the payload data.
1208 * Padding and checksumming will all be taken care
1209 * of by the iscsi_segment routines.
1212 iscsi_tcp_send_data_prep(struct iscsi_conn
*conn
, struct scatterlist
*sg
,
1213 unsigned int count
, unsigned int offset
,
1216 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1217 struct hash_desc
*tx_hash
= NULL
;
1218 unsigned int hdr_spec_len
;
1220 debug_tcp("%s(%p, offset=%d, datalen=%d%s)\n", __FUNCTION__
,
1221 tcp_conn
, offset
, len
,
1222 conn
->datadgst_en
? ", digest enabled" : "");
1224 /* Make sure the datalen matches what the caller
1225 said he would send. */
1226 hdr_spec_len
= ntoh24(tcp_conn
->out
.hdr
->dlength
);
1227 WARN_ON(iscsi_padded(len
) != iscsi_padded(hdr_spec_len
));
1229 if (conn
->datadgst_en
)
1230 tx_hash
= &tcp_conn
->tx_hash
;
1232 return iscsi_segment_seek_sg(&tcp_conn
->out
.data_segment
,
1233 sg
, count
, offset
, len
,
1238 iscsi_tcp_send_linear_data_prepare(struct iscsi_conn
*conn
, void *data
,
1241 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1242 struct hash_desc
*tx_hash
= NULL
;
1243 unsigned int hdr_spec_len
;
1245 debug_tcp("%s(%p, datalen=%d%s)\n", __FUNCTION__
, tcp_conn
, len
,
1246 conn
->datadgst_en
? ", digest enabled" : "");
1248 /* Make sure the datalen matches what the caller
1249 said he would send. */
1250 hdr_spec_len
= ntoh24(tcp_conn
->out
.hdr
->dlength
);
1251 WARN_ON(iscsi_padded(len
) != iscsi_padded(hdr_spec_len
));
1253 if (conn
->datadgst_en
)
1254 tx_hash
= &tcp_conn
->tx_hash
;
1256 iscsi_segment_init_linear(&tcp_conn
->out
.data_segment
,
1257 data
, len
, NULL
, tx_hash
);
1261 * iscsi_solicit_data_cont - initialize next Data-Out
1262 * @conn: iscsi connection
1263 * @ctask: scsi command task
1265 * @left: bytes left to transfer
1268 * Initialize next Data-Out within this R2T sequence and continue
1269 * to process next Scatter-Gather element(if any) of this SCSI command.
1271 * Called under connection lock.
1274 iscsi_solicit_data_cont(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
,
1275 struct iscsi_r2t_info
*r2t
)
1277 struct iscsi_data
*hdr
;
1278 int new_offset
, left
;
1280 BUG_ON(r2t
->data_length
- r2t
->sent
< 0);
1281 left
= r2t
->data_length
- r2t
->sent
;
1285 hdr
= &r2t
->dtask
.hdr
;
1286 memset(hdr
, 0, sizeof(struct iscsi_data
));
1287 hdr
->ttt
= r2t
->ttt
;
1288 hdr
->datasn
= cpu_to_be32(r2t
->solicit_datasn
);
1289 r2t
->solicit_datasn
++;
1290 hdr
->opcode
= ISCSI_OP_SCSI_DATA_OUT
;
1291 memcpy(hdr
->lun
, ctask
->hdr
->lun
, sizeof(hdr
->lun
));
1292 hdr
->itt
= ctask
->hdr
->itt
;
1293 hdr
->exp_statsn
= r2t
->exp_statsn
;
1294 new_offset
= r2t
->data_offset
+ r2t
->sent
;
1295 hdr
->offset
= cpu_to_be32(new_offset
);
1296 if (left
> conn
->max_xmit_dlength
) {
1297 hton24(hdr
->dlength
, conn
->max_xmit_dlength
);
1298 r2t
->data_count
= conn
->max_xmit_dlength
;
1300 hton24(hdr
->dlength
, left
);
1301 r2t
->data_count
= left
;
1302 hdr
->flags
= ISCSI_FLAG_CMD_FINAL
;
1305 conn
->dataout_pdus_cnt
++;
1310 * iscsi_tcp_ctask - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
1311 * @conn: iscsi connection
1312 * @ctask: scsi command task
1316 iscsi_tcp_ctask_init(struct iscsi_cmd_task
*ctask
)
1318 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1319 struct iscsi_conn
*conn
= ctask
->conn
;
1320 struct scsi_cmnd
*sc
= ctask
->sc
;
1323 BUG_ON(__kfifo_len(tcp_ctask
->r2tqueue
));
1324 tcp_ctask
->sent
= 0;
1325 tcp_ctask
->exp_datasn
= 0;
1327 /* Prepare PDU, optionally w/ immediate data */
1328 debug_scsi("ctask deq [cid %d itt 0x%x imm %d unsol %d]\n",
1329 conn
->id
, ctask
->itt
, ctask
->imm_count
,
1330 ctask
->unsol_count
);
1331 iscsi_tcp_send_hdr_prep(conn
, ctask
->hdr
, ctask
->hdr_len
);
1333 if (!ctask
->imm_count
)
1336 /* If we have immediate data, attach a payload */
1337 err
= iscsi_tcp_send_data_prep(conn
, scsi_out(sc
)->table
.sgl
,
1338 scsi_out(sc
)->table
.nents
,
1339 0, ctask
->imm_count
);
1342 tcp_ctask
->sent
+= ctask
->imm_count
;
1343 ctask
->imm_count
= 0;
1348 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
1349 * @conn: iscsi connection
1350 * @mtask: task management task
1353 * The function can return -EAGAIN in which case caller must
1354 * call it again later, or recover. '0' return code means successful
1358 iscsi_tcp_mtask_xmit(struct iscsi_conn
*conn
, struct iscsi_mgmt_task
*mtask
)
1362 /* Flush any pending data first. */
1363 rc
= iscsi_tcp_flush(conn
);
1367 if (mtask
->hdr
->itt
== RESERVED_ITT
) {
1368 struct iscsi_session
*session
= conn
->session
;
1370 spin_lock_bh(&session
->lock
);
1371 iscsi_free_mgmt_task(conn
, mtask
);
1372 spin_unlock_bh(&session
->lock
);
1379 * iscsi_tcp_ctask_xmit - xmit normal PDU task
1380 * @conn: iscsi connection
1381 * @ctask: iscsi command task
1383 * We're expected to return 0 when everything was transmitted succesfully,
1384 * -EAGAIN if there's still data in the queue, or != 0 for any other kind
1388 iscsi_tcp_ctask_xmit(struct iscsi_conn
*conn
, struct iscsi_cmd_task
*ctask
)
1390 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1391 struct scsi_cmnd
*sc
= ctask
->sc
;
1392 struct scsi_data_buffer
*sdb
= scsi_out(sc
);
1396 /* Flush any pending data first. */
1397 rc
= iscsi_tcp_flush(conn
);
1401 /* Are we done already? */
1402 if (sc
->sc_data_direction
!= DMA_TO_DEVICE
)
1405 if (ctask
->unsol_count
!= 0) {
1406 struct iscsi_data
*hdr
= &tcp_ctask
->unsol_dtask
.hdr
;
1408 /* Prepare a header for the unsolicited PDU.
1409 * The amount of data we want to send will be
1410 * in ctask->data_count.
1411 * FIXME: return the data count instead.
1413 iscsi_prep_unsolicit_data_pdu(ctask
, hdr
);
1415 debug_tcp("unsol dout [itt 0x%x doff %d dlen %d]\n",
1416 ctask
->itt
, tcp_ctask
->sent
, ctask
->data_count
);
1418 iscsi_tcp_send_hdr_prep(conn
, hdr
, sizeof(*hdr
));
1419 rc
= iscsi_tcp_send_data_prep(conn
, sdb
->table
.sgl
,
1420 sdb
->table
.nents
, tcp_ctask
->sent
,
1424 tcp_ctask
->sent
+= ctask
->data_count
;
1425 ctask
->unsol_count
-= ctask
->data_count
;
1428 struct iscsi_session
*session
= conn
->session
;
1429 struct iscsi_r2t_info
*r2t
;
1431 /* All unsolicited PDUs sent. Check for solicited PDUs.
1433 spin_lock_bh(&session
->lock
);
1434 r2t
= tcp_ctask
->r2t
;
1436 /* Continue with this R2T? */
1437 if (!iscsi_solicit_data_cont(conn
, ctask
, r2t
)) {
1438 debug_scsi(" done with r2t %p\n", r2t
);
1440 __kfifo_put(tcp_ctask
->r2tpool
.queue
,
1441 (void*)&r2t
, sizeof(void*));
1442 tcp_ctask
->r2t
= r2t
= NULL
;
1447 __kfifo_get(tcp_ctask
->r2tqueue
, (void*)&tcp_ctask
->r2t
,
1449 r2t
= tcp_ctask
->r2t
;
1451 spin_unlock_bh(&session
->lock
);
1453 /* Waiting for more R2Ts to arrive. */
1455 debug_tcp("no R2Ts yet\n");
1459 debug_scsi("sol dout %p [dsn %d itt 0x%x doff %d dlen %d]\n",
1460 r2t
, r2t
->solicit_datasn
- 1, ctask
->itt
,
1461 r2t
->data_offset
+ r2t
->sent
, r2t
->data_count
);
1463 iscsi_tcp_send_hdr_prep(conn
, &r2t
->dtask
.hdr
,
1464 sizeof(struct iscsi_hdr
));
1466 rc
= iscsi_tcp_send_data_prep(conn
, sdb
->table
.sgl
,
1468 r2t
->data_offset
+ r2t
->sent
,
1472 tcp_ctask
->sent
+= r2t
->data_count
;
1473 r2t
->sent
+= r2t
->data_count
;
1478 iscsi_conn_failure(conn
, rc
);
1482 static struct iscsi_cls_conn
*
1483 iscsi_tcp_conn_create(struct iscsi_cls_session
*cls_session
, uint32_t conn_idx
)
1485 struct iscsi_conn
*conn
;
1486 struct iscsi_cls_conn
*cls_conn
;
1487 struct iscsi_tcp_conn
*tcp_conn
;
1489 cls_conn
= iscsi_conn_setup(cls_session
, conn_idx
);
1492 conn
= cls_conn
->dd_data
;
1494 * due to strange issues with iser these are not set
1495 * in iscsi_conn_setup
1497 conn
->max_recv_dlength
= ISCSI_DEF_MAX_RECV_SEG_LEN
;
1499 tcp_conn
= kzalloc(sizeof(*tcp_conn
), GFP_KERNEL
);
1501 goto tcp_conn_alloc_fail
;
1503 conn
->dd_data
= tcp_conn
;
1504 tcp_conn
->iscsi_conn
= conn
;
1506 tcp_conn
->tx_hash
.tfm
= crypto_alloc_hash("crc32c", 0,
1508 tcp_conn
->tx_hash
.flags
= 0;
1509 if (IS_ERR(tcp_conn
->tx_hash
.tfm
))
1512 tcp_conn
->rx_hash
.tfm
= crypto_alloc_hash("crc32c", 0,
1514 tcp_conn
->rx_hash
.flags
= 0;
1515 if (IS_ERR(tcp_conn
->rx_hash
.tfm
))
1521 crypto_free_hash(tcp_conn
->tx_hash
.tfm
);
1523 iscsi_conn_printk(KERN_ERR
, conn
,
1524 "Could not create connection due to crc32c "
1525 "loading error. Make sure the crc32c "
1526 "module is built as a module or into the "
1529 tcp_conn_alloc_fail
:
1530 iscsi_conn_teardown(cls_conn
);
1535 iscsi_tcp_release_conn(struct iscsi_conn
*conn
)
1537 struct iscsi_session
*session
= conn
->session
;
1538 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1539 struct socket
*sock
= tcp_conn
->sock
;
1544 sock_hold(sock
->sk
);
1545 iscsi_conn_restore_callbacks(tcp_conn
);
1548 spin_lock_bh(&session
->lock
);
1549 tcp_conn
->sock
= NULL
;
1550 conn
->recv_lock
= NULL
;
1551 spin_unlock_bh(&session
->lock
);
1556 iscsi_tcp_conn_destroy(struct iscsi_cls_conn
*cls_conn
)
1558 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1559 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1561 iscsi_tcp_release_conn(conn
);
1562 iscsi_conn_teardown(cls_conn
);
1564 if (tcp_conn
->tx_hash
.tfm
)
1565 crypto_free_hash(tcp_conn
->tx_hash
.tfm
);
1566 if (tcp_conn
->rx_hash
.tfm
)
1567 crypto_free_hash(tcp_conn
->rx_hash
.tfm
);
1573 iscsi_tcp_conn_stop(struct iscsi_cls_conn
*cls_conn
, int flag
)
1575 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1577 iscsi_conn_stop(cls_conn
, flag
);
1578 iscsi_tcp_release_conn(conn
);
1581 static int iscsi_tcp_get_addr(struct iscsi_conn
*conn
, struct socket
*sock
,
1582 char *buf
, int *port
,
1583 int (*getname
)(struct socket
*, struct sockaddr
*,
1586 struct sockaddr_storage
*addr
;
1587 struct sockaddr_in6
*sin6
;
1588 struct sockaddr_in
*sin
;
1591 addr
= kmalloc(sizeof(*addr
), GFP_KERNEL
);
1595 if (getname(sock
, (struct sockaddr
*) addr
, &len
)) {
1600 switch (addr
->ss_family
) {
1602 sin
= (struct sockaddr_in
*)addr
;
1603 spin_lock_bh(&conn
->session
->lock
);
1604 sprintf(buf
, NIPQUAD_FMT
, NIPQUAD(sin
->sin_addr
.s_addr
));
1605 *port
= be16_to_cpu(sin
->sin_port
);
1606 spin_unlock_bh(&conn
->session
->lock
);
1609 sin6
= (struct sockaddr_in6
*)addr
;
1610 spin_lock_bh(&conn
->session
->lock
);
1611 sprintf(buf
, NIP6_FMT
, NIP6(sin6
->sin6_addr
));
1612 *port
= be16_to_cpu(sin6
->sin6_port
);
1613 spin_unlock_bh(&conn
->session
->lock
);
1622 iscsi_tcp_conn_bind(struct iscsi_cls_session
*cls_session
,
1623 struct iscsi_cls_conn
*cls_conn
, uint64_t transport_eph
,
1626 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1627 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1629 struct socket
*sock
;
1632 /* lookup for existing socket */
1633 sock
= sockfd_lookup((int)transport_eph
, &err
);
1635 iscsi_conn_printk(KERN_ERR
, conn
,
1636 "sockfd_lookup failed %d\n", err
);
1640 * copy these values now because if we drop the session
1641 * userspace may still want to query the values since we will
1642 * be using them for the reconnect
1644 err
= iscsi_tcp_get_addr(conn
, sock
, conn
->portal_address
,
1645 &conn
->portal_port
, kernel_getpeername
);
1649 err
= iscsi_tcp_get_addr(conn
, sock
, conn
->local_address
,
1650 &conn
->local_port
, kernel_getsockname
);
1654 err
= iscsi_conn_bind(cls_session
, cls_conn
, is_leading
);
1658 /* bind iSCSI connection and socket */
1659 tcp_conn
->sock
= sock
;
1661 /* setup Socket parameters */
1664 sk
->sk_sndtimeo
= 15 * HZ
; /* FIXME: make it configurable */
1665 sk
->sk_allocation
= GFP_ATOMIC
;
1667 /* FIXME: disable Nagle's algorithm */
1670 * Intercept TCP callbacks for sendfile like receive
1673 conn
->recv_lock
= &sk
->sk_callback_lock
;
1674 iscsi_conn_set_callbacks(conn
);
1675 tcp_conn
->sendpage
= tcp_conn
->sock
->ops
->sendpage
;
1677 * set receive state machine into initial state
1679 iscsi_tcp_hdr_recv_prep(tcp_conn
);
1687 /* called with host lock */
1689 iscsi_tcp_mtask_init(struct iscsi_conn
*conn
, struct iscsi_mgmt_task
*mtask
)
1691 debug_scsi("mtask deq [cid %d itt 0x%x]\n", conn
->id
, mtask
->itt
);
1693 /* Prepare PDU, optionally w/ immediate data */
1694 iscsi_tcp_send_hdr_prep(conn
, mtask
->hdr
, sizeof(*mtask
->hdr
));
1696 /* If we have immediate data, attach a payload */
1697 if (mtask
->data_count
)
1698 iscsi_tcp_send_linear_data_prepare(conn
, mtask
->data
,
1703 iscsi_r2tpool_alloc(struct iscsi_session
*session
)
1709 * initialize per-task: R2T pool and xmit queue
1711 for (cmd_i
= 0; cmd_i
< session
->cmds_max
; cmd_i
++) {
1712 struct iscsi_cmd_task
*ctask
= session
->cmds
[cmd_i
];
1713 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1716 * pre-allocated x4 as much r2ts to handle race when
1717 * target acks DataOut faster than we data_xmit() queues
1718 * could replenish r2tqueue.
1722 if (iscsi_pool_init(&tcp_ctask
->r2tpool
, session
->max_r2t
* 4, NULL
,
1723 sizeof(struct iscsi_r2t_info
))) {
1724 goto r2t_alloc_fail
;
1727 /* R2T xmit queue */
1728 tcp_ctask
->r2tqueue
= kfifo_alloc(
1729 session
->max_r2t
* 4 * sizeof(void*), GFP_KERNEL
, NULL
);
1730 if (tcp_ctask
->r2tqueue
== ERR_PTR(-ENOMEM
)) {
1731 iscsi_pool_free(&tcp_ctask
->r2tpool
);
1732 goto r2t_alloc_fail
;
1739 for (i
= 0; i
< cmd_i
; i
++) {
1740 struct iscsi_cmd_task
*ctask
= session
->cmds
[i
];
1741 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1743 kfifo_free(tcp_ctask
->r2tqueue
);
1744 iscsi_pool_free(&tcp_ctask
->r2tpool
);
1750 iscsi_r2tpool_free(struct iscsi_session
*session
)
1754 for (i
= 0; i
< session
->cmds_max
; i
++) {
1755 struct iscsi_cmd_task
*ctask
= session
->cmds
[i
];
1756 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1758 kfifo_free(tcp_ctask
->r2tqueue
);
1759 iscsi_pool_free(&tcp_ctask
->r2tpool
);
1764 iscsi_conn_set_param(struct iscsi_cls_conn
*cls_conn
, enum iscsi_param param
,
1765 char *buf
, int buflen
)
1767 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1768 struct iscsi_session
*session
= conn
->session
;
1769 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1773 case ISCSI_PARAM_HDRDGST_EN
:
1774 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
1776 case ISCSI_PARAM_DATADGST_EN
:
1777 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
1778 tcp_conn
->sendpage
= conn
->datadgst_en
?
1779 sock_no_sendpage
: tcp_conn
->sock
->ops
->sendpage
;
1781 case ISCSI_PARAM_MAX_R2T
:
1782 sscanf(buf
, "%d", &value
);
1783 if (value
<= 0 || !is_power_of_2(value
))
1785 if (session
->max_r2t
== value
)
1787 iscsi_r2tpool_free(session
);
1788 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
1789 if (iscsi_r2tpool_alloc(session
))
1793 return iscsi_set_param(cls_conn
, param
, buf
, buflen
);
1800 iscsi_tcp_conn_get_param(struct iscsi_cls_conn
*cls_conn
,
1801 enum iscsi_param param
, char *buf
)
1803 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1807 case ISCSI_PARAM_CONN_PORT
:
1808 spin_lock_bh(&conn
->session
->lock
);
1809 len
= sprintf(buf
, "%hu\n", conn
->portal_port
);
1810 spin_unlock_bh(&conn
->session
->lock
);
1812 case ISCSI_PARAM_CONN_ADDRESS
:
1813 spin_lock_bh(&conn
->session
->lock
);
1814 len
= sprintf(buf
, "%s\n", conn
->portal_address
);
1815 spin_unlock_bh(&conn
->session
->lock
);
1818 return iscsi_conn_get_param(cls_conn
, param
, buf
);
1825 iscsi_tcp_host_get_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
1828 struct iscsi_session
*session
= iscsi_hostdata(shost
->hostdata
);
1832 case ISCSI_HOST_PARAM_IPADDRESS
:
1833 spin_lock_bh(&session
->lock
);
1834 if (!session
->leadconn
)
1837 len
= sprintf(buf
, "%s\n",
1838 session
->leadconn
->local_address
);
1839 spin_unlock_bh(&session
->lock
);
1842 return iscsi_host_get_param(shost
, param
, buf
);
1848 iscsi_conn_get_stats(struct iscsi_cls_conn
*cls_conn
, struct iscsi_stats
*stats
)
1850 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
1851 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1853 stats
->txdata_octets
= conn
->txdata_octets
;
1854 stats
->rxdata_octets
= conn
->rxdata_octets
;
1855 stats
->scsicmd_pdus
= conn
->scsicmd_pdus_cnt
;
1856 stats
->dataout_pdus
= conn
->dataout_pdus_cnt
;
1857 stats
->scsirsp_pdus
= conn
->scsirsp_pdus_cnt
;
1858 stats
->datain_pdus
= conn
->datain_pdus_cnt
;
1859 stats
->r2t_pdus
= conn
->r2t_pdus_cnt
;
1860 stats
->tmfcmd_pdus
= conn
->tmfcmd_pdus_cnt
;
1861 stats
->tmfrsp_pdus
= conn
->tmfrsp_pdus_cnt
;
1862 stats
->custom_length
= 3;
1863 strcpy(stats
->custom
[0].desc
, "tx_sendpage_failures");
1864 stats
->custom
[0].value
= tcp_conn
->sendpage_failures_cnt
;
1865 strcpy(stats
->custom
[1].desc
, "rx_discontiguous_hdr");
1866 stats
->custom
[1].value
= tcp_conn
->discontiguous_hdr_cnt
;
1867 strcpy(stats
->custom
[2].desc
, "eh_abort_cnt");
1868 stats
->custom
[2].value
= conn
->eh_abort_cnt
;
1871 static struct iscsi_cls_session
*
1872 iscsi_tcp_session_create(struct iscsi_transport
*iscsit
,
1873 struct scsi_transport_template
*scsit
,
1874 uint16_t cmds_max
, uint16_t qdepth
,
1875 uint32_t initial_cmdsn
, uint32_t *hostno
)
1877 struct iscsi_cls_session
*cls_session
;
1878 struct iscsi_session
*session
;
1882 cls_session
= iscsi_session_setup(iscsit
, scsit
, cmds_max
, qdepth
,
1883 sizeof(struct iscsi_tcp_cmd_task
),
1884 sizeof(struct iscsi_tcp_mgmt_task
),
1885 initial_cmdsn
, &hn
);
1890 session
= class_to_transport_session(cls_session
);
1891 for (cmd_i
= 0; cmd_i
< session
->cmds_max
; cmd_i
++) {
1892 struct iscsi_cmd_task
*ctask
= session
->cmds
[cmd_i
];
1893 struct iscsi_tcp_cmd_task
*tcp_ctask
= ctask
->dd_data
;
1895 ctask
->hdr
= &tcp_ctask
->hdr
.cmd_hdr
;
1896 ctask
->hdr_max
= sizeof(tcp_ctask
->hdr
) - ISCSI_DIGEST_SIZE
;
1899 for (cmd_i
= 0; cmd_i
< session
->mgmtpool_max
; cmd_i
++) {
1900 struct iscsi_mgmt_task
*mtask
= session
->mgmt_cmds
[cmd_i
];
1901 struct iscsi_tcp_mgmt_task
*tcp_mtask
= mtask
->dd_data
;
1903 mtask
->hdr
= (struct iscsi_hdr
*) &tcp_mtask
->hdr
;
1906 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session
)))
1907 goto r2tpool_alloc_fail
;
1912 iscsi_session_teardown(cls_session
);
1916 static void iscsi_tcp_session_destroy(struct iscsi_cls_session
*cls_session
)
1918 iscsi_r2tpool_free(class_to_transport_session(cls_session
));
1919 iscsi_session_teardown(cls_session
);
1922 static int iscsi_tcp_slave_configure(struct scsi_device
*sdev
)
1924 blk_queue_bounce_limit(sdev
->request_queue
, BLK_BOUNCE_ANY
);
1925 blk_queue_dma_alignment(sdev
->request_queue
, 0);
1929 static struct scsi_host_template iscsi_sht
= {
1930 .module
= THIS_MODULE
,
1931 .name
= "iSCSI Initiator over TCP/IP",
1932 .queuecommand
= iscsi_queuecommand
,
1933 .change_queue_depth
= iscsi_change_queue_depth
,
1934 .can_queue
= ISCSI_DEF_XMIT_CMDS_MAX
- 1,
1935 .sg_tablesize
= 4096,
1936 .max_sectors
= 0xFFFF,
1937 .cmd_per_lun
= ISCSI_DEF_CMD_PER_LUN
,
1938 .eh_abort_handler
= iscsi_eh_abort
,
1939 .eh_device_reset_handler
= iscsi_eh_device_reset
,
1940 .eh_host_reset_handler
= iscsi_eh_host_reset
,
1941 .use_clustering
= DISABLE_CLUSTERING
,
1942 .slave_configure
= iscsi_tcp_slave_configure
,
1943 .proc_name
= "iscsi_tcp",
1947 static struct iscsi_transport iscsi_tcp_transport
= {
1948 .owner
= THIS_MODULE
,
1950 .caps
= CAP_RECOVERY_L0
| CAP_MULTI_R2T
| CAP_HDRDGST
1952 .param_mask
= ISCSI_MAX_RECV_DLENGTH
|
1953 ISCSI_MAX_XMIT_DLENGTH
|
1956 ISCSI_INITIAL_R2T_EN
|
1961 ISCSI_PDU_INORDER_EN
|
1962 ISCSI_DATASEQ_INORDER_EN
|
1965 ISCSI_CONN_ADDRESS
|
1967 ISCSI_PERSISTENT_PORT
|
1968 ISCSI_PERSISTENT_ADDRESS
|
1969 ISCSI_TARGET_NAME
| ISCSI_TPGT
|
1970 ISCSI_USERNAME
| ISCSI_PASSWORD
|
1971 ISCSI_USERNAME_IN
| ISCSI_PASSWORD_IN
|
1972 ISCSI_FAST_ABORT
| ISCSI_ABORT_TMO
|
1973 ISCSI_LU_RESET_TMO
|
1974 ISCSI_PING_TMO
| ISCSI_RECV_TMO
,
1975 .host_param_mask
= ISCSI_HOST_HWADDRESS
| ISCSI_HOST_IPADDRESS
|
1976 ISCSI_HOST_INITIATOR_NAME
|
1977 ISCSI_HOST_NETDEV_NAME
,
1978 .host_template
= &iscsi_sht
,
1979 .conndata_size
= sizeof(struct iscsi_conn
),
1982 /* session management */
1983 .create_session
= iscsi_tcp_session_create
,
1984 .destroy_session
= iscsi_tcp_session_destroy
,
1985 /* connection management */
1986 .create_conn
= iscsi_tcp_conn_create
,
1987 .bind_conn
= iscsi_tcp_conn_bind
,
1988 .destroy_conn
= iscsi_tcp_conn_destroy
,
1989 .set_param
= iscsi_conn_set_param
,
1990 .get_conn_param
= iscsi_tcp_conn_get_param
,
1991 .get_session_param
= iscsi_session_get_param
,
1992 .start_conn
= iscsi_conn_start
,
1993 .stop_conn
= iscsi_tcp_conn_stop
,
1994 /* iscsi host params */
1995 .get_host_param
= iscsi_tcp_host_get_param
,
1996 .set_host_param
= iscsi_host_set_param
,
1998 .send_pdu
= iscsi_conn_send_pdu
,
1999 .get_stats
= iscsi_conn_get_stats
,
2000 .init_cmd_task
= iscsi_tcp_ctask_init
,
2001 .init_mgmt_task
= iscsi_tcp_mtask_init
,
2002 .xmit_cmd_task
= iscsi_tcp_ctask_xmit
,
2003 .xmit_mgmt_task
= iscsi_tcp_mtask_xmit
,
2004 .cleanup_cmd_task
= iscsi_tcp_cleanup_ctask
,
2006 .session_recovery_timedout
= iscsi_session_recovery_timedout
,
2010 iscsi_tcp_init(void)
2012 if (iscsi_max_lun
< 1) {
2013 printk(KERN_ERR
"iscsi_tcp: Invalid max_lun value of %u\n",
2017 iscsi_tcp_transport
.max_lun
= iscsi_max_lun
;
2019 if (!iscsi_register_transport(&iscsi_tcp_transport
))
2026 iscsi_tcp_exit(void)
2028 iscsi_unregister_transport(&iscsi_tcp_transport
);
2031 module_init(iscsi_tcp_init
);
2032 module_exit(iscsi_tcp_exit
);