blob: b4743a9ecc80584006678302140e88aeaa4d634f [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
Mike Christief70e9c52006-05-30 01:04:51 -050046#define ISCSI_TCP_VERSION "1.0-595"
Mike Christiee0ecae82006-05-18 20:31:43 -050047
Alex Aizman7ba24712005-08-04 19:30:08 -070048MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
49 "Alex Aizman <itn780@yahoo.com>");
50MODULE_DESCRIPTION("iSCSI/TCP data-path");
51MODULE_LICENSE("GPL");
Mike Christiee0ecae82006-05-18 20:31:43 -050052MODULE_VERSION(ISCSI_TCP_VERSION);
Alex Aizman7ba24712005-08-04 19:30:08 -070053/* #define DEBUG_TCP */
Alex Aizman7ba24712005-08-04 19:30:08 -070054#define DEBUG_ASSERT
55
56#ifdef DEBUG_TCP
Mike Christie5bb0b552006-04-06 21:26:46 -050057#define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
Alex Aizman7ba24712005-08-04 19:30:08 -070058#else
59#define debug_tcp(fmt...)
60#endif
61
Alex Aizman7ba24712005-08-04 19:30:08 -070062#ifndef DEBUG_ASSERT
63#ifdef BUG_ON
64#undef BUG_ON
65#endif
66#define BUG_ON(expr)
67#endif
68
Alex Aizman7ba24712005-08-04 19:30:08 -070069static unsigned int iscsi_max_lun = 512;
70module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
71
Alex Aizman7ba24712005-08-04 19:30:08 -070072static inline void
Alex Aizman7ba24712005-08-04 19:30:08 -070073iscsi_buf_init_iov(struct iscsi_buf *ibuf, char *vbuf, int size)
74{
Mike Christie7cae5152006-01-13 18:05:47 -060075 ibuf->sg.page = virt_to_page(vbuf);
76 ibuf->sg.offset = offset_in_page(vbuf);
Alex Aizman7ba24712005-08-04 19:30:08 -070077 ibuf->sg.length = size;
78 ibuf->sent = 0;
Mike Christie7cae5152006-01-13 18:05:47 -060079 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070080}
81
82static inline void
83iscsi_buf_init_sg(struct iscsi_buf *ibuf, struct scatterlist *sg)
84{
Mike Christie7cae5152006-01-13 18:05:47 -060085 ibuf->sg.page = sg->page;
86 ibuf->sg.offset = sg->offset;
87 ibuf->sg.length = sg->length;
Alex Aizman7ba24712005-08-04 19:30:08 -070088 /*
89 * Fastpath: sg element fits into single page
90 */
Mike Christiea1e80c22006-01-13 18:05:56 -060091 if (sg->length + sg->offset <= PAGE_SIZE && !PageSlab(sg->page))
Mike Christie7cae5152006-01-13 18:05:47 -060092 ibuf->use_sendmsg = 0;
93 else
94 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070095 ibuf->sent = 0;
96}
97
98static inline int
99iscsi_buf_left(struct iscsi_buf *ibuf)
100{
101 int rc;
102
103 rc = ibuf->sg.length - ibuf->sent;
104 BUG_ON(rc < 0);
105 return rc;
106}
107
108static inline void
Mike Christieaf973482005-09-12 21:01:32 -0500109iscsi_hdr_digest(struct iscsi_conn *conn, struct iscsi_buf *buf,
110 u8* crc)
Alex Aizman7ba24712005-08-04 19:30:08 -0700111{
Mike Christie5bb0b552006-04-06 21:26:46 -0500112 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
113
114 crypto_digest_digest(tcp_conn->tx_tfm, &buf->sg, 1, crc);
Mike Christieaf973482005-09-12 21:01:32 -0500115 buf->sg.length += sizeof(uint32_t);
Alex Aizman7ba24712005-08-04 19:30:08 -0700116}
117
Alex Aizman7ba24712005-08-04 19:30:08 -0700118static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500119iscsi_hdr_extract(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700120{
Mike Christie5bb0b552006-04-06 21:26:46 -0500121 struct sk_buff *skb = tcp_conn->in.skb;
Alex Aizman7ba24712005-08-04 19:30:08 -0700122
Mike Christie5bb0b552006-04-06 21:26:46 -0500123 tcp_conn->in.zero_copy_hdr = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700124
Mike Christie5bb0b552006-04-06 21:26:46 -0500125 if (tcp_conn->in.copy >= tcp_conn->hdr_size &&
126 tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700127 /*
128 * Zero-copy PDU Header: using connection context
129 * to store header pointer.
130 */
131 if (skb_shinfo(skb)->frag_list == NULL &&
Mike Christie5bb0b552006-04-06 21:26:46 -0500132 !skb_shinfo(skb)->nr_frags) {
133 tcp_conn->in.hdr = (struct iscsi_hdr *)
134 ((char*)skb->data + tcp_conn->in.offset);
135 tcp_conn->in.zero_copy_hdr = 1;
136 } else {
Alex Aizman7ba24712005-08-04 19:30:08 -0700137 /* ignoring return code since we checked
138 * in.copy before */
Mike Christie5bb0b552006-04-06 21:26:46 -0500139 skb_copy_bits(skb, tcp_conn->in.offset,
140 &tcp_conn->hdr, tcp_conn->hdr_size);
141 tcp_conn->in.hdr = &tcp_conn->hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700142 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500143 tcp_conn->in.offset += tcp_conn->hdr_size;
144 tcp_conn->in.copy -= tcp_conn->hdr_size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700145 } else {
146 int hdr_remains;
147 int copylen;
148
149 /*
150 * PDU header scattered across SKB's,
151 * copying it... This'll happen quite rarely.
152 */
153
Mike Christie5bb0b552006-04-06 21:26:46 -0500154 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER)
155 tcp_conn->in.hdr_offset = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700156
Mike Christie5bb0b552006-04-06 21:26:46 -0500157 hdr_remains = tcp_conn->hdr_size - tcp_conn->in.hdr_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700158 BUG_ON(hdr_remains <= 0);
159
Mike Christie5bb0b552006-04-06 21:26:46 -0500160 copylen = min(tcp_conn->in.copy, hdr_remains);
161 skb_copy_bits(skb, tcp_conn->in.offset,
162 (char*)&tcp_conn->hdr + tcp_conn->in.hdr_offset,
163 copylen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700164
165 debug_tcp("PDU gather offset %d bytes %d in.offset %d "
Mike Christie5bb0b552006-04-06 21:26:46 -0500166 "in.copy %d\n", tcp_conn->in.hdr_offset, copylen,
167 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700168
Mike Christie5bb0b552006-04-06 21:26:46 -0500169 tcp_conn->in.offset += copylen;
170 tcp_conn->in.copy -= copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700171 if (copylen < hdr_remains) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500172 tcp_conn->in_progress = IN_PROGRESS_HEADER_GATHER;
173 tcp_conn->in.hdr_offset += copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700174 return -EAGAIN;
175 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500176 tcp_conn->in.hdr = &tcp_conn->hdr;
177 tcp_conn->discontiguous_hdr_cnt++;
178 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700179 }
180
181 return 0;
182}
183
Mike Christie30a6c652006-04-06 21:13:39 -0500184/*
185 * must be called with session lock
186 */
187static void
188__iscsi_ctask_cleanup(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -0700189{
Mike Christie5bb0b552006-04-06 21:26:46 -0500190 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -0500191 struct scsi_cmnd *sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700192
Mike Christie30a6c652006-04-06 21:13:39 -0500193 sc = ctask->sc;
194 if (unlikely(!sc))
Alex Aizman7ba24712005-08-04 19:30:08 -0700195 return;
Mike Christie30a6c652006-04-06 21:13:39 -0500196
Mike Christie5bb0b552006-04-06 21:26:46 -0500197 tcp_ctask->xmstate = XMSTATE_IDLE;
198 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -0700199}
200
201/**
202 * iscsi_data_rsp - SCSI Data-In Response processing
203 * @conn: iscsi connection
204 * @ctask: scsi command task
205 **/
206static int
207iscsi_data_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
208{
209 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500210 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
211 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
212 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700213 struct iscsi_session *session = conn->session;
214 int datasn = be32_to_cpu(rhdr->datasn);
215
216 rc = iscsi_check_assign_cmdsn(session, (struct iscsi_nopin*)rhdr);
217 if (rc)
218 return rc;
219 /*
220 * setup Data-In byte counter (gets decremented..)
221 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500222 ctask->data_count = tcp_conn->in.datalen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700223
Mike Christie5bb0b552006-04-06 21:26:46 -0500224 if (tcp_conn->in.datalen == 0)
Alex Aizman7ba24712005-08-04 19:30:08 -0700225 return 0;
226
227 if (ctask->datasn != datasn)
228 return ISCSI_ERR_DATASN;
229
230 ctask->datasn++;
231
Mike Christie5bb0b552006-04-06 21:26:46 -0500232 tcp_ctask->data_offset = be32_to_cpu(rhdr->offset);
233 if (tcp_ctask->data_offset + tcp_conn->in.datalen > ctask->total_length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700234 return ISCSI_ERR_DATA_OFFSET;
235
236 if (rhdr->flags & ISCSI_FLAG_DATA_STATUS) {
237 struct scsi_cmnd *sc = ctask->sc;
238
239 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600240 if (rhdr->flags & ISCSI_FLAG_DATA_UNDERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700241 int res_count = be32_to_cpu(rhdr->residual_count);
242
243 if (res_count > 0 &&
244 res_count <= sc->request_bufflen) {
245 sc->resid = res_count;
246 sc->result = (DID_OK << 16) | rhdr->cmd_status;
247 } else
248 sc->result = (DID_BAD_TARGET << 16) |
249 rhdr->cmd_status;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600250 } else if (rhdr->flags & ISCSI_FLAG_DATA_OVERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700251 sc->resid = be32_to_cpu(rhdr->residual_count);
252 sc->result = (DID_OK << 16) | rhdr->cmd_status;
253 } else
254 sc->result = (DID_OK << 16) | rhdr->cmd_status;
255 }
256
257 conn->datain_pdus_cnt++;
258 return 0;
259}
260
261/**
262 * iscsi_solicit_data_init - initialize first Data-Out
263 * @conn: iscsi connection
264 * @ctask: scsi command task
265 * @r2t: R2T info
266 *
267 * Notes:
268 * Initialize first Data-Out within this R2T sequence and finds
269 * proper data_offset within this SCSI command.
270 *
271 * This function is called with connection lock taken.
272 **/
273static void
274iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
275 struct iscsi_r2t_info *r2t)
276{
277 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700278 struct scsi_cmnd *sc = ctask->sc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500279 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700280
Mike Christieffbfe922006-05-18 20:31:36 -0500281 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700282 memset(hdr, 0, sizeof(struct iscsi_data));
283 hdr->ttt = r2t->ttt;
284 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
285 r2t->solicit_datasn++;
286 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500287 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
288 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700289 hdr->exp_statsn = r2t->exp_statsn;
290 hdr->offset = cpu_to_be32(r2t->data_offset);
291 if (r2t->data_length > conn->max_xmit_dlength) {
292 hton24(hdr->dlength, conn->max_xmit_dlength);
293 r2t->data_count = conn->max_xmit_dlength;
294 hdr->flags = 0;
295 } else {
296 hton24(hdr->dlength, r2t->data_length);
297 r2t->data_count = r2t->data_length;
298 hdr->flags = ISCSI_FLAG_CMD_FINAL;
299 }
300 conn->dataout_pdus_cnt++;
301
302 r2t->sent = 0;
303
Mike Christie6e458cc2006-05-18 20:31:31 -0500304 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -0500305 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -0700306
Alex Aizman7ba24712005-08-04 19:30:08 -0700307 if (sc->use_sg) {
308 int i, sg_count = 0;
309 struct scatterlist *sg = sc->request_buffer;
310
311 r2t->sg = NULL;
312 for (i = 0; i < sc->use_sg; i++, sg += 1) {
313 /* FIXME: prefetch ? */
314 if (sg_count + sg->length > r2t->data_offset) {
315 int page_offset;
316
317 /* sg page found! */
318
319 /* offset within this page */
320 page_offset = r2t->data_offset - sg_count;
321
322 /* fill in this buffer */
323 iscsi_buf_init_sg(&r2t->sendbuf, sg);
324 r2t->sendbuf.sg.offset += page_offset;
325 r2t->sendbuf.sg.length -= page_offset;
326
327 /* xmit logic will continue with next one */
328 r2t->sg = sg + 1;
329 break;
330 }
331 sg_count += sg->length;
332 }
333 BUG_ON(r2t->sg == NULL);
334 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500335 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -0700336 (char*)sc->request_buffer + r2t->data_offset,
337 r2t->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -0700338}
339
340/**
341 * iscsi_r2t_rsp - iSCSI R2T Response processing
342 * @conn: iscsi connection
343 * @ctask: scsi command task
344 **/
345static int
346iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
347{
348 struct iscsi_r2t_info *r2t;
349 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500350 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
351 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
352 struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700353 int r2tsn = be32_to_cpu(rhdr->r2tsn);
354 int rc;
355
Mike Christie5bb0b552006-04-06 21:26:46 -0500356 if (tcp_conn->in.datalen)
Alex Aizman7ba24712005-08-04 19:30:08 -0700357 return ISCSI_ERR_DATALEN;
358
Mike Christie5bb0b552006-04-06 21:26:46 -0500359 if (tcp_ctask->exp_r2tsn && tcp_ctask->exp_r2tsn != r2tsn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700360 return ISCSI_ERR_R2TSN;
361
362 rc = iscsi_check_assign_cmdsn(session, (struct iscsi_nopin*)rhdr);
363 if (rc)
364 return rc;
365
366 /* FIXME: use R2TSN to detect missing R2T */
367
368 /* fill-in new R2T associated with the task */
369 spin_lock(&session->lock);
370 if (!ctask->sc || ctask->mtask ||
371 session->state != ISCSI_STATE_LOGGED_IN) {
372 printk(KERN_INFO "iscsi_tcp: dropping R2T itt %d in "
373 "recovery...\n", ctask->itt);
374 spin_unlock(&session->lock);
375 return 0;
376 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500377 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700378 BUG_ON(!rc);
379
380 r2t->exp_statsn = rhdr->statsn;
381 r2t->data_length = be32_to_cpu(rhdr->data_length);
382 if (r2t->data_length == 0 ||
383 r2t->data_length > session->max_burst) {
384 spin_unlock(&session->lock);
385 return ISCSI_ERR_DATALEN;
386 }
387
388 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
389 if (r2t->data_offset + r2t->data_length > ctask->total_length) {
390 spin_unlock(&session->lock);
391 return ISCSI_ERR_DATALEN;
392 }
393
394 r2t->ttt = rhdr->ttt; /* no flip */
395 r2t->solicit_datasn = 0;
396
397 iscsi_solicit_data_init(conn, ctask, r2t);
398
Mike Christie5bb0b552006-04-06 21:26:46 -0500399 tcp_ctask->exp_r2tsn = r2tsn + 1;
400 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
401 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
402 __kfifo_put(conn->xmitqueue, (void*)&ctask, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700403
Mike Christie55e32992006-01-13 18:05:53 -0600404 scsi_queue_work(session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -0700405 conn->r2t_pdus_cnt++;
406 spin_unlock(&session->lock);
407
408 return 0;
409}
410
411static int
Mike Christie5bb0b552006-04-06 21:26:46 -0500412iscsi_tcp_hdr_recv(struct iscsi_conn *conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700413{
Mike Christie5bb0b552006-04-06 21:26:46 -0500414 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700415 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700416 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500417 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
418 uint32_t cdgst, rdgst = 0, itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700419
Mike Christie5bb0b552006-04-06 21:26:46 -0500420 hdr = tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700421
422 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500423 tcp_conn->in.datalen = ntoh24(hdr->dlength);
424 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700425 printk(KERN_ERR "iscsi_tcp: datalen %d > %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500426 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700427 return ISCSI_ERR_DATALEN;
428 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500429 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700430
431 /* read AHS */
Mike Christie5bb0b552006-04-06 21:26:46 -0500432 ahslen = hdr->hlength << 2;
433 tcp_conn->in.offset += ahslen;
434 tcp_conn->in.copy -= ahslen;
435 if (tcp_conn->in.copy < 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700436 printk(KERN_ERR "iscsi_tcp: can't handle AHS with length "
Mike Christie5bb0b552006-04-06 21:26:46 -0500437 "%d bytes\n", ahslen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700438 return ISCSI_ERR_AHSLEN;
439 }
440
441 /* calculate read padding */
Mike Christie5bb0b552006-04-06 21:26:46 -0500442 tcp_conn->in.padding = tcp_conn->in.datalen & (ISCSI_PAD_LEN-1);
443 if (tcp_conn->in.padding) {
444 tcp_conn->in.padding = ISCSI_PAD_LEN - tcp_conn->in.padding;
445 debug_scsi("read padding %d bytes\n", tcp_conn->in.padding);
Alex Aizman7ba24712005-08-04 19:30:08 -0700446 }
447
448 if (conn->hdrdgst_en) {
449 struct scatterlist sg;
450
451 sg_init_one(&sg, (u8 *)hdr,
Mike Christie5bb0b552006-04-06 21:26:46 -0500452 sizeof(struct iscsi_hdr) + ahslen);
453 crypto_digest_digest(tcp_conn->rx_tfm, &sg, 1, (u8 *)&cdgst);
Alex Aizman7ba24712005-08-04 19:30:08 -0700454 rdgst = *(uint32_t*)((char*)hdr + sizeof(struct iscsi_hdr) +
Mike Christie5bb0b552006-04-06 21:26:46 -0500455 ahslen);
Mike Christie8a47cd32005-11-30 02:27:19 -0600456 if (cdgst != rdgst) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500457 printk(KERN_ERR "iscsi_tcp: hdrdgst error "
458 "recv 0x%x calc 0x%x\n", rdgst, cdgst);
Mike Christie8a47cd32005-11-30 02:27:19 -0600459 return ISCSI_ERR_HDR_DGST;
460 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700461 }
462
Mike Christie5bb0b552006-04-06 21:26:46 -0500463 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700464 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500465 rc = iscsi_verify_itt(conn, hdr, &itt);
466 if (rc == ISCSI_ERR_NO_SCSI_CMD) {
467 tcp_conn->in.datalen = 0; /* force drop */
468 return 0;
469 } else if (rc)
470 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700471
472 debug_tcp("opcode 0x%x offset %d copy %d ahslen %d datalen %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500473 opcode, tcp_conn->in.offset, tcp_conn->in.copy,
474 ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700475
Mike Christie5bb0b552006-04-06 21:26:46 -0500476 switch(opcode) {
477 case ISCSI_OP_SCSI_DATA_IN:
478 tcp_conn->in.ctask = session->cmds[itt];
479 rc = iscsi_data_rsp(conn, tcp_conn->in.ctask);
480 /* fall through */
481 case ISCSI_OP_SCSI_CMD_RSP:
482 tcp_conn->in.ctask = session->cmds[itt];
483 if (tcp_conn->in.datalen)
484 goto copy_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700485
Mike Christie5bb0b552006-04-06 21:26:46 -0500486 spin_lock(&session->lock);
487 __iscsi_ctask_cleanup(conn, tcp_conn->in.ctask);
488 rc = __iscsi_complete_pdu(conn, hdr, NULL, 0);
489 spin_unlock(&session->lock);
490 break;
491 case ISCSI_OP_R2T:
492 tcp_conn->in.ctask = session->cmds[itt];
493 if (ahslen)
494 rc = ISCSI_ERR_AHSLEN;
495 else if (tcp_conn->in.ctask->sc->sc_data_direction ==
496 DMA_TO_DEVICE)
497 rc = iscsi_r2t_rsp(conn, tcp_conn->in.ctask);
498 else
499 rc = ISCSI_ERR_PROTO;
500 break;
501 case ISCSI_OP_LOGIN_RSP:
502 case ISCSI_OP_TEXT_RSP:
503 case ISCSI_OP_LOGOUT_RSP:
504 case ISCSI_OP_NOOP_IN:
505 case ISCSI_OP_REJECT:
506 case ISCSI_OP_ASYNC_EVENT:
507 if (tcp_conn->in.datalen)
508 goto copy_hdr;
509 /* fall through */
510 case ISCSI_OP_SCSI_TMFUNC_RSP:
511 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
512 break;
513 default:
514 rc = ISCSI_ERR_BAD_OPCODE;
515 break;
516 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700517
518 return rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500519
520copy_hdr:
521 /*
522 * if we did zero copy for the header but we will need multiple
523 * skbs to complete the command then we have to copy the header
524 * for later use
525 */
526 if (tcp_conn->in.zero_copy_hdr && tcp_conn->in.copy <
527 (tcp_conn->in.datalen + tcp_conn->in.padding +
528 (conn->datadgst_en ? 4 : 0))) {
529 debug_tcp("Copying header for later use. in.copy %d in.datalen"
530 " %d\n", tcp_conn->in.copy, tcp_conn->in.datalen);
531 memcpy(&tcp_conn->hdr, tcp_conn->in.hdr,
532 sizeof(struct iscsi_hdr));
533 tcp_conn->in.hdr = &tcp_conn->hdr;
534 tcp_conn->in.zero_copy_hdr = 0;
535 }
536 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700537}
538
539/**
540 * iscsi_ctask_copy - copy skb bits to the destanation cmd task
Mike Christie5bb0b552006-04-06 21:26:46 -0500541 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700542 * @ctask: scsi command task
543 * @buf: buffer to copy to
544 * @buf_size: size of buffer
545 * @offset: offset within the buffer
546 *
547 * Notes:
548 * The function calls skb_copy_bits() and updates per-connection and
549 * per-cmd byte counters.
550 *
551 * Read counters (in bytes):
552 *
553 * conn->in.offset offset within in progress SKB
554 * conn->in.copy left to copy from in progress SKB
555 * including padding
556 * conn->in.copied copied already from in progress SKB
557 * conn->data_copied copied already from in progress buffer
558 * ctask->sent total bytes sent up to the MidLayer
559 * ctask->data_count left to copy from in progress Data-In
560 * buf_left left to copy from in progress buffer
561 **/
562static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500563iscsi_ctask_copy(struct iscsi_tcp_conn *tcp_conn, struct iscsi_cmd_task *ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -0700564 void *buf, int buf_size, int offset)
565{
Mike Christie5bb0b552006-04-06 21:26:46 -0500566 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
567 int buf_left = buf_size - (tcp_conn->data_copied + offset);
568 int size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700569 int rc;
570
571 size = min(size, ctask->data_count);
572
573 debug_tcp("ctask_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500574 size, tcp_conn->in.offset, tcp_conn->in.copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700575
576 BUG_ON(size <= 0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500577 BUG_ON(tcp_ctask->sent + size > ctask->total_length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700578
Mike Christie5bb0b552006-04-06 21:26:46 -0500579 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
580 (char*)buf + (offset + tcp_conn->data_copied), size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700581 /* must fit into skb->len */
582 BUG_ON(rc);
583
Mike Christie5bb0b552006-04-06 21:26:46 -0500584 tcp_conn->in.offset += size;
585 tcp_conn->in.copy -= size;
586 tcp_conn->in.copied += size;
587 tcp_conn->data_copied += size;
588 tcp_ctask->sent += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700589 ctask->data_count -= size;
590
Mike Christie5bb0b552006-04-06 21:26:46 -0500591 BUG_ON(tcp_conn->in.copy < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700592 BUG_ON(ctask->data_count < 0);
593
Mike Christie5bb0b552006-04-06 21:26:46 -0500594 if (buf_size != (tcp_conn->data_copied + offset)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700595 if (!ctask->data_count) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500596 BUG_ON(buf_size - tcp_conn->data_copied < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700597 /* done with this PDU */
Mike Christie5bb0b552006-04-06 21:26:46 -0500598 return buf_size - tcp_conn->data_copied;
Alex Aizman7ba24712005-08-04 19:30:08 -0700599 }
600 return -EAGAIN;
601 }
602
603 /* done with this buffer or with both - PDU and buffer */
Mike Christie5bb0b552006-04-06 21:26:46 -0500604 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700605 return 0;
606}
607
608/**
609 * iscsi_tcp_copy - copy skb bits to the destanation buffer
Mike Christie5bb0b552006-04-06 21:26:46 -0500610 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700611 *
612 * Notes:
613 * The function calls skb_copy_bits() and updates per-connection
614 * byte counters.
615 **/
616static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500617iscsi_tcp_copy(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700618{
Mike Christie5bb0b552006-04-06 21:26:46 -0500619 void *buf = tcp_conn->data;
620 int buf_size = tcp_conn->in.datalen;
621 int buf_left = buf_size - tcp_conn->data_copied;
622 int size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700623 int rc;
624
625 debug_tcp("tcp_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500626 size, tcp_conn->in.offset, tcp_conn->data_copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700627 BUG_ON(size <= 0);
628
Mike Christie5bb0b552006-04-06 21:26:46 -0500629 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
630 (char*)buf + tcp_conn->data_copied, size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700631 BUG_ON(rc);
632
Mike Christie5bb0b552006-04-06 21:26:46 -0500633 tcp_conn->in.offset += size;
634 tcp_conn->in.copy -= size;
635 tcp_conn->in.copied += size;
636 tcp_conn->data_copied += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700637
Mike Christie5bb0b552006-04-06 21:26:46 -0500638 if (buf_size != tcp_conn->data_copied)
Alex Aizman7ba24712005-08-04 19:30:08 -0700639 return -EAGAIN;
640
641 return 0;
642}
643
644static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -0500645partial_sg_digest_update(struct iscsi_tcp_conn *tcp_conn,
646 struct scatterlist *sg, int offset, int length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700647{
648 struct scatterlist temp;
649
650 memcpy(&temp, sg, sizeof(struct scatterlist));
651 temp.offset = offset;
652 temp.length = length;
Mike Christie5bb0b552006-04-06 21:26:46 -0500653 crypto_digest_update(tcp_conn->data_rx_tfm, &temp, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700654}
655
Mike Christief6cfba12005-11-29 23:12:57 -0600656static void
Mike Christie5bb0b552006-04-06 21:26:46 -0500657iscsi_recv_digest_update(struct iscsi_tcp_conn *tcp_conn, char* buf, int len)
Mike Christief6cfba12005-11-29 23:12:57 -0600658{
659 struct scatterlist tmp;
660
661 sg_init_one(&tmp, buf, len);
Mike Christie5bb0b552006-04-06 21:26:46 -0500662 crypto_digest_update(tcp_conn->data_rx_tfm, &tmp, 1);
Mike Christief6cfba12005-11-29 23:12:57 -0600663}
664
Alex Aizman7ba24712005-08-04 19:30:08 -0700665static int iscsi_scsi_data_in(struct iscsi_conn *conn)
666{
Mike Christie5bb0b552006-04-06 21:26:46 -0500667 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
668 struct iscsi_cmd_task *ctask = tcp_conn->in.ctask;
669 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700670 struct scsi_cmnd *sc = ctask->sc;
Mike Christief6cfba12005-11-29 23:12:57 -0600671 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700672 int i, offset, rc = 0;
673
674 BUG_ON((void*)ctask != sc->SCp.ptr);
675
676 /*
677 * copying Data-In into the Scsi_Cmnd
678 */
679 if (!sc->use_sg) {
680 i = ctask->data_count;
Mike Christie5bb0b552006-04-06 21:26:46 -0500681 rc = iscsi_ctask_copy(tcp_conn, ctask, sc->request_buffer,
682 sc->request_bufflen,
683 tcp_ctask->data_offset);
Alex Aizman7ba24712005-08-04 19:30:08 -0700684 if (rc == -EAGAIN)
685 return rc;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -0600686 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -0500687 iscsi_recv_digest_update(tcp_conn, sc->request_buffer,
688 i);
Alex Aizman7ba24712005-08-04 19:30:08 -0700689 rc = 0;
690 goto done;
691 }
692
Mike Christie5bb0b552006-04-06 21:26:46 -0500693 offset = tcp_ctask->data_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700694 sg = sc->request_buffer;
695
Mike Christie5bb0b552006-04-06 21:26:46 -0500696 if (tcp_ctask->data_offset)
697 for (i = 0; i < tcp_ctask->sg_count; i++)
Alex Aizman7ba24712005-08-04 19:30:08 -0700698 offset -= sg[i].length;
699 /* we've passed through partial sg*/
700 if (offset < 0)
701 offset = 0;
702
Mike Christie5bb0b552006-04-06 21:26:46 -0500703 for (i = tcp_ctask->sg_count; i < sc->use_sg; i++) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700704 char *dest;
705
706 dest = kmap_atomic(sg[i].page, KM_SOFTIRQ0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500707 rc = iscsi_ctask_copy(tcp_conn, ctask, dest + sg[i].offset,
Alex Aizman7ba24712005-08-04 19:30:08 -0700708 sg[i].length, offset);
709 kunmap_atomic(dest, KM_SOFTIRQ0);
710 if (rc == -EAGAIN)
711 /* continue with the next SKB/PDU */
712 return rc;
713 if (!rc) {
714 if (conn->datadgst_en) {
715 if (!offset)
Mike Christie5bb0b552006-04-06 21:26:46 -0500716 crypto_digest_update(
717 tcp_conn->data_rx_tfm,
718 &sg[i], 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700719 else
Mike Christie5bb0b552006-04-06 21:26:46 -0500720 partial_sg_digest_update(tcp_conn,
721 &sg[i],
Alex Aizman7ba24712005-08-04 19:30:08 -0700722 sg[i].offset + offset,
723 sg[i].length - offset);
724 }
725 offset = 0;
Mike Christie5bb0b552006-04-06 21:26:46 -0500726 tcp_ctask->sg_count++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700727 }
728
729 if (!ctask->data_count) {
730 if (rc && conn->datadgst_en)
731 /*
732 * data-in is complete, but buffer not...
733 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500734 partial_sg_digest_update(tcp_conn, &sg[i],
Alex Aizman7ba24712005-08-04 19:30:08 -0700735 sg[i].offset, sg[i].length-rc);
736 rc = 0;
737 break;
738 }
739
Mike Christie5bb0b552006-04-06 21:26:46 -0500740 if (!tcp_conn->in.copy)
Alex Aizman7ba24712005-08-04 19:30:08 -0700741 return -EAGAIN;
742 }
743 BUG_ON(ctask->data_count);
744
745done:
746 /* check for non-exceptional status */
Mike Christie5bb0b552006-04-06 21:26:46 -0500747 if (tcp_conn->in.hdr->flags & ISCSI_FLAG_DATA_STATUS) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700748 debug_scsi("done [sc %lx res %d itt 0x%x]\n",
749 (long)sc, sc->result, ctask->itt);
Mike Christie5bb0b552006-04-06 21:26:46 -0500750 spin_lock(&conn->session->lock);
751 __iscsi_ctask_cleanup(conn, ctask);
752 __iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
753 spin_unlock(&conn->session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700754 }
755
756 return rc;
757}
758
759static int
760iscsi_data_recv(struct iscsi_conn *conn)
761{
Mike Christie5bb0b552006-04-06 21:26:46 -0500762 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
763 int rc = 0, opcode;
Alex Aizman7ba24712005-08-04 19:30:08 -0700764
Mike Christie5bb0b552006-04-06 21:26:46 -0500765 opcode = tcp_conn->in.hdr->opcode & ISCSI_OPCODE_MASK;
766 switch (opcode) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700767 case ISCSI_OP_SCSI_DATA_IN:
768 rc = iscsi_scsi_data_in(conn);
769 break;
Mike Christie5bb0b552006-04-06 21:26:46 -0500770 case ISCSI_OP_SCSI_CMD_RSP:
771 spin_lock(&conn->session->lock);
772 __iscsi_ctask_cleanup(conn, tcp_conn->in.ctask);
773 spin_unlock(&conn->session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700774 case ISCSI_OP_TEXT_RSP:
775 case ISCSI_OP_LOGIN_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500776 case ISCSI_OP_NOOP_IN:
777 case ISCSI_OP_ASYNC_EVENT:
778 case ISCSI_OP_REJECT:
Alex Aizman7ba24712005-08-04 19:30:08 -0700779 /*
780 * Collect data segment to the connection's data
781 * placeholder
782 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500783 if (iscsi_tcp_copy(tcp_conn)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700784 rc = -EAGAIN;
785 goto exit;
786 }
787
Mike Christie5bb0b552006-04-06 21:26:46 -0500788 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, tcp_conn->data,
789 tcp_conn->in.datalen);
790 if (!rc && conn->datadgst_en && opcode != ISCSI_OP_LOGIN_RSP)
791 iscsi_recv_digest_update(tcp_conn, tcp_conn->data,
792 tcp_conn->in.datalen);
793 break;
Alex Aizman7ba24712005-08-04 19:30:08 -0700794 default:
795 BUG_ON(1);
796 }
797exit:
798 return rc;
799}
800
801/**
802 * iscsi_tcp_data_recv - TCP receive in sendfile fashion
803 * @rd_desc: read descriptor
804 * @skb: socket buffer
805 * @offset: offset in skb
806 * @len: skb->len - offset
807 **/
808static int
809iscsi_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
810 unsigned int offset, size_t len)
811{
812 int rc;
813 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500814 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700815 int processed;
816 char pad[ISCSI_PAD_LEN];
817 struct scatterlist sg;
818
819 /*
820 * Save current SKB and its offset in the corresponding
821 * connection context.
822 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500823 tcp_conn->in.copy = skb->len - offset;
824 tcp_conn->in.offset = offset;
825 tcp_conn->in.skb = skb;
826 tcp_conn->in.len = tcp_conn->in.copy;
827 BUG_ON(tcp_conn->in.copy <= 0);
828 debug_tcp("in %d bytes\n", tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700829
830more:
Mike Christie5bb0b552006-04-06 21:26:46 -0500831 tcp_conn->in.copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700832 rc = 0;
833
834 if (unlikely(conn->suspend_rx)) {
835 debug_tcp("conn %d Rx suspended!\n", conn->id);
836 return 0;
837 }
838
Mike Christie5bb0b552006-04-06 21:26:46 -0500839 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER ||
840 tcp_conn->in_progress == IN_PROGRESS_HEADER_GATHER) {
841 rc = iscsi_hdr_extract(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700842 if (rc) {
843 if (rc == -EAGAIN)
844 goto nomore;
845 else {
846 iscsi_conn_failure(conn, rc);
847 return 0;
848 }
849 }
850
851 /*
852 * Verify and process incoming PDU header.
853 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500854 rc = iscsi_tcp_hdr_recv(conn);
855 if (!rc && tcp_conn->in.datalen) {
Mike Christie8a47cd32005-11-30 02:27:19 -0600856 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500857 BUG_ON(!tcp_conn->data_rx_tfm);
858 crypto_digest_init(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -0700859 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500860 tcp_conn->in_progress = IN_PROGRESS_DATA_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700861 } else if (rc) {
862 iscsi_conn_failure(conn, rc);
863 return 0;
864 }
865 }
866
Mike Christie5bb0b552006-04-06 21:26:46 -0500867 if (tcp_conn->in_progress == IN_PROGRESS_DDIGEST_RECV) {
Mike Christief6cfba12005-11-29 23:12:57 -0600868 uint32_t recv_digest;
Mike Christie5bb0b552006-04-06 21:26:46 -0500869
Alex Aizman7ba24712005-08-04 19:30:08 -0700870 debug_tcp("extra data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500871 tcp_conn->in.offset, tcp_conn->in.copy);
872 skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
Mike Christief6cfba12005-11-29 23:12:57 -0600873 &recv_digest, 4);
Mike Christie5bb0b552006-04-06 21:26:46 -0500874 tcp_conn->in.offset += 4;
875 tcp_conn->in.copy -= 4;
876 if (recv_digest != tcp_conn->in.datadgst) {
Mike Christief6cfba12005-11-29 23:12:57 -0600877 debug_tcp("iscsi_tcp: data digest error!"
878 "0x%x != 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500879 tcp_conn->in.datadgst);
Mike Christief6cfba12005-11-29 23:12:57 -0600880 iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
881 return 0;
882 } else {
883 debug_tcp("iscsi_tcp: data digest match!"
884 "0x%x == 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500885 tcp_conn->in.datadgst);
886 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700887 }
888 }
889
Mike Christie5bb0b552006-04-06 21:26:46 -0500890 if (tcp_conn->in_progress == IN_PROGRESS_DATA_RECV &&
891 tcp_conn->in.copy) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700892
893 debug_tcp("data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500894 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700895
896 rc = iscsi_data_recv(conn);
897 if (rc) {
Mike Christie665b44a2006-05-02 19:46:49 -0500898 if (rc == -EAGAIN)
Alex Aizman7ba24712005-08-04 19:30:08 -0700899 goto again;
Alex Aizman7ba24712005-08-04 19:30:08 -0700900 iscsi_conn_failure(conn, rc);
901 return 0;
902 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500903 tcp_conn->in.copy -= tcp_conn->in.padding;
904 tcp_conn->in.offset += tcp_conn->in.padding;
Mike Christie8a47cd32005-11-30 02:27:19 -0600905 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500906 if (tcp_conn->in.padding) {
907 debug_tcp("padding -> %d\n",
908 tcp_conn->in.padding);
909 memset(pad, 0, tcp_conn->in.padding);
910 sg_init_one(&sg, pad, tcp_conn->in.padding);
911 crypto_digest_update(tcp_conn->data_rx_tfm,
912 &sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -0700913 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500914 crypto_digest_final(tcp_conn->data_rx_tfm,
915 (u8 *) & tcp_conn->in.datadgst);
916 debug_tcp("rx digest 0x%x\n", tcp_conn->in.datadgst);
917 tcp_conn->in_progress = IN_PROGRESS_DDIGEST_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700918 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500919 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700920 }
921
922 debug_tcp("f, processed %d from out of %d padding %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500923 tcp_conn->in.offset - offset, (int)len, tcp_conn->in.padding);
924 BUG_ON(tcp_conn->in.offset - offset > len);
Alex Aizman7ba24712005-08-04 19:30:08 -0700925
Mike Christie5bb0b552006-04-06 21:26:46 -0500926 if (tcp_conn->in.offset - offset != len) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700927 debug_tcp("continue to process %d bytes\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500928 (int)len - (tcp_conn->in.offset - offset));
Alex Aizman7ba24712005-08-04 19:30:08 -0700929 goto more;
930 }
931
932nomore:
Mike Christie5bb0b552006-04-06 21:26:46 -0500933 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700934 BUG_ON(processed == 0);
935 return processed;
936
937again:
Mike Christie5bb0b552006-04-06 21:26:46 -0500938 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700939 debug_tcp("c, processed %d from out of %d rd_desc_cnt %d\n",
940 processed, (int)len, (int)rd_desc->count);
941 BUG_ON(processed == 0);
942 BUG_ON(processed > len);
943
944 conn->rxdata_octets += processed;
945 return processed;
946}
947
948static void
949iscsi_tcp_data_ready(struct sock *sk, int flag)
950{
951 struct iscsi_conn *conn = sk->sk_user_data;
952 read_descriptor_t rd_desc;
953
954 read_lock(&sk->sk_callback_lock);
955
Mike Christie665b44a2006-05-02 19:46:49 -0500956 /*
957 * Use rd_desc to pass 'conn' to iscsi_tcp_data_recv.
958 * We set count to 1 because we want the network layer to
959 * hand us all the skbs that are available. iscsi_tcp_data_recv
960 * handled pdus that cross buffers or pdus that still need data.
961 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700962 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -0500963 rd_desc.count = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -0700964 tcp_read_sock(sk, &rd_desc, iscsi_tcp_data_recv);
965
966 read_unlock(&sk->sk_callback_lock);
967}
968
969static void
970iscsi_tcp_state_change(struct sock *sk)
971{
Mike Christie5bb0b552006-04-06 21:26:46 -0500972 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -0700973 struct iscsi_conn *conn;
974 struct iscsi_session *session;
975 void (*old_state_change)(struct sock *);
976
977 read_lock(&sk->sk_callback_lock);
978
979 conn = (struct iscsi_conn*)sk->sk_user_data;
980 session = conn->session;
981
Mike Christiee6273992005-11-29 23:12:49 -0600982 if ((sk->sk_state == TCP_CLOSE_WAIT ||
983 sk->sk_state == TCP_CLOSE) &&
984 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700985 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
986 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
987 }
988
Mike Christie5bb0b552006-04-06 21:26:46 -0500989 tcp_conn = conn->dd_data;
990 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -0700991
992 read_unlock(&sk->sk_callback_lock);
993
994 old_state_change(sk);
995}
996
997/**
998 * iscsi_write_space - Called when more output buffer space is available
999 * @sk: socket space is available for
1000 **/
1001static void
1002iscsi_write_space(struct sock *sk)
1003{
1004 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001005 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1006
1007 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001008 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie55e32992006-01-13 18:05:53 -06001009 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001010}
1011
1012static void
1013iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1014{
Mike Christie5bb0b552006-04-06 21:26:46 -05001015 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1016 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001017
1018 /* assign new callbacks */
1019 write_lock_bh(&sk->sk_callback_lock);
1020 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001021 tcp_conn->old_data_ready = sk->sk_data_ready;
1022 tcp_conn->old_state_change = sk->sk_state_change;
1023 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001024 sk->sk_data_ready = iscsi_tcp_data_ready;
1025 sk->sk_state_change = iscsi_tcp_state_change;
1026 sk->sk_write_space = iscsi_write_space;
1027 write_unlock_bh(&sk->sk_callback_lock);
1028}
1029
1030static void
1031iscsi_conn_restore_callbacks(struct iscsi_conn *conn)
1032{
Mike Christie5bb0b552006-04-06 21:26:46 -05001033 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1034 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001035
1036 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1037 write_lock_bh(&sk->sk_callback_lock);
1038 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001039 sk->sk_data_ready = tcp_conn->old_data_ready;
1040 sk->sk_state_change = tcp_conn->old_state_change;
1041 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001042 sk->sk_no_check = 0;
1043 write_unlock_bh(&sk->sk_callback_lock);
1044}
1045
1046/**
1047 * iscsi_send - generic send routine
1048 * @sk: kernel's socket
1049 * @buf: buffer to write from
1050 * @size: actual size to write
1051 * @flags: socket's flags
Alex Aizman7ba24712005-08-04 19:30:08 -07001052 */
1053static inline int
FUJITA Tomonori56851692006-01-13 18:05:44 -06001054iscsi_send(struct iscsi_conn *conn, struct iscsi_buf *buf, int size, int flags)
Alex Aizman7ba24712005-08-04 19:30:08 -07001055{
Mike Christie5bb0b552006-04-06 21:26:46 -05001056 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1057 struct socket *sk = tcp_conn->sock;
Mike Christie3219e522006-05-30 00:37:28 -05001058 int offset = buf->sg.offset + buf->sent, res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001059
Mike Christie7cae5152006-01-13 18:05:47 -06001060 /*
1061 * if we got use_sg=0 or are sending something we kmallocd
1062 * then we did not have to do kmap (kmap returns page_address)
1063 *
1064 * if we got use_sg > 0, but had to drop down, we do not
1065 * set clustering so this should only happen for that
1066 * slab case.
1067 */
1068 if (buf->use_sendmsg)
Mike Christie3219e522006-05-30 00:37:28 -05001069 res = sock_no_sendpage(sk, buf->sg.page, offset, size, flags);
Mike Christie7cae5152006-01-13 18:05:47 -06001070 else
Mike Christie3219e522006-05-30 00:37:28 -05001071 res = tcp_conn->sendpage(sk, buf->sg.page, offset, size, flags);
1072
1073 if (res >= 0) {
1074 conn->txdata_octets += res;
1075 buf->sent += res;
1076 return res;
1077 }
1078
1079 tcp_conn->sendpage_failures_cnt++;
1080 if (res == -EAGAIN)
1081 res = -ENOBUFS;
1082 else
1083 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1084 return res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001085}
1086
1087/**
1088 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1089 * @conn: iscsi connection
1090 * @buf: buffer to write from
1091 * @datalen: lenght of data to be sent after the header
1092 *
1093 * Notes:
1094 * (Tx, Fast Path)
1095 **/
1096static inline int
1097iscsi_sendhdr(struct iscsi_conn *conn, struct iscsi_buf *buf, int datalen)
1098{
Alex Aizman7ba24712005-08-04 19:30:08 -07001099 int flags = 0; /* MSG_DONTWAIT; */
1100 int res, size;
1101
1102 size = buf->sg.length - buf->sent;
1103 BUG_ON(buf->sent + size > buf->sg.length);
1104 if (buf->sent + size != buf->sg.length || datalen)
1105 flags |= MSG_MORE;
1106
FUJITA Tomonori56851692006-01-13 18:05:44 -06001107 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001108 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size, buf->sent, res);
1109 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001110 if (size != res)
1111 return -EAGAIN;
1112 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001113 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001114
1115 return res;
1116}
1117
1118/**
1119 * iscsi_sendpage - send one page of iSCSI Data-Out.
1120 * @conn: iscsi connection
1121 * @buf: buffer to write from
1122 * @count: remaining data
1123 * @sent: number of bytes sent
1124 *
1125 * Notes:
1126 * (Tx, Fast Path)
1127 **/
1128static inline int
1129iscsi_sendpage(struct iscsi_conn *conn, struct iscsi_buf *buf,
1130 int *count, int *sent)
1131{
Alex Aizman7ba24712005-08-04 19:30:08 -07001132 int flags = 0; /* MSG_DONTWAIT; */
1133 int res, size;
1134
1135 size = buf->sg.length - buf->sent;
1136 BUG_ON(buf->sent + size > buf->sg.length);
1137 if (size > *count)
1138 size = *count;
Mike Christieb13941f2005-09-12 21:01:28 -05001139 if (buf->sent + size != buf->sg.length || *count != size)
Alex Aizman7ba24712005-08-04 19:30:08 -07001140 flags |= MSG_MORE;
1141
FUJITA Tomonori56851692006-01-13 18:05:44 -06001142 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001143 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1144 size, buf->sent, *count, *sent, res);
1145 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001146 *count -= res;
1147 *sent += res;
1148 if (size != res)
1149 return -EAGAIN;
1150 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001151 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001152
1153 return res;
1154}
1155
1156static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -05001157iscsi_data_digest_init(struct iscsi_tcp_conn *tcp_conn,
1158 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001159{
Mike Christie5bb0b552006-04-06 21:26:46 -05001160 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1161
1162 BUG_ON(!tcp_conn->data_tx_tfm);
1163 crypto_digest_init(tcp_conn->data_tx_tfm);
1164 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001165}
1166
Arjan van de Ven858119e2006-01-14 13:20:43 -08001167static int
Alex Aizman7ba24712005-08-04 19:30:08 -07001168iscsi_digest_final_send(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1169 struct iscsi_buf *buf, uint32_t *digest, int final)
1170{
Mike Christie5bb0b552006-04-06 21:26:46 -05001171 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1172 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001173 int rc = 0;
1174 int sent = 0;
1175
1176 if (final)
Mike Christie5bb0b552006-04-06 21:26:46 -05001177 crypto_digest_final(tcp_conn->data_tx_tfm, (u8*)digest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001178
Mike Christie6e458cc2006-05-18 20:31:31 -05001179 iscsi_buf_init_iov(buf, (char*)digest, 4);
Mike Christie5bb0b552006-04-06 21:26:46 -05001180 rc = iscsi_sendpage(conn, buf, &tcp_ctask->digest_count, &sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001181 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001182 tcp_ctask->datadigest = *digest;
1183 tcp_ctask->xmstate |= XMSTATE_DATA_DIGEST;
Alex Aizman7ba24712005-08-04 19:30:08 -07001184 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001185 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001186 return rc;
1187}
1188
1189/**
1190 * iscsi_solicit_data_cont - initialize next Data-Out
1191 * @conn: iscsi connection
1192 * @ctask: scsi command task
1193 * @r2t: R2T info
1194 * @left: bytes left to transfer
1195 *
1196 * Notes:
1197 * Initialize next Data-Out within this R2T sequence and continue
1198 * to process next Scatter-Gather element(if any) of this SCSI command.
1199 *
1200 * Called under connection lock.
1201 **/
1202static void
1203iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1204 struct iscsi_r2t_info *r2t, int left)
1205{
Mike Christie5bb0b552006-04-06 21:26:46 -05001206 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001207 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001208 struct scsi_cmnd *sc = ctask->sc;
1209 int new_offset;
1210
Mike Christieffbfe922006-05-18 20:31:36 -05001211 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001212 memset(hdr, 0, sizeof(struct iscsi_data));
1213 hdr->ttt = r2t->ttt;
1214 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1215 r2t->solicit_datasn++;
1216 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001217 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1218 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001219 hdr->exp_statsn = r2t->exp_statsn;
1220 new_offset = r2t->data_offset + r2t->sent;
1221 hdr->offset = cpu_to_be32(new_offset);
1222 if (left > conn->max_xmit_dlength) {
1223 hton24(hdr->dlength, conn->max_xmit_dlength);
1224 r2t->data_count = conn->max_xmit_dlength;
1225 } else {
1226 hton24(hdr->dlength, left);
1227 r2t->data_count = left;
1228 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1229 }
1230 conn->dataout_pdus_cnt++;
1231
Mike Christie6e458cc2006-05-18 20:31:31 -05001232 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001233 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001234
Alex Aizman7ba24712005-08-04 19:30:08 -07001235 if (sc->use_sg && !iscsi_buf_left(&r2t->sendbuf)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001236 BUG_ON(tcp_ctask->bad_sg == r2t->sg);
Alex Aizman7ba24712005-08-04 19:30:08 -07001237 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1238 r2t->sg += 1;
1239 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001240 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -07001241 (char*)sc->request_buffer + new_offset,
1242 r2t->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001243}
1244
1245static void
1246iscsi_unsolicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1247{
Mike Christie5bb0b552006-04-06 21:26:46 -05001248 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001249 struct iscsi_data_task *dtask;
1250
Mike Christieffbfe922006-05-18 20:31:36 -05001251 dtask = tcp_ctask->dtask = &tcp_ctask->unsol_dtask;
Mike Christie5bb0b552006-04-06 21:26:46 -05001252 iscsi_prep_unsolicit_data_pdu(ctask, &dtask->hdr,
1253 tcp_ctask->r2t_data_count);
Mike Christie6e458cc2006-05-18 20:31:31 -05001254 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)&dtask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001255 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001256}
1257
1258/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001259 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001260 * @conn: iscsi connection
1261 * @ctask: scsi command task
1262 * @sc: scsi command
1263 **/
1264static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001265iscsi_tcp_cmd_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001266{
Mike Christie5bb0b552006-04-06 21:26:46 -05001267 struct scsi_cmnd *sc = ctask->sc;
1268 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001269
Mike Christie5bb0b552006-04-06 21:26:46 -05001270 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Alex Aizman7ba24712005-08-04 19:30:08 -07001271
Mike Christie5bb0b552006-04-06 21:26:46 -05001272 tcp_ctask->sent = 0;
1273 tcp_ctask->sg_count = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001274
1275 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001276 tcp_ctask->xmstate = XMSTATE_W_HDR;
1277 tcp_ctask->exp_r2tsn = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001278 BUG_ON(ctask->total_length == 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05001279
Alex Aizman7ba24712005-08-04 19:30:08 -07001280 if (sc->use_sg) {
1281 struct scatterlist *sg = sc->request_buffer;
1282
Mike Christie5bb0b552006-04-06 21:26:46 -05001283 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1284 &sg[tcp_ctask->sg_count++]);
1285 tcp_ctask->sg = sg;
1286 tcp_ctask->bad_sg = sg + sc->use_sg;
Alex Aizman7ba24712005-08-04 19:30:08 -07001287 } else
Mike Christie5bb0b552006-04-06 21:26:46 -05001288 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
1289 sc->request_buffer,
1290 sc->request_bufflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07001291
Mike Christie5bb0b552006-04-06 21:26:46 -05001292 if (ctask->imm_count)
1293 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001294
Mike Christie5bb0b552006-04-06 21:26:46 -05001295 tcp_ctask->pad_count = ctask->total_length & (ISCSI_PAD_LEN-1);
1296 if (tcp_ctask->pad_count) {
1297 tcp_ctask->pad_count = ISCSI_PAD_LEN -
1298 tcp_ctask->pad_count;
1299 debug_scsi("write padding %d bytes\n",
1300 tcp_ctask->pad_count);
1301 tcp_ctask->xmstate |= XMSTATE_W_PAD;
1302 }
1303
1304 if (ctask->unsol_count)
1305 tcp_ctask->xmstate |= XMSTATE_UNS_HDR |
1306 XMSTATE_UNS_INIT;
1307 tcp_ctask->r2t_data_count = ctask->total_length -
Alex Aizman7ba24712005-08-04 19:30:08 -07001308 ctask->imm_count -
1309 ctask->unsol_count;
1310
1311 debug_scsi("cmd [itt %x total %d imm %d imm_data %d "
1312 "r2t_data %d]\n",
1313 ctask->itt, ctask->total_length, ctask->imm_count,
Mike Christie5bb0b552006-04-06 21:26:46 -05001314 ctask->unsol_count, tcp_ctask->r2t_data_count);
1315 } else
1316 tcp_ctask->xmstate = XMSTATE_R_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001317
Mike Christie6e458cc2006-05-18 20:31:31 -05001318 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)ctask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001319 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001320}
1321
1322/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001323 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001324 * @conn: iscsi connection
1325 * @mtask: task management task
1326 *
1327 * Notes:
1328 * The function can return -EAGAIN in which case caller must
1329 * call it again later, or recover. '0' return code means successful
1330 * xmit.
1331 *
1332 * Management xmit state machine consists of two states:
1333 * IN_PROGRESS_IMM_HEAD - PDU Header xmit in progress
1334 * IN_PROGRESS_IMM_DATA - PDU Data xmit in progress
1335 **/
1336static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001337iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001338{
Mike Christie5bb0b552006-04-06 21:26:46 -05001339 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001340 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001341
1342 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001343 conn->id, tcp_mtask->xmstate, mtask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001344
Mike Christie5bb0b552006-04-06 21:26:46 -05001345 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR) {
1346 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001347 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001348 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christieaf973482005-09-12 21:01:32 -05001349 if (conn->c_stage != ISCSI_CONN_INITIAL_STAGE &&
Mike Christie30a6c652006-04-06 21:13:39 -05001350 conn->stop_stage != STOP_CONN_RECOVER &&
Mike Christieaf973482005-09-12 21:01:32 -05001351 conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001352 iscsi_hdr_digest(conn, &tcp_mtask->headbuf,
1353 (u8*)tcp_mtask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001354 rc = iscsi_sendhdr(conn, &tcp_mtask->headbuf,
1355 mtask->data_count);
1356 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001357 tcp_mtask->xmstate |= XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001358 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001359 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001360 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001361 }
1362 }
1363
Mike Christie5bb0b552006-04-06 21:26:46 -05001364 if (tcp_mtask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001365 BUG_ON(!mtask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001366 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001367 /* FIXME: implement.
1368 * Virtual buffer could be spreaded across multiple pages...
1369 */
1370 do {
Mike Christie3219e522006-05-30 00:37:28 -05001371 int rc;
1372
1373 rc = iscsi_sendpage(conn, &tcp_mtask->sendbuf,
1374 &mtask->data_count, &tcp_mtask->sent);
1375 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001376 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001377 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001378 }
1379 } while (mtask->data_count);
1380 }
1381
Mike Christie5bb0b552006-04-06 21:26:46 -05001382 BUG_ON(tcp_mtask->xmstate != XMSTATE_IDLE);
1383 if (mtask->hdr->itt == cpu_to_be32(ISCSI_RESERVED_TAG)) {
1384 struct iscsi_session *session = conn->session;
1385
1386 spin_lock_bh(&session->lock);
1387 list_del(&conn->mtask->running);
1388 __kfifo_put(session->mgmtpool.queue, (void*)&conn->mtask,
1389 sizeof(void*));
1390 spin_unlock_bh(&session->lock);
1391 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001392 return 0;
1393}
1394
1395static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -05001396handle_xmstate_r_hdr(struct iscsi_conn *conn,
1397 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001398{
Mike Christie3219e522006-05-30 00:37:28 -05001399 int rc;
1400
Mike Christie5bb0b552006-04-06 21:26:46 -05001401 tcp_ctask->xmstate &= ~XMSTATE_R_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001402 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001403 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1404 (u8*)tcp_ctask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001405 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, 0);
1406 if (!rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001407 BUG_ON(tcp_ctask->xmstate != XMSTATE_IDLE);
Alex Aizman7ba24712005-08-04 19:30:08 -07001408 return 0; /* wait for Data-In */
1409 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001410 tcp_ctask->xmstate |= XMSTATE_R_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001411 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001412}
1413
1414static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -05001415handle_xmstate_w_hdr(struct iscsi_conn *conn,
1416 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001417{
Mike Christie5bb0b552006-04-06 21:26:46 -05001418 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001419 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001420
1421 tcp_ctask->xmstate &= ~XMSTATE_W_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001422 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001423 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1424 (u8*)tcp_ctask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001425 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->imm_count);
1426 if (rc)
Mike Christie5bb0b552006-04-06 21:26:46 -05001427 tcp_ctask->xmstate |= XMSTATE_W_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001428 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001429}
1430
1431static inline int
1432handle_xmstate_data_digest(struct iscsi_conn *conn,
1433 struct iscsi_cmd_task *ctask)
1434{
Mike Christie5bb0b552006-04-06 21:26:46 -05001435 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001436 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001437
1438 tcp_ctask->xmstate &= ~XMSTATE_DATA_DIGEST;
1439 debug_tcp("resent data digest 0x%x\n", tcp_ctask->datadigest);
Mike Christie3219e522006-05-30 00:37:28 -05001440 rc = iscsi_digest_final_send(conn, ctask, &tcp_ctask->immbuf,
1441 &tcp_ctask->datadigest, 0);
1442 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001443 tcp_ctask->xmstate |= XMSTATE_DATA_DIGEST;
Alex Aizman7ba24712005-08-04 19:30:08 -07001444 debug_tcp("resent data digest 0x%x fail!\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001445 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001446 }
Mike Christie3219e522006-05-30 00:37:28 -05001447
1448 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001449}
1450
1451static inline int
1452handle_xmstate_imm_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1453{
Mike Christie5bb0b552006-04-06 21:26:46 -05001454 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1455 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001456 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001457
Alex Aizman7ba24712005-08-04 19:30:08 -07001458 BUG_ON(!ctask->imm_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001459 tcp_ctask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001460
1461 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001462 iscsi_data_digest_init(tcp_conn, ctask);
1463 tcp_ctask->immdigest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001464 }
1465
1466 for (;;) {
Mike Christie3219e522006-05-30 00:37:28 -05001467 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf,
1468 &ctask->imm_count, &tcp_ctask->sent);
1469 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001470 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001471 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001472 crypto_digest_final(tcp_conn->data_tx_tfm,
1473 (u8*)&tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001474 debug_tcp("tx imm sendpage fail 0x%x\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001475 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001476 }
Mike Christie3219e522006-05-30 00:37:28 -05001477 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001478 }
1479 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001480 crypto_digest_update(tcp_conn->data_tx_tfm,
1481 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001482
1483 if (!ctask->imm_count)
1484 break;
Mike Christie5bb0b552006-04-06 21:26:46 -05001485 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1486 &tcp_ctask->sg[tcp_ctask->sg_count++]);
Alex Aizman7ba24712005-08-04 19:30:08 -07001487 }
1488
Mike Christie5bb0b552006-04-06 21:26:46 -05001489 if (conn->datadgst_en && !(tcp_ctask->xmstate & XMSTATE_W_PAD)) {
Mike Christie3219e522006-05-30 00:37:28 -05001490 rc = iscsi_digest_final_send(conn, ctask, &tcp_ctask->immbuf,
1491 &tcp_ctask->immdigest, 1);
1492 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001493 debug_tcp("sending imm digest 0x%x fail!\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001494 tcp_ctask->immdigest);
Mike Christie3219e522006-05-30 00:37:28 -05001495 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001496 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001497 debug_tcp("sending imm digest 0x%x\n", tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001498 }
1499
1500 return 0;
1501}
1502
1503static inline int
1504handle_xmstate_uns_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1505{
Mike Christie5bb0b552006-04-06 21:26:46 -05001506 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001507 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001508 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001509
Mike Christie5bb0b552006-04-06 21:26:46 -05001510 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
1511 if (tcp_ctask->xmstate & XMSTATE_UNS_INIT) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001512 iscsi_unsolicit_data_init(conn, ctask);
Mike Christie5bb0b552006-04-06 21:26:46 -05001513 dtask = tcp_ctask->dtask;
Mike Christieaf973482005-09-12 21:01:32 -05001514 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001515 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001516 (u8*)dtask->hdrext);
Mike Christie5bb0b552006-04-06 21:26:46 -05001517 tcp_ctask->xmstate &= ~XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001518 }
Mike Christie3219e522006-05-30 00:37:28 -05001519
1520 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->data_count);
1521 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001522 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1523 tcp_ctask->xmstate |= XMSTATE_UNS_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001524 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001525 }
1526
1527 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001528 ctask->itt, ctask->unsol_count, tcp_ctask->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001529 return 0;
1530}
1531
1532static inline int
1533handle_xmstate_uns_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1534{
Mike Christie5bb0b552006-04-06 21:26:46 -05001535 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1536 struct iscsi_data_task *dtask = tcp_ctask->dtask;
1537 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001538 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001539
1540 BUG_ON(!ctask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001541 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001542
1543 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001544 iscsi_data_digest_init(tcp_conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001545 dtask->digest = 0;
1546 }
1547
1548 for (;;) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001549 int start = tcp_ctask->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001550
Mike Christie3219e522006-05-30 00:37:28 -05001551 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf,
1552 &ctask->data_count, &tcp_ctask->sent);
1553 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001554 ctask->unsol_count -= tcp_ctask->sent - start;
1555 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001556 /* will continue with this ctask later.. */
1557 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001558 crypto_digest_final(tcp_conn->data_tx_tfm,
Alex Aizman7ba24712005-08-04 19:30:08 -07001559 (u8 *)&dtask->digest);
1560 debug_tcp("tx uns data fail 0x%x\n",
1561 dtask->digest);
1562 }
Mike Christie3219e522006-05-30 00:37:28 -05001563 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001564 }
1565
Mike Christie5bb0b552006-04-06 21:26:46 -05001566 BUG_ON(tcp_ctask->sent > ctask->total_length);
1567 ctask->unsol_count -= tcp_ctask->sent - start;
Alex Aizman7ba24712005-08-04 19:30:08 -07001568
1569 /*
1570 * XXX:we may run here with un-initial sendbuf.
1571 * so pass it
1572 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001573 if (conn->datadgst_en && tcp_ctask->sent - start > 0)
1574 crypto_digest_update(tcp_conn->data_tx_tfm,
1575 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001576
1577 if (!ctask->data_count)
1578 break;
Mike Christie5bb0b552006-04-06 21:26:46 -05001579 iscsi_buf_init_sg(&tcp_ctask->sendbuf,
1580 &tcp_ctask->sg[tcp_ctask->sg_count++]);
Alex Aizman7ba24712005-08-04 19:30:08 -07001581 }
1582 BUG_ON(ctask->unsol_count < 0);
1583
1584 /*
1585 * Done with the Data-Out. Next, check if we need
1586 * to send another unsolicited Data-Out.
1587 */
1588 if (ctask->unsol_count) {
1589 if (conn->datadgst_en) {
Mike Christie3219e522006-05-30 00:37:28 -05001590 rc = iscsi_digest_final_send(conn, ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -07001591 &dtask->digestbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001592 &dtask->digest, 1);
1593 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001594 debug_tcp("send uns digest 0x%x fail\n",
1595 dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001596 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001597 }
1598 debug_tcp("sending uns digest 0x%x, more uns\n",
1599 dtask->digest);
1600 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001601 tcp_ctask->xmstate |= XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001602 return 1;
1603 }
1604
Mike Christie5bb0b552006-04-06 21:26:46 -05001605 if (conn->datadgst_en && !(tcp_ctask->xmstate & XMSTATE_W_PAD)) {
Mike Christie3219e522006-05-30 00:37:28 -05001606 rc = iscsi_digest_final_send(conn, ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -07001607 &dtask->digestbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001608 &dtask->digest, 1);
1609 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001610 debug_tcp("send last uns digest 0x%x fail\n",
1611 dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001612 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001613 }
1614 debug_tcp("sending uns digest 0x%x\n",dtask->digest);
1615 }
1616
1617 return 0;
1618}
1619
1620static inline int
1621handle_xmstate_sol_data(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1622{
1623 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001624 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1625 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1626 struct iscsi_r2t_info *r2t = tcp_ctask->r2t;
Mike Christieffbfe922006-05-18 20:31:36 -05001627 struct iscsi_data_task *dtask = &r2t->dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001628 int left, rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001629
Mike Christie5bb0b552006-04-06 21:26:46 -05001630 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1631 tcp_ctask->dtask = dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001632
1633 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001634 iscsi_data_digest_init(tcp_conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001635 dtask->digest = 0;
1636 }
1637solicit_again:
1638 /*
1639 * send Data-Out whitnin this R2T sequence.
1640 */
1641 if (!r2t->data_count)
1642 goto data_out_done;
1643
Mike Christie3219e522006-05-30 00:37:28 -05001644 rc = iscsi_sendpage(conn, &r2t->sendbuf, &r2t->data_count, &r2t->sent);
1645 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001646 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001647 /* will continue with this ctask later.. */
1648 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001649 crypto_digest_final(tcp_conn->data_tx_tfm,
Alex Aizman7ba24712005-08-04 19:30:08 -07001650 (u8 *)&dtask->digest);
1651 debug_tcp("r2t data send fail 0x%x\n", dtask->digest);
1652 }
Mike Christie3219e522006-05-30 00:37:28 -05001653 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001654 }
1655
1656 BUG_ON(r2t->data_count < 0);
1657 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001658 crypto_digest_update(tcp_conn->data_tx_tfm, &r2t->sendbuf.sg,
1659 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001660
1661 if (r2t->data_count) {
1662 BUG_ON(ctask->sc->use_sg == 0);
1663 if (!iscsi_buf_left(&r2t->sendbuf)) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001664 BUG_ON(tcp_ctask->bad_sg == r2t->sg);
Alex Aizman7ba24712005-08-04 19:30:08 -07001665 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1666 r2t->sg += 1;
1667 }
1668 goto solicit_again;
1669 }
1670
1671data_out_done:
1672 /*
1673 * Done with this Data-Out. Next, check if we have
1674 * to send another Data-Out for this R2T.
1675 */
1676 BUG_ON(r2t->data_length - r2t->sent < 0);
1677 left = r2t->data_length - r2t->sent;
1678 if (left) {
1679 if (conn->datadgst_en) {
Mike Christie3219e522006-05-30 00:37:28 -05001680 rc = iscsi_digest_final_send(conn, ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -07001681 &dtask->digestbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001682 &dtask->digest, 1);
1683 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001684 debug_tcp("send r2t data digest 0x%x"
1685 "fail\n", dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001686 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001687 }
1688 debug_tcp("r2t data send digest 0x%x\n",
1689 dtask->digest);
1690 }
1691 iscsi_solicit_data_cont(conn, ctask, r2t, left);
Mike Christie5bb0b552006-04-06 21:26:46 -05001692 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1693 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001694 return 1;
1695 }
1696
1697 /*
1698 * Done with this R2T. Check if there are more
1699 * outstanding R2Ts ready to be processed.
1700 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001701 BUG_ON(tcp_ctask->r2t_data_count - r2t->data_length < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -07001702 if (conn->datadgst_en) {
Mike Christie3219e522006-05-30 00:37:28 -05001703 rc = iscsi_digest_final_send(conn, ctask, &dtask->digestbuf,
1704 &dtask->digest, 1);
1705 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001706 debug_tcp("send last 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 done dout digest 0x%x\n", dtask->digest);
1711 }
1712
Mike Christie5bb0b552006-04-06 21:26:46 -05001713 tcp_ctask->r2t_data_count -= r2t->data_length;
1714 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001715 spin_lock_bh(&session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05001716 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -07001717 spin_unlock_bh(&session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05001718 if (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
1719 tcp_ctask->r2t = r2t;
1720 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1721 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001722 return 1;
1723 }
1724
1725 return 0;
1726}
1727
1728static inline int
1729handle_xmstate_w_pad(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1730{
Mike Christie5bb0b552006-04-06 21:26:46 -05001731 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1732 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1733 struct iscsi_data_task *dtask = tcp_ctask->dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001734 int sent, rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001735
Mike Christie5bb0b552006-04-06 21:26:46 -05001736 tcp_ctask->xmstate &= ~XMSTATE_W_PAD;
Mike Christie6e458cc2006-05-18 20:31:31 -05001737 iscsi_buf_init_iov(&tcp_ctask->sendbuf, (char*)&tcp_ctask->pad,
Mike Christie5bb0b552006-04-06 21:26:46 -05001738 tcp_ctask->pad_count);
Mike Christie3219e522006-05-30 00:37:28 -05001739 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf, &tcp_ctask->pad_count,
1740 &sent);
1741 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001742 tcp_ctask->xmstate |= XMSTATE_W_PAD;
Mike Christie3219e522006-05-30 00:37:28 -05001743 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001744 }
1745
1746 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001747 crypto_digest_update(tcp_conn->data_tx_tfm,
1748 &tcp_ctask->sendbuf.sg, 1);
Alex Aizman7ba24712005-08-04 19:30:08 -07001749 /* imm data? */
1750 if (!dtask) {
Mike Christie3219e522006-05-30 00:37:28 -05001751 rc = iscsi_digest_final_send(conn, ctask,
Mike Christie5bb0b552006-04-06 21:26:46 -05001752 &tcp_ctask->immbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001753 &tcp_ctask->immdigest, 1);
1754 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001755 debug_tcp("send padding digest 0x%x"
Mike Christie5bb0b552006-04-06 21:26:46 -05001756 "fail!\n", tcp_ctask->immdigest);
Mike Christie3219e522006-05-30 00:37:28 -05001757 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001758 }
1759 debug_tcp("done with padding, digest 0x%x\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001760 tcp_ctask->datadigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001761 } else {
Mike Christie3219e522006-05-30 00:37:28 -05001762 rc = iscsi_digest_final_send(conn, ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -07001763 &dtask->digestbuf,
Mike Christie3219e522006-05-30 00:37:28 -05001764 &dtask->digest, 1);
1765 if (rc) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001766 debug_tcp("send padding digest 0x%x"
1767 "fail\n", dtask->digest);
Mike Christie3219e522006-05-30 00:37:28 -05001768 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001769 }
1770 debug_tcp("done with padding, digest 0x%x\n",
1771 dtask->digest);
1772 }
1773 }
1774
1775 return 0;
1776}
1777
1778static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001779iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001780{
Mike Christie5bb0b552006-04-06 21:26:46 -05001781 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001782 int rc = 0;
1783
1784 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001785 conn->id, tcp_ctask->xmstate, ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001786
1787 /*
1788 * serialize with TMF AbortTask
1789 */
1790 if (ctask->mtask)
1791 return rc;
1792
Mike Christie3219e522006-05-30 00:37:28 -05001793 if (tcp_ctask->xmstate & XMSTATE_R_HDR)
1794 return handle_xmstate_r_hdr(conn, tcp_ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001795
Mike Christie5bb0b552006-04-06 21:26:46 -05001796 if (tcp_ctask->xmstate & XMSTATE_W_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001797 rc = handle_xmstate_w_hdr(conn, ctask);
1798 if (rc)
1799 return rc;
1800 }
1801
1802 /* XXX: for data digest xmit recover */
Mike Christie5bb0b552006-04-06 21:26:46 -05001803 if (tcp_ctask->xmstate & XMSTATE_DATA_DIGEST) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001804 rc = handle_xmstate_data_digest(conn, ctask);
1805 if (rc)
1806 return rc;
1807 }
1808
Mike Christie5bb0b552006-04-06 21:26:46 -05001809 if (tcp_ctask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001810 rc = handle_xmstate_imm_data(conn, ctask);
1811 if (rc)
1812 return rc;
1813 }
1814
Mike Christie5bb0b552006-04-06 21:26:46 -05001815 if (tcp_ctask->xmstate & XMSTATE_UNS_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001816 BUG_ON(!ctask->unsol_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001817 tcp_ctask->xmstate &= ~XMSTATE_UNS_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001818unsolicit_head_again:
1819 rc = handle_xmstate_uns_hdr(conn, ctask);
1820 if (rc)
1821 return rc;
1822 }
1823
Mike Christie5bb0b552006-04-06 21:26:46 -05001824 if (tcp_ctask->xmstate & XMSTATE_UNS_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001825 rc = handle_xmstate_uns_data(conn, ctask);
1826 if (rc == 1)
1827 goto unsolicit_head_again;
1828 else if (rc)
1829 return rc;
1830 goto done;
1831 }
1832
Mike Christie5bb0b552006-04-06 21:26:46 -05001833 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001834 struct iscsi_r2t_info *r2t;
1835
Mike Christie5bb0b552006-04-06 21:26:46 -05001836 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1837 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1838 if (!tcp_ctask->r2t)
1839 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
Alex Aizman7ba24712005-08-04 19:30:08 -07001840 sizeof(void*));
1841solicit_head_again:
Mike Christie5bb0b552006-04-06 21:26:46 -05001842 r2t = tcp_ctask->r2t;
Mike Christieaf973482005-09-12 21:01:32 -05001843 if (conn->hdrdgst_en)
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001844 iscsi_hdr_digest(conn, &r2t->headbuf,
Mike Christieffbfe922006-05-18 20:31:36 -05001845 (u8*)r2t->dtask.hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001846 rc = iscsi_sendhdr(conn, &r2t->headbuf, r2t->data_count);
1847 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001848 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1849 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001850 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001851 }
1852
1853 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1854 r2t->solicit_datasn - 1, ctask->itt, r2t->data_count,
1855 r2t->sent);
1856 }
1857
Mike Christie5bb0b552006-04-06 21:26:46 -05001858 if (tcp_ctask->xmstate & XMSTATE_SOL_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001859 rc = handle_xmstate_sol_data(conn, ctask);
1860 if (rc == 1)
1861 goto solicit_head_again;
1862 if (rc)
1863 return rc;
1864 }
1865
1866done:
1867 /*
1868 * Last thing to check is whether we need to send write
1869 * padding. Note that we check for xmstate equality, not just the bit.
1870 */
Mike Christie5bb0b552006-04-06 21:26:46 -05001871 if (tcp_ctask->xmstate == XMSTATE_W_PAD)
Alex Aizman7ba24712005-08-04 19:30:08 -07001872 rc = handle_xmstate_w_pad(conn, ctask);
1873
1874 return rc;
1875}
1876
Mike Christie7b8631b2006-01-13 18:05:50 -06001877static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001878iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001879{
Mike Christie7b8631b2006-01-13 18:05:50 -06001880 struct iscsi_conn *conn;
1881 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001882 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001883
Mike Christie5bb0b552006-04-06 21:26:46 -05001884 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001885 if (!cls_conn)
1886 return NULL;
1887 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001888 /*
1889 * due to strange issues with iser these are not set
1890 * in iscsi_conn_setup
1891 */
Alex Aizman7ba24712005-08-04 19:30:08 -07001892 conn->max_recv_dlength = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH;
1893
Mike Christie5bb0b552006-04-06 21:26:46 -05001894 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1895 if (!tcp_conn)
1896 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001897
Mike Christie5bb0b552006-04-06 21:26:46 -05001898 conn->dd_data = tcp_conn;
1899 tcp_conn->iscsi_conn = conn;
1900 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
1901 /* initial operational parameters */
1902 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
1903 tcp_conn->data_size = DEFAULT_MAX_RECV_DATA_SEGMENT_LENGTH;
Alex Aizman7ba24712005-08-04 19:30:08 -07001904
1905 /* allocate initial PDU receive place holder */
Mike Christie5bb0b552006-04-06 21:26:46 -05001906 if (tcp_conn->data_size <= PAGE_SIZE)
1907 tcp_conn->data = kmalloc(tcp_conn->data_size, GFP_KERNEL);
Alex Aizman7ba24712005-08-04 19:30:08 -07001908 else
Mike Christie5bb0b552006-04-06 21:26:46 -05001909 tcp_conn->data = (void*)__get_free_pages(GFP_KERNEL,
1910 get_order(tcp_conn->data_size));
1911 if (!tcp_conn->data)
Alex Aizman7ba24712005-08-04 19:30:08 -07001912 goto max_recv_dlenght_alloc_fail;
1913
Mike Christie7b8631b2006-01-13 18:05:50 -06001914 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001915
1916max_recv_dlenght_alloc_fail:
Mike Christie5bb0b552006-04-06 21:26:46 -05001917 kfree(tcp_conn);
1918tcp_conn_alloc_fail:
1919 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001920 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001921}
1922
1923static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001924iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001925{
Mike Christie7b8631b2006-01-13 18:05:50 -06001926 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001927 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1928 int digest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001929
Mike Christie5bb0b552006-04-06 21:26:46 -05001930 if (conn->hdrdgst_en || conn->datadgst_en)
1931 digest = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001932
Mike Christie5bb0b552006-04-06 21:26:46 -05001933 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001934
Mike Christie5bb0b552006-04-06 21:26:46 -05001935 /* now free tcp_conn */
1936 if (digest) {
1937 if (tcp_conn->tx_tfm)
1938 crypto_free_tfm(tcp_conn->tx_tfm);
1939 if (tcp_conn->rx_tfm)
1940 crypto_free_tfm(tcp_conn->rx_tfm);
1941 if (tcp_conn->data_tx_tfm)
1942 crypto_free_tfm(tcp_conn->data_tx_tfm);
1943 if (tcp_conn->data_rx_tfm)
1944 crypto_free_tfm(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001945 }
1946
1947 /* free conn->data, size = MaxRecvDataSegmentLength */
Mike Christie5bb0b552006-04-06 21:26:46 -05001948 if (tcp_conn->data_size <= PAGE_SIZE)
1949 kfree(tcp_conn->data);
Alex Aizman7ba24712005-08-04 19:30:08 -07001950 else
Mike Christie5bb0b552006-04-06 21:26:46 -05001951 free_pages((unsigned long)tcp_conn->data,
1952 get_order(tcp_conn->data_size));
1953 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001954}
1955
1956static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001957iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001958 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001959 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001960{
Mike Christie5bb0b552006-04-06 21:26:46 -05001961 struct iscsi_conn *conn = cls_conn->dd_data;
1962 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001963 struct sock *sk;
1964 struct socket *sock;
1965 int err;
1966
1967 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001968 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001969 if (!sock) {
1970 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
1971 return -EEXIST;
1972 }
1973
Mike Christie5bb0b552006-04-06 21:26:46 -05001974 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1975 if (err)
1976 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001977
Mike Christie67a61112006-05-30 00:37:20 -05001978 /* bind iSCSI connection and socket */
1979 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07001980
Mike Christie67a61112006-05-30 00:37:20 -05001981 /* setup Socket parameters */
1982 sk = sock->sk;
1983 sk->sk_reuse = 1;
1984 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
1985 sk->sk_allocation = GFP_ATOMIC;
Alex Aizman7ba24712005-08-04 19:30:08 -07001986
Mike Christie67a61112006-05-30 00:37:20 -05001987 /* FIXME: disable Nagle's algorithm */
Alex Aizman7ba24712005-08-04 19:30:08 -07001988
Mike Christie67a61112006-05-30 00:37:20 -05001989 /*
1990 * Intercept TCP callbacks for sendfile like receive
1991 * processing.
1992 */
1993 conn->recv_lock = &sk->sk_callback_lock;
1994 iscsi_conn_set_callbacks(conn);
1995 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
1996 /*
1997 * set receive state machine into initial state
1998 */
1999 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -07002000
Alex Aizman7ba24712005-08-04 19:30:08 -07002001 return 0;
2002}
2003
Mike Christie30a6c652006-04-06 21:13:39 -05002004static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002005iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Mike Christie30a6c652006-04-06 21:13:39 -05002006{
Mike Christie5bb0b552006-04-06 21:26:46 -05002007 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -05002008 struct iscsi_r2t_info *r2t;
Mike Christie30a6c652006-04-06 21:13:39 -05002009
2010 /* flush ctask's r2t queues */
Mike Christie5bb0b552006-04-06 21:26:46 -05002011 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*)))
2012 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
2013 sizeof(void*));
Mike Christie30a6c652006-04-06 21:13:39 -05002014
2015 __iscsi_ctask_cleanup(conn, ctask);
2016}
2017
Mike Christie30a6c652006-04-06 21:13:39 -05002018static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002019iscsi_tcp_suspend_conn_rx(struct iscsi_conn *conn)
Mike Christie30a6c652006-04-06 21:13:39 -05002020{
Mike Christie5bb0b552006-04-06 21:26:46 -05002021 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002022 struct sock *sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07002023
Mike Christie5bb0b552006-04-06 21:26:46 -05002024 if (!tcp_conn->sock)
2025 return;
2026
2027 sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07002028 write_lock_bh(&sk->sk_callback_lock);
Mike Christie5bb0b552006-04-06 21:26:46 -05002029 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
Alex Aizman7ba24712005-08-04 19:30:08 -07002030 write_unlock_bh(&sk->sk_callback_lock);
Mike Christie30a6c652006-04-06 21:13:39 -05002031}
2032
2033static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002034iscsi_tcp_terminate_conn(struct iscsi_conn *conn)
Mike Christie30a6c652006-04-06 21:13:39 -05002035{
Mike Christie5bb0b552006-04-06 21:26:46 -05002036 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
2037
2038 if (!tcp_conn->sock)
Mike Christie30a6c652006-04-06 21:13:39 -05002039 return;
Mike Christie30a6c652006-04-06 21:13:39 -05002040
Mike Christie5bb0b552006-04-06 21:26:46 -05002041 sock_hold(tcp_conn->sock->sk);
Mike Christie30a6c652006-04-06 21:13:39 -05002042 iscsi_conn_restore_callbacks(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05002043 sock_put(tcp_conn->sock->sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07002044
Mike Christie5bb0b552006-04-06 21:26:46 -05002045 sock_release(tcp_conn->sock);
2046 tcp_conn->sock = NULL;
2047 conn->recv_lock = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002048}
2049
Mike Christie5bb0b552006-04-06 21:26:46 -05002050/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05002051static void
Mike Christie5bb0b552006-04-06 21:26:46 -05002052iscsi_tcp_mgmt_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask,
2053 char *data, uint32_t data_size)
Mike Christie30a6c652006-04-06 21:13:39 -05002054{
Mike Christie5bb0b552006-04-06 21:26:46 -05002055 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -05002056
Mike Christie6e458cc2006-05-18 20:31:31 -05002057 iscsi_buf_init_iov(&tcp_mtask->headbuf, (char*)mtask->hdr,
2058 sizeof(struct iscsi_hdr));
Mike Christie5bb0b552006-04-06 21:26:46 -05002059 tcp_mtask->xmstate = XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07002060
Mike Christie5bb0b552006-04-06 21:26:46 -05002061 if (mtask->data_count)
2062 iscsi_buf_init_iov(&tcp_mtask->sendbuf, (char*)mtask->data,
Alex Aizman7ba24712005-08-04 19:30:08 -07002063 mtask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07002064}
2065
2066static int
2067iscsi_r2tpool_alloc(struct iscsi_session *session)
2068{
2069 int i;
2070 int cmd_i;
2071
2072 /*
2073 * initialize per-task: R2T pool and xmit queue
2074 */
2075 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2076 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05002077 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002078
2079 /*
2080 * pre-allocated x4 as much r2ts to handle race when
2081 * target acks DataOut faster than we data_xmit() queues
2082 * could replenish r2tqueue.
2083 */
2084
2085 /* R2T pool */
Mike Christie5bb0b552006-04-06 21:26:46 -05002086 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4,
2087 (void***)&tcp_ctask->r2ts,
2088 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002089 goto r2t_alloc_fail;
2090 }
2091
2092 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05002093 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07002094 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05002095 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
2096 iscsi_pool_free(&tcp_ctask->r2tpool,
2097 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002098 goto r2t_alloc_fail;
2099 }
Alex Aizman7ba24712005-08-04 19:30:08 -07002100 }
2101
2102 return 0;
2103
2104r2t_alloc_fail:
2105 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002106 struct iscsi_cmd_task *ctask = session->cmds[i];
2107 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2108
Mike Christie5bb0b552006-04-06 21:26:46 -05002109 kfifo_free(tcp_ctask->r2tqueue);
2110 iscsi_pool_free(&tcp_ctask->r2tpool,
2111 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002112 }
2113 return -ENOMEM;
2114}
2115
2116static void
2117iscsi_r2tpool_free(struct iscsi_session *session)
2118{
2119 int i;
2120
2121 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002122 struct iscsi_cmd_task *ctask = session->cmds[i];
2123 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2124
Mike Christie5bb0b552006-04-06 21:26:46 -05002125 kfifo_free(tcp_ctask->r2tqueue);
2126 iscsi_pool_free(&tcp_ctask->r2tpool,
2127 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002128 }
2129}
2130
Alex Aizman7ba24712005-08-04 19:30:08 -07002131static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002132iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002133 uint32_t value)
2134{
Mike Christie7b7232f2006-02-01 21:06:49 -06002135 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002136 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05002137 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002138
Alex Aizman7ba24712005-08-04 19:30:08 -07002139 switch(param) {
2140 case ISCSI_PARAM_MAX_RECV_DLENGTH: {
Mike Christie5bb0b552006-04-06 21:26:46 -05002141 char *saveptr = tcp_conn->data;
Al Virob53cb2a2005-12-15 09:17:19 +00002142 gfp_t flags = GFP_KERNEL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002143
Mike Christie5bb0b552006-04-06 21:26:46 -05002144 if (tcp_conn->data_size >= value) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002145 conn->max_recv_dlength = value;
2146 break;
2147 }
2148
2149 spin_lock_bh(&session->lock);
2150 if (conn->stop_stage == STOP_CONN_RECOVER)
2151 flags = GFP_ATOMIC;
2152 spin_unlock_bh(&session->lock);
2153
2154 if (value <= PAGE_SIZE)
Mike Christie5bb0b552006-04-06 21:26:46 -05002155 tcp_conn->data = kmalloc(value, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07002156 else
Mike Christie5bb0b552006-04-06 21:26:46 -05002157 tcp_conn->data = (void*)__get_free_pages(flags,
Alex Aizman7ba24712005-08-04 19:30:08 -07002158 get_order(value));
Mike Christie5bb0b552006-04-06 21:26:46 -05002159 if (tcp_conn->data == NULL) {
2160 tcp_conn->data = saveptr;
Alex Aizman7ba24712005-08-04 19:30:08 -07002161 return -ENOMEM;
2162 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002163 if (tcp_conn->data_size <= PAGE_SIZE)
Alex Aizman7ba24712005-08-04 19:30:08 -07002164 kfree(saveptr);
2165 else
2166 free_pages((unsigned long)saveptr,
Mike Christie5bb0b552006-04-06 21:26:46 -05002167 get_order(tcp_conn->data_size));
Alex Aizman7ba24712005-08-04 19:30:08 -07002168 conn->max_recv_dlength = value;
Mike Christie5bb0b552006-04-06 21:26:46 -05002169 tcp_conn->data_size = value;
Alex Aizman7ba24712005-08-04 19:30:08 -07002170 }
2171 break;
2172 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2173 conn->max_xmit_dlength = value;
2174 break;
2175 case ISCSI_PARAM_HDRDGST_EN:
2176 conn->hdrdgst_en = value;
Mike Christie5bb0b552006-04-06 21:26:46 -05002177 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -07002178 if (conn->hdrdgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002179 tcp_conn->hdr_size += sizeof(__u32);
2180 if (!tcp_conn->tx_tfm)
2181 tcp_conn->tx_tfm = crypto_alloc_tfm("crc32c",
2182 0);
2183 if (!tcp_conn->tx_tfm)
Alex Aizman7ba24712005-08-04 19:30:08 -07002184 return -ENOMEM;
Mike Christie5bb0b552006-04-06 21:26:46 -05002185 if (!tcp_conn->rx_tfm)
2186 tcp_conn->rx_tfm = crypto_alloc_tfm("crc32c",
2187 0);
2188 if (!tcp_conn->rx_tfm) {
2189 crypto_free_tfm(tcp_conn->tx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002190 return -ENOMEM;
2191 }
2192 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05002193 if (tcp_conn->tx_tfm)
2194 crypto_free_tfm(tcp_conn->tx_tfm);
2195 if (tcp_conn->rx_tfm)
2196 crypto_free_tfm(tcp_conn->rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002197 }
2198 break;
2199 case ISCSI_PARAM_DATADGST_EN:
2200 conn->datadgst_en = value;
2201 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002202 if (!tcp_conn->data_tx_tfm)
2203 tcp_conn->data_tx_tfm =
Alex Aizman7ba24712005-08-04 19:30:08 -07002204 crypto_alloc_tfm("crc32c", 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05002205 if (!tcp_conn->data_tx_tfm)
Alex Aizman7ba24712005-08-04 19:30:08 -07002206 return -ENOMEM;
Mike Christie5bb0b552006-04-06 21:26:46 -05002207 if (!tcp_conn->data_rx_tfm)
2208 tcp_conn->data_rx_tfm =
Alex Aizman7ba24712005-08-04 19:30:08 -07002209 crypto_alloc_tfm("crc32c", 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05002210 if (!tcp_conn->data_rx_tfm) {
2211 crypto_free_tfm(tcp_conn->data_tx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002212 return -ENOMEM;
2213 }
2214 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05002215 if (tcp_conn->data_tx_tfm)
2216 crypto_free_tfm(tcp_conn->data_tx_tfm);
2217 if (tcp_conn->data_rx_tfm)
2218 crypto_free_tfm(tcp_conn->data_rx_tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07002219 }
Mike Christie5bb0b552006-04-06 21:26:46 -05002220 tcp_conn->sendpage = conn->datadgst_en ?
2221 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002222 break;
2223 case ISCSI_PARAM_INITIAL_R2T_EN:
2224 session->initial_r2t_en = value;
2225 break;
2226 case ISCSI_PARAM_MAX_R2T:
2227 if (session->max_r2t == roundup_pow_of_two(value))
2228 break;
2229 iscsi_r2tpool_free(session);
2230 session->max_r2t = value;
2231 if (session->max_r2t & (session->max_r2t - 1))
2232 session->max_r2t = roundup_pow_of_two(session->max_r2t);
2233 if (iscsi_r2tpool_alloc(session))
2234 return -ENOMEM;
2235 break;
2236 case ISCSI_PARAM_IMM_DATA_EN:
2237 session->imm_data_en = value;
2238 break;
2239 case ISCSI_PARAM_FIRST_BURST:
2240 session->first_burst = value;
2241 break;
2242 case ISCSI_PARAM_MAX_BURST:
2243 session->max_burst = value;
2244 break;
2245 case ISCSI_PARAM_PDU_INORDER_EN:
2246 session->pdu_inorder_en = value;
2247 break;
2248 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2249 session->dataseq_inorder_en = value;
2250 break;
2251 case ISCSI_PARAM_ERL:
2252 session->erl = value;
2253 break;
2254 case ISCSI_PARAM_IFMARKER_EN:
2255 BUG_ON(value);
2256 session->ifmarker_en = value;
2257 break;
2258 case ISCSI_PARAM_OFMARKER_EN:
2259 BUG_ON(value);
2260 session->ofmarker_en = value;
2261 break;
Mike Christie8d2860b2006-05-02 19:46:47 -05002262 case ISCSI_PARAM_EXP_STATSN:
2263 conn->exp_statsn = value;
2264 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002265 default:
2266 break;
2267 }
2268
2269 return 0;
2270}
2271
2272static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002273iscsi_session_get_param(struct iscsi_cls_session *cls_session,
Mike Christie7b8631b2006-01-13 18:05:50 -06002274 enum iscsi_param param, uint32_t *value)
Alex Aizman7ba24712005-08-04 19:30:08 -07002275{
Mike Christie7b7232f2006-02-01 21:06:49 -06002276 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
Mike Christie7b8631b2006-01-13 18:05:50 -06002277 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
Alex Aizman7ba24712005-08-04 19:30:08 -07002278
2279 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002280 case ISCSI_PARAM_INITIAL_R2T_EN:
2281 *value = session->initial_r2t_en;
2282 break;
2283 case ISCSI_PARAM_MAX_R2T:
2284 *value = session->max_r2t;
2285 break;
2286 case ISCSI_PARAM_IMM_DATA_EN:
2287 *value = session->imm_data_en;
2288 break;
2289 case ISCSI_PARAM_FIRST_BURST:
2290 *value = session->first_burst;
2291 break;
2292 case ISCSI_PARAM_MAX_BURST:
2293 *value = session->max_burst;
2294 break;
2295 case ISCSI_PARAM_PDU_INORDER_EN:
2296 *value = session->pdu_inorder_en;
2297 break;
2298 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2299 *value = session->dataseq_inorder_en;
2300 break;
2301 case ISCSI_PARAM_ERL:
2302 *value = session->erl;
2303 break;
2304 case ISCSI_PARAM_IFMARKER_EN:
2305 *value = session->ifmarker_en;
2306 break;
2307 case ISCSI_PARAM_OFMARKER_EN:
2308 *value = session->ofmarker_en;
2309 break;
2310 default:
Mike Christiefd7255f2006-04-06 21:13:36 -05002311 return -EINVAL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002312 }
2313
2314 return 0;
2315}
2316
Mike Christie7b8631b2006-01-13 18:05:50 -06002317static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002318iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
2319 enum iscsi_param param, uint32_t *value)
Mike Christie7b8631b2006-01-13 18:05:50 -06002320{
Mike Christie7b7232f2006-02-01 21:06:49 -06002321 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002322 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christiefd7255f2006-04-06 21:13:36 -05002323 struct inet_sock *inet;
Mike Christie7b8631b2006-01-13 18:05:50 -06002324
2325 switch(param) {
2326 case ISCSI_PARAM_MAX_RECV_DLENGTH:
2327 *value = conn->max_recv_dlength;
2328 break;
2329 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2330 *value = conn->max_xmit_dlength;
2331 break;
2332 case ISCSI_PARAM_HDRDGST_EN:
2333 *value = conn->hdrdgst_en;
2334 break;
2335 case ISCSI_PARAM_DATADGST_EN:
2336 *value = conn->datadgst_en;
2337 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05002338 case ISCSI_PARAM_CONN_PORT:
2339 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002340 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002341 mutex_unlock(&conn->xmitmutex);
2342 return -EINVAL;
2343 }
2344
Mike Christie5bb0b552006-04-06 21:26:46 -05002345 inet = inet_sk(tcp_conn->sock->sk);
Mike Christiefd7255f2006-04-06 21:13:36 -05002346 *value = be16_to_cpu(inet->dport);
2347 mutex_unlock(&conn->xmitmutex);
Mike Christie8d2860b2006-05-02 19:46:47 -05002348 case ISCSI_PARAM_EXP_STATSN:
2349 *value = conn->exp_statsn;
2350 break;
Mike Christie7b8631b2006-01-13 18:05:50 -06002351 default:
Mike Christiefd7255f2006-04-06 21:13:36 -05002352 return -EINVAL;
Mike Christie7b8631b2006-01-13 18:05:50 -06002353 }
2354
2355 return 0;
2356}
2357
Mike Christiefd7255f2006-04-06 21:13:36 -05002358static int
2359iscsi_conn_get_str_param(struct iscsi_cls_conn *cls_conn,
2360 enum iscsi_param param, char *buf)
2361{
2362 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002363 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christiefd7255f2006-04-06 21:13:36 -05002364 struct sock *sk;
2365 struct inet_sock *inet;
2366 struct ipv6_pinfo *np;
2367 int len = 0;
2368
2369 switch (param) {
2370 case ISCSI_PARAM_CONN_ADDRESS:
2371 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002372 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002373 mutex_unlock(&conn->xmitmutex);
2374 return -EINVAL;
2375 }
2376
Mike Christie5bb0b552006-04-06 21:26:46 -05002377 sk = tcp_conn->sock->sk;
Mike Christiefd7255f2006-04-06 21:13:36 -05002378 if (sk->sk_family == PF_INET) {
2379 inet = inet_sk(sk);
2380 len = sprintf(buf, "%u.%u.%u.%u\n",
2381 NIPQUAD(inet->daddr));
2382 } else {
2383 np = inet6_sk(sk);
2384 len = sprintf(buf,
2385 "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
2386 NIP6(np->daddr));
2387 }
2388 mutex_unlock(&conn->xmitmutex);
2389 break;
2390 default:
2391 return -EINVAL;
2392 }
2393
2394 return len;
2395}
2396
Alex Aizman7ba24712005-08-04 19:30:08 -07002397static void
Mike Christie7b7232f2006-02-01 21:06:49 -06002398iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07002399{
Mike Christie7b7232f2006-02-01 21:06:49 -06002400 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002401 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002402
2403 stats->txdata_octets = conn->txdata_octets;
2404 stats->rxdata_octets = conn->rxdata_octets;
2405 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
2406 stats->dataout_pdus = conn->dataout_pdus_cnt;
2407 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
2408 stats->datain_pdus = conn->datain_pdus_cnt;
2409 stats->r2t_pdus = conn->r2t_pdus_cnt;
2410 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
2411 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
2412 stats->custom_length = 3;
2413 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05002414 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002415 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05002416 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002417 strcpy(stats->custom[2].desc, "eh_abort_cnt");
2418 stats->custom[2].value = conn->eh_abort_cnt;
2419}
2420
Mike Christie5bb0b552006-04-06 21:26:46 -05002421static struct iscsi_cls_session *
2422iscsi_tcp_session_create(struct iscsi_transport *iscsit,
2423 struct scsi_transport_template *scsit,
2424 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07002425{
Mike Christie5bb0b552006-04-06 21:26:46 -05002426 struct iscsi_cls_session *cls_session;
2427 struct iscsi_session *session;
2428 uint32_t hn;
2429 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07002430
Mike Christie5bb0b552006-04-06 21:26:46 -05002431 cls_session = iscsi_session_setup(iscsit, scsit,
2432 sizeof(struct iscsi_tcp_cmd_task),
2433 sizeof(struct iscsi_tcp_mgmt_task),
2434 initial_cmdsn, &hn);
2435 if (!cls_session)
2436 return NULL;
2437 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07002438
Mike Christie5bb0b552006-04-06 21:26:46 -05002439 session = class_to_transport_session(cls_session);
2440 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2441 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2442 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2443
2444 ctask->hdr = &tcp_ctask->hdr;
2445 }
2446
2447 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
2448 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
2449 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
2450
2451 mtask->hdr = &tcp_mtask->hdr;
2452 }
2453
2454 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
2455 goto r2tpool_alloc_fail;
2456
2457 return cls_session;
2458
2459r2tpool_alloc_fail:
2460 iscsi_session_teardown(cls_session);
2461 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002462}
2463
Mike Christie5bb0b552006-04-06 21:26:46 -05002464static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2465{
Mike Christie5bb0b552006-04-06 21:26:46 -05002466 iscsi_r2tpool_free(class_to_transport_session(cls_session));
2467 iscsi_session_teardown(cls_session);
2468}
2469
2470static struct scsi_host_template iscsi_sht = {
Mike Christiee0ecae82006-05-18 20:31:43 -05002471 .name = "iSCSI Initiator over TCP/IP, v"
2472 ISCSI_TCP_VERSION,
Mike Christie5bb0b552006-04-06 21:26:46 -05002473 .queuecommand = iscsi_queuecommand,
2474 .change_queue_depth = iscsi_change_queue_depth,
2475 .can_queue = ISCSI_XMIT_CMDS_MAX - 1,
2476 .sg_tablesize = ISCSI_SG_TABLESIZE,
2477 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
2478 .eh_abort_handler = iscsi_eh_abort,
2479 .eh_host_reset_handler = iscsi_eh_host_reset,
2480 .use_clustering = DISABLE_CLUSTERING,
2481 .proc_name = "iscsi_tcp",
2482 .this_id = -1,
2483};
2484
Alex Aizman7ba24712005-08-04 19:30:08 -07002485static struct iscsi_transport iscsi_tcp_transport = {
2486 .owner = THIS_MODULE,
2487 .name = "tcp",
2488 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
2489 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05002490 .param_mask = ISCSI_MAX_RECV_DLENGTH |
2491 ISCSI_MAX_XMIT_DLENGTH |
2492 ISCSI_HDRDGST_EN |
2493 ISCSI_DATADGST_EN |
2494 ISCSI_INITIAL_R2T_EN |
2495 ISCSI_MAX_R2T |
2496 ISCSI_IMM_DATA_EN |
2497 ISCSI_FIRST_BURST |
2498 ISCSI_MAX_BURST |
2499 ISCSI_PDU_INORDER_EN |
2500 ISCSI_DATASEQ_INORDER_EN |
2501 ISCSI_ERL |
2502 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05002503 ISCSI_CONN_ADDRESS |
2504 ISCSI_EXP_STATSN,
Alex Aizman7ba24712005-08-04 19:30:08 -07002505 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06002506 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07002507 .max_conn = 1,
2508 .max_cmd_len = ISCSI_TCP_MAX_CMD_LEN,
Mike Christie5bb0b552006-04-06 21:26:46 -05002509 /* session management */
2510 .create_session = iscsi_tcp_session_create,
2511 .destroy_session = iscsi_tcp_session_destroy,
2512 /* connection management */
2513 .create_conn = iscsi_tcp_conn_create,
2514 .bind_conn = iscsi_tcp_conn_bind,
2515 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07002516 .set_param = iscsi_conn_set_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002517 .get_conn_param = iscsi_conn_get_param,
Mike Christiefd7255f2006-04-06 21:13:36 -05002518 .get_conn_str_param = iscsi_conn_get_str_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002519 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002520 .start_conn = iscsi_conn_start,
2521 .stop_conn = iscsi_conn_stop,
Mike Christie5bb0b552006-04-06 21:26:46 -05002522 /* these are called as part of conn recovery */
2523 .suspend_conn_recv = iscsi_tcp_suspend_conn_rx,
2524 .terminate_conn = iscsi_tcp_terminate_conn,
2525 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002526 .send_pdu = iscsi_conn_send_pdu,
2527 .get_stats = iscsi_conn_get_stats,
Mike Christie5bb0b552006-04-06 21:26:46 -05002528 .init_cmd_task = iscsi_tcp_cmd_init,
2529 .init_mgmt_task = iscsi_tcp_mgmt_init,
2530 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2531 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2532 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2533 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002534 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002535};
2536
2537static int __init
2538iscsi_tcp_init(void)
2539{
Alex Aizman7ba24712005-08-04 19:30:08 -07002540 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002541 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2542 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002543 return -EINVAL;
2544 }
2545 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2546
Mike Christie7b8631b2006-01-13 18:05:50 -06002547 if (!iscsi_register_transport(&iscsi_tcp_transport))
Mike Christieffbfe922006-05-18 20:31:36 -05002548 return -ENODEV;
Alex Aizman7ba24712005-08-04 19:30:08 -07002549
Mike Christie7b8631b2006-01-13 18:05:50 -06002550 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002551}
2552
2553static void __exit
2554iscsi_tcp_exit(void)
2555{
2556 iscsi_unregister_transport(&iscsi_tcp_transport);
Alex Aizman7ba24712005-08-04 19:30:08 -07002557}
2558
2559module_init(iscsi_tcp_init);
2560module_exit(iscsi_tcp_exit);