1 | /* $Id: libslirp.h 33825 2010-11-08 10:16:25Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT - slirp interface.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2010 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 | #ifndef _LIBSLIRP_H
|
---|
19 | #define _LIBSLIRP_H
|
---|
20 |
|
---|
21 | #ifdef RT_OS_WINDOWS
|
---|
22 | # include <winsock2.h>
|
---|
23 | # ifdef __cplusplus
|
---|
24 | extern "C" {
|
---|
25 | # endif
|
---|
26 | int inet_aton(const char *cp, struct in_addr *ia);
|
---|
27 | # ifdef __cplusplus
|
---|
28 | }
|
---|
29 | # endif
|
---|
30 | #else
|
---|
31 | # ifdef RT_OS_OS2 /* temporary workaround, see ticket #127 */
|
---|
32 | # include <sys/time.h>
|
---|
33 | # endif
|
---|
34 | # include <sys/select.h>
|
---|
35 | # include <poll.h>
|
---|
36 | # include <arpa/inet.h>
|
---|
37 | #endif
|
---|
38 |
|
---|
39 | #include <VBox/types.h>
|
---|
40 |
|
---|
41 | typedef struct NATState *PNATState;
|
---|
42 | struct mbuf;
|
---|
43 |
|
---|
44 | #ifdef __cplusplus
|
---|
45 | extern "C" {
|
---|
46 | #endif
|
---|
47 |
|
---|
48 | int slirp_init(PNATState *, uint32_t, uint32_t, bool, bool, int, void *);
|
---|
49 | void slirp_register_statistics(PNATState pData, PPDMDRVINS pDrvIns);
|
---|
50 | void slirp_deregister_statistics(PNATState pData, PPDMDRVINS pDrvIns);
|
---|
51 | void slirp_term(PNATState);
|
---|
52 | void slirp_link_up(PNATState);
|
---|
53 | void slirp_link_down(PNATState);
|
---|
54 |
|
---|
55 | #if defined(RT_OS_WINDOWS)
|
---|
56 | void slirp_select_fill(PNATState pData, int *pndfs);
|
---|
57 |
|
---|
58 | void slirp_select_poll(PNATState pData, int fTimeout, int fIcmp);
|
---|
59 | #else /* RT_OS_WINDOWS */
|
---|
60 | void slirp_select_fill(PNATState pData, int *pnfds, struct pollfd *polls);
|
---|
61 | void slirp_select_poll(PNATState pData, struct pollfd *polls, int ndfs);
|
---|
62 | #endif /* !RT_OS_WINDOWS */
|
---|
63 |
|
---|
64 | void slirp_input(PNATState pData, struct mbuf *m, size_t cbBuf);
|
---|
65 | void slirp_set_ethaddr_and_activate_port_forwarding(PNATState pData, const uint8_t *ethaddr, uint32_t GuestIP);
|
---|
66 |
|
---|
67 | /* you must provide the following functions: */
|
---|
68 | void slirp_arm_fast_timer(void *pvUser);
|
---|
69 | int slirp_can_output(void * pvUser);
|
---|
70 | void slirp_output(void * pvUser, struct mbuf *m, const uint8_t *pkt, int pkt_len);
|
---|
71 | void slirp_urg_output(void *pvUser, struct mbuf *, const uint8_t *pu8Buf, int cb);
|
---|
72 | void slirp_post_sent(PNATState pData, void *pvArg);
|
---|
73 |
|
---|
74 | int slirp_add_redirect(PNATState pData, int is_udp, struct in_addr host_addr,
|
---|
75 | int host_port, struct in_addr guest_addr,
|
---|
76 | int guest_port, const uint8_t *);
|
---|
77 | int slirp_remove_redirect(PNATState pData, int is_udp, struct in_addr host_addr,
|
---|
78 | int host_port, struct in_addr guest_addr,
|
---|
79 | int guest_port);
|
---|
80 | int slirp_add_exec(PNATState pData, int do_pty, const char *args, int addr_low_byte,
|
---|
81 | int guest_port);
|
---|
82 |
|
---|
83 | void slirp_set_dhcp_TFTP_prefix(PNATState pData, const char *tftpPrefix);
|
---|
84 | void slirp_set_dhcp_TFTP_bootfile(PNATState pData, const char *bootFile);
|
---|
85 | void slirp_set_dhcp_next_server(PNATState pData, const char *nextServer);
|
---|
86 | void slirp_set_dhcp_dns_proxy(PNATState pData, bool fDNSProxy);
|
---|
87 | void slirp_set_rcvbuf(PNATState pData, int kilobytes);
|
---|
88 | void slirp_set_sndbuf(PNATState pData, int kilobytes);
|
---|
89 | void slirp_set_tcp_rcvspace(PNATState pData, int kilobytes);
|
---|
90 | void slirp_set_tcp_sndspace(PNATState pData, int kilobytes);
|
---|
91 |
|
---|
92 | int slirp_set_binding_address(PNATState, char *addr);
|
---|
93 | void slirp_set_mtu(PNATState, int);
|
---|
94 |
|
---|
95 | #if defined(RT_OS_WINDOWS)
|
---|
96 |
|
---|
97 |
|
---|
98 | /*
|
---|
99 | * ICMP handle state change
|
---|
100 | */
|
---|
101 | # define VBOX_ICMP_EVENT_INDEX 0
|
---|
102 |
|
---|
103 | /**
|
---|
104 | * This event is for
|
---|
105 | * - slirp_input
|
---|
106 | * - slirp_link_up
|
---|
107 | * - slirp_link_down
|
---|
108 | * - wakeup
|
---|
109 | */
|
---|
110 | # define VBOX_WAKEUP_EVENT_INDEX 1
|
---|
111 |
|
---|
112 | /*
|
---|
113 | * UDP/TCP socket state change (socket ready to receive, to send, ...)
|
---|
114 | */
|
---|
115 | # define VBOX_SOCKET_EVENT_INDEX 2
|
---|
116 |
|
---|
117 | /*
|
---|
118 | * The number of events for WSAWaitForMultipleEvents().
|
---|
119 | */
|
---|
120 | # define VBOX_EVENT_COUNT 3
|
---|
121 |
|
---|
122 | HANDLE *slirp_get_events(PNATState pData);
|
---|
123 | void slirp_register_external_event(PNATState pData, HANDLE hEvent, int index);
|
---|
124 | #endif /* RT_OS_WINDOWS */
|
---|
125 |
|
---|
126 | #ifdef VBOX_WITH_SLIRP_MT
|
---|
127 | void slirp_process_queue(PNATState pData);
|
---|
128 | void *slirp_get_queue(PNATState pData);
|
---|
129 | #endif
|
---|
130 |
|
---|
131 | struct mbuf *slirp_ext_m_get(PNATState pData, size_t cbMin, void **ppvBuf, size_t *pcbBuf);
|
---|
132 | void slirp_ext_m_free(PNATState pData, struct mbuf *, uint8_t *pu8Buf);
|
---|
133 |
|
---|
134 | /*
|
---|
135 | * Returns the timeout.
|
---|
136 | */
|
---|
137 | unsigned int slirp_get_timeout_ms(PNATState pData);
|
---|
138 |
|
---|
139 | # ifndef RT_OS_WINDOWS
|
---|
140 | /*
|
---|
141 | * Returns the number of sockets.
|
---|
142 | */
|
---|
143 | int slirp_get_nsock(PNATState pData);
|
---|
144 | # endif
|
---|
145 |
|
---|
146 | #ifdef __cplusplus
|
---|
147 | }
|
---|
148 | #endif
|
---|
149 |
|
---|
150 | #endif
|
---|