blob: 097a136398cbd771d07cd98df22f813c63c93c52 [file] [log] [blame]
Alex Aizman7ba24712005-08-04 19:30:08 -07001/*
2 * iSCSI Initiator over TCP/IP Data-Path
3 *
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
Mike Christie5bb0b552006-04-06 21:26:46 -05006 * Copyright (C) 2005 - 2006 Mike Christie
7 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
Alex Aizman7ba24712005-08-04 19:30:08 -07008 * maintained by open-iscsi@googlegroups.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published
12 * by the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * See the file COPYING included with this distribution for more details.
21 *
22 * Credits:
23 * Christoph Hellwig
24 * FUJITA Tomonori
25 * Arne Redlich
26 * Zhenyu Wang
27 */
28
29#include <linux/types.h>
30#include <linux/list.h>
31#include <linux/inet.h>
Mike Christie4e7aba72007-05-30 12:57:23 -050032#include <linux/file.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070033#include <linux/blkdev.h>
34#include <linux/crypto.h>
35#include <linux/delay.h>
36#include <linux/kfifo.h>
37#include <linux/scatterlist.h>
38#include <net/tcp.h>
39#include <scsi/scsi_cmnd.h>
Mike Christied1d81c02007-05-30 12:57:21 -050040#include <scsi/scsi_device.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070041#include <scsi/scsi_host.h>
42#include <scsi/scsi.h>
43#include <scsi/scsi_transport_iscsi.h>
44
45#include "iscsi_tcp.h"
46
47MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
48 "Alex Aizman <itn780@yahoo.com>");
49MODULE_DESCRIPTION("iSCSI/TCP data-path");
50MODULE_LICENSE("GPL");
Alex Aizman7ba24712005-08-04 19:30:08 -070051/* #define DEBUG_TCP */
Alex Aizman7ba24712005-08-04 19:30:08 -070052#define DEBUG_ASSERT
53
54#ifdef DEBUG_TCP
Mike Christie5bb0b552006-04-06 21:26:46 -050055#define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
Alex Aizman7ba24712005-08-04 19:30:08 -070056#else
57#define debug_tcp(fmt...)
58#endif
59
Alex Aizman7ba24712005-08-04 19:30:08 -070060#ifndef DEBUG_ASSERT
61#ifdef BUG_ON
62#undef BUG_ON
63#endif
64#define BUG_ON(expr)
65#endif
66
Alex Aizman7ba24712005-08-04 19:30:08 -070067static unsigned int iscsi_max_lun = 512;
68module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
69
Alex Aizman7ba24712005-08-04 19:30:08 -070070static inline void
Alex Aizman7ba24712005-08-04 19:30:08 -070071iscsi_buf_init_iov(struct iscsi_buf *ibuf, char *vbuf, int size)
72{
Jens Axboe45711f12007-10-22 21:19:53 +020073 sg_init_one(&ibuf->sg, vbuf, size);
Alex Aizman7ba24712005-08-04 19:30:08 -070074 ibuf->sent = 0;
Mike Christie7cae5152006-01-13 18:05:47 -060075 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070076}
77
78static inline void
79iscsi_buf_init_sg(struct iscsi_buf *ibuf, struct scatterlist *sg)
80{
Jens Axboe45711f12007-10-22 21:19:53 +020081 sg_init_table(&ibuf->sg, 1);
Jens Axboe642f1492007-10-24 11:20:47 +020082 sg_set_page(&ibuf->sg, sg_page(sg), sg->length, sg->offset);
Alex Aizman7ba24712005-08-04 19:30:08 -070083 /*
84 * Fastpath: sg element fits into single page
85 */
Jens Axboe45711f12007-10-22 21:19:53 +020086 if (sg->length + sg->offset <= PAGE_SIZE && !PageSlab(sg_page(sg)))
Mike Christie7cae5152006-01-13 18:05:47 -060087 ibuf->use_sendmsg = 0;
88 else
89 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070090 ibuf->sent = 0;
91}
92
93static inline int
94iscsi_buf_left(struct iscsi_buf *ibuf)
95{
96 int rc;
97
98 rc = ibuf->sg.length - ibuf->sent;
99 BUG_ON(rc < 0);
100 return rc;
101}
102
103static inline void
Mike Christieaf973482005-09-12 21:01:32 -0500104iscsi_hdr_digest(struct iscsi_conn *conn, struct iscsi_buf *buf,
105 u8* crc)
Alex Aizman7ba24712005-08-04 19:30:08 -0700106{
Mike Christie5bb0b552006-04-06 21:26:46 -0500107 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
108
James Bottomleyc9802cd2006-09-23 15:33:43 -0500109 crypto_hash_digest(&tcp_conn->tx_hash, &buf->sg, buf->sg.length, crc);
Mike Christie218432c2007-05-30 12:57:17 -0500110 buf->sg.length += sizeof(u32);
Alex Aizman7ba24712005-08-04 19:30:08 -0700111}
112
Alex Aizman7ba24712005-08-04 19:30:08 -0700113static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500114iscsi_hdr_extract(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700115{
Mike Christie5bb0b552006-04-06 21:26:46 -0500116 struct sk_buff *skb = tcp_conn->in.skb;
Alex Aizman7ba24712005-08-04 19:30:08 -0700117
Mike Christie5bb0b552006-04-06 21:26:46 -0500118 tcp_conn->in.zero_copy_hdr = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700119
Mike Christie5bb0b552006-04-06 21:26:46 -0500120 if (tcp_conn->in.copy >= tcp_conn->hdr_size &&
121 tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700122 /*
123 * Zero-copy PDU Header: using connection context
124 * to store header pointer.
125 */
126 if (skb_shinfo(skb)->frag_list == NULL &&
Mike Christie5bb0b552006-04-06 21:26:46 -0500127 !skb_shinfo(skb)->nr_frags) {
128 tcp_conn->in.hdr = (struct iscsi_hdr *)
129 ((char*)skb->data + tcp_conn->in.offset);
130 tcp_conn->in.zero_copy_hdr = 1;
131 } else {
Alex Aizman7ba24712005-08-04 19:30:08 -0700132 /* ignoring return code since we checked
133 * in.copy before */
Mike Christie5bb0b552006-04-06 21:26:46 -0500134 skb_copy_bits(skb, tcp_conn->in.offset,
135 &tcp_conn->hdr, tcp_conn->hdr_size);
136 tcp_conn->in.hdr = &tcp_conn->hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700137 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500138 tcp_conn->in.offset += tcp_conn->hdr_size;
139 tcp_conn->in.copy -= tcp_conn->hdr_size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700140 } else {
141 int hdr_remains;
142 int copylen;
143
144 /*
145 * PDU header scattered across SKB's,
146 * copying it... This'll happen quite rarely.
147 */
148
Mike Christie5bb0b552006-04-06 21:26:46 -0500149 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER)
150 tcp_conn->in.hdr_offset = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700151
Mike Christie5bb0b552006-04-06 21:26:46 -0500152 hdr_remains = tcp_conn->hdr_size - tcp_conn->in.hdr_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700153 BUG_ON(hdr_remains <= 0);
154
Mike Christie5bb0b552006-04-06 21:26:46 -0500155 copylen = min(tcp_conn->in.copy, hdr_remains);
156 skb_copy_bits(skb, tcp_conn->in.offset,
157 (char*)&tcp_conn->hdr + tcp_conn->in.hdr_offset,
158 copylen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700159
160 debug_tcp("PDU gather offset %d bytes %d in.offset %d "
Mike Christie5bb0b552006-04-06 21:26:46 -0500161 "in.copy %d\n", tcp_conn->in.hdr_offset, copylen,
162 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700163
Mike Christie5bb0b552006-04-06 21:26:46 -0500164 tcp_conn->in.offset += copylen;
165 tcp_conn->in.copy -= copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700166 if (copylen < hdr_remains) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500167 tcp_conn->in_progress = IN_PROGRESS_HEADER_GATHER;
168 tcp_conn->in.hdr_offset += copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700169 return -EAGAIN;
170 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500171 tcp_conn->in.hdr = &tcp_conn->hdr;
172 tcp_conn->discontiguous_hdr_cnt++;
173 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700174 }
175
176 return 0;
177}
178
Mike Christie30a6c652006-04-06 21:13:39 -0500179/*
180 * must be called with session lock
181 */
182static void
Mike Christieb6c395e2006-07-24 15:47:15 -0500183iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -0700184{
Mike Christie5bb0b552006-04-06 21:26:46 -0500185 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christieb6c395e2006-07-24 15:47:15 -0500186 struct iscsi_r2t_info *r2t;
Mike Christie30a6c652006-04-06 21:13:39 -0500187 struct scsi_cmnd *sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700188
Mike Christieb6c395e2006-07-24 15:47:15 -0500189 /* flush ctask's r2t queues */
190 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
191 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
192 sizeof(void*));
193 debug_scsi("iscsi_tcp_cleanup_ctask pending r2t dropped\n");
194 }
195
Mike Christie30a6c652006-04-06 21:13:39 -0500196 sc = ctask->sc;
197 if (unlikely(!sc))
Alex Aizman7ba24712005-08-04 19:30:08 -0700198 return;
Mike Christie30a6c652006-04-06 21:13:39 -0500199
Mike Christie5bb0b552006-04-06 21:26:46 -0500200 tcp_ctask->xmstate = XMSTATE_IDLE;
201 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -0700202}
203
204/**
205 * iscsi_data_rsp - SCSI Data-In Response processing
206 * @conn: iscsi connection
207 * @ctask: scsi command task
208 **/
209static int
210iscsi_data_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
211{
Mike Christie5bb0b552006-04-06 21:26:46 -0500212 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
213 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
214 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700215 struct iscsi_session *session = conn->session;
Mike Christie857ae0b2007-05-30 12:57:15 -0500216 struct scsi_cmnd *sc = ctask->sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700217 int datasn = be32_to_cpu(rhdr->datasn);
218
Mike Christie77a23c22007-05-30 12:57:18 -0500219 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Alex Aizman7ba24712005-08-04 19:30:08 -0700220 /*
221 * setup Data-In byte counter (gets decremented..)
222 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500223 ctask->data_count = tcp_conn->in.datalen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700224
Mike Christie5bb0b552006-04-06 21:26:46 -0500225 if (tcp_conn->in.datalen == 0)
Alex Aizman7ba24712005-08-04 19:30:08 -0700226 return 0;
227
Mike Christied473cc72007-05-30 12:57:14 -0500228 if (tcp_ctask->exp_datasn != datasn) {
229 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->datasn(%d)\n",
230 __FUNCTION__, tcp_ctask->exp_datasn, datasn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700231 return ISCSI_ERR_DATASN;
Mike Christied473cc72007-05-30 12:57:14 -0500232 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700233
Mike Christied473cc72007-05-30 12:57:14 -0500234 tcp_ctask->exp_datasn++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700235
Mike Christie5bb0b552006-04-06 21:26:46 -0500236 tcp_ctask->data_offset = be32_to_cpu(rhdr->offset);
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900237 if (tcp_ctask->data_offset + tcp_conn->in.datalen > scsi_bufflen(sc)) {
Mike Christie857ae0b2007-05-30 12:57:15 -0500238 debug_tcp("%s: data_offset(%d) + data_len(%d) > total_length_in(%d)\n",
239 __FUNCTION__, tcp_ctask->data_offset,
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900240 tcp_conn->in.datalen, scsi_bufflen(sc));
Alex Aizman7ba24712005-08-04 19:30:08 -0700241 return ISCSI_ERR_DATA_OFFSET;
Mike Christie857ae0b2007-05-30 12:57:15 -0500242 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700243
244 if (rhdr->flags & ISCSI_FLAG_DATA_STATUS) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700245 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600246 if (rhdr->flags & ISCSI_FLAG_DATA_UNDERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700247 int res_count = be32_to_cpu(rhdr->residual_count);
248
249 if (res_count > 0 &&
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900250 res_count <= scsi_bufflen(sc)) {
251 scsi_set_resid(sc, res_count);
Alex Aizman7ba24712005-08-04 19:30:08 -0700252 sc->result = (DID_OK << 16) | rhdr->cmd_status;
253 } else
254 sc->result = (DID_BAD_TARGET << 16) |
255 rhdr->cmd_status;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600256 } else if (rhdr->flags & ISCSI_FLAG_DATA_OVERFLOW) {
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900257 scsi_set_resid(sc, be32_to_cpu(rhdr->residual_count));
Alex Aizman7ba24712005-08-04 19:30:08 -0700258 sc->result = (DID_OK << 16) | rhdr->cmd_status;
259 } else
260 sc->result = (DID_OK << 16) | rhdr->cmd_status;
261 }
262
263 conn->datain_pdus_cnt++;
264 return 0;
265}
266
267/**
268 * iscsi_solicit_data_init - initialize first Data-Out
269 * @conn: iscsi connection
270 * @ctask: scsi command task
271 * @r2t: R2T info
272 *
273 * Notes:
274 * Initialize first Data-Out within this R2T sequence and finds
275 * proper data_offset within this SCSI command.
276 *
277 * This function is called with connection lock taken.
278 **/
279static void
280iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
281 struct iscsi_r2t_info *r2t)
282{
283 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700284 struct scsi_cmnd *sc = ctask->sc;
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900285 int i, sg_count = 0;
286 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700287
Mike Christieffbfe922006-05-18 20:31:36 -0500288 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700289 memset(hdr, 0, sizeof(struct iscsi_data));
290 hdr->ttt = r2t->ttt;
291 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
292 r2t->solicit_datasn++;
293 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500294 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
295 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700296 hdr->exp_statsn = r2t->exp_statsn;
297 hdr->offset = cpu_to_be32(r2t->data_offset);
298 if (r2t->data_length > conn->max_xmit_dlength) {
299 hton24(hdr->dlength, conn->max_xmit_dlength);
300 r2t->data_count = conn->max_xmit_dlength;
301 hdr->flags = 0;
302 } else {
303 hton24(hdr->dlength, r2t->data_length);
304 r2t->data_count = r2t->data_length;
305 hdr->flags = ISCSI_FLAG_CMD_FINAL;
306 }
307 conn->dataout_pdus_cnt++;
308
309 r2t->sent = 0;
310
Mike Christie6e458cc2006-05-18 20:31:31 -0500311 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -0500312 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -0700313
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900314 sg = scsi_sglist(sc);
315 r2t->sg = NULL;
316 for (i = 0; i < scsi_sg_count(sc); i++, sg += 1) {
317 /* FIXME: prefetch ? */
318 if (sg_count + sg->length > r2t->data_offset) {
319 int page_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700320
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900321 /* sg page found! */
Alex Aizman7ba24712005-08-04 19:30:08 -0700322
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900323 /* offset within this page */
324 page_offset = r2t->data_offset - sg_count;
Alex Aizman7ba24712005-08-04 19:30:08 -0700325
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900326 /* fill in this buffer */
327 iscsi_buf_init_sg(&r2t->sendbuf, sg);
328 r2t->sendbuf.sg.offset += page_offset;
329 r2t->sendbuf.sg.length -= page_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700330
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900331 /* xmit logic will continue with next one */
332 r2t->sg = sg + 1;
333 break;
Alex Aizman7ba24712005-08-04 19:30:08 -0700334 }
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900335 sg_count += sg->length;
Mike Christie62f38302006-08-31 18:09:27 -0400336 }
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900337 BUG_ON(r2t->sg == NULL);
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 Christie98a94162006-08-31 18:09:26 -0400356 if (tcp_conn->in.datalen) {
357 printk(KERN_ERR "iscsi_tcp: invalid R2t with datalen %d\n",
358 tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700359 return ISCSI_ERR_DATALEN;
Mike Christie98a94162006-08-31 18:09:26 -0400360 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700361
Mike Christied473cc72007-05-30 12:57:14 -0500362 if (tcp_ctask->exp_datasn != r2tsn){
363 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->r2tsn(%d)\n",
364 __FUNCTION__, tcp_ctask->exp_datasn, r2tsn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700365 return ISCSI_ERR_R2TSN;
Mike Christied473cc72007-05-30 12:57:14 -0500366 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700367
Alex Aizman7ba24712005-08-04 19:30:08 -0700368 /* fill-in new R2T associated with the task */
369 spin_lock(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -0500370 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
371
Alex Aizman7ba24712005-08-04 19:30:08 -0700372 if (!ctask->sc || ctask->mtask ||
373 session->state != ISCSI_STATE_LOGGED_IN) {
374 printk(KERN_INFO "iscsi_tcp: dropping R2T itt %d in "
375 "recovery...\n", ctask->itt);
376 spin_unlock(&session->lock);
377 return 0;
378 }
Mike Christieb6c395e2006-07-24 15:47:15 -0500379
Mike Christie5bb0b552006-04-06 21:26:46 -0500380 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700381 BUG_ON(!rc);
382
383 r2t->exp_statsn = rhdr->statsn;
384 r2t->data_length = be32_to_cpu(rhdr->data_length);
Mike Christie98a94162006-08-31 18:09:26 -0400385 if (r2t->data_length == 0) {
386 printk(KERN_ERR "iscsi_tcp: invalid R2T with zero data len\n");
Alex Aizman7ba24712005-08-04 19:30:08 -0700387 spin_unlock(&session->lock);
388 return ISCSI_ERR_DATALEN;
389 }
390
Mike Christie98a94162006-08-31 18:09:26 -0400391 if (r2t->data_length > session->max_burst)
392 debug_scsi("invalid R2T with data len %u and max burst %u."
393 "Attempting to execute request.\n",
394 r2t->data_length, session->max_burst);
395
Alex Aizman7ba24712005-08-04 19:30:08 -0700396 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900397 if (r2t->data_offset + r2t->data_length > scsi_bufflen(ctask->sc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700398 spin_unlock(&session->lock);
Mike Christie98a94162006-08-31 18:09:26 -0400399 printk(KERN_ERR "iscsi_tcp: invalid R2T with data len %u at "
400 "offset %u and total length %d\n", r2t->data_length,
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900401 r2t->data_offset, scsi_bufflen(ctask->sc));
Alex Aizman7ba24712005-08-04 19:30:08 -0700402 return ISCSI_ERR_DATALEN;
403 }
404
405 r2t->ttt = rhdr->ttt; /* no flip */
406 r2t->solicit_datasn = 0;
407
408 iscsi_solicit_data_init(conn, ctask, r2t);
409
Mike Christied473cc72007-05-30 12:57:14 -0500410 tcp_ctask->exp_datasn = r2tsn + 1;
Mike Christie5bb0b552006-04-06 21:26:46 -0500411 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
Mike Christie218432c2007-05-30 12:57:17 -0500412 tcp_ctask->xmstate |= XMSTATE_SOL_HDR_INIT;
Mike Christieb6c395e2006-07-24 15:47:15 -0500413 list_move_tail(&ctask->running, &conn->xmitqueue);
Alex Aizman7ba24712005-08-04 19:30:08 -0700414
Mike Christie55e32992006-01-13 18:05:53 -0600415 scsi_queue_work(session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -0700416 conn->r2t_pdus_cnt++;
417 spin_unlock(&session->lock);
418
419 return 0;
420}
421
422static int
Mike Christie5bb0b552006-04-06 21:26:46 -0500423iscsi_tcp_hdr_recv(struct iscsi_conn *conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700424{
Mike Christie5bb0b552006-04-06 21:26:46 -0500425 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700426 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700427 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500428 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
429 uint32_t cdgst, rdgst = 0, itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700430
Mike Christie5bb0b552006-04-06 21:26:46 -0500431 hdr = tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700432
433 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500434 tcp_conn->in.datalen = ntoh24(hdr->dlength);
435 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700436 printk(KERN_ERR "iscsi_tcp: datalen %d > %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500437 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700438 return ISCSI_ERR_DATALEN;
439 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500440 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700441
442 /* read AHS */
Mike Christie5bb0b552006-04-06 21:26:46 -0500443 ahslen = hdr->hlength << 2;
444 tcp_conn->in.offset += ahslen;
445 tcp_conn->in.copy -= ahslen;
446 if (tcp_conn->in.copy < 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700447 printk(KERN_ERR "iscsi_tcp: can't handle AHS with length "
Mike Christie5bb0b552006-04-06 21:26:46 -0500448 "%d bytes\n", ahslen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700449 return ISCSI_ERR_AHSLEN;
450 }
451
452 /* calculate read padding */
Mike Christie5bb0b552006-04-06 21:26:46 -0500453 tcp_conn->in.padding = tcp_conn->in.datalen & (ISCSI_PAD_LEN-1);
454 if (tcp_conn->in.padding) {
455 tcp_conn->in.padding = ISCSI_PAD_LEN - tcp_conn->in.padding;
456 debug_scsi("read padding %d bytes\n", tcp_conn->in.padding);
Alex Aizman7ba24712005-08-04 19:30:08 -0700457 }
458
459 if (conn->hdrdgst_en) {
460 struct scatterlist sg;
461
462 sg_init_one(&sg, (u8 *)hdr,
Mike Christie5bb0b552006-04-06 21:26:46 -0500463 sizeof(struct iscsi_hdr) + ahslen);
James Bottomleyc9802cd2006-09-23 15:33:43 -0500464 crypto_hash_digest(&tcp_conn->rx_hash, &sg, sg.length,
465 (u8 *)&cdgst);
Alex Aizman7ba24712005-08-04 19:30:08 -0700466 rdgst = *(uint32_t*)((char*)hdr + sizeof(struct iscsi_hdr) +
Mike Christie5bb0b552006-04-06 21:26:46 -0500467 ahslen);
Mike Christie8a47cd32005-11-30 02:27:19 -0600468 if (cdgst != rdgst) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500469 printk(KERN_ERR "iscsi_tcp: hdrdgst error "
470 "recv 0x%x calc 0x%x\n", rdgst, cdgst);
Mike Christie8a47cd32005-11-30 02:27:19 -0600471 return ISCSI_ERR_HDR_DGST;
472 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700473 }
474
Mike Christie5bb0b552006-04-06 21:26:46 -0500475 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700476 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500477 rc = iscsi_verify_itt(conn, hdr, &itt);
478 if (rc == ISCSI_ERR_NO_SCSI_CMD) {
479 tcp_conn->in.datalen = 0; /* force drop */
480 return 0;
481 } else if (rc)
482 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700483
484 debug_tcp("opcode 0x%x offset %d copy %d ahslen %d datalen %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500485 opcode, tcp_conn->in.offset, tcp_conn->in.copy,
486 ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700487
Mike Christie5bb0b552006-04-06 21:26:46 -0500488 switch(opcode) {
489 case ISCSI_OP_SCSI_DATA_IN:
490 tcp_conn->in.ctask = session->cmds[itt];
491 rc = iscsi_data_rsp(conn, tcp_conn->in.ctask);
Mike Christie275fd7d2006-07-24 15:47:17 -0500492 if (rc)
493 return rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500494 /* fall through */
495 case ISCSI_OP_SCSI_CMD_RSP:
496 tcp_conn->in.ctask = session->cmds[itt];
497 if (tcp_conn->in.datalen)
498 goto copy_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700499
Mike Christie5bb0b552006-04-06 21:26:46 -0500500 spin_lock(&session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -0500501 rc = __iscsi_complete_pdu(conn, hdr, NULL, 0);
502 spin_unlock(&session->lock);
503 break;
504 case ISCSI_OP_R2T:
505 tcp_conn->in.ctask = session->cmds[itt];
506 if (ahslen)
507 rc = ISCSI_ERR_AHSLEN;
508 else if (tcp_conn->in.ctask->sc->sc_data_direction ==
509 DMA_TO_DEVICE)
510 rc = iscsi_r2t_rsp(conn, tcp_conn->in.ctask);
511 else
512 rc = ISCSI_ERR_PROTO;
513 break;
514 case ISCSI_OP_LOGIN_RSP:
515 case ISCSI_OP_TEXT_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500516 case ISCSI_OP_REJECT:
517 case ISCSI_OP_ASYNC_EVENT:
Mike Christiec8dc1e52006-07-24 15:47:39 -0500518 /*
519 * It is possible that we could get a PDU with a buffer larger
520 * than 8K, but there are no targets that currently do this.
521 * For now we fail until we find a vendor that needs it
522 */
Mike Christiebf32ed32007-02-28 17:32:17 -0600523 if (ISCSI_DEF_MAX_RECV_SEG_LEN <
Mike Christiec8dc1e52006-07-24 15:47:39 -0500524 tcp_conn->in.datalen) {
525 printk(KERN_ERR "iscsi_tcp: received buffer of len %u "
526 "but conn buffer is only %u (opcode %0x)\n",
527 tcp_conn->in.datalen,
Mike Christiebf32ed32007-02-28 17:32:17 -0600528 ISCSI_DEF_MAX_RECV_SEG_LEN, opcode);
Mike Christiec8dc1e52006-07-24 15:47:39 -0500529 rc = ISCSI_ERR_PROTO;
530 break;
531 }
532
Mike Christie5bb0b552006-04-06 21:26:46 -0500533 if (tcp_conn->in.datalen)
534 goto copy_hdr;
535 /* fall through */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500536 case ISCSI_OP_LOGOUT_RSP:
537 case ISCSI_OP_NOOP_IN:
Mike Christie5bb0b552006-04-06 21:26:46 -0500538 case ISCSI_OP_SCSI_TMFUNC_RSP:
539 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
540 break;
541 default:
542 rc = ISCSI_ERR_BAD_OPCODE;
543 break;
544 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700545
546 return rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500547
548copy_hdr:
549 /*
550 * if we did zero copy for the header but we will need multiple
551 * skbs to complete the command then we have to copy the header
552 * for later use
553 */
Mike Christie275fd7d2006-07-24 15:47:17 -0500554 if (tcp_conn->in.zero_copy_hdr && tcp_conn->in.copy <=
Mike Christie5bb0b552006-04-06 21:26:46 -0500555 (tcp_conn->in.datalen + tcp_conn->in.padding +
556 (conn->datadgst_en ? 4 : 0))) {
557 debug_tcp("Copying header for later use. in.copy %d in.datalen"
558 " %d\n", tcp_conn->in.copy, tcp_conn->in.datalen);
559 memcpy(&tcp_conn->hdr, tcp_conn->in.hdr,
560 sizeof(struct iscsi_hdr));
561 tcp_conn->in.hdr = &tcp_conn->hdr;
562 tcp_conn->in.zero_copy_hdr = 0;
563 }
564 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700565}
566
567/**
568 * iscsi_ctask_copy - copy skb bits to the destanation cmd task
Mike Christie5bb0b552006-04-06 21:26:46 -0500569 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700570 * @ctask: scsi command task
571 * @buf: buffer to copy to
572 * @buf_size: size of buffer
573 * @offset: offset within the buffer
574 *
575 * Notes:
576 * The function calls skb_copy_bits() and updates per-connection and
577 * per-cmd byte counters.
578 *
579 * Read counters (in bytes):
580 *
581 * conn->in.offset offset within in progress SKB
582 * conn->in.copy left to copy from in progress SKB
583 * including padding
584 * conn->in.copied copied already from in progress SKB
585 * conn->data_copied copied already from in progress buffer
586 * ctask->sent total bytes sent up to the MidLayer
587 * ctask->data_count left to copy from in progress Data-In
588 * buf_left left to copy from in progress buffer
589 **/
590static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500591iscsi_ctask_copy(struct iscsi_tcp_conn *tcp_conn, struct iscsi_cmd_task *ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -0700592 void *buf, int buf_size, int offset)
593{
Mike Christie5bb0b552006-04-06 21:26:46 -0500594 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
595 int buf_left = buf_size - (tcp_conn->data_copied + offset);
Mike Christie857ae0b2007-05-30 12:57:15 -0500596 unsigned size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700597 int rc;
598
599 size = min(size, ctask->data_count);
600
601 debug_tcp("ctask_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500602 size, tcp_conn->in.offset, tcp_conn->in.copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700603
604 BUG_ON(size <= 0);
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900605 BUG_ON(tcp_ctask->sent + size > scsi_bufflen(ctask->sc));
Alex Aizman7ba24712005-08-04 19:30:08 -0700606
Mike Christie5bb0b552006-04-06 21:26:46 -0500607 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
608 (char*)buf + (offset + tcp_conn->data_copied), size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700609 /* must fit into skb->len */
610 BUG_ON(rc);
611
Mike Christie5bb0b552006-04-06 21:26:46 -0500612 tcp_conn->in.offset += size;
613 tcp_conn->in.copy -= size;
614 tcp_conn->in.copied += size;
615 tcp_conn->data_copied += size;
616 tcp_ctask->sent += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700617 ctask->data_count -= size;
618
Mike Christie5bb0b552006-04-06 21:26:46 -0500619 BUG_ON(tcp_conn->in.copy < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700620 BUG_ON(ctask->data_count < 0);
621
Mike Christie5bb0b552006-04-06 21:26:46 -0500622 if (buf_size != (tcp_conn->data_copied + offset)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700623 if (!ctask->data_count) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500624 BUG_ON(buf_size - tcp_conn->data_copied < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700625 /* done with this PDU */
Mike Christie5bb0b552006-04-06 21:26:46 -0500626 return buf_size - tcp_conn->data_copied;
Alex Aizman7ba24712005-08-04 19:30:08 -0700627 }
628 return -EAGAIN;
629 }
630
631 /* done with this buffer or with both - PDU and buffer */
Mike Christie5bb0b552006-04-06 21:26:46 -0500632 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700633 return 0;
634}
635
636/**
637 * iscsi_tcp_copy - copy skb bits to the destanation buffer
Mike Christie5bb0b552006-04-06 21:26:46 -0500638 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700639 *
640 * Notes:
641 * The function calls skb_copy_bits() and updates per-connection
642 * byte counters.
643 **/
644static inline int
Mike Christieca518682006-08-31 18:09:32 -0400645iscsi_tcp_copy(struct iscsi_conn *conn, int buf_size)
Alex Aizman7ba24712005-08-04 19:30:08 -0700646{
Mike Christiec8dc1e52006-07-24 15:47:39 -0500647 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500648 int buf_left = buf_size - tcp_conn->data_copied;
649 int size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700650 int rc;
651
652 debug_tcp("tcp_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500653 size, tcp_conn->in.offset, tcp_conn->data_copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700654 BUG_ON(size <= 0);
655
Mike Christie5bb0b552006-04-06 21:26:46 -0500656 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
Mike Christiec8dc1e52006-07-24 15:47:39 -0500657 (char*)conn->data + tcp_conn->data_copied, size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700658 BUG_ON(rc);
659
Mike Christie5bb0b552006-04-06 21:26:46 -0500660 tcp_conn->in.offset += size;
661 tcp_conn->in.copy -= size;
662 tcp_conn->in.copied += size;
663 tcp_conn->data_copied += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700664
Mike Christie5bb0b552006-04-06 21:26:46 -0500665 if (buf_size != tcp_conn->data_copied)
Alex Aizman7ba24712005-08-04 19:30:08 -0700666 return -EAGAIN;
667
668 return 0;
669}
670
671static inline void
James Bottomleyc9802cd2006-09-23 15:33:43 -0500672partial_sg_digest_update(struct hash_desc *desc, struct scatterlist *sg,
Mike Christie62f38302006-08-31 18:09:27 -0400673 int offset, int length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700674{
675 struct scatterlist temp;
676
677 memcpy(&temp, sg, sizeof(struct scatterlist));
678 temp.offset = offset;
679 temp.length = length;
James Bottomleyc9802cd2006-09-23 15:33:43 -0500680 crypto_hash_update(desc, &temp, length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700681}
682
Mike Christief6cfba12005-11-29 23:12:57 -0600683static void
Mike Christie5bb0b552006-04-06 21:26:46 -0500684iscsi_recv_digest_update(struct iscsi_tcp_conn *tcp_conn, char* buf, int len)
Mike Christief6cfba12005-11-29 23:12:57 -0600685{
686 struct scatterlist tmp;
687
688 sg_init_one(&tmp, buf, len);
James Bottomleyc9802cd2006-09-23 15:33:43 -0500689 crypto_hash_update(&tcp_conn->rx_hash, &tmp, len);
Mike Christief6cfba12005-11-29 23:12:57 -0600690}
691
Alex Aizman7ba24712005-08-04 19:30:08 -0700692static int iscsi_scsi_data_in(struct iscsi_conn *conn)
693{
Mike Christie5bb0b552006-04-06 21:26:46 -0500694 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
695 struct iscsi_cmd_task *ctask = tcp_conn->in.ctask;
696 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700697 struct scsi_cmnd *sc = ctask->sc;
Mike Christief6cfba12005-11-29 23:12:57 -0600698 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700699 int i, offset, rc = 0;
700
701 BUG_ON((void*)ctask != sc->SCp.ptr);
702
Mike Christie5bb0b552006-04-06 21:26:46 -0500703 offset = tcp_ctask->data_offset;
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900704 sg = scsi_sglist(sc);
Alex Aizman7ba24712005-08-04 19:30:08 -0700705
Mike Christie5bb0b552006-04-06 21:26:46 -0500706 if (tcp_ctask->data_offset)
707 for (i = 0; i < tcp_ctask->sg_count; i++)
Alex Aizman7ba24712005-08-04 19:30:08 -0700708 offset -= sg[i].length;
709 /* we've passed through partial sg*/
710 if (offset < 0)
711 offset = 0;
712
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900713 for (i = tcp_ctask->sg_count; i < scsi_sg_count(sc); i++) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700714 char *dest;
715
Jens Axboe45711f12007-10-22 21:19:53 +0200716 dest = kmap_atomic(sg_page(&sg[i]), KM_SOFTIRQ0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500717 rc = iscsi_ctask_copy(tcp_conn, ctask, dest + sg[i].offset,
Alex Aizman7ba24712005-08-04 19:30:08 -0700718 sg[i].length, offset);
719 kunmap_atomic(dest, KM_SOFTIRQ0);
720 if (rc == -EAGAIN)
721 /* continue with the next SKB/PDU */
722 return rc;
723 if (!rc) {
724 if (conn->datadgst_en) {
725 if (!offset)
Herbert Xudc64ddf2006-08-24 18:45:50 +1000726 crypto_hash_update(
James Bottomleyc9802cd2006-09-23 15:33:43 -0500727 &tcp_conn->rx_hash,
Arne Redlichc959e1c2006-12-17 12:10:24 -0600728 &sg[i], sg[i].length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700729 else
Mike Christie62f38302006-08-31 18:09:27 -0400730 partial_sg_digest_update(
James Bottomleyc9802cd2006-09-23 15:33:43 -0500731 &tcp_conn->rx_hash,
Mike Christie5bb0b552006-04-06 21:26:46 -0500732 &sg[i],
Alex Aizman7ba24712005-08-04 19:30:08 -0700733 sg[i].offset + offset,
734 sg[i].length - offset);
735 }
736 offset = 0;
Mike Christie5bb0b552006-04-06 21:26:46 -0500737 tcp_ctask->sg_count++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700738 }
739
740 if (!ctask->data_count) {
741 if (rc && conn->datadgst_en)
742 /*
743 * data-in is complete, but buffer not...
744 */
James Bottomleyc9802cd2006-09-23 15:33:43 -0500745 partial_sg_digest_update(&tcp_conn->rx_hash,
746 &sg[i],
747 sg[i].offset,
748 sg[i].length-rc);
Alex Aizman7ba24712005-08-04 19:30:08 -0700749 rc = 0;
750 break;
751 }
752
Mike Christie5bb0b552006-04-06 21:26:46 -0500753 if (!tcp_conn->in.copy)
Alex Aizman7ba24712005-08-04 19:30:08 -0700754 return -EAGAIN;
755 }
756 BUG_ON(ctask->data_count);
757
Alex Aizman7ba24712005-08-04 19:30:08 -0700758 /* check for non-exceptional status */
Mike Christie5bb0b552006-04-06 21:26:46 -0500759 if (tcp_conn->in.hdr->flags & ISCSI_FLAG_DATA_STATUS) {
Mike Christieb6c395e2006-07-24 15:47:15 -0500760 debug_scsi("done [sc %lx res %d itt 0x%x flags 0x%x]\n",
761 (long)sc, sc->result, ctask->itt,
762 tcp_conn->in.hdr->flags);
Mike Christie5bb0b552006-04-06 21:26:46 -0500763 spin_lock(&conn->session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -0500764 __iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
765 spin_unlock(&conn->session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700766 }
767
768 return rc;
769}
770
771static int
772iscsi_data_recv(struct iscsi_conn *conn)
773{
Mike Christie5bb0b552006-04-06 21:26:46 -0500774 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
775 int rc = 0, opcode;
Alex Aizman7ba24712005-08-04 19:30:08 -0700776
Mike Christie5bb0b552006-04-06 21:26:46 -0500777 opcode = tcp_conn->in.hdr->opcode & ISCSI_OPCODE_MASK;
778 switch (opcode) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700779 case ISCSI_OP_SCSI_DATA_IN:
780 rc = iscsi_scsi_data_in(conn);
781 break;
Mike Christie5bb0b552006-04-06 21:26:46 -0500782 case ISCSI_OP_SCSI_CMD_RSP:
Alex Aizman7ba24712005-08-04 19:30:08 -0700783 case ISCSI_OP_TEXT_RSP:
784 case ISCSI_OP_LOGIN_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500785 case ISCSI_OP_ASYNC_EVENT:
786 case ISCSI_OP_REJECT:
Alex Aizman7ba24712005-08-04 19:30:08 -0700787 /*
788 * Collect data segment to the connection's data
789 * placeholder
790 */
Mike Christieca518682006-08-31 18:09:32 -0400791 if (iscsi_tcp_copy(conn, tcp_conn->in.datalen)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700792 rc = -EAGAIN;
793 goto exit;
794 }
795
Mike Christiec8dc1e52006-07-24 15:47:39 -0500796 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, conn->data,
Mike Christie5bb0b552006-04-06 21:26:46 -0500797 tcp_conn->in.datalen);
798 if (!rc && conn->datadgst_en && opcode != ISCSI_OP_LOGIN_RSP)
Mike Christiec8dc1e52006-07-24 15:47:39 -0500799 iscsi_recv_digest_update(tcp_conn, conn->data,
Mike Christie5bb0b552006-04-06 21:26:46 -0500800 tcp_conn->in.datalen);
801 break;
Alex Aizman7ba24712005-08-04 19:30:08 -0700802 default:
803 BUG_ON(1);
804 }
805exit:
806 return rc;
807}
808
809/**
810 * iscsi_tcp_data_recv - TCP receive in sendfile fashion
811 * @rd_desc: read descriptor
812 * @skb: socket buffer
813 * @offset: offset in skb
814 * @len: skb->len - offset
815 **/
816static int
817iscsi_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
818 unsigned int offset, size_t len)
819{
820 int rc;
821 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500822 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700823 int processed;
824 char pad[ISCSI_PAD_LEN];
825 struct scatterlist sg;
826
827 /*
828 * Save current SKB and its offset in the corresponding
829 * connection context.
830 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500831 tcp_conn->in.copy = skb->len - offset;
832 tcp_conn->in.offset = offset;
833 tcp_conn->in.skb = skb;
834 tcp_conn->in.len = tcp_conn->in.copy;
835 BUG_ON(tcp_conn->in.copy <= 0);
836 debug_tcp("in %d bytes\n", tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700837
838more:
Mike Christie5bb0b552006-04-06 21:26:46 -0500839 tcp_conn->in.copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700840 rc = 0;
841
842 if (unlikely(conn->suspend_rx)) {
843 debug_tcp("conn %d Rx suspended!\n", conn->id);
844 return 0;
845 }
846
Mike Christie5bb0b552006-04-06 21:26:46 -0500847 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER ||
848 tcp_conn->in_progress == IN_PROGRESS_HEADER_GATHER) {
849 rc = iscsi_hdr_extract(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700850 if (rc) {
851 if (rc == -EAGAIN)
852 goto nomore;
853 else {
Mike Christied82967c2006-07-24 15:47:11 -0500854 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Alex Aizman7ba24712005-08-04 19:30:08 -0700855 return 0;
856 }
857 }
858
859 /*
860 * Verify and process incoming PDU header.
861 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500862 rc = iscsi_tcp_hdr_recv(conn);
863 if (!rc && tcp_conn->in.datalen) {
Mike Christiedd8c0d92006-08-31 18:09:28 -0400864 if (conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -0500865 crypto_hash_init(&tcp_conn->rx_hash);
Mike Christie5bb0b552006-04-06 21:26:46 -0500866 tcp_conn->in_progress = IN_PROGRESS_DATA_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700867 } else if (rc) {
Mike Christie40527af2006-07-24 15:47:45 -0500868 iscsi_conn_failure(conn, rc);
Alex Aizman7ba24712005-08-04 19:30:08 -0700869 return 0;
870 }
871 }
872
Mike Christiedbdb0162007-05-30 12:57:20 -0500873 if (tcp_conn->in_progress == IN_PROGRESS_DDIGEST_RECV &&
874 tcp_conn->in.copy) {
Mike Christief6cfba12005-11-29 23:12:57 -0600875 uint32_t recv_digest;
Mike Christie5bb0b552006-04-06 21:26:46 -0500876
Alex Aizman7ba24712005-08-04 19:30:08 -0700877 debug_tcp("extra data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500878 tcp_conn->in.offset, tcp_conn->in.copy);
Mike Christiedbdb0162007-05-30 12:57:20 -0500879
880 if (!tcp_conn->data_copied) {
881 if (tcp_conn->in.padding) {
882 debug_tcp("padding -> %d\n",
883 tcp_conn->in.padding);
884 memset(pad, 0, tcp_conn->in.padding);
885 sg_init_one(&sg, pad, tcp_conn->in.padding);
886 crypto_hash_update(&tcp_conn->rx_hash,
887 &sg, sg.length);
888 }
889 crypto_hash_final(&tcp_conn->rx_hash,
890 (u8 *) &tcp_conn->in.datadgst);
891 debug_tcp("rx digest 0x%x\n", tcp_conn->in.datadgst);
892 }
893
Mike Christieca518682006-08-31 18:09:32 -0400894 rc = iscsi_tcp_copy(conn, sizeof(uint32_t));
895 if (rc) {
896 if (rc == -EAGAIN)
897 goto again;
898 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
899 return 0;
900 }
901
902 memcpy(&recv_digest, conn->data, sizeof(uint32_t));
Mike Christie5bb0b552006-04-06 21:26:46 -0500903 if (recv_digest != tcp_conn->in.datadgst) {
Mike Christief6cfba12005-11-29 23:12:57 -0600904 debug_tcp("iscsi_tcp: data digest error!"
905 "0x%x != 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500906 tcp_conn->in.datadgst);
Mike Christief6cfba12005-11-29 23:12:57 -0600907 iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
908 return 0;
909 } else {
910 debug_tcp("iscsi_tcp: data digest match!"
911 "0x%x == 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500912 tcp_conn->in.datadgst);
913 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700914 }
915 }
916
Mike Christie5bb0b552006-04-06 21:26:46 -0500917 if (tcp_conn->in_progress == IN_PROGRESS_DATA_RECV &&
Mike Christiedbdb0162007-05-30 12:57:20 -0500918 tcp_conn->in.copy) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700919 debug_tcp("data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500920 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700921
922 rc = iscsi_data_recv(conn);
923 if (rc) {
Mike Christie665b44a2006-05-02 19:46:49 -0500924 if (rc == -EAGAIN)
Alex Aizman7ba24712005-08-04 19:30:08 -0700925 goto again;
Mike Christied82967c2006-07-24 15:47:11 -0500926 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Alex Aizman7ba24712005-08-04 19:30:08 -0700927 return 0;
928 }
Mike Christiedbdb0162007-05-30 12:57:20 -0500929
930 if (tcp_conn->in.padding)
931 tcp_conn->in_progress = IN_PROGRESS_PAD_RECV;
932 else if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -0500933 tcp_conn->in_progress = IN_PROGRESS_DDIGEST_RECV;
Mike Christiedbdb0162007-05-30 12:57:20 -0500934 else
Mike Christie5bb0b552006-04-06 21:26:46 -0500935 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Mike Christiedbdb0162007-05-30 12:57:20 -0500936 tcp_conn->data_copied = 0;
937 }
938
939 if (tcp_conn->in_progress == IN_PROGRESS_PAD_RECV &&
940 tcp_conn->in.copy) {
941 int copylen = min(tcp_conn->in.padding - tcp_conn->data_copied,
942 tcp_conn->in.copy);
943
944 tcp_conn->in.copy -= copylen;
945 tcp_conn->in.offset += copylen;
946 tcp_conn->data_copied += copylen;
947
948 if (tcp_conn->data_copied != tcp_conn->in.padding)
949 tcp_conn->in_progress = IN_PROGRESS_PAD_RECV;
950 else if (conn->datadgst_en)
951 tcp_conn->in_progress = IN_PROGRESS_DDIGEST_RECV;
952 else
953 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
954 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700955 }
956
957 debug_tcp("f, processed %d from out of %d padding %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500958 tcp_conn->in.offset - offset, (int)len, tcp_conn->in.padding);
959 BUG_ON(tcp_conn->in.offset - offset > len);
Alex Aizman7ba24712005-08-04 19:30:08 -0700960
Mike Christie5bb0b552006-04-06 21:26:46 -0500961 if (tcp_conn->in.offset - offset != len) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700962 debug_tcp("continue to process %d bytes\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500963 (int)len - (tcp_conn->in.offset - offset));
Alex Aizman7ba24712005-08-04 19:30:08 -0700964 goto more;
965 }
966
967nomore:
Mike Christie5bb0b552006-04-06 21:26:46 -0500968 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700969 BUG_ON(processed == 0);
970 return processed;
971
972again:
Mike Christie5bb0b552006-04-06 21:26:46 -0500973 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700974 debug_tcp("c, processed %d from out of %d rd_desc_cnt %d\n",
975 processed, (int)len, (int)rd_desc->count);
976 BUG_ON(processed == 0);
977 BUG_ON(processed > len);
978
979 conn->rxdata_octets += processed;
980 return processed;
981}
982
983static void
984iscsi_tcp_data_ready(struct sock *sk, int flag)
985{
986 struct iscsi_conn *conn = sk->sk_user_data;
987 read_descriptor_t rd_desc;
988
989 read_lock(&sk->sk_callback_lock);
990
Mike Christie665b44a2006-05-02 19:46:49 -0500991 /*
992 * Use rd_desc to pass 'conn' to iscsi_tcp_data_recv.
993 * We set count to 1 because we want the network layer to
994 * hand us all the skbs that are available. iscsi_tcp_data_recv
995 * handled pdus that cross buffers or pdus that still need data.
996 */
Alex Aizman7ba24712005-08-04 19:30:08 -0700997 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -0500998 rd_desc.count = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -0700999 tcp_read_sock(sk, &rd_desc, iscsi_tcp_data_recv);
1000
1001 read_unlock(&sk->sk_callback_lock);
1002}
1003
1004static void
1005iscsi_tcp_state_change(struct sock *sk)
1006{
Mike Christie5bb0b552006-04-06 21:26:46 -05001007 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001008 struct iscsi_conn *conn;
1009 struct iscsi_session *session;
1010 void (*old_state_change)(struct sock *);
1011
1012 read_lock(&sk->sk_callback_lock);
1013
1014 conn = (struct iscsi_conn*)sk->sk_user_data;
1015 session = conn->session;
1016
Mike Christiee6273992005-11-29 23:12:49 -06001017 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1018 sk->sk_state == TCP_CLOSE) &&
1019 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001020 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1021 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1022 }
1023
Mike Christie5bb0b552006-04-06 21:26:46 -05001024 tcp_conn = conn->dd_data;
1025 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001026
1027 read_unlock(&sk->sk_callback_lock);
1028
1029 old_state_change(sk);
1030}
1031
1032/**
1033 * iscsi_write_space - Called when more output buffer space is available
1034 * @sk: socket space is available for
1035 **/
1036static void
1037iscsi_write_space(struct sock *sk)
1038{
1039 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001040 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1041
1042 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001043 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie55e32992006-01-13 18:05:53 -06001044 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001045}
1046
1047static void
1048iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1049{
Mike Christie5bb0b552006-04-06 21:26:46 -05001050 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1051 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001052
1053 /* assign new callbacks */
1054 write_lock_bh(&sk->sk_callback_lock);
1055 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001056 tcp_conn->old_data_ready = sk->sk_data_ready;
1057 tcp_conn->old_state_change = sk->sk_state_change;
1058 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001059 sk->sk_data_ready = iscsi_tcp_data_ready;
1060 sk->sk_state_change = iscsi_tcp_state_change;
1061 sk->sk_write_space = iscsi_write_space;
1062 write_unlock_bh(&sk->sk_callback_lock);
1063}
1064
1065static void
Mike Christie1c834692006-07-24 15:47:26 -05001066iscsi_conn_restore_callbacks(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001067{
Mike Christie5bb0b552006-04-06 21:26:46 -05001068 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001069
1070 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1071 write_lock_bh(&sk->sk_callback_lock);
1072 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001073 sk->sk_data_ready = tcp_conn->old_data_ready;
1074 sk->sk_state_change = tcp_conn->old_state_change;
1075 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001076 sk->sk_no_check = 0;
1077 write_unlock_bh(&sk->sk_callback_lock);
1078}
1079
1080/**
1081 * iscsi_send - generic send routine
1082 * @sk: kernel's socket
1083 * @buf: buffer to write from
1084 * @size: actual size to write
1085 * @flags: socket's flags
Alex Aizman7ba24712005-08-04 19:30:08 -07001086 */
1087static inline int
FUJITA Tomonori56851692006-01-13 18:05:44 -06001088iscsi_send(struct iscsi_conn *conn, struct iscsi_buf *buf, int size, int flags)
Alex Aizman7ba24712005-08-04 19:30:08 -07001089{
Mike Christie5bb0b552006-04-06 21:26:46 -05001090 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1091 struct socket *sk = tcp_conn->sock;
Mike Christie3219e522006-05-30 00:37:28 -05001092 int offset = buf->sg.offset + buf->sent, res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001093
Mike Christie7cae5152006-01-13 18:05:47 -06001094 /*
1095 * if we got use_sg=0 or are sending something we kmallocd
1096 * then we did not have to do kmap (kmap returns page_address)
1097 *
1098 * if we got use_sg > 0, but had to drop down, we do not
1099 * set clustering so this should only happen for that
1100 * slab case.
1101 */
1102 if (buf->use_sendmsg)
Jens Axboe45711f12007-10-22 21:19:53 +02001103 res = sock_no_sendpage(sk, sg_page(&buf->sg), offset, size, flags);
Mike Christie7cae5152006-01-13 18:05:47 -06001104 else
Jens Axboe45711f12007-10-22 21:19:53 +02001105 res = tcp_conn->sendpage(sk, sg_page(&buf->sg), offset, size, flags);
Mike Christie3219e522006-05-30 00:37:28 -05001106
1107 if (res >= 0) {
1108 conn->txdata_octets += res;
1109 buf->sent += res;
1110 return res;
1111 }
1112
1113 tcp_conn->sendpage_failures_cnt++;
1114 if (res == -EAGAIN)
1115 res = -ENOBUFS;
1116 else
1117 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1118 return res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001119}
1120
1121/**
1122 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1123 * @conn: iscsi connection
1124 * @buf: buffer to write from
1125 * @datalen: lenght of data to be sent after the header
1126 *
1127 * Notes:
1128 * (Tx, Fast Path)
1129 **/
1130static inline int
1131iscsi_sendhdr(struct iscsi_conn *conn, struct iscsi_buf *buf, int datalen)
1132{
Alex Aizman7ba24712005-08-04 19:30:08 -07001133 int flags = 0; /* MSG_DONTWAIT; */
1134 int res, size;
1135
1136 size = buf->sg.length - buf->sent;
1137 BUG_ON(buf->sent + size > buf->sg.length);
1138 if (buf->sent + size != buf->sg.length || datalen)
1139 flags |= MSG_MORE;
1140
FUJITA Tomonori56851692006-01-13 18:05:44 -06001141 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001142 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size, buf->sent, res);
1143 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001144 if (size != res)
1145 return -EAGAIN;
1146 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001147 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001148
1149 return res;
1150}
1151
1152/**
1153 * iscsi_sendpage - send one page of iSCSI Data-Out.
1154 * @conn: iscsi connection
1155 * @buf: buffer to write from
1156 * @count: remaining data
1157 * @sent: number of bytes sent
1158 *
1159 * Notes:
1160 * (Tx, Fast Path)
1161 **/
1162static inline int
1163iscsi_sendpage(struct iscsi_conn *conn, struct iscsi_buf *buf,
1164 int *count, int *sent)
1165{
Alex Aizman7ba24712005-08-04 19:30:08 -07001166 int flags = 0; /* MSG_DONTWAIT; */
1167 int res, size;
1168
1169 size = buf->sg.length - buf->sent;
1170 BUG_ON(buf->sent + size > buf->sg.length);
1171 if (size > *count)
1172 size = *count;
Mike Christieb13941f2005-09-12 21:01:28 -05001173 if (buf->sent + size != buf->sg.length || *count != size)
Alex Aizman7ba24712005-08-04 19:30:08 -07001174 flags |= MSG_MORE;
1175
FUJITA Tomonori56851692006-01-13 18:05:44 -06001176 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001177 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1178 size, buf->sent, *count, *sent, res);
1179 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001180 *count -= res;
1181 *sent += res;
1182 if (size != res)
1183 return -EAGAIN;
1184 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001185 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001186
1187 return res;
1188}
1189
1190static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -05001191iscsi_data_digest_init(struct iscsi_tcp_conn *tcp_conn,
Mike Christie62f38302006-08-31 18:09:27 -04001192 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001193{
James Bottomleyc9802cd2006-09-23 15:33:43 -05001194 crypto_hash_init(&tcp_conn->tx_hash);
Mike Christie5bb0b552006-04-06 21:26:46 -05001195 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001196}
1197
Alex Aizman7ba24712005-08-04 19:30:08 -07001198/**
1199 * iscsi_solicit_data_cont - initialize next Data-Out
1200 * @conn: iscsi connection
1201 * @ctask: scsi command task
1202 * @r2t: R2T info
1203 * @left: bytes left to transfer
1204 *
1205 * Notes:
1206 * Initialize next Data-Out within this R2T sequence and continue
1207 * to process next Scatter-Gather element(if any) of this SCSI command.
1208 *
1209 * Called under connection lock.
1210 **/
1211static void
1212iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1213 struct iscsi_r2t_info *r2t, int left)
1214{
1215 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001216 int new_offset;
1217
Mike Christieffbfe922006-05-18 20:31:36 -05001218 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001219 memset(hdr, 0, sizeof(struct iscsi_data));
1220 hdr->ttt = r2t->ttt;
1221 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1222 r2t->solicit_datasn++;
1223 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001224 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1225 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001226 hdr->exp_statsn = r2t->exp_statsn;
1227 new_offset = r2t->data_offset + r2t->sent;
1228 hdr->offset = cpu_to_be32(new_offset);
1229 if (left > conn->max_xmit_dlength) {
1230 hton24(hdr->dlength, conn->max_xmit_dlength);
1231 r2t->data_count = conn->max_xmit_dlength;
1232 } else {
1233 hton24(hdr->dlength, left);
1234 r2t->data_count = left;
1235 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1236 }
1237 conn->dataout_pdus_cnt++;
1238
Mike Christie6e458cc2006-05-18 20:31:31 -05001239 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001240 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001241
Mike Christie62f38302006-08-31 18:09:27 -04001242 if (iscsi_buf_left(&r2t->sendbuf))
1243 return;
1244
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001245 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1246 r2t->sg += 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001247}
1248
Mike Christie62f38302006-08-31 18:09:27 -04001249static void iscsi_set_padding(struct iscsi_tcp_cmd_task *tcp_ctask,
1250 unsigned long len)
Alex Aizman7ba24712005-08-04 19:30:08 -07001251{
Mike Christie62f38302006-08-31 18:09:27 -04001252 tcp_ctask->pad_count = len & (ISCSI_PAD_LEN - 1);
1253 if (!tcp_ctask->pad_count)
1254 return;
Alex Aizman7ba24712005-08-04 19:30:08 -07001255
Mike Christie62f38302006-08-31 18:09:27 -04001256 tcp_ctask->pad_count = ISCSI_PAD_LEN - tcp_ctask->pad_count;
1257 debug_scsi("write padding %d bytes\n", tcp_ctask->pad_count);
1258 tcp_ctask->xmstate |= XMSTATE_W_PAD;
Alex Aizman7ba24712005-08-04 19:30:08 -07001259}
1260
1261/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001262 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001263 * @conn: iscsi connection
1264 * @ctask: scsi command task
1265 * @sc: scsi command
1266 **/
1267static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001268iscsi_tcp_cmd_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001269{
Mike Christie5bb0b552006-04-06 21:26:46 -05001270 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001271
Mike Christie5bb0b552006-04-06 21:26:46 -05001272 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Mike Christie218432c2007-05-30 12:57:17 -05001273 tcp_ctask->xmstate = XMSTATE_CMD_HDR_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001274}
1275
1276/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001277 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001278 * @conn: iscsi connection
1279 * @mtask: task management task
1280 *
1281 * Notes:
1282 * The function can return -EAGAIN in which case caller must
1283 * call it again later, or recover. '0' return code means successful
1284 * xmit.
1285 *
Mike Christie218432c2007-05-30 12:57:17 -05001286 * Management xmit state machine consists of these states:
1287 * XMSTATE_IMM_HDR_INIT - calculate digest of PDU Header
1288 * XMSTATE_IMM_HDR - PDU Header xmit in progress
1289 * XMSTATE_IMM_DATA - PDU Data xmit in progress
1290 * XMSTATE_IDLE - management PDU is done
Alex Aizman7ba24712005-08-04 19:30:08 -07001291 **/
1292static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001293iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001294{
Mike Christie5bb0b552006-04-06 21:26:46 -05001295 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001296 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001297
1298 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001299 conn->id, tcp_mtask->xmstate, mtask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001300
Mike Christie218432c2007-05-30 12:57:17 -05001301 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR_INIT) {
1302 iscsi_buf_init_iov(&tcp_mtask->headbuf, (char*)mtask->hdr,
1303 sizeof(struct iscsi_hdr));
1304
1305 if (mtask->data_count) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001306 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie218432c2007-05-30 12:57:17 -05001307 iscsi_buf_init_iov(&tcp_mtask->sendbuf,
1308 (char*)mtask->data,
1309 mtask->data_count);
1310 }
1311
Mike Christieaf973482005-09-12 21:01:32 -05001312 if (conn->c_stage != ISCSI_CONN_INITIAL_STAGE &&
Mike Christie30a6c652006-04-06 21:13:39 -05001313 conn->stop_stage != STOP_CONN_RECOVER &&
Mike Christieaf973482005-09-12 21:01:32 -05001314 conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001315 iscsi_hdr_digest(conn, &tcp_mtask->headbuf,
1316 (u8*)tcp_mtask->hdrext);
Mike Christie218432c2007-05-30 12:57:17 -05001317
1318 tcp_mtask->sent = 0;
1319 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR_INIT;
1320 tcp_mtask->xmstate |= XMSTATE_IMM_HDR;
1321 }
1322
1323 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR) {
Mike Christie3219e522006-05-30 00:37:28 -05001324 rc = iscsi_sendhdr(conn, &tcp_mtask->headbuf,
1325 mtask->data_count);
Mike Christie218432c2007-05-30 12:57:17 -05001326 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001327 return rc;
Mike Christie218432c2007-05-30 12:57:17 -05001328 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001329 }
1330
Mike Christie5bb0b552006-04-06 21:26:46 -05001331 if (tcp_mtask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001332 BUG_ON(!mtask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001333 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001334 /* FIXME: implement.
1335 * Virtual buffer could be spreaded across multiple pages...
1336 */
1337 do {
Mike Christie3219e522006-05-30 00:37:28 -05001338 int rc;
1339
1340 rc = iscsi_sendpage(conn, &tcp_mtask->sendbuf,
1341 &mtask->data_count, &tcp_mtask->sent);
1342 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001343 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001344 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001345 }
1346 } while (mtask->data_count);
1347 }
1348
Mike Christie5bb0b552006-04-06 21:26:46 -05001349 BUG_ON(tcp_mtask->xmstate != XMSTATE_IDLE);
Al Virob4377352007-02-09 16:39:40 +00001350 if (mtask->hdr->itt == RESERVED_ITT) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001351 struct iscsi_session *session = conn->session;
1352
1353 spin_lock_bh(&session->lock);
1354 list_del(&conn->mtask->running);
1355 __kfifo_put(session->mgmtpool.queue, (void*)&conn->mtask,
1356 sizeof(void*));
1357 spin_unlock_bh(&session->lock);
1358 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001359 return 0;
1360}
1361
Mike Christie218432c2007-05-30 12:57:17 -05001362static int
1363iscsi_send_cmd_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001364{
Mike Christie218432c2007-05-30 12:57:17 -05001365 struct scsi_cmnd *sc = ctask->sc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001366 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie218432c2007-05-30 12:57:17 -05001367 int rc = 0;
Mike Christie5bb0b552006-04-06 21:26:46 -05001368
Mike Christie218432c2007-05-30 12:57:17 -05001369 if (tcp_ctask->xmstate & XMSTATE_CMD_HDR_INIT) {
1370 tcp_ctask->sent = 0;
1371 tcp_ctask->sg_count = 0;
1372 tcp_ctask->exp_datasn = 0;
Mike Christie3219e522006-05-30 00:37:28 -05001373
Mike Christie218432c2007-05-30 12:57:17 -05001374 if (sc->sc_data_direction == DMA_TO_DEVICE) {
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001375 struct scatterlist *sg = scsi_sglist(sc);
Alex Aizman7ba24712005-08-04 19:30:08 -07001376
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001377 iscsi_buf_init_sg(&tcp_ctask->sendbuf, sg);
1378 tcp_ctask->sg = sg + 1;
1379 tcp_ctask->bad_sg = sg + scsi_sg_count(sc);
Mike Christie218432c2007-05-30 12:57:17 -05001380
1381 debug_scsi("cmd [itt 0x%x total %d imm_data %d "
1382 "unsol count %d, unsol offset %d]\n",
FUJITA Tomonori1c138992007-06-14 22:13:17 +09001383 ctask->itt, scsi_bufflen(sc),
Mike Christie218432c2007-05-30 12:57:17 -05001384 ctask->imm_count, ctask->unsol_count,
1385 ctask->unsol_offset);
Alex Aizman7ba24712005-08-04 19:30:08 -07001386 }
Mike Christie218432c2007-05-30 12:57:17 -05001387
1388 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)ctask->hdr,
1389 sizeof(struct iscsi_hdr));
1390
1391 if (conn->hdrdgst_en)
1392 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1393 (u8*)tcp_ctask->hdrext);
1394 tcp_ctask->xmstate &= ~XMSTATE_CMD_HDR_INIT;
1395 tcp_ctask->xmstate |= XMSTATE_CMD_HDR_XMIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001396 }
1397
Mike Christie218432c2007-05-30 12:57:17 -05001398 if (tcp_ctask->xmstate & XMSTATE_CMD_HDR_XMIT) {
1399 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->imm_count);
1400 if (rc)
1401 return rc;
1402 tcp_ctask->xmstate &= ~XMSTATE_CMD_HDR_XMIT;
1403
1404 if (sc->sc_data_direction != DMA_TO_DEVICE)
1405 return 0;
1406
1407 if (ctask->imm_count) {
1408 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
1409 iscsi_set_padding(tcp_ctask, ctask->imm_count);
1410
1411 if (ctask->conn->datadgst_en) {
1412 iscsi_data_digest_init(ctask->conn->dd_data,
1413 tcp_ctask);
1414 tcp_ctask->immdigest = 0;
1415 }
1416 }
1417
1418 if (ctask->unsol_count)
1419 tcp_ctask->xmstate |=
1420 XMSTATE_UNS_HDR | XMSTATE_UNS_INIT;
1421 }
1422 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001423}
1424
Mike Christie62f38302006-08-31 18:09:27 -04001425static int
1426iscsi_send_padding(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1427{
1428 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1429 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1430 int sent = 0, rc;
1431
1432 if (tcp_ctask->xmstate & XMSTATE_W_PAD) {
1433 iscsi_buf_init_iov(&tcp_ctask->sendbuf, (char*)&tcp_ctask->pad,
1434 tcp_ctask->pad_count);
1435 if (conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -05001436 crypto_hash_update(&tcp_conn->tx_hash,
1437 &tcp_ctask->sendbuf.sg,
1438 tcp_ctask->sendbuf.sg.length);
Mike Christie62f38302006-08-31 18:09:27 -04001439 } else if (!(tcp_ctask->xmstate & XMSTATE_W_RESEND_PAD))
1440 return 0;
1441
1442 tcp_ctask->xmstate &= ~XMSTATE_W_PAD;
1443 tcp_ctask->xmstate &= ~XMSTATE_W_RESEND_PAD;
1444 debug_scsi("sending %d pad bytes for itt 0x%x\n",
1445 tcp_ctask->pad_count, ctask->itt);
1446 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf, &tcp_ctask->pad_count,
1447 &sent);
1448 if (rc) {
1449 debug_scsi("padding send failed %d\n", rc);
1450 tcp_ctask->xmstate |= XMSTATE_W_RESEND_PAD;
1451 }
1452 return rc;
1453}
1454
1455static int
1456iscsi_send_digest(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1457 struct iscsi_buf *buf, uint32_t *digest)
1458{
1459 struct iscsi_tcp_cmd_task *tcp_ctask;
1460 struct iscsi_tcp_conn *tcp_conn;
1461 int rc, sent = 0;
1462
1463 if (!conn->datadgst_en)
1464 return 0;
1465
1466 tcp_ctask = ctask->dd_data;
1467 tcp_conn = conn->dd_data;
1468
1469 if (!(tcp_ctask->xmstate & XMSTATE_W_RESEND_DATA_DIGEST)) {
James Bottomleyc9802cd2006-09-23 15:33:43 -05001470 crypto_hash_final(&tcp_conn->tx_hash, (u8*)digest);
Mike Christie62f38302006-08-31 18:09:27 -04001471 iscsi_buf_init_iov(buf, (char*)digest, 4);
1472 }
1473 tcp_ctask->xmstate &= ~XMSTATE_W_RESEND_DATA_DIGEST;
1474
1475 rc = iscsi_sendpage(conn, buf, &tcp_ctask->digest_count, &sent);
1476 if (!rc)
1477 debug_scsi("sent digest 0x%x for itt 0x%x\n", *digest,
1478 ctask->itt);
1479 else {
1480 debug_scsi("sending digest 0x%x failed for itt 0x%x!\n",
1481 *digest, ctask->itt);
1482 tcp_ctask->xmstate |= XMSTATE_W_RESEND_DATA_DIGEST;
1483 }
1484 return rc;
1485}
1486
1487static int
1488iscsi_send_data(struct iscsi_cmd_task *ctask, struct iscsi_buf *sendbuf,
1489 struct scatterlist **sg, int *sent, int *count,
1490 struct iscsi_buf *digestbuf, uint32_t *digest)
1491{
1492 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1493 struct iscsi_conn *conn = ctask->conn;
1494 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1495 int rc, buf_sent, offset;
1496
1497 while (*count) {
1498 buf_sent = 0;
1499 offset = sendbuf->sent;
1500
1501 rc = iscsi_sendpage(conn, sendbuf, count, &buf_sent);
1502 *sent = *sent + buf_sent;
1503 if (buf_sent && conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -05001504 partial_sg_digest_update(&tcp_conn->tx_hash,
Mike Christie62f38302006-08-31 18:09:27 -04001505 &sendbuf->sg, sendbuf->sg.offset + offset,
1506 buf_sent);
1507 if (!iscsi_buf_left(sendbuf) && *sg != tcp_ctask->bad_sg) {
1508 iscsi_buf_init_sg(sendbuf, *sg);
1509 *sg = *sg + 1;
1510 }
1511
1512 if (rc)
1513 return rc;
1514 }
1515
1516 rc = iscsi_send_padding(conn, ctask);
1517 if (rc)
1518 return rc;
1519
1520 return iscsi_send_digest(conn, ctask, digestbuf, digest);
1521}
1522
1523static int
1524iscsi_send_unsol_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001525{
Mike Christie5bb0b552006-04-06 21:26:46 -05001526 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001527 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001528 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001529
Mike Christie5bb0b552006-04-06 21:26:46 -05001530 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
1531 if (tcp_ctask->xmstate & XMSTATE_UNS_INIT) {
Mike Christie62f38302006-08-31 18:09:27 -04001532 dtask = &tcp_ctask->unsol_dtask;
1533
Mike Christieffd04362006-08-31 18:09:24 -04001534 iscsi_prep_unsolicit_data_pdu(ctask, &dtask->hdr);
1535 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)&dtask->hdr,
1536 sizeof(struct iscsi_hdr));
Mike Christieaf973482005-09-12 21:01:32 -05001537 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001538 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001539 (u8*)dtask->hdrext);
Mike Christie62f38302006-08-31 18:09:27 -04001540
Mike Christie5bb0b552006-04-06 21:26:46 -05001541 tcp_ctask->xmstate &= ~XMSTATE_UNS_INIT;
Mike Christie62f38302006-08-31 18:09:27 -04001542 iscsi_set_padding(tcp_ctask, ctask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001543 }
Mike Christie3219e522006-05-30 00:37:28 -05001544
1545 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->data_count);
1546 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001547 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1548 tcp_ctask->xmstate |= XMSTATE_UNS_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001549 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001550 }
1551
Mike Christiedd8c0d92006-08-31 18:09:28 -04001552 if (conn->datadgst_en) {
1553 dtask = &tcp_ctask->unsol_dtask;
1554 iscsi_data_digest_init(ctask->conn->dd_data, tcp_ctask);
1555 dtask->digest = 0;
1556 }
1557
Alex Aizman7ba24712005-08-04 19:30:08 -07001558 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001559 ctask->itt, ctask->unsol_count, tcp_ctask->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001560 return 0;
1561}
1562
Mike Christie62f38302006-08-31 18:09:27 -04001563static int
1564iscsi_send_unsol_pdu(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001565{
Mike Christie5bb0b552006-04-06 21:26:46 -05001566 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001567 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001568
Mike Christie62f38302006-08-31 18:09:27 -04001569 if (tcp_ctask->xmstate & XMSTATE_UNS_HDR) {
1570 BUG_ON(!ctask->unsol_count);
1571 tcp_ctask->xmstate &= ~XMSTATE_UNS_HDR;
1572send_hdr:
1573 rc = iscsi_send_unsol_hdr(conn, ctask);
1574 if (rc)
1575 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001576 }
1577
Mike Christie62f38302006-08-31 18:09:27 -04001578 if (tcp_ctask->xmstate & XMSTATE_UNS_DATA) {
1579 struct iscsi_data_task *dtask = &tcp_ctask->unsol_dtask;
Mike Christie5bb0b552006-04-06 21:26:46 -05001580 int start = tcp_ctask->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001581
Mike Christie62f38302006-08-31 18:09:27 -04001582 rc = iscsi_send_data(ctask, &tcp_ctask->sendbuf, &tcp_ctask->sg,
1583 &tcp_ctask->sent, &ctask->data_count,
1584 &dtask->digestbuf, &dtask->digest);
Mike Christie5bb0b552006-04-06 21:26:46 -05001585 ctask->unsol_count -= tcp_ctask->sent - start;
Mike Christie62f38302006-08-31 18:09:27 -04001586 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001587 return rc;
Mike Christie62f38302006-08-31 18:09:27 -04001588 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1589 /*
1590 * Done with the Data-Out. Next, check if we need
1591 * to send another unsolicited Data-Out.
1592 */
1593 if (ctask->unsol_count) {
1594 debug_scsi("sending more uns\n");
1595 tcp_ctask->xmstate |= XMSTATE_UNS_INIT;
1596 goto send_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001597 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001598 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001599 return 0;
1600}
1601
Mike Christie62f38302006-08-31 18:09:27 -04001602static int iscsi_send_sol_pdu(struct iscsi_conn *conn,
1603 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001604{
Mike Christie5bb0b552006-04-06 21:26:46 -05001605 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie62f38302006-08-31 18:09:27 -04001606 struct iscsi_session *session = conn->session;
1607 struct iscsi_r2t_info *r2t;
1608 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001609 int left, rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001610
Mike Christie218432c2007-05-30 12:57:17 -05001611 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR_INIT) {
Mike Christiedb37c502006-11-08 15:58:33 -06001612 if (!tcp_ctask->r2t) {
1613 spin_lock_bh(&session->lock);
Mike Christie62f38302006-08-31 18:09:27 -04001614 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
1615 sizeof(void*));
Mike Christiedb37c502006-11-08 15:58:33 -06001616 spin_unlock_bh(&session->lock);
1617 }
Mike Christie62f38302006-08-31 18:09:27 -04001618send_hdr:
1619 r2t = tcp_ctask->r2t;
1620 dtask = &r2t->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001621
Mike Christie62f38302006-08-31 18:09:27 -04001622 if (conn->hdrdgst_en)
1623 iscsi_hdr_digest(conn, &r2t->headbuf,
1624 (u8*)dtask->hdrext);
Mike Christie218432c2007-05-30 12:57:17 -05001625 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR_INIT;
1626 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
1627 }
1628
1629 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR) {
1630 r2t = tcp_ctask->r2t;
1631 dtask = &r2t->dtask;
1632
Mike Christie62f38302006-08-31 18:09:27 -04001633 rc = iscsi_sendhdr(conn, &r2t->headbuf, r2t->data_count);
Mike Christie218432c2007-05-30 12:57:17 -05001634 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001635 return rc;
Mike Christie218432c2007-05-30 12:57:17 -05001636 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1637 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001638
Mike Christiedd8c0d92006-08-31 18:09:28 -04001639 if (conn->datadgst_en) {
1640 iscsi_data_digest_init(conn->dd_data, tcp_ctask);
1641 dtask->digest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001642 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001643
Mike Christie62f38302006-08-31 18:09:27 -04001644 iscsi_set_padding(tcp_ctask, r2t->data_count);
1645 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1646 r2t->solicit_datasn - 1, ctask->itt, r2t->data_count,
1647 r2t->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001648 }
1649
Mike Christie62f38302006-08-31 18:09:27 -04001650 if (tcp_ctask->xmstate & XMSTATE_SOL_DATA) {
1651 r2t = tcp_ctask->r2t;
1652 dtask = &r2t->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001653
Mike Christie62f38302006-08-31 18:09:27 -04001654 rc = iscsi_send_data(ctask, &r2t->sendbuf, &r2t->sg,
1655 &r2t->sent, &r2t->data_count,
1656 &dtask->digestbuf, &dtask->digest);
1657 if (rc)
1658 return rc;
1659 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001660
Mike Christie62f38302006-08-31 18:09:27 -04001661 /*
1662 * Done with this Data-Out. Next, check if we have
1663 * to send another Data-Out for this R2T.
1664 */
1665 BUG_ON(r2t->data_length - r2t->sent < 0);
1666 left = r2t->data_length - r2t->sent;
1667 if (left) {
1668 iscsi_solicit_data_cont(conn, ctask, r2t, left);
Mike Christie62f38302006-08-31 18:09:27 -04001669 goto send_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001670 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001671
Mike Christie62f38302006-08-31 18:09:27 -04001672 /*
1673 * Done with this R2T. Check if there are more
1674 * outstanding R2Ts ready to be processed.
1675 */
1676 spin_lock_bh(&session->lock);
1677 tcp_ctask->r2t = NULL;
1678 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
1679 sizeof(void*));
1680 if (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t,
1681 sizeof(void*))) {
1682 tcp_ctask->r2t = r2t;
Mike Christie62f38302006-08-31 18:09:27 -04001683 spin_unlock_bh(&session->lock);
1684 goto send_hdr;
1685 }
1686 spin_unlock_bh(&session->lock);
1687 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001688 return 0;
1689}
1690
Mike Christie218432c2007-05-30 12:57:17 -05001691/**
1692 * iscsi_tcp_ctask_xmit - xmit normal PDU task
1693 * @conn: iscsi connection
1694 * @ctask: iscsi command task
1695 *
1696 * Notes:
1697 * The function can return -EAGAIN in which case caller must
1698 * call it again later, or recover. '0' return code means successful
1699 * xmit.
1700 * The function is devided to logical helpers (above) for the different
1701 * xmit stages.
1702 *
1703 *iscsi_send_cmd_hdr()
1704 * XMSTATE_CMD_HDR_INIT - prepare Header and Data buffers Calculate
1705 * Header Digest
1706 * XMSTATE_CMD_HDR_XMIT - Transmit header in progress
1707 *
1708 *iscsi_send_padding
1709 * XMSTATE_W_PAD - Prepare and send pading
1710 * XMSTATE_W_RESEND_PAD - retry send pading
1711 *
1712 *iscsi_send_digest
1713 * XMSTATE_W_RESEND_DATA_DIGEST - Finalize and send Data Digest
1714 * XMSTATE_W_RESEND_DATA_DIGEST - retry sending digest
1715 *
1716 *iscsi_send_unsol_hdr
1717 * XMSTATE_UNS_INIT - prepare un-solicit data header and digest
1718 * XMSTATE_UNS_HDR - send un-solicit header
1719 *
1720 *iscsi_send_unsol_pdu
1721 * XMSTATE_UNS_DATA - send un-solicit data in progress
1722 *
1723 *iscsi_send_sol_pdu
1724 * XMSTATE_SOL_HDR_INIT - solicit data header and digest initialize
1725 * XMSTATE_SOL_HDR - send solicit header
1726 * XMSTATE_SOL_DATA - send solicit data
1727 *
1728 *iscsi_tcp_ctask_xmit
1729 * XMSTATE_IMM_DATA - xmit managment data (??)
1730 **/
Alex Aizman7ba24712005-08-04 19:30:08 -07001731static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001732iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001733{
Mike Christie5bb0b552006-04-06 21:26:46 -05001734 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001735 int rc = 0;
1736
1737 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001738 conn->id, tcp_ctask->xmstate, ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001739
Mike Christie218432c2007-05-30 12:57:17 -05001740 rc = iscsi_send_cmd_hdr(conn, ctask);
1741 if (rc)
1742 return rc;
1743 if (ctask->sc->sc_data_direction != DMA_TO_DEVICE)
1744 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001745
Mike Christie5bb0b552006-04-06 21:26:46 -05001746 if (tcp_ctask->xmstate & XMSTATE_IMM_DATA) {
Mike Christie62f38302006-08-31 18:09:27 -04001747 rc = iscsi_send_data(ctask, &tcp_ctask->sendbuf, &tcp_ctask->sg,
1748 &tcp_ctask->sent, &ctask->imm_count,
1749 &tcp_ctask->immbuf, &tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001750 if (rc)
1751 return rc;
Mike Christie62f38302006-08-31 18:09:27 -04001752 tcp_ctask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001753 }
1754
Mike Christie62f38302006-08-31 18:09:27 -04001755 rc = iscsi_send_unsol_pdu(conn, ctask);
1756 if (rc)
1757 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001758
Mike Christie62f38302006-08-31 18:09:27 -04001759 rc = iscsi_send_sol_pdu(conn, ctask);
1760 if (rc)
1761 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001762
1763 return rc;
1764}
1765
Mike Christie7b8631b2006-01-13 18:05:50 -06001766static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001767iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001768{
Mike Christie7b8631b2006-01-13 18:05:50 -06001769 struct iscsi_conn *conn;
1770 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001771 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001772
Mike Christie5bb0b552006-04-06 21:26:46 -05001773 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001774 if (!cls_conn)
1775 return NULL;
1776 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001777 /*
1778 * due to strange issues with iser these are not set
1779 * in iscsi_conn_setup
1780 */
Mike Christiebf32ed32007-02-28 17:32:17 -06001781 conn->max_recv_dlength = ISCSI_DEF_MAX_RECV_SEG_LEN;
Alex Aizman7ba24712005-08-04 19:30:08 -07001782
Mike Christie5bb0b552006-04-06 21:26:46 -05001783 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1784 if (!tcp_conn)
1785 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001786
Mike Christie5bb0b552006-04-06 21:26:46 -05001787 conn->dd_data = tcp_conn;
1788 tcp_conn->iscsi_conn = conn;
1789 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
1790 /* initial operational parameters */
1791 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -07001792
James Bottomleyc9802cd2006-09-23 15:33:43 -05001793 tcp_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1794 CRYPTO_ALG_ASYNC);
1795 tcp_conn->tx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001796 if (IS_ERR(tcp_conn->tx_hash.tfm)) {
1797 printk(KERN_ERR "Could not create connection due to crc32c "
1798 "loading error %ld. Make sure the crc32c module is "
1799 "built as a module or into the kernel\n",
1800 PTR_ERR(tcp_conn->tx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001801 goto free_tcp_conn;
Mike Christie0f238412007-02-28 17:32:21 -06001802 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001803
James Bottomleyc9802cd2006-09-23 15:33:43 -05001804 tcp_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1805 CRYPTO_ALG_ASYNC);
1806 tcp_conn->rx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001807 if (IS_ERR(tcp_conn->rx_hash.tfm)) {
1808 printk(KERN_ERR "Could not create connection due to crc32c "
1809 "loading error %ld. Make sure the crc32c module is "
1810 "built as a module or into the kernel\n",
1811 PTR_ERR(tcp_conn->rx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001812 goto free_tx_tfm;
Mike Christie0f238412007-02-28 17:32:21 -06001813 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001814
Mike Christie7b8631b2006-01-13 18:05:50 -06001815 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001816
Mike Christiedd8c0d92006-08-31 18:09:28 -04001817free_tx_tfm:
James Bottomleyc9802cd2006-09-23 15:33:43 -05001818 crypto_free_hash(tcp_conn->tx_hash.tfm);
Mike Christiedd8c0d92006-08-31 18:09:28 -04001819free_tcp_conn:
1820 kfree(tcp_conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001821tcp_conn_alloc_fail:
1822 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001823 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001824}
1825
1826static void
Mike Christie1c834692006-07-24 15:47:26 -05001827iscsi_tcp_release_conn(struct iscsi_conn *conn)
1828{
Mike Christie22236962007-05-30 12:57:24 -05001829 struct iscsi_session *session = conn->session;
Mike Christie1c834692006-07-24 15:47:26 -05001830 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie22236962007-05-30 12:57:24 -05001831 struct socket *sock = tcp_conn->sock;
Mike Christie1c834692006-07-24 15:47:26 -05001832
Mike Christie22236962007-05-30 12:57:24 -05001833 if (!sock)
Mike Christie1c834692006-07-24 15:47:26 -05001834 return;
1835
Mike Christie22236962007-05-30 12:57:24 -05001836 sock_hold(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001837 iscsi_conn_restore_callbacks(tcp_conn);
Mike Christie22236962007-05-30 12:57:24 -05001838 sock_put(sock->sk);
Mike Christie1c834692006-07-24 15:47:26 -05001839
Mike Christie22236962007-05-30 12:57:24 -05001840 spin_lock_bh(&session->lock);
Mike Christie1c834692006-07-24 15:47:26 -05001841 tcp_conn->sock = NULL;
1842 conn->recv_lock = NULL;
Mike Christie22236962007-05-30 12:57:24 -05001843 spin_unlock_bh(&session->lock);
1844 sockfd_put(sock);
Mike Christie1c834692006-07-24 15:47:26 -05001845}
1846
1847static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001848iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001849{
Mike Christie7b8631b2006-01-13 18:05:50 -06001850 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001851 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001852
Mike Christie1c834692006-07-24 15:47:26 -05001853 iscsi_tcp_release_conn(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001854 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001855
Pete Wyckoff534284a2006-11-08 15:58:31 -06001856 if (tcp_conn->tx_hash.tfm)
1857 crypto_free_hash(tcp_conn->tx_hash.tfm);
1858 if (tcp_conn->rx_hash.tfm)
1859 crypto_free_hash(tcp_conn->rx_hash.tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001860
Mike Christie5bb0b552006-04-06 21:26:46 -05001861 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001862}
1863
Mike Christie1c834692006-07-24 15:47:26 -05001864static void
1865iscsi_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
1866{
1867 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christied5390f52006-08-31 18:09:30 -04001868 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie1c834692006-07-24 15:47:26 -05001869
1870 iscsi_conn_stop(cls_conn, flag);
1871 iscsi_tcp_release_conn(conn);
Mike Christied5390f52006-08-31 18:09:30 -04001872 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Mike Christie1c834692006-07-24 15:47:26 -05001873}
1874
Mike Christie22236962007-05-30 12:57:24 -05001875static int iscsi_tcp_get_addr(struct iscsi_conn *conn, struct socket *sock,
1876 char *buf, int *port,
1877 int (*getname)(struct socket *, struct sockaddr *,
1878 int *addrlen))
1879{
1880 struct sockaddr_storage *addr;
1881 struct sockaddr_in6 *sin6;
1882 struct sockaddr_in *sin;
1883 int rc = 0, len;
1884
Al Viroa9204872007-07-20 16:03:40 +01001885 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
Mike Christie22236962007-05-30 12:57:24 -05001886 if (!addr)
1887 return -ENOMEM;
1888
1889 if (getname(sock, (struct sockaddr *) addr, &len)) {
1890 rc = -ENODEV;
1891 goto free_addr;
1892 }
1893
1894 switch (addr->ss_family) {
1895 case AF_INET:
1896 sin = (struct sockaddr_in *)addr;
1897 spin_lock_bh(&conn->session->lock);
1898 sprintf(buf, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
1899 *port = be16_to_cpu(sin->sin_port);
1900 spin_unlock_bh(&conn->session->lock);
1901 break;
1902 case AF_INET6:
1903 sin6 = (struct sockaddr_in6 *)addr;
1904 spin_lock_bh(&conn->session->lock);
1905 sprintf(buf, NIP6_FMT, NIP6(sin6->sin6_addr));
1906 *port = be16_to_cpu(sin6->sin6_port);
1907 spin_unlock_bh(&conn->session->lock);
1908 break;
1909 }
1910free_addr:
1911 kfree(addr);
1912 return rc;
1913}
1914
Alex Aizman7ba24712005-08-04 19:30:08 -07001915static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001916iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001917 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001918 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001919{
Mike Christie5bb0b552006-04-06 21:26:46 -05001920 struct iscsi_conn *conn = cls_conn->dd_data;
1921 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001922 struct sock *sk;
1923 struct socket *sock;
1924 int err;
1925
1926 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001927 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001928 if (!sock) {
1929 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
1930 return -EEXIST;
1931 }
Mike Christie22236962007-05-30 12:57:24 -05001932 /*
1933 * copy these values now because if we drop the session
1934 * userspace may still want to query the values since we will
1935 * be using them for the reconnect
1936 */
1937 err = iscsi_tcp_get_addr(conn, sock, conn->portal_address,
1938 &conn->portal_port, kernel_getpeername);
1939 if (err)
1940 goto free_socket;
1941
1942 err = iscsi_tcp_get_addr(conn, sock, conn->local_address,
1943 &conn->local_port, kernel_getsockname);
1944 if (err)
1945 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001946
Mike Christie5bb0b552006-04-06 21:26:46 -05001947 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1948 if (err)
Mike Christie22236962007-05-30 12:57:24 -05001949 goto free_socket;
Alex Aizman7ba24712005-08-04 19:30:08 -07001950
Mike Christie67a61112006-05-30 00:37:20 -05001951 /* bind iSCSI connection and socket */
1952 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07001953
Mike Christie67a61112006-05-30 00:37:20 -05001954 /* setup Socket parameters */
1955 sk = sock->sk;
1956 sk->sk_reuse = 1;
1957 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
1958 sk->sk_allocation = GFP_ATOMIC;
Alex Aizman7ba24712005-08-04 19:30:08 -07001959
Mike Christie67a61112006-05-30 00:37:20 -05001960 /* FIXME: disable Nagle's algorithm */
Alex Aizman7ba24712005-08-04 19:30:08 -07001961
Mike Christie67a61112006-05-30 00:37:20 -05001962 /*
1963 * Intercept TCP callbacks for sendfile like receive
1964 * processing.
1965 */
1966 conn->recv_lock = &sk->sk_callback_lock;
1967 iscsi_conn_set_callbacks(conn);
1968 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
1969 /*
1970 * set receive state machine into initial state
1971 */
1972 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -07001973 return 0;
Mike Christie22236962007-05-30 12:57:24 -05001974
1975free_socket:
1976 sockfd_put(sock);
1977 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001978}
1979
Mike Christie5bb0b552006-04-06 21:26:46 -05001980/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05001981static void
Mike Christie77a23c22007-05-30 12:57:18 -05001982iscsi_tcp_mgmt_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Mike Christie30a6c652006-04-06 21:13:39 -05001983{
Mike Christie5bb0b552006-04-06 21:26:46 -05001984 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie218432c2007-05-30 12:57:17 -05001985 tcp_mtask->xmstate = XMSTATE_IMM_HDR_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001986}
1987
1988static int
1989iscsi_r2tpool_alloc(struct iscsi_session *session)
1990{
1991 int i;
1992 int cmd_i;
1993
1994 /*
1995 * initialize per-task: R2T pool and xmit queue
1996 */
1997 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1998 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05001999 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002000
2001 /*
2002 * pre-allocated x4 as much r2ts to handle race when
2003 * target acks DataOut faster than we data_xmit() queues
2004 * could replenish r2tqueue.
2005 */
2006
2007 /* R2T pool */
Mike Christie5bb0b552006-04-06 21:26:46 -05002008 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4,
2009 (void***)&tcp_ctask->r2ts,
2010 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002011 goto r2t_alloc_fail;
2012 }
2013
2014 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05002015 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07002016 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05002017 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
2018 iscsi_pool_free(&tcp_ctask->r2tpool,
2019 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002020 goto r2t_alloc_fail;
2021 }
Alex Aizman7ba24712005-08-04 19:30:08 -07002022 }
2023
2024 return 0;
2025
2026r2t_alloc_fail:
2027 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002028 struct iscsi_cmd_task *ctask = session->cmds[i];
2029 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2030
Mike Christie5bb0b552006-04-06 21:26:46 -05002031 kfifo_free(tcp_ctask->r2tqueue);
2032 iscsi_pool_free(&tcp_ctask->r2tpool,
2033 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002034 }
2035 return -ENOMEM;
2036}
2037
2038static void
2039iscsi_r2tpool_free(struct iscsi_session *session)
2040{
2041 int i;
2042
2043 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05002044 struct iscsi_cmd_task *ctask = session->cmds[i];
2045 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2046
Mike Christie5bb0b552006-04-06 21:26:46 -05002047 kfifo_free(tcp_ctask->r2tqueue);
2048 iscsi_pool_free(&tcp_ctask->r2tpool,
2049 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07002050 }
2051}
2052
Alex Aizman7ba24712005-08-04 19:30:08 -07002053static int
Mike Christie7b7232f2006-02-01 21:06:49 -06002054iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002055 char *buf, int buflen)
Alex Aizman7ba24712005-08-04 19:30:08 -07002056{
Mike Christie7b7232f2006-02-01 21:06:49 -06002057 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002058 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05002059 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002060 int value;
Alex Aizman7ba24712005-08-04 19:30:08 -07002061
Alex Aizman7ba24712005-08-04 19:30:08 -07002062 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002063 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002064 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05002065 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Mike Christiedd8c0d92006-08-31 18:09:28 -04002066 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05002067 tcp_conn->hdr_size += sizeof(__u32);
Alex Aizman7ba24712005-08-04 19:30:08 -07002068 break;
2069 case ISCSI_PARAM_DATADGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002070 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05002071 tcp_conn->sendpage = conn->datadgst_en ?
2072 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002073 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002074 case ISCSI_PARAM_MAX_R2T:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002075 sscanf(buf, "%d", &value);
Alex Aizman7ba24712005-08-04 19:30:08 -07002076 if (session->max_r2t == roundup_pow_of_two(value))
2077 break;
2078 iscsi_r2tpool_free(session);
Mike Christie5c75b7f2006-06-28 12:00:26 -05002079 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002080 if (session->max_r2t & (session->max_r2t - 1))
2081 session->max_r2t = roundup_pow_of_two(session->max_r2t);
2082 if (iscsi_r2tpool_alloc(session))
2083 return -ENOMEM;
2084 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002085 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002086 return iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002087 }
2088
2089 return 0;
2090}
2091
2092static int
Mike Christie5c75b7f2006-06-28 12:00:26 -05002093iscsi_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
2094 enum iscsi_param param, char *buf)
Mike Christie7b8631b2006-01-13 18:05:50 -06002095{
Mike Christie7b7232f2006-02-01 21:06:49 -06002096 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002097 int len;
Mike Christie7b8631b2006-01-13 18:05:50 -06002098
2099 switch(param) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002100 case ISCSI_PARAM_CONN_PORT:
Mike Christie22236962007-05-30 12:57:24 -05002101 spin_lock_bh(&conn->session->lock);
2102 len = sprintf(buf, "%hu\n", conn->portal_port);
2103 spin_unlock_bh(&conn->session->lock);
Mike Christie8d2860b2006-05-02 19:46:47 -05002104 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05002105 case ISCSI_PARAM_CONN_ADDRESS:
Mike Christie22236962007-05-30 12:57:24 -05002106 spin_lock_bh(&conn->session->lock);
2107 len = sprintf(buf, "%s\n", conn->portal_address);
2108 spin_unlock_bh(&conn->session->lock);
Mike Christiefd7255f2006-04-06 21:13:36 -05002109 break;
2110 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002111 return iscsi_conn_get_param(cls_conn, param, buf);
Mike Christiefd7255f2006-04-06 21:13:36 -05002112 }
2113
2114 return len;
2115}
2116
Mike Christie22236962007-05-30 12:57:24 -05002117static int
2118iscsi_tcp_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
2119 char *buf)
2120{
2121 struct iscsi_session *session = iscsi_hostdata(shost->hostdata);
2122 int len;
2123
2124 switch (param) {
2125 case ISCSI_HOST_PARAM_IPADDRESS:
2126 spin_lock_bh(&session->lock);
2127 if (!session->leadconn)
2128 len = -ENODEV;
2129 else
2130 len = sprintf(buf, "%s\n",
2131 session->leadconn->local_address);
2132 spin_unlock_bh(&session->lock);
2133 break;
2134 default:
2135 return iscsi_host_get_param(shost, param, buf);
2136 }
2137 return len;
2138}
2139
Alex Aizman7ba24712005-08-04 19:30:08 -07002140static void
Mike Christie7b7232f2006-02-01 21:06:49 -06002141iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07002142{
Mike Christie7b7232f2006-02-01 21:06:49 -06002143 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002144 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002145
2146 stats->txdata_octets = conn->txdata_octets;
2147 stats->rxdata_octets = conn->rxdata_octets;
2148 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
2149 stats->dataout_pdus = conn->dataout_pdus_cnt;
2150 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
2151 stats->datain_pdus = conn->datain_pdus_cnt;
2152 stats->r2t_pdus = conn->r2t_pdus_cnt;
2153 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
2154 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
2155 stats->custom_length = 3;
2156 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05002157 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002158 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05002159 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002160 strcpy(stats->custom[2].desc, "eh_abort_cnt");
2161 stats->custom[2].value = conn->eh_abort_cnt;
2162}
2163
Mike Christie5bb0b552006-04-06 21:26:46 -05002164static struct iscsi_cls_session *
2165iscsi_tcp_session_create(struct iscsi_transport *iscsit,
2166 struct scsi_transport_template *scsit,
Mike Christie15482712007-05-30 12:57:19 -05002167 uint16_t cmds_max, uint16_t qdepth,
Mike Christie5bb0b552006-04-06 21:26:46 -05002168 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07002169{
Mike Christie5bb0b552006-04-06 21:26:46 -05002170 struct iscsi_cls_session *cls_session;
2171 struct iscsi_session *session;
2172 uint32_t hn;
2173 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07002174
Mike Christie15482712007-05-30 12:57:19 -05002175 cls_session = iscsi_session_setup(iscsit, scsit, cmds_max, qdepth,
Mike Christie5bb0b552006-04-06 21:26:46 -05002176 sizeof(struct iscsi_tcp_cmd_task),
2177 sizeof(struct iscsi_tcp_mgmt_task),
2178 initial_cmdsn, &hn);
2179 if (!cls_session)
2180 return NULL;
2181 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07002182
Mike Christie5bb0b552006-04-06 21:26:46 -05002183 session = class_to_transport_session(cls_session);
2184 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2185 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2186 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2187
2188 ctask->hdr = &tcp_ctask->hdr;
2189 }
2190
2191 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
2192 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
2193 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
2194
2195 mtask->hdr = &tcp_mtask->hdr;
2196 }
2197
2198 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
2199 goto r2tpool_alloc_fail;
2200
2201 return cls_session;
2202
2203r2tpool_alloc_fail:
2204 iscsi_session_teardown(cls_session);
2205 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002206}
2207
Mike Christie5bb0b552006-04-06 21:26:46 -05002208static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2209{
Mike Christie5bb0b552006-04-06 21:26:46 -05002210 iscsi_r2tpool_free(class_to_transport_session(cls_session));
2211 iscsi_session_teardown(cls_session);
2212}
2213
Mike Christied1d81c02007-05-30 12:57:21 -05002214static int iscsi_tcp_slave_configure(struct scsi_device *sdev)
2215{
Mike Christieb6d44fe2007-07-26 12:46:47 -05002216 blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_ANY);
Mike Christied1d81c02007-05-30 12:57:21 -05002217 blk_queue_dma_alignment(sdev->request_queue, 0);
2218 return 0;
2219}
2220
Mike Christie5bb0b552006-04-06 21:26:46 -05002221static struct scsi_host_template iscsi_sht = {
Mike Christie79743922007-07-26 12:46:46 -05002222 .module = THIS_MODULE,
Mike Christief4246b32006-07-24 15:47:54 -05002223 .name = "iSCSI Initiator over TCP/IP",
Mike Christie5bb0b552006-04-06 21:26:46 -05002224 .queuecommand = iscsi_queuecommand,
2225 .change_queue_depth = iscsi_change_queue_depth,
Mike Christie15482712007-05-30 12:57:19 -05002226 .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1,
Mike Christie5bb0b552006-04-06 21:26:46 -05002227 .sg_tablesize = ISCSI_SG_TABLESIZE,
Mike Christie8231f0e2007-02-28 17:32:20 -06002228 .max_sectors = 0xFFFF,
Mike Christie5bb0b552006-04-06 21:26:46 -05002229 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
2230 .eh_abort_handler = iscsi_eh_abort,
2231 .eh_host_reset_handler = iscsi_eh_host_reset,
2232 .use_clustering = DISABLE_CLUSTERING,
Mike Christied1d81c02007-05-30 12:57:21 -05002233 .slave_configure = iscsi_tcp_slave_configure,
Mike Christie5bb0b552006-04-06 21:26:46 -05002234 .proc_name = "iscsi_tcp",
2235 .this_id = -1,
2236};
2237
Alex Aizman7ba24712005-08-04 19:30:08 -07002238static struct iscsi_transport iscsi_tcp_transport = {
2239 .owner = THIS_MODULE,
2240 .name = "tcp",
2241 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
2242 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05002243 .param_mask = ISCSI_MAX_RECV_DLENGTH |
2244 ISCSI_MAX_XMIT_DLENGTH |
2245 ISCSI_HDRDGST_EN |
2246 ISCSI_DATADGST_EN |
2247 ISCSI_INITIAL_R2T_EN |
2248 ISCSI_MAX_R2T |
2249 ISCSI_IMM_DATA_EN |
2250 ISCSI_FIRST_BURST |
2251 ISCSI_MAX_BURST |
2252 ISCSI_PDU_INORDER_EN |
2253 ISCSI_DATASEQ_INORDER_EN |
2254 ISCSI_ERL |
2255 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05002256 ISCSI_CONN_ADDRESS |
Mike Christie5c75b7f2006-06-28 12:00:26 -05002257 ISCSI_EXP_STATSN |
2258 ISCSI_PERSISTENT_PORT |
2259 ISCSI_PERSISTENT_ADDRESS |
Mike Christieb2c64162007-05-30 12:57:16 -05002260 ISCSI_TARGET_NAME | ISCSI_TPGT |
2261 ISCSI_USERNAME | ISCSI_PASSWORD |
2262 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN,
Mike Christie22236962007-05-30 12:57:24 -05002263 .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS |
Mike Christied8196ed2007-05-30 12:57:25 -05002264 ISCSI_HOST_INITIATOR_NAME |
2265 ISCSI_HOST_NETDEV_NAME,
Alex Aizman7ba24712005-08-04 19:30:08 -07002266 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06002267 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07002268 .max_conn = 1,
2269 .max_cmd_len = ISCSI_TCP_MAX_CMD_LEN,
Mike Christie5bb0b552006-04-06 21:26:46 -05002270 /* session management */
2271 .create_session = iscsi_tcp_session_create,
2272 .destroy_session = iscsi_tcp_session_destroy,
2273 /* connection management */
2274 .create_conn = iscsi_tcp_conn_create,
2275 .bind_conn = iscsi_tcp_conn_bind,
2276 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07002277 .set_param = iscsi_conn_set_param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002278 .get_conn_param = iscsi_tcp_conn_get_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002279 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002280 .start_conn = iscsi_conn_start,
Mike Christie1c834692006-07-24 15:47:26 -05002281 .stop_conn = iscsi_tcp_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -05002282 /* iscsi host params */
Mike Christie22236962007-05-30 12:57:24 -05002283 .get_host_param = iscsi_tcp_host_get_param,
Mike Christie0801c242007-05-30 12:57:12 -05002284 .set_host_param = iscsi_host_set_param,
Mike Christie5bb0b552006-04-06 21:26:46 -05002285 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002286 .send_pdu = iscsi_conn_send_pdu,
2287 .get_stats = iscsi_conn_get_stats,
Mike Christie5bb0b552006-04-06 21:26:46 -05002288 .init_cmd_task = iscsi_tcp_cmd_init,
2289 .init_mgmt_task = iscsi_tcp_mgmt_init,
2290 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2291 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2292 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2293 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002294 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002295};
2296
2297static int __init
2298iscsi_tcp_init(void)
2299{
Alex Aizman7ba24712005-08-04 19:30:08 -07002300 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002301 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2302 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002303 return -EINVAL;
2304 }
2305 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2306
Mike Christie7b8631b2006-01-13 18:05:50 -06002307 if (!iscsi_register_transport(&iscsi_tcp_transport))
Mike Christieffbfe922006-05-18 20:31:36 -05002308 return -ENODEV;
Alex Aizman7ba24712005-08-04 19:30:08 -07002309
Mike Christie7b8631b2006-01-13 18:05:50 -06002310 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002311}
2312
2313static void __exit
2314iscsi_tcp_exit(void)
2315{
2316 iscsi_unregister_transport(&iscsi_tcp_transport);
Alex Aizman7ba24712005-08-04 19:30:08 -07002317}
2318
2319module_init(iscsi_tcp_init);
2320module_exit(iscsi_tcp_exit);