blob: d94038eafb9b7933254478875e66fd283847f6d6 [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>
32#include <linux/blkdev.h>
33#include <linux/crypto.h>
34#include <linux/delay.h>
35#include <linux/kfifo.h>
36#include <linux/scatterlist.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010037#include <linux/mutex.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070038#include <net/tcp.h>
39#include <scsi/scsi_cmnd.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070040#include <scsi/scsi_host.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_transport_iscsi.h>
43
44#include "iscsi_tcp.h"
45
46MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
47 "Alex Aizman <itn780@yahoo.com>");
48MODULE_DESCRIPTION("iSCSI/TCP data-path");
49MODULE_LICENSE("GPL");
Mike Christie4d841d62005-11-29 23:13:01 -060050MODULE_VERSION("0:4.445");
Alex Aizman7ba24712005-08-04 19:30:08 -070051/* #define 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
70/* global data */
71static kmem_cache_t *taskcache;
72
73static inline void
74iscsi_buf_init_virt(struct iscsi_buf *ibuf, char *vbuf, int size)
75{
76 sg_init_one(&ibuf->sg, (u8 *)vbuf, size);
77 ibuf->sent = 0;
Mike Christie7cae5152006-01-13 18:05:47 -060078 ibuf->use_sendmsg = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -070079}
80
81static inline void
82iscsi_buf_init_iov(struct iscsi_buf *ibuf, char *vbuf, int size)
83{
Mike Christie7cae5152006-01-13 18:05:47 -060084 ibuf->sg.page = virt_to_page(vbuf);
85 ibuf->sg.offset = offset_in_page(vbuf);
Alex Aizman7ba24712005-08-04 19:30:08 -070086 ibuf->sg.length = size;
87 ibuf->sent = 0;
Mike Christie7cae5152006-01-13 18:05:47 -060088 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070089}
90
91static inline void
92iscsi_buf_init_sg(struct iscsi_buf *ibuf, struct scatterlist *sg)
93{
Mike Christie7cae5152006-01-13 18:05:47 -060094 ibuf->sg.page = sg->page;
95 ibuf->sg.offset = sg->offset;
96 ibuf->sg.length = sg->length;
Alex Aizman7ba24712005-08-04 19:30:08 -070097 /*
98 * Fastpath: sg element fits into single page
99 */
Mike Christiea1e80c22006-01-13 18:05:56 -0600100 if (sg->length + sg->offset <= PAGE_SIZE && !PageSlab(sg->page))
Mike Christie7cae5152006-01-13 18:05:47 -0600101 ibuf->use_sendmsg = 0;
102 else
103 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -0700104 ibuf->sent = 0;
105}
106
107static inline int
108iscsi_buf_left(struct iscsi_buf *ibuf)
109{
110 int rc;
111
112 rc = ibuf->sg.length - ibuf->sent;
113 BUG_ON(rc < 0);
114 return rc;
115}
116
117static inline void
Mike Christieaf973482005-09-12 21:01:32 -0500118iscsi_hdr_digest(struct iscsi_conn *conn, struct iscsi_buf *buf,
119 u8* crc)
Alex Aizman7ba24712005-08-04 19:30:08 -0700120{
Mike Christie5bb0b552006-04-06 21:26:46 -0500121 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
122
123 crypto_digest_digest(tcp_conn->tx_tfm, &buf->sg, 1, crc);
Mike Christieaf973482005-09-12 21:01:32 -0500124 buf->sg.length += sizeof(uint32_t);
Alex Aizman7ba24712005-08-04 19:30:08 -0700125}
126
Alex Aizman7ba24712005-08-04 19:30:08 -0700127static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500128iscsi_hdr_extract(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700129{
Mike Christie5bb0b552006-04-06 21:26:46 -0500130 struct sk_buff *skb = tcp_conn->in.skb;
Alex Aizman7ba24712005-08-04 19:30:08 -0700131
Mike Christie5bb0b552006-04-06 21:26:46 -0500132 tcp_conn->in.zero_copy_hdr = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700133
Mike Christie5bb0b552006-04-06 21:26:46 -0500134 if (tcp_conn->in.copy >= tcp_conn->hdr_size &&
135 tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700136 /*
137 * Zero-copy PDU Header: using connection context
138 * to store header pointer.
139 */
140 if (skb_shinfo(skb)->frag_list == NULL &&
Mike Christie5bb0b552006-04-06 21:26:46 -0500141 !skb_shinfo(skb)->nr_frags) {
142 tcp_conn->in.hdr = (struct iscsi_hdr *)
143 ((char*)skb->data + tcp_conn->in.offset);
144 tcp_conn->in.zero_copy_hdr = 1;
145 } else {
Alex Aizman7ba24712005-08-04 19:30:08 -0700146 /* ignoring return code since we checked
147 * in.copy before */
Mike Christie5bb0b552006-04-06 21:26:46 -0500148 skb_copy_bits(skb, tcp_conn->in.offset,
149 &tcp_conn->hdr, tcp_conn->hdr_size);
150 tcp_conn->in.hdr = &tcp_conn->hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700151 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500152 tcp_conn->in.offset += tcp_conn->hdr_size;
153 tcp_conn->in.copy -= tcp_conn->hdr_size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700154 } else {
155 int hdr_remains;
156 int copylen;
157
158 /*
159 * PDU header scattered across SKB's,
160 * copying it... This'll happen quite rarely.
161 */
162
Mike Christie5bb0b552006-04-06 21:26:46 -0500163 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER)
164 tcp_conn->in.hdr_offset = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700165
Mike Christie5bb0b552006-04-06 21:26:46 -0500166 hdr_remains = tcp_conn->hdr_size - tcp_conn->in.hdr_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700167 BUG_ON(hdr_remains <= 0);
168
Mike Christie5bb0b552006-04-06 21:26:46 -0500169 copylen = min(tcp_conn->in.copy, hdr_remains);
170 skb_copy_bits(skb, tcp_conn->in.offset,
171 (char*)&tcp_conn->hdr + tcp_conn->in.hdr_offset,
172 copylen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700173
174 debug_tcp("PDU gather offset %d bytes %d in.offset %d "
Mike Christie5bb0b552006-04-06 21:26:46 -0500175 "in.copy %d\n", tcp_conn->in.hdr_offset, copylen,
176 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700177
Mike Christie5bb0b552006-04-06 21:26:46 -0500178 tcp_conn->in.offset += copylen;
179 tcp_conn->in.copy -= copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700180 if (copylen < hdr_remains) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500181 tcp_conn->in_progress = IN_PROGRESS_HEADER_GATHER;
182 tcp_conn->in.hdr_offset += copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700183 return -EAGAIN;
184 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500185 tcp_conn->in.hdr = &tcp_conn->hdr;
186 tcp_conn->discontiguous_hdr_cnt++;
187 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700188 }
189
190 return 0;
191}
192
Mike Christie30a6c652006-04-06 21:13:39 -0500193/*
194 * must be called with session lock
195 */
196static void
197__iscsi_ctask_cleanup(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -0700198{
Mike Christie5bb0b552006-04-06 21:26:46 -0500199 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -0500200 struct scsi_cmnd *sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700201
Mike Christie30a6c652006-04-06 21:13:39 -0500202 sc = ctask->sc;
203 if (unlikely(!sc))
Alex Aizman7ba24712005-08-04 19:30:08 -0700204 return;
Mike Christie30a6c652006-04-06 21:13:39 -0500205
Alex Aizman7ba24712005-08-04 19:30:08 -0700206 if (sc->sc_data_direction == DMA_TO_DEVICE) {
207 struct iscsi_data_task *dtask, *n;
Mike Christie5bb0b552006-04-06 21:26:46 -0500208
Alex Aizman7ba24712005-08-04 19:30:08 -0700209 /* WRITE: cleanup Data-Out's if any */
Mike Christie5bb0b552006-04-06 21:26:46 -0500210 list_for_each_entry_safe(dtask, n, &tcp_ctask->dataqueue,
211 item) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700212 list_del(&dtask->item);
Mike Christie5bb0b552006-04-06 21:26:46 -0500213 mempool_free(dtask, tcp_ctask->datapool);
Alex Aizman7ba24712005-08-04 19:30:08 -0700214 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700215 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500216 tcp_ctask->xmstate = XMSTATE_IDLE;
217 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -0700218}
219
220/**
221 * iscsi_data_rsp - SCSI Data-In Response processing
222 * @conn: iscsi connection
223 * @ctask: scsi command task
224 **/
225static int
226iscsi_data_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
227{
228 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500229 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
230 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
231 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700232 struct iscsi_session *session = conn->session;
233 int datasn = be32_to_cpu(rhdr->datasn);
234
235 rc = iscsi_check_assign_cmdsn(session, (struct iscsi_nopin*)rhdr);
236 if (rc)
237 return rc;
238 /*
239 * setup Data-In byte counter (gets decremented..)
240 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500241 ctask->data_count = tcp_conn->in.datalen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700242
Mike Christie5bb0b552006-04-06 21:26:46 -0500243 if (tcp_conn->in.datalen == 0)
Alex Aizman7ba24712005-08-04 19:30:08 -0700244 return 0;
245
246 if (ctask->datasn != datasn)
247 return ISCSI_ERR_DATASN;
248
249 ctask->datasn++;
250
Mike Christie5bb0b552006-04-06 21:26:46 -0500251 tcp_ctask->data_offset = be32_to_cpu(rhdr->offset);
252 if (tcp_ctask->data_offset + tcp_conn->in.datalen > ctask->total_length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700253 return ISCSI_ERR_DATA_OFFSET;
254
255 if (rhdr->flags & ISCSI_FLAG_DATA_STATUS) {
256 struct scsi_cmnd *sc = ctask->sc;
257
258 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600259 if (rhdr->flags & ISCSI_FLAG_DATA_UNDERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700260 int res_count = be32_to_cpu(rhdr->residual_count);
261
262 if (res_count > 0 &&
263 res_count <= sc->request_bufflen) {
264 sc->resid = res_count;
265 sc->result = (DID_OK << 16) | rhdr->cmd_status;
266 } else
267 sc->result = (DID_BAD_TARGET << 16) |
268 rhdr->cmd_status;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600269 } else if (rhdr->flags & ISCSI_FLAG_DATA_OVERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700270 sc->resid = be32_to_cpu(rhdr->residual_count);
271 sc->result = (DID_OK << 16) | rhdr->cmd_status;
272 } else
273 sc->result = (DID_OK << 16) | rhdr->cmd_status;
274 }
275
276 conn->datain_pdus_cnt++;
277 return 0;
278}
279
280/**
281 * iscsi_solicit_data_init - initialize first Data-Out
282 * @conn: iscsi connection
283 * @ctask: scsi command task
284 * @r2t: R2T info
285 *
286 * Notes:
287 * Initialize first Data-Out within this R2T sequence and finds
288 * proper data_offset within this SCSI command.
289 *
290 * This function is called with connection lock taken.
291 **/
292static void
293iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
294 struct iscsi_r2t_info *r2t)
295{
296 struct iscsi_data *hdr;
297 struct iscsi_data_task *dtask;
298 struct scsi_cmnd *sc = ctask->sc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500299 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700300
Mike Christie5bb0b552006-04-06 21:26:46 -0500301 dtask = mempool_alloc(tcp_ctask->datapool, GFP_ATOMIC);
Alex Aizman7ba24712005-08-04 19:30:08 -0700302 BUG_ON(!dtask);
Mike Christie30a6c652006-04-06 21:13:39 -0500303 INIT_LIST_HEAD(&dtask->item);
Alex Aizman7ba24712005-08-04 19:30:08 -0700304 hdr = &dtask->hdr;
305 memset(hdr, 0, sizeof(struct iscsi_data));
306 hdr->ttt = r2t->ttt;
307 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
308 r2t->solicit_datasn++;
309 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500310 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
311 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700312 hdr->exp_statsn = r2t->exp_statsn;
313 hdr->offset = cpu_to_be32(r2t->data_offset);
314 if (r2t->data_length > conn->max_xmit_dlength) {
315 hton24(hdr->dlength, conn->max_xmit_dlength);
316 r2t->data_count = conn->max_xmit_dlength;
317 hdr->flags = 0;
318 } else {
319 hton24(hdr->dlength, r2t->data_length);
320 r2t->data_count = r2t->data_length;
321 hdr->flags = ISCSI_FLAG_CMD_FINAL;
322 }
323 conn->dataout_pdus_cnt++;
324
325 r2t->sent = 0;
326
Mike Christieaf973482005-09-12 21:01:32 -0500327 iscsi_buf_init_virt(&r2t->headbuf, (char*)hdr,
328 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -0700329
330 r2t->dtask = dtask;
331
332 if (sc->use_sg) {
333 int i, sg_count = 0;
334 struct scatterlist *sg = sc->request_buffer;
335
336 r2t->sg = NULL;
337 for (i = 0; i < sc->use_sg; i++, sg += 1) {
338 /* FIXME: prefetch ? */
339 if (sg_count + sg->length > r2t->data_offset) {
340 int page_offset;
341
342 /* sg page found! */
343
344 /* offset within this page */
345 page_offset = r2t->data_offset - sg_count;
346
347 /* fill in this buffer */
348 iscsi_buf_init_sg(&r2t->sendbuf, sg);
349 r2t->sendbuf.sg.offset += page_offset;
350 r2t->sendbuf.sg.length -= page_offset;
351
352 /* xmit logic will continue with next one */
353 r2t->sg = sg + 1;
354 break;
355 }
356 sg_count += sg->length;
357 }
358 BUG_ON(r2t->sg == NULL);
359 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500360 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -0700361 (char*)sc->request_buffer + r2t->data_offset,
362 r2t->data_count);
363
Mike Christie5bb0b552006-04-06 21:26:46 -0500364 list_add(&dtask->item, &tcp_ctask->dataqueue);
Alex Aizman7ba24712005-08-04 19:30:08 -0700365}
366
367/**
368 * iscsi_r2t_rsp - iSCSI R2T Response processing
369 * @conn: iscsi connection
370 * @ctask: scsi command task
371 **/
372static int
373iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
374{
375 struct iscsi_r2t_info *r2t;
376 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500377 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
378 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
379 struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700380 int r2tsn = be32_to_cpu(rhdr->r2tsn);
381 int rc;
382
Mike Christie5bb0b552006-04-06 21:26:46 -0500383 if (tcp_conn->in.datalen)
Alex Aizman7ba24712005-08-04 19:30:08 -0700384 return ISCSI_ERR_DATALEN;
385
Mike Christie5bb0b552006-04-06 21:26:46 -0500386 if (tcp_ctask->exp_r2tsn && tcp_ctask->exp_r2tsn != r2tsn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700387 return ISCSI_ERR_R2TSN;
388
389 rc = iscsi_check_assign_cmdsn(session, (struct iscsi_nopin*)rhdr);
390 if (rc)
391 return rc;
392
393 /* FIXME: use R2TSN to detect missing R2T */
394
395 /* fill-in new R2T associated with the task */
396 spin_lock(&session->lock);
397 if (!ctask->sc || ctask->mtask ||
398 session->state != ISCSI_STATE_LOGGED_IN) {
399 printk(KERN_INFO "iscsi_tcp: dropping R2T itt %d in "
400 "recovery...\n", ctask->itt);
401 spin_unlock(&session->lock);
402 return 0;
403 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500404 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700405 BUG_ON(!rc);
406
407 r2t->exp_statsn = rhdr->statsn;
408 r2t->data_length = be32_to_cpu(rhdr->data_length);
409 if (r2t->data_length == 0 ||
410 r2t->data_length > session->max_burst) {
411 spin_unlock(&session->lock);
412 return ISCSI_ERR_DATALEN;
413 }
414
415 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
416 if (r2t->data_offset + r2t->data_length > ctask->total_length) {
417 spin_unlock(&session->lock);
418 return ISCSI_ERR_DATALEN;
419 }
420
421 r2t->ttt = rhdr->ttt; /* no flip */
422 r2t->solicit_datasn = 0;
423
424 iscsi_solicit_data_init(conn, ctask, r2t);
425
Mike Christie5bb0b552006-04-06 21:26:46 -0500426 tcp_ctask->exp_r2tsn = r2tsn + 1;
427 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
428 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
429 __kfifo_put(conn->xmitqueue, (void*)&ctask, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700430
Mike Christie55e32992006-01-13 18:05:53 -0600431 scsi_queue_work(session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -0700432 conn->r2t_pdus_cnt++;
433 spin_unlock(&session->lock);
434
435 return 0;
436}
437
438static int
Mike Christie5bb0b552006-04-06 21:26:46 -0500439iscsi_tcp_hdr_recv(struct iscsi_conn *conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700440{
Mike Christie5bb0b552006-04-06 21:26:46 -0500441 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700442 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700443 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500444 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
445 uint32_t cdgst, rdgst = 0, itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700446
Mike Christie5bb0b552006-04-06 21:26:46 -0500447 hdr = tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700448
449 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500450 tcp_conn->in.datalen = ntoh24(hdr->dlength);
451 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700452 printk(KERN_ERR "iscsi_tcp: datalen %d > %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500453 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700454 return ISCSI_ERR_DATALEN;
455 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500456 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700457
458 /* read AHS */
Mike Christie5bb0b552006-04-06 21:26:46 -0500459 ahslen = hdr->hlength << 2;
460 tcp_conn->in.offset += ahslen;
461 tcp_conn->in.copy -= ahslen;
462 if (tcp_conn->in.copy < 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700463 printk(KERN_ERR "iscsi_tcp: can't handle AHS with length "
Mike Christie5bb0b552006-04-06 21:26:46 -0500464 "%d bytes\n", ahslen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700465 return ISCSI_ERR_AHSLEN;
466 }
467
468 /* calculate read padding */
Mike Christie5bb0b552006-04-06 21:26:46 -0500469 tcp_conn->in.padding = tcp_conn->in.datalen & (ISCSI_PAD_LEN-1);
470 if (tcp_conn->in.padding) {
471 tcp_conn->in.padding = ISCSI_PAD_LEN - tcp_conn->in.padding;
472 debug_scsi("read padding %d bytes\n", tcp_conn->in.padding);
Alex Aizman7ba24712005-08-04 19:30:08 -0700473 }
474
475 if (conn->hdrdgst_en) {
476 struct scatterlist sg;
477
478 sg_init_one(&sg, (u8 *)hdr,
Mike Christie5bb0b552006-04-06 21:26:46 -0500479 sizeof(struct iscsi_hdr) + ahslen);
480 crypto_digest_digest(tcp_conn->rx_tfm, &sg, 1, (u8 *)&cdgst);
Alex Aizman7ba24712005-08-04 19:30:08 -0700481 rdgst = *(uint32_t*)((char*)hdr + sizeof(struct iscsi_hdr) +
Mike Christie5bb0b552006-04-06 21:26:46 -0500482 ahslen);
Mike Christie8a47cd32005-11-30 02:27:19 -0600483 if (cdgst != rdgst) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500484 printk(KERN_ERR "iscsi_tcp: hdrdgst error "
485 "recv 0x%x calc 0x%x\n", rdgst, cdgst);
Mike Christie8a47cd32005-11-30 02:27:19 -0600486 return ISCSI_ERR_HDR_DGST;
487 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700488 }
489
Mike Christie5bb0b552006-04-06 21:26:46 -0500490 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700491 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500492 rc = iscsi_verify_itt(conn, hdr, &itt);
493 if (rc == ISCSI_ERR_NO_SCSI_CMD) {
494 tcp_conn->in.datalen = 0; /* force drop */
495 return 0;
496 } else if (rc)
497 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700498
499 debug_tcp("opcode 0x%x offset %d copy %d ahslen %d datalen %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500500 opcode, tcp_conn->in.offset, tcp_conn->in.copy,
501 ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700502
Mike Christie5bb0b552006-04-06 21:26:46 -0500503 switch(opcode) {
504 case ISCSI_OP_SCSI_DATA_IN:
505 tcp_conn->in.ctask = session->cmds[itt];
506 rc = iscsi_data_rsp(conn, tcp_conn->in.ctask);
507 /* fall through */
508 case ISCSI_OP_SCSI_CMD_RSP:
509 tcp_conn->in.ctask = session->cmds[itt];
510 if (tcp_conn->in.datalen)
511 goto copy_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700512
Mike Christie5bb0b552006-04-06 21:26:46 -0500513 spin_lock(&session->lock);
514 __iscsi_ctask_cleanup(conn, tcp_conn->in.ctask);
515 rc = __iscsi_complete_pdu(conn, hdr, NULL, 0);
516 spin_unlock(&session->lock);
517 break;
518 case ISCSI_OP_R2T:
519 tcp_conn->in.ctask = session->cmds[itt];
520 if (ahslen)
521 rc = ISCSI_ERR_AHSLEN;
522 else if (tcp_conn->in.ctask->sc->sc_data_direction ==
523 DMA_TO_DEVICE)
524 rc = iscsi_r2t_rsp(conn, tcp_conn->in.ctask);
525 else
526 rc = ISCSI_ERR_PROTO;
527 break;
528 case ISCSI_OP_LOGIN_RSP:
529 case ISCSI_OP_TEXT_RSP:
530 case ISCSI_OP_LOGOUT_RSP:
531 case ISCSI_OP_NOOP_IN:
532 case ISCSI_OP_REJECT:
533 case ISCSI_OP_ASYNC_EVENT:
534 if (tcp_conn->in.datalen)
535 goto copy_hdr;
536 /* fall through */
537 case ISCSI_OP_SCSI_TMFUNC_RSP:
538 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
539 break;
540 default:
541 rc = ISCSI_ERR_BAD_OPCODE;
542 break;
543 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700544
545 return rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500546
547copy_hdr:
548 /*
549 * if we did zero copy for the header but we will need multiple
550 * skbs to complete the command then we have to copy the header
551 * for later use
552 */
553 if (tcp_conn->in.zero_copy_hdr && tcp_conn->in.copy <
554 (tcp_conn->in.datalen + tcp_conn->in.padding +
555 (conn->datadgst_en ? 4 : 0))) {
556 debug_tcp("Copying header for later use. in.copy %d in.datalen"
557 " %d\n", tcp_conn->in.copy, tcp_conn->in.datalen);
558 memcpy(&tcp_conn->hdr, tcp_conn->in.hdr,
559 sizeof(struct iscsi_hdr));
560 tcp_conn->in.hdr = &tcp_conn->hdr;
561 tcp_conn->in.zero_copy_hdr = 0;
562 }
563 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700564}
565
566/**
567 * iscsi_ctask_copy - copy skb bits to the destanation cmd task
Mike Christie5bb0b552006-04-06 21:26:46 -0500568 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700569 * @ctask: scsi command task
570 * @buf: buffer to copy to
571 * @buf_size: size of buffer
572 * @offset: offset within the buffer
573 *
574 * Notes:
575 * The function calls skb_copy_bits() and updates per-connection and
576 * per-cmd byte counters.
577 *
578 * Read counters (in bytes):
579 *
580 * conn->in.offset offset within in progress SKB
581 * conn->in.copy left to copy from in progress SKB
582 * including padding
583 * conn->in.copied copied already from in progress SKB
584 * conn->data_copied copied already from in progress buffer
585 * ctask->sent total bytes sent up to the MidLayer
586 * ctask->data_count left to copy from in progress Data-In
587 * buf_left left to copy from in progress buffer
588 **/
589static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500590iscsi_ctask_copy(struct iscsi_tcp_conn *tcp_conn, struct iscsi_cmd_task *ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -0700591 void *buf, int buf_size, int offset)
592{
Mike Christie5bb0b552006-04-06 21:26:46 -0500593 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
594 int buf_left = buf_size - (tcp_conn->data_copied + offset);
595 int size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700596 int rc;
597
598 size = min(size, ctask->data_count);
599
600 debug_tcp("ctask_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500601 size, tcp_conn->in.offset, tcp_conn->in.copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700602
603 BUG_ON(size <= 0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500604 BUG_ON(tcp_ctask->sent + size > ctask->total_length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700605
Mike Christie5bb0b552006-04-06 21:26:46 -0500606 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
607 (char*)buf + (offset + tcp_conn->data_copied), size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700608 /* must fit into skb->len */
609 BUG_ON(rc);
610
Mike Christie5bb0b552006-04-06 21:26:46 -0500611 tcp_conn->in.offset += size;
612 tcp_conn->in.copy -= size;
613 tcp_conn->in.copied += size;
614 tcp_conn->data_copied += size;
615 tcp_ctask->sent += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700616 ctask->data_count -= size;
617
Mike Christie5bb0b552006-04-06 21:26:46 -0500618 BUG_ON(tcp_conn->in.copy < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700619 BUG_ON(ctask->data_count < 0);
620
Mike Christie5bb0b552006-04-06 21:26:46 -0500621 if (buf_size != (tcp_conn->data_copied + offset)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700622 if (!ctask->data_count) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500623 BUG_ON(buf_size - tcp_conn->data_copied < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700624 /* done with this PDU */
Mike Christie5bb0b552006-04-06 21:26:46 -0500625 return buf_size - tcp_conn->data_copied;
Alex Aizman7ba24712005-08-04 19:30:08 -0700626 }
627 return -EAGAIN;
628 }
629
630 /* done with this buffer or with both - PDU and buffer */
Mike Christie5bb0b552006-04-06 21:26:46 -0500631 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700632 return 0;
633}
634
635/**
636 * iscsi_tcp_copy - copy skb bits to the destanation buffer
Mike Christie5bb0b552006-04-06 21:26:46 -0500637 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700638 *
639 * Notes:
640 * The function calls skb_copy_bits() and updates per-connection
641 * byte counters.
642 **/
643static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500644iscsi_tcp_copy(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700645{
Mike Christie5bb0b552006-04-06 21:26:46 -0500646 void *buf = tcp_conn->data;
647 int buf_size = tcp_conn->in.datalen;
648 int buf_left = buf_size - tcp_conn->data_copied;
649 int size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700650 int rc;
651
652 debug_tcp("tcp_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500653 size, tcp_conn->in.offset, tcp_conn->data_copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700654 BUG_ON(size <= 0);
655
Mike Christie5bb0b552006-04-06 21:26:46 -0500656 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
657 (char*)buf + tcp_conn->data_copied, size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700658 BUG_ON(rc);
659
Mike Christie5bb0b552006-04-06 21:26:46 -0500660 tcp_conn->in.offset += size;
661 tcp_conn->in.copy -= size;
662 tcp_conn->in.copied += size;
663 tcp_conn->data_copied += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700664
Mike Christie5bb0b552006-04-06 21:26:46 -0500665 if (buf_size != tcp_conn->data_copied)
Alex Aizman7ba24712005-08-04 19:30:08 -0700666 return -EAGAIN;
667
668 return 0;
669}
670
671static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -0500672partial_sg_digest_update(struct iscsi_tcp_conn *tcp_conn,
673 struct scatterlist *sg, int offset, int length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700674{
675 struct scatterlist temp;
676
677 memcpy(&temp, sg, sizeof(struct scatterlist));
678 temp.offset = offset;
679 temp.length = length;
Mike Christie5bb0b552006-04-06 21:26:46 -0500680 crypto_digest_update(tcp_conn->data_rx_tfm, &temp, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700681}
682
Mike Christief6cfba12005-11-29 23:12:57 -0600683static void
Mike Christie5bb0b552006-04-06 21:26:46 -0500684iscsi_recv_digest_update(struct iscsi_tcp_conn *tcp_conn, char* buf, int len)
Mike Christief6cfba12005-11-29 23:12:57 -0600685{
686 struct scatterlist tmp;
687
688 sg_init_one(&tmp, buf, len);
Mike Christie5bb0b552006-04-06 21:26:46 -0500689 crypto_digest_update(tcp_conn->data_rx_tfm, &tmp, 1);
Mike Christief6cfba12005-11-29 23:12:57 -0600690}
691
Alex Aizman7ba24712005-08-04 19:30:08 -0700692static int iscsi_scsi_data_in(struct iscsi_conn *conn)
693{
Mike Christie5bb0b552006-04-06 21:26:46 -0500694 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
695 struct iscsi_cmd_task *ctask = tcp_conn->in.ctask;
696 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700697 struct scsi_cmnd *sc = ctask->sc;
Mike Christief6cfba12005-11-29 23:12:57 -0600698 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700699 int i, offset, rc = 0;
700
701 BUG_ON((void*)ctask != sc->SCp.ptr);
702
703 /*
704 * copying Data-In into the Scsi_Cmnd
705 */
706 if (!sc->use_sg) {
707 i = ctask->data_count;
Mike Christie5bb0b552006-04-06 21:26:46 -0500708 rc = iscsi_ctask_copy(tcp_conn, ctask, sc->request_buffer,
709 sc->request_bufflen,
710 tcp_ctask->data_offset);
Alex Aizman7ba24712005-08-04 19:30:08 -0700711 if (rc == -EAGAIN)
712 return rc;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -0600713 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -0500714 iscsi_recv_digest_update(tcp_conn, sc->request_buffer,
715 i);
Alex Aizman7ba24712005-08-04 19:30:08 -0700716 rc = 0;
717 goto done;
718 }
719
Mike Christie5bb0b552006-04-06 21:26:46 -0500720 offset = tcp_ctask->data_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700721 sg = sc->request_buffer;
722
Mike Christie5bb0b552006-04-06 21:26:46 -0500723 if (tcp_ctask->data_offset)
724 for (i = 0; i < tcp_ctask->sg_count; i++)
Alex Aizman7ba24712005-08-04 19:30:08 -0700725 offset -= sg[i].length;
726 /* we've passed through partial sg*/
727 if (offset < 0)
728 offset = 0;
729
Mike Christie5bb0b552006-04-06 21:26:46 -0500730 for (i = tcp_ctask->sg_count; i < sc->use_sg; i++) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700731 char *dest;
732
733 dest = kmap_atomic(sg[i].page, KM_SOFTIRQ0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500734 rc = iscsi_ctask_copy(tcp_conn, ctask, dest + sg[i].offset,
Alex Aizman7ba24712005-08-04 19:30:08 -0700735 sg[i].length, offset);
736 kunmap_atomic(dest, KM_SOFTIRQ0);
737 if (rc == -EAGAIN)
738 /* continue with the next SKB/PDU */
739 return rc;
740 if (!rc) {
741 if (conn->datadgst_en) {
742 if (!offset)
Mike Christie5bb0b552006-04-06 21:26:46 -0500743 crypto_digest_update(
744 tcp_conn->data_rx_tfm,
745 &sg[i], 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700746 else
Mike Christie5bb0b552006-04-06 21:26:46 -0500747 partial_sg_digest_update(tcp_conn,
748 &sg[i],
Alex Aizman7ba24712005-08-04 19:30:08 -0700749 sg[i].offset + offset,
750 sg[i].length - offset);
751 }
752 offset = 0;
Mike Christie5bb0b552006-04-06 21:26:46 -0500753 tcp_ctask->sg_count++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700754 }
755
756 if (!ctask->data_count) {
757 if (rc && conn->datadgst_en)
758 /*
759 * data-in is complete, but buffer not...
760 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500761 partial_sg_digest_update(tcp_conn, &sg[i],
Alex Aizman7ba24712005-08-04 19:30:08 -0700762 sg[i].offset, sg[i].length-rc);
763 rc = 0;
764 break;
765 }
766
Mike Christie5bb0b552006-04-06 21:26:46 -0500767 if (!tcp_conn->in.copy)
Alex Aizman7ba24712005-08-04 19:30:08 -0700768 return -EAGAIN;
769 }
770 BUG_ON(ctask->data_count);
771
772done:
773 /* check for non-exceptional status */
Mike Christie5bb0b552006-04-06 21:26:46 -0500774 if (tcp_conn->in.hdr->flags & ISCSI_FLAG_DATA_STATUS) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700775 debug_scsi("done [sc %lx res %d itt 0x%x]\n",
776 (long)sc, sc->result, ctask->itt);
Mike Christie5bb0b552006-04-06 21:26:46 -0500777 spin_lock(&conn->session->lock);
778 __iscsi_ctask_cleanup(conn, ctask);
779 __iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
780 spin_unlock(&conn->session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700781 }
782
783 return rc;
784}
785
786static int
787iscsi_data_recv(struct iscsi_conn *conn)
788{
Mike Christie5bb0b552006-04-06 21:26:46 -0500789 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
790 int rc = 0, opcode;
Alex Aizman7ba24712005-08-04 19:30:08 -0700791
Mike Christie5bb0b552006-04-06 21:26:46 -0500792 opcode = tcp_conn->in.hdr->opcode & ISCSI_OPCODE_MASK;
793 switch (opcode) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700794 case ISCSI_OP_SCSI_DATA_IN:
795 rc = iscsi_scsi_data_in(conn);
796 break;
Mike Christie5bb0b552006-04-06 21:26:46 -0500797 case ISCSI_OP_SCSI_CMD_RSP:
798 spin_lock(&conn->session->lock);
799 __iscsi_ctask_cleanup(conn, tcp_conn->in.ctask);
800 spin_unlock(&conn->session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700801 case ISCSI_OP_TEXT_RSP:
802 case ISCSI_OP_LOGIN_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500803 case ISCSI_OP_NOOP_IN:
804 case ISCSI_OP_ASYNC_EVENT:
805 case ISCSI_OP_REJECT:
Alex Aizman7ba24712005-08-04 19:30:08 -0700806 /*
807 * Collect data segment to the connection's data
808 * placeholder
809 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500810 if (iscsi_tcp_copy(tcp_conn)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700811 rc = -EAGAIN;
812 goto exit;
813 }
814
Mike Christie5bb0b552006-04-06 21:26:46 -0500815 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, tcp_conn->data,
816 tcp_conn->in.datalen);
817 if (!rc && conn->datadgst_en && opcode != ISCSI_OP_LOGIN_RSP)
818 iscsi_recv_digest_update(tcp_conn, tcp_conn->data,
819 tcp_conn->in.datalen);
820 break;
Alex Aizman7ba24712005-08-04 19:30:08 -0700821 default:
822 BUG_ON(1);
823 }
824exit:
825 return rc;
826}
827
828/**
829 * iscsi_tcp_data_recv - TCP receive in sendfile fashion
830 * @rd_desc: read descriptor
831 * @skb: socket buffer
832 * @offset: offset in skb
833 * @len: skb->len - offset
834 **/
835static int
836iscsi_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
837 unsigned int offset, size_t len)
838{
839 int rc;
840 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500841 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700842 int processed;
843 char pad[ISCSI_PAD_LEN];
844 struct scatterlist sg;
845
846 /*
847 * Save current SKB and its offset in the corresponding
848 * connection context.
849 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500850 tcp_conn->in.copy = skb->len - offset;
851 tcp_conn->in.offset = offset;
852 tcp_conn->in.skb = skb;
853 tcp_conn->in.len = tcp_conn->in.copy;
854 BUG_ON(tcp_conn->in.copy <= 0);
855 debug_tcp("in %d bytes\n", tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700856
857more:
Mike Christie5bb0b552006-04-06 21:26:46 -0500858 tcp_conn->in.copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700859 rc = 0;
860
861 if (unlikely(conn->suspend_rx)) {
862 debug_tcp("conn %d Rx suspended!\n", conn->id);
863 return 0;
864 }
865
Mike Christie5bb0b552006-04-06 21:26:46 -0500866 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER ||
867 tcp_conn->in_progress == IN_PROGRESS_HEADER_GATHER) {
868 rc = iscsi_hdr_extract(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700869 if (rc) {
870 if (rc == -EAGAIN)
871 goto nomore;
872 else {
873 iscsi_conn_failure(conn, rc);
874 return 0;
875 }
876 }
877
878 /*
879 * Verify and process incoming PDU header.
880 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500881 rc = iscsi_tcp_hdr_recv(conn);
882 if (!rc && tcp_conn->in.datalen) {
Mike Christie8a47cd32005-11-30 02:27:19 -0600883 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500884 BUG_ON(!tcp_conn->data_rx_tfm);
885 crypto_digest_init(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -0700886 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500887 tcp_conn->in_progress = IN_PROGRESS_DATA_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700888 } else if (rc) {
889 iscsi_conn_failure(conn, rc);
890 return 0;
891 }
892 }
893
Mike Christie5bb0b552006-04-06 21:26:46 -0500894 if (tcp_conn->in_progress == IN_PROGRESS_DDIGEST_RECV) {
Mike Christief6cfba12005-11-29 23:12:57 -0600895 uint32_t recv_digest;
Mike Christie5bb0b552006-04-06 21:26:46 -0500896
Alex Aizman7ba24712005-08-04 19:30:08 -0700897 debug_tcp("extra data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500898 tcp_conn->in.offset, tcp_conn->in.copy);
899 skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
Mike Christief6cfba12005-11-29 23:12:57 -0600900 &recv_digest, 4);
Mike Christie5bb0b552006-04-06 21:26:46 -0500901 tcp_conn->in.offset += 4;
902 tcp_conn->in.copy -= 4;
903 if (recv_digest != tcp_conn->in.datadgst) {
Mike Christief6cfba12005-11-29 23:12:57 -0600904 debug_tcp("iscsi_tcp: data digest error!"
905 "0x%x != 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500906 tcp_conn->in.datadgst);
Mike Christief6cfba12005-11-29 23:12:57 -0600907 iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
908 return 0;
909 } else {
910 debug_tcp("iscsi_tcp: data digest match!"
911 "0x%x == 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500912 tcp_conn->in.datadgst);
913 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700914 }
915 }
916
Mike Christie5bb0b552006-04-06 21:26:46 -0500917 if (tcp_conn->in_progress == IN_PROGRESS_DATA_RECV &&
918 tcp_conn->in.copy) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700919
920 debug_tcp("data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500921 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700922
923 rc = iscsi_data_recv(conn);
924 if (rc) {
Mike Christie665b44a2006-05-02 19:46:49 -0500925 if (rc == -EAGAIN)
Alex Aizman7ba24712005-08-04 19:30:08 -0700926 goto again;
Alex Aizman7ba24712005-08-04 19:30:08 -0700927 iscsi_conn_failure(conn, rc);
928 return 0;
929 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500930 tcp_conn->in.copy -= tcp_conn->in.padding;
931 tcp_conn->in.offset += tcp_conn->in.padding;
Mike Christie8a47cd32005-11-30 02:27:19 -0600932 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500933 if (tcp_conn->in.padding) {
934 debug_tcp("padding -> %d\n",
935 tcp_conn->in.padding);
936 memset(pad, 0, tcp_conn->in.padding);
937 sg_init_one(&sg, pad, tcp_conn->in.padding);
938 crypto_digest_update(tcp_conn->data_rx_tfm,
939 &sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700940 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500941 crypto_digest_final(tcp_conn->data_rx_tfm,
942 (u8 *) & tcp_conn->in.datadgst);
943 debug_tcp("rx digest 0x%x\n", tcp_conn->in.datadgst);
944 tcp_conn->in_progress = IN_PROGRESS_DDIGEST_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700945 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500946 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700947 }
948
949 debug_tcp("f, processed %d from out of %d padding %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500950 tcp_conn->in.offset - offset, (int)len, tcp_conn->in.padding);
951 BUG_ON(tcp_conn->in.offset - offset > len);
Alex Aizman7ba24712005-08-04 19:30:08 -0700952
Mike Christie5bb0b552006-04-06 21:26:46 -0500953 if (tcp_conn->in.offset - offset != len) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700954 debug_tcp("continue to process %d bytes\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500955 (int)len - (tcp_conn->in.offset - offset));
Alex Aizman7ba24712005-08-04 19:30:08 -0700956 goto more;
957 }
958
959nomore:
Mike Christie5bb0b552006-04-06 21:26:46 -0500960 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700961 BUG_ON(processed == 0);
962 return processed;
963
964again:
Mike Christie5bb0b552006-04-06 21:26:46 -0500965 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700966 debug_tcp("c, processed %d from out of %d rd_desc_cnt %d\n",
967 processed, (int)len, (int)rd_desc->count);
968 BUG_ON(processed == 0);
969 BUG_ON(processed > len);
970
971 conn->rxdata_octets += processed;
972 return processed;
973}
974
975static void
976iscsi_tcp_data_ready(struct sock *sk, int flag)
977{
978 struct iscsi_conn *conn = sk->sk_user_data;
979 read_descriptor_t rd_desc;
980
981 read_lock(&sk->sk_callback_lock);
982
Mike Christie665b44a2006-05-02 19:46:49 -0500983 /*
984 * Use rd_desc to pass 'conn' to iscsi_tcp_data_recv.
985 * We set count to 1 because we want the network layer to
986 * hand us all the skbs that are available. iscsi_tcp_data_recv
987 * handled pdus that cross buffers or pdus that still need data.
988 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700989 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -0500990 rd_desc.count = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -0700991 tcp_read_sock(sk, &rd_desc, iscsi_tcp_data_recv);
992
993 read_unlock(&sk->sk_callback_lock);
994}
995
996static void
997iscsi_tcp_state_change(struct sock *sk)
998{
Mike Christie5bb0b552006-04-06 21:26:46 -0500999 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001000 struct iscsi_conn *conn;
1001 struct iscsi_session *session;
1002 void (*old_state_change)(struct sock *);
1003
1004 read_lock(&sk->sk_callback_lock);
1005
1006 conn = (struct iscsi_conn*)sk->sk_user_data;
1007 session = conn->session;
1008
Mike Christiee6273992005-11-29 23:12:49 -06001009 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1010 sk->sk_state == TCP_CLOSE) &&
1011 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001012 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1013 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1014 }
1015
Mike Christie5bb0b552006-04-06 21:26:46 -05001016 tcp_conn = conn->dd_data;
1017 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001018
1019 read_unlock(&sk->sk_callback_lock);
1020
1021 old_state_change(sk);
1022}
1023
1024/**
1025 * iscsi_write_space - Called when more output buffer space is available
1026 * @sk: socket space is available for
1027 **/
1028static void
1029iscsi_write_space(struct sock *sk)
1030{
1031 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001032 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1033
1034 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001035 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie5bb0b552006-04-06 21:26:46 -05001036 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie55e32992006-01-13 18:05:53 -06001037 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001038}
1039
1040static void
1041iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1042{
Mike Christie5bb0b552006-04-06 21:26:46 -05001043 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1044 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001045
1046 /* assign new callbacks */
1047 write_lock_bh(&sk->sk_callback_lock);
1048 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001049 tcp_conn->old_data_ready = sk->sk_data_ready;
1050 tcp_conn->old_state_change = sk->sk_state_change;
1051 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001052 sk->sk_data_ready = iscsi_tcp_data_ready;
1053 sk->sk_state_change = iscsi_tcp_state_change;
1054 sk->sk_write_space = iscsi_write_space;
1055 write_unlock_bh(&sk->sk_callback_lock);
1056}
1057
1058static void
1059iscsi_conn_restore_callbacks(struct iscsi_conn *conn)
1060{
Mike Christie5bb0b552006-04-06 21:26:46 -05001061 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1062 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001063
1064 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1065 write_lock_bh(&sk->sk_callback_lock);
1066 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001067 sk->sk_data_ready = tcp_conn->old_data_ready;
1068 sk->sk_state_change = tcp_conn->old_state_change;
1069 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001070 sk->sk_no_check = 0;
1071 write_unlock_bh(&sk->sk_callback_lock);
1072}
1073
1074/**
1075 * iscsi_send - generic send routine
1076 * @sk: kernel's socket
1077 * @buf: buffer to write from
1078 * @size: actual size to write
1079 * @flags: socket's flags
Alex Aizman7ba24712005-08-04 19:30:08 -07001080 */
1081static inline int
FUJITA Tomonori56851692006-01-13 18:05:44 -06001082iscsi_send(struct iscsi_conn *conn, struct iscsi_buf *buf, int size, int flags)
Alex Aizman7ba24712005-08-04 19:30:08 -07001083{
Mike Christie5bb0b552006-04-06 21:26:46 -05001084 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1085 struct socket *sk = tcp_conn->sock;
Mike Christie7cae5152006-01-13 18:05:47 -06001086 int offset = buf->sg.offset + buf->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001087
Mike Christie7cae5152006-01-13 18:05:47 -06001088 /*
1089 * if we got use_sg=0 or are sending something we kmallocd
1090 * then we did not have to do kmap (kmap returns page_address)
1091 *
1092 * if we got use_sg > 0, but had to drop down, we do not
1093 * set clustering so this should only happen for that
1094 * slab case.
1095 */
1096 if (buf->use_sendmsg)
1097 return sock_no_sendpage(sk, buf->sg.page, offset, size, flags);
1098 else
Mike Christie5bb0b552006-04-06 21:26:46 -05001099 return tcp_conn->sendpage(sk, buf->sg.page, offset, size,
1100 flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001101}
1102
1103/**
1104 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1105 * @conn: iscsi connection
1106 * @buf: buffer to write from
1107 * @datalen: lenght of data to be sent after the header
1108 *
1109 * Notes:
1110 * (Tx, Fast Path)
1111 **/
1112static inline int
1113iscsi_sendhdr(struct iscsi_conn *conn, struct iscsi_buf *buf, int datalen)
1114{
Mike Christie5bb0b552006-04-06 21:26:46 -05001115 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001116 int flags = 0; /* MSG_DONTWAIT; */
1117 int res, size;
1118
1119 size = buf->sg.length - buf->sent;
1120 BUG_ON(buf->sent + size > buf->sg.length);
1121 if (buf->sent + size != buf->sg.length || datalen)
1122 flags |= MSG_MORE;
1123
FUJITA Tomonori56851692006-01-13 18:05:44 -06001124 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001125 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size, buf->sent, res);
1126 if (res >= 0) {
1127 conn->txdata_octets += res;
1128 buf->sent += res;
1129 if (size != res)
1130 return -EAGAIN;
1131 return 0;
1132 } else if (res == -EAGAIN) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001133 tcp_conn = conn->dd_data;
1134 tcp_conn->sendpage_failures_cnt++;
1135 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Alex Aizman7ba24712005-08-04 19:30:08 -07001136 } else if (res == -EPIPE)
1137 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1138
1139 return res;
1140}
1141
1142/**
1143 * iscsi_sendpage - send one page of iSCSI Data-Out.
1144 * @conn: iscsi connection
1145 * @buf: buffer to write from
1146 * @count: remaining data
1147 * @sent: number of bytes sent
1148 *
1149 * Notes:
1150 * (Tx, Fast Path)
1151 **/
1152static inline int
1153iscsi_sendpage(struct iscsi_conn *conn, struct iscsi_buf *buf,
1154 int *count, int *sent)
1155{
Mike Christie5bb0b552006-04-06 21:26:46 -05001156 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001157 int flags = 0; /* MSG_DONTWAIT; */
1158 int res, size;
1159
1160 size = buf->sg.length - buf->sent;
1161 BUG_ON(buf->sent + size > buf->sg.length);
1162 if (size > *count)
1163 size = *count;
Mike Christieb13941f2005-09-12 21:01:28 -05001164 if (buf->sent + size != buf->sg.length || *count != size)
Alex Aizman7ba24712005-08-04 19:30:08 -07001165 flags |= MSG_MORE;
1166
FUJITA Tomonori56851692006-01-13 18:05:44 -06001167 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001168 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1169 size, buf->sent, *count, *sent, res);
1170 if (res >= 0) {
1171 conn->txdata_octets += res;
1172 buf->sent += res;
1173 *count -= res;
1174 *sent += res;
1175 if (size != res)
1176 return -EAGAIN;
1177 return 0;
1178 } else if (res == -EAGAIN) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001179 tcp_conn = conn->dd_data;
1180 tcp_conn->sendpage_failures_cnt++;
1181 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Alex Aizman7ba24712005-08-04 19:30:08 -07001182 } else if (res == -EPIPE)
1183 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1184
1185 return res;
1186}
1187
1188static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -05001189iscsi_data_digest_init(struct iscsi_tcp_conn *tcp_conn,
1190 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001191{
Mike Christie5bb0b552006-04-06 21:26:46 -05001192 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1193
1194 BUG_ON(!tcp_conn->data_tx_tfm);
1195 crypto_digest_init(tcp_conn->data_tx_tfm);
1196 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001197}
1198
Arjan van de Ven858119e2006-01-14 13:20:43 -08001199static int
Alex Aizman7ba24712005-08-04 19:30:08 -07001200iscsi_digest_final_send(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1201 struct iscsi_buf *buf, uint32_t *digest, int final)
1202{
Mike Christie5bb0b552006-04-06 21:26:46 -05001203 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1204 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001205 int rc = 0;
1206 int sent = 0;
1207
1208 if (final)
Mike Christie5bb0b552006-04-06 21:26:46 -05001209 crypto_digest_final(tcp_conn->data_tx_tfm, (u8*)digest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001210
1211 iscsi_buf_init_virt(buf, (char*)digest, 4);
Mike Christie5bb0b552006-04-06 21:26:46 -05001212 rc = iscsi_sendpage(conn, buf, &tcp_ctask->digest_count, &sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001213 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001214 tcp_ctask->datadigest = *digest;
1215 tcp_ctask->xmstate |= XMSTATE_DATA_DIGEST;
Alex Aizman7ba24712005-08-04 19:30:08 -07001216 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001217 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001218 return rc;
1219}
1220
1221/**
1222 * iscsi_solicit_data_cont - initialize next Data-Out
1223 * @conn: iscsi connection
1224 * @ctask: scsi command task
1225 * @r2t: R2T info
1226 * @left: bytes left to transfer
1227 *
1228 * Notes:
1229 * Initialize next Data-Out within this R2T sequence and continue
1230 * to process next Scatter-Gather element(if any) of this SCSI command.
1231 *
1232 * Called under connection lock.
1233 **/
1234static void
1235iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1236 struct iscsi_r2t_info *r2t, int left)
1237{
Mike Christie5bb0b552006-04-06 21:26:46 -05001238 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001239 struct iscsi_data *hdr;
1240 struct iscsi_data_task *dtask;
1241 struct scsi_cmnd *sc = ctask->sc;
1242 int new_offset;
1243
Mike Christie5bb0b552006-04-06 21:26:46 -05001244 dtask = mempool_alloc(tcp_ctask->datapool, GFP_ATOMIC);
Alex Aizman7ba24712005-08-04 19:30:08 -07001245 BUG_ON(!dtask);
Mike Christie30a6c652006-04-06 21:13:39 -05001246 INIT_LIST_HEAD(&dtask->item);
Alex Aizman7ba24712005-08-04 19:30:08 -07001247 hdr = &dtask->hdr;
1248 memset(hdr, 0, sizeof(struct iscsi_data));
1249 hdr->ttt = r2t->ttt;
1250 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1251 r2t->solicit_datasn++;
1252 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001253 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1254 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001255 hdr->exp_statsn = r2t->exp_statsn;
1256 new_offset = r2t->data_offset + r2t->sent;
1257 hdr->offset = cpu_to_be32(new_offset);
1258 if (left > conn->max_xmit_dlength) {
1259 hton24(hdr->dlength, conn->max_xmit_dlength);
1260 r2t->data_count = conn->max_xmit_dlength;
1261 } else {
1262 hton24(hdr->dlength, left);
1263 r2t->data_count = left;
1264 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1265 }
1266 conn->dataout_pdus_cnt++;
1267
Mike Christieaf973482005-09-12 21:01:32 -05001268 iscsi_buf_init_virt(&r2t->headbuf, (char*)hdr,
1269 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001270
1271 r2t->dtask = dtask;
1272
1273 if (sc->use_sg && !iscsi_buf_left(&r2t->sendbuf)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001274 BUG_ON(tcp_ctask->bad_sg == r2t->sg);
Alex Aizman7ba24712005-08-04 19:30:08 -07001275 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1276 r2t->sg += 1;
1277 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001278 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -07001279 (char*)sc->request_buffer + new_offset,
1280 r2t->data_count);
1281
Mike Christie5bb0b552006-04-06 21:26:46 -05001282 list_add(&dtask->item, &tcp_ctask->dataqueue);
Alex Aizman7ba24712005-08-04 19:30:08 -07001283}
1284
1285static void
1286iscsi_unsolicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1287{
Mike Christie5bb0b552006-04-06 21:26:46 -05001288 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001289 struct iscsi_data_task *dtask;
1290
Mike Christie5bb0b552006-04-06 21:26:46 -05001291 dtask = mempool_alloc(tcp_ctask->datapool, GFP_ATOMIC);
Alex Aizman7ba24712005-08-04 19:30:08 -07001292 BUG_ON(!dtask);
Mike Christie30a6c652006-04-06 21:13:39 -05001293 INIT_LIST_HEAD(&dtask->item);
Alex Aizman7ba24712005-08-04 19:30:08 -07001294
Mike Christie5bb0b552006-04-06 21:26:46 -05001295 iscsi_prep_unsolicit_data_pdu(ctask, &dtask->hdr,
1296 tcp_ctask->r2t_data_count);
1297 iscsi_buf_init_virt(&tcp_ctask->headbuf, (char*)&dtask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001298 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001299
Mike Christie5bb0b552006-04-06 21:26:46 -05001300 list_add(&dtask->item, &tcp_ctask->dataqueue);
1301 tcp_ctask->dtask = dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001302}
1303
1304/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001305 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001306 * @conn: iscsi connection
1307 * @ctask: scsi command task
1308 * @sc: scsi command
1309 **/
1310static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001311iscsi_tcp_cmd_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001312{
Mike Christie5bb0b552006-04-06 21:26:46 -05001313 struct scsi_cmnd *sc = ctask->sc;
1314 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001315
Mike Christie5bb0b552006-04-06 21:26:46 -05001316 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Alex Aizman7ba24712005-08-04 19:30:08 -07001317
Mike Christie5bb0b552006-04-06 21:26:46 -05001318 tcp_ctask->sent = 0;
1319 tcp_ctask->sg_count = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001320
1321 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001322 tcp_ctask->xmstate = XMSTATE_W_HDR;
1323 tcp_ctask->exp_r2tsn = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001324 BUG_ON(ctask->total_length == 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05001325
Alex Aizman7ba24712005-08-04 19:30:08 -07001326 if (sc->use_sg) {
1327 struct scatterlist *sg = sc->request_buffer;
1328
Mike Christie5bb0b552006-04-06 21:26:46 -05001329 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1330 &sg[tcp_ctask->sg_count++]);
1331 tcp_ctask->sg = sg;
1332 tcp_ctask->bad_sg = sg + sc->use_sg;
Alex Aizman7ba24712005-08-04 19:30:08 -07001333 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001334 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
1335 sc->request_buffer,
1336 sc->request_bufflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001337
Mike Christie5bb0b552006-04-06 21:26:46 -05001338 if (ctask->imm_count)
1339 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001340
Mike Christie5bb0b552006-04-06 21:26:46 -05001341 tcp_ctask->pad_count = ctask->total_length & (ISCSI_PAD_LEN-1);
1342 if (tcp_ctask->pad_count) {
1343 tcp_ctask->pad_count = ISCSI_PAD_LEN -
1344 tcp_ctask->pad_count;
1345 debug_scsi("write padding %d bytes\n",
1346 tcp_ctask->pad_count);
1347 tcp_ctask->xmstate |= XMSTATE_W_PAD;
1348 }
1349
1350 if (ctask->unsol_count)
1351 tcp_ctask->xmstate |= XMSTATE_UNS_HDR |
1352 XMSTATE_UNS_INIT;
1353 tcp_ctask->r2t_data_count = ctask->total_length -
Alex Aizman7ba24712005-08-04 19:30:08 -07001354 ctask->imm_count -
1355 ctask->unsol_count;
1356
1357 debug_scsi("cmd [itt %x total %d imm %d imm_data %d "
1358 "r2t_data %d]\n",
1359 ctask->itt, ctask->total_length, ctask->imm_count,
Mike Christie5bb0b552006-04-06 21:26:46 -05001360 ctask->unsol_count, tcp_ctask->r2t_data_count);
1361 } else
1362 tcp_ctask->xmstate = XMSTATE_R_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001363
Mike Christie5bb0b552006-04-06 21:26:46 -05001364 iscsi_buf_init_virt(&tcp_ctask->headbuf, (char*)ctask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001365 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001366}
1367
1368/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001369 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001370 * @conn: iscsi connection
1371 * @mtask: task management task
1372 *
1373 * Notes:
1374 * The function can return -EAGAIN in which case caller must
1375 * call it again later, or recover. '0' return code means successful
1376 * xmit.
1377 *
1378 * Management xmit state machine consists of two states:
1379 * IN_PROGRESS_IMM_HEAD - PDU Header xmit in progress
1380 * IN_PROGRESS_IMM_DATA - PDU Data xmit in progress
1381 **/
1382static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001383iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001384{
Mike Christie5bb0b552006-04-06 21:26:46 -05001385 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001386
1387 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001388 conn->id, tcp_mtask->xmstate, mtask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001389
Mike Christie5bb0b552006-04-06 21:26:46 -05001390 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR) {
1391 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001392 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001393 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christieaf973482005-09-12 21:01:32 -05001394 if (conn->c_stage != ISCSI_CONN_INITIAL_STAGE &&
Mike Christie30a6c652006-04-06 21:13:39 -05001395 conn->stop_stage != STOP_CONN_RECOVER &&
Mike Christieaf973482005-09-12 21:01:32 -05001396 conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001397 iscsi_hdr_digest(conn, &tcp_mtask->headbuf,
1398 (u8*)tcp_mtask->hdrext);
1399 if (iscsi_sendhdr(conn, &tcp_mtask->headbuf,
1400 mtask->data_count)) {
1401 tcp_mtask->xmstate |= XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001402 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001403 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001404 return -EAGAIN;
1405 }
1406 }
1407
Mike Christie5bb0b552006-04-06 21:26:46 -05001408 if (tcp_mtask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001409 BUG_ON(!mtask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001410 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001411 /* FIXME: implement.
1412 * Virtual buffer could be spreaded across multiple pages...
1413 */
1414 do {
Mike Christie5bb0b552006-04-06 21:26:46 -05001415 if (iscsi_sendpage(conn, &tcp_mtask->sendbuf,
1416 &mtask->data_count, &tcp_mtask->sent)) {
1417 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001418 return -EAGAIN;
1419 }
1420 } while (mtask->data_count);
1421 }
1422
Mike Christie5bb0b552006-04-06 21:26:46 -05001423 BUG_ON(tcp_mtask->xmstate != XMSTATE_IDLE);
1424 if (mtask->hdr->itt == cpu_to_be32(ISCSI_RESERVED_TAG)) {
1425 struct iscsi_session *session = conn->session;
1426
1427 spin_lock_bh(&session->lock);
1428 list_del(&conn->mtask->running);
1429 __kfifo_put(session->mgmtpool.queue, (void*)&conn->mtask,
1430 sizeof(void*));
1431 spin_unlock_bh(&session->lock);
1432 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001433 return 0;
1434}
1435
1436static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -05001437handle_xmstate_r_hdr(struct iscsi_conn *conn,
1438 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001439{
Mike Christie5bb0b552006-04-06 21:26:46 -05001440 tcp_ctask->xmstate &= ~XMSTATE_R_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001441 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001442 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1443 (u8*)tcp_ctask->hdrext);
1444 if (!iscsi_sendhdr(conn, &tcp_ctask->headbuf, 0)) {
1445 BUG_ON(tcp_ctask->xmstate != XMSTATE_IDLE);
Alex Aizman7ba24712005-08-04 19:30:08 -07001446 return 0; /* wait for Data-In */
1447 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001448 tcp_ctask->xmstate |= XMSTATE_R_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001449 return -EAGAIN;
1450}
1451
1452static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -05001453handle_xmstate_w_hdr(struct iscsi_conn *conn,
1454 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001455{
Mike Christie5bb0b552006-04-06 21:26:46 -05001456 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1457
1458 tcp_ctask->xmstate &= ~XMSTATE_W_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001459 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001460 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1461 (u8*)tcp_ctask->hdrext);
1462 if (iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->imm_count)) {
1463 tcp_ctask->xmstate |= XMSTATE_W_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001464 return -EAGAIN;
1465 }
1466 return 0;
1467}
1468
1469static inline int
1470handle_xmstate_data_digest(struct iscsi_conn *conn,
1471 struct iscsi_cmd_task *ctask)
1472{
Mike Christie5bb0b552006-04-06 21:26:46 -05001473 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1474
1475 tcp_ctask->xmstate &= ~XMSTATE_DATA_DIGEST;
1476 debug_tcp("resent data digest 0x%x\n", tcp_ctask->datadigest);
1477 if (iscsi_digest_final_send(conn, ctask, &tcp_ctask->immbuf,
1478 &tcp_ctask->datadigest, 0)) {
1479 tcp_ctask->xmstate |= XMSTATE_DATA_DIGEST;
Alex Aizman7ba24712005-08-04 19:30:08 -07001480 debug_tcp("resent data digest 0x%x fail!\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001481 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001482 return -EAGAIN;
1483 }
1484 return 0;
1485}
1486
1487static inline int
1488handle_xmstate_imm_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1489{
Mike Christie5bb0b552006-04-06 21:26:46 -05001490 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1491 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1492
Alex Aizman7ba24712005-08-04 19:30:08 -07001493 BUG_ON(!ctask->imm_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001494 tcp_ctask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001495
1496 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001497 iscsi_data_digest_init(tcp_conn, ctask);
1498 tcp_ctask->immdigest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001499 }
1500
1501 for (;;) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001502 if (iscsi_sendpage(conn, &tcp_ctask->sendbuf, &ctask->imm_count,
1503 &tcp_ctask->sent)) {
1504 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001505 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001506 crypto_digest_final(tcp_conn->data_tx_tfm,
1507 (u8*)&tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001508 debug_tcp("tx imm sendpage fail 0x%x\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001509 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001510 }
1511 return -EAGAIN;
1512 }
1513 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001514 crypto_digest_update(tcp_conn->data_tx_tfm,
1515 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001516
1517 if (!ctask->imm_count)
1518 break;
Mike Christie5bb0b552006-04-06 21:26:46 -05001519 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1520 &tcp_ctask->sg[tcp_ctask->sg_count++]);
Alex Aizman7ba24712005-08-04 19:30:08 -07001521 }
1522
Mike Christie5bb0b552006-04-06 21:26:46 -05001523 if (conn->datadgst_en && !(tcp_ctask->xmstate & XMSTATE_W_PAD)) {
1524 if (iscsi_digest_final_send(conn, ctask, &tcp_ctask->immbuf,
1525 &tcp_ctask->immdigest, 1)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001526 debug_tcp("sending imm digest 0x%x fail!\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001527 tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001528 return -EAGAIN;
1529 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001530 debug_tcp("sending imm digest 0x%x\n", tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001531 }
1532
1533 return 0;
1534}
1535
1536static inline int
1537handle_xmstate_uns_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1538{
Mike Christie5bb0b552006-04-06 21:26:46 -05001539 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001540 struct iscsi_data_task *dtask;
1541
Mike Christie5bb0b552006-04-06 21:26:46 -05001542 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
1543 if (tcp_ctask->xmstate & XMSTATE_UNS_INIT) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001544 iscsi_unsolicit_data_init(conn, ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -05001545 BUG_ON(!tcp_ctask->dtask);
1546 dtask = tcp_ctask->dtask;
Mike Christieaf973482005-09-12 21:01:32 -05001547 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001548 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001549 (u8*)dtask->hdrext);
Mike Christie5bb0b552006-04-06 21:26:46 -05001550 tcp_ctask->xmstate &= ~XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001551 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001552 if (iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->data_count)) {
1553 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1554 tcp_ctask->xmstate |= XMSTATE_UNS_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001555 return -EAGAIN;
1556 }
1557
1558 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001559 ctask->itt, ctask->unsol_count, tcp_ctask->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001560 return 0;
1561}
1562
1563static inline int
1564handle_xmstate_uns_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1565{
Mike Christie5bb0b552006-04-06 21:26:46 -05001566 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1567 struct iscsi_data_task *dtask = tcp_ctask->dtask;
1568 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001569
1570 BUG_ON(!ctask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001571 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001572
1573 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001574 iscsi_data_digest_init(tcp_conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001575 dtask->digest = 0;
1576 }
1577
1578 for (;;) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001579 int start = tcp_ctask->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001580
Mike Christie5bb0b552006-04-06 21:26:46 -05001581 if (iscsi_sendpage(conn, &tcp_ctask->sendbuf,
1582 &ctask->data_count, &tcp_ctask->sent)) {
1583 ctask->unsol_count -= tcp_ctask->sent - start;
1584 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001585 /* will continue with this ctask later.. */
1586 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001587 crypto_digest_final(tcp_conn->data_tx_tfm,
Alex Aizman7ba24712005-08-04 19:30:08 -07001588 (u8 *)&dtask->digest);
1589 debug_tcp("tx uns data fail 0x%x\n",
1590 dtask->digest);
1591 }
1592 return -EAGAIN;
1593 }
1594
Mike Christie5bb0b552006-04-06 21:26:46 -05001595 BUG_ON(tcp_ctask->sent > ctask->total_length);
1596 ctask->unsol_count -= tcp_ctask->sent - start;
Alex Aizman7ba24712005-08-04 19:30:08 -07001597
1598 /*
1599 * XXX:we may run here with un-initial sendbuf.
1600 * so pass it
1601 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001602 if (conn->datadgst_en && tcp_ctask->sent - start > 0)
1603 crypto_digest_update(tcp_conn->data_tx_tfm,
1604 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001605
1606 if (!ctask->data_count)
1607 break;
Mike Christie5bb0b552006-04-06 21:26:46 -05001608 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1609 &tcp_ctask->sg[tcp_ctask->sg_count++]);
Alex Aizman7ba24712005-08-04 19:30:08 -07001610 }
1611 BUG_ON(ctask->unsol_count < 0);
1612
1613 /*
1614 * Done with the Data-Out. Next, check if we need
1615 * to send another unsolicited Data-Out.
1616 */
1617 if (ctask->unsol_count) {
1618 if (conn->datadgst_en) {
1619 if (iscsi_digest_final_send(conn, ctask,
1620 &dtask->digestbuf,
1621 &dtask->digest, 1)) {
1622 debug_tcp("send uns digest 0x%x fail\n",
1623 dtask->digest);
1624 return -EAGAIN;
1625 }
1626 debug_tcp("sending uns digest 0x%x, more uns\n",
1627 dtask->digest);
1628 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001629 tcp_ctask->xmstate |= XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001630 return 1;
1631 }
1632
Mike Christie5bb0b552006-04-06 21:26:46 -05001633 if (conn->datadgst_en && !(tcp_ctask->xmstate & XMSTATE_W_PAD)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001634 if (iscsi_digest_final_send(conn, ctask,
1635 &dtask->digestbuf,
1636 &dtask->digest, 1)) {
1637 debug_tcp("send last uns digest 0x%x fail\n",
1638 dtask->digest);
1639 return -EAGAIN;
1640 }
1641 debug_tcp("sending uns digest 0x%x\n",dtask->digest);
1642 }
1643
1644 return 0;
1645}
1646
1647static inline int
1648handle_xmstate_sol_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1649{
1650 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001651 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1652 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1653 struct iscsi_r2t_info *r2t = tcp_ctask->r2t;
Alex Aizman7ba24712005-08-04 19:30:08 -07001654 struct iscsi_data_task *dtask = r2t->dtask;
1655 int left;
1656
Mike Christie5bb0b552006-04-06 21:26:46 -05001657 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1658 tcp_ctask->dtask = dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001659
1660 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001661 iscsi_data_digest_init(tcp_conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001662 dtask->digest = 0;
1663 }
1664solicit_again:
1665 /*
1666 * send Data-Out whitnin this R2T sequence.
1667 */
1668 if (!r2t->data_count)
1669 goto data_out_done;
1670
1671 if (iscsi_sendpage(conn, &r2t->sendbuf, &r2t->data_count, &r2t->sent)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001672 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001673 /* will continue with this ctask later.. */
1674 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001675 crypto_digest_final(tcp_conn->data_tx_tfm,
Alex Aizman7ba24712005-08-04 19:30:08 -07001676 (u8 *)&dtask->digest);
1677 debug_tcp("r2t data send fail 0x%x\n", dtask->digest);
1678 }
1679 return -EAGAIN;
1680 }
1681
1682 BUG_ON(r2t->data_count < 0);
1683 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001684 crypto_digest_update(tcp_conn->data_tx_tfm, &r2t->sendbuf.sg,
1685 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001686
1687 if (r2t->data_count) {
1688 BUG_ON(ctask->sc->use_sg == 0);
1689 if (!iscsi_buf_left(&r2t->sendbuf)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001690 BUG_ON(tcp_ctask->bad_sg == r2t->sg);
Alex Aizman7ba24712005-08-04 19:30:08 -07001691 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1692 r2t->sg += 1;
1693 }
1694 goto solicit_again;
1695 }
1696
1697data_out_done:
1698 /*
1699 * Done with this Data-Out. Next, check if we have
1700 * to send another Data-Out for this R2T.
1701 */
1702 BUG_ON(r2t->data_length - r2t->sent < 0);
1703 left = r2t->data_length - r2t->sent;
1704 if (left) {
1705 if (conn->datadgst_en) {
1706 if (iscsi_digest_final_send(conn, ctask,
1707 &dtask->digestbuf,
1708 &dtask->digest, 1)) {
1709 debug_tcp("send r2t data digest 0x%x"
1710 "fail\n", dtask->digest);
1711 return -EAGAIN;
1712 }
1713 debug_tcp("r2t data send digest 0x%x\n",
1714 dtask->digest);
1715 }
1716 iscsi_solicit_data_cont(conn, ctask, r2t, left);
Mike Christie5bb0b552006-04-06 21:26:46 -05001717 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1718 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001719 return 1;
1720 }
1721
1722 /*
1723 * Done with this R2T. Check if there are more
1724 * outstanding R2Ts ready to be processed.
1725 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001726 BUG_ON(tcp_ctask->r2t_data_count - r2t->data_length < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -07001727 if (conn->datadgst_en) {
1728 if (iscsi_digest_final_send(conn, ctask, &dtask->digestbuf,
1729 &dtask->digest, 1)) {
1730 debug_tcp("send last r2t data digest 0x%x"
1731 "fail\n", dtask->digest);
1732 return -EAGAIN;
1733 }
1734 debug_tcp("r2t done dout digest 0x%x\n", dtask->digest);
1735 }
1736
Mike Christie5bb0b552006-04-06 21:26:46 -05001737 tcp_ctask->r2t_data_count -= r2t->data_length;
1738 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001739 spin_lock_bh(&session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05001740 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -07001741 spin_unlock_bh(&session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05001742 if (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
1743 tcp_ctask->r2t = r2t;
1744 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1745 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001746 return 1;
1747 }
1748
1749 return 0;
1750}
1751
1752static inline int
1753handle_xmstate_w_pad(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1754{
Mike Christie5bb0b552006-04-06 21:26:46 -05001755 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1756 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1757 struct iscsi_data_task *dtask = tcp_ctask->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001758 int sent;
1759
Mike Christie5bb0b552006-04-06 21:26:46 -05001760 tcp_ctask->xmstate &= ~XMSTATE_W_PAD;
1761 iscsi_buf_init_virt(&tcp_ctask->sendbuf, (char*)&tcp_ctask->pad,
1762 tcp_ctask->pad_count);
1763 if (iscsi_sendpage(conn, &tcp_ctask->sendbuf, &tcp_ctask->pad_count,
1764 &sent)) {
1765 tcp_ctask->xmstate |= XMSTATE_W_PAD;
Alex Aizman7ba24712005-08-04 19:30:08 -07001766 return -EAGAIN;
1767 }
1768
1769 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001770 crypto_digest_update(tcp_conn->data_tx_tfm,
1771 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001772 /* imm data? */
1773 if (!dtask) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001774 if (iscsi_digest_final_send(conn, ctask,
1775 &tcp_ctask->immbuf,
1776 &tcp_ctask->immdigest, 1)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001777 debug_tcp("send padding digest 0x%x"
Mike Christie5bb0b552006-04-06 21:26:46 -05001778 "fail!\n", tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001779 return -EAGAIN;
1780 }
1781 debug_tcp("done with padding, digest 0x%x\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001782 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001783 } else {
1784 if (iscsi_digest_final_send(conn, ctask,
1785 &dtask->digestbuf,
1786 &dtask->digest, 1)) {
1787 debug_tcp("send padding digest 0x%x"
1788 "fail\n", dtask->digest);
1789 return -EAGAIN;
1790 }
1791 debug_tcp("done with padding, digest 0x%x\n",
1792 dtask->digest);
1793 }
1794 }
1795
1796 return 0;
1797}
1798
1799static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001800iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001801{
Mike Christie5bb0b552006-04-06 21:26:46 -05001802 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001803 int rc = 0;
1804
1805 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001806 conn->id, tcp_ctask->xmstate, ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001807
1808 /*
1809 * serialize with TMF AbortTask
1810 */
1811 if (ctask->mtask)
1812 return rc;
1813
Mike Christie5bb0b552006-04-06 21:26:46 -05001814 if (tcp_ctask->xmstate & XMSTATE_R_HDR) {
1815 rc = handle_xmstate_r_hdr(conn, tcp_ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001816 return rc;
1817 }
1818
Mike Christie5bb0b552006-04-06 21:26:46 -05001819 if (tcp_ctask->xmstate & XMSTATE_W_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001820 rc = handle_xmstate_w_hdr(conn, ctask);
1821 if (rc)
1822 return rc;
1823 }
1824
1825 /* XXX: for data digest xmit recover */
Mike Christie5bb0b552006-04-06 21:26:46 -05001826 if (tcp_ctask->xmstate & XMSTATE_DATA_DIGEST) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001827 rc = handle_xmstate_data_digest(conn, ctask);
1828 if (rc)
1829 return rc;
1830 }
1831
Mike Christie5bb0b552006-04-06 21:26:46 -05001832 if (tcp_ctask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001833 rc = handle_xmstate_imm_data(conn, ctask);
1834 if (rc)
1835 return rc;
1836 }
1837
Mike Christie5bb0b552006-04-06 21:26:46 -05001838 if (tcp_ctask->xmstate & XMSTATE_UNS_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001839 BUG_ON(!ctask->unsol_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001840 tcp_ctask->xmstate &= ~XMSTATE_UNS_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001841unsolicit_head_again:
1842 rc = handle_xmstate_uns_hdr(conn, ctask);
1843 if (rc)
1844 return rc;
1845 }
1846
Mike Christie5bb0b552006-04-06 21:26:46 -05001847 if (tcp_ctask->xmstate & XMSTATE_UNS_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001848 rc = handle_xmstate_uns_data(conn, ctask);
1849 if (rc == 1)
1850 goto unsolicit_head_again;
1851 else if (rc)
1852 return rc;
1853 goto done;
1854 }
1855
Mike Christie5bb0b552006-04-06 21:26:46 -05001856 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001857 struct iscsi_r2t_info *r2t;
1858
Mike Christie5bb0b552006-04-06 21:26:46 -05001859 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1860 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1861 if (!tcp_ctask->r2t)
1862 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
Alex Aizman7ba24712005-08-04 19:30:08 -07001863 sizeof(void*));
1864solicit_head_again:
Mike Christie5bb0b552006-04-06 21:26:46 -05001865 r2t = tcp_ctask->r2t;
Mike Christieaf973482005-09-12 21:01:32 -05001866 if (conn->hdrdgst_en)
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001867 iscsi_hdr_digest(conn, &r2t->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001868 (u8*)r2t->dtask->hdrext);
Alex Aizman7ba24712005-08-04 19:30:08 -07001869 if (iscsi_sendhdr(conn, &r2t->headbuf, r2t->data_count)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001870 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1871 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001872 return -EAGAIN;
1873 }
1874
1875 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1876 r2t->solicit_datasn - 1, ctask->itt, r2t->data_count,
1877 r2t->sent);
1878 }
1879
Mike Christie5bb0b552006-04-06 21:26:46 -05001880 if (tcp_ctask->xmstate & XMSTATE_SOL_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001881 rc = handle_xmstate_sol_data(conn, ctask);
1882 if (rc == 1)
1883 goto solicit_head_again;
1884 if (rc)
1885 return rc;
1886 }
1887
1888done:
1889 /*
1890 * Last thing to check is whether we need to send write
1891 * padding. Note that we check for xmstate equality, not just the bit.
1892 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001893 if (tcp_ctask->xmstate == XMSTATE_W_PAD)
Alex Aizman7ba24712005-08-04 19:30:08 -07001894 rc = handle_xmstate_w_pad(conn, ctask);
1895
1896 return rc;
1897}
1898
Mike Christie7b8631b2006-01-13 18:05:50 -06001899static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001900iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001901{
Mike Christie7b8631b2006-01-13 18:05:50 -06001902 struct iscsi_conn *conn;
1903 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001904 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001905
Mike Christie5bb0b552006-04-06 21:26:46 -05001906 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001907 if (!cls_conn)
1908 return NULL;
1909 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001910 /*
1911 * due to strange issues with iser these are not set
1912 * in iscsi_conn_setup
1913 */
Alex Aizman7ba24712005-08-04 19:30:08 -07001914 conn->max_recv_dlength = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH;
1915
Mike Christie5bb0b552006-04-06 21:26:46 -05001916 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1917 if (!tcp_conn)
1918 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001919
Mike Christie5bb0b552006-04-06 21:26:46 -05001920 conn->dd_data = tcp_conn;
1921 tcp_conn->iscsi_conn = conn;
1922 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
1923 /* initial operational parameters */
1924 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
1925 tcp_conn->data_size = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH;
Alex Aizman7ba24712005-08-04 19:30:08 -07001926
1927 /* allocate initial PDU receive place holder */
Mike Christie5bb0b552006-04-06 21:26:46 -05001928 if (tcp_conn->data_size <= PAGE_SIZE)
1929 tcp_conn->data = kmalloc(tcp_conn->data_size, GFP_KERNEL);
Alex Aizman7ba24712005-08-04 19:30:08 -07001930 else
Mike Christie5bb0b552006-04-06 21:26:46 -05001931 tcp_conn->data = (void*)__get_free_pages(GFP_KERNEL,
1932 get_order(tcp_conn->data_size));
1933 if (!tcp_conn->data)
Alex Aizman7ba24712005-08-04 19:30:08 -07001934 goto max_recv_dlenght_alloc_fail;
1935
Mike Christie7b8631b2006-01-13 18:05:50 -06001936 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001937
1938max_recv_dlenght_alloc_fail:
Mike Christie5bb0b552006-04-06 21:26:46 -05001939 kfree(tcp_conn);
1940tcp_conn_alloc_fail:
1941 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001942 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001943}
1944
1945static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001946iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001947{
Mike Christie7b8631b2006-01-13 18:05:50 -06001948 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001949 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1950 int digest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001951
Mike Christie5bb0b552006-04-06 21:26:46 -05001952 if (conn->hdrdgst_en || conn->datadgst_en)
1953 digest = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001954
Mike Christie5bb0b552006-04-06 21:26:46 -05001955 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001956
Mike Christie5bb0b552006-04-06 21:26:46 -05001957 /* now free tcp_conn */
1958 if (digest) {
1959 if (tcp_conn->tx_tfm)
1960 crypto_free_tfm(tcp_conn->tx_tfm);
1961 if (tcp_conn->rx_tfm)
1962 crypto_free_tfm(tcp_conn->rx_tfm);
1963 if (tcp_conn->data_tx_tfm)
1964 crypto_free_tfm(tcp_conn->data_tx_tfm);
1965 if (tcp_conn->data_rx_tfm)
1966 crypto_free_tfm(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001967 }
1968
1969 /* free conn->data, size = MaxRecvDataSegmentLength */
Mike Christie5bb0b552006-04-06 21:26:46 -05001970 if (tcp_conn->data_size <= PAGE_SIZE)
1971 kfree(tcp_conn->data);
Alex Aizman7ba24712005-08-04 19:30:08 -07001972 else
Mike Christie5bb0b552006-04-06 21:26:46 -05001973 free_pages((unsigned long)tcp_conn->data,
1974 get_order(tcp_conn->data_size));
1975 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001976}
1977
1978static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001979iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001980 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001981 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001982{
Mike Christie5bb0b552006-04-06 21:26:46 -05001983 struct iscsi_conn *conn = cls_conn->dd_data;
1984 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001985 struct sock *sk;
1986 struct socket *sock;
1987 int err;
1988
1989 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001990 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001991 if (!sock) {
1992 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
1993 return -EEXIST;
1994 }
1995
Mike Christie5bb0b552006-04-06 21:26:46 -05001996 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1997 if (err)
1998 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001999
2000 if (conn->stop_stage != STOP_CONN_SUSPEND) {
2001 /* bind iSCSI connection and socket */
Mike Christie5bb0b552006-04-06 21:26:46 -05002002 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07002003
2004 /* setup Socket parameters */
2005 sk = sock->sk;
2006 sk->sk_reuse = 1;
2007 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
2008 sk->sk_allocation = GFP_ATOMIC;
2009
2010 /* FIXME: disable Nagle's algorithm */
2011
2012 /*
2013 * Intercept TCP callbacks for sendfile like receive
2014 * processing.
2015 */
Mike Christie5bb0b552006-04-06 21:26:46 -05002016 conn->recv_lock = &sk->sk_callback_lock;
Alex Aizman7ba24712005-08-04 19:30:08 -07002017 iscsi_conn_set_callbacks(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05002018 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002019 /*
2020 * set receive state machine into initial state
2021 */
Mike Christie5bb0b552006-04-06 21:26:46 -05002022 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -07002023 }
2024
Alex Aizman7ba24712005-08-04 19:30:08 -07002025 return 0;
2026}
2027
Mike Christie30a6c652006-04-06 21:13:39 -05002028static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002029iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Mike Christie30a6c652006-04-06 21:13:39 -05002030{
Mike Christie5bb0b552006-04-06 21:26:46 -05002031 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -05002032 struct iscsi_r2t_info *r2t;
Mike Christie30a6c652006-04-06 21:13:39 -05002033
2034 /* flush ctask's r2t queues */
Mike Christie5bb0b552006-04-06 21:26:46 -05002035 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*)))
2036 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
2037 sizeof(void*));
Mike Christie30a6c652006-04-06 21:13:39 -05002038
2039 __iscsi_ctask_cleanup(conn, ctask);
2040}
2041
Mike Christie30a6c652006-04-06 21:13:39 -05002042static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002043iscsi_tcp_suspend_conn_rx(struct iscsi_conn *conn)
Mike Christie30a6c652006-04-06 21:13:39 -05002044{
Mike Christie5bb0b552006-04-06 21:26:46 -05002045 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002046 struct sock *sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07002047
Mike Christie5bb0b552006-04-06 21:26:46 -05002048 if (!tcp_conn->sock)
2049 return;
2050
2051 sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07002052 write_lock_bh(&sk->sk_callback_lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05002053 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
Alex Aizman7ba24712005-08-04 19:30:08 -07002054 write_unlock_bh(&sk->sk_callback_lock);
Mike Christie30a6c652006-04-06 21:13:39 -05002055}
2056
2057static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002058iscsi_tcp_terminate_conn(struct iscsi_conn *conn)
Mike Christie30a6c652006-04-06 21:13:39 -05002059{
Mike Christie5bb0b552006-04-06 21:26:46 -05002060 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
2061
2062 if (!tcp_conn->sock)
Mike Christie30a6c652006-04-06 21:13:39 -05002063 return;
Mike Christie30a6c652006-04-06 21:13:39 -05002064
Mike Christie5bb0b552006-04-06 21:26:46 -05002065 sock_hold(tcp_conn->sock->sk);
Mike Christie30a6c652006-04-06 21:13:39 -05002066 iscsi_conn_restore_callbacks(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05002067 sock_put(tcp_conn->sock->sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07002068
Mike Christie5bb0b552006-04-06 21:26:46 -05002069 sock_release(tcp_conn->sock);
2070 tcp_conn->sock = NULL;
2071 conn->recv_lock = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002072}
2073
Mike Christie5bb0b552006-04-06 21:26:46 -05002074/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05002075static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002076iscsi_tcp_mgmt_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask,
2077 char *data, uint32_t data_size)
Mike Christie30a6c652006-04-06 21:13:39 -05002078{
Mike Christie5bb0b552006-04-06 21:26:46 -05002079 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -05002080
Mike Christie5bb0b552006-04-06 21:26:46 -05002081 iscsi_buf_init_virt(&tcp_mtask->headbuf, (char*)mtask->hdr,
Alex Aizman7ba24712005-08-04 19:30:08 -07002082 sizeof(struct iscsi_hdr));
Mike Christie5bb0b552006-04-06 21:26:46 -05002083 tcp_mtask->xmstate = XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07002084
Mike Christie5bb0b552006-04-06 21:26:46 -05002085 if (mtask->data_count)
2086 iscsi_buf_init_iov(&tcp_mtask->sendbuf, (char*)mtask->data,
Alex Aizman7ba24712005-08-04 19:30:08 -07002087 mtask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07002088}
2089
2090static int
2091iscsi_r2tpool_alloc(struct iscsi_session *session)
2092{
2093 int i;
2094 int cmd_i;
2095
2096 /*
2097 * initialize per-task: R2T pool and xmit queue
2098 */
2099 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2100 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05002101 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002102
2103 /*
2104 * pre-allocated x4 as much r2ts to handle race when
2105 * target acks DataOut faster than we data_xmit() queues
2106 * could replenish r2tqueue.
2107 */
2108
2109 /* R2T pool */
Mike Christie5bb0b552006-04-06 21:26:46 -05002110 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4,
2111 (void***)&tcp_ctask->r2ts,
2112 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002113 goto r2t_alloc_fail;
2114 }
2115
2116 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05002117 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07002118 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05002119 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
2120 iscsi_pool_free(&tcp_ctask->r2tpool,
2121 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002122 goto r2t_alloc_fail;
2123 }
2124
2125 /*
2126 * number of
2127 * Data-Out PDU's within R2T-sequence can be quite big;
2128 * using mempool
2129 */
Mike Christie5bb0b552006-04-06 21:26:46 -05002130 tcp_ctask->datapool = mempool_create_slab_pool(ISCSI_DTASK_DEFAULT_MAX,
2131 taskcache);
2132 if (tcp_ctask->datapool == NULL) {
2133 kfifo_free(tcp_ctask->r2tqueue);
2134 iscsi_pool_free(&tcp_ctask->r2tpool,
2135 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002136 goto r2t_alloc_fail;
2137 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002138 INIT_LIST_HEAD(&tcp_ctask->dataqueue);
Alex Aizman7ba24712005-08-04 19:30:08 -07002139 }
2140
2141 return 0;
2142
2143r2t_alloc_fail:
2144 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002145 struct iscsi_cmd_task *ctask = session->cmds[i];
2146 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2147
2148 mempool_destroy(tcp_ctask->datapool);
2149 kfifo_free(tcp_ctask->r2tqueue);
2150 iscsi_pool_free(&tcp_ctask->r2tpool,
2151 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002152 }
2153 return -ENOMEM;
2154}
2155
2156static void
2157iscsi_r2tpool_free(struct iscsi_session *session)
2158{
2159 int i;
2160
2161 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002162 struct iscsi_cmd_task *ctask = session->cmds[i];
2163 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2164
2165 mempool_destroy(tcp_ctask->datapool);
2166 kfifo_free(tcp_ctask->r2tqueue);
2167 iscsi_pool_free(&tcp_ctask->r2tpool,
2168 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002169 }
2170}
2171
Alex Aizman7ba24712005-08-04 19:30:08 -07002172static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002173iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002174 uint32_t value)
2175{
Mike Christie7b7232f2006-02-01 21:06:49 -06002176 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002177 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05002178 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002179
Alex Aizman7ba24712005-08-04 19:30:08 -07002180 switch(param) {
2181 case ISCSI_PARAM_MAX_RECV_DLENGTH: {
Mike Christie5bb0b552006-04-06 21:26:46 -05002182 char *saveptr = tcp_conn->data;
Al Virob53cb2a2005-12-15 09:17:19 +00002183 gfp_t flags = GFP_KERNEL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002184
Mike Christie5bb0b552006-04-06 21:26:46 -05002185 if (tcp_conn->data_size >= value) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002186 conn->max_recv_dlength = value;
2187 break;
2188 }
2189
2190 spin_lock_bh(&session->lock);
2191 if (conn->stop_stage == STOP_CONN_RECOVER)
2192 flags = GFP_ATOMIC;
2193 spin_unlock_bh(&session->lock);
2194
2195 if (value <= PAGE_SIZE)
Mike Christie5bb0b552006-04-06 21:26:46 -05002196 tcp_conn->data = kmalloc(value, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07002197 else
Mike Christie5bb0b552006-04-06 21:26:46 -05002198 tcp_conn->data = (void*)__get_free_pages(flags,
Alex Aizman7ba24712005-08-04 19:30:08 -07002199 get_order(value));
Mike Christie5bb0b552006-04-06 21:26:46 -05002200 if (tcp_conn->data == NULL) {
2201 tcp_conn->data = saveptr;
Alex Aizman7ba24712005-08-04 19:30:08 -07002202 return -ENOMEM;
2203 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002204 if (tcp_conn->data_size <= PAGE_SIZE)
Alex Aizman7ba24712005-08-04 19:30:08 -07002205 kfree(saveptr);
2206 else
2207 free_pages((unsigned long)saveptr,
Mike Christie5bb0b552006-04-06 21:26:46 -05002208 get_order(tcp_conn->data_size));
Alex Aizman7ba24712005-08-04 19:30:08 -07002209 conn->max_recv_dlength = value;
Mike Christie5bb0b552006-04-06 21:26:46 -05002210 tcp_conn->data_size = value;
Alex Aizman7ba24712005-08-04 19:30:08 -07002211 }
2212 break;
2213 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2214 conn->max_xmit_dlength = value;
2215 break;
2216 case ISCSI_PARAM_HDRDGST_EN:
2217 conn->hdrdgst_en = value;
Mike Christie5bb0b552006-04-06 21:26:46 -05002218 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -07002219 if (conn->hdrdgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002220 tcp_conn->hdr_size += sizeof(__u32);
2221 if (!tcp_conn->tx_tfm)
2222 tcp_conn->tx_tfm = crypto_alloc_tfm("crc32c",
2223 0);
2224 if (!tcp_conn->tx_tfm)
Alex Aizman7ba24712005-08-04 19:30:08 -07002225 return -ENOMEM;
Mike Christie5bb0b552006-04-06 21:26:46 -05002226 if (!tcp_conn->rx_tfm)
2227 tcp_conn->rx_tfm = crypto_alloc_tfm("crc32c",
2228 0);
2229 if (!tcp_conn->rx_tfm) {
2230 crypto_free_tfm(tcp_conn->tx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002231 return -ENOMEM;
2232 }
2233 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05002234 if (tcp_conn->tx_tfm)
2235 crypto_free_tfm(tcp_conn->tx_tfm);
2236 if (tcp_conn->rx_tfm)
2237 crypto_free_tfm(tcp_conn->rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002238 }
2239 break;
2240 case ISCSI_PARAM_DATADGST_EN:
2241 conn->datadgst_en = value;
2242 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002243 if (!tcp_conn->data_tx_tfm)
2244 tcp_conn->data_tx_tfm =
Alex Aizman7ba24712005-08-04 19:30:08 -07002245 crypto_alloc_tfm("crc32c", 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05002246 if (!tcp_conn->data_tx_tfm)
Alex Aizman7ba24712005-08-04 19:30:08 -07002247 return -ENOMEM;
Mike Christie5bb0b552006-04-06 21:26:46 -05002248 if (!tcp_conn->data_rx_tfm)
2249 tcp_conn->data_rx_tfm =
Alex Aizman7ba24712005-08-04 19:30:08 -07002250 crypto_alloc_tfm("crc32c", 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05002251 if (!tcp_conn->data_rx_tfm) {
2252 crypto_free_tfm(tcp_conn->data_tx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002253 return -ENOMEM;
2254 }
2255 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05002256 if (tcp_conn->data_tx_tfm)
2257 crypto_free_tfm(tcp_conn->data_tx_tfm);
2258 if (tcp_conn->data_rx_tfm)
2259 crypto_free_tfm(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002260 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002261 tcp_conn->sendpage = conn->datadgst_en ?
2262 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002263 break;
2264 case ISCSI_PARAM_INITIAL_R2T_EN:
2265 session->initial_r2t_en = value;
2266 break;
2267 case ISCSI_PARAM_MAX_R2T:
2268 if (session->max_r2t == roundup_pow_of_two(value))
2269 break;
2270 iscsi_r2tpool_free(session);
2271 session->max_r2t = value;
2272 if (session->max_r2t & (session->max_r2t - 1))
2273 session->max_r2t = roundup_pow_of_two(session->max_r2t);
2274 if (iscsi_r2tpool_alloc(session))
2275 return -ENOMEM;
2276 break;
2277 case ISCSI_PARAM_IMM_DATA_EN:
2278 session->imm_data_en = value;
2279 break;
2280 case ISCSI_PARAM_FIRST_BURST:
2281 session->first_burst = value;
2282 break;
2283 case ISCSI_PARAM_MAX_BURST:
2284 session->max_burst = value;
2285 break;
2286 case ISCSI_PARAM_PDU_INORDER_EN:
2287 session->pdu_inorder_en = value;
2288 break;
2289 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2290 session->dataseq_inorder_en = value;
2291 break;
2292 case ISCSI_PARAM_ERL:
2293 session->erl = value;
2294 break;
2295 case ISCSI_PARAM_IFMARKER_EN:
2296 BUG_ON(value);
2297 session->ifmarker_en = value;
2298 break;
2299 case ISCSI_PARAM_OFMARKER_EN:
2300 BUG_ON(value);
2301 session->ofmarker_en = value;
2302 break;
Mike Christie8d2860b2006-05-02 19:46:47 -05002303 case ISCSI_PARAM_EXP_STATSN:
2304 conn->exp_statsn = value;
2305 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002306 default:
2307 break;
2308 }
2309
2310 return 0;
2311}
2312
2313static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002314iscsi_session_get_param(struct iscsi_cls_session *cls_session,
Mike Christie7b8631b2006-01-13 18:05:50 -06002315 enum iscsi_param param, uint32_t *value)
Alex Aizman7ba24712005-08-04 19:30:08 -07002316{
Mike Christie7b7232f2006-02-01 21:06:49 -06002317 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
Mike Christie7b8631b2006-01-13 18:05:50 -06002318 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
Alex Aizman7ba24712005-08-04 19:30:08 -07002319
2320 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002321 case ISCSI_PARAM_INITIAL_R2T_EN:
2322 *value = session->initial_r2t_en;
2323 break;
2324 case ISCSI_PARAM_MAX_R2T:
2325 *value = session->max_r2t;
2326 break;
2327 case ISCSI_PARAM_IMM_DATA_EN:
2328 *value = session->imm_data_en;
2329 break;
2330 case ISCSI_PARAM_FIRST_BURST:
2331 *value = session->first_burst;
2332 break;
2333 case ISCSI_PARAM_MAX_BURST:
2334 *value = session->max_burst;
2335 break;
2336 case ISCSI_PARAM_PDU_INORDER_EN:
2337 *value = session->pdu_inorder_en;
2338 break;
2339 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2340 *value = session->dataseq_inorder_en;
2341 break;
2342 case ISCSI_PARAM_ERL:
2343 *value = session->erl;
2344 break;
2345 case ISCSI_PARAM_IFMARKER_EN:
2346 *value = session->ifmarker_en;
2347 break;
2348 case ISCSI_PARAM_OFMARKER_EN:
2349 *value = session->ofmarker_en;
2350 break;
2351 default:
Mike Christiefd7255f2006-04-06 21:13:36 -05002352 return -EINVAL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002353 }
2354
2355 return 0;
2356}
2357
Mike Christie7b8631b2006-01-13 18:05:50 -06002358static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002359iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
2360 enum iscsi_param param, uint32_t *value)
Mike Christie7b8631b2006-01-13 18:05:50 -06002361{
Mike Christie7b7232f2006-02-01 21:06:49 -06002362 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002363 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christiefd7255f2006-04-06 21:13:36 -05002364 struct inet_sock *inet;
Mike Christie7b8631b2006-01-13 18:05:50 -06002365
2366 switch(param) {
2367 case ISCSI_PARAM_MAX_RECV_DLENGTH:
2368 *value = conn->max_recv_dlength;
2369 break;
2370 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2371 *value = conn->max_xmit_dlength;
2372 break;
2373 case ISCSI_PARAM_HDRDGST_EN:
2374 *value = conn->hdrdgst_en;
2375 break;
2376 case ISCSI_PARAM_DATADGST_EN:
2377 *value = conn->datadgst_en;
2378 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05002379 case ISCSI_PARAM_CONN_PORT:
2380 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002381 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002382 mutex_unlock(&conn->xmitmutex);
2383 return -EINVAL;
2384 }
2385
Mike Christie5bb0b552006-04-06 21:26:46 -05002386 inet = inet_sk(tcp_conn->sock->sk);
Mike Christiefd7255f2006-04-06 21:13:36 -05002387 *value = be16_to_cpu(inet->dport);
2388 mutex_unlock(&conn->xmitmutex);
Mike Christie8d2860b2006-05-02 19:46:47 -05002389 case ISCSI_PARAM_EXP_STATSN:
2390 *value = conn->exp_statsn;
2391 break;
Mike Christie7b8631b2006-01-13 18:05:50 -06002392 default:
Mike Christiefd7255f2006-04-06 21:13:36 -05002393 return -EINVAL;
Mike Christie7b8631b2006-01-13 18:05:50 -06002394 }
2395
2396 return 0;
2397}
2398
Mike Christiefd7255f2006-04-06 21:13:36 -05002399static int
2400iscsi_conn_get_str_param(struct iscsi_cls_conn *cls_conn,
2401 enum iscsi_param param, char *buf)
2402{
2403 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002404 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christiefd7255f2006-04-06 21:13:36 -05002405 struct sock *sk;
2406 struct inet_sock *inet;
2407 struct ipv6_pinfo *np;
2408 int len = 0;
2409
2410 switch (param) {
2411 case ISCSI_PARAM_CONN_ADDRESS:
2412 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002413 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002414 mutex_unlock(&conn->xmitmutex);
2415 return -EINVAL;
2416 }
2417
Mike Christie5bb0b552006-04-06 21:26:46 -05002418 sk = tcp_conn->sock->sk;
Mike Christiefd7255f2006-04-06 21:13:36 -05002419 if (sk->sk_family == PF_INET) {
2420 inet = inet_sk(sk);
2421 len = sprintf(buf, "%u.%u.%u.%u\n",
2422 NIPQUAD(inet->daddr));
2423 } else {
2424 np = inet6_sk(sk);
2425 len = sprintf(buf,
2426 "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
2427 NIP6(np->daddr));
2428 }
2429 mutex_unlock(&conn->xmitmutex);
2430 break;
2431 default:
2432 return -EINVAL;
2433 }
2434
2435 return len;
2436}
2437
Alex Aizman7ba24712005-08-04 19:30:08 -07002438static void
Mike Christie7b7232f2006-02-01 21:06:49 -06002439iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07002440{
Mike Christie7b7232f2006-02-01 21:06:49 -06002441 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002442 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002443
2444 stats->txdata_octets = conn->txdata_octets;
2445 stats->rxdata_octets = conn->rxdata_octets;
2446 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
2447 stats->dataout_pdus = conn->dataout_pdus_cnt;
2448 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
2449 stats->datain_pdus = conn->datain_pdus_cnt;
2450 stats->r2t_pdus = conn->r2t_pdus_cnt;
2451 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
2452 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
2453 stats->custom_length = 3;
2454 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05002455 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002456 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05002457 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002458 strcpy(stats->custom[2].desc, "eh_abort_cnt");
2459 stats->custom[2].value = conn->eh_abort_cnt;
2460}
2461
Mike Christie5bb0b552006-04-06 21:26:46 -05002462static struct iscsi_cls_session *
2463iscsi_tcp_session_create(struct iscsi_transport *iscsit,
2464 struct scsi_transport_template *scsit,
2465 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07002466{
Mike Christie5bb0b552006-04-06 21:26:46 -05002467 struct iscsi_cls_session *cls_session;
2468 struct iscsi_session *session;
2469 uint32_t hn;
2470 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07002471
Mike Christie5bb0b552006-04-06 21:26:46 -05002472 cls_session = iscsi_session_setup(iscsit, scsit,
2473 sizeof(struct iscsi_tcp_cmd_task),
2474 sizeof(struct iscsi_tcp_mgmt_task),
2475 initial_cmdsn, &hn);
2476 if (!cls_session)
2477 return NULL;
2478 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07002479
Mike Christie5bb0b552006-04-06 21:26:46 -05002480 session = class_to_transport_session(cls_session);
2481 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2482 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2483 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2484
2485 ctask->hdr = &tcp_ctask->hdr;
2486 }
2487
2488 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
2489 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
2490 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
2491
2492 mtask->hdr = &tcp_mtask->hdr;
2493 }
2494
2495 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
2496 goto r2tpool_alloc_fail;
2497
2498 return cls_session;
2499
2500r2tpool_alloc_fail:
2501 iscsi_session_teardown(cls_session);
2502 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002503}
2504
Mike Christie5bb0b552006-04-06 21:26:46 -05002505static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2506{
2507 struct iscsi_session *session = class_to_transport_session(cls_session);
2508 struct iscsi_data_task *dtask, *n;
2509 int cmd_i;
2510
2511 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2512 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2513 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2514
2515 list_for_each_entry_safe(dtask, n, &tcp_ctask->dataqueue,
2516 item) {
2517 list_del(&dtask->item);
2518 mempool_free(dtask, tcp_ctask->datapool);
2519 }
2520 }
2521
2522 iscsi_r2tpool_free(class_to_transport_session(cls_session));
2523 iscsi_session_teardown(cls_session);
2524}
2525
2526static struct scsi_host_template iscsi_sht = {
2527 .name = "iSCSI Initiator over TCP/IP, v."
2528 ISCSI_VERSION_STR,
2529 .queuecommand = iscsi_queuecommand,
2530 .change_queue_depth = iscsi_change_queue_depth,
2531 .can_queue = ISCSI_XMIT_CMDS_MAX - 1,
2532 .sg_tablesize = ISCSI_SG_TABLESIZE,
2533 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
2534 .eh_abort_handler = iscsi_eh_abort,
2535 .eh_host_reset_handler = iscsi_eh_host_reset,
2536 .use_clustering = DISABLE_CLUSTERING,
2537 .proc_name = "iscsi_tcp",
2538 .this_id = -1,
2539};
2540
Alex Aizman7ba24712005-08-04 19:30:08 -07002541static struct iscsi_transport iscsi_tcp_transport = {
2542 .owner = THIS_MODULE,
2543 .name = "tcp",
2544 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
2545 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05002546 .param_mask = ISCSI_MAX_RECV_DLENGTH |
2547 ISCSI_MAX_XMIT_DLENGTH |
2548 ISCSI_HDRDGST_EN |
2549 ISCSI_DATADGST_EN |
2550 ISCSI_INITIAL_R2T_EN |
2551 ISCSI_MAX_R2T |
2552 ISCSI_IMM_DATA_EN |
2553 ISCSI_FIRST_BURST |
2554 ISCSI_MAX_BURST |
2555 ISCSI_PDU_INORDER_EN |
2556 ISCSI_DATASEQ_INORDER_EN |
2557 ISCSI_ERL |
2558 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05002559 ISCSI_CONN_ADDRESS |
2560 ISCSI_EXP_STATSN,
Alex Aizman7ba24712005-08-04 19:30:08 -07002561 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06002562 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07002563 .max_conn = 1,
2564 .max_cmd_len = ISCSI_TCP_MAX_CMD_LEN,
Mike Christie5bb0b552006-04-06 21:26:46 -05002565 /* session management */
2566 .create_session = iscsi_tcp_session_create,
2567 .destroy_session = iscsi_tcp_session_destroy,
2568 /* connection management */
2569 .create_conn = iscsi_tcp_conn_create,
2570 .bind_conn = iscsi_tcp_conn_bind,
2571 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07002572 .set_param = iscsi_conn_set_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002573 .get_conn_param = iscsi_conn_get_param,
Mike Christiefd7255f2006-04-06 21:13:36 -05002574 .get_conn_str_param = iscsi_conn_get_str_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002575 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002576 .start_conn = iscsi_conn_start,
2577 .stop_conn = iscsi_conn_stop,
Mike Christie5bb0b552006-04-06 21:26:46 -05002578 /* these are called as part of conn recovery */
2579 .suspend_conn_recv = iscsi_tcp_suspend_conn_rx,
2580 .terminate_conn = iscsi_tcp_terminate_conn,
2581 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002582 .send_pdu = iscsi_conn_send_pdu,
2583 .get_stats = iscsi_conn_get_stats,
Mike Christie5bb0b552006-04-06 21:26:46 -05002584 .init_cmd_task = iscsi_tcp_cmd_init,
2585 .init_mgmt_task = iscsi_tcp_mgmt_init,
2586 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2587 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2588 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2589 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002590 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002591};
2592
2593static int __init
2594iscsi_tcp_init(void)
2595{
Alex Aizman7ba24712005-08-04 19:30:08 -07002596 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002597 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2598 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002599 return -EINVAL;
2600 }
2601 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2602
2603 taskcache = kmem_cache_create("iscsi_taskcache",
2604 sizeof(struct iscsi_data_task), 0,
Christoph Lameterac2b8982006-03-22 00:08:15 -08002605 SLAB_HWCACHE_ALIGN, NULL, NULL);
Alex Aizman7ba24712005-08-04 19:30:08 -07002606 if (!taskcache)
2607 return -ENOMEM;
2608
Mike Christie7b8631b2006-01-13 18:05:50 -06002609 if (!iscsi_register_transport(&iscsi_tcp_transport))
Alex Aizman7ba24712005-08-04 19:30:08 -07002610 kmem_cache_destroy(taskcache);
2611
Mike Christie7b8631b2006-01-13 18:05:50 -06002612 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002613}
2614
2615static void __exit
2616iscsi_tcp_exit(void)
2617{
2618 iscsi_unregister_transport(&iscsi_tcp_transport);
2619 kmem_cache_destroy(taskcache);
2620}
2621
2622module_init(iscsi_tcp_init);
2623module_exit(iscsi_tcp_exit);