blob: 6a4ee704e46e8cf29dbea2423f1a9f38de8c27d6 [file] [log] [blame]
Alex Aizmanc213ca02005-08-04 19:30:31 -07001/*
2 * iSCSI Initiator TCP Transport
3 * Copyright (C) 2004 Dmitry Yusupov
4 * Copyright (C) 2004 Alex Aizman
Mike Christie5bb0b552006-04-06 21:26:46 -05005 * Copyright (C) 2005 - 2006 Mike Christie
6 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
Alex Aizmanc213ca02005-08-04 19:30:31 -07007 * maintained by open-iscsi@googlegroups.com
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published
11 * by the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * See the file COPYING included with this distribution for more details.
20 */
21
22#ifndef ISCSI_TCP_H
23#define ISCSI_TCP_H
24
Mike Christie5bb0b552006-04-06 21:26:46 -050025#include <scsi/libiscsi.h>
Alex Aizmanc213ca02005-08-04 19:30:31 -070026
27/* Socket's Receive state machine */
28#define IN_PROGRESS_WAIT_HEADER 0x0
29#define IN_PROGRESS_HEADER_GATHER 0x1
30#define IN_PROGRESS_DATA_RECV 0x2
31#define IN_PROGRESS_DDIGEST_RECV 0x3
32
Alex Aizmanc213ca02005-08-04 19:30:31 -070033/* xmit state machine */
34#define XMSTATE_IDLE 0x0
35#define XMSTATE_R_HDR 0x1
36#define XMSTATE_W_HDR 0x2
37#define XMSTATE_IMM_HDR 0x4
38#define XMSTATE_IMM_DATA 0x8
39#define XMSTATE_UNS_INIT 0x10
40#define XMSTATE_UNS_HDR 0x20
41#define XMSTATE_UNS_DATA 0x40
42#define XMSTATE_SOL_HDR 0x80
43#define XMSTATE_SOL_DATA 0x100
44#define XMSTATE_W_PAD 0x200
45#define XMSTATE_DATA_DIGEST 0x400
46
Alex Aizmanc213ca02005-08-04 19:30:31 -070047#define ISCSI_CONN_RCVBUF_MIN 262144
48#define ISCSI_CONN_SNDBUF_MIN 262144
49#define ISCSI_PAD_LEN 4
50#define ISCSI_R2T_MAX 16
Alex Aizmanc213ca02005-08-04 19:30:31 -070051#define ISCSI_SG_TABLESIZE SG_ALL
Alex Aizmanc213ca02005-08-04 19:30:31 -070052#define ISCSI_TCP_MAX_CMD_LEN 16
53
Mike Christie5bb0b552006-04-06 21:26:46 -050054struct socket;
Alex Aizmanc213ca02005-08-04 19:30:31 -070055
56/* Socket connection recieve helper */
57struct iscsi_tcp_recv {
58 struct iscsi_hdr *hdr;
59 struct sk_buff *skb;
60 int offset;
61 int len;
62 int hdr_offset;
63 int copy;
64 int copied;
65 int padding;
66 struct iscsi_cmd_task *ctask; /* current cmd in progress */
67
68 /* copied and flipped values */
Alex Aizmanc213ca02005-08-04 19:30:31 -070069 int datalen;
Alex Aizmanc213ca02005-08-04 19:30:31 -070070 int datadgst;
Mike Christie5bb0b552006-04-06 21:26:46 -050071 char zero_copy_hdr;
Alex Aizmanc213ca02005-08-04 19:30:31 -070072};
73
Mike Christie5bb0b552006-04-06 21:26:46 -050074struct iscsi_tcp_conn {
75 struct iscsi_conn *iscsi_conn;
76 struct socket *sock;
Alex Aizmanc213ca02005-08-04 19:30:31 -070077 struct iscsi_hdr hdr; /* header placeholder */
78 char hdrext[4*sizeof(__u16) +
79 sizeof(__u32)];
80 int data_copied;
Alex Aizmanc213ca02005-08-04 19:30:31 -070081 int stop_stage; /* conn_stop() flag: *
82 * stop to recover, *
83 * stop to terminate */
84 /* iSCSI connection-wide sequencing */
Alex Aizmanc213ca02005-08-04 19:30:31 -070085 int hdr_size; /* PDU header size */
Alex Aizmanc213ca02005-08-04 19:30:31 -070086
87 struct crypto_tfm *rx_tfm; /* CRC32C (Rx) */
88 struct crypto_tfm *data_rx_tfm; /* CRC32C (Rx) for data */
89
90 /* control data */
Alex Aizmanc213ca02005-08-04 19:30:31 -070091 struct iscsi_tcp_recv in; /* TCP receive context */
Alex Aizmanc213ca02005-08-04 19:30:31 -070092 int in_progress; /* connection state machine */
Alex Aizmanc213ca02005-08-04 19:30:31 -070093
94 /* old values for socket callbacks */
95 void (*old_data_ready)(struct sock *, int);
96 void (*old_state_change)(struct sock *);
97 void (*old_write_space)(struct sock *);
98
99 /* xmit */
100 struct crypto_tfm *tx_tfm; /* CRC32C (Tx) */
101 struct crypto_tfm *data_tx_tfm; /* CRC32C (Tx) for data */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700102
Mike Christie5bb0b552006-04-06 21:26:46 -0500103 /* MIB custom statistics */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700104 uint32_t sendpage_failures_cnt;
105 uint32_t discontiguous_hdr_cnt;
FUJITA Tomonori56851692006-01-13 18:05:44 -0600106
107 ssize_t (*sendpage)(struct socket *, struct page *, int, size_t, int);
Alex Aizmanc213ca02005-08-04 19:30:31 -0700108};
109
Alex Aizmanc213ca02005-08-04 19:30:31 -0700110struct iscsi_buf {
111 struct scatterlist sg;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700112 unsigned int sent;
Mike Christie7cae5152006-01-13 18:05:47 -0600113 char use_sendmsg;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700114};
115
116struct iscsi_data_task {
117 struct iscsi_data hdr; /* PDU */
118 char hdrext[sizeof(__u32)]; /* Header-Digest */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700119 struct iscsi_buf digestbuf; /* digest buffer */
120 uint32_t digest; /* data digest */
121};
Alex Aizmanc213ca02005-08-04 19:30:31 -0700122
Mike Christie5bb0b552006-04-06 21:26:46 -0500123struct iscsi_tcp_mgmt_task {
124 struct iscsi_hdr hdr;
125 char hdrext[sizeof(__u32)]; /* Header-Digest */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700126 int xmstate; /* mgmt xmit progress */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700127 struct iscsi_buf headbuf; /* header buffer */
128 struct iscsi_buf sendbuf; /* in progress buffer */
129 int sent;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700130};
131
132struct iscsi_r2t_info {
133 __be32 ttt; /* copied from R2T */
134 __be32 exp_statsn; /* copied from R2T */
135 uint32_t data_length; /* copied from R2T */
136 uint32_t data_offset; /* copied from R2T */
137 struct iscsi_buf headbuf; /* Data-Out Header Buffer */
138 struct iscsi_buf sendbuf; /* Data-Out in progress buffer*/
139 int sent; /* R2T sequence progress */
140 int data_count; /* DATA-Out payload progress */
141 struct scatterlist *sg; /* per-R2T SG list */
142 int solicit_datasn;
Mike Christieffbfe922006-05-18 20:31:36 -0500143 struct iscsi_data_task dtask; /* which data task */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700144};
145
Mike Christie5bb0b552006-04-06 21:26:46 -0500146struct iscsi_tcp_cmd_task {
147 struct iscsi_cmd hdr;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700148 char hdrext[4*sizeof(__u16)+ /* AHS */
149 sizeof(__u32)]; /* HeaderDigest */
150 char pad[ISCSI_PAD_LEN];
Mike Christie5bb0b552006-04-06 21:26:46 -0500151 int pad_count; /* padded bytes */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700152 struct iscsi_buf headbuf; /* header buf (xmit) */
153 struct iscsi_buf sendbuf; /* in progress buffer*/
Mike Christie5bb0b552006-04-06 21:26:46 -0500154 int xmstate; /* xmit xtate machine */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700155 int sent;
156 struct scatterlist *sg; /* per-cmd SG list */
157 struct scatterlist *bad_sg; /* assert statement */
158 int sg_count; /* SG's to process */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700159 uint32_t exp_r2tsn;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700160 int r2t_data_count; /* R2T Data-Out bytes */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700161 int data_offset;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700162 struct iscsi_r2t_info *r2t; /* in progress R2T */
163 struct iscsi_queue r2tpool;
164 struct kfifo *r2tqueue;
165 struct iscsi_r2t_info **r2ts;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700166 uint32_t datadigest; /* for recover digest */
167 int digest_count;
168 uint32_t immdigest; /* for imm data */
169 struct iscsi_buf immbuf; /* for imm data digest */
Mike Christieffbfe922006-05-18 20:31:36 -0500170 struct iscsi_data_task *dtask; /* data task in progress*/
171 struct iscsi_data_task unsol_dtask; /* unsol data task */
172 int digest_offset; /* for partial buff digest */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700173};
174
175#endif /* ISCSI_H */