VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/socket.h@ 53303

Last change on this file since 53303 was 52798, checked in by vboxsync, 10 years ago

NAT: when outgoing connect(2) fails decide what to do based on the
errno. The code to call icmp_error() is a bit icky because
tcp_input() vivisects incoming datagram and original mbuf can't be
used.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.7 KB
Line 
1/* $Id: socket.h 52798 2014-09-21 21:19:38Z vboxsync $ */
2/** @file
3 * NAT - socket handling (declarations/defines).
4 */
5
6/*
7 * Copyright (C) 2006-2012 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
39struct 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 int so_urgc;
63 struct in_addr so_faddr; /* foreign host table entry */
64 struct in_addr so_laddr; /* local host table entry */
65 u_int16_t so_fport; /* foreign port */
66 u_int16_t so_lport; /* local port */
67 u_int16_t so_hlport; /* host local port */
68 struct in_addr so_hladdr; /* local host addr */
69
70 u_int8_t so_iptos; /* Type of service */
71
72 uint8_t so_sottl; /* cached socket's IP_TTL option */
73 uint8_t so_sotos; /* cached socket's IP_TOS option */
74 int8_t so_sodf; /* cached socket's DF option */
75
76 u_char so_type; /* Type of socket, UDP or TCP */
77 int so_state; /* internal state flags SS_*, below */
78
79 struct tcpcb *so_tcpcb; /* pointer to TCP protocol control block */
80 u_int so_expire; /* When the socket will expire */
81
82 int so_queued; /* Number of packets queued from this socket */
83 int so_nqueued; /* Number of packets queued in a row
84 * Used to determine when to "downgrade" a session
85 * from fastq to batchq */
86
87 struct sbuf so_rcv; /* Receive buffer */
88 struct sbuf so_snd; /* Send buffer */
89#ifndef RT_OS_WINDOWS
90 int so_poll_index;
91#endif /* !RT_OS_WINDOWS */
92 /*
93 * FD_CLOSE/POLLHUP event has been occurred on socket
94 */
95 int so_close;
96
97 void (* so_timeout)(PNATState pData, struct socket *so, void *arg);
98 void *so_timeout_arg;
99
100#ifdef VBOX_WITH_NAT_SERVICE
101 /* storage of source ether address */
102 unsigned char so_ethaddr[6];
103#endif
104
105#ifdef VBOX_WITH_NAT_UDP_SOCKET_CLONE
106 struct socket *so_cloneOf; /* pointer to master instance */
107 int so_cCloneCounter; /* number of clones */
108#endif
109 /** These flags (''fUnderPolling'' and ''fShouldBeRemoved'') introduced to
110 * to let polling routine gain control over freeing socket whatever level of
111 * TCP/IP initiated socket releasing.
112 * So polling routine when start processing socket alter it's state to
113 * ''fUnderPolling'' to 1, and clean (set to 0) when it finish.
114 * When polling routine calls functions it should be ensure on return,
115 * whether ''fShouldBeRemoved'' set or not, and depending on state call
116 * ''sofree'' or continue socket processing.
117 * On ''fShouldBeRemoved'' equal to 1, polling routine should call ''sofree'',
118 * clearing ''fUnderPolling'' to do real freeng of the socket and removing from
119 * the queue.
120 * @todo: perhaps, to simplefy the things we need some helper function.
121 * @note: it's used like a bool, I use 'int' to avoid compiler warnings
122 * appearing if [-Wc++-compat] used.
123 */
124 int fUnderPolling;
125 /** This flag used by ''sofree'' function in following manner
126 *
127 * fUnderPolling = 1, then we don't remove socket from the queue, just
128 * alter value ''fShouldBeRemoved'' to 1, else we do removal.
129 */
130 int fShouldBeRemoved;
131};
132
133# define SOCKET_LOCK(so) do {} while (0)
134# define SOCKET_UNLOCK(so) do {} while (0)
135# define SOCKET_LOCK_CREATE(so) do {} while (0)
136# define SOCKET_LOCK_DESTROY(so) do {} while (0)
137
138/*
139 * Socket state bits. (peer means the host on the Internet,
140 * local host means the host on the other end of the modem)
141 */
142#define SS_NOFDREF 0x001 /* No fd reference */
143
144#define SS_ISFCONNECTING 0x002 /* Socket is connecting to peer (non-blocking connect()'s) */
145#define SS_ISFCONNECTED 0x004 /* Socket is connected to peer */
146#define SS_FCANTRCVMORE 0x008 /* Socket can't receive more from peer (for half-closes) */
147#define SS_FCANTSENDMORE 0x010 /* Socket can't send more to peer (for half-closes) */
148/* #define SS_ISFDISCONNECTED 0x020*/ /* Socket has disconnected from peer, in 2MSL state */
149#define SS_FWDRAIN 0x040 /* We received a FIN, drain data and set SS_FCANTSENDMORE */
150
151/* #define SS_CTL 0x080 */
152#define SS_FACCEPTCONN 0x100 /* Socket is accepting connections from a host on the internet */
153#define SS_FACCEPTONCE 0x200 /* If set, the SS_FACCEPTCONN socket will die after one accept */
154
155extern struct socket tcb;
156
157#if defined(DECLARE_IOVEC) && !defined(HAVE_READV)
158# if !defined(RT_OS_WINDOWS)
159struct iovec
160{
161 char *iov_base;
162 size_t iov_len;
163};
164# else
165/* make it congruent with WSABUF */
166struct iovec
167{
168 ULONG iov_len;
169 char *iov_base;
170};
171# endif
172#endif
173
174void so_init (void);
175struct socket * solookup (struct socket *, struct in_addr, u_int, struct in_addr, u_int);
176struct socket * socreate (void);
177void sofree (PNATState, struct socket *);
178int soread (PNATState, struct socket *);
179void sorecvoob (PNATState, struct socket *);
180int sosendoob (struct socket *);
181int sowrite (PNATState, struct socket *);
182void sorecvfrom (PNATState, struct socket *);
183int sosendto (PNATState, struct socket *, struct mbuf *);
184struct socket * solisten (PNATState, u_int32_t, u_int, u_int32_t, u_int, int);
185void sorwakeup (struct socket *);
186void sowwakeup (struct socket *);
187void soisfconnecting (register struct socket *);
188void soisfconnected (register struct socket *);
189void sofcantrcvmore (struct socket *);
190void sofcantsendmore (struct socket *);
191void soisfdisconnected (struct socket *);
192void sofwdrain (struct socket *);
193
194/**
195 * Creates copy of UDP socket with specified addr
196 * fBindSocket - in case we want bind a real socket.
197 * @return copy of the socket with f_addr equal to u32ForeignAddr
198 */
199#ifdef VBOX_WITH_NAT_UDP_SOCKET_CLONE
200struct socket * soCloneUDPSocketWithForegnAddr(PNATState pData, bool fBindSocket, struct socket *pSo, uint32_t u32ForeignAddr);
201struct socket *soLookUpClonedUDPSocket(PNATState pData, const struct socket *pcSo, uint32_t u32ForeignAddress);
202#endif
203
204static inline int soIgnorableErrorCode(int iErrorCode)
205{
206 return ( iErrorCode == EINPROGRESS
207 || iErrorCode == EAGAIN
208 || iErrorCode == EWOULDBLOCK);
209}
210
211#endif /* _SOCKET_H_ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette