Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1 | /* |
| 2 | * iSCSI Initiator over TCP/IP Data-Path |
| 3 | * |
| 4 | * Copyright (C) 2004 Dmitry Yusupov |
| 5 | * Copyright (C) 2004 Alex Aizman |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 6 | * Copyright (C) 2005 - 2006 Mike Christie |
| 7 | * Copyright (C) 2006 Red Hat, Inc. All rights reserved. |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 8 | * maintained by open-iscsi@googlegroups.com |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published |
| 12 | * by the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, 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. |
| 19 | * |
| 20 | * See the file COPYING included with this distribution for more details. |
| 21 | * |
| 22 | * Credits: |
| 23 | * Christoph Hellwig |
| 24 | * FUJITA Tomonori |
| 25 | * Arne Redlich |
| 26 | * Zhenyu Wang |
| 27 | */ |
| 28 | |
| 29 | #include <linux/types.h> |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 30 | #include <linux/inet.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> |
Mike Christie | 4e7aba7 | 2007-05-30 12:57:23 -0500 | [diff] [blame] | 32 | #include <linux/file.h> |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 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> |
| 38 | #include <net/tcp.h> |
| 39 | #include <scsi/scsi_cmnd.h> |
Mike Christie | d1d81c0 | 2007-05-30 12:57:21 -0500 | [diff] [blame] | 40 | #include <scsi/scsi_device.h> |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 41 | #include <scsi/scsi_host.h> |
| 42 | #include <scsi/scsi.h> |
| 43 | #include <scsi/scsi_transport_iscsi.h> |
| 44 | |
| 45 | #include "iscsi_tcp.h" |
| 46 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 47 | MODULE_AUTHOR("Mike Christie <michaelc@cs.wisc.edu>, " |
| 48 | "Dmitry Yusupov <dmitry_yus@yahoo.com>, " |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 49 | "Alex Aizman <itn780@yahoo.com>"); |
| 50 | MODULE_DESCRIPTION("iSCSI/TCP data-path"); |
| 51 | MODULE_LICENSE("GPL"); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 52 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 53 | static struct scsi_transport_template *iscsi_sw_tcp_scsi_transport; |
| 54 | static struct scsi_host_template iscsi_sw_tcp_sht; |
| 55 | static struct iscsi_transport iscsi_sw_tcp_transport; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 56 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 57 | static unsigned int iscsi_max_lun = 512; |
| 58 | module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO); |
| 59 | |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 60 | static int iscsi_sw_tcp_dbg; |
| 61 | module_param_named(debug_iscsi_tcp, iscsi_sw_tcp_dbg, int, |
| 62 | S_IRUGO | S_IWUSR); |
| 63 | MODULE_PARM_DESC(debug_iscsi_tcp, "Turn on debugging for iscsi_tcp module " |
| 64 | "Set to 1 to turn on, and zero to turn off. Default is off."); |
| 65 | |
| 66 | #define ISCSI_SW_TCP_DBG(_conn, dbg_fmt, arg...) \ |
| 67 | do { \ |
| 68 | if (iscsi_sw_tcp_dbg) \ |
| 69 | iscsi_conn_printk(KERN_INFO, _conn, \ |
| 70 | "%s " dbg_fmt, \ |
| 71 | __func__, ##arg); \ |
| 72 | } while (0); |
| 73 | |
| 74 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 75 | /** |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 76 | * iscsi_sw_tcp_recv - TCP receive in sendfile fashion |
| 77 | * @rd_desc: read descriptor |
| 78 | * @skb: socket buffer |
| 79 | * @offset: offset in skb |
| 80 | * @len: skb->len - offset |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 81 | */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 82 | static int iscsi_sw_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, |
| 83 | unsigned int offset, size_t len) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 84 | { |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 85 | struct iscsi_conn *conn = rd_desc->arg.data; |
| 86 | unsigned int consumed, total_consumed = 0; |
| 87 | int status; |
| 88 | |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 89 | ISCSI_SW_TCP_DBG(conn, "in %d bytes\n", skb->len - offset); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 90 | |
| 91 | do { |
| 92 | status = 0; |
| 93 | consumed = iscsi_tcp_recv_skb(conn, skb, offset, 0, &status); |
| 94 | offset += consumed; |
| 95 | total_consumed += consumed; |
| 96 | } while (consumed != 0 && status != ISCSI_TCP_SKB_DONE); |
| 97 | |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 98 | ISCSI_SW_TCP_DBG(conn, "read %d bytes status %d\n", |
| 99 | skb->len - offset, status); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 100 | return total_consumed; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 101 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 102 | |
Hannes Reinecke | 523eeac | 2009-08-20 15:10:57 -0500 | [diff] [blame] | 103 | /** |
| 104 | * iscsi_sw_sk_state_check - check socket state |
| 105 | * @sk: socket |
| 106 | * |
| 107 | * If the socket is in CLOSE or CLOSE_WAIT we should |
| 108 | * not close the connection if there is still some |
| 109 | * data pending. |
| 110 | */ |
| 111 | static inline int iscsi_sw_sk_state_check(struct sock *sk) |
| 112 | { |
Mike Christie | d1af8a3 | 2009-08-20 15:11:02 -0500 | [diff] [blame] | 113 | struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data; |
Hannes Reinecke | 523eeac | 2009-08-20 15:10:57 -0500 | [diff] [blame] | 114 | |
Mike Christie | d1af8a3 | 2009-08-20 15:11:02 -0500 | [diff] [blame] | 115 | if ((sk->sk_state == TCP_CLOSE_WAIT || sk->sk_state == TCP_CLOSE) && |
| 116 | !atomic_read(&sk->sk_rmem_alloc)) { |
| 117 | ISCSI_SW_TCP_DBG(conn, "TCP_CLOSE|TCP_CLOSE_WAIT\n"); |
| 118 | iscsi_conn_failure(conn, ISCSI_ERR_TCP_CONN_CLOSE); |
| 119 | return -ECONNRESET; |
| 120 | } |
Hannes Reinecke | 523eeac | 2009-08-20 15:10:57 -0500 | [diff] [blame] | 121 | return 0; |
| 122 | } |
| 123 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 124 | static void iscsi_sw_tcp_data_ready(struct sock *sk, int flag) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 125 | { |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 126 | struct iscsi_conn *conn = sk->sk_user_data; |
| 127 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 128 | read_descriptor_t rd_desc; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 129 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 130 | read_lock(&sk->sk_callback_lock); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 131 | |
| 132 | /* |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 133 | * Use rd_desc to pass 'conn' to iscsi_tcp_recv. |
| 134 | * We set count to 1 because we want the network layer to |
| 135 | * hand us all the skbs that are available. iscsi_tcp_recv |
| 136 | * handled pdus that cross buffers or pdus that still need data. |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 137 | */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 138 | rd_desc.arg.data = conn; |
| 139 | rd_desc.count = 1; |
| 140 | tcp_read_sock(sk, &rd_desc, iscsi_sw_tcp_recv); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 141 | |
Mike Christie | d1af8a3 | 2009-08-20 15:11:02 -0500 | [diff] [blame] | 142 | iscsi_sw_sk_state_check(sk); |
Hannes Reinecke | 523eeac | 2009-08-20 15:10:57 -0500 | [diff] [blame] | 143 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 144 | read_unlock(&sk->sk_callback_lock); |
| 145 | |
| 146 | /* If we had to (atomically) map a highmem page, |
| 147 | * unmap it now. */ |
| 148 | iscsi_tcp_segment_unmap(&tcp_conn->in.segment); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 149 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 150 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 151 | static void iscsi_sw_tcp_state_change(struct sock *sk) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 152 | { |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 153 | struct iscsi_tcp_conn *tcp_conn; |
| 154 | struct iscsi_sw_tcp_conn *tcp_sw_conn; |
| 155 | struct iscsi_conn *conn; |
| 156 | struct iscsi_session *session; |
| 157 | void (*old_state_change)(struct sock *); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 158 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 159 | read_lock(&sk->sk_callback_lock); |
| 160 | |
| 161 | conn = (struct iscsi_conn*)sk->sk_user_data; |
| 162 | session = conn->session; |
| 163 | |
Mike Christie | d1af8a3 | 2009-08-20 15:11:02 -0500 | [diff] [blame] | 164 | iscsi_sw_sk_state_check(sk); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 165 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 166 | tcp_conn = conn->dd_data; |
| 167 | tcp_sw_conn = tcp_conn->dd_data; |
| 168 | old_state_change = tcp_sw_conn->old_state_change; |
| 169 | |
| 170 | read_unlock(&sk->sk_callback_lock); |
| 171 | |
| 172 | old_state_change(sk); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 173 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 174 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 175 | /** |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 176 | * iscsi_write_space - Called when more output buffer space is available |
| 177 | * @sk: socket space is available for |
| 178 | **/ |
| 179 | static void iscsi_sw_tcp_write_space(struct sock *sk) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 180 | { |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 181 | struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data; |
| 182 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 183 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 184 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 185 | tcp_sw_conn->old_write_space(sk); |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 186 | ISCSI_SW_TCP_DBG(conn, "iscsi_write_space\n"); |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 187 | iscsi_conn_queue_work(conn); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 188 | } |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 189 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 190 | static void iscsi_sw_tcp_conn_set_callbacks(struct iscsi_conn *conn) |
| 191 | { |
| 192 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 193 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
| 194 | struct sock *sk = tcp_sw_conn->sock->sk; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 195 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 196 | /* assign new callbacks */ |
| 197 | write_lock_bh(&sk->sk_callback_lock); |
| 198 | sk->sk_user_data = conn; |
| 199 | tcp_sw_conn->old_data_ready = sk->sk_data_ready; |
| 200 | tcp_sw_conn->old_state_change = sk->sk_state_change; |
| 201 | tcp_sw_conn->old_write_space = sk->sk_write_space; |
| 202 | sk->sk_data_ready = iscsi_sw_tcp_data_ready; |
| 203 | sk->sk_state_change = iscsi_sw_tcp_state_change; |
| 204 | sk->sk_write_space = iscsi_sw_tcp_write_space; |
| 205 | write_unlock_bh(&sk->sk_callback_lock); |
| 206 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 207 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 208 | static void |
Avi Kaplan | c484a50 | 2010-04-09 22:07:38 -0500 | [diff] [blame] | 209 | iscsi_sw_tcp_conn_restore_callbacks(struct iscsi_conn *conn) |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 210 | { |
Avi Kaplan | c484a50 | 2010-04-09 22:07:38 -0500 | [diff] [blame] | 211 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 212 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 213 | struct sock *sk = tcp_sw_conn->sock->sk; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 214 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 215 | /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */ |
| 216 | write_lock_bh(&sk->sk_callback_lock); |
| 217 | sk->sk_user_data = NULL; |
| 218 | sk->sk_data_ready = tcp_sw_conn->old_data_ready; |
| 219 | sk->sk_state_change = tcp_sw_conn->old_state_change; |
| 220 | sk->sk_write_space = tcp_sw_conn->old_write_space; |
| 221 | sk->sk_no_check = 0; |
| 222 | write_unlock_bh(&sk->sk_callback_lock); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | /** |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 226 | * iscsi_sw_tcp_xmit_segment - transmit segment |
Mike Christie | 6df19a7 | 2008-12-02 00:32:16 -0600 | [diff] [blame] | 227 | * @tcp_conn: the iSCSI TCP connection |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 228 | * @segment: the buffer to transmnit |
| 229 | * |
| 230 | * This function transmits as much of the buffer as |
| 231 | * the network layer will accept, and returns the number of |
| 232 | * bytes transmitted. |
| 233 | * |
| 234 | * If CRC hashing is enabled, the function will compute the |
| 235 | * hash as it goes. When the entire segment has been transmitted, |
| 236 | * it will retrieve the hash value and send it as well. |
| 237 | */ |
Mike Christie | 6df19a7 | 2008-12-02 00:32:16 -0600 | [diff] [blame] | 238 | static int iscsi_sw_tcp_xmit_segment(struct iscsi_tcp_conn *tcp_conn, |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 239 | struct iscsi_segment *segment) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 240 | { |
Mike Christie | 6df19a7 | 2008-12-02 00:32:16 -0600 | [diff] [blame] | 241 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 242 | struct socket *sk = tcp_sw_conn->sock; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 243 | unsigned int copied = 0; |
| 244 | int r = 0; |
| 245 | |
Mike Christie | 6df19a7 | 2008-12-02 00:32:16 -0600 | [diff] [blame] | 246 | while (!iscsi_tcp_segment_done(tcp_conn, segment, 0, r)) { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 247 | struct scatterlist *sg; |
| 248 | unsigned int offset, copy; |
| 249 | int flags = 0; |
| 250 | |
| 251 | r = 0; |
| 252 | offset = segment->copied; |
| 253 | copy = segment->size - offset; |
| 254 | |
| 255 | if (segment->total_copied + segment->size < segment->total_size) |
| 256 | flags |= MSG_MORE; |
| 257 | |
| 258 | /* Use sendpage if we can; else fall back to sendmsg */ |
| 259 | if (!segment->data) { |
| 260 | sg = segment->sg; |
| 261 | offset += segment->sg_offset + sg->offset; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 262 | r = tcp_sw_conn->sendpage(sk, sg_page(sg), offset, |
| 263 | copy, flags); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 264 | } else { |
| 265 | struct msghdr msg = { .msg_flags = flags }; |
| 266 | struct kvec iov = { |
| 267 | .iov_base = segment->data + offset, |
| 268 | .iov_len = copy |
| 269 | }; |
| 270 | |
| 271 | r = kernel_sendmsg(sk, &msg, &iov, 1, copy); |
| 272 | } |
| 273 | |
| 274 | if (r < 0) { |
| 275 | iscsi_tcp_segment_unmap(segment); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 276 | return r; |
| 277 | } |
| 278 | copied += r; |
| 279 | } |
| 280 | return copied; |
| 281 | } |
| 282 | |
| 283 | /** |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 284 | * iscsi_sw_tcp_xmit - TCP transmit |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 285 | **/ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 286 | static int iscsi_sw_tcp_xmit(struct iscsi_conn *conn) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 287 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 288 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 289 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
| 290 | struct iscsi_segment *segment = &tcp_sw_conn->out.segment; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 291 | unsigned int consumed = 0; |
| 292 | int rc = 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 293 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 294 | while (1) { |
Mike Christie | 6df19a7 | 2008-12-02 00:32:16 -0600 | [diff] [blame] | 295 | rc = iscsi_sw_tcp_xmit_segment(tcp_conn, segment); |
Mike Christie | 3238249 | 2009-06-15 22:11:09 -0500 | [diff] [blame] | 296 | /* |
| 297 | * We may not have been able to send data because the conn |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 298 | * is getting stopped. libiscsi will know so propagate err |
Mike Christie | 3238249 | 2009-06-15 22:11:09 -0500 | [diff] [blame] | 299 | * for it to do the right thing. |
| 300 | */ |
| 301 | if (rc == -EAGAIN) |
| 302 | return rc; |
| 303 | else if (rc < 0) { |
Mike Christie | 6f481e3 | 2008-09-24 11:46:13 -0500 | [diff] [blame] | 304 | rc = ISCSI_ERR_XMIT_FAILED; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 305 | goto error; |
Mike Christie | 3238249 | 2009-06-15 22:11:09 -0500 | [diff] [blame] | 306 | } else if (rc == 0) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 307 | break; |
| 308 | |
| 309 | consumed += rc; |
| 310 | |
| 311 | if (segment->total_copied >= segment->total_size) { |
| 312 | if (segment->done != NULL) { |
| 313 | rc = segment->done(tcp_conn, segment); |
Mike Christie | 6f481e3 | 2008-09-24 11:46:13 -0500 | [diff] [blame] | 314 | if (rc != 0) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 315 | goto error; |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 320 | ISCSI_SW_TCP_DBG(conn, "xmit %d bytes\n", consumed); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 321 | |
| 322 | conn->txdata_octets += consumed; |
| 323 | return consumed; |
| 324 | |
| 325 | error: |
| 326 | /* Transmit error. We could initiate error recovery |
| 327 | * here. */ |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 328 | ISCSI_SW_TCP_DBG(conn, "Error sending PDU, errno=%d\n", rc); |
Mike Christie | 6f481e3 | 2008-09-24 11:46:13 -0500 | [diff] [blame] | 329 | iscsi_conn_failure(conn, rc); |
| 330 | return -EIO; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | /** |
| 334 | * iscsi_tcp_xmit_qlen - return the number of bytes queued for xmit |
| 335 | */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 336 | static inline int iscsi_sw_tcp_xmit_qlen(struct iscsi_conn *conn) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 337 | { |
| 338 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 339 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
| 340 | struct iscsi_segment *segment = &tcp_sw_conn->out.segment; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 341 | |
| 342 | return segment->total_copied - segment->total_size; |
| 343 | } |
| 344 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 345 | static int iscsi_sw_tcp_pdu_xmit(struct iscsi_task *task) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 346 | { |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 347 | struct iscsi_conn *conn = task->conn; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 348 | int rc; |
| 349 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 350 | while (iscsi_sw_tcp_xmit_qlen(conn)) { |
| 351 | rc = iscsi_sw_tcp_xmit(conn); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 352 | if (rc == 0) |
| 353 | return -EAGAIN; |
| 354 | if (rc < 0) |
| 355 | return rc; |
| 356 | } |
| 357 | |
| 358 | return 0; |
| 359 | } |
| 360 | |
| 361 | /* |
| 362 | * This is called when we're done sending the header. |
| 363 | * Simply copy the data_segment to the send segment, and return. |
| 364 | */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 365 | static int iscsi_sw_tcp_send_hdr_done(struct iscsi_tcp_conn *tcp_conn, |
| 366 | struct iscsi_segment *segment) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 367 | { |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 368 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
| 369 | |
| 370 | tcp_sw_conn->out.segment = tcp_sw_conn->out.data_segment; |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 371 | ISCSI_SW_TCP_DBG(tcp_conn->iscsi_conn, |
| 372 | "Header done. Next segment size %u total_size %u\n", |
| 373 | tcp_sw_conn->out.segment.size, |
| 374 | tcp_sw_conn->out.segment.total_size); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 375 | return 0; |
| 376 | } |
| 377 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 378 | static void iscsi_sw_tcp_send_hdr_prep(struct iscsi_conn *conn, void *hdr, |
| 379 | size_t hdrlen) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 380 | { |
| 381 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 382 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 383 | |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 384 | ISCSI_SW_TCP_DBG(conn, "%s\n", conn->hdrdgst_en ? |
| 385 | "digest enabled" : "digest disabled"); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 386 | |
| 387 | /* Clear the data segment - needs to be filled in by the |
| 388 | * caller using iscsi_tcp_send_data_prep() */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 389 | memset(&tcp_sw_conn->out.data_segment, 0, |
| 390 | sizeof(struct iscsi_segment)); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 391 | |
| 392 | /* If header digest is enabled, compute the CRC and |
| 393 | * place the digest into the same buffer. We make |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 394 | * sure that both iscsi_tcp_task and mtask have |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 395 | * sufficient room. |
Mike Christie | 7cae515 | 2006-01-13 18:05:47 -0600 | [diff] [blame] | 396 | */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 397 | if (conn->hdrdgst_en) { |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 398 | iscsi_tcp_dgst_header(&tcp_sw_conn->tx_hash, hdr, hdrlen, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 399 | hdr + hdrlen); |
| 400 | hdrlen += ISCSI_DIGEST_SIZE; |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 401 | } |
| 402 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 403 | /* Remember header pointer for later, when we need |
| 404 | * to decide whether there's a payload to go along |
| 405 | * with the header. */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 406 | tcp_sw_conn->out.hdr = hdr; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 407 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 408 | iscsi_segment_init_linear(&tcp_sw_conn->out.segment, hdr, hdrlen, |
| 409 | iscsi_sw_tcp_send_hdr_done, NULL); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 410 | } |
| 411 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 412 | /* |
| 413 | * Prepare the send buffer for the payload data. |
| 414 | * Padding and checksumming will all be taken care |
| 415 | * of by the iscsi_segment routines. |
| 416 | */ |
| 417 | static int |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 418 | iscsi_sw_tcp_send_data_prep(struct iscsi_conn *conn, struct scatterlist *sg, |
| 419 | unsigned int count, unsigned int offset, |
| 420 | unsigned int len) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 421 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 422 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 423 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 424 | struct hash_desc *tx_hash = NULL; |
| 425 | unsigned int hdr_spec_len; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 426 | |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 427 | ISCSI_SW_TCP_DBG(conn, "offset=%d, datalen=%d %s\n", offset, len, |
| 428 | conn->datadgst_en ? |
| 429 | "digest enabled" : "digest disabled"); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 430 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 431 | /* Make sure the datalen matches what the caller |
| 432 | said he would send. */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 433 | hdr_spec_len = ntoh24(tcp_sw_conn->out.hdr->dlength); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 434 | WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len)); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 435 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 436 | if (conn->datadgst_en) |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 437 | tx_hash = &tcp_sw_conn->tx_hash; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 438 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 439 | return iscsi_segment_seek_sg(&tcp_sw_conn->out.data_segment, |
| 440 | sg, count, offset, len, |
| 441 | NULL, tx_hash); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 444 | static void |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 445 | iscsi_sw_tcp_send_linear_data_prep(struct iscsi_conn *conn, void *data, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 446 | size_t len) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 447 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 448 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 449 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 450 | struct hash_desc *tx_hash = NULL; |
| 451 | unsigned int hdr_spec_len; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 452 | |
Mike Christie | c93f87c | 2009-03-05 14:46:00 -0600 | [diff] [blame] | 453 | ISCSI_SW_TCP_DBG(conn, "datalen=%zd %s\n", len, conn->datadgst_en ? |
| 454 | "digest enabled" : "digest disabled"); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 455 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 456 | /* Make sure the datalen matches what the caller |
| 457 | said he would send. */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 458 | hdr_spec_len = ntoh24(tcp_sw_conn->out.hdr->dlength); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 459 | WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len)); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 460 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 461 | if (conn->datadgst_en) |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 462 | tx_hash = &tcp_sw_conn->tx_hash; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 463 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 464 | iscsi_segment_init_linear(&tcp_sw_conn->out.data_segment, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 465 | data, len, NULL, tx_hash); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 468 | static int iscsi_sw_tcp_pdu_init(struct iscsi_task *task, |
| 469 | unsigned int offset, unsigned int count) |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 470 | { |
| 471 | struct iscsi_conn *conn = task->conn; |
| 472 | int err = 0; |
| 473 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 474 | iscsi_sw_tcp_send_hdr_prep(conn, task->hdr, task->hdr_len); |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 475 | |
| 476 | if (!count) |
| 477 | return 0; |
| 478 | |
| 479 | if (!task->sc) |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 480 | iscsi_sw_tcp_send_linear_data_prep(conn, task->data, count); |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 481 | else { |
| 482 | struct scsi_data_buffer *sdb = scsi_out(task->sc); |
| 483 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 484 | err = iscsi_sw_tcp_send_data_prep(conn, sdb->table.sgl, |
| 485 | sdb->table.nents, offset, |
| 486 | count); |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | if (err) { |
Mike Christie | 9a6510e | 2009-04-21 15:32:31 -0500 | [diff] [blame] | 490 | /* got invalid offset/len */ |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 491 | return -EIO; |
| 492 | } |
| 493 | return 0; |
| 494 | } |
| 495 | |
Mike Christie | 2ff79d5 | 2008-12-02 00:32:14 -0600 | [diff] [blame] | 496 | static int iscsi_sw_tcp_pdu_alloc(struct iscsi_task *task, uint8_t opcode) |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 497 | { |
| 498 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
| 499 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 500 | task->hdr = task->dd_data + sizeof(*tcp_task); |
| 501 | task->hdr_max = sizeof(struct iscsi_sw_tcp_hdrbuf) - ISCSI_DIGEST_SIZE; |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 502 | return 0; |
| 503 | } |
| 504 | |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 505 | static struct iscsi_cls_conn * |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 506 | iscsi_sw_tcp_conn_create(struct iscsi_cls_session *cls_session, |
| 507 | uint32_t conn_idx) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 508 | { |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 509 | struct iscsi_conn *conn; |
| 510 | struct iscsi_cls_conn *cls_conn; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 511 | struct iscsi_tcp_conn *tcp_conn; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 512 | struct iscsi_sw_tcp_conn *tcp_sw_conn; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 513 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 514 | cls_conn = iscsi_tcp_conn_setup(cls_session, sizeof(*tcp_sw_conn), |
| 515 | conn_idx); |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 516 | if (!cls_conn) |
| 517 | return NULL; |
| 518 | conn = cls_conn->dd_data; |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 519 | tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 520 | tcp_sw_conn = tcp_conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 521 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 522 | tcp_sw_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0, |
| 523 | CRYPTO_ALG_ASYNC); |
| 524 | tcp_sw_conn->tx_hash.flags = 0; |
| 525 | if (IS_ERR(tcp_sw_conn->tx_hash.tfm)) |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 526 | goto free_conn; |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 527 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 528 | tcp_sw_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0, |
| 529 | CRYPTO_ALG_ASYNC); |
| 530 | tcp_sw_conn->rx_hash.flags = 0; |
| 531 | if (IS_ERR(tcp_sw_conn->rx_hash.tfm)) |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 532 | goto free_tx_tfm; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 533 | tcp_conn->rx_hash = &tcp_sw_conn->rx_hash; |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 534 | |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 535 | return cls_conn; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 536 | |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 537 | free_tx_tfm: |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 538 | crypto_free_hash(tcp_sw_conn->tx_hash.tfm); |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 539 | free_conn: |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 540 | iscsi_conn_printk(KERN_ERR, conn, |
| 541 | "Could not create connection due to crc32c " |
| 542 | "loading error. Make sure the crc32c " |
| 543 | "module is built as a module or into the " |
| 544 | "kernel\n"); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 545 | iscsi_tcp_conn_teardown(cls_conn); |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 546 | return NULL; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 547 | } |
| 548 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 549 | static void iscsi_sw_tcp_release_conn(struct iscsi_conn *conn) |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 550 | { |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 551 | struct iscsi_session *session = conn->session; |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 552 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 553 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
| 554 | struct socket *sock = tcp_sw_conn->sock; |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 555 | |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 556 | if (!sock) |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 557 | return; |
| 558 | |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 559 | sock_hold(sock->sk); |
Avi Kaplan | c484a50 | 2010-04-09 22:07:38 -0500 | [diff] [blame] | 560 | iscsi_sw_tcp_conn_restore_callbacks(conn); |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 561 | sock_put(sock->sk); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 562 | |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 563 | spin_lock_bh(&session->lock); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 564 | tcp_sw_conn->sock = NULL; |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 565 | spin_unlock_bh(&session->lock); |
| 566 | sockfd_put(sock); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 567 | } |
| 568 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 569 | static void iscsi_sw_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 570 | { |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 571 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 572 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 573 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 574 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 575 | iscsi_sw_tcp_release_conn(conn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 576 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 577 | if (tcp_sw_conn->tx_hash.tfm) |
| 578 | crypto_free_hash(tcp_sw_conn->tx_hash.tfm); |
| 579 | if (tcp_sw_conn->rx_hash.tfm) |
| 580 | crypto_free_hash(tcp_sw_conn->rx_hash.tfm); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 581 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 582 | iscsi_tcp_conn_teardown(cls_conn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 583 | } |
| 584 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 585 | static void iscsi_sw_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag) |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 586 | { |
| 587 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 588 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 589 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Mike Christie | b64e77f | 2010-02-10 16:51:47 -0600 | [diff] [blame] | 590 | struct socket *sock = tcp_sw_conn->sock; |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 591 | |
| 592 | /* userspace may have goofed up and not bound us */ |
Mike Christie | b64e77f | 2010-02-10 16:51:47 -0600 | [diff] [blame] | 593 | if (!sock) |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 594 | return; |
| 595 | /* |
| 596 | * Make sure our recv side is stopped. |
| 597 | * Older tools called conn stop before ep_disconnect |
| 598 | * so IO could still be coming in. |
| 599 | */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 600 | write_lock_bh(&tcp_sw_conn->sock->sk->sk_callback_lock); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 601 | set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 602 | write_unlock_bh(&tcp_sw_conn->sock->sk->sk_callback_lock); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 603 | |
Mike Christie | 8c38a29 | 2010-05-21 18:24:16 -0500 | [diff] [blame] | 604 | sock->sk->sk_err = EIO; |
| 605 | wake_up_interruptible(sk_sleep(sock->sk)); |
Mike Christie | b64e77f | 2010-02-10 16:51:47 -0600 | [diff] [blame] | 606 | |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 607 | iscsi_conn_stop(cls_conn, flag); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 608 | iscsi_sw_tcp_release_conn(conn); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 609 | } |
| 610 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 611 | static int |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 612 | iscsi_sw_tcp_conn_bind(struct iscsi_cls_session *cls_session, |
| 613 | struct iscsi_cls_conn *cls_conn, uint64_t transport_eph, |
| 614 | int is_leading) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 615 | { |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 616 | struct iscsi_session *session = cls_session->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 617 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 618 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 619 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 620 | struct sock *sk; |
| 621 | struct socket *sock; |
| 622 | int err; |
| 623 | |
| 624 | /* lookup for existing socket */ |
Or Gerlitz | 264faaa | 2006-05-02 19:46:36 -0500 | [diff] [blame] | 625 | sock = sockfd_lookup((int)transport_eph, &err); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 626 | if (!sock) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 627 | iscsi_conn_printk(KERN_ERR, conn, |
| 628 | "sockfd_lookup failed %d\n", err); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 629 | return -EEXIST; |
| 630 | } |
| 631 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 632 | err = iscsi_conn_bind(cls_session, cls_conn, is_leading); |
| 633 | if (err) |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 634 | goto free_socket; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 635 | |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 636 | spin_lock_bh(&session->lock); |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 637 | /* bind iSCSI connection and socket */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 638 | tcp_sw_conn->sock = sock; |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 639 | spin_unlock_bh(&session->lock); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 640 | |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 641 | /* setup Socket parameters */ |
| 642 | sk = sock->sk; |
| 643 | sk->sk_reuse = 1; |
| 644 | sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */ |
| 645 | sk->sk_allocation = GFP_ATOMIC; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 646 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 647 | iscsi_sw_tcp_conn_set_callbacks(conn); |
| 648 | tcp_sw_conn->sendpage = tcp_sw_conn->sock->ops->sendpage; |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 649 | /* |
| 650 | * set receive state machine into initial state |
| 651 | */ |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 652 | iscsi_tcp_hdr_recv_prep(tcp_conn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 653 | return 0; |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 654 | |
| 655 | free_socket: |
| 656 | sockfd_put(sock); |
| 657 | return err; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 658 | } |
| 659 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 660 | static int iscsi_sw_tcp_conn_set_param(struct iscsi_cls_conn *cls_conn, |
| 661 | enum iscsi_param param, char *buf, |
| 662 | int buflen) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 663 | { |
Mike Christie | 7b7232f | 2006-02-01 21:06:49 -0600 | [diff] [blame] | 664 | struct iscsi_conn *conn = cls_conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 665 | struct iscsi_session *session = conn->session; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 666 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 667 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 668 | int value; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 669 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 670 | switch(param) { |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 671 | case ISCSI_PARAM_HDRDGST_EN: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 672 | iscsi_set_param(cls_conn, param, buf, buflen); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 673 | break; |
| 674 | case ISCSI_PARAM_DATADGST_EN: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 675 | iscsi_set_param(cls_conn, param, buf, buflen); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 676 | tcp_sw_conn->sendpage = conn->datadgst_en ? |
| 677 | sock_no_sendpage : tcp_sw_conn->sock->ops->sendpage; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 678 | break; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 679 | case ISCSI_PARAM_MAX_R2T: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 680 | sscanf(buf, "%d", &value); |
Mike Christie | df93ffc | 2007-12-13 12:43:42 -0600 | [diff] [blame] | 681 | if (value <= 0 || !is_power_of_2(value)) |
| 682 | return -EINVAL; |
| 683 | if (session->max_r2t == value) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 684 | break; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 685 | iscsi_tcp_r2tpool_free(session); |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 686 | iscsi_set_param(cls_conn, param, buf, buflen); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 687 | if (iscsi_tcp_r2tpool_alloc(session)) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 688 | return -ENOMEM; |
| 689 | break; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 690 | default: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 691 | return iscsi_set_param(cls_conn, param, buf, buflen); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | return 0; |
| 695 | } |
| 696 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 697 | static int iscsi_sw_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn, |
| 698 | enum iscsi_param param, char *buf) |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 699 | { |
Mike Christie | 7b7232f | 2006-02-01 21:06:49 -0600 | [diff] [blame] | 700 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 701 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 702 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
| 703 | struct sockaddr_in6 addr; |
| 704 | int rc, len; |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 705 | |
| 706 | switch(param) { |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 707 | case ISCSI_PARAM_CONN_PORT: |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 708 | case ISCSI_PARAM_CONN_ADDRESS: |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 709 | spin_lock_bh(&conn->session->lock); |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 710 | if (!tcp_sw_conn || !tcp_sw_conn->sock) { |
| 711 | spin_unlock_bh(&conn->session->lock); |
| 712 | return -ENOTCONN; |
| 713 | } |
| 714 | rc = kernel_getpeername(tcp_sw_conn->sock, |
| 715 | (struct sockaddr *)&addr, &len); |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 716 | spin_unlock_bh(&conn->session->lock); |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 717 | if (rc) |
| 718 | return rc; |
| 719 | |
| 720 | return iscsi_conn_get_addr_param((struct sockaddr_storage *) |
| 721 | &addr, param, buf); |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 722 | default: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 723 | return iscsi_conn_get_param(cls_conn, param, buf); |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 724 | } |
| 725 | |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 726 | return 0; |
| 727 | } |
| 728 | |
| 729 | static int iscsi_sw_tcp_host_get_param(struct Scsi_Host *shost, |
| 730 | enum iscsi_host_param param, char *buf) |
| 731 | { |
| 732 | struct iscsi_sw_tcp_host *tcp_sw_host = iscsi_host_priv(shost); |
| 733 | struct iscsi_session *session = tcp_sw_host->session; |
| 734 | struct iscsi_conn *conn; |
| 735 | struct iscsi_tcp_conn *tcp_conn; |
| 736 | struct iscsi_sw_tcp_conn *tcp_sw_conn; |
| 737 | struct sockaddr_in6 addr; |
| 738 | int rc, len; |
| 739 | |
| 740 | switch (param) { |
| 741 | case ISCSI_HOST_PARAM_IPADDRESS: |
| 742 | spin_lock_bh(&session->lock); |
| 743 | conn = session->leadconn; |
| 744 | if (!conn) { |
| 745 | spin_unlock_bh(&session->lock); |
| 746 | return -ENOTCONN; |
| 747 | } |
| 748 | tcp_conn = conn->dd_data; |
| 749 | |
| 750 | tcp_sw_conn = tcp_conn->dd_data; |
| 751 | if (!tcp_sw_conn->sock) { |
| 752 | spin_unlock_bh(&session->lock); |
| 753 | return -ENOTCONN; |
| 754 | } |
| 755 | |
| 756 | rc = kernel_getsockname(tcp_sw_conn->sock, |
| 757 | (struct sockaddr *)&addr, &len); |
| 758 | spin_unlock_bh(&session->lock); |
| 759 | if (rc) |
| 760 | return rc; |
| 761 | |
| 762 | return iscsi_conn_get_addr_param((struct sockaddr_storage *) |
| 763 | &addr, param, buf); |
| 764 | default: |
| 765 | return iscsi_host_get_param(shost, param, buf); |
| 766 | } |
| 767 | |
| 768 | return 0; |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 769 | } |
| 770 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 771 | static void |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 772 | iscsi_sw_tcp_conn_get_stats(struct iscsi_cls_conn *cls_conn, |
| 773 | struct iscsi_stats *stats) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 774 | { |
Mike Christie | 7b7232f | 2006-02-01 21:06:49 -0600 | [diff] [blame] | 775 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 776 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 777 | struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 778 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 779 | stats->custom_length = 3; |
| 780 | strcpy(stats->custom[0].desc, "tx_sendpage_failures"); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 781 | stats->custom[0].value = tcp_sw_conn->sendpage_failures_cnt; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 782 | strcpy(stats->custom[1].desc, "rx_discontiguous_hdr"); |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 783 | stats->custom[1].value = tcp_sw_conn->discontiguous_hdr_cnt; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 784 | strcpy(stats->custom[2].desc, "eh_abort_cnt"); |
| 785 | stats->custom[2].value = conn->eh_abort_cnt; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 786 | |
| 787 | iscsi_tcp_conn_get_stats(cls_conn, stats); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 788 | } |
| 789 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 790 | static struct iscsi_cls_session * |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 791 | iscsi_sw_tcp_session_create(struct iscsi_endpoint *ep, uint16_t cmds_max, |
Mike Christie | 5e7facb | 2009-03-05 14:46:06 -0600 | [diff] [blame] | 792 | uint16_t qdepth, uint32_t initial_cmdsn) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 793 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 794 | struct iscsi_cls_session *cls_session; |
| 795 | struct iscsi_session *session; |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 796 | struct iscsi_sw_tcp_host *tcp_sw_host; |
Mike Christie | 06520ed | 2008-05-21 15:54:15 -0500 | [diff] [blame] | 797 | struct Scsi_Host *shost; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 798 | |
Mike Christie | 06520ed | 2008-05-21 15:54:15 -0500 | [diff] [blame] | 799 | if (ep) { |
| 800 | printk(KERN_ERR "iscsi_tcp: invalid ep %p.\n", ep); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 801 | return NULL; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 802 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 803 | |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 804 | shost = iscsi_host_alloc(&iscsi_sw_tcp_sht, |
| 805 | sizeof(struct iscsi_sw_tcp_host), 1); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 806 | if (!shost) |
| 807 | return NULL; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 808 | shost->transportt = iscsi_sw_tcp_scsi_transport; |
Mike Christie | 4d10835 | 2009-03-05 14:46:04 -0600 | [diff] [blame] | 809 | shost->cmd_per_lun = qdepth; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 810 | shost->max_lun = iscsi_max_lun; |
| 811 | shost->max_id = 0; |
| 812 | shost->max_channel = 0; |
Boaz Harrosh | 30e9ba9 | 2008-05-26 11:31:19 +0300 | [diff] [blame] | 813 | shost->max_cmd_len = SCSI_MAX_VARLEN_CDB_SIZE; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 814 | |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 815 | if (iscsi_host_add(shost, NULL)) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 816 | goto free_host; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 817 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 818 | cls_session = iscsi_session_setup(&iscsi_sw_tcp_transport, shost, |
Jayamohan Kallickal | b8b9e1b8 | 2009-09-22 08:21:22 +0530 | [diff] [blame] | 819 | cmds_max, 0, |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 820 | sizeof(struct iscsi_tcp_task) + |
| 821 | sizeof(struct iscsi_sw_tcp_hdrbuf), |
Mike Christie | 7970634 | 2008-05-21 15:54:12 -0500 | [diff] [blame] | 822 | initial_cmdsn, 0); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 823 | if (!cls_session) |
| 824 | goto remove_host; |
| 825 | session = cls_session->dd_data; |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 826 | tcp_sw_host = iscsi_host_priv(shost); |
| 827 | tcp_sw_host->session = session; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 828 | |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 829 | shost->can_queue = session->scsi_cmds_max; |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 830 | if (iscsi_tcp_r2tpool_alloc(session)) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 831 | goto remove_session; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 832 | return cls_session; |
| 833 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 834 | remove_session: |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 835 | iscsi_session_teardown(cls_session); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 836 | remove_host: |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 837 | iscsi_host_remove(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 838 | free_host: |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 839 | iscsi_host_free(shost); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 840 | return NULL; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 841 | } |
| 842 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 843 | static void iscsi_sw_tcp_session_destroy(struct iscsi_cls_session *cls_session) |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 844 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 845 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); |
| 846 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 847 | iscsi_tcp_r2tpool_free(cls_session->dd_data); |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 848 | iscsi_session_teardown(cls_session); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 849 | |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 850 | iscsi_host_remove(shost); |
| 851 | iscsi_host_free(shost); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 852 | } |
| 853 | |
Pete Wyckoff | 091e6db | 2009-03-05 14:45:56 -0600 | [diff] [blame] | 854 | static int iscsi_sw_tcp_slave_alloc(struct scsi_device *sdev) |
| 855 | { |
| 856 | set_bit(QUEUE_FLAG_BIDI, &sdev->request_queue->queue_flags); |
| 857 | return 0; |
| 858 | } |
| 859 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 860 | static int iscsi_sw_tcp_slave_configure(struct scsi_device *sdev) |
Mike Christie | d1d81c0 | 2007-05-30 12:57:21 -0500 | [diff] [blame] | 861 | { |
Mike Christie | b6d44fe | 2007-07-26 12:46:47 -0500 | [diff] [blame] | 862 | blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_ANY); |
Mike Christie | d1d81c0 | 2007-05-30 12:57:21 -0500 | [diff] [blame] | 863 | blk_queue_dma_alignment(sdev->request_queue, 0); |
| 864 | return 0; |
| 865 | } |
| 866 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 867 | static struct scsi_host_template iscsi_sw_tcp_sht = { |
Mike Christie | 7974392 | 2007-07-26 12:46:46 -0500 | [diff] [blame] | 868 | .module = THIS_MODULE, |
Mike Christie | f4246b3 | 2006-07-24 15:47:54 -0500 | [diff] [blame] | 869 | .name = "iSCSI Initiator over TCP/IP", |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 870 | .queuecommand = iscsi_queuecommand, |
| 871 | .change_queue_depth = iscsi_change_queue_depth, |
Mike Christie | 1548271 | 2007-05-30 12:57:19 -0500 | [diff] [blame] | 872 | .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1, |
Mike Christie | 66bbe0c | 2007-12-13 12:43:39 -0600 | [diff] [blame] | 873 | .sg_tablesize = 4096, |
Mike Christie | 8231f0e | 2007-02-28 17:32:20 -0600 | [diff] [blame] | 874 | .max_sectors = 0xFFFF, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 875 | .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN, |
| 876 | .eh_abort_handler = iscsi_eh_abort, |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 877 | .eh_device_reset_handler= iscsi_eh_device_reset, |
Jayamohan Kallickal | 309ce15 | 2010-02-20 08:02:10 +0530 | [diff] [blame] | 878 | .eh_target_reset_handler = iscsi_eh_recover_target, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 879 | .use_clustering = DISABLE_CLUSTERING, |
Pete Wyckoff | 091e6db | 2009-03-05 14:45:56 -0600 | [diff] [blame] | 880 | .slave_alloc = iscsi_sw_tcp_slave_alloc, |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 881 | .slave_configure = iscsi_sw_tcp_slave_configure, |
Mike Christie | 6b5d6c4 | 2009-04-21 15:32:32 -0500 | [diff] [blame] | 882 | .target_alloc = iscsi_target_alloc, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 883 | .proc_name = "iscsi_tcp", |
| 884 | .this_id = -1, |
| 885 | }; |
| 886 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 887 | static struct iscsi_transport iscsi_sw_tcp_transport = { |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 888 | .owner = THIS_MODULE, |
| 889 | .name = "tcp", |
| 890 | .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST |
| 891 | | CAP_DATADGST, |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 892 | .param_mask = ISCSI_MAX_RECV_DLENGTH | |
| 893 | ISCSI_MAX_XMIT_DLENGTH | |
| 894 | ISCSI_HDRDGST_EN | |
| 895 | ISCSI_DATADGST_EN | |
| 896 | ISCSI_INITIAL_R2T_EN | |
| 897 | ISCSI_MAX_R2T | |
| 898 | ISCSI_IMM_DATA_EN | |
| 899 | ISCSI_FIRST_BURST | |
| 900 | ISCSI_MAX_BURST | |
| 901 | ISCSI_PDU_INORDER_EN | |
| 902 | ISCSI_DATASEQ_INORDER_EN | |
| 903 | ISCSI_ERL | |
| 904 | ISCSI_CONN_PORT | |
Mike Christie | 8d2860b | 2006-05-02 19:46:47 -0500 | [diff] [blame] | 905 | ISCSI_CONN_ADDRESS | |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 906 | ISCSI_EXP_STATSN | |
| 907 | ISCSI_PERSISTENT_PORT | |
| 908 | ISCSI_PERSISTENT_ADDRESS | |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 909 | ISCSI_TARGET_NAME | ISCSI_TPGT | |
| 910 | ISCSI_USERNAME | ISCSI_PASSWORD | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 911 | ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 912 | ISCSI_FAST_ABORT | ISCSI_ABORT_TMO | |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 913 | ISCSI_LU_RESET_TMO | ISCSI_TGT_RESET_TMO | |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 914 | ISCSI_PING_TMO | ISCSI_RECV_TMO | |
| 915 | ISCSI_IFACE_NAME | ISCSI_INITIATOR_NAME, |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 916 | .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS | |
Mike Christie | d8196ed | 2007-05-30 12:57:25 -0500 | [diff] [blame] | 917 | ISCSI_HOST_INITIATOR_NAME | |
| 918 | ISCSI_HOST_NETDEV_NAME, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 919 | /* session management */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 920 | .create_session = iscsi_sw_tcp_session_create, |
| 921 | .destroy_session = iscsi_sw_tcp_session_destroy, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 922 | /* connection management */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 923 | .create_conn = iscsi_sw_tcp_conn_create, |
| 924 | .bind_conn = iscsi_sw_tcp_conn_bind, |
| 925 | .destroy_conn = iscsi_sw_tcp_conn_destroy, |
| 926 | .set_param = iscsi_sw_tcp_conn_set_param, |
| 927 | .get_conn_param = iscsi_sw_tcp_conn_get_param, |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 928 | .get_session_param = iscsi_session_get_param, |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 929 | .start_conn = iscsi_conn_start, |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 930 | .stop_conn = iscsi_sw_tcp_conn_stop, |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 931 | /* iscsi host params */ |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 932 | .get_host_param = iscsi_sw_tcp_host_get_param, |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 933 | .set_host_param = iscsi_host_set_param, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 934 | /* IO */ |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 935 | .send_pdu = iscsi_conn_send_pdu, |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 936 | .get_stats = iscsi_sw_tcp_conn_get_stats, |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 937 | /* iscsi task/cmd helpers */ |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 938 | .init_task = iscsi_tcp_task_init, |
| 939 | .xmit_task = iscsi_tcp_task_xmit, |
| 940 | .cleanup_task = iscsi_tcp_cleanup_task, |
Mike Christie | e5a7efe | 2008-12-02 00:32:07 -0600 | [diff] [blame] | 941 | /* low level pdu helpers */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 942 | .xmit_pdu = iscsi_sw_tcp_pdu_xmit, |
| 943 | .init_pdu = iscsi_sw_tcp_pdu_init, |
| 944 | .alloc_pdu = iscsi_sw_tcp_pdu_alloc, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 945 | /* recovery */ |
Mike Christie | 30a6c65 | 2006-04-06 21:13:39 -0500 | [diff] [blame] | 946 | .session_recovery_timedout = iscsi_session_recovery_timedout, |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 947 | }; |
| 948 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 949 | static int __init iscsi_sw_tcp_init(void) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 950 | { |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 951 | if (iscsi_max_lun < 1) { |
Or Gerlitz | be2df72 | 2006-05-02 19:46:43 -0500 | [diff] [blame] | 952 | printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n", |
| 953 | iscsi_max_lun); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 954 | return -EINVAL; |
| 955 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 956 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 957 | iscsi_sw_tcp_scsi_transport = iscsi_register_transport( |
| 958 | &iscsi_sw_tcp_transport); |
| 959 | if (!iscsi_sw_tcp_scsi_transport) |
Mike Christie | ffbfe92 | 2006-05-18 20:31:36 -0500 | [diff] [blame] | 960 | return -ENODEV; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 961 | |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 962 | return 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 963 | } |
| 964 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 965 | static void __exit iscsi_sw_tcp_exit(void) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 966 | { |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 967 | iscsi_unregister_transport(&iscsi_sw_tcp_transport); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 968 | } |
| 969 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 970 | module_init(iscsi_sw_tcp_init); |
| 971 | module_exit(iscsi_sw_tcp_exit); |