blob: c0ce6ab81a9df71b56a9b8ee9c93b7f30c7b19ee [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) {
925 if (rc == -EAGAIN) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500926 rd_desc->count = tcp_conn->in.datalen -
927 tcp_conn->in.ctask->data_count;
Alex Aizman7ba24712005-08-04 19:30:08 -0700928 goto again;
929 }
930 iscsi_conn_failure(conn, rc);
931 return 0;
932 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500933 tcp_conn->in.copy -= tcp_conn->in.padding;
934 tcp_conn->in.offset += tcp_conn->in.padding;
Mike Christie8a47cd32005-11-30 02:27:19 -0600935 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500936 if (tcp_conn->in.padding) {
937 debug_tcp("padding -> %d\n",
938 tcp_conn->in.padding);
939 memset(pad, 0, tcp_conn->in.padding);
940 sg_init_one(&sg, pad, tcp_conn->in.padding);
941 crypto_digest_update(tcp_conn->data_rx_tfm,
942 &sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700943 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500944 crypto_digest_final(tcp_conn->data_rx_tfm,
945 (u8 *) & tcp_conn->in.datadgst);
946 debug_tcp("rx digest 0x%x\n", tcp_conn->in.datadgst);
947 tcp_conn->in_progress = IN_PROGRESS_DDIGEST_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700948 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500949 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700950 }
951
952 debug_tcp("f, processed %d from out of %d padding %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500953 tcp_conn->in.offset - offset, (int)len, tcp_conn->in.padding);
954 BUG_ON(tcp_conn->in.offset - offset > len);
Alex Aizman7ba24712005-08-04 19:30:08 -0700955
Mike Christie5bb0b552006-04-06 21:26:46 -0500956 if (tcp_conn->in.offset - offset != len) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700957 debug_tcp("continue to process %d bytes\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500958 (int)len - (tcp_conn->in.offset - offset));
Alex Aizman7ba24712005-08-04 19:30:08 -0700959 goto more;
960 }
961
962nomore:
Mike Christie5bb0b552006-04-06 21:26:46 -0500963 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700964 BUG_ON(processed == 0);
965 return processed;
966
967again:
Mike Christie5bb0b552006-04-06 21:26:46 -0500968 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700969 debug_tcp("c, processed %d from out of %d rd_desc_cnt %d\n",
970 processed, (int)len, (int)rd_desc->count);
971 BUG_ON(processed == 0);
972 BUG_ON(processed > len);
973
974 conn->rxdata_octets += processed;
975 return processed;
976}
977
978static void
979iscsi_tcp_data_ready(struct sock *sk, int flag)
980{
981 struct iscsi_conn *conn = sk->sk_user_data;
982 read_descriptor_t rd_desc;
983
984 read_lock(&sk->sk_callback_lock);
985
986 /* use rd_desc to pass 'conn' to iscsi_tcp_data_recv */
987 rd_desc.arg.data = conn;
988 rd_desc.count = 0;
989 tcp_read_sock(sk, &rd_desc, iscsi_tcp_data_recv);
990
991 read_unlock(&sk->sk_callback_lock);
992}
993
994static void
995iscsi_tcp_state_change(struct sock *sk)
996{
Mike Christie5bb0b552006-04-06 21:26:46 -0500997 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -0700998 struct iscsi_conn *conn;
999 struct iscsi_session *session;
1000 void (*old_state_change)(struct sock *);
1001
1002 read_lock(&sk->sk_callback_lock);
1003
1004 conn = (struct iscsi_conn*)sk->sk_user_data;
1005 session = conn->session;
1006
Mike Christiee6273992005-11-29 23:12:49 -06001007 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1008 sk->sk_state == TCP_CLOSE) &&
1009 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001010 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1011 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1012 }
1013
Mike Christie5bb0b552006-04-06 21:26:46 -05001014 tcp_conn = conn->dd_data;
1015 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001016
1017 read_unlock(&sk->sk_callback_lock);
1018
1019 old_state_change(sk);
1020}
1021
1022/**
1023 * iscsi_write_space - Called when more output buffer space is available
1024 * @sk: socket space is available for
1025 **/
1026static void
1027iscsi_write_space(struct sock *sk)
1028{
1029 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001030 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1031
1032 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001033 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie5bb0b552006-04-06 21:26:46 -05001034 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie55e32992006-01-13 18:05:53 -06001035 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001036}
1037
1038static void
1039iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1040{
Mike Christie5bb0b552006-04-06 21:26:46 -05001041 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1042 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001043
1044 /* assign new callbacks */
1045 write_lock_bh(&sk->sk_callback_lock);
1046 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001047 tcp_conn->old_data_ready = sk->sk_data_ready;
1048 tcp_conn->old_state_change = sk->sk_state_change;
1049 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001050 sk->sk_data_ready = iscsi_tcp_data_ready;
1051 sk->sk_state_change = iscsi_tcp_state_change;
1052 sk->sk_write_space = iscsi_write_space;
1053 write_unlock_bh(&sk->sk_callback_lock);
1054}
1055
1056static void
1057iscsi_conn_restore_callbacks(struct iscsi_conn *conn)
1058{
Mike Christie5bb0b552006-04-06 21:26:46 -05001059 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1060 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001061
1062 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1063 write_lock_bh(&sk->sk_callback_lock);
1064 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001065 sk->sk_data_ready = tcp_conn->old_data_ready;
1066 sk->sk_state_change = tcp_conn->old_state_change;
1067 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001068 sk->sk_no_check = 0;
1069 write_unlock_bh(&sk->sk_callback_lock);
1070}
1071
1072/**
1073 * iscsi_send - generic send routine
1074 * @sk: kernel's socket
1075 * @buf: buffer to write from
1076 * @size: actual size to write
1077 * @flags: socket's flags
Alex Aizman7ba24712005-08-04 19:30:08 -07001078 */
1079static inline int
FUJITA Tomonori56851692006-01-13 18:05:44 -06001080iscsi_send(struct iscsi_conn *conn, struct iscsi_buf *buf, int size, int flags)
Alex Aizman7ba24712005-08-04 19:30:08 -07001081{
Mike Christie5bb0b552006-04-06 21:26:46 -05001082 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1083 struct socket *sk = tcp_conn->sock;
Mike Christie7cae5152006-01-13 18:05:47 -06001084 int offset = buf->sg.offset + buf->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001085
Mike Christie7cae5152006-01-13 18:05:47 -06001086 /*
1087 * if we got use_sg=0 or are sending something we kmallocd
1088 * then we did not have to do kmap (kmap returns page_address)
1089 *
1090 * if we got use_sg > 0, but had to drop down, we do not
1091 * set clustering so this should only happen for that
1092 * slab case.
1093 */
1094 if (buf->use_sendmsg)
1095 return sock_no_sendpage(sk, buf->sg.page, offset, size, flags);
1096 else
Mike Christie5bb0b552006-04-06 21:26:46 -05001097 return tcp_conn->sendpage(sk, buf->sg.page, offset, size,
1098 flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001099}
1100
1101/**
1102 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1103 * @conn: iscsi connection
1104 * @buf: buffer to write from
1105 * @datalen: lenght of data to be sent after the header
1106 *
1107 * Notes:
1108 * (Tx, Fast Path)
1109 **/
1110static inline int
1111iscsi_sendhdr(struct iscsi_conn *conn, struct iscsi_buf *buf, int datalen)
1112{
Mike Christie5bb0b552006-04-06 21:26:46 -05001113 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001114 int flags = 0; /* MSG_DONTWAIT; */
1115 int res, size;
1116
1117 size = buf->sg.length - buf->sent;
1118 BUG_ON(buf->sent + size > buf->sg.length);
1119 if (buf->sent + size != buf->sg.length || datalen)
1120 flags |= MSG_MORE;
1121
FUJITA Tomonori56851692006-01-13 18:05:44 -06001122 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001123 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size, buf->sent, res);
1124 if (res >= 0) {
1125 conn->txdata_octets += res;
1126 buf->sent += res;
1127 if (size != res)
1128 return -EAGAIN;
1129 return 0;
1130 } else if (res == -EAGAIN) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001131 tcp_conn = conn->dd_data;
1132 tcp_conn->sendpage_failures_cnt++;
1133 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Alex Aizman7ba24712005-08-04 19:30:08 -07001134 } else if (res == -EPIPE)
1135 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1136
1137 return res;
1138}
1139
1140/**
1141 * iscsi_sendpage - send one page of iSCSI Data-Out.
1142 * @conn: iscsi connection
1143 * @buf: buffer to write from
1144 * @count: remaining data
1145 * @sent: number of bytes sent
1146 *
1147 * Notes:
1148 * (Tx, Fast Path)
1149 **/
1150static inline int
1151iscsi_sendpage(struct iscsi_conn *conn, struct iscsi_buf *buf,
1152 int *count, int *sent)
1153{
Mike Christie5bb0b552006-04-06 21:26:46 -05001154 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001155 int flags = 0; /* MSG_DONTWAIT; */
1156 int res, size;
1157
1158 size = buf->sg.length - buf->sent;
1159 BUG_ON(buf->sent + size > buf->sg.length);
1160 if (size > *count)
1161 size = *count;
Mike Christieb13941f2005-09-12 21:01:28 -05001162 if (buf->sent + size != buf->sg.length || *count != size)
Alex Aizman7ba24712005-08-04 19:30:08 -07001163 flags |= MSG_MORE;
1164
FUJITA Tomonori56851692006-01-13 18:05:44 -06001165 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001166 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1167 size, buf->sent, *count, *sent, res);
1168 if (res >= 0) {
1169 conn->txdata_octets += res;
1170 buf->sent += res;
1171 *count -= res;
1172 *sent += res;
1173 if (size != res)
1174 return -EAGAIN;
1175 return 0;
1176 } else if (res == -EAGAIN) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001177 tcp_conn = conn->dd_data;
1178 tcp_conn->sendpage_failures_cnt++;
1179 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Alex Aizman7ba24712005-08-04 19:30:08 -07001180 } else if (res == -EPIPE)
1181 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1182
1183 return res;
1184}
1185
1186static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -05001187iscsi_data_digest_init(struct iscsi_tcp_conn *tcp_conn,
1188 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001189{
Mike Christie5bb0b552006-04-06 21:26:46 -05001190 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1191
1192 BUG_ON(!tcp_conn->data_tx_tfm);
1193 crypto_digest_init(tcp_conn->data_tx_tfm);
1194 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001195}
1196
Arjan van de Ven858119e2006-01-14 13:20:43 -08001197static int
Alex Aizman7ba24712005-08-04 19:30:08 -07001198iscsi_digest_final_send(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1199 struct iscsi_buf *buf, uint32_t *digest, int final)
1200{
Mike Christie5bb0b552006-04-06 21:26:46 -05001201 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1202 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001203 int rc = 0;
1204 int sent = 0;
1205
1206 if (final)
Mike Christie5bb0b552006-04-06 21:26:46 -05001207 crypto_digest_final(tcp_conn->data_tx_tfm, (u8*)digest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001208
1209 iscsi_buf_init_virt(buf, (char*)digest, 4);
Mike Christie5bb0b552006-04-06 21:26:46 -05001210 rc = iscsi_sendpage(conn, buf, &tcp_ctask->digest_count, &sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001211 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001212 tcp_ctask->datadigest = *digest;
1213 tcp_ctask->xmstate |= XMSTATE_DATA_DIGEST;
Alex Aizman7ba24712005-08-04 19:30:08 -07001214 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001215 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001216 return rc;
1217}
1218
1219/**
1220 * iscsi_solicit_data_cont - initialize next Data-Out
1221 * @conn: iscsi connection
1222 * @ctask: scsi command task
1223 * @r2t: R2T info
1224 * @left: bytes left to transfer
1225 *
1226 * Notes:
1227 * Initialize next Data-Out within this R2T sequence and continue
1228 * to process next Scatter-Gather element(if any) of this SCSI command.
1229 *
1230 * Called under connection lock.
1231 **/
1232static void
1233iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1234 struct iscsi_r2t_info *r2t, int left)
1235{
Mike Christie5bb0b552006-04-06 21:26:46 -05001236 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001237 struct iscsi_data *hdr;
1238 struct iscsi_data_task *dtask;
1239 struct scsi_cmnd *sc = ctask->sc;
1240 int new_offset;
1241
Mike Christie5bb0b552006-04-06 21:26:46 -05001242 dtask = mempool_alloc(tcp_ctask->datapool, GFP_ATOMIC);
Alex Aizman7ba24712005-08-04 19:30:08 -07001243 BUG_ON(!dtask);
Mike Christie30a6c652006-04-06 21:13:39 -05001244 INIT_LIST_HEAD(&dtask->item);
Alex Aizman7ba24712005-08-04 19:30:08 -07001245 hdr = &dtask->hdr;
1246 memset(hdr, 0, sizeof(struct iscsi_data));
1247 hdr->ttt = r2t->ttt;
1248 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1249 r2t->solicit_datasn++;
1250 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001251 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1252 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001253 hdr->exp_statsn = r2t->exp_statsn;
1254 new_offset = r2t->data_offset + r2t->sent;
1255 hdr->offset = cpu_to_be32(new_offset);
1256 if (left > conn->max_xmit_dlength) {
1257 hton24(hdr->dlength, conn->max_xmit_dlength);
1258 r2t->data_count = conn->max_xmit_dlength;
1259 } else {
1260 hton24(hdr->dlength, left);
1261 r2t->data_count = left;
1262 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1263 }
1264 conn->dataout_pdus_cnt++;
1265
Mike Christieaf973482005-09-12 21:01:32 -05001266 iscsi_buf_init_virt(&r2t->headbuf, (char*)hdr,
1267 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001268
1269 r2t->dtask = dtask;
1270
1271 if (sc->use_sg && !iscsi_buf_left(&r2t->sendbuf)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001272 BUG_ON(tcp_ctask->bad_sg == r2t->sg);
Alex Aizman7ba24712005-08-04 19:30:08 -07001273 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1274 r2t->sg += 1;
1275 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001276 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -07001277 (char*)sc->request_buffer + new_offset,
1278 r2t->data_count);
1279
Mike Christie5bb0b552006-04-06 21:26:46 -05001280 list_add(&dtask->item, &tcp_ctask->dataqueue);
Alex Aizman7ba24712005-08-04 19:30:08 -07001281}
1282
1283static void
1284iscsi_unsolicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1285{
Mike Christie5bb0b552006-04-06 21:26:46 -05001286 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001287 struct iscsi_data_task *dtask;
1288
Mike Christie5bb0b552006-04-06 21:26:46 -05001289 dtask = mempool_alloc(tcp_ctask->datapool, GFP_ATOMIC);
Alex Aizman7ba24712005-08-04 19:30:08 -07001290 BUG_ON(!dtask);
Mike Christie30a6c652006-04-06 21:13:39 -05001291 INIT_LIST_HEAD(&dtask->item);
Alex Aizman7ba24712005-08-04 19:30:08 -07001292
Mike Christie5bb0b552006-04-06 21:26:46 -05001293 iscsi_prep_unsolicit_data_pdu(ctask, &dtask->hdr,
1294 tcp_ctask->r2t_data_count);
1295 iscsi_buf_init_virt(&tcp_ctask->headbuf, (char*)&dtask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001296 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001297
Mike Christie5bb0b552006-04-06 21:26:46 -05001298 list_add(&dtask->item, &tcp_ctask->dataqueue);
1299 tcp_ctask->dtask = dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001300}
1301
1302/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001303 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001304 * @conn: iscsi connection
1305 * @ctask: scsi command task
1306 * @sc: scsi command
1307 **/
1308static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001309iscsi_tcp_cmd_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001310{
Mike Christie5bb0b552006-04-06 21:26:46 -05001311 struct scsi_cmnd *sc = ctask->sc;
1312 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001313
Mike Christie5bb0b552006-04-06 21:26:46 -05001314 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Alex Aizman7ba24712005-08-04 19:30:08 -07001315
Mike Christie5bb0b552006-04-06 21:26:46 -05001316 tcp_ctask->sent = 0;
1317 tcp_ctask->sg_count = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001318
1319 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001320 tcp_ctask->xmstate = XMSTATE_W_HDR;
1321 tcp_ctask->exp_r2tsn = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001322 BUG_ON(ctask->total_length == 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05001323
Alex Aizman7ba24712005-08-04 19:30:08 -07001324 if (sc->use_sg) {
1325 struct scatterlist *sg = sc->request_buffer;
1326
Mike Christie5bb0b552006-04-06 21:26:46 -05001327 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1328 &sg[tcp_ctask->sg_count++]);
1329 tcp_ctask->sg = sg;
1330 tcp_ctask->bad_sg = sg + sc->use_sg;
Alex Aizman7ba24712005-08-04 19:30:08 -07001331 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001332 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
1333 sc->request_buffer,
1334 sc->request_bufflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001335
Mike Christie5bb0b552006-04-06 21:26:46 -05001336 if (ctask->imm_count)
1337 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001338
Mike Christie5bb0b552006-04-06 21:26:46 -05001339 tcp_ctask->pad_count = ctask->total_length & (ISCSI_PAD_LEN-1);
1340 if (tcp_ctask->pad_count) {
1341 tcp_ctask->pad_count = ISCSI_PAD_LEN -
1342 tcp_ctask->pad_count;
1343 debug_scsi("write padding %d bytes\n",
1344 tcp_ctask->pad_count);
1345 tcp_ctask->xmstate |= XMSTATE_W_PAD;
1346 }
1347
1348 if (ctask->unsol_count)
1349 tcp_ctask->xmstate |= XMSTATE_UNS_HDR |
1350 XMSTATE_UNS_INIT;
1351 tcp_ctask->r2t_data_count = ctask->total_length -
Alex Aizman7ba24712005-08-04 19:30:08 -07001352 ctask->imm_count -
1353 ctask->unsol_count;
1354
1355 debug_scsi("cmd [itt %x total %d imm %d imm_data %d "
1356 "r2t_data %d]\n",
1357 ctask->itt, ctask->total_length, ctask->imm_count,
Mike Christie5bb0b552006-04-06 21:26:46 -05001358 ctask->unsol_count, tcp_ctask->r2t_data_count);
1359 } else
1360 tcp_ctask->xmstate = XMSTATE_R_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001361
Mike Christie5bb0b552006-04-06 21:26:46 -05001362 iscsi_buf_init_virt(&tcp_ctask->headbuf, (char*)ctask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001363 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001364}
1365
1366/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001367 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001368 * @conn: iscsi connection
1369 * @mtask: task management task
1370 *
1371 * Notes:
1372 * The function can return -EAGAIN in which case caller must
1373 * call it again later, or recover. '0' return code means successful
1374 * xmit.
1375 *
1376 * Management xmit state machine consists of two states:
1377 * IN_PROGRESS_IMM_HEAD - PDU Header xmit in progress
1378 * IN_PROGRESS_IMM_DATA - PDU Data xmit in progress
1379 **/
1380static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001381iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001382{
Mike Christie5bb0b552006-04-06 21:26:46 -05001383 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001384
1385 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001386 conn->id, tcp_mtask->xmstate, mtask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001387
Mike Christie5bb0b552006-04-06 21:26:46 -05001388 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR) {
1389 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001390 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001391 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christieaf973482005-09-12 21:01:32 -05001392 if (conn->c_stage != ISCSI_CONN_INITIAL_STAGE &&
Mike Christie30a6c652006-04-06 21:13:39 -05001393 conn->stop_stage != STOP_CONN_RECOVER &&
Mike Christieaf973482005-09-12 21:01:32 -05001394 conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001395 iscsi_hdr_digest(conn, &tcp_mtask->headbuf,
1396 (u8*)tcp_mtask->hdrext);
1397 if (iscsi_sendhdr(conn, &tcp_mtask->headbuf,
1398 mtask->data_count)) {
1399 tcp_mtask->xmstate |= XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001400 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001401 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001402 return -EAGAIN;
1403 }
1404 }
1405
Mike Christie5bb0b552006-04-06 21:26:46 -05001406 if (tcp_mtask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001407 BUG_ON(!mtask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001408 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001409 /* FIXME: implement.
1410 * Virtual buffer could be spreaded across multiple pages...
1411 */
1412 do {
Mike Christie5bb0b552006-04-06 21:26:46 -05001413 if (iscsi_sendpage(conn, &tcp_mtask->sendbuf,
1414 &mtask->data_count, &tcp_mtask->sent)) {
1415 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001416 return -EAGAIN;
1417 }
1418 } while (mtask->data_count);
1419 }
1420
Mike Christie5bb0b552006-04-06 21:26:46 -05001421 BUG_ON(tcp_mtask->xmstate != XMSTATE_IDLE);
1422 if (mtask->hdr->itt == cpu_to_be32(ISCSI_RESERVED_TAG)) {
1423 struct iscsi_session *session = conn->session;
1424
1425 spin_lock_bh(&session->lock);
1426 list_del(&conn->mtask->running);
1427 __kfifo_put(session->mgmtpool.queue, (void*)&conn->mtask,
1428 sizeof(void*));
1429 spin_unlock_bh(&session->lock);
1430 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001431 return 0;
1432}
1433
1434static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -05001435handle_xmstate_r_hdr(struct iscsi_conn *conn,
1436 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001437{
Mike Christie5bb0b552006-04-06 21:26:46 -05001438 tcp_ctask->xmstate &= ~XMSTATE_R_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001439 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001440 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1441 (u8*)tcp_ctask->hdrext);
1442 if (!iscsi_sendhdr(conn, &tcp_ctask->headbuf, 0)) {
1443 BUG_ON(tcp_ctask->xmstate != XMSTATE_IDLE);
Alex Aizman7ba24712005-08-04 19:30:08 -07001444 return 0; /* wait for Data-In */
1445 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001446 tcp_ctask->xmstate |= XMSTATE_R_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001447 return -EAGAIN;
1448}
1449
1450static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -05001451handle_xmstate_w_hdr(struct iscsi_conn *conn,
1452 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001453{
Mike Christie5bb0b552006-04-06 21:26:46 -05001454 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1455
1456 tcp_ctask->xmstate &= ~XMSTATE_W_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001457 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001458 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1459 (u8*)tcp_ctask->hdrext);
1460 if (iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->imm_count)) {
1461 tcp_ctask->xmstate |= XMSTATE_W_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001462 return -EAGAIN;
1463 }
1464 return 0;
1465}
1466
1467static inline int
1468handle_xmstate_data_digest(struct iscsi_conn *conn,
1469 struct iscsi_cmd_task *ctask)
1470{
Mike Christie5bb0b552006-04-06 21:26:46 -05001471 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1472
1473 tcp_ctask->xmstate &= ~XMSTATE_DATA_DIGEST;
1474 debug_tcp("resent data digest 0x%x\n", tcp_ctask->datadigest);
1475 if (iscsi_digest_final_send(conn, ctask, &tcp_ctask->immbuf,
1476 &tcp_ctask->datadigest, 0)) {
1477 tcp_ctask->xmstate |= XMSTATE_DATA_DIGEST;
Alex Aizman7ba24712005-08-04 19:30:08 -07001478 debug_tcp("resent data digest 0x%x fail!\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001479 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001480 return -EAGAIN;
1481 }
1482 return 0;
1483}
1484
1485static inline int
1486handle_xmstate_imm_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1487{
Mike Christie5bb0b552006-04-06 21:26:46 -05001488 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1489 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1490
Alex Aizman7ba24712005-08-04 19:30:08 -07001491 BUG_ON(!ctask->imm_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001492 tcp_ctask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001493
1494 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001495 iscsi_data_digest_init(tcp_conn, ctask);
1496 tcp_ctask->immdigest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001497 }
1498
1499 for (;;) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001500 if (iscsi_sendpage(conn, &tcp_ctask->sendbuf, &ctask->imm_count,
1501 &tcp_ctask->sent)) {
1502 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001503 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001504 crypto_digest_final(tcp_conn->data_tx_tfm,
1505 (u8*)&tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001506 debug_tcp("tx imm sendpage fail 0x%x\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001507 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001508 }
1509 return -EAGAIN;
1510 }
1511 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001512 crypto_digest_update(tcp_conn->data_tx_tfm,
1513 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001514
1515 if (!ctask->imm_count)
1516 break;
Mike Christie5bb0b552006-04-06 21:26:46 -05001517 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1518 &tcp_ctask->sg[tcp_ctask->sg_count++]);
Alex Aizman7ba24712005-08-04 19:30:08 -07001519 }
1520
Mike Christie5bb0b552006-04-06 21:26:46 -05001521 if (conn->datadgst_en && !(tcp_ctask->xmstate & XMSTATE_W_PAD)) {
1522 if (iscsi_digest_final_send(conn, ctask, &tcp_ctask->immbuf,
1523 &tcp_ctask->immdigest, 1)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001524 debug_tcp("sending imm digest 0x%x fail!\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001525 tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001526 return -EAGAIN;
1527 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001528 debug_tcp("sending imm digest 0x%x\n", tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001529 }
1530
1531 return 0;
1532}
1533
1534static inline int
1535handle_xmstate_uns_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1536{
Mike Christie5bb0b552006-04-06 21:26:46 -05001537 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001538 struct iscsi_data_task *dtask;
1539
Mike Christie5bb0b552006-04-06 21:26:46 -05001540 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
1541 if (tcp_ctask->xmstate & XMSTATE_UNS_INIT) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001542 iscsi_unsolicit_data_init(conn, ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -05001543 BUG_ON(!tcp_ctask->dtask);
1544 dtask = tcp_ctask->dtask;
Mike Christieaf973482005-09-12 21:01:32 -05001545 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001546 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001547 (u8*)dtask->hdrext);
Mike Christie5bb0b552006-04-06 21:26:46 -05001548 tcp_ctask->xmstate &= ~XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001549 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001550 if (iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->data_count)) {
1551 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1552 tcp_ctask->xmstate |= XMSTATE_UNS_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001553 return -EAGAIN;
1554 }
1555
1556 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001557 ctask->itt, ctask->unsol_count, tcp_ctask->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001558 return 0;
1559}
1560
1561static inline int
1562handle_xmstate_uns_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1563{
Mike Christie5bb0b552006-04-06 21:26:46 -05001564 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1565 struct iscsi_data_task *dtask = tcp_ctask->dtask;
1566 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001567
1568 BUG_ON(!ctask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001569 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001570
1571 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001572 iscsi_data_digest_init(tcp_conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001573 dtask->digest = 0;
1574 }
1575
1576 for (;;) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001577 int start = tcp_ctask->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001578
Mike Christie5bb0b552006-04-06 21:26:46 -05001579 if (iscsi_sendpage(conn, &tcp_ctask->sendbuf,
1580 &ctask->data_count, &tcp_ctask->sent)) {
1581 ctask->unsol_count -= tcp_ctask->sent - start;
1582 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001583 /* will continue with this ctask later.. */
1584 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001585 crypto_digest_final(tcp_conn->data_tx_tfm,
Alex Aizman7ba24712005-08-04 19:30:08 -07001586 (u8 *)&dtask->digest);
1587 debug_tcp("tx uns data fail 0x%x\n",
1588 dtask->digest);
1589 }
1590 return -EAGAIN;
1591 }
1592
Mike Christie5bb0b552006-04-06 21:26:46 -05001593 BUG_ON(tcp_ctask->sent > ctask->total_length);
1594 ctask->unsol_count -= tcp_ctask->sent - start;
Alex Aizman7ba24712005-08-04 19:30:08 -07001595
1596 /*
1597 * XXX:we may run here with un-initial sendbuf.
1598 * so pass it
1599 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001600 if (conn->datadgst_en && tcp_ctask->sent - start > 0)
1601 crypto_digest_update(tcp_conn->data_tx_tfm,
1602 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001603
1604 if (!ctask->data_count)
1605 break;
Mike Christie5bb0b552006-04-06 21:26:46 -05001606 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1607 &tcp_ctask->sg[tcp_ctask->sg_count++]);
Alex Aizman7ba24712005-08-04 19:30:08 -07001608 }
1609 BUG_ON(ctask->unsol_count < 0);
1610
1611 /*
1612 * Done with the Data-Out. Next, check if we need
1613 * to send another unsolicited Data-Out.
1614 */
1615 if (ctask->unsol_count) {
1616 if (conn->datadgst_en) {
1617 if (iscsi_digest_final_send(conn, ctask,
1618 &dtask->digestbuf,
1619 &dtask->digest, 1)) {
1620 debug_tcp("send uns digest 0x%x fail\n",
1621 dtask->digest);
1622 return -EAGAIN;
1623 }
1624 debug_tcp("sending uns digest 0x%x, more uns\n",
1625 dtask->digest);
1626 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001627 tcp_ctask->xmstate |= XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001628 return 1;
1629 }
1630
Mike Christie5bb0b552006-04-06 21:26:46 -05001631 if (conn->datadgst_en && !(tcp_ctask->xmstate & XMSTATE_W_PAD)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001632 if (iscsi_digest_final_send(conn, ctask,
1633 &dtask->digestbuf,
1634 &dtask->digest, 1)) {
1635 debug_tcp("send last uns digest 0x%x fail\n",
1636 dtask->digest);
1637 return -EAGAIN;
1638 }
1639 debug_tcp("sending uns digest 0x%x\n",dtask->digest);
1640 }
1641
1642 return 0;
1643}
1644
1645static inline int
1646handle_xmstate_sol_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1647{
1648 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001649 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1650 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1651 struct iscsi_r2t_info *r2t = tcp_ctask->r2t;
Alex Aizman7ba24712005-08-04 19:30:08 -07001652 struct iscsi_data_task *dtask = r2t->dtask;
1653 int left;
1654
Mike Christie5bb0b552006-04-06 21:26:46 -05001655 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1656 tcp_ctask->dtask = dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001657
1658 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001659 iscsi_data_digest_init(tcp_conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001660 dtask->digest = 0;
1661 }
1662solicit_again:
1663 /*
1664 * send Data-Out whitnin this R2T sequence.
1665 */
1666 if (!r2t->data_count)
1667 goto data_out_done;
1668
1669 if (iscsi_sendpage(conn, &r2t->sendbuf, &r2t->data_count, &r2t->sent)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001670 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001671 /* will continue with this ctask later.. */
1672 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001673 crypto_digest_final(tcp_conn->data_tx_tfm,
Alex Aizman7ba24712005-08-04 19:30:08 -07001674 (u8 *)&dtask->digest);
1675 debug_tcp("r2t data send fail 0x%x\n", dtask->digest);
1676 }
1677 return -EAGAIN;
1678 }
1679
1680 BUG_ON(r2t->data_count < 0);
1681 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001682 crypto_digest_update(tcp_conn->data_tx_tfm, &r2t->sendbuf.sg,
1683 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001684
1685 if (r2t->data_count) {
1686 BUG_ON(ctask->sc->use_sg == 0);
1687 if (!iscsi_buf_left(&r2t->sendbuf)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001688 BUG_ON(tcp_ctask->bad_sg == r2t->sg);
Alex Aizman7ba24712005-08-04 19:30:08 -07001689 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1690 r2t->sg += 1;
1691 }
1692 goto solicit_again;
1693 }
1694
1695data_out_done:
1696 /*
1697 * Done with this Data-Out. Next, check if we have
1698 * to send another Data-Out for this R2T.
1699 */
1700 BUG_ON(r2t->data_length - r2t->sent < 0);
1701 left = r2t->data_length - r2t->sent;
1702 if (left) {
1703 if (conn->datadgst_en) {
1704 if (iscsi_digest_final_send(conn, ctask,
1705 &dtask->digestbuf,
1706 &dtask->digest, 1)) {
1707 debug_tcp("send r2t data digest 0x%x"
1708 "fail\n", dtask->digest);
1709 return -EAGAIN;
1710 }
1711 debug_tcp("r2t data send digest 0x%x\n",
1712 dtask->digest);
1713 }
1714 iscsi_solicit_data_cont(conn, ctask, r2t, left);
Mike Christie5bb0b552006-04-06 21:26:46 -05001715 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1716 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001717 return 1;
1718 }
1719
1720 /*
1721 * Done with this R2T. Check if there are more
1722 * outstanding R2Ts ready to be processed.
1723 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001724 BUG_ON(tcp_ctask->r2t_data_count - r2t->data_length < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -07001725 if (conn->datadgst_en) {
1726 if (iscsi_digest_final_send(conn, ctask, &dtask->digestbuf,
1727 &dtask->digest, 1)) {
1728 debug_tcp("send last r2t data digest 0x%x"
1729 "fail\n", dtask->digest);
1730 return -EAGAIN;
1731 }
1732 debug_tcp("r2t done dout digest 0x%x\n", dtask->digest);
1733 }
1734
Mike Christie5bb0b552006-04-06 21:26:46 -05001735 tcp_ctask->r2t_data_count -= r2t->data_length;
1736 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001737 spin_lock_bh(&session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05001738 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -07001739 spin_unlock_bh(&session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05001740 if (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
1741 tcp_ctask->r2t = r2t;
1742 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1743 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001744 return 1;
1745 }
1746
1747 return 0;
1748}
1749
1750static inline int
1751handle_xmstate_w_pad(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1752{
Mike Christie5bb0b552006-04-06 21:26:46 -05001753 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1754 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1755 struct iscsi_data_task *dtask = tcp_ctask->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001756 int sent;
1757
Mike Christie5bb0b552006-04-06 21:26:46 -05001758 tcp_ctask->xmstate &= ~XMSTATE_W_PAD;
1759 iscsi_buf_init_virt(&tcp_ctask->sendbuf, (char*)&tcp_ctask->pad,
1760 tcp_ctask->pad_count);
1761 if (iscsi_sendpage(conn, &tcp_ctask->sendbuf, &tcp_ctask->pad_count,
1762 &sent)) {
1763 tcp_ctask->xmstate |= XMSTATE_W_PAD;
Alex Aizman7ba24712005-08-04 19:30:08 -07001764 return -EAGAIN;
1765 }
1766
1767 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001768 crypto_digest_update(tcp_conn->data_tx_tfm,
1769 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001770 /* imm data? */
1771 if (!dtask) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001772 if (iscsi_digest_final_send(conn, ctask,
1773 &tcp_ctask->immbuf,
1774 &tcp_ctask->immdigest, 1)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001775 debug_tcp("send padding digest 0x%x"
Mike Christie5bb0b552006-04-06 21:26:46 -05001776 "fail!\n", tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001777 return -EAGAIN;
1778 }
1779 debug_tcp("done with padding, digest 0x%x\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001780 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001781 } else {
1782 if (iscsi_digest_final_send(conn, ctask,
1783 &dtask->digestbuf,
1784 &dtask->digest, 1)) {
1785 debug_tcp("send padding digest 0x%x"
1786 "fail\n", dtask->digest);
1787 return -EAGAIN;
1788 }
1789 debug_tcp("done with padding, digest 0x%x\n",
1790 dtask->digest);
1791 }
1792 }
1793
1794 return 0;
1795}
1796
1797static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001798iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001799{
Mike Christie5bb0b552006-04-06 21:26:46 -05001800 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001801 int rc = 0;
1802
1803 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001804 conn->id, tcp_ctask->xmstate, ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001805
1806 /*
1807 * serialize with TMF AbortTask
1808 */
1809 if (ctask->mtask)
1810 return rc;
1811
Mike Christie5bb0b552006-04-06 21:26:46 -05001812 if (tcp_ctask->xmstate & XMSTATE_R_HDR) {
1813 rc = handle_xmstate_r_hdr(conn, tcp_ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001814 return rc;
1815 }
1816
Mike Christie5bb0b552006-04-06 21:26:46 -05001817 if (tcp_ctask->xmstate & XMSTATE_W_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001818 rc = handle_xmstate_w_hdr(conn, ctask);
1819 if (rc)
1820 return rc;
1821 }
1822
1823 /* XXX: for data digest xmit recover */
Mike Christie5bb0b552006-04-06 21:26:46 -05001824 if (tcp_ctask->xmstate & XMSTATE_DATA_DIGEST) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001825 rc = handle_xmstate_data_digest(conn, ctask);
1826 if (rc)
1827 return rc;
1828 }
1829
Mike Christie5bb0b552006-04-06 21:26:46 -05001830 if (tcp_ctask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001831 rc = handle_xmstate_imm_data(conn, ctask);
1832 if (rc)
1833 return rc;
1834 }
1835
Mike Christie5bb0b552006-04-06 21:26:46 -05001836 if (tcp_ctask->xmstate & XMSTATE_UNS_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001837 BUG_ON(!ctask->unsol_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001838 tcp_ctask->xmstate &= ~XMSTATE_UNS_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001839unsolicit_head_again:
1840 rc = handle_xmstate_uns_hdr(conn, ctask);
1841 if (rc)
1842 return rc;
1843 }
1844
Mike Christie5bb0b552006-04-06 21:26:46 -05001845 if (tcp_ctask->xmstate & XMSTATE_UNS_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001846 rc = handle_xmstate_uns_data(conn, ctask);
1847 if (rc == 1)
1848 goto unsolicit_head_again;
1849 else if (rc)
1850 return rc;
1851 goto done;
1852 }
1853
Mike Christie5bb0b552006-04-06 21:26:46 -05001854 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001855 struct iscsi_r2t_info *r2t;
1856
Mike Christie5bb0b552006-04-06 21:26:46 -05001857 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1858 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1859 if (!tcp_ctask->r2t)
1860 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
Alex Aizman7ba24712005-08-04 19:30:08 -07001861 sizeof(void*));
1862solicit_head_again:
Mike Christie5bb0b552006-04-06 21:26:46 -05001863 r2t = tcp_ctask->r2t;
Mike Christieaf973482005-09-12 21:01:32 -05001864 if (conn->hdrdgst_en)
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001865 iscsi_hdr_digest(conn, &r2t->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001866 (u8*)r2t->dtask->hdrext);
Alex Aizman7ba24712005-08-04 19:30:08 -07001867 if (iscsi_sendhdr(conn, &r2t->headbuf, r2t->data_count)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001868 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1869 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001870 return -EAGAIN;
1871 }
1872
1873 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1874 r2t->solicit_datasn - 1, ctask->itt, r2t->data_count,
1875 r2t->sent);
1876 }
1877
Mike Christie5bb0b552006-04-06 21:26:46 -05001878 if (tcp_ctask->xmstate & XMSTATE_SOL_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001879 rc = handle_xmstate_sol_data(conn, ctask);
1880 if (rc == 1)
1881 goto solicit_head_again;
1882 if (rc)
1883 return rc;
1884 }
1885
1886done:
1887 /*
1888 * Last thing to check is whether we need to send write
1889 * padding. Note that we check for xmstate equality, not just the bit.
1890 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001891 if (tcp_ctask->xmstate == XMSTATE_W_PAD)
Alex Aizman7ba24712005-08-04 19:30:08 -07001892 rc = handle_xmstate_w_pad(conn, ctask);
1893
1894 return rc;
1895}
1896
Mike Christie7b8631b2006-01-13 18:05:50 -06001897static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001898iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001899{
Mike Christie7b8631b2006-01-13 18:05:50 -06001900 struct iscsi_conn *conn;
1901 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001902 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001903
Mike Christie5bb0b552006-04-06 21:26:46 -05001904 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001905 if (!cls_conn)
1906 return NULL;
1907 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001908 /*
1909 * due to strange issues with iser these are not set
1910 * in iscsi_conn_setup
1911 */
Alex Aizman7ba24712005-08-04 19:30:08 -07001912 conn->max_recv_dlength = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH;
1913
Mike Christie5bb0b552006-04-06 21:26:46 -05001914 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1915 if (!tcp_conn)
1916 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001917
Mike Christie5bb0b552006-04-06 21:26:46 -05001918 conn->dd_data = tcp_conn;
1919 tcp_conn->iscsi_conn = conn;
1920 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
1921 /* initial operational parameters */
1922 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
1923 tcp_conn->data_size = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH;
Alex Aizman7ba24712005-08-04 19:30:08 -07001924
1925 /* allocate initial PDU receive place holder */
Mike Christie5bb0b552006-04-06 21:26:46 -05001926 if (tcp_conn->data_size <= PAGE_SIZE)
1927 tcp_conn->data = kmalloc(tcp_conn->data_size, GFP_KERNEL);
Alex Aizman7ba24712005-08-04 19:30:08 -07001928 else
Mike Christie5bb0b552006-04-06 21:26:46 -05001929 tcp_conn->data = (void*)__get_free_pages(GFP_KERNEL,
1930 get_order(tcp_conn->data_size));
1931 if (!tcp_conn->data)
Alex Aizman7ba24712005-08-04 19:30:08 -07001932 goto max_recv_dlenght_alloc_fail;
1933
Mike Christie7b8631b2006-01-13 18:05:50 -06001934 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001935
1936max_recv_dlenght_alloc_fail:
Mike Christie5bb0b552006-04-06 21:26:46 -05001937 kfree(tcp_conn);
1938tcp_conn_alloc_fail:
1939 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001940 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001941}
1942
1943static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001944iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001945{
Mike Christie7b8631b2006-01-13 18:05:50 -06001946 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001947 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1948 int digest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001949
Mike Christie5bb0b552006-04-06 21:26:46 -05001950 if (conn->hdrdgst_en || conn->datadgst_en)
1951 digest = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001952
Mike Christie5bb0b552006-04-06 21:26:46 -05001953 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001954
Mike Christie5bb0b552006-04-06 21:26:46 -05001955 /* now free tcp_conn */
1956 if (digest) {
1957 if (tcp_conn->tx_tfm)
1958 crypto_free_tfm(tcp_conn->tx_tfm);
1959 if (tcp_conn->rx_tfm)
1960 crypto_free_tfm(tcp_conn->rx_tfm);
1961 if (tcp_conn->data_tx_tfm)
1962 crypto_free_tfm(tcp_conn->data_tx_tfm);
1963 if (tcp_conn->data_rx_tfm)
1964 crypto_free_tfm(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001965 }
1966
1967 /* free conn->data, size = MaxRecvDataSegmentLength */
Mike Christie5bb0b552006-04-06 21:26:46 -05001968 if (tcp_conn->data_size <= PAGE_SIZE)
1969 kfree(tcp_conn->data);
Alex Aizman7ba24712005-08-04 19:30:08 -07001970 else
Mike Christie5bb0b552006-04-06 21:26:46 -05001971 free_pages((unsigned long)tcp_conn->data,
1972 get_order(tcp_conn->data_size));
1973 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001974}
1975
1976static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001977iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001978 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001979 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001980{
Mike Christie5bb0b552006-04-06 21:26:46 -05001981 struct iscsi_conn *conn = cls_conn->dd_data;
1982 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001983 struct sock *sk;
1984 struct socket *sock;
1985 int err;
1986
1987 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001988 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001989 if (!sock) {
1990 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
1991 return -EEXIST;
1992 }
1993
Mike Christie5bb0b552006-04-06 21:26:46 -05001994 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1995 if (err)
1996 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001997
1998 if (conn->stop_stage != STOP_CONN_SUSPEND) {
1999 /* bind iSCSI connection and socket */
Mike Christie5bb0b552006-04-06 21:26:46 -05002000 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07002001
2002 /* setup Socket parameters */
2003 sk = sock->sk;
2004 sk->sk_reuse = 1;
2005 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
2006 sk->sk_allocation = GFP_ATOMIC;
2007
2008 /* FIXME: disable Nagle's algorithm */
2009
2010 /*
2011 * Intercept TCP callbacks for sendfile like receive
2012 * processing.
2013 */
Mike Christie5bb0b552006-04-06 21:26:46 -05002014 conn->recv_lock = &sk->sk_callback_lock;
Alex Aizman7ba24712005-08-04 19:30:08 -07002015 iscsi_conn_set_callbacks(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05002016 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002017 /*
2018 * set receive state machine into initial state
2019 */
Mike Christie5bb0b552006-04-06 21:26:46 -05002020 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -07002021 }
2022
Alex Aizman7ba24712005-08-04 19:30:08 -07002023 return 0;
2024}
2025
Mike Christie30a6c652006-04-06 21:13:39 -05002026static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002027iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Mike Christie30a6c652006-04-06 21:13:39 -05002028{
Mike Christie5bb0b552006-04-06 21:26:46 -05002029 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -05002030 struct iscsi_r2t_info *r2t;
Mike Christie30a6c652006-04-06 21:13:39 -05002031
2032 /* flush ctask's r2t queues */
Mike Christie5bb0b552006-04-06 21:26:46 -05002033 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*)))
2034 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
2035 sizeof(void*));
Mike Christie30a6c652006-04-06 21:13:39 -05002036
2037 __iscsi_ctask_cleanup(conn, ctask);
2038}
2039
Mike Christie30a6c652006-04-06 21:13:39 -05002040static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002041iscsi_tcp_suspend_conn_rx(struct iscsi_conn *conn)
Mike Christie30a6c652006-04-06 21:13:39 -05002042{
Mike Christie5bb0b552006-04-06 21:26:46 -05002043 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002044 struct sock *sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07002045
Mike Christie5bb0b552006-04-06 21:26:46 -05002046 if (!tcp_conn->sock)
2047 return;
2048
2049 sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07002050 write_lock_bh(&sk->sk_callback_lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05002051 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
Alex Aizman7ba24712005-08-04 19:30:08 -07002052 write_unlock_bh(&sk->sk_callback_lock);
Mike Christie30a6c652006-04-06 21:13:39 -05002053}
2054
2055static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002056iscsi_tcp_terminate_conn(struct iscsi_conn *conn)
Mike Christie30a6c652006-04-06 21:13:39 -05002057{
Mike Christie5bb0b552006-04-06 21:26:46 -05002058 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
2059
2060 if (!tcp_conn->sock)
Mike Christie30a6c652006-04-06 21:13:39 -05002061 return;
Mike Christie30a6c652006-04-06 21:13:39 -05002062
Mike Christie5bb0b552006-04-06 21:26:46 -05002063 sock_hold(tcp_conn->sock->sk);
Mike Christie30a6c652006-04-06 21:13:39 -05002064 iscsi_conn_restore_callbacks(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05002065 sock_put(tcp_conn->sock->sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07002066
Mike Christie5bb0b552006-04-06 21:26:46 -05002067 sock_release(tcp_conn->sock);
2068 tcp_conn->sock = NULL;
2069 conn->recv_lock = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002070}
2071
Mike Christie5bb0b552006-04-06 21:26:46 -05002072/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05002073static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002074iscsi_tcp_mgmt_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask,
2075 char *data, uint32_t data_size)
Mike Christie30a6c652006-04-06 21:13:39 -05002076{
Mike Christie5bb0b552006-04-06 21:26:46 -05002077 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -05002078
Mike Christie5bb0b552006-04-06 21:26:46 -05002079 iscsi_buf_init_virt(&tcp_mtask->headbuf, (char*)mtask->hdr,
Alex Aizman7ba24712005-08-04 19:30:08 -07002080 sizeof(struct iscsi_hdr));
Mike Christie5bb0b552006-04-06 21:26:46 -05002081 tcp_mtask->xmstate = XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07002082
Mike Christie5bb0b552006-04-06 21:26:46 -05002083 if (mtask->data_count)
2084 iscsi_buf_init_iov(&tcp_mtask->sendbuf, (char*)mtask->data,
Alex Aizman7ba24712005-08-04 19:30:08 -07002085 mtask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07002086}
2087
2088static int
2089iscsi_r2tpool_alloc(struct iscsi_session *session)
2090{
2091 int i;
2092 int cmd_i;
2093
2094 /*
2095 * initialize per-task: R2T pool and xmit queue
2096 */
2097 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2098 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05002099 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002100
2101 /*
2102 * pre-allocated x4 as much r2ts to handle race when
2103 * target acks DataOut faster than we data_xmit() queues
2104 * could replenish r2tqueue.
2105 */
2106
2107 /* R2T pool */
Mike Christie5bb0b552006-04-06 21:26:46 -05002108 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4,
2109 (void***)&tcp_ctask->r2ts,
2110 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002111 goto r2t_alloc_fail;
2112 }
2113
2114 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05002115 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07002116 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05002117 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
2118 iscsi_pool_free(&tcp_ctask->r2tpool,
2119 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002120 goto r2t_alloc_fail;
2121 }
2122
2123 /*
2124 * number of
2125 * Data-Out PDU's within R2T-sequence can be quite big;
2126 * using mempool
2127 */
Mike Christie5bb0b552006-04-06 21:26:46 -05002128 tcp_ctask->datapool = mempool_create_slab_pool(ISCSI_DTASK_DEFAULT_MAX,
2129 taskcache);
2130 if (tcp_ctask->datapool == NULL) {
2131 kfifo_free(tcp_ctask->r2tqueue);
2132 iscsi_pool_free(&tcp_ctask->r2tpool,
2133 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002134 goto r2t_alloc_fail;
2135 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002136 INIT_LIST_HEAD(&tcp_ctask->dataqueue);
Alex Aizman7ba24712005-08-04 19:30:08 -07002137 }
2138
2139 return 0;
2140
2141r2t_alloc_fail:
2142 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002143 struct iscsi_cmd_task *ctask = session->cmds[i];
2144 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2145
2146 mempool_destroy(tcp_ctask->datapool);
2147 kfifo_free(tcp_ctask->r2tqueue);
2148 iscsi_pool_free(&tcp_ctask->r2tpool,
2149 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002150 }
2151 return -ENOMEM;
2152}
2153
2154static void
2155iscsi_r2tpool_free(struct iscsi_session *session)
2156{
2157 int i;
2158
2159 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002160 struct iscsi_cmd_task *ctask = session->cmds[i];
2161 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2162
2163 mempool_destroy(tcp_ctask->datapool);
2164 kfifo_free(tcp_ctask->r2tqueue);
2165 iscsi_pool_free(&tcp_ctask->r2tpool,
2166 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002167 }
2168}
2169
Alex Aizman7ba24712005-08-04 19:30:08 -07002170static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002171iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002172 uint32_t value)
2173{
Mike Christie7b7232f2006-02-01 21:06:49 -06002174 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002175 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05002176 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002177
Alex Aizman7ba24712005-08-04 19:30:08 -07002178 switch(param) {
2179 case ISCSI_PARAM_MAX_RECV_DLENGTH: {
Mike Christie5bb0b552006-04-06 21:26:46 -05002180 char *saveptr = tcp_conn->data;
Al Virob53cb2a2005-12-15 09:17:19 +00002181 gfp_t flags = GFP_KERNEL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002182
Mike Christie5bb0b552006-04-06 21:26:46 -05002183 if (tcp_conn->data_size >= value) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002184 conn->max_recv_dlength = value;
2185 break;
2186 }
2187
2188 spin_lock_bh(&session->lock);
2189 if (conn->stop_stage == STOP_CONN_RECOVER)
2190 flags = GFP_ATOMIC;
2191 spin_unlock_bh(&session->lock);
2192
2193 if (value <= PAGE_SIZE)
Mike Christie5bb0b552006-04-06 21:26:46 -05002194 tcp_conn->data = kmalloc(value, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07002195 else
Mike Christie5bb0b552006-04-06 21:26:46 -05002196 tcp_conn->data = (void*)__get_free_pages(flags,
Alex Aizman7ba24712005-08-04 19:30:08 -07002197 get_order(value));
Mike Christie5bb0b552006-04-06 21:26:46 -05002198 if (tcp_conn->data == NULL) {
2199 tcp_conn->data = saveptr;
Alex Aizman7ba24712005-08-04 19:30:08 -07002200 return -ENOMEM;
2201 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002202 if (tcp_conn->data_size <= PAGE_SIZE)
Alex Aizman7ba24712005-08-04 19:30:08 -07002203 kfree(saveptr);
2204 else
2205 free_pages((unsigned long)saveptr,
Mike Christie5bb0b552006-04-06 21:26:46 -05002206 get_order(tcp_conn->data_size));
Alex Aizman7ba24712005-08-04 19:30:08 -07002207 conn->max_recv_dlength = value;
Mike Christie5bb0b552006-04-06 21:26:46 -05002208 tcp_conn->data_size = value;
Alex Aizman7ba24712005-08-04 19:30:08 -07002209 }
2210 break;
2211 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2212 conn->max_xmit_dlength = value;
2213 break;
2214 case ISCSI_PARAM_HDRDGST_EN:
2215 conn->hdrdgst_en = value;
Mike Christie5bb0b552006-04-06 21:26:46 -05002216 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -07002217 if (conn->hdrdgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002218 tcp_conn->hdr_size += sizeof(__u32);
2219 if (!tcp_conn->tx_tfm)
2220 tcp_conn->tx_tfm = crypto_alloc_tfm("crc32c",
2221 0);
2222 if (!tcp_conn->tx_tfm)
Alex Aizman7ba24712005-08-04 19:30:08 -07002223 return -ENOMEM;
Mike Christie5bb0b552006-04-06 21:26:46 -05002224 if (!tcp_conn->rx_tfm)
2225 tcp_conn->rx_tfm = crypto_alloc_tfm("crc32c",
2226 0);
2227 if (!tcp_conn->rx_tfm) {
2228 crypto_free_tfm(tcp_conn->tx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002229 return -ENOMEM;
2230 }
2231 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05002232 if (tcp_conn->tx_tfm)
2233 crypto_free_tfm(tcp_conn->tx_tfm);
2234 if (tcp_conn->rx_tfm)
2235 crypto_free_tfm(tcp_conn->rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002236 }
2237 break;
2238 case ISCSI_PARAM_DATADGST_EN:
2239 conn->datadgst_en = value;
2240 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002241 if (!tcp_conn->data_tx_tfm)
2242 tcp_conn->data_tx_tfm =
Alex Aizman7ba24712005-08-04 19:30:08 -07002243 crypto_alloc_tfm("crc32c", 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05002244 if (!tcp_conn->data_tx_tfm)
Alex Aizman7ba24712005-08-04 19:30:08 -07002245 return -ENOMEM;
Mike Christie5bb0b552006-04-06 21:26:46 -05002246 if (!tcp_conn->data_rx_tfm)
2247 tcp_conn->data_rx_tfm =
Alex Aizman7ba24712005-08-04 19:30:08 -07002248 crypto_alloc_tfm("crc32c", 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05002249 if (!tcp_conn->data_rx_tfm) {
2250 crypto_free_tfm(tcp_conn->data_tx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002251 return -ENOMEM;
2252 }
2253 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05002254 if (tcp_conn->data_tx_tfm)
2255 crypto_free_tfm(tcp_conn->data_tx_tfm);
2256 if (tcp_conn->data_rx_tfm)
2257 crypto_free_tfm(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002258 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002259 tcp_conn->sendpage = conn->datadgst_en ?
2260 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002261 break;
2262 case ISCSI_PARAM_INITIAL_R2T_EN:
2263 session->initial_r2t_en = value;
2264 break;
2265 case ISCSI_PARAM_MAX_R2T:
2266 if (session->max_r2t == roundup_pow_of_two(value))
2267 break;
2268 iscsi_r2tpool_free(session);
2269 session->max_r2t = value;
2270 if (session->max_r2t & (session->max_r2t - 1))
2271 session->max_r2t = roundup_pow_of_two(session->max_r2t);
2272 if (iscsi_r2tpool_alloc(session))
2273 return -ENOMEM;
2274 break;
2275 case ISCSI_PARAM_IMM_DATA_EN:
2276 session->imm_data_en = value;
2277 break;
2278 case ISCSI_PARAM_FIRST_BURST:
2279 session->first_burst = value;
2280 break;
2281 case ISCSI_PARAM_MAX_BURST:
2282 session->max_burst = value;
2283 break;
2284 case ISCSI_PARAM_PDU_INORDER_EN:
2285 session->pdu_inorder_en = value;
2286 break;
2287 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2288 session->dataseq_inorder_en = value;
2289 break;
2290 case ISCSI_PARAM_ERL:
2291 session->erl = value;
2292 break;
2293 case ISCSI_PARAM_IFMARKER_EN:
2294 BUG_ON(value);
2295 session->ifmarker_en = value;
2296 break;
2297 case ISCSI_PARAM_OFMARKER_EN:
2298 BUG_ON(value);
2299 session->ofmarker_en = value;
2300 break;
Mike Christie8d2860b2006-05-02 19:46:47 -05002301 case ISCSI_PARAM_EXP_STATSN:
2302 conn->exp_statsn = value;
2303 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002304 default:
2305 break;
2306 }
2307
2308 return 0;
2309}
2310
2311static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002312iscsi_session_get_param(struct iscsi_cls_session *cls_session,
Mike Christie7b8631b2006-01-13 18:05:50 -06002313 enum iscsi_param param, uint32_t *value)
Alex Aizman7ba24712005-08-04 19:30:08 -07002314{
Mike Christie7b7232f2006-02-01 21:06:49 -06002315 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
Mike Christie7b8631b2006-01-13 18:05:50 -06002316 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
Alex Aizman7ba24712005-08-04 19:30:08 -07002317
2318 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002319 case ISCSI_PARAM_INITIAL_R2T_EN:
2320 *value = session->initial_r2t_en;
2321 break;
2322 case ISCSI_PARAM_MAX_R2T:
2323 *value = session->max_r2t;
2324 break;
2325 case ISCSI_PARAM_IMM_DATA_EN:
2326 *value = session->imm_data_en;
2327 break;
2328 case ISCSI_PARAM_FIRST_BURST:
2329 *value = session->first_burst;
2330 break;
2331 case ISCSI_PARAM_MAX_BURST:
2332 *value = session->max_burst;
2333 break;
2334 case ISCSI_PARAM_PDU_INORDER_EN:
2335 *value = session->pdu_inorder_en;
2336 break;
2337 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2338 *value = session->dataseq_inorder_en;
2339 break;
2340 case ISCSI_PARAM_ERL:
2341 *value = session->erl;
2342 break;
2343 case ISCSI_PARAM_IFMARKER_EN:
2344 *value = session->ifmarker_en;
2345 break;
2346 case ISCSI_PARAM_OFMARKER_EN:
2347 *value = session->ofmarker_en;
2348 break;
2349 default:
Mike Christiefd7255f2006-04-06 21:13:36 -05002350 return -EINVAL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002351 }
2352
2353 return 0;
2354}
2355
Mike Christie7b8631b2006-01-13 18:05:50 -06002356static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002357iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
2358 enum iscsi_param param, uint32_t *value)
Mike Christie7b8631b2006-01-13 18:05:50 -06002359{
Mike Christie7b7232f2006-02-01 21:06:49 -06002360 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002361 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christiefd7255f2006-04-06 21:13:36 -05002362 struct inet_sock *inet;
Mike Christie7b8631b2006-01-13 18:05:50 -06002363
2364 switch(param) {
2365 case ISCSI_PARAM_MAX_RECV_DLENGTH:
2366 *value = conn->max_recv_dlength;
2367 break;
2368 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2369 *value = conn->max_xmit_dlength;
2370 break;
2371 case ISCSI_PARAM_HDRDGST_EN:
2372 *value = conn->hdrdgst_en;
2373 break;
2374 case ISCSI_PARAM_DATADGST_EN:
2375 *value = conn->datadgst_en;
2376 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05002377 case ISCSI_PARAM_CONN_PORT:
2378 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002379 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002380 mutex_unlock(&conn->xmitmutex);
2381 return -EINVAL;
2382 }
2383
Mike Christie5bb0b552006-04-06 21:26:46 -05002384 inet = inet_sk(tcp_conn->sock->sk);
Mike Christiefd7255f2006-04-06 21:13:36 -05002385 *value = be16_to_cpu(inet->dport);
2386 mutex_unlock(&conn->xmitmutex);
Mike Christie8d2860b2006-05-02 19:46:47 -05002387 case ISCSI_PARAM_EXP_STATSN:
2388 *value = conn->exp_statsn;
2389 break;
Mike Christie7b8631b2006-01-13 18:05:50 -06002390 default:
Mike Christiefd7255f2006-04-06 21:13:36 -05002391 return -EINVAL;
Mike Christie7b8631b2006-01-13 18:05:50 -06002392 }
2393
2394 return 0;
2395}
2396
Mike Christiefd7255f2006-04-06 21:13:36 -05002397static int
2398iscsi_conn_get_str_param(struct iscsi_cls_conn *cls_conn,
2399 enum iscsi_param param, char *buf)
2400{
2401 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002402 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christiefd7255f2006-04-06 21:13:36 -05002403 struct sock *sk;
2404 struct inet_sock *inet;
2405 struct ipv6_pinfo *np;
2406 int len = 0;
2407
2408 switch (param) {
2409 case ISCSI_PARAM_CONN_ADDRESS:
2410 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002411 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002412 mutex_unlock(&conn->xmitmutex);
2413 return -EINVAL;
2414 }
2415
Mike Christie5bb0b552006-04-06 21:26:46 -05002416 sk = tcp_conn->sock->sk;
Mike Christiefd7255f2006-04-06 21:13:36 -05002417 if (sk->sk_family == PF_INET) {
2418 inet = inet_sk(sk);
2419 len = sprintf(buf, "%u.%u.%u.%u\n",
2420 NIPQUAD(inet->daddr));
2421 } else {
2422 np = inet6_sk(sk);
2423 len = sprintf(buf,
2424 "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
2425 NIP6(np->daddr));
2426 }
2427 mutex_unlock(&conn->xmitmutex);
2428 break;
2429 default:
2430 return -EINVAL;
2431 }
2432
2433 return len;
2434}
2435
Alex Aizman7ba24712005-08-04 19:30:08 -07002436static void
Mike Christie7b7232f2006-02-01 21:06:49 -06002437iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07002438{
Mike Christie7b7232f2006-02-01 21:06:49 -06002439 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002440 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002441
2442 stats->txdata_octets = conn->txdata_octets;
2443 stats->rxdata_octets = conn->rxdata_octets;
2444 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
2445 stats->dataout_pdus = conn->dataout_pdus_cnt;
2446 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
2447 stats->datain_pdus = conn->datain_pdus_cnt;
2448 stats->r2t_pdus = conn->r2t_pdus_cnt;
2449 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
2450 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
2451 stats->custom_length = 3;
2452 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05002453 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002454 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05002455 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002456 strcpy(stats->custom[2].desc, "eh_abort_cnt");
2457 stats->custom[2].value = conn->eh_abort_cnt;
2458}
2459
Mike Christie5bb0b552006-04-06 21:26:46 -05002460static struct iscsi_cls_session *
2461iscsi_tcp_session_create(struct iscsi_transport *iscsit,
2462 struct scsi_transport_template *scsit,
2463 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07002464{
Mike Christie5bb0b552006-04-06 21:26:46 -05002465 struct iscsi_cls_session *cls_session;
2466 struct iscsi_session *session;
2467 uint32_t hn;
2468 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07002469
Mike Christie5bb0b552006-04-06 21:26:46 -05002470 cls_session = iscsi_session_setup(iscsit, scsit,
2471 sizeof(struct iscsi_tcp_cmd_task),
2472 sizeof(struct iscsi_tcp_mgmt_task),
2473 initial_cmdsn, &hn);
2474 if (!cls_session)
2475 return NULL;
2476 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07002477
Mike Christie5bb0b552006-04-06 21:26:46 -05002478 session = class_to_transport_session(cls_session);
2479 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2480 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2481 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2482
2483 ctask->hdr = &tcp_ctask->hdr;
2484 }
2485
2486 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
2487 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
2488 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
2489
2490 mtask->hdr = &tcp_mtask->hdr;
2491 }
2492
2493 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
2494 goto r2tpool_alloc_fail;
2495
2496 return cls_session;
2497
2498r2tpool_alloc_fail:
2499 iscsi_session_teardown(cls_session);
2500 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002501}
2502
Mike Christie5bb0b552006-04-06 21:26:46 -05002503static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2504{
2505 struct iscsi_session *session = class_to_transport_session(cls_session);
2506 struct iscsi_data_task *dtask, *n;
2507 int cmd_i;
2508
2509 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2510 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2511 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2512
2513 list_for_each_entry_safe(dtask, n, &tcp_ctask->dataqueue,
2514 item) {
2515 list_del(&dtask->item);
2516 mempool_free(dtask, tcp_ctask->datapool);
2517 }
2518 }
2519
2520 iscsi_r2tpool_free(class_to_transport_session(cls_session));
2521 iscsi_session_teardown(cls_session);
2522}
2523
2524static struct scsi_host_template iscsi_sht = {
2525 .name = "iSCSI Initiator over TCP/IP, v."
2526 ISCSI_VERSION_STR,
2527 .queuecommand = iscsi_queuecommand,
2528 .change_queue_depth = iscsi_change_queue_depth,
2529 .can_queue = ISCSI_XMIT_CMDS_MAX - 1,
2530 .sg_tablesize = ISCSI_SG_TABLESIZE,
2531 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
2532 .eh_abort_handler = iscsi_eh_abort,
2533 .eh_host_reset_handler = iscsi_eh_host_reset,
2534 .use_clustering = DISABLE_CLUSTERING,
2535 .proc_name = "iscsi_tcp",
2536 .this_id = -1,
2537};
2538
Alex Aizman7ba24712005-08-04 19:30:08 -07002539static struct iscsi_transport iscsi_tcp_transport = {
2540 .owner = THIS_MODULE,
2541 .name = "tcp",
2542 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
2543 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05002544 .param_mask = ISCSI_MAX_RECV_DLENGTH |
2545 ISCSI_MAX_XMIT_DLENGTH |
2546 ISCSI_HDRDGST_EN |
2547 ISCSI_DATADGST_EN |
2548 ISCSI_INITIAL_R2T_EN |
2549 ISCSI_MAX_R2T |
2550 ISCSI_IMM_DATA_EN |
2551 ISCSI_FIRST_BURST |
2552 ISCSI_MAX_BURST |
2553 ISCSI_PDU_INORDER_EN |
2554 ISCSI_DATASEQ_INORDER_EN |
2555 ISCSI_ERL |
2556 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05002557 ISCSI_CONN_ADDRESS |
2558 ISCSI_EXP_STATSN,
Alex Aizman7ba24712005-08-04 19:30:08 -07002559 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06002560 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07002561 .max_conn = 1,
2562 .max_cmd_len = ISCSI_TCP_MAX_CMD_LEN,
Mike Christie5bb0b552006-04-06 21:26:46 -05002563 /* session management */
2564 .create_session = iscsi_tcp_session_create,
2565 .destroy_session = iscsi_tcp_session_destroy,
2566 /* connection management */
2567 .create_conn = iscsi_tcp_conn_create,
2568 .bind_conn = iscsi_tcp_conn_bind,
2569 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07002570 .set_param = iscsi_conn_set_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002571 .get_conn_param = iscsi_conn_get_param,
Mike Christiefd7255f2006-04-06 21:13:36 -05002572 .get_conn_str_param = iscsi_conn_get_str_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002573 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002574 .start_conn = iscsi_conn_start,
2575 .stop_conn = iscsi_conn_stop,
Mike Christie5bb0b552006-04-06 21:26:46 -05002576 /* these are called as part of conn recovery */
2577 .suspend_conn_recv = iscsi_tcp_suspend_conn_rx,
2578 .terminate_conn = iscsi_tcp_terminate_conn,
2579 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002580 .send_pdu = iscsi_conn_send_pdu,
2581 .get_stats = iscsi_conn_get_stats,
Mike Christie5bb0b552006-04-06 21:26:46 -05002582 .init_cmd_task = iscsi_tcp_cmd_init,
2583 .init_mgmt_task = iscsi_tcp_mgmt_init,
2584 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2585 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2586 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2587 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002588 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002589};
2590
2591static int __init
2592iscsi_tcp_init(void)
2593{
Alex Aizman7ba24712005-08-04 19:30:08 -07002594 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002595 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2596 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002597 return -EINVAL;
2598 }
2599 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2600
2601 taskcache = kmem_cache_create("iscsi_taskcache",
2602 sizeof(struct iscsi_data_task), 0,
Christoph Lameterac2b8982006-03-22 00:08:15 -08002603 SLAB_HWCACHE_ALIGN, NULL, NULL);
Alex Aizman7ba24712005-08-04 19:30:08 -07002604 if (!taskcache)
2605 return -ENOMEM;
2606
Mike Christie7b8631b2006-01-13 18:05:50 -06002607 if (!iscsi_register_transport(&iscsi_tcp_transport))
Alex Aizman7ba24712005-08-04 19:30:08 -07002608 kmem_cache_destroy(taskcache);
2609
Mike Christie7b8631b2006-01-13 18:05:50 -06002610 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002611}
2612
2613static void __exit
2614iscsi_tcp_exit(void)
2615{
2616 iscsi_unregister_transport(&iscsi_tcp_transport);
2617 kmem_cache_destroy(taskcache);
2618}
2619
2620module_init(iscsi_tcp_init);
2621module_exit(iscsi_tcp_exit);