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 | |
Herbert Xu | dc64ddf | 2006-08-24 18:45:50 +1000 | [diff] [blame] | 27 | struct crypto_hash; |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 28 | struct socket; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 29 | struct iscsi_tcp_conn; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 30 | struct iscsi_segment; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 31 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 32 | typedef int iscsi_segment_done_fn_t(struct iscsi_tcp_conn *, |
| 33 | struct iscsi_segment *); |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 34 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 35 | struct iscsi_segment { |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 36 | unsigned char *data; |
| 37 | unsigned int size; |
| 38 | unsigned int copied; |
| 39 | unsigned int total_size; |
| 40 | unsigned int total_copied; |
| 41 | |
| 42 | struct hash_desc *hash; |
| 43 | unsigned char recv_digest[ISCSI_DIGEST_SIZE]; |
| 44 | unsigned char digest[ISCSI_DIGEST_SIZE]; |
| 45 | unsigned int digest_len; |
| 46 | |
| 47 | struct scatterlist *sg; |
| 48 | void *sg_mapped; |
| 49 | unsigned int sg_offset; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 50 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 51 | iscsi_segment_done_fn_t *done; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 52 | }; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 53 | |
| 54 | /* Socket connection recieve helper */ |
| 55 | struct iscsi_tcp_recv { |
| 56 | struct iscsi_hdr *hdr; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 57 | struct iscsi_segment segment; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 58 | |
| 59 | /* Allocate buffer for BHS + AHS */ |
| 60 | uint32_t hdr_buf[64]; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 61 | |
| 62 | /* copied and flipped values */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 63 | int datalen; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | /* Socket connection send helper */ |
| 67 | struct iscsi_tcp_send { |
| 68 | struct iscsi_hdr *hdr; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 69 | struct iscsi_segment segment; |
| 70 | struct iscsi_segment data_segment; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 73 | struct iscsi_tcp_conn { |
| 74 | struct iscsi_conn *iscsi_conn; |
| 75 | struct socket *sock; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 76 | int stop_stage; /* conn_stop() flag: * |
| 77 | * stop to recover, * |
| 78 | * stop to terminate */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 79 | /* control data */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 80 | struct iscsi_tcp_recv in; /* TCP receive context */ |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 81 | struct iscsi_tcp_send out; /* TCP send context */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 82 | |
| 83 | /* old values for socket callbacks */ |
| 84 | void (*old_data_ready)(struct sock *, int); |
| 85 | void (*old_state_change)(struct sock *); |
| 86 | void (*old_write_space)(struct sock *); |
| 87 | |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 88 | /* data and header digests */ |
James Bottomley | c9802cd | 2006-09-23 15:33:43 -0500 | [diff] [blame] | 89 | struct hash_desc tx_hash; /* CRC32C (Tx) */ |
| 90 | struct hash_desc rx_hash; /* CRC32C (Rx) */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 91 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 92 | /* MIB custom statistics */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 93 | uint32_t sendpage_failures_cnt; |
| 94 | uint32_t discontiguous_hdr_cnt; |
FUJITA Tomonori | 5685169 | 2006-01-13 18:05:44 -0600 | [diff] [blame] | 95 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 96 | int error; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 97 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 98 | ssize_t (*sendpage)(struct socket *, struct page *, int, size_t, int); |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | struct iscsi_data_task { |
| 102 | struct iscsi_data hdr; /* PDU */ |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 103 | char hdrext[ISCSI_DIGEST_SIZE];/* Header-Digest */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 104 | }; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 105 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 106 | struct iscsi_tcp_mgmt_task { |
| 107 | struct iscsi_hdr hdr; |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 108 | char hdrext[ISCSI_DIGEST_SIZE]; /* Header-Digest */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | struct iscsi_r2t_info { |
| 112 | __be32 ttt; /* copied from R2T */ |
| 113 | __be32 exp_statsn; /* copied from R2T */ |
| 114 | uint32_t data_length; /* copied from R2T */ |
| 115 | uint32_t data_offset; /* copied from R2T */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 116 | int sent; /* R2T sequence progress */ |
| 117 | int data_count; /* DATA-Out payload progress */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 118 | int solicit_datasn; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 119 | struct iscsi_data_task dtask; /* Data-Out header buf */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 122 | struct iscsi_tcp_cmd_task { |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 123 | struct iscsi_hdr_buff { |
| 124 | struct iscsi_cmd cmd_hdr; |
| 125 | char hdrextbuf[ISCSI_MAX_AHS_SIZE + |
| 126 | ISCSI_DIGEST_SIZE]; |
| 127 | } hdr; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 128 | |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 129 | int sent; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 130 | uint32_t exp_datasn; /* expected target's R2TSN/DataSN */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 131 | int data_offset; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 132 | struct iscsi_r2t_info *r2t; /* in progress R2T */ |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 133 | struct iscsi_pool r2tpool; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 134 | struct kfifo *r2tqueue; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 135 | struct iscsi_data_task unsol_dtask; /* Data-Out header buf */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | #endif /* ISCSI_H */ |