blob: 84c4a5026bcb8c18eeef4dc032837c584631a643 [file] [log] [blame]
Alex Aizman7ba24712005-08-04 19:30:08 -07001/*
2 * iSCSI Initiator over TCP/IP Data-Path
3 *
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
Mike Christie5bb0b552006-04-06 21:26:46 -05006 * Copyright (C) 2005 - 2006 Mike Christie
7 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
Alex Aizman7ba24712005-08-04 19:30:08 -07008 * 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 Christie4e7aba72007-05-30 12:57:23 -050032#include <linux/file.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070033#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 Christied1d81c02007-05-30 12:57:21 -050040#include <scsi/scsi_device.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070041#include <scsi/scsi_host.h>
42#include <scsi/scsi.h>
43#include <scsi/scsi_transport_iscsi.h>
44
45#include "iscsi_tcp.h"
46
47MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
48 "Alex Aizman <itn780@yahoo.com>");
49MODULE_DESCRIPTION("iSCSI/TCP data-path");
50MODULE_LICENSE("GPL");
Olaf Kirchda32dd62007-12-13 12:43:21 -060051#undef DEBUG_TCP
Alex Aizman7ba24712005-08-04 19:30:08 -070052#define DEBUG_ASSERT
53
54#ifdef DEBUG_TCP
Mike Christie5bb0b552006-04-06 21:26:46 -050055#define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
Alex Aizman7ba24712005-08-04 19:30:08 -070056#else
57#define debug_tcp(fmt...)
58#endif
59
Alex Aizman7ba24712005-08-04 19:30:08 -070060#ifndef DEBUG_ASSERT
61#ifdef BUG_ON
62#undef BUG_ON
63#endif
64#define BUG_ON(expr)
65#endif
66
Alex Aizman7ba24712005-08-04 19:30:08 -070067static unsigned int iscsi_max_lun = 512;
68module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
69
Olaf Kirchda32dd62007-12-13 12:43:21 -060070static int iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -060071 struct iscsi_segment *segment);
Alex Aizman7ba24712005-08-04 19:30:08 -070072
Olaf Kirchda32dd62007-12-13 12:43:21 -060073/*
Olaf Kircha8ac6312007-12-13 12:43:35 -060074 * Scatterlist handling: inside the iscsi_segment, we
Olaf Kirchda32dd62007-12-13 12:43:21 -060075 * remember an index into the scatterlist, and set data/size
76 * to the current scatterlist entry. For highmem pages, we
77 * kmap as needed.
78 *
79 * Note that the page is unmapped when we return from
80 * TCP's data_ready handler, so we may end up mapping and
81 * unmapping the same page repeatedly. The whole reason
82 * for this is that we shouldn't keep the page mapped
83 * outside the softirq.
84 */
85
86/**
Olaf Kircha8ac6312007-12-13 12:43:35 -060087 * iscsi_tcp_segment_init_sg - init indicated scatterlist entry
88 * @segment: the buffer object
89 * @sg: scatterlist
Olaf Kirchda32dd62007-12-13 12:43:21 -060090 * @offset: byte offset into that sg entry
91 *
Olaf Kircha8ac6312007-12-13 12:43:35 -060092 * This function sets up the segment so that subsequent
Olaf Kirchda32dd62007-12-13 12:43:21 -060093 * data is copied to the indicated sg entry, at the given
94 * offset.
95 */
96static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -060097iscsi_tcp_segment_init_sg(struct iscsi_segment *segment,
98 struct scatterlist *sg, unsigned int offset)
Alex Aizman7ba24712005-08-04 19:30:08 -070099{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600100 segment->sg = sg;
101 segment->sg_offset = offset;
102 segment->size = min(sg->length - offset,
103 segment->total_size - segment->total_copied);
104 segment->data = NULL;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600105}
Alex Aizman7ba24712005-08-04 19:30:08 -0700106
Olaf Kirchda32dd62007-12-13 12:43:21 -0600107/**
Olaf Kircha8ac6312007-12-13 12:43:35 -0600108 * iscsi_tcp_segment_map - map the current S/G page
109 * @segment: iscsi_segment
110 * @recv: 1 if called from recv path
Olaf Kirchda32dd62007-12-13 12:43:21 -0600111 *
112 * We only need to possibly kmap data if scatter lists are being used,
113 * because the iscsi passthrough and internal IO paths will never use high
114 * mem pages.
115 */
116static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600117iscsi_tcp_segment_map(struct iscsi_segment *segment, int recv)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600118{
119 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700120
Olaf Kircha8ac6312007-12-13 12:43:35 -0600121 if (segment->data != NULL || !segment->sg)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600122 return;
Alex Aizman7ba24712005-08-04 19:30:08 -0700123
Olaf Kircha8ac6312007-12-13 12:43:35 -0600124 sg = segment->sg;
125 BUG_ON(segment->sg_mapped);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600126 BUG_ON(sg->length == 0);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600127
128 /*
129 * If the page count is greater than one it is ok to send
130 * to the network layer's zero copy send path. If not we
131 * have to go the slow sendmsg path. We always map for the
132 * recv path.
133 */
134 if (page_count(sg_page(sg)) >= 1 && !recv)
135 return;
136
137 debug_tcp("iscsi_tcp_segment_map %s %p\n", recv ? "recv" : "xmit",
138 segment);
139 segment->sg_mapped = kmap_atomic(sg_page(sg), KM_SOFTIRQ0);
140 segment->data = segment->sg_mapped + sg->offset + segment->sg_offset;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600141}
Alex Aizman7ba24712005-08-04 19:30:08 -0700142
Olaf Kirchda32dd62007-12-13 12:43:21 -0600143static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600144iscsi_tcp_segment_unmap(struct iscsi_segment *segment)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600145{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600146 debug_tcp("iscsi_tcp_segment_unmap %p\n", segment);
147
148 if (segment->sg_mapped) {
149 debug_tcp("iscsi_tcp_segment_unmap valid\n");
150 kunmap_atomic(segment->sg_mapped, KM_SOFTIRQ0);
151 segment->sg_mapped = NULL;
152 segment->data = NULL;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600153 }
154}
Alex Aizman7ba24712005-08-04 19:30:08 -0700155
Olaf Kirchda32dd62007-12-13 12:43:21 -0600156/*
157 * Splice the digest buffer into the buffer
158 */
159static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600160iscsi_tcp_segment_splice_digest(struct iscsi_segment *segment, void *digest)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600161{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600162 segment->data = digest;
163 segment->digest_len = ISCSI_DIGEST_SIZE;
164 segment->total_size += ISCSI_DIGEST_SIZE;
165 segment->size = ISCSI_DIGEST_SIZE;
166 segment->copied = 0;
167 segment->sg = NULL;
168 segment->hash = NULL;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600169}
Alex Aizman7ba24712005-08-04 19:30:08 -0700170
Olaf Kirchda32dd62007-12-13 12:43:21 -0600171/**
Olaf Kircha8ac6312007-12-13 12:43:35 -0600172 * iscsi_tcp_segment_done - check whether the segment is complete
173 * @segment: iscsi segment to check
174 * @recv: set to one of this is called from the recv path
175 * @copied: number of bytes copied
Olaf Kirchda32dd62007-12-13 12:43:21 -0600176 *
Olaf Kircha8ac6312007-12-13 12:43:35 -0600177 * Check if we're done receiving this segment. If the receive
Olaf Kirchda32dd62007-12-13 12:43:21 -0600178 * buffer is full but we expect more data, move on to the
179 * next entry in the scatterlist.
180 *
181 * If the amount of data we received isn't a multiple of 4,
182 * we will transparently receive the pad bytes, too.
183 *
184 * This function must be re-entrant.
185 */
186static inline int
Olaf Kircha8ac6312007-12-13 12:43:35 -0600187iscsi_tcp_segment_done(struct iscsi_segment *segment, int recv, unsigned copied)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600188{
189 static unsigned char padbuf[ISCSI_PAD_LEN];
Olaf Kircha8ac6312007-12-13 12:43:35 -0600190 struct scatterlist sg;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600191 unsigned int pad;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600192
Olaf Kircha8ac6312007-12-13 12:43:35 -0600193 debug_tcp("copied %u %u size %u %s\n", segment->copied, copied,
194 segment->size, recv ? "recv" : "xmit");
195 if (segment->hash && copied) {
196 /*
197 * If a segment is kmapd we must unmap it before sending
198 * to the crypto layer since that will try to kmap it again.
199 */
200 iscsi_tcp_segment_unmap(segment);
201
202 if (!segment->data) {
203 sg_init_table(&sg, 1);
204 sg_set_page(&sg, sg_page(segment->sg), copied,
205 segment->copied + segment->sg_offset +
206 segment->sg->offset);
207 } else
208 sg_init_one(&sg, segment->data + segment->copied,
209 copied);
210 crypto_hash_update(segment->hash, &sg, copied);
211 }
212
213 segment->copied += copied;
214 if (segment->copied < segment->size) {
215 iscsi_tcp_segment_map(segment, recv);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600216 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700217 }
218
Olaf Kircha8ac6312007-12-13 12:43:35 -0600219 segment->total_copied += segment->copied;
220 segment->copied = 0;
221 segment->size = 0;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600222
223 /* Unmap the current scatterlist page, if there is one. */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600224 iscsi_tcp_segment_unmap(segment);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600225
226 /* Do we have more scatterlist entries? */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600227 debug_tcp("total copied %u total size %u\n", segment->total_copied,
228 segment->total_size);
229 if (segment->total_copied < segment->total_size) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600230 /* Proceed to the next entry in the scatterlist. */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600231 iscsi_tcp_segment_init_sg(segment, sg_next(segment->sg),
232 0);
233 iscsi_tcp_segment_map(segment, recv);
234 BUG_ON(segment->size == 0);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600235 return 0;
236 }
237
238 /* Do we need to handle padding? */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600239 pad = iscsi_padding(segment->total_copied);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600240 if (pad != 0) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600241 debug_tcp("consume %d pad bytes\n", pad);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600242 segment->total_size += pad;
243 segment->size = pad;
244 segment->data = padbuf;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600245 return 0;
246 }
247
248 /*
Olaf Kircha8ac6312007-12-13 12:43:35 -0600249 * Set us up for transferring the data digest. hdr digest
Olaf Kirchda32dd62007-12-13 12:43:21 -0600250 * is completely handled in hdr done function.
251 */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600252 if (segment->hash) {
253 crypto_hash_final(segment->hash, segment->digest);
254 iscsi_tcp_segment_splice_digest(segment,
255 recv ? segment->recv_digest : segment->digest);
256 return 0;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600257 }
258
259 return 1;
260}
261
262/**
Olaf Kircha8ac6312007-12-13 12:43:35 -0600263 * iscsi_tcp_xmit_segment - transmit segment
Olaf Kirchda32dd62007-12-13 12:43:21 -0600264 * @tcp_conn: the iSCSI TCP connection
Olaf Kircha8ac6312007-12-13 12:43:35 -0600265 * @segment: the buffer to transmnit
266 *
267 * This function transmits as much of the buffer as
268 * the network layer will accept, and returns the number of
269 * bytes transmitted.
270 *
271 * If CRC hashing is enabled, the function will compute the
272 * hash as it goes. When the entire segment has been transmitted,
273 * it will retrieve the hash value and send it as well.
274 */
275static int
276iscsi_tcp_xmit_segment(struct iscsi_tcp_conn *tcp_conn,
277 struct iscsi_segment *segment)
278{
279 struct socket *sk = tcp_conn->sock;
280 unsigned int copied = 0;
281 int r = 0;
282
283 while (!iscsi_tcp_segment_done(segment, 0, r)) {
284 struct scatterlist *sg;
285 unsigned int offset, copy;
286 int flags = 0;
287
288 r = 0;
289 offset = segment->copied;
290 copy = segment->size - offset;
291
292 if (segment->total_copied + segment->size < segment->total_size)
293 flags |= MSG_MORE;
294
295 /* Use sendpage if we can; else fall back to sendmsg */
296 if (!segment->data) {
297 sg = segment->sg;
298 offset += segment->sg_offset + sg->offset;
299 r = tcp_conn->sendpage(sk, sg_page(sg), offset, copy,
300 flags);
301 } else {
302 struct msghdr msg = { .msg_flags = flags };
303 struct kvec iov = {
304 .iov_base = segment->data + offset,
305 .iov_len = copy
306 };
307
308 r = kernel_sendmsg(sk, &msg, &iov, 1, copy);
309 }
310
311 if (r < 0) {
312 iscsi_tcp_segment_unmap(segment);
313 if (copied || r == -EAGAIN)
314 break;
315 return r;
316 }
317 copied += r;
318 }
319 return copied;
320}
321
322/**
323 * iscsi_tcp_segment_recv - copy data to segment
324 * @tcp_conn: the iSCSI TCP connection
325 * @segment: the buffer to copy to
Olaf Kirchda32dd62007-12-13 12:43:21 -0600326 * @ptr: data pointer
327 * @len: amount of data available
328 *
329 * This function copies up to @len bytes to the
330 * given buffer, and returns the number of bytes
331 * consumed, which can actually be less than @len.
332 *
333 * If hash digest is enabled, the function will update the
334 * hash while copying.
335 * Combining these two operations doesn't buy us a lot (yet),
336 * but in the future we could implement combined copy+crc,
337 * just way we do for network layer checksums.
338 */
339static int
Olaf Kircha8ac6312007-12-13 12:43:35 -0600340iscsi_tcp_segment_recv(struct iscsi_tcp_conn *tcp_conn,
341 struct iscsi_segment *segment, const void *ptr,
342 unsigned int len)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600343{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600344 unsigned int copy = 0, copied = 0;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600345
Olaf Kircha8ac6312007-12-13 12:43:35 -0600346 while (!iscsi_tcp_segment_done(segment, 1, copy)) {
347 if (copied == len) {
348 debug_tcp("iscsi_tcp_segment_recv copied %d bytes\n",
349 len);
350 break;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600351 }
Olaf Kircha8ac6312007-12-13 12:43:35 -0600352
353 copy = min(len - copied, segment->size - segment->copied);
354 debug_tcp("iscsi_tcp_segment_recv copying %d\n", copy);
355 memcpy(segment->data + segment->copied, ptr + copied, copy);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600356 copied += copy;
357 }
Olaf Kirchda32dd62007-12-13 12:43:21 -0600358 return copied;
359}
360
361static inline void
362iscsi_tcp_dgst_header(struct hash_desc *hash, const void *hdr, size_t hdrlen,
363 unsigned char digest[ISCSI_DIGEST_SIZE])
364{
365 struct scatterlist sg;
366
367 sg_init_one(&sg, hdr, hdrlen);
368 crypto_hash_digest(hash, &sg, hdrlen, digest);
369}
370
371static inline int
372iscsi_tcp_dgst_verify(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600373 struct iscsi_segment *segment)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600374{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600375 if (!segment->digest_len)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600376 return 1;
377
Olaf Kircha8ac6312007-12-13 12:43:35 -0600378 if (memcmp(segment->recv_digest, segment->digest,
379 segment->digest_len)) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600380 debug_scsi("digest mismatch\n");
381 return 0;
382 }
383
384 return 1;
385}
386
387/*
Olaf Kircha8ac6312007-12-13 12:43:35 -0600388 * Helper function to set up segment buffer
Olaf Kirchda32dd62007-12-13 12:43:21 -0600389 */
390static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600391__iscsi_segment_init(struct iscsi_segment *segment, size_t size,
392 iscsi_segment_done_fn_t *done, struct hash_desc *hash)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600393{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600394 memset(segment, 0, sizeof(*segment));
395 segment->total_size = size;
396 segment->done = done;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600397
398 if (hash) {
Olaf Kircha8ac6312007-12-13 12:43:35 -0600399 segment->hash = hash;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600400 crypto_hash_init(hash);
401 }
402}
403
404static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600405iscsi_segment_init_linear(struct iscsi_segment *segment, void *data,
406 size_t size, iscsi_segment_done_fn_t *done,
407 struct hash_desc *hash)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600408{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600409 __iscsi_segment_init(segment, size, done, hash);
410 segment->data = data;
411 segment->size = size;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600412}
413
414static inline int
Olaf Kircha8ac6312007-12-13 12:43:35 -0600415iscsi_segment_seek_sg(struct iscsi_segment *segment,
416 struct scatterlist *sg_list, unsigned int sg_count,
417 unsigned int offset, size_t size,
418 iscsi_segment_done_fn_t *done, struct hash_desc *hash)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600419{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600420 struct scatterlist *sg;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600421 unsigned int i;
422
Olaf Kircha8ac6312007-12-13 12:43:35 -0600423 debug_scsi("iscsi_segment_seek_sg offset %u size %llu\n",
424 offset, size);
425 __iscsi_segment_init(segment, size, done, hash);
426 for_each_sg(sg_list, sg, sg_count, i) {
427 debug_scsi("sg %d, len %u offset %u\n", i, sg->length,
428 sg->offset);
429 if (offset < sg->length) {
430 iscsi_tcp_segment_init_sg(segment, sg, offset);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600431 return 0;
432 }
Olaf Kircha8ac6312007-12-13 12:43:35 -0600433 offset -= sg->length;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600434 }
435
436 return ISCSI_ERR_DATA_OFFSET;
437}
438
439/**
Olaf Kircha8ac6312007-12-13 12:43:35 -0600440 * iscsi_tcp_hdr_recv_prep - prep segment for hdr reception
Olaf Kirchda32dd62007-12-13 12:43:21 -0600441 * @tcp_conn: iscsi connection to prep for
442 *
443 * This function always passes NULL for the hash argument, because when this
444 * function is called we do not yet know the final size of the header and want
445 * to delay the digest processing until we know that.
446 */
447static void
448iscsi_tcp_hdr_recv_prep(struct iscsi_tcp_conn *tcp_conn)
449{
450 debug_tcp("iscsi_tcp_hdr_recv_prep(%p%s)\n", tcp_conn,
451 tcp_conn->iscsi_conn->hdrdgst_en ? ", digest enabled" : "");
Olaf Kircha8ac6312007-12-13 12:43:35 -0600452 iscsi_segment_init_linear(&tcp_conn->in.segment,
Olaf Kirchda32dd62007-12-13 12:43:21 -0600453 tcp_conn->in.hdr_buf, sizeof(struct iscsi_hdr),
454 iscsi_tcp_hdr_recv_done, NULL);
455}
456
457/*
458 * Handle incoming reply to any other type of command
459 */
460static int
461iscsi_tcp_data_recv_done(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600462 struct iscsi_segment *segment)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600463{
464 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
465 int rc = 0;
466
Olaf Kircha8ac6312007-12-13 12:43:35 -0600467 if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
Olaf Kirchda32dd62007-12-13 12:43:21 -0600468 return ISCSI_ERR_DATA_DGST;
469
470 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr,
471 conn->data, tcp_conn->in.datalen);
472 if (rc)
473 return rc;
474
475 iscsi_tcp_hdr_recv_prep(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700476 return 0;
477}
478
Olaf Kirchda32dd62007-12-13 12:43:21 -0600479static void
480iscsi_tcp_data_recv_prep(struct iscsi_tcp_conn *tcp_conn)
481{
482 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
483 struct hash_desc *rx_hash = NULL;
484
485 if (conn->datadgst_en)
486 rx_hash = &tcp_conn->rx_hash;
487
Olaf Kircha8ac6312007-12-13 12:43:35 -0600488 iscsi_segment_init_linear(&tcp_conn->in.segment,
Olaf Kirchda32dd62007-12-13 12:43:21 -0600489 conn->data, tcp_conn->in.datalen,
490 iscsi_tcp_data_recv_done, rx_hash);
491}
492
Mike Christie30a6c652006-04-06 21:13:39 -0500493/*
494 * must be called with session lock
495 */
496static void
Mike Christieb6c395e2006-07-24 15:47:15 -0500497iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -0700498{
Mike Christie5bb0b552006-04-06 21:26:46 -0500499 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christieb6c395e2006-07-24 15:47:15 -0500500 struct iscsi_r2t_info *r2t;
Alex Aizman7ba24712005-08-04 19:30:08 -0700501
Mike Christieb6c395e2006-07-24 15:47:15 -0500502 /* flush ctask's r2t queues */
503 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
504 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
505 sizeof(void*));
506 debug_scsi("iscsi_tcp_cleanup_ctask pending r2t dropped\n");
507 }
508
Olaf Kircha8ac6312007-12-13 12:43:35 -0600509 r2t = tcp_ctask->r2t;
510 if (r2t != NULL) {
511 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
512 sizeof(void*));
513 tcp_ctask->r2t = NULL;
514 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700515}
516
517/**
518 * iscsi_data_rsp - SCSI Data-In Response processing
519 * @conn: iscsi connection
520 * @ctask: scsi command task
521 **/
522static int
523iscsi_data_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
524{
Mike Christie5bb0b552006-04-06 21:26:46 -0500525 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
526 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
527 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700528 struct iscsi_session *session = conn->session;
Mike Christie857ae0b2007-05-30 12:57:15 -0500529 struct scsi_cmnd *sc = ctask->sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700530 int datasn = be32_to_cpu(rhdr->datasn);
531
Mike Christie77a23c22007-05-30 12:57:18 -0500532 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Mike Christie5bb0b552006-04-06 21:26:46 -0500533 if (tcp_conn->in.datalen == 0)
Alex Aizman7ba24712005-08-04 19:30:08 -0700534 return 0;
535
Mike Christied473cc72007-05-30 12:57:14 -0500536 if (tcp_ctask->exp_datasn != datasn) {
537 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->datasn(%d)\n",
538 __FUNCTION__, tcp_ctask->exp_datasn, datasn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700539 return ISCSI_ERR_DATASN;
Mike Christied473cc72007-05-30 12:57:14 -0500540 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700541
Mike Christied473cc72007-05-30 12:57:14 -0500542 tcp_ctask->exp_datasn++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700543
Mike Christie5bb0b552006-04-06 21:26:46 -0500544 tcp_ctask->data_offset = be32_to_cpu(rhdr->offset);
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900545 if (tcp_ctask->data_offset + tcp_conn->in.datalen > scsi_bufflen(sc)) {
Mike Christie857ae0b2007-05-30 12:57:15 -0500546 debug_tcp("%s: data_offset(%d) + data_len(%d) > total_length_in(%d)\n",
547 __FUNCTION__, tcp_ctask->data_offset,
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900548 tcp_conn->in.datalen, scsi_bufflen(sc));
Alex Aizman7ba24712005-08-04 19:30:08 -0700549 return ISCSI_ERR_DATA_OFFSET;
Mike Christie857ae0b2007-05-30 12:57:15 -0500550 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700551
552 if (rhdr->flags & ISCSI_FLAG_DATA_STATUS) {
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600553 sc->result = (DID_OK << 16) | rhdr->cmd_status;
Alex Aizman7ba24712005-08-04 19:30:08 -0700554 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600555 if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW |
556 ISCSI_FLAG_DATA_OVERFLOW)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700557 int res_count = be32_to_cpu(rhdr->residual_count);
558
559 if (res_count > 0 &&
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600560 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
561 res_count <= scsi_bufflen(sc)))
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900562 scsi_set_resid(sc, res_count);
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600563 else
Alex Aizman7ba24712005-08-04 19:30:08 -0700564 sc->result = (DID_BAD_TARGET << 16) |
565 rhdr->cmd_status;
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600566 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700567 }
568
569 conn->datain_pdus_cnt++;
570 return 0;
571}
572
573/**
574 * iscsi_solicit_data_init - initialize first Data-Out
575 * @conn: iscsi connection
576 * @ctask: scsi command task
577 * @r2t: R2T info
578 *
579 * Notes:
580 * Initialize first Data-Out within this R2T sequence and finds
581 * proper data_offset within this SCSI command.
582 *
583 * This function is called with connection lock taken.
584 **/
585static void
586iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
587 struct iscsi_r2t_info *r2t)
588{
589 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700590
Mike Christieffbfe922006-05-18 20:31:36 -0500591 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700592 memset(hdr, 0, sizeof(struct iscsi_data));
593 hdr->ttt = r2t->ttt;
594 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
595 r2t->solicit_datasn++;
596 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500597 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
598 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700599 hdr->exp_statsn = r2t->exp_statsn;
600 hdr->offset = cpu_to_be32(r2t->data_offset);
601 if (r2t->data_length > conn->max_xmit_dlength) {
602 hton24(hdr->dlength, conn->max_xmit_dlength);
603 r2t->data_count = conn->max_xmit_dlength;
604 hdr->flags = 0;
605 } else {
606 hton24(hdr->dlength, r2t->data_length);
607 r2t->data_count = r2t->data_length;
608 hdr->flags = ISCSI_FLAG_CMD_FINAL;
609 }
610 conn->dataout_pdus_cnt++;
611
612 r2t->sent = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700613}
614
615/**
616 * iscsi_r2t_rsp - iSCSI R2T Response processing
617 * @conn: iscsi connection
618 * @ctask: scsi command task
619 **/
620static int
621iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
622{
623 struct iscsi_r2t_info *r2t;
624 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500625 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
626 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
627 struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700628 int r2tsn = be32_to_cpu(rhdr->r2tsn);
629 int rc;
630
Mike Christie98a94162006-08-31 18:09:26 -0400631 if (tcp_conn->in.datalen) {
632 printk(KERN_ERR "iscsi_tcp: invalid R2t with datalen %d\n",
633 tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700634 return ISCSI_ERR_DATALEN;
Mike Christie98a94162006-08-31 18:09:26 -0400635 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700636
Mike Christied473cc72007-05-30 12:57:14 -0500637 if (tcp_ctask->exp_datasn != r2tsn){
638 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->r2tsn(%d)\n",
639 __FUNCTION__, tcp_ctask->exp_datasn, r2tsn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700640 return ISCSI_ERR_R2TSN;
Mike Christied473cc72007-05-30 12:57:14 -0500641 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700642
Alex Aizman7ba24712005-08-04 19:30:08 -0700643 /* fill-in new R2T associated with the task */
644 spin_lock(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -0500645 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
646
Mike Christie843c0a82007-12-13 12:43:20 -0600647 if (!ctask->sc || session->state != ISCSI_STATE_LOGGED_IN) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700648 printk(KERN_INFO "iscsi_tcp: dropping R2T itt %d in "
649 "recovery...\n", ctask->itt);
650 spin_unlock(&session->lock);
651 return 0;
652 }
Mike Christieb6c395e2006-07-24 15:47:15 -0500653
Mike Christie5bb0b552006-04-06 21:26:46 -0500654 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700655 BUG_ON(!rc);
656
657 r2t->exp_statsn = rhdr->statsn;
658 r2t->data_length = be32_to_cpu(rhdr->data_length);
Mike Christie98a94162006-08-31 18:09:26 -0400659 if (r2t->data_length == 0) {
660 printk(KERN_ERR "iscsi_tcp: invalid R2T with zero data len\n");
Olaf Kirch03766a12007-12-13 12:43:36 -0600661 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
662 sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700663 spin_unlock(&session->lock);
664 return ISCSI_ERR_DATALEN;
665 }
666
Mike Christie98a94162006-08-31 18:09:26 -0400667 if (r2t->data_length > session->max_burst)
668 debug_scsi("invalid R2T with data len %u and max burst %u."
669 "Attempting to execute request.\n",
670 r2t->data_length, session->max_burst);
671
Alex Aizman7ba24712005-08-04 19:30:08 -0700672 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900673 if (r2t->data_offset + r2t->data_length > scsi_bufflen(ctask->sc)) {
Mike Christie98a94162006-08-31 18:09:26 -0400674 printk(KERN_ERR "iscsi_tcp: invalid R2T with data len %u at "
675 "offset %u and total length %d\n", r2t->data_length,
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900676 r2t->data_offset, scsi_bufflen(ctask->sc));
Olaf Kirch03766a12007-12-13 12:43:36 -0600677 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
678 sizeof(void*));
679 spin_unlock(&session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700680 return ISCSI_ERR_DATALEN;
681 }
682
683 r2t->ttt = rhdr->ttt; /* no flip */
684 r2t->solicit_datasn = 0;
685
686 iscsi_solicit_data_init(conn, ctask, r2t);
687
Mike Christied473cc72007-05-30 12:57:14 -0500688 tcp_ctask->exp_datasn = r2tsn + 1;
Mike Christie5bb0b552006-04-06 21:26:46 -0500689 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700690 conn->r2t_pdus_cnt++;
Mike Christie843c0a82007-12-13 12:43:20 -0600691
692 iscsi_requeue_ctask(ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -0700693 spin_unlock(&session->lock);
694
695 return 0;
696}
697
Olaf Kirchda32dd62007-12-13 12:43:21 -0600698/*
699 * Handle incoming reply to DataIn command
700 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700701static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600702iscsi_tcp_process_data_in(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600703 struct iscsi_segment *segment)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600704{
705 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
706 struct iscsi_hdr *hdr = tcp_conn->in.hdr;
707 int rc;
708
Olaf Kircha8ac6312007-12-13 12:43:35 -0600709 if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
Olaf Kirchda32dd62007-12-13 12:43:21 -0600710 return ISCSI_ERR_DATA_DGST;
711
712 /* check for non-exceptional status */
713 if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
714 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
715 if (rc)
716 return rc;
717 }
718
719 iscsi_tcp_hdr_recv_prep(tcp_conn);
720 return 0;
721}
722
723/**
724 * iscsi_tcp_hdr_dissect - process PDU header
725 * @conn: iSCSI connection
726 * @hdr: PDU header
727 *
728 * This function analyzes the header of the PDU received,
729 * and performs several sanity checks. If the PDU is accompanied
730 * by data, the receive buffer is set up to copy the incoming data
731 * to the correct location.
732 */
733static int
734iscsi_tcp_hdr_dissect(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
Alex Aizman7ba24712005-08-04 19:30:08 -0700735{
Mike Christie5bb0b552006-04-06 21:26:46 -0500736 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700737 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500738 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600739 struct iscsi_cmd_task *ctask;
740 uint32_t itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700741
742 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500743 tcp_conn->in.datalen = ntoh24(hdr->dlength);
744 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700745 printk(KERN_ERR "iscsi_tcp: datalen %d > %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500746 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700747 return ISCSI_ERR_DATALEN;
748 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700749
Olaf Kirchda32dd62007-12-13 12:43:21 -0600750 /* Additional header segments. So far, we don't
751 * process additional headers.
752 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500753 ahslen = hdr->hlength << 2;
Alex Aizman7ba24712005-08-04 19:30:08 -0700754
Mike Christie5bb0b552006-04-06 21:26:46 -0500755 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700756 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500757 rc = iscsi_verify_itt(conn, hdr, &itt);
Mike Christie7a53dc52007-12-13 12:43:37 -0600758 if (rc)
Mike Christie5bb0b552006-04-06 21:26:46 -0500759 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700760
Olaf Kirchda32dd62007-12-13 12:43:21 -0600761 debug_tcp("opcode 0x%x ahslen %d datalen %d\n",
762 opcode, ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700763
Mike Christie5bb0b552006-04-06 21:26:46 -0500764 switch(opcode) {
765 case ISCSI_OP_SCSI_DATA_IN:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600766 ctask = session->cmds[itt];
767 rc = iscsi_data_rsp(conn, ctask);
Mike Christie275fd7d2006-07-24 15:47:17 -0500768 if (rc)
769 return rc;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600770 if (tcp_conn->in.datalen) {
771 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
772 struct hash_desc *rx_hash = NULL;
773
774 /*
775 * Setup copy of Data-In into the Scsi_Cmnd
776 * Scatterlist case:
Olaf Kircha8ac6312007-12-13 12:43:35 -0600777 * We set up the iscsi_segment to point to the next
Olaf Kirchda32dd62007-12-13 12:43:21 -0600778 * scatterlist entry to copy to. As we go along,
779 * we move on to the next scatterlist entry and
780 * update the digest per-entry.
781 */
782 if (conn->datadgst_en)
783 rx_hash = &tcp_conn->rx_hash;
784
785 debug_tcp("iscsi_tcp_begin_data_in(%p, offset=%d, "
786 "datalen=%d)\n", tcp_conn,
787 tcp_ctask->data_offset,
788 tcp_conn->in.datalen);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600789 return iscsi_segment_seek_sg(&tcp_conn->in.segment,
790 scsi_sglist(ctask->sc),
791 scsi_sg_count(ctask->sc),
792 tcp_ctask->data_offset,
793 tcp_conn->in.datalen,
794 iscsi_tcp_process_data_in,
795 rx_hash);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600796 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500797 /* fall through */
798 case ISCSI_OP_SCSI_CMD_RSP:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600799 if (tcp_conn->in.datalen) {
800 iscsi_tcp_data_recv_prep(tcp_conn);
801 return 0;
802 }
803 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500804 break;
805 case ISCSI_OP_R2T:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600806 ctask = session->cmds[itt];
Mike Christie5bb0b552006-04-06 21:26:46 -0500807 if (ahslen)
808 rc = ISCSI_ERR_AHSLEN;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600809 else if (ctask->sc->sc_data_direction == DMA_TO_DEVICE)
810 rc = iscsi_r2t_rsp(conn, ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -0500811 else
812 rc = ISCSI_ERR_PROTO;
813 break;
814 case ISCSI_OP_LOGIN_RSP:
815 case ISCSI_OP_TEXT_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500816 case ISCSI_OP_REJECT:
817 case ISCSI_OP_ASYNC_EVENT:
Mike Christiec8dc1e52006-07-24 15:47:39 -0500818 /*
819 * It is possible that we could get a PDU with a buffer larger
820 * than 8K, but there are no targets that currently do this.
821 * For now we fail until we find a vendor that needs it
822 */
Olaf Kirchda32dd62007-12-13 12:43:21 -0600823 if (ISCSI_DEF_MAX_RECV_SEG_LEN < tcp_conn->in.datalen) {
Mike Christiec8dc1e52006-07-24 15:47:39 -0500824 printk(KERN_ERR "iscsi_tcp: received buffer of len %u "
825 "but conn buffer is only %u (opcode %0x)\n",
826 tcp_conn->in.datalen,
Mike Christiebf32ed32007-02-28 17:32:17 -0600827 ISCSI_DEF_MAX_RECV_SEG_LEN, opcode);
Mike Christiec8dc1e52006-07-24 15:47:39 -0500828 rc = ISCSI_ERR_PROTO;
829 break;
830 }
831
Olaf Kirchda32dd62007-12-13 12:43:21 -0600832 /* If there's data coming in with the response,
833 * receive it to the connection's buffer.
834 */
835 if (tcp_conn->in.datalen) {
836 iscsi_tcp_data_recv_prep(tcp_conn);
837 return 0;
838 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500839 /* fall through */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500840 case ISCSI_OP_LOGOUT_RSP:
841 case ISCSI_OP_NOOP_IN:
Mike Christie5bb0b552006-04-06 21:26:46 -0500842 case ISCSI_OP_SCSI_TMFUNC_RSP:
843 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
844 break;
845 default:
846 rc = ISCSI_ERR_BAD_OPCODE;
847 break;
848 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700849
Olaf Kirchda32dd62007-12-13 12:43:21 -0600850 if (rc == 0) {
851 /* Anything that comes with data should have
852 * been handled above. */
853 if (tcp_conn->in.datalen)
854 return ISCSI_ERR_PROTO;
855 iscsi_tcp_hdr_recv_prep(tcp_conn);
856 }
857
Alex Aizman7ba24712005-08-04 19:30:08 -0700858 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700859}
860
Olaf Kirchda32dd62007-12-13 12:43:21 -0600861/**
862 * iscsi_tcp_hdr_recv_done - process PDU header
863 *
864 * This is the callback invoked when the PDU header has
865 * been received. If the header is followed by additional
866 * header segments, we go back for more data.
867 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700868static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600869iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600870 struct iscsi_segment *segment)
Alex Aizman7ba24712005-08-04 19:30:08 -0700871{
Olaf Kirchda32dd62007-12-13 12:43:21 -0600872 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
873 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700874
Olaf Kirchda32dd62007-12-13 12:43:21 -0600875 /* Check if there are additional header segments
876 * *prior* to computing the digest, because we
877 * may need to go back to the caller for more.
878 */
879 hdr = (struct iscsi_hdr *) tcp_conn->in.hdr_buf;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600880 if (segment->copied == sizeof(struct iscsi_hdr) && hdr->hlength) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600881 /* Bump the header length - the caller will
882 * just loop around and get the AHS for us, and
883 * call again. */
884 unsigned int ahslen = hdr->hlength << 2;
Alex Aizman7ba24712005-08-04 19:30:08 -0700885
Olaf Kirchda32dd62007-12-13 12:43:21 -0600886 /* Make sure we don't overflow */
887 if (sizeof(*hdr) + ahslen > sizeof(tcp_conn->in.hdr_buf))
888 return ISCSI_ERR_AHSLEN;
889
Olaf Kircha8ac6312007-12-13 12:43:35 -0600890 segment->total_size += ahslen;
891 segment->size += ahslen;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600892 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700893 }
Olaf Kirchda32dd62007-12-13 12:43:21 -0600894
895 /* We're done processing the header. See if we're doing
896 * header digests; if so, set up the recv_digest buffer
897 * and go back for more. */
898 if (conn->hdrdgst_en) {
Olaf Kircha8ac6312007-12-13 12:43:35 -0600899 if (segment->digest_len == 0) {
900 iscsi_tcp_segment_splice_digest(segment,
901 segment->recv_digest);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600902 return 0;
903 }
904 iscsi_tcp_dgst_header(&tcp_conn->rx_hash, hdr,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600905 segment->total_copied - ISCSI_DIGEST_SIZE,
906 segment->digest);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600907
Olaf Kircha8ac6312007-12-13 12:43:35 -0600908 if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
Olaf Kirchda32dd62007-12-13 12:43:21 -0600909 return ISCSI_ERR_HDR_DGST;
910 }
911
912 tcp_conn->in.hdr = hdr;
913 return iscsi_tcp_hdr_dissect(conn, hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -0700914}
915
916/**
Olaf Kirchda32dd62007-12-13 12:43:21 -0600917 * iscsi_tcp_recv - TCP receive in sendfile fashion
Alex Aizman7ba24712005-08-04 19:30:08 -0700918 * @rd_desc: read descriptor
919 * @skb: socket buffer
920 * @offset: offset in skb
921 * @len: skb->len - offset
922 **/
923static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600924iscsi_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
925 unsigned int offset, size_t len)
Alex Aizman7ba24712005-08-04 19:30:08 -0700926{
Alex Aizman7ba24712005-08-04 19:30:08 -0700927 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500928 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600929 struct iscsi_segment *segment = &tcp_conn->in.segment;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600930 struct skb_seq_state seq;
931 unsigned int consumed = 0;
932 int rc = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700933
Olaf Kirchda32dd62007-12-13 12:43:21 -0600934 debug_tcp("in %d bytes\n", skb->len - offset);
Alex Aizman7ba24712005-08-04 19:30:08 -0700935
936 if (unlikely(conn->suspend_rx)) {
937 debug_tcp("conn %d Rx suspended!\n", conn->id);
938 return 0;
939 }
940
Olaf Kirchda32dd62007-12-13 12:43:21 -0600941 skb_prepare_seq_read(skb, offset, skb->len, &seq);
942 while (1) {
943 unsigned int avail;
944 const u8 *ptr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700945
Olaf Kirchda32dd62007-12-13 12:43:21 -0600946 avail = skb_seq_read(consumed, &ptr, &seq);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600947 if (avail == 0) {
948 debug_tcp("no more data avail. Consumed %d\n",
949 consumed);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600950 break;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600951 }
952 BUG_ON(segment->copied >= segment->size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700953
Olaf Kirchda32dd62007-12-13 12:43:21 -0600954 debug_tcp("skb %p ptr=%p avail=%u\n", skb, ptr, avail);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600955 rc = iscsi_tcp_segment_recv(tcp_conn, segment, ptr, avail);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600956 BUG_ON(rc == 0);
957 consumed += rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500958
Olaf Kircha8ac6312007-12-13 12:43:35 -0600959 if (segment->total_copied >= segment->total_size) {
960 debug_tcp("segment done\n");
961 rc = segment->done(tcp_conn, segment);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600962 if (rc != 0) {
963 skb_abort_seq_read(&seq);
964 goto error;
Mike Christiedbdb0162007-05-30 12:57:20 -0500965 }
Mike Christiedbdb0162007-05-30 12:57:20 -0500966
Olaf Kirchda32dd62007-12-13 12:43:21 -0600967 /* The done() functions sets up the
Olaf Kircha8ac6312007-12-13 12:43:35 -0600968 * next segment. */
Alex Aizman7ba24712005-08-04 19:30:08 -0700969 }
970 }
Olaf Kircha8ac6312007-12-13 12:43:35 -0600971 skb_abort_seq_read(&seq);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600972 conn->rxdata_octets += consumed;
973 return consumed;
Alex Aizman7ba24712005-08-04 19:30:08 -0700974
Olaf Kirchda32dd62007-12-13 12:43:21 -0600975error:
976 debug_tcp("Error receiving PDU, errno=%d\n", rc);
977 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
978 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700979}
980
981static void
982iscsi_tcp_data_ready(struct sock *sk, int flag)
983{
984 struct iscsi_conn *conn = sk->sk_user_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600985 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700986 read_descriptor_t rd_desc;
987
988 read_lock(&sk->sk_callback_lock);
989
Mike Christie665b44a2006-05-02 19:46:49 -0500990 /*
Olaf Kirchda32dd62007-12-13 12:43:21 -0600991 * Use rd_desc to pass 'conn' to iscsi_tcp_recv.
Mike Christie665b44a2006-05-02 19:46:49 -0500992 * We set count to 1 because we want the network layer to
Olaf Kirchda32dd62007-12-13 12:43:21 -0600993 * hand us all the skbs that are available. iscsi_tcp_recv
Mike Christie665b44a2006-05-02 19:46:49 -0500994 * handled pdus that cross buffers or pdus that still need data.
995 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700996 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -0500997 rd_desc.count = 1;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600998 tcp_read_sock(sk, &rd_desc, iscsi_tcp_recv);
Alex Aizman7ba24712005-08-04 19:30:08 -0700999
1000 read_unlock(&sk->sk_callback_lock);
Olaf Kirchda32dd62007-12-13 12:43:21 -06001001
1002 /* If we had to (atomically) map a highmem page,
1003 * unmap it now. */
Olaf Kircha8ac6312007-12-13 12:43:35 -06001004 iscsi_tcp_segment_unmap(&tcp_conn->in.segment);
Alex Aizman7ba24712005-08-04 19:30:08 -07001005}
1006
1007static void
1008iscsi_tcp_state_change(struct sock *sk)
1009{
Mike Christie5bb0b552006-04-06 21:26:46 -05001010 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001011 struct iscsi_conn *conn;
1012 struct iscsi_session *session;
1013 void (*old_state_change)(struct sock *);
1014
1015 read_lock(&sk->sk_callback_lock);
1016
1017 conn = (struct iscsi_conn*)sk->sk_user_data;
1018 session = conn->session;
1019
Mike Christiee6273992005-11-29 23:12:49 -06001020 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1021 sk->sk_state == TCP_CLOSE) &&
1022 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001023 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1024 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1025 }
1026
Mike Christie5bb0b552006-04-06 21:26:46 -05001027 tcp_conn = conn->dd_data;
1028 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001029
1030 read_unlock(&sk->sk_callback_lock);
1031
1032 old_state_change(sk);
1033}
1034
1035/**
1036 * iscsi_write_space - Called when more output buffer space is available
1037 * @sk: socket space is available for
1038 **/
1039static void
1040iscsi_write_space(struct sock *sk)
1041{
1042 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001043 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1044
1045 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001046 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie55e32992006-01-13 18:05:53 -06001047 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001048}
1049
1050static void
1051iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1052{
Mike Christie5bb0b552006-04-06 21:26:46 -05001053 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1054 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001055
1056 /* assign new callbacks */
1057 write_lock_bh(&sk->sk_callback_lock);
1058 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001059 tcp_conn->old_data_ready = sk->sk_data_ready;
1060 tcp_conn->old_state_change = sk->sk_state_change;
1061 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001062 sk->sk_data_ready = iscsi_tcp_data_ready;
1063 sk->sk_state_change = iscsi_tcp_state_change;
1064 sk->sk_write_space = iscsi_write_space;
1065 write_unlock_bh(&sk->sk_callback_lock);
1066}
1067
1068static void
Mike Christie1c834692006-07-24 15:47:26 -05001069iscsi_conn_restore_callbacks(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001070{
Mike Christie5bb0b552006-04-06 21:26:46 -05001071 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001072
1073 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1074 write_lock_bh(&sk->sk_callback_lock);
1075 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001076 sk->sk_data_ready = tcp_conn->old_data_ready;
1077 sk->sk_state_change = tcp_conn->old_state_change;
1078 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001079 sk->sk_no_check = 0;
1080 write_unlock_bh(&sk->sk_callback_lock);
1081}
1082
1083/**
Olaf Kircha8ac6312007-12-13 12:43:35 -06001084 * iscsi_xmit - TCP transmit
1085 **/
1086static int
1087iscsi_xmit(struct iscsi_conn *conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001088{
Mike Christie5bb0b552006-04-06 21:26:46 -05001089 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001090 struct iscsi_segment *segment = &tcp_conn->out.segment;
1091 unsigned int consumed = 0;
1092 int rc = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001093
Olaf Kircha8ac6312007-12-13 12:43:35 -06001094 while (1) {
1095 rc = iscsi_tcp_xmit_segment(tcp_conn, segment);
1096 if (rc < 0)
1097 goto error;
1098 if (rc == 0)
1099 break;
1100
1101 consumed += rc;
1102
1103 if (segment->total_copied >= segment->total_size) {
1104 if (segment->done != NULL) {
1105 rc = segment->done(tcp_conn, segment);
1106 if (rc < 0)
1107 goto error;
1108 }
1109 }
1110 }
1111
1112 debug_tcp("xmit %d bytes\n", consumed);
1113
1114 conn->txdata_octets += consumed;
1115 return consumed;
1116
1117error:
1118 /* Transmit error. We could initiate error recovery
1119 * here. */
1120 debug_tcp("Error sending PDU, errno=%d\n", rc);
1121 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1122 return rc;
1123}
1124
1125/**
1126 * iscsi_tcp_xmit_qlen - return the number of bytes queued for xmit
1127 */
1128static inline int
1129iscsi_tcp_xmit_qlen(struct iscsi_conn *conn)
1130{
1131 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1132 struct iscsi_segment *segment = &tcp_conn->out.segment;
1133
1134 return segment->total_copied - segment->total_size;
1135}
1136
1137static inline int
1138iscsi_tcp_flush(struct iscsi_conn *conn)
1139{
1140 int rc;
1141
1142 while (iscsi_tcp_xmit_qlen(conn)) {
1143 rc = iscsi_xmit(conn);
1144 if (rc == 0)
1145 return -EAGAIN;
1146 if (rc < 0)
1147 return rc;
1148 }
1149
1150 return 0;
1151}
1152
1153/*
1154 * This is called when we're done sending the header.
1155 * Simply copy the data_segment to the send segment, and return.
1156 */
1157static int
1158iscsi_tcp_send_hdr_done(struct iscsi_tcp_conn *tcp_conn,
1159 struct iscsi_segment *segment)
1160{
1161 tcp_conn->out.segment = tcp_conn->out.data_segment;
1162 debug_tcp("Header done. Next segment size %u total_size %u\n",
1163 tcp_conn->out.segment.size, tcp_conn->out.segment.total_size);
1164 return 0;
1165}
1166
1167static void
1168iscsi_tcp_send_hdr_prep(struct iscsi_conn *conn, void *hdr, size_t hdrlen)
1169{
1170 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1171
1172 debug_tcp("%s(%p%s)\n", __FUNCTION__, tcp_conn,
1173 conn->hdrdgst_en? ", digest enabled" : "");
1174
1175 /* Clear the data segment - needs to be filled in by the
1176 * caller using iscsi_tcp_send_data_prep() */
1177 memset(&tcp_conn->out.data_segment, 0, sizeof(struct iscsi_segment));
1178
1179 /* If header digest is enabled, compute the CRC and
1180 * place the digest into the same buffer. We make
1181 * sure that both iscsi_tcp_ctask and mtask have
1182 * sufficient room.
Mike Christie7cae5152006-01-13 18:05:47 -06001183 */
Olaf Kircha8ac6312007-12-13 12:43:35 -06001184 if (conn->hdrdgst_en) {
1185 iscsi_tcp_dgst_header(&tcp_conn->tx_hash, hdr, hdrlen,
1186 hdr + hdrlen);
1187 hdrlen += ISCSI_DIGEST_SIZE;
Mike Christie3219e522006-05-30 00:37:28 -05001188 }
1189
Olaf Kircha8ac6312007-12-13 12:43:35 -06001190 /* Remember header pointer for later, when we need
1191 * to decide whether there's a payload to go along
1192 * with the header. */
1193 tcp_conn->out.hdr = hdr;
1194
1195 iscsi_segment_init_linear(&tcp_conn->out.segment, hdr, hdrlen,
1196 iscsi_tcp_send_hdr_done, NULL);
Alex Aizman7ba24712005-08-04 19:30:08 -07001197}
1198
Olaf Kircha8ac6312007-12-13 12:43:35 -06001199/*
1200 * Prepare the send buffer for the payload data.
1201 * Padding and checksumming will all be taken care
1202 * of by the iscsi_segment routines.
1203 */
1204static int
1205iscsi_tcp_send_data_prep(struct iscsi_conn *conn, struct scatterlist *sg,
1206 unsigned int count, unsigned int offset,
1207 unsigned int len)
Alex Aizman7ba24712005-08-04 19:30:08 -07001208{
Olaf Kircha8ac6312007-12-13 12:43:35 -06001209 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1210 struct hash_desc *tx_hash = NULL;
1211 unsigned int hdr_spec_len;
Alex Aizman7ba24712005-08-04 19:30:08 -07001212
Olaf Kircha8ac6312007-12-13 12:43:35 -06001213 debug_tcp("%s(%p, offset=%d, datalen=%d%s)\n", __FUNCTION__,
1214 tcp_conn, offset, len,
1215 conn->datadgst_en? ", digest enabled" : "");
Alex Aizman7ba24712005-08-04 19:30:08 -07001216
Olaf Kircha8ac6312007-12-13 12:43:35 -06001217 /* Make sure the datalen matches what the caller
1218 said he would send. */
1219 hdr_spec_len = ntoh24(tcp_conn->out.hdr->dlength);
1220 WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len));
Alex Aizman7ba24712005-08-04 19:30:08 -07001221
Olaf Kircha8ac6312007-12-13 12:43:35 -06001222 if (conn->datadgst_en)
1223 tx_hash = &tcp_conn->tx_hash;
1224
1225 return iscsi_segment_seek_sg(&tcp_conn->out.data_segment,
1226 sg, count, offset, len,
1227 NULL, tx_hash);
Alex Aizman7ba24712005-08-04 19:30:08 -07001228}
1229
Olaf Kircha8ac6312007-12-13 12:43:35 -06001230static void
1231iscsi_tcp_send_linear_data_prepare(struct iscsi_conn *conn, void *data,
1232 size_t len)
Alex Aizman7ba24712005-08-04 19:30:08 -07001233{
Olaf Kircha8ac6312007-12-13 12:43:35 -06001234 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1235 struct hash_desc *tx_hash = NULL;
1236 unsigned int hdr_spec_len;
Alex Aizman7ba24712005-08-04 19:30:08 -07001237
Olaf Kircha8ac6312007-12-13 12:43:35 -06001238 debug_tcp("%s(%p, datalen=%d%s)\n", __FUNCTION__, tcp_conn, len,
1239 conn->datadgst_en? ", digest enabled" : "");
Alex Aizman7ba24712005-08-04 19:30:08 -07001240
Olaf Kircha8ac6312007-12-13 12:43:35 -06001241 /* Make sure the datalen matches what the caller
1242 said he would send. */
1243 hdr_spec_len = ntoh24(tcp_conn->out.hdr->dlength);
1244 WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len));
Alex Aizman7ba24712005-08-04 19:30:08 -07001245
Olaf Kircha8ac6312007-12-13 12:43:35 -06001246 if (conn->datadgst_en)
1247 tx_hash = &tcp_conn->tx_hash;
Alex Aizman7ba24712005-08-04 19:30:08 -07001248
Olaf Kircha8ac6312007-12-13 12:43:35 -06001249 iscsi_segment_init_linear(&tcp_conn->out.data_segment,
1250 data, len, NULL, tx_hash);
Alex Aizman7ba24712005-08-04 19:30:08 -07001251}
1252
Alex Aizman7ba24712005-08-04 19:30:08 -07001253/**
1254 * iscsi_solicit_data_cont - initialize next Data-Out
1255 * @conn: iscsi connection
1256 * @ctask: scsi command task
1257 * @r2t: R2T info
1258 * @left: bytes left to transfer
1259 *
1260 * Notes:
1261 * Initialize next Data-Out within this R2T sequence and continue
1262 * to process next Scatter-Gather element(if any) of this SCSI command.
1263 *
1264 * Called under connection lock.
1265 **/
Olaf Kircha8ac6312007-12-13 12:43:35 -06001266static int
Alex Aizman7ba24712005-08-04 19:30:08 -07001267iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
Olaf Kircha8ac6312007-12-13 12:43:35 -06001268 struct iscsi_r2t_info *r2t)
Alex Aizman7ba24712005-08-04 19:30:08 -07001269{
1270 struct iscsi_data *hdr;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001271 int new_offset, left;
1272
1273 BUG_ON(r2t->data_length - r2t->sent < 0);
1274 left = r2t->data_length - r2t->sent;
1275 if (left == 0)
1276 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001277
Mike Christieffbfe922006-05-18 20:31:36 -05001278 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001279 memset(hdr, 0, sizeof(struct iscsi_data));
1280 hdr->ttt = r2t->ttt;
1281 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1282 r2t->solicit_datasn++;
1283 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001284 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1285 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001286 hdr->exp_statsn = r2t->exp_statsn;
1287 new_offset = r2t->data_offset + r2t->sent;
1288 hdr->offset = cpu_to_be32(new_offset);
1289 if (left > conn->max_xmit_dlength) {
1290 hton24(hdr->dlength, conn->max_xmit_dlength);
1291 r2t->data_count = conn->max_xmit_dlength;
1292 } else {
1293 hton24(hdr->dlength, left);
1294 r2t->data_count = left;
1295 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1296 }
Olaf Kircha8ac6312007-12-13 12:43:35 -06001297
Alex Aizman7ba24712005-08-04 19:30:08 -07001298 conn->dataout_pdus_cnt++;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001299 return 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001300}
1301
1302/**
Olaf Kircha8ac6312007-12-13 12:43:35 -06001303 * iscsi_tcp_ctask - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001304 * @conn: iscsi connection
1305 * @ctask: scsi command task
1306 * @sc: scsi command
1307 **/
Olaf Kircha8ac6312007-12-13 12:43:35 -06001308static int
1309iscsi_tcp_ctask_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001310{
Mike Christie5bb0b552006-04-06 21:26:46 -05001311 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001312 struct iscsi_conn *conn = ctask->conn;
1313 struct scsi_cmnd *sc = ctask->sc;
1314 int err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001315
Mike Christie5bb0b552006-04-06 21:26:46 -05001316 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Olaf Kircha8ac6312007-12-13 12:43:35 -06001317 tcp_ctask->sent = 0;
1318 tcp_ctask->exp_datasn = 0;
1319
1320 /* Prepare PDU, optionally w/ immediate data */
1321 debug_scsi("ctask deq [cid %d itt 0x%x imm %d unsol %d]\n",
1322 conn->id, ctask->itt, ctask->imm_count,
1323 ctask->unsol_count);
1324 iscsi_tcp_send_hdr_prep(conn, ctask->hdr, ctask->hdr_len);
1325
1326 if (!ctask->imm_count)
1327 return 0;
1328
1329 /* If we have immediate data, attach a payload */
1330 err = iscsi_tcp_send_data_prep(conn, scsi_sglist(sc), scsi_sg_count(sc),
1331 0, ctask->imm_count);
1332 if (err)
1333 return err;
1334 tcp_ctask->sent += ctask->imm_count;
1335 ctask->imm_count = 0;
1336 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001337}
1338
1339/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001340 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001341 * @conn: iscsi connection
1342 * @mtask: task management task
1343 *
1344 * Notes:
1345 * The function can return -EAGAIN in which case caller must
1346 * call it again later, or recover. '0' return code means successful
1347 * xmit.
Alex Aizman7ba24712005-08-04 19:30:08 -07001348 **/
1349static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001350iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001351{
Mike Christie3219e522006-05-30 00:37:28 -05001352 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001353
Olaf Kircha8ac6312007-12-13 12:43:35 -06001354 /* Flush any pending data first. */
1355 rc = iscsi_tcp_flush(conn);
1356 if (rc < 0)
1357 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001358
Al Virob4377352007-02-09 16:39:40 +00001359 if (mtask->hdr->itt == RESERVED_ITT) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001360 struct iscsi_session *session = conn->session;
1361
1362 spin_lock_bh(&session->lock);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001363 iscsi_free_mgmt_task(conn, mtask);
Mike Christie5bb0b552006-04-06 21:26:46 -05001364 spin_unlock_bh(&session->lock);
1365 }
Olaf Kircha8ac6312007-12-13 12:43:35 -06001366
Alex Aizman7ba24712005-08-04 19:30:08 -07001367 return 0;
1368}
1369
Olaf Kircha8ac6312007-12-13 12:43:35 -06001370/*
Mike Christie218432c2007-05-30 12:57:17 -05001371 * iscsi_tcp_ctask_xmit - xmit normal PDU task
1372 * @conn: iscsi connection
1373 * @ctask: iscsi command task
1374 *
Olaf Kircha8ac6312007-12-13 12:43:35 -06001375 * We're expected to return 0 when everything was transmitted succesfully,
1376 * -EAGAIN if there's still data in the queue, or != 0 for any other kind
1377 * of error.
1378 */
Alex Aizman7ba24712005-08-04 19:30:08 -07001379static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001380iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001381{
Mike Christie5bb0b552006-04-06 21:26:46 -05001382 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001383 struct scsi_cmnd *sc = ctask->sc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001384 int rc = 0;
1385
Olaf Kircha8ac6312007-12-13 12:43:35 -06001386flush:
1387 /* Flush any pending data first. */
1388 rc = iscsi_tcp_flush(conn);
1389 if (rc < 0)
Mike Christie218432c2007-05-30 12:57:17 -05001390 return rc;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001391
1392 /* Are we done already? */
1393 if (sc->sc_data_direction != DMA_TO_DEVICE)
Mike Christie218432c2007-05-30 12:57:17 -05001394 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001395
Olaf Kircha8ac6312007-12-13 12:43:35 -06001396 if (ctask->unsol_count != 0) {
1397 struct iscsi_data *hdr = &tcp_ctask->unsol_dtask.hdr;
1398
1399 /* Prepare a header for the unsolicited PDU.
1400 * The amount of data we want to send will be
1401 * in ctask->data_count.
1402 * FIXME: return the data count instead.
1403 */
1404 iscsi_prep_unsolicit_data_pdu(ctask, hdr);
1405
1406 debug_tcp("unsol dout [itt 0x%x doff %d dlen %d]\n",
1407 ctask->itt, tcp_ctask->sent, ctask->data_count);
1408
1409 iscsi_tcp_send_hdr_prep(conn, hdr, sizeof(*hdr));
1410 rc = iscsi_tcp_send_data_prep(conn, scsi_sglist(sc),
1411 scsi_sg_count(sc),
1412 tcp_ctask->sent,
1413 ctask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001414 if (rc)
Olaf Kircha8ac6312007-12-13 12:43:35 -06001415 goto fail;
1416 tcp_ctask->sent += ctask->data_count;
1417 ctask->unsol_count -= ctask->data_count;
1418 goto flush;
1419 } else {
1420 struct iscsi_session *session = conn->session;
1421 struct iscsi_r2t_info *r2t;
1422
1423 /* All unsolicited PDUs sent. Check for solicited PDUs.
1424 */
1425 spin_lock_bh(&session->lock);
1426 r2t = tcp_ctask->r2t;
1427 if (r2t != NULL) {
1428 /* Continue with this R2T? */
1429 if (!iscsi_solicit_data_cont(conn, ctask, r2t)) {
1430 debug_scsi(" done with r2t %p\n", r2t);
1431
1432 __kfifo_put(tcp_ctask->r2tpool.queue,
1433 (void*)&r2t, sizeof(void*));
1434 tcp_ctask->r2t = r2t = NULL;
1435 }
1436 }
1437
1438 if (r2t == NULL) {
1439 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
1440 sizeof(void*));
1441 r2t = tcp_ctask->r2t;
1442 }
1443 spin_unlock_bh(&session->lock);
1444
1445 /* Waiting for more R2Ts to arrive. */
1446 if (r2t == NULL) {
1447 debug_tcp("no R2Ts yet\n");
1448 return 0;
1449 }
1450
1451 debug_scsi("sol dout %p [dsn %d itt 0x%x doff %d dlen %d]\n",
1452 r2t, r2t->solicit_datasn - 1, ctask->itt,
1453 r2t->data_offset + r2t->sent, r2t->data_count);
1454
1455 iscsi_tcp_send_hdr_prep(conn, &r2t->dtask.hdr,
1456 sizeof(struct iscsi_hdr));
1457
1458 rc = iscsi_tcp_send_data_prep(conn, scsi_sglist(sc),
1459 scsi_sg_count(sc),
1460 r2t->data_offset + r2t->sent,
1461 r2t->data_count);
1462 if (rc)
1463 goto fail;
1464 tcp_ctask->sent += r2t->data_count;
1465 r2t->sent += r2t->data_count;
1466 goto flush;
Alex Aizman7ba24712005-08-04 19:30:08 -07001467 }
Olaf Kircha8ac6312007-12-13 12:43:35 -06001468 return 0;
1469fail:
1470 iscsi_conn_failure(conn, rc);
1471 return -EIO;
Alex Aizman7ba24712005-08-04 19:30:08 -07001472}
1473
Mike Christie7b8631b2006-01-13 18:05:50 -06001474static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001475iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001476{
Mike Christie7b8631b2006-01-13 18:05:50 -06001477 struct iscsi_conn *conn;
1478 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001479 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001480
Mike Christie5bb0b552006-04-06 21:26:46 -05001481 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001482 if (!cls_conn)
1483 return NULL;
1484 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001485 /*
1486 * due to strange issues with iser these are not set
1487 * in iscsi_conn_setup
1488 */
Mike Christiebf32ed32007-02-28 17:32:17 -06001489 conn->max_recv_dlength = ISCSI_DEF_MAX_RECV_SEG_LEN;
Alex Aizman7ba24712005-08-04 19:30:08 -07001490
Mike Christie5bb0b552006-04-06 21:26:46 -05001491 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1492 if (!tcp_conn)
1493 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001494
Mike Christie5bb0b552006-04-06 21:26:46 -05001495 conn->dd_data = tcp_conn;
1496 tcp_conn->iscsi_conn = conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001497
James Bottomleyc9802cd2006-09-23 15:33:43 -05001498 tcp_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1499 CRYPTO_ALG_ASYNC);
1500 tcp_conn->tx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001501 if (IS_ERR(tcp_conn->tx_hash.tfm)) {
1502 printk(KERN_ERR "Could not create connection due to crc32c "
1503 "loading error %ld. Make sure the crc32c module is "
1504 "built as a module or into the kernel\n",
1505 PTR_ERR(tcp_conn->tx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001506 goto free_tcp_conn;
Mike Christie0f238412007-02-28 17:32:21 -06001507 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001508
James Bottomleyc9802cd2006-09-23 15:33:43 -05001509 tcp_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1510 CRYPTO_ALG_ASYNC);
1511 tcp_conn->rx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001512 if (IS_ERR(tcp_conn->rx_hash.tfm)) {
1513 printk(KERN_ERR "Could not create connection due to crc32c "
1514 "loading error %ld. Make sure the crc32c module is "
1515 "built as a module or into the kernel\n",
1516 PTR_ERR(tcp_conn->rx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001517 goto free_tx_tfm;
Mike Christie0f238412007-02-28 17:32:21 -06001518 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001519
Mike Christie7b8631b2006-01-13 18:05:50 -06001520 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001521
Mike Christiedd8c0d92006-08-31 18:09:28 -04001522free_tx_tfm:
James Bottomleyc9802cd2006-09-23 15:33:43 -05001523 crypto_free_hash(tcp_conn->tx_hash.tfm);
Mike Christiedd8c0d92006-08-31 18:09:28 -04001524free_tcp_conn:
1525 kfree(tcp_conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001526tcp_conn_alloc_fail:
1527 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001528 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001529}
1530
1531static void
Mike Christie1c834692006-07-24 15:47:26 -05001532iscsi_tcp_release_conn(struct iscsi_conn *conn)
1533{
Mike Christie22236962007-05-30 12:57:24 -05001534 struct iscsi_session *session = conn->session;
Mike Christie1c834692006-07-24 15:47:26 -05001535 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie22236962007-05-30 12:57:24 -05001536 struct socket *sock = tcp_conn->sock;
Mike Christie1c834692006-07-24 15:47:26 -05001537
Mike Christie22236962007-05-30 12:57:24 -05001538 if (!sock)
Mike Christie1c834692006-07-24 15:47:26 -05001539 return;
1540
Mike Christie22236962007-05-30 12:57:24 -05001541 sock_hold(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001542 iscsi_conn_restore_callbacks(tcp_conn);
Mike Christie22236962007-05-30 12:57:24 -05001543 sock_put(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001544
Mike Christie22236962007-05-30 12:57:24 -05001545 spin_lock_bh(&session->lock);
Mike Christie1c834692006-07-24 15:47:26 -05001546 tcp_conn->sock = NULL;
1547 conn->recv_lock = NULL;
Mike Christie22236962007-05-30 12:57:24 -05001548 spin_unlock_bh(&session->lock);
1549 sockfd_put(sock);
Mike Christie1c834692006-07-24 15:47:26 -05001550}
1551
1552static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001553iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001554{
Mike Christie7b8631b2006-01-13 18:05:50 -06001555 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001556 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001557
Mike Christie1c834692006-07-24 15:47:26 -05001558 iscsi_tcp_release_conn(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001559 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001560
Pete Wyckoff534284a2006-11-08 15:58:31 -06001561 if (tcp_conn->tx_hash.tfm)
1562 crypto_free_hash(tcp_conn->tx_hash.tfm);
1563 if (tcp_conn->rx_hash.tfm)
1564 crypto_free_hash(tcp_conn->rx_hash.tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001565
Mike Christie5bb0b552006-04-06 21:26:46 -05001566 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001567}
1568
Mike Christie1c834692006-07-24 15:47:26 -05001569static void
1570iscsi_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
1571{
1572 struct iscsi_conn *conn = cls_conn->dd_data;
1573
1574 iscsi_conn_stop(cls_conn, flag);
1575 iscsi_tcp_release_conn(conn);
1576}
1577
Mike Christie22236962007-05-30 12:57:24 -05001578static int iscsi_tcp_get_addr(struct iscsi_conn *conn, struct socket *sock,
1579 char *buf, int *port,
1580 int (*getname)(struct socket *, struct sockaddr *,
1581 int *addrlen))
1582{
1583 struct sockaddr_storage *addr;
1584 struct sockaddr_in6 *sin6;
1585 struct sockaddr_in *sin;
1586 int rc = 0, len;
1587
Al Viroa9204872007-07-20 16:03:40 +01001588 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
Mike Christie22236962007-05-30 12:57:24 -05001589 if (!addr)
1590 return -ENOMEM;
1591
1592 if (getname(sock, (struct sockaddr *) addr, &len)) {
1593 rc = -ENODEV;
1594 goto free_addr;
1595 }
1596
1597 switch (addr->ss_family) {
1598 case AF_INET:
1599 sin = (struct sockaddr_in *)addr;
1600 spin_lock_bh(&conn->session->lock);
1601 sprintf(buf, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
1602 *port = be16_to_cpu(sin->sin_port);
1603 spin_unlock_bh(&conn->session->lock);
1604 break;
1605 case AF_INET6:
1606 sin6 = (struct sockaddr_in6 *)addr;
1607 spin_lock_bh(&conn->session->lock);
1608 sprintf(buf, NIP6_FMT, NIP6(sin6->sin6_addr));
1609 *port = be16_to_cpu(sin6->sin6_port);
1610 spin_unlock_bh(&conn->session->lock);
1611 break;
1612 }
1613free_addr:
1614 kfree(addr);
1615 return rc;
1616}
1617
Alex Aizman7ba24712005-08-04 19:30:08 -07001618static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001619iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001620 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001621 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001622{
Mike Christie5bb0b552006-04-06 21:26:46 -05001623 struct iscsi_conn *conn = cls_conn->dd_data;
1624 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001625 struct sock *sk;
1626 struct socket *sock;
1627 int err;
1628
1629 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001630 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001631 if (!sock) {
1632 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
1633 return -EEXIST;
1634 }
Mike Christie22236962007-05-30 12:57:24 -05001635 /*
1636 * copy these values now because if we drop the session
1637 * userspace may still want to query the values since we will
1638 * be using them for the reconnect
1639 */
1640 err = iscsi_tcp_get_addr(conn, sock, conn->portal_address,
1641 &conn->portal_port, kernel_getpeername);
1642 if (err)
1643 goto free_socket;
1644
1645 err = iscsi_tcp_get_addr(conn, sock, conn->local_address,
1646 &conn->local_port, kernel_getsockname);
1647 if (err)
1648 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001649
Mike Christie5bb0b552006-04-06 21:26:46 -05001650 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1651 if (err)
Mike Christie22236962007-05-30 12:57:24 -05001652 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001653
Mike Christie67a61112006-05-30 00:37:20 -05001654 /* bind iSCSI connection and socket */
1655 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07001656
Mike Christie67a61112006-05-30 00:37:20 -05001657 /* setup Socket parameters */
1658 sk = sock->sk;
1659 sk->sk_reuse = 1;
1660 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
1661 sk->sk_allocation = GFP_ATOMIC;
Alex Aizman7ba24712005-08-04 19:30:08 -07001662
Mike Christie67a61112006-05-30 00:37:20 -05001663 /* FIXME: disable Nagle's algorithm */
Alex Aizman7ba24712005-08-04 19:30:08 -07001664
Mike Christie67a61112006-05-30 00:37:20 -05001665 /*
1666 * Intercept TCP callbacks for sendfile like receive
1667 * processing.
1668 */
1669 conn->recv_lock = &sk->sk_callback_lock;
1670 iscsi_conn_set_callbacks(conn);
1671 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
1672 /*
1673 * set receive state machine into initial state
1674 */
Olaf Kirchda32dd62007-12-13 12:43:21 -06001675 iscsi_tcp_hdr_recv_prep(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001676 return 0;
Mike Christie22236962007-05-30 12:57:24 -05001677
1678free_socket:
1679 sockfd_put(sock);
1680 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001681}
1682
Mike Christie5bb0b552006-04-06 21:26:46 -05001683/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05001684static void
Olaf Kircha8ac6312007-12-13 12:43:35 -06001685iscsi_tcp_mtask_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Mike Christie30a6c652006-04-06 21:13:39 -05001686{
Olaf Kircha8ac6312007-12-13 12:43:35 -06001687 debug_scsi("mtask deq [cid %d itt 0x%x]\n", conn->id, mtask->itt);
1688
1689 /* Prepare PDU, optionally w/ immediate data */
1690 iscsi_tcp_send_hdr_prep(conn, mtask->hdr, sizeof(*mtask->hdr));
1691
1692 /* If we have immediate data, attach a payload */
1693 if (mtask->data_count)
1694 iscsi_tcp_send_linear_data_prepare(conn, mtask->data,
1695 mtask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001696}
1697
1698static int
1699iscsi_r2tpool_alloc(struct iscsi_session *session)
1700{
1701 int i;
1702 int cmd_i;
1703
1704 /*
1705 * initialize per-task: R2T pool and xmit queue
1706 */
1707 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1708 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05001709 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001710
1711 /*
1712 * pre-allocated x4 as much r2ts to handle race when
1713 * target acks DataOut faster than we data_xmit() queues
1714 * could replenish r2tqueue.
1715 */
1716
1717 /* R2T pool */
Olaf Kirch63203772007-12-13 12:43:25 -06001718 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4, NULL,
Mike Christie5bb0b552006-04-06 21:26:46 -05001719 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001720 goto r2t_alloc_fail;
1721 }
1722
1723 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05001724 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07001725 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05001726 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
Olaf Kirch63203772007-12-13 12:43:25 -06001727 iscsi_pool_free(&tcp_ctask->r2tpool);
Alex Aizman7ba24712005-08-04 19:30:08 -07001728 goto r2t_alloc_fail;
1729 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001730 }
1731
1732 return 0;
1733
1734r2t_alloc_fail:
1735 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001736 struct iscsi_cmd_task *ctask = session->cmds[i];
1737 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1738
Mike Christie5bb0b552006-04-06 21:26:46 -05001739 kfifo_free(tcp_ctask->r2tqueue);
Olaf Kirch63203772007-12-13 12:43:25 -06001740 iscsi_pool_free(&tcp_ctask->r2tpool);
Alex Aizman7ba24712005-08-04 19:30:08 -07001741 }
1742 return -ENOMEM;
1743}
1744
1745static void
1746iscsi_r2tpool_free(struct iscsi_session *session)
1747{
1748 int i;
1749
1750 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001751 struct iscsi_cmd_task *ctask = session->cmds[i];
1752 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1753
Mike Christie5bb0b552006-04-06 21:26:46 -05001754 kfifo_free(tcp_ctask->r2tqueue);
Olaf Kirch63203772007-12-13 12:43:25 -06001755 iscsi_pool_free(&tcp_ctask->r2tpool);
Alex Aizman7ba24712005-08-04 19:30:08 -07001756 }
1757}
1758
Alex Aizman7ba24712005-08-04 19:30:08 -07001759static int
Mike Christie7b7232f2006-02-01 21:06:49 -06001760iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05001761 char *buf, int buflen)
Alex Aizman7ba24712005-08-04 19:30:08 -07001762{
Mike Christie7b7232f2006-02-01 21:06:49 -06001763 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001764 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001765 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05001766 int value;
Alex Aizman7ba24712005-08-04 19:30:08 -07001767
Alex Aizman7ba24712005-08-04 19:30:08 -07001768 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001769 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001770 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001771 break;
1772 case ISCSI_PARAM_DATADGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001773 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05001774 tcp_conn->sendpage = conn->datadgst_en ?
1775 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07001776 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07001777 case ISCSI_PARAM_MAX_R2T:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001778 sscanf(buf, "%d", &value);
Alex Aizman7ba24712005-08-04 19:30:08 -07001779 if (session->max_r2t == roundup_pow_of_two(value))
1780 break;
1781 iscsi_r2tpool_free(session);
Mike Christie5c75b7f2006-06-28 12:00:26 -05001782 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001783 if (session->max_r2t & (session->max_r2t - 1))
1784 session->max_r2t = roundup_pow_of_two(session->max_r2t);
1785 if (iscsi_r2tpool_alloc(session))
1786 return -ENOMEM;
1787 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07001788 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001789 return iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001790 }
1791
1792 return 0;
1793}
1794
1795static int
Mike Christie5c75b7f2006-06-28 12:00:26 -05001796iscsi_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
1797 enum iscsi_param param, char *buf)
Mike Christie7b8631b2006-01-13 18:05:50 -06001798{
Mike Christie7b7232f2006-02-01 21:06:49 -06001799 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05001800 int len;
Mike Christie7b8631b2006-01-13 18:05:50 -06001801
1802 switch(param) {
Mike Christiefd7255f2006-04-06 21:13:36 -05001803 case ISCSI_PARAM_CONN_PORT:
Mike Christie22236962007-05-30 12:57:24 -05001804 spin_lock_bh(&conn->session->lock);
1805 len = sprintf(buf, "%hu\n", conn->portal_port);
1806 spin_unlock_bh(&conn->session->lock);
Mike Christie8d2860b2006-05-02 19:46:47 -05001807 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05001808 case ISCSI_PARAM_CONN_ADDRESS:
Mike Christie22236962007-05-30 12:57:24 -05001809 spin_lock_bh(&conn->session->lock);
1810 len = sprintf(buf, "%s\n", conn->portal_address);
1811 spin_unlock_bh(&conn->session->lock);
Mike Christiefd7255f2006-04-06 21:13:36 -05001812 break;
1813 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001814 return iscsi_conn_get_param(cls_conn, param, buf);
Mike Christiefd7255f2006-04-06 21:13:36 -05001815 }
1816
1817 return len;
1818}
1819
Mike Christie22236962007-05-30 12:57:24 -05001820static int
1821iscsi_tcp_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
1822 char *buf)
1823{
1824 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
1825 int len;
1826
1827 switch (param) {
1828 case ISCSI_HOST_PARAM_IPADDRESS:
1829 spin_lock_bh(&session->lock);
1830 if (!session->leadconn)
1831 len = -ENODEV;
1832 else
1833 len = sprintf(buf, "%s\n",
1834 session->leadconn->local_address);
1835 spin_unlock_bh(&session->lock);
1836 break;
1837 default:
1838 return iscsi_host_get_param(shost, param, buf);
1839 }
1840 return len;
1841}
1842
Alex Aizman7ba24712005-08-04 19:30:08 -07001843static void
Mike Christie7b7232f2006-02-01 21:06:49 -06001844iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07001845{
Mike Christie7b7232f2006-02-01 21:06:49 -06001846 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001847 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001848
1849 stats->txdata_octets = conn->txdata_octets;
1850 stats->rxdata_octets = conn->rxdata_octets;
1851 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
1852 stats->dataout_pdus = conn->dataout_pdus_cnt;
1853 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
1854 stats->datain_pdus = conn->datain_pdus_cnt;
1855 stats->r2t_pdus = conn->r2t_pdus_cnt;
1856 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
1857 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
1858 stats->custom_length = 3;
1859 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05001860 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001861 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05001862 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001863 strcpy(stats->custom[2].desc, "eh_abort_cnt");
1864 stats->custom[2].value = conn->eh_abort_cnt;
1865}
1866
Mike Christie5bb0b552006-04-06 21:26:46 -05001867static struct iscsi_cls_session *
1868iscsi_tcp_session_create(struct iscsi_transport *iscsit,
1869 struct scsi_transport_template *scsit,
Mike Christie15482712007-05-30 12:57:19 -05001870 uint16_t cmds_max, uint16_t qdepth,
Mike Christie5bb0b552006-04-06 21:26:46 -05001871 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07001872{
Mike Christie5bb0b552006-04-06 21:26:46 -05001873 struct iscsi_cls_session *cls_session;
1874 struct iscsi_session *session;
1875 uint32_t hn;
1876 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07001877
Mike Christie15482712007-05-30 12:57:19 -05001878 cls_session = iscsi_session_setup(iscsit, scsit, cmds_max, qdepth,
Mike Christie5bb0b552006-04-06 21:26:46 -05001879 sizeof(struct iscsi_tcp_cmd_task),
1880 sizeof(struct iscsi_tcp_mgmt_task),
1881 initial_cmdsn, &hn);
1882 if (!cls_session)
1883 return NULL;
1884 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001885
Mike Christie5bb0b552006-04-06 21:26:46 -05001886 session = class_to_transport_session(cls_session);
1887 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1888 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
1889 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1890
Boaz Harrosh004d6532007-12-13 12:43:23 -06001891 ctask->hdr = &tcp_ctask->hdr.cmd_hdr;
1892 ctask->hdr_max = sizeof(tcp_ctask->hdr) - ISCSI_DIGEST_SIZE;
Mike Christie5bb0b552006-04-06 21:26:46 -05001893 }
1894
1895 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
1896 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
1897 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
1898
Olaf Kircha8ac6312007-12-13 12:43:35 -06001899 mtask->hdr = (struct iscsi_hdr *) &tcp_mtask->hdr;
Mike Christie5bb0b552006-04-06 21:26:46 -05001900 }
1901
1902 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
1903 goto r2tpool_alloc_fail;
1904
1905 return cls_session;
1906
1907r2tpool_alloc_fail:
1908 iscsi_session_teardown(cls_session);
1909 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001910}
1911
Mike Christie5bb0b552006-04-06 21:26:46 -05001912static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
1913{
Mike Christie5bb0b552006-04-06 21:26:46 -05001914 iscsi_r2tpool_free(class_to_transport_session(cls_session));
1915 iscsi_session_teardown(cls_session);
1916}
1917
Mike Christied1d81c02007-05-30 12:57:21 -05001918static int iscsi_tcp_slave_configure(struct scsi_device *sdev)
1919{
Mike Christieb6d44fe2007-07-26 12:46:47 -05001920 blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_ANY);
Mike Christied1d81c02007-05-30 12:57:21 -05001921 blk_queue_dma_alignment(sdev->request_queue, 0);
1922 return 0;
1923}
1924
Mike Christie5bb0b552006-04-06 21:26:46 -05001925static struct scsi_host_template iscsi_sht = {
Mike Christie79743922007-07-26 12:46:46 -05001926 .module = THIS_MODULE,
Mike Christief4246b32006-07-24 15:47:54 -05001927 .name = "iSCSI Initiator over TCP/IP",
Mike Christie5bb0b552006-04-06 21:26:46 -05001928 .queuecommand = iscsi_queuecommand,
1929 .change_queue_depth = iscsi_change_queue_depth,
Mike Christie15482712007-05-30 12:57:19 -05001930 .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1,
Mike Christie66bbe0c2007-12-13 12:43:39 -06001931 .sg_tablesize = 4096,
Mike Christie8231f0e2007-02-28 17:32:20 -06001932 .max_sectors = 0xFFFF,
Mike Christie5bb0b552006-04-06 21:26:46 -05001933 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
1934 .eh_abort_handler = iscsi_eh_abort,
Mike Christie843c0a82007-12-13 12:43:20 -06001935 .eh_device_reset_handler= iscsi_eh_device_reset,
Mike Christie5bb0b552006-04-06 21:26:46 -05001936 .eh_host_reset_handler = iscsi_eh_host_reset,
1937 .use_clustering = DISABLE_CLUSTERING,
Mike Christie66bbe0c2007-12-13 12:43:39 -06001938 .use_sg_chaining = ENABLE_SG_CHAINING,
Mike Christied1d81c02007-05-30 12:57:21 -05001939 .slave_configure = iscsi_tcp_slave_configure,
Mike Christie5bb0b552006-04-06 21:26:46 -05001940 .proc_name = "iscsi_tcp",
1941 .this_id = -1,
1942};
1943
Alex Aizman7ba24712005-08-04 19:30:08 -07001944static struct iscsi_transport iscsi_tcp_transport = {
1945 .owner = THIS_MODULE,
1946 .name = "tcp",
1947 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
1948 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05001949 .param_mask = ISCSI_MAX_RECV_DLENGTH |
1950 ISCSI_MAX_XMIT_DLENGTH |
1951 ISCSI_HDRDGST_EN |
1952 ISCSI_DATADGST_EN |
1953 ISCSI_INITIAL_R2T_EN |
1954 ISCSI_MAX_R2T |
1955 ISCSI_IMM_DATA_EN |
1956 ISCSI_FIRST_BURST |
1957 ISCSI_MAX_BURST |
1958 ISCSI_PDU_INORDER_EN |
1959 ISCSI_DATASEQ_INORDER_EN |
1960 ISCSI_ERL |
1961 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05001962 ISCSI_CONN_ADDRESS |
Mike Christie5c75b7f2006-06-28 12:00:26 -05001963 ISCSI_EXP_STATSN |
1964 ISCSI_PERSISTENT_PORT |
1965 ISCSI_PERSISTENT_ADDRESS |
Mike Christieb2c64162007-05-30 12:57:16 -05001966 ISCSI_TARGET_NAME | ISCSI_TPGT |
1967 ISCSI_USERNAME | ISCSI_PASSWORD |
Mike Christie843c0a82007-12-13 12:43:20 -06001968 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
Mike Christief6d51802007-12-13 12:43:30 -06001969 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
1970 ISCSI_LU_RESET_TMO |
1971 ISCSI_PING_TMO | ISCSI_RECV_TMO,
Mike Christie22236962007-05-30 12:57:24 -05001972 .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS |
Mike Christied8196ed2007-05-30 12:57:25 -05001973 ISCSI_HOST_INITIATOR_NAME |
1974 ISCSI_HOST_NETDEV_NAME,
Alex Aizman7ba24712005-08-04 19:30:08 -07001975 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06001976 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07001977 .max_conn = 1,
Mike Christie66bbe0c2007-12-13 12:43:39 -06001978 .max_cmd_len = 16,
Mike Christie5bb0b552006-04-06 21:26:46 -05001979 /* session management */
1980 .create_session = iscsi_tcp_session_create,
1981 .destroy_session = iscsi_tcp_session_destroy,
1982 /* connection management */
1983 .create_conn = iscsi_tcp_conn_create,
1984 .bind_conn = iscsi_tcp_conn_bind,
1985 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07001986 .set_param = iscsi_conn_set_param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05001987 .get_conn_param = iscsi_tcp_conn_get_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06001988 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07001989 .start_conn = iscsi_conn_start,
Mike Christie1c834692006-07-24 15:47:26 -05001990 .stop_conn = iscsi_tcp_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -05001991 /* iscsi host params */
Mike Christie22236962007-05-30 12:57:24 -05001992 .get_host_param = iscsi_tcp_host_get_param,
Mike Christie0801c242007-05-30 12:57:12 -05001993 .set_host_param = iscsi_host_set_param,
Mike Christie5bb0b552006-04-06 21:26:46 -05001994 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07001995 .send_pdu = iscsi_conn_send_pdu,
1996 .get_stats = iscsi_conn_get_stats,
Olaf Kircha8ac6312007-12-13 12:43:35 -06001997 .init_cmd_task = iscsi_tcp_ctask_init,
1998 .init_mgmt_task = iscsi_tcp_mtask_init,
Mike Christie5bb0b552006-04-06 21:26:46 -05001999 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2000 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2001 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2002 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002003 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002004};
2005
2006static int __init
2007iscsi_tcp_init(void)
2008{
Alex Aizman7ba24712005-08-04 19:30:08 -07002009 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002010 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2011 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002012 return -EINVAL;
2013 }
2014 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2015
Mike Christie7b8631b2006-01-13 18:05:50 -06002016 if (!iscsi_register_transport(&iscsi_tcp_transport))
Mike Christieffbfe922006-05-18 20:31:36 -05002017 return -ENODEV;
Alex Aizman7ba24712005-08-04 19:30:08 -07002018
Mike Christie7b8631b2006-01-13 18:05:50 -06002019 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002020}
2021
2022static void __exit
2023iscsi_tcp_exit(void)
2024{
2025 iscsi_unregister_transport(&iscsi_tcp_transport);
Alex Aizman7ba24712005-08-04 19:30:08 -07002026}
2027
2028module_init(iscsi_tcp_init);
2029module_exit(iscsi_tcp_exit);