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/inet.h>
31 #include <linux/file.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>
38 #include <scsi/scsi_cmnd.h>
39 #include <scsi/scsi_device.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 MODULE_AUTHOR("Mike Christie <michaelc@cs.wisc.edu>, "
47 "Dmitry Yusupov <dmitry_yus@yahoo.com>, "
48 "Alex Aizman <itn780@yahoo.com>");
49 MODULE_DESCRIPTION("iSCSI/TCP data-path");
50 MODULE_LICENSE("GPL");
54 #define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
56 #define debug_tcp(fmt...)
59 static struct scsi_transport_template
*iscsi_sw_tcp_scsi_transport
;
60 static struct scsi_host_template iscsi_sw_tcp_sht
;
61 static struct iscsi_transport iscsi_sw_tcp_transport
;
63 static unsigned int iscsi_max_lun
= 512;
64 module_param_named(max_lun
, iscsi_max_lun
, uint
, S_IRUGO
);
67 * iscsi_sw_tcp_recv - TCP receive in sendfile fashion
68 * @rd_desc: read descriptor
70 * @offset: offset in skb
71 * @len: skb->len - offset
73 static int iscsi_sw_tcp_recv(read_descriptor_t
*rd_desc
, struct sk_buff
*skb
,
74 unsigned int offset
, size_t len
)
76 struct iscsi_conn
*conn
= rd_desc
->arg
.data
;
77 unsigned int consumed
, total_consumed
= 0;
80 debug_tcp("in %d bytes\n", skb
->len
- offset
);
84 consumed
= iscsi_tcp_recv_skb(conn
, skb
, offset
, 0, &status
);
86 total_consumed
+= consumed
;
87 } while (consumed
!= 0 && status
!= ISCSI_TCP_SKB_DONE
);
89 debug_tcp("read %d bytes status %d\n", skb
->len
- offset
, status
);
90 return total_consumed
;
93 static void iscsi_sw_tcp_data_ready(struct sock
*sk
, int flag
)
95 struct iscsi_conn
*conn
= sk
->sk_user_data
;
96 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
97 read_descriptor_t rd_desc
;
99 read_lock(&sk
->sk_callback_lock
);
102 * Use rd_desc to pass 'conn' to iscsi_tcp_recv.
103 * We set count to 1 because we want the network layer to
104 * hand us all the skbs that are available. iscsi_tcp_recv
105 * handled pdus that cross buffers or pdus that still need data.
107 rd_desc
.arg
.data
= conn
;
109 tcp_read_sock(sk
, &rd_desc
, iscsi_sw_tcp_recv
);
111 read_unlock(&sk
->sk_callback_lock
);
113 /* If we had to (atomically) map a highmem page,
115 iscsi_tcp_segment_unmap(&tcp_conn
->in
.segment
);
118 static void iscsi_sw_tcp_state_change(struct sock
*sk
)
120 struct iscsi_tcp_conn
*tcp_conn
;
121 struct iscsi_sw_tcp_conn
*tcp_sw_conn
;
122 struct iscsi_conn
*conn
;
123 struct iscsi_session
*session
;
124 void (*old_state_change
)(struct sock
*);
126 read_lock(&sk
->sk_callback_lock
);
128 conn
= (struct iscsi_conn
*)sk
->sk_user_data
;
129 session
= conn
->session
;
131 if ((sk
->sk_state
== TCP_CLOSE_WAIT
||
132 sk
->sk_state
== TCP_CLOSE
) &&
133 !atomic_read(&sk
->sk_rmem_alloc
)) {
134 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
135 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
138 tcp_conn
= conn
->dd_data
;
139 tcp_sw_conn
= tcp_conn
->dd_data
;
140 old_state_change
= tcp_sw_conn
->old_state_change
;
142 read_unlock(&sk
->sk_callback_lock
);
144 old_state_change(sk
);
148 * iscsi_write_space - Called when more output buffer space is available
149 * @sk: socket space is available for
151 static void iscsi_sw_tcp_write_space(struct sock
*sk
)
153 struct iscsi_conn
*conn
= (struct iscsi_conn
*)sk
->sk_user_data
;
154 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
155 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
157 tcp_sw_conn
->old_write_space(sk
);
158 debug_tcp("iscsi_write_space: cid %d\n", conn
->id
);
159 scsi_queue_work(conn
->session
->host
, &conn
->xmitwork
);
162 static void iscsi_sw_tcp_conn_set_callbacks(struct iscsi_conn
*conn
)
164 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
165 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
166 struct sock
*sk
= tcp_sw_conn
->sock
->sk
;
168 /* assign new callbacks */
169 write_lock_bh(&sk
->sk_callback_lock
);
170 sk
->sk_user_data
= conn
;
171 tcp_sw_conn
->old_data_ready
= sk
->sk_data_ready
;
172 tcp_sw_conn
->old_state_change
= sk
->sk_state_change
;
173 tcp_sw_conn
->old_write_space
= sk
->sk_write_space
;
174 sk
->sk_data_ready
= iscsi_sw_tcp_data_ready
;
175 sk
->sk_state_change
= iscsi_sw_tcp_state_change
;
176 sk
->sk_write_space
= iscsi_sw_tcp_write_space
;
177 write_unlock_bh(&sk
->sk_callback_lock
);
181 iscsi_sw_tcp_conn_restore_callbacks(struct iscsi_sw_tcp_conn
*tcp_sw_conn
)
183 struct sock
*sk
= tcp_sw_conn
->sock
->sk
;
185 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
186 write_lock_bh(&sk
->sk_callback_lock
);
187 sk
->sk_user_data
= NULL
;
188 sk
->sk_data_ready
= tcp_sw_conn
->old_data_ready
;
189 sk
->sk_state_change
= tcp_sw_conn
->old_state_change
;
190 sk
->sk_write_space
= tcp_sw_conn
->old_write_space
;
192 write_unlock_bh(&sk
->sk_callback_lock
);
196 * iscsi_sw_tcp_xmit_segment - transmit segment
197 * @tcp_conn: the iSCSI TCP connection
198 * @segment: the buffer to transmnit
200 * This function transmits as much of the buffer as
201 * the network layer will accept, and returns the number of
204 * If CRC hashing is enabled, the function will compute the
205 * hash as it goes. When the entire segment has been transmitted,
206 * it will retrieve the hash value and send it as well.
208 static int iscsi_sw_tcp_xmit_segment(struct iscsi_tcp_conn
*tcp_conn
,
209 struct iscsi_segment
*segment
)
211 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
212 struct socket
*sk
= tcp_sw_conn
->sock
;
213 unsigned int copied
= 0;
216 while (!iscsi_tcp_segment_done(tcp_conn
, segment
, 0, r
)) {
217 struct scatterlist
*sg
;
218 unsigned int offset
, copy
;
222 offset
= segment
->copied
;
223 copy
= segment
->size
- offset
;
225 if (segment
->total_copied
+ segment
->size
< segment
->total_size
)
228 /* Use sendpage if we can; else fall back to sendmsg */
229 if (!segment
->data
) {
231 offset
+= segment
->sg_offset
+ sg
->offset
;
232 r
= tcp_sw_conn
->sendpage(sk
, sg_page(sg
), offset
,
235 struct msghdr msg
= { .msg_flags
= flags
};
237 .iov_base
= segment
->data
+ offset
,
241 r
= kernel_sendmsg(sk
, &msg
, &iov
, 1, copy
);
245 iscsi_tcp_segment_unmap(segment
);
246 if (copied
|| r
== -EAGAIN
)
256 * iscsi_sw_tcp_xmit - TCP transmit
258 static int iscsi_sw_tcp_xmit(struct iscsi_conn
*conn
)
260 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
261 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
262 struct iscsi_segment
*segment
= &tcp_sw_conn
->out
.segment
;
263 unsigned int consumed
= 0;
267 rc
= iscsi_sw_tcp_xmit_segment(tcp_conn
, segment
);
269 rc
= ISCSI_ERR_XMIT_FAILED
;
277 if (segment
->total_copied
>= segment
->total_size
) {
278 if (segment
->done
!= NULL
) {
279 rc
= segment
->done(tcp_conn
, segment
);
286 debug_tcp("xmit %d bytes\n", consumed
);
288 conn
->txdata_octets
+= consumed
;
292 /* Transmit error. We could initiate error recovery
294 debug_tcp("Error sending PDU, errno=%d\n", rc
);
295 iscsi_conn_failure(conn
, rc
);
300 * iscsi_tcp_xmit_qlen - return the number of bytes queued for xmit
302 static inline int iscsi_sw_tcp_xmit_qlen(struct iscsi_conn
*conn
)
304 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
305 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
306 struct iscsi_segment
*segment
= &tcp_sw_conn
->out
.segment
;
308 return segment
->total_copied
- segment
->total_size
;
311 static int iscsi_sw_tcp_pdu_xmit(struct iscsi_task
*task
)
313 struct iscsi_conn
*conn
= task
->conn
;
316 while (iscsi_sw_tcp_xmit_qlen(conn
)) {
317 rc
= iscsi_sw_tcp_xmit(conn
);
328 * This is called when we're done sending the header.
329 * Simply copy the data_segment to the send segment, and return.
331 static int iscsi_sw_tcp_send_hdr_done(struct iscsi_tcp_conn
*tcp_conn
,
332 struct iscsi_segment
*segment
)
334 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
336 tcp_sw_conn
->out
.segment
= tcp_sw_conn
->out
.data_segment
;
337 debug_tcp("Header done. Next segment size %u total_size %u\n",
338 tcp_sw_conn
->out
.segment
.size
,
339 tcp_sw_conn
->out
.segment
.total_size
);
343 static void iscsi_sw_tcp_send_hdr_prep(struct iscsi_conn
*conn
, void *hdr
,
346 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
347 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
349 debug_tcp("%s(%p%s)\n", __func__
, tcp_conn
,
350 conn
->hdrdgst_en
? ", digest enabled" : "");
352 /* Clear the data segment - needs to be filled in by the
353 * caller using iscsi_tcp_send_data_prep() */
354 memset(&tcp_sw_conn
->out
.data_segment
, 0,
355 sizeof(struct iscsi_segment
));
357 /* If header digest is enabled, compute the CRC and
358 * place the digest into the same buffer. We make
359 * sure that both iscsi_tcp_task and mtask have
362 if (conn
->hdrdgst_en
) {
363 iscsi_tcp_dgst_header(&tcp_sw_conn
->tx_hash
, hdr
, hdrlen
,
365 hdrlen
+= ISCSI_DIGEST_SIZE
;
368 /* Remember header pointer for later, when we need
369 * to decide whether there's a payload to go along
370 * with the header. */
371 tcp_sw_conn
->out
.hdr
= hdr
;
373 iscsi_segment_init_linear(&tcp_sw_conn
->out
.segment
, hdr
, hdrlen
,
374 iscsi_sw_tcp_send_hdr_done
, NULL
);
378 * Prepare the send buffer for the payload data.
379 * Padding and checksumming will all be taken care
380 * of by the iscsi_segment routines.
383 iscsi_sw_tcp_send_data_prep(struct iscsi_conn
*conn
, struct scatterlist
*sg
,
384 unsigned int count
, unsigned int offset
,
387 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
388 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
389 struct hash_desc
*tx_hash
= NULL
;
390 unsigned int hdr_spec_len
;
392 debug_tcp("%s(%p, offset=%d, datalen=%d%s)\n", __func__
,
393 tcp_conn
, offset
, len
,
394 conn
->datadgst_en
? ", digest enabled" : "");
396 /* Make sure the datalen matches what the caller
397 said he would send. */
398 hdr_spec_len
= ntoh24(tcp_sw_conn
->out
.hdr
->dlength
);
399 WARN_ON(iscsi_padded(len
) != iscsi_padded(hdr_spec_len
));
401 if (conn
->datadgst_en
)
402 tx_hash
= &tcp_sw_conn
->tx_hash
;
404 return iscsi_segment_seek_sg(&tcp_sw_conn
->out
.data_segment
,
405 sg
, count
, offset
, len
,
410 iscsi_sw_tcp_send_linear_data_prep(struct iscsi_conn
*conn
, void *data
,
413 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
414 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
415 struct hash_desc
*tx_hash
= NULL
;
416 unsigned int hdr_spec_len
;
418 debug_tcp("%s(%p, datalen=%d%s)\n", __func__
, tcp_conn
, len
,
419 conn
->datadgst_en
? ", digest enabled" : "");
421 /* Make sure the datalen matches what the caller
422 said he would send. */
423 hdr_spec_len
= ntoh24(tcp_sw_conn
->out
.hdr
->dlength
);
424 WARN_ON(iscsi_padded(len
) != iscsi_padded(hdr_spec_len
));
426 if (conn
->datadgst_en
)
427 tx_hash
= &tcp_sw_conn
->tx_hash
;
429 iscsi_segment_init_linear(&tcp_sw_conn
->out
.data_segment
,
430 data
, len
, NULL
, tx_hash
);
433 static int iscsi_sw_tcp_pdu_init(struct iscsi_task
*task
,
434 unsigned int offset
, unsigned int count
)
436 struct iscsi_conn
*conn
= task
->conn
;
439 iscsi_sw_tcp_send_hdr_prep(conn
, task
->hdr
, task
->hdr_len
);
445 iscsi_sw_tcp_send_linear_data_prep(conn
, task
->data
, count
);
447 struct scsi_data_buffer
*sdb
= scsi_out(task
->sc
);
449 err
= iscsi_sw_tcp_send_data_prep(conn
, sdb
->table
.sgl
,
450 sdb
->table
.nents
, offset
,
455 iscsi_conn_failure(conn
, err
);
461 static int iscsi_sw_tcp_pdu_alloc(struct iscsi_task
*task
, uint8_t opcode
)
463 struct iscsi_tcp_task
*tcp_task
= task
->dd_data
;
465 task
->hdr
= task
->dd_data
+ sizeof(*tcp_task
);
466 task
->hdr_max
= sizeof(struct iscsi_sw_tcp_hdrbuf
) - ISCSI_DIGEST_SIZE
;
470 static struct iscsi_cls_conn
*
471 iscsi_sw_tcp_conn_create(struct iscsi_cls_session
*cls_session
,
474 struct iscsi_conn
*conn
;
475 struct iscsi_cls_conn
*cls_conn
;
476 struct iscsi_tcp_conn
*tcp_conn
;
477 struct iscsi_sw_tcp_conn
*tcp_sw_conn
;
479 cls_conn
= iscsi_tcp_conn_setup(cls_session
, sizeof(*tcp_sw_conn
),
483 conn
= cls_conn
->dd_data
;
484 tcp_conn
= conn
->dd_data
;
485 tcp_sw_conn
= tcp_conn
->dd_data
;
487 tcp_sw_conn
->tx_hash
.tfm
= crypto_alloc_hash("crc32c", 0,
489 tcp_sw_conn
->tx_hash
.flags
= 0;
490 if (IS_ERR(tcp_sw_conn
->tx_hash
.tfm
))
493 tcp_sw_conn
->rx_hash
.tfm
= crypto_alloc_hash("crc32c", 0,
495 tcp_sw_conn
->rx_hash
.flags
= 0;
496 if (IS_ERR(tcp_sw_conn
->rx_hash
.tfm
))
498 tcp_conn
->rx_hash
= &tcp_sw_conn
->rx_hash
;
503 crypto_free_hash(tcp_sw_conn
->tx_hash
.tfm
);
505 iscsi_conn_printk(KERN_ERR
, conn
,
506 "Could not create connection due to crc32c "
507 "loading error. Make sure the crc32c "
508 "module is built as a module or into the "
510 iscsi_tcp_conn_teardown(cls_conn
);
514 static void iscsi_sw_tcp_release_conn(struct iscsi_conn
*conn
)
516 struct iscsi_session
*session
= conn
->session
;
517 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
518 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
519 struct socket
*sock
= tcp_sw_conn
->sock
;
525 iscsi_sw_tcp_conn_restore_callbacks(tcp_sw_conn
);
528 spin_lock_bh(&session
->lock
);
529 tcp_sw_conn
->sock
= NULL
;
530 spin_unlock_bh(&session
->lock
);
534 static void iscsi_sw_tcp_conn_destroy(struct iscsi_cls_conn
*cls_conn
)
536 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
537 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
538 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
540 iscsi_sw_tcp_release_conn(conn
);
542 if (tcp_sw_conn
->tx_hash
.tfm
)
543 crypto_free_hash(tcp_sw_conn
->tx_hash
.tfm
);
544 if (tcp_sw_conn
->rx_hash
.tfm
)
545 crypto_free_hash(tcp_sw_conn
->rx_hash
.tfm
);
547 iscsi_tcp_conn_teardown(cls_conn
);
550 static void iscsi_sw_tcp_conn_stop(struct iscsi_cls_conn
*cls_conn
, int flag
)
552 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
553 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
554 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
556 /* userspace may have goofed up and not bound us */
557 if (!tcp_sw_conn
->sock
)
560 * Make sure our recv side is stopped.
561 * Older tools called conn stop before ep_disconnect
562 * so IO could still be coming in.
564 write_lock_bh(&tcp_sw_conn
->sock
->sk
->sk_callback_lock
);
565 set_bit(ISCSI_SUSPEND_BIT
, &conn
->suspend_rx
);
566 write_unlock_bh(&tcp_sw_conn
->sock
->sk
->sk_callback_lock
);
568 iscsi_conn_stop(cls_conn
, flag
);
569 iscsi_sw_tcp_release_conn(conn
);
572 static int iscsi_sw_tcp_get_addr(struct iscsi_conn
*conn
, struct socket
*sock
,
573 char *buf
, int *port
,
574 int (*getname
)(struct socket
*,
578 struct sockaddr_storage
*addr
;
579 struct sockaddr_in6
*sin6
;
580 struct sockaddr_in
*sin
;
583 addr
= kmalloc(sizeof(*addr
), GFP_KERNEL
);
587 if (getname(sock
, (struct sockaddr
*) addr
, &len
)) {
592 switch (addr
->ss_family
) {
594 sin
= (struct sockaddr_in
*)addr
;
595 spin_lock_bh(&conn
->session
->lock
);
596 sprintf(buf
, "%pI4", &sin
->sin_addr
.s_addr
);
597 *port
= be16_to_cpu(sin
->sin_port
);
598 spin_unlock_bh(&conn
->session
->lock
);
601 sin6
= (struct sockaddr_in6
*)addr
;
602 spin_lock_bh(&conn
->session
->lock
);
603 sprintf(buf
, "%pI6", &sin6
->sin6_addr
);
604 *port
= be16_to_cpu(sin6
->sin6_port
);
605 spin_unlock_bh(&conn
->session
->lock
);
614 iscsi_sw_tcp_conn_bind(struct iscsi_cls_session
*cls_session
,
615 struct iscsi_cls_conn
*cls_conn
, uint64_t transport_eph
,
618 struct Scsi_Host
*shost
= iscsi_session_to_shost(cls_session
);
619 struct iscsi_host
*ihost
= shost_priv(shost
);
620 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
621 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
622 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
627 /* lookup for existing socket */
628 sock
= sockfd_lookup((int)transport_eph
, &err
);
630 iscsi_conn_printk(KERN_ERR
, conn
,
631 "sockfd_lookup failed %d\n", err
);
635 * copy these values now because if we drop the session
636 * userspace may still want to query the values since we will
637 * be using them for the reconnect
639 err
= iscsi_sw_tcp_get_addr(conn
, sock
, conn
->portal_address
,
640 &conn
->portal_port
, kernel_getpeername
);
644 err
= iscsi_sw_tcp_get_addr(conn
, sock
, ihost
->local_address
,
645 &ihost
->local_port
, kernel_getsockname
);
649 err
= iscsi_conn_bind(cls_session
, cls_conn
, is_leading
);
653 /* bind iSCSI connection and socket */
654 tcp_sw_conn
->sock
= sock
;
656 /* setup Socket parameters */
659 sk
->sk_sndtimeo
= 15 * HZ
; /* FIXME: make it configurable */
660 sk
->sk_allocation
= GFP_ATOMIC
;
662 iscsi_sw_tcp_conn_set_callbacks(conn
);
663 tcp_sw_conn
->sendpage
= tcp_sw_conn
->sock
->ops
->sendpage
;
665 * set receive state machine into initial state
667 iscsi_tcp_hdr_recv_prep(tcp_conn
);
675 static int iscsi_sw_tcp_conn_set_param(struct iscsi_cls_conn
*cls_conn
,
676 enum iscsi_param param
, char *buf
,
679 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
680 struct iscsi_session
*session
= conn
->session
;
681 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
682 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
686 case ISCSI_PARAM_HDRDGST_EN
:
687 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
689 case ISCSI_PARAM_DATADGST_EN
:
690 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
691 tcp_sw_conn
->sendpage
= conn
->datadgst_en
?
692 sock_no_sendpage
: tcp_sw_conn
->sock
->ops
->sendpage
;
694 case ISCSI_PARAM_MAX_R2T
:
695 sscanf(buf
, "%d", &value
);
696 if (value
<= 0 || !is_power_of_2(value
))
698 if (session
->max_r2t
== value
)
700 iscsi_tcp_r2tpool_free(session
);
701 iscsi_set_param(cls_conn
, param
, buf
, buflen
);
702 if (iscsi_tcp_r2tpool_alloc(session
))
706 return iscsi_set_param(cls_conn
, param
, buf
, buflen
);
712 static int iscsi_sw_tcp_conn_get_param(struct iscsi_cls_conn
*cls_conn
,
713 enum iscsi_param param
, char *buf
)
715 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
719 case ISCSI_PARAM_CONN_PORT
:
720 spin_lock_bh(&conn
->session
->lock
);
721 len
= sprintf(buf
, "%hu\n", conn
->portal_port
);
722 spin_unlock_bh(&conn
->session
->lock
);
724 case ISCSI_PARAM_CONN_ADDRESS
:
725 spin_lock_bh(&conn
->session
->lock
);
726 len
= sprintf(buf
, "%s\n", conn
->portal_address
);
727 spin_unlock_bh(&conn
->session
->lock
);
730 return iscsi_conn_get_param(cls_conn
, param
, buf
);
737 iscsi_sw_tcp_conn_get_stats(struct iscsi_cls_conn
*cls_conn
,
738 struct iscsi_stats
*stats
)
740 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
741 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
742 struct iscsi_sw_tcp_conn
*tcp_sw_conn
= tcp_conn
->dd_data
;
744 stats
->custom_length
= 3;
745 strcpy(stats
->custom
[0].desc
, "tx_sendpage_failures");
746 stats
->custom
[0].value
= tcp_sw_conn
->sendpage_failures_cnt
;
747 strcpy(stats
->custom
[1].desc
, "rx_discontiguous_hdr");
748 stats
->custom
[1].value
= tcp_sw_conn
->discontiguous_hdr_cnt
;
749 strcpy(stats
->custom
[2].desc
, "eh_abort_cnt");
750 stats
->custom
[2].value
= conn
->eh_abort_cnt
;
752 iscsi_tcp_conn_get_stats(cls_conn
, stats
);
755 static struct iscsi_cls_session
*
756 iscsi_sw_tcp_session_create(struct iscsi_endpoint
*ep
, uint16_t cmds_max
,
757 uint16_t qdepth
, uint32_t initial_cmdsn
,
760 struct iscsi_cls_session
*cls_session
;
761 struct iscsi_session
*session
;
762 struct Scsi_Host
*shost
;
765 printk(KERN_ERR
"iscsi_tcp: invalid ep %p.\n", ep
);
769 shost
= iscsi_host_alloc(&iscsi_sw_tcp_sht
, 0, qdepth
);
772 shost
->transportt
= iscsi_sw_tcp_scsi_transport
;
773 shost
->max_lun
= iscsi_max_lun
;
775 shost
->max_channel
= 0;
776 shost
->max_cmd_len
= SCSI_MAX_VARLEN_CDB_SIZE
;
778 if (iscsi_host_add(shost
, NULL
))
780 *hostno
= shost
->host_no
;
782 cls_session
= iscsi_session_setup(&iscsi_sw_tcp_transport
, shost
,
784 sizeof(struct iscsi_tcp_task
) +
785 sizeof(struct iscsi_sw_tcp_hdrbuf
),
789 session
= cls_session
->dd_data
;
791 shost
->can_queue
= session
->scsi_cmds_max
;
792 if (iscsi_tcp_r2tpool_alloc(session
))
797 iscsi_session_teardown(cls_session
);
799 iscsi_host_remove(shost
);
801 iscsi_host_free(shost
);
805 static void iscsi_sw_tcp_session_destroy(struct iscsi_cls_session
*cls_session
)
807 struct Scsi_Host
*shost
= iscsi_session_to_shost(cls_session
);
809 iscsi_tcp_r2tpool_free(cls_session
->dd_data
);
810 iscsi_session_teardown(cls_session
);
812 iscsi_host_remove(shost
);
813 iscsi_host_free(shost
);
816 static int iscsi_sw_tcp_slave_configure(struct scsi_device
*sdev
)
818 blk_queue_bounce_limit(sdev
->request_queue
, BLK_BOUNCE_ANY
);
819 blk_queue_dma_alignment(sdev
->request_queue
, 0);
823 static struct scsi_host_template iscsi_sw_tcp_sht
= {
824 .module
= THIS_MODULE
,
825 .name
= "iSCSI Initiator over TCP/IP",
826 .queuecommand
= iscsi_queuecommand
,
827 .change_queue_depth
= iscsi_change_queue_depth
,
828 .can_queue
= ISCSI_DEF_XMIT_CMDS_MAX
- 1,
829 .sg_tablesize
= 4096,
830 .max_sectors
= 0xFFFF,
831 .cmd_per_lun
= ISCSI_DEF_CMD_PER_LUN
,
832 .eh_abort_handler
= iscsi_eh_abort
,
833 .eh_device_reset_handler
= iscsi_eh_device_reset
,
834 .eh_target_reset_handler
= iscsi_eh_target_reset
,
835 .use_clustering
= DISABLE_CLUSTERING
,
836 .slave_configure
= iscsi_sw_tcp_slave_configure
,
837 .proc_name
= "iscsi_tcp",
841 static struct iscsi_transport iscsi_sw_tcp_transport
= {
842 .owner
= THIS_MODULE
,
844 .caps
= CAP_RECOVERY_L0
| CAP_MULTI_R2T
| CAP_HDRDGST
846 .param_mask
= ISCSI_MAX_RECV_DLENGTH
|
847 ISCSI_MAX_XMIT_DLENGTH
|
850 ISCSI_INITIAL_R2T_EN
|
855 ISCSI_PDU_INORDER_EN
|
856 ISCSI_DATASEQ_INORDER_EN
|
861 ISCSI_PERSISTENT_PORT
|
862 ISCSI_PERSISTENT_ADDRESS
|
863 ISCSI_TARGET_NAME
| ISCSI_TPGT
|
864 ISCSI_USERNAME
| ISCSI_PASSWORD
|
865 ISCSI_USERNAME_IN
| ISCSI_PASSWORD_IN
|
866 ISCSI_FAST_ABORT
| ISCSI_ABORT_TMO
|
868 ISCSI_PING_TMO
| ISCSI_RECV_TMO
|
869 ISCSI_IFACE_NAME
| ISCSI_INITIATOR_NAME
,
870 .host_param_mask
= ISCSI_HOST_HWADDRESS
| ISCSI_HOST_IPADDRESS
|
871 ISCSI_HOST_INITIATOR_NAME
|
872 ISCSI_HOST_NETDEV_NAME
,
873 /* session management */
874 .create_session
= iscsi_sw_tcp_session_create
,
875 .destroy_session
= iscsi_sw_tcp_session_destroy
,
876 /* connection management */
877 .create_conn
= iscsi_sw_tcp_conn_create
,
878 .bind_conn
= iscsi_sw_tcp_conn_bind
,
879 .destroy_conn
= iscsi_sw_tcp_conn_destroy
,
880 .set_param
= iscsi_sw_tcp_conn_set_param
,
881 .get_conn_param
= iscsi_sw_tcp_conn_get_param
,
882 .get_session_param
= iscsi_session_get_param
,
883 .start_conn
= iscsi_conn_start
,
884 .stop_conn
= iscsi_sw_tcp_conn_stop
,
885 /* iscsi host params */
886 .get_host_param
= iscsi_host_get_param
,
887 .set_host_param
= iscsi_host_set_param
,
889 .send_pdu
= iscsi_conn_send_pdu
,
890 .get_stats
= iscsi_sw_tcp_conn_get_stats
,
891 /* iscsi task/cmd helpers */
892 .init_task
= iscsi_tcp_task_init
,
893 .xmit_task
= iscsi_tcp_task_xmit
,
894 .cleanup_task
= iscsi_tcp_cleanup_task
,
895 /* low level pdu helpers */
896 .xmit_pdu
= iscsi_sw_tcp_pdu_xmit
,
897 .init_pdu
= iscsi_sw_tcp_pdu_init
,
898 .alloc_pdu
= iscsi_sw_tcp_pdu_alloc
,
900 .session_recovery_timedout
= iscsi_session_recovery_timedout
,
903 static int __init
iscsi_sw_tcp_init(void)
905 if (iscsi_max_lun
< 1) {
906 printk(KERN_ERR
"iscsi_tcp: Invalid max_lun value of %u\n",
911 iscsi_sw_tcp_scsi_transport
= iscsi_register_transport(
912 &iscsi_sw_tcp_transport
);
913 if (!iscsi_sw_tcp_scsi_transport
)
919 static void __exit
iscsi_sw_tcp_exit(void)
921 iscsi_unregister_transport(&iscsi_sw_tcp_transport
);
924 module_init(iscsi_sw_tcp_init
);
925 module_exit(iscsi_sw_tcp_exit
);