s390x: introduce 4.0 compat machine
[qemu.git] / slirp / slirp.h
blobb80725a0d6d1c9d0bb54978f638c0b89d966f8a1
1 #ifndef SLIRP_H
2 #define SLIRP_H
4 #include "slirp_config.h"
6 #ifdef _WIN32
8 typedef char *caddr_t;
10 # include <windows.h>
11 # include <winsock2.h>
12 # include <ws2tcpip.h>
13 # include <sys/timeb.h>
14 # include <iphlpapi.h>
16 #else
17 # if !defined(__HAIKU__)
18 # define O_BINARY 0
19 # endif
20 #endif
22 #ifdef HAVE_SYS_BITYPES_H
23 # include <sys/bitypes.h>
24 #endif
26 #ifndef _WIN32
27 #include <sys/uio.h>
28 #endif
30 #ifndef _WIN32
31 #include <netinet/in.h>
32 #include <arpa/inet.h>
33 #endif
35 #ifndef NO_UNIX_SOCKETS
36 #include <sys/un.h>
37 #endif
38 #ifdef HAVE_SYS_SIGNAL_H
39 # include <sys/signal.h>
40 #endif
41 #ifndef _WIN32
42 #include <sys/socket.h>
43 #endif
45 #if defined(HAVE_SYS_IOCTL_H)
46 # include <sys/ioctl.h>
47 #endif
49 #ifdef HAVE_SYS_SELECT_H
50 # include <sys/select.h>
51 #endif
53 #ifdef HAVE_SYS_WAIT_H
54 # include <sys/wait.h>
55 #endif
57 #ifdef HAVE_SYS_FILIO_H
58 # include <sys/filio.h>
59 #endif
61 /* Avoid conflicting with the libc insque() and remque(), which
62 have different prototypes. */
63 #define insque slirp_insque
64 #define remque slirp_remque
65 #define quehead slirp_quehead
67 #ifdef HAVE_SYS_STROPTS_H
68 #include <sys/stropts.h>
69 #endif
72 #include "debug.h"
74 #include "qemu/queue.h"
75 #include "qemu/sockets.h"
76 #include "net/eth.h"
78 #include "libslirp.h"
79 #include "ip.h"
80 #include "ip6.h"
81 #include "tcp.h"
82 #include "tcp_timer.h"
83 #include "tcp_var.h"
84 #include "tcpip.h"
85 #include "udp.h"
86 #include "ip_icmp.h"
87 #include "ip6_icmp.h"
88 #include "mbuf.h"
89 #include "sbuf.h"
90 #include "socket.h"
91 #include "if.h"
92 #include "main.h"
93 #include "misc.h"
95 #include "bootp.h"
96 #include "tftp.h"
98 #define ARPOP_REQUEST 1 /* ARP request */
99 #define ARPOP_REPLY 2 /* ARP reply */
101 struct ethhdr {
102 unsigned char h_dest[ETH_ALEN]; /* destination eth addr */
103 unsigned char h_source[ETH_ALEN]; /* source ether addr */
104 unsigned short h_proto; /* packet type ID field */
107 struct slirp_arphdr {
108 unsigned short ar_hrd; /* format of hardware address */
109 unsigned short ar_pro; /* format of protocol address */
110 unsigned char ar_hln; /* length of hardware address */
111 unsigned char ar_pln; /* length of protocol address */
112 unsigned short ar_op; /* ARP opcode (command) */
115 * Ethernet looks like this : This bit is variable sized however...
117 unsigned char ar_sha[ETH_ALEN]; /* sender hardware address */
118 uint32_t ar_sip; /* sender IP address */
119 unsigned char ar_tha[ETH_ALEN]; /* target hardware address */
120 uint32_t ar_tip; /* target IP address */
121 } QEMU_PACKED;
123 #define ARP_TABLE_SIZE 16
125 typedef struct ArpTable {
126 struct slirp_arphdr table[ARP_TABLE_SIZE];
127 int next_victim;
128 } ArpTable;
130 void arp_table_add(Slirp *slirp, uint32_t ip_addr, uint8_t ethaddr[ETH_ALEN]);
132 bool arp_table_search(Slirp *slirp, uint32_t ip_addr,
133 uint8_t out_ethaddr[ETH_ALEN]);
135 struct ndpentry {
136 unsigned char eth_addr[ETH_ALEN]; /* sender hardware address */
137 struct in6_addr ip_addr; /* sender IP address */
138 } QEMU_PACKED;
140 #define NDP_TABLE_SIZE 16
142 typedef struct NdpTable {
143 struct ndpentry table[NDP_TABLE_SIZE];
144 int next_victim;
145 } NdpTable;
147 void ndp_table_add(Slirp *slirp, struct in6_addr ip_addr,
148 uint8_t ethaddr[ETH_ALEN]);
149 bool ndp_table_search(Slirp *slirp, struct in6_addr ip_addr,
150 uint8_t out_ethaddr[ETH_ALEN]);
152 struct Slirp {
153 QTAILQ_ENTRY(Slirp) entry;
154 u_int time_fasttimo;
155 u_int last_slowtimo;
156 bool do_slowtimo;
158 bool in_enabled, in6_enabled;
160 /* virtual network configuration */
161 struct in_addr vnetwork_addr;
162 struct in_addr vnetwork_mask;
163 struct in_addr vhost_addr;
164 struct in6_addr vprefix_addr6;
165 uint8_t vprefix_len;
166 struct in6_addr vhost_addr6;
167 struct in_addr vdhcp_startaddr;
168 struct in_addr vnameserver_addr;
169 struct in6_addr vnameserver_addr6;
171 struct in_addr client_ipaddr;
172 char client_hostname[33];
174 int restricted;
175 struct ex_list *exec_list;
177 /* mbuf states */
178 struct quehead m_freelist;
179 struct quehead m_usedlist;
180 int mbuf_alloced;
182 /* if states */
183 struct quehead if_fastq; /* fast queue (for interactive data) */
184 struct quehead if_batchq; /* queue for non-interactive data */
185 bool if_start_busy; /* avoid if_start recursion */
187 /* ip states */
188 struct ipq ipq; /* ip reass. queue */
189 uint16_t ip_id; /* ip packet ctr, for ids */
191 /* bootp/dhcp states */
192 BOOTPClient bootp_clients[NB_BOOTP_CLIENTS];
193 char *bootp_filename;
194 size_t vdnssearch_len;
195 uint8_t *vdnssearch;
196 char *vdomainname;
198 /* tcp states */
199 struct socket tcb;
200 struct socket *tcp_last_so;
201 tcp_seq tcp_iss; /* tcp initial send seq # */
202 uint32_t tcp_now; /* for RFC 1323 timestamps */
204 /* udp states */
205 struct socket udb;
206 struct socket *udp_last_so;
208 /* icmp states */
209 struct socket icmp;
210 struct socket *icmp_last_so;
212 /* tftp states */
213 char *tftp_prefix;
214 struct tftp_session tftp_sessions[TFTP_SESSIONS_MAX];
215 char *tftp_server_name;
217 ArpTable arp_table;
218 NdpTable ndp_table;
220 GRand *grand;
221 QEMUTimer *ra_timer;
223 void *opaque;
226 extern Slirp *slirp_instance;
228 #ifndef NULL
229 #define NULL (void *)0
230 #endif
232 void if_start(Slirp *);
234 /* ncsi.c */
235 void ncsi_input(Slirp *slirp, const uint8_t *pkt, int pkt_len);
237 #ifndef _WIN32
238 #include <netdb.h>
239 #endif
241 #define SO_OPTIONS DO_KEEPALIVE
242 #define TCP_MAXIDLE (TCPTV_KEEPCNT * TCPTV_KEEPINTVL)
244 /* dnssearch.c */
245 int translate_dnssearch(Slirp *s, const char ** names);
247 /* cksum.c */
248 int cksum(struct mbuf *m, int len);
249 int ip6_cksum(struct mbuf *m);
251 /* if.c */
252 void if_init(Slirp *);
253 void if_output(struct socket *, struct mbuf *);
255 /* ip_input.c */
256 void ip_init(Slirp *);
257 void ip_cleanup(Slirp *);
258 void ip_input(struct mbuf *);
259 void ip_slowtimo(Slirp *);
260 void ip_stripoptions(register struct mbuf *, struct mbuf *);
262 /* ip_output.c */
263 int ip_output(struct socket *, struct mbuf *);
265 /* ip6_input.c */
266 void ip6_init(Slirp *);
267 void ip6_cleanup(Slirp *);
268 void ip6_input(struct mbuf *);
270 /* ip6_output */
271 int ip6_output(struct socket *, struct mbuf *, int fast);
273 /* tcp_input.c */
274 void tcp_input(register struct mbuf *, int, struct socket *, unsigned short af);
275 int tcp_mss(register struct tcpcb *, u_int);
277 /* tcp_output.c */
278 int tcp_output(register struct tcpcb *);
279 void tcp_setpersist(register struct tcpcb *);
281 /* tcp_subr.c */
282 void tcp_init(Slirp *);
283 void tcp_cleanup(Slirp *);
284 void tcp_template(struct tcpcb *);
285 void tcp_respond(struct tcpcb *, register struct tcpiphdr *,
286 register struct mbuf *, tcp_seq, tcp_seq, int, unsigned short);
287 struct tcpcb * tcp_newtcpcb(struct socket *);
288 struct tcpcb * tcp_close(register struct tcpcb *);
289 void tcp_sockclosed(struct tcpcb *);
290 int tcp_fconnect(struct socket *, unsigned short af);
291 void tcp_connect(struct socket *);
292 int tcp_attach(struct socket *);
293 uint8_t tcp_tos(struct socket *);
294 int tcp_emu(struct socket *, struct mbuf *);
295 int tcp_ctl(struct socket *);
296 struct tcpcb *tcp_drop(struct tcpcb *tp, int err);
298 #endif