blob: b039160ebafd81f4e1d801e594eff385970cbb6e [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 */
Mike Christie62f38302006-08-31 18:09:27 -040034#define XMSTATE_IDLE 0x0
Mike Christie218432c2007-05-30 12:57:17 -050035#define XMSTATE_CMD_HDR_INIT 0x1
36#define XMSTATE_CMD_HDR_XMIT 0x2
Mike Christie62f38302006-08-31 18:09:27 -040037#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_W_RESEND_PAD 0x400
46#define XMSTATE_W_RESEND_DATA_DIGEST 0x800
Mike Christie218432c2007-05-30 12:57:17 -050047#define XMSTATE_IMM_HDR_INIT 0x1000
48#define XMSTATE_SOL_HDR_INIT 0x2000
Alex Aizmanc213ca02005-08-04 19:30:31 -070049
Alex Aizmanc213ca02005-08-04 19:30:31 -070050#define ISCSI_PAD_LEN 4
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
Herbert Xudc64ddf2006-08-24 18:45:50 +100054struct crypto_hash;
Mike Christie5bb0b552006-04-06 21:26:46 -050055struct socket;
Alex Aizmanc213ca02005-08-04 19:30:31 -070056
57/* Socket connection recieve helper */
58struct iscsi_tcp_recv {
59 struct iscsi_hdr *hdr;
60 struct sk_buff *skb;
61 int offset;
62 int len;
63 int hdr_offset;
64 int copy;
65 int copied;
66 int padding;
67 struct iscsi_cmd_task *ctask; /* current cmd in progress */
68
69 /* copied and flipped values */
Alex Aizmanc213ca02005-08-04 19:30:31 -070070 int datalen;
Alex Aizmanc213ca02005-08-04 19:30:31 -070071 int datadgst;
Mike Christie5bb0b552006-04-06 21:26:46 -050072 char zero_copy_hdr;
Alex Aizmanc213ca02005-08-04 19:30:31 -070073};
74
Mike Christie5bb0b552006-04-06 21:26:46 -050075struct iscsi_tcp_conn {
76 struct iscsi_conn *iscsi_conn;
77 struct socket *sock;
Alex Aizmanc213ca02005-08-04 19:30:31 -070078 struct iscsi_hdr hdr; /* header placeholder */
79 char hdrext[4*sizeof(__u16) +
80 sizeof(__u32)];
81 int data_copied;
Alex Aizmanc213ca02005-08-04 19:30:31 -070082 int stop_stage; /* conn_stop() flag: *
83 * stop to recover, *
84 * stop to terminate */
85 /* iSCSI connection-wide sequencing */
Alex Aizmanc213ca02005-08-04 19:30:31 -070086 int hdr_size; /* PDU header size */
Alex Aizmanc213ca02005-08-04 19:30:31 -070087
Alex Aizmanc213ca02005-08-04 19:30:31 -070088 /* control data */
Alex Aizmanc213ca02005-08-04 19:30:31 -070089 struct iscsi_tcp_recv in; /* TCP receive context */
Alex Aizmanc213ca02005-08-04 19:30:31 -070090 int in_progress; /* connection state machine */
Alex Aizmanc213ca02005-08-04 19:30:31 -070091
92 /* old values for socket callbacks */
93 void (*old_data_ready)(struct sock *, int);
94 void (*old_state_change)(struct sock *);
95 void (*old_write_space)(struct sock *);
96
Mike Christiedd8c0d92006-08-31 18:09:28 -040097 /* data and header digests */
James Bottomleyc9802cd2006-09-23 15:33:43 -050098 struct hash_desc tx_hash; /* CRC32C (Tx) */
99 struct hash_desc rx_hash; /* CRC32C (Rx) */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700100
Mike Christie5bb0b552006-04-06 21:26:46 -0500101 /* MIB custom statistics */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700102 uint32_t sendpage_failures_cnt;
103 uint32_t discontiguous_hdr_cnt;
FUJITA Tomonori56851692006-01-13 18:05:44 -0600104
105 ssize_t (*sendpage)(struct socket *, struct page *, int, size_t, int);
Alex Aizmanc213ca02005-08-04 19:30:31 -0700106};
107
Alex Aizmanc213ca02005-08-04 19:30:31 -0700108struct iscsi_buf {
109 struct scatterlist sg;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700110 unsigned int sent;
Mike Christie7cae5152006-01-13 18:05:47 -0600111 char use_sendmsg;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700112};
113
114struct iscsi_data_task {
115 struct iscsi_data hdr; /* PDU */
116 char hdrext[sizeof(__u32)]; /* Header-Digest */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700117 struct iscsi_buf digestbuf; /* digest buffer */
118 uint32_t digest; /* data digest */
119};
Alex Aizmanc213ca02005-08-04 19:30:31 -0700120
Mike Christie5bb0b552006-04-06 21:26:46 -0500121struct iscsi_tcp_mgmt_task {
122 struct iscsi_hdr hdr;
123 char hdrext[sizeof(__u32)]; /* Header-Digest */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700124 int xmstate; /* mgmt xmit progress */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700125 struct iscsi_buf headbuf; /* header buffer */
126 struct iscsi_buf sendbuf; /* in progress buffer */
127 int sent;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700128};
129
130struct iscsi_r2t_info {
131 __be32 ttt; /* copied from R2T */
132 __be32 exp_statsn; /* copied from R2T */
133 uint32_t data_length; /* copied from R2T */
134 uint32_t data_offset; /* copied from R2T */
135 struct iscsi_buf headbuf; /* Data-Out Header Buffer */
136 struct iscsi_buf sendbuf; /* Data-Out in progress buffer*/
137 int sent; /* R2T sequence progress */
138 int data_count; /* DATA-Out payload progress */
139 struct scatterlist *sg; /* per-R2T SG list */
140 int solicit_datasn;
Mike Christieffbfe922006-05-18 20:31:36 -0500141 struct iscsi_data_task dtask; /* which data task */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700142};
143
Mike Christie5bb0b552006-04-06 21:26:46 -0500144struct iscsi_tcp_cmd_task {
145 struct iscsi_cmd hdr;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700146 char hdrext[4*sizeof(__u16)+ /* AHS */
147 sizeof(__u32)]; /* HeaderDigest */
148 char pad[ISCSI_PAD_LEN];
Mike Christie5bb0b552006-04-06 21:26:46 -0500149 int pad_count; /* padded bytes */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700150 struct iscsi_buf headbuf; /* header buf (xmit) */
151 struct iscsi_buf sendbuf; /* in progress buffer*/
Mike Christie5bb0b552006-04-06 21:26:46 -0500152 int xmstate; /* xmit xtate machine */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700153 int sent;
154 struct scatterlist *sg; /* per-cmd SG list */
155 struct scatterlist *bad_sg; /* assert statement */
156 int sg_count; /* SG's to process */
Mike Christied473cc72007-05-30 12:57:14 -0500157 uint32_t exp_datasn; /* expected target's R2TSN/DataSN */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700158 int data_offset;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700159 struct iscsi_r2t_info *r2t; /* in progress R2T */
160 struct iscsi_queue r2tpool;
161 struct kfifo *r2tqueue;
162 struct iscsi_r2t_info **r2ts;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700163 int digest_count;
164 uint32_t immdigest; /* for imm data */
165 struct iscsi_buf immbuf; /* for imm data digest */
Mike Christieffbfe922006-05-18 20:31:36 -0500166 struct iscsi_data_task unsol_dtask; /* unsol data task */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700167};
168
169#endif /* ISCSI_H */