VirtualBox

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

最後變更 在這個檔案從25276是 23462,由 vboxsync 提交於 15 年 前

NAT: Big changeset:

  1. mbuf_zone has been inroduced.
  2. IPRT timers replaces Slirp's one making poll/WSAWaitForMultipleEvents blocking.
  3. UrgRecv(Thread,Req) introduced for transfering ICMP errors/ARP with highter priority.
  • 屬性 svn:eol-style 設為 native
檔案大小: 9.6 KB
 
1#ifndef __COMMON_H__
2#define __COMMON_H__
3
4#include <VBox/stam.h>
5
6#ifdef RT_OS_WINDOWS
7# include <winsock2.h>
8# include <ws2tcpip.h>
9typedef int socklen_t;
10#endif
11#ifdef RT_OS_OS2 /* temporary workaround, see ticket #127 */
12# define mbstat mbstat_os2
13# include <sys/socket.h>
14# undef mbstat
15typedef int socklen_t;
16#endif
17
18#define CONFIG_QEMU
19
20#ifdef DEBUG
21# undef DEBUG
22# define DEBUG 1
23#endif
24
25#ifndef CONFIG_QEMU
26# include "version.h"
27#endif
28#define LOG_GROUP LOG_GROUP_DRV_NAT
29#include <VBox/log.h>
30#include <iprt/mem.h>
31#ifdef RT_OS_WINDOWS
32# include <windows.h>
33# include <io.h>
34#endif
35#include <iprt/assert.h>
36#include <iprt/string.h>
37#include <iprt/dir.h>
38#include <iprt/rand.h>
39#include <VBox/types.h>
40
41#undef malloc
42#define malloc dont_use_malloc
43#undef free
44#define free dont_use_free
45#undef realloc
46#define realloc dont_use_realloc
47#undef strdup
48#define strdup dont_use_strdup
49
50#include "slirp_config.h"
51
52#ifdef RT_OS_WINDOWS
53
54# ifndef _MSC_VER
55# include <inttypes.h>
56# endif
57
58typedef uint8_t u_int8_t;
59typedef uint16_t u_int16_t;
60typedef uint32_t u_int32_t;
61typedef uint64_t u_int64_t;
62typedef char *caddr_t;
63
64# include <sys/timeb.h>
65# include <iphlpapi.h>
66
67# define EWOULDBLOCK WSAEWOULDBLOCK
68# define EINPROGRESS WSAEINPROGRESS
69# define ENOTCONN WSAENOTCONN
70# define EHOSTUNREACH WSAEHOSTUNREACH
71# define ENETUNREACH WSAENETUNREACH
72# define ECONNREFUSED WSAECONNREFUSED
73
74#else /* !RT_OS_WINDOWS */
75
76# define ioctlsocket ioctl
77# define closesocket(s) close(s)
78# define O_BINARY 0
79
80#endif /* !RT_OS_WINDOWS */
81
82#include <sys/types.h>
83#ifdef HAVE_SYS_BITYPES_H
84# include <sys/bitypes.h>
85#endif
86
87#ifdef _MSC_VER
88# include <time.h>
89#else /* !_MSC_VER */
90# include <sys/time.h>
91#endif /* !_MSC_VER */
92
93#ifdef NEED_TYPEDEFS
94typedef char int8_t;
95typedef unsigned char u_int8_t;
96
97# if SIZEOF_SHORT == 2
98 typedef short int16_t;
99 typedef unsigned short u_int16_t;
100# else
101# if SIZEOF_INT == 2
102 typedef int int16_t;
103 typedef unsigned int u_int16_t;
104# else
105 #error Cannot find a type with sizeof() == 2
106# endif
107# endif
108
109# if SIZEOF_SHORT == 4
110 typedef short int32_t;
111 typedef unsigned short u_int32_t;
112# else
113# if SIZEOF_INT == 4
114 typedef int int32_t;
115 typedef unsigned int u_int32_t;
116# else
117 #error Cannot find a type with sizeof() == 4
118# endif
119# endif
120#endif /* NEED_TYPEDEFS */
121
122#ifdef HAVE_UNISTD_H
123# include <unistd.h>
124#endif
125
126#ifdef HAVE_STDLIB_H
127# include <stdlib.h>
128#endif
129
130#include <errno.h>
131
132
133#ifndef HAVE_MEMMOVE
134# define memmove(x, y, z) bcopy(y, x, z)
135#endif
136
137#if TIME_WITH_SYS_TIME
138# include <sys/time.h>
139# include <time.h>
140#else
141# if HAVE_SYS_TIME_H
142# include <sys/time.h>
143# else
144# include <time.h>
145# endif
146#endif
147
148#ifdef HAVE_STRING_H
149# include <string.h>
150#else
151# include <strings.h>
152#endif
153
154#ifndef RT_OS_WINDOWS
155# include <sys/uio.h>
156#endif
157
158#ifndef RT_OS_WINDOWS
159# include <netinet/in.h>
160# include <arpa/inet.h>
161#endif
162
163#ifdef GETTIMEOFDAY_ONE_ARG
164# define gettimeofday(x, y) gettimeofday(x)
165#endif
166
167#ifndef HAVE_INET_ATON
168int inet_aton (const char *cp, struct in_addr *ia);
169#endif
170
171#include <fcntl.h>
172#ifndef NO_UNIX_SOCKETS
173# include <sys/un.h>
174#endif
175#include <signal.h>
176#ifdef HAVE_SYS_SIGNAL_H
177# include <sys/signal.h>
178#endif
179#ifndef RT_OS_WINDOWS
180# include <sys/socket.h>
181#endif
182
183#if defined(HAVE_SYS_IOCTL_H)
184# include <sys/ioctl.h>
185#endif
186
187#ifdef HAVE_SYS_SELECT_H
188# include <sys/select.h>
189#endif
190
191#ifdef HAVE_SYS_WAIT_H
192# include <sys/wait.h>
193#endif
194
195#ifdef HAVE_SYS_FILIO_H
196# include <sys/filio.h>
197#endif
198
199#if defined(__STDC__) || defined(_MSC_VER)
200# include <stdarg.h>
201#else
202# include <varargs.h>
203#endif
204
205#include <sys/stat.h>
206
207/* Avoid conflicting with the libc insque() and remque(), which
208 * have different prototypes. */
209#define insque slirp_insque
210#define remque slirp_remque
211
212#ifdef HAVE_SYS_STROPTS_H
213# include <sys/stropts.h>
214#endif
215
216#include "libslirp.h"
217
218#include "debug.h"
219
220#include "ip.h"
221#include "tcp.h"
222#include "tcp_timer.h"
223#include "tcp_var.h"
224#include "tcpip.h"
225#include "udp.h"
226#include "icmp_var.h"
227#include "mbuf.h"
228#include "sbuf.h"
229#include "socket.h"
230#include "if.h"
231#include "main.h"
232#include "misc.h"
233#include "ctl.h"
234#include "bootp.h"
235#include "tftp.h"
236
237#include "slirp_state.h"
238
239#undef PVM /* XXX Mac OS X hack */
240
241#ifndef NULL
242# define NULL (void *)0
243#endif
244
245void if_start (PNATState);
246
247#ifndef HAVE_INDEX
248 char *index (const char *, int);
249#endif
250
251#ifndef HAVE_GETHOSTID
252 long gethostid (void);
253#endif
254
255#ifndef RT_OS_WINDOWS
256#include <netdb.h>
257#endif
258
259#include "dnsproxy/dnsproxy.h"
260
261#define DEFAULT_BAUD 115200
262
263int get_dns_addr(PNATState pData, struct in_addr *pdns_addr);
264
265/* cksum.c */
266#ifndef VBOX_WITH_SLIRP_BSD_MBUF
267int cksum(struct mbuf *m, int len);
268#else
269typedef uint16_t u_short;
270typedef unsigned int u_int;
271#include "in_cksum.h"
272#endif
273
274/* if.c */
275void if_init (PNATState);
276void if_output (PNATState, struct socket *, struct mbuf *);
277
278/* ip_input.c */
279void ip_init (PNATState);
280void ip_input (PNATState, struct mbuf *);
281struct mbuf * ip_reass (PNATState, register struct mbuf *);
282void ip_freef (PNATState, struct ipqhead *, struct ipq_t *);
283void ip_slowtimo (PNATState);
284void ip_stripoptions (register struct mbuf *, struct mbuf *);
285
286/* ip_output.c */
287int ip_output (PNATState, struct socket *, struct mbuf *);
288int ip_output0 (PNATState, struct socket *, struct mbuf *, int urg);
289
290/* tcp_input.c */
291int tcp_reass (PNATState, struct tcpcb *, struct tcphdr *, int *, struct mbuf *);
292void tcp_input (PNATState, register struct mbuf *, int, struct socket *);
293void tcp_dooptions (PNATState, struct tcpcb *, u_char *, int, struct tcpiphdr *);
294void tcp_xmit_timer (PNATState, register struct tcpcb *, int);
295int tcp_mss (PNATState, register struct tcpcb *, u_int);
296
297/* tcp_output.c */
298int tcp_output (PNATState, register struct tcpcb *);
299void tcp_setpersist (register struct tcpcb *);
300
301/* tcp_subr.c */
302void tcp_init (PNATState);
303void tcp_template (struct tcpcb *);
304void tcp_respond (PNATState, struct tcpcb *, register struct tcpiphdr *, register struct mbuf *, tcp_seq, tcp_seq, int);
305struct tcpcb * tcp_newtcpcb (PNATState, struct socket *);
306struct tcpcb * tcp_close (PNATState, register struct tcpcb *);
307void tcp_drain (void);
308void tcp_sockclosed (PNATState, struct tcpcb *);
309int tcp_fconnect (PNATState, struct socket *);
310void tcp_connect (PNATState, struct socket *);
311int tcp_attach (PNATState, struct socket *);
312u_int8_t tcp_tos (struct socket *);
313int tcp_emu (PNATState, struct socket *, struct mbuf *);
314int tcp_ctl (PNATState, struct socket *);
315struct tcpcb *tcp_drop(PNATState, struct tcpcb *tp, int err);
316
317/*slirp.c*/
318void slirp_arp_who_has(PNATState pData, uint32_t dst);
319int slirp_arp_cache_update(PNATState pData, uint32_t dst, const uint8_t *mac);
320void slirp_arp_cache_add(PNATState pData, uint32_t ip, const uint8_t *ether);
321#define MIN_MRU 128
322#define MAX_MRU 16384
323
324#ifndef RT_OS_WINDOWS
325# define min(x, y) ((x) < (y) ? (x) : (y))
326# define max(x, y) ((x) > (y) ? (x) : (y))
327#endif
328
329#ifdef RT_OS_WINDOWS
330# undef errno
331# if 0 /* debugging */
332int errno_func(const char *file, int line);
333# define errno (errno_func(__FILE__, __LINE__))
334# else
335# define errno (WSAGetLastError())
336# endif
337#endif
338
339# define ETH_ALEN 6
340# define ETH_HLEN 14
341
342# define ARPOP_REQUEST 1 /* ARP request */
343# define ARPOP_REPLY 2 /* ARP reply */
344
345struct ethhdr
346{
347 unsigned char h_dest[ETH_ALEN]; /* destination eth addr */
348 unsigned char h_source[ETH_ALEN]; /* source ether addr */
349 unsigned short h_proto; /* packet type ID field */
350};
351AssertCompileSize(struct ethhdr, 14);
352
353/*
354 * (vvl) externing of sscanf.
355 */
356int sscanf(const char *s, const char *format, ...);
357
358#if defined(VBOX_SLIRP_ALIAS) || defined(VBOX_SLIRP_BSD)
359
360# define ip_next(ip) (void *)((uint8_t *)(ip) + ((ip)->ip_hl << 2))
361# define udp_next(udp) (void *)((uint8_t *)&((struct udphdr *)(udp))[1] )
362# define bcopy(src, dst, len) memcpy((dst), (src), (len))
363# define bcmp(a1, a2, len) memcmp((a1), (a2), (len))
364# define NO_FW_PUNCH
365
366# ifdef alias_addr
367# ifndef VBOX_SLIRP_BSD
368# error alias_addr has already defined!!!
369# else
370# undef alias_addr
371# endif
372# endif
373
374# define arc4random() RTRandU32()
375# undef malloc
376# undef calloc
377# undef free
378# define malloc(x) RTMemAlloc((x))
379# define calloc(x, n) RTMemAllocZ((x)*(n))
380# define free(x) RTMemFree((x))
381# ifndef __unused
382# define __unused
383# endif
384
385# define strncasecmp RTStrNICmp
386# define stderr NULL
387# define stdout NULL
388
389# ifdef DEBUG
390# define LIBALIAS_DEBUG
391# endif
392
393# define fflush(x) do{} while(0)
394# include "ext.h"
395#endif /*VBOX_SLIRP_ALIAS*/
396
397#ifdef VBOX_WITH_SLIRP_BSD_MBUF
398/* @todo might be useful to make it configurable,
399 * especially in terms of Intnet behind NAT
400 */
401# define maxusers 32
402# define max_protohdr 0
403/* @todo (r=vvl) for now ignore value,
404 * latter here should be fetching of tuning parameters entered
405 */
406# define TUNABLE_INT_FETCH(name, pval) do { } while (0)
407# define SYSCTL_PROC(a0, a1, a2, a3, a4, a5, a6, a7, a8)
408# define SYSCTL_STRUCT(a0, a1, a2, a3, a4, a5, a6)
409# define SYSINIT(a0, a1, a2, a3, a4)
410# define sysctl_handle_int(a0, a1, a2, a3) 0
411# define EVENTHANDLER_INVOKE(a) do{}while(0)
412# define EVENTHANDLER_REGISTER(a0, a1, a2, a3) do{}while(0)
413# define KASSERT AssertMsg
414
415struct dummy_req
416{
417 void *newptr;
418};
419
420#define SYSCTL_HANDLER_ARGS PNATState pData, void *oidp, struct dummy_req *req
421
422void mbuf_init(void *);
423# define cksum(m, len) in_cksum_skip((m), (len), 0)
424#endif
425
426int ftp_alias_load(PNATState);
427int ftp_alias_unload(PNATState);
428int nbt_alias_load(PNATState);
429int nbt_alias_unload(PNATState);
430int dns_alias_load(PNATState);
431int dns_alias_unload(PNATState);
432int slirp_arp_lookup_ip_by_ether(PNATState, const uint8_t *, uint32_t *);
433int slirp_arp_lookup_ether_by_ip(PNATState, uint32_t, uint8_t *);
434#endif
435
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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