blob: e19d92f2d753dbee5a564246254417b01a1b6201 [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
Mike Christie75613522008-05-21 15:53:59 -050067static struct scsi_transport_template *iscsi_tcp_scsi_transport;
68static struct scsi_host_template iscsi_sht;
69static struct iscsi_transport iscsi_tcp_transport;
70
Alex Aizman7ba24712005-08-04 19:30:08 -070071static unsigned int iscsi_max_lun = 512;
72module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
73
Olaf Kirchda32dd62007-12-13 12:43:21 -060074static int iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -060075 struct iscsi_segment *segment);
Alex Aizman7ba24712005-08-04 19:30:08 -070076
Olaf Kirchda32dd62007-12-13 12:43:21 -060077/*
Olaf Kircha8ac6312007-12-13 12:43:35 -060078 * Scatterlist handling: inside the iscsi_segment, we
Olaf Kirchda32dd62007-12-13 12:43:21 -060079 * 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 Kircha8ac6312007-12-13 12:43:35 -060091 * iscsi_tcp_segment_init_sg - init indicated scatterlist entry
92 * @segment: the buffer object
93 * @sg: scatterlist
Olaf Kirchda32dd62007-12-13 12:43:21 -060094 * @offset: byte offset into that sg entry
95 *
Olaf Kircha8ac6312007-12-13 12:43:35 -060096 * This function sets up the segment so that subsequent
Olaf Kirchda32dd62007-12-13 12:43:21 -060097 * data is copied to the indicated sg entry, at the given
98 * offset.
99 */
100static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600101iscsi_tcp_segment_init_sg(struct iscsi_segment *segment,
102 struct scatterlist *sg, unsigned int offset)
Alex Aizman7ba24712005-08-04 19:30:08 -0700103{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600104 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 Kirchda32dd62007-12-13 12:43:21 -0600109}
Alex Aizman7ba24712005-08-04 19:30:08 -0700110
Olaf Kirchda32dd62007-12-13 12:43:21 -0600111/**
Olaf Kircha8ac6312007-12-13 12:43:35 -0600112 * iscsi_tcp_segment_map - map the current S/G page
113 * @segment: iscsi_segment
114 * @recv: 1 if called from recv path
Olaf Kirchda32dd62007-12-13 12:43:21 -0600115 *
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 */
120static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600121iscsi_tcp_segment_map(struct iscsi_segment *segment, int recv)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600122{
123 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700124
Olaf Kircha8ac6312007-12-13 12:43:35 -0600125 if (segment->data != NULL || !segment->sg)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600126 return;
Alex Aizman7ba24712005-08-04 19:30:08 -0700127
Olaf Kircha8ac6312007-12-13 12:43:35 -0600128 sg = segment->sg;
129 BUG_ON(segment->sg_mapped);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600130 BUG_ON(sg->length == 0);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600131
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 Kirchda32dd62007-12-13 12:43:21 -0600145}
Alex Aizman7ba24712005-08-04 19:30:08 -0700146
Olaf Kirchda32dd62007-12-13 12:43:21 -0600147static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600148iscsi_tcp_segment_unmap(struct iscsi_segment *segment)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600149{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600150 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 Kirchda32dd62007-12-13 12:43:21 -0600157 }
158}
Alex Aizman7ba24712005-08-04 19:30:08 -0700159
Olaf Kirchda32dd62007-12-13 12:43:21 -0600160/*
161 * Splice the digest buffer into the buffer
162 */
163static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600164iscsi_tcp_segment_splice_digest(struct iscsi_segment *segment, void *digest)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600165{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600166 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 Kirchda32dd62007-12-13 12:43:21 -0600173}
Alex Aizman7ba24712005-08-04 19:30:08 -0700174
Olaf Kirchda32dd62007-12-13 12:43:21 -0600175/**
Olaf Kircha8ac6312007-12-13 12:43:35 -0600176 * 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 Kirchda32dd62007-12-13 12:43:21 -0600180 *
Olaf Kircha8ac6312007-12-13 12:43:35 -0600181 * Check if we're done receiving this segment. If the receive
Olaf Kirchda32dd62007-12-13 12:43:21 -0600182 * 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 */
190static inline int
Olaf Kircha8ac6312007-12-13 12:43:35 -0600191iscsi_tcp_segment_done(struct iscsi_segment *segment, int recv, unsigned copied)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600192{
193 static unsigned char padbuf[ISCSI_PAD_LEN];
Olaf Kircha8ac6312007-12-13 12:43:35 -0600194 struct scatterlist sg;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600195 unsigned int pad;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600196
Olaf Kircha8ac6312007-12-13 12:43:35 -0600197 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 Kirchda32dd62007-12-13 12:43:21 -0600220 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700221 }
222
Olaf Kircha8ac6312007-12-13 12:43:35 -0600223 segment->total_copied += segment->copied;
224 segment->copied = 0;
225 segment->size = 0;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600226
227 /* Unmap the current scatterlist page, if there is one. */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600228 iscsi_tcp_segment_unmap(segment);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600229
230 /* Do we have more scatterlist entries? */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600231 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 Kirchda32dd62007-12-13 12:43:21 -0600234 /* Proceed to the next entry in the scatterlist. */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600235 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 Kirchda32dd62007-12-13 12:43:21 -0600239 return 0;
240 }
241
242 /* Do we need to handle padding? */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600243 pad = iscsi_padding(segment->total_copied);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600244 if (pad != 0) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600245 debug_tcp("consume %d pad bytes\n", pad);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600246 segment->total_size += pad;
247 segment->size = pad;
248 segment->data = padbuf;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600249 return 0;
250 }
251
252 /*
Olaf Kircha8ac6312007-12-13 12:43:35 -0600253 * Set us up for transferring the data digest. hdr digest
Olaf Kirchda32dd62007-12-13 12:43:21 -0600254 * is completely handled in hdr done function.
255 */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600256 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 Kirchda32dd62007-12-13 12:43:21 -0600261 }
262
263 return 1;
264}
265
266/**
Olaf Kircha8ac6312007-12-13 12:43:35 -0600267 * iscsi_tcp_xmit_segment - transmit segment
Olaf Kirchda32dd62007-12-13 12:43:21 -0600268 * @tcp_conn: the iSCSI TCP connection
Olaf Kircha8ac6312007-12-13 12:43:35 -0600269 * @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 */
279static int
280iscsi_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 Kirchda32dd62007-12-13 12:43:21 -0600330 * @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 */
343static int
Olaf Kircha8ac6312007-12-13 12:43:35 -0600344iscsi_tcp_segment_recv(struct iscsi_tcp_conn *tcp_conn,
345 struct iscsi_segment *segment, const void *ptr,
346 unsigned int len)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600347{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600348 unsigned int copy = 0, copied = 0;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600349
Olaf Kircha8ac6312007-12-13 12:43:35 -0600350 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 Kirchda32dd62007-12-13 12:43:21 -0600355 }
Olaf Kircha8ac6312007-12-13 12:43:35 -0600356
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 Kirchda32dd62007-12-13 12:43:21 -0600360 copied += copy;
361 }
Olaf Kirchda32dd62007-12-13 12:43:21 -0600362 return copied;
363}
364
365static inline void
366iscsi_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
375static inline int
376iscsi_tcp_dgst_verify(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600377 struct iscsi_segment *segment)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600378{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600379 if (!segment->digest_len)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600380 return 1;
381
Olaf Kircha8ac6312007-12-13 12:43:35 -0600382 if (memcmp(segment->recv_digest, segment->digest,
383 segment->digest_len)) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600384 debug_scsi("digest mismatch\n");
385 return 0;
386 }
387
388 return 1;
389}
390
391/*
Olaf Kircha8ac6312007-12-13 12:43:35 -0600392 * Helper function to set up segment buffer
Olaf Kirchda32dd62007-12-13 12:43:21 -0600393 */
394static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600395__iscsi_segment_init(struct iscsi_segment *segment, size_t size,
396 iscsi_segment_done_fn_t *done, struct hash_desc *hash)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600397{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600398 memset(segment, 0, sizeof(*segment));
399 segment->total_size = size;
400 segment->done = done;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600401
402 if (hash) {
Olaf Kircha8ac6312007-12-13 12:43:35 -0600403 segment->hash = hash;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600404 crypto_hash_init(hash);
405 }
406}
407
408static inline void
Olaf Kircha8ac6312007-12-13 12:43:35 -0600409iscsi_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 Kirchda32dd62007-12-13 12:43:21 -0600412{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600413 __iscsi_segment_init(segment, size, done, hash);
414 segment->data = data;
415 segment->size = size;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600416}
417
418static inline int
Olaf Kircha8ac6312007-12-13 12:43:35 -0600419iscsi_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 Kirchda32dd62007-12-13 12:43:21 -0600423{
Olaf Kircha8ac6312007-12-13 12:43:35 -0600424 struct scatterlist *sg;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600425 unsigned int i;
426
Olaf Kircha8ac6312007-12-13 12:43:35 -0600427 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 Kirchda32dd62007-12-13 12:43:21 -0600435 return 0;
436 }
Olaf Kircha8ac6312007-12-13 12:43:35 -0600437 offset -= sg->length;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600438 }
439
440 return ISCSI_ERR_DATA_OFFSET;
441}
442
443/**
Olaf Kircha8ac6312007-12-13 12:43:35 -0600444 * iscsi_tcp_hdr_recv_prep - prep segment for hdr reception
Olaf Kirchda32dd62007-12-13 12:43:21 -0600445 * @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 */
451static void
452iscsi_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 Kircha8ac6312007-12-13 12:43:35 -0600456 iscsi_segment_init_linear(&tcp_conn->in.segment,
Olaf Kirchda32dd62007-12-13 12:43:21 -0600457 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 */
464static int
465iscsi_tcp_data_recv_done(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600466 struct iscsi_segment *segment)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600467{
468 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
469 int rc = 0;
470
Olaf Kircha8ac6312007-12-13 12:43:35 -0600471 if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
Olaf Kirchda32dd62007-12-13 12:43:21 -0600472 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 Aizman7ba24712005-08-04 19:30:08 -0700480 return 0;
481}
482
Olaf Kirchda32dd62007-12-13 12:43:21 -0600483static void
484iscsi_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 Kircha8ac6312007-12-13 12:43:35 -0600492 iscsi_segment_init_linear(&tcp_conn->in.segment,
Olaf Kirchda32dd62007-12-13 12:43:21 -0600493 conn->data, tcp_conn->in.datalen,
494 iscsi_tcp_data_recv_done, rx_hash);
495}
496
Mike Christie30a6c652006-04-06 21:13:39 -0500497/*
498 * must be called with session lock
499 */
500static void
Mike Christieb6c395e2006-07-24 15:47:15 -0500501iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -0700502{
Mike Christie5bb0b552006-04-06 21:26:46 -0500503 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christieb6c395e2006-07-24 15:47:15 -0500504 struct iscsi_r2t_info *r2t;
Alex Aizman7ba24712005-08-04 19:30:08 -0700505
Mike Christieb6c395e2006-07-24 15:47:15 -0500506 /* flush ctask's r2t queues */
507 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
508 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
509 sizeof(void*));
510 debug_scsi("iscsi_tcp_cleanup_ctask pending r2t dropped\n");
511 }
512
Olaf Kircha8ac6312007-12-13 12:43:35 -0600513 r2t = tcp_ctask->r2t;
514 if (r2t != NULL) {
515 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
516 sizeof(void*));
517 tcp_ctask->r2t = NULL;
518 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700519}
520
521/**
522 * iscsi_data_rsp - SCSI Data-In Response processing
523 * @conn: iscsi connection
524 * @ctask: scsi command task
525 **/
526static int
527iscsi_data_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
528{
Mike Christie5bb0b552006-04-06 21:26:46 -0500529 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
530 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
531 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700532 struct iscsi_session *session = conn->session;
Mike Christie857ae0b2007-05-30 12:57:15 -0500533 struct scsi_cmnd *sc = ctask->sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700534 int datasn = be32_to_cpu(rhdr->datasn);
Boaz Harrosh94795b62008-04-18 10:11:53 -0500535 unsigned total_in_length = scsi_in(sc)->length;
Alex Aizman7ba24712005-08-04 19:30:08 -0700536
Mike Christie77a23c22007-05-30 12:57:18 -0500537 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Mike Christie5bb0b552006-04-06 21:26:46 -0500538 if (tcp_conn->in.datalen == 0)
Alex Aizman7ba24712005-08-04 19:30:08 -0700539 return 0;
540
Mike Christied473cc72007-05-30 12:57:14 -0500541 if (tcp_ctask->exp_datasn != datasn) {
542 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->datasn(%d)\n",
543 __FUNCTION__, tcp_ctask->exp_datasn, datasn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700544 return ISCSI_ERR_DATASN;
Mike Christied473cc72007-05-30 12:57:14 -0500545 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700546
Mike Christied473cc72007-05-30 12:57:14 -0500547 tcp_ctask->exp_datasn++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700548
Mike Christie5bb0b552006-04-06 21:26:46 -0500549 tcp_ctask->data_offset = be32_to_cpu(rhdr->offset);
Boaz Harrosh94795b62008-04-18 10:11:53 -0500550 if (tcp_ctask->data_offset + tcp_conn->in.datalen > total_in_length) {
Mike Christie857ae0b2007-05-30 12:57:15 -0500551 debug_tcp("%s: data_offset(%d) + data_len(%d) > total_length_in(%d)\n",
552 __FUNCTION__, tcp_ctask->data_offset,
Boaz Harrosh94795b62008-04-18 10:11:53 -0500553 tcp_conn->in.datalen, total_in_length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700554 return ISCSI_ERR_DATA_OFFSET;
Mike Christie857ae0b2007-05-30 12:57:15 -0500555 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700556
557 if (rhdr->flags & ISCSI_FLAG_DATA_STATUS) {
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600558 sc->result = (DID_OK << 16) | rhdr->cmd_status;
Alex Aizman7ba24712005-08-04 19:30:08 -0700559 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600560 if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW |
561 ISCSI_FLAG_DATA_OVERFLOW)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700562 int res_count = be32_to_cpu(rhdr->residual_count);
563
564 if (res_count > 0 &&
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600565 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
Boaz Harrosh94795b62008-04-18 10:11:53 -0500566 res_count <= total_in_length))
567 scsi_in(sc)->resid = res_count;
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600568 else
Alex Aizman7ba24712005-08-04 19:30:08 -0700569 sc->result = (DID_BAD_TARGET << 16) |
570 rhdr->cmd_status;
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600571 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700572 }
573
574 conn->datain_pdus_cnt++;
575 return 0;
576}
577
578/**
579 * iscsi_solicit_data_init - initialize first Data-Out
580 * @conn: iscsi connection
581 * @ctask: scsi command task
582 * @r2t: R2T info
583 *
584 * Notes:
585 * Initialize first Data-Out within this R2T sequence and finds
586 * proper data_offset within this SCSI command.
587 *
588 * This function is called with connection lock taken.
589 **/
590static void
591iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
592 struct iscsi_r2t_info *r2t)
593{
594 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700595
Mike Christieffbfe922006-05-18 20:31:36 -0500596 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700597 memset(hdr, 0, sizeof(struct iscsi_data));
598 hdr->ttt = r2t->ttt;
599 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
600 r2t->solicit_datasn++;
601 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500602 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
603 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700604 hdr->exp_statsn = r2t->exp_statsn;
605 hdr->offset = cpu_to_be32(r2t->data_offset);
606 if (r2t->data_length > conn->max_xmit_dlength) {
607 hton24(hdr->dlength, conn->max_xmit_dlength);
608 r2t->data_count = conn->max_xmit_dlength;
609 hdr->flags = 0;
610 } else {
611 hton24(hdr->dlength, r2t->data_length);
612 r2t->data_count = r2t->data_length;
613 hdr->flags = ISCSI_FLAG_CMD_FINAL;
614 }
615 conn->dataout_pdus_cnt++;
616
617 r2t->sent = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700618}
619
620/**
621 * iscsi_r2t_rsp - iSCSI R2T Response processing
622 * @conn: iscsi connection
623 * @ctask: scsi command task
624 **/
625static int
626iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
627{
628 struct iscsi_r2t_info *r2t;
629 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500630 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
631 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
632 struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700633 int r2tsn = be32_to_cpu(rhdr->r2tsn);
634 int rc;
635
Mike Christie98a94162006-08-31 18:09:26 -0400636 if (tcp_conn->in.datalen) {
Mike Christie322d7392008-01-31 13:36:52 -0600637 iscsi_conn_printk(KERN_ERR, conn,
638 "invalid R2t with datalen %d\n",
639 tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700640 return ISCSI_ERR_DATALEN;
Mike Christie98a94162006-08-31 18:09:26 -0400641 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700642
Mike Christied473cc72007-05-30 12:57:14 -0500643 if (tcp_ctask->exp_datasn != r2tsn){
644 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->r2tsn(%d)\n",
645 __FUNCTION__, tcp_ctask->exp_datasn, r2tsn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700646 return ISCSI_ERR_R2TSN;
Mike Christied473cc72007-05-30 12:57:14 -0500647 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700648
Alex Aizman7ba24712005-08-04 19:30:08 -0700649 /* fill-in new R2T associated with the task */
Mike Christie77a23c22007-05-30 12:57:18 -0500650 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
651
Mike Christie843c0a82007-12-13 12:43:20 -0600652 if (!ctask->sc || session->state != ISCSI_STATE_LOGGED_IN) {
Mike Christie322d7392008-01-31 13:36:52 -0600653 iscsi_conn_printk(KERN_INFO, conn,
654 "dropping R2T itt %d in recovery.\n",
655 ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -0700656 return 0;
657 }
Mike Christieb6c395e2006-07-24 15:47:15 -0500658
Mike Christie5bb0b552006-04-06 21:26:46 -0500659 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700660 BUG_ON(!rc);
661
662 r2t->exp_statsn = rhdr->statsn;
663 r2t->data_length = be32_to_cpu(rhdr->data_length);
Mike Christie98a94162006-08-31 18:09:26 -0400664 if (r2t->data_length == 0) {
Mike Christie322d7392008-01-31 13:36:52 -0600665 iscsi_conn_printk(KERN_ERR, conn,
666 "invalid R2T with zero data len\n");
Olaf Kirch03766a12007-12-13 12:43:36 -0600667 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
668 sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700669 return ISCSI_ERR_DATALEN;
670 }
671
Mike Christie98a94162006-08-31 18:09:26 -0400672 if (r2t->data_length > session->max_burst)
673 debug_scsi("invalid R2T with data len %u and max burst %u."
674 "Attempting to execute request.\n",
675 r2t->data_length, session->max_burst);
676
Alex Aizman7ba24712005-08-04 19:30:08 -0700677 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
Boaz Harrosh94795b62008-04-18 10:11:53 -0500678 if (r2t->data_offset + r2t->data_length > scsi_out(ctask->sc)->length) {
Mike Christie322d7392008-01-31 13:36:52 -0600679 iscsi_conn_printk(KERN_ERR, conn,
680 "invalid R2T with data len %u at offset %u "
681 "and total length %d\n", r2t->data_length,
Boaz Harrosh94795b62008-04-18 10:11:53 -0500682 r2t->data_offset, scsi_out(ctask->sc)->length);
Olaf Kirch03766a12007-12-13 12:43:36 -0600683 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
684 sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700685 return ISCSI_ERR_DATALEN;
686 }
687
688 r2t->ttt = rhdr->ttt; /* no flip */
689 r2t->solicit_datasn = 0;
690
691 iscsi_solicit_data_init(conn, ctask, r2t);
692
Mike Christied473cc72007-05-30 12:57:14 -0500693 tcp_ctask->exp_datasn = r2tsn + 1;
Mike Christie5bb0b552006-04-06 21:26:46 -0500694 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700695 conn->r2t_pdus_cnt++;
Mike Christie843c0a82007-12-13 12:43:20 -0600696
697 iscsi_requeue_ctask(ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -0700698 return 0;
699}
700
Olaf Kirchda32dd62007-12-13 12:43:21 -0600701/*
702 * Handle incoming reply to DataIn command
703 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700704static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600705iscsi_tcp_process_data_in(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600706 struct iscsi_segment *segment)
Olaf Kirchda32dd62007-12-13 12:43:21 -0600707{
708 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
709 struct iscsi_hdr *hdr = tcp_conn->in.hdr;
710 int rc;
711
Olaf Kircha8ac6312007-12-13 12:43:35 -0600712 if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
Olaf Kirchda32dd62007-12-13 12:43:21 -0600713 return ISCSI_ERR_DATA_DGST;
714
715 /* check for non-exceptional status */
716 if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
717 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
718 if (rc)
719 return rc;
720 }
721
722 iscsi_tcp_hdr_recv_prep(tcp_conn);
723 return 0;
724}
725
726/**
727 * iscsi_tcp_hdr_dissect - process PDU header
728 * @conn: iSCSI connection
729 * @hdr: PDU header
730 *
731 * This function analyzes the header of the PDU received,
732 * and performs several sanity checks. If the PDU is accompanied
733 * by data, the receive buffer is set up to copy the incoming data
734 * to the correct location.
735 */
736static int
737iscsi_tcp_hdr_dissect(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
Alex Aizman7ba24712005-08-04 19:30:08 -0700738{
Mike Christie5bb0b552006-04-06 21:26:46 -0500739 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700740 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500741 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600742 struct iscsi_cmd_task *ctask;
743 uint32_t itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700744
745 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500746 tcp_conn->in.datalen = ntoh24(hdr->dlength);
747 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Mike Christie322d7392008-01-31 13:36:52 -0600748 iscsi_conn_printk(KERN_ERR, conn,
749 "iscsi_tcp: datalen %d > %d\n",
750 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700751 return ISCSI_ERR_DATALEN;
752 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700753
Olaf Kirchda32dd62007-12-13 12:43:21 -0600754 /* Additional header segments. So far, we don't
755 * process additional headers.
756 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500757 ahslen = hdr->hlength << 2;
Alex Aizman7ba24712005-08-04 19:30:08 -0700758
Mike Christie5bb0b552006-04-06 21:26:46 -0500759 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700760 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500761 rc = iscsi_verify_itt(conn, hdr, &itt);
Mike Christie7a53dc52007-12-13 12:43:37 -0600762 if (rc)
Mike Christie5bb0b552006-04-06 21:26:46 -0500763 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700764
Olaf Kirchda32dd62007-12-13 12:43:21 -0600765 debug_tcp("opcode 0x%x ahslen %d datalen %d\n",
766 opcode, ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700767
Mike Christie5bb0b552006-04-06 21:26:46 -0500768 switch(opcode) {
769 case ISCSI_OP_SCSI_DATA_IN:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600770 ctask = session->cmds[itt];
Mike Christie4545a882007-12-13 12:43:40 -0600771 spin_lock(&conn->session->lock);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600772 rc = iscsi_data_rsp(conn, ctask);
Mike Christie4545a882007-12-13 12:43:40 -0600773 spin_unlock(&conn->session->lock);
Mike Christie275fd7d2006-07-24 15:47:17 -0500774 if (rc)
775 return rc;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600776 if (tcp_conn->in.datalen) {
777 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
778 struct hash_desc *rx_hash = NULL;
Boaz Harrosh94795b62008-04-18 10:11:53 -0500779 struct scsi_data_buffer *sdb = scsi_in(ctask->sc);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600780
781 /*
782 * Setup copy of Data-In into the Scsi_Cmnd
783 * Scatterlist case:
Olaf Kircha8ac6312007-12-13 12:43:35 -0600784 * We set up the iscsi_segment to point to the next
Olaf Kirchda32dd62007-12-13 12:43:21 -0600785 * scatterlist entry to copy to. As we go along,
786 * we move on to the next scatterlist entry and
787 * update the digest per-entry.
788 */
789 if (conn->datadgst_en)
790 rx_hash = &tcp_conn->rx_hash;
791
792 debug_tcp("iscsi_tcp_begin_data_in(%p, offset=%d, "
793 "datalen=%d)\n", tcp_conn,
794 tcp_ctask->data_offset,
795 tcp_conn->in.datalen);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600796 return iscsi_segment_seek_sg(&tcp_conn->in.segment,
Boaz Harrosh94795b62008-04-18 10:11:53 -0500797 sdb->table.sgl,
798 sdb->table.nents,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600799 tcp_ctask->data_offset,
800 tcp_conn->in.datalen,
801 iscsi_tcp_process_data_in,
802 rx_hash);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600803 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500804 /* fall through */
805 case ISCSI_OP_SCSI_CMD_RSP:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600806 if (tcp_conn->in.datalen) {
807 iscsi_tcp_data_recv_prep(tcp_conn);
808 return 0;
809 }
810 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500811 break;
812 case ISCSI_OP_R2T:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600813 ctask = session->cmds[itt];
Mike Christie5bb0b552006-04-06 21:26:46 -0500814 if (ahslen)
815 rc = ISCSI_ERR_AHSLEN;
Mike Christie4545a882007-12-13 12:43:40 -0600816 else if (ctask->sc->sc_data_direction == DMA_TO_DEVICE) {
817 spin_lock(&session->lock);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600818 rc = iscsi_r2t_rsp(conn, ctask);
Mike Christie4545a882007-12-13 12:43:40 -0600819 spin_unlock(&session->lock);
820 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500821 rc = ISCSI_ERR_PROTO;
822 break;
823 case ISCSI_OP_LOGIN_RSP:
824 case ISCSI_OP_TEXT_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500825 case ISCSI_OP_REJECT:
826 case ISCSI_OP_ASYNC_EVENT:
Mike Christiec8dc1e52006-07-24 15:47:39 -0500827 /*
828 * It is possible that we could get a PDU with a buffer larger
829 * than 8K, but there are no targets that currently do this.
830 * For now we fail until we find a vendor that needs it
831 */
Olaf Kirchda32dd62007-12-13 12:43:21 -0600832 if (ISCSI_DEF_MAX_RECV_SEG_LEN < tcp_conn->in.datalen) {
Mike Christie322d7392008-01-31 13:36:52 -0600833 iscsi_conn_printk(KERN_ERR, conn,
834 "iscsi_tcp: received buffer of "
835 "len %u but conn buffer is only %u "
836 "(opcode %0x)\n",
837 tcp_conn->in.datalen,
838 ISCSI_DEF_MAX_RECV_SEG_LEN, opcode);
Mike Christiec8dc1e52006-07-24 15:47:39 -0500839 rc = ISCSI_ERR_PROTO;
840 break;
841 }
842
Olaf Kirchda32dd62007-12-13 12:43:21 -0600843 /* If there's data coming in with the response,
844 * receive it to the connection's buffer.
845 */
846 if (tcp_conn->in.datalen) {
847 iscsi_tcp_data_recv_prep(tcp_conn);
848 return 0;
849 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500850 /* fall through */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500851 case ISCSI_OP_LOGOUT_RSP:
852 case ISCSI_OP_NOOP_IN:
Mike Christie5bb0b552006-04-06 21:26:46 -0500853 case ISCSI_OP_SCSI_TMFUNC_RSP:
854 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
855 break;
856 default:
857 rc = ISCSI_ERR_BAD_OPCODE;
858 break;
859 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700860
Olaf Kirchda32dd62007-12-13 12:43:21 -0600861 if (rc == 0) {
862 /* Anything that comes with data should have
863 * been handled above. */
864 if (tcp_conn->in.datalen)
865 return ISCSI_ERR_PROTO;
866 iscsi_tcp_hdr_recv_prep(tcp_conn);
867 }
868
Alex Aizman7ba24712005-08-04 19:30:08 -0700869 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700870}
871
Olaf Kirchda32dd62007-12-13 12:43:21 -0600872/**
873 * iscsi_tcp_hdr_recv_done - process PDU header
874 *
875 * This is the callback invoked when the PDU header has
876 * been received. If the header is followed by additional
877 * header segments, we go back for more data.
878 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700879static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600880iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600881 struct iscsi_segment *segment)
Alex Aizman7ba24712005-08-04 19:30:08 -0700882{
Olaf Kirchda32dd62007-12-13 12:43:21 -0600883 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
884 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700885
Olaf Kirchda32dd62007-12-13 12:43:21 -0600886 /* Check if there are additional header segments
887 * *prior* to computing the digest, because we
888 * may need to go back to the caller for more.
889 */
890 hdr = (struct iscsi_hdr *) tcp_conn->in.hdr_buf;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600891 if (segment->copied == sizeof(struct iscsi_hdr) && hdr->hlength) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600892 /* Bump the header length - the caller will
893 * just loop around and get the AHS for us, and
894 * call again. */
895 unsigned int ahslen = hdr->hlength << 2;
Alex Aizman7ba24712005-08-04 19:30:08 -0700896
Olaf Kirchda32dd62007-12-13 12:43:21 -0600897 /* Make sure we don't overflow */
898 if (sizeof(*hdr) + ahslen > sizeof(tcp_conn->in.hdr_buf))
899 return ISCSI_ERR_AHSLEN;
900
Olaf Kircha8ac6312007-12-13 12:43:35 -0600901 segment->total_size += ahslen;
902 segment->size += ahslen;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600903 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700904 }
Olaf Kirchda32dd62007-12-13 12:43:21 -0600905
906 /* We're done processing the header. See if we're doing
907 * header digests; if so, set up the recv_digest buffer
908 * and go back for more. */
909 if (conn->hdrdgst_en) {
Olaf Kircha8ac6312007-12-13 12:43:35 -0600910 if (segment->digest_len == 0) {
911 iscsi_tcp_segment_splice_digest(segment,
912 segment->recv_digest);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600913 return 0;
914 }
915 iscsi_tcp_dgst_header(&tcp_conn->rx_hash, hdr,
Olaf Kircha8ac6312007-12-13 12:43:35 -0600916 segment->total_copied - ISCSI_DIGEST_SIZE,
917 segment->digest);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600918
Olaf Kircha8ac6312007-12-13 12:43:35 -0600919 if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
Olaf Kirchda32dd62007-12-13 12:43:21 -0600920 return ISCSI_ERR_HDR_DGST;
921 }
922
923 tcp_conn->in.hdr = hdr;
924 return iscsi_tcp_hdr_dissect(conn, hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -0700925}
926
927/**
Olaf Kirchda32dd62007-12-13 12:43:21 -0600928 * iscsi_tcp_recv - TCP receive in sendfile fashion
Alex Aizman7ba24712005-08-04 19:30:08 -0700929 * @rd_desc: read descriptor
930 * @skb: socket buffer
931 * @offset: offset in skb
932 * @len: skb->len - offset
933 **/
934static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600935iscsi_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
936 unsigned int offset, size_t len)
Alex Aizman7ba24712005-08-04 19:30:08 -0700937{
Alex Aizman7ba24712005-08-04 19:30:08 -0700938 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500939 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600940 struct iscsi_segment *segment = &tcp_conn->in.segment;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600941 struct skb_seq_state seq;
942 unsigned int consumed = 0;
943 int rc = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700944
Olaf Kirchda32dd62007-12-13 12:43:21 -0600945 debug_tcp("in %d bytes\n", skb->len - offset);
Alex Aizman7ba24712005-08-04 19:30:08 -0700946
947 if (unlikely(conn->suspend_rx)) {
948 debug_tcp("conn %d Rx suspended!\n", conn->id);
949 return 0;
950 }
951
Olaf Kirchda32dd62007-12-13 12:43:21 -0600952 skb_prepare_seq_read(skb, offset, skb->len, &seq);
953 while (1) {
954 unsigned int avail;
955 const u8 *ptr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700956
Olaf Kirchda32dd62007-12-13 12:43:21 -0600957 avail = skb_seq_read(consumed, &ptr, &seq);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600958 if (avail == 0) {
959 debug_tcp("no more data avail. Consumed %d\n",
960 consumed);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600961 break;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600962 }
963 BUG_ON(segment->copied >= segment->size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700964
Olaf Kirchda32dd62007-12-13 12:43:21 -0600965 debug_tcp("skb %p ptr=%p avail=%u\n", skb, ptr, avail);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600966 rc = iscsi_tcp_segment_recv(tcp_conn, segment, ptr, avail);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600967 BUG_ON(rc == 0);
968 consumed += rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500969
Olaf Kircha8ac6312007-12-13 12:43:35 -0600970 if (segment->total_copied >= segment->total_size) {
971 debug_tcp("segment done\n");
972 rc = segment->done(tcp_conn, segment);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600973 if (rc != 0) {
974 skb_abort_seq_read(&seq);
975 goto error;
Mike Christiedbdb0162007-05-30 12:57:20 -0500976 }
Mike Christiedbdb0162007-05-30 12:57:20 -0500977
Olaf Kirchda32dd62007-12-13 12:43:21 -0600978 /* The done() functions sets up the
Olaf Kircha8ac6312007-12-13 12:43:35 -0600979 * next segment. */
Alex Aizman7ba24712005-08-04 19:30:08 -0700980 }
981 }
Olaf Kircha8ac6312007-12-13 12:43:35 -0600982 skb_abort_seq_read(&seq);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600983 conn->rxdata_octets += consumed;
984 return consumed;
Alex Aizman7ba24712005-08-04 19:30:08 -0700985
Olaf Kirchda32dd62007-12-13 12:43:21 -0600986error:
987 debug_tcp("Error receiving PDU, errno=%d\n", rc);
988 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
989 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700990}
991
992static void
993iscsi_tcp_data_ready(struct sock *sk, int flag)
994{
995 struct iscsi_conn *conn = sk->sk_user_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600996 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700997 read_descriptor_t rd_desc;
998
999 read_lock(&sk->sk_callback_lock);
1000
Mike Christie665b44a2006-05-02 19:46:49 -05001001 /*
Olaf Kirchda32dd62007-12-13 12:43:21 -06001002 * Use rd_desc to pass 'conn' to iscsi_tcp_recv.
Mike Christie665b44a2006-05-02 19:46:49 -05001003 * We set count to 1 because we want the network layer to
Olaf Kirchda32dd62007-12-13 12:43:21 -06001004 * hand us all the skbs that are available. iscsi_tcp_recv
Mike Christie665b44a2006-05-02 19:46:49 -05001005 * handled pdus that cross buffers or pdus that still need data.
1006 */
Alex Aizman7ba24712005-08-04 19:30:08 -07001007 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -05001008 rd_desc.count = 1;
Olaf Kirchda32dd62007-12-13 12:43:21 -06001009 tcp_read_sock(sk, &rd_desc, iscsi_tcp_recv);
Alex Aizman7ba24712005-08-04 19:30:08 -07001010
1011 read_unlock(&sk->sk_callback_lock);
Olaf Kirchda32dd62007-12-13 12:43:21 -06001012
1013 /* If we had to (atomically) map a highmem page,
1014 * unmap it now. */
Olaf Kircha8ac6312007-12-13 12:43:35 -06001015 iscsi_tcp_segment_unmap(&tcp_conn->in.segment);
Alex Aizman7ba24712005-08-04 19:30:08 -07001016}
1017
1018static void
1019iscsi_tcp_state_change(struct sock *sk)
1020{
Mike Christie5bb0b552006-04-06 21:26:46 -05001021 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001022 struct iscsi_conn *conn;
1023 struct iscsi_session *session;
1024 void (*old_state_change)(struct sock *);
1025
1026 read_lock(&sk->sk_callback_lock);
1027
1028 conn = (struct iscsi_conn*)sk->sk_user_data;
1029 session = conn->session;
1030
Mike Christiee6273992005-11-29 23:12:49 -06001031 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1032 sk->sk_state == TCP_CLOSE) &&
1033 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001034 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1035 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1036 }
1037
Mike Christie5bb0b552006-04-06 21:26:46 -05001038 tcp_conn = conn->dd_data;
1039 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001040
1041 read_unlock(&sk->sk_callback_lock);
1042
1043 old_state_change(sk);
1044}
1045
1046/**
1047 * iscsi_write_space - Called when more output buffer space is available
1048 * @sk: socket space is available for
1049 **/
1050static void
1051iscsi_write_space(struct sock *sk)
1052{
1053 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001054 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1055
1056 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001057 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie55e32992006-01-13 18:05:53 -06001058 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001059}
1060
1061static void
1062iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1063{
Mike Christie5bb0b552006-04-06 21:26:46 -05001064 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1065 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001066
1067 /* assign new callbacks */
1068 write_lock_bh(&sk->sk_callback_lock);
1069 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001070 tcp_conn->old_data_ready = sk->sk_data_ready;
1071 tcp_conn->old_state_change = sk->sk_state_change;
1072 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001073 sk->sk_data_ready = iscsi_tcp_data_ready;
1074 sk->sk_state_change = iscsi_tcp_state_change;
1075 sk->sk_write_space = iscsi_write_space;
1076 write_unlock_bh(&sk->sk_callback_lock);
1077}
1078
1079static void
Mike Christie1c834692006-07-24 15:47:26 -05001080iscsi_conn_restore_callbacks(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001081{
Mike Christie5bb0b552006-04-06 21:26:46 -05001082 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001083
1084 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1085 write_lock_bh(&sk->sk_callback_lock);
1086 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001087 sk->sk_data_ready = tcp_conn->old_data_ready;
1088 sk->sk_state_change = tcp_conn->old_state_change;
1089 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001090 sk->sk_no_check = 0;
1091 write_unlock_bh(&sk->sk_callback_lock);
1092}
1093
1094/**
Olaf Kircha8ac6312007-12-13 12:43:35 -06001095 * iscsi_xmit - TCP transmit
1096 **/
1097static int
1098iscsi_xmit(struct iscsi_conn *conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001099{
Mike Christie5bb0b552006-04-06 21:26:46 -05001100 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001101 struct iscsi_segment *segment = &tcp_conn->out.segment;
1102 unsigned int consumed = 0;
1103 int rc = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001104
Olaf Kircha8ac6312007-12-13 12:43:35 -06001105 while (1) {
1106 rc = iscsi_tcp_xmit_segment(tcp_conn, segment);
1107 if (rc < 0)
1108 goto error;
1109 if (rc == 0)
1110 break;
1111
1112 consumed += rc;
1113
1114 if (segment->total_copied >= segment->total_size) {
1115 if (segment->done != NULL) {
1116 rc = segment->done(tcp_conn, segment);
1117 if (rc < 0)
1118 goto error;
1119 }
1120 }
1121 }
1122
1123 debug_tcp("xmit %d bytes\n", consumed);
1124
1125 conn->txdata_octets += consumed;
1126 return consumed;
1127
1128error:
1129 /* Transmit error. We could initiate error recovery
1130 * here. */
1131 debug_tcp("Error sending PDU, errno=%d\n", rc);
1132 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1133 return rc;
1134}
1135
1136/**
1137 * iscsi_tcp_xmit_qlen - return the number of bytes queued for xmit
1138 */
1139static inline int
1140iscsi_tcp_xmit_qlen(struct iscsi_conn *conn)
1141{
1142 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1143 struct iscsi_segment *segment = &tcp_conn->out.segment;
1144
1145 return segment->total_copied - segment->total_size;
1146}
1147
1148static inline int
1149iscsi_tcp_flush(struct iscsi_conn *conn)
1150{
1151 int rc;
1152
1153 while (iscsi_tcp_xmit_qlen(conn)) {
1154 rc = iscsi_xmit(conn);
1155 if (rc == 0)
1156 return -EAGAIN;
1157 if (rc < 0)
1158 return rc;
1159 }
1160
1161 return 0;
1162}
1163
1164/*
1165 * This is called when we're done sending the header.
1166 * Simply copy the data_segment to the send segment, and return.
1167 */
1168static int
1169iscsi_tcp_send_hdr_done(struct iscsi_tcp_conn *tcp_conn,
1170 struct iscsi_segment *segment)
1171{
1172 tcp_conn->out.segment = tcp_conn->out.data_segment;
1173 debug_tcp("Header done. Next segment size %u total_size %u\n",
1174 tcp_conn->out.segment.size, tcp_conn->out.segment.total_size);
1175 return 0;
1176}
1177
1178static void
1179iscsi_tcp_send_hdr_prep(struct iscsi_conn *conn, void *hdr, size_t hdrlen)
1180{
1181 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1182
1183 debug_tcp("%s(%p%s)\n", __FUNCTION__, tcp_conn,
1184 conn->hdrdgst_en? ", digest enabled" : "");
1185
1186 /* Clear the data segment - needs to be filled in by the
1187 * caller using iscsi_tcp_send_data_prep() */
1188 memset(&tcp_conn->out.data_segment, 0, sizeof(struct iscsi_segment));
1189
1190 /* If header digest is enabled, compute the CRC and
1191 * place the digest into the same buffer. We make
1192 * sure that both iscsi_tcp_ctask and mtask have
1193 * sufficient room.
Mike Christie7cae5152006-01-13 18:05:47 -06001194 */
Olaf Kircha8ac6312007-12-13 12:43:35 -06001195 if (conn->hdrdgst_en) {
1196 iscsi_tcp_dgst_header(&tcp_conn->tx_hash, hdr, hdrlen,
1197 hdr + hdrlen);
1198 hdrlen += ISCSI_DIGEST_SIZE;
Mike Christie3219e522006-05-30 00:37:28 -05001199 }
1200
Olaf Kircha8ac6312007-12-13 12:43:35 -06001201 /* Remember header pointer for later, when we need
1202 * to decide whether there's a payload to go along
1203 * with the header. */
1204 tcp_conn->out.hdr = hdr;
1205
1206 iscsi_segment_init_linear(&tcp_conn->out.segment, hdr, hdrlen,
1207 iscsi_tcp_send_hdr_done, NULL);
Alex Aizman7ba24712005-08-04 19:30:08 -07001208}
1209
Olaf Kircha8ac6312007-12-13 12:43:35 -06001210/*
1211 * Prepare the send buffer for the payload data.
1212 * Padding and checksumming will all be taken care
1213 * of by the iscsi_segment routines.
1214 */
1215static int
1216iscsi_tcp_send_data_prep(struct iscsi_conn *conn, struct scatterlist *sg,
1217 unsigned int count, unsigned int offset,
1218 unsigned int len)
Alex Aizman7ba24712005-08-04 19:30:08 -07001219{
Olaf Kircha8ac6312007-12-13 12:43:35 -06001220 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1221 struct hash_desc *tx_hash = NULL;
1222 unsigned int hdr_spec_len;
Alex Aizman7ba24712005-08-04 19:30:08 -07001223
Olaf Kircha8ac6312007-12-13 12:43:35 -06001224 debug_tcp("%s(%p, offset=%d, datalen=%d%s)\n", __FUNCTION__,
1225 tcp_conn, offset, len,
1226 conn->datadgst_en? ", digest enabled" : "");
Alex Aizman7ba24712005-08-04 19:30:08 -07001227
Olaf Kircha8ac6312007-12-13 12:43:35 -06001228 /* Make sure the datalen matches what the caller
1229 said he would send. */
1230 hdr_spec_len = ntoh24(tcp_conn->out.hdr->dlength);
1231 WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len));
Alex Aizman7ba24712005-08-04 19:30:08 -07001232
Olaf Kircha8ac6312007-12-13 12:43:35 -06001233 if (conn->datadgst_en)
1234 tx_hash = &tcp_conn->tx_hash;
1235
1236 return iscsi_segment_seek_sg(&tcp_conn->out.data_segment,
1237 sg, count, offset, len,
1238 NULL, tx_hash);
Alex Aizman7ba24712005-08-04 19:30:08 -07001239}
1240
Olaf Kircha8ac6312007-12-13 12:43:35 -06001241static void
1242iscsi_tcp_send_linear_data_prepare(struct iscsi_conn *conn, void *data,
1243 size_t len)
Alex Aizman7ba24712005-08-04 19:30:08 -07001244{
Olaf Kircha8ac6312007-12-13 12:43:35 -06001245 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1246 struct hash_desc *tx_hash = NULL;
1247 unsigned int hdr_spec_len;
Alex Aizman7ba24712005-08-04 19:30:08 -07001248
Olaf Kircha8ac6312007-12-13 12:43:35 -06001249 debug_tcp("%s(%p, datalen=%d%s)\n", __FUNCTION__, tcp_conn, len,
1250 conn->datadgst_en? ", digest enabled" : "");
Alex Aizman7ba24712005-08-04 19:30:08 -07001251
Olaf Kircha8ac6312007-12-13 12:43:35 -06001252 /* Make sure the datalen matches what the caller
1253 said he would send. */
1254 hdr_spec_len = ntoh24(tcp_conn->out.hdr->dlength);
1255 WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len));
Alex Aizman7ba24712005-08-04 19:30:08 -07001256
Olaf Kircha8ac6312007-12-13 12:43:35 -06001257 if (conn->datadgst_en)
1258 tx_hash = &tcp_conn->tx_hash;
Alex Aizman7ba24712005-08-04 19:30:08 -07001259
Olaf Kircha8ac6312007-12-13 12:43:35 -06001260 iscsi_segment_init_linear(&tcp_conn->out.data_segment,
1261 data, len, NULL, tx_hash);
Alex Aizman7ba24712005-08-04 19:30:08 -07001262}
1263
Alex Aizman7ba24712005-08-04 19:30:08 -07001264/**
1265 * iscsi_solicit_data_cont - initialize next Data-Out
1266 * @conn: iscsi connection
1267 * @ctask: scsi command task
1268 * @r2t: R2T info
1269 * @left: bytes left to transfer
1270 *
1271 * Notes:
1272 * Initialize next Data-Out within this R2T sequence and continue
1273 * to process next Scatter-Gather element(if any) of this SCSI command.
1274 *
1275 * Called under connection lock.
1276 **/
Olaf Kircha8ac6312007-12-13 12:43:35 -06001277static int
Alex Aizman7ba24712005-08-04 19:30:08 -07001278iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
Olaf Kircha8ac6312007-12-13 12:43:35 -06001279 struct iscsi_r2t_info *r2t)
Alex Aizman7ba24712005-08-04 19:30:08 -07001280{
1281 struct iscsi_data *hdr;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001282 int new_offset, left;
1283
1284 BUG_ON(r2t->data_length - r2t->sent < 0);
1285 left = r2t->data_length - r2t->sent;
1286 if (left == 0)
1287 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001288
Mike Christieffbfe922006-05-18 20:31:36 -05001289 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001290 memset(hdr, 0, sizeof(struct iscsi_data));
1291 hdr->ttt = r2t->ttt;
1292 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1293 r2t->solicit_datasn++;
1294 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001295 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1296 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001297 hdr->exp_statsn = r2t->exp_statsn;
1298 new_offset = r2t->data_offset + r2t->sent;
1299 hdr->offset = cpu_to_be32(new_offset);
1300 if (left > conn->max_xmit_dlength) {
1301 hton24(hdr->dlength, conn->max_xmit_dlength);
1302 r2t->data_count = conn->max_xmit_dlength;
1303 } else {
1304 hton24(hdr->dlength, left);
1305 r2t->data_count = left;
1306 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1307 }
Olaf Kircha8ac6312007-12-13 12:43:35 -06001308
Alex Aizman7ba24712005-08-04 19:30:08 -07001309 conn->dataout_pdus_cnt++;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001310 return 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001311}
1312
1313/**
Olaf Kircha8ac6312007-12-13 12:43:35 -06001314 * iscsi_tcp_ctask - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001315 * @conn: iscsi connection
1316 * @ctask: scsi command task
1317 * @sc: scsi command
1318 **/
Olaf Kircha8ac6312007-12-13 12:43:35 -06001319static int
1320iscsi_tcp_ctask_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001321{
Mike Christie5bb0b552006-04-06 21:26:46 -05001322 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001323 struct iscsi_conn *conn = ctask->conn;
1324 struct scsi_cmnd *sc = ctask->sc;
1325 int err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001326
Mike Christie5bb0b552006-04-06 21:26:46 -05001327 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Olaf Kircha8ac6312007-12-13 12:43:35 -06001328 tcp_ctask->sent = 0;
1329 tcp_ctask->exp_datasn = 0;
1330
1331 /* Prepare PDU, optionally w/ immediate data */
1332 debug_scsi("ctask deq [cid %d itt 0x%x imm %d unsol %d]\n",
1333 conn->id, ctask->itt, ctask->imm_count,
1334 ctask->unsol_count);
1335 iscsi_tcp_send_hdr_prep(conn, ctask->hdr, ctask->hdr_len);
1336
1337 if (!ctask->imm_count)
1338 return 0;
1339
1340 /* If we have immediate data, attach a payload */
Boaz Harrosh94795b62008-04-18 10:11:53 -05001341 err = iscsi_tcp_send_data_prep(conn, scsi_out(sc)->table.sgl,
1342 scsi_out(sc)->table.nents,
Olaf Kircha8ac6312007-12-13 12:43:35 -06001343 0, ctask->imm_count);
1344 if (err)
1345 return err;
1346 tcp_ctask->sent += ctask->imm_count;
1347 ctask->imm_count = 0;
1348 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001349}
1350
1351/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001352 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001353 * @conn: iscsi connection
1354 * @mtask: task management task
1355 *
1356 * Notes:
1357 * The function can return -EAGAIN in which case caller must
1358 * call it again later, or recover. '0' return code means successful
1359 * xmit.
Alex Aizman7ba24712005-08-04 19:30:08 -07001360 **/
1361static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001362iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001363{
Mike Christie3219e522006-05-30 00:37:28 -05001364 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001365
Olaf Kircha8ac6312007-12-13 12:43:35 -06001366 /* Flush any pending data first. */
1367 rc = iscsi_tcp_flush(conn);
1368 if (rc < 0)
1369 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001370
Al Virob4377352007-02-09 16:39:40 +00001371 if (mtask->hdr->itt == RESERVED_ITT) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001372 struct iscsi_session *session = conn->session;
1373
1374 spin_lock_bh(&session->lock);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001375 iscsi_free_mgmt_task(conn, mtask);
Mike Christie5bb0b552006-04-06 21:26:46 -05001376 spin_unlock_bh(&session->lock);
1377 }
Olaf Kircha8ac6312007-12-13 12:43:35 -06001378
Alex Aizman7ba24712005-08-04 19:30:08 -07001379 return 0;
1380}
1381
Olaf Kircha8ac6312007-12-13 12:43:35 -06001382/*
Mike Christie218432c2007-05-30 12:57:17 -05001383 * iscsi_tcp_ctask_xmit - xmit normal PDU task
1384 * @conn: iscsi connection
1385 * @ctask: iscsi command task
1386 *
Olaf Kircha8ac6312007-12-13 12:43:35 -06001387 * We're expected to return 0 when everything was transmitted succesfully,
1388 * -EAGAIN if there's still data in the queue, or != 0 for any other kind
1389 * of error.
1390 */
Alex Aizman7ba24712005-08-04 19:30:08 -07001391static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001392iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001393{
Mike Christie5bb0b552006-04-06 21:26:46 -05001394 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001395 struct scsi_cmnd *sc = ctask->sc;
Boaz Harrosh94795b62008-04-18 10:11:53 -05001396 struct scsi_data_buffer *sdb = scsi_out(sc);
Alex Aizman7ba24712005-08-04 19:30:08 -07001397 int rc = 0;
1398
Olaf Kircha8ac6312007-12-13 12:43:35 -06001399flush:
1400 /* Flush any pending data first. */
1401 rc = iscsi_tcp_flush(conn);
1402 if (rc < 0)
Mike Christie218432c2007-05-30 12:57:17 -05001403 return rc;
Olaf Kircha8ac6312007-12-13 12:43:35 -06001404
1405 /* Are we done already? */
1406 if (sc->sc_data_direction != DMA_TO_DEVICE)
Mike Christie218432c2007-05-30 12:57:17 -05001407 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001408
Olaf Kircha8ac6312007-12-13 12:43:35 -06001409 if (ctask->unsol_count != 0) {
1410 struct iscsi_data *hdr = &tcp_ctask->unsol_dtask.hdr;
1411
1412 /* Prepare a header for the unsolicited PDU.
1413 * The amount of data we want to send will be
1414 * in ctask->data_count.
1415 * FIXME: return the data count instead.
1416 */
1417 iscsi_prep_unsolicit_data_pdu(ctask, hdr);
1418
1419 debug_tcp("unsol dout [itt 0x%x doff %d dlen %d]\n",
1420 ctask->itt, tcp_ctask->sent, ctask->data_count);
1421
1422 iscsi_tcp_send_hdr_prep(conn, hdr, sizeof(*hdr));
Boaz Harrosh94795b62008-04-18 10:11:53 -05001423 rc = iscsi_tcp_send_data_prep(conn, sdb->table.sgl,
1424 sdb->table.nents, tcp_ctask->sent,
Olaf Kircha8ac6312007-12-13 12:43:35 -06001425 ctask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001426 if (rc)
Olaf Kircha8ac6312007-12-13 12:43:35 -06001427 goto fail;
1428 tcp_ctask->sent += ctask->data_count;
1429 ctask->unsol_count -= ctask->data_count;
1430 goto flush;
1431 } else {
1432 struct iscsi_session *session = conn->session;
1433 struct iscsi_r2t_info *r2t;
1434
1435 /* All unsolicited PDUs sent. Check for solicited PDUs.
1436 */
1437 spin_lock_bh(&session->lock);
1438 r2t = tcp_ctask->r2t;
1439 if (r2t != NULL) {
1440 /* Continue with this R2T? */
1441 if (!iscsi_solicit_data_cont(conn, ctask, r2t)) {
1442 debug_scsi(" done with r2t %p\n", r2t);
1443
1444 __kfifo_put(tcp_ctask->r2tpool.queue,
1445 (void*)&r2t, sizeof(void*));
1446 tcp_ctask->r2t = r2t = NULL;
1447 }
1448 }
1449
1450 if (r2t == NULL) {
1451 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
1452 sizeof(void*));
1453 r2t = tcp_ctask->r2t;
1454 }
1455 spin_unlock_bh(&session->lock);
1456
1457 /* Waiting for more R2Ts to arrive. */
1458 if (r2t == NULL) {
1459 debug_tcp("no R2Ts yet\n");
1460 return 0;
1461 }
1462
1463 debug_scsi("sol dout %p [dsn %d itt 0x%x doff %d dlen %d]\n",
1464 r2t, r2t->solicit_datasn - 1, ctask->itt,
1465 r2t->data_offset + r2t->sent, r2t->data_count);
1466
1467 iscsi_tcp_send_hdr_prep(conn, &r2t->dtask.hdr,
1468 sizeof(struct iscsi_hdr));
1469
Boaz Harrosh94795b62008-04-18 10:11:53 -05001470 rc = iscsi_tcp_send_data_prep(conn, sdb->table.sgl,
1471 sdb->table.nents,
Olaf Kircha8ac6312007-12-13 12:43:35 -06001472 r2t->data_offset + r2t->sent,
1473 r2t->data_count);
1474 if (rc)
1475 goto fail;
1476 tcp_ctask->sent += r2t->data_count;
1477 r2t->sent += r2t->data_count;
1478 goto flush;
Alex Aizman7ba24712005-08-04 19:30:08 -07001479 }
Olaf Kircha8ac6312007-12-13 12:43:35 -06001480 return 0;
1481fail:
1482 iscsi_conn_failure(conn, rc);
1483 return -EIO;
Alex Aizman7ba24712005-08-04 19:30:08 -07001484}
1485
Mike Christie7b8631b2006-01-13 18:05:50 -06001486static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001487iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001488{
Mike Christie7b8631b2006-01-13 18:05:50 -06001489 struct iscsi_conn *conn;
1490 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001491 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001492
Mike Christie5bb0b552006-04-06 21:26:46 -05001493 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001494 if (!cls_conn)
1495 return NULL;
1496 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001497 /*
1498 * due to strange issues with iser these are not set
1499 * in iscsi_conn_setup
1500 */
Mike Christiebf32ed32007-02-28 17:32:17 -06001501 conn->max_recv_dlength = ISCSI_DEF_MAX_RECV_SEG_LEN;
Alex Aizman7ba24712005-08-04 19:30:08 -07001502
Mike Christie5bb0b552006-04-06 21:26:46 -05001503 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1504 if (!tcp_conn)
1505 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001506
Mike Christie5bb0b552006-04-06 21:26:46 -05001507 conn->dd_data = tcp_conn;
1508 tcp_conn->iscsi_conn = conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001509
James Bottomleyc9802cd2006-09-23 15:33:43 -05001510 tcp_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1511 CRYPTO_ALG_ASYNC);
1512 tcp_conn->tx_hash.flags = 0;
Mike Christie322d7392008-01-31 13:36:52 -06001513 if (IS_ERR(tcp_conn->tx_hash.tfm))
Mike Christiedd8c0d92006-08-31 18:09:28 -04001514 goto free_tcp_conn;
1515
James Bottomleyc9802cd2006-09-23 15:33:43 -05001516 tcp_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1517 CRYPTO_ALG_ASYNC);
1518 tcp_conn->rx_hash.flags = 0;
Mike Christie322d7392008-01-31 13:36:52 -06001519 if (IS_ERR(tcp_conn->rx_hash.tfm))
Mike Christiedd8c0d92006-08-31 18:09:28 -04001520 goto free_tx_tfm;
1521
Mike Christie7b8631b2006-01-13 18:05:50 -06001522 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001523
Mike Christiedd8c0d92006-08-31 18:09:28 -04001524free_tx_tfm:
James Bottomleyc9802cd2006-09-23 15:33:43 -05001525 crypto_free_hash(tcp_conn->tx_hash.tfm);
Mike Christiedd8c0d92006-08-31 18:09:28 -04001526free_tcp_conn:
Mike Christie322d7392008-01-31 13:36:52 -06001527 iscsi_conn_printk(KERN_ERR, conn,
1528 "Could not create connection due to crc32c "
1529 "loading error. Make sure the crc32c "
1530 "module is built as a module or into the "
1531 "kernel\n");
Mike Christiedd8c0d92006-08-31 18:09:28 -04001532 kfree(tcp_conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001533tcp_conn_alloc_fail:
1534 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001535 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001536}
1537
1538static void
Mike Christie1c834692006-07-24 15:47:26 -05001539iscsi_tcp_release_conn(struct iscsi_conn *conn)
1540{
Mike Christie22236962007-05-30 12:57:24 -05001541 struct iscsi_session *session = conn->session;
Mike Christie1c834692006-07-24 15:47:26 -05001542 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie22236962007-05-30 12:57:24 -05001543 struct socket *sock = tcp_conn->sock;
Mike Christie1c834692006-07-24 15:47:26 -05001544
Mike Christie22236962007-05-30 12:57:24 -05001545 if (!sock)
Mike Christie1c834692006-07-24 15:47:26 -05001546 return;
1547
Mike Christie22236962007-05-30 12:57:24 -05001548 sock_hold(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001549 iscsi_conn_restore_callbacks(tcp_conn);
Mike Christie22236962007-05-30 12:57:24 -05001550 sock_put(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001551
Mike Christie22236962007-05-30 12:57:24 -05001552 spin_lock_bh(&session->lock);
Mike Christie1c834692006-07-24 15:47:26 -05001553 tcp_conn->sock = NULL;
1554 conn->recv_lock = NULL;
Mike Christie22236962007-05-30 12:57:24 -05001555 spin_unlock_bh(&session->lock);
1556 sockfd_put(sock);
Mike Christie1c834692006-07-24 15:47:26 -05001557}
1558
1559static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001560iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001561{
Mike Christie7b8631b2006-01-13 18:05:50 -06001562 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001563 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001564
Mike Christie1c834692006-07-24 15:47:26 -05001565 iscsi_tcp_release_conn(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001566 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001567
Pete Wyckoff534284a2006-11-08 15:58:31 -06001568 if (tcp_conn->tx_hash.tfm)
1569 crypto_free_hash(tcp_conn->tx_hash.tfm);
1570 if (tcp_conn->rx_hash.tfm)
1571 crypto_free_hash(tcp_conn->rx_hash.tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001572
Mike Christie5bb0b552006-04-06 21:26:46 -05001573 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001574}
1575
Mike Christie1c834692006-07-24 15:47:26 -05001576static void
1577iscsi_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
1578{
1579 struct iscsi_conn *conn = cls_conn->dd_data;
1580
1581 iscsi_conn_stop(cls_conn, flag);
1582 iscsi_tcp_release_conn(conn);
1583}
1584
Mike Christie22236962007-05-30 12:57:24 -05001585static int iscsi_tcp_get_addr(struct iscsi_conn *conn, struct socket *sock,
1586 char *buf, int *port,
1587 int (*getname)(struct socket *, struct sockaddr *,
1588 int *addrlen))
1589{
1590 struct sockaddr_storage *addr;
1591 struct sockaddr_in6 *sin6;
1592 struct sockaddr_in *sin;
1593 int rc = 0, len;
1594
Al Viroa9204872007-07-20 16:03:40 +01001595 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
Mike Christie22236962007-05-30 12:57:24 -05001596 if (!addr)
1597 return -ENOMEM;
1598
1599 if (getname(sock, (struct sockaddr *) addr, &len)) {
1600 rc = -ENODEV;
1601 goto free_addr;
1602 }
1603
1604 switch (addr->ss_family) {
1605 case AF_INET:
1606 sin = (struct sockaddr_in *)addr;
1607 spin_lock_bh(&conn->session->lock);
1608 sprintf(buf, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
1609 *port = be16_to_cpu(sin->sin_port);
1610 spin_unlock_bh(&conn->session->lock);
1611 break;
1612 case AF_INET6:
1613 sin6 = (struct sockaddr_in6 *)addr;
1614 spin_lock_bh(&conn->session->lock);
1615 sprintf(buf, NIP6_FMT, NIP6(sin6->sin6_addr));
1616 *port = be16_to_cpu(sin6->sin6_port);
1617 spin_unlock_bh(&conn->session->lock);
1618 break;
1619 }
1620free_addr:
1621 kfree(addr);
1622 return rc;
1623}
1624
Alex Aizman7ba24712005-08-04 19:30:08 -07001625static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001626iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001627 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001628 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001629{
Mike Christie75613522008-05-21 15:53:59 -05001630 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
1631 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie5bb0b552006-04-06 21:26:46 -05001632 struct iscsi_conn *conn = cls_conn->dd_data;
1633 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001634 struct sock *sk;
1635 struct socket *sock;
1636 int err;
1637
1638 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001639 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001640 if (!sock) {
Mike Christie322d7392008-01-31 13:36:52 -06001641 iscsi_conn_printk(KERN_ERR, conn,
1642 "sockfd_lookup failed %d\n", err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001643 return -EEXIST;
1644 }
Mike Christie22236962007-05-30 12:57:24 -05001645 /*
1646 * copy these values now because if we drop the session
1647 * userspace may still want to query the values since we will
1648 * be using them for the reconnect
1649 */
1650 err = iscsi_tcp_get_addr(conn, sock, conn->portal_address,
1651 &conn->portal_port, kernel_getpeername);
1652 if (err)
1653 goto free_socket;
1654
Mike Christie75613522008-05-21 15:53:59 -05001655 err = iscsi_tcp_get_addr(conn, sock, ihost->local_address,
1656 &ihost->local_port, kernel_getsockname);
Mike Christie22236962007-05-30 12:57:24 -05001657 if (err)
1658 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001659
Mike Christie5bb0b552006-04-06 21:26:46 -05001660 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1661 if (err)
Mike Christie22236962007-05-30 12:57:24 -05001662 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001663
Mike Christie67a61112006-05-30 00:37:20 -05001664 /* bind iSCSI connection and socket */
1665 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07001666
Mike Christie67a61112006-05-30 00:37:20 -05001667 /* setup Socket parameters */
1668 sk = sock->sk;
1669 sk->sk_reuse = 1;
1670 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
1671 sk->sk_allocation = GFP_ATOMIC;
Alex Aizman7ba24712005-08-04 19:30:08 -07001672
Mike Christie67a61112006-05-30 00:37:20 -05001673 /* FIXME: disable Nagle's algorithm */
Alex Aizman7ba24712005-08-04 19:30:08 -07001674
Mike Christie67a61112006-05-30 00:37:20 -05001675 /*
1676 * Intercept TCP callbacks for sendfile like receive
1677 * processing.
1678 */
1679 conn->recv_lock = &sk->sk_callback_lock;
1680 iscsi_conn_set_callbacks(conn);
1681 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
1682 /*
1683 * set receive state machine into initial state
1684 */
Olaf Kirchda32dd62007-12-13 12:43:21 -06001685 iscsi_tcp_hdr_recv_prep(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001686 return 0;
Mike Christie22236962007-05-30 12:57:24 -05001687
1688free_socket:
1689 sockfd_put(sock);
1690 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001691}
1692
Mike Christie5bb0b552006-04-06 21:26:46 -05001693/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05001694static void
Olaf Kircha8ac6312007-12-13 12:43:35 -06001695iscsi_tcp_mtask_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Mike Christie30a6c652006-04-06 21:13:39 -05001696{
Olaf Kircha8ac6312007-12-13 12:43:35 -06001697 debug_scsi("mtask deq [cid %d itt 0x%x]\n", conn->id, mtask->itt);
1698
1699 /* Prepare PDU, optionally w/ immediate data */
1700 iscsi_tcp_send_hdr_prep(conn, mtask->hdr, sizeof(*mtask->hdr));
1701
1702 /* If we have immediate data, attach a payload */
1703 if (mtask->data_count)
1704 iscsi_tcp_send_linear_data_prepare(conn, mtask->data,
1705 mtask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001706}
1707
1708static int
1709iscsi_r2tpool_alloc(struct iscsi_session *session)
1710{
1711 int i;
1712 int cmd_i;
1713
1714 /*
1715 * initialize per-task: R2T pool and xmit queue
1716 */
1717 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1718 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05001719 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001720
1721 /*
1722 * pre-allocated x4 as much r2ts to handle race when
1723 * target acks DataOut faster than we data_xmit() queues
1724 * could replenish r2tqueue.
1725 */
1726
1727 /* R2T pool */
Olaf Kirch63203772007-12-13 12:43:25 -06001728 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4, NULL,
Mike Christie5bb0b552006-04-06 21:26:46 -05001729 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001730 goto r2t_alloc_fail;
1731 }
1732
1733 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05001734 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07001735 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05001736 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
Olaf Kirch63203772007-12-13 12:43:25 -06001737 iscsi_pool_free(&tcp_ctask->r2tpool);
Alex Aizman7ba24712005-08-04 19:30:08 -07001738 goto r2t_alloc_fail;
1739 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001740 }
1741
1742 return 0;
1743
1744r2t_alloc_fail:
1745 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001746 struct iscsi_cmd_task *ctask = session->cmds[i];
1747 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1748
Mike Christie5bb0b552006-04-06 21:26:46 -05001749 kfifo_free(tcp_ctask->r2tqueue);
Olaf Kirch63203772007-12-13 12:43:25 -06001750 iscsi_pool_free(&tcp_ctask->r2tpool);
Alex Aizman7ba24712005-08-04 19:30:08 -07001751 }
1752 return -ENOMEM;
1753}
1754
1755static void
1756iscsi_r2tpool_free(struct iscsi_session *session)
1757{
1758 int i;
1759
1760 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001761 struct iscsi_cmd_task *ctask = session->cmds[i];
1762 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1763
Mike Christie5bb0b552006-04-06 21:26:46 -05001764 kfifo_free(tcp_ctask->r2tqueue);
Olaf Kirch63203772007-12-13 12:43:25 -06001765 iscsi_pool_free(&tcp_ctask->r2tpool);
Alex Aizman7ba24712005-08-04 19:30:08 -07001766 }
1767}
1768
Alex Aizman7ba24712005-08-04 19:30:08 -07001769static int
Mike Christie7b7232f2006-02-01 21:06:49 -06001770iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05001771 char *buf, int buflen)
Alex Aizman7ba24712005-08-04 19:30:08 -07001772{
Mike Christie7b7232f2006-02-01 21:06:49 -06001773 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001774 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001775 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05001776 int value;
Alex Aizman7ba24712005-08-04 19:30:08 -07001777
Alex Aizman7ba24712005-08-04 19:30:08 -07001778 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001779 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001780 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001781 break;
1782 case ISCSI_PARAM_DATADGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001783 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05001784 tcp_conn->sendpage = conn->datadgst_en ?
1785 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07001786 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07001787 case ISCSI_PARAM_MAX_R2T:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001788 sscanf(buf, "%d", &value);
Mike Christiedf93ffc2007-12-13 12:43:42 -06001789 if (value <= 0 || !is_power_of_2(value))
1790 return -EINVAL;
1791 if (session->max_r2t == value)
Alex Aizman7ba24712005-08-04 19:30:08 -07001792 break;
1793 iscsi_r2tpool_free(session);
Mike Christie5c75b7f2006-06-28 12:00:26 -05001794 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001795 if (iscsi_r2tpool_alloc(session))
1796 return -ENOMEM;
1797 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07001798 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001799 return iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001800 }
1801
1802 return 0;
1803}
1804
1805static int
Mike Christie5c75b7f2006-06-28 12:00:26 -05001806iscsi_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
1807 enum iscsi_param param, char *buf)
Mike Christie7b8631b2006-01-13 18:05:50 -06001808{
Mike Christie7b7232f2006-02-01 21:06:49 -06001809 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05001810 int len;
Mike Christie7b8631b2006-01-13 18:05:50 -06001811
1812 switch(param) {
Mike Christiefd7255f2006-04-06 21:13:36 -05001813 case ISCSI_PARAM_CONN_PORT:
Mike Christie22236962007-05-30 12:57:24 -05001814 spin_lock_bh(&conn->session->lock);
1815 len = sprintf(buf, "%hu\n", conn->portal_port);
1816 spin_unlock_bh(&conn->session->lock);
Mike Christie8d2860b2006-05-02 19:46:47 -05001817 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05001818 case ISCSI_PARAM_CONN_ADDRESS:
Mike Christie22236962007-05-30 12:57:24 -05001819 spin_lock_bh(&conn->session->lock);
1820 len = sprintf(buf, "%s\n", conn->portal_address);
1821 spin_unlock_bh(&conn->session->lock);
Mike Christiefd7255f2006-04-06 21:13:36 -05001822 break;
1823 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05001824 return iscsi_conn_get_param(cls_conn, param, buf);
Mike Christiefd7255f2006-04-06 21:13:36 -05001825 }
1826
1827 return len;
1828}
1829
Alex Aizman7ba24712005-08-04 19:30:08 -07001830static void
Mike Christie7b7232f2006-02-01 21:06:49 -06001831iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07001832{
Mike Christie7b7232f2006-02-01 21:06:49 -06001833 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001834 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001835
1836 stats->txdata_octets = conn->txdata_octets;
1837 stats->rxdata_octets = conn->rxdata_octets;
1838 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
1839 stats->dataout_pdus = conn->dataout_pdus_cnt;
1840 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
1841 stats->datain_pdus = conn->datain_pdus_cnt;
1842 stats->r2t_pdus = conn->r2t_pdus_cnt;
1843 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
1844 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
1845 stats->custom_length = 3;
1846 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05001847 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001848 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05001849 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001850 strcpy(stats->custom[2].desc, "eh_abort_cnt");
1851 stats->custom[2].value = conn->eh_abort_cnt;
1852}
1853
Mike Christie5bb0b552006-04-06 21:26:46 -05001854static struct iscsi_cls_session *
Mike Christie75613522008-05-21 15:53:59 -05001855iscsi_tcp_session_create(struct Scsi_Host *shost, uint16_t cmds_max,
Mike Christie40753ca2008-05-21 15:53:56 -05001856 uint16_t qdepth, uint32_t initial_cmdsn,
1857 uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07001858{
Mike Christie5bb0b552006-04-06 21:26:46 -05001859 struct iscsi_cls_session *cls_session;
1860 struct iscsi_session *session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001861 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07001862
Mike Christie75613522008-05-21 15:53:59 -05001863 if (shost) {
1864 printk(KERN_ERR "iscsi_tcp: invalid shost %d.\n",
1865 shost->host_no);
Mike Christie5bb0b552006-04-06 21:26:46 -05001866 return NULL;
Mike Christie75613522008-05-21 15:53:59 -05001867 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001868
Mike Christiea4804cd2008-05-21 15:54:00 -05001869 shost = iscsi_host_alloc(&iscsi_sht, 0, qdepth);
Mike Christie75613522008-05-21 15:53:59 -05001870 if (!shost)
1871 return NULL;
1872 shost->transportt = iscsi_tcp_scsi_transport;
1873 shost->max_lun = iscsi_max_lun;
1874 shost->max_id = 0;
1875 shost->max_channel = 0;
1876 shost->max_cmd_len = 16;
Mike Christiea4804cd2008-05-21 15:54:00 -05001877 shost->can_queue = cmds_max;
Mike Christie75613522008-05-21 15:53:59 -05001878
Mike Christiea4804cd2008-05-21 15:54:00 -05001879 if (iscsi_host_add(shost, NULL))
Mike Christie75613522008-05-21 15:53:59 -05001880 goto free_host;
1881 *hostno = shost->host_no;
1882
1883 cls_session = iscsi_session_setup(&iscsi_tcp_transport, shost, cmds_max,
1884 sizeof(struct iscsi_tcp_cmd_task),
1885 sizeof(struct iscsi_tcp_mgmt_task),
1886 initial_cmdsn);
1887 if (!cls_session)
1888 goto remove_host;
1889 session = cls_session->dd_data;
1890
1891 shost->can_queue = session->cmds_max;
Mike Christie5bb0b552006-04-06 21:26:46 -05001892 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1893 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
1894 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1895
Boaz Harrosh004d6532007-12-13 12:43:23 -06001896 ctask->hdr = &tcp_ctask->hdr.cmd_hdr;
1897 ctask->hdr_max = sizeof(tcp_ctask->hdr) - ISCSI_DIGEST_SIZE;
Mike Christie5bb0b552006-04-06 21:26:46 -05001898 }
1899
1900 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
1901 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
1902 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
1903
Olaf Kircha8ac6312007-12-13 12:43:35 -06001904 mtask->hdr = (struct iscsi_hdr *) &tcp_mtask->hdr;
Mike Christie5bb0b552006-04-06 21:26:46 -05001905 }
1906
Mike Christie75613522008-05-21 15:53:59 -05001907 if (iscsi_r2tpool_alloc(session))
1908 goto remove_session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001909 return cls_session;
1910
Mike Christie75613522008-05-21 15:53:59 -05001911remove_session:
Mike Christie5bb0b552006-04-06 21:26:46 -05001912 iscsi_session_teardown(cls_session);
Mike Christie75613522008-05-21 15:53:59 -05001913remove_host:
Mike Christiea4804cd2008-05-21 15:54:00 -05001914 iscsi_host_remove(shost);
Mike Christie75613522008-05-21 15:53:59 -05001915free_host:
Mike Christiea4804cd2008-05-21 15:54:00 -05001916 iscsi_host_free(shost);
Mike Christie5bb0b552006-04-06 21:26:46 -05001917 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001918}
1919
Mike Christie5bb0b552006-04-06 21:26:46 -05001920static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
1921{
Mike Christie75613522008-05-21 15:53:59 -05001922 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
1923
1924 iscsi_r2tpool_free(cls_session->dd_data);
Mike Christie75613522008-05-21 15:53:59 -05001925
Mike Christiea4804cd2008-05-21 15:54:00 -05001926 iscsi_host_remove(shost);
1927 iscsi_host_free(shost);
Mike Christie5bb0b552006-04-06 21:26:46 -05001928}
1929
Mike Christied1d81c02007-05-30 12:57:21 -05001930static int iscsi_tcp_slave_configure(struct scsi_device *sdev)
1931{
Mike Christieb6d44fe2007-07-26 12:46:47 -05001932 blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_ANY);
Mike Christied1d81c02007-05-30 12:57:21 -05001933 blk_queue_dma_alignment(sdev->request_queue, 0);
1934 return 0;
1935}
1936
Mike Christie5bb0b552006-04-06 21:26:46 -05001937static struct scsi_host_template iscsi_sht = {
Mike Christie79743922007-07-26 12:46:46 -05001938 .module = THIS_MODULE,
Mike Christief4246b32006-07-24 15:47:54 -05001939 .name = "iSCSI Initiator over TCP/IP",
Mike Christie5bb0b552006-04-06 21:26:46 -05001940 .queuecommand = iscsi_queuecommand,
1941 .change_queue_depth = iscsi_change_queue_depth,
Mike Christie15482712007-05-30 12:57:19 -05001942 .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1,
Mike Christie66bbe0c2007-12-13 12:43:39 -06001943 .sg_tablesize = 4096,
Mike Christie8231f0e2007-02-28 17:32:20 -06001944 .max_sectors = 0xFFFF,
Mike Christie5bb0b552006-04-06 21:26:46 -05001945 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
1946 .eh_abort_handler = iscsi_eh_abort,
Mike Christie843c0a82007-12-13 12:43:20 -06001947 .eh_device_reset_handler= iscsi_eh_device_reset,
Mike Christie5bb0b552006-04-06 21:26:46 -05001948 .eh_host_reset_handler = iscsi_eh_host_reset,
1949 .use_clustering = DISABLE_CLUSTERING,
Mike Christied1d81c02007-05-30 12:57:21 -05001950 .slave_configure = iscsi_tcp_slave_configure,
Mike Christie5bb0b552006-04-06 21:26:46 -05001951 .proc_name = "iscsi_tcp",
1952 .this_id = -1,
1953};
1954
Alex Aizman7ba24712005-08-04 19:30:08 -07001955static struct iscsi_transport iscsi_tcp_transport = {
1956 .owner = THIS_MODULE,
1957 .name = "tcp",
1958 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
1959 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05001960 .param_mask = ISCSI_MAX_RECV_DLENGTH |
1961 ISCSI_MAX_XMIT_DLENGTH |
1962 ISCSI_HDRDGST_EN |
1963 ISCSI_DATADGST_EN |
1964 ISCSI_INITIAL_R2T_EN |
1965 ISCSI_MAX_R2T |
1966 ISCSI_IMM_DATA_EN |
1967 ISCSI_FIRST_BURST |
1968 ISCSI_MAX_BURST |
1969 ISCSI_PDU_INORDER_EN |
1970 ISCSI_DATASEQ_INORDER_EN |
1971 ISCSI_ERL |
1972 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05001973 ISCSI_CONN_ADDRESS |
Mike Christie5c75b7f2006-06-28 12:00:26 -05001974 ISCSI_EXP_STATSN |
1975 ISCSI_PERSISTENT_PORT |
1976 ISCSI_PERSISTENT_ADDRESS |
Mike Christieb2c64162007-05-30 12:57:16 -05001977 ISCSI_TARGET_NAME | ISCSI_TPGT |
1978 ISCSI_USERNAME | ISCSI_PASSWORD |
Mike Christie843c0a82007-12-13 12:43:20 -06001979 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
Mike Christief6d51802007-12-13 12:43:30 -06001980 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
1981 ISCSI_LU_RESET_TMO |
1982 ISCSI_PING_TMO | ISCSI_RECV_TMO,
Mike Christie22236962007-05-30 12:57:24 -05001983 .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS |
Mike Christied8196ed2007-05-30 12:57:25 -05001984 ISCSI_HOST_INITIATOR_NAME |
1985 ISCSI_HOST_NETDEV_NAME,
Mike Christie7b8631b2006-01-13 18:05:50 -06001986 .conndata_size = sizeof(struct iscsi_conn),
Mike Christie75613522008-05-21 15:53:59 -05001987 .sessiondata_size = sizeof(struct iscsi_session),
Mike Christie5bb0b552006-04-06 21:26:46 -05001988 /* session management */
1989 .create_session = iscsi_tcp_session_create,
1990 .destroy_session = iscsi_tcp_session_destroy,
1991 /* connection management */
1992 .create_conn = iscsi_tcp_conn_create,
1993 .bind_conn = iscsi_tcp_conn_bind,
1994 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07001995 .set_param = iscsi_conn_set_param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05001996 .get_conn_param = iscsi_tcp_conn_get_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06001997 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07001998 .start_conn = iscsi_conn_start,
Mike Christie1c834692006-07-24 15:47:26 -05001999 .stop_conn = iscsi_tcp_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -05002000 /* iscsi host params */
Mike Christie75613522008-05-21 15:53:59 -05002001 .get_host_param = iscsi_host_get_param,
Mike Christie0801c242007-05-30 12:57:12 -05002002 .set_host_param = iscsi_host_set_param,
Mike Christie5bb0b552006-04-06 21:26:46 -05002003 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002004 .send_pdu = iscsi_conn_send_pdu,
2005 .get_stats = iscsi_conn_get_stats,
Olaf Kircha8ac6312007-12-13 12:43:35 -06002006 .init_cmd_task = iscsi_tcp_ctask_init,
2007 .init_mgmt_task = iscsi_tcp_mtask_init,
Mike Christie5bb0b552006-04-06 21:26:46 -05002008 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2009 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2010 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2011 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002012 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002013};
2014
2015static int __init
2016iscsi_tcp_init(void)
2017{
Alex Aizman7ba24712005-08-04 19:30:08 -07002018 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002019 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2020 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002021 return -EINVAL;
2022 }
Alex Aizman7ba24712005-08-04 19:30:08 -07002023
Mike Christie75613522008-05-21 15:53:59 -05002024 iscsi_tcp_scsi_transport = iscsi_register_transport(
2025 &iscsi_tcp_transport);
2026 if (!iscsi_tcp_scsi_transport)
Mike Christieffbfe922006-05-18 20:31:36 -05002027 return -ENODEV;
Alex Aizman7ba24712005-08-04 19:30:08 -07002028
Mike Christie7b8631b2006-01-13 18:05:50 -06002029 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002030}
2031
2032static void __exit
2033iscsi_tcp_exit(void)
2034{
2035 iscsi_unregister_transport(&iscsi_tcp_transport);
Alex Aizman7ba24712005-08-04 19:30:08 -07002036}
2037
2038module_init(iscsi_tcp_init);
2039module_exit(iscsi_tcp_exit);