blob: fd88777df28bc440b07eeb07244a8471ccd7f4d0 [file] [log] [blame]
Alex Aizman7ba24712005-08-04 19:30:08 -07001/*
2 * iSCSI Initiator over TCP/IP Data-Path
3 *
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
Mike Christie5bb0b552006-04-06 21:26:46 -05006 * Copyright (C) 2005 - 2006 Mike Christie
7 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
Alex Aizman7ba24712005-08-04 19:30:08 -07008 * maintained by open-iscsi@googlegroups.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published
12 * by the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * See the file COPYING included with this distribution for more details.
21 *
22 * Credits:
23 * Christoph Hellwig
24 * FUJITA Tomonori
25 * Arne Redlich
26 * Zhenyu Wang
27 */
28
29#include <linux/types.h>
30#include <linux/list.h>
31#include <linux/inet.h>
Mike Christie4e7aba72007-05-30 12:57:23 -050032#include <linux/file.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070033#include <linux/blkdev.h>
34#include <linux/crypto.h>
35#include <linux/delay.h>
36#include <linux/kfifo.h>
37#include <linux/scatterlist.h>
38#include <net/tcp.h>
39#include <scsi/scsi_cmnd.h>
Mike Christied1d81c02007-05-30 12:57:21 -050040#include <scsi/scsi_device.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070041#include <scsi/scsi_host.h>
42#include <scsi/scsi.h>
43#include <scsi/scsi_transport_iscsi.h>
44
45#include "iscsi_tcp.h"
46
47MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
48 "Alex Aizman <itn780@yahoo.com>");
49MODULE_DESCRIPTION("iSCSI/TCP data-path");
50MODULE_LICENSE("GPL");
Olaf Kirchda32dd62007-12-13 12:43:21 -060051#undef DEBUG_TCP
Alex Aizman7ba24712005-08-04 19:30:08 -070052#define DEBUG_ASSERT
53
54#ifdef DEBUG_TCP
Mike Christie5bb0b552006-04-06 21:26:46 -050055#define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
Alex Aizman7ba24712005-08-04 19:30:08 -070056#else
57#define debug_tcp(fmt...)
58#endif
59
Alex Aizman7ba24712005-08-04 19:30:08 -070060#ifndef DEBUG_ASSERT
61#ifdef BUG_ON
62#undef BUG_ON
63#endif
64#define BUG_ON(expr)
65#endif
66
Alex Aizman7ba24712005-08-04 19:30:08 -070067static unsigned int iscsi_max_lun = 512;
68module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
69
Olaf Kirchda32dd62007-12-13 12:43:21 -060070static int iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
71 struct iscsi_chunk *chunk);
72
Alex Aizman7ba24712005-08-04 19:30:08 -070073static inline void
Alex Aizman7ba24712005-08-04 19:30:08 -070074iscsi_buf_init_iov(struct iscsi_buf *ibuf, char *vbuf, int size)
75{
Olaf Kirchda32dd62007-12-13 12:43:21 -060076 ibuf->sg.page = virt_to_page(vbuf);
77 ibuf->sg.offset = offset_in_page(vbuf);
78 ibuf->sg.length = size;
Alex Aizman7ba24712005-08-04 19:30:08 -070079 ibuf->sent = 0;
Mike Christie7cae5152006-01-13 18:05:47 -060080 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070081}
82
83static inline void
84iscsi_buf_init_sg(struct iscsi_buf *ibuf, struct scatterlist *sg)
85{
Olaf Kirchda32dd62007-12-13 12:43:21 -060086 ibuf->sg.page = sg->page;
87 ibuf->sg.offset = sg->offset;
88 ibuf->sg.length = sg->length;
Alex Aizman7ba24712005-08-04 19:30:08 -070089 /*
90 * Fastpath: sg element fits into single page
91 */
Olaf Kirchda32dd62007-12-13 12:43:21 -060092 if (sg->length + sg->offset <= PAGE_SIZE && !PageSlab(sg->page))
Mike Christie7cae5152006-01-13 18:05:47 -060093 ibuf->use_sendmsg = 0;
94 else
95 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070096 ibuf->sent = 0;
97}
98
99static inline int
100iscsi_buf_left(struct iscsi_buf *ibuf)
101{
102 int rc;
103
104 rc = ibuf->sg.length - ibuf->sent;
105 BUG_ON(rc < 0);
106 return rc;
107}
108
109static inline void
Mike Christieaf973482005-09-12 21:01:32 -0500110iscsi_hdr_digest(struct iscsi_conn *conn, struct iscsi_buf *buf,
111 u8* crc)
Alex Aizman7ba24712005-08-04 19:30:08 -0700112{
Mike Christie5bb0b552006-04-06 21:26:46 -0500113 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
114
James Bottomleyc9802cd2006-09-23 15:33:43 -0500115 crypto_hash_digest(&tcp_conn->tx_hash, &buf->sg, buf->sg.length, crc);
Mike Christie218432c2007-05-30 12:57:17 -0500116 buf->sg.length += sizeof(u32);
Alex Aizman7ba24712005-08-04 19:30:08 -0700117}
118
Olaf Kirchda32dd62007-12-13 12:43:21 -0600119/*
120 * Scatterlist handling: inside the iscsi_chunk, we
121 * remember an index into the scatterlist, and set data/size
122 * to the current scatterlist entry. For highmem pages, we
123 * kmap as needed.
124 *
125 * Note that the page is unmapped when we return from
126 * TCP's data_ready handler, so we may end up mapping and
127 * unmapping the same page repeatedly. The whole reason
128 * for this is that we shouldn't keep the page mapped
129 * outside the softirq.
130 */
131
132/**
133 * iscsi_tcp_chunk_init_sg - init indicated scatterlist entry
134 * @chunk: the buffer object
135 * @idx: index into scatterlist
136 * @offset: byte offset into that sg entry
137 *
138 * This function sets up the chunk so that subsequent
139 * data is copied to the indicated sg entry, at the given
140 * offset.
141 */
142static inline void
143iscsi_tcp_chunk_init_sg(struct iscsi_chunk *chunk,
144 unsigned int idx, unsigned int offset)
Alex Aizman7ba24712005-08-04 19:30:08 -0700145{
Olaf Kirchda32dd62007-12-13 12:43:21 -0600146 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700147
Olaf Kirchda32dd62007-12-13 12:43:21 -0600148 BUG_ON(chunk->sg == NULL);
Alex Aizman7ba24712005-08-04 19:30:08 -0700149
Olaf Kirchda32dd62007-12-13 12:43:21 -0600150 sg = &chunk->sg[idx];
151 chunk->sg_index = idx;
152 chunk->sg_offset = offset;
153 chunk->size = min(sg->length - offset, chunk->total_size);
154 chunk->data = NULL;
155}
Alex Aizman7ba24712005-08-04 19:30:08 -0700156
Olaf Kirchda32dd62007-12-13 12:43:21 -0600157/**
158 * iscsi_tcp_chunk_map - map the current S/G page
159 * @chunk: iscsi chunk
160 *
161 * We only need to possibly kmap data if scatter lists are being used,
162 * because the iscsi passthrough and internal IO paths will never use high
163 * mem pages.
164 */
165static inline void
166iscsi_tcp_chunk_map(struct iscsi_chunk *chunk)
167{
168 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700169
Olaf Kirchda32dd62007-12-13 12:43:21 -0600170 if (chunk->data != NULL || !chunk->sg)
171 return;
Alex Aizman7ba24712005-08-04 19:30:08 -0700172
Olaf Kirchda32dd62007-12-13 12:43:21 -0600173 sg = &chunk->sg[chunk->sg_index];
174 BUG_ON(chunk->sg_mapped);
175 BUG_ON(sg->length == 0);
176 chunk->sg_mapped = kmap_atomic(sg->page, KM_SOFTIRQ0);
177 chunk->data = chunk->sg_mapped + sg->offset + chunk->sg_offset;
178}
Alex Aizman7ba24712005-08-04 19:30:08 -0700179
Olaf Kirchda32dd62007-12-13 12:43:21 -0600180static inline void
181iscsi_tcp_chunk_unmap(struct iscsi_chunk *chunk)
182{
183 if (chunk->sg_mapped) {
184 kunmap_atomic(chunk->sg_mapped, KM_SOFTIRQ0);
185 chunk->sg_mapped = NULL;
186 chunk->data = NULL;
187 }
188}
Alex Aizman7ba24712005-08-04 19:30:08 -0700189
Olaf Kirchda32dd62007-12-13 12:43:21 -0600190/*
191 * Splice the digest buffer into the buffer
192 */
193static inline void
194iscsi_tcp_chunk_splice_digest(struct iscsi_chunk *chunk, void *digest)
195{
196 chunk->data = digest;
197 chunk->digest_len = ISCSI_DIGEST_SIZE;
198 chunk->total_size += ISCSI_DIGEST_SIZE;
199 chunk->size = ISCSI_DIGEST_SIZE;
200 chunk->copied = 0;
201 chunk->sg = NULL;
202 chunk->sg_index = 0;
203 chunk->hash = NULL;
204}
Alex Aizman7ba24712005-08-04 19:30:08 -0700205
Olaf Kirchda32dd62007-12-13 12:43:21 -0600206/**
207 * iscsi_tcp_chunk_done - check whether the chunk is complete
208 * @chunk: iscsi chunk to check
209 *
210 * Check if we're done receiving this chunk. If the receive
211 * buffer is full but we expect more data, move on to the
212 * next entry in the scatterlist.
213 *
214 * If the amount of data we received isn't a multiple of 4,
215 * we will transparently receive the pad bytes, too.
216 *
217 * This function must be re-entrant.
218 */
219static inline int
220iscsi_tcp_chunk_done(struct iscsi_chunk *chunk)
221{
222 static unsigned char padbuf[ISCSI_PAD_LEN];
223
224 if (chunk->copied < chunk->size) {
225 iscsi_tcp_chunk_map(chunk);
226 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700227 }
228
Olaf Kirchda32dd62007-12-13 12:43:21 -0600229 chunk->total_copied += chunk->copied;
230 chunk->copied = 0;
231 chunk->size = 0;
232
233 /* Unmap the current scatterlist page, if there is one. */
234 iscsi_tcp_chunk_unmap(chunk);
235
236 /* Do we have more scatterlist entries? */
237 if (chunk->total_copied < chunk->total_size) {
238 /* Proceed to the next entry in the scatterlist. */
239 iscsi_tcp_chunk_init_sg(chunk, chunk->sg_index + 1, 0);
240 iscsi_tcp_chunk_map(chunk);
241 BUG_ON(chunk->size == 0);
242 return 0;
243 }
244
245 /* Do we need to handle padding? */
246 if (chunk->total_copied & (ISCSI_PAD_LEN-1)) {
247 unsigned int pad;
248
249 pad = ISCSI_PAD_LEN - (chunk->total_copied & (ISCSI_PAD_LEN-1));
250 debug_tcp("consume %d pad bytes\n", pad);
251 chunk->total_size += pad;
252 chunk->size = pad;
253 chunk->data = padbuf;
254 return 0;
255 }
256
257 /*
258 * Set us up for receiving the data digest. hdr digest
259 * is completely handled in hdr done function.
260 */
261 if (chunk->hash) {
262 if (chunk->digest_len == 0) {
263 crypto_hash_final(chunk->hash, chunk->digest);
264 iscsi_tcp_chunk_splice_digest(chunk,
265 chunk->recv_digest);
266 return 0;
267 }
268 }
269
270 return 1;
271}
272
273/**
274 * iscsi_tcp_chunk_recv - copy data to chunk
275 * @tcp_conn: the iSCSI TCP connection
276 * @chunk: the buffer to copy to
277 * @ptr: data pointer
278 * @len: amount of data available
279 *
280 * This function copies up to @len bytes to the
281 * given buffer, and returns the number of bytes
282 * consumed, which can actually be less than @len.
283 *
284 * If hash digest is enabled, the function will update the
285 * hash while copying.
286 * Combining these two operations doesn't buy us a lot (yet),
287 * but in the future we could implement combined copy+crc,
288 * just way we do for network layer checksums.
289 */
290static int
291iscsi_tcp_chunk_recv(struct iscsi_tcp_conn *tcp_conn,
292 struct iscsi_chunk *chunk, const void *ptr,
293 unsigned int len)
294{
295 struct scatterlist sg;
296 unsigned int copy, copied = 0;
297
298 while (!iscsi_tcp_chunk_done(chunk)) {
299 if (copied == len)
300 goto out;
301
302 copy = min(len - copied, chunk->size - chunk->copied);
303 memcpy(chunk->data + chunk->copied, ptr + copied, copy);
304
305 if (chunk->hash) {
306 sg_init_one(&sg, ptr + copied, copy);
307 crypto_hash_update(chunk->hash, &sg, copy);
308 }
309 chunk->copied += copy;
310 copied += copy;
311 }
312
313out:
314 return copied;
315}
316
317static inline void
318iscsi_tcp_dgst_header(struct hash_desc *hash, const void *hdr, size_t hdrlen,
319 unsigned char digest[ISCSI_DIGEST_SIZE])
320{
321 struct scatterlist sg;
322
323 sg_init_one(&sg, hdr, hdrlen);
324 crypto_hash_digest(hash, &sg, hdrlen, digest);
325}
326
327static inline int
328iscsi_tcp_dgst_verify(struct iscsi_tcp_conn *tcp_conn,
329 struct iscsi_chunk *chunk)
330{
331 if (!chunk->digest_len)
332 return 1;
333
334 if (memcmp(chunk->recv_digest, chunk->digest, chunk->digest_len)) {
335 debug_scsi("digest mismatch\n");
336 return 0;
337 }
338
339 return 1;
340}
341
342/*
343 * Helper function to set up chunk buffer
344 */
345static inline void
346__iscsi_chunk_init(struct iscsi_chunk *chunk, size_t size,
347 iscsi_chunk_done_fn_t *done, struct hash_desc *hash)
348{
349 memset(chunk, 0, sizeof(*chunk));
350 chunk->total_size = size;
351 chunk->done = done;
352
353 if (hash) {
354 chunk->hash = hash;
355 crypto_hash_init(hash);
356 }
357}
358
359static inline void
360iscsi_chunk_init_linear(struct iscsi_chunk *chunk, void *data, size_t size,
361 iscsi_chunk_done_fn_t *done, struct hash_desc *hash)
362{
363 __iscsi_chunk_init(chunk, size, done, hash);
364 chunk->data = data;
365 chunk->size = size;
366}
367
368static inline int
369iscsi_chunk_seek_sg(struct iscsi_chunk *chunk,
370 struct scatterlist *sg, unsigned int sg_count,
371 unsigned int offset, size_t size,
372 iscsi_chunk_done_fn_t *done, struct hash_desc *hash)
373{
374 unsigned int i;
375
376 __iscsi_chunk_init(chunk, size, done, hash);
377 for (i = 0; i < sg_count; ++i) {
378 if (offset < sg[i].length) {
379 chunk->sg = sg;
380 chunk->sg_count = sg_count;
381 iscsi_tcp_chunk_init_sg(chunk, i, offset);
382 return 0;
383 }
384 offset -= sg[i].length;
385 }
386
387 return ISCSI_ERR_DATA_OFFSET;
388}
389
390/**
391 * iscsi_tcp_hdr_recv_prep - prep chunk for hdr reception
392 * @tcp_conn: iscsi connection to prep for
393 *
394 * This function always passes NULL for the hash argument, because when this
395 * function is called we do not yet know the final size of the header and want
396 * to delay the digest processing until we know that.
397 */
398static void
399iscsi_tcp_hdr_recv_prep(struct iscsi_tcp_conn *tcp_conn)
400{
401 debug_tcp("iscsi_tcp_hdr_recv_prep(%p%s)\n", tcp_conn,
402 tcp_conn->iscsi_conn->hdrdgst_en ? ", digest enabled" : "");
403 iscsi_chunk_init_linear(&tcp_conn->in.chunk,
404 tcp_conn->in.hdr_buf, sizeof(struct iscsi_hdr),
405 iscsi_tcp_hdr_recv_done, NULL);
406}
407
408/*
409 * Handle incoming reply to any other type of command
410 */
411static int
412iscsi_tcp_data_recv_done(struct iscsi_tcp_conn *tcp_conn,
413 struct iscsi_chunk *chunk)
414{
415 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
416 int rc = 0;
417
418 if (!iscsi_tcp_dgst_verify(tcp_conn, chunk))
419 return ISCSI_ERR_DATA_DGST;
420
421 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr,
422 conn->data, tcp_conn->in.datalen);
423 if (rc)
424 return rc;
425
426 iscsi_tcp_hdr_recv_prep(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700427 return 0;
428}
429
Olaf Kirchda32dd62007-12-13 12:43:21 -0600430static void
431iscsi_tcp_data_recv_prep(struct iscsi_tcp_conn *tcp_conn)
432{
433 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
434 struct hash_desc *rx_hash = NULL;
435
436 if (conn->datadgst_en)
437 rx_hash = &tcp_conn->rx_hash;
438
439 iscsi_chunk_init_linear(&tcp_conn->in.chunk,
440 conn->data, tcp_conn->in.datalen,
441 iscsi_tcp_data_recv_done, rx_hash);
442}
443
Mike Christie30a6c652006-04-06 21:13:39 -0500444/*
445 * must be called with session lock
446 */
447static void
Mike Christieb6c395e2006-07-24 15:47:15 -0500448iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -0700449{
Mike Christie5bb0b552006-04-06 21:26:46 -0500450 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christieb6c395e2006-07-24 15:47:15 -0500451 struct iscsi_r2t_info *r2t;
Mike Christie30a6c652006-04-06 21:13:39 -0500452 struct scsi_cmnd *sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700453
Mike Christieb6c395e2006-07-24 15:47:15 -0500454 /* flush ctask's r2t queues */
455 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
456 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
457 sizeof(void*));
458 debug_scsi("iscsi_tcp_cleanup_ctask pending r2t dropped\n");
459 }
460
Mike Christie30a6c652006-04-06 21:13:39 -0500461 sc = ctask->sc;
462 if (unlikely(!sc))
Alex Aizman7ba24712005-08-04 19:30:08 -0700463 return;
Mike Christie30a6c652006-04-06 21:13:39 -0500464
Mike Christie843c0a82007-12-13 12:43:20 -0600465 tcp_ctask->xmstate = XMSTATE_IDLE;
Mike Christie5bb0b552006-04-06 21:26:46 -0500466 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -0700467}
468
469/**
470 * iscsi_data_rsp - SCSI Data-In Response processing
471 * @conn: iscsi connection
472 * @ctask: scsi command task
473 **/
474static int
475iscsi_data_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
476{
Mike Christie5bb0b552006-04-06 21:26:46 -0500477 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
478 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
479 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700480 struct iscsi_session *session = conn->session;
Mike Christie857ae0b2007-05-30 12:57:15 -0500481 struct scsi_cmnd *sc = ctask->sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700482 int datasn = be32_to_cpu(rhdr->datasn);
483
Mike Christie77a23c22007-05-30 12:57:18 -0500484 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Alex Aizman7ba24712005-08-04 19:30:08 -0700485 /*
486 * setup Data-In byte counter (gets decremented..)
487 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500488 ctask->data_count = tcp_conn->in.datalen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700489
Mike Christie5bb0b552006-04-06 21:26:46 -0500490 if (tcp_conn->in.datalen == 0)
Alex Aizman7ba24712005-08-04 19:30:08 -0700491 return 0;
492
Mike Christied473cc72007-05-30 12:57:14 -0500493 if (tcp_ctask->exp_datasn != datasn) {
494 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->datasn(%d)\n",
495 __FUNCTION__, tcp_ctask->exp_datasn, datasn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700496 return ISCSI_ERR_DATASN;
Mike Christied473cc72007-05-30 12:57:14 -0500497 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700498
Mike Christied473cc72007-05-30 12:57:14 -0500499 tcp_ctask->exp_datasn++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700500
Mike Christie5bb0b552006-04-06 21:26:46 -0500501 tcp_ctask->data_offset = be32_to_cpu(rhdr->offset);
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900502 if (tcp_ctask->data_offset + tcp_conn->in.datalen > scsi_bufflen(sc)) {
Mike Christie857ae0b2007-05-30 12:57:15 -0500503 debug_tcp("%s: data_offset(%d) + data_len(%d) > total_length_in(%d)\n",
504 __FUNCTION__, tcp_ctask->data_offset,
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900505 tcp_conn->in.datalen, scsi_bufflen(sc));
Alex Aizman7ba24712005-08-04 19:30:08 -0700506 return ISCSI_ERR_DATA_OFFSET;
Mike Christie857ae0b2007-05-30 12:57:15 -0500507 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700508
509 if (rhdr->flags & ISCSI_FLAG_DATA_STATUS) {
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600510 sc->result = (DID_OK << 16) | rhdr->cmd_status;
Alex Aizman7ba24712005-08-04 19:30:08 -0700511 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600512 if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW |
513 ISCSI_FLAG_DATA_OVERFLOW)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700514 int res_count = be32_to_cpu(rhdr->residual_count);
515
516 if (res_count > 0 &&
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600517 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
518 res_count <= scsi_bufflen(sc)))
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900519 scsi_set_resid(sc, res_count);
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600520 else
Alex Aizman7ba24712005-08-04 19:30:08 -0700521 sc->result = (DID_BAD_TARGET << 16) |
522 rhdr->cmd_status;
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600523 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700524 }
525
526 conn->datain_pdus_cnt++;
527 return 0;
528}
529
530/**
531 * iscsi_solicit_data_init - initialize first Data-Out
532 * @conn: iscsi connection
533 * @ctask: scsi command task
534 * @r2t: R2T info
535 *
536 * Notes:
537 * Initialize first Data-Out within this R2T sequence and finds
538 * proper data_offset within this SCSI command.
539 *
540 * This function is called with connection lock taken.
541 **/
542static void
543iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
544 struct iscsi_r2t_info *r2t)
545{
546 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700547 struct scsi_cmnd *sc = ctask->sc;
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900548 int i, sg_count = 0;
549 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700550
Mike Christieffbfe922006-05-18 20:31:36 -0500551 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700552 memset(hdr, 0, sizeof(struct iscsi_data));
553 hdr->ttt = r2t->ttt;
554 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
555 r2t->solicit_datasn++;
556 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500557 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
558 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700559 hdr->exp_statsn = r2t->exp_statsn;
560 hdr->offset = cpu_to_be32(r2t->data_offset);
561 if (r2t->data_length > conn->max_xmit_dlength) {
562 hton24(hdr->dlength, conn->max_xmit_dlength);
563 r2t->data_count = conn->max_xmit_dlength;
564 hdr->flags = 0;
565 } else {
566 hton24(hdr->dlength, r2t->data_length);
567 r2t->data_count = r2t->data_length;
568 hdr->flags = ISCSI_FLAG_CMD_FINAL;
569 }
570 conn->dataout_pdus_cnt++;
571
572 r2t->sent = 0;
573
Mike Christie6e458cc2006-05-18 20:31:31 -0500574 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -0500575 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -0700576
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900577 sg = scsi_sglist(sc);
578 r2t->sg = NULL;
579 for (i = 0; i < scsi_sg_count(sc); i++, sg += 1) {
580 /* FIXME: prefetch ? */
581 if (sg_count + sg->length > r2t->data_offset) {
582 int page_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700583
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900584 /* sg page found! */
Alex Aizman7ba24712005-08-04 19:30:08 -0700585
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900586 /* offset within this page */
587 page_offset = r2t->data_offset - sg_count;
Alex Aizman7ba24712005-08-04 19:30:08 -0700588
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900589 /* fill in this buffer */
590 iscsi_buf_init_sg(&r2t->sendbuf, sg);
591 r2t->sendbuf.sg.offset += page_offset;
592 r2t->sendbuf.sg.length -= page_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700593
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900594 /* xmit logic will continue with next one */
595 r2t->sg = sg + 1;
596 break;
Alex Aizman7ba24712005-08-04 19:30:08 -0700597 }
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900598 sg_count += sg->length;
Mike Christie62f38302006-08-31 18:09:27 -0400599 }
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900600 BUG_ON(r2t->sg == NULL);
Alex Aizman7ba24712005-08-04 19:30:08 -0700601}
602
603/**
604 * iscsi_r2t_rsp - iSCSI R2T Response processing
605 * @conn: iscsi connection
606 * @ctask: scsi command task
607 **/
608static int
609iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
610{
611 struct iscsi_r2t_info *r2t;
612 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500613 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
614 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
615 struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700616 int r2tsn = be32_to_cpu(rhdr->r2tsn);
617 int rc;
618
Mike Christie98a94162006-08-31 18:09:26 -0400619 if (tcp_conn->in.datalen) {
620 printk(KERN_ERR "iscsi_tcp: invalid R2t with datalen %d\n",
621 tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700622 return ISCSI_ERR_DATALEN;
Mike Christie98a94162006-08-31 18:09:26 -0400623 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700624
Mike Christied473cc72007-05-30 12:57:14 -0500625 if (tcp_ctask->exp_datasn != r2tsn){
626 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->r2tsn(%d)\n",
627 __FUNCTION__, tcp_ctask->exp_datasn, r2tsn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700628 return ISCSI_ERR_R2TSN;
Mike Christied473cc72007-05-30 12:57:14 -0500629 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700630
Alex Aizman7ba24712005-08-04 19:30:08 -0700631 /* fill-in new R2T associated with the task */
632 spin_lock(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -0500633 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
634
Mike Christie843c0a82007-12-13 12:43:20 -0600635 if (!ctask->sc || session->state != ISCSI_STATE_LOGGED_IN) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700636 printk(KERN_INFO "iscsi_tcp: dropping R2T itt %d in "
637 "recovery...\n", ctask->itt);
638 spin_unlock(&session->lock);
639 return 0;
640 }
Mike Christieb6c395e2006-07-24 15:47:15 -0500641
Mike Christie5bb0b552006-04-06 21:26:46 -0500642 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700643 BUG_ON(!rc);
644
645 r2t->exp_statsn = rhdr->statsn;
646 r2t->data_length = be32_to_cpu(rhdr->data_length);
Mike Christie98a94162006-08-31 18:09:26 -0400647 if (r2t->data_length == 0) {
648 printk(KERN_ERR "iscsi_tcp: invalid R2T with zero data len\n");
Alex Aizman7ba24712005-08-04 19:30:08 -0700649 spin_unlock(&session->lock);
650 return ISCSI_ERR_DATALEN;
651 }
652
Mike Christie98a94162006-08-31 18:09:26 -0400653 if (r2t->data_length > session->max_burst)
654 debug_scsi("invalid R2T with data len %u and max burst %u."
655 "Attempting to execute request.\n",
656 r2t->data_length, session->max_burst);
657
Alex Aizman7ba24712005-08-04 19:30:08 -0700658 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900659 if (r2t->data_offset + r2t->data_length > scsi_bufflen(ctask->sc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700660 spin_unlock(&session->lock);
Mike Christie98a94162006-08-31 18:09:26 -0400661 printk(KERN_ERR "iscsi_tcp: invalid R2T with data len %u at "
662 "offset %u and total length %d\n", r2t->data_length,
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900663 r2t->data_offset, scsi_bufflen(ctask->sc));
Alex Aizman7ba24712005-08-04 19:30:08 -0700664 return ISCSI_ERR_DATALEN;
665 }
666
667 r2t->ttt = rhdr->ttt; /* no flip */
668 r2t->solicit_datasn = 0;
669
670 iscsi_solicit_data_init(conn, ctask, r2t);
671
Mike Christied473cc72007-05-30 12:57:14 -0500672 tcp_ctask->exp_datasn = r2tsn + 1;
Mike Christie5bb0b552006-04-06 21:26:46 -0500673 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
Mike Christie843c0a82007-12-13 12:43:20 -0600674 tcp_ctask->xmstate |= XMSTATE_SOL_HDR_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -0700675 conn->r2t_pdus_cnt++;
Mike Christie843c0a82007-12-13 12:43:20 -0600676
677 iscsi_requeue_ctask(ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -0700678 spin_unlock(&session->lock);
679
680 return 0;
681}
682
Olaf Kirchda32dd62007-12-13 12:43:21 -0600683/*
684 * Handle incoming reply to DataIn command
685 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700686static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600687iscsi_tcp_process_data_in(struct iscsi_tcp_conn *tcp_conn,
688 struct iscsi_chunk *chunk)
689{
690 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
691 struct iscsi_hdr *hdr = tcp_conn->in.hdr;
692 int rc;
693
694 if (!iscsi_tcp_dgst_verify(tcp_conn, chunk))
695 return ISCSI_ERR_DATA_DGST;
696
697 /* check for non-exceptional status */
698 if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
699 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
700 if (rc)
701 return rc;
702 }
703
704 iscsi_tcp_hdr_recv_prep(tcp_conn);
705 return 0;
706}
707
708/**
709 * iscsi_tcp_hdr_dissect - process PDU header
710 * @conn: iSCSI connection
711 * @hdr: PDU header
712 *
713 * This function analyzes the header of the PDU received,
714 * and performs several sanity checks. If the PDU is accompanied
715 * by data, the receive buffer is set up to copy the incoming data
716 * to the correct location.
717 */
718static int
719iscsi_tcp_hdr_dissect(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
Alex Aizman7ba24712005-08-04 19:30:08 -0700720{
Mike Christie5bb0b552006-04-06 21:26:46 -0500721 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700722 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500723 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600724 struct iscsi_cmd_task *ctask;
725 uint32_t itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700726
727 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500728 tcp_conn->in.datalen = ntoh24(hdr->dlength);
729 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700730 printk(KERN_ERR "iscsi_tcp: datalen %d > %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500731 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700732 return ISCSI_ERR_DATALEN;
733 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700734
Olaf Kirchda32dd62007-12-13 12:43:21 -0600735 /* Additional header segments. So far, we don't
736 * process additional headers.
737 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500738 ahslen = hdr->hlength << 2;
Alex Aizman7ba24712005-08-04 19:30:08 -0700739
Mike Christie5bb0b552006-04-06 21:26:46 -0500740 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700741 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500742 rc = iscsi_verify_itt(conn, hdr, &itt);
743 if (rc == ISCSI_ERR_NO_SCSI_CMD) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600744 /* XXX: what does this do? */
Mike Christie5bb0b552006-04-06 21:26:46 -0500745 tcp_conn->in.datalen = 0; /* force drop */
746 return 0;
747 } else if (rc)
748 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700749
Olaf Kirchda32dd62007-12-13 12:43:21 -0600750 debug_tcp("opcode 0x%x ahslen %d datalen %d\n",
751 opcode, ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700752
Mike Christie5bb0b552006-04-06 21:26:46 -0500753 switch(opcode) {
754 case ISCSI_OP_SCSI_DATA_IN:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600755 ctask = session->cmds[itt];
756 rc = iscsi_data_rsp(conn, ctask);
Mike Christie275fd7d2006-07-24 15:47:17 -0500757 if (rc)
758 return rc;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600759 if (tcp_conn->in.datalen) {
760 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
761 struct hash_desc *rx_hash = NULL;
762
763 /*
764 * Setup copy of Data-In into the Scsi_Cmnd
765 * Scatterlist case:
766 * We set up the iscsi_chunk to point to the next
767 * scatterlist entry to copy to. As we go along,
768 * we move on to the next scatterlist entry and
769 * update the digest per-entry.
770 */
771 if (conn->datadgst_en)
772 rx_hash = &tcp_conn->rx_hash;
773
774 debug_tcp("iscsi_tcp_begin_data_in(%p, offset=%d, "
775 "datalen=%d)\n", tcp_conn,
776 tcp_ctask->data_offset,
777 tcp_conn->in.datalen);
778 return iscsi_chunk_seek_sg(&tcp_conn->in.chunk,
779 scsi_sglist(ctask->sc),
780 scsi_sg_count(ctask->sc),
781 tcp_ctask->data_offset,
782 tcp_conn->in.datalen,
783 iscsi_tcp_process_data_in,
784 rx_hash);
785 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500786 /* fall through */
787 case ISCSI_OP_SCSI_CMD_RSP:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600788 if (tcp_conn->in.datalen) {
789 iscsi_tcp_data_recv_prep(tcp_conn);
790 return 0;
791 }
792 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500793 break;
794 case ISCSI_OP_R2T:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600795 ctask = session->cmds[itt];
Mike Christie5bb0b552006-04-06 21:26:46 -0500796 if (ahslen)
797 rc = ISCSI_ERR_AHSLEN;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600798 else if (ctask->sc->sc_data_direction == DMA_TO_DEVICE)
799 rc = iscsi_r2t_rsp(conn, ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -0500800 else
801 rc = ISCSI_ERR_PROTO;
802 break;
803 case ISCSI_OP_LOGIN_RSP:
804 case ISCSI_OP_TEXT_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500805 case ISCSI_OP_REJECT:
806 case ISCSI_OP_ASYNC_EVENT:
Mike Christiec8dc1e52006-07-24 15:47:39 -0500807 /*
808 * It is possible that we could get a PDU with a buffer larger
809 * than 8K, but there are no targets that currently do this.
810 * For now we fail until we find a vendor that needs it
811 */
Olaf Kirchda32dd62007-12-13 12:43:21 -0600812 if (ISCSI_DEF_MAX_RECV_SEG_LEN < tcp_conn->in.datalen) {
Mike Christiec8dc1e52006-07-24 15:47:39 -0500813 printk(KERN_ERR "iscsi_tcp: received buffer of len %u "
814 "but conn buffer is only %u (opcode %0x)\n",
815 tcp_conn->in.datalen,
Mike Christiebf32ed32007-02-28 17:32:17 -0600816 ISCSI_DEF_MAX_RECV_SEG_LEN, opcode);
Mike Christiec8dc1e52006-07-24 15:47:39 -0500817 rc = ISCSI_ERR_PROTO;
818 break;
819 }
820
Olaf Kirchda32dd62007-12-13 12:43:21 -0600821 /* If there's data coming in with the response,
822 * receive it to the connection's buffer.
823 */
824 if (tcp_conn->in.datalen) {
825 iscsi_tcp_data_recv_prep(tcp_conn);
826 return 0;
827 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500828 /* fall through */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500829 case ISCSI_OP_LOGOUT_RSP:
830 case ISCSI_OP_NOOP_IN:
Mike Christie5bb0b552006-04-06 21:26:46 -0500831 case ISCSI_OP_SCSI_TMFUNC_RSP:
832 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
833 break;
834 default:
835 rc = ISCSI_ERR_BAD_OPCODE;
836 break;
837 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700838
Olaf Kirchda32dd62007-12-13 12:43:21 -0600839 if (rc == 0) {
840 /* Anything that comes with data should have
841 * been handled above. */
842 if (tcp_conn->in.datalen)
843 return ISCSI_ERR_PROTO;
844 iscsi_tcp_hdr_recv_prep(tcp_conn);
845 }
846
Alex Aizman7ba24712005-08-04 19:30:08 -0700847 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700848}
849
850static inline void
James Bottomleyc9802cd2006-09-23 15:33:43 -0500851partial_sg_digest_update(struct hash_desc *desc, struct scatterlist *sg,
Mike Christie62f38302006-08-31 18:09:27 -0400852 int offset, int length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700853{
854 struct scatterlist temp;
855
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700856 sg_init_table(&temp, 1);
857 sg_set_page(&temp, sg_page(sg), length, offset);
James Bottomleyc9802cd2006-09-23 15:33:43 -0500858 crypto_hash_update(desc, &temp, length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700859}
860
Olaf Kirchda32dd62007-12-13 12:43:21 -0600861/**
862 * iscsi_tcp_hdr_recv_done - process PDU header
863 *
864 * This is the callback invoked when the PDU header has
865 * been received. If the header is followed by additional
866 * header segments, we go back for more data.
867 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700868static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600869iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
870 struct iscsi_chunk *chunk)
Alex Aizman7ba24712005-08-04 19:30:08 -0700871{
Olaf Kirchda32dd62007-12-13 12:43:21 -0600872 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
873 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700874
Olaf Kirchda32dd62007-12-13 12:43:21 -0600875 /* Check if there are additional header segments
876 * *prior* to computing the digest, because we
877 * may need to go back to the caller for more.
878 */
879 hdr = (struct iscsi_hdr *) tcp_conn->in.hdr_buf;
880 if (chunk->copied == sizeof(struct iscsi_hdr) && hdr->hlength) {
881 /* Bump the header length - the caller will
882 * just loop around and get the AHS for us, and
883 * call again. */
884 unsigned int ahslen = hdr->hlength << 2;
Alex Aizman7ba24712005-08-04 19:30:08 -0700885
Olaf Kirchda32dd62007-12-13 12:43:21 -0600886 /* Make sure we don't overflow */
887 if (sizeof(*hdr) + ahslen > sizeof(tcp_conn->in.hdr_buf))
888 return ISCSI_ERR_AHSLEN;
889
890 chunk->total_size += ahslen;
891 chunk->size += ahslen;
892 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700893 }
Olaf Kirchda32dd62007-12-13 12:43:21 -0600894
895 /* We're done processing the header. See if we're doing
896 * header digests; if so, set up the recv_digest buffer
897 * and go back for more. */
898 if (conn->hdrdgst_en) {
899 if (chunk->digest_len == 0) {
900 iscsi_tcp_chunk_splice_digest(chunk,
901 chunk->recv_digest);
902 return 0;
903 }
904 iscsi_tcp_dgst_header(&tcp_conn->rx_hash, hdr,
905 chunk->total_copied - ISCSI_DIGEST_SIZE,
906 chunk->digest);
907
908 if (!iscsi_tcp_dgst_verify(tcp_conn, chunk))
909 return ISCSI_ERR_HDR_DGST;
910 }
911
912 tcp_conn->in.hdr = hdr;
913 return iscsi_tcp_hdr_dissect(conn, hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -0700914}
915
916/**
Olaf Kirchda32dd62007-12-13 12:43:21 -0600917 * iscsi_tcp_recv - TCP receive in sendfile fashion
Alex Aizman7ba24712005-08-04 19:30:08 -0700918 * @rd_desc: read descriptor
919 * @skb: socket buffer
920 * @offset: offset in skb
921 * @len: skb->len - offset
922 **/
923static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600924iscsi_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
925 unsigned int offset, size_t len)
Alex Aizman7ba24712005-08-04 19:30:08 -0700926{
Alex Aizman7ba24712005-08-04 19:30:08 -0700927 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500928 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600929 struct iscsi_chunk *chunk = &tcp_conn->in.chunk;
930 struct skb_seq_state seq;
931 unsigned int consumed = 0;
932 int rc = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700933
Olaf Kirchda32dd62007-12-13 12:43:21 -0600934 debug_tcp("in %d bytes\n", skb->len - offset);
Alex Aizman7ba24712005-08-04 19:30:08 -0700935
936 if (unlikely(conn->suspend_rx)) {
937 debug_tcp("conn %d Rx suspended!\n", conn->id);
938 return 0;
939 }
940
Olaf Kirchda32dd62007-12-13 12:43:21 -0600941 skb_prepare_seq_read(skb, offset, skb->len, &seq);
942 while (1) {
943 unsigned int avail;
944 const u8 *ptr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700945
Olaf Kirchda32dd62007-12-13 12:43:21 -0600946 avail = skb_seq_read(consumed, &ptr, &seq);
947 if (avail == 0)
948 break;
949 BUG_ON(chunk->copied >= chunk->size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700950
Olaf Kirchda32dd62007-12-13 12:43:21 -0600951 debug_tcp("skb %p ptr=%p avail=%u\n", skb, ptr, avail);
952 rc = iscsi_tcp_chunk_recv(tcp_conn, chunk, ptr, avail);
953 BUG_ON(rc == 0);
954 consumed += rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500955
Olaf Kirchda32dd62007-12-13 12:43:21 -0600956 if (chunk->total_copied >= chunk->total_size) {
957 rc = chunk->done(tcp_conn, chunk);
958 if (rc != 0) {
959 skb_abort_seq_read(&seq);
960 goto error;
Mike Christiedbdb0162007-05-30 12:57:20 -0500961 }
Mike Christiedbdb0162007-05-30 12:57:20 -0500962
Olaf Kirchda32dd62007-12-13 12:43:21 -0600963 /* The done() functions sets up the
964 * next chunk. */
Alex Aizman7ba24712005-08-04 19:30:08 -0700965 }
966 }
967
Olaf Kirchda32dd62007-12-13 12:43:21 -0600968 conn->rxdata_octets += consumed;
969 return consumed;
Alex Aizman7ba24712005-08-04 19:30:08 -0700970
Olaf Kirchda32dd62007-12-13 12:43:21 -0600971error:
972 debug_tcp("Error receiving PDU, errno=%d\n", rc);
973 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
974 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700975}
976
977static void
978iscsi_tcp_data_ready(struct sock *sk, int flag)
979{
980 struct iscsi_conn *conn = sk->sk_user_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600981 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700982 read_descriptor_t rd_desc;
983
984 read_lock(&sk->sk_callback_lock);
985
Mike Christie665b44a2006-05-02 19:46:49 -0500986 /*
Olaf Kirchda32dd62007-12-13 12:43:21 -0600987 * Use rd_desc to pass 'conn' to iscsi_tcp_recv.
Mike Christie665b44a2006-05-02 19:46:49 -0500988 * We set count to 1 because we want the network layer to
Olaf Kirchda32dd62007-12-13 12:43:21 -0600989 * hand us all the skbs that are available. iscsi_tcp_recv
Mike Christie665b44a2006-05-02 19:46:49 -0500990 * handled pdus that cross buffers or pdus that still need data.
991 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700992 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -0500993 rd_desc.count = 1;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600994 tcp_read_sock(sk, &rd_desc, iscsi_tcp_recv);
Alex Aizman7ba24712005-08-04 19:30:08 -0700995
996 read_unlock(&sk->sk_callback_lock);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600997
998 /* If we had to (atomically) map a highmem page,
999 * unmap it now. */
1000 iscsi_tcp_chunk_unmap(&tcp_conn->in.chunk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001001}
1002
1003static void
1004iscsi_tcp_state_change(struct sock *sk)
1005{
Mike Christie5bb0b552006-04-06 21:26:46 -05001006 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001007 struct iscsi_conn *conn;
1008 struct iscsi_session *session;
1009 void (*old_state_change)(struct sock *);
1010
1011 read_lock(&sk->sk_callback_lock);
1012
1013 conn = (struct iscsi_conn*)sk->sk_user_data;
1014 session = conn->session;
1015
Mike Christiee6273992005-11-29 23:12:49 -06001016 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1017 sk->sk_state == TCP_CLOSE) &&
1018 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001019 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1020 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1021 }
1022
Mike Christie5bb0b552006-04-06 21:26:46 -05001023 tcp_conn = conn->dd_data;
1024 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001025
1026 read_unlock(&sk->sk_callback_lock);
1027
1028 old_state_change(sk);
1029}
1030
1031/**
1032 * iscsi_write_space - Called when more output buffer space is available
1033 * @sk: socket space is available for
1034 **/
1035static void
1036iscsi_write_space(struct sock *sk)
1037{
1038 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001039 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1040
1041 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001042 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie55e32992006-01-13 18:05:53 -06001043 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001044}
1045
1046static void
1047iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1048{
Mike Christie5bb0b552006-04-06 21:26:46 -05001049 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1050 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001051
1052 /* assign new callbacks */
1053 write_lock_bh(&sk->sk_callback_lock);
1054 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001055 tcp_conn->old_data_ready = sk->sk_data_ready;
1056 tcp_conn->old_state_change = sk->sk_state_change;
1057 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001058 sk->sk_data_ready = iscsi_tcp_data_ready;
1059 sk->sk_state_change = iscsi_tcp_state_change;
1060 sk->sk_write_space = iscsi_write_space;
1061 write_unlock_bh(&sk->sk_callback_lock);
1062}
1063
1064static void
Mike Christie1c834692006-07-24 15:47:26 -05001065iscsi_conn_restore_callbacks(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001066{
Mike Christie5bb0b552006-04-06 21:26:46 -05001067 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001068
1069 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1070 write_lock_bh(&sk->sk_callback_lock);
1071 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001072 sk->sk_data_ready = tcp_conn->old_data_ready;
1073 sk->sk_state_change = tcp_conn->old_state_change;
1074 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001075 sk->sk_no_check = 0;
1076 write_unlock_bh(&sk->sk_callback_lock);
1077}
1078
1079/**
1080 * iscsi_send - generic send routine
1081 * @sk: kernel's socket
1082 * @buf: buffer to write from
1083 * @size: actual size to write
1084 * @flags: socket's flags
Alex Aizman7ba24712005-08-04 19:30:08 -07001085 */
1086static inline int
FUJITA Tomonori56851692006-01-13 18:05:44 -06001087iscsi_send(struct iscsi_conn *conn, struct iscsi_buf *buf, int size, int flags)
Alex Aizman7ba24712005-08-04 19:30:08 -07001088{
Mike Christie5bb0b552006-04-06 21:26:46 -05001089 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1090 struct socket *sk = tcp_conn->sock;
Mike Christie3219e522006-05-30 00:37:28 -05001091 int offset = buf->sg.offset + buf->sent, res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001092
Mike Christie7cae5152006-01-13 18:05:47 -06001093 /*
1094 * if we got use_sg=0 or are sending something we kmallocd
1095 * then we did not have to do kmap (kmap returns page_address)
1096 *
1097 * if we got use_sg > 0, but had to drop down, we do not
1098 * set clustering so this should only happen for that
1099 * slab case.
1100 */
1101 if (buf->use_sendmsg)
Olaf Kirchda32dd62007-12-13 12:43:21 -06001102 res = sock_no_sendpage(sk, buf->sg.page, offset, size, flags);
Mike Christie7cae5152006-01-13 18:05:47 -06001103 else
Olaf Kirchda32dd62007-12-13 12:43:21 -06001104 res = tcp_conn->sendpage(sk, buf->sg.page, offset, size, flags);
Mike Christie3219e522006-05-30 00:37:28 -05001105
1106 if (res >= 0) {
1107 conn->txdata_octets += res;
1108 buf->sent += res;
1109 return res;
1110 }
1111
1112 tcp_conn->sendpage_failures_cnt++;
1113 if (res == -EAGAIN)
1114 res = -ENOBUFS;
1115 else
1116 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1117 return res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001118}
1119
1120/**
1121 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1122 * @conn: iscsi connection
1123 * @buf: buffer to write from
1124 * @datalen: lenght of data to be sent after the header
1125 *
1126 * Notes:
1127 * (Tx, Fast Path)
1128 **/
1129static inline int
1130iscsi_sendhdr(struct iscsi_conn *conn, struct iscsi_buf *buf, int datalen)
1131{
Alex Aizman7ba24712005-08-04 19:30:08 -07001132 int flags = 0; /* MSG_DONTWAIT; */
1133 int res, size;
1134
1135 size = buf->sg.length - buf->sent;
1136 BUG_ON(buf->sent + size > buf->sg.length);
1137 if (buf->sent + size != buf->sg.length || datalen)
1138 flags |= MSG_MORE;
1139
FUJITA Tomonori56851692006-01-13 18:05:44 -06001140 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001141 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size, buf->sent, res);
1142 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001143 if (size != res)
1144 return -EAGAIN;
1145 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001146 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001147
1148 return res;
1149}
1150
1151/**
1152 * iscsi_sendpage - send one page of iSCSI Data-Out.
1153 * @conn: iscsi connection
1154 * @buf: buffer to write from
1155 * @count: remaining data
1156 * @sent: number of bytes sent
1157 *
1158 * Notes:
1159 * (Tx, Fast Path)
1160 **/
1161static inline int
1162iscsi_sendpage(struct iscsi_conn *conn, struct iscsi_buf *buf,
1163 int *count, int *sent)
1164{
Alex Aizman7ba24712005-08-04 19:30:08 -07001165 int flags = 0; /* MSG_DONTWAIT; */
1166 int res, size;
1167
1168 size = buf->sg.length - buf->sent;
1169 BUG_ON(buf->sent + size > buf->sg.length);
1170 if (size > *count)
1171 size = *count;
Mike Christieb13941f2005-09-12 21:01:28 -05001172 if (buf->sent + size != buf->sg.length || *count != size)
Alex Aizman7ba24712005-08-04 19:30:08 -07001173 flags |= MSG_MORE;
1174
FUJITA Tomonori56851692006-01-13 18:05:44 -06001175 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001176 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1177 size, buf->sent, *count, *sent, res);
1178 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001179 *count -= res;
1180 *sent += res;
1181 if (size != res)
1182 return -EAGAIN;
1183 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001184 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001185
1186 return res;
1187}
1188
1189static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -05001190iscsi_data_digest_init(struct iscsi_tcp_conn *tcp_conn,
Mike Christie62f38302006-08-31 18:09:27 -04001191 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001192{
James Bottomleyc9802cd2006-09-23 15:33:43 -05001193 crypto_hash_init(&tcp_conn->tx_hash);
Mike Christie5bb0b552006-04-06 21:26:46 -05001194 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001195}
1196
Alex Aizman7ba24712005-08-04 19:30:08 -07001197/**
1198 * iscsi_solicit_data_cont - initialize next Data-Out
1199 * @conn: iscsi connection
1200 * @ctask: scsi command task
1201 * @r2t: R2T info
1202 * @left: bytes left to transfer
1203 *
1204 * Notes:
1205 * Initialize next Data-Out within this R2T sequence and continue
1206 * to process next Scatter-Gather element(if any) of this SCSI command.
1207 *
1208 * Called under connection lock.
1209 **/
1210static void
1211iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1212 struct iscsi_r2t_info *r2t, int left)
1213{
1214 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001215 int new_offset;
1216
Mike Christieffbfe922006-05-18 20:31:36 -05001217 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001218 memset(hdr, 0, sizeof(struct iscsi_data));
1219 hdr->ttt = r2t->ttt;
1220 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1221 r2t->solicit_datasn++;
1222 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001223 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1224 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001225 hdr->exp_statsn = r2t->exp_statsn;
1226 new_offset = r2t->data_offset + r2t->sent;
1227 hdr->offset = cpu_to_be32(new_offset);
1228 if (left > conn->max_xmit_dlength) {
1229 hton24(hdr->dlength, conn->max_xmit_dlength);
1230 r2t->data_count = conn->max_xmit_dlength;
1231 } else {
1232 hton24(hdr->dlength, left);
1233 r2t->data_count = left;
1234 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1235 }
1236 conn->dataout_pdus_cnt++;
1237
Mike Christie6e458cc2006-05-18 20:31:31 -05001238 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001239 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001240
Mike Christie62f38302006-08-31 18:09:27 -04001241 if (iscsi_buf_left(&r2t->sendbuf))
1242 return;
1243
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001244 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1245 r2t->sg += 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001246}
1247
Mike Christie62f38302006-08-31 18:09:27 -04001248static void iscsi_set_padding(struct iscsi_tcp_cmd_task *tcp_ctask,
1249 unsigned long len)
Alex Aizman7ba24712005-08-04 19:30:08 -07001250{
Mike Christie62f38302006-08-31 18:09:27 -04001251 tcp_ctask->pad_count = len & (ISCSI_PAD_LEN - 1);
1252 if (!tcp_ctask->pad_count)
1253 return;
Alex Aizman7ba24712005-08-04 19:30:08 -07001254
Mike Christie62f38302006-08-31 18:09:27 -04001255 tcp_ctask->pad_count = ISCSI_PAD_LEN - tcp_ctask->pad_count;
1256 debug_scsi("write padding %d bytes\n", tcp_ctask->pad_count);
Mike Christie843c0a82007-12-13 12:43:20 -06001257 tcp_ctask->xmstate |= XMSTATE_W_PAD;
Alex Aizman7ba24712005-08-04 19:30:08 -07001258}
1259
1260/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001261 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001262 * @conn: iscsi connection
1263 * @ctask: scsi command task
1264 * @sc: scsi command
1265 **/
1266static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001267iscsi_tcp_cmd_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001268{
Mike Christie5bb0b552006-04-06 21:26:46 -05001269 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001270
Mike Christie5bb0b552006-04-06 21:26:46 -05001271 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Mike Christie843c0a82007-12-13 12:43:20 -06001272 tcp_ctask->xmstate = XMSTATE_CMD_HDR_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001273}
1274
1275/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001276 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001277 * @conn: iscsi connection
1278 * @mtask: task management task
1279 *
1280 * Notes:
1281 * The function can return -EAGAIN in which case caller must
1282 * call it again later, or recover. '0' return code means successful
1283 * xmit.
1284 *
Mike Christie218432c2007-05-30 12:57:17 -05001285 * Management xmit state machine consists of these states:
Mike Christie843c0a82007-12-13 12:43:20 -06001286 * XMSTATE_IMM_HDR_INIT - calculate digest of PDU Header
1287 * XMSTATE_IMM_HDR - PDU Header xmit in progress
1288 * XMSTATE_IMM_DATA - PDU Data xmit in progress
1289 * XMSTATE_IDLE - management PDU is done
Alex Aizman7ba24712005-08-04 19:30:08 -07001290 **/
1291static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001292iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001293{
Mike Christie5bb0b552006-04-06 21:26:46 -05001294 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001295 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001296
1297 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001298 conn->id, tcp_mtask->xmstate, mtask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001299
Mike Christie843c0a82007-12-13 12:43:20 -06001300 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR_INIT) {
Mike Christie218432c2007-05-30 12:57:17 -05001301 iscsi_buf_init_iov(&tcp_mtask->headbuf, (char*)mtask->hdr,
1302 sizeof(struct iscsi_hdr));
1303
1304 if (mtask->data_count) {
Mike Christie843c0a82007-12-13 12:43:20 -06001305 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie218432c2007-05-30 12:57:17 -05001306 iscsi_buf_init_iov(&tcp_mtask->sendbuf,
1307 (char*)mtask->data,
1308 mtask->data_count);
1309 }
1310
Mike Christieaf973482005-09-12 21:01:32 -05001311 if (conn->c_stage != ISCSI_CONN_INITIAL_STAGE &&
Mike Christie30a6c652006-04-06 21:13:39 -05001312 conn->stop_stage != STOP_CONN_RECOVER &&
Mike Christieaf973482005-09-12 21:01:32 -05001313 conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001314 iscsi_hdr_digest(conn, &tcp_mtask->headbuf,
1315 (u8*)tcp_mtask->hdrext);
Mike Christie218432c2007-05-30 12:57:17 -05001316
1317 tcp_mtask->sent = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06001318 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR_INIT;
1319 tcp_mtask->xmstate |= XMSTATE_IMM_HDR;
Mike Christie218432c2007-05-30 12:57:17 -05001320 }
1321
Mike Christie843c0a82007-12-13 12:43:20 -06001322 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR) {
Mike Christie3219e522006-05-30 00:37:28 -05001323 rc = iscsi_sendhdr(conn, &tcp_mtask->headbuf,
1324 mtask->data_count);
Mike Christie218432c2007-05-30 12:57:17 -05001325 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001326 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001327 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001328 }
1329
Mike Christie843c0a82007-12-13 12:43:20 -06001330 if (tcp_mtask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001331 BUG_ON(!mtask->data_count);
Mike Christie843c0a82007-12-13 12:43:20 -06001332 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001333 /* FIXME: implement.
1334 * Virtual buffer could be spreaded across multiple pages...
1335 */
1336 do {
Mike Christie3219e522006-05-30 00:37:28 -05001337 int rc;
1338
1339 rc = iscsi_sendpage(conn, &tcp_mtask->sendbuf,
1340 &mtask->data_count, &tcp_mtask->sent);
1341 if (rc) {
Mike Christie843c0a82007-12-13 12:43:20 -06001342 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001343 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001344 }
1345 } while (mtask->data_count);
1346 }
1347
Mike Christie843c0a82007-12-13 12:43:20 -06001348 BUG_ON(tcp_mtask->xmstate != XMSTATE_IDLE);
Al Virob4377352007-02-09 16:39:40 +00001349 if (mtask->hdr->itt == RESERVED_ITT) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001350 struct iscsi_session *session = conn->session;
1351
1352 spin_lock_bh(&session->lock);
1353 list_del(&conn->mtask->running);
1354 __kfifo_put(session->mgmtpool.queue, (void*)&conn->mtask,
1355 sizeof(void*));
1356 spin_unlock_bh(&session->lock);
1357 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001358 return 0;
1359}
1360
Mike Christie218432c2007-05-30 12:57:17 -05001361static int
1362iscsi_send_cmd_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001363{
Mike Christie218432c2007-05-30 12:57:17 -05001364 struct scsi_cmnd *sc = ctask->sc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001365 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie218432c2007-05-30 12:57:17 -05001366 int rc = 0;
Mike Christie5bb0b552006-04-06 21:26:46 -05001367
Mike Christie843c0a82007-12-13 12:43:20 -06001368 if (tcp_ctask->xmstate & XMSTATE_CMD_HDR_INIT) {
Mike Christie218432c2007-05-30 12:57:17 -05001369 tcp_ctask->sent = 0;
1370 tcp_ctask->sg_count = 0;
1371 tcp_ctask->exp_datasn = 0;
Mike Christie3219e522006-05-30 00:37:28 -05001372
Mike Christie218432c2007-05-30 12:57:17 -05001373 if (sc->sc_data_direction == DMA_TO_DEVICE) {
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001374 struct scatterlist *sg = scsi_sglist(sc);
Alex Aizman7ba24712005-08-04 19:30:08 -07001375
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001376 iscsi_buf_init_sg(&tcp_ctask->sendbuf, sg);
1377 tcp_ctask->sg = sg + 1;
1378 tcp_ctask->bad_sg = sg + scsi_sg_count(sc);
Mike Christie218432c2007-05-30 12:57:17 -05001379
1380 debug_scsi("cmd [itt 0x%x total %d imm_data %d "
1381 "unsol count %d, unsol offset %d]\n",
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001382 ctask->itt, scsi_bufflen(sc),
Mike Christie218432c2007-05-30 12:57:17 -05001383 ctask->imm_count, ctask->unsol_count,
1384 ctask->unsol_offset);
Alex Aizman7ba24712005-08-04 19:30:08 -07001385 }
Mike Christie218432c2007-05-30 12:57:17 -05001386
1387 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)ctask->hdr,
1388 sizeof(struct iscsi_hdr));
1389
1390 if (conn->hdrdgst_en)
1391 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1392 (u8*)tcp_ctask->hdrext);
Mike Christie843c0a82007-12-13 12:43:20 -06001393 tcp_ctask->xmstate &= ~XMSTATE_CMD_HDR_INIT;
1394 tcp_ctask->xmstate |= XMSTATE_CMD_HDR_XMIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001395 }
1396
Mike Christie843c0a82007-12-13 12:43:20 -06001397 if (tcp_ctask->xmstate & XMSTATE_CMD_HDR_XMIT) {
Mike Christie218432c2007-05-30 12:57:17 -05001398 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->imm_count);
1399 if (rc)
1400 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001401 tcp_ctask->xmstate &= ~XMSTATE_CMD_HDR_XMIT;
Mike Christie218432c2007-05-30 12:57:17 -05001402
1403 if (sc->sc_data_direction != DMA_TO_DEVICE)
1404 return 0;
1405
1406 if (ctask->imm_count) {
Mike Christie843c0a82007-12-13 12:43:20 -06001407 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie218432c2007-05-30 12:57:17 -05001408 iscsi_set_padding(tcp_ctask, ctask->imm_count);
1409
1410 if (ctask->conn->datadgst_en) {
1411 iscsi_data_digest_init(ctask->conn->dd_data,
1412 tcp_ctask);
1413 tcp_ctask->immdigest = 0;
1414 }
1415 }
1416
Mike Christie843c0a82007-12-13 12:43:20 -06001417 if (ctask->unsol_count)
1418 tcp_ctask->xmstate |=
1419 XMSTATE_UNS_HDR | XMSTATE_UNS_INIT;
Mike Christie218432c2007-05-30 12:57:17 -05001420 }
1421 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001422}
1423
Mike Christie62f38302006-08-31 18:09:27 -04001424static int
1425iscsi_send_padding(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1426{
1427 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1428 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1429 int sent = 0, rc;
1430
Mike Christie843c0a82007-12-13 12:43:20 -06001431 if (tcp_ctask->xmstate & XMSTATE_W_PAD) {
Mike Christie62f38302006-08-31 18:09:27 -04001432 iscsi_buf_init_iov(&tcp_ctask->sendbuf, (char*)&tcp_ctask->pad,
1433 tcp_ctask->pad_count);
1434 if (conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -05001435 crypto_hash_update(&tcp_conn->tx_hash,
1436 &tcp_ctask->sendbuf.sg,
1437 tcp_ctask->sendbuf.sg.length);
Mike Christie843c0a82007-12-13 12:43:20 -06001438 } else if (!(tcp_ctask->xmstate & XMSTATE_W_RESEND_PAD))
Mike Christie62f38302006-08-31 18:09:27 -04001439 return 0;
1440
Mike Christie843c0a82007-12-13 12:43:20 -06001441 tcp_ctask->xmstate &= ~XMSTATE_W_PAD;
1442 tcp_ctask->xmstate &= ~XMSTATE_W_RESEND_PAD;
Mike Christie62f38302006-08-31 18:09:27 -04001443 debug_scsi("sending %d pad bytes for itt 0x%x\n",
1444 tcp_ctask->pad_count, ctask->itt);
1445 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf, &tcp_ctask->pad_count,
1446 &sent);
1447 if (rc) {
1448 debug_scsi("padding send failed %d\n", rc);
Mike Christie843c0a82007-12-13 12:43:20 -06001449 tcp_ctask->xmstate |= XMSTATE_W_RESEND_PAD;
Mike Christie62f38302006-08-31 18:09:27 -04001450 }
1451 return rc;
1452}
1453
1454static int
1455iscsi_send_digest(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1456 struct iscsi_buf *buf, uint32_t *digest)
1457{
1458 struct iscsi_tcp_cmd_task *tcp_ctask;
1459 struct iscsi_tcp_conn *tcp_conn;
1460 int rc, sent = 0;
1461
1462 if (!conn->datadgst_en)
1463 return 0;
1464
1465 tcp_ctask = ctask->dd_data;
1466 tcp_conn = conn->dd_data;
1467
Mike Christie843c0a82007-12-13 12:43:20 -06001468 if (!(tcp_ctask->xmstate & XMSTATE_W_RESEND_DATA_DIGEST)) {
James Bottomleyc9802cd2006-09-23 15:33:43 -05001469 crypto_hash_final(&tcp_conn->tx_hash, (u8*)digest);
Mike Christie62f38302006-08-31 18:09:27 -04001470 iscsi_buf_init_iov(buf, (char*)digest, 4);
1471 }
Mike Christie843c0a82007-12-13 12:43:20 -06001472 tcp_ctask->xmstate &= ~XMSTATE_W_RESEND_DATA_DIGEST;
Mike Christie62f38302006-08-31 18:09:27 -04001473
1474 rc = iscsi_sendpage(conn, buf, &tcp_ctask->digest_count, &sent);
1475 if (!rc)
1476 debug_scsi("sent digest 0x%x for itt 0x%x\n", *digest,
1477 ctask->itt);
1478 else {
1479 debug_scsi("sending digest 0x%x failed for itt 0x%x!\n",
1480 *digest, ctask->itt);
Mike Christie843c0a82007-12-13 12:43:20 -06001481 tcp_ctask->xmstate |= XMSTATE_W_RESEND_DATA_DIGEST;
Mike Christie62f38302006-08-31 18:09:27 -04001482 }
1483 return rc;
1484}
1485
1486static int
1487iscsi_send_data(struct iscsi_cmd_task *ctask, struct iscsi_buf *sendbuf,
1488 struct scatterlist **sg, int *sent, int *count,
1489 struct iscsi_buf *digestbuf, uint32_t *digest)
1490{
1491 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1492 struct iscsi_conn *conn = ctask->conn;
1493 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1494 int rc, buf_sent, offset;
1495
1496 while (*count) {
1497 buf_sent = 0;
1498 offset = sendbuf->sent;
1499
1500 rc = iscsi_sendpage(conn, sendbuf, count, &buf_sent);
1501 *sent = *sent + buf_sent;
1502 if (buf_sent && conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -05001503 partial_sg_digest_update(&tcp_conn->tx_hash,
Mike Christie62f38302006-08-31 18:09:27 -04001504 &sendbuf->sg, sendbuf->sg.offset + offset,
1505 buf_sent);
1506 if (!iscsi_buf_left(sendbuf) && *sg != tcp_ctask->bad_sg) {
1507 iscsi_buf_init_sg(sendbuf, *sg);
1508 *sg = *sg + 1;
1509 }
1510
1511 if (rc)
1512 return rc;
1513 }
1514
1515 rc = iscsi_send_padding(conn, ctask);
1516 if (rc)
1517 return rc;
1518
1519 return iscsi_send_digest(conn, ctask, digestbuf, digest);
1520}
1521
1522static int
1523iscsi_send_unsol_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001524{
Mike Christie5bb0b552006-04-06 21:26:46 -05001525 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001526 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001527 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001528
Mike Christie843c0a82007-12-13 12:43:20 -06001529 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
1530 if (tcp_ctask->xmstate & XMSTATE_UNS_INIT) {
Mike Christie62f38302006-08-31 18:09:27 -04001531 dtask = &tcp_ctask->unsol_dtask;
1532
Mike Christieffd04362006-08-31 18:09:24 -04001533 iscsi_prep_unsolicit_data_pdu(ctask, &dtask->hdr);
1534 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)&dtask->hdr,
1535 sizeof(struct iscsi_hdr));
Mike Christieaf973482005-09-12 21:01:32 -05001536 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001537 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001538 (u8*)dtask->hdrext);
Mike Christie62f38302006-08-31 18:09:27 -04001539
Mike Christie843c0a82007-12-13 12:43:20 -06001540 tcp_ctask->xmstate &= ~XMSTATE_UNS_INIT;
Mike Christie62f38302006-08-31 18:09:27 -04001541 iscsi_set_padding(tcp_ctask, ctask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001542 }
Mike Christie3219e522006-05-30 00:37:28 -05001543
1544 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->data_count);
1545 if (rc) {
Mike Christie843c0a82007-12-13 12:43:20 -06001546 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1547 tcp_ctask->xmstate |= XMSTATE_UNS_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001548 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001549 }
1550
Mike Christiedd8c0d92006-08-31 18:09:28 -04001551 if (conn->datadgst_en) {
1552 dtask = &tcp_ctask->unsol_dtask;
1553 iscsi_data_digest_init(ctask->conn->dd_data, tcp_ctask);
1554 dtask->digest = 0;
1555 }
1556
Alex Aizman7ba24712005-08-04 19:30:08 -07001557 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001558 ctask->itt, ctask->unsol_count, tcp_ctask->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001559 return 0;
1560}
1561
Mike Christie62f38302006-08-31 18:09:27 -04001562static int
1563iscsi_send_unsol_pdu(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001564{
Mike Christie5bb0b552006-04-06 21:26:46 -05001565 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001566 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001567
Mike Christie843c0a82007-12-13 12:43:20 -06001568 if (tcp_ctask->xmstate & XMSTATE_UNS_HDR) {
Mike Christie62f38302006-08-31 18:09:27 -04001569 BUG_ON(!ctask->unsol_count);
Mike Christie843c0a82007-12-13 12:43:20 -06001570 tcp_ctask->xmstate &= ~XMSTATE_UNS_HDR;
Mike Christie62f38302006-08-31 18:09:27 -04001571send_hdr:
1572 rc = iscsi_send_unsol_hdr(conn, ctask);
1573 if (rc)
1574 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001575 }
1576
Mike Christie843c0a82007-12-13 12:43:20 -06001577 if (tcp_ctask->xmstate & XMSTATE_UNS_DATA) {
Mike Christie62f38302006-08-31 18:09:27 -04001578 struct iscsi_data_task *dtask = &tcp_ctask->unsol_dtask;
Mike Christie5bb0b552006-04-06 21:26:46 -05001579 int start = tcp_ctask->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001580
Mike Christie62f38302006-08-31 18:09:27 -04001581 rc = iscsi_send_data(ctask, &tcp_ctask->sendbuf, &tcp_ctask->sg,
1582 &tcp_ctask->sent, &ctask->data_count,
1583 &dtask->digestbuf, &dtask->digest);
Mike Christie5bb0b552006-04-06 21:26:46 -05001584 ctask->unsol_count -= tcp_ctask->sent - start;
Mike Christie62f38302006-08-31 18:09:27 -04001585 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001586 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001587 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
Mike Christie62f38302006-08-31 18:09:27 -04001588 /*
1589 * Done with the Data-Out. Next, check if we need
1590 * to send another unsolicited Data-Out.
1591 */
1592 if (ctask->unsol_count) {
1593 debug_scsi("sending more uns\n");
Mike Christie843c0a82007-12-13 12:43:20 -06001594 tcp_ctask->xmstate |= XMSTATE_UNS_INIT;
Mike Christie62f38302006-08-31 18:09:27 -04001595 goto send_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001596 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001597 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001598 return 0;
1599}
1600
Mike Christie62f38302006-08-31 18:09:27 -04001601static int iscsi_send_sol_pdu(struct iscsi_conn *conn,
1602 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001603{
Mike Christie5bb0b552006-04-06 21:26:46 -05001604 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie62f38302006-08-31 18:09:27 -04001605 struct iscsi_session *session = conn->session;
1606 struct iscsi_r2t_info *r2t;
1607 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001608 int left, rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001609
Mike Christie843c0a82007-12-13 12:43:20 -06001610 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR_INIT) {
Mike Christiedb37c502006-11-08 15:58:33 -06001611 if (!tcp_ctask->r2t) {
1612 spin_lock_bh(&session->lock);
Mike Christie62f38302006-08-31 18:09:27 -04001613 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
1614 sizeof(void*));
Mike Christiedb37c502006-11-08 15:58:33 -06001615 spin_unlock_bh(&session->lock);
1616 }
Mike Christie62f38302006-08-31 18:09:27 -04001617send_hdr:
1618 r2t = tcp_ctask->r2t;
1619 dtask = &r2t->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001620
Mike Christie62f38302006-08-31 18:09:27 -04001621 if (conn->hdrdgst_en)
1622 iscsi_hdr_digest(conn, &r2t->headbuf,
1623 (u8*)dtask->hdrext);
Mike Christie843c0a82007-12-13 12:43:20 -06001624 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR_INIT;
1625 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
Mike Christie218432c2007-05-30 12:57:17 -05001626 }
1627
Mike Christie843c0a82007-12-13 12:43:20 -06001628 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR) {
Mike Christie218432c2007-05-30 12:57:17 -05001629 r2t = tcp_ctask->r2t;
1630 dtask = &r2t->dtask;
1631
Mike Christie62f38302006-08-31 18:09:27 -04001632 rc = iscsi_sendhdr(conn, &r2t->headbuf, r2t->data_count);
Mike Christie218432c2007-05-30 12:57:17 -05001633 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001634 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001635 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1636 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001637
Mike Christiedd8c0d92006-08-31 18:09:28 -04001638 if (conn->datadgst_en) {
1639 iscsi_data_digest_init(conn->dd_data, tcp_ctask);
1640 dtask->digest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001641 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001642
Mike Christie62f38302006-08-31 18:09:27 -04001643 iscsi_set_padding(tcp_ctask, r2t->data_count);
1644 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1645 r2t->solicit_datasn - 1, ctask->itt, r2t->data_count,
1646 r2t->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001647 }
1648
Mike Christie843c0a82007-12-13 12:43:20 -06001649 if (tcp_ctask->xmstate & XMSTATE_SOL_DATA) {
Mike Christie62f38302006-08-31 18:09:27 -04001650 r2t = tcp_ctask->r2t;
1651 dtask = &r2t->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001652
Mike Christie62f38302006-08-31 18:09:27 -04001653 rc = iscsi_send_data(ctask, &r2t->sendbuf, &r2t->sg,
1654 &r2t->sent, &r2t->data_count,
1655 &dtask->digestbuf, &dtask->digest);
1656 if (rc)
1657 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001658 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001659
Mike Christie62f38302006-08-31 18:09:27 -04001660 /*
1661 * Done with this Data-Out. Next, check if we have
1662 * to send another Data-Out for this R2T.
1663 */
1664 BUG_ON(r2t->data_length - r2t->sent < 0);
1665 left = r2t->data_length - r2t->sent;
1666 if (left) {
1667 iscsi_solicit_data_cont(conn, ctask, r2t, left);
Mike Christie62f38302006-08-31 18:09:27 -04001668 goto send_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001669 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001670
Mike Christie62f38302006-08-31 18:09:27 -04001671 /*
1672 * Done with this R2T. Check if there are more
1673 * outstanding R2Ts ready to be processed.
1674 */
1675 spin_lock_bh(&session->lock);
1676 tcp_ctask->r2t = NULL;
1677 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
1678 sizeof(void*));
1679 if (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t,
1680 sizeof(void*))) {
1681 tcp_ctask->r2t = r2t;
Mike Christie62f38302006-08-31 18:09:27 -04001682 spin_unlock_bh(&session->lock);
1683 goto send_hdr;
1684 }
1685 spin_unlock_bh(&session->lock);
1686 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001687 return 0;
1688}
1689
Mike Christie218432c2007-05-30 12:57:17 -05001690/**
1691 * iscsi_tcp_ctask_xmit - xmit normal PDU task
1692 * @conn: iscsi connection
1693 * @ctask: iscsi command task
1694 *
1695 * Notes:
1696 * The function can return -EAGAIN in which case caller must
1697 * call it again later, or recover. '0' return code means successful
1698 * xmit.
1699 * The function is devided to logical helpers (above) for the different
1700 * xmit stages.
1701 *
1702 *iscsi_send_cmd_hdr()
Mike Christie843c0a82007-12-13 12:43:20 -06001703 * XMSTATE_CMD_HDR_INIT - prepare Header and Data buffers Calculate
1704 * Header Digest
1705 * XMSTATE_CMD_HDR_XMIT - Transmit header in progress
Mike Christie218432c2007-05-30 12:57:17 -05001706 *
1707 *iscsi_send_padding
Mike Christie843c0a82007-12-13 12:43:20 -06001708 * XMSTATE_W_PAD - Prepare and send pading
1709 * XMSTATE_W_RESEND_PAD - retry send pading
Mike Christie218432c2007-05-30 12:57:17 -05001710 *
1711 *iscsi_send_digest
Mike Christie843c0a82007-12-13 12:43:20 -06001712 * XMSTATE_W_RESEND_DATA_DIGEST - Finalize and send Data Digest
1713 * XMSTATE_W_RESEND_DATA_DIGEST - retry sending digest
Mike Christie218432c2007-05-30 12:57:17 -05001714 *
1715 *iscsi_send_unsol_hdr
Mike Christie843c0a82007-12-13 12:43:20 -06001716 * XMSTATE_UNS_INIT - prepare un-solicit data header and digest
1717 * XMSTATE_UNS_HDR - send un-solicit header
Mike Christie218432c2007-05-30 12:57:17 -05001718 *
1719 *iscsi_send_unsol_pdu
Mike Christie843c0a82007-12-13 12:43:20 -06001720 * XMSTATE_UNS_DATA - send un-solicit data in progress
Mike Christie218432c2007-05-30 12:57:17 -05001721 *
1722 *iscsi_send_sol_pdu
Mike Christie843c0a82007-12-13 12:43:20 -06001723 * XMSTATE_SOL_HDR_INIT - solicit data header and digest initialize
1724 * XMSTATE_SOL_HDR - send solicit header
1725 * XMSTATE_SOL_DATA - send solicit data
Mike Christie218432c2007-05-30 12:57:17 -05001726 *
1727 *iscsi_tcp_ctask_xmit
Mike Christie843c0a82007-12-13 12:43:20 -06001728 * XMSTATE_IMM_DATA - xmit managment data (??)
Mike Christie218432c2007-05-30 12:57:17 -05001729 **/
Alex Aizman7ba24712005-08-04 19:30:08 -07001730static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001731iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001732{
Mike Christie5bb0b552006-04-06 21:26:46 -05001733 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001734 int rc = 0;
1735
1736 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001737 conn->id, tcp_ctask->xmstate, ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001738
Mike Christie218432c2007-05-30 12:57:17 -05001739 rc = iscsi_send_cmd_hdr(conn, ctask);
1740 if (rc)
1741 return rc;
1742 if (ctask->sc->sc_data_direction != DMA_TO_DEVICE)
1743 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001744
Mike Christie843c0a82007-12-13 12:43:20 -06001745 if (tcp_ctask->xmstate & XMSTATE_IMM_DATA) {
Mike Christie62f38302006-08-31 18:09:27 -04001746 rc = iscsi_send_data(ctask, &tcp_ctask->sendbuf, &tcp_ctask->sg,
1747 &tcp_ctask->sent, &ctask->imm_count,
1748 &tcp_ctask->immbuf, &tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001749 if (rc)
1750 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001751 tcp_ctask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001752 }
1753
Mike Christie62f38302006-08-31 18:09:27 -04001754 rc = iscsi_send_unsol_pdu(conn, ctask);
1755 if (rc)
1756 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001757
Mike Christie62f38302006-08-31 18:09:27 -04001758 rc = iscsi_send_sol_pdu(conn, ctask);
1759 if (rc)
1760 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001761
1762 return rc;
1763}
1764
Mike Christie7b8631b2006-01-13 18:05:50 -06001765static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001766iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001767{
Mike Christie7b8631b2006-01-13 18:05:50 -06001768 struct iscsi_conn *conn;
1769 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001770 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001771
Mike Christie5bb0b552006-04-06 21:26:46 -05001772 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001773 if (!cls_conn)
1774 return NULL;
1775 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001776 /*
1777 * due to strange issues with iser these are not set
1778 * in iscsi_conn_setup
1779 */
Mike Christiebf32ed32007-02-28 17:32:17 -06001780 conn->max_recv_dlength = ISCSI_DEF_MAX_RECV_SEG_LEN;
Alex Aizman7ba24712005-08-04 19:30:08 -07001781
Mike Christie5bb0b552006-04-06 21:26:46 -05001782 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1783 if (!tcp_conn)
1784 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001785
Mike Christie5bb0b552006-04-06 21:26:46 -05001786 conn->dd_data = tcp_conn;
1787 tcp_conn->iscsi_conn = conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001788
James Bottomleyc9802cd2006-09-23 15:33:43 -05001789 tcp_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1790 CRYPTO_ALG_ASYNC);
1791 tcp_conn->tx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001792 if (IS_ERR(tcp_conn->tx_hash.tfm)) {
1793 printk(KERN_ERR "Could not create connection due to crc32c "
1794 "loading error %ld. Make sure the crc32c module is "
1795 "built as a module or into the kernel\n",
1796 PTR_ERR(tcp_conn->tx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001797 goto free_tcp_conn;
Mike Christie0f238412007-02-28 17:32:21 -06001798 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001799
James Bottomleyc9802cd2006-09-23 15:33:43 -05001800 tcp_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1801 CRYPTO_ALG_ASYNC);
1802 tcp_conn->rx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001803 if (IS_ERR(tcp_conn->rx_hash.tfm)) {
1804 printk(KERN_ERR "Could not create connection due to crc32c "
1805 "loading error %ld. Make sure the crc32c module is "
1806 "built as a module or into the kernel\n",
1807 PTR_ERR(tcp_conn->rx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001808 goto free_tx_tfm;
Mike Christie0f238412007-02-28 17:32:21 -06001809 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001810
Mike Christie7b8631b2006-01-13 18:05:50 -06001811 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001812
Mike Christiedd8c0d92006-08-31 18:09:28 -04001813free_tx_tfm:
James Bottomleyc9802cd2006-09-23 15:33:43 -05001814 crypto_free_hash(tcp_conn->tx_hash.tfm);
Mike Christiedd8c0d92006-08-31 18:09:28 -04001815free_tcp_conn:
1816 kfree(tcp_conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001817tcp_conn_alloc_fail:
1818 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001819 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001820}
1821
1822static void
Mike Christie1c834692006-07-24 15:47:26 -05001823iscsi_tcp_release_conn(struct iscsi_conn *conn)
1824{
Mike Christie22236962007-05-30 12:57:24 -05001825 struct iscsi_session *session = conn->session;
Mike Christie1c834692006-07-24 15:47:26 -05001826 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie22236962007-05-30 12:57:24 -05001827 struct socket *sock = tcp_conn->sock;
Mike Christie1c834692006-07-24 15:47:26 -05001828
Mike Christie22236962007-05-30 12:57:24 -05001829 if (!sock)
Mike Christie1c834692006-07-24 15:47:26 -05001830 return;
1831
Mike Christie22236962007-05-30 12:57:24 -05001832 sock_hold(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001833 iscsi_conn_restore_callbacks(tcp_conn);
Mike Christie22236962007-05-30 12:57:24 -05001834 sock_put(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001835
Mike Christie22236962007-05-30 12:57:24 -05001836 spin_lock_bh(&session->lock);
Mike Christie1c834692006-07-24 15:47:26 -05001837 tcp_conn->sock = NULL;
1838 conn->recv_lock = NULL;
Mike Christie22236962007-05-30 12:57:24 -05001839 spin_unlock_bh(&session->lock);
1840 sockfd_put(sock);
Mike Christie1c834692006-07-24 15:47:26 -05001841}
1842
1843static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001844iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001845{
Mike Christie7b8631b2006-01-13 18:05:50 -06001846 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001847 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001848
Mike Christie1c834692006-07-24 15:47:26 -05001849 iscsi_tcp_release_conn(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001850 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001851
Pete Wyckoff534284a2006-11-08 15:58:31 -06001852 if (tcp_conn->tx_hash.tfm)
1853 crypto_free_hash(tcp_conn->tx_hash.tfm);
1854 if (tcp_conn->rx_hash.tfm)
1855 crypto_free_hash(tcp_conn->rx_hash.tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001856
Mike Christie5bb0b552006-04-06 21:26:46 -05001857 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001858}
1859
Mike Christie1c834692006-07-24 15:47:26 -05001860static void
1861iscsi_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
1862{
1863 struct iscsi_conn *conn = cls_conn->dd_data;
1864
1865 iscsi_conn_stop(cls_conn, flag);
1866 iscsi_tcp_release_conn(conn);
1867}
1868
Mike Christie22236962007-05-30 12:57:24 -05001869static int iscsi_tcp_get_addr(struct iscsi_conn *conn, struct socket *sock,
1870 char *buf, int *port,
1871 int (*getname)(struct socket *, struct sockaddr *,
1872 int *addrlen))
1873{
1874 struct sockaddr_storage *addr;
1875 struct sockaddr_in6 *sin6;
1876 struct sockaddr_in *sin;
1877 int rc = 0, len;
1878
Al Viroa9204872007-07-20 16:03:40 +01001879 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
Mike Christie22236962007-05-30 12:57:24 -05001880 if (!addr)
1881 return -ENOMEM;
1882
1883 if (getname(sock, (struct sockaddr *) addr, &len)) {
1884 rc = -ENODEV;
1885 goto free_addr;
1886 }
1887
1888 switch (addr->ss_family) {
1889 case AF_INET:
1890 sin = (struct sockaddr_in *)addr;
1891 spin_lock_bh(&conn->session->lock);
1892 sprintf(buf, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
1893 *port = be16_to_cpu(sin->sin_port);
1894 spin_unlock_bh(&conn->session->lock);
1895 break;
1896 case AF_INET6:
1897 sin6 = (struct sockaddr_in6 *)addr;
1898 spin_lock_bh(&conn->session->lock);
1899 sprintf(buf, NIP6_FMT, NIP6(sin6->sin6_addr));
1900 *port = be16_to_cpu(sin6->sin6_port);
1901 spin_unlock_bh(&conn->session->lock);
1902 break;
1903 }
1904free_addr:
1905 kfree(addr);
1906 return rc;
1907}
1908
Alex Aizman7ba24712005-08-04 19:30:08 -07001909static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001910iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001911 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001912 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001913{
Mike Christie5bb0b552006-04-06 21:26:46 -05001914 struct iscsi_conn *conn = cls_conn->dd_data;
1915 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001916 struct sock *sk;
1917 struct socket *sock;
1918 int err;
1919
1920 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001921 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001922 if (!sock) {
1923 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
1924 return -EEXIST;
1925 }
Mike Christie22236962007-05-30 12:57:24 -05001926 /*
1927 * copy these values now because if we drop the session
1928 * userspace may still want to query the values since we will
1929 * be using them for the reconnect
1930 */
1931 err = iscsi_tcp_get_addr(conn, sock, conn->portal_address,
1932 &conn->portal_port, kernel_getpeername);
1933 if (err)
1934 goto free_socket;
1935
1936 err = iscsi_tcp_get_addr(conn, sock, conn->local_address,
1937 &conn->local_port, kernel_getsockname);
1938 if (err)
1939 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001940
Mike Christie5bb0b552006-04-06 21:26:46 -05001941 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1942 if (err)
Mike Christie22236962007-05-30 12:57:24 -05001943 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001944
Mike Christie67a61112006-05-30 00:37:20 -05001945 /* bind iSCSI connection and socket */
1946 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07001947
Mike Christie67a61112006-05-30 00:37:20 -05001948 /* setup Socket parameters */
1949 sk = sock->sk;
1950 sk->sk_reuse = 1;
1951 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
1952 sk->sk_allocation = GFP_ATOMIC;
Alex Aizman7ba24712005-08-04 19:30:08 -07001953
Mike Christie67a61112006-05-30 00:37:20 -05001954 /* FIXME: disable Nagle's algorithm */
Alex Aizman7ba24712005-08-04 19:30:08 -07001955
Mike Christie67a61112006-05-30 00:37:20 -05001956 /*
1957 * Intercept TCP callbacks for sendfile like receive
1958 * processing.
1959 */
1960 conn->recv_lock = &sk->sk_callback_lock;
1961 iscsi_conn_set_callbacks(conn);
1962 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
1963 /*
1964 * set receive state machine into initial state
1965 */
Olaf Kirchda32dd62007-12-13 12:43:21 -06001966 iscsi_tcp_hdr_recv_prep(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001967 return 0;
Mike Christie22236962007-05-30 12:57:24 -05001968
1969free_socket:
1970 sockfd_put(sock);
1971 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001972}
1973
Mike Christie5bb0b552006-04-06 21:26:46 -05001974/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05001975static void
Mike Christie77a23c22007-05-30 12:57:18 -05001976iscsi_tcp_mgmt_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Mike Christie30a6c652006-04-06 21:13:39 -05001977{
Mike Christie5bb0b552006-04-06 21:26:46 -05001978 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie843c0a82007-12-13 12:43:20 -06001979 tcp_mtask->xmstate = XMSTATE_IMM_HDR_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001980}
1981
1982static int
1983iscsi_r2tpool_alloc(struct iscsi_session *session)
1984{
1985 int i;
1986 int cmd_i;
1987
1988 /*
1989 * initialize per-task: R2T pool and xmit queue
1990 */
1991 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1992 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05001993 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001994
1995 /*
1996 * pre-allocated x4 as much r2ts to handle race when
1997 * target acks DataOut faster than we data_xmit() queues
1998 * could replenish r2tqueue.
1999 */
2000
2001 /* R2T pool */
Mike Christie5bb0b552006-04-06 21:26:46 -05002002 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4,
2003 (void***)&tcp_ctask->r2ts,
2004 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002005 goto r2t_alloc_fail;
2006 }
2007
2008 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05002009 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07002010 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05002011 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
2012 iscsi_pool_free(&tcp_ctask->r2tpool,
2013 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002014 goto r2t_alloc_fail;
2015 }
Alex Aizman7ba24712005-08-04 19:30:08 -07002016 }
2017
2018 return 0;
2019
2020r2t_alloc_fail:
2021 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002022 struct iscsi_cmd_task *ctask = session->cmds[i];
2023 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2024
Mike Christie5bb0b552006-04-06 21:26:46 -05002025 kfifo_free(tcp_ctask->r2tqueue);
2026 iscsi_pool_free(&tcp_ctask->r2tpool,
2027 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002028 }
2029 return -ENOMEM;
2030}
2031
2032static void
2033iscsi_r2tpool_free(struct iscsi_session *session)
2034{
2035 int i;
2036
2037 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002038 struct iscsi_cmd_task *ctask = session->cmds[i];
2039 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2040
Mike Christie5bb0b552006-04-06 21:26:46 -05002041 kfifo_free(tcp_ctask->r2tqueue);
2042 iscsi_pool_free(&tcp_ctask->r2tpool,
2043 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002044 }
2045}
2046
Alex Aizman7ba24712005-08-04 19:30:08 -07002047static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002048iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002049 char *buf, int buflen)
Alex Aizman7ba24712005-08-04 19:30:08 -07002050{
Mike Christie7b7232f2006-02-01 21:06:49 -06002051 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002052 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05002053 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002054 int value;
Alex Aizman7ba24712005-08-04 19:30:08 -07002055
Alex Aizman7ba24712005-08-04 19:30:08 -07002056 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002057 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002058 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002059 break;
2060 case ISCSI_PARAM_DATADGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002061 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05002062 tcp_conn->sendpage = conn->datadgst_en ?
2063 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002064 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002065 case ISCSI_PARAM_MAX_R2T:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002066 sscanf(buf, "%d", &value);
Alex Aizman7ba24712005-08-04 19:30:08 -07002067 if (session->max_r2t == roundup_pow_of_two(value))
2068 break;
2069 iscsi_r2tpool_free(session);
Mike Christie5c75b7f2006-06-28 12:00:26 -05002070 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002071 if (session->max_r2t & (session->max_r2t - 1))
2072 session->max_r2t = roundup_pow_of_two(session->max_r2t);
2073 if (iscsi_r2tpool_alloc(session))
2074 return -ENOMEM;
2075 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002076 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002077 return iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002078 }
2079
2080 return 0;
2081}
2082
2083static int
Mike Christie5c75b7f2006-06-28 12:00:26 -05002084iscsi_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
2085 enum iscsi_param param, char *buf)
Mike Christie7b8631b2006-01-13 18:05:50 -06002086{
Mike Christie7b7232f2006-02-01 21:06:49 -06002087 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002088 int len;
Mike Christie7b8631b2006-01-13 18:05:50 -06002089
2090 switch(param) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002091 case ISCSI_PARAM_CONN_PORT:
Mike Christie22236962007-05-30 12:57:24 -05002092 spin_lock_bh(&conn->session->lock);
2093 len = sprintf(buf, "%hu\n", conn->portal_port);
2094 spin_unlock_bh(&conn->session->lock);
Mike Christie8d2860b2006-05-02 19:46:47 -05002095 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05002096 case ISCSI_PARAM_CONN_ADDRESS:
Mike Christie22236962007-05-30 12:57:24 -05002097 spin_lock_bh(&conn->session->lock);
2098 len = sprintf(buf, "%s\n", conn->portal_address);
2099 spin_unlock_bh(&conn->session->lock);
Mike Christiefd7255f2006-04-06 21:13:36 -05002100 break;
2101 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002102 return iscsi_conn_get_param(cls_conn, param, buf);
Mike Christiefd7255f2006-04-06 21:13:36 -05002103 }
2104
2105 return len;
2106}
2107
Mike Christie22236962007-05-30 12:57:24 -05002108static int
2109iscsi_tcp_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
2110 char *buf)
2111{
2112 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
2113 int len;
2114
2115 switch (param) {
2116 case ISCSI_HOST_PARAM_IPADDRESS:
2117 spin_lock_bh(&session->lock);
2118 if (!session->leadconn)
2119 len = -ENODEV;
2120 else
2121 len = sprintf(buf, "%s\n",
2122 session->leadconn->local_address);
2123 spin_unlock_bh(&session->lock);
2124 break;
2125 default:
2126 return iscsi_host_get_param(shost, param, buf);
2127 }
2128 return len;
2129}
2130
Alex Aizman7ba24712005-08-04 19:30:08 -07002131static void
Mike Christie7b7232f2006-02-01 21:06:49 -06002132iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07002133{
Mike Christie7b7232f2006-02-01 21:06:49 -06002134 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002135 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002136
2137 stats->txdata_octets = conn->txdata_octets;
2138 stats->rxdata_octets = conn->rxdata_octets;
2139 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
2140 stats->dataout_pdus = conn->dataout_pdus_cnt;
2141 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
2142 stats->datain_pdus = conn->datain_pdus_cnt;
2143 stats->r2t_pdus = conn->r2t_pdus_cnt;
2144 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
2145 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
2146 stats->custom_length = 3;
2147 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05002148 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002149 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05002150 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002151 strcpy(stats->custom[2].desc, "eh_abort_cnt");
2152 stats->custom[2].value = conn->eh_abort_cnt;
2153}
2154
Mike Christie5bb0b552006-04-06 21:26:46 -05002155static struct iscsi_cls_session *
2156iscsi_tcp_session_create(struct iscsi_transport *iscsit,
2157 struct scsi_transport_template *scsit,
Mike Christie15482712007-05-30 12:57:19 -05002158 uint16_t cmds_max, uint16_t qdepth,
Mike Christie5bb0b552006-04-06 21:26:46 -05002159 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07002160{
Mike Christie5bb0b552006-04-06 21:26:46 -05002161 struct iscsi_cls_session *cls_session;
2162 struct iscsi_session *session;
2163 uint32_t hn;
2164 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07002165
Mike Christie15482712007-05-30 12:57:19 -05002166 cls_session = iscsi_session_setup(iscsit, scsit, cmds_max, qdepth,
Mike Christie5bb0b552006-04-06 21:26:46 -05002167 sizeof(struct iscsi_tcp_cmd_task),
2168 sizeof(struct iscsi_tcp_mgmt_task),
2169 initial_cmdsn, &hn);
2170 if (!cls_session)
2171 return NULL;
2172 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07002173
Mike Christie5bb0b552006-04-06 21:26:46 -05002174 session = class_to_transport_session(cls_session);
2175 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2176 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2177 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2178
2179 ctask->hdr = &tcp_ctask->hdr;
2180 }
2181
2182 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
2183 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
2184 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
2185
2186 mtask->hdr = &tcp_mtask->hdr;
2187 }
2188
2189 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
2190 goto r2tpool_alloc_fail;
2191
2192 return cls_session;
2193
2194r2tpool_alloc_fail:
2195 iscsi_session_teardown(cls_session);
2196 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002197}
2198
Mike Christie5bb0b552006-04-06 21:26:46 -05002199static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2200{
Mike Christie5bb0b552006-04-06 21:26:46 -05002201 iscsi_r2tpool_free(class_to_transport_session(cls_session));
2202 iscsi_session_teardown(cls_session);
2203}
2204
Mike Christied1d81c02007-05-30 12:57:21 -05002205static int iscsi_tcp_slave_configure(struct scsi_device *sdev)
2206{
Mike Christieb6d44fe2007-07-26 12:46:47 -05002207 blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_ANY);
Mike Christied1d81c02007-05-30 12:57:21 -05002208 blk_queue_dma_alignment(sdev->request_queue, 0);
2209 return 0;
2210}
2211
Mike Christie5bb0b552006-04-06 21:26:46 -05002212static struct scsi_host_template iscsi_sht = {
Mike Christie79743922007-07-26 12:46:46 -05002213 .module = THIS_MODULE,
Mike Christief4246b32006-07-24 15:47:54 -05002214 .name = "iSCSI Initiator over TCP/IP",
Mike Christie5bb0b552006-04-06 21:26:46 -05002215 .queuecommand = iscsi_queuecommand,
2216 .change_queue_depth = iscsi_change_queue_depth,
Mike Christie15482712007-05-30 12:57:19 -05002217 .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1,
Mike Christie5bb0b552006-04-06 21:26:46 -05002218 .sg_tablesize = ISCSI_SG_TABLESIZE,
Mike Christie8231f0e2007-02-28 17:32:20 -06002219 .max_sectors = 0xFFFF,
Mike Christie5bb0b552006-04-06 21:26:46 -05002220 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
2221 .eh_abort_handler = iscsi_eh_abort,
Mike Christie843c0a82007-12-13 12:43:20 -06002222 .eh_device_reset_handler= iscsi_eh_device_reset,
Mike Christie5bb0b552006-04-06 21:26:46 -05002223 .eh_host_reset_handler = iscsi_eh_host_reset,
2224 .use_clustering = DISABLE_CLUSTERING,
Mike Christied1d81c02007-05-30 12:57:21 -05002225 .slave_configure = iscsi_tcp_slave_configure,
Mike Christie5bb0b552006-04-06 21:26:46 -05002226 .proc_name = "iscsi_tcp",
2227 .this_id = -1,
2228};
2229
Alex Aizman7ba24712005-08-04 19:30:08 -07002230static struct iscsi_transport iscsi_tcp_transport = {
2231 .owner = THIS_MODULE,
2232 .name = "tcp",
2233 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
2234 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05002235 .param_mask = ISCSI_MAX_RECV_DLENGTH |
2236 ISCSI_MAX_XMIT_DLENGTH |
2237 ISCSI_HDRDGST_EN |
2238 ISCSI_DATADGST_EN |
2239 ISCSI_INITIAL_R2T_EN |
2240 ISCSI_MAX_R2T |
2241 ISCSI_IMM_DATA_EN |
2242 ISCSI_FIRST_BURST |
2243 ISCSI_MAX_BURST |
2244 ISCSI_PDU_INORDER_EN |
2245 ISCSI_DATASEQ_INORDER_EN |
2246 ISCSI_ERL |
2247 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05002248 ISCSI_CONN_ADDRESS |
Mike Christie5c75b7f2006-06-28 12:00:26 -05002249 ISCSI_EXP_STATSN |
2250 ISCSI_PERSISTENT_PORT |
2251 ISCSI_PERSISTENT_ADDRESS |
Mike Christieb2c64162007-05-30 12:57:16 -05002252 ISCSI_TARGET_NAME | ISCSI_TPGT |
2253 ISCSI_USERNAME | ISCSI_PASSWORD |
Mike Christie843c0a82007-12-13 12:43:20 -06002254 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
2255 ISCSI_FAST_ABORT,
Mike Christie22236962007-05-30 12:57:24 -05002256 .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS |
Mike Christied8196ed2007-05-30 12:57:25 -05002257 ISCSI_HOST_INITIATOR_NAME |
2258 ISCSI_HOST_NETDEV_NAME,
Alex Aizman7ba24712005-08-04 19:30:08 -07002259 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06002260 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07002261 .max_conn = 1,
2262 .max_cmd_len = ISCSI_TCP_MAX_CMD_LEN,
Mike Christie5bb0b552006-04-06 21:26:46 -05002263 /* session management */
2264 .create_session = iscsi_tcp_session_create,
2265 .destroy_session = iscsi_tcp_session_destroy,
2266 /* connection management */
2267 .create_conn = iscsi_tcp_conn_create,
2268 .bind_conn = iscsi_tcp_conn_bind,
2269 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07002270 .set_param = iscsi_conn_set_param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002271 .get_conn_param = iscsi_tcp_conn_get_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002272 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002273 .start_conn = iscsi_conn_start,
Mike Christie1c834692006-07-24 15:47:26 -05002274 .stop_conn = iscsi_tcp_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -05002275 /* iscsi host params */
Mike Christie22236962007-05-30 12:57:24 -05002276 .get_host_param = iscsi_tcp_host_get_param,
Mike Christie0801c242007-05-30 12:57:12 -05002277 .set_host_param = iscsi_host_set_param,
Mike Christie5bb0b552006-04-06 21:26:46 -05002278 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002279 .send_pdu = iscsi_conn_send_pdu,
2280 .get_stats = iscsi_conn_get_stats,
Mike Christie5bb0b552006-04-06 21:26:46 -05002281 .init_cmd_task = iscsi_tcp_cmd_init,
2282 .init_mgmt_task = iscsi_tcp_mgmt_init,
2283 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2284 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2285 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2286 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002287 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002288};
2289
2290static int __init
2291iscsi_tcp_init(void)
2292{
Alex Aizman7ba24712005-08-04 19:30:08 -07002293 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002294 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2295 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002296 return -EINVAL;
2297 }
2298 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2299
Mike Christie7b8631b2006-01-13 18:05:50 -06002300 if (!iscsi_register_transport(&iscsi_tcp_transport))
Mike Christieffbfe922006-05-18 20:31:36 -05002301 return -ENODEV;
Alex Aizman7ba24712005-08-04 19:30:08 -07002302
Mike Christie7b8631b2006-01-13 18:05:50 -06002303 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002304}
2305
2306static void __exit
2307iscsi_tcp_exit(void)
2308{
2309 iscsi_unregister_transport(&iscsi_tcp_transport);
Alex Aizman7ba24712005-08-04 19:30:08 -07002310}
2311
2312module_init(iscsi_tcp_init);
2313module_exit(iscsi_tcp_exit);