blob: 1b540e03f5bffe56353010d22f226444ef7d2294 [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 Christieb6c395ed2006-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 Christieb6c395ed2006-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 Christieb6c395ed2006-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) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700510 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600511 if (rhdr->flags & ISCSI_FLAG_DATA_UNDERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700512 int res_count = be32_to_cpu(rhdr->residual_count);
513
514 if (res_count > 0 &&
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900515 res_count <= scsi_bufflen(sc)) {
516 scsi_set_resid(sc, res_count);
Alex Aizman7ba24712005-08-04 19:30:08 -0700517 sc->result = (DID_OK << 16) | rhdr->cmd_status;
518 } else
519 sc->result = (DID_BAD_TARGET << 16) |
520 rhdr->cmd_status;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600521 } else if (rhdr->flags & ISCSI_FLAG_DATA_OVERFLOW) {
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900522 scsi_set_resid(sc, be32_to_cpu(rhdr->residual_count));
Alex Aizman7ba24712005-08-04 19:30:08 -0700523 sc->result = (DID_OK << 16) | rhdr->cmd_status;
524 } else
525 sc->result = (DID_OK << 16) | rhdr->cmd_status;
526 }
527
528 conn->datain_pdus_cnt++;
529 return 0;
530}
531
532/**
533 * iscsi_solicit_data_init - initialize first Data-Out
534 * @conn: iscsi connection
535 * @ctask: scsi command task
536 * @r2t: R2T info
537 *
538 * Notes:
539 * Initialize first Data-Out within this R2T sequence and finds
540 * proper data_offset within this SCSI command.
541 *
542 * This function is called with connection lock taken.
543 **/
544static void
545iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
546 struct iscsi_r2t_info *r2t)
547{
548 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700549 struct scsi_cmnd *sc = ctask->sc;
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900550 int i, sg_count = 0;
551 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700552
Mike Christieffbfe922006-05-18 20:31:36 -0500553 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700554 memset(hdr, 0, sizeof(struct iscsi_data));
555 hdr->ttt = r2t->ttt;
556 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
557 r2t->solicit_datasn++;
558 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500559 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
560 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700561 hdr->exp_statsn = r2t->exp_statsn;
562 hdr->offset = cpu_to_be32(r2t->data_offset);
563 if (r2t->data_length > conn->max_xmit_dlength) {
564 hton24(hdr->dlength, conn->max_xmit_dlength);
565 r2t->data_count = conn->max_xmit_dlength;
566 hdr->flags = 0;
567 } else {
568 hton24(hdr->dlength, r2t->data_length);
569 r2t->data_count = r2t->data_length;
570 hdr->flags = ISCSI_FLAG_CMD_FINAL;
571 }
572 conn->dataout_pdus_cnt++;
573
574 r2t->sent = 0;
575
Mike Christie6e458cc2006-05-18 20:31:31 -0500576 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -0500577 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -0700578
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900579 sg = scsi_sglist(sc);
580 r2t->sg = NULL;
581 for (i = 0; i < scsi_sg_count(sc); i++, sg += 1) {
582 /* FIXME: prefetch ? */
583 if (sg_count + sg->length > r2t->data_offset) {
584 int page_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700585
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900586 /* sg page found! */
Alex Aizman7ba24712005-08-04 19:30:08 -0700587
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900588 /* offset within this page */
589 page_offset = r2t->data_offset - sg_count;
Alex Aizman7ba24712005-08-04 19:30:08 -0700590
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900591 /* fill in this buffer */
592 iscsi_buf_init_sg(&r2t->sendbuf, sg);
593 r2t->sendbuf.sg.offset += page_offset;
594 r2t->sendbuf.sg.length -= page_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700595
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900596 /* xmit logic will continue with next one */
597 r2t->sg = sg + 1;
598 break;
Alex Aizman7ba24712005-08-04 19:30:08 -0700599 }
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900600 sg_count += sg->length;
Mike Christie62f38302006-08-31 18:09:27 -0400601 }
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900602 BUG_ON(r2t->sg == NULL);
Alex Aizman7ba24712005-08-04 19:30:08 -0700603}
604
605/**
606 * iscsi_r2t_rsp - iSCSI R2T Response processing
607 * @conn: iscsi connection
608 * @ctask: scsi command task
609 **/
610static int
611iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
612{
613 struct iscsi_r2t_info *r2t;
614 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500615 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
616 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
617 struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700618 int r2tsn = be32_to_cpu(rhdr->r2tsn);
619 int rc;
620
Mike Christie98a94162006-08-31 18:09:26 -0400621 if (tcp_conn->in.datalen) {
622 printk(KERN_ERR "iscsi_tcp: invalid R2t with datalen %d\n",
623 tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700624 return ISCSI_ERR_DATALEN;
Mike Christie98a94162006-08-31 18:09:26 -0400625 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700626
Mike Christied473cc72007-05-30 12:57:14 -0500627 if (tcp_ctask->exp_datasn != r2tsn){
628 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->r2tsn(%d)\n",
629 __FUNCTION__, tcp_ctask->exp_datasn, r2tsn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700630 return ISCSI_ERR_R2TSN;
Mike Christied473cc72007-05-30 12:57:14 -0500631 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700632
Alex Aizman7ba24712005-08-04 19:30:08 -0700633 /* fill-in new R2T associated with the task */
634 spin_lock(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -0500635 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
636
Mike Christie843c0a82007-12-13 12:43:20 -0600637 if (!ctask->sc || session->state != ISCSI_STATE_LOGGED_IN) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700638 printk(KERN_INFO "iscsi_tcp: dropping R2T itt %d in "
639 "recovery...\n", ctask->itt);
640 spin_unlock(&session->lock);
641 return 0;
642 }
Mike Christieb6c395ed2006-07-24 15:47:15 -0500643
Mike Christie5bb0b552006-04-06 21:26:46 -0500644 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700645 BUG_ON(!rc);
646
647 r2t->exp_statsn = rhdr->statsn;
648 r2t->data_length = be32_to_cpu(rhdr->data_length);
Mike Christie98a94162006-08-31 18:09:26 -0400649 if (r2t->data_length == 0) {
650 printk(KERN_ERR "iscsi_tcp: invalid R2T with zero data len\n");
Alex Aizman7ba24712005-08-04 19:30:08 -0700651 spin_unlock(&session->lock);
652 return ISCSI_ERR_DATALEN;
653 }
654
Mike Christie98a94162006-08-31 18:09:26 -0400655 if (r2t->data_length > session->max_burst)
656 debug_scsi("invalid R2T with data len %u and max burst %u."
657 "Attempting to execute request.\n",
658 r2t->data_length, session->max_burst);
659
Alex Aizman7ba24712005-08-04 19:30:08 -0700660 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900661 if (r2t->data_offset + r2t->data_length > scsi_bufflen(ctask->sc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700662 spin_unlock(&session->lock);
Mike Christie98a94162006-08-31 18:09:26 -0400663 printk(KERN_ERR "iscsi_tcp: invalid R2T with data len %u at "
664 "offset %u and total length %d\n", r2t->data_length,
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900665 r2t->data_offset, scsi_bufflen(ctask->sc));
Alex Aizman7ba24712005-08-04 19:30:08 -0700666 return ISCSI_ERR_DATALEN;
667 }
668
669 r2t->ttt = rhdr->ttt; /* no flip */
670 r2t->solicit_datasn = 0;
671
672 iscsi_solicit_data_init(conn, ctask, r2t);
673
Mike Christied473cc72007-05-30 12:57:14 -0500674 tcp_ctask->exp_datasn = r2tsn + 1;
Mike Christie5bb0b552006-04-06 21:26:46 -0500675 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
Mike Christie843c0a82007-12-13 12:43:20 -0600676 tcp_ctask->xmstate |= XMSTATE_SOL_HDR_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -0700677 conn->r2t_pdus_cnt++;
Mike Christie843c0a82007-12-13 12:43:20 -0600678
679 iscsi_requeue_ctask(ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -0700680 spin_unlock(&session->lock);
681
682 return 0;
683}
684
Olaf Kirchda32dd62007-12-13 12:43:21 -0600685/*
686 * Handle incoming reply to DataIn command
687 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700688static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600689iscsi_tcp_process_data_in(struct iscsi_tcp_conn *tcp_conn,
690 struct iscsi_chunk *chunk)
691{
692 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
693 struct iscsi_hdr *hdr = tcp_conn->in.hdr;
694 int rc;
695
696 if (!iscsi_tcp_dgst_verify(tcp_conn, chunk))
697 return ISCSI_ERR_DATA_DGST;
698
699 /* check for non-exceptional status */
700 if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
701 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
702 if (rc)
703 return rc;
704 }
705
706 iscsi_tcp_hdr_recv_prep(tcp_conn);
707 return 0;
708}
709
710/**
711 * iscsi_tcp_hdr_dissect - process PDU header
712 * @conn: iSCSI connection
713 * @hdr: PDU header
714 *
715 * This function analyzes the header of the PDU received,
716 * and performs several sanity checks. If the PDU is accompanied
717 * by data, the receive buffer is set up to copy the incoming data
718 * to the correct location.
719 */
720static int
721iscsi_tcp_hdr_dissect(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
Alex Aizman7ba24712005-08-04 19:30:08 -0700722{
Mike Christie5bb0b552006-04-06 21:26:46 -0500723 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700724 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500725 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600726 struct iscsi_cmd_task *ctask;
727 uint32_t itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700728
729 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500730 tcp_conn->in.datalen = ntoh24(hdr->dlength);
731 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700732 printk(KERN_ERR "iscsi_tcp: datalen %d > %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500733 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700734 return ISCSI_ERR_DATALEN;
735 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700736
Olaf Kirchda32dd62007-12-13 12:43:21 -0600737 /* Additional header segments. So far, we don't
738 * process additional headers.
739 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500740 ahslen = hdr->hlength << 2;
Alex Aizman7ba24712005-08-04 19:30:08 -0700741
Mike Christie5bb0b552006-04-06 21:26:46 -0500742 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700743 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500744 rc = iscsi_verify_itt(conn, hdr, &itt);
745 if (rc == ISCSI_ERR_NO_SCSI_CMD) {
Olaf Kirchda32dd62007-12-13 12:43:21 -0600746 /* XXX: what does this do? */
Mike Christie5bb0b552006-04-06 21:26:46 -0500747 tcp_conn->in.datalen = 0; /* force drop */
748 return 0;
749 } else if (rc)
750 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700751
Olaf Kirchda32dd62007-12-13 12:43:21 -0600752 debug_tcp("opcode 0x%x ahslen %d datalen %d\n",
753 opcode, ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700754
Mike Christie5bb0b552006-04-06 21:26:46 -0500755 switch(opcode) {
756 case ISCSI_OP_SCSI_DATA_IN:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600757 ctask = session->cmds[itt];
758 rc = iscsi_data_rsp(conn, ctask);
Mike Christie275fd7d2006-07-24 15:47:17 -0500759 if (rc)
760 return rc;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600761 if (tcp_conn->in.datalen) {
762 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
763 struct hash_desc *rx_hash = NULL;
764
765 /*
766 * Setup copy of Data-In into the Scsi_Cmnd
767 * Scatterlist case:
768 * We set up the iscsi_chunk to point to the next
769 * scatterlist entry to copy to. As we go along,
770 * we move on to the next scatterlist entry and
771 * update the digest per-entry.
772 */
773 if (conn->datadgst_en)
774 rx_hash = &tcp_conn->rx_hash;
775
776 debug_tcp("iscsi_tcp_begin_data_in(%p, offset=%d, "
777 "datalen=%d)\n", tcp_conn,
778 tcp_ctask->data_offset,
779 tcp_conn->in.datalen);
780 return iscsi_chunk_seek_sg(&tcp_conn->in.chunk,
781 scsi_sglist(ctask->sc),
782 scsi_sg_count(ctask->sc),
783 tcp_ctask->data_offset,
784 tcp_conn->in.datalen,
785 iscsi_tcp_process_data_in,
786 rx_hash);
787 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500788 /* fall through */
789 case ISCSI_OP_SCSI_CMD_RSP:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600790 if (tcp_conn->in.datalen) {
791 iscsi_tcp_data_recv_prep(tcp_conn);
792 return 0;
793 }
794 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500795 break;
796 case ISCSI_OP_R2T:
Olaf Kirchda32dd62007-12-13 12:43:21 -0600797 ctask = session->cmds[itt];
Mike Christie5bb0b552006-04-06 21:26:46 -0500798 if (ahslen)
799 rc = ISCSI_ERR_AHSLEN;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600800 else if (ctask->sc->sc_data_direction == DMA_TO_DEVICE)
801 rc = iscsi_r2t_rsp(conn, ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -0500802 else
803 rc = ISCSI_ERR_PROTO;
804 break;
805 case ISCSI_OP_LOGIN_RSP:
806 case ISCSI_OP_TEXT_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500807 case ISCSI_OP_REJECT:
808 case ISCSI_OP_ASYNC_EVENT:
Mike Christiec8dc1e52006-07-24 15:47:39 -0500809 /*
810 * It is possible that we could get a PDU with a buffer larger
811 * than 8K, but there are no targets that currently do this.
812 * For now we fail until we find a vendor that needs it
813 */
Olaf Kirchda32dd62007-12-13 12:43:21 -0600814 if (ISCSI_DEF_MAX_RECV_SEG_LEN < tcp_conn->in.datalen) {
Mike Christiec8dc1e52006-07-24 15:47:39 -0500815 printk(KERN_ERR "iscsi_tcp: received buffer of len %u "
816 "but conn buffer is only %u (opcode %0x)\n",
817 tcp_conn->in.datalen,
Mike Christiebf32ed32007-02-28 17:32:17 -0600818 ISCSI_DEF_MAX_RECV_SEG_LEN, opcode);
Mike Christiec8dc1e52006-07-24 15:47:39 -0500819 rc = ISCSI_ERR_PROTO;
820 break;
821 }
822
Olaf Kirchda32dd62007-12-13 12:43:21 -0600823 /* If there's data coming in with the response,
824 * receive it to the connection's buffer.
825 */
826 if (tcp_conn->in.datalen) {
827 iscsi_tcp_data_recv_prep(tcp_conn);
828 return 0;
829 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500830 /* fall through */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500831 case ISCSI_OP_LOGOUT_RSP:
832 case ISCSI_OP_NOOP_IN:
Mike Christie5bb0b552006-04-06 21:26:46 -0500833 case ISCSI_OP_SCSI_TMFUNC_RSP:
834 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
835 break;
836 default:
837 rc = ISCSI_ERR_BAD_OPCODE;
838 break;
839 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700840
Olaf Kirchda32dd62007-12-13 12:43:21 -0600841 if (rc == 0) {
842 /* Anything that comes with data should have
843 * been handled above. */
844 if (tcp_conn->in.datalen)
845 return ISCSI_ERR_PROTO;
846 iscsi_tcp_hdr_recv_prep(tcp_conn);
847 }
848
Alex Aizman7ba24712005-08-04 19:30:08 -0700849 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700850}
851
852static inline void
James Bottomleyc9802cd2006-09-23 15:33:43 -0500853partial_sg_digest_update(struct hash_desc *desc, struct scatterlist *sg,
Mike Christie62f38302006-08-31 18:09:27 -0400854 int offset, int length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700855{
856 struct scatterlist temp;
857
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700858 sg_init_table(&temp, 1);
859 sg_set_page(&temp, sg_page(sg), length, offset);
James Bottomleyc9802cd2006-09-23 15:33:43 -0500860 crypto_hash_update(desc, &temp, length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700861}
862
Olaf Kirchda32dd62007-12-13 12:43:21 -0600863/**
864 * iscsi_tcp_hdr_recv_done - process PDU header
865 *
866 * This is the callback invoked when the PDU header has
867 * been received. If the header is followed by additional
868 * header segments, we go back for more data.
869 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700870static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600871iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
872 struct iscsi_chunk *chunk)
Alex Aizman7ba24712005-08-04 19:30:08 -0700873{
Olaf Kirchda32dd62007-12-13 12:43:21 -0600874 struct iscsi_conn *conn = tcp_conn->iscsi_conn;
875 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700876
Olaf Kirchda32dd62007-12-13 12:43:21 -0600877 /* Check if there are additional header segments
878 * *prior* to computing the digest, because we
879 * may need to go back to the caller for more.
880 */
881 hdr = (struct iscsi_hdr *) tcp_conn->in.hdr_buf;
882 if (chunk->copied == sizeof(struct iscsi_hdr) && hdr->hlength) {
883 /* Bump the header length - the caller will
884 * just loop around and get the AHS for us, and
885 * call again. */
886 unsigned int ahslen = hdr->hlength << 2;
Alex Aizman7ba24712005-08-04 19:30:08 -0700887
Olaf Kirchda32dd62007-12-13 12:43:21 -0600888 /* Make sure we don't overflow */
889 if (sizeof(*hdr) + ahslen > sizeof(tcp_conn->in.hdr_buf))
890 return ISCSI_ERR_AHSLEN;
891
892 chunk->total_size += ahslen;
893 chunk->size += ahslen;
894 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700895 }
Olaf Kirchda32dd62007-12-13 12:43:21 -0600896
897 /* We're done processing the header. See if we're doing
898 * header digests; if so, set up the recv_digest buffer
899 * and go back for more. */
900 if (conn->hdrdgst_en) {
901 if (chunk->digest_len == 0) {
902 iscsi_tcp_chunk_splice_digest(chunk,
903 chunk->recv_digest);
904 return 0;
905 }
906 iscsi_tcp_dgst_header(&tcp_conn->rx_hash, hdr,
907 chunk->total_copied - ISCSI_DIGEST_SIZE,
908 chunk->digest);
909
910 if (!iscsi_tcp_dgst_verify(tcp_conn, chunk))
911 return ISCSI_ERR_HDR_DGST;
912 }
913
914 tcp_conn->in.hdr = hdr;
915 return iscsi_tcp_hdr_dissect(conn, hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -0700916}
917
918/**
Olaf Kirchda32dd62007-12-13 12:43:21 -0600919 * iscsi_tcp_recv - TCP receive in sendfile fashion
Alex Aizman7ba24712005-08-04 19:30:08 -0700920 * @rd_desc: read descriptor
921 * @skb: socket buffer
922 * @offset: offset in skb
923 * @len: skb->len - offset
924 **/
925static int
Olaf Kirchda32dd62007-12-13 12:43:21 -0600926iscsi_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
927 unsigned int offset, size_t len)
Alex Aizman7ba24712005-08-04 19:30:08 -0700928{
Alex Aizman7ba24712005-08-04 19:30:08 -0700929 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500930 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600931 struct iscsi_chunk *chunk = &tcp_conn->in.chunk;
932 struct skb_seq_state seq;
933 unsigned int consumed = 0;
934 int rc = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700935
Olaf Kirchda32dd62007-12-13 12:43:21 -0600936 debug_tcp("in %d bytes\n", skb->len - offset);
Alex Aizman7ba24712005-08-04 19:30:08 -0700937
938 if (unlikely(conn->suspend_rx)) {
939 debug_tcp("conn %d Rx suspended!\n", conn->id);
940 return 0;
941 }
942
Olaf Kirchda32dd62007-12-13 12:43:21 -0600943 skb_prepare_seq_read(skb, offset, skb->len, &seq);
944 while (1) {
945 unsigned int avail;
946 const u8 *ptr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700947
Olaf Kirchda32dd62007-12-13 12:43:21 -0600948 avail = skb_seq_read(consumed, &ptr, &seq);
949 if (avail == 0)
950 break;
951 BUG_ON(chunk->copied >= chunk->size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700952
Olaf Kirchda32dd62007-12-13 12:43:21 -0600953 debug_tcp("skb %p ptr=%p avail=%u\n", skb, ptr, avail);
954 rc = iscsi_tcp_chunk_recv(tcp_conn, chunk, ptr, avail);
955 BUG_ON(rc == 0);
956 consumed += rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500957
Olaf Kirchda32dd62007-12-13 12:43:21 -0600958 if (chunk->total_copied >= chunk->total_size) {
959 rc = chunk->done(tcp_conn, chunk);
960 if (rc != 0) {
961 skb_abort_seq_read(&seq);
962 goto error;
Mike Christiedbdb0162007-05-30 12:57:20 -0500963 }
Mike Christiedbdb0162007-05-30 12:57:20 -0500964
Olaf Kirchda32dd62007-12-13 12:43:21 -0600965 /* The done() functions sets up the
966 * next chunk. */
Alex Aizman7ba24712005-08-04 19:30:08 -0700967 }
968 }
969
Olaf Kirchda32dd62007-12-13 12:43:21 -0600970 conn->rxdata_octets += consumed;
971 return consumed;
Alex Aizman7ba24712005-08-04 19:30:08 -0700972
Olaf Kirchda32dd62007-12-13 12:43:21 -0600973error:
974 debug_tcp("Error receiving PDU, errno=%d\n", rc);
975 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
976 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700977}
978
979static void
980iscsi_tcp_data_ready(struct sock *sk, int flag)
981{
982 struct iscsi_conn *conn = sk->sk_user_data;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600983 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700984 read_descriptor_t rd_desc;
985
986 read_lock(&sk->sk_callback_lock);
987
Mike Christie665b44a2006-05-02 19:46:49 -0500988 /*
Olaf Kirchda32dd62007-12-13 12:43:21 -0600989 * Use rd_desc to pass 'conn' to iscsi_tcp_recv.
Mike Christie665b44a2006-05-02 19:46:49 -0500990 * We set count to 1 because we want the network layer to
Olaf Kirchda32dd62007-12-13 12:43:21 -0600991 * hand us all the skbs that are available. iscsi_tcp_recv
Mike Christie665b44a2006-05-02 19:46:49 -0500992 * handled pdus that cross buffers or pdus that still need data.
993 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700994 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -0500995 rd_desc.count = 1;
Olaf Kirchda32dd62007-12-13 12:43:21 -0600996 tcp_read_sock(sk, &rd_desc, iscsi_tcp_recv);
Alex Aizman7ba24712005-08-04 19:30:08 -0700997
998 read_unlock(&sk->sk_callback_lock);
Olaf Kirchda32dd62007-12-13 12:43:21 -0600999
1000 /* If we had to (atomically) map a highmem page,
1001 * unmap it now. */
1002 iscsi_tcp_chunk_unmap(&tcp_conn->in.chunk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001003}
1004
1005static void
1006iscsi_tcp_state_change(struct sock *sk)
1007{
Mike Christie5bb0b552006-04-06 21:26:46 -05001008 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001009 struct iscsi_conn *conn;
1010 struct iscsi_session *session;
1011 void (*old_state_change)(struct sock *);
1012
1013 read_lock(&sk->sk_callback_lock);
1014
1015 conn = (struct iscsi_conn*)sk->sk_user_data;
1016 session = conn->session;
1017
Mike Christiee6273992005-11-29 23:12:49 -06001018 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1019 sk->sk_state == TCP_CLOSE) &&
1020 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001021 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1022 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1023 }
1024
Mike Christie5bb0b552006-04-06 21:26:46 -05001025 tcp_conn = conn->dd_data;
1026 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001027
1028 read_unlock(&sk->sk_callback_lock);
1029
1030 old_state_change(sk);
1031}
1032
1033/**
1034 * iscsi_write_space - Called when more output buffer space is available
1035 * @sk: socket space is available for
1036 **/
1037static void
1038iscsi_write_space(struct sock *sk)
1039{
1040 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001041 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1042
1043 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001044 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie55e32992006-01-13 18:05:53 -06001045 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001046}
1047
1048static void
1049iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1050{
Mike Christie5bb0b552006-04-06 21:26:46 -05001051 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1052 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001053
1054 /* assign new callbacks */
1055 write_lock_bh(&sk->sk_callback_lock);
1056 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001057 tcp_conn->old_data_ready = sk->sk_data_ready;
1058 tcp_conn->old_state_change = sk->sk_state_change;
1059 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001060 sk->sk_data_ready = iscsi_tcp_data_ready;
1061 sk->sk_state_change = iscsi_tcp_state_change;
1062 sk->sk_write_space = iscsi_write_space;
1063 write_unlock_bh(&sk->sk_callback_lock);
1064}
1065
1066static void
Mike Christie1c834692006-07-24 15:47:26 -05001067iscsi_conn_restore_callbacks(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001068{
Mike Christie5bb0b552006-04-06 21:26:46 -05001069 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001070
1071 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1072 write_lock_bh(&sk->sk_callback_lock);
1073 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001074 sk->sk_data_ready = tcp_conn->old_data_ready;
1075 sk->sk_state_change = tcp_conn->old_state_change;
1076 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001077 sk->sk_no_check = 0;
1078 write_unlock_bh(&sk->sk_callback_lock);
1079}
1080
1081/**
1082 * iscsi_send - generic send routine
1083 * @sk: kernel's socket
1084 * @buf: buffer to write from
1085 * @size: actual size to write
1086 * @flags: socket's flags
Alex Aizman7ba24712005-08-04 19:30:08 -07001087 */
1088static inline int
FUJITA Tomonori56851692006-01-13 18:05:44 -06001089iscsi_send(struct iscsi_conn *conn, struct iscsi_buf *buf, int size, int flags)
Alex Aizman7ba24712005-08-04 19:30:08 -07001090{
Mike Christie5bb0b552006-04-06 21:26:46 -05001091 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1092 struct socket *sk = tcp_conn->sock;
Mike Christie3219e522006-05-30 00:37:28 -05001093 int offset = buf->sg.offset + buf->sent, res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001094
Mike Christie7cae5152006-01-13 18:05:47 -06001095 /*
1096 * if we got use_sg=0 or are sending something we kmallocd
1097 * then we did not have to do kmap (kmap returns page_address)
1098 *
1099 * if we got use_sg > 0, but had to drop down, we do not
1100 * set clustering so this should only happen for that
1101 * slab case.
1102 */
1103 if (buf->use_sendmsg)
Olaf Kirchda32dd62007-12-13 12:43:21 -06001104 res = sock_no_sendpage(sk, buf->sg.page, offset, size, flags);
Mike Christie7cae5152006-01-13 18:05:47 -06001105 else
Olaf Kirchda32dd62007-12-13 12:43:21 -06001106 res = tcp_conn->sendpage(sk, buf->sg.page, offset, size, flags);
Mike Christie3219e522006-05-30 00:37:28 -05001107
1108 if (res >= 0) {
1109 conn->txdata_octets += res;
1110 buf->sent += res;
1111 return res;
1112 }
1113
1114 tcp_conn->sendpage_failures_cnt++;
1115 if (res == -EAGAIN)
1116 res = -ENOBUFS;
1117 else
1118 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1119 return res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001120}
1121
1122/**
1123 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1124 * @conn: iscsi connection
1125 * @buf: buffer to write from
1126 * @datalen: lenght of data to be sent after the header
1127 *
1128 * Notes:
1129 * (Tx, Fast Path)
1130 **/
1131static inline int
1132iscsi_sendhdr(struct iscsi_conn *conn, struct iscsi_buf *buf, int datalen)
1133{
Alex Aizman7ba24712005-08-04 19:30:08 -07001134 int flags = 0; /* MSG_DONTWAIT; */
1135 int res, size;
1136
1137 size = buf->sg.length - buf->sent;
1138 BUG_ON(buf->sent + size > buf->sg.length);
1139 if (buf->sent + size != buf->sg.length || datalen)
1140 flags |= MSG_MORE;
1141
FUJITA Tomonori56851692006-01-13 18:05:44 -06001142 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001143 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size, buf->sent, res);
1144 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001145 if (size != res)
1146 return -EAGAIN;
1147 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001148 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001149
1150 return res;
1151}
1152
1153/**
1154 * iscsi_sendpage - send one page of iSCSI Data-Out.
1155 * @conn: iscsi connection
1156 * @buf: buffer to write from
1157 * @count: remaining data
1158 * @sent: number of bytes sent
1159 *
1160 * Notes:
1161 * (Tx, Fast Path)
1162 **/
1163static inline int
1164iscsi_sendpage(struct iscsi_conn *conn, struct iscsi_buf *buf,
1165 int *count, int *sent)
1166{
Alex Aizman7ba24712005-08-04 19:30:08 -07001167 int flags = 0; /* MSG_DONTWAIT; */
1168 int res, size;
1169
1170 size = buf->sg.length - buf->sent;
1171 BUG_ON(buf->sent + size > buf->sg.length);
1172 if (size > *count)
1173 size = *count;
Mike Christieb13941f2005-09-12 21:01:28 -05001174 if (buf->sent + size != buf->sg.length || *count != size)
Alex Aizman7ba24712005-08-04 19:30:08 -07001175 flags |= MSG_MORE;
1176
FUJITA Tomonori56851692006-01-13 18:05:44 -06001177 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001178 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1179 size, buf->sent, *count, *sent, res);
1180 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001181 *count -= res;
1182 *sent += res;
1183 if (size != res)
1184 return -EAGAIN;
1185 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001186 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001187
1188 return res;
1189}
1190
1191static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -05001192iscsi_data_digest_init(struct iscsi_tcp_conn *tcp_conn,
Mike Christie62f38302006-08-31 18:09:27 -04001193 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001194{
James Bottomleyc9802cd2006-09-23 15:33:43 -05001195 crypto_hash_init(&tcp_conn->tx_hash);
Mike Christie5bb0b552006-04-06 21:26:46 -05001196 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001197}
1198
Alex Aizman7ba24712005-08-04 19:30:08 -07001199/**
1200 * iscsi_solicit_data_cont - initialize next Data-Out
1201 * @conn: iscsi connection
1202 * @ctask: scsi command task
1203 * @r2t: R2T info
1204 * @left: bytes left to transfer
1205 *
1206 * Notes:
1207 * Initialize next Data-Out within this R2T sequence and continue
1208 * to process next Scatter-Gather element(if any) of this SCSI command.
1209 *
1210 * Called under connection lock.
1211 **/
1212static void
1213iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1214 struct iscsi_r2t_info *r2t, int left)
1215{
1216 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001217 int new_offset;
1218
Mike Christieffbfe922006-05-18 20:31:36 -05001219 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001220 memset(hdr, 0, sizeof(struct iscsi_data));
1221 hdr->ttt = r2t->ttt;
1222 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1223 r2t->solicit_datasn++;
1224 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001225 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1226 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001227 hdr->exp_statsn = r2t->exp_statsn;
1228 new_offset = r2t->data_offset + r2t->sent;
1229 hdr->offset = cpu_to_be32(new_offset);
1230 if (left > conn->max_xmit_dlength) {
1231 hton24(hdr->dlength, conn->max_xmit_dlength);
1232 r2t->data_count = conn->max_xmit_dlength;
1233 } else {
1234 hton24(hdr->dlength, left);
1235 r2t->data_count = left;
1236 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1237 }
1238 conn->dataout_pdus_cnt++;
1239
Mike Christie6e458cc2006-05-18 20:31:31 -05001240 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001241 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001242
Mike Christie62f38302006-08-31 18:09:27 -04001243 if (iscsi_buf_left(&r2t->sendbuf))
1244 return;
1245
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001246 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1247 r2t->sg += 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001248}
1249
Mike Christie62f38302006-08-31 18:09:27 -04001250static void iscsi_set_padding(struct iscsi_tcp_cmd_task *tcp_ctask,
1251 unsigned long len)
Alex Aizman7ba24712005-08-04 19:30:08 -07001252{
Mike Christie62f38302006-08-31 18:09:27 -04001253 tcp_ctask->pad_count = len & (ISCSI_PAD_LEN - 1);
1254 if (!tcp_ctask->pad_count)
1255 return;
Alex Aizman7ba24712005-08-04 19:30:08 -07001256
Mike Christie62f38302006-08-31 18:09:27 -04001257 tcp_ctask->pad_count = ISCSI_PAD_LEN - tcp_ctask->pad_count;
1258 debug_scsi("write padding %d bytes\n", tcp_ctask->pad_count);
Mike Christie843c0a82007-12-13 12:43:20 -06001259 tcp_ctask->xmstate |= XMSTATE_W_PAD;
Alex Aizman7ba24712005-08-04 19:30:08 -07001260}
1261
1262/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001263 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001264 * @conn: iscsi connection
1265 * @ctask: scsi command task
1266 * @sc: scsi command
1267 **/
1268static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001269iscsi_tcp_cmd_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001270{
Mike Christie5bb0b552006-04-06 21:26:46 -05001271 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001272
Mike Christie5bb0b552006-04-06 21:26:46 -05001273 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Mike Christie843c0a82007-12-13 12:43:20 -06001274 tcp_ctask->xmstate = XMSTATE_CMD_HDR_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001275}
1276
1277/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001278 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001279 * @conn: iscsi connection
1280 * @mtask: task management task
1281 *
1282 * Notes:
1283 * The function can return -EAGAIN in which case caller must
1284 * call it again later, or recover. '0' return code means successful
1285 * xmit.
1286 *
Mike Christie218432c2007-05-30 12:57:17 -05001287 * Management xmit state machine consists of these states:
Mike Christie843c0a82007-12-13 12:43:20 -06001288 * XMSTATE_IMM_HDR_INIT - calculate digest of PDU Header
1289 * XMSTATE_IMM_HDR - PDU Header xmit in progress
1290 * XMSTATE_IMM_DATA - PDU Data xmit in progress
1291 * XMSTATE_IDLE - management PDU is done
Alex Aizman7ba24712005-08-04 19:30:08 -07001292 **/
1293static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001294iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001295{
Mike Christie5bb0b552006-04-06 21:26:46 -05001296 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001297 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001298
1299 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001300 conn->id, tcp_mtask->xmstate, mtask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001301
Mike Christie843c0a82007-12-13 12:43:20 -06001302 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR_INIT) {
Mike Christie218432c2007-05-30 12:57:17 -05001303 iscsi_buf_init_iov(&tcp_mtask->headbuf, (char*)mtask->hdr,
1304 sizeof(struct iscsi_hdr));
1305
1306 if (mtask->data_count) {
Mike Christie843c0a82007-12-13 12:43:20 -06001307 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie218432c2007-05-30 12:57:17 -05001308 iscsi_buf_init_iov(&tcp_mtask->sendbuf,
1309 (char*)mtask->data,
1310 mtask->data_count);
1311 }
1312
Mike Christieaf973482005-09-12 21:01:32 -05001313 if (conn->c_stage != ISCSI_CONN_INITIAL_STAGE &&
Mike Christie30a6c652006-04-06 21:13:39 -05001314 conn->stop_stage != STOP_CONN_RECOVER &&
Mike Christieaf973482005-09-12 21:01:32 -05001315 conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001316 iscsi_hdr_digest(conn, &tcp_mtask->headbuf,
1317 (u8*)tcp_mtask->hdrext);
Mike Christie218432c2007-05-30 12:57:17 -05001318
1319 tcp_mtask->sent = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06001320 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR_INIT;
1321 tcp_mtask->xmstate |= XMSTATE_IMM_HDR;
Mike Christie218432c2007-05-30 12:57:17 -05001322 }
1323
Mike Christie843c0a82007-12-13 12:43:20 -06001324 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR) {
Mike Christie3219e522006-05-30 00:37:28 -05001325 rc = iscsi_sendhdr(conn, &tcp_mtask->headbuf,
1326 mtask->data_count);
Mike Christie218432c2007-05-30 12:57:17 -05001327 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001328 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001329 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001330 }
1331
Mike Christie843c0a82007-12-13 12:43:20 -06001332 if (tcp_mtask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001333 BUG_ON(!mtask->data_count);
Mike Christie843c0a82007-12-13 12:43:20 -06001334 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001335 /* FIXME: implement.
1336 * Virtual buffer could be spreaded across multiple pages...
1337 */
1338 do {
Mike Christie3219e522006-05-30 00:37:28 -05001339 int rc;
1340
1341 rc = iscsi_sendpage(conn, &tcp_mtask->sendbuf,
1342 &mtask->data_count, &tcp_mtask->sent);
1343 if (rc) {
Mike Christie843c0a82007-12-13 12:43:20 -06001344 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001345 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001346 }
1347 } while (mtask->data_count);
1348 }
1349
Mike Christie843c0a82007-12-13 12:43:20 -06001350 BUG_ON(tcp_mtask->xmstate != XMSTATE_IDLE);
Al Virob4377352007-02-09 16:39:40 +00001351 if (mtask->hdr->itt == RESERVED_ITT) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001352 struct iscsi_session *session = conn->session;
1353
1354 spin_lock_bh(&session->lock);
1355 list_del(&conn->mtask->running);
1356 __kfifo_put(session->mgmtpool.queue, (void*)&conn->mtask,
1357 sizeof(void*));
1358 spin_unlock_bh(&session->lock);
1359 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001360 return 0;
1361}
1362
Mike Christie218432c2007-05-30 12:57:17 -05001363static int
1364iscsi_send_cmd_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001365{
Mike Christie218432c2007-05-30 12:57:17 -05001366 struct scsi_cmnd *sc = ctask->sc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001367 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie218432c2007-05-30 12:57:17 -05001368 int rc = 0;
Mike Christie5bb0b552006-04-06 21:26:46 -05001369
Mike Christie843c0a82007-12-13 12:43:20 -06001370 if (tcp_ctask->xmstate & XMSTATE_CMD_HDR_INIT) {
Mike Christie218432c2007-05-30 12:57:17 -05001371 tcp_ctask->sent = 0;
1372 tcp_ctask->sg_count = 0;
1373 tcp_ctask->exp_datasn = 0;
Mike Christie3219e522006-05-30 00:37:28 -05001374
Mike Christie218432c2007-05-30 12:57:17 -05001375 if (sc->sc_data_direction == DMA_TO_DEVICE) {
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001376 struct scatterlist *sg = scsi_sglist(sc);
Alex Aizman7ba24712005-08-04 19:30:08 -07001377
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001378 iscsi_buf_init_sg(&tcp_ctask->sendbuf, sg);
1379 tcp_ctask->sg = sg + 1;
1380 tcp_ctask->bad_sg = sg + scsi_sg_count(sc);
Mike Christie218432c2007-05-30 12:57:17 -05001381
1382 debug_scsi("cmd [itt 0x%x total %d imm_data %d "
1383 "unsol count %d, unsol offset %d]\n",
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001384 ctask->itt, scsi_bufflen(sc),
Mike Christie218432c2007-05-30 12:57:17 -05001385 ctask->imm_count, ctask->unsol_count,
1386 ctask->unsol_offset);
Alex Aizman7ba24712005-08-04 19:30:08 -07001387 }
Mike Christie218432c2007-05-30 12:57:17 -05001388
1389 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)ctask->hdr,
1390 sizeof(struct iscsi_hdr));
1391
1392 if (conn->hdrdgst_en)
1393 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1394 (u8*)tcp_ctask->hdrext);
Mike Christie843c0a82007-12-13 12:43:20 -06001395 tcp_ctask->xmstate &= ~XMSTATE_CMD_HDR_INIT;
1396 tcp_ctask->xmstate |= XMSTATE_CMD_HDR_XMIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001397 }
1398
Mike Christie843c0a82007-12-13 12:43:20 -06001399 if (tcp_ctask->xmstate & XMSTATE_CMD_HDR_XMIT) {
Mike Christie218432c2007-05-30 12:57:17 -05001400 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->imm_count);
1401 if (rc)
1402 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001403 tcp_ctask->xmstate &= ~XMSTATE_CMD_HDR_XMIT;
Mike Christie218432c2007-05-30 12:57:17 -05001404
1405 if (sc->sc_data_direction != DMA_TO_DEVICE)
1406 return 0;
1407
1408 if (ctask->imm_count) {
Mike Christie843c0a82007-12-13 12:43:20 -06001409 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie218432c2007-05-30 12:57:17 -05001410 iscsi_set_padding(tcp_ctask, ctask->imm_count);
1411
1412 if (ctask->conn->datadgst_en) {
1413 iscsi_data_digest_init(ctask->conn->dd_data,
1414 tcp_ctask);
1415 tcp_ctask->immdigest = 0;
1416 }
1417 }
1418
Mike Christie843c0a82007-12-13 12:43:20 -06001419 if (ctask->unsol_count)
1420 tcp_ctask->xmstate |=
1421 XMSTATE_UNS_HDR | XMSTATE_UNS_INIT;
Mike Christie218432c2007-05-30 12:57:17 -05001422 }
1423 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001424}
1425
Mike Christie62f38302006-08-31 18:09:27 -04001426static int
1427iscsi_send_padding(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1428{
1429 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1430 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1431 int sent = 0, rc;
1432
Mike Christie843c0a82007-12-13 12:43:20 -06001433 if (tcp_ctask->xmstate & XMSTATE_W_PAD) {
Mike Christie62f38302006-08-31 18:09:27 -04001434 iscsi_buf_init_iov(&tcp_ctask->sendbuf, (char*)&tcp_ctask->pad,
1435 tcp_ctask->pad_count);
1436 if (conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -05001437 crypto_hash_update(&tcp_conn->tx_hash,
1438 &tcp_ctask->sendbuf.sg,
1439 tcp_ctask->sendbuf.sg.length);
Mike Christie843c0a82007-12-13 12:43:20 -06001440 } else if (!(tcp_ctask->xmstate & XMSTATE_W_RESEND_PAD))
Mike Christie62f38302006-08-31 18:09:27 -04001441 return 0;
1442
Mike Christie843c0a82007-12-13 12:43:20 -06001443 tcp_ctask->xmstate &= ~XMSTATE_W_PAD;
1444 tcp_ctask->xmstate &= ~XMSTATE_W_RESEND_PAD;
Mike Christie62f38302006-08-31 18:09:27 -04001445 debug_scsi("sending %d pad bytes for itt 0x%x\n",
1446 tcp_ctask->pad_count, ctask->itt);
1447 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf, &tcp_ctask->pad_count,
1448 &sent);
1449 if (rc) {
1450 debug_scsi("padding send failed %d\n", rc);
Mike Christie843c0a82007-12-13 12:43:20 -06001451 tcp_ctask->xmstate |= XMSTATE_W_RESEND_PAD;
Mike Christie62f38302006-08-31 18:09:27 -04001452 }
1453 return rc;
1454}
1455
1456static int
1457iscsi_send_digest(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1458 struct iscsi_buf *buf, uint32_t *digest)
1459{
1460 struct iscsi_tcp_cmd_task *tcp_ctask;
1461 struct iscsi_tcp_conn *tcp_conn;
1462 int rc, sent = 0;
1463
1464 if (!conn->datadgst_en)
1465 return 0;
1466
1467 tcp_ctask = ctask->dd_data;
1468 tcp_conn = conn->dd_data;
1469
Mike Christie843c0a82007-12-13 12:43:20 -06001470 if (!(tcp_ctask->xmstate & XMSTATE_W_RESEND_DATA_DIGEST)) {
James Bottomleyc9802cd2006-09-23 15:33:43 -05001471 crypto_hash_final(&tcp_conn->tx_hash, (u8*)digest);
Mike Christie62f38302006-08-31 18:09:27 -04001472 iscsi_buf_init_iov(buf, (char*)digest, 4);
1473 }
Mike Christie843c0a82007-12-13 12:43:20 -06001474 tcp_ctask->xmstate &= ~XMSTATE_W_RESEND_DATA_DIGEST;
Mike Christie62f38302006-08-31 18:09:27 -04001475
1476 rc = iscsi_sendpage(conn, buf, &tcp_ctask->digest_count, &sent);
1477 if (!rc)
1478 debug_scsi("sent digest 0x%x for itt 0x%x\n", *digest,
1479 ctask->itt);
1480 else {
1481 debug_scsi("sending digest 0x%x failed for itt 0x%x!\n",
1482 *digest, ctask->itt);
Mike Christie843c0a82007-12-13 12:43:20 -06001483 tcp_ctask->xmstate |= XMSTATE_W_RESEND_DATA_DIGEST;
Mike Christie62f38302006-08-31 18:09:27 -04001484 }
1485 return rc;
1486}
1487
1488static int
1489iscsi_send_data(struct iscsi_cmd_task *ctask, struct iscsi_buf *sendbuf,
1490 struct scatterlist **sg, int *sent, int *count,
1491 struct iscsi_buf *digestbuf, uint32_t *digest)
1492{
1493 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1494 struct iscsi_conn *conn = ctask->conn;
1495 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1496 int rc, buf_sent, offset;
1497
1498 while (*count) {
1499 buf_sent = 0;
1500 offset = sendbuf->sent;
1501
1502 rc = iscsi_sendpage(conn, sendbuf, count, &buf_sent);
1503 *sent = *sent + buf_sent;
1504 if (buf_sent && conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -05001505 partial_sg_digest_update(&tcp_conn->tx_hash,
Mike Christie62f38302006-08-31 18:09:27 -04001506 &sendbuf->sg, sendbuf->sg.offset + offset,
1507 buf_sent);
1508 if (!iscsi_buf_left(sendbuf) && *sg != tcp_ctask->bad_sg) {
1509 iscsi_buf_init_sg(sendbuf, *sg);
1510 *sg = *sg + 1;
1511 }
1512
1513 if (rc)
1514 return rc;
1515 }
1516
1517 rc = iscsi_send_padding(conn, ctask);
1518 if (rc)
1519 return rc;
1520
1521 return iscsi_send_digest(conn, ctask, digestbuf, digest);
1522}
1523
1524static int
1525iscsi_send_unsol_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001526{
Mike Christie5bb0b552006-04-06 21:26:46 -05001527 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001528 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001529 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001530
Mike Christie843c0a82007-12-13 12:43:20 -06001531 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
1532 if (tcp_ctask->xmstate & XMSTATE_UNS_INIT) {
Mike Christie62f38302006-08-31 18:09:27 -04001533 dtask = &tcp_ctask->unsol_dtask;
1534
Mike Christieffd04362006-08-31 18:09:24 -04001535 iscsi_prep_unsolicit_data_pdu(ctask, &dtask->hdr);
1536 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)&dtask->hdr,
1537 sizeof(struct iscsi_hdr));
Mike Christieaf973482005-09-12 21:01:32 -05001538 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001539 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001540 (u8*)dtask->hdrext);
Mike Christie62f38302006-08-31 18:09:27 -04001541
Mike Christie843c0a82007-12-13 12:43:20 -06001542 tcp_ctask->xmstate &= ~XMSTATE_UNS_INIT;
Mike Christie62f38302006-08-31 18:09:27 -04001543 iscsi_set_padding(tcp_ctask, ctask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001544 }
Mike Christie3219e522006-05-30 00:37:28 -05001545
1546 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->data_count);
1547 if (rc) {
Mike Christie843c0a82007-12-13 12:43:20 -06001548 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1549 tcp_ctask->xmstate |= XMSTATE_UNS_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001550 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001551 }
1552
Mike Christiedd8c0d92006-08-31 18:09:28 -04001553 if (conn->datadgst_en) {
1554 dtask = &tcp_ctask->unsol_dtask;
1555 iscsi_data_digest_init(ctask->conn->dd_data, tcp_ctask);
1556 dtask->digest = 0;
1557 }
1558
Alex Aizman7ba24712005-08-04 19:30:08 -07001559 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001560 ctask->itt, ctask->unsol_count, tcp_ctask->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001561 return 0;
1562}
1563
Mike Christie62f38302006-08-31 18:09:27 -04001564static int
1565iscsi_send_unsol_pdu(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001566{
Mike Christie5bb0b552006-04-06 21:26:46 -05001567 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001568 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001569
Mike Christie843c0a82007-12-13 12:43:20 -06001570 if (tcp_ctask->xmstate & XMSTATE_UNS_HDR) {
Mike Christie62f38302006-08-31 18:09:27 -04001571 BUG_ON(!ctask->unsol_count);
Mike Christie843c0a82007-12-13 12:43:20 -06001572 tcp_ctask->xmstate &= ~XMSTATE_UNS_HDR;
Mike Christie62f38302006-08-31 18:09:27 -04001573send_hdr:
1574 rc = iscsi_send_unsol_hdr(conn, ctask);
1575 if (rc)
1576 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001577 }
1578
Mike Christie843c0a82007-12-13 12:43:20 -06001579 if (tcp_ctask->xmstate & XMSTATE_UNS_DATA) {
Mike Christie62f38302006-08-31 18:09:27 -04001580 struct iscsi_data_task *dtask = &tcp_ctask->unsol_dtask;
Mike Christie5bb0b552006-04-06 21:26:46 -05001581 int start = tcp_ctask->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001582
Mike Christie62f38302006-08-31 18:09:27 -04001583 rc = iscsi_send_data(ctask, &tcp_ctask->sendbuf, &tcp_ctask->sg,
1584 &tcp_ctask->sent, &ctask->data_count,
1585 &dtask->digestbuf, &dtask->digest);
Mike Christie5bb0b552006-04-06 21:26:46 -05001586 ctask->unsol_count -= tcp_ctask->sent - start;
Mike Christie62f38302006-08-31 18:09:27 -04001587 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001588 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001589 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
Mike Christie62f38302006-08-31 18:09:27 -04001590 /*
1591 * Done with the Data-Out. Next, check if we need
1592 * to send another unsolicited Data-Out.
1593 */
1594 if (ctask->unsol_count) {
1595 debug_scsi("sending more uns\n");
Mike Christie843c0a82007-12-13 12:43:20 -06001596 tcp_ctask->xmstate |= XMSTATE_UNS_INIT;
Mike Christie62f38302006-08-31 18:09:27 -04001597 goto send_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001598 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001599 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001600 return 0;
1601}
1602
Mike Christie62f38302006-08-31 18:09:27 -04001603static int iscsi_send_sol_pdu(struct iscsi_conn *conn,
1604 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001605{
Mike Christie5bb0b552006-04-06 21:26:46 -05001606 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie62f38302006-08-31 18:09:27 -04001607 struct iscsi_session *session = conn->session;
1608 struct iscsi_r2t_info *r2t;
1609 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001610 int left, rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001611
Mike Christie843c0a82007-12-13 12:43:20 -06001612 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR_INIT) {
Mike Christiedb37c502006-11-08 15:58:33 -06001613 if (!tcp_ctask->r2t) {
1614 spin_lock_bh(&session->lock);
Mike Christie62f38302006-08-31 18:09:27 -04001615 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
1616 sizeof(void*));
Mike Christiedb37c502006-11-08 15:58:33 -06001617 spin_unlock_bh(&session->lock);
1618 }
Mike Christie62f38302006-08-31 18:09:27 -04001619send_hdr:
1620 r2t = tcp_ctask->r2t;
1621 dtask = &r2t->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001622
Mike Christie62f38302006-08-31 18:09:27 -04001623 if (conn->hdrdgst_en)
1624 iscsi_hdr_digest(conn, &r2t->headbuf,
1625 (u8*)dtask->hdrext);
Mike Christie843c0a82007-12-13 12:43:20 -06001626 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR_INIT;
1627 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
Mike Christie218432c2007-05-30 12:57:17 -05001628 }
1629
Mike Christie843c0a82007-12-13 12:43:20 -06001630 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR) {
Mike Christie218432c2007-05-30 12:57:17 -05001631 r2t = tcp_ctask->r2t;
1632 dtask = &r2t->dtask;
1633
Mike Christie62f38302006-08-31 18:09:27 -04001634 rc = iscsi_sendhdr(conn, &r2t->headbuf, r2t->data_count);
Mike Christie218432c2007-05-30 12:57:17 -05001635 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001636 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001637 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1638 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001639
Mike Christiedd8c0d92006-08-31 18:09:28 -04001640 if (conn->datadgst_en) {
1641 iscsi_data_digest_init(conn->dd_data, tcp_ctask);
1642 dtask->digest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001643 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001644
Mike Christie62f38302006-08-31 18:09:27 -04001645 iscsi_set_padding(tcp_ctask, r2t->data_count);
1646 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1647 r2t->solicit_datasn - 1, ctask->itt, r2t->data_count,
1648 r2t->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001649 }
1650
Mike Christie843c0a82007-12-13 12:43:20 -06001651 if (tcp_ctask->xmstate & XMSTATE_SOL_DATA) {
Mike Christie62f38302006-08-31 18:09:27 -04001652 r2t = tcp_ctask->r2t;
1653 dtask = &r2t->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001654
Mike Christie62f38302006-08-31 18:09:27 -04001655 rc = iscsi_send_data(ctask, &r2t->sendbuf, &r2t->sg,
1656 &r2t->sent, &r2t->data_count,
1657 &dtask->digestbuf, &dtask->digest);
1658 if (rc)
1659 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001660 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001661
Mike Christie62f38302006-08-31 18:09:27 -04001662 /*
1663 * Done with this Data-Out. Next, check if we have
1664 * to send another Data-Out for this R2T.
1665 */
1666 BUG_ON(r2t->data_length - r2t->sent < 0);
1667 left = r2t->data_length - r2t->sent;
1668 if (left) {
1669 iscsi_solicit_data_cont(conn, ctask, r2t, left);
Mike Christie62f38302006-08-31 18:09:27 -04001670 goto send_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001671 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001672
Mike Christie62f38302006-08-31 18:09:27 -04001673 /*
1674 * Done with this R2T. Check if there are more
1675 * outstanding R2Ts ready to be processed.
1676 */
1677 spin_lock_bh(&session->lock);
1678 tcp_ctask->r2t = NULL;
1679 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
1680 sizeof(void*));
1681 if (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t,
1682 sizeof(void*))) {
1683 tcp_ctask->r2t = r2t;
Mike Christie62f38302006-08-31 18:09:27 -04001684 spin_unlock_bh(&session->lock);
1685 goto send_hdr;
1686 }
1687 spin_unlock_bh(&session->lock);
1688 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001689 return 0;
1690}
1691
Mike Christie218432c2007-05-30 12:57:17 -05001692/**
1693 * iscsi_tcp_ctask_xmit - xmit normal PDU task
1694 * @conn: iscsi connection
1695 * @ctask: iscsi command task
1696 *
1697 * Notes:
1698 * The function can return -EAGAIN in which case caller must
1699 * call it again later, or recover. '0' return code means successful
1700 * xmit.
1701 * The function is devided to logical helpers (above) for the different
1702 * xmit stages.
1703 *
1704 *iscsi_send_cmd_hdr()
Mike Christie843c0a82007-12-13 12:43:20 -06001705 * XMSTATE_CMD_HDR_INIT - prepare Header and Data buffers Calculate
1706 * Header Digest
1707 * XMSTATE_CMD_HDR_XMIT - Transmit header in progress
Mike Christie218432c2007-05-30 12:57:17 -05001708 *
1709 *iscsi_send_padding
Mike Christie843c0a82007-12-13 12:43:20 -06001710 * XMSTATE_W_PAD - Prepare and send pading
1711 * XMSTATE_W_RESEND_PAD - retry send pading
Mike Christie218432c2007-05-30 12:57:17 -05001712 *
1713 *iscsi_send_digest
Mike Christie843c0a82007-12-13 12:43:20 -06001714 * XMSTATE_W_RESEND_DATA_DIGEST - Finalize and send Data Digest
1715 * XMSTATE_W_RESEND_DATA_DIGEST - retry sending digest
Mike Christie218432c2007-05-30 12:57:17 -05001716 *
1717 *iscsi_send_unsol_hdr
Mike Christie843c0a82007-12-13 12:43:20 -06001718 * XMSTATE_UNS_INIT - prepare un-solicit data header and digest
1719 * XMSTATE_UNS_HDR - send un-solicit header
Mike Christie218432c2007-05-30 12:57:17 -05001720 *
1721 *iscsi_send_unsol_pdu
Mike Christie843c0a82007-12-13 12:43:20 -06001722 * XMSTATE_UNS_DATA - send un-solicit data in progress
Mike Christie218432c2007-05-30 12:57:17 -05001723 *
1724 *iscsi_send_sol_pdu
Mike Christie843c0a82007-12-13 12:43:20 -06001725 * XMSTATE_SOL_HDR_INIT - solicit data header and digest initialize
1726 * XMSTATE_SOL_HDR - send solicit header
1727 * XMSTATE_SOL_DATA - send solicit data
Mike Christie218432c2007-05-30 12:57:17 -05001728 *
1729 *iscsi_tcp_ctask_xmit
Mike Christie843c0a82007-12-13 12:43:20 -06001730 * XMSTATE_IMM_DATA - xmit managment data (??)
Mike Christie218432c2007-05-30 12:57:17 -05001731 **/
Alex Aizman7ba24712005-08-04 19:30:08 -07001732static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001733iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001734{
Mike Christie5bb0b552006-04-06 21:26:46 -05001735 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001736 int rc = 0;
1737
1738 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001739 conn->id, tcp_ctask->xmstate, ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001740
Mike Christie218432c2007-05-30 12:57:17 -05001741 rc = iscsi_send_cmd_hdr(conn, ctask);
1742 if (rc)
1743 return rc;
1744 if (ctask->sc->sc_data_direction != DMA_TO_DEVICE)
1745 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001746
Mike Christie843c0a82007-12-13 12:43:20 -06001747 if (tcp_ctask->xmstate & XMSTATE_IMM_DATA) {
Mike Christie62f38302006-08-31 18:09:27 -04001748 rc = iscsi_send_data(ctask, &tcp_ctask->sendbuf, &tcp_ctask->sg,
1749 &tcp_ctask->sent, &ctask->imm_count,
1750 &tcp_ctask->immbuf, &tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001751 if (rc)
1752 return rc;
Mike Christie843c0a82007-12-13 12:43:20 -06001753 tcp_ctask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001754 }
1755
Mike Christie62f38302006-08-31 18:09:27 -04001756 rc = iscsi_send_unsol_pdu(conn, ctask);
1757 if (rc)
1758 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001759
Mike Christie62f38302006-08-31 18:09:27 -04001760 rc = iscsi_send_sol_pdu(conn, ctask);
1761 if (rc)
1762 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001763
1764 return rc;
1765}
1766
Mike Christie7b8631b2006-01-13 18:05:50 -06001767static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001768iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001769{
Mike Christie7b8631b2006-01-13 18:05:50 -06001770 struct iscsi_conn *conn;
1771 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001772 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001773
Mike Christie5bb0b552006-04-06 21:26:46 -05001774 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001775 if (!cls_conn)
1776 return NULL;
1777 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001778 /*
1779 * due to strange issues with iser these are not set
1780 * in iscsi_conn_setup
1781 */
Mike Christiebf32ed32007-02-28 17:32:17 -06001782 conn->max_recv_dlength = ISCSI_DEF_MAX_RECV_SEG_LEN;
Alex Aizman7ba24712005-08-04 19:30:08 -07001783
Mike Christie5bb0b552006-04-06 21:26:46 -05001784 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1785 if (!tcp_conn)
1786 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001787
Mike Christie5bb0b552006-04-06 21:26:46 -05001788 conn->dd_data = tcp_conn;
1789 tcp_conn->iscsi_conn = conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001790
James Bottomleyc9802cd2006-09-23 15:33:43 -05001791 tcp_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1792 CRYPTO_ALG_ASYNC);
1793 tcp_conn->tx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001794 if (IS_ERR(tcp_conn->tx_hash.tfm)) {
1795 printk(KERN_ERR "Could not create connection due to crc32c "
1796 "loading error %ld. Make sure the crc32c module is "
1797 "built as a module or into the kernel\n",
1798 PTR_ERR(tcp_conn->tx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001799 goto free_tcp_conn;
Mike Christie0f238412007-02-28 17:32:21 -06001800 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001801
James Bottomleyc9802cd2006-09-23 15:33:43 -05001802 tcp_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1803 CRYPTO_ALG_ASYNC);
1804 tcp_conn->rx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001805 if (IS_ERR(tcp_conn->rx_hash.tfm)) {
1806 printk(KERN_ERR "Could not create connection due to crc32c "
1807 "loading error %ld. Make sure the crc32c module is "
1808 "built as a module or into the kernel\n",
1809 PTR_ERR(tcp_conn->rx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001810 goto free_tx_tfm;
Mike Christie0f238412007-02-28 17:32:21 -06001811 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001812
Mike Christie7b8631b2006-01-13 18:05:50 -06001813 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001814
Mike Christiedd8c0d92006-08-31 18:09:28 -04001815free_tx_tfm:
James Bottomleyc9802cd2006-09-23 15:33:43 -05001816 crypto_free_hash(tcp_conn->tx_hash.tfm);
Mike Christiedd8c0d92006-08-31 18:09:28 -04001817free_tcp_conn:
1818 kfree(tcp_conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001819tcp_conn_alloc_fail:
1820 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001821 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001822}
1823
1824static void
Mike Christie1c834692006-07-24 15:47:26 -05001825iscsi_tcp_release_conn(struct iscsi_conn *conn)
1826{
Mike Christie22236962007-05-30 12:57:24 -05001827 struct iscsi_session *session = conn->session;
Mike Christie1c834692006-07-24 15:47:26 -05001828 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie22236962007-05-30 12:57:24 -05001829 struct socket *sock = tcp_conn->sock;
Mike Christie1c834692006-07-24 15:47:26 -05001830
Mike Christie22236962007-05-30 12:57:24 -05001831 if (!sock)
Mike Christie1c834692006-07-24 15:47:26 -05001832 return;
1833
Mike Christie22236962007-05-30 12:57:24 -05001834 sock_hold(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001835 iscsi_conn_restore_callbacks(tcp_conn);
Mike Christie22236962007-05-30 12:57:24 -05001836 sock_put(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001837
Mike Christie22236962007-05-30 12:57:24 -05001838 spin_lock_bh(&session->lock);
Mike Christie1c834692006-07-24 15:47:26 -05001839 tcp_conn->sock = NULL;
1840 conn->recv_lock = NULL;
Mike Christie22236962007-05-30 12:57:24 -05001841 spin_unlock_bh(&session->lock);
1842 sockfd_put(sock);
Mike Christie1c834692006-07-24 15:47:26 -05001843}
1844
1845static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001846iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001847{
Mike Christie7b8631b2006-01-13 18:05:50 -06001848 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001849 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001850
Mike Christie1c834692006-07-24 15:47:26 -05001851 iscsi_tcp_release_conn(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001852 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001853
Pete Wyckoff534284a2006-11-08 15:58:31 -06001854 if (tcp_conn->tx_hash.tfm)
1855 crypto_free_hash(tcp_conn->tx_hash.tfm);
1856 if (tcp_conn->rx_hash.tfm)
1857 crypto_free_hash(tcp_conn->rx_hash.tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001858
Mike Christie5bb0b552006-04-06 21:26:46 -05001859 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001860}
1861
Mike Christie1c834692006-07-24 15:47:26 -05001862static void
1863iscsi_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
1864{
1865 struct iscsi_conn *conn = cls_conn->dd_data;
1866
1867 iscsi_conn_stop(cls_conn, flag);
1868 iscsi_tcp_release_conn(conn);
1869}
1870
Mike Christie22236962007-05-30 12:57:24 -05001871static int iscsi_tcp_get_addr(struct iscsi_conn *conn, struct socket *sock,
1872 char *buf, int *port,
1873 int (*getname)(struct socket *, struct sockaddr *,
1874 int *addrlen))
1875{
1876 struct sockaddr_storage *addr;
1877 struct sockaddr_in6 *sin6;
1878 struct sockaddr_in *sin;
1879 int rc = 0, len;
1880
Al Viroa9204872007-07-20 16:03:40 +01001881 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
Mike Christie22236962007-05-30 12:57:24 -05001882 if (!addr)
1883 return -ENOMEM;
1884
1885 if (getname(sock, (struct sockaddr *) addr, &len)) {
1886 rc = -ENODEV;
1887 goto free_addr;
1888 }
1889
1890 switch (addr->ss_family) {
1891 case AF_INET:
1892 sin = (struct sockaddr_in *)addr;
1893 spin_lock_bh(&conn->session->lock);
1894 sprintf(buf, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
1895 *port = be16_to_cpu(sin->sin_port);
1896 spin_unlock_bh(&conn->session->lock);
1897 break;
1898 case AF_INET6:
1899 sin6 = (struct sockaddr_in6 *)addr;
1900 spin_lock_bh(&conn->session->lock);
1901 sprintf(buf, NIP6_FMT, NIP6(sin6->sin6_addr));
1902 *port = be16_to_cpu(sin6->sin6_port);
1903 spin_unlock_bh(&conn->session->lock);
1904 break;
1905 }
1906free_addr:
1907 kfree(addr);
1908 return rc;
1909}
1910
Alex Aizman7ba24712005-08-04 19:30:08 -07001911static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001912iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001913 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001914 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001915{
Mike Christie5bb0b552006-04-06 21:26:46 -05001916 struct iscsi_conn *conn = cls_conn->dd_data;
1917 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001918 struct sock *sk;
1919 struct socket *sock;
1920 int err;
1921
1922 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001923 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001924 if (!sock) {
1925 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
1926 return -EEXIST;
1927 }
Mike Christie22236962007-05-30 12:57:24 -05001928 /*
1929 * copy these values now because if we drop the session
1930 * userspace may still want to query the values since we will
1931 * be using them for the reconnect
1932 */
1933 err = iscsi_tcp_get_addr(conn, sock, conn->portal_address,
1934 &conn->portal_port, kernel_getpeername);
1935 if (err)
1936 goto free_socket;
1937
1938 err = iscsi_tcp_get_addr(conn, sock, conn->local_address,
1939 &conn->local_port, kernel_getsockname);
1940 if (err)
1941 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001942
Mike Christie5bb0b552006-04-06 21:26:46 -05001943 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1944 if (err)
Mike Christie22236962007-05-30 12:57:24 -05001945 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001946
Mike Christie67a61112006-05-30 00:37:20 -05001947 /* bind iSCSI connection and socket */
1948 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07001949
Mike Christie67a61112006-05-30 00:37:20 -05001950 /* setup Socket parameters */
1951 sk = sock->sk;
1952 sk->sk_reuse = 1;
1953 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
1954 sk->sk_allocation = GFP_ATOMIC;
Alex Aizman7ba24712005-08-04 19:30:08 -07001955
Mike Christie67a61112006-05-30 00:37:20 -05001956 /* FIXME: disable Nagle's algorithm */
Alex Aizman7ba24712005-08-04 19:30:08 -07001957
Mike Christie67a61112006-05-30 00:37:20 -05001958 /*
1959 * Intercept TCP callbacks for sendfile like receive
1960 * processing.
1961 */
1962 conn->recv_lock = &sk->sk_callback_lock;
1963 iscsi_conn_set_callbacks(conn);
1964 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
1965 /*
1966 * set receive state machine into initial state
1967 */
Olaf Kirchda32dd62007-12-13 12:43:21 -06001968 iscsi_tcp_hdr_recv_prep(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001969 return 0;
Mike Christie22236962007-05-30 12:57:24 -05001970
1971free_socket:
1972 sockfd_put(sock);
1973 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001974}
1975
Mike Christie5bb0b552006-04-06 21:26:46 -05001976/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05001977static void
Mike Christie77a23c22007-05-30 12:57:18 -05001978iscsi_tcp_mgmt_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Mike Christie30a6c652006-04-06 21:13:39 -05001979{
Mike Christie5bb0b552006-04-06 21:26:46 -05001980 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie843c0a82007-12-13 12:43:20 -06001981 tcp_mtask->xmstate = XMSTATE_IMM_HDR_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001982}
1983
1984static int
1985iscsi_r2tpool_alloc(struct iscsi_session *session)
1986{
1987 int i;
1988 int cmd_i;
1989
1990 /*
1991 * initialize per-task: R2T pool and xmit queue
1992 */
1993 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1994 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05001995 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001996
1997 /*
1998 * pre-allocated x4 as much r2ts to handle race when
1999 * target acks DataOut faster than we data_xmit() queues
2000 * could replenish r2tqueue.
2001 */
2002
2003 /* R2T pool */
Mike Christie5bb0b552006-04-06 21:26:46 -05002004 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4,
2005 (void***)&tcp_ctask->r2ts,
2006 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002007 goto r2t_alloc_fail;
2008 }
2009
2010 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05002011 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07002012 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05002013 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
2014 iscsi_pool_free(&tcp_ctask->r2tpool,
2015 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002016 goto r2t_alloc_fail;
2017 }
Alex Aizman7ba24712005-08-04 19:30:08 -07002018 }
2019
2020 return 0;
2021
2022r2t_alloc_fail:
2023 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002024 struct iscsi_cmd_task *ctask = session->cmds[i];
2025 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2026
Mike Christie5bb0b552006-04-06 21:26:46 -05002027 kfifo_free(tcp_ctask->r2tqueue);
2028 iscsi_pool_free(&tcp_ctask->r2tpool,
2029 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002030 }
2031 return -ENOMEM;
2032}
2033
2034static void
2035iscsi_r2tpool_free(struct iscsi_session *session)
2036{
2037 int i;
2038
2039 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002040 struct iscsi_cmd_task *ctask = session->cmds[i];
2041 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2042
Mike Christie5bb0b552006-04-06 21:26:46 -05002043 kfifo_free(tcp_ctask->r2tqueue);
2044 iscsi_pool_free(&tcp_ctask->r2tpool,
2045 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002046 }
2047}
2048
Alex Aizman7ba24712005-08-04 19:30:08 -07002049static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002050iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002051 char *buf, int buflen)
Alex Aizman7ba24712005-08-04 19:30:08 -07002052{
Mike Christie7b7232f2006-02-01 21:06:49 -06002053 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002054 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05002055 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002056 int value;
Alex Aizman7ba24712005-08-04 19:30:08 -07002057
Alex Aizman7ba24712005-08-04 19:30:08 -07002058 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002059 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002060 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002061 break;
2062 case ISCSI_PARAM_DATADGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002063 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05002064 tcp_conn->sendpage = conn->datadgst_en ?
2065 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002066 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002067 case ISCSI_PARAM_MAX_R2T:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002068 sscanf(buf, "%d", &value);
Alex Aizman7ba24712005-08-04 19:30:08 -07002069 if (session->max_r2t == roundup_pow_of_two(value))
2070 break;
2071 iscsi_r2tpool_free(session);
Mike Christie5c75b7f2006-06-28 12:00:26 -05002072 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002073 if (session->max_r2t & (session->max_r2t - 1))
2074 session->max_r2t = roundup_pow_of_two(session->max_r2t);
2075 if (iscsi_r2tpool_alloc(session))
2076 return -ENOMEM;
2077 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002078 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002079 return iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002080 }
2081
2082 return 0;
2083}
2084
2085static int
Mike Christie5c75b7f2006-06-28 12:00:26 -05002086iscsi_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
2087 enum iscsi_param param, char *buf)
Mike Christie7b8631b2006-01-13 18:05:50 -06002088{
Mike Christie7b7232f2006-02-01 21:06:49 -06002089 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002090 int len;
Mike Christie7b8631b2006-01-13 18:05:50 -06002091
2092 switch(param) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002093 case ISCSI_PARAM_CONN_PORT:
Mike Christie22236962007-05-30 12:57:24 -05002094 spin_lock_bh(&conn->session->lock);
2095 len = sprintf(buf, "%hu\n", conn->portal_port);
2096 spin_unlock_bh(&conn->session->lock);
Mike Christie8d2860b2006-05-02 19:46:47 -05002097 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05002098 case ISCSI_PARAM_CONN_ADDRESS:
Mike Christie22236962007-05-30 12:57:24 -05002099 spin_lock_bh(&conn->session->lock);
2100 len = sprintf(buf, "%s\n", conn->portal_address);
2101 spin_unlock_bh(&conn->session->lock);
Mike Christiefd7255f2006-04-06 21:13:36 -05002102 break;
2103 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002104 return iscsi_conn_get_param(cls_conn, param, buf);
Mike Christiefd7255f2006-04-06 21:13:36 -05002105 }
2106
2107 return len;
2108}
2109
Mike Christie22236962007-05-30 12:57:24 -05002110static int
2111iscsi_tcp_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
2112 char *buf)
2113{
2114 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
2115 int len;
2116
2117 switch (param) {
2118 case ISCSI_HOST_PARAM_IPADDRESS:
2119 spin_lock_bh(&session->lock);
2120 if (!session->leadconn)
2121 len = -ENODEV;
2122 else
2123 len = sprintf(buf, "%s\n",
2124 session->leadconn->local_address);
2125 spin_unlock_bh(&session->lock);
2126 break;
2127 default:
2128 return iscsi_host_get_param(shost, param, buf);
2129 }
2130 return len;
2131}
2132
Alex Aizman7ba24712005-08-04 19:30:08 -07002133static void
Mike Christie7b7232f2006-02-01 21:06:49 -06002134iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07002135{
Mike Christie7b7232f2006-02-01 21:06:49 -06002136 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002137 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002138
2139 stats->txdata_octets = conn->txdata_octets;
2140 stats->rxdata_octets = conn->rxdata_octets;
2141 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
2142 stats->dataout_pdus = conn->dataout_pdus_cnt;
2143 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
2144 stats->datain_pdus = conn->datain_pdus_cnt;
2145 stats->r2t_pdus = conn->r2t_pdus_cnt;
2146 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
2147 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
2148 stats->custom_length = 3;
2149 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05002150 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002151 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05002152 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002153 strcpy(stats->custom[2].desc, "eh_abort_cnt");
2154 stats->custom[2].value = conn->eh_abort_cnt;
2155}
2156
Mike Christie5bb0b552006-04-06 21:26:46 -05002157static struct iscsi_cls_session *
2158iscsi_tcp_session_create(struct iscsi_transport *iscsit,
2159 struct scsi_transport_template *scsit,
Mike Christie15482712007-05-30 12:57:19 -05002160 uint16_t cmds_max, uint16_t qdepth,
Mike Christie5bb0b552006-04-06 21:26:46 -05002161 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07002162{
Mike Christie5bb0b552006-04-06 21:26:46 -05002163 struct iscsi_cls_session *cls_session;
2164 struct iscsi_session *session;
2165 uint32_t hn;
2166 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07002167
Mike Christie15482712007-05-30 12:57:19 -05002168 cls_session = iscsi_session_setup(iscsit, scsit, cmds_max, qdepth,
Mike Christie5bb0b552006-04-06 21:26:46 -05002169 sizeof(struct iscsi_tcp_cmd_task),
2170 sizeof(struct iscsi_tcp_mgmt_task),
2171 initial_cmdsn, &hn);
2172 if (!cls_session)
2173 return NULL;
2174 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07002175
Mike Christie5bb0b552006-04-06 21:26:46 -05002176 session = class_to_transport_session(cls_session);
2177 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2178 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2179 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2180
2181 ctask->hdr = &tcp_ctask->hdr;
2182 }
2183
2184 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
2185 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
2186 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
2187
2188 mtask->hdr = &tcp_mtask->hdr;
2189 }
2190
2191 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
2192 goto r2tpool_alloc_fail;
2193
2194 return cls_session;
2195
2196r2tpool_alloc_fail:
2197 iscsi_session_teardown(cls_session);
2198 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002199}
2200
Mike Christie5bb0b552006-04-06 21:26:46 -05002201static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2202{
Mike Christie5bb0b552006-04-06 21:26:46 -05002203 iscsi_r2tpool_free(class_to_transport_session(cls_session));
2204 iscsi_session_teardown(cls_session);
2205}
2206
Mike Christied1d81c02007-05-30 12:57:21 -05002207static int iscsi_tcp_slave_configure(struct scsi_device *sdev)
2208{
Mike Christieb6d44fe2007-07-26 12:46:47 -05002209 blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_ANY);
Mike Christied1d81c02007-05-30 12:57:21 -05002210 blk_queue_dma_alignment(sdev->request_queue, 0);
2211 return 0;
2212}
2213
Mike Christie5bb0b552006-04-06 21:26:46 -05002214static struct scsi_host_template iscsi_sht = {
Mike Christie79743922007-07-26 12:46:46 -05002215 .module = THIS_MODULE,
Mike Christief4246b32006-07-24 15:47:54 -05002216 .name = "iSCSI Initiator over TCP/IP",
Mike Christie5bb0b552006-04-06 21:26:46 -05002217 .queuecommand = iscsi_queuecommand,
2218 .change_queue_depth = iscsi_change_queue_depth,
Mike Christie15482712007-05-30 12:57:19 -05002219 .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1,
Mike Christie5bb0b552006-04-06 21:26:46 -05002220 .sg_tablesize = ISCSI_SG_TABLESIZE,
Mike Christie8231f0e2007-02-28 17:32:20 -06002221 .max_sectors = 0xFFFF,
Mike Christie5bb0b552006-04-06 21:26:46 -05002222 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
2223 .eh_abort_handler = iscsi_eh_abort,
Mike Christie843c0a82007-12-13 12:43:20 -06002224 .eh_device_reset_handler= iscsi_eh_device_reset,
Mike Christie5bb0b552006-04-06 21:26:46 -05002225 .eh_host_reset_handler = iscsi_eh_host_reset,
2226 .use_clustering = DISABLE_CLUSTERING,
Mike Christied1d81c02007-05-30 12:57:21 -05002227 .slave_configure = iscsi_tcp_slave_configure,
Mike Christie5bb0b552006-04-06 21:26:46 -05002228 .proc_name = "iscsi_tcp",
2229 .this_id = -1,
2230};
2231
Alex Aizman7ba24712005-08-04 19:30:08 -07002232static struct iscsi_transport iscsi_tcp_transport = {
2233 .owner = THIS_MODULE,
2234 .name = "tcp",
2235 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
2236 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05002237 .param_mask = ISCSI_MAX_RECV_DLENGTH |
2238 ISCSI_MAX_XMIT_DLENGTH |
2239 ISCSI_HDRDGST_EN |
2240 ISCSI_DATADGST_EN |
2241 ISCSI_INITIAL_R2T_EN |
2242 ISCSI_MAX_R2T |
2243 ISCSI_IMM_DATA_EN |
2244 ISCSI_FIRST_BURST |
2245 ISCSI_MAX_BURST |
2246 ISCSI_PDU_INORDER_EN |
2247 ISCSI_DATASEQ_INORDER_EN |
2248 ISCSI_ERL |
2249 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05002250 ISCSI_CONN_ADDRESS |
Mike Christie5c75b7f2006-06-28 12:00:26 -05002251 ISCSI_EXP_STATSN |
2252 ISCSI_PERSISTENT_PORT |
2253 ISCSI_PERSISTENT_ADDRESS |
Mike Christieb2c64162007-05-30 12:57:16 -05002254 ISCSI_TARGET_NAME | ISCSI_TPGT |
2255 ISCSI_USERNAME | ISCSI_PASSWORD |
Mike Christie843c0a82007-12-13 12:43:20 -06002256 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
2257 ISCSI_FAST_ABORT,
Mike Christie22236962007-05-30 12:57:24 -05002258 .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS |
Mike Christied8196ed2007-05-30 12:57:25 -05002259 ISCSI_HOST_INITIATOR_NAME |
2260 ISCSI_HOST_NETDEV_NAME,
Alex Aizman7ba24712005-08-04 19:30:08 -07002261 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06002262 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07002263 .max_conn = 1,
2264 .max_cmd_len = ISCSI_TCP_MAX_CMD_LEN,
Mike Christie5bb0b552006-04-06 21:26:46 -05002265 /* session management */
2266 .create_session = iscsi_tcp_session_create,
2267 .destroy_session = iscsi_tcp_session_destroy,
2268 /* connection management */
2269 .create_conn = iscsi_tcp_conn_create,
2270 .bind_conn = iscsi_tcp_conn_bind,
2271 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07002272 .set_param = iscsi_conn_set_param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002273 .get_conn_param = iscsi_tcp_conn_get_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002274 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002275 .start_conn = iscsi_conn_start,
Mike Christie1c834692006-07-24 15:47:26 -05002276 .stop_conn = iscsi_tcp_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -05002277 /* iscsi host params */
Mike Christie22236962007-05-30 12:57:24 -05002278 .get_host_param = iscsi_tcp_host_get_param,
Mike Christie0801c242007-05-30 12:57:12 -05002279 .set_host_param = iscsi_host_set_param,
Mike Christie5bb0b552006-04-06 21:26:46 -05002280 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002281 .send_pdu = iscsi_conn_send_pdu,
2282 .get_stats = iscsi_conn_get_stats,
Mike Christie5bb0b552006-04-06 21:26:46 -05002283 .init_cmd_task = iscsi_tcp_cmd_init,
2284 .init_mgmt_task = iscsi_tcp_mgmt_init,
2285 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2286 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2287 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2288 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002289 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002290};
2291
2292static int __init
2293iscsi_tcp_init(void)
2294{
Alex Aizman7ba24712005-08-04 19:30:08 -07002295 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002296 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2297 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002298 return -EINVAL;
2299 }
2300 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2301
Mike Christie7b8631b2006-01-13 18:05:50 -06002302 if (!iscsi_register_transport(&iscsi_tcp_transport))
Mike Christieffbfe922006-05-18 20:31:36 -05002303 return -ENODEV;
Alex Aizman7ba24712005-08-04 19:30:08 -07002304
Mike Christie7b8631b2006-01-13 18:05:50 -06002305 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002306}
2307
2308static void __exit
2309iscsi_tcp_exit(void)
2310{
2311 iscsi_unregister_transport(&iscsi_tcp_transport);
Alex Aizman7ba24712005-08-04 19:30:08 -07002312}
2313
2314module_init(iscsi_tcp_init);
2315module_exit(iscsi_tcp_exit);