6 /* as defined in sdkddkver.h */
8 #define _WIN32_WINNT 0x0600 /* Vista */
10 /* reduces the number of implicitly included headers */
11 #ifndef WIN32_LEAN_AND_MEAN
12 #define WIN32_LEAN_AND_MEAN
15 # include <winsock2.h>
17 # include <ws2tcpip.h>
18 # include <sys/timeb.h>
19 # include <iphlpapi.h>
22 # if !defined(__HAIKU__)
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <sys/socket.h>
32 #include <sys/ioctl.h>
36 # include <sys/filio.h>
39 /* Avoid conflicting with the libc insque() and remque(), which
40 have different prototypes. */
41 #define insque slirp_insque
42 #define remque slirp_remque
43 #define quehead slirp_quehead
53 #include "tcp_timer.h"
69 #define ARPOP_REQUEST 1 /* ARP request */
70 #define ARPOP_REPLY 2 /* ARP reply */
73 unsigned char h_dest
[ETH_ALEN
]; /* destination eth addr */
74 unsigned char h_source
[ETH_ALEN
]; /* source ether addr */
75 unsigned short h_proto
; /* packet type ID field */
79 unsigned short ar_hrd
; /* format of hardware address */
80 unsigned short ar_pro
; /* format of protocol address */
81 unsigned char ar_hln
; /* length of hardware address */
82 unsigned char ar_pln
; /* length of protocol address */
83 unsigned short ar_op
; /* ARP opcode (command) */
86 * Ethernet looks like this : This bit is variable sized however...
88 unsigned char ar_sha
[ETH_ALEN
]; /* sender hardware address */
89 uint32_t ar_sip
; /* sender IP address */
90 unsigned char ar_tha
[ETH_ALEN
]; /* target hardware address */
91 uint32_t ar_tip
; /* target IP address */
94 #define ARP_TABLE_SIZE 16
96 typedef struct ArpTable
{
97 struct slirp_arphdr table
[ARP_TABLE_SIZE
];
101 void arp_table_add(Slirp
*slirp
, uint32_t ip_addr
, uint8_t ethaddr
[ETH_ALEN
]);
103 bool arp_table_search(Slirp
*slirp
, uint32_t ip_addr
,
104 uint8_t out_ethaddr
[ETH_ALEN
]);
107 unsigned char eth_addr
[ETH_ALEN
]; /* sender hardware address */
108 struct in6_addr ip_addr
; /* sender IP address */
111 #define NDP_TABLE_SIZE 16
113 typedef struct NdpTable
{
114 struct ndpentry table
[NDP_TABLE_SIZE
];
118 void ndp_table_add(Slirp
*slirp
, struct in6_addr ip_addr
,
119 uint8_t ethaddr
[ETH_ALEN
]);
120 bool ndp_table_search(Slirp
*slirp
, struct in6_addr ip_addr
,
121 uint8_t out_ethaddr
[ETH_ALEN
]);
124 QTAILQ_ENTRY(Slirp
) entry
;
125 unsigned time_fasttimo
;
126 unsigned last_slowtimo
;
129 bool in_enabled
, in6_enabled
;
131 /* virtual network configuration */
132 struct in_addr vnetwork_addr
;
133 struct in_addr vnetwork_mask
;
134 struct in_addr vhost_addr
;
135 struct in6_addr vprefix_addr6
;
137 struct in6_addr vhost_addr6
;
138 struct in_addr vdhcp_startaddr
;
139 struct in_addr vnameserver_addr
;
140 struct in6_addr vnameserver_addr6
;
142 struct in_addr client_ipaddr
;
143 char client_hostname
[33];
146 struct gfwd_list
*guestfwd_list
;
149 struct quehead m_freelist
;
150 struct quehead m_usedlist
;
154 struct quehead if_fastq
; /* fast queue (for interactive data) */
155 struct quehead if_batchq
; /* queue for non-interactive data */
156 bool if_start_busy
; /* avoid if_start recursion */
159 struct ipq ipq
; /* ip reass. queue */
160 uint16_t ip_id
; /* ip packet ctr, for ids */
162 /* bootp/dhcp states */
163 BOOTPClient bootp_clients
[NB_BOOTP_CLIENTS
];
164 char *bootp_filename
;
165 size_t vdnssearch_len
;
171 struct socket
*tcp_last_so
;
172 tcp_seq tcp_iss
; /* tcp initial send seq # */
173 uint32_t tcp_now
; /* for RFC 1323 timestamps */
177 struct socket
*udp_last_so
;
181 struct socket
*icmp_last_so
;
185 struct tftp_session tftp_sessions
[TFTP_SESSIONS_MAX
];
186 char *tftp_server_name
;
198 void if_start(Slirp
*);
200 int get_dns_addr(struct in_addr
*pdns_addr
);
201 int get_dns6_addr(struct in6_addr
*pdns6_addr
, uint32_t *scope_id
);
204 void ncsi_input(Slirp
*slirp
, const uint8_t *pkt
, int pkt_len
);
211 extern bool slirp_do_keepalive
;
213 #define TCP_MAXIDLE (TCPTV_KEEPCNT * TCPTV_KEEPINTVL)
216 int translate_dnssearch(Slirp
*s
, const char ** names
);
219 int cksum(struct mbuf
*m
, int len
);
220 int ip6_cksum(struct mbuf
*m
);
223 void if_init(Slirp
*);
224 void if_output(struct socket
*, struct mbuf
*);
227 void ip_init(Slirp
*);
228 void ip_cleanup(Slirp
*);
229 void ip_input(struct mbuf
*);
230 void ip_slowtimo(Slirp
*);
231 void ip_stripoptions(register struct mbuf
*, struct mbuf
*);
234 int ip_output(struct socket
*, struct mbuf
*);
237 void ip6_init(Slirp
*);
238 void ip6_cleanup(Slirp
*);
239 void ip6_input(struct mbuf
*);
242 int ip6_output(struct socket
*, struct mbuf
*, int fast
);
245 void tcp_input(register struct mbuf
*, int, struct socket
*, unsigned short af
);
246 int tcp_mss(register struct tcpcb
*, unsigned);
249 int tcp_output(register struct tcpcb
*);
250 void tcp_setpersist(register struct tcpcb
*);
253 void tcp_init(Slirp
*);
254 void tcp_cleanup(Slirp
*);
255 void tcp_template(struct tcpcb
*);
256 void tcp_respond(struct tcpcb
*, register struct tcpiphdr
*,
257 register struct mbuf
*, tcp_seq
, tcp_seq
, int, unsigned short);
258 struct tcpcb
* tcp_newtcpcb(struct socket
*);
259 struct tcpcb
* tcp_close(register struct tcpcb
*);
260 void tcp_sockclosed(struct tcpcb
*);
261 int tcp_fconnect(struct socket
*, unsigned short af
);
262 void tcp_connect(struct socket
*);
263 int tcp_attach(struct socket
*);
264 uint8_t tcp_tos(struct socket
*);
265 int tcp_emu(struct socket
*, struct mbuf
*);
266 int tcp_ctl(struct socket
*);
267 struct tcpcb
*tcp_drop(struct tcpcb
*tp
, int err
);
270 slirp_find_ctl_socket(Slirp
*slirp
, struct in_addr guest_addr
, int guest_port
);
272 void slirp_send_packet_all(Slirp
*slirp
, const void *buf
, size_t len
);