blob: 893cd2e1701ef2639128e18760bfde264e3a4d5f [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
Alex Aizmanc213ca02005-08-04 19:30:31 -070027#define ISCSI_SG_TABLESIZE SG_ALL
Alex Aizmanc213ca02005-08-04 19:30:31 -070028#define ISCSI_TCP_MAX_CMD_LEN 16
29
Herbert Xudc64ddf2006-08-24 18:45:50 +100030struct crypto_hash;
Mike Christie5bb0b552006-04-06 21:26:46 -050031struct socket;
Olaf Kirchda32dd62007-12-13 12:43:21 -060032struct iscsi_tcp_conn;
Olaf Kircha8ac6312007-12-13 12:43:35 -060033struct iscsi_segment;
Olaf Kirchda32dd62007-12-13 12:43:21 -060034
Olaf Kircha8ac6312007-12-13 12:43:35 -060035typedef int iscsi_segment_done_fn_t(struct iscsi_tcp_conn *,
36 struct iscsi_segment *);
Olaf Kirchda32dd62007-12-13 12:43:21 -060037
Olaf Kircha8ac6312007-12-13 12:43:35 -060038struct iscsi_segment {
Olaf Kirchda32dd62007-12-13 12:43:21 -060039 unsigned char *data;
40 unsigned int size;
41 unsigned int copied;
42 unsigned int total_size;
43 unsigned int total_copied;
44
45 struct hash_desc *hash;
46 unsigned char recv_digest[ISCSI_DIGEST_SIZE];
47 unsigned char digest[ISCSI_DIGEST_SIZE];
48 unsigned int digest_len;
49
50 struct scatterlist *sg;
51 void *sg_mapped;
52 unsigned int sg_offset;
Olaf Kirchda32dd62007-12-13 12:43:21 -060053
Olaf Kircha8ac6312007-12-13 12:43:35 -060054 iscsi_segment_done_fn_t *done;
Olaf Kirchda32dd62007-12-13 12:43:21 -060055};
Alex Aizmanc213ca02005-08-04 19:30:31 -070056
57/* Socket connection recieve helper */
58struct iscsi_tcp_recv {
59 struct iscsi_hdr *hdr;
Olaf Kircha8ac6312007-12-13 12:43:35 -060060 struct iscsi_segment segment;
Olaf Kirchda32dd62007-12-13 12:43:21 -060061
62 /* Allocate buffer for BHS + AHS */
63 uint32_t hdr_buf[64];
Alex Aizmanc213ca02005-08-04 19:30:31 -070064
65 /* copied and flipped values */
Alex Aizmanc213ca02005-08-04 19:30:31 -070066 int datalen;
Olaf Kirchda32dd62007-12-13 12:43:21 -060067};
68
69/* Socket connection send helper */
70struct iscsi_tcp_send {
71 struct iscsi_hdr *hdr;
Olaf Kircha8ac6312007-12-13 12:43:35 -060072 struct iscsi_segment segment;
73 struct iscsi_segment data_segment;
Alex Aizmanc213ca02005-08-04 19:30:31 -070074};
75
Mike Christie5bb0b552006-04-06 21:26:46 -050076struct iscsi_tcp_conn {
77 struct iscsi_conn *iscsi_conn;
78 struct socket *sock;
Alex Aizmanc213ca02005-08-04 19:30:31 -070079 int stop_stage; /* conn_stop() flag: *
80 * stop to recover, *
81 * stop to terminate */
Alex Aizmanc213ca02005-08-04 19:30:31 -070082 /* control data */
Alex Aizmanc213ca02005-08-04 19:30:31 -070083 struct iscsi_tcp_recv in; /* TCP receive context */
Olaf Kirchda32dd62007-12-13 12:43:21 -060084 struct iscsi_tcp_send out; /* TCP send context */
Alex Aizmanc213ca02005-08-04 19:30:31 -070085
86 /* old values for socket callbacks */
87 void (*old_data_ready)(struct sock *, int);
88 void (*old_state_change)(struct sock *);
89 void (*old_write_space)(struct sock *);
90
Mike Christiedd8c0d92006-08-31 18:09:28 -040091 /* data and header digests */
James Bottomleyc9802cd2006-09-23 15:33:43 -050092 struct hash_desc tx_hash; /* CRC32C (Tx) */
93 struct hash_desc rx_hash; /* CRC32C (Rx) */
Alex Aizmanc213ca02005-08-04 19:30:31 -070094
Mike Christie5bb0b552006-04-06 21:26:46 -050095 /* MIB custom statistics */
Alex Aizmanc213ca02005-08-04 19:30:31 -070096 uint32_t sendpage_failures_cnt;
97 uint32_t discontiguous_hdr_cnt;
FUJITA Tomonori56851692006-01-13 18:05:44 -060098
Olaf Kircha8ac6312007-12-13 12:43:35 -060099 int error;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700100
Olaf Kircha8ac6312007-12-13 12:43:35 -0600101 ssize_t (*sendpage)(struct socket *, struct page *, int, size_t, int);
Alex Aizmanc213ca02005-08-04 19:30:31 -0700102};
103
104struct iscsi_data_task {
105 struct iscsi_data hdr; /* PDU */
Boaz Harrosh004d6532007-12-13 12:43:23 -0600106 char hdrext[ISCSI_DIGEST_SIZE];/* Header-Digest */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700107};
Alex Aizmanc213ca02005-08-04 19:30:31 -0700108
Mike Christie5bb0b552006-04-06 21:26:46 -0500109struct iscsi_tcp_mgmt_task {
110 struct iscsi_hdr hdr;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600111 char hdrext[ISCSI_DIGEST_SIZE]; /* Header-Digest */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700112};
113
114struct iscsi_r2t_info {
115 __be32 ttt; /* copied from R2T */
116 __be32 exp_statsn; /* copied from R2T */
117 uint32_t data_length; /* copied from R2T */
118 uint32_t data_offset; /* copied from R2T */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700119 int sent; /* R2T sequence progress */
120 int data_count; /* DATA-Out payload progress */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700121 int solicit_datasn;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600122 struct iscsi_data_task dtask; /* Data-Out header buf */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700123};
124
Mike Christie5bb0b552006-04-06 21:26:46 -0500125struct iscsi_tcp_cmd_task {
Boaz Harrosh004d6532007-12-13 12:43:23 -0600126 struct iscsi_hdr_buff {
127 struct iscsi_cmd cmd_hdr;
128 char hdrextbuf[ISCSI_MAX_AHS_SIZE +
129 ISCSI_DIGEST_SIZE];
130 } hdr;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600131
Alex Aizmanc213ca02005-08-04 19:30:31 -0700132 int sent;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600133 uint32_t exp_datasn; /* expected target's R2TSN/DataSN */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700134 int data_offset;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600135 struct iscsi_r2t_info *r2t; /* in progress R2T */
Olaf Kirch63203772007-12-13 12:43:25 -0600136 struct iscsi_pool r2tpool;
Alex Aizmanc213ca02005-08-04 19:30:31 -0700137 struct kfifo *r2tqueue;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600138 struct iscsi_data_task unsol_dtask; /* Data-Out header buf */
Alex Aizmanc213ca02005-08-04 19:30:31 -0700139};
140
141#endif /* ISCSI_H */