1 | /* $Id: socket.h 93115 2022-01-01 11:31:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT - socket handling (declarations/defines).
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*
|
---|
19 | * This code is based on:
|
---|
20 | *
|
---|
21 | * Copyright (c) 1995 Danny Gasparovski.
|
---|
22 | *
|
---|
23 | * Please read the file COPYRIGHT for the
|
---|
24 | * terms and conditions of the copyright.
|
---|
25 | */
|
---|
26 |
|
---|
27 | /* MINE */
|
---|
28 |
|
---|
29 | #ifndef _SLIRP_SOCKET_H_
|
---|
30 | #define _SLIRP_SOCKET_H_
|
---|
31 |
|
---|
32 | #define SO_EXPIRE 240000
|
---|
33 | #define SO_EXPIREFAST 10000
|
---|
34 |
|
---|
35 | /*
|
---|
36 | * Our socket structure
|
---|
37 | */
|
---|
38 |
|
---|
39 | struct socket
|
---|
40 | {
|
---|
41 | struct socket *so_next;
|
---|
42 | struct socket *so_prev; /* For a linked list of sockets */
|
---|
43 |
|
---|
44 | #if !defined(RT_OS_WINDOWS)
|
---|
45 | int s; /* The actual socket */
|
---|
46 | #else
|
---|
47 | union {
|
---|
48 | int s;
|
---|
49 | HANDLE sh;
|
---|
50 | };
|
---|
51 | uint64_t so_icmp_id; /* XXX: hack */
|
---|
52 | uint64_t so_icmp_seq; /* XXX: hack */
|
---|
53 | #endif
|
---|
54 |
|
---|
55 | /* XXX union these with not-yet-used sbuf params */
|
---|
56 | struct mbuf *so_m; /* Pointer to the original SYN packet,
|
---|
57 | * for non-blocking connect()'s, and
|
---|
58 | * PING reply's */
|
---|
59 | struct tcpiphdr *so_ti; /* Pointer to the original ti within
|
---|
60 | * so_mconn, for non-blocking connections */
|
---|
61 | uint8_t *so_ohdr; /* unmolested IP header of the datagram in so_m */
|
---|
62 | caddr_t so_optp; /* tcp options in so_m */
|
---|
63 | int so_optlen; /* length of options in so_m */
|
---|
64 | int so_urgc;
|
---|
65 | struct in_addr so_faddr; /* foreign host table entry */
|
---|
66 | struct in_addr so_laddr; /* local host table entry */
|
---|
67 | u_int16_t so_fport; /* foreign port */
|
---|
68 | u_int16_t so_lport; /* local port */
|
---|
69 | u_int16_t so_hlport; /* host local port */
|
---|
70 | struct in_addr so_hladdr; /* local host addr */
|
---|
71 |
|
---|
72 | u_int8_t so_iptos; /* Type of service */
|
---|
73 |
|
---|
74 | uint8_t so_sottl; /* cached socket's IP_TTL option */
|
---|
75 | uint8_t so_sotos; /* cached socket's IP_TOS option */
|
---|
76 | int8_t so_sodf; /* cached socket's DF option */
|
---|
77 |
|
---|
78 | u_char so_type; /* Type of socket, UDP or TCP */
|
---|
79 | int so_state; /* internal state flags SS_*, below */
|
---|
80 |
|
---|
81 | struct tcpcb *so_tcpcb; /* pointer to TCP protocol control block */
|
---|
82 | u_int so_expire; /* When the socket will expire */
|
---|
83 |
|
---|
84 | int so_queued; /* Number of packets queued from this socket */
|
---|
85 | int so_nqueued; /* Number of packets queued in a row
|
---|
86 | * Used to determine when to "downgrade" a session
|
---|
87 | * from fastq to batchq */
|
---|
88 |
|
---|
89 | struct sbuf so_rcv; /* Receive buffer */
|
---|
90 | struct sbuf so_snd; /* Send buffer */
|
---|
91 | #ifndef RT_OS_WINDOWS
|
---|
92 | int so_poll_index;
|
---|
93 | #endif /* !RT_OS_WINDOWS */
|
---|
94 | /*
|
---|
95 | * FD_CLOSE/POLLHUP event has been occurred on socket
|
---|
96 | */
|
---|
97 | int so_close;
|
---|
98 |
|
---|
99 | void (* so_timeout)(PNATState pData, struct socket *so, void *arg);
|
---|
100 | void *so_timeout_arg;
|
---|
101 |
|
---|
102 | /** These flags (''fUnderPolling'' and ''fShouldBeRemoved'') introduced to
|
---|
103 | * to let polling routine gain control over freeing socket whatever level of
|
---|
104 | * TCP/IP initiated socket releasing.
|
---|
105 | * So polling routine when start processing socket alter it's state to
|
---|
106 | * ''fUnderPolling'' to 1, and clean (set to 0) when it finish.
|
---|
107 | * When polling routine calls functions it should be ensure on return,
|
---|
108 | * whether ''fShouldBeRemoved'' set or not, and depending on state call
|
---|
109 | * ''sofree'' or continue socket processing.
|
---|
110 | * On ''fShouldBeRemoved'' equal to 1, polling routine should call ''sofree'',
|
---|
111 | * clearing ''fUnderPolling'' to do real freeng of the socket and removing from
|
---|
112 | * the queue.
|
---|
113 | * @todo: perhaps, to simplefy the things we need some helper function.
|
---|
114 | * @note: it's used like a bool, I use 'int' to avoid compiler warnings
|
---|
115 | * appearing if [-Wc++-compat] used.
|
---|
116 | */
|
---|
117 | int fUnderPolling;
|
---|
118 | /** This flag used by ''sofree'' function in following manner
|
---|
119 | *
|
---|
120 | * fUnderPolling = 1, then we don't remove socket from the queue, just
|
---|
121 | * alter value ''fShouldBeRemoved'' to 1, else we do removal.
|
---|
122 | */
|
---|
123 | int fShouldBeRemoved;
|
---|
124 | };
|
---|
125 |
|
---|
126 | # define SOCKET_LOCK(so) do {} while (0)
|
---|
127 | # define SOCKET_UNLOCK(so) do {} while (0)
|
---|
128 | # define SOCKET_LOCK_CREATE(so) do {} while (0)
|
---|
129 | # define SOCKET_LOCK_DESTROY(so) do {} while (0)
|
---|
130 |
|
---|
131 | /*
|
---|
132 | * Socket state bits. (peer means the host on the Internet,
|
---|
133 | * local host means the host on the other end of the modem)
|
---|
134 | */
|
---|
135 | #define SS_NOFDREF 0x001 /* No fd reference */
|
---|
136 |
|
---|
137 | #define SS_ISFCONNECTING 0x002 /* Socket is connecting to peer (non-blocking connect()'s) */
|
---|
138 | #define SS_ISFCONNECTED 0x004 /* Socket is connected to peer */
|
---|
139 | #define SS_FCANTRCVMORE 0x008 /* Socket can't receive more from peer (for half-closes) */
|
---|
140 | #define SS_FCANTSENDMORE 0x010 /* Socket can't send more to peer (for half-closes) */
|
---|
141 | /* #define SS_ISFDISCONNECTED 0x020*/ /* Socket has disconnected from peer, in 2MSL state */
|
---|
142 | #define SS_FWDRAIN 0x040 /* We received a FIN, drain data and set SS_FCANTSENDMORE */
|
---|
143 |
|
---|
144 | /* #define SS_CTL 0x080 */
|
---|
145 | #define SS_FACCEPTCONN 0x100 /* Socket is accepting connections from a host on the internet */
|
---|
146 | #define SS_FACCEPTONCE 0x200 /* If set, the SS_FACCEPTCONN socket will die after one accept */
|
---|
147 |
|
---|
148 | extern struct socket tcb;
|
---|
149 |
|
---|
150 | #if defined(DECLARE_IOVEC) && !defined(HAVE_READV)
|
---|
151 | # if !defined(RT_OS_WINDOWS)
|
---|
152 | struct iovec
|
---|
153 | {
|
---|
154 | char *iov_base;
|
---|
155 | size_t iov_len;
|
---|
156 | };
|
---|
157 | # else
|
---|
158 | /* make it congruent with WSABUF */
|
---|
159 | struct iovec
|
---|
160 | {
|
---|
161 | ULONG iov_len;
|
---|
162 | char *iov_base;
|
---|
163 | };
|
---|
164 | # endif
|
---|
165 | #endif
|
---|
166 |
|
---|
167 | void so_init (void);
|
---|
168 | struct socket * solookup (struct socket *, struct in_addr, u_int, struct in_addr, u_int);
|
---|
169 | struct socket * socreate (void);
|
---|
170 | void sofree (PNATState, struct socket *);
|
---|
171 | int sobind(PNATState, struct socket *);
|
---|
172 | int soread (PNATState, struct socket *);
|
---|
173 | void sorecvoob (PNATState, struct socket *);
|
---|
174 | int sosendoob (struct socket *);
|
---|
175 | int sowrite (PNATState, struct socket *);
|
---|
176 | void sorecvfrom (PNATState, struct socket *);
|
---|
177 | int sosendto (PNATState, struct socket *, struct mbuf *);
|
---|
178 | struct socket * solisten (PNATState, u_int32_t, u_int, u_int32_t, u_int, int);
|
---|
179 | void sorwakeup (struct socket *);
|
---|
180 | void sowwakeup (struct socket *);
|
---|
181 | void soisfconnecting (register struct socket *);
|
---|
182 | void soisfconnected (register struct socket *);
|
---|
183 | int sofcantrcvmore (struct socket *);
|
---|
184 | void sofcantsendmore (struct socket *);
|
---|
185 | void soisfdisconnected (struct socket *);
|
---|
186 | void sofwdrain (struct socket *);
|
---|
187 |
|
---|
188 | static inline int soIgnorableErrorCode(int iErrorCode)
|
---|
189 | {
|
---|
190 | return ( iErrorCode == EINPROGRESS
|
---|
191 | || iErrorCode == EAGAIN
|
---|
192 | || iErrorCode == EWOULDBLOCK);
|
---|
193 | }
|
---|
194 |
|
---|
195 | #endif /* _SOCKET_H_ */
|
---|