Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 2 | /* |
| 3 | * iSCSI Initiator TCP Transport |
| 4 | * Copyright (C) 2004 Dmitry Yusupov |
| 5 | * Copyright (C) 2004 Alex Aizman |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 6 | * Copyright (C) 2005 - 2006 Mike Christie |
| 7 | * Copyright (C) 2006 Red Hat, Inc. All rights reserved. |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 8 | * maintained by open-iscsi@googlegroups.com |
| 9 | * |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 10 | * See the file COPYING included with this distribution for more details. |
| 11 | */ |
| 12 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 13 | #ifndef ISCSI_SW_TCP_H |
| 14 | #define ISCSI_SW_TCP_H |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 15 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 16 | #include <scsi/libiscsi.h> |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 17 | #include <scsi/libiscsi_tcp.h> |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 18 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 19 | struct socket; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 20 | struct iscsi_tcp_conn; |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 21 | |
| 22 | /* Socket connection send helper */ |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 23 | struct iscsi_sw_tcp_send { |
Olaf Kirch | da32dd6 | 2007-12-13 12:43:21 -0600 | [diff] [blame] | 24 | struct iscsi_hdr *hdr; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 25 | struct iscsi_segment segment; |
| 26 | struct iscsi_segment data_segment; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 27 | }; |
| 28 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 29 | struct iscsi_sw_tcp_conn { |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 30 | struct socket *sock; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 31 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 32 | struct iscsi_sw_tcp_send out; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 33 | /* old values for socket callbacks */ |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 34 | void (*old_data_ready)(struct sock *); |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 35 | void (*old_state_change)(struct sock *); |
| 36 | void (*old_write_space)(struct sock *); |
| 37 | |
Mike Christie | dd8c0d9 | 2006-08-31 18:09:28 -0400 | [diff] [blame] | 38 | /* data and header digests */ |
Herbert Xu | 5d6ac29 | 2016-01-24 21:19:41 +0800 | [diff] [blame] | 39 | struct ahash_request *tx_hash; /* CRC32C (Tx) */ |
| 40 | struct ahash_request *rx_hash; /* CRC32C (Rx) */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 41 | |
Mike Christie | 5bb0b55 | 2006-04-06 21:26:46 -0500 | [diff] [blame] | 42 | /* MIB custom statistics */ |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 43 | uint32_t sendpage_failures_cnt; |
| 44 | uint32_t discontiguous_hdr_cnt; |
FUJITA Tomonori | 5685169 | 2006-01-13 18:05:44 -0600 | [diff] [blame] | 45 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 46 | ssize_t (*sendpage)(struct socket *, struct page *, int, size_t, int); |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
Mike Christie | a79af8a | 2011-02-16 15:04:36 -0600 | [diff] [blame] | 49 | struct iscsi_sw_tcp_host { |
| 50 | struct iscsi_session *session; |
| 51 | }; |
| 52 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 53 | struct iscsi_sw_tcp_hdrbuf { |
| 54 | struct iscsi_hdr hdrbuf; |
| 55 | char hdrextbuf[ISCSI_MAX_AHS_SIZE + |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 56 | ISCSI_DIGEST_SIZE]; |
Alex Aizman | c213ca0 | 2005-08-04 19:30:31 -0700 | [diff] [blame] | 57 | }; |
| 58 | |
Mike Christie | 38e1a8f | 2008-12-02 00:32:12 -0600 | [diff] [blame] | 59 | #endif /* ISCSI_SW_TCP_H */ |