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> |
| 30 | #include <linux/list.h> |
| 31 | #include <linux/inet.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 | |
| 47 | MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, " |
| 48 | "Alex Aizman <itn780@yahoo.com>"); |
| 49 | MODULE_DESCRIPTION("iSCSI/TCP data-path"); |
| 50 | MODULE_LICENSE("GPL"); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 51 | #undef DEBUG_TCP |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 52 | #define DEBUG_ASSERT |
| 53 | |
| 54 | #ifdef DEBUG_TCP |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 55 | #define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 56 | #else |
| 57 | #define debug_tcp(fmt...) |
| 58 | #endif |
| 59 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 60 | #ifndef DEBUG_ASSERT |
| 61 | #ifdef BUG_ON |
| 62 | #undef BUG_ON |
| 63 | #endif |
| 64 | #define BUG_ON(expr) |
| 65 | #endif |
| 66 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 67 | static struct scsi_transport_template *iscsi_tcp_scsi_transport; |
| 68 | static struct scsi_host_template iscsi_sht; |
| 69 | static struct iscsi_transport iscsi_tcp_transport; |
| 70 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 71 | static unsigned int iscsi_max_lun = 512; |
| 72 | module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO); |
| 73 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 74 | static int iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 75 | struct iscsi_segment *segment); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 76 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 77 | /* |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 78 | * Scatterlist handling: inside the iscsi_segment, we |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 79 | * remember an index into the scatterlist, and set data/size |
| 80 | * to the current scatterlist entry. For highmem pages, we |
| 81 | * kmap as needed. |
| 82 | * |
| 83 | * Note that the page is unmapped when we return from |
| 84 | * TCP's data_ready handler, so we may end up mapping and |
| 85 | * unmapping the same page repeatedly. The whole reason |
| 86 | * for this is that we shouldn't keep the page mapped |
| 87 | * outside the softirq. |
| 88 | */ |
| 89 | |
| 90 | /** |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 91 | * iscsi_tcp_segment_init_sg - init indicated scatterlist entry |
| 92 | * @segment: the buffer object |
| 93 | * @sg: scatterlist |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 94 | * @offset: byte offset into that sg entry |
| 95 | * |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 96 | * This function sets up the segment so that subsequent |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 97 | * data is copied to the indicated sg entry, at the given |
| 98 | * offset. |
| 99 | */ |
| 100 | static inline void |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 101 | iscsi_tcp_segment_init_sg(struct iscsi_segment *segment, |
| 102 | struct scatterlist *sg, unsigned int offset) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 103 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 104 | segment->sg = sg; |
| 105 | segment->sg_offset = offset; |
| 106 | segment->size = min(sg->length - offset, |
| 107 | segment->total_size - segment->total_copied); |
| 108 | segment->data = NULL; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 109 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 110 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 111 | /** |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 112 | * iscsi_tcp_segment_map - map the current S/G page |
| 113 | * @segment: iscsi_segment |
| 114 | * @recv: 1 if called from recv path |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 115 | * |
| 116 | * We only need to possibly kmap data if scatter lists are being used, |
| 117 | * because the iscsi passthrough and internal IO paths will never use high |
| 118 | * mem pages. |
| 119 | */ |
| 120 | static inline void |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 121 | iscsi_tcp_segment_map(struct iscsi_segment *segment, int recv) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 122 | { |
| 123 | struct scatterlist *sg; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 124 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 125 | if (segment->data != NULL || !segment->sg) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 126 | return; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 127 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 128 | sg = segment->sg; |
| 129 | BUG_ON(segment->sg_mapped); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 130 | BUG_ON(sg->length == 0); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 131 | |
| 132 | /* |
| 133 | * If the page count is greater than one it is ok to send |
| 134 | * to the network layer's zero copy send path. If not we |
| 135 | * have to go the slow sendmsg path. We always map for the |
| 136 | * recv path. |
| 137 | */ |
| 138 | if (page_count(sg_page(sg)) >= 1 && !recv) |
| 139 | return; |
| 140 | |
| 141 | debug_tcp("iscsi_tcp_segment_map %s %p\n", recv ? "recv" : "xmit", |
| 142 | segment); |
| 143 | segment->sg_mapped = kmap_atomic(sg_page(sg), KM_SOFTIRQ0); |
| 144 | segment->data = segment->sg_mapped + sg->offset + segment->sg_offset; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 145 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 146 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 147 | static inline void |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 148 | iscsi_tcp_segment_unmap(struct iscsi_segment *segment) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 149 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 150 | debug_tcp("iscsi_tcp_segment_unmap %p\n", segment); |
| 151 | |
| 152 | if (segment->sg_mapped) { |
| 153 | debug_tcp("iscsi_tcp_segment_unmap valid\n"); |
| 154 | kunmap_atomic(segment->sg_mapped, KM_SOFTIRQ0); |
| 155 | segment->sg_mapped = NULL; |
| 156 | segment->data = NULL; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 157 | } |
| 158 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 159 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 160 | /* |
| 161 | * Splice the digest buffer into the buffer |
| 162 | */ |
| 163 | static inline void |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 164 | iscsi_tcp_segment_splice_digest(struct iscsi_segment *segment, void *digest) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 165 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 166 | segment->data = digest; |
| 167 | segment->digest_len = ISCSI_DIGEST_SIZE; |
| 168 | segment->total_size += ISCSI_DIGEST_SIZE; |
| 169 | segment->size = ISCSI_DIGEST_SIZE; |
| 170 | segment->copied = 0; |
| 171 | segment->sg = NULL; |
| 172 | segment->hash = NULL; |
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 | /** |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 176 | * iscsi_tcp_segment_done - check whether the segment is complete |
| 177 | * @segment: iscsi segment to check |
| 178 | * @recv: set to one of this is called from the recv path |
| 179 | * @copied: number of bytes copied |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 180 | * |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 181 | * Check if we're done receiving this segment. If the receive |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 182 | * buffer is full but we expect more data, move on to the |
| 183 | * next entry in the scatterlist. |
| 184 | * |
| 185 | * If the amount of data we received isn't a multiple of 4, |
| 186 | * we will transparently receive the pad bytes, too. |
| 187 | * |
| 188 | * This function must be re-entrant. |
| 189 | */ |
| 190 | static inline int |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 191 | iscsi_tcp_segment_done(struct iscsi_segment *segment, int recv, unsigned copied) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 192 | { |
| 193 | static unsigned char padbuf[ISCSI_PAD_LEN]; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 194 | struct scatterlist sg; |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 195 | unsigned int pad; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 196 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 197 | debug_tcp("copied %u %u size %u %s\n", segment->copied, copied, |
| 198 | segment->size, recv ? "recv" : "xmit"); |
| 199 | if (segment->hash && copied) { |
| 200 | /* |
| 201 | * If a segment is kmapd we must unmap it before sending |
| 202 | * to the crypto layer since that will try to kmap it again. |
| 203 | */ |
| 204 | iscsi_tcp_segment_unmap(segment); |
| 205 | |
| 206 | if (!segment->data) { |
| 207 | sg_init_table(&sg, 1); |
| 208 | sg_set_page(&sg, sg_page(segment->sg), copied, |
| 209 | segment->copied + segment->sg_offset + |
| 210 | segment->sg->offset); |
| 211 | } else |
| 212 | sg_init_one(&sg, segment->data + segment->copied, |
| 213 | copied); |
| 214 | crypto_hash_update(segment->hash, &sg, copied); |
| 215 | } |
| 216 | |
| 217 | segment->copied += copied; |
| 218 | if (segment->copied < segment->size) { |
| 219 | iscsi_tcp_segment_map(segment, recv); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 220 | return 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 223 | segment->total_copied += segment->copied; |
| 224 | segment->copied = 0; |
| 225 | segment->size = 0; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 226 | |
| 227 | /* Unmap the current scatterlist page, if there is one. */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 228 | iscsi_tcp_segment_unmap(segment); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 229 | |
| 230 | /* Do we have more scatterlist entries? */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 231 | debug_tcp("total copied %u total size %u\n", segment->total_copied, |
| 232 | segment->total_size); |
| 233 | if (segment->total_copied < segment->total_size) { |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 234 | /* Proceed to the next entry in the scatterlist. */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 235 | iscsi_tcp_segment_init_sg(segment, sg_next(segment->sg), |
| 236 | 0); |
| 237 | iscsi_tcp_segment_map(segment, recv); |
| 238 | BUG_ON(segment->size == 0); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | /* Do we need to handle padding? */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 243 | pad = iscsi_padding(segment->total_copied); |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 244 | if (pad != 0) { |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 245 | debug_tcp("consume %d pad bytes\n", pad); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 246 | segment->total_size += pad; |
| 247 | segment->size = pad; |
| 248 | segment->data = padbuf; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | /* |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 253 | * Set us up for transferring the data digest. hdr digest |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 254 | * is completely handled in hdr done function. |
| 255 | */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 256 | if (segment->hash) { |
| 257 | crypto_hash_final(segment->hash, segment->digest); |
| 258 | iscsi_tcp_segment_splice_digest(segment, |
| 259 | recv ? segment->recv_digest : segment->digest); |
| 260 | return 0; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | return 1; |
| 264 | } |
| 265 | |
| 266 | /** |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 267 | * iscsi_tcp_xmit_segment - transmit segment |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 268 | * @tcp_conn: the iSCSI TCP connection |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 269 | * @segment: the buffer to transmnit |
| 270 | * |
| 271 | * This function transmits as much of the buffer as |
| 272 | * the network layer will accept, and returns the number of |
| 273 | * bytes transmitted. |
| 274 | * |
| 275 | * If CRC hashing is enabled, the function will compute the |
| 276 | * hash as it goes. When the entire segment has been transmitted, |
| 277 | * it will retrieve the hash value and send it as well. |
| 278 | */ |
| 279 | static int |
| 280 | iscsi_tcp_xmit_segment(struct iscsi_tcp_conn *tcp_conn, |
| 281 | struct iscsi_segment *segment) |
| 282 | { |
| 283 | struct socket *sk = tcp_conn->sock; |
| 284 | unsigned int copied = 0; |
| 285 | int r = 0; |
| 286 | |
| 287 | while (!iscsi_tcp_segment_done(segment, 0, r)) { |
| 288 | struct scatterlist *sg; |
| 289 | unsigned int offset, copy; |
| 290 | int flags = 0; |
| 291 | |
| 292 | r = 0; |
| 293 | offset = segment->copied; |
| 294 | copy = segment->size - offset; |
| 295 | |
| 296 | if (segment->total_copied + segment->size < segment->total_size) |
| 297 | flags |= MSG_MORE; |
| 298 | |
| 299 | /* Use sendpage if we can; else fall back to sendmsg */ |
| 300 | if (!segment->data) { |
| 301 | sg = segment->sg; |
| 302 | offset += segment->sg_offset + sg->offset; |
| 303 | r = tcp_conn->sendpage(sk, sg_page(sg), offset, copy, |
| 304 | flags); |
| 305 | } else { |
| 306 | struct msghdr msg = { .msg_flags = flags }; |
| 307 | struct kvec iov = { |
| 308 | .iov_base = segment->data + offset, |
| 309 | .iov_len = copy |
| 310 | }; |
| 311 | |
| 312 | r = kernel_sendmsg(sk, &msg, &iov, 1, copy); |
| 313 | } |
| 314 | |
| 315 | if (r < 0) { |
| 316 | iscsi_tcp_segment_unmap(segment); |
| 317 | if (copied || r == -EAGAIN) |
| 318 | break; |
| 319 | return r; |
| 320 | } |
| 321 | copied += r; |
| 322 | } |
| 323 | return copied; |
| 324 | } |
| 325 | |
| 326 | /** |
| 327 | * iscsi_tcp_segment_recv - copy data to segment |
| 328 | * @tcp_conn: the iSCSI TCP connection |
| 329 | * @segment: the buffer to copy to |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 330 | * @ptr: data pointer |
| 331 | * @len: amount of data available |
| 332 | * |
| 333 | * This function copies up to @len bytes to the |
| 334 | * given buffer, and returns the number of bytes |
| 335 | * consumed, which can actually be less than @len. |
| 336 | * |
| 337 | * If hash digest is enabled, the function will update the |
| 338 | * hash while copying. |
| 339 | * Combining these two operations doesn't buy us a lot (yet), |
| 340 | * but in the future we could implement combined copy+crc, |
| 341 | * just way we do for network layer checksums. |
| 342 | */ |
| 343 | static int |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 344 | iscsi_tcp_segment_recv(struct iscsi_tcp_conn *tcp_conn, |
| 345 | struct iscsi_segment *segment, const void *ptr, |
| 346 | unsigned int len) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 347 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 348 | unsigned int copy = 0, copied = 0; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 349 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 350 | while (!iscsi_tcp_segment_done(segment, 1, copy)) { |
| 351 | if (copied == len) { |
| 352 | debug_tcp("iscsi_tcp_segment_recv copied %d bytes\n", |
| 353 | len); |
| 354 | break; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 355 | } |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 356 | |
| 357 | copy = min(len - copied, segment->size - segment->copied); |
| 358 | debug_tcp("iscsi_tcp_segment_recv copying %d\n", copy); |
| 359 | memcpy(segment->data + segment->copied, ptr + copied, copy); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 360 | copied += copy; |
| 361 | } |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 362 | return copied; |
| 363 | } |
| 364 | |
| 365 | static inline void |
| 366 | iscsi_tcp_dgst_header(struct hash_desc *hash, const void *hdr, size_t hdrlen, |
| 367 | unsigned char digest[ISCSI_DIGEST_SIZE]) |
| 368 | { |
| 369 | struct scatterlist sg; |
| 370 | |
| 371 | sg_init_one(&sg, hdr, hdrlen); |
| 372 | crypto_hash_digest(hash, &sg, hdrlen, digest); |
| 373 | } |
| 374 | |
| 375 | static inline int |
| 376 | iscsi_tcp_dgst_verify(struct iscsi_tcp_conn *tcp_conn, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 377 | struct iscsi_segment *segment) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 378 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 379 | if (!segment->digest_len) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 380 | return 1; |
| 381 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 382 | if (memcmp(segment->recv_digest, segment->digest, |
| 383 | segment->digest_len)) { |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 384 | debug_scsi("digest mismatch\n"); |
| 385 | return 0; |
| 386 | } |
| 387 | |
| 388 | return 1; |
| 389 | } |
| 390 | |
| 391 | /* |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 392 | * Helper function to set up segment buffer |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 393 | */ |
| 394 | static inline void |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 395 | __iscsi_segment_init(struct iscsi_segment *segment, size_t size, |
| 396 | iscsi_segment_done_fn_t *done, struct hash_desc *hash) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 397 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 398 | memset(segment, 0, sizeof(*segment)); |
| 399 | segment->total_size = size; |
| 400 | segment->done = done; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 401 | |
| 402 | if (hash) { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 403 | segment->hash = hash; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 404 | crypto_hash_init(hash); |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | static inline void |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 409 | iscsi_segment_init_linear(struct iscsi_segment *segment, void *data, |
| 410 | size_t size, iscsi_segment_done_fn_t *done, |
| 411 | struct hash_desc *hash) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 412 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 413 | __iscsi_segment_init(segment, size, done, hash); |
| 414 | segment->data = data; |
| 415 | segment->size = size; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | static inline int |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 419 | iscsi_segment_seek_sg(struct iscsi_segment *segment, |
| 420 | struct scatterlist *sg_list, unsigned int sg_count, |
| 421 | unsigned int offset, size_t size, |
| 422 | iscsi_segment_done_fn_t *done, struct hash_desc *hash) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 423 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 424 | struct scatterlist *sg; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 425 | unsigned int i; |
| 426 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 427 | debug_scsi("iscsi_segment_seek_sg offset %u size %llu\n", |
| 428 | offset, size); |
| 429 | __iscsi_segment_init(segment, size, done, hash); |
| 430 | for_each_sg(sg_list, sg, sg_count, i) { |
| 431 | debug_scsi("sg %d, len %u offset %u\n", i, sg->length, |
| 432 | sg->offset); |
| 433 | if (offset < sg->length) { |
| 434 | iscsi_tcp_segment_init_sg(segment, sg, offset); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 435 | return 0; |
| 436 | } |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 437 | offset -= sg->length; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | return ISCSI_ERR_DATA_OFFSET; |
| 441 | } |
| 442 | |
| 443 | /** |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 444 | * iscsi_tcp_hdr_recv_prep - prep segment for hdr reception |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 445 | * @tcp_conn: iscsi connection to prep for |
| 446 | * |
| 447 | * This function always passes NULL for the hash argument, because when this |
| 448 | * function is called we do not yet know the final size of the header and want |
| 449 | * to delay the digest processing until we know that. |
| 450 | */ |
| 451 | static void |
| 452 | iscsi_tcp_hdr_recv_prep(struct iscsi_tcp_conn *tcp_conn) |
| 453 | { |
| 454 | debug_tcp("iscsi_tcp_hdr_recv_prep(%p%s)\n", tcp_conn, |
| 455 | tcp_conn->iscsi_conn->hdrdgst_en ? ", digest enabled" : ""); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 456 | iscsi_segment_init_linear(&tcp_conn->in.segment, |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 457 | tcp_conn->in.hdr_buf, sizeof(struct iscsi_hdr), |
| 458 | iscsi_tcp_hdr_recv_done, NULL); |
| 459 | } |
| 460 | |
| 461 | /* |
| 462 | * Handle incoming reply to any other type of command |
| 463 | */ |
| 464 | static int |
| 465 | iscsi_tcp_data_recv_done(struct iscsi_tcp_conn *tcp_conn, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 466 | struct iscsi_segment *segment) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 467 | { |
| 468 | struct iscsi_conn *conn = tcp_conn->iscsi_conn; |
| 469 | int rc = 0; |
| 470 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 471 | if (!iscsi_tcp_dgst_verify(tcp_conn, segment)) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 472 | return ISCSI_ERR_DATA_DGST; |
| 473 | |
| 474 | rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, |
| 475 | conn->data, tcp_conn->in.datalen); |
| 476 | if (rc) |
| 477 | return rc; |
| 478 | |
| 479 | iscsi_tcp_hdr_recv_prep(tcp_conn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 480 | return 0; |
| 481 | } |
| 482 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 483 | static void |
| 484 | iscsi_tcp_data_recv_prep(struct iscsi_tcp_conn *tcp_conn) |
| 485 | { |
| 486 | struct iscsi_conn *conn = tcp_conn->iscsi_conn; |
| 487 | struct hash_desc *rx_hash = NULL; |
| 488 | |
| 489 | if (conn->datadgst_en) |
| 490 | rx_hash = &tcp_conn->rx_hash; |
| 491 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 492 | iscsi_segment_init_linear(&tcp_conn->in.segment, |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 493 | conn->data, tcp_conn->in.datalen, |
| 494 | iscsi_tcp_data_recv_done, rx_hash); |
| 495 | } |
| 496 | |
Mike Christie | 30a6c65 | 2006-04-06 21:13:39 -0500 | [diff] [blame] | 497 | /* |
| 498 | * must be called with session lock |
| 499 | */ |
| 500 | static void |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 501 | iscsi_tcp_cleanup_task(struct iscsi_conn *conn, struct iscsi_task *task) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 502 | { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 503 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
Mike Christie | b6c395e | 2006-07-24 15:47:15 -0500 | [diff] [blame] | 504 | struct iscsi_r2t_info *r2t; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 505 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 506 | /* nothing to do for mgmt tasks */ |
| 507 | if (!task->sc) |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 508 | return; |
| 509 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 510 | /* flush task's r2t queues */ |
| 511 | while (__kfifo_get(tcp_task->r2tqueue, (void*)&r2t, sizeof(void*))) { |
| 512 | __kfifo_put(tcp_task->r2tpool.queue, (void*)&r2t, |
Mike Christie | b6c395e | 2006-07-24 15:47:15 -0500 | [diff] [blame] | 513 | sizeof(void*)); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 514 | debug_scsi("iscsi_tcp_cleanup_task pending r2t dropped\n"); |
Mike Christie | b6c395e | 2006-07-24 15:47:15 -0500 | [diff] [blame] | 515 | } |
| 516 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 517 | r2t = tcp_task->r2t; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 518 | if (r2t != NULL) { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 519 | __kfifo_put(tcp_task->r2tpool.queue, (void*)&r2t, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 520 | sizeof(void*)); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 521 | tcp_task->r2t = NULL; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 522 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | /** |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 526 | * iscsi_data_in - SCSI Data-In Response processing |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 527 | * @conn: iscsi connection |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 528 | * @task: scsi command task |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 529 | **/ |
| 530 | static int |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 531 | iscsi_data_in(struct iscsi_conn *conn, struct iscsi_task *task) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 532 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 533 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 534 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 535 | struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 536 | int datasn = be32_to_cpu(rhdr->datasn); |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 537 | unsigned total_in_length = scsi_in(task->sc)->length; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 538 | |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 539 | iscsi_update_cmdsn(conn->session, (struct iscsi_nopin*)rhdr); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 540 | if (tcp_conn->in.datalen == 0) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 541 | return 0; |
| 542 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 543 | if (tcp_task->exp_datasn != datasn) { |
| 544 | debug_tcp("%s: task->exp_datasn(%d) != rhdr->datasn(%d)\n", |
Harvey Harrison | 3a12b19 | 2008-05-21 15:54:19 -0500 | [diff] [blame] | 545 | __func__, tcp_task->exp_datasn, datasn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 546 | return ISCSI_ERR_DATASN; |
Mike Christie | d473cc7 | 2007-05-30 12:57:14 -0500 | [diff] [blame] | 547 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 548 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 549 | tcp_task->exp_datasn++; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 550 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 551 | tcp_task->data_offset = be32_to_cpu(rhdr->offset); |
| 552 | if (tcp_task->data_offset + tcp_conn->in.datalen > total_in_length) { |
Mike Christie | 857ae0b | 2007-05-30 12:57:15 -0500 | [diff] [blame] | 553 | debug_tcp("%s: data_offset(%d) + data_len(%d) > total_length_in(%d)\n", |
Harvey Harrison | 3a12b19 | 2008-05-21 15:54:19 -0500 | [diff] [blame] | 554 | __func__, tcp_task->data_offset, |
Boaz Harrosh | 94795b6 | 2008-04-18 10:11:53 -0500 | [diff] [blame] | 555 | tcp_conn->in.datalen, total_in_length); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 556 | return ISCSI_ERR_DATA_OFFSET; |
Mike Christie | 857ae0b | 2007-05-30 12:57:15 -0500 | [diff] [blame] | 557 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 558 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 559 | conn->datain_pdus_cnt++; |
| 560 | return 0; |
| 561 | } |
| 562 | |
| 563 | /** |
| 564 | * iscsi_solicit_data_init - initialize first Data-Out |
| 565 | * @conn: iscsi connection |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 566 | * @task: scsi command task |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 567 | * @r2t: R2T info |
| 568 | * |
| 569 | * Notes: |
| 570 | * Initialize first Data-Out within this R2T sequence and finds |
| 571 | * proper data_offset within this SCSI command. |
| 572 | * |
| 573 | * This function is called with connection lock taken. |
| 574 | **/ |
| 575 | static void |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 576 | iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_task *task, |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 577 | struct iscsi_r2t_info *r2t) |
| 578 | { |
| 579 | struct iscsi_data *hdr; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 580 | |
Mike Christie | ffbfe92 | 2006-05-18 20:31:36 -0500 | [diff] [blame] | 581 | hdr = &r2t->dtask.hdr; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 582 | memset(hdr, 0, sizeof(struct iscsi_data)); |
| 583 | hdr->ttt = r2t->ttt; |
| 584 | hdr->datasn = cpu_to_be32(r2t->solicit_datasn); |
| 585 | r2t->solicit_datasn++; |
| 586 | hdr->opcode = ISCSI_OP_SCSI_DATA_OUT; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 587 | memcpy(hdr->lun, task->hdr->lun, sizeof(hdr->lun)); |
| 588 | hdr->itt = task->hdr->itt; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 589 | hdr->exp_statsn = r2t->exp_statsn; |
| 590 | hdr->offset = cpu_to_be32(r2t->data_offset); |
| 591 | if (r2t->data_length > conn->max_xmit_dlength) { |
| 592 | hton24(hdr->dlength, conn->max_xmit_dlength); |
| 593 | r2t->data_count = conn->max_xmit_dlength; |
| 594 | hdr->flags = 0; |
| 595 | } else { |
| 596 | hton24(hdr->dlength, r2t->data_length); |
| 597 | r2t->data_count = r2t->data_length; |
| 598 | hdr->flags = ISCSI_FLAG_CMD_FINAL; |
| 599 | } |
| 600 | conn->dataout_pdus_cnt++; |
| 601 | |
| 602 | r2t->sent = 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | /** |
| 606 | * iscsi_r2t_rsp - iSCSI R2T Response processing |
| 607 | * @conn: iscsi connection |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 608 | * @task: scsi command task |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 609 | **/ |
| 610 | static int |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 611 | iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_task *task) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 612 | { |
| 613 | struct iscsi_r2t_info *r2t; |
| 614 | struct iscsi_session *session = conn->session; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 615 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 616 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 617 | struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 618 | int r2tsn = be32_to_cpu(rhdr->r2tsn); |
| 619 | int rc; |
| 620 | |
Mike Christie | 98a9416 | 2006-08-31 18:09:26 -0400 | [diff] [blame] | 621 | if (tcp_conn->in.datalen) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 622 | iscsi_conn_printk(KERN_ERR, conn, |
| 623 | "invalid R2t with datalen %d\n", |
| 624 | tcp_conn->in.datalen); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 625 | return ISCSI_ERR_DATALEN; |
Mike Christie | 98a9416 | 2006-08-31 18:09:26 -0400 | [diff] [blame] | 626 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 627 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 628 | if (tcp_task->exp_datasn != r2tsn){ |
| 629 | debug_tcp("%s: task->exp_datasn(%d) != rhdr->r2tsn(%d)\n", |
Harvey Harrison | 3a12b19 | 2008-05-21 15:54:19 -0500 | [diff] [blame] | 630 | __func__, tcp_task->exp_datasn, r2tsn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 631 | return ISCSI_ERR_R2TSN; |
Mike Christie | d473cc7 | 2007-05-30 12:57:14 -0500 | [diff] [blame] | 632 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 633 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 634 | /* fill-in new R2T associated with the task */ |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 635 | iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr); |
| 636 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 637 | if (!task->sc || session->state != ISCSI_STATE_LOGGED_IN) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 638 | iscsi_conn_printk(KERN_INFO, conn, |
| 639 | "dropping R2T itt %d in recovery.\n", |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 640 | task->itt); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 641 | return 0; |
| 642 | } |
Mike Christie | b6c395e | 2006-07-24 15:47:15 -0500 | [diff] [blame] | 643 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 644 | rc = __kfifo_get(tcp_task->r2tpool.queue, (void*)&r2t, sizeof(void*)); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 645 | BUG_ON(!rc); |
| 646 | |
| 647 | r2t->exp_statsn = rhdr->statsn; |
| 648 | r2t->data_length = be32_to_cpu(rhdr->data_length); |
Mike Christie | 98a9416 | 2006-08-31 18:09:26 -0400 | [diff] [blame] | 649 | if (r2t->data_length == 0) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 650 | iscsi_conn_printk(KERN_ERR, conn, |
| 651 | "invalid R2T with zero data len\n"); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 652 | __kfifo_put(tcp_task->r2tpool.queue, (void*)&r2t, |
Olaf Kirch | 03766a1 | 2007-12-13 12:43:36 -0600 | [diff] [blame] | 653 | sizeof(void*)); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 654 | return ISCSI_ERR_DATALEN; |
| 655 | } |
| 656 | |
Mike Christie | 98a9416 | 2006-08-31 18:09:26 -0400 | [diff] [blame] | 657 | if (r2t->data_length > session->max_burst) |
| 658 | debug_scsi("invalid R2T with data len %u and max burst %u." |
| 659 | "Attempting to execute request.\n", |
| 660 | r2t->data_length, session->max_burst); |
| 661 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 662 | r2t->data_offset = be32_to_cpu(rhdr->data_offset); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 663 | if (r2t->data_offset + r2t->data_length > scsi_out(task->sc)->length) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 664 | iscsi_conn_printk(KERN_ERR, conn, |
| 665 | "invalid R2T with data len %u at offset %u " |
| 666 | "and total length %d\n", r2t->data_length, |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 667 | r2t->data_offset, scsi_out(task->sc)->length); |
| 668 | __kfifo_put(tcp_task->r2tpool.queue, (void*)&r2t, |
Olaf Kirch | 03766a1 | 2007-12-13 12:43:36 -0600 | [diff] [blame] | 669 | sizeof(void*)); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 670 | return ISCSI_ERR_DATALEN; |
| 671 | } |
| 672 | |
| 673 | r2t->ttt = rhdr->ttt; /* no flip */ |
| 674 | r2t->solicit_datasn = 0; |
| 675 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 676 | iscsi_solicit_data_init(conn, task, r2t); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 677 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 678 | tcp_task->exp_datasn = r2tsn + 1; |
| 679 | __kfifo_put(tcp_task->r2tqueue, (void*)&r2t, sizeof(void*)); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 680 | conn->r2t_pdus_cnt++; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 681 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 682 | iscsi_requeue_task(task); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 683 | return 0; |
| 684 | } |
| 685 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 686 | /* |
| 687 | * Handle incoming reply to DataIn command |
| 688 | */ |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 689 | static int |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 690 | iscsi_tcp_process_data_in(struct iscsi_tcp_conn *tcp_conn, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 691 | struct iscsi_segment *segment) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 692 | { |
| 693 | struct iscsi_conn *conn = tcp_conn->iscsi_conn; |
| 694 | struct iscsi_hdr *hdr = tcp_conn->in.hdr; |
| 695 | int rc; |
| 696 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 697 | if (!iscsi_tcp_dgst_verify(tcp_conn, segment)) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 698 | return ISCSI_ERR_DATA_DGST; |
| 699 | |
| 700 | /* check for non-exceptional status */ |
| 701 | if (hdr->flags & ISCSI_FLAG_DATA_STATUS) { |
| 702 | rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0); |
| 703 | if (rc) |
| 704 | return rc; |
| 705 | } |
| 706 | |
| 707 | iscsi_tcp_hdr_recv_prep(tcp_conn); |
| 708 | return 0; |
| 709 | } |
| 710 | |
| 711 | /** |
| 712 | * iscsi_tcp_hdr_dissect - process PDU header |
| 713 | * @conn: iSCSI connection |
| 714 | * @hdr: PDU header |
| 715 | * |
| 716 | * This function analyzes the header of the PDU received, |
| 717 | * and performs several sanity checks. If the PDU is accompanied |
| 718 | * by data, the receive buffer is set up to copy the incoming data |
| 719 | * to the correct location. |
| 720 | */ |
| 721 | static int |
| 722 | iscsi_tcp_hdr_dissect(struct iscsi_conn *conn, struct iscsi_hdr *hdr) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 723 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 724 | int rc = 0, opcode, ahslen; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 725 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 726 | struct iscsi_task *task; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 727 | |
| 728 | /* verify PDU length */ |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 729 | tcp_conn->in.datalen = ntoh24(hdr->dlength); |
| 730 | if (tcp_conn->in.datalen > conn->max_recv_dlength) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 731 | iscsi_conn_printk(KERN_ERR, conn, |
| 732 | "iscsi_tcp: datalen %d > %d\n", |
| 733 | tcp_conn->in.datalen, conn->max_recv_dlength); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 734 | return ISCSI_ERR_DATALEN; |
| 735 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 736 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 737 | /* Additional header segments. So far, we don't |
| 738 | * process additional headers. |
| 739 | */ |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 740 | ahslen = hdr->hlength << 2; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 741 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 742 | opcode = hdr->opcode & ISCSI_OPCODE_MASK; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 743 | /* verify itt (itt encoding: age+cid+itt) */ |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 744 | rc = iscsi_verify_itt(conn, hdr->itt); |
Mike Christie | 7a53dc5 | 2007-12-13 12:43:37 -0600 | [diff] [blame] | 745 | if (rc) |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 746 | return rc; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 747 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 748 | debug_tcp("opcode 0x%x ahslen %d datalen %d\n", |
| 749 | opcode, ahslen, tcp_conn->in.datalen); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 750 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 751 | switch(opcode) { |
| 752 | case ISCSI_OP_SCSI_DATA_IN: |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 753 | spin_lock(&conn->session->lock); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 754 | task = iscsi_itt_to_ctask(conn, hdr->itt); |
| 755 | if (!task) |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 756 | rc = ISCSI_ERR_BAD_ITT; |
| 757 | else |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 758 | rc = iscsi_data_in(conn, task); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 759 | if (rc) { |
| 760 | spin_unlock(&conn->session->lock); |
| 761 | break; |
| 762 | } |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 763 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 764 | if (tcp_conn->in.datalen) { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 765 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 766 | struct hash_desc *rx_hash = NULL; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 767 | struct scsi_data_buffer *sdb = scsi_in(task->sc); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 768 | |
| 769 | /* |
| 770 | * Setup copy of Data-In into the Scsi_Cmnd |
| 771 | * Scatterlist case: |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 772 | * We set up the iscsi_segment to point to the next |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 773 | * scatterlist entry to copy to. As we go along, |
| 774 | * we move on to the next scatterlist entry and |
| 775 | * update the digest per-entry. |
| 776 | */ |
| 777 | if (conn->datadgst_en) |
| 778 | rx_hash = &tcp_conn->rx_hash; |
| 779 | |
| 780 | debug_tcp("iscsi_tcp_begin_data_in(%p, offset=%d, " |
| 781 | "datalen=%d)\n", tcp_conn, |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 782 | tcp_task->data_offset, |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 783 | tcp_conn->in.datalen); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 784 | rc = iscsi_segment_seek_sg(&tcp_conn->in.segment, |
| 785 | sdb->table.sgl, |
| 786 | sdb->table.nents, |
| 787 | tcp_task->data_offset, |
| 788 | tcp_conn->in.datalen, |
| 789 | iscsi_tcp_process_data_in, |
| 790 | rx_hash); |
| 791 | spin_unlock(&conn->session->lock); |
| 792 | return rc; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 793 | } |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 794 | rc = __iscsi_complete_pdu(conn, hdr, NULL, 0); |
| 795 | spin_unlock(&conn->session->lock); |
| 796 | break; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 797 | case ISCSI_OP_SCSI_CMD_RSP: |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 798 | if (tcp_conn->in.datalen) { |
| 799 | iscsi_tcp_data_recv_prep(tcp_conn); |
| 800 | return 0; |
| 801 | } |
| 802 | rc = iscsi_complete_pdu(conn, hdr, NULL, 0); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 803 | break; |
| 804 | case ISCSI_OP_R2T: |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 805 | spin_lock(&conn->session->lock); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 806 | task = iscsi_itt_to_ctask(conn, hdr->itt); |
| 807 | if (!task) |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 808 | rc = ISCSI_ERR_BAD_ITT; |
| 809 | else if (ahslen) |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 810 | rc = ISCSI_ERR_AHSLEN; |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 811 | else if (task->sc->sc_data_direction == DMA_TO_DEVICE) |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 812 | rc = iscsi_r2t_rsp(conn, task); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 813 | else |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 814 | rc = ISCSI_ERR_PROTO; |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 815 | spin_unlock(&conn->session->lock); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 816 | break; |
| 817 | case ISCSI_OP_LOGIN_RSP: |
| 818 | case ISCSI_OP_TEXT_RSP: |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 819 | case ISCSI_OP_REJECT: |
| 820 | case ISCSI_OP_ASYNC_EVENT: |
Mike Christie | c8dc1e5 | 2006-07-24 15:47:39 -0500 | [diff] [blame] | 821 | /* |
| 822 | * It is possible that we could get a PDU with a buffer larger |
| 823 | * than 8K, but there are no targets that currently do this. |
| 824 | * For now we fail until we find a vendor that needs it |
| 825 | */ |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 826 | if (ISCSI_DEF_MAX_RECV_SEG_LEN < tcp_conn->in.datalen) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 827 | iscsi_conn_printk(KERN_ERR, conn, |
| 828 | "iscsi_tcp: received buffer of " |
| 829 | "len %u but conn buffer is only %u " |
| 830 | "(opcode %0x)\n", |
| 831 | tcp_conn->in.datalen, |
| 832 | ISCSI_DEF_MAX_RECV_SEG_LEN, opcode); |
Mike Christie | c8dc1e5 | 2006-07-24 15:47:39 -0500 | [diff] [blame] | 833 | rc = ISCSI_ERR_PROTO; |
| 834 | break; |
| 835 | } |
| 836 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 837 | /* If there's data coming in with the response, |
| 838 | * receive it to the connection's buffer. |
| 839 | */ |
| 840 | if (tcp_conn->in.datalen) { |
| 841 | iscsi_tcp_data_recv_prep(tcp_conn); |
| 842 | return 0; |
| 843 | } |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 844 | /* fall through */ |
Mike Christie | c8dc1e5 | 2006-07-24 15:47:39 -0500 | [diff] [blame] | 845 | case ISCSI_OP_LOGOUT_RSP: |
| 846 | case ISCSI_OP_NOOP_IN: |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 847 | case ISCSI_OP_SCSI_TMFUNC_RSP: |
| 848 | rc = iscsi_complete_pdu(conn, hdr, NULL, 0); |
| 849 | break; |
| 850 | default: |
| 851 | rc = ISCSI_ERR_BAD_OPCODE; |
| 852 | break; |
| 853 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 854 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 855 | if (rc == 0) { |
| 856 | /* Anything that comes with data should have |
| 857 | * been handled above. */ |
| 858 | if (tcp_conn->in.datalen) |
| 859 | return ISCSI_ERR_PROTO; |
| 860 | iscsi_tcp_hdr_recv_prep(tcp_conn); |
| 861 | } |
| 862 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 863 | return rc; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 864 | } |
| 865 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 866 | /** |
| 867 | * iscsi_tcp_hdr_recv_done - process PDU header |
| 868 | * |
| 869 | * This is the callback invoked when the PDU header has |
| 870 | * been received. If the header is followed by additional |
| 871 | * header segments, we go back for more data. |
| 872 | */ |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 873 | static int |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 874 | iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 875 | struct iscsi_segment *segment) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 876 | { |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 877 | struct iscsi_conn *conn = tcp_conn->iscsi_conn; |
| 878 | struct iscsi_hdr *hdr; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 879 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 880 | /* Check if there are additional header segments |
| 881 | * *prior* to computing the digest, because we |
| 882 | * may need to go back to the caller for more. |
| 883 | */ |
| 884 | hdr = (struct iscsi_hdr *) tcp_conn->in.hdr_buf; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 885 | if (segment->copied == sizeof(struct iscsi_hdr) && hdr->hlength) { |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 886 | /* Bump the header length - the caller will |
| 887 | * just loop around and get the AHS for us, and |
| 888 | * call again. */ |
| 889 | unsigned int ahslen = hdr->hlength << 2; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 890 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 891 | /* Make sure we don't overflow */ |
| 892 | if (sizeof(*hdr) + ahslen > sizeof(tcp_conn->in.hdr_buf)) |
| 893 | return ISCSI_ERR_AHSLEN; |
| 894 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 895 | segment->total_size += ahslen; |
| 896 | segment->size += ahslen; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 897 | return 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 898 | } |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 899 | |
| 900 | /* We're done processing the header. See if we're doing |
| 901 | * header digests; if so, set up the recv_digest buffer |
| 902 | * and go back for more. */ |
| 903 | if (conn->hdrdgst_en) { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 904 | if (segment->digest_len == 0) { |
| 905 | iscsi_tcp_segment_splice_digest(segment, |
| 906 | segment->recv_digest); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 907 | return 0; |
| 908 | } |
| 909 | iscsi_tcp_dgst_header(&tcp_conn->rx_hash, hdr, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 910 | segment->total_copied - ISCSI_DIGEST_SIZE, |
| 911 | segment->digest); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 912 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 913 | if (!iscsi_tcp_dgst_verify(tcp_conn, segment)) |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 914 | return ISCSI_ERR_HDR_DGST; |
| 915 | } |
| 916 | |
| 917 | tcp_conn->in.hdr = hdr; |
| 918 | return iscsi_tcp_hdr_dissect(conn, hdr); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | /** |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 922 | * iscsi_tcp_recv - TCP receive in sendfile fashion |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 923 | * @rd_desc: read descriptor |
| 924 | * @skb: socket buffer |
| 925 | * @offset: offset in skb |
| 926 | * @len: skb->len - offset |
| 927 | **/ |
| 928 | static int |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 929 | iscsi_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, |
| 930 | unsigned int offset, size_t len) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 931 | { |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 932 | struct iscsi_conn *conn = rd_desc->arg.data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 933 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 934 | struct iscsi_segment *segment = &tcp_conn->in.segment; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 935 | struct skb_seq_state seq; |
| 936 | unsigned int consumed = 0; |
| 937 | int rc = 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 938 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 939 | debug_tcp("in %d bytes\n", skb->len - offset); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 940 | |
| 941 | if (unlikely(conn->suspend_rx)) { |
| 942 | debug_tcp("conn %d Rx suspended!\n", conn->id); |
| 943 | return 0; |
| 944 | } |
| 945 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 946 | skb_prepare_seq_read(skb, offset, skb->len, &seq); |
| 947 | while (1) { |
| 948 | unsigned int avail; |
| 949 | const u8 *ptr; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 950 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 951 | avail = skb_seq_read(consumed, &ptr, &seq); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 952 | if (avail == 0) { |
| 953 | debug_tcp("no more data avail. Consumed %d\n", |
| 954 | consumed); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 955 | break; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 956 | } |
| 957 | BUG_ON(segment->copied >= segment->size); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 958 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 959 | debug_tcp("skb %p ptr=%p avail=%u\n", skb, ptr, avail); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 960 | rc = iscsi_tcp_segment_recv(tcp_conn, segment, ptr, avail); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 961 | BUG_ON(rc == 0); |
| 962 | consumed += rc; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 963 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 964 | if (segment->total_copied >= segment->total_size) { |
| 965 | debug_tcp("segment done\n"); |
| 966 | rc = segment->done(tcp_conn, segment); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 967 | if (rc != 0) { |
| 968 | skb_abort_seq_read(&seq); |
| 969 | goto error; |
Mike Christie | dbdb016 | 2007-05-30 12:57:20 -0500 | [diff] [blame] | 970 | } |
Mike Christie | dbdb016 | 2007-05-30 12:57:20 -0500 | [diff] [blame] | 971 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 972 | /* The done() functions sets up the |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 973 | * next segment. */ |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 974 | } |
| 975 | } |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 976 | skb_abort_seq_read(&seq); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 977 | conn->rxdata_octets += consumed; |
| 978 | return consumed; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 979 | |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 980 | error: |
| 981 | debug_tcp("Error receiving PDU, errno=%d\n", rc); |
| 982 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
| 983 | return 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | static void |
| 987 | iscsi_tcp_data_ready(struct sock *sk, int flag) |
| 988 | { |
| 989 | struct iscsi_conn *conn = sk->sk_user_data; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 990 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 991 | read_descriptor_t rd_desc; |
| 992 | |
| 993 | read_lock(&sk->sk_callback_lock); |
| 994 | |
Mike Christie | 665b44a | 2006-05-02 19:46:49 -0500 | [diff] [blame] | 995 | /* |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 996 | * Use rd_desc to pass 'conn' to iscsi_tcp_recv. |
Mike Christie | 665b44a | 2006-05-02 19:46:49 -0500 | [diff] [blame] | 997 | * We set count to 1 because we want the network layer to |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 998 | * hand us all the skbs that are available. iscsi_tcp_recv |
Mike Christie | 665b44a | 2006-05-02 19:46:49 -0500 | [diff] [blame] | 999 | * handled pdus that cross buffers or pdus that still need data. |
| 1000 | */ |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1001 | rd_desc.arg.data = conn; |
Mike Christie | 665b44a | 2006-05-02 19:46:49 -0500 | [diff] [blame] | 1002 | rd_desc.count = 1; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 1003 | tcp_read_sock(sk, &rd_desc, iscsi_tcp_recv); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1004 | |
| 1005 | read_unlock(&sk->sk_callback_lock); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 1006 | |
| 1007 | /* If we had to (atomically) map a highmem page, |
| 1008 | * unmap it now. */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1009 | iscsi_tcp_segment_unmap(&tcp_conn->in.segment); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1010 | } |
| 1011 | |
| 1012 | static void |
| 1013 | iscsi_tcp_state_change(struct sock *sk) |
| 1014 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1015 | struct iscsi_tcp_conn *tcp_conn; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1016 | struct iscsi_conn *conn; |
| 1017 | struct iscsi_session *session; |
| 1018 | void (*old_state_change)(struct sock *); |
| 1019 | |
| 1020 | read_lock(&sk->sk_callback_lock); |
| 1021 | |
| 1022 | conn = (struct iscsi_conn*)sk->sk_user_data; |
| 1023 | session = conn->session; |
| 1024 | |
Mike Christie | e627399 | 2005-11-29 23:12:49 -0600 | [diff] [blame] | 1025 | if ((sk->sk_state == TCP_CLOSE_WAIT || |
| 1026 | sk->sk_state == TCP_CLOSE) && |
| 1027 | !atomic_read(&sk->sk_rmem_alloc)) { |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1028 | debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n"); |
| 1029 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
| 1030 | } |
| 1031 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1032 | tcp_conn = conn->dd_data; |
| 1033 | old_state_change = tcp_conn->old_state_change; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1034 | |
| 1035 | read_unlock(&sk->sk_callback_lock); |
| 1036 | |
| 1037 | old_state_change(sk); |
| 1038 | } |
| 1039 | |
| 1040 | /** |
| 1041 | * iscsi_write_space - Called when more output buffer space is available |
| 1042 | * @sk: socket space is available for |
| 1043 | **/ |
| 1044 | static void |
| 1045 | iscsi_write_space(struct sock *sk) |
| 1046 | { |
| 1047 | struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1048 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 1049 | |
| 1050 | tcp_conn->old_write_space(sk); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1051 | debug_tcp("iscsi_write_space: cid %d\n", conn->id); |
Mike Christie | 55e3299 | 2006-01-13 18:05:53 -0600 | [diff] [blame] | 1052 | scsi_queue_work(conn->session->host, &conn->xmitwork); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | static void |
| 1056 | iscsi_conn_set_callbacks(struct iscsi_conn *conn) |
| 1057 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1058 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 1059 | struct sock *sk = tcp_conn->sock->sk; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1060 | |
| 1061 | /* assign new callbacks */ |
| 1062 | write_lock_bh(&sk->sk_callback_lock); |
| 1063 | sk->sk_user_data = conn; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1064 | tcp_conn->old_data_ready = sk->sk_data_ready; |
| 1065 | tcp_conn->old_state_change = sk->sk_state_change; |
| 1066 | tcp_conn->old_write_space = sk->sk_write_space; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1067 | sk->sk_data_ready = iscsi_tcp_data_ready; |
| 1068 | sk->sk_state_change = iscsi_tcp_state_change; |
| 1069 | sk->sk_write_space = iscsi_write_space; |
| 1070 | write_unlock_bh(&sk->sk_callback_lock); |
| 1071 | } |
| 1072 | |
| 1073 | static void |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1074 | iscsi_conn_restore_callbacks(struct iscsi_tcp_conn *tcp_conn) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1075 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1076 | struct sock *sk = tcp_conn->sock->sk; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1077 | |
| 1078 | /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */ |
| 1079 | write_lock_bh(&sk->sk_callback_lock); |
| 1080 | sk->sk_user_data = NULL; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1081 | sk->sk_data_ready = tcp_conn->old_data_ready; |
| 1082 | sk->sk_state_change = tcp_conn->old_state_change; |
| 1083 | sk->sk_write_space = tcp_conn->old_write_space; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1084 | sk->sk_no_check = 0; |
| 1085 | write_unlock_bh(&sk->sk_callback_lock); |
| 1086 | } |
| 1087 | |
| 1088 | /** |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1089 | * iscsi_xmit - TCP transmit |
| 1090 | **/ |
| 1091 | static int |
| 1092 | iscsi_xmit(struct iscsi_conn *conn) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1093 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1094 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1095 | struct iscsi_segment *segment = &tcp_conn->out.segment; |
| 1096 | unsigned int consumed = 0; |
| 1097 | int rc = 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1098 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1099 | while (1) { |
| 1100 | rc = iscsi_tcp_xmit_segment(tcp_conn, segment); |
| 1101 | if (rc < 0) |
| 1102 | goto error; |
| 1103 | if (rc == 0) |
| 1104 | break; |
| 1105 | |
| 1106 | consumed += rc; |
| 1107 | |
| 1108 | if (segment->total_copied >= segment->total_size) { |
| 1109 | if (segment->done != NULL) { |
| 1110 | rc = segment->done(tcp_conn, segment); |
| 1111 | if (rc < 0) |
| 1112 | goto error; |
| 1113 | } |
| 1114 | } |
| 1115 | } |
| 1116 | |
| 1117 | debug_tcp("xmit %d bytes\n", consumed); |
| 1118 | |
| 1119 | conn->txdata_octets += consumed; |
| 1120 | return consumed; |
| 1121 | |
| 1122 | error: |
| 1123 | /* Transmit error. We could initiate error recovery |
| 1124 | * here. */ |
| 1125 | debug_tcp("Error sending PDU, errno=%d\n", rc); |
| 1126 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
| 1127 | return rc; |
| 1128 | } |
| 1129 | |
| 1130 | /** |
| 1131 | * iscsi_tcp_xmit_qlen - return the number of bytes queued for xmit |
| 1132 | */ |
| 1133 | static inline int |
| 1134 | iscsi_tcp_xmit_qlen(struct iscsi_conn *conn) |
| 1135 | { |
| 1136 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 1137 | struct iscsi_segment *segment = &tcp_conn->out.segment; |
| 1138 | |
| 1139 | return segment->total_copied - segment->total_size; |
| 1140 | } |
| 1141 | |
| 1142 | static inline int |
| 1143 | iscsi_tcp_flush(struct iscsi_conn *conn) |
| 1144 | { |
| 1145 | int rc; |
| 1146 | |
| 1147 | while (iscsi_tcp_xmit_qlen(conn)) { |
| 1148 | rc = iscsi_xmit(conn); |
| 1149 | if (rc == 0) |
| 1150 | return -EAGAIN; |
| 1151 | if (rc < 0) |
| 1152 | return rc; |
| 1153 | } |
| 1154 | |
| 1155 | return 0; |
| 1156 | } |
| 1157 | |
| 1158 | /* |
| 1159 | * This is called when we're done sending the header. |
| 1160 | * Simply copy the data_segment to the send segment, and return. |
| 1161 | */ |
| 1162 | static int |
| 1163 | iscsi_tcp_send_hdr_done(struct iscsi_tcp_conn *tcp_conn, |
| 1164 | struct iscsi_segment *segment) |
| 1165 | { |
| 1166 | tcp_conn->out.segment = tcp_conn->out.data_segment; |
| 1167 | debug_tcp("Header done. Next segment size %u total_size %u\n", |
| 1168 | tcp_conn->out.segment.size, tcp_conn->out.segment.total_size); |
| 1169 | return 0; |
| 1170 | } |
| 1171 | |
| 1172 | static void |
| 1173 | iscsi_tcp_send_hdr_prep(struct iscsi_conn *conn, void *hdr, size_t hdrlen) |
| 1174 | { |
| 1175 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 1176 | |
Harvey Harrison | 3a12b19 | 2008-05-21 15:54:19 -0500 | [diff] [blame] | 1177 | debug_tcp("%s(%p%s)\n", __func__, tcp_conn, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1178 | conn->hdrdgst_en? ", digest enabled" : ""); |
| 1179 | |
| 1180 | /* Clear the data segment - needs to be filled in by the |
| 1181 | * caller using iscsi_tcp_send_data_prep() */ |
| 1182 | memset(&tcp_conn->out.data_segment, 0, sizeof(struct iscsi_segment)); |
| 1183 | |
| 1184 | /* If header digest is enabled, compute the CRC and |
| 1185 | * place the digest into the same buffer. We make |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1186 | * sure that both iscsi_tcp_task and mtask have |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1187 | * sufficient room. |
Mike Christie | 7cae515 | 2006-01-13 18:05:47 -0600 | [diff] [blame] | 1188 | */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1189 | if (conn->hdrdgst_en) { |
| 1190 | iscsi_tcp_dgst_header(&tcp_conn->tx_hash, hdr, hdrlen, |
| 1191 | hdr + hdrlen); |
| 1192 | hdrlen += ISCSI_DIGEST_SIZE; |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 1193 | } |
| 1194 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1195 | /* Remember header pointer for later, when we need |
| 1196 | * to decide whether there's a payload to go along |
| 1197 | * with the header. */ |
| 1198 | tcp_conn->out.hdr = hdr; |
| 1199 | |
| 1200 | iscsi_segment_init_linear(&tcp_conn->out.segment, hdr, hdrlen, |
| 1201 | iscsi_tcp_send_hdr_done, NULL); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1202 | } |
| 1203 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1204 | /* |
| 1205 | * Prepare the send buffer for the payload data. |
| 1206 | * Padding and checksumming will all be taken care |
| 1207 | * of by the iscsi_segment routines. |
| 1208 | */ |
| 1209 | static int |
| 1210 | iscsi_tcp_send_data_prep(struct iscsi_conn *conn, struct scatterlist *sg, |
| 1211 | unsigned int count, unsigned int offset, |
| 1212 | unsigned int len) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1213 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1214 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 1215 | struct hash_desc *tx_hash = NULL; |
| 1216 | unsigned int hdr_spec_len; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1217 | |
Harvey Harrison | 3a12b19 | 2008-05-21 15:54:19 -0500 | [diff] [blame] | 1218 | debug_tcp("%s(%p, offset=%d, datalen=%d%s)\n", __func__, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1219 | tcp_conn, offset, len, |
| 1220 | conn->datadgst_en? ", digest enabled" : ""); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1221 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1222 | /* Make sure the datalen matches what the caller |
| 1223 | said he would send. */ |
| 1224 | hdr_spec_len = ntoh24(tcp_conn->out.hdr->dlength); |
| 1225 | WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len)); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1226 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1227 | if (conn->datadgst_en) |
| 1228 | tx_hash = &tcp_conn->tx_hash; |
| 1229 | |
| 1230 | return iscsi_segment_seek_sg(&tcp_conn->out.data_segment, |
| 1231 | sg, count, offset, len, |
| 1232 | NULL, tx_hash); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1233 | } |
| 1234 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1235 | static void |
| 1236 | iscsi_tcp_send_linear_data_prepare(struct iscsi_conn *conn, void *data, |
| 1237 | size_t len) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1238 | { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1239 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 1240 | struct hash_desc *tx_hash = NULL; |
| 1241 | unsigned int hdr_spec_len; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1242 | |
Harvey Harrison | 3a12b19 | 2008-05-21 15:54:19 -0500 | [diff] [blame] | 1243 | debug_tcp("%s(%p, datalen=%d%s)\n", __func__, tcp_conn, len, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1244 | conn->datadgst_en? ", digest enabled" : ""); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1245 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1246 | /* Make sure the datalen matches what the caller |
| 1247 | said he would send. */ |
| 1248 | hdr_spec_len = ntoh24(tcp_conn->out.hdr->dlength); |
| 1249 | WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len)); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1250 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1251 | if (conn->datadgst_en) |
| 1252 | tx_hash = &tcp_conn->tx_hash; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1253 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1254 | iscsi_segment_init_linear(&tcp_conn->out.data_segment, |
| 1255 | data, len, NULL, tx_hash); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1256 | } |
| 1257 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1258 | /** |
| 1259 | * iscsi_solicit_data_cont - initialize next Data-Out |
| 1260 | * @conn: iscsi connection |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1261 | * @task: scsi command task |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1262 | * @r2t: R2T info |
| 1263 | * @left: bytes left to transfer |
| 1264 | * |
| 1265 | * Notes: |
| 1266 | * Initialize next Data-Out within this R2T sequence and continue |
| 1267 | * to process next Scatter-Gather element(if any) of this SCSI command. |
| 1268 | * |
| 1269 | * Called under connection lock. |
| 1270 | **/ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1271 | static int |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1272 | iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_task *task, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1273 | struct iscsi_r2t_info *r2t) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1274 | { |
| 1275 | struct iscsi_data *hdr; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1276 | int new_offset, left; |
| 1277 | |
| 1278 | BUG_ON(r2t->data_length - r2t->sent < 0); |
| 1279 | left = r2t->data_length - r2t->sent; |
| 1280 | if (left == 0) |
| 1281 | return 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1282 | |
Mike Christie | ffbfe92 | 2006-05-18 20:31:36 -0500 | [diff] [blame] | 1283 | hdr = &r2t->dtask.hdr; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1284 | memset(hdr, 0, sizeof(struct iscsi_data)); |
| 1285 | hdr->ttt = r2t->ttt; |
| 1286 | hdr->datasn = cpu_to_be32(r2t->solicit_datasn); |
| 1287 | r2t->solicit_datasn++; |
| 1288 | hdr->opcode = ISCSI_OP_SCSI_DATA_OUT; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1289 | memcpy(hdr->lun, task->hdr->lun, sizeof(hdr->lun)); |
| 1290 | hdr->itt = task->hdr->itt; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1291 | hdr->exp_statsn = r2t->exp_statsn; |
| 1292 | new_offset = r2t->data_offset + r2t->sent; |
| 1293 | hdr->offset = cpu_to_be32(new_offset); |
| 1294 | if (left > conn->max_xmit_dlength) { |
| 1295 | hton24(hdr->dlength, conn->max_xmit_dlength); |
| 1296 | r2t->data_count = conn->max_xmit_dlength; |
| 1297 | } else { |
| 1298 | hton24(hdr->dlength, left); |
| 1299 | r2t->data_count = left; |
| 1300 | hdr->flags = ISCSI_FLAG_CMD_FINAL; |
| 1301 | } |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1302 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1303 | conn->dataout_pdus_cnt++; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1304 | return 1; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1305 | } |
| 1306 | |
| 1307 | /** |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1308 | * iscsi_tcp_task - Initialize iSCSI SCSI_READ or SCSI_WRITE commands |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1309 | * @conn: iscsi connection |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1310 | * @task: scsi command task |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1311 | * @sc: scsi command |
| 1312 | **/ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1313 | static int |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1314 | iscsi_tcp_task_init(struct iscsi_task *task) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1315 | { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1316 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
| 1317 | struct iscsi_conn *conn = task->conn; |
| 1318 | struct scsi_cmnd *sc = task->sc; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1319 | int err; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1320 | |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1321 | if (!sc) { |
| 1322 | /* |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1323 | * mgmt tasks do not have a scatterlist since they come |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1324 | * in from the iscsi interface. |
| 1325 | */ |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1326 | debug_scsi("mtask deq [cid %d itt 0x%x]\n", conn->id, |
| 1327 | task->itt); |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1328 | |
| 1329 | /* Prepare PDU, optionally w/ immediate data */ |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1330 | iscsi_tcp_send_hdr_prep(conn, task->hdr, sizeof(*task->hdr)); |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1331 | |
| 1332 | /* If we have immediate data, attach a payload */ |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1333 | if (task->data_count) |
| 1334 | iscsi_tcp_send_linear_data_prepare(conn, task->data, |
| 1335 | task->data_count); |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1336 | return 0; |
| 1337 | } |
| 1338 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1339 | BUG_ON(__kfifo_len(tcp_task->r2tqueue)); |
| 1340 | tcp_task->sent = 0; |
| 1341 | tcp_task->exp_datasn = 0; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1342 | |
| 1343 | /* Prepare PDU, optionally w/ immediate data */ |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1344 | debug_scsi("task deq [cid %d itt 0x%x imm %d unsol %d]\n", |
| 1345 | conn->id, task->itt, task->imm_count, |
| 1346 | task->unsol_count); |
| 1347 | iscsi_tcp_send_hdr_prep(conn, task->hdr, task->hdr_len); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1348 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1349 | if (!task->imm_count) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1350 | return 0; |
| 1351 | |
| 1352 | /* If we have immediate data, attach a payload */ |
Boaz Harrosh | 94795b6 | 2008-04-18 10:11:53 -0500 | [diff] [blame] | 1353 | err = iscsi_tcp_send_data_prep(conn, scsi_out(sc)->table.sgl, |
| 1354 | scsi_out(sc)->table.nents, |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1355 | 0, task->imm_count); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1356 | if (err) |
| 1357 | return err; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1358 | tcp_task->sent += task->imm_count; |
| 1359 | task->imm_count = 0; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1360 | return 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1361 | } |
| 1362 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1363 | /* |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1364 | * iscsi_tcp_task_xmit - xmit normal PDU task |
| 1365 | * @task: iscsi command task |
Mike Christie | 218432c | 2007-05-30 12:57:17 -0500 | [diff] [blame] | 1366 | * |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1367 | * We're expected to return 0 when everything was transmitted succesfully, |
| 1368 | * -EAGAIN if there's still data in the queue, or != 0 for any other kind |
| 1369 | * of error. |
| 1370 | */ |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1371 | static int |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1372 | iscsi_tcp_task_xmit(struct iscsi_task *task) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1373 | { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1374 | struct iscsi_conn *conn = task->conn; |
| 1375 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
| 1376 | struct scsi_cmnd *sc = task->sc; |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1377 | struct scsi_data_buffer *sdb; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1378 | int rc = 0; |
| 1379 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1380 | flush: |
| 1381 | /* Flush any pending data first. */ |
| 1382 | rc = iscsi_tcp_flush(conn); |
| 1383 | if (rc < 0) |
Mike Christie | 218432c | 2007-05-30 12:57:17 -0500 | [diff] [blame] | 1384 | return rc; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1385 | |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1386 | /* mgmt command */ |
| 1387 | if (!sc) { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1388 | if (task->hdr->itt == RESERVED_ITT) |
| 1389 | iscsi_put_task(task); |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1390 | return 0; |
| 1391 | } |
| 1392 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1393 | /* Are we done already? */ |
| 1394 | if (sc->sc_data_direction != DMA_TO_DEVICE) |
Mike Christie | 218432c | 2007-05-30 12:57:17 -0500 | [diff] [blame] | 1395 | return 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1396 | |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1397 | sdb = scsi_out(sc); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1398 | if (task->unsol_count != 0) { |
| 1399 | struct iscsi_data *hdr = &tcp_task->unsol_dtask.hdr; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1400 | |
| 1401 | /* Prepare a header for the unsolicited PDU. |
| 1402 | * The amount of data we want to send will be |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1403 | * in task->data_count. |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1404 | * FIXME: return the data count instead. |
| 1405 | */ |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1406 | iscsi_prep_unsolicit_data_pdu(task, hdr); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1407 | |
| 1408 | debug_tcp("unsol dout [itt 0x%x doff %d dlen %d]\n", |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1409 | task->itt, tcp_task->sent, task->data_count); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1410 | |
| 1411 | iscsi_tcp_send_hdr_prep(conn, hdr, sizeof(*hdr)); |
Boaz Harrosh | 94795b6 | 2008-04-18 10:11:53 -0500 | [diff] [blame] | 1412 | rc = iscsi_tcp_send_data_prep(conn, sdb->table.sgl, |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1413 | sdb->table.nents, tcp_task->sent, |
| 1414 | task->data_count); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1415 | if (rc) |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1416 | goto fail; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1417 | tcp_task->sent += task->data_count; |
| 1418 | task->unsol_count -= task->data_count; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1419 | goto flush; |
| 1420 | } else { |
| 1421 | struct iscsi_session *session = conn->session; |
| 1422 | struct iscsi_r2t_info *r2t; |
| 1423 | |
| 1424 | /* All unsolicited PDUs sent. Check for solicited PDUs. |
| 1425 | */ |
| 1426 | spin_lock_bh(&session->lock); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1427 | r2t = tcp_task->r2t; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1428 | if (r2t != NULL) { |
| 1429 | /* Continue with this R2T? */ |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1430 | if (!iscsi_solicit_data_cont(conn, task, r2t)) { |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1431 | debug_scsi(" done with r2t %p\n", r2t); |
| 1432 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1433 | __kfifo_put(tcp_task->r2tpool.queue, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1434 | (void*)&r2t, sizeof(void*)); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1435 | tcp_task->r2t = r2t = NULL; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1436 | } |
| 1437 | } |
| 1438 | |
| 1439 | if (r2t == NULL) { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1440 | __kfifo_get(tcp_task->r2tqueue, (void*)&tcp_task->r2t, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1441 | sizeof(void*)); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1442 | r2t = tcp_task->r2t; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1443 | } |
| 1444 | spin_unlock_bh(&session->lock); |
| 1445 | |
| 1446 | /* Waiting for more R2Ts to arrive. */ |
| 1447 | if (r2t == NULL) { |
| 1448 | debug_tcp("no R2Ts yet\n"); |
| 1449 | return 0; |
| 1450 | } |
| 1451 | |
| 1452 | debug_scsi("sol dout %p [dsn %d itt 0x%x doff %d dlen %d]\n", |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1453 | r2t, r2t->solicit_datasn - 1, task->itt, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1454 | r2t->data_offset + r2t->sent, r2t->data_count); |
| 1455 | |
| 1456 | iscsi_tcp_send_hdr_prep(conn, &r2t->dtask.hdr, |
| 1457 | sizeof(struct iscsi_hdr)); |
| 1458 | |
Boaz Harrosh | 94795b6 | 2008-04-18 10:11:53 -0500 | [diff] [blame] | 1459 | rc = iscsi_tcp_send_data_prep(conn, sdb->table.sgl, |
| 1460 | sdb->table.nents, |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1461 | r2t->data_offset + r2t->sent, |
| 1462 | r2t->data_count); |
| 1463 | if (rc) |
| 1464 | goto fail; |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1465 | tcp_task->sent += r2t->data_count; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1466 | r2t->sent += r2t->data_count; |
| 1467 | goto flush; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1468 | } |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 1469 | return 0; |
| 1470 | fail: |
| 1471 | iscsi_conn_failure(conn, rc); |
| 1472 | return -EIO; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1473 | } |
| 1474 | |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1475 | static struct iscsi_cls_conn * |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1476 | iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1477 | { |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1478 | struct iscsi_conn *conn; |
| 1479 | struct iscsi_cls_conn *cls_conn; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1480 | struct iscsi_tcp_conn *tcp_conn; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1481 | |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 1482 | cls_conn = iscsi_conn_setup(cls_session, sizeof(*tcp_conn), conn_idx); |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1483 | if (!cls_conn) |
| 1484 | return NULL; |
| 1485 | conn = cls_conn->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1486 | /* |
| 1487 | * due to strange issues with iser these are not set |
| 1488 | * in iscsi_conn_setup |
| 1489 | */ |
Mike Christie | bf32ed3 | 2007-02-28 17:32:17 -0600 | [diff] [blame] | 1490 | conn->max_recv_dlength = ISCSI_DEF_MAX_RECV_SEG_LEN; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1491 | |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 1492 | tcp_conn = conn->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1493 | tcp_conn->iscsi_conn = conn; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1494 | |
James Bottomley | c9802cd | 2006-09-23 15:33:43 -0500 | [diff] [blame] | 1495 | tcp_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0, |
| 1496 | CRYPTO_ALG_ASYNC); |
| 1497 | tcp_conn->tx_hash.flags = 0; |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 1498 | if (IS_ERR(tcp_conn->tx_hash.tfm)) |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 1499 | goto free_conn; |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 1500 | |
James Bottomley | c9802cd | 2006-09-23 15:33:43 -0500 | [diff] [blame] | 1501 | tcp_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0, |
| 1502 | CRYPTO_ALG_ASYNC); |
| 1503 | tcp_conn->rx_hash.flags = 0; |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 1504 | if (IS_ERR(tcp_conn->rx_hash.tfm)) |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 1505 | goto free_tx_tfm; |
| 1506 | |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1507 | return cls_conn; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1508 | |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 1509 | free_tx_tfm: |
James Bottomley | c9802cd | 2006-09-23 15:33:43 -0500 | [diff] [blame] | 1510 | crypto_free_hash(tcp_conn->tx_hash.tfm); |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 1511 | free_conn: |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 1512 | iscsi_conn_printk(KERN_ERR, conn, |
| 1513 | "Could not create connection due to crc32c " |
| 1514 | "loading error. Make sure the crc32c " |
| 1515 | "module is built as a module or into the " |
| 1516 | "kernel\n"); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1517 | iscsi_conn_teardown(cls_conn); |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1518 | return NULL; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1519 | } |
| 1520 | |
| 1521 | static void |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1522 | iscsi_tcp_release_conn(struct iscsi_conn *conn) |
| 1523 | { |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1524 | struct iscsi_session *session = conn->session; |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1525 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1526 | struct socket *sock = tcp_conn->sock; |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1527 | |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1528 | if (!sock) |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1529 | return; |
| 1530 | |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1531 | sock_hold(sock->sk); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1532 | iscsi_conn_restore_callbacks(tcp_conn); |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1533 | sock_put(sock->sk); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1534 | |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1535 | spin_lock_bh(&session->lock); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1536 | tcp_conn->sock = NULL; |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1537 | spin_unlock_bh(&session->lock); |
| 1538 | sockfd_put(sock); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1539 | } |
| 1540 | |
| 1541 | static void |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1542 | iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1543 | { |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1544 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1545 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1546 | |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1547 | iscsi_tcp_release_conn(conn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1548 | |
Pete Wyckoff | 534284a | 2006-11-08 15:58:31 -0600 | [diff] [blame] | 1549 | if (tcp_conn->tx_hash.tfm) |
| 1550 | crypto_free_hash(tcp_conn->tx_hash.tfm); |
| 1551 | if (tcp_conn->rx_hash.tfm) |
| 1552 | crypto_free_hash(tcp_conn->rx_hash.tfm); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1553 | |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 1554 | iscsi_conn_teardown(cls_conn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1555 | } |
| 1556 | |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1557 | static void |
| 1558 | iscsi_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag) |
| 1559 | { |
| 1560 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1561 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
| 1562 | |
| 1563 | /* userspace may have goofed up and not bound us */ |
| 1564 | if (!tcp_conn->sock) |
| 1565 | return; |
| 1566 | /* |
| 1567 | * Make sure our recv side is stopped. |
| 1568 | * Older tools called conn stop before ep_disconnect |
| 1569 | * so IO could still be coming in. |
| 1570 | */ |
| 1571 | write_lock_bh(&tcp_conn->sock->sk->sk_callback_lock); |
| 1572 | set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx); |
| 1573 | write_unlock_bh(&tcp_conn->sock->sk->sk_callback_lock); |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1574 | |
| 1575 | iscsi_conn_stop(cls_conn, flag); |
| 1576 | iscsi_tcp_release_conn(conn); |
| 1577 | } |
| 1578 | |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1579 | static int iscsi_tcp_get_addr(struct iscsi_conn *conn, struct socket *sock, |
| 1580 | char *buf, int *port, |
| 1581 | int (*getname)(struct socket *, struct sockaddr *, |
| 1582 | int *addrlen)) |
| 1583 | { |
| 1584 | struct sockaddr_storage *addr; |
| 1585 | struct sockaddr_in6 *sin6; |
| 1586 | struct sockaddr_in *sin; |
| 1587 | int rc = 0, len; |
| 1588 | |
Al Viro | a920487 | 2007-07-20 16:03:40 +0100 | [diff] [blame] | 1589 | addr = kmalloc(sizeof(*addr), GFP_KERNEL); |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1590 | if (!addr) |
| 1591 | return -ENOMEM; |
| 1592 | |
| 1593 | if (getname(sock, (struct sockaddr *) addr, &len)) { |
| 1594 | rc = -ENODEV; |
| 1595 | goto free_addr; |
| 1596 | } |
| 1597 | |
| 1598 | switch (addr->ss_family) { |
| 1599 | case AF_INET: |
| 1600 | sin = (struct sockaddr_in *)addr; |
| 1601 | spin_lock_bh(&conn->session->lock); |
| 1602 | sprintf(buf, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr)); |
| 1603 | *port = be16_to_cpu(sin->sin_port); |
| 1604 | spin_unlock_bh(&conn->session->lock); |
| 1605 | break; |
| 1606 | case AF_INET6: |
| 1607 | sin6 = (struct sockaddr_in6 *)addr; |
| 1608 | spin_lock_bh(&conn->session->lock); |
| 1609 | sprintf(buf, NIP6_FMT, NIP6(sin6->sin6_addr)); |
| 1610 | *port = be16_to_cpu(sin6->sin6_port); |
| 1611 | spin_unlock_bh(&conn->session->lock); |
| 1612 | break; |
| 1613 | } |
| 1614 | free_addr: |
| 1615 | kfree(addr); |
| 1616 | return rc; |
| 1617 | } |
| 1618 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1619 | static int |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1620 | iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session, |
Or Gerlitz | 264faaa | 2006-05-02 19:46:36 -0500 | [diff] [blame] | 1621 | struct iscsi_cls_conn *cls_conn, uint64_t transport_eph, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1622 | int is_leading) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1623 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1624 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); |
| 1625 | struct iscsi_host *ihost = shost_priv(shost); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1626 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 1627 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1628 | struct sock *sk; |
| 1629 | struct socket *sock; |
| 1630 | int err; |
| 1631 | |
| 1632 | /* lookup for existing socket */ |
Or Gerlitz | 264faaa | 2006-05-02 19:46:36 -0500 | [diff] [blame] | 1633 | sock = sockfd_lookup((int)transport_eph, &err); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1634 | if (!sock) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 1635 | iscsi_conn_printk(KERN_ERR, conn, |
| 1636 | "sockfd_lookup failed %d\n", err); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1637 | return -EEXIST; |
| 1638 | } |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1639 | /* |
| 1640 | * copy these values now because if we drop the session |
| 1641 | * userspace may still want to query the values since we will |
| 1642 | * be using them for the reconnect |
| 1643 | */ |
| 1644 | err = iscsi_tcp_get_addr(conn, sock, conn->portal_address, |
| 1645 | &conn->portal_port, kernel_getpeername); |
| 1646 | if (err) |
| 1647 | goto free_socket; |
| 1648 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1649 | err = iscsi_tcp_get_addr(conn, sock, ihost->local_address, |
| 1650 | &ihost->local_port, kernel_getsockname); |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1651 | if (err) |
| 1652 | goto free_socket; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1653 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1654 | err = iscsi_conn_bind(cls_session, cls_conn, is_leading); |
| 1655 | if (err) |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1656 | goto free_socket; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1657 | |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 1658 | /* bind iSCSI connection and socket */ |
| 1659 | tcp_conn->sock = sock; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1660 | |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 1661 | /* setup Socket parameters */ |
| 1662 | sk = sock->sk; |
| 1663 | sk->sk_reuse = 1; |
| 1664 | sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */ |
| 1665 | sk->sk_allocation = GFP_ATOMIC; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1666 | |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 1667 | iscsi_conn_set_callbacks(conn); |
| 1668 | tcp_conn->sendpage = tcp_conn->sock->ops->sendpage; |
| 1669 | /* |
| 1670 | * set receive state machine into initial state |
| 1671 | */ |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 1672 | iscsi_tcp_hdr_recv_prep(tcp_conn); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1673 | return 0; |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1674 | |
| 1675 | free_socket: |
| 1676 | sockfd_put(sock); |
| 1677 | return err; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1678 | } |
| 1679 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1680 | static int |
| 1681 | iscsi_r2tpool_alloc(struct iscsi_session *session) |
| 1682 | { |
| 1683 | int i; |
| 1684 | int cmd_i; |
| 1685 | |
| 1686 | /* |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1687 | * initialize per-task: R2T pool and xmit queue |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1688 | */ |
| 1689 | for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1690 | struct iscsi_task *task = session->cmds[cmd_i]; |
| 1691 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1692 | |
| 1693 | /* |
| 1694 | * pre-allocated x4 as much r2ts to handle race when |
| 1695 | * target acks DataOut faster than we data_xmit() queues |
| 1696 | * could replenish r2tqueue. |
| 1697 | */ |
| 1698 | |
| 1699 | /* R2T pool */ |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1700 | if (iscsi_pool_init(&tcp_task->r2tpool, session->max_r2t * 4, NULL, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1701 | sizeof(struct iscsi_r2t_info))) { |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1702 | goto r2t_alloc_fail; |
| 1703 | } |
| 1704 | |
| 1705 | /* R2T xmit queue */ |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1706 | tcp_task->r2tqueue = kfifo_alloc( |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1707 | session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL); |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1708 | if (tcp_task->r2tqueue == ERR_PTR(-ENOMEM)) { |
| 1709 | iscsi_pool_free(&tcp_task->r2tpool); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1710 | goto r2t_alloc_fail; |
| 1711 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1712 | } |
| 1713 | |
| 1714 | return 0; |
| 1715 | |
| 1716 | r2t_alloc_fail: |
| 1717 | for (i = 0; i < cmd_i; i++) { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1718 | struct iscsi_task *task = session->cmds[i]; |
| 1719 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1720 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1721 | kfifo_free(tcp_task->r2tqueue); |
| 1722 | iscsi_pool_free(&tcp_task->r2tpool); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1723 | } |
| 1724 | return -ENOMEM; |
| 1725 | } |
| 1726 | |
| 1727 | static void |
| 1728 | iscsi_r2tpool_free(struct iscsi_session *session) |
| 1729 | { |
| 1730 | int i; |
| 1731 | |
| 1732 | for (i = 0; i < session->cmds_max; i++) { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1733 | struct iscsi_task *task = session->cmds[i]; |
| 1734 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1735 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1736 | kfifo_free(tcp_task->r2tqueue); |
| 1737 | iscsi_pool_free(&tcp_task->r2tpool); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1738 | } |
| 1739 | } |
| 1740 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1741 | static int |
Mike Christie | 7b7232f | 2006-02-01 21:06:49 -0600 | [diff] [blame] | 1742 | iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param, |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1743 | char *buf, int buflen) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1744 | { |
Mike Christie | 7b7232f | 2006-02-01 21:06:49 -0600 | [diff] [blame] | 1745 | struct iscsi_conn *conn = cls_conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1746 | struct iscsi_session *session = conn->session; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1747 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1748 | int value; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1749 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1750 | switch(param) { |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1751 | case ISCSI_PARAM_HDRDGST_EN: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1752 | iscsi_set_param(cls_conn, param, buf, buflen); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1753 | break; |
| 1754 | case ISCSI_PARAM_DATADGST_EN: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1755 | iscsi_set_param(cls_conn, param, buf, buflen); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1756 | tcp_conn->sendpage = conn->datadgst_en ? |
| 1757 | sock_no_sendpage : tcp_conn->sock->ops->sendpage; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1758 | break; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1759 | case ISCSI_PARAM_MAX_R2T: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1760 | sscanf(buf, "%d", &value); |
Mike Christie | df93ffc | 2007-12-13 12:43:42 -0600 | [diff] [blame] | 1761 | if (value <= 0 || !is_power_of_2(value)) |
| 1762 | return -EINVAL; |
| 1763 | if (session->max_r2t == value) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1764 | break; |
| 1765 | iscsi_r2tpool_free(session); |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1766 | iscsi_set_param(cls_conn, param, buf, buflen); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1767 | if (iscsi_r2tpool_alloc(session)) |
| 1768 | return -ENOMEM; |
| 1769 | break; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1770 | default: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1771 | return iscsi_set_param(cls_conn, param, buf, buflen); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1772 | } |
| 1773 | |
| 1774 | return 0; |
| 1775 | } |
| 1776 | |
| 1777 | static int |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1778 | iscsi_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn, |
| 1779 | enum iscsi_param param, char *buf) |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1780 | { |
Mike Christie | 7b7232f | 2006-02-01 21:06:49 -0600 | [diff] [blame] | 1781 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1782 | int len; |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1783 | |
| 1784 | switch(param) { |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 1785 | case ISCSI_PARAM_CONN_PORT: |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1786 | spin_lock_bh(&conn->session->lock); |
| 1787 | len = sprintf(buf, "%hu\n", conn->portal_port); |
| 1788 | spin_unlock_bh(&conn->session->lock); |
Mike Christie | 8d2860b | 2006-05-02 19:46:47 -0500 | [diff] [blame] | 1789 | break; |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 1790 | case ISCSI_PARAM_CONN_ADDRESS: |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1791 | spin_lock_bh(&conn->session->lock); |
| 1792 | len = sprintf(buf, "%s\n", conn->portal_address); |
| 1793 | spin_unlock_bh(&conn->session->lock); |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 1794 | break; |
| 1795 | default: |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1796 | return iscsi_conn_get_param(cls_conn, param, buf); |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 1797 | } |
| 1798 | |
| 1799 | return len; |
| 1800 | } |
| 1801 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1802 | static void |
Mike Christie | 7b7232f | 2006-02-01 21:06:49 -0600 | [diff] [blame] | 1803 | iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1804 | { |
Mike Christie | 7b7232f | 2006-02-01 21:06:49 -0600 | [diff] [blame] | 1805 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1806 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1807 | |
| 1808 | stats->txdata_octets = conn->txdata_octets; |
| 1809 | stats->rxdata_octets = conn->rxdata_octets; |
| 1810 | stats->scsicmd_pdus = conn->scsicmd_pdus_cnt; |
| 1811 | stats->dataout_pdus = conn->dataout_pdus_cnt; |
| 1812 | stats->scsirsp_pdus = conn->scsirsp_pdus_cnt; |
| 1813 | stats->datain_pdus = conn->datain_pdus_cnt; |
| 1814 | stats->r2t_pdus = conn->r2t_pdus_cnt; |
| 1815 | stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt; |
| 1816 | stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt; |
| 1817 | stats->custom_length = 3; |
| 1818 | strcpy(stats->custom[0].desc, "tx_sendpage_failures"); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1819 | stats->custom[0].value = tcp_conn->sendpage_failures_cnt; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1820 | strcpy(stats->custom[1].desc, "rx_discontiguous_hdr"); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1821 | stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1822 | strcpy(stats->custom[2].desc, "eh_abort_cnt"); |
| 1823 | stats->custom[2].value = conn->eh_abort_cnt; |
| 1824 | } |
| 1825 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1826 | static struct iscsi_cls_session * |
Mike Christie | 06520ede | 2008-05-21 15:54:15 -0500 | [diff] [blame] | 1827 | iscsi_tcp_session_create(struct iscsi_endpoint *ep, uint16_t cmds_max, |
Mike Christie | 40753ca | 2008-05-21 15:53:56 -0500 | [diff] [blame] | 1828 | uint16_t qdepth, uint32_t initial_cmdsn, |
| 1829 | uint32_t *hostno) |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1830 | { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1831 | struct iscsi_cls_session *cls_session; |
| 1832 | struct iscsi_session *session; |
Mike Christie | 06520ede | 2008-05-21 15:54:15 -0500 | [diff] [blame] | 1833 | struct Scsi_Host *shost; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1834 | int cmd_i; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1835 | |
Mike Christie | 06520ede | 2008-05-21 15:54:15 -0500 | [diff] [blame] | 1836 | if (ep) { |
| 1837 | printk(KERN_ERR "iscsi_tcp: invalid ep %p.\n", ep); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1838 | return NULL; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1839 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1840 | |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 1841 | shost = iscsi_host_alloc(&iscsi_sht, 0, qdepth); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1842 | if (!shost) |
| 1843 | return NULL; |
| 1844 | shost->transportt = iscsi_tcp_scsi_transport; |
| 1845 | shost->max_lun = iscsi_max_lun; |
| 1846 | shost->max_id = 0; |
| 1847 | shost->max_channel = 0; |
Boaz Harrosh | 30e9ba9 | 2008-05-26 11:31:19 +0300 | [diff] [blame] | 1848 | shost->max_cmd_len = SCSI_MAX_VARLEN_CDB_SIZE; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1849 | |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 1850 | if (iscsi_host_add(shost, NULL)) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1851 | goto free_host; |
| 1852 | *hostno = shost->host_no; |
| 1853 | |
| 1854 | cls_session = iscsi_session_setup(&iscsi_tcp_transport, shost, cmds_max, |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1855 | sizeof(struct iscsi_tcp_task), |
Mike Christie | 7970634 | 2008-05-21 15:54:12 -0500 | [diff] [blame] | 1856 | initial_cmdsn, 0); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1857 | if (!cls_session) |
| 1858 | goto remove_host; |
| 1859 | session = cls_session->dd_data; |
| 1860 | |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1861 | shost->can_queue = session->scsi_cmds_max; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1862 | for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) { |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1863 | struct iscsi_task *task = session->cmds[cmd_i]; |
| 1864 | struct iscsi_tcp_task *tcp_task = task->dd_data; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1865 | |
Mike Christie | 135a8ad | 2008-05-21 15:54:10 -0500 | [diff] [blame] | 1866 | task->hdr = &tcp_task->hdr.cmd_hdr; |
| 1867 | task->hdr_max = sizeof(tcp_task->hdr) - ISCSI_DIGEST_SIZE; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1868 | } |
| 1869 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1870 | if (iscsi_r2tpool_alloc(session)) |
| 1871 | goto remove_session; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1872 | return cls_session; |
| 1873 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1874 | remove_session: |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1875 | iscsi_session_teardown(cls_session); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1876 | remove_host: |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 1877 | iscsi_host_remove(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1878 | free_host: |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 1879 | iscsi_host_free(shost); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1880 | return NULL; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1881 | } |
| 1882 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1883 | static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session) |
| 1884 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1885 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); |
| 1886 | |
| 1887 | iscsi_r2tpool_free(cls_session->dd_data); |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 1888 | iscsi_session_teardown(cls_session); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1889 | |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 1890 | iscsi_host_remove(shost); |
| 1891 | iscsi_host_free(shost); |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1892 | } |
| 1893 | |
Mike Christie | d1d81c0 | 2007-05-30 12:57:21 -0500 | [diff] [blame] | 1894 | static int iscsi_tcp_slave_configure(struct scsi_device *sdev) |
| 1895 | { |
Mike Christie | b6d44fe | 2007-07-26 12:46:47 -0500 | [diff] [blame] | 1896 | blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_ANY); |
Mike Christie | d1d81c0 | 2007-05-30 12:57:21 -0500 | [diff] [blame] | 1897 | blk_queue_dma_alignment(sdev->request_queue, 0); |
| 1898 | return 0; |
| 1899 | } |
| 1900 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1901 | static struct scsi_host_template iscsi_sht = { |
Mike Christie | 7974392 | 2007-07-26 12:46:46 -0500 | [diff] [blame] | 1902 | .module = THIS_MODULE, |
Mike Christie | f4246b3 | 2006-07-24 15:47:54 -0500 | [diff] [blame] | 1903 | .name = "iSCSI Initiator over TCP/IP", |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1904 | .queuecommand = iscsi_queuecommand, |
| 1905 | .change_queue_depth = iscsi_change_queue_depth, |
Mike Christie | 1548271 | 2007-05-30 12:57:19 -0500 | [diff] [blame] | 1906 | .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1, |
Mike Christie | 66bbe0c | 2007-12-13 12:43:39 -0600 | [diff] [blame] | 1907 | .sg_tablesize = 4096, |
Mike Christie | 8231f0e | 2007-02-28 17:32:20 -0600 | [diff] [blame] | 1908 | .max_sectors = 0xFFFF, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1909 | .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN, |
| 1910 | .eh_abort_handler = iscsi_eh_abort, |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1911 | .eh_device_reset_handler= iscsi_eh_device_reset, |
Mike Christie | 8e12452 | 2008-09-24 11:46:12 -0500 | [diff] [blame^] | 1912 | .eh_target_reset_handler= iscsi_eh_target_reset, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1913 | .use_clustering = DISABLE_CLUSTERING, |
Mike Christie | d1d81c0 | 2007-05-30 12:57:21 -0500 | [diff] [blame] | 1914 | .slave_configure = iscsi_tcp_slave_configure, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1915 | .proc_name = "iscsi_tcp", |
| 1916 | .this_id = -1, |
| 1917 | }; |
| 1918 | |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1919 | static struct iscsi_transport iscsi_tcp_transport = { |
| 1920 | .owner = THIS_MODULE, |
| 1921 | .name = "tcp", |
| 1922 | .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST |
| 1923 | | CAP_DATADGST, |
Mike Christie | fd7255f | 2006-04-06 21:13:36 -0500 | [diff] [blame] | 1924 | .param_mask = ISCSI_MAX_RECV_DLENGTH | |
| 1925 | ISCSI_MAX_XMIT_DLENGTH | |
| 1926 | ISCSI_HDRDGST_EN | |
| 1927 | ISCSI_DATADGST_EN | |
| 1928 | ISCSI_INITIAL_R2T_EN | |
| 1929 | ISCSI_MAX_R2T | |
| 1930 | ISCSI_IMM_DATA_EN | |
| 1931 | ISCSI_FIRST_BURST | |
| 1932 | ISCSI_MAX_BURST | |
| 1933 | ISCSI_PDU_INORDER_EN | |
| 1934 | ISCSI_DATASEQ_INORDER_EN | |
| 1935 | ISCSI_ERL | |
| 1936 | ISCSI_CONN_PORT | |
Mike Christie | 8d2860b | 2006-05-02 19:46:47 -0500 | [diff] [blame] | 1937 | ISCSI_CONN_ADDRESS | |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1938 | ISCSI_EXP_STATSN | |
| 1939 | ISCSI_PERSISTENT_PORT | |
| 1940 | ISCSI_PERSISTENT_ADDRESS | |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 1941 | ISCSI_TARGET_NAME | ISCSI_TPGT | |
| 1942 | ISCSI_USERNAME | ISCSI_PASSWORD | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1943 | ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1944 | ISCSI_FAST_ABORT | ISCSI_ABORT_TMO | |
| 1945 | ISCSI_LU_RESET_TMO | |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 1946 | ISCSI_PING_TMO | ISCSI_RECV_TMO | |
| 1947 | ISCSI_IFACE_NAME | ISCSI_INITIATOR_NAME, |
Mike Christie | 2223696 | 2007-05-30 12:57:24 -0500 | [diff] [blame] | 1948 | .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS | |
Mike Christie | d8196ed | 2007-05-30 12:57:25 -0500 | [diff] [blame] | 1949 | ISCSI_HOST_INITIATOR_NAME | |
| 1950 | ISCSI_HOST_NETDEV_NAME, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1951 | /* session management */ |
| 1952 | .create_session = iscsi_tcp_session_create, |
| 1953 | .destroy_session = iscsi_tcp_session_destroy, |
| 1954 | /* connection management */ |
| 1955 | .create_conn = iscsi_tcp_conn_create, |
| 1956 | .bind_conn = iscsi_tcp_conn_bind, |
| 1957 | .destroy_conn = iscsi_tcp_conn_destroy, |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1958 | .set_param = iscsi_conn_set_param, |
Mike Christie | 5c75b7f | 2006-06-28 12:00:26 -0500 | [diff] [blame] | 1959 | .get_conn_param = iscsi_tcp_conn_get_param, |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1960 | .get_session_param = iscsi_session_get_param, |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1961 | .start_conn = iscsi_conn_start, |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 1962 | .stop_conn = iscsi_tcp_conn_stop, |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 1963 | /* iscsi host params */ |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1964 | .get_host_param = iscsi_host_get_param, |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 1965 | .set_host_param = iscsi_host_set_param, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1966 | /* IO */ |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1967 | .send_pdu = iscsi_conn_send_pdu, |
| 1968 | .get_stats = iscsi_conn_get_stats, |
Mike Christie | fbc514b | 2008-05-21 15:54:07 -0500 | [diff] [blame] | 1969 | .init_task = iscsi_tcp_task_init, |
| 1970 | .xmit_task = iscsi_tcp_task_xmit, |
| 1971 | .cleanup_task = iscsi_tcp_cleanup_task, |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 1972 | /* recovery */ |
Mike Christie | 30a6c65 | 2006-04-06 21:13:39 -0500 | [diff] [blame] | 1973 | .session_recovery_timedout = iscsi_session_recovery_timedout, |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1974 | }; |
| 1975 | |
| 1976 | static int __init |
| 1977 | iscsi_tcp_init(void) |
| 1978 | { |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1979 | if (iscsi_max_lun < 1) { |
Or Gerlitz | be2df72 | 2006-05-02 19:46:43 -0500 | [diff] [blame] | 1980 | printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n", |
| 1981 | iscsi_max_lun); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1982 | return -EINVAL; |
| 1983 | } |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1984 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1985 | iscsi_tcp_scsi_transport = iscsi_register_transport( |
| 1986 | &iscsi_tcp_transport); |
| 1987 | if (!iscsi_tcp_scsi_transport) |
Mike Christie | ffbfe92 | 2006-05-18 20:31:36 -0500 | [diff] [blame] | 1988 | return -ENODEV; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1989 | |
Mike Christie | 7b8631b | 2006-01-13 18:05:50 -0600 | [diff] [blame] | 1990 | return 0; |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1991 | } |
| 1992 | |
| 1993 | static void __exit |
| 1994 | iscsi_tcp_exit(void) |
| 1995 | { |
| 1996 | iscsi_unregister_transport(&iscsi_tcp_transport); |
Alex Aizman | 7ba2471 | 2005-08-04 19:30:08 -0700 | [diff] [blame] | 1997 | } |
| 1998 | |
| 1999 | module_init(iscsi_tcp_init); |
| 2000 | module_exit(iscsi_tcp_exit); |