blob: 058f094f945aba2f3b4d536cf9388af2dd05c157 [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");
Alex Aizman7ba24712005-08-04 19:30:08 -070050/* #define DEBUG_TCP */
Alex Aizman7ba24712005-08-04 19:30:08 -070051#define DEBUG_ASSERT
52
53#ifdef DEBUG_TCP
Mike Christie5bb0b552006-04-06 21:26:46 -050054#define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
Alex Aizman7ba24712005-08-04 19:30:08 -070055#else
56#define debug_tcp(fmt...)
57#endif
58
Alex Aizman7ba24712005-08-04 19:30:08 -070059#ifndef DEBUG_ASSERT
60#ifdef BUG_ON
61#undef BUG_ON
62#endif
63#define BUG_ON(expr)
64#endif
65
Alex Aizman7ba24712005-08-04 19:30:08 -070066static unsigned int iscsi_max_lun = 512;
67module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
68
Alex Aizman7ba24712005-08-04 19:30:08 -070069static inline void
Alex Aizman7ba24712005-08-04 19:30:08 -070070iscsi_buf_init_iov(struct iscsi_buf *ibuf, char *vbuf, int size)
71{
Mike Christie7cae5152006-01-13 18:05:47 -060072 ibuf->sg.page = virt_to_page(vbuf);
73 ibuf->sg.offset = offset_in_page(vbuf);
Alex Aizman7ba24712005-08-04 19:30:08 -070074 ibuf->sg.length = size;
75 ibuf->sent = 0;
Mike Christie7cae5152006-01-13 18:05:47 -060076 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070077}
78
79static inline void
80iscsi_buf_init_sg(struct iscsi_buf *ibuf, struct scatterlist *sg)
81{
Mike Christie7cae5152006-01-13 18:05:47 -060082 ibuf->sg.page = sg->page;
83 ibuf->sg.offset = sg->offset;
84 ibuf->sg.length = sg->length;
Alex Aizman7ba24712005-08-04 19:30:08 -070085 /*
86 * Fastpath: sg element fits into single page
87 */
Mike Christiea1e80c22006-01-13 18:05:56 -060088 if (sg->length + sg->offset <= PAGE_SIZE && !PageSlab(sg->page))
Mike Christie7cae5152006-01-13 18:05:47 -060089 ibuf->use_sendmsg = 0;
90 else
91 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070092 ibuf->sent = 0;
93}
94
95static inline int
96iscsi_buf_left(struct iscsi_buf *ibuf)
97{
98 int rc;
99
100 rc = ibuf->sg.length - ibuf->sent;
101 BUG_ON(rc < 0);
102 return rc;
103}
104
105static inline void
Mike Christieaf973482005-09-12 21:01:32 -0500106iscsi_hdr_digest(struct iscsi_conn *conn, struct iscsi_buf *buf,
107 u8* crc)
Alex Aizman7ba24712005-08-04 19:30:08 -0700108{
Mike Christie5bb0b552006-04-06 21:26:46 -0500109 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
110
111 crypto_digest_digest(tcp_conn->tx_tfm, &buf->sg, 1, crc);
Mike Christieaf973482005-09-12 21:01:32 -0500112 buf->sg.length += sizeof(uint32_t);
Alex Aizman7ba24712005-08-04 19:30:08 -0700113}
114
Alex Aizman7ba24712005-08-04 19:30:08 -0700115static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500116iscsi_hdr_extract(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700117{
Mike Christie5bb0b552006-04-06 21:26:46 -0500118 struct sk_buff *skb = tcp_conn->in.skb;
Alex Aizman7ba24712005-08-04 19:30:08 -0700119
Mike Christie5bb0b552006-04-06 21:26:46 -0500120 tcp_conn->in.zero_copy_hdr = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700121
Mike Christie5bb0b552006-04-06 21:26:46 -0500122 if (tcp_conn->in.copy >= tcp_conn->hdr_size &&
123 tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700124 /*
125 * Zero-copy PDU Header: using connection context
126 * to store header pointer.
127 */
128 if (skb_shinfo(skb)->frag_list == NULL &&
Mike Christie5bb0b552006-04-06 21:26:46 -0500129 !skb_shinfo(skb)->nr_frags) {
130 tcp_conn->in.hdr = (struct iscsi_hdr *)
131 ((char*)skb->data + tcp_conn->in.offset);
132 tcp_conn->in.zero_copy_hdr = 1;
133 } else {
Alex Aizman7ba24712005-08-04 19:30:08 -0700134 /* ignoring return code since we checked
135 * in.copy before */
Mike Christie5bb0b552006-04-06 21:26:46 -0500136 skb_copy_bits(skb, tcp_conn->in.offset,
137 &tcp_conn->hdr, tcp_conn->hdr_size);
138 tcp_conn->in.hdr = &tcp_conn->hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700139 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500140 tcp_conn->in.offset += tcp_conn->hdr_size;
141 tcp_conn->in.copy -= tcp_conn->hdr_size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700142 } else {
143 int hdr_remains;
144 int copylen;
145
146 /*
147 * PDU header scattered across SKB's,
148 * copying it... This'll happen quite rarely.
149 */
150
Mike Christie5bb0b552006-04-06 21:26:46 -0500151 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER)
152 tcp_conn->in.hdr_offset = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700153
Mike Christie5bb0b552006-04-06 21:26:46 -0500154 hdr_remains = tcp_conn->hdr_size - tcp_conn->in.hdr_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700155 BUG_ON(hdr_remains <= 0);
156
Mike Christie5bb0b552006-04-06 21:26:46 -0500157 copylen = min(tcp_conn->in.copy, hdr_remains);
158 skb_copy_bits(skb, tcp_conn->in.offset,
159 (char*)&tcp_conn->hdr + tcp_conn->in.hdr_offset,
160 copylen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700161
162 debug_tcp("PDU gather offset %d bytes %d in.offset %d "
Mike Christie5bb0b552006-04-06 21:26:46 -0500163 "in.copy %d\n", tcp_conn->in.hdr_offset, copylen,
164 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700165
Mike Christie5bb0b552006-04-06 21:26:46 -0500166 tcp_conn->in.offset += copylen;
167 tcp_conn->in.copy -= copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700168 if (copylen < hdr_remains) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500169 tcp_conn->in_progress = IN_PROGRESS_HEADER_GATHER;
170 tcp_conn->in.hdr_offset += copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700171 return -EAGAIN;
172 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500173 tcp_conn->in.hdr = &tcp_conn->hdr;
174 tcp_conn->discontiguous_hdr_cnt++;
175 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700176 }
177
178 return 0;
179}
180
Mike Christie30a6c652006-04-06 21:13:39 -0500181/*
182 * must be called with session lock
183 */
184static void
Mike Christieb6c395e2006-07-24 15:47:15 -0500185iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -0700186{
Mike Christie5bb0b552006-04-06 21:26:46 -0500187 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christieb6c395e2006-07-24 15:47:15 -0500188 struct iscsi_r2t_info *r2t;
Mike Christie30a6c652006-04-06 21:13:39 -0500189 struct scsi_cmnd *sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700190
Mike Christieb6c395e2006-07-24 15:47:15 -0500191 /* flush ctask's r2t queues */
192 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
193 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
194 sizeof(void*));
195 debug_scsi("iscsi_tcp_cleanup_ctask pending r2t dropped\n");
196 }
197
Mike Christie30a6c652006-04-06 21:13:39 -0500198 sc = ctask->sc;
199 if (unlikely(!sc))
Alex Aizman7ba24712005-08-04 19:30:08 -0700200 return;
Mike Christie30a6c652006-04-06 21:13:39 -0500201
Mike Christie5bb0b552006-04-06 21:26:46 -0500202 tcp_ctask->xmstate = XMSTATE_IDLE;
203 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -0700204}
205
206/**
207 * iscsi_data_rsp - SCSI Data-In Response processing
208 * @conn: iscsi connection
209 * @ctask: scsi command task
210 **/
211static int
212iscsi_data_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
213{
214 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500215 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
216 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
217 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700218 struct iscsi_session *session = conn->session;
219 int datasn = be32_to_cpu(rhdr->datasn);
220
221 rc = iscsi_check_assign_cmdsn(session, (struct iscsi_nopin*)rhdr);
222 if (rc)
223 return rc;
224 /*
225 * setup Data-In byte counter (gets decremented..)
226 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500227 ctask->data_count = tcp_conn->in.datalen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700228
Mike Christie5bb0b552006-04-06 21:26:46 -0500229 if (tcp_conn->in.datalen == 0)
Alex Aizman7ba24712005-08-04 19:30:08 -0700230 return 0;
231
232 if (ctask->datasn != datasn)
233 return ISCSI_ERR_DATASN;
234
235 ctask->datasn++;
236
Mike Christie5bb0b552006-04-06 21:26:46 -0500237 tcp_ctask->data_offset = be32_to_cpu(rhdr->offset);
238 if (tcp_ctask->data_offset + tcp_conn->in.datalen > ctask->total_length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700239 return ISCSI_ERR_DATA_OFFSET;
240
241 if (rhdr->flags & ISCSI_FLAG_DATA_STATUS) {
242 struct scsi_cmnd *sc = ctask->sc;
243
244 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600245 if (rhdr->flags & ISCSI_FLAG_DATA_UNDERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700246 int res_count = be32_to_cpu(rhdr->residual_count);
247
248 if (res_count > 0 &&
249 res_count <= sc->request_bufflen) {
250 sc->resid = res_count;
251 sc->result = (DID_OK << 16) | rhdr->cmd_status;
252 } else
253 sc->result = (DID_BAD_TARGET << 16) |
254 rhdr->cmd_status;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600255 } else if (rhdr->flags & ISCSI_FLAG_DATA_OVERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700256 sc->resid = be32_to_cpu(rhdr->residual_count);
257 sc->result = (DID_OK << 16) | rhdr->cmd_status;
258 } else
259 sc->result = (DID_OK << 16) | rhdr->cmd_status;
260 }
261
262 conn->datain_pdus_cnt++;
263 return 0;
264}
265
266/**
267 * iscsi_solicit_data_init - initialize first Data-Out
268 * @conn: iscsi connection
269 * @ctask: scsi command task
270 * @r2t: R2T info
271 *
272 * Notes:
273 * Initialize first Data-Out within this R2T sequence and finds
274 * proper data_offset within this SCSI command.
275 *
276 * This function is called with connection lock taken.
277 **/
278static void
279iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
280 struct iscsi_r2t_info *r2t)
281{
282 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700283 struct scsi_cmnd *sc = ctask->sc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500284 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700285
Mike Christieffbfe922006-05-18 20:31:36 -0500286 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700287 memset(hdr, 0, sizeof(struct iscsi_data));
288 hdr->ttt = r2t->ttt;
289 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
290 r2t->solicit_datasn++;
291 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500292 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
293 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700294 hdr->exp_statsn = r2t->exp_statsn;
295 hdr->offset = cpu_to_be32(r2t->data_offset);
296 if (r2t->data_length > conn->max_xmit_dlength) {
297 hton24(hdr->dlength, conn->max_xmit_dlength);
298 r2t->data_count = conn->max_xmit_dlength;
299 hdr->flags = 0;
300 } else {
301 hton24(hdr->dlength, r2t->data_length);
302 r2t->data_count = r2t->data_length;
303 hdr->flags = ISCSI_FLAG_CMD_FINAL;
304 }
305 conn->dataout_pdus_cnt++;
306
307 r2t->sent = 0;
308
Mike Christie6e458cc2006-05-18 20:31:31 -0500309 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -0500310 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -0700311
Alex Aizman7ba24712005-08-04 19:30:08 -0700312 if (sc->use_sg) {
313 int i, sg_count = 0;
314 struct scatterlist *sg = sc->request_buffer;
315
316 r2t->sg = NULL;
317 for (i = 0; i < sc->use_sg; i++, sg += 1) {
318 /* FIXME: prefetch ? */
319 if (sg_count + sg->length > r2t->data_offset) {
320 int page_offset;
321
322 /* sg page found! */
323
324 /* offset within this page */
325 page_offset = r2t->data_offset - sg_count;
326
327 /* fill in this buffer */
328 iscsi_buf_init_sg(&r2t->sendbuf, sg);
329 r2t->sendbuf.sg.offset += page_offset;
330 r2t->sendbuf.sg.length -= page_offset;
331
332 /* xmit logic will continue with next one */
333 r2t->sg = sg + 1;
334 break;
335 }
336 sg_count += sg->length;
337 }
338 BUG_ON(r2t->sg == NULL);
339 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500340 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -0700341 (char*)sc->request_buffer + r2t->data_offset,
342 r2t->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -0700343}
344
345/**
346 * iscsi_r2t_rsp - iSCSI R2T Response processing
347 * @conn: iscsi connection
348 * @ctask: scsi command task
349 **/
350static int
351iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
352{
353 struct iscsi_r2t_info *r2t;
354 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500355 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
356 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
357 struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700358 int r2tsn = be32_to_cpu(rhdr->r2tsn);
359 int rc;
360
Mike Christie5bb0b552006-04-06 21:26:46 -0500361 if (tcp_conn->in.datalen)
Alex Aizman7ba24712005-08-04 19:30:08 -0700362 return ISCSI_ERR_DATALEN;
363
Mike Christie5bb0b552006-04-06 21:26:46 -0500364 if (tcp_ctask->exp_r2tsn && tcp_ctask->exp_r2tsn != r2tsn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700365 return ISCSI_ERR_R2TSN;
366
367 rc = iscsi_check_assign_cmdsn(session, (struct iscsi_nopin*)rhdr);
368 if (rc)
369 return rc;
370
371 /* FIXME: use R2TSN to detect missing R2T */
372
373 /* fill-in new R2T associated with the task */
374 spin_lock(&session->lock);
375 if (!ctask->sc || ctask->mtask ||
376 session->state != ISCSI_STATE_LOGGED_IN) {
377 printk(KERN_INFO "iscsi_tcp: dropping R2T itt %d in "
378 "recovery...\n", ctask->itt);
379 spin_unlock(&session->lock);
380 return 0;
381 }
Mike Christieb6c395e2006-07-24 15:47:15 -0500382
Mike Christie5bb0b552006-04-06 21:26:46 -0500383 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700384 BUG_ON(!rc);
385
386 r2t->exp_statsn = rhdr->statsn;
387 r2t->data_length = be32_to_cpu(rhdr->data_length);
388 if (r2t->data_length == 0 ||
389 r2t->data_length > session->max_burst) {
390 spin_unlock(&session->lock);
391 return ISCSI_ERR_DATALEN;
392 }
393
394 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
395 if (r2t->data_offset + r2t->data_length > ctask->total_length) {
396 spin_unlock(&session->lock);
397 return ISCSI_ERR_DATALEN;
398 }
399
400 r2t->ttt = rhdr->ttt; /* no flip */
401 r2t->solicit_datasn = 0;
402
403 iscsi_solicit_data_init(conn, ctask, r2t);
404
Mike Christie5bb0b552006-04-06 21:26:46 -0500405 tcp_ctask->exp_r2tsn = r2tsn + 1;
406 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
407 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
Mike Christieb6c395e2006-07-24 15:47:15 -0500408 list_move_tail(&ctask->running, &conn->xmitqueue);
Alex Aizman7ba24712005-08-04 19:30:08 -0700409
Mike Christie55e32992006-01-13 18:05:53 -0600410 scsi_queue_work(session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -0700411 conn->r2t_pdus_cnt++;
412 spin_unlock(&session->lock);
413
414 return 0;
415}
416
417static int
Mike Christie5bb0b552006-04-06 21:26:46 -0500418iscsi_tcp_hdr_recv(struct iscsi_conn *conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700419{
Mike Christie5bb0b552006-04-06 21:26:46 -0500420 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700421 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700422 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500423 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
424 uint32_t cdgst, rdgst = 0, itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700425
Mike Christie5bb0b552006-04-06 21:26:46 -0500426 hdr = tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700427
428 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500429 tcp_conn->in.datalen = ntoh24(hdr->dlength);
430 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700431 printk(KERN_ERR "iscsi_tcp: datalen %d > %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500432 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700433 return ISCSI_ERR_DATALEN;
434 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500435 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700436
437 /* read AHS */
Mike Christie5bb0b552006-04-06 21:26:46 -0500438 ahslen = hdr->hlength << 2;
439 tcp_conn->in.offset += ahslen;
440 tcp_conn->in.copy -= ahslen;
441 if (tcp_conn->in.copy < 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700442 printk(KERN_ERR "iscsi_tcp: can't handle AHS with length "
Mike Christie5bb0b552006-04-06 21:26:46 -0500443 "%d bytes\n", ahslen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700444 return ISCSI_ERR_AHSLEN;
445 }
446
447 /* calculate read padding */
Mike Christie5bb0b552006-04-06 21:26:46 -0500448 tcp_conn->in.padding = tcp_conn->in.datalen & (ISCSI_PAD_LEN-1);
449 if (tcp_conn->in.padding) {
450 tcp_conn->in.padding = ISCSI_PAD_LEN - tcp_conn->in.padding;
451 debug_scsi("read padding %d bytes\n", tcp_conn->in.padding);
Alex Aizman7ba24712005-08-04 19:30:08 -0700452 }
453
454 if (conn->hdrdgst_en) {
455 struct scatterlist sg;
456
457 sg_init_one(&sg, (u8 *)hdr,
Mike Christie5bb0b552006-04-06 21:26:46 -0500458 sizeof(struct iscsi_hdr) + ahslen);
459 crypto_digest_digest(tcp_conn->rx_tfm, &sg, 1, (u8 *)&cdgst);
Alex Aizman7ba24712005-08-04 19:30:08 -0700460 rdgst = *(uint32_t*)((char*)hdr + sizeof(struct iscsi_hdr) +
Mike Christie5bb0b552006-04-06 21:26:46 -0500461 ahslen);
Mike Christie8a47cd32005-11-30 02:27:19 -0600462 if (cdgst != rdgst) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500463 printk(KERN_ERR "iscsi_tcp: hdrdgst error "
464 "recv 0x%x calc 0x%x\n", rdgst, cdgst);
Mike Christie8a47cd32005-11-30 02:27:19 -0600465 return ISCSI_ERR_HDR_DGST;
466 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700467 }
468
Mike Christie5bb0b552006-04-06 21:26:46 -0500469 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700470 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500471 rc = iscsi_verify_itt(conn, hdr, &itt);
472 if (rc == ISCSI_ERR_NO_SCSI_CMD) {
473 tcp_conn->in.datalen = 0; /* force drop */
474 return 0;
475 } else if (rc)
476 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700477
478 debug_tcp("opcode 0x%x offset %d copy %d ahslen %d datalen %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500479 opcode, tcp_conn->in.offset, tcp_conn->in.copy,
480 ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700481
Mike Christie5bb0b552006-04-06 21:26:46 -0500482 switch(opcode) {
483 case ISCSI_OP_SCSI_DATA_IN:
484 tcp_conn->in.ctask = session->cmds[itt];
485 rc = iscsi_data_rsp(conn, tcp_conn->in.ctask);
Mike Christie275fd7d2006-07-24 15:47:17 -0500486 if (rc)
487 return rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500488 /* fall through */
489 case ISCSI_OP_SCSI_CMD_RSP:
490 tcp_conn->in.ctask = session->cmds[itt];
491 if (tcp_conn->in.datalen)
492 goto copy_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700493
Mike Christie5bb0b552006-04-06 21:26:46 -0500494 spin_lock(&session->lock);
Mike Christieb6c395e2006-07-24 15:47:15 -0500495 iscsi_tcp_cleanup_ctask(conn, tcp_conn->in.ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -0500496 rc = __iscsi_complete_pdu(conn, hdr, NULL, 0);
497 spin_unlock(&session->lock);
498 break;
499 case ISCSI_OP_R2T:
500 tcp_conn->in.ctask = session->cmds[itt];
501 if (ahslen)
502 rc = ISCSI_ERR_AHSLEN;
503 else if (tcp_conn->in.ctask->sc->sc_data_direction ==
504 DMA_TO_DEVICE)
505 rc = iscsi_r2t_rsp(conn, tcp_conn->in.ctask);
506 else
507 rc = ISCSI_ERR_PROTO;
508 break;
509 case ISCSI_OP_LOGIN_RSP:
510 case ISCSI_OP_TEXT_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500511 case ISCSI_OP_REJECT:
512 case ISCSI_OP_ASYNC_EVENT:
Mike Christiec8dc1e52006-07-24 15:47:39 -0500513 /*
514 * It is possible that we could get a PDU with a buffer larger
515 * than 8K, but there are no targets that currently do this.
516 * For now we fail until we find a vendor that needs it
517 */
518 if (DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH <
519 tcp_conn->in.datalen) {
520 printk(KERN_ERR "iscsi_tcp: received buffer of len %u "
521 "but conn buffer is only %u (opcode %0x)\n",
522 tcp_conn->in.datalen,
523 DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH, opcode);
524 rc = ISCSI_ERR_PROTO;
525 break;
526 }
527
Mike Christie5bb0b552006-04-06 21:26:46 -0500528 if (tcp_conn->in.datalen)
529 goto copy_hdr;
530 /* fall through */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500531 case ISCSI_OP_LOGOUT_RSP:
532 case ISCSI_OP_NOOP_IN:
Mike Christie5bb0b552006-04-06 21:26:46 -0500533 case ISCSI_OP_SCSI_TMFUNC_RSP:
534 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
535 break;
536 default:
537 rc = ISCSI_ERR_BAD_OPCODE;
538 break;
539 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700540
541 return rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500542
543copy_hdr:
544 /*
545 * if we did zero copy for the header but we will need multiple
546 * skbs to complete the command then we have to copy the header
547 * for later use
548 */
Mike Christie275fd7d2006-07-24 15:47:17 -0500549 if (tcp_conn->in.zero_copy_hdr && tcp_conn->in.copy <=
Mike Christie5bb0b552006-04-06 21:26:46 -0500550 (tcp_conn->in.datalen + tcp_conn->in.padding +
551 (conn->datadgst_en ? 4 : 0))) {
552 debug_tcp("Copying header for later use. in.copy %d in.datalen"
553 " %d\n", tcp_conn->in.copy, tcp_conn->in.datalen);
554 memcpy(&tcp_conn->hdr, tcp_conn->in.hdr,
555 sizeof(struct iscsi_hdr));
556 tcp_conn->in.hdr = &tcp_conn->hdr;
557 tcp_conn->in.zero_copy_hdr = 0;
558 }
559 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700560}
561
562/**
563 * iscsi_ctask_copy - copy skb bits to the destanation cmd task
Mike Christie5bb0b552006-04-06 21:26:46 -0500564 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700565 * @ctask: scsi command task
566 * @buf: buffer to copy to
567 * @buf_size: size of buffer
568 * @offset: offset within the buffer
569 *
570 * Notes:
571 * The function calls skb_copy_bits() and updates per-connection and
572 * per-cmd byte counters.
573 *
574 * Read counters (in bytes):
575 *
576 * conn->in.offset offset within in progress SKB
577 * conn->in.copy left to copy from in progress SKB
578 * including padding
579 * conn->in.copied copied already from in progress SKB
580 * conn->data_copied copied already from in progress buffer
581 * ctask->sent total bytes sent up to the MidLayer
582 * ctask->data_count left to copy from in progress Data-In
583 * buf_left left to copy from in progress buffer
584 **/
585static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500586iscsi_ctask_copy(struct iscsi_tcp_conn *tcp_conn, struct iscsi_cmd_task *ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -0700587 void *buf, int buf_size, int offset)
588{
Mike Christie5bb0b552006-04-06 21:26:46 -0500589 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
590 int buf_left = buf_size - (tcp_conn->data_copied + offset);
591 int size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700592 int rc;
593
594 size = min(size, ctask->data_count);
595
596 debug_tcp("ctask_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500597 size, tcp_conn->in.offset, tcp_conn->in.copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700598
599 BUG_ON(size <= 0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500600 BUG_ON(tcp_ctask->sent + size > ctask->total_length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700601
Mike Christie5bb0b552006-04-06 21:26:46 -0500602 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
603 (char*)buf + (offset + tcp_conn->data_copied), size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700604 /* must fit into skb->len */
605 BUG_ON(rc);
606
Mike Christie5bb0b552006-04-06 21:26:46 -0500607 tcp_conn->in.offset += size;
608 tcp_conn->in.copy -= size;
609 tcp_conn->in.copied += size;
610 tcp_conn->data_copied += size;
611 tcp_ctask->sent += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700612 ctask->data_count -= size;
613
Mike Christie5bb0b552006-04-06 21:26:46 -0500614 BUG_ON(tcp_conn->in.copy < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700615 BUG_ON(ctask->data_count < 0);
616
Mike Christie5bb0b552006-04-06 21:26:46 -0500617 if (buf_size != (tcp_conn->data_copied + offset)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700618 if (!ctask->data_count) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500619 BUG_ON(buf_size - tcp_conn->data_copied < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700620 /* done with this PDU */
Mike Christie5bb0b552006-04-06 21:26:46 -0500621 return buf_size - tcp_conn->data_copied;
Alex Aizman7ba24712005-08-04 19:30:08 -0700622 }
623 return -EAGAIN;
624 }
625
626 /* done with this buffer or with both - PDU and buffer */
Mike Christie5bb0b552006-04-06 21:26:46 -0500627 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700628 return 0;
629}
630
631/**
632 * iscsi_tcp_copy - copy skb bits to the destanation buffer
Mike Christie5bb0b552006-04-06 21:26:46 -0500633 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700634 *
635 * Notes:
636 * The function calls skb_copy_bits() and updates per-connection
637 * byte counters.
638 **/
639static inline int
Mike Christiec8dc1e52006-07-24 15:47:39 -0500640iscsi_tcp_copy(struct iscsi_conn *conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700641{
Mike Christiec8dc1e52006-07-24 15:47:39 -0500642 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500643 int buf_size = tcp_conn->in.datalen;
644 int buf_left = buf_size - tcp_conn->data_copied;
645 int size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700646 int rc;
647
648 debug_tcp("tcp_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500649 size, tcp_conn->in.offset, tcp_conn->data_copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700650 BUG_ON(size <= 0);
651
Mike Christie5bb0b552006-04-06 21:26:46 -0500652 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
Mike Christiec8dc1e52006-07-24 15:47:39 -0500653 (char*)conn->data + tcp_conn->data_copied, size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700654 BUG_ON(rc);
655
Mike Christie5bb0b552006-04-06 21:26:46 -0500656 tcp_conn->in.offset += size;
657 tcp_conn->in.copy -= size;
658 tcp_conn->in.copied += size;
659 tcp_conn->data_copied += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700660
Mike Christie5bb0b552006-04-06 21:26:46 -0500661 if (buf_size != tcp_conn->data_copied)
Alex Aizman7ba24712005-08-04 19:30:08 -0700662 return -EAGAIN;
663
664 return 0;
665}
666
667static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -0500668partial_sg_digest_update(struct iscsi_tcp_conn *tcp_conn,
669 struct scatterlist *sg, int offset, int length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700670{
671 struct scatterlist temp;
672
673 memcpy(&temp, sg, sizeof(struct scatterlist));
674 temp.offset = offset;
675 temp.length = length;
Mike Christie5bb0b552006-04-06 21:26:46 -0500676 crypto_digest_update(tcp_conn->data_rx_tfm, &temp, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700677}
678
Mike Christief6cfba12005-11-29 23:12:57 -0600679static void
Mike Christie5bb0b552006-04-06 21:26:46 -0500680iscsi_recv_digest_update(struct iscsi_tcp_conn *tcp_conn, char* buf, int len)
Mike Christief6cfba12005-11-29 23:12:57 -0600681{
682 struct scatterlist tmp;
683
684 sg_init_one(&tmp, buf, len);
Mike Christie5bb0b552006-04-06 21:26:46 -0500685 crypto_digest_update(tcp_conn->data_rx_tfm, &tmp, 1);
Mike Christief6cfba12005-11-29 23:12:57 -0600686}
687
Alex Aizman7ba24712005-08-04 19:30:08 -0700688static int iscsi_scsi_data_in(struct iscsi_conn *conn)
689{
Mike Christie5bb0b552006-04-06 21:26:46 -0500690 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
691 struct iscsi_cmd_task *ctask = tcp_conn->in.ctask;
692 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700693 struct scsi_cmnd *sc = ctask->sc;
Mike Christief6cfba12005-11-29 23:12:57 -0600694 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700695 int i, offset, rc = 0;
696
697 BUG_ON((void*)ctask != sc->SCp.ptr);
698
699 /*
700 * copying Data-In into the Scsi_Cmnd
701 */
702 if (!sc->use_sg) {
703 i = ctask->data_count;
Mike Christie5bb0b552006-04-06 21:26:46 -0500704 rc = iscsi_ctask_copy(tcp_conn, ctask, sc->request_buffer,
705 sc->request_bufflen,
706 tcp_ctask->data_offset);
Alex Aizman7ba24712005-08-04 19:30:08 -0700707 if (rc == -EAGAIN)
708 return rc;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -0600709 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -0500710 iscsi_recv_digest_update(tcp_conn, sc->request_buffer,
711 i);
Alex Aizman7ba24712005-08-04 19:30:08 -0700712 rc = 0;
713 goto done;
714 }
715
Mike Christie5bb0b552006-04-06 21:26:46 -0500716 offset = tcp_ctask->data_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700717 sg = sc->request_buffer;
718
Mike Christie5bb0b552006-04-06 21:26:46 -0500719 if (tcp_ctask->data_offset)
720 for (i = 0; i < tcp_ctask->sg_count; i++)
Alex Aizman7ba24712005-08-04 19:30:08 -0700721 offset -= sg[i].length;
722 /* we've passed through partial sg*/
723 if (offset < 0)
724 offset = 0;
725
Mike Christie5bb0b552006-04-06 21:26:46 -0500726 for (i = tcp_ctask->sg_count; i < sc->use_sg; i++) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700727 char *dest;
728
729 dest = kmap_atomic(sg[i].page, KM_SOFTIRQ0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500730 rc = iscsi_ctask_copy(tcp_conn, ctask, dest + sg[i].offset,
Alex Aizman7ba24712005-08-04 19:30:08 -0700731 sg[i].length, offset);
732 kunmap_atomic(dest, KM_SOFTIRQ0);
733 if (rc == -EAGAIN)
734 /* continue with the next SKB/PDU */
735 return rc;
736 if (!rc) {
737 if (conn->datadgst_en) {
738 if (!offset)
Mike Christie5bb0b552006-04-06 21:26:46 -0500739 crypto_digest_update(
740 tcp_conn->data_rx_tfm,
741 &sg[i], 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700742 else
Mike Christie5bb0b552006-04-06 21:26:46 -0500743 partial_sg_digest_update(tcp_conn,
744 &sg[i],
Alex Aizman7ba24712005-08-04 19:30:08 -0700745 sg[i].offset + offset,
746 sg[i].length - offset);
747 }
748 offset = 0;
Mike Christie5bb0b552006-04-06 21:26:46 -0500749 tcp_ctask->sg_count++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700750 }
751
752 if (!ctask->data_count) {
753 if (rc && conn->datadgst_en)
754 /*
755 * data-in is complete, but buffer not...
756 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500757 partial_sg_digest_update(tcp_conn, &sg[i],
Alex Aizman7ba24712005-08-04 19:30:08 -0700758 sg[i].offset, sg[i].length-rc);
759 rc = 0;
760 break;
761 }
762
Mike Christie5bb0b552006-04-06 21:26:46 -0500763 if (!tcp_conn->in.copy)
Alex Aizman7ba24712005-08-04 19:30:08 -0700764 return -EAGAIN;
765 }
766 BUG_ON(ctask->data_count);
767
768done:
769 /* check for non-exceptional status */
Mike Christie5bb0b552006-04-06 21:26:46 -0500770 if (tcp_conn->in.hdr->flags & ISCSI_FLAG_DATA_STATUS) {
Mike Christieb6c395e2006-07-24 15:47:15 -0500771 debug_scsi("done [sc %lx res %d itt 0x%x flags 0x%x]\n",
772 (long)sc, sc->result, ctask->itt,
773 tcp_conn->in.hdr->flags);
Mike Christie5bb0b552006-04-06 21:26:46 -0500774 spin_lock(&conn->session->lock);
Mike Christieb6c395e2006-07-24 15:47:15 -0500775 iscsi_tcp_cleanup_ctask(conn, ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -0500776 __iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
777 spin_unlock(&conn->session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700778 }
779
780 return rc;
781}
782
783static int
784iscsi_data_recv(struct iscsi_conn *conn)
785{
Mike Christie5bb0b552006-04-06 21:26:46 -0500786 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
787 int rc = 0, opcode;
Alex Aizman7ba24712005-08-04 19:30:08 -0700788
Mike Christie5bb0b552006-04-06 21:26:46 -0500789 opcode = tcp_conn->in.hdr->opcode & ISCSI_OPCODE_MASK;
790 switch (opcode) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700791 case ISCSI_OP_SCSI_DATA_IN:
792 rc = iscsi_scsi_data_in(conn);
793 break;
Mike Christie5bb0b552006-04-06 21:26:46 -0500794 case ISCSI_OP_SCSI_CMD_RSP:
795 spin_lock(&conn->session->lock);
Mike Christieb6c395e2006-07-24 15:47:15 -0500796 iscsi_tcp_cleanup_ctask(conn, tcp_conn->in.ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -0500797 spin_unlock(&conn->session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700798 case ISCSI_OP_TEXT_RSP:
799 case ISCSI_OP_LOGIN_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500800 case ISCSI_OP_ASYNC_EVENT:
801 case ISCSI_OP_REJECT:
Alex Aizman7ba24712005-08-04 19:30:08 -0700802 /*
803 * Collect data segment to the connection's data
804 * placeholder
805 */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500806 if (iscsi_tcp_copy(conn)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700807 rc = -EAGAIN;
808 goto exit;
809 }
810
Mike Christiec8dc1e52006-07-24 15:47:39 -0500811 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, conn->data,
Mike Christie5bb0b552006-04-06 21:26:46 -0500812 tcp_conn->in.datalen);
813 if (!rc && conn->datadgst_en && opcode != ISCSI_OP_LOGIN_RSP)
Mike Christiec8dc1e52006-07-24 15:47:39 -0500814 iscsi_recv_digest_update(tcp_conn, conn->data,
Mike Christie5bb0b552006-04-06 21:26:46 -0500815 tcp_conn->in.datalen);
816 break;
Alex Aizman7ba24712005-08-04 19:30:08 -0700817 default:
818 BUG_ON(1);
819 }
820exit:
821 return rc;
822}
823
824/**
825 * iscsi_tcp_data_recv - TCP receive in sendfile fashion
826 * @rd_desc: read descriptor
827 * @skb: socket buffer
828 * @offset: offset in skb
829 * @len: skb->len - offset
830 **/
831static int
832iscsi_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
833 unsigned int offset, size_t len)
834{
835 int rc;
836 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500837 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700838 int processed;
839 char pad[ISCSI_PAD_LEN];
840 struct scatterlist sg;
841
842 /*
843 * Save current SKB and its offset in the corresponding
844 * connection context.
845 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500846 tcp_conn->in.copy = skb->len - offset;
847 tcp_conn->in.offset = offset;
848 tcp_conn->in.skb = skb;
849 tcp_conn->in.len = tcp_conn->in.copy;
850 BUG_ON(tcp_conn->in.copy <= 0);
851 debug_tcp("in %d bytes\n", tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700852
853more:
Mike Christie5bb0b552006-04-06 21:26:46 -0500854 tcp_conn->in.copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700855 rc = 0;
856
857 if (unlikely(conn->suspend_rx)) {
858 debug_tcp("conn %d Rx suspended!\n", conn->id);
859 return 0;
860 }
861
Mike Christie5bb0b552006-04-06 21:26:46 -0500862 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER ||
863 tcp_conn->in_progress == IN_PROGRESS_HEADER_GATHER) {
864 rc = iscsi_hdr_extract(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700865 if (rc) {
866 if (rc == -EAGAIN)
867 goto nomore;
868 else {
Mike Christied82967c2006-07-24 15:47:11 -0500869 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Alex Aizman7ba24712005-08-04 19:30:08 -0700870 return 0;
871 }
872 }
873
874 /*
875 * Verify and process incoming PDU header.
876 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500877 rc = iscsi_tcp_hdr_recv(conn);
878 if (!rc && tcp_conn->in.datalen) {
Mike Christie8a47cd32005-11-30 02:27:19 -0600879 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500880 BUG_ON(!tcp_conn->data_rx_tfm);
881 crypto_digest_init(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -0700882 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500883 tcp_conn->in_progress = IN_PROGRESS_DATA_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700884 } else if (rc) {
Mike Christie40527af2006-07-24 15:47:45 -0500885 iscsi_conn_failure(conn, rc);
Alex Aizman7ba24712005-08-04 19:30:08 -0700886 return 0;
887 }
888 }
889
Mike Christie5bb0b552006-04-06 21:26:46 -0500890 if (tcp_conn->in_progress == IN_PROGRESS_DDIGEST_RECV) {
Mike Christief6cfba12005-11-29 23:12:57 -0600891 uint32_t recv_digest;
Mike Christie5bb0b552006-04-06 21:26:46 -0500892
Alex Aizman7ba24712005-08-04 19:30:08 -0700893 debug_tcp("extra data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500894 tcp_conn->in.offset, tcp_conn->in.copy);
895 skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
Mike Christief6cfba12005-11-29 23:12:57 -0600896 &recv_digest, 4);
Mike Christie5bb0b552006-04-06 21:26:46 -0500897 tcp_conn->in.offset += 4;
898 tcp_conn->in.copy -= 4;
899 if (recv_digest != tcp_conn->in.datadgst) {
Mike Christief6cfba12005-11-29 23:12:57 -0600900 debug_tcp("iscsi_tcp: data digest error!"
901 "0x%x != 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500902 tcp_conn->in.datadgst);
Mike Christief6cfba12005-11-29 23:12:57 -0600903 iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
904 return 0;
905 } else {
906 debug_tcp("iscsi_tcp: data digest match!"
907 "0x%x == 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500908 tcp_conn->in.datadgst);
909 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700910 }
911 }
912
Mike Christie5bb0b552006-04-06 21:26:46 -0500913 if (tcp_conn->in_progress == IN_PROGRESS_DATA_RECV &&
914 tcp_conn->in.copy) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700915
916 debug_tcp("data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500917 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700918
919 rc = iscsi_data_recv(conn);
920 if (rc) {
Mike Christie665b44a2006-05-02 19:46:49 -0500921 if (rc == -EAGAIN)
Alex Aizman7ba24712005-08-04 19:30:08 -0700922 goto again;
Mike Christied82967c2006-07-24 15:47:11 -0500923 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Alex Aizman7ba24712005-08-04 19:30:08 -0700924 return 0;
925 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500926 tcp_conn->in.copy -= tcp_conn->in.padding;
927 tcp_conn->in.offset += tcp_conn->in.padding;
Mike Christie8a47cd32005-11-30 02:27:19 -0600928 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500929 if (tcp_conn->in.padding) {
930 debug_tcp("padding -> %d\n",
931 tcp_conn->in.padding);
932 memset(pad, 0, tcp_conn->in.padding);
933 sg_init_one(&sg, pad, tcp_conn->in.padding);
934 crypto_digest_update(tcp_conn->data_rx_tfm,
935 &sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700936 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500937 crypto_digest_final(tcp_conn->data_rx_tfm,
938 (u8 *) & tcp_conn->in.datadgst);
939 debug_tcp("rx digest 0x%x\n", tcp_conn->in.datadgst);
940 tcp_conn->in_progress = IN_PROGRESS_DDIGEST_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700941 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500942 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700943 }
944
945 debug_tcp("f, processed %d from out of %d padding %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500946 tcp_conn->in.offset - offset, (int)len, tcp_conn->in.padding);
947 BUG_ON(tcp_conn->in.offset - offset > len);
Alex Aizman7ba24712005-08-04 19:30:08 -0700948
Mike Christie5bb0b552006-04-06 21:26:46 -0500949 if (tcp_conn->in.offset - offset != len) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700950 debug_tcp("continue to process %d bytes\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500951 (int)len - (tcp_conn->in.offset - offset));
Alex Aizman7ba24712005-08-04 19:30:08 -0700952 goto more;
953 }
954
955nomore:
Mike Christie5bb0b552006-04-06 21:26:46 -0500956 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700957 BUG_ON(processed == 0);
958 return processed;
959
960again:
Mike Christie5bb0b552006-04-06 21:26:46 -0500961 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700962 debug_tcp("c, processed %d from out of %d rd_desc_cnt %d\n",
963 processed, (int)len, (int)rd_desc->count);
964 BUG_ON(processed == 0);
965 BUG_ON(processed > len);
966
967 conn->rxdata_octets += processed;
968 return processed;
969}
970
971static void
972iscsi_tcp_data_ready(struct sock *sk, int flag)
973{
974 struct iscsi_conn *conn = sk->sk_user_data;
975 read_descriptor_t rd_desc;
976
977 read_lock(&sk->sk_callback_lock);
978
Mike Christie665b44a2006-05-02 19:46:49 -0500979 /*
980 * Use rd_desc to pass 'conn' to iscsi_tcp_data_recv.
981 * We set count to 1 because we want the network layer to
982 * hand us all the skbs that are available. iscsi_tcp_data_recv
983 * handled pdus that cross buffers or pdus that still need data.
984 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700985 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -0500986 rd_desc.count = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -0700987 tcp_read_sock(sk, &rd_desc, iscsi_tcp_data_recv);
988
989 read_unlock(&sk->sk_callback_lock);
990}
991
992static void
993iscsi_tcp_state_change(struct sock *sk)
994{
Mike Christie5bb0b552006-04-06 21:26:46 -0500995 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -0700996 struct iscsi_conn *conn;
997 struct iscsi_session *session;
998 void (*old_state_change)(struct sock *);
999
1000 read_lock(&sk->sk_callback_lock);
1001
1002 conn = (struct iscsi_conn*)sk->sk_user_data;
1003 session = conn->session;
1004
Mike Christiee6273992005-11-29 23:12:49 -06001005 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1006 sk->sk_state == TCP_CLOSE) &&
1007 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001008 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1009 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1010 }
1011
Mike Christie5bb0b552006-04-06 21:26:46 -05001012 tcp_conn = conn->dd_data;
1013 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001014
1015 read_unlock(&sk->sk_callback_lock);
1016
1017 old_state_change(sk);
1018}
1019
1020/**
1021 * iscsi_write_space - Called when more output buffer space is available
1022 * @sk: socket space is available for
1023 **/
1024static void
1025iscsi_write_space(struct sock *sk)
1026{
1027 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001028 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1029
1030 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001031 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie55e32992006-01-13 18:05:53 -06001032 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001033}
1034
1035static void
1036iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1037{
Mike Christie5bb0b552006-04-06 21:26:46 -05001038 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1039 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001040
1041 /* assign new callbacks */
1042 write_lock_bh(&sk->sk_callback_lock);
1043 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001044 tcp_conn->old_data_ready = sk->sk_data_ready;
1045 tcp_conn->old_state_change = sk->sk_state_change;
1046 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001047 sk->sk_data_ready = iscsi_tcp_data_ready;
1048 sk->sk_state_change = iscsi_tcp_state_change;
1049 sk->sk_write_space = iscsi_write_space;
1050 write_unlock_bh(&sk->sk_callback_lock);
1051}
1052
1053static void
Mike Christie1c834692006-07-24 15:47:26 -05001054iscsi_conn_restore_callbacks(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001055{
Mike Christie5bb0b552006-04-06 21:26:46 -05001056 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001057
1058 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1059 write_lock_bh(&sk->sk_callback_lock);
1060 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001061 sk->sk_data_ready = tcp_conn->old_data_ready;
1062 sk->sk_state_change = tcp_conn->old_state_change;
1063 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001064 sk->sk_no_check = 0;
1065 write_unlock_bh(&sk->sk_callback_lock);
1066}
1067
1068/**
1069 * iscsi_send - generic send routine
1070 * @sk: kernel's socket
1071 * @buf: buffer to write from
1072 * @size: actual size to write
1073 * @flags: socket's flags
Alex Aizman7ba24712005-08-04 19:30:08 -07001074 */
1075static inline int
FUJITA Tomonori56851692006-01-13 18:05:44 -06001076iscsi_send(struct iscsi_conn *conn, struct iscsi_buf *buf, int size, int flags)
Alex Aizman7ba24712005-08-04 19:30:08 -07001077{
Mike Christie5bb0b552006-04-06 21:26:46 -05001078 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1079 struct socket *sk = tcp_conn->sock;
Mike Christie3219e522006-05-30 00:37:28 -05001080 int offset = buf->sg.offset + buf->sent, res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001081
Mike Christie7cae5152006-01-13 18:05:47 -06001082 /*
1083 * if we got use_sg=0 or are sending something we kmallocd
1084 * then we did not have to do kmap (kmap returns page_address)
1085 *
1086 * if we got use_sg > 0, but had to drop down, we do not
1087 * set clustering so this should only happen for that
1088 * slab case.
1089 */
1090 if (buf->use_sendmsg)
Mike Christie3219e522006-05-30 00:37:28 -05001091 res = sock_no_sendpage(sk, buf->sg.page, offset, size, flags);
Mike Christie7cae5152006-01-13 18:05:47 -06001092 else
Mike Christie3219e522006-05-30 00:37:28 -05001093 res = tcp_conn->sendpage(sk, buf->sg.page, offset, size, flags);
1094
1095 if (res >= 0) {
1096 conn->txdata_octets += res;
1097 buf->sent += res;
1098 return res;
1099 }
1100
1101 tcp_conn->sendpage_failures_cnt++;
1102 if (res == -EAGAIN)
1103 res = -ENOBUFS;
1104 else
1105 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1106 return res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001107}
1108
1109/**
1110 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1111 * @conn: iscsi connection
1112 * @buf: buffer to write from
1113 * @datalen: lenght of data to be sent after the header
1114 *
1115 * Notes:
1116 * (Tx, Fast Path)
1117 **/
1118static inline int
1119iscsi_sendhdr(struct iscsi_conn *conn, struct iscsi_buf *buf, int datalen)
1120{
Alex Aizman7ba24712005-08-04 19:30:08 -07001121 int flags = 0; /* MSG_DONTWAIT; */
1122 int res, size;
1123
1124 size = buf->sg.length - buf->sent;
1125 BUG_ON(buf->sent + size > buf->sg.length);
1126 if (buf->sent + size != buf->sg.length || datalen)
1127 flags |= MSG_MORE;
1128
FUJITA Tomonori56851692006-01-13 18:05:44 -06001129 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001130 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size, buf->sent, res);
1131 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001132 if (size != res)
1133 return -EAGAIN;
1134 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001135 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001136
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{
Alex Aizman7ba24712005-08-04 19:30:08 -07001154 int flags = 0; /* MSG_DONTWAIT; */
1155 int res, size;
1156
1157 size = buf->sg.length - buf->sent;
1158 BUG_ON(buf->sent + size > buf->sg.length);
1159 if (size > *count)
1160 size = *count;
Mike Christieb13941f2005-09-12 21:01:28 -05001161 if (buf->sent + size != buf->sg.length || *count != size)
Alex Aizman7ba24712005-08-04 19:30:08 -07001162 flags |= MSG_MORE;
1163
FUJITA Tomonori56851692006-01-13 18:05:44 -06001164 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001165 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1166 size, buf->sent, *count, *sent, res);
1167 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001168 *count -= res;
1169 *sent += res;
1170 if (size != res)
1171 return -EAGAIN;
1172 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001173 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001174
1175 return res;
1176}
1177
1178static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -05001179iscsi_data_digest_init(struct iscsi_tcp_conn *tcp_conn,
1180 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001181{
Mike Christie5bb0b552006-04-06 21:26:46 -05001182 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1183
1184 BUG_ON(!tcp_conn->data_tx_tfm);
1185 crypto_digest_init(tcp_conn->data_tx_tfm);
1186 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001187}
1188
Arjan van de Ven858119e2006-01-14 13:20:43 -08001189static int
Alex Aizman7ba24712005-08-04 19:30:08 -07001190iscsi_digest_final_send(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1191 struct iscsi_buf *buf, uint32_t *digest, int final)
1192{
Mike Christie5bb0b552006-04-06 21:26:46 -05001193 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1194 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001195 int rc = 0;
1196 int sent = 0;
1197
1198 if (final)
Mike Christie5bb0b552006-04-06 21:26:46 -05001199 crypto_digest_final(tcp_conn->data_tx_tfm, (u8*)digest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001200
Mike Christie6e458cc2006-05-18 20:31:31 -05001201 iscsi_buf_init_iov(buf, (char*)digest, 4);
Mike Christie5bb0b552006-04-06 21:26:46 -05001202 rc = iscsi_sendpage(conn, buf, &tcp_ctask->digest_count, &sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001203 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001204 tcp_ctask->datadigest = *digest;
1205 tcp_ctask->xmstate |= XMSTATE_DATA_DIGEST;
Alex Aizman7ba24712005-08-04 19:30:08 -07001206 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001207 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001208 return rc;
1209}
1210
1211/**
1212 * iscsi_solicit_data_cont - initialize next Data-Out
1213 * @conn: iscsi connection
1214 * @ctask: scsi command task
1215 * @r2t: R2T info
1216 * @left: bytes left to transfer
1217 *
1218 * Notes:
1219 * Initialize next Data-Out within this R2T sequence and continue
1220 * to process next Scatter-Gather element(if any) of this SCSI command.
1221 *
1222 * Called under connection lock.
1223 **/
1224static void
1225iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1226 struct iscsi_r2t_info *r2t, int left)
1227{
Mike Christie5bb0b552006-04-06 21:26:46 -05001228 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001229 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001230 struct scsi_cmnd *sc = ctask->sc;
1231 int new_offset;
1232
Mike Christieffbfe922006-05-18 20:31:36 -05001233 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001234 memset(hdr, 0, sizeof(struct iscsi_data));
1235 hdr->ttt = r2t->ttt;
1236 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1237 r2t->solicit_datasn++;
1238 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001239 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1240 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001241 hdr->exp_statsn = r2t->exp_statsn;
1242 new_offset = r2t->data_offset + r2t->sent;
1243 hdr->offset = cpu_to_be32(new_offset);
1244 if (left > conn->max_xmit_dlength) {
1245 hton24(hdr->dlength, conn->max_xmit_dlength);
1246 r2t->data_count = conn->max_xmit_dlength;
1247 } else {
1248 hton24(hdr->dlength, left);
1249 r2t->data_count = left;
1250 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1251 }
1252 conn->dataout_pdus_cnt++;
1253
Mike Christie6e458cc2006-05-18 20:31:31 -05001254 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001255 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001256
Alex Aizman7ba24712005-08-04 19:30:08 -07001257 if (sc->use_sg && !iscsi_buf_left(&r2t->sendbuf)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001258 BUG_ON(tcp_ctask->bad_sg == r2t->sg);
Alex Aizman7ba24712005-08-04 19:30:08 -07001259 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1260 r2t->sg += 1;
1261 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001262 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -07001263 (char*)sc->request_buffer + new_offset,
1264 r2t->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001265}
1266
1267static void
1268iscsi_unsolicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1269{
Mike Christie5bb0b552006-04-06 21:26:46 -05001270 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001271 struct iscsi_data_task *dtask;
1272
Mike Christieffbfe922006-05-18 20:31:36 -05001273 dtask = tcp_ctask->dtask = &tcp_ctask->unsol_dtask;
Mike Christie5bb0b552006-04-06 21:26:46 -05001274 iscsi_prep_unsolicit_data_pdu(ctask, &dtask->hdr,
1275 tcp_ctask->r2t_data_count);
Mike Christie6e458cc2006-05-18 20:31:31 -05001276 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)&dtask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001277 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001278}
1279
1280/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001281 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001282 * @conn: iscsi connection
1283 * @ctask: scsi command task
1284 * @sc: scsi command
1285 **/
1286static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001287iscsi_tcp_cmd_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001288{
Mike Christie5bb0b552006-04-06 21:26:46 -05001289 struct scsi_cmnd *sc = ctask->sc;
1290 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001291
Mike Christie5bb0b552006-04-06 21:26:46 -05001292 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Alex Aizman7ba24712005-08-04 19:30:08 -07001293
Mike Christie5bb0b552006-04-06 21:26:46 -05001294 tcp_ctask->sent = 0;
1295 tcp_ctask->sg_count = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001296
1297 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001298 tcp_ctask->xmstate = XMSTATE_W_HDR;
1299 tcp_ctask->exp_r2tsn = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001300 BUG_ON(ctask->total_length == 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05001301
Alex Aizman7ba24712005-08-04 19:30:08 -07001302 if (sc->use_sg) {
1303 struct scatterlist *sg = sc->request_buffer;
1304
Mike Christie5bb0b552006-04-06 21:26:46 -05001305 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1306 &sg[tcp_ctask->sg_count++]);
1307 tcp_ctask->sg = sg;
1308 tcp_ctask->bad_sg = sg + sc->use_sg;
Alex Aizman7ba24712005-08-04 19:30:08 -07001309 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001310 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
1311 sc->request_buffer,
1312 sc->request_bufflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001313
Mike Christie5bb0b552006-04-06 21:26:46 -05001314 if (ctask->imm_count)
1315 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001316
Mike Christie5bb0b552006-04-06 21:26:46 -05001317 tcp_ctask->pad_count = ctask->total_length & (ISCSI_PAD_LEN-1);
1318 if (tcp_ctask->pad_count) {
1319 tcp_ctask->pad_count = ISCSI_PAD_LEN -
1320 tcp_ctask->pad_count;
1321 debug_scsi("write padding %d bytes\n",
1322 tcp_ctask->pad_count);
1323 tcp_ctask->xmstate |= XMSTATE_W_PAD;
1324 }
1325
1326 if (ctask->unsol_count)
1327 tcp_ctask->xmstate |= XMSTATE_UNS_HDR |
1328 XMSTATE_UNS_INIT;
1329 tcp_ctask->r2t_data_count = ctask->total_length -
Alex Aizman7ba24712005-08-04 19:30:08 -07001330 ctask->imm_count -
1331 ctask->unsol_count;
1332
Mike Christieb6c395e2006-07-24 15:47:15 -05001333 debug_scsi("cmd [itt 0x%x total %d imm %d imm_data %d "
Alex Aizman7ba24712005-08-04 19:30:08 -07001334 "r2t_data %d]\n",
1335 ctask->itt, ctask->total_length, ctask->imm_count,
Mike Christie5bb0b552006-04-06 21:26:46 -05001336 ctask->unsol_count, tcp_ctask->r2t_data_count);
1337 } else
1338 tcp_ctask->xmstate = XMSTATE_R_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001339
Mike Christie6e458cc2006-05-18 20:31:31 -05001340 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)ctask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001341 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001342}
1343
1344/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001345 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001346 * @conn: iscsi connection
1347 * @mtask: task management task
1348 *
1349 * Notes:
1350 * The function can return -EAGAIN in which case caller must
1351 * call it again later, or recover. '0' return code means successful
1352 * xmit.
1353 *
1354 * Management xmit state machine consists of two states:
1355 * IN_PROGRESS_IMM_HEAD - PDU Header xmit in progress
1356 * IN_PROGRESS_IMM_DATA - PDU Data xmit in progress
1357 **/
1358static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001359iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001360{
Mike Christie5bb0b552006-04-06 21:26:46 -05001361 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001362 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001363
1364 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001365 conn->id, tcp_mtask->xmstate, mtask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001366
Mike Christie5bb0b552006-04-06 21:26:46 -05001367 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR) {
1368 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001369 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001370 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christieaf973482005-09-12 21:01:32 -05001371 if (conn->c_stage != ISCSI_CONN_INITIAL_STAGE &&
Mike Christie30a6c652006-04-06 21:13:39 -05001372 conn->stop_stage != STOP_CONN_RECOVER &&
Mike Christieaf973482005-09-12 21:01:32 -05001373 conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001374 iscsi_hdr_digest(conn, &tcp_mtask->headbuf,
1375 (u8*)tcp_mtask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001376 rc = iscsi_sendhdr(conn, &tcp_mtask->headbuf,
1377 mtask->data_count);
1378 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001379 tcp_mtask->xmstate |= XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001380 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001381 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001382 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001383 }
1384 }
1385
Mike Christie5bb0b552006-04-06 21:26:46 -05001386 if (tcp_mtask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001387 BUG_ON(!mtask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001388 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001389 /* FIXME: implement.
1390 * Virtual buffer could be spreaded across multiple pages...
1391 */
1392 do {
Mike Christie3219e522006-05-30 00:37:28 -05001393 int rc;
1394
1395 rc = iscsi_sendpage(conn, &tcp_mtask->sendbuf,
1396 &mtask->data_count, &tcp_mtask->sent);
1397 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001398 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001399 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001400 }
1401 } while (mtask->data_count);
1402 }
1403
Mike Christie5bb0b552006-04-06 21:26:46 -05001404 BUG_ON(tcp_mtask->xmstate != XMSTATE_IDLE);
1405 if (mtask->hdr->itt == cpu_to_be32(ISCSI_RESERVED_TAG)) {
1406 struct iscsi_session *session = conn->session;
1407
1408 spin_lock_bh(&session->lock);
1409 list_del(&conn->mtask->running);
1410 __kfifo_put(session->mgmtpool.queue, (void*)&conn->mtask,
1411 sizeof(void*));
1412 spin_unlock_bh(&session->lock);
1413 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001414 return 0;
1415}
1416
1417static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -05001418handle_xmstate_r_hdr(struct iscsi_conn *conn,
1419 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001420{
Mike Christie3219e522006-05-30 00:37:28 -05001421 int rc;
1422
Mike Christie5bb0b552006-04-06 21:26:46 -05001423 tcp_ctask->xmstate &= ~XMSTATE_R_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001424 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001425 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1426 (u8*)tcp_ctask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001427 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, 0);
1428 if (!rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001429 BUG_ON(tcp_ctask->xmstate != XMSTATE_IDLE);
Alex Aizman7ba24712005-08-04 19:30:08 -07001430 return 0; /* wait for Data-In */
1431 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001432 tcp_ctask->xmstate |= XMSTATE_R_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001433 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001434}
1435
1436static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -05001437handle_xmstate_w_hdr(struct iscsi_conn *conn,
1438 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001439{
Mike Christie5bb0b552006-04-06 21:26:46 -05001440 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001441 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001442
1443 tcp_ctask->xmstate &= ~XMSTATE_W_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001444 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001445 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1446 (u8*)tcp_ctask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001447 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->imm_count);
1448 if (rc)
Mike Christie5bb0b552006-04-06 21:26:46 -05001449 tcp_ctask->xmstate |= XMSTATE_W_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001450 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001451}
1452
1453static inline int
1454handle_xmstate_data_digest(struct iscsi_conn *conn,
1455 struct iscsi_cmd_task *ctask)
1456{
Mike Christie5bb0b552006-04-06 21:26:46 -05001457 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001458 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001459
1460 tcp_ctask->xmstate &= ~XMSTATE_DATA_DIGEST;
1461 debug_tcp("resent data digest 0x%x\n", tcp_ctask->datadigest);
Mike Christie3219e522006-05-30 00:37:28 -05001462 rc = iscsi_digest_final_send(conn, ctask, &tcp_ctask->immbuf,
1463 &tcp_ctask->datadigest, 0);
1464 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001465 tcp_ctask->xmstate |= XMSTATE_DATA_DIGEST;
Alex Aizman7ba24712005-08-04 19:30:08 -07001466 debug_tcp("resent data digest 0x%x fail!\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001467 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001468 }
Mike Christie3219e522006-05-30 00:37:28 -05001469
1470 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001471}
1472
1473static inline int
1474handle_xmstate_imm_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1475{
Mike Christie5bb0b552006-04-06 21:26:46 -05001476 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1477 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001478 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001479
Alex Aizman7ba24712005-08-04 19:30:08 -07001480 BUG_ON(!ctask->imm_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001481 tcp_ctask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001482
1483 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001484 iscsi_data_digest_init(tcp_conn, ctask);
1485 tcp_ctask->immdigest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001486 }
1487
1488 for (;;) {
Mike Christie3219e522006-05-30 00:37:28 -05001489 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf,
1490 &ctask->imm_count, &tcp_ctask->sent);
1491 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001492 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001493 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001494 crypto_digest_final(tcp_conn->data_tx_tfm,
1495 (u8*)&tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001496 debug_tcp("tx imm sendpage fail 0x%x\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001497 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001498 }
Mike Christie3219e522006-05-30 00:37:28 -05001499 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001500 }
1501 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001502 crypto_digest_update(tcp_conn->data_tx_tfm,
1503 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001504
1505 if (!ctask->imm_count)
1506 break;
Mike Christie5bb0b552006-04-06 21:26:46 -05001507 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1508 &tcp_ctask->sg[tcp_ctask->sg_count++]);
Alex Aizman7ba24712005-08-04 19:30:08 -07001509 }
1510
Mike Christie5bb0b552006-04-06 21:26:46 -05001511 if (conn->datadgst_en && !(tcp_ctask->xmstate & XMSTATE_W_PAD)) {
Mike Christie3219e522006-05-30 00:37:28 -05001512 rc = iscsi_digest_final_send(conn, ctask, &tcp_ctask->immbuf,
1513 &tcp_ctask->immdigest, 1);
1514 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001515 debug_tcp("sending imm digest 0x%x fail!\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001516 tcp_ctask->immdigest);
Mike Christie3219e522006-05-30 00:37:28 -05001517 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001518 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001519 debug_tcp("sending imm digest 0x%x\n", tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001520 }
1521
1522 return 0;
1523}
1524
1525static inline int
1526handle_xmstate_uns_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1527{
Mike Christie5bb0b552006-04-06 21:26:46 -05001528 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001529 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001530 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001531
Mike Christie5bb0b552006-04-06 21:26:46 -05001532 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
1533 if (tcp_ctask->xmstate & XMSTATE_UNS_INIT) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001534 iscsi_unsolicit_data_init(conn, ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -05001535 dtask = tcp_ctask->dtask;
Mike Christieaf973482005-09-12 21:01:32 -05001536 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001537 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001538 (u8*)dtask->hdrext);
Mike Christie5bb0b552006-04-06 21:26:46 -05001539 tcp_ctask->xmstate &= ~XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001540 }
Mike Christie3219e522006-05-30 00:37:28 -05001541
1542 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->data_count);
1543 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001544 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1545 tcp_ctask->xmstate |= XMSTATE_UNS_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001546 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001547 }
1548
1549 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001550 ctask->itt, ctask->unsol_count, tcp_ctask->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001551 return 0;
1552}
1553
1554static inline int
1555handle_xmstate_uns_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1556{
Mike Christie5bb0b552006-04-06 21:26:46 -05001557 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1558 struct iscsi_data_task *dtask = tcp_ctask->dtask;
1559 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001560 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001561
1562 BUG_ON(!ctask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001563 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001564
1565 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001566 iscsi_data_digest_init(tcp_conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001567 dtask->digest = 0;
1568 }
1569
1570 for (;;) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001571 int start = tcp_ctask->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001572
Mike Christie3219e522006-05-30 00:37:28 -05001573 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf,
1574 &ctask->data_count, &tcp_ctask->sent);
1575 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001576 ctask->unsol_count -= tcp_ctask->sent - start;
1577 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001578 /* will continue with this ctask later.. */
1579 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001580 crypto_digest_final(tcp_conn->data_tx_tfm,
Alex Aizman7ba24712005-08-04 19:30:08 -07001581 (u8 *)&dtask->digest);
1582 debug_tcp("tx uns data fail 0x%x\n",
1583 dtask->digest);
1584 }
Mike Christie3219e522006-05-30 00:37:28 -05001585 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001586 }
1587
Mike Christie5bb0b552006-04-06 21:26:46 -05001588 BUG_ON(tcp_ctask->sent > ctask->total_length);
1589 ctask->unsol_count -= tcp_ctask->sent - start;
Alex Aizman7ba24712005-08-04 19:30:08 -07001590
1591 /*
1592 * XXX:we may run here with un-initial sendbuf.
1593 * so pass it
1594 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001595 if (conn->datadgst_en && tcp_ctask->sent - start > 0)
1596 crypto_digest_update(tcp_conn->data_tx_tfm,
1597 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001598
1599 if (!ctask->data_count)
1600 break;
Mike Christie5bb0b552006-04-06 21:26:46 -05001601 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1602 &tcp_ctask->sg[tcp_ctask->sg_count++]);
Alex Aizman7ba24712005-08-04 19:30:08 -07001603 }
1604 BUG_ON(ctask->unsol_count < 0);
1605
1606 /*
1607 * Done with the Data-Out. Next, check if we need
1608 * to send another unsolicited Data-Out.
1609 */
1610 if (ctask->unsol_count) {
1611 if (conn->datadgst_en) {
Mike Christie3219e522006-05-30 00:37:28 -05001612 rc = iscsi_digest_final_send(conn, ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -07001613 &dtask->digestbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001614 &dtask->digest, 1);
1615 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001616 debug_tcp("send uns digest 0x%x fail\n",
1617 dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001618 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001619 }
1620 debug_tcp("sending uns digest 0x%x, more uns\n",
1621 dtask->digest);
1622 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001623 tcp_ctask->xmstate |= XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001624 return 1;
1625 }
1626
Mike Christie5bb0b552006-04-06 21:26:46 -05001627 if (conn->datadgst_en && !(tcp_ctask->xmstate & XMSTATE_W_PAD)) {
Mike Christie3219e522006-05-30 00:37:28 -05001628 rc = iscsi_digest_final_send(conn, ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -07001629 &dtask->digestbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001630 &dtask->digest, 1);
1631 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001632 debug_tcp("send last uns digest 0x%x fail\n",
1633 dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001634 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001635 }
1636 debug_tcp("sending uns digest 0x%x\n",dtask->digest);
1637 }
1638
1639 return 0;
1640}
1641
1642static inline int
1643handle_xmstate_sol_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1644{
1645 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001646 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1647 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1648 struct iscsi_r2t_info *r2t = tcp_ctask->r2t;
Mike Christieffbfe922006-05-18 20:31:36 -05001649 struct iscsi_data_task *dtask = &r2t->dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001650 int left, rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001651
Mike Christie5bb0b552006-04-06 21:26:46 -05001652 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1653 tcp_ctask->dtask = dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001654
1655 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001656 iscsi_data_digest_init(tcp_conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001657 dtask->digest = 0;
1658 }
1659solicit_again:
1660 /*
Mike Christieb6c395e2006-07-24 15:47:15 -05001661 * send Data-Out within this R2T sequence.
Alex Aizman7ba24712005-08-04 19:30:08 -07001662 */
1663 if (!r2t->data_count)
1664 goto data_out_done;
1665
Mike Christie3219e522006-05-30 00:37:28 -05001666 rc = iscsi_sendpage(conn, &r2t->sendbuf, &r2t->data_count, &r2t->sent);
1667 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001668 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001669 /* will continue with this ctask later.. */
1670 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001671 crypto_digest_final(tcp_conn->data_tx_tfm,
Alex Aizman7ba24712005-08-04 19:30:08 -07001672 (u8 *)&dtask->digest);
1673 debug_tcp("r2t data send fail 0x%x\n", dtask->digest);
1674 }
Mike Christie3219e522006-05-30 00:37:28 -05001675 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001676 }
1677
1678 BUG_ON(r2t->data_count < 0);
1679 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001680 crypto_digest_update(tcp_conn->data_tx_tfm, &r2t->sendbuf.sg,
1681 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001682
1683 if (r2t->data_count) {
1684 BUG_ON(ctask->sc->use_sg == 0);
1685 if (!iscsi_buf_left(&r2t->sendbuf)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001686 BUG_ON(tcp_ctask->bad_sg == r2t->sg);
Alex Aizman7ba24712005-08-04 19:30:08 -07001687 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1688 r2t->sg += 1;
1689 }
1690 goto solicit_again;
1691 }
1692
1693data_out_done:
1694 /*
1695 * Done with this Data-Out. Next, check if we have
1696 * to send another Data-Out for this R2T.
1697 */
1698 BUG_ON(r2t->data_length - r2t->sent < 0);
1699 left = r2t->data_length - r2t->sent;
1700 if (left) {
1701 if (conn->datadgst_en) {
Mike Christie3219e522006-05-30 00:37:28 -05001702 rc = iscsi_digest_final_send(conn, ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -07001703 &dtask->digestbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001704 &dtask->digest, 1);
1705 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001706 debug_tcp("send r2t data digest 0x%x"
1707 "fail\n", dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001708 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001709 }
1710 debug_tcp("r2t data send digest 0x%x\n",
1711 dtask->digest);
1712 }
1713 iscsi_solicit_data_cont(conn, ctask, r2t, left);
Mike Christie5bb0b552006-04-06 21:26:46 -05001714 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1715 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001716 return 1;
1717 }
1718
1719 /*
1720 * Done with this R2T. Check if there are more
1721 * outstanding R2Ts ready to be processed.
1722 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001723 BUG_ON(tcp_ctask->r2t_data_count - r2t->data_length < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -07001724 if (conn->datadgst_en) {
Mike Christie3219e522006-05-30 00:37:28 -05001725 rc = iscsi_digest_final_send(conn, ctask, &dtask->digestbuf,
1726 &dtask->digest, 1);
1727 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001728 debug_tcp("send last r2t data digest 0x%x"
1729 "fail\n", dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001730 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001731 }
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;
Mike Christieb6c395e2006-07-24 15:47:15 -05001756 int sent = 0, rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001757
Mike Christie5bb0b552006-04-06 21:26:46 -05001758 tcp_ctask->xmstate &= ~XMSTATE_W_PAD;
Mike Christie6e458cc2006-05-18 20:31:31 -05001759 iscsi_buf_init_iov(&tcp_ctask->sendbuf, (char*)&tcp_ctask->pad,
Mike Christie5bb0b552006-04-06 21:26:46 -05001760 tcp_ctask->pad_count);
Mike Christie3219e522006-05-30 00:37:28 -05001761 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf, &tcp_ctask->pad_count,
1762 &sent);
1763 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001764 tcp_ctask->xmstate |= XMSTATE_W_PAD;
Mike Christie3219e522006-05-30 00:37:28 -05001765 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001766 }
1767
1768 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001769 crypto_digest_update(tcp_conn->data_tx_tfm,
1770 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001771 /* imm data? */
1772 if (!dtask) {
Mike Christie3219e522006-05-30 00:37:28 -05001773 rc = iscsi_digest_final_send(conn, ctask,
Mike Christie5bb0b552006-04-06 21:26:46 -05001774 &tcp_ctask->immbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001775 &tcp_ctask->immdigest, 1);
1776 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001777 debug_tcp("send padding digest 0x%x"
Mike Christie5bb0b552006-04-06 21:26:46 -05001778 "fail!\n", tcp_ctask->immdigest);
Mike Christie3219e522006-05-30 00:37:28 -05001779 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001780 }
1781 debug_tcp("done with padding, digest 0x%x\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001782 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001783 } else {
Mike Christie3219e522006-05-30 00:37:28 -05001784 rc = iscsi_digest_final_send(conn, ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -07001785 &dtask->digestbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001786 &dtask->digest, 1);
1787 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001788 debug_tcp("send padding digest 0x%x"
1789 "fail\n", dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001790 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001791 }
1792 debug_tcp("done with padding, digest 0x%x\n",
1793 dtask->digest);
1794 }
1795 }
1796
1797 return 0;
1798}
1799
1800static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001801iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001802{
Mike Christie5bb0b552006-04-06 21:26:46 -05001803 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001804 int rc = 0;
1805
1806 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001807 conn->id, tcp_ctask->xmstate, ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001808
1809 /*
1810 * serialize with TMF AbortTask
1811 */
1812 if (ctask->mtask)
1813 return rc;
1814
Mike Christie3219e522006-05-30 00:37:28 -05001815 if (tcp_ctask->xmstate & XMSTATE_R_HDR)
1816 return handle_xmstate_r_hdr(conn, tcp_ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001817
Mike Christie5bb0b552006-04-06 21:26:46 -05001818 if (tcp_ctask->xmstate & XMSTATE_W_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001819 rc = handle_xmstate_w_hdr(conn, ctask);
1820 if (rc)
1821 return rc;
1822 }
1823
1824 /* XXX: for data digest xmit recover */
Mike Christie5bb0b552006-04-06 21:26:46 -05001825 if (tcp_ctask->xmstate & XMSTATE_DATA_DIGEST) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001826 rc = handle_xmstate_data_digest(conn, ctask);
1827 if (rc)
1828 return rc;
1829 }
1830
Mike Christie5bb0b552006-04-06 21:26:46 -05001831 if (tcp_ctask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001832 rc = handle_xmstate_imm_data(conn, ctask);
1833 if (rc)
1834 return rc;
1835 }
1836
Mike Christie5bb0b552006-04-06 21:26:46 -05001837 if (tcp_ctask->xmstate & XMSTATE_UNS_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001838 BUG_ON(!ctask->unsol_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001839 tcp_ctask->xmstate &= ~XMSTATE_UNS_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001840unsolicit_head_again:
1841 rc = handle_xmstate_uns_hdr(conn, ctask);
1842 if (rc)
1843 return rc;
1844 }
1845
Mike Christie5bb0b552006-04-06 21:26:46 -05001846 if (tcp_ctask->xmstate & XMSTATE_UNS_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001847 rc = handle_xmstate_uns_data(conn, ctask);
1848 if (rc == 1)
1849 goto unsolicit_head_again;
1850 else if (rc)
1851 return rc;
1852 goto done;
1853 }
1854
Mike Christie5bb0b552006-04-06 21:26:46 -05001855 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001856 struct iscsi_r2t_info *r2t;
1857
Mike Christie5bb0b552006-04-06 21:26:46 -05001858 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1859 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1860 if (!tcp_ctask->r2t)
1861 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
Alex Aizman7ba24712005-08-04 19:30:08 -07001862 sizeof(void*));
1863solicit_head_again:
Mike Christie5bb0b552006-04-06 21:26:46 -05001864 r2t = tcp_ctask->r2t;
Mike Christieaf973482005-09-12 21:01:32 -05001865 if (conn->hdrdgst_en)
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001866 iscsi_hdr_digest(conn, &r2t->headbuf,
Mike Christieffbfe922006-05-18 20:31:36 -05001867 (u8*)r2t->dtask.hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001868 rc = iscsi_sendhdr(conn, &r2t->headbuf, r2t->data_count);
1869 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001870 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1871 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001872 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001873 }
1874
1875 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1876 r2t->solicit_datasn - 1, ctask->itt, r2t->data_count,
1877 r2t->sent);
1878 }
1879
Mike Christie5bb0b552006-04-06 21:26:46 -05001880 if (tcp_ctask->xmstate & XMSTATE_SOL_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001881 rc = handle_xmstate_sol_data(conn, ctask);
1882 if (rc == 1)
1883 goto solicit_head_again;
1884 if (rc)
1885 return rc;
1886 }
1887
1888done:
1889 /*
1890 * Last thing to check is whether we need to send write
1891 * padding. Note that we check for xmstate equality, not just the bit.
1892 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001893 if (tcp_ctask->xmstate == XMSTATE_W_PAD)
Alex Aizman7ba24712005-08-04 19:30:08 -07001894 rc = handle_xmstate_w_pad(conn, ctask);
1895
1896 return rc;
1897}
1898
Mike Christie7b8631b2006-01-13 18:05:50 -06001899static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001900iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001901{
Mike Christie7b8631b2006-01-13 18:05:50 -06001902 struct iscsi_conn *conn;
1903 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001904 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001905
Mike Christie5bb0b552006-04-06 21:26:46 -05001906 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001907 if (!cls_conn)
1908 return NULL;
1909 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001910 /*
1911 * due to strange issues with iser these are not set
1912 * in iscsi_conn_setup
1913 */
Alex Aizman7ba24712005-08-04 19:30:08 -07001914 conn->max_recv_dlength = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH;
1915
Mike Christie5bb0b552006-04-06 21:26:46 -05001916 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1917 if (!tcp_conn)
1918 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001919
Mike Christie5bb0b552006-04-06 21:26:46 -05001920 conn->dd_data = tcp_conn;
1921 tcp_conn->iscsi_conn = conn;
1922 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
1923 /* initial operational parameters */
1924 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -07001925
Mike Christie7b8631b2006-01-13 18:05:50 -06001926 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001927
Mike Christie5bb0b552006-04-06 21:26:46 -05001928tcp_conn_alloc_fail:
1929 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001930 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001931}
1932
1933static void
Mike Christie1c834692006-07-24 15:47:26 -05001934iscsi_tcp_release_conn(struct iscsi_conn *conn)
1935{
1936 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1937
1938 if (!tcp_conn->sock)
1939 return;
1940
1941 sock_hold(tcp_conn->sock->sk);
1942 iscsi_conn_restore_callbacks(tcp_conn);
1943 sock_put(tcp_conn->sock->sk);
1944
1945 sock_release(tcp_conn->sock);
1946 tcp_conn->sock = NULL;
1947 conn->recv_lock = NULL;
1948}
1949
1950static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001951iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001952{
Mike Christie7b8631b2006-01-13 18:05:50 -06001953 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001954 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1955 int digest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001956
Mike Christie5bb0b552006-04-06 21:26:46 -05001957 if (conn->hdrdgst_en || conn->datadgst_en)
1958 digest = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001959
Mike Christie1c834692006-07-24 15:47:26 -05001960 iscsi_tcp_release_conn(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001961 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001962
Mike Christie5bb0b552006-04-06 21:26:46 -05001963 /* now free tcp_conn */
1964 if (digest) {
1965 if (tcp_conn->tx_tfm)
1966 crypto_free_tfm(tcp_conn->tx_tfm);
1967 if (tcp_conn->rx_tfm)
1968 crypto_free_tfm(tcp_conn->rx_tfm);
1969 if (tcp_conn->data_tx_tfm)
1970 crypto_free_tfm(tcp_conn->data_tx_tfm);
1971 if (tcp_conn->data_rx_tfm)
1972 crypto_free_tfm(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001973 }
1974
Mike Christie5bb0b552006-04-06 21:26:46 -05001975 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001976}
1977
Mike Christie1c834692006-07-24 15:47:26 -05001978static void
1979iscsi_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
1980{
1981 struct iscsi_conn *conn = cls_conn->dd_data;
1982
1983 iscsi_conn_stop(cls_conn, flag);
1984 iscsi_tcp_release_conn(conn);
1985}
1986
Alex Aizman7ba24712005-08-04 19:30:08 -07001987static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001988iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001989 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001990 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001991{
Mike Christie5bb0b552006-04-06 21:26:46 -05001992 struct iscsi_conn *conn = cls_conn->dd_data;
1993 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001994 struct sock *sk;
1995 struct socket *sock;
1996 int err;
1997
1998 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001999 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07002000 if (!sock) {
2001 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
2002 return -EEXIST;
2003 }
2004
Mike Christie5bb0b552006-04-06 21:26:46 -05002005 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
2006 if (err)
2007 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07002008
Mike Christie67a61112006-05-30 00:37:20 -05002009 /* bind iSCSI connection and socket */
2010 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07002011
Mike Christie67a61112006-05-30 00:37:20 -05002012 /* setup Socket parameters */
2013 sk = sock->sk;
2014 sk->sk_reuse = 1;
2015 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
2016 sk->sk_allocation = GFP_ATOMIC;
Alex Aizman7ba24712005-08-04 19:30:08 -07002017
Mike Christie67a61112006-05-30 00:37:20 -05002018 /* FIXME: disable Nagle's algorithm */
Alex Aizman7ba24712005-08-04 19:30:08 -07002019
Mike Christie67a61112006-05-30 00:37:20 -05002020 /*
2021 * Intercept TCP callbacks for sendfile like receive
2022 * processing.
2023 */
2024 conn->recv_lock = &sk->sk_callback_lock;
2025 iscsi_conn_set_callbacks(conn);
2026 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
2027 /*
2028 * set receive state machine into initial state
2029 */
2030 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -07002031
Alex Aizman7ba24712005-08-04 19:30:08 -07002032 return 0;
2033}
2034
Mike Christie5bb0b552006-04-06 21:26:46 -05002035/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05002036static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002037iscsi_tcp_mgmt_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask,
2038 char *data, uint32_t data_size)
Mike Christie30a6c652006-04-06 21:13:39 -05002039{
Mike Christie5bb0b552006-04-06 21:26:46 -05002040 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -05002041
Mike Christie6e458cc2006-05-18 20:31:31 -05002042 iscsi_buf_init_iov(&tcp_mtask->headbuf, (char*)mtask->hdr,
2043 sizeof(struct iscsi_hdr));
Mike Christie5bb0b552006-04-06 21:26:46 -05002044 tcp_mtask->xmstate = XMSTATE_IMM_HDR;
Mike Christieb6c395e2006-07-24 15:47:15 -05002045 tcp_mtask->sent = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002046
Mike Christie5bb0b552006-04-06 21:26:46 -05002047 if (mtask->data_count)
2048 iscsi_buf_init_iov(&tcp_mtask->sendbuf, (char*)mtask->data,
Alex Aizman7ba24712005-08-04 19:30:08 -07002049 mtask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07002050}
2051
2052static int
2053iscsi_r2tpool_alloc(struct iscsi_session *session)
2054{
2055 int i;
2056 int cmd_i;
2057
2058 /*
2059 * initialize per-task: R2T pool and xmit queue
2060 */
2061 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2062 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05002063 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002064
2065 /*
2066 * pre-allocated x4 as much r2ts to handle race when
2067 * target acks DataOut faster than we data_xmit() queues
2068 * could replenish r2tqueue.
2069 */
2070
2071 /* R2T pool */
Mike Christie5bb0b552006-04-06 21:26:46 -05002072 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4,
2073 (void***)&tcp_ctask->r2ts,
2074 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002075 goto r2t_alloc_fail;
2076 }
2077
2078 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05002079 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07002080 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05002081 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
2082 iscsi_pool_free(&tcp_ctask->r2tpool,
2083 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002084 goto r2t_alloc_fail;
2085 }
Alex Aizman7ba24712005-08-04 19:30:08 -07002086 }
2087
2088 return 0;
2089
2090r2t_alloc_fail:
2091 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002092 struct iscsi_cmd_task *ctask = session->cmds[i];
2093 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2094
Mike Christie5bb0b552006-04-06 21:26:46 -05002095 kfifo_free(tcp_ctask->r2tqueue);
2096 iscsi_pool_free(&tcp_ctask->r2tpool,
2097 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002098 }
2099 return -ENOMEM;
2100}
2101
2102static void
2103iscsi_r2tpool_free(struct iscsi_session *session)
2104{
2105 int i;
2106
2107 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002108 struct iscsi_cmd_task *ctask = session->cmds[i];
2109 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2110
Mike Christie5bb0b552006-04-06 21:26:46 -05002111 kfifo_free(tcp_ctask->r2tqueue);
2112 iscsi_pool_free(&tcp_ctask->r2tpool,
2113 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002114 }
2115}
2116
Alex Aizman7ba24712005-08-04 19:30:08 -07002117static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002118iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002119 char *buf, int buflen)
Alex Aizman7ba24712005-08-04 19:30:08 -07002120{
Mike Christie7b7232f2006-02-01 21:06:49 -06002121 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002122 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05002123 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002124 int value;
Alex Aizman7ba24712005-08-04 19:30:08 -07002125
Alex Aizman7ba24712005-08-04 19:30:08 -07002126 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002127 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002128 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05002129 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -07002130 if (conn->hdrdgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002131 tcp_conn->hdr_size += sizeof(__u32);
2132 if (!tcp_conn->tx_tfm)
2133 tcp_conn->tx_tfm = crypto_alloc_tfm("crc32c",
2134 0);
2135 if (!tcp_conn->tx_tfm)
Alex Aizman7ba24712005-08-04 19:30:08 -07002136 return -ENOMEM;
Mike Christie5bb0b552006-04-06 21:26:46 -05002137 if (!tcp_conn->rx_tfm)
2138 tcp_conn->rx_tfm = crypto_alloc_tfm("crc32c",
2139 0);
2140 if (!tcp_conn->rx_tfm) {
2141 crypto_free_tfm(tcp_conn->tx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002142 return -ENOMEM;
2143 }
2144 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05002145 if (tcp_conn->tx_tfm)
2146 crypto_free_tfm(tcp_conn->tx_tfm);
2147 if (tcp_conn->rx_tfm)
2148 crypto_free_tfm(tcp_conn->rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002149 }
2150 break;
2151 case ISCSI_PARAM_DATADGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002152 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002153 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002154 if (!tcp_conn->data_tx_tfm)
2155 tcp_conn->data_tx_tfm =
Alex Aizman7ba24712005-08-04 19:30:08 -07002156 crypto_alloc_tfm("crc32c", 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05002157 if (!tcp_conn->data_tx_tfm)
Alex Aizman7ba24712005-08-04 19:30:08 -07002158 return -ENOMEM;
Mike Christie5bb0b552006-04-06 21:26:46 -05002159 if (!tcp_conn->data_rx_tfm)
2160 tcp_conn->data_rx_tfm =
Alex Aizman7ba24712005-08-04 19:30:08 -07002161 crypto_alloc_tfm("crc32c", 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05002162 if (!tcp_conn->data_rx_tfm) {
2163 crypto_free_tfm(tcp_conn->data_tx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002164 return -ENOMEM;
2165 }
2166 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05002167 if (tcp_conn->data_tx_tfm)
2168 crypto_free_tfm(tcp_conn->data_tx_tfm);
2169 if (tcp_conn->data_rx_tfm)
2170 crypto_free_tfm(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002171 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002172 tcp_conn->sendpage = conn->datadgst_en ?
2173 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002174 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002175 case ISCSI_PARAM_MAX_R2T:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002176 sscanf(buf, "%d", &value);
Alex Aizman7ba24712005-08-04 19:30:08 -07002177 if (session->max_r2t == roundup_pow_of_two(value))
2178 break;
2179 iscsi_r2tpool_free(session);
Mike Christie5c75b7f2006-06-28 12:00:26 -05002180 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002181 if (session->max_r2t & (session->max_r2t - 1))
2182 session->max_r2t = roundup_pow_of_two(session->max_r2t);
2183 if (iscsi_r2tpool_alloc(session))
2184 return -ENOMEM;
2185 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002186 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002187 return iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002188 }
2189
2190 return 0;
2191}
2192
2193static int
Mike Christie5c75b7f2006-06-28 12:00:26 -05002194iscsi_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
2195 enum iscsi_param param, char *buf)
Mike Christie7b8631b2006-01-13 18:05:50 -06002196{
Mike Christie7b7232f2006-02-01 21:06:49 -06002197 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002198 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christiefd7255f2006-04-06 21:13:36 -05002199 struct inet_sock *inet;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002200 struct ipv6_pinfo *np;
2201 struct sock *sk;
2202 int len;
Mike Christie7b8631b2006-01-13 18:05:50 -06002203
2204 switch(param) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002205 case ISCSI_PARAM_CONN_PORT:
2206 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002207 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002208 mutex_unlock(&conn->xmitmutex);
2209 return -EINVAL;
2210 }
2211
Mike Christie5bb0b552006-04-06 21:26:46 -05002212 inet = inet_sk(tcp_conn->sock->sk);
Mike Christie5c75b7f2006-06-28 12:00:26 -05002213 len = sprintf(buf, "%hu\n", be16_to_cpu(inet->dport));
Mike Christiefd7255f2006-04-06 21:13:36 -05002214 mutex_unlock(&conn->xmitmutex);
Mike Christie8d2860b2006-05-02 19:46:47 -05002215 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05002216 case ISCSI_PARAM_CONN_ADDRESS:
2217 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002218 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002219 mutex_unlock(&conn->xmitmutex);
2220 return -EINVAL;
2221 }
2222
Mike Christie5bb0b552006-04-06 21:26:46 -05002223 sk = tcp_conn->sock->sk;
Mike Christiefd7255f2006-04-06 21:13:36 -05002224 if (sk->sk_family == PF_INET) {
2225 inet = inet_sk(sk);
2226 len = sprintf(buf, "%u.%u.%u.%u\n",
2227 NIPQUAD(inet->daddr));
2228 } else {
2229 np = inet6_sk(sk);
2230 len = sprintf(buf,
2231 "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
2232 NIP6(np->daddr));
2233 }
2234 mutex_unlock(&conn->xmitmutex);
2235 break;
2236 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002237 return iscsi_conn_get_param(cls_conn, param, buf);
Mike Christiefd7255f2006-04-06 21:13:36 -05002238 }
2239
2240 return len;
2241}
2242
Alex Aizman7ba24712005-08-04 19:30:08 -07002243static void
Mike Christie7b7232f2006-02-01 21:06:49 -06002244iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07002245{
Mike Christie7b7232f2006-02-01 21:06:49 -06002246 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002247 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002248
2249 stats->txdata_octets = conn->txdata_octets;
2250 stats->rxdata_octets = conn->rxdata_octets;
2251 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
2252 stats->dataout_pdus = conn->dataout_pdus_cnt;
2253 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
2254 stats->datain_pdus = conn->datain_pdus_cnt;
2255 stats->r2t_pdus = conn->r2t_pdus_cnt;
2256 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
2257 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
2258 stats->custom_length = 3;
2259 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05002260 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002261 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05002262 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002263 strcpy(stats->custom[2].desc, "eh_abort_cnt");
2264 stats->custom[2].value = conn->eh_abort_cnt;
2265}
2266
Mike Christie5bb0b552006-04-06 21:26:46 -05002267static struct iscsi_cls_session *
2268iscsi_tcp_session_create(struct iscsi_transport *iscsit,
2269 struct scsi_transport_template *scsit,
2270 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07002271{
Mike Christie5bb0b552006-04-06 21:26:46 -05002272 struct iscsi_cls_session *cls_session;
2273 struct iscsi_session *session;
2274 uint32_t hn;
2275 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07002276
Mike Christie5bb0b552006-04-06 21:26:46 -05002277 cls_session = iscsi_session_setup(iscsit, scsit,
2278 sizeof(struct iscsi_tcp_cmd_task),
2279 sizeof(struct iscsi_tcp_mgmt_task),
2280 initial_cmdsn, &hn);
2281 if (!cls_session)
2282 return NULL;
2283 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07002284
Mike Christie5bb0b552006-04-06 21:26:46 -05002285 session = class_to_transport_session(cls_session);
2286 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2287 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2288 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2289
2290 ctask->hdr = &tcp_ctask->hdr;
2291 }
2292
2293 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
2294 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
2295 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
2296
2297 mtask->hdr = &tcp_mtask->hdr;
2298 }
2299
2300 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
2301 goto r2tpool_alloc_fail;
2302
2303 return cls_session;
2304
2305r2tpool_alloc_fail:
2306 iscsi_session_teardown(cls_session);
2307 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002308}
2309
Mike Christie5bb0b552006-04-06 21:26:46 -05002310static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2311{
Mike Christie5bb0b552006-04-06 21:26:46 -05002312 iscsi_r2tpool_free(class_to_transport_session(cls_session));
2313 iscsi_session_teardown(cls_session);
2314}
2315
2316static struct scsi_host_template iscsi_sht = {
Mike Christief4246b32006-07-24 15:47:54 -05002317 .name = "iSCSI Initiator over TCP/IP",
Mike Christie5bb0b552006-04-06 21:26:46 -05002318 .queuecommand = iscsi_queuecommand,
2319 .change_queue_depth = iscsi_change_queue_depth,
2320 .can_queue = ISCSI_XMIT_CMDS_MAX - 1,
2321 .sg_tablesize = ISCSI_SG_TABLESIZE,
2322 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
2323 .eh_abort_handler = iscsi_eh_abort,
2324 .eh_host_reset_handler = iscsi_eh_host_reset,
2325 .use_clustering = DISABLE_CLUSTERING,
2326 .proc_name = "iscsi_tcp",
2327 .this_id = -1,
2328};
2329
Alex Aizman7ba24712005-08-04 19:30:08 -07002330static struct iscsi_transport iscsi_tcp_transport = {
2331 .owner = THIS_MODULE,
2332 .name = "tcp",
2333 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
2334 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05002335 .param_mask = ISCSI_MAX_RECV_DLENGTH |
2336 ISCSI_MAX_XMIT_DLENGTH |
2337 ISCSI_HDRDGST_EN |
2338 ISCSI_DATADGST_EN |
2339 ISCSI_INITIAL_R2T_EN |
2340 ISCSI_MAX_R2T |
2341 ISCSI_IMM_DATA_EN |
2342 ISCSI_FIRST_BURST |
2343 ISCSI_MAX_BURST |
2344 ISCSI_PDU_INORDER_EN |
2345 ISCSI_DATASEQ_INORDER_EN |
2346 ISCSI_ERL |
2347 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05002348 ISCSI_CONN_ADDRESS |
Mike Christie5c75b7f2006-06-28 12:00:26 -05002349 ISCSI_EXP_STATSN |
2350 ISCSI_PERSISTENT_PORT |
2351 ISCSI_PERSISTENT_ADDRESS |
2352 ISCSI_TARGET_NAME |
2353 ISCSI_TPGT,
Alex Aizman7ba24712005-08-04 19:30:08 -07002354 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06002355 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07002356 .max_conn = 1,
2357 .max_cmd_len = ISCSI_TCP_MAX_CMD_LEN,
Mike Christie5bb0b552006-04-06 21:26:46 -05002358 /* session management */
2359 .create_session = iscsi_tcp_session_create,
2360 .destroy_session = iscsi_tcp_session_destroy,
2361 /* connection management */
2362 .create_conn = iscsi_tcp_conn_create,
2363 .bind_conn = iscsi_tcp_conn_bind,
2364 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07002365 .set_param = iscsi_conn_set_param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002366 .get_conn_param = iscsi_tcp_conn_get_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002367 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002368 .start_conn = iscsi_conn_start,
Mike Christie1c834692006-07-24 15:47:26 -05002369 .stop_conn = iscsi_tcp_conn_stop,
Mike Christie5bb0b552006-04-06 21:26:46 -05002370 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002371 .send_pdu = iscsi_conn_send_pdu,
2372 .get_stats = iscsi_conn_get_stats,
Mike Christie5bb0b552006-04-06 21:26:46 -05002373 .init_cmd_task = iscsi_tcp_cmd_init,
2374 .init_mgmt_task = iscsi_tcp_mgmt_init,
2375 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2376 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2377 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2378 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002379 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002380};
2381
2382static int __init
2383iscsi_tcp_init(void)
2384{
Alex Aizman7ba24712005-08-04 19:30:08 -07002385 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002386 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2387 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002388 return -EINVAL;
2389 }
2390 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2391
Mike Christie7b8631b2006-01-13 18:05:50 -06002392 if (!iscsi_register_transport(&iscsi_tcp_transport))
Mike Christieffbfe922006-05-18 20:31:36 -05002393 return -ENODEV;
Alex Aizman7ba24712005-08-04 19:30:08 -07002394
Mike Christie7b8631b2006-01-13 18:05:50 -06002395 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002396}
2397
2398static void __exit
2399iscsi_tcp_exit(void)
2400{
2401 iscsi_unregister_transport(&iscsi_tcp_transport);
Alex Aizman7ba24712005-08-04 19:30:08 -07002402}
2403
2404module_init(iscsi_tcp_init);
2405module_exit(iscsi_tcp_exit);