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