blob: b2827d112cb0a4f599598db7c3d3d04562174c10 [file] [log] [blame]
Alex Aizman7ba24712005-08-04 19:30:08 -07001/*
2 * iSCSI Initiator over TCP/IP Data-Path
3 *
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
Mike Christie5bb0b552006-04-06 21:26:46 -05006 * Copyright (C) 2005 - 2006 Mike Christie
7 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
Alex Aizman7ba24712005-08-04 19:30:08 -07008 * maintained by open-iscsi@googlegroups.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published
12 * by the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * See the file COPYING included with this distribution for more details.
21 *
22 * Credits:
23 * Christoph Hellwig
24 * FUJITA Tomonori
25 * Arne Redlich
26 * Zhenyu Wang
27 */
28
29#include <linux/types.h>
30#include <linux/list.h>
31#include <linux/inet.h>
32#include <linux/blkdev.h>
33#include <linux/crypto.h>
34#include <linux/delay.h>
35#include <linux/kfifo.h>
36#include <linux/scatterlist.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010037#include <linux/mutex.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070038#include <net/tcp.h>
39#include <scsi/scsi_cmnd.h>
Alex Aizman7ba24712005-08-04 19:30:08 -070040#include <scsi/scsi_host.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_transport_iscsi.h>
43
44#include "iscsi_tcp.h"
45
46MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
47 "Alex Aizman <itn780@yahoo.com>");
48MODULE_DESCRIPTION("iSCSI/TCP data-path");
49MODULE_LICENSE("GPL");
Alex Aizman7ba24712005-08-04 19:30:08 -070050/* #define DEBUG_TCP */
Alex Aizman7ba24712005-08-04 19:30:08 -070051#define DEBUG_ASSERT
52
53#ifdef DEBUG_TCP
Mike Christie5bb0b552006-04-06 21:26:46 -050054#define debug_tcp(fmt...) printk(KERN_INFO "tcp: " fmt)
Alex Aizman7ba24712005-08-04 19:30:08 -070055#else
56#define debug_tcp(fmt...)
57#endif
58
Alex Aizman7ba24712005-08-04 19:30:08 -070059#ifndef DEBUG_ASSERT
60#ifdef BUG_ON
61#undef BUG_ON
62#endif
63#define BUG_ON(expr)
64#endif
65
Alex Aizman7ba24712005-08-04 19:30:08 -070066static unsigned int iscsi_max_lun = 512;
67module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
68
Alex Aizman7ba24712005-08-04 19:30:08 -070069static inline void
Alex Aizman7ba24712005-08-04 19:30:08 -070070iscsi_buf_init_iov(struct iscsi_buf *ibuf, char *vbuf, int size)
71{
Mike Christie7cae5152006-01-13 18:05:47 -060072 ibuf->sg.page = virt_to_page(vbuf);
73 ibuf->sg.offset = offset_in_page(vbuf);
Alex Aizman7ba24712005-08-04 19:30:08 -070074 ibuf->sg.length = size;
75 ibuf->sent = 0;
Mike Christie7cae5152006-01-13 18:05:47 -060076 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070077}
78
79static inline void
80iscsi_buf_init_sg(struct iscsi_buf *ibuf, struct scatterlist *sg)
81{
Mike Christie7cae5152006-01-13 18:05:47 -060082 ibuf->sg.page = sg->page;
83 ibuf->sg.offset = sg->offset;
84 ibuf->sg.length = sg->length;
Alex Aizman7ba24712005-08-04 19:30:08 -070085 /*
86 * Fastpath: sg element fits into single page
87 */
Mike Christiea1e80c22006-01-13 18:05:56 -060088 if (sg->length + sg->offset <= PAGE_SIZE && !PageSlab(sg->page))
Mike Christie7cae5152006-01-13 18:05:47 -060089 ibuf->use_sendmsg = 0;
90 else
91 ibuf->use_sendmsg = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -070092 ibuf->sent = 0;
93}
94
95static inline int
96iscsi_buf_left(struct iscsi_buf *ibuf)
97{
98 int rc;
99
100 rc = ibuf->sg.length - ibuf->sent;
101 BUG_ON(rc < 0);
102 return rc;
103}
104
105static inline void
Mike Christieaf973482005-09-12 21:01:32 -0500106iscsi_hdr_digest(struct iscsi_conn *conn, struct iscsi_buf *buf,
107 u8* crc)
Alex Aizman7ba24712005-08-04 19:30:08 -0700108{
Mike Christie5bb0b552006-04-06 21:26:46 -0500109 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
110
James Bottomleyc9802cd2006-09-23 15:33:43 -0500111 crypto_hash_digest(&tcp_conn->tx_hash, &buf->sg, buf->sg.length, crc);
Mike Christie753e7d32006-08-31 18:09:29 -0400112 buf->sg.length = tcp_conn->hdr_size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700113}
114
Alex Aizman7ba24712005-08-04 19:30:08 -0700115static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500116iscsi_hdr_extract(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700117{
Mike Christie5bb0b552006-04-06 21:26:46 -0500118 struct sk_buff *skb = tcp_conn->in.skb;
Alex Aizman7ba24712005-08-04 19:30:08 -0700119
Mike Christie5bb0b552006-04-06 21:26:46 -0500120 tcp_conn->in.zero_copy_hdr = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700121
Mike Christie5bb0b552006-04-06 21:26:46 -0500122 if (tcp_conn->in.copy >= tcp_conn->hdr_size &&
123 tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700124 /*
125 * Zero-copy PDU Header: using connection context
126 * to store header pointer.
127 */
128 if (skb_shinfo(skb)->frag_list == NULL &&
Mike Christie5bb0b552006-04-06 21:26:46 -0500129 !skb_shinfo(skb)->nr_frags) {
130 tcp_conn->in.hdr = (struct iscsi_hdr *)
131 ((char*)skb->data + tcp_conn->in.offset);
132 tcp_conn->in.zero_copy_hdr = 1;
133 } else {
Alex Aizman7ba24712005-08-04 19:30:08 -0700134 /* ignoring return code since we checked
135 * in.copy before */
Mike Christie5bb0b552006-04-06 21:26:46 -0500136 skb_copy_bits(skb, tcp_conn->in.offset,
137 &tcp_conn->hdr, tcp_conn->hdr_size);
138 tcp_conn->in.hdr = &tcp_conn->hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700139 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500140 tcp_conn->in.offset += tcp_conn->hdr_size;
141 tcp_conn->in.copy -= tcp_conn->hdr_size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700142 } else {
143 int hdr_remains;
144 int copylen;
145
146 /*
147 * PDU header scattered across SKB's,
148 * copying it... This'll happen quite rarely.
149 */
150
Mike Christie5bb0b552006-04-06 21:26:46 -0500151 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER)
152 tcp_conn->in.hdr_offset = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700153
Mike Christie5bb0b552006-04-06 21:26:46 -0500154 hdr_remains = tcp_conn->hdr_size - tcp_conn->in.hdr_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700155 BUG_ON(hdr_remains <= 0);
156
Mike Christie5bb0b552006-04-06 21:26:46 -0500157 copylen = min(tcp_conn->in.copy, hdr_remains);
158 skb_copy_bits(skb, tcp_conn->in.offset,
159 (char*)&tcp_conn->hdr + tcp_conn->in.hdr_offset,
160 copylen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700161
162 debug_tcp("PDU gather offset %d bytes %d in.offset %d "
Mike Christie5bb0b552006-04-06 21:26:46 -0500163 "in.copy %d\n", tcp_conn->in.hdr_offset, copylen,
164 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700165
Mike Christie5bb0b552006-04-06 21:26:46 -0500166 tcp_conn->in.offset += copylen;
167 tcp_conn->in.copy -= copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700168 if (copylen < hdr_remains) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500169 tcp_conn->in_progress = IN_PROGRESS_HEADER_GATHER;
170 tcp_conn->in.hdr_offset += copylen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700171 return -EAGAIN;
172 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500173 tcp_conn->in.hdr = &tcp_conn->hdr;
174 tcp_conn->discontiguous_hdr_cnt++;
175 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700176 }
177
178 return 0;
179}
180
Mike Christie30a6c652006-04-06 21:13:39 -0500181/*
182 * must be called with session lock
183 */
184static void
Mike Christieb6c395e2006-07-24 15:47:15 -0500185iscsi_tcp_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -0700186{
Mike Christie5bb0b552006-04-06 21:26:46 -0500187 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christieb6c395e2006-07-24 15:47:15 -0500188 struct iscsi_r2t_info *r2t;
Mike Christie30a6c652006-04-06 21:13:39 -0500189 struct scsi_cmnd *sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700190
Mike Christieb6c395e2006-07-24 15:47:15 -0500191 /* flush ctask's r2t queues */
192 while (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*))) {
193 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
194 sizeof(void*));
195 debug_scsi("iscsi_tcp_cleanup_ctask pending r2t dropped\n");
196 }
197
Mike Christie30a6c652006-04-06 21:13:39 -0500198 sc = ctask->sc;
199 if (unlikely(!sc))
Alex Aizman7ba24712005-08-04 19:30:08 -0700200 return;
Mike Christie30a6c652006-04-06 21:13:39 -0500201
Mike Christie5bb0b552006-04-06 21:26:46 -0500202 tcp_ctask->xmstate = XMSTATE_IDLE;
203 tcp_ctask->r2t = NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -0700204}
205
206/**
207 * iscsi_data_rsp - SCSI Data-In Response processing
208 * @conn: iscsi connection
209 * @ctask: scsi command task
210 **/
211static int
212iscsi_data_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
213{
214 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500215 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
216 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
217 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700218 struct iscsi_session *session = conn->session;
Mike Christie857ae0b2007-05-30 12:57:15 -0500219 struct scsi_cmnd *sc = ctask->sc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700220 int datasn = be32_to_cpu(rhdr->datasn);
221
222 rc = iscsi_check_assign_cmdsn(session, (struct iscsi_nopin*)rhdr);
223 if (rc)
224 return rc;
225 /*
226 * setup Data-In byte counter (gets decremented..)
227 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500228 ctask->data_count = tcp_conn->in.datalen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700229
Mike Christie5bb0b552006-04-06 21:26:46 -0500230 if (tcp_conn->in.datalen == 0)
Alex Aizman7ba24712005-08-04 19:30:08 -0700231 return 0;
232
Mike Christied473cc72007-05-30 12:57:14 -0500233 if (tcp_ctask->exp_datasn != datasn) {
234 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->datasn(%d)\n",
235 __FUNCTION__, tcp_ctask->exp_datasn, datasn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700236 return ISCSI_ERR_DATASN;
Mike Christied473cc72007-05-30 12:57:14 -0500237 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700238
Mike Christied473cc72007-05-30 12:57:14 -0500239 tcp_ctask->exp_datasn++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700240
Mike Christie5bb0b552006-04-06 21:26:46 -0500241 tcp_ctask->data_offset = be32_to_cpu(rhdr->offset);
Mike Christie857ae0b2007-05-30 12:57:15 -0500242 if (tcp_ctask->data_offset + tcp_conn->in.datalen > sc->request_bufflen) {
243 debug_tcp("%s: data_offset(%d) + data_len(%d) > total_length_in(%d)\n",
244 __FUNCTION__, tcp_ctask->data_offset,
245 tcp_conn->in.datalen, sc->request_bufflen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700246 return ISCSI_ERR_DATA_OFFSET;
Mike Christie857ae0b2007-05-30 12:57:15 -0500247 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700248
249 if (rhdr->flags & ISCSI_FLAG_DATA_STATUS) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700250 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600251 if (rhdr->flags & ISCSI_FLAG_DATA_UNDERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700252 int res_count = be32_to_cpu(rhdr->residual_count);
253
254 if (res_count > 0 &&
255 res_count <= sc->request_bufflen) {
256 sc->resid = res_count;
257 sc->result = (DID_OK << 16) | rhdr->cmd_status;
258 } else
259 sc->result = (DID_BAD_TARGET << 16) |
260 rhdr->cmd_status;
zhenyu.z.wang@intel.combf310b82006-01-13 18:05:38 -0600261 } else if (rhdr->flags & ISCSI_FLAG_DATA_OVERFLOW) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700262 sc->resid = be32_to_cpu(rhdr->residual_count);
263 sc->result = (DID_OK << 16) | rhdr->cmd_status;
264 } else
265 sc->result = (DID_OK << 16) | rhdr->cmd_status;
266 }
267
268 conn->datain_pdus_cnt++;
269 return 0;
270}
271
272/**
273 * iscsi_solicit_data_init - initialize first Data-Out
274 * @conn: iscsi connection
275 * @ctask: scsi command task
276 * @r2t: R2T info
277 *
278 * Notes:
279 * Initialize first Data-Out within this R2T sequence and finds
280 * proper data_offset within this SCSI command.
281 *
282 * This function is called with connection lock taken.
283 **/
284static void
285iscsi_solicit_data_init(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
286 struct iscsi_r2t_info *r2t)
287{
288 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700289 struct scsi_cmnd *sc = ctask->sc;
290
Mike Christieffbfe922006-05-18 20:31:36 -0500291 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700292 memset(hdr, 0, sizeof(struct iscsi_data));
293 hdr->ttt = r2t->ttt;
294 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
295 r2t->solicit_datasn++;
296 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -0500297 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
298 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700299 hdr->exp_statsn = r2t->exp_statsn;
300 hdr->offset = cpu_to_be32(r2t->data_offset);
301 if (r2t->data_length > conn->max_xmit_dlength) {
302 hton24(hdr->dlength, conn->max_xmit_dlength);
303 r2t->data_count = conn->max_xmit_dlength;
304 hdr->flags = 0;
305 } else {
306 hton24(hdr->dlength, r2t->data_length);
307 r2t->data_count = r2t->data_length;
308 hdr->flags = ISCSI_FLAG_CMD_FINAL;
309 }
310 conn->dataout_pdus_cnt++;
311
312 r2t->sent = 0;
313
Mike Christie6e458cc2006-05-18 20:31:31 -0500314 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -0500315 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -0700316
Alex Aizman7ba24712005-08-04 19:30:08 -0700317 if (sc->use_sg) {
318 int i, sg_count = 0;
319 struct scatterlist *sg = sc->request_buffer;
320
321 r2t->sg = NULL;
322 for (i = 0; i < sc->use_sg; i++, sg += 1) {
323 /* FIXME: prefetch ? */
324 if (sg_count + sg->length > r2t->data_offset) {
325 int page_offset;
326
327 /* sg page found! */
328
329 /* offset within this page */
330 page_offset = r2t->data_offset - sg_count;
331
332 /* fill in this buffer */
333 iscsi_buf_init_sg(&r2t->sendbuf, sg);
334 r2t->sendbuf.sg.offset += page_offset;
335 r2t->sendbuf.sg.length -= page_offset;
336
337 /* xmit logic will continue with next one */
338 r2t->sg = sg + 1;
339 break;
340 }
341 sg_count += sg->length;
342 }
343 BUG_ON(r2t->sg == NULL);
Mike Christie62f38302006-08-31 18:09:27 -0400344 } else {
345 iscsi_buf_init_iov(&r2t->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -0700346 (char*)sc->request_buffer + r2t->data_offset,
347 r2t->data_count);
Mike Christie62f38302006-08-31 18:09:27 -0400348 r2t->sg = NULL;
349 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700350}
351
352/**
353 * iscsi_r2t_rsp - iSCSI R2T Response processing
354 * @conn: iscsi connection
355 * @ctask: scsi command task
356 **/
357static int
358iscsi_r2t_rsp(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
359{
360 struct iscsi_r2t_info *r2t;
361 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500362 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
363 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
364 struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700365 int r2tsn = be32_to_cpu(rhdr->r2tsn);
366 int rc;
367
Mike Christie98a94162006-08-31 18:09:26 -0400368 if (tcp_conn->in.datalen) {
369 printk(KERN_ERR "iscsi_tcp: invalid R2t with datalen %d\n",
370 tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700371 return ISCSI_ERR_DATALEN;
Mike Christie98a94162006-08-31 18:09:26 -0400372 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700373
Mike Christied473cc72007-05-30 12:57:14 -0500374 if (tcp_ctask->exp_datasn != r2tsn){
375 debug_tcp("%s: ctask->exp_datasn(%d) != rhdr->r2tsn(%d)\n",
376 __FUNCTION__, tcp_ctask->exp_datasn, r2tsn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700377 return ISCSI_ERR_R2TSN;
Mike Christied473cc72007-05-30 12:57:14 -0500378 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700379
380 rc = iscsi_check_assign_cmdsn(session, (struct iscsi_nopin*)rhdr);
381 if (rc)
382 return rc;
383
Alex Aizman7ba24712005-08-04 19:30:08 -0700384 /* fill-in new R2T associated with the task */
385 spin_lock(&session->lock);
386 if (!ctask->sc || ctask->mtask ||
387 session->state != ISCSI_STATE_LOGGED_IN) {
388 printk(KERN_INFO "iscsi_tcp: dropping R2T itt %d in "
389 "recovery...\n", ctask->itt);
390 spin_unlock(&session->lock);
391 return 0;
392 }
Mike Christieb6c395e2006-07-24 15:47:15 -0500393
Mike Christie5bb0b552006-04-06 21:26:46 -0500394 rc = __kfifo_get(tcp_ctask->r2tpool.queue, (void*)&r2t, sizeof(void*));
Alex Aizman7ba24712005-08-04 19:30:08 -0700395 BUG_ON(!rc);
396
397 r2t->exp_statsn = rhdr->statsn;
398 r2t->data_length = be32_to_cpu(rhdr->data_length);
Mike Christie98a94162006-08-31 18:09:26 -0400399 if (r2t->data_length == 0) {
400 printk(KERN_ERR "iscsi_tcp: invalid R2T with zero data len\n");
Alex Aizman7ba24712005-08-04 19:30:08 -0700401 spin_unlock(&session->lock);
402 return ISCSI_ERR_DATALEN;
403 }
404
Mike Christie98a94162006-08-31 18:09:26 -0400405 if (r2t->data_length > session->max_burst)
406 debug_scsi("invalid R2T with data len %u and max burst %u."
407 "Attempting to execute request.\n",
408 r2t->data_length, session->max_burst);
409
Alex Aizman7ba24712005-08-04 19:30:08 -0700410 r2t->data_offset = be32_to_cpu(rhdr->data_offset);
Mike Christie857ae0b2007-05-30 12:57:15 -0500411 if (r2t->data_offset + r2t->data_length > ctask->sc->request_bufflen) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700412 spin_unlock(&session->lock);
Mike Christie98a94162006-08-31 18:09:26 -0400413 printk(KERN_ERR "iscsi_tcp: invalid R2T with data len %u at "
414 "offset %u and total length %d\n", r2t->data_length,
Mike Christie857ae0b2007-05-30 12:57:15 -0500415 r2t->data_offset, ctask->sc->request_bufflen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700416 return ISCSI_ERR_DATALEN;
417 }
418
419 r2t->ttt = rhdr->ttt; /* no flip */
420 r2t->solicit_datasn = 0;
421
422 iscsi_solicit_data_init(conn, ctask, r2t);
423
Mike Christied473cc72007-05-30 12:57:14 -0500424 tcp_ctask->exp_datasn = r2tsn + 1;
Mike Christie5bb0b552006-04-06 21:26:46 -0500425 __kfifo_put(tcp_ctask->r2tqueue, (void*)&r2t, sizeof(void*));
Mike Christiedb37c502006-11-08 15:58:33 -0600426 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
Mike Christieb6c395e2006-07-24 15:47:15 -0500427 list_move_tail(&ctask->running, &conn->xmitqueue);
Alex Aizman7ba24712005-08-04 19:30:08 -0700428
Mike Christie55e32992006-01-13 18:05:53 -0600429 scsi_queue_work(session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -0700430 conn->r2t_pdus_cnt++;
431 spin_unlock(&session->lock);
432
433 return 0;
434}
435
436static int
Mike Christie5bb0b552006-04-06 21:26:46 -0500437iscsi_tcp_hdr_recv(struct iscsi_conn *conn)
Alex Aizman7ba24712005-08-04 19:30:08 -0700438{
Mike Christie5bb0b552006-04-06 21:26:46 -0500439 int rc = 0, opcode, ahslen;
Alex Aizman7ba24712005-08-04 19:30:08 -0700440 struct iscsi_hdr *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700441 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -0500442 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
443 uint32_t cdgst, rdgst = 0, itt;
Alex Aizman7ba24712005-08-04 19:30:08 -0700444
Mike Christie5bb0b552006-04-06 21:26:46 -0500445 hdr = tcp_conn->in.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700446
447 /* verify PDU length */
Mike Christie5bb0b552006-04-06 21:26:46 -0500448 tcp_conn->in.datalen = ntoh24(hdr->dlength);
449 if (tcp_conn->in.datalen > conn->max_recv_dlength) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700450 printk(KERN_ERR "iscsi_tcp: datalen %d > %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500451 tcp_conn->in.datalen, conn->max_recv_dlength);
Alex Aizman7ba24712005-08-04 19:30:08 -0700452 return ISCSI_ERR_DATALEN;
453 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500454 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700455
456 /* read AHS */
Mike Christie5bb0b552006-04-06 21:26:46 -0500457 ahslen = hdr->hlength << 2;
458 tcp_conn->in.offset += ahslen;
459 tcp_conn->in.copy -= ahslen;
460 if (tcp_conn->in.copy < 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700461 printk(KERN_ERR "iscsi_tcp: can't handle AHS with length "
Mike Christie5bb0b552006-04-06 21:26:46 -0500462 "%d bytes\n", ahslen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700463 return ISCSI_ERR_AHSLEN;
464 }
465
466 /* calculate read padding */
Mike Christie5bb0b552006-04-06 21:26:46 -0500467 tcp_conn->in.padding = tcp_conn->in.datalen & (ISCSI_PAD_LEN-1);
468 if (tcp_conn->in.padding) {
469 tcp_conn->in.padding = ISCSI_PAD_LEN - tcp_conn->in.padding;
470 debug_scsi("read padding %d bytes\n", tcp_conn->in.padding);
Alex Aizman7ba24712005-08-04 19:30:08 -0700471 }
472
473 if (conn->hdrdgst_en) {
474 struct scatterlist sg;
475
476 sg_init_one(&sg, (u8 *)hdr,
Mike Christie5bb0b552006-04-06 21:26:46 -0500477 sizeof(struct iscsi_hdr) + ahslen);
James Bottomleyc9802cd2006-09-23 15:33:43 -0500478 crypto_hash_digest(&tcp_conn->rx_hash, &sg, sg.length,
479 (u8 *)&cdgst);
Alex Aizman7ba24712005-08-04 19:30:08 -0700480 rdgst = *(uint32_t*)((char*)hdr + sizeof(struct iscsi_hdr) +
Mike Christie5bb0b552006-04-06 21:26:46 -0500481 ahslen);
Mike Christie8a47cd32005-11-30 02:27:19 -0600482 if (cdgst != rdgst) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500483 printk(KERN_ERR "iscsi_tcp: hdrdgst error "
484 "recv 0x%x calc 0x%x\n", rdgst, cdgst);
Mike Christie8a47cd32005-11-30 02:27:19 -0600485 return ISCSI_ERR_HDR_DGST;
486 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700487 }
488
Mike Christie5bb0b552006-04-06 21:26:46 -0500489 opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Alex Aizman7ba24712005-08-04 19:30:08 -0700490 /* verify itt (itt encoding: age+cid+itt) */
Mike Christie5bb0b552006-04-06 21:26:46 -0500491 rc = iscsi_verify_itt(conn, hdr, &itt);
492 if (rc == ISCSI_ERR_NO_SCSI_CMD) {
493 tcp_conn->in.datalen = 0; /* force drop */
494 return 0;
495 } else if (rc)
496 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -0700497
498 debug_tcp("opcode 0x%x offset %d copy %d ahslen %d datalen %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500499 opcode, tcp_conn->in.offset, tcp_conn->in.copy,
500 ahslen, tcp_conn->in.datalen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700501
Mike Christie5bb0b552006-04-06 21:26:46 -0500502 switch(opcode) {
503 case ISCSI_OP_SCSI_DATA_IN:
504 tcp_conn->in.ctask = session->cmds[itt];
505 rc = iscsi_data_rsp(conn, tcp_conn->in.ctask);
Mike Christie275fd7d2006-07-24 15:47:17 -0500506 if (rc)
507 return rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500508 /* fall through */
509 case ISCSI_OP_SCSI_CMD_RSP:
510 tcp_conn->in.ctask = session->cmds[itt];
511 if (tcp_conn->in.datalen)
512 goto copy_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -0700513
Mike Christie5bb0b552006-04-06 21:26:46 -0500514 spin_lock(&session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -0500515 rc = __iscsi_complete_pdu(conn, hdr, NULL, 0);
516 spin_unlock(&session->lock);
517 break;
518 case ISCSI_OP_R2T:
519 tcp_conn->in.ctask = session->cmds[itt];
520 if (ahslen)
521 rc = ISCSI_ERR_AHSLEN;
522 else if (tcp_conn->in.ctask->sc->sc_data_direction ==
523 DMA_TO_DEVICE)
524 rc = iscsi_r2t_rsp(conn, tcp_conn->in.ctask);
525 else
526 rc = ISCSI_ERR_PROTO;
527 break;
528 case ISCSI_OP_LOGIN_RSP:
529 case ISCSI_OP_TEXT_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500530 case ISCSI_OP_REJECT:
531 case ISCSI_OP_ASYNC_EVENT:
Mike Christiec8dc1e52006-07-24 15:47:39 -0500532 /*
533 * It is possible that we could get a PDU with a buffer larger
534 * than 8K, but there are no targets that currently do this.
535 * For now we fail until we find a vendor that needs it
536 */
Mike Christiebf32ed32007-02-28 17:32:17 -0600537 if (ISCSI_DEF_MAX_RECV_SEG_LEN <
Mike Christiec8dc1e52006-07-24 15:47:39 -0500538 tcp_conn->in.datalen) {
539 printk(KERN_ERR "iscsi_tcp: received buffer of len %u "
540 "but conn buffer is only %u (opcode %0x)\n",
541 tcp_conn->in.datalen,
Mike Christiebf32ed32007-02-28 17:32:17 -0600542 ISCSI_DEF_MAX_RECV_SEG_LEN, opcode);
Mike Christiec8dc1e52006-07-24 15:47:39 -0500543 rc = ISCSI_ERR_PROTO;
544 break;
545 }
546
Mike Christie5bb0b552006-04-06 21:26:46 -0500547 if (tcp_conn->in.datalen)
548 goto copy_hdr;
549 /* fall through */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500550 case ISCSI_OP_LOGOUT_RSP:
551 case ISCSI_OP_NOOP_IN:
Mike Christie5bb0b552006-04-06 21:26:46 -0500552 case ISCSI_OP_SCSI_TMFUNC_RSP:
553 rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
554 break;
555 default:
556 rc = ISCSI_ERR_BAD_OPCODE;
557 break;
558 }
Alex Aizman7ba24712005-08-04 19:30:08 -0700559
560 return rc;
Mike Christie5bb0b552006-04-06 21:26:46 -0500561
562copy_hdr:
563 /*
564 * if we did zero copy for the header but we will need multiple
565 * skbs to complete the command then we have to copy the header
566 * for later use
567 */
Mike Christie275fd7d2006-07-24 15:47:17 -0500568 if (tcp_conn->in.zero_copy_hdr && tcp_conn->in.copy <=
Mike Christie5bb0b552006-04-06 21:26:46 -0500569 (tcp_conn->in.datalen + tcp_conn->in.padding +
570 (conn->datadgst_en ? 4 : 0))) {
571 debug_tcp("Copying header for later use. in.copy %d in.datalen"
572 " %d\n", tcp_conn->in.copy, tcp_conn->in.datalen);
573 memcpy(&tcp_conn->hdr, tcp_conn->in.hdr,
574 sizeof(struct iscsi_hdr));
575 tcp_conn->in.hdr = &tcp_conn->hdr;
576 tcp_conn->in.zero_copy_hdr = 0;
577 }
578 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700579}
580
581/**
582 * iscsi_ctask_copy - copy skb bits to the destanation cmd task
Mike Christie5bb0b552006-04-06 21:26:46 -0500583 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700584 * @ctask: scsi command task
585 * @buf: buffer to copy to
586 * @buf_size: size of buffer
587 * @offset: offset within the buffer
588 *
589 * Notes:
590 * The function calls skb_copy_bits() and updates per-connection and
591 * per-cmd byte counters.
592 *
593 * Read counters (in bytes):
594 *
595 * conn->in.offset offset within in progress SKB
596 * conn->in.copy left to copy from in progress SKB
597 * including padding
598 * conn->in.copied copied already from in progress SKB
599 * conn->data_copied copied already from in progress buffer
600 * ctask->sent total bytes sent up to the MidLayer
601 * ctask->data_count left to copy from in progress Data-In
602 * buf_left left to copy from in progress buffer
603 **/
604static inline int
Mike Christie5bb0b552006-04-06 21:26:46 -0500605iscsi_ctask_copy(struct iscsi_tcp_conn *tcp_conn, struct iscsi_cmd_task *ctask,
Alex Aizman7ba24712005-08-04 19:30:08 -0700606 void *buf, int buf_size, int offset)
607{
Mike Christie5bb0b552006-04-06 21:26:46 -0500608 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
609 int buf_left = buf_size - (tcp_conn->data_copied + offset);
Mike Christie857ae0b2007-05-30 12:57:15 -0500610 unsigned size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700611 int rc;
612
613 size = min(size, ctask->data_count);
614
615 debug_tcp("ctask_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500616 size, tcp_conn->in.offset, tcp_conn->in.copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700617
618 BUG_ON(size <= 0);
Mike Christie857ae0b2007-05-30 12:57:15 -0500619 BUG_ON(tcp_ctask->sent + size > ctask->sc->request_bufflen);
Alex Aizman7ba24712005-08-04 19:30:08 -0700620
Mike Christie5bb0b552006-04-06 21:26:46 -0500621 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
622 (char*)buf + (offset + tcp_conn->data_copied), size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700623 /* must fit into skb->len */
624 BUG_ON(rc);
625
Mike Christie5bb0b552006-04-06 21:26:46 -0500626 tcp_conn->in.offset += size;
627 tcp_conn->in.copy -= size;
628 tcp_conn->in.copied += size;
629 tcp_conn->data_copied += size;
630 tcp_ctask->sent += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700631 ctask->data_count -= size;
632
Mike Christie5bb0b552006-04-06 21:26:46 -0500633 BUG_ON(tcp_conn->in.copy < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700634 BUG_ON(ctask->data_count < 0);
635
Mike Christie5bb0b552006-04-06 21:26:46 -0500636 if (buf_size != (tcp_conn->data_copied + offset)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700637 if (!ctask->data_count) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500638 BUG_ON(buf_size - tcp_conn->data_copied < 0);
Alex Aizman7ba24712005-08-04 19:30:08 -0700639 /* done with this PDU */
Mike Christie5bb0b552006-04-06 21:26:46 -0500640 return buf_size - tcp_conn->data_copied;
Alex Aizman7ba24712005-08-04 19:30:08 -0700641 }
642 return -EAGAIN;
643 }
644
645 /* done with this buffer or with both - PDU and buffer */
Mike Christie5bb0b552006-04-06 21:26:46 -0500646 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700647 return 0;
648}
649
650/**
651 * iscsi_tcp_copy - copy skb bits to the destanation buffer
Mike Christie5bb0b552006-04-06 21:26:46 -0500652 * @conn: iscsi tcp connection
Alex Aizman7ba24712005-08-04 19:30:08 -0700653 *
654 * Notes:
655 * The function calls skb_copy_bits() and updates per-connection
656 * byte counters.
657 **/
658static inline int
Mike Christieca518682006-08-31 18:09:32 -0400659iscsi_tcp_copy(struct iscsi_conn *conn, int buf_size)
Alex Aizman7ba24712005-08-04 19:30:08 -0700660{
Mike Christiec8dc1e52006-07-24 15:47:39 -0500661 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500662 int buf_left = buf_size - tcp_conn->data_copied;
663 int size = min(tcp_conn->in.copy, buf_left);
Alex Aizman7ba24712005-08-04 19:30:08 -0700664 int rc;
665
666 debug_tcp("tcp_copy %d bytes at offset %d copied %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500667 size, tcp_conn->in.offset, tcp_conn->data_copied);
Alex Aizman7ba24712005-08-04 19:30:08 -0700668 BUG_ON(size <= 0);
669
Mike Christie5bb0b552006-04-06 21:26:46 -0500670 rc = skb_copy_bits(tcp_conn->in.skb, tcp_conn->in.offset,
Mike Christiec8dc1e52006-07-24 15:47:39 -0500671 (char*)conn->data + tcp_conn->data_copied, size);
Alex Aizman7ba24712005-08-04 19:30:08 -0700672 BUG_ON(rc);
673
Mike Christie5bb0b552006-04-06 21:26:46 -0500674 tcp_conn->in.offset += size;
675 tcp_conn->in.copy -= size;
676 tcp_conn->in.copied += size;
677 tcp_conn->data_copied += size;
Alex Aizman7ba24712005-08-04 19:30:08 -0700678
Mike Christie5bb0b552006-04-06 21:26:46 -0500679 if (buf_size != tcp_conn->data_copied)
Alex Aizman7ba24712005-08-04 19:30:08 -0700680 return -EAGAIN;
681
682 return 0;
683}
684
685static inline void
James Bottomleyc9802cd2006-09-23 15:33:43 -0500686partial_sg_digest_update(struct hash_desc *desc, struct scatterlist *sg,
Mike Christie62f38302006-08-31 18:09:27 -0400687 int offset, int length)
Alex Aizman7ba24712005-08-04 19:30:08 -0700688{
689 struct scatterlist temp;
690
691 memcpy(&temp, sg, sizeof(struct scatterlist));
692 temp.offset = offset;
693 temp.length = length;
James Bottomleyc9802cd2006-09-23 15:33:43 -0500694 crypto_hash_update(desc, &temp, length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700695}
696
Mike Christief6cfba12005-11-29 23:12:57 -0600697static void
Mike Christie5bb0b552006-04-06 21:26:46 -0500698iscsi_recv_digest_update(struct iscsi_tcp_conn *tcp_conn, char* buf, int len)
Mike Christief6cfba12005-11-29 23:12:57 -0600699{
700 struct scatterlist tmp;
701
702 sg_init_one(&tmp, buf, len);
James Bottomleyc9802cd2006-09-23 15:33:43 -0500703 crypto_hash_update(&tcp_conn->rx_hash, &tmp, len);
Mike Christief6cfba12005-11-29 23:12:57 -0600704}
705
Alex Aizman7ba24712005-08-04 19:30:08 -0700706static int iscsi_scsi_data_in(struct iscsi_conn *conn)
707{
Mike Christie5bb0b552006-04-06 21:26:46 -0500708 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
709 struct iscsi_cmd_task *ctask = tcp_conn->in.ctask;
710 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700711 struct scsi_cmnd *sc = ctask->sc;
Mike Christief6cfba12005-11-29 23:12:57 -0600712 struct scatterlist *sg;
Alex Aizman7ba24712005-08-04 19:30:08 -0700713 int i, offset, rc = 0;
714
715 BUG_ON((void*)ctask != sc->SCp.ptr);
716
717 /*
718 * copying Data-In into the Scsi_Cmnd
719 */
720 if (!sc->use_sg) {
721 i = ctask->data_count;
Mike Christie5bb0b552006-04-06 21:26:46 -0500722 rc = iscsi_ctask_copy(tcp_conn, ctask, sc->request_buffer,
723 sc->request_bufflen,
724 tcp_ctask->data_offset);
Alex Aizman7ba24712005-08-04 19:30:08 -0700725 if (rc == -EAGAIN)
726 return rc;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -0600727 if (conn->datadgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -0500728 iscsi_recv_digest_update(tcp_conn, sc->request_buffer,
729 i);
Alex Aizman7ba24712005-08-04 19:30:08 -0700730 rc = 0;
731 goto done;
732 }
733
Mike Christie5bb0b552006-04-06 21:26:46 -0500734 offset = tcp_ctask->data_offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700735 sg = sc->request_buffer;
736
Mike Christie5bb0b552006-04-06 21:26:46 -0500737 if (tcp_ctask->data_offset)
738 for (i = 0; i < tcp_ctask->sg_count; i++)
Alex Aizman7ba24712005-08-04 19:30:08 -0700739 offset -= sg[i].length;
740 /* we've passed through partial sg*/
741 if (offset < 0)
742 offset = 0;
743
Mike Christie5bb0b552006-04-06 21:26:46 -0500744 for (i = tcp_ctask->sg_count; i < sc->use_sg; i++) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700745 char *dest;
746
747 dest = kmap_atomic(sg[i].page, KM_SOFTIRQ0);
Mike Christie5bb0b552006-04-06 21:26:46 -0500748 rc = iscsi_ctask_copy(tcp_conn, ctask, dest + sg[i].offset,
Alex Aizman7ba24712005-08-04 19:30:08 -0700749 sg[i].length, offset);
750 kunmap_atomic(dest, KM_SOFTIRQ0);
751 if (rc == -EAGAIN)
752 /* continue with the next SKB/PDU */
753 return rc;
754 if (!rc) {
755 if (conn->datadgst_en) {
756 if (!offset)
Herbert Xudc64ddf2006-08-24 18:45:50 +1000757 crypto_hash_update(
James Bottomleyc9802cd2006-09-23 15:33:43 -0500758 &tcp_conn->rx_hash,
Arne Redlichc959e1c2006-12-17 12:10:24 -0600759 &sg[i], sg[i].length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700760 else
Mike Christie62f38302006-08-31 18:09:27 -0400761 partial_sg_digest_update(
James Bottomleyc9802cd2006-09-23 15:33:43 -0500762 &tcp_conn->rx_hash,
Mike Christie5bb0b552006-04-06 21:26:46 -0500763 &sg[i],
Alex Aizman7ba24712005-08-04 19:30:08 -0700764 sg[i].offset + offset,
765 sg[i].length - offset);
766 }
767 offset = 0;
Mike Christie5bb0b552006-04-06 21:26:46 -0500768 tcp_ctask->sg_count++;
Alex Aizman7ba24712005-08-04 19:30:08 -0700769 }
770
771 if (!ctask->data_count) {
772 if (rc && conn->datadgst_en)
773 /*
774 * data-in is complete, but buffer not...
775 */
James Bottomleyc9802cd2006-09-23 15:33:43 -0500776 partial_sg_digest_update(&tcp_conn->rx_hash,
777 &sg[i],
778 sg[i].offset,
779 sg[i].length-rc);
Alex Aizman7ba24712005-08-04 19:30:08 -0700780 rc = 0;
781 break;
782 }
783
Mike Christie5bb0b552006-04-06 21:26:46 -0500784 if (!tcp_conn->in.copy)
Alex Aizman7ba24712005-08-04 19:30:08 -0700785 return -EAGAIN;
786 }
787 BUG_ON(ctask->data_count);
788
789done:
790 /* check for non-exceptional status */
Mike Christie5bb0b552006-04-06 21:26:46 -0500791 if (tcp_conn->in.hdr->flags & ISCSI_FLAG_DATA_STATUS) {
Mike Christieb6c395e2006-07-24 15:47:15 -0500792 debug_scsi("done [sc %lx res %d itt 0x%x flags 0x%x]\n",
793 (long)sc, sc->result, ctask->itt,
794 tcp_conn->in.hdr->flags);
Mike Christie5bb0b552006-04-06 21:26:46 -0500795 spin_lock(&conn->session->lock);
Mike Christie5bb0b552006-04-06 21:26:46 -0500796 __iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
797 spin_unlock(&conn->session->lock);
Alex Aizman7ba24712005-08-04 19:30:08 -0700798 }
799
800 return rc;
801}
802
803static int
804iscsi_data_recv(struct iscsi_conn *conn)
805{
Mike Christie5bb0b552006-04-06 21:26:46 -0500806 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
807 int rc = 0, opcode;
Alex Aizman7ba24712005-08-04 19:30:08 -0700808
Mike Christie5bb0b552006-04-06 21:26:46 -0500809 opcode = tcp_conn->in.hdr->opcode & ISCSI_OPCODE_MASK;
810 switch (opcode) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700811 case ISCSI_OP_SCSI_DATA_IN:
812 rc = iscsi_scsi_data_in(conn);
813 break;
Mike Christie5bb0b552006-04-06 21:26:46 -0500814 case ISCSI_OP_SCSI_CMD_RSP:
Alex Aizman7ba24712005-08-04 19:30:08 -0700815 case ISCSI_OP_TEXT_RSP:
816 case ISCSI_OP_LOGIN_RSP:
Mike Christie5bb0b552006-04-06 21:26:46 -0500817 case ISCSI_OP_ASYNC_EVENT:
818 case ISCSI_OP_REJECT:
Alex Aizman7ba24712005-08-04 19:30:08 -0700819 /*
820 * Collect data segment to the connection's data
821 * placeholder
822 */
Mike Christieca518682006-08-31 18:09:32 -0400823 if (iscsi_tcp_copy(conn, tcp_conn->in.datalen)) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700824 rc = -EAGAIN;
825 goto exit;
826 }
827
Mike Christiec8dc1e52006-07-24 15:47:39 -0500828 rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, conn->data,
Mike Christie5bb0b552006-04-06 21:26:46 -0500829 tcp_conn->in.datalen);
830 if (!rc && conn->datadgst_en && opcode != ISCSI_OP_LOGIN_RSP)
Mike Christiec8dc1e52006-07-24 15:47:39 -0500831 iscsi_recv_digest_update(tcp_conn, conn->data,
Mike Christie5bb0b552006-04-06 21:26:46 -0500832 tcp_conn->in.datalen);
833 break;
Alex Aizman7ba24712005-08-04 19:30:08 -0700834 default:
835 BUG_ON(1);
836 }
837exit:
838 return rc;
839}
840
841/**
842 * iscsi_tcp_data_recv - TCP receive in sendfile fashion
843 * @rd_desc: read descriptor
844 * @skb: socket buffer
845 * @offset: offset in skb
846 * @len: skb->len - offset
847 **/
848static int
849iscsi_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
850 unsigned int offset, size_t len)
851{
852 int rc;
853 struct iscsi_conn *conn = rd_desc->arg.data;
Mike Christie5bb0b552006-04-06 21:26:46 -0500854 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -0700855 int processed;
856 char pad[ISCSI_PAD_LEN];
857 struct scatterlist sg;
858
859 /*
860 * Save current SKB and its offset in the corresponding
861 * connection context.
862 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500863 tcp_conn->in.copy = skb->len - offset;
864 tcp_conn->in.offset = offset;
865 tcp_conn->in.skb = skb;
866 tcp_conn->in.len = tcp_conn->in.copy;
867 BUG_ON(tcp_conn->in.copy <= 0);
868 debug_tcp("in %d bytes\n", tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700869
870more:
Mike Christie5bb0b552006-04-06 21:26:46 -0500871 tcp_conn->in.copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700872 rc = 0;
873
874 if (unlikely(conn->suspend_rx)) {
875 debug_tcp("conn %d Rx suspended!\n", conn->id);
876 return 0;
877 }
878
Mike Christie5bb0b552006-04-06 21:26:46 -0500879 if (tcp_conn->in_progress == IN_PROGRESS_WAIT_HEADER ||
880 tcp_conn->in_progress == IN_PROGRESS_HEADER_GATHER) {
881 rc = iscsi_hdr_extract(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -0700882 if (rc) {
883 if (rc == -EAGAIN)
884 goto nomore;
885 else {
Mike Christied82967c2006-07-24 15:47:11 -0500886 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Alex Aizman7ba24712005-08-04 19:30:08 -0700887 return 0;
888 }
889 }
890
891 /*
892 * Verify and process incoming PDU header.
893 */
Mike Christie5bb0b552006-04-06 21:26:46 -0500894 rc = iscsi_tcp_hdr_recv(conn);
895 if (!rc && tcp_conn->in.datalen) {
Mike Christiedd8c0d92006-08-31 18:09:28 -0400896 if (conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -0500897 crypto_hash_init(&tcp_conn->rx_hash);
Mike Christie5bb0b552006-04-06 21:26:46 -0500898 tcp_conn->in_progress = IN_PROGRESS_DATA_RECV;
Alex Aizman7ba24712005-08-04 19:30:08 -0700899 } else if (rc) {
Mike Christie40527af2006-07-24 15:47:45 -0500900 iscsi_conn_failure(conn, rc);
Alex Aizman7ba24712005-08-04 19:30:08 -0700901 return 0;
902 }
903 }
904
Mike Christie5bb0b552006-04-06 21:26:46 -0500905 if (tcp_conn->in_progress == IN_PROGRESS_DDIGEST_RECV) {
Mike Christief6cfba12005-11-29 23:12:57 -0600906 uint32_t recv_digest;
Mike Christie5bb0b552006-04-06 21:26:46 -0500907
Alex Aizman7ba24712005-08-04 19:30:08 -0700908 debug_tcp("extra data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500909 tcp_conn->in.offset, tcp_conn->in.copy);
Mike Christieca518682006-08-31 18:09:32 -0400910 rc = iscsi_tcp_copy(conn, sizeof(uint32_t));
911 if (rc) {
912 if (rc == -EAGAIN)
913 goto again;
914 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
915 return 0;
916 }
917
918 memcpy(&recv_digest, conn->data, sizeof(uint32_t));
Mike Christie5bb0b552006-04-06 21:26:46 -0500919 if (recv_digest != tcp_conn->in.datadgst) {
Mike Christief6cfba12005-11-29 23:12:57 -0600920 debug_tcp("iscsi_tcp: data digest error!"
921 "0x%x != 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500922 tcp_conn->in.datadgst);
Mike Christief6cfba12005-11-29 23:12:57 -0600923 iscsi_conn_failure(conn, ISCSI_ERR_DATA_DGST);
924 return 0;
925 } else {
926 debug_tcp("iscsi_tcp: data digest match!"
927 "0x%x == 0x%x\n", recv_digest,
Mike Christie5bb0b552006-04-06 21:26:46 -0500928 tcp_conn->in.datadgst);
929 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700930 }
931 }
932
Mike Christie5bb0b552006-04-06 21:26:46 -0500933 if (tcp_conn->in_progress == IN_PROGRESS_DATA_RECV &&
934 tcp_conn->in.copy) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700935
936 debug_tcp("data_recv offset %d copy %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500937 tcp_conn->in.offset, tcp_conn->in.copy);
Alex Aizman7ba24712005-08-04 19:30:08 -0700938
939 rc = iscsi_data_recv(conn);
940 if (rc) {
Mike Christie665b44a2006-05-02 19:46:49 -0500941 if (rc == -EAGAIN)
Alex Aizman7ba24712005-08-04 19:30:08 -0700942 goto again;
Mike Christied82967c2006-07-24 15:47:11 -0500943 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Alex Aizman7ba24712005-08-04 19:30:08 -0700944 return 0;
945 }
Mike Christie5bb0b552006-04-06 21:26:46 -0500946 tcp_conn->in.copy -= tcp_conn->in.padding;
947 tcp_conn->in.offset += tcp_conn->in.padding;
Mike Christie8a47cd32005-11-30 02:27:19 -0600948 if (conn->datadgst_en) {
Mike Christie5bb0b552006-04-06 21:26:46 -0500949 if (tcp_conn->in.padding) {
950 debug_tcp("padding -> %d\n",
951 tcp_conn->in.padding);
952 memset(pad, 0, tcp_conn->in.padding);
953 sg_init_one(&sg, pad, tcp_conn->in.padding);
James Bottomleyc9802cd2006-09-23 15:33:43 -0500954 crypto_hash_update(&tcp_conn->rx_hash,
Herbert Xudc64ddf2006-08-24 18:45:50 +1000955 &sg, sg.length);
Alex Aizman7ba24712005-08-04 19:30:08 -0700956 }
James Bottomleyc9802cd2006-09-23 15:33:43 -0500957 crypto_hash_final(&tcp_conn->rx_hash,
958 (u8 *) &tcp_conn->in.datadgst);
Mike Christie5bb0b552006-04-06 21:26:46 -0500959 debug_tcp("rx digest 0x%x\n", tcp_conn->in.datadgst);
960 tcp_conn->in_progress = IN_PROGRESS_DDIGEST_RECV;
Mike Christieca518682006-08-31 18:09:32 -0400961 tcp_conn->data_copied = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -0700962 } else
Mike Christie5bb0b552006-04-06 21:26:46 -0500963 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -0700964 }
965
966 debug_tcp("f, processed %d from out of %d padding %d\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500967 tcp_conn->in.offset - offset, (int)len, tcp_conn->in.padding);
968 BUG_ON(tcp_conn->in.offset - offset > len);
Alex Aizman7ba24712005-08-04 19:30:08 -0700969
Mike Christie5bb0b552006-04-06 21:26:46 -0500970 if (tcp_conn->in.offset - offset != len) {
Alex Aizman7ba24712005-08-04 19:30:08 -0700971 debug_tcp("continue to process %d bytes\n",
Mike Christie5bb0b552006-04-06 21:26:46 -0500972 (int)len - (tcp_conn->in.offset - offset));
Alex Aizman7ba24712005-08-04 19:30:08 -0700973 goto more;
974 }
975
976nomore:
Mike Christie5bb0b552006-04-06 21:26:46 -0500977 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700978 BUG_ON(processed == 0);
979 return processed;
980
981again:
Mike Christie5bb0b552006-04-06 21:26:46 -0500982 processed = tcp_conn->in.offset - offset;
Alex Aizman7ba24712005-08-04 19:30:08 -0700983 debug_tcp("c, processed %d from out of %d rd_desc_cnt %d\n",
984 processed, (int)len, (int)rd_desc->count);
985 BUG_ON(processed == 0);
986 BUG_ON(processed > len);
987
988 conn->rxdata_octets += processed;
989 return processed;
990}
991
992static void
993iscsi_tcp_data_ready(struct sock *sk, int flag)
994{
995 struct iscsi_conn *conn = sk->sk_user_data;
996 read_descriptor_t rd_desc;
997
998 read_lock(&sk->sk_callback_lock);
999
Mike Christie665b44a2006-05-02 19:46:49 -05001000 /*
1001 * Use rd_desc to pass 'conn' to iscsi_tcp_data_recv.
1002 * We set count to 1 because we want the network layer to
1003 * hand us all the skbs that are available. iscsi_tcp_data_recv
1004 * handled pdus that cross buffers or pdus that still need data.
1005 */
Alex Aizman7ba24712005-08-04 19:30:08 -07001006 rd_desc.arg.data = conn;
Mike Christie665b44a2006-05-02 19:46:49 -05001007 rd_desc.count = 1;
Alex Aizman7ba24712005-08-04 19:30:08 -07001008 tcp_read_sock(sk, &rd_desc, iscsi_tcp_data_recv);
1009
1010 read_unlock(&sk->sk_callback_lock);
1011}
1012
1013static void
1014iscsi_tcp_state_change(struct sock *sk)
1015{
Mike Christie5bb0b552006-04-06 21:26:46 -05001016 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001017 struct iscsi_conn *conn;
1018 struct iscsi_session *session;
1019 void (*old_state_change)(struct sock *);
1020
1021 read_lock(&sk->sk_callback_lock);
1022
1023 conn = (struct iscsi_conn*)sk->sk_user_data;
1024 session = conn->session;
1025
Mike Christiee6273992005-11-29 23:12:49 -06001026 if ((sk->sk_state == TCP_CLOSE_WAIT ||
1027 sk->sk_state == TCP_CLOSE) &&
1028 !atomic_read(&sk->sk_rmem_alloc)) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001029 debug_tcp("iscsi_tcp_state_change: TCP_CLOSE|TCP_CLOSE_WAIT\n");
1030 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1031 }
1032
Mike Christie5bb0b552006-04-06 21:26:46 -05001033 tcp_conn = conn->dd_data;
1034 old_state_change = tcp_conn->old_state_change;
Alex Aizman7ba24712005-08-04 19:30:08 -07001035
1036 read_unlock(&sk->sk_callback_lock);
1037
1038 old_state_change(sk);
1039}
1040
1041/**
1042 * iscsi_write_space - Called when more output buffer space is available
1043 * @sk: socket space is available for
1044 **/
1045static void
1046iscsi_write_space(struct sock *sk)
1047{
1048 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001049 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1050
1051 tcp_conn->old_write_space(sk);
Alex Aizman7ba24712005-08-04 19:30:08 -07001052 debug_tcp("iscsi_write_space: cid %d\n", conn->id);
Mike Christie55e32992006-01-13 18:05:53 -06001053 scsi_queue_work(conn->session->host, &conn->xmitwork);
Alex Aizman7ba24712005-08-04 19:30:08 -07001054}
1055
1056static void
1057iscsi_conn_set_callbacks(struct iscsi_conn *conn)
1058{
Mike Christie5bb0b552006-04-06 21:26:46 -05001059 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1060 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001061
1062 /* assign new callbacks */
1063 write_lock_bh(&sk->sk_callback_lock);
1064 sk->sk_user_data = conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001065 tcp_conn->old_data_ready = sk->sk_data_ready;
1066 tcp_conn->old_state_change = sk->sk_state_change;
1067 tcp_conn->old_write_space = sk->sk_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001068 sk->sk_data_ready = iscsi_tcp_data_ready;
1069 sk->sk_state_change = iscsi_tcp_state_change;
1070 sk->sk_write_space = iscsi_write_space;
1071 write_unlock_bh(&sk->sk_callback_lock);
1072}
1073
1074static void
Mike Christie1c834692006-07-24 15:47:26 -05001075iscsi_conn_restore_callbacks(struct iscsi_tcp_conn *tcp_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001076{
Mike Christie5bb0b552006-04-06 21:26:46 -05001077 struct sock *sk = tcp_conn->sock->sk;
Alex Aizman7ba24712005-08-04 19:30:08 -07001078
1079 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
1080 write_lock_bh(&sk->sk_callback_lock);
1081 sk->sk_user_data = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001082 sk->sk_data_ready = tcp_conn->old_data_ready;
1083 sk->sk_state_change = tcp_conn->old_state_change;
1084 sk->sk_write_space = tcp_conn->old_write_space;
Alex Aizman7ba24712005-08-04 19:30:08 -07001085 sk->sk_no_check = 0;
1086 write_unlock_bh(&sk->sk_callback_lock);
1087}
1088
1089/**
1090 * iscsi_send - generic send routine
1091 * @sk: kernel's socket
1092 * @buf: buffer to write from
1093 * @size: actual size to write
1094 * @flags: socket's flags
Alex Aizman7ba24712005-08-04 19:30:08 -07001095 */
1096static inline int
FUJITA Tomonori56851692006-01-13 18:05:44 -06001097iscsi_send(struct iscsi_conn *conn, struct iscsi_buf *buf, int size, int flags)
Alex Aizman7ba24712005-08-04 19:30:08 -07001098{
Mike Christie5bb0b552006-04-06 21:26:46 -05001099 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1100 struct socket *sk = tcp_conn->sock;
Mike Christie3219e522006-05-30 00:37:28 -05001101 int offset = buf->sg.offset + buf->sent, res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001102
Mike Christie7cae5152006-01-13 18:05:47 -06001103 /*
1104 * if we got use_sg=0 or are sending something we kmallocd
1105 * then we did not have to do kmap (kmap returns page_address)
1106 *
1107 * if we got use_sg > 0, but had to drop down, we do not
1108 * set clustering so this should only happen for that
1109 * slab case.
1110 */
1111 if (buf->use_sendmsg)
Mike Christie3219e522006-05-30 00:37:28 -05001112 res = sock_no_sendpage(sk, buf->sg.page, offset, size, flags);
Mike Christie7cae5152006-01-13 18:05:47 -06001113 else
Mike Christie3219e522006-05-30 00:37:28 -05001114 res = tcp_conn->sendpage(sk, buf->sg.page, offset, size, flags);
1115
1116 if (res >= 0) {
1117 conn->txdata_octets += res;
1118 buf->sent += res;
1119 return res;
1120 }
1121
1122 tcp_conn->sendpage_failures_cnt++;
1123 if (res == -EAGAIN)
1124 res = -ENOBUFS;
1125 else
1126 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1127 return res;
Alex Aizman7ba24712005-08-04 19:30:08 -07001128}
1129
1130/**
1131 * iscsi_sendhdr - send PDU Header via tcp_sendpage()
1132 * @conn: iscsi connection
1133 * @buf: buffer to write from
1134 * @datalen: lenght of data to be sent after the header
1135 *
1136 * Notes:
1137 * (Tx, Fast Path)
1138 **/
1139static inline int
1140iscsi_sendhdr(struct iscsi_conn *conn, struct iscsi_buf *buf, int datalen)
1141{
Alex Aizman7ba24712005-08-04 19:30:08 -07001142 int flags = 0; /* MSG_DONTWAIT; */
1143 int res, size;
1144
1145 size = buf->sg.length - buf->sent;
1146 BUG_ON(buf->sent + size > buf->sg.length);
1147 if (buf->sent + size != buf->sg.length || datalen)
1148 flags |= MSG_MORE;
1149
FUJITA Tomonori56851692006-01-13 18:05:44 -06001150 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001151 debug_tcp("sendhdr %d bytes, sent %d res %d\n", size, buf->sent, res);
1152 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001153 if (size != res)
1154 return -EAGAIN;
1155 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001156 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001157
1158 return res;
1159}
1160
1161/**
1162 * iscsi_sendpage - send one page of iSCSI Data-Out.
1163 * @conn: iscsi connection
1164 * @buf: buffer to write from
1165 * @count: remaining data
1166 * @sent: number of bytes sent
1167 *
1168 * Notes:
1169 * (Tx, Fast Path)
1170 **/
1171static inline int
1172iscsi_sendpage(struct iscsi_conn *conn, struct iscsi_buf *buf,
1173 int *count, int *sent)
1174{
Alex Aizman7ba24712005-08-04 19:30:08 -07001175 int flags = 0; /* MSG_DONTWAIT; */
1176 int res, size;
1177
1178 size = buf->sg.length - buf->sent;
1179 BUG_ON(buf->sent + size > buf->sg.length);
1180 if (size > *count)
1181 size = *count;
Mike Christieb13941f2005-09-12 21:01:28 -05001182 if (buf->sent + size != buf->sg.length || *count != size)
Alex Aizman7ba24712005-08-04 19:30:08 -07001183 flags |= MSG_MORE;
1184
FUJITA Tomonori56851692006-01-13 18:05:44 -06001185 res = iscsi_send(conn, buf, size, flags);
Alex Aizman7ba24712005-08-04 19:30:08 -07001186 debug_tcp("sendpage: %d bytes, sent %d left %d sent %d res %d\n",
1187 size, buf->sent, *count, *sent, res);
1188 if (res >= 0) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001189 *count -= res;
1190 *sent += res;
1191 if (size != res)
1192 return -EAGAIN;
1193 return 0;
Mike Christie3219e522006-05-30 00:37:28 -05001194 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001195
1196 return res;
1197}
1198
1199static inline void
Mike Christie5bb0b552006-04-06 21:26:46 -05001200iscsi_data_digest_init(struct iscsi_tcp_conn *tcp_conn,
Mike Christie62f38302006-08-31 18:09:27 -04001201 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001202{
James Bottomleyc9802cd2006-09-23 15:33:43 -05001203 crypto_hash_init(&tcp_conn->tx_hash);
Mike Christie5bb0b552006-04-06 21:26:46 -05001204 tcp_ctask->digest_count = 4;
Alex Aizman7ba24712005-08-04 19:30:08 -07001205}
1206
Alex Aizman7ba24712005-08-04 19:30:08 -07001207/**
1208 * iscsi_solicit_data_cont - initialize next Data-Out
1209 * @conn: iscsi connection
1210 * @ctask: scsi command task
1211 * @r2t: R2T info
1212 * @left: bytes left to transfer
1213 *
1214 * Notes:
1215 * Initialize next Data-Out within this R2T sequence and continue
1216 * to process next Scatter-Gather element(if any) of this SCSI command.
1217 *
1218 * Called under connection lock.
1219 **/
1220static void
1221iscsi_solicit_data_cont(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1222 struct iscsi_r2t_info *r2t, int left)
1223{
1224 struct iscsi_data *hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001225 struct scsi_cmnd *sc = ctask->sc;
1226 int new_offset;
1227
Mike Christieffbfe922006-05-18 20:31:36 -05001228 hdr = &r2t->dtask.hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001229 memset(hdr, 0, sizeof(struct iscsi_data));
1230 hdr->ttt = r2t->ttt;
1231 hdr->datasn = cpu_to_be32(r2t->solicit_datasn);
1232 r2t->solicit_datasn++;
1233 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie5bb0b552006-04-06 21:26:46 -05001234 memcpy(hdr->lun, ctask->hdr->lun, sizeof(hdr->lun));
1235 hdr->itt = ctask->hdr->itt;
Alex Aizman7ba24712005-08-04 19:30:08 -07001236 hdr->exp_statsn = r2t->exp_statsn;
1237 new_offset = r2t->data_offset + r2t->sent;
1238 hdr->offset = cpu_to_be32(new_offset);
1239 if (left > conn->max_xmit_dlength) {
1240 hton24(hdr->dlength, conn->max_xmit_dlength);
1241 r2t->data_count = conn->max_xmit_dlength;
1242 } else {
1243 hton24(hdr->dlength, left);
1244 r2t->data_count = left;
1245 hdr->flags = ISCSI_FLAG_CMD_FINAL;
1246 }
1247 conn->dataout_pdus_cnt++;
1248
Mike Christie6e458cc2006-05-18 20:31:31 -05001249 iscsi_buf_init_iov(&r2t->headbuf, (char*)hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001250 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001251
Mike Christie62f38302006-08-31 18:09:27 -04001252 if (iscsi_buf_left(&r2t->sendbuf))
1253 return;
1254
1255 if (sc->use_sg) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001256 iscsi_buf_init_sg(&r2t->sendbuf, r2t->sg);
1257 r2t->sg += 1;
Mike Christie62f38302006-08-31 18:09:27 -04001258 } else {
1259 iscsi_buf_init_iov(&r2t->sendbuf,
Alex Aizman7ba24712005-08-04 19:30:08 -07001260 (char*)sc->request_buffer + new_offset,
1261 r2t->data_count);
Mike Christie62f38302006-08-31 18:09:27 -04001262 r2t->sg = NULL;
1263 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001264}
1265
Mike Christie62f38302006-08-31 18:09:27 -04001266static void iscsi_set_padding(struct iscsi_tcp_cmd_task *tcp_ctask,
1267 unsigned long len)
Alex Aizman7ba24712005-08-04 19:30:08 -07001268{
Mike Christie62f38302006-08-31 18:09:27 -04001269 tcp_ctask->pad_count = len & (ISCSI_PAD_LEN - 1);
1270 if (!tcp_ctask->pad_count)
1271 return;
Alex Aizman7ba24712005-08-04 19:30:08 -07001272
Mike Christie62f38302006-08-31 18:09:27 -04001273 tcp_ctask->pad_count = ISCSI_PAD_LEN - tcp_ctask->pad_count;
1274 debug_scsi("write padding %d bytes\n", tcp_ctask->pad_count);
1275 tcp_ctask->xmstate |= XMSTATE_W_PAD;
Alex Aizman7ba24712005-08-04 19:30:08 -07001276}
1277
1278/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001279 * iscsi_tcp_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
Alex Aizman7ba24712005-08-04 19:30:08 -07001280 * @conn: iscsi connection
1281 * @ctask: scsi command task
1282 * @sc: scsi command
1283 **/
1284static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001285iscsi_tcp_cmd_init(struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001286{
Mike Christie5bb0b552006-04-06 21:26:46 -05001287 struct scsi_cmnd *sc = ctask->sc;
1288 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001289
Mike Christie5bb0b552006-04-06 21:26:46 -05001290 BUG_ON(__kfifo_len(tcp_ctask->r2tqueue));
Alex Aizman7ba24712005-08-04 19:30:08 -07001291
Mike Christie5bb0b552006-04-06 21:26:46 -05001292 tcp_ctask->sent = 0;
1293 tcp_ctask->sg_count = 0;
Mike Christied473cc72007-05-30 12:57:14 -05001294 tcp_ctask->exp_datasn = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001295
1296 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001297 tcp_ctask->xmstate = XMSTATE_W_HDR;
Mike Christie857ae0b2007-05-30 12:57:15 -05001298 BUG_ON(sc->request_bufflen == 0);
Mike Christie5bb0b552006-04-06 21:26:46 -05001299
Alex Aizman7ba24712005-08-04 19:30:08 -07001300 if (sc->use_sg) {
1301 struct scatterlist *sg = sc->request_buffer;
1302
Mike Christie62f38302006-08-31 18:09:27 -04001303 iscsi_buf_init_sg(&tcp_ctask->sendbuf, sg);
1304 tcp_ctask->sg = sg + 1;
Mike Christie5bb0b552006-04-06 21:26:46 -05001305 tcp_ctask->bad_sg = sg + sc->use_sg;
Mike Christie62f38302006-08-31 18:09:27 -04001306 } else {
Mike Christie5bb0b552006-04-06 21:26:46 -05001307 iscsi_buf_init_iov(&tcp_ctask->sendbuf,
1308 sc->request_buffer,
1309 sc->request_bufflen);
Mike Christie62f38302006-08-31 18:09:27 -04001310 tcp_ctask->sg = NULL;
1311 tcp_ctask->bad_sg = NULL;
Mike Christie5bb0b552006-04-06 21:26:46 -05001312 }
Mike Christieffd04362006-08-31 18:09:24 -04001313 debug_scsi("cmd [itt 0x%x total %d imm_data %d "
1314 "unsol count %d, unsol offset %d]\n",
Mike Christie857ae0b2007-05-30 12:57:15 -05001315 ctask->itt, sc->request_bufflen, ctask->imm_count,
Mike Christieffd04362006-08-31 18:09:24 -04001316 ctask->unsol_count, ctask->unsol_offset);
Mike Christie5bb0b552006-04-06 21:26:46 -05001317 } else
1318 tcp_ctask->xmstate = XMSTATE_R_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001319
Mike Christie6e458cc2006-05-18 20:31:31 -05001320 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)ctask->hdr,
Mike Christieaf973482005-09-12 21:01:32 -05001321 sizeof(struct iscsi_hdr));
Alex Aizman7ba24712005-08-04 19:30:08 -07001322}
1323
1324/**
Mike Christie5bb0b552006-04-06 21:26:46 -05001325 * iscsi_tcp_mtask_xmit - xmit management(immediate) task
Alex Aizman7ba24712005-08-04 19:30:08 -07001326 * @conn: iscsi connection
1327 * @mtask: task management task
1328 *
1329 * Notes:
1330 * The function can return -EAGAIN in which case caller must
1331 * call it again later, or recover. '0' return code means successful
1332 * xmit.
1333 *
1334 * Management xmit state machine consists of two states:
1335 * IN_PROGRESS_IMM_HEAD - PDU Header xmit in progress
1336 * IN_PROGRESS_IMM_DATA - PDU Data xmit in progress
1337 **/
1338static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001339iscsi_tcp_mtask_xmit(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001340{
Mike Christie5bb0b552006-04-06 21:26:46 -05001341 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001342 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001343
1344 debug_scsi("mtask deq [cid %d state %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001345 conn->id, tcp_mtask->xmstate, mtask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001346
Mike Christie5bb0b552006-04-06 21:26:46 -05001347 if (tcp_mtask->xmstate & XMSTATE_IMM_HDR) {
1348 tcp_mtask->xmstate &= ~XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001349 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001350 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christieaf973482005-09-12 21:01:32 -05001351 if (conn->c_stage != ISCSI_CONN_INITIAL_STAGE &&
Mike Christie30a6c652006-04-06 21:13:39 -05001352 conn->stop_stage != STOP_CONN_RECOVER &&
Mike Christieaf973482005-09-12 21:01:32 -05001353 conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001354 iscsi_hdr_digest(conn, &tcp_mtask->headbuf,
1355 (u8*)tcp_mtask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001356 rc = iscsi_sendhdr(conn, &tcp_mtask->headbuf,
1357 mtask->data_count);
1358 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001359 tcp_mtask->xmstate |= XMSTATE_IMM_HDR;
Alex Aizman7ba24712005-08-04 19:30:08 -07001360 if (mtask->data_count)
Mike Christie5bb0b552006-04-06 21:26:46 -05001361 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001362 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001363 }
1364 }
1365
Mike Christie5bb0b552006-04-06 21:26:46 -05001366 if (tcp_mtask->xmstate & XMSTATE_IMM_DATA) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001367 BUG_ON(!mtask->data_count);
Mike Christie5bb0b552006-04-06 21:26:46 -05001368 tcp_mtask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001369 /* FIXME: implement.
1370 * Virtual buffer could be spreaded across multiple pages...
1371 */
1372 do {
Mike Christie3219e522006-05-30 00:37:28 -05001373 int rc;
1374
1375 rc = iscsi_sendpage(conn, &tcp_mtask->sendbuf,
1376 &mtask->data_count, &tcp_mtask->sent);
1377 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001378 tcp_mtask->xmstate |= XMSTATE_IMM_DATA;
Mike Christie3219e522006-05-30 00:37:28 -05001379 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001380 }
1381 } while (mtask->data_count);
1382 }
1383
Mike Christie5bb0b552006-04-06 21:26:46 -05001384 BUG_ON(tcp_mtask->xmstate != XMSTATE_IDLE);
Al Virob4377352007-02-09 16:39:40 +00001385 if (mtask->hdr->itt == RESERVED_ITT) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001386 struct iscsi_session *session = conn->session;
1387
1388 spin_lock_bh(&session->lock);
1389 list_del(&conn->mtask->running);
1390 __kfifo_put(session->mgmtpool.queue, (void*)&conn->mtask,
1391 sizeof(void*));
1392 spin_unlock_bh(&session->lock);
1393 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001394 return 0;
1395}
1396
1397static inline int
Mike Christie62f38302006-08-31 18:09:27 -04001398iscsi_send_read_hdr(struct iscsi_conn *conn,
1399 struct iscsi_tcp_cmd_task *tcp_ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001400{
Mike Christie3219e522006-05-30 00:37:28 -05001401 int rc;
1402
Mike Christie5bb0b552006-04-06 21:26:46 -05001403 tcp_ctask->xmstate &= ~XMSTATE_R_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001404 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001405 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1406 (u8*)tcp_ctask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001407 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, 0);
1408 if (!rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001409 BUG_ON(tcp_ctask->xmstate != XMSTATE_IDLE);
Alex Aizman7ba24712005-08-04 19:30:08 -07001410 return 0; /* wait for Data-In */
1411 }
Mike Christie5bb0b552006-04-06 21:26:46 -05001412 tcp_ctask->xmstate |= XMSTATE_R_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001413 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001414}
1415
1416static inline int
Mike Christie62f38302006-08-31 18:09:27 -04001417iscsi_send_write_hdr(struct iscsi_conn *conn,
Mike Christie5bb0b552006-04-06 21:26:46 -05001418 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001419{
Mike Christie5bb0b552006-04-06 21:26:46 -05001420 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001421 int rc;
Mike Christie5bb0b552006-04-06 21:26:46 -05001422
1423 tcp_ctask->xmstate &= ~XMSTATE_W_HDR;
FUJITA Tomonori42f72aa2006-01-13 18:05:35 -06001424 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001425 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
1426 (u8*)tcp_ctask->hdrext);
Mike Christie3219e522006-05-30 00:37:28 -05001427 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->imm_count);
Mike Christie3219e522006-05-30 00:37:28 -05001428 if (rc) {
Mike Christie62f38302006-08-31 18:09:27 -04001429 tcp_ctask->xmstate |= XMSTATE_W_HDR;
1430 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001431 }
Mike Christie3219e522006-05-30 00:37:28 -05001432
Mike Christie62f38302006-08-31 18:09:27 -04001433 if (ctask->imm_count) {
1434 tcp_ctask->xmstate |= XMSTATE_IMM_DATA;
1435 iscsi_set_padding(tcp_ctask, ctask->imm_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001436
Mike Christie62f38302006-08-31 18:09:27 -04001437 if (ctask->conn->datadgst_en) {
1438 iscsi_data_digest_init(ctask->conn->dd_data, tcp_ctask);
1439 tcp_ctask->immdigest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001440 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001441 }
1442
Mike Christie62f38302006-08-31 18:09:27 -04001443 if (ctask->unsol_count)
1444 tcp_ctask->xmstate |= XMSTATE_UNS_HDR | XMSTATE_UNS_INIT;
Alex Aizman7ba24712005-08-04 19:30:08 -07001445 return 0;
1446}
1447
Mike Christie62f38302006-08-31 18:09:27 -04001448static int
1449iscsi_send_padding(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
1450{
1451 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1452 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1453 int sent = 0, rc;
1454
1455 if (tcp_ctask->xmstate & XMSTATE_W_PAD) {
1456 iscsi_buf_init_iov(&tcp_ctask->sendbuf, (char*)&tcp_ctask->pad,
1457 tcp_ctask->pad_count);
1458 if (conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -05001459 crypto_hash_update(&tcp_conn->tx_hash,
1460 &tcp_ctask->sendbuf.sg,
1461 tcp_ctask->sendbuf.sg.length);
Mike Christie62f38302006-08-31 18:09:27 -04001462 } else if (!(tcp_ctask->xmstate & XMSTATE_W_RESEND_PAD))
1463 return 0;
1464
1465 tcp_ctask->xmstate &= ~XMSTATE_W_PAD;
1466 tcp_ctask->xmstate &= ~XMSTATE_W_RESEND_PAD;
1467 debug_scsi("sending %d pad bytes for itt 0x%x\n",
1468 tcp_ctask->pad_count, ctask->itt);
1469 rc = iscsi_sendpage(conn, &tcp_ctask->sendbuf, &tcp_ctask->pad_count,
1470 &sent);
1471 if (rc) {
1472 debug_scsi("padding send failed %d\n", rc);
1473 tcp_ctask->xmstate |= XMSTATE_W_RESEND_PAD;
1474 }
1475 return rc;
1476}
1477
1478static int
1479iscsi_send_digest(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
1480 struct iscsi_buf *buf, uint32_t *digest)
1481{
1482 struct iscsi_tcp_cmd_task *tcp_ctask;
1483 struct iscsi_tcp_conn *tcp_conn;
1484 int rc, sent = 0;
1485
1486 if (!conn->datadgst_en)
1487 return 0;
1488
1489 tcp_ctask = ctask->dd_data;
1490 tcp_conn = conn->dd_data;
1491
1492 if (!(tcp_ctask->xmstate & XMSTATE_W_RESEND_DATA_DIGEST)) {
James Bottomleyc9802cd2006-09-23 15:33:43 -05001493 crypto_hash_final(&tcp_conn->tx_hash, (u8*)digest);
Mike Christie62f38302006-08-31 18:09:27 -04001494 iscsi_buf_init_iov(buf, (char*)digest, 4);
1495 }
1496 tcp_ctask->xmstate &= ~XMSTATE_W_RESEND_DATA_DIGEST;
1497
1498 rc = iscsi_sendpage(conn, buf, &tcp_ctask->digest_count, &sent);
1499 if (!rc)
1500 debug_scsi("sent digest 0x%x for itt 0x%x\n", *digest,
1501 ctask->itt);
1502 else {
1503 debug_scsi("sending digest 0x%x failed for itt 0x%x!\n",
1504 *digest, ctask->itt);
1505 tcp_ctask->xmstate |= XMSTATE_W_RESEND_DATA_DIGEST;
1506 }
1507 return rc;
1508}
1509
1510static int
1511iscsi_send_data(struct iscsi_cmd_task *ctask, struct iscsi_buf *sendbuf,
1512 struct scatterlist **sg, int *sent, int *count,
1513 struct iscsi_buf *digestbuf, uint32_t *digest)
1514{
1515 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1516 struct iscsi_conn *conn = ctask->conn;
1517 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1518 int rc, buf_sent, offset;
1519
1520 while (*count) {
1521 buf_sent = 0;
1522 offset = sendbuf->sent;
1523
1524 rc = iscsi_sendpage(conn, sendbuf, count, &buf_sent);
1525 *sent = *sent + buf_sent;
1526 if (buf_sent && conn->datadgst_en)
James Bottomleyc9802cd2006-09-23 15:33:43 -05001527 partial_sg_digest_update(&tcp_conn->tx_hash,
Mike Christie62f38302006-08-31 18:09:27 -04001528 &sendbuf->sg, sendbuf->sg.offset + offset,
1529 buf_sent);
1530 if (!iscsi_buf_left(sendbuf) && *sg != tcp_ctask->bad_sg) {
1531 iscsi_buf_init_sg(sendbuf, *sg);
1532 *sg = *sg + 1;
1533 }
1534
1535 if (rc)
1536 return rc;
1537 }
1538
1539 rc = iscsi_send_padding(conn, ctask);
1540 if (rc)
1541 return rc;
1542
1543 return iscsi_send_digest(conn, ctask, digestbuf, digest);
1544}
1545
1546static int
1547iscsi_send_unsol_hdr(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001548{
Mike Christie5bb0b552006-04-06 21:26:46 -05001549 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001550 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001551 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001552
Mike Christie5bb0b552006-04-06 21:26:46 -05001553 tcp_ctask->xmstate |= XMSTATE_UNS_DATA;
1554 if (tcp_ctask->xmstate & XMSTATE_UNS_INIT) {
Mike Christie62f38302006-08-31 18:09:27 -04001555 dtask = &tcp_ctask->unsol_dtask;
1556
Mike Christieffd04362006-08-31 18:09:24 -04001557 iscsi_prep_unsolicit_data_pdu(ctask, &dtask->hdr);
1558 iscsi_buf_init_iov(&tcp_ctask->headbuf, (char*)&dtask->hdr,
1559 sizeof(struct iscsi_hdr));
Mike Christieaf973482005-09-12 21:01:32 -05001560 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05001561 iscsi_hdr_digest(conn, &tcp_ctask->headbuf,
Mike Christieaf973482005-09-12 21:01:32 -05001562 (u8*)dtask->hdrext);
Mike Christie62f38302006-08-31 18:09:27 -04001563
Mike Christie5bb0b552006-04-06 21:26:46 -05001564 tcp_ctask->xmstate &= ~XMSTATE_UNS_INIT;
Mike Christie62f38302006-08-31 18:09:27 -04001565 iscsi_set_padding(tcp_ctask, ctask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001566 }
Mike Christie3219e522006-05-30 00:37:28 -05001567
1568 rc = iscsi_sendhdr(conn, &tcp_ctask->headbuf, ctask->data_count);
1569 if (rc) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001570 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1571 tcp_ctask->xmstate |= XMSTATE_UNS_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001572 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001573 }
1574
Mike Christiedd8c0d92006-08-31 18:09:28 -04001575 if (conn->datadgst_en) {
1576 dtask = &tcp_ctask->unsol_dtask;
1577 iscsi_data_digest_init(ctask->conn->dd_data, tcp_ctask);
1578 dtask->digest = 0;
1579 }
1580
Alex Aizman7ba24712005-08-04 19:30:08 -07001581 debug_scsi("uns dout [itt 0x%x dlen %d sent %d]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001582 ctask->itt, ctask->unsol_count, tcp_ctask->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001583 return 0;
1584}
1585
Mike Christie62f38302006-08-31 18:09:27 -04001586static int
1587iscsi_send_unsol_pdu(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001588{
Mike Christie5bb0b552006-04-06 21:26:46 -05001589 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie3219e522006-05-30 00:37:28 -05001590 int rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001591
Mike Christie62f38302006-08-31 18:09:27 -04001592 if (tcp_ctask->xmstate & XMSTATE_UNS_HDR) {
1593 BUG_ON(!ctask->unsol_count);
1594 tcp_ctask->xmstate &= ~XMSTATE_UNS_HDR;
1595send_hdr:
1596 rc = iscsi_send_unsol_hdr(conn, ctask);
1597 if (rc)
1598 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001599 }
1600
Mike Christie62f38302006-08-31 18:09:27 -04001601 if (tcp_ctask->xmstate & XMSTATE_UNS_DATA) {
1602 struct iscsi_data_task *dtask = &tcp_ctask->unsol_dtask;
Mike Christie5bb0b552006-04-06 21:26:46 -05001603 int start = tcp_ctask->sent;
Alex Aizman7ba24712005-08-04 19:30:08 -07001604
Mike Christie62f38302006-08-31 18:09:27 -04001605 rc = iscsi_send_data(ctask, &tcp_ctask->sendbuf, &tcp_ctask->sg,
1606 &tcp_ctask->sent, &ctask->data_count,
1607 &dtask->digestbuf, &dtask->digest);
Mike Christie5bb0b552006-04-06 21:26:46 -05001608 ctask->unsol_count -= tcp_ctask->sent - start;
Mike Christie62f38302006-08-31 18:09:27 -04001609 if (rc)
Mike Christie3219e522006-05-30 00:37:28 -05001610 return rc;
Mike Christie62f38302006-08-31 18:09:27 -04001611 tcp_ctask->xmstate &= ~XMSTATE_UNS_DATA;
1612 /*
1613 * Done with the Data-Out. Next, check if we need
1614 * to send another unsolicited Data-Out.
1615 */
1616 if (ctask->unsol_count) {
1617 debug_scsi("sending more uns\n");
1618 tcp_ctask->xmstate |= XMSTATE_UNS_INIT;
1619 goto send_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001620 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001621 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001622 return 0;
1623}
1624
Mike Christie62f38302006-08-31 18:09:27 -04001625static int iscsi_send_sol_pdu(struct iscsi_conn *conn,
1626 struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001627{
Mike Christie5bb0b552006-04-06 21:26:46 -05001628 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Mike Christie62f38302006-08-31 18:09:27 -04001629 struct iscsi_session *session = conn->session;
1630 struct iscsi_r2t_info *r2t;
1631 struct iscsi_data_task *dtask;
Mike Christie3219e522006-05-30 00:37:28 -05001632 int left, rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001633
Mike Christie62f38302006-08-31 18:09:27 -04001634 if (tcp_ctask->xmstate & XMSTATE_SOL_HDR) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001635 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
Mike Christie62f38302006-08-31 18:09:27 -04001636 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
Mike Christiedb37c502006-11-08 15:58:33 -06001637 if (!tcp_ctask->r2t) {
1638 spin_lock_bh(&session->lock);
Mike Christie62f38302006-08-31 18:09:27 -04001639 __kfifo_get(tcp_ctask->r2tqueue, (void*)&tcp_ctask->r2t,
1640 sizeof(void*));
Mike Christiedb37c502006-11-08 15:58:33 -06001641 spin_unlock_bh(&session->lock);
1642 }
Mike Christie62f38302006-08-31 18:09:27 -04001643send_hdr:
1644 r2t = tcp_ctask->r2t;
1645 dtask = &r2t->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001646
Mike Christie62f38302006-08-31 18:09:27 -04001647 if (conn->hdrdgst_en)
1648 iscsi_hdr_digest(conn, &r2t->headbuf,
1649 (u8*)dtask->hdrext);
Mike Christie62f38302006-08-31 18:09:27 -04001650 rc = iscsi_sendhdr(conn, &r2t->headbuf, r2t->data_count);
Mike Christie3219e522006-05-30 00:37:28 -05001651 if (rc) {
Mike Christie62f38302006-08-31 18:09:27 -04001652 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
1653 tcp_ctask->xmstate |= XMSTATE_SOL_HDR;
Mike Christie3219e522006-05-30 00:37:28 -05001654 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001655 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001656
Mike Christiedd8c0d92006-08-31 18:09:28 -04001657 if (conn->datadgst_en) {
1658 iscsi_data_digest_init(conn->dd_data, tcp_ctask);
1659 dtask->digest = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001660 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001661
Mike Christie62f38302006-08-31 18:09:27 -04001662 iscsi_set_padding(tcp_ctask, r2t->data_count);
1663 debug_scsi("sol dout [dsn %d itt 0x%x dlen %d sent %d]\n",
1664 r2t->solicit_datasn - 1, ctask->itt, r2t->data_count,
1665 r2t->sent);
Alex Aizman7ba24712005-08-04 19:30:08 -07001666 }
1667
Mike Christie62f38302006-08-31 18:09:27 -04001668 if (tcp_ctask->xmstate & XMSTATE_SOL_DATA) {
1669 r2t = tcp_ctask->r2t;
1670 dtask = &r2t->dtask;
Alex Aizman7ba24712005-08-04 19:30:08 -07001671
Mike Christie62f38302006-08-31 18:09:27 -04001672 rc = iscsi_send_data(ctask, &r2t->sendbuf, &r2t->sg,
1673 &r2t->sent, &r2t->data_count,
1674 &dtask->digestbuf, &dtask->digest);
1675 if (rc)
1676 return rc;
1677 tcp_ctask->xmstate &= ~XMSTATE_SOL_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001678
Mike Christie62f38302006-08-31 18:09:27 -04001679 /*
1680 * Done with this Data-Out. Next, check if we have
1681 * to send another Data-Out for this R2T.
1682 */
1683 BUG_ON(r2t->data_length - r2t->sent < 0);
1684 left = r2t->data_length - r2t->sent;
1685 if (left) {
1686 iscsi_solicit_data_cont(conn, ctask, r2t, left);
1687 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1688 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1689 goto send_hdr;
Alex Aizman7ba24712005-08-04 19:30:08 -07001690 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001691
Mike Christie62f38302006-08-31 18:09:27 -04001692 /*
1693 * Done with this R2T. Check if there are more
1694 * outstanding R2Ts ready to be processed.
1695 */
1696 spin_lock_bh(&session->lock);
1697 tcp_ctask->r2t = NULL;
1698 __kfifo_put(tcp_ctask->r2tpool.queue, (void*)&r2t,
1699 sizeof(void*));
1700 if (__kfifo_get(tcp_ctask->r2tqueue, (void*)&r2t,
1701 sizeof(void*))) {
1702 tcp_ctask->r2t = r2t;
1703 tcp_ctask->xmstate |= XMSTATE_SOL_DATA;
1704 tcp_ctask->xmstate &= ~XMSTATE_SOL_HDR;
1705 spin_unlock_bh(&session->lock);
1706 goto send_hdr;
1707 }
1708 spin_unlock_bh(&session->lock);
1709 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001710 return 0;
1711}
1712
1713static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001714iscsi_tcp_ctask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Alex Aizman7ba24712005-08-04 19:30:08 -07001715{
Mike Christie5bb0b552006-04-06 21:26:46 -05001716 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001717 int rc = 0;
1718
1719 debug_scsi("ctask deq [cid %d xmstate %x itt 0x%x]\n",
Mike Christie5bb0b552006-04-06 21:26:46 -05001720 conn->id, tcp_ctask->xmstate, ctask->itt);
Alex Aizman7ba24712005-08-04 19:30:08 -07001721
1722 /*
1723 * serialize with TMF AbortTask
1724 */
1725 if (ctask->mtask)
1726 return rc;
1727
Mike Christie3219e522006-05-30 00:37:28 -05001728 if (tcp_ctask->xmstate & XMSTATE_R_HDR)
Mike Christie62f38302006-08-31 18:09:27 -04001729 return iscsi_send_read_hdr(conn, tcp_ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001730
Mike Christie5bb0b552006-04-06 21:26:46 -05001731 if (tcp_ctask->xmstate & XMSTATE_W_HDR) {
Mike Christie62f38302006-08-31 18:09:27 -04001732 rc = iscsi_send_write_hdr(conn, ctask);
Alex Aizman7ba24712005-08-04 19:30:08 -07001733 if (rc)
1734 return rc;
1735 }
1736
Mike Christie5bb0b552006-04-06 21:26:46 -05001737 if (tcp_ctask->xmstate & XMSTATE_IMM_DATA) {
Mike Christie62f38302006-08-31 18:09:27 -04001738 rc = iscsi_send_data(ctask, &tcp_ctask->sendbuf, &tcp_ctask->sg,
1739 &tcp_ctask->sent, &ctask->imm_count,
1740 &tcp_ctask->immbuf, &tcp_ctask->immdigest);
Alex Aizman7ba24712005-08-04 19:30:08 -07001741 if (rc)
1742 return rc;
Mike Christie62f38302006-08-31 18:09:27 -04001743 tcp_ctask->xmstate &= ~XMSTATE_IMM_DATA;
Alex Aizman7ba24712005-08-04 19:30:08 -07001744 }
1745
Mike Christie62f38302006-08-31 18:09:27 -04001746 rc = iscsi_send_unsol_pdu(conn, ctask);
1747 if (rc)
1748 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001749
Mike Christie62f38302006-08-31 18:09:27 -04001750 rc = iscsi_send_sol_pdu(conn, ctask);
1751 if (rc)
1752 return rc;
Alex Aizman7ba24712005-08-04 19:30:08 -07001753
1754 return rc;
1755}
1756
Mike Christie7b8631b2006-01-13 18:05:50 -06001757static struct iscsi_cls_conn *
Mike Christie5bb0b552006-04-06 21:26:46 -05001758iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
Alex Aizman7ba24712005-08-04 19:30:08 -07001759{
Mike Christie7b8631b2006-01-13 18:05:50 -06001760 struct iscsi_conn *conn;
1761 struct iscsi_cls_conn *cls_conn;
Mike Christie5bb0b552006-04-06 21:26:46 -05001762 struct iscsi_tcp_conn *tcp_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001763
Mike Christie5bb0b552006-04-06 21:26:46 -05001764 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
Mike Christie7b8631b2006-01-13 18:05:50 -06001765 if (!cls_conn)
1766 return NULL;
1767 conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001768 /*
1769 * due to strange issues with iser these are not set
1770 * in iscsi_conn_setup
1771 */
Mike Christiebf32ed32007-02-28 17:32:17 -06001772 conn->max_recv_dlength = ISCSI_DEF_MAX_RECV_SEG_LEN;
Alex Aizman7ba24712005-08-04 19:30:08 -07001773
Mike Christie5bb0b552006-04-06 21:26:46 -05001774 tcp_conn = kzalloc(sizeof(*tcp_conn), GFP_KERNEL);
1775 if (!tcp_conn)
1776 goto tcp_conn_alloc_fail;
Alex Aizman7ba24712005-08-04 19:30:08 -07001777
Mike Christie5bb0b552006-04-06 21:26:46 -05001778 conn->dd_data = tcp_conn;
1779 tcp_conn->iscsi_conn = conn;
1780 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
1781 /* initial operational parameters */
1782 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Alex Aizman7ba24712005-08-04 19:30:08 -07001783
James Bottomleyc9802cd2006-09-23 15:33:43 -05001784 tcp_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1785 CRYPTO_ALG_ASYNC);
1786 tcp_conn->tx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001787 if (IS_ERR(tcp_conn->tx_hash.tfm)) {
1788 printk(KERN_ERR "Could not create connection due to crc32c "
1789 "loading error %ld. Make sure the crc32c module is "
1790 "built as a module or into the kernel\n",
1791 PTR_ERR(tcp_conn->tx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001792 goto free_tcp_conn;
Mike Christie0f238412007-02-28 17:32:21 -06001793 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001794
James Bottomleyc9802cd2006-09-23 15:33:43 -05001795 tcp_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0,
1796 CRYPTO_ALG_ASYNC);
1797 tcp_conn->rx_hash.flags = 0;
Mike Christie0f238412007-02-28 17:32:21 -06001798 if (IS_ERR(tcp_conn->rx_hash.tfm)) {
1799 printk(KERN_ERR "Could not create connection due to crc32c "
1800 "loading error %ld. Make sure the crc32c module is "
1801 "built as a module or into the kernel\n",
1802 PTR_ERR(tcp_conn->rx_hash.tfm));
Mike Christiedd8c0d92006-08-31 18:09:28 -04001803 goto free_tx_tfm;
Mike Christie0f238412007-02-28 17:32:21 -06001804 }
Mike Christiedd8c0d92006-08-31 18:09:28 -04001805
Mike Christie7b8631b2006-01-13 18:05:50 -06001806 return cls_conn;
Alex Aizman7ba24712005-08-04 19:30:08 -07001807
Mike Christiedd8c0d92006-08-31 18:09:28 -04001808free_tx_tfm:
James Bottomleyc9802cd2006-09-23 15:33:43 -05001809 crypto_free_hash(tcp_conn->tx_hash.tfm);
Mike Christiedd8c0d92006-08-31 18:09:28 -04001810free_tcp_conn:
1811 kfree(tcp_conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001812tcp_conn_alloc_fail:
1813 iscsi_conn_teardown(cls_conn);
Mike Christie7b8631b2006-01-13 18:05:50 -06001814 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07001815}
1816
1817static void
Mike Christie1c834692006-07-24 15:47:26 -05001818iscsi_tcp_release_conn(struct iscsi_conn *conn)
1819{
1820 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
1821
1822 if (!tcp_conn->sock)
1823 return;
1824
1825 sock_hold(tcp_conn->sock->sk);
1826 iscsi_conn_restore_callbacks(tcp_conn);
1827 sock_put(tcp_conn->sock->sk);
1828
1829 sock_release(tcp_conn->sock);
1830 tcp_conn->sock = NULL;
1831 conn->recv_lock = NULL;
1832}
1833
1834static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001835iscsi_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
Alex Aizman7ba24712005-08-04 19:30:08 -07001836{
Mike Christie7b8631b2006-01-13 18:05:50 -06001837 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05001838 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001839
Mike Christie1c834692006-07-24 15:47:26 -05001840 iscsi_tcp_release_conn(conn);
Mike Christie5bb0b552006-04-06 21:26:46 -05001841 iscsi_conn_teardown(cls_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001842
Pete Wyckoff534284a2006-11-08 15:58:31 -06001843 if (tcp_conn->tx_hash.tfm)
1844 crypto_free_hash(tcp_conn->tx_hash.tfm);
1845 if (tcp_conn->rx_hash.tfm)
1846 crypto_free_hash(tcp_conn->rx_hash.tfm);
Alex Aizman7ba24712005-08-04 19:30:08 -07001847
Mike Christie5bb0b552006-04-06 21:26:46 -05001848 kfree(tcp_conn);
Alex Aizman7ba24712005-08-04 19:30:08 -07001849}
1850
Mike Christie1c834692006-07-24 15:47:26 -05001851static void
1852iscsi_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
1853{
1854 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christied5390f52006-08-31 18:09:30 -04001855 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie1c834692006-07-24 15:47:26 -05001856
1857 iscsi_conn_stop(cls_conn, flag);
1858 iscsi_tcp_release_conn(conn);
Mike Christied5390f52006-08-31 18:09:30 -04001859 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Mike Christie1c834692006-07-24 15:47:26 -05001860}
1861
Alex Aizman7ba24712005-08-04 19:30:08 -07001862static int
Mike Christie5bb0b552006-04-06 21:26:46 -05001863iscsi_tcp_conn_bind(struct iscsi_cls_session *cls_session,
Or Gerlitz264faaa2006-05-02 19:46:36 -05001864 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
Mike Christie5bb0b552006-04-06 21:26:46 -05001865 int is_leading)
Alex Aizman7ba24712005-08-04 19:30:08 -07001866{
Mike Christie5bb0b552006-04-06 21:26:46 -05001867 struct iscsi_conn *conn = cls_conn->dd_data;
1868 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001869 struct sock *sk;
1870 struct socket *sock;
1871 int err;
1872
1873 /* lookup for existing socket */
Or Gerlitz264faaa2006-05-02 19:46:36 -05001874 sock = sockfd_lookup((int)transport_eph, &err);
Alex Aizman7ba24712005-08-04 19:30:08 -07001875 if (!sock) {
1876 printk(KERN_ERR "iscsi_tcp: sockfd_lookup failed %d\n", err);
1877 return -EEXIST;
1878 }
1879
Mike Christie5bb0b552006-04-06 21:26:46 -05001880 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
1881 if (err)
1882 return err;
Alex Aizman7ba24712005-08-04 19:30:08 -07001883
Mike Christie67a61112006-05-30 00:37:20 -05001884 /* bind iSCSI connection and socket */
1885 tcp_conn->sock = sock;
Alex Aizman7ba24712005-08-04 19:30:08 -07001886
Mike Christie67a61112006-05-30 00:37:20 -05001887 /* setup Socket parameters */
1888 sk = sock->sk;
1889 sk->sk_reuse = 1;
1890 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
1891 sk->sk_allocation = GFP_ATOMIC;
Alex Aizman7ba24712005-08-04 19:30:08 -07001892
Mike Christie67a61112006-05-30 00:37:20 -05001893 /* FIXME: disable Nagle's algorithm */
Alex Aizman7ba24712005-08-04 19:30:08 -07001894
Mike Christie67a61112006-05-30 00:37:20 -05001895 /*
1896 * Intercept TCP callbacks for sendfile like receive
1897 * processing.
1898 */
1899 conn->recv_lock = &sk->sk_callback_lock;
1900 iscsi_conn_set_callbacks(conn);
1901 tcp_conn->sendpage = tcp_conn->sock->ops->sendpage;
1902 /*
1903 * set receive state machine into initial state
1904 */
1905 tcp_conn->in_progress = IN_PROGRESS_WAIT_HEADER;
Alex Aizman7ba24712005-08-04 19:30:08 -07001906
Alex Aizman7ba24712005-08-04 19:30:08 -07001907 return 0;
1908}
1909
Mike Christie5bb0b552006-04-06 21:26:46 -05001910/* called with host lock */
Mike Christie30a6c652006-04-06 21:13:39 -05001911static void
Mike Christie5bb0b552006-04-06 21:26:46 -05001912iscsi_tcp_mgmt_init(struct iscsi_conn *conn, struct iscsi_mgmt_task *mtask,
1913 char *data, uint32_t data_size)
Mike Christie30a6c652006-04-06 21:13:39 -05001914{
Mike Christie5bb0b552006-04-06 21:26:46 -05001915 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
Mike Christie30a6c652006-04-06 21:13:39 -05001916
Mike Christie6e458cc2006-05-18 20:31:31 -05001917 iscsi_buf_init_iov(&tcp_mtask->headbuf, (char*)mtask->hdr,
1918 sizeof(struct iscsi_hdr));
Mike Christie5bb0b552006-04-06 21:26:46 -05001919 tcp_mtask->xmstate = XMSTATE_IMM_HDR;
Mike Christieb6c395e2006-07-24 15:47:15 -05001920 tcp_mtask->sent = 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07001921
Mike Christie5bb0b552006-04-06 21:26:46 -05001922 if (mtask->data_count)
1923 iscsi_buf_init_iov(&tcp_mtask->sendbuf, (char*)mtask->data,
Alex Aizman7ba24712005-08-04 19:30:08 -07001924 mtask->data_count);
Alex Aizman7ba24712005-08-04 19:30:08 -07001925}
1926
1927static int
1928iscsi_r2tpool_alloc(struct iscsi_session *session)
1929{
1930 int i;
1931 int cmd_i;
1932
1933 /*
1934 * initialize per-task: R2T pool and xmit queue
1935 */
1936 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
1937 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
Mike Christie5bb0b552006-04-06 21:26:46 -05001938 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001939
1940 /*
1941 * pre-allocated x4 as much r2ts to handle race when
1942 * target acks DataOut faster than we data_xmit() queues
1943 * could replenish r2tqueue.
1944 */
1945
1946 /* R2T pool */
Mike Christie5bb0b552006-04-06 21:26:46 -05001947 if (iscsi_pool_init(&tcp_ctask->r2tpool, session->max_r2t * 4,
1948 (void***)&tcp_ctask->r2ts,
1949 sizeof(struct iscsi_r2t_info))) {
Alex Aizman7ba24712005-08-04 19:30:08 -07001950 goto r2t_alloc_fail;
1951 }
1952
1953 /* R2T xmit queue */
Mike Christie5bb0b552006-04-06 21:26:46 -05001954 tcp_ctask->r2tqueue = kfifo_alloc(
Alex Aizman7ba24712005-08-04 19:30:08 -07001955 session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
Mike Christie5bb0b552006-04-06 21:26:46 -05001956 if (tcp_ctask->r2tqueue == ERR_PTR(-ENOMEM)) {
1957 iscsi_pool_free(&tcp_ctask->r2tpool,
1958 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07001959 goto r2t_alloc_fail;
1960 }
Alex Aizman7ba24712005-08-04 19:30:08 -07001961 }
1962
1963 return 0;
1964
1965r2t_alloc_fail:
1966 for (i = 0; i < cmd_i; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001967 struct iscsi_cmd_task *ctask = session->cmds[i];
1968 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1969
Mike Christie5bb0b552006-04-06 21:26:46 -05001970 kfifo_free(tcp_ctask->r2tqueue);
1971 iscsi_pool_free(&tcp_ctask->r2tpool,
1972 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07001973 }
1974 return -ENOMEM;
1975}
1976
1977static void
1978iscsi_r2tpool_free(struct iscsi_session *session)
1979{
1980 int i;
1981
1982 for (i = 0; i < session->cmds_max; i++) {
Mike Christie5bb0b552006-04-06 21:26:46 -05001983 struct iscsi_cmd_task *ctask = session->cmds[i];
1984 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
1985
Mike Christie5bb0b552006-04-06 21:26:46 -05001986 kfifo_free(tcp_ctask->r2tqueue);
1987 iscsi_pool_free(&tcp_ctask->r2tpool,
1988 (void**)tcp_ctask->r2ts);
Alex Aizman7ba24712005-08-04 19:30:08 -07001989 }
1990}
1991
Alex Aizman7ba24712005-08-04 19:30:08 -07001992static int
Mike Christie7b7232f2006-02-01 21:06:49 -06001993iscsi_conn_set_param(struct iscsi_cls_conn *cls_conn, enum iscsi_param param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05001994 char *buf, int buflen)
Alex Aizman7ba24712005-08-04 19:30:08 -07001995{
Mike Christie7b7232f2006-02-01 21:06:49 -06001996 struct iscsi_conn *conn = cls_conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07001997 struct iscsi_session *session = conn->session;
Mike Christie5bb0b552006-04-06 21:26:46 -05001998 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christie5c75b7f2006-06-28 12:00:26 -05001999 int value;
Alex Aizman7ba24712005-08-04 19:30:08 -07002000
Alex Aizman7ba24712005-08-04 19:30:08 -07002001 switch(param) {
Alex Aizman7ba24712005-08-04 19:30:08 -07002002 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002003 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05002004 tcp_conn->hdr_size = sizeof(struct iscsi_hdr);
Mike Christiedd8c0d92006-08-31 18:09:28 -04002005 if (conn->hdrdgst_en)
Mike Christie5bb0b552006-04-06 21:26:46 -05002006 tcp_conn->hdr_size += sizeof(__u32);
Alex Aizman7ba24712005-08-04 19:30:08 -07002007 break;
2008 case ISCSI_PARAM_DATADGST_EN:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002009 iscsi_set_param(cls_conn, param, buf, buflen);
Mike Christie5bb0b552006-04-06 21:26:46 -05002010 tcp_conn->sendpage = conn->datadgst_en ?
2011 sock_no_sendpage : tcp_conn->sock->ops->sendpage;
Alex Aizman7ba24712005-08-04 19:30:08 -07002012 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002013 case ISCSI_PARAM_MAX_R2T:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002014 sscanf(buf, "%d", &value);
Alex Aizman7ba24712005-08-04 19:30:08 -07002015 if (session->max_r2t == roundup_pow_of_two(value))
2016 break;
2017 iscsi_r2tpool_free(session);
Mike Christie5c75b7f2006-06-28 12:00:26 -05002018 iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002019 if (session->max_r2t & (session->max_r2t - 1))
2020 session->max_r2t = roundup_pow_of_two(session->max_r2t);
2021 if (iscsi_r2tpool_alloc(session))
2022 return -ENOMEM;
2023 break;
Alex Aizman7ba24712005-08-04 19:30:08 -07002024 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002025 return iscsi_set_param(cls_conn, param, buf, buflen);
Alex Aizman7ba24712005-08-04 19:30:08 -07002026 }
2027
2028 return 0;
2029}
2030
2031static int
Mike Christie5c75b7f2006-06-28 12:00:26 -05002032iscsi_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
2033 enum iscsi_param param, char *buf)
Mike Christie7b8631b2006-01-13 18:05:50 -06002034{
Mike Christie7b7232f2006-02-01 21:06:49 -06002035 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002036 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Mike Christiefd7255f2006-04-06 21:13:36 -05002037 struct inet_sock *inet;
Mike Christie5c75b7f2006-06-28 12:00:26 -05002038 struct ipv6_pinfo *np;
2039 struct sock *sk;
2040 int len;
Mike Christie7b8631b2006-01-13 18:05:50 -06002041
2042 switch(param) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002043 case ISCSI_PARAM_CONN_PORT:
2044 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002045 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002046 mutex_unlock(&conn->xmitmutex);
2047 return -EINVAL;
2048 }
2049
Mike Christie5bb0b552006-04-06 21:26:46 -05002050 inet = inet_sk(tcp_conn->sock->sk);
Mike Christie5c75b7f2006-06-28 12:00:26 -05002051 len = sprintf(buf, "%hu\n", be16_to_cpu(inet->dport));
Mike Christiefd7255f2006-04-06 21:13:36 -05002052 mutex_unlock(&conn->xmitmutex);
Mike Christie8d2860b2006-05-02 19:46:47 -05002053 break;
Mike Christiefd7255f2006-04-06 21:13:36 -05002054 case ISCSI_PARAM_CONN_ADDRESS:
2055 mutex_lock(&conn->xmitmutex);
Mike Christie5bb0b552006-04-06 21:26:46 -05002056 if (!tcp_conn->sock) {
Mike Christiefd7255f2006-04-06 21:13:36 -05002057 mutex_unlock(&conn->xmitmutex);
2058 return -EINVAL;
2059 }
2060
Mike Christie5bb0b552006-04-06 21:26:46 -05002061 sk = tcp_conn->sock->sk;
Mike Christiefd7255f2006-04-06 21:13:36 -05002062 if (sk->sk_family == PF_INET) {
2063 inet = inet_sk(sk);
FUJITA Tomonori94cb3f82006-12-17 12:10:27 -06002064 len = sprintf(buf, NIPQUAD_FMT "\n",
Mike Christiefd7255f2006-04-06 21:13:36 -05002065 NIPQUAD(inet->daddr));
2066 } else {
2067 np = inet6_sk(sk);
FUJITA Tomonori94cb3f82006-12-17 12:10:27 -06002068 len = sprintf(buf, NIP6_FMT "\n", NIP6(np->daddr));
Mike Christiefd7255f2006-04-06 21:13:36 -05002069 }
2070 mutex_unlock(&conn->xmitmutex);
2071 break;
2072 default:
Mike Christie5c75b7f2006-06-28 12:00:26 -05002073 return iscsi_conn_get_param(cls_conn, param, buf);
Mike Christiefd7255f2006-04-06 21:13:36 -05002074 }
2075
2076 return len;
2077}
2078
Alex Aizman7ba24712005-08-04 19:30:08 -07002079static void
Mike Christie7b7232f2006-02-01 21:06:49 -06002080iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
Alex Aizman7ba24712005-08-04 19:30:08 -07002081{
Mike Christie7b7232f2006-02-01 21:06:49 -06002082 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie5bb0b552006-04-06 21:26:46 -05002083 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
Alex Aizman7ba24712005-08-04 19:30:08 -07002084
2085 stats->txdata_octets = conn->txdata_octets;
2086 stats->rxdata_octets = conn->rxdata_octets;
2087 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
2088 stats->dataout_pdus = conn->dataout_pdus_cnt;
2089 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
2090 stats->datain_pdus = conn->datain_pdus_cnt;
2091 stats->r2t_pdus = conn->r2t_pdus_cnt;
2092 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
2093 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
2094 stats->custom_length = 3;
2095 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
Mike Christie5bb0b552006-04-06 21:26:46 -05002096 stats->custom[0].value = tcp_conn->sendpage_failures_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002097 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
Mike Christie5bb0b552006-04-06 21:26:46 -05002098 stats->custom[1].value = tcp_conn->discontiguous_hdr_cnt;
Alex Aizman7ba24712005-08-04 19:30:08 -07002099 strcpy(stats->custom[2].desc, "eh_abort_cnt");
2100 stats->custom[2].value = conn->eh_abort_cnt;
2101}
2102
Mike Christie5bb0b552006-04-06 21:26:46 -05002103static struct iscsi_cls_session *
2104iscsi_tcp_session_create(struct iscsi_transport *iscsit,
2105 struct scsi_transport_template *scsit,
2106 uint32_t initial_cmdsn, uint32_t *hostno)
Alex Aizman7ba24712005-08-04 19:30:08 -07002107{
Mike Christie5bb0b552006-04-06 21:26:46 -05002108 struct iscsi_cls_session *cls_session;
2109 struct iscsi_session *session;
2110 uint32_t hn;
2111 int cmd_i;
Alex Aizman7ba24712005-08-04 19:30:08 -07002112
Mike Christie5bb0b552006-04-06 21:26:46 -05002113 cls_session = iscsi_session_setup(iscsit, scsit,
2114 sizeof(struct iscsi_tcp_cmd_task),
2115 sizeof(struct iscsi_tcp_mgmt_task),
2116 initial_cmdsn, &hn);
2117 if (!cls_session)
2118 return NULL;
2119 *hostno = hn;
Alex Aizman7ba24712005-08-04 19:30:08 -07002120
Mike Christie5bb0b552006-04-06 21:26:46 -05002121 session = class_to_transport_session(cls_session);
2122 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2123 struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
2124 struct iscsi_tcp_cmd_task *tcp_ctask = ctask->dd_data;
2125
2126 ctask->hdr = &tcp_ctask->hdr;
2127 }
2128
2129 for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
2130 struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
2131 struct iscsi_tcp_mgmt_task *tcp_mtask = mtask->dd_data;
2132
2133 mtask->hdr = &tcp_mtask->hdr;
2134 }
2135
2136 if (iscsi_r2tpool_alloc(class_to_transport_session(cls_session)))
2137 goto r2tpool_alloc_fail;
2138
2139 return cls_session;
2140
2141r2tpool_alloc_fail:
2142 iscsi_session_teardown(cls_session);
2143 return NULL;
Alex Aizman7ba24712005-08-04 19:30:08 -07002144}
2145
Mike Christie5bb0b552006-04-06 21:26:46 -05002146static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2147{
Mike Christie5bb0b552006-04-06 21:26:46 -05002148 iscsi_r2tpool_free(class_to_transport_session(cls_session));
2149 iscsi_session_teardown(cls_session);
2150}
2151
2152static struct scsi_host_template iscsi_sht = {
Mike Christief4246b32006-07-24 15:47:54 -05002153 .name = "iSCSI Initiator over TCP/IP",
Mike Christie5bb0b552006-04-06 21:26:46 -05002154 .queuecommand = iscsi_queuecommand,
2155 .change_queue_depth = iscsi_change_queue_depth,
2156 .can_queue = ISCSI_XMIT_CMDS_MAX - 1,
2157 .sg_tablesize = ISCSI_SG_TABLESIZE,
Mike Christie8231f0e2007-02-28 17:32:20 -06002158 .max_sectors = 0xFFFF,
Mike Christie5bb0b552006-04-06 21:26:46 -05002159 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
2160 .eh_abort_handler = iscsi_eh_abort,
2161 .eh_host_reset_handler = iscsi_eh_host_reset,
2162 .use_clustering = DISABLE_CLUSTERING,
2163 .proc_name = "iscsi_tcp",
2164 .this_id = -1,
2165};
2166
Alex Aizman7ba24712005-08-04 19:30:08 -07002167static struct iscsi_transport iscsi_tcp_transport = {
2168 .owner = THIS_MODULE,
2169 .name = "tcp",
2170 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
2171 | CAP_DATADGST,
Mike Christiefd7255f2006-04-06 21:13:36 -05002172 .param_mask = ISCSI_MAX_RECV_DLENGTH |
2173 ISCSI_MAX_XMIT_DLENGTH |
2174 ISCSI_HDRDGST_EN |
2175 ISCSI_DATADGST_EN |
2176 ISCSI_INITIAL_R2T_EN |
2177 ISCSI_MAX_R2T |
2178 ISCSI_IMM_DATA_EN |
2179 ISCSI_FIRST_BURST |
2180 ISCSI_MAX_BURST |
2181 ISCSI_PDU_INORDER_EN |
2182 ISCSI_DATASEQ_INORDER_EN |
2183 ISCSI_ERL |
2184 ISCSI_CONN_PORT |
Mike Christie8d2860b2006-05-02 19:46:47 -05002185 ISCSI_CONN_ADDRESS |
Mike Christie5c75b7f2006-06-28 12:00:26 -05002186 ISCSI_EXP_STATSN |
2187 ISCSI_PERSISTENT_PORT |
2188 ISCSI_PERSISTENT_ADDRESS |
2189 ISCSI_TARGET_NAME |
2190 ISCSI_TPGT,
Mike Christie8ad57812007-05-30 12:57:13 -05002191 .host_param_mask = ISCSI_HOST_HWADDRESS |
2192 ISCSI_HOST_INITIATOR_NAME,
Alex Aizman7ba24712005-08-04 19:30:08 -07002193 .host_template = &iscsi_sht,
Mike Christie7b8631b2006-01-13 18:05:50 -06002194 .conndata_size = sizeof(struct iscsi_conn),
Alex Aizman7ba24712005-08-04 19:30:08 -07002195 .max_conn = 1,
2196 .max_cmd_len = ISCSI_TCP_MAX_CMD_LEN,
Mike Christie5bb0b552006-04-06 21:26:46 -05002197 /* session management */
2198 .create_session = iscsi_tcp_session_create,
2199 .destroy_session = iscsi_tcp_session_destroy,
2200 /* connection management */
2201 .create_conn = iscsi_tcp_conn_create,
2202 .bind_conn = iscsi_tcp_conn_bind,
2203 .destroy_conn = iscsi_tcp_conn_destroy,
Alex Aizman7ba24712005-08-04 19:30:08 -07002204 .set_param = iscsi_conn_set_param,
Mike Christie5c75b7f2006-06-28 12:00:26 -05002205 .get_conn_param = iscsi_tcp_conn_get_param,
Mike Christie7b8631b2006-01-13 18:05:50 -06002206 .get_session_param = iscsi_session_get_param,
Alex Aizman7ba24712005-08-04 19:30:08 -07002207 .start_conn = iscsi_conn_start,
Mike Christie1c834692006-07-24 15:47:26 -05002208 .stop_conn = iscsi_tcp_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -05002209 /* iscsi host params */
2210 .get_host_param = iscsi_host_get_param,
2211 .set_host_param = iscsi_host_set_param,
Mike Christie5bb0b552006-04-06 21:26:46 -05002212 /* IO */
Alex Aizman7ba24712005-08-04 19:30:08 -07002213 .send_pdu = iscsi_conn_send_pdu,
2214 .get_stats = iscsi_conn_get_stats,
Mike Christie5bb0b552006-04-06 21:26:46 -05002215 .init_cmd_task = iscsi_tcp_cmd_init,
2216 .init_mgmt_task = iscsi_tcp_mgmt_init,
2217 .xmit_cmd_task = iscsi_tcp_ctask_xmit,
2218 .xmit_mgmt_task = iscsi_tcp_mtask_xmit,
2219 .cleanup_cmd_task = iscsi_tcp_cleanup_ctask,
2220 /* recovery */
Mike Christie30a6c652006-04-06 21:13:39 -05002221 .session_recovery_timedout = iscsi_session_recovery_timedout,
Alex Aizman7ba24712005-08-04 19:30:08 -07002222};
2223
2224static int __init
2225iscsi_tcp_init(void)
2226{
Alex Aizman7ba24712005-08-04 19:30:08 -07002227 if (iscsi_max_lun < 1) {
Or Gerlitzbe2df722006-05-02 19:46:43 -05002228 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
2229 iscsi_max_lun);
Alex Aizman7ba24712005-08-04 19:30:08 -07002230 return -EINVAL;
2231 }
2232 iscsi_tcp_transport.max_lun = iscsi_max_lun;
2233
Mike Christie7b8631b2006-01-13 18:05:50 -06002234 if (!iscsi_register_transport(&iscsi_tcp_transport))
Mike Christieffbfe922006-05-18 20:31:36 -05002235 return -ENODEV;
Alex Aizman7ba24712005-08-04 19:30:08 -07002236
Mike Christie7b8631b2006-01-13 18:05:50 -06002237 return 0;
Alex Aizman7ba24712005-08-04 19:30:08 -07002238}
2239
2240static void __exit
2241iscsi_tcp_exit(void)
2242{
2243 iscsi_unregister_transport(&iscsi_tcp_transport);
Alex Aizman7ba24712005-08-04 19:30:08 -07002244}
2245
2246module_init(iscsi_tcp_init);
2247module_exit(iscsi_tcp_exit);