Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 1 | /* |
| 2 | * iSCSI Initiator TCP Transport |
| 3 | * Copyright (C) 2004 Dmitry Yusupov |
| 4 | * Copyright (C) 2004 Alex Aizman |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 5 | * Copyright (C) 2005 - 2006 Mike Christie |
| 6 | * Copyright (C) 2006 Red Hat, Inc. All rights reserved. |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 7 | * 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 Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 25 | #include <scsi/libiscsi.h> |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 26 | |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 27 | /* xmit state machine */ |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 28 | #define XMSTATE_IDLE 0x0 |
| 29 | #define XMSTATE_CMD_HDR_INIT 0x1 |
| 30 | #define XMSTATE_CMD_HDR_XMIT 0x2 |
| 31 | #define XMSTATE_IMM_HDR 0x4 |
| 32 | #define XMSTATE_IMM_DATA 0x8 |
| 33 | #define XMSTATE_UNS_INIT 0x10 |
| 34 | #define XMSTATE_UNS_HDR 0x20 |
| 35 | #define XMSTATE_UNS_DATA 0x40 |
| 36 | #define XMSTATE_SOL_HDR 0x80 |
| 37 | #define XMSTATE_SOL_DATA 0x100 |
| 38 | #define XMSTATE_W_PAD 0x200 |
| 39 | #define XMSTATE_W_RESEND_PAD 0x400 |
| 40 | #define XMSTATE_W_RESEND_DATA_DIGEST 0x800 |
| 41 | #define XMSTATE_IMM_HDR_INIT 0x1000 |
| 42 | #define XMSTATE_SOL_HDR_INIT 0x2000 |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 43 | |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 44 | #define ISCSI_SG_TABLESIZE SG_ALL |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 45 | #define ISCSI_TCP_MAX_CMD_LEN 16 |
| 46 | |
Herbert Xu | dc64ddf | 2006-08-24 18:45:50 +1000 | [diff] [blame] | 47 | struct crypto_hash; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 48 | struct socket; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 49 | struct iscsi_tcp_conn; |
| 50 | struct iscsi_chunk; |
| 51 | |
| 52 | typedef int iscsi_chunk_done_fn_t(struct iscsi_tcp_conn *, |
| 53 | struct iscsi_chunk *); |
| 54 | |
| 55 | struct iscsi_chunk { |
| 56 | unsigned char *data; |
| 57 | unsigned int size; |
| 58 | unsigned int copied; |
| 59 | unsigned int total_size; |
| 60 | unsigned int total_copied; |
| 61 | |
| 62 | struct hash_desc *hash; |
| 63 | unsigned char recv_digest[ISCSI_DIGEST_SIZE]; |
| 64 | unsigned char digest[ISCSI_DIGEST_SIZE]; |
| 65 | unsigned int digest_len; |
| 66 | |
| 67 | struct scatterlist *sg; |
| 68 | void *sg_mapped; |
| 69 | unsigned int sg_offset; |
| 70 | unsigned int sg_index; |
| 71 | unsigned int sg_count; |
| 72 | |
| 73 | iscsi_chunk_done_fn_t *done; |
| 74 | }; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 75 | |
| 76 | /* Socket connection recieve helper */ |
| 77 | struct iscsi_tcp_recv { |
| 78 | struct iscsi_hdr *hdr; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 79 | struct iscsi_chunk chunk; |
| 80 | |
| 81 | /* Allocate buffer for BHS + AHS */ |
| 82 | uint32_t hdr_buf[64]; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 83 | |
| 84 | /* copied and flipped values */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 85 | int datalen; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | /* Socket connection send helper */ |
| 89 | struct iscsi_tcp_send { |
| 90 | struct iscsi_hdr *hdr; |
| 91 | struct iscsi_chunk chunk; |
| 92 | struct iscsi_chunk data_chunk; |
| 93 | |
| 94 | /* Allocate buffer for BHS + AHS */ |
| 95 | uint32_t hdr_buf[64]; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 96 | }; |
| 97 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 98 | struct iscsi_tcp_conn { |
| 99 | struct iscsi_conn *iscsi_conn; |
| 100 | struct socket *sock; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 101 | int stop_stage; /* conn_stop() flag: * |
| 102 | * stop to recover, * |
| 103 | * stop to terminate */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 104 | /* control data */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 105 | struct iscsi_tcp_recv in; /* TCP receive context */ |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 106 | struct iscsi_tcp_send out; /* TCP send context */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 107 | |
| 108 | /* old values for socket callbacks */ |
| 109 | void (*old_data_ready)(struct sock *, int); |
| 110 | void (*old_state_change)(struct sock *); |
| 111 | void (*old_write_space)(struct sock *); |
| 112 | |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 113 | /* data and header digests */ |
James Bottomley | c9802cd | 2006-09-23 15:33:43 -0500 | [diff] [blame] | 114 | struct hash_desc tx_hash; /* CRC32C (Tx) */ |
| 115 | struct hash_desc rx_hash; /* CRC32C (Rx) */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 116 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 117 | /* MIB custom statistics */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 118 | uint32_t sendpage_failures_cnt; |
| 119 | uint32_t discontiguous_hdr_cnt; |
FUJITA Tomonori | 5685169 | 2006-01-13 18:05:44 -0600 | [diff] [blame] | 120 | |
| 121 | ssize_t (*sendpage)(struct socket *, struct page *, int, size_t, int); |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 122 | }; |
| 123 | |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 124 | struct iscsi_buf { |
| 125 | struct scatterlist sg; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 126 | unsigned int sent; |
Mike Christie | 7cae515 | 2006-01-13 18:05:47 -0600 | [diff] [blame] | 127 | char use_sendmsg; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | struct iscsi_data_task { |
| 131 | struct iscsi_data hdr; /* PDU */ |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 132 | char hdrext[ISCSI_DIGEST_SIZE];/* Header-Digest */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 133 | struct iscsi_buf digestbuf; /* digest buffer */ |
| 134 | uint32_t digest; /* data digest */ |
| 135 | }; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 136 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 137 | struct iscsi_tcp_mgmt_task { |
| 138 | struct iscsi_hdr hdr; |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 139 | char hdrext[ISCSI_DIGEST_SIZE]; /* Header-Digest */ |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 140 | int xmstate; /* mgmt xmit progress */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 141 | struct iscsi_buf headbuf; /* header buffer */ |
| 142 | struct iscsi_buf sendbuf; /* in progress buffer */ |
| 143 | int sent; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | struct iscsi_r2t_info { |
| 147 | __be32 ttt; /* copied from R2T */ |
| 148 | __be32 exp_statsn; /* copied from R2T */ |
| 149 | uint32_t data_length; /* copied from R2T */ |
| 150 | uint32_t data_offset; /* copied from R2T */ |
| 151 | struct iscsi_buf headbuf; /* Data-Out Header Buffer */ |
| 152 | struct iscsi_buf sendbuf; /* Data-Out in progress buffer*/ |
| 153 | int sent; /* R2T sequence progress */ |
| 154 | int data_count; /* DATA-Out payload progress */ |
| 155 | struct scatterlist *sg; /* per-R2T SG list */ |
| 156 | int solicit_datasn; |
Mike Christie | ffbfe92 | 2006-05-18 20:31:36 -0500 | [diff] [blame] | 157 | struct iscsi_data_task dtask; /* which data task */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 158 | }; |
| 159 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 160 | struct iscsi_tcp_cmd_task { |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 161 | struct iscsi_hdr_buff { |
| 162 | struct iscsi_cmd cmd_hdr; |
| 163 | char hdrextbuf[ISCSI_MAX_AHS_SIZE + |
| 164 | ISCSI_DIGEST_SIZE]; |
| 165 | } hdr; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 166 | char pad[ISCSI_PAD_LEN]; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 167 | int pad_count; /* padded bytes */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 168 | struct iscsi_buf headbuf; /* header buf (xmit) */ |
| 169 | struct iscsi_buf sendbuf; /* in progress buffer*/ |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 170 | int xmstate; /* xmit xtate machine */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 171 | int sent; |
| 172 | struct scatterlist *sg; /* per-cmd SG list */ |
| 173 | struct scatterlist *bad_sg; /* assert statement */ |
| 174 | int sg_count; /* SG's to process */ |
Mike Christie | d473cc7 | 2007-05-30 12:57:14 -0500 | [diff] [blame] | 175 | uint32_t exp_datasn; /* expected target's R2TSN/DataSN */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 176 | int data_offset; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 177 | struct iscsi_r2t_info *r2t; /* in progress R2T */ |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame^] | 178 | struct iscsi_pool r2tpool; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 179 | struct kfifo *r2tqueue; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 180 | int digest_count; |
| 181 | uint32_t immdigest; /* for imm data */ |
| 182 | struct iscsi_buf immbuf; /* for imm data digest */ |
Mike Christie | ffbfe92 | 2006-05-18 20:31:36 -0500 | [diff] [blame] | 183 | struct iscsi_data_task unsol_dtask; /* unsol data task */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 184 | }; |
| 185 | |
| 186 | #endif /* ISCSI_H */ |