]> git.proxmox.com Git - qemu.git/blob - slirp/slirp.c
slirp: slirp/slirp.c coding style cleanup
[qemu.git] / slirp / slirp.c
1 /*
2 * libslirp glue
3 *
4 * Copyright (c) 2004-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24 #include "qemu-common.h"
25 #include "qemu/timer.h"
26 #include "char/char.h"
27 #include "slirp.h"
28 #include "hw/hw.h"
29
30 /* host loopback address */
31 struct in_addr loopback_addr;
32 /* host loopback network mask */
33 unsigned long loopback_mask;
34
35 /* emulated hosts use the MAC addr 52:55:IP:IP:IP:IP */
36 static const uint8_t special_ethaddr[ETH_ALEN] = {
37 0x52, 0x55, 0x00, 0x00, 0x00, 0x00
38 };
39
40 static const uint8_t zero_ethaddr[ETH_ALEN] = { 0, 0, 0, 0, 0, 0 };
41
42 /* XXX: suppress those select globals */
43 fd_set *global_readfds, *global_writefds, *global_xfds;
44
45 u_int curtime;
46 static u_int time_fasttimo, last_slowtimo;
47 static int do_slowtimo;
48
49 static QTAILQ_HEAD(slirp_instances, Slirp) slirp_instances =
50 QTAILQ_HEAD_INITIALIZER(slirp_instances);
51
52 static struct in_addr dns_addr;
53 static u_int dns_addr_time;
54
55 #ifdef _WIN32
56
57 int get_dns_addr(struct in_addr *pdns_addr)
58 {
59 FIXED_INFO *FixedInfo=NULL;
60 ULONG BufLen;
61 DWORD ret;
62 IP_ADDR_STRING *pIPAddr;
63 struct in_addr tmp_addr;
64
65 if (dns_addr.s_addr != 0 && (curtime - dns_addr_time) < 1000) {
66 *pdns_addr = dns_addr;
67 return 0;
68 }
69
70 FixedInfo = (FIXED_INFO *)GlobalAlloc(GPTR, sizeof(FIXED_INFO));
71 BufLen = sizeof(FIXED_INFO);
72
73 if (ERROR_BUFFER_OVERFLOW == GetNetworkParams(FixedInfo, &BufLen)) {
74 if (FixedInfo) {
75 GlobalFree(FixedInfo);
76 FixedInfo = NULL;
77 }
78 FixedInfo = GlobalAlloc(GPTR, BufLen);
79 }
80
81 if ((ret = GetNetworkParams(FixedInfo, &BufLen)) != ERROR_SUCCESS) {
82 printf("GetNetworkParams failed. ret = %08x\n", (u_int)ret );
83 if (FixedInfo) {
84 GlobalFree(FixedInfo);
85 FixedInfo = NULL;
86 }
87 return -1;
88 }
89
90 pIPAddr = &(FixedInfo->DnsServerList);
91 inet_aton(pIPAddr->IpAddress.String, &tmp_addr);
92 *pdns_addr = tmp_addr;
93 dns_addr = tmp_addr;
94 dns_addr_time = curtime;
95 if (FixedInfo) {
96 GlobalFree(FixedInfo);
97 FixedInfo = NULL;
98 }
99 return 0;
100 }
101
102 static void winsock_cleanup(void)
103 {
104 WSACleanup();
105 }
106
107 #else
108
109 static struct stat dns_addr_stat;
110
111 int get_dns_addr(struct in_addr *pdns_addr)
112 {
113 char buff[512];
114 char buff2[257];
115 FILE *f;
116 int found = 0;
117 struct in_addr tmp_addr;
118
119 if (dns_addr.s_addr != 0) {
120 struct stat old_stat;
121 if ((curtime - dns_addr_time) < 1000) {
122 *pdns_addr = dns_addr;
123 return 0;
124 }
125 old_stat = dns_addr_stat;
126 if (stat("/etc/resolv.conf", &dns_addr_stat) != 0)
127 return -1;
128 if ((dns_addr_stat.st_dev == old_stat.st_dev)
129 && (dns_addr_stat.st_ino == old_stat.st_ino)
130 && (dns_addr_stat.st_size == old_stat.st_size)
131 && (dns_addr_stat.st_mtime == old_stat.st_mtime)) {
132 *pdns_addr = dns_addr;
133 return 0;
134 }
135 }
136
137 f = fopen("/etc/resolv.conf", "r");
138 if (!f)
139 return -1;
140
141 #ifdef DEBUG
142 lprint("IP address of your DNS(s): ");
143 #endif
144 while (fgets(buff, 512, f) != NULL) {
145 if (sscanf(buff, "nameserver%*[ \t]%256s", buff2) == 1) {
146 if (!inet_aton(buff2, &tmp_addr))
147 continue;
148 /* If it's the first one, set it to dns_addr */
149 if (!found) {
150 *pdns_addr = tmp_addr;
151 dns_addr = tmp_addr;
152 dns_addr_time = curtime;
153 }
154 #ifdef DEBUG
155 else
156 lprint(", ");
157 #endif
158 if (++found > 3) {
159 #ifdef DEBUG
160 lprint("(more)");
161 #endif
162 break;
163 }
164 #ifdef DEBUG
165 else
166 lprint("%s", inet_ntoa(tmp_addr));
167 #endif
168 }
169 }
170 fclose(f);
171 if (!found)
172 return -1;
173 return 0;
174 }
175
176 #endif
177
178 static void slirp_init_once(void)
179 {
180 static int initialized;
181 #ifdef _WIN32
182 WSADATA Data;
183 #endif
184
185 if (initialized) {
186 return;
187 }
188 initialized = 1;
189
190 #ifdef _WIN32
191 WSAStartup(MAKEWORD(2,0), &Data);
192 atexit(winsock_cleanup);
193 #endif
194
195 loopback_addr.s_addr = htonl(INADDR_LOOPBACK);
196 loopback_mask = htonl(IN_CLASSA_NET);
197 }
198
199 static void slirp_state_save(QEMUFile *f, void *opaque);
200 static int slirp_state_load(QEMUFile *f, void *opaque, int version_id);
201
202 Slirp *slirp_init(int restricted, struct in_addr vnetwork,
203 struct in_addr vnetmask, struct in_addr vhost,
204 const char *vhostname, const char *tftp_path,
205 const char *bootfile, struct in_addr vdhcp_start,
206 struct in_addr vnameserver, const char **vdnssearch,
207 void *opaque)
208 {
209 Slirp *slirp = g_malloc0(sizeof(Slirp));
210
211 slirp_init_once();
212
213 slirp->restricted = restricted;
214
215 if_init(slirp);
216 ip_init(slirp);
217
218 /* Initialise mbufs *after* setting the MTU */
219 m_init(slirp);
220
221 slirp->vnetwork_addr = vnetwork;
222 slirp->vnetwork_mask = vnetmask;
223 slirp->vhost_addr = vhost;
224 if (vhostname) {
225 pstrcpy(slirp->client_hostname, sizeof(slirp->client_hostname),
226 vhostname);
227 }
228 slirp->tftp_prefix = g_strdup(tftp_path);
229 slirp->bootp_filename = g_strdup(bootfile);
230 slirp->vdhcp_startaddr = vdhcp_start;
231 slirp->vnameserver_addr = vnameserver;
232
233 if (vdnssearch) {
234 translate_dnssearch(slirp, vdnssearch);
235 }
236
237 slirp->opaque = opaque;
238
239 register_savevm(NULL, "slirp", 0, 3,
240 slirp_state_save, slirp_state_load, slirp);
241
242 QTAILQ_INSERT_TAIL(&slirp_instances, slirp, entry);
243
244 return slirp;
245 }
246
247 void slirp_cleanup(Slirp *slirp)
248 {
249 QTAILQ_REMOVE(&slirp_instances, slirp, entry);
250
251 unregister_savevm(NULL, "slirp", slirp);
252
253 ip_cleanup(slirp);
254 m_cleanup(slirp);
255
256 g_free(slirp->vdnssearch);
257 g_free(slirp->tftp_prefix);
258 g_free(slirp->bootp_filename);
259 g_free(slirp);
260 }
261
262 #define CONN_CANFSEND(so) (((so)->so_state & (SS_FCANTSENDMORE|SS_ISFCONNECTED)) == SS_ISFCONNECTED)
263 #define CONN_CANFRCV(so) (((so)->so_state & (SS_FCANTRCVMORE|SS_ISFCONNECTED)) == SS_ISFCONNECTED)
264 #define UPD_NFDS(x) if (nfds < (x)) nfds = (x)
265
266 void slirp_update_timeout(uint32_t *timeout)
267 {
268 if (!QTAILQ_EMPTY(&slirp_instances)) {
269 *timeout = MIN(1000, *timeout);
270 }
271 }
272
273 void slirp_select_fill(int *pnfds,
274 fd_set *readfds, fd_set *writefds, fd_set *xfds)
275 {
276 Slirp *slirp;
277 struct socket *so, *so_next;
278 int nfds;
279
280 if (QTAILQ_EMPTY(&slirp_instances)) {
281 return;
282 }
283
284 /* fail safe */
285 global_readfds = NULL;
286 global_writefds = NULL;
287 global_xfds = NULL;
288
289 nfds = *pnfds;
290 /*
291 * First, TCP sockets
292 */
293 do_slowtimo = 0;
294
295 QTAILQ_FOREACH(slirp, &slirp_instances, entry) {
296 /*
297 * *_slowtimo needs calling if there are IP fragments
298 * in the fragment queue, or there are TCP connections active
299 */
300 do_slowtimo |= ((slirp->tcb.so_next != &slirp->tcb) ||
301 (&slirp->ipq.ip_link != slirp->ipq.ip_link.next));
302
303 for (so = slirp->tcb.so_next; so != &slirp->tcb;
304 so = so_next) {
305 so_next = so->so_next;
306
307 /*
308 * See if we need a tcp_fasttimo
309 */
310 if (time_fasttimo == 0 && so->so_tcpcb->t_flags & TF_DELACK) {
311 time_fasttimo = curtime; /* Flag when we want a fasttimo */
312 }
313
314 /*
315 * NOFDREF can include still connecting to local-host,
316 * newly socreated() sockets etc. Don't want to select these.
317 */
318 if (so->so_state & SS_NOFDREF || so->s == -1) {
319 continue;
320 }
321
322 /*
323 * Set for reading sockets which are accepting
324 */
325 if (so->so_state & SS_FACCEPTCONN) {
326 FD_SET(so->s, readfds);
327 UPD_NFDS(so->s);
328 continue;
329 }
330
331 /*
332 * Set for writing sockets which are connecting
333 */
334 if (so->so_state & SS_ISFCONNECTING) {
335 FD_SET(so->s, writefds);
336 UPD_NFDS(so->s);
337 continue;
338 }
339
340 /*
341 * Set for writing if we are connected, can send more, and
342 * we have something to send
343 */
344 if (CONN_CANFSEND(so) && so->so_rcv.sb_cc) {
345 FD_SET(so->s, writefds);
346 UPD_NFDS(so->s);
347 }
348
349 /*
350 * Set for reading (and urgent data) if we are connected, can
351 * receive more, and we have room for it XXX /2 ?
352 */
353 if (CONN_CANFRCV(so) &&
354 (so->so_snd.sb_cc < (so->so_snd.sb_datalen/2))) {
355 FD_SET(so->s, readfds);
356 FD_SET(so->s, xfds);
357 UPD_NFDS(so->s);
358 }
359 }
360
361 /*
362 * UDP sockets
363 */
364 for (so = slirp->udb.so_next; so != &slirp->udb;
365 so = so_next) {
366 so_next = so->so_next;
367
368 /*
369 * See if it's timed out
370 */
371 if (so->so_expire) {
372 if (so->so_expire <= curtime) {
373 udp_detach(so);
374 continue;
375 } else {
376 do_slowtimo = 1; /* Let socket expire */
377 }
378 }
379
380 /*
381 * When UDP packets are received from over the
382 * link, they're sendto()'d straight away, so
383 * no need for setting for writing
384 * Limit the number of packets queued by this session
385 * to 4. Note that even though we try and limit this
386 * to 4 packets, the session could have more queued
387 * if the packets needed to be fragmented
388 * (XXX <= 4 ?)
389 */
390 if ((so->so_state & SS_ISFCONNECTED) && so->so_queued <= 4) {
391 FD_SET(so->s, readfds);
392 UPD_NFDS(so->s);
393 }
394 }
395
396 /*
397 * ICMP sockets
398 */
399 for (so = slirp->icmp.so_next; so != &slirp->icmp;
400 so = so_next) {
401 so_next = so->so_next;
402
403 /*
404 * See if it's timed out
405 */
406 if (so->so_expire) {
407 if (so->so_expire <= curtime) {
408 icmp_detach(so);
409 continue;
410 } else {
411 do_slowtimo = 1; /* Let socket expire */
412 }
413 }
414
415 if (so->so_state & SS_ISFCONNECTED) {
416 FD_SET(so->s, readfds);
417 UPD_NFDS(so->s);
418 }
419 }
420 }
421
422 *pnfds = nfds;
423 }
424
425 void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds,
426 int select_error)
427 {
428 Slirp *slirp;
429 struct socket *so, *so_next;
430 int ret;
431
432 if (QTAILQ_EMPTY(&slirp_instances)) {
433 return;
434 }
435
436 global_readfds = readfds;
437 global_writefds = writefds;
438 global_xfds = xfds;
439
440 curtime = qemu_get_clock_ms(rt_clock);
441
442 QTAILQ_FOREACH(slirp, &slirp_instances, entry) {
443 /*
444 * See if anything has timed out
445 */
446 if (time_fasttimo && ((curtime - time_fasttimo) >= 2)) {
447 tcp_fasttimo(slirp);
448 time_fasttimo = 0;
449 }
450 if (do_slowtimo && ((curtime - last_slowtimo) >= 499)) {
451 ip_slowtimo(slirp);
452 tcp_slowtimo(slirp);
453 last_slowtimo = curtime;
454 }
455
456 /*
457 * Check sockets
458 */
459 if (!select_error) {
460 /*
461 * Check TCP sockets
462 */
463 for (so = slirp->tcb.so_next; so != &slirp->tcb;
464 so = so_next) {
465 so_next = so->so_next;
466
467 /*
468 * FD_ISSET is meaningless on these sockets
469 * (and they can crash the program)
470 */
471 if (so->so_state & SS_NOFDREF || so->s == -1) {
472 continue;
473 }
474
475 /*
476 * Check for URG data
477 * This will soread as well, so no need to
478 * test for readfds below if this succeeds
479 */
480 if (FD_ISSET(so->s, xfds)) {
481 sorecvoob(so);
482 }
483 /*
484 * Check sockets for reading
485 */
486 else if (FD_ISSET(so->s, readfds)) {
487 /*
488 * Check for incoming connections
489 */
490 if (so->so_state & SS_FACCEPTCONN) {
491 tcp_connect(so);
492 continue;
493 } /* else */
494 ret = soread(so);
495
496 /* Output it if we read something */
497 if (ret > 0) {
498 tcp_output(sototcpcb(so));
499 }
500 }
501
502 /*
503 * Check sockets for writing
504 */
505 if (FD_ISSET(so->s, writefds)) {
506 /*
507 * Check for non-blocking, still-connecting sockets
508 */
509 if (so->so_state & SS_ISFCONNECTING) {
510 /* Connected */
511 so->so_state &= ~SS_ISFCONNECTING;
512
513 ret = send(so->s, (const void *) &ret, 0, 0);
514 if (ret < 0) {
515 /* XXXXX Must fix, zero bytes is a NOP */
516 if (errno == EAGAIN || errno == EWOULDBLOCK ||
517 errno == EINPROGRESS || errno == ENOTCONN) {
518 continue;
519 }
520
521 /* else failed */
522 so->so_state &= SS_PERSISTENT_MASK;
523 so->so_state |= SS_NOFDREF;
524 }
525 /* else so->so_state &= ~SS_ISFCONNECTING; */
526
527 /*
528 * Continue tcp_input
529 */
530 tcp_input((struct mbuf *)NULL, sizeof(struct ip), so);
531 /* continue; */
532 } else {
533 ret = sowrite(so);
534 }
535 /*
536 * XXXXX If we wrote something (a lot), there
537 * could be a need for a window update.
538 * In the worst case, the remote will send
539 * a window probe to get things going again
540 */
541 }
542
543 /*
544 * Probe a still-connecting, non-blocking socket
545 * to check if it's still alive
546 */
547 #ifdef PROBE_CONN
548 if (so->so_state & SS_ISFCONNECTING) {
549 ret = qemu_recv(so->s, &ret, 0, 0);
550
551 if (ret < 0) {
552 /* XXX */
553 if (errno == EAGAIN || errno == EWOULDBLOCK ||
554 errno == EINPROGRESS || errno == ENOTCONN) {
555 continue; /* Still connecting, continue */
556 }
557
558 /* else failed */
559 so->so_state &= SS_PERSISTENT_MASK;
560 so->so_state |= SS_NOFDREF;
561
562 /* tcp_input will take care of it */
563 } else {
564 ret = send(so->s, &ret, 0, 0);
565 if (ret < 0) {
566 /* XXX */
567 if (errno == EAGAIN || errno == EWOULDBLOCK ||
568 errno == EINPROGRESS || errno == ENOTCONN) {
569 continue;
570 }
571 /* else failed */
572 so->so_state &= SS_PERSISTENT_MASK;
573 so->so_state |= SS_NOFDREF;
574 } else {
575 so->so_state &= ~SS_ISFCONNECTING;
576 }
577
578 }
579 tcp_input((struct mbuf *)NULL, sizeof(struct ip), so);
580 } /* SS_ISFCONNECTING */
581 #endif
582 }
583
584 /*
585 * Now UDP sockets.
586 * Incoming packets are sent straight away, they're not buffered.
587 * Incoming UDP data isn't buffered either.
588 */
589 for (so = slirp->udb.so_next; so != &slirp->udb;
590 so = so_next) {
591 so_next = so->so_next;
592
593 if (so->s != -1 && FD_ISSET(so->s, readfds)) {
594 sorecvfrom(so);
595 }
596 }
597
598 /*
599 * Check incoming ICMP relies.
600 */
601 for (so = slirp->icmp.so_next; so != &slirp->icmp;
602 so = so_next) {
603 so_next = so->so_next;
604
605 if (so->s != -1 && FD_ISSET(so->s, readfds)) {
606 icmp_receive(so);
607 }
608 }
609 }
610
611 if_start(slirp);
612 }
613
614 /* clear global file descriptor sets.
615 * these reside on the stack in vl.c
616 * so they're unusable if we're not in
617 * slirp_select_fill or slirp_select_poll.
618 */
619 global_readfds = NULL;
620 global_writefds = NULL;
621 global_xfds = NULL;
622 }
623
624 static void arp_input(Slirp *slirp, const uint8_t *pkt, int pkt_len)
625 {
626 struct arphdr *ah = (struct arphdr *)(pkt + ETH_HLEN);
627 uint8_t arp_reply[max(ETH_HLEN + sizeof(struct arphdr), 64)];
628 struct ethhdr *reh = (struct ethhdr *)arp_reply;
629 struct arphdr *rah = (struct arphdr *)(arp_reply + ETH_HLEN);
630 int ar_op;
631 struct ex_list *ex_ptr;
632
633 ar_op = ntohs(ah->ar_op);
634 switch(ar_op) {
635 case ARPOP_REQUEST:
636 if (ah->ar_tip == ah->ar_sip) {
637 /* Gratuitous ARP */
638 arp_table_add(slirp, ah->ar_sip, ah->ar_sha);
639 return;
640 }
641
642 if ((ah->ar_tip & slirp->vnetwork_mask.s_addr) ==
643 slirp->vnetwork_addr.s_addr) {
644 if (ah->ar_tip == slirp->vnameserver_addr.s_addr ||
645 ah->ar_tip == slirp->vhost_addr.s_addr)
646 goto arp_ok;
647 for (ex_ptr = slirp->exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) {
648 if (ex_ptr->ex_addr.s_addr == ah->ar_tip)
649 goto arp_ok;
650 }
651 return;
652 arp_ok:
653 memset(arp_reply, 0, sizeof(arp_reply));
654
655 arp_table_add(slirp, ah->ar_sip, ah->ar_sha);
656
657 /* ARP request for alias/dns mac address */
658 memcpy(reh->h_dest, pkt + ETH_ALEN, ETH_ALEN);
659 memcpy(reh->h_source, special_ethaddr, ETH_ALEN - 4);
660 memcpy(&reh->h_source[2], &ah->ar_tip, 4);
661 reh->h_proto = htons(ETH_P_ARP);
662
663 rah->ar_hrd = htons(1);
664 rah->ar_pro = htons(ETH_P_IP);
665 rah->ar_hln = ETH_ALEN;
666 rah->ar_pln = 4;
667 rah->ar_op = htons(ARPOP_REPLY);
668 memcpy(rah->ar_sha, reh->h_source, ETH_ALEN);
669 rah->ar_sip = ah->ar_tip;
670 memcpy(rah->ar_tha, ah->ar_sha, ETH_ALEN);
671 rah->ar_tip = ah->ar_sip;
672 slirp_output(slirp->opaque, arp_reply, sizeof(arp_reply));
673 }
674 break;
675 case ARPOP_REPLY:
676 arp_table_add(slirp, ah->ar_sip, ah->ar_sha);
677 break;
678 default:
679 break;
680 }
681 }
682
683 void slirp_input(Slirp *slirp, const uint8_t *pkt, int pkt_len)
684 {
685 struct mbuf *m;
686 int proto;
687
688 if (pkt_len < ETH_HLEN)
689 return;
690
691 proto = ntohs(*(uint16_t *)(pkt + 12));
692 switch(proto) {
693 case ETH_P_ARP:
694 arp_input(slirp, pkt, pkt_len);
695 break;
696 case ETH_P_IP:
697 m = m_get(slirp);
698 if (!m)
699 return;
700 /* Note: we add to align the IP header */
701 if (M_FREEROOM(m) < pkt_len + 2) {
702 m_inc(m, pkt_len + 2);
703 }
704 m->m_len = pkt_len + 2;
705 memcpy(m->m_data + 2, pkt, pkt_len);
706
707 m->m_data += 2 + ETH_HLEN;
708 m->m_len -= 2 + ETH_HLEN;
709
710 ip_input(m);
711 break;
712 default:
713 break;
714 }
715 }
716
717 /* Output the IP packet to the ethernet device. Returns 0 if the packet must be
718 * re-queued.
719 */
720 int if_encap(Slirp *slirp, struct mbuf *ifm)
721 {
722 uint8_t buf[1600];
723 struct ethhdr *eh = (struct ethhdr *)buf;
724 uint8_t ethaddr[ETH_ALEN];
725 const struct ip *iph = (const struct ip *)ifm->m_data;
726
727 if (ifm->m_len + ETH_HLEN > sizeof(buf)) {
728 return 1;
729 }
730
731 if (!arp_table_search(slirp, iph->ip_dst.s_addr, ethaddr)) {
732 uint8_t arp_req[ETH_HLEN + sizeof(struct arphdr)];
733 struct ethhdr *reh = (struct ethhdr *)arp_req;
734 struct arphdr *rah = (struct arphdr *)(arp_req + ETH_HLEN);
735
736 if (!ifm->arp_requested) {
737 /* If the client addr is not known, send an ARP request */
738 memset(reh->h_dest, 0xff, ETH_ALEN);
739 memcpy(reh->h_source, special_ethaddr, ETH_ALEN - 4);
740 memcpy(&reh->h_source[2], &slirp->vhost_addr, 4);
741 reh->h_proto = htons(ETH_P_ARP);
742 rah->ar_hrd = htons(1);
743 rah->ar_pro = htons(ETH_P_IP);
744 rah->ar_hln = ETH_ALEN;
745 rah->ar_pln = 4;
746 rah->ar_op = htons(ARPOP_REQUEST);
747
748 /* source hw addr */
749 memcpy(rah->ar_sha, special_ethaddr, ETH_ALEN - 4);
750 memcpy(&rah->ar_sha[2], &slirp->vhost_addr, 4);
751
752 /* source IP */
753 rah->ar_sip = slirp->vhost_addr.s_addr;
754
755 /* target hw addr (none) */
756 memset(rah->ar_tha, 0, ETH_ALEN);
757
758 /* target IP */
759 rah->ar_tip = iph->ip_dst.s_addr;
760 slirp->client_ipaddr = iph->ip_dst;
761 slirp_output(slirp->opaque, arp_req, sizeof(arp_req));
762 ifm->arp_requested = true;
763
764 /* Expire request and drop outgoing packet after 1 second */
765 ifm->expiration_date = qemu_get_clock_ns(rt_clock) + 1000000000ULL;
766 }
767 return 0;
768 } else {
769 memcpy(eh->h_dest, ethaddr, ETH_ALEN);
770 memcpy(eh->h_source, special_ethaddr, ETH_ALEN - 4);
771 /* XXX: not correct */
772 memcpy(&eh->h_source[2], &slirp->vhost_addr, 4);
773 eh->h_proto = htons(ETH_P_IP);
774 memcpy(buf + sizeof(struct ethhdr), ifm->m_data, ifm->m_len);
775 slirp_output(slirp->opaque, buf, ifm->m_len + ETH_HLEN);
776 return 1;
777 }
778 }
779
780 /* Drop host forwarding rule, return 0 if found. */
781 int slirp_remove_hostfwd(Slirp *slirp, int is_udp, struct in_addr host_addr,
782 int host_port)
783 {
784 struct socket *so;
785 struct socket *head = (is_udp ? &slirp->udb : &slirp->tcb);
786 struct sockaddr_in addr;
787 int port = htons(host_port);
788 socklen_t addr_len;
789
790 for (so = head->so_next; so != head; so = so->so_next) {
791 addr_len = sizeof(addr);
792 if ((so->so_state & SS_HOSTFWD) &&
793 getsockname(so->s, (struct sockaddr *)&addr, &addr_len) == 0 &&
794 addr.sin_addr.s_addr == host_addr.s_addr &&
795 addr.sin_port == port) {
796 close(so->s);
797 sofree(so);
798 return 0;
799 }
800 }
801
802 return -1;
803 }
804
805 int slirp_add_hostfwd(Slirp *slirp, int is_udp, struct in_addr host_addr,
806 int host_port, struct in_addr guest_addr, int guest_port)
807 {
808 if (!guest_addr.s_addr) {
809 guest_addr = slirp->vdhcp_startaddr;
810 }
811 if (is_udp) {
812 if (!udp_listen(slirp, host_addr.s_addr, htons(host_port),
813 guest_addr.s_addr, htons(guest_port), SS_HOSTFWD))
814 return -1;
815 } else {
816 if (!tcp_listen(slirp, host_addr.s_addr, htons(host_port),
817 guest_addr.s_addr, htons(guest_port), SS_HOSTFWD))
818 return -1;
819 }
820 return 0;
821 }
822
823 int slirp_add_exec(Slirp *slirp, int do_pty, const void *args,
824 struct in_addr *guest_addr, int guest_port)
825 {
826 if (!guest_addr->s_addr) {
827 guest_addr->s_addr = slirp->vnetwork_addr.s_addr |
828 (htonl(0x0204) & ~slirp->vnetwork_mask.s_addr);
829 }
830 if ((guest_addr->s_addr & slirp->vnetwork_mask.s_addr) !=
831 slirp->vnetwork_addr.s_addr ||
832 guest_addr->s_addr == slirp->vhost_addr.s_addr ||
833 guest_addr->s_addr == slirp->vnameserver_addr.s_addr) {
834 return -1;
835 }
836 return add_exec(&slirp->exec_list, do_pty, (char *)args, *guest_addr,
837 htons(guest_port));
838 }
839
840 ssize_t slirp_send(struct socket *so, const void *buf, size_t len, int flags)
841 {
842 if (so->s == -1 && so->extra) {
843 qemu_chr_fe_write(so->extra, buf, len);
844 return len;
845 }
846
847 return send(so->s, buf, len, flags);
848 }
849
850 static struct socket *
851 slirp_find_ctl_socket(Slirp *slirp, struct in_addr guest_addr, int guest_port)
852 {
853 struct socket *so;
854
855 for (so = slirp->tcb.so_next; so != &slirp->tcb; so = so->so_next) {
856 if (so->so_faddr.s_addr == guest_addr.s_addr &&
857 htons(so->so_fport) == guest_port) {
858 return so;
859 }
860 }
861 return NULL;
862 }
863
864 size_t slirp_socket_can_recv(Slirp *slirp, struct in_addr guest_addr,
865 int guest_port)
866 {
867 struct iovec iov[2];
868 struct socket *so;
869
870 so = slirp_find_ctl_socket(slirp, guest_addr, guest_port);
871
872 if (!so || so->so_state & SS_NOFDREF) {
873 return 0;
874 }
875
876 if (!CONN_CANFRCV(so) || so->so_snd.sb_cc >= (so->so_snd.sb_datalen/2)) {
877 return 0;
878 }
879
880 return sopreprbuf(so, iov, NULL);
881 }
882
883 void slirp_socket_recv(Slirp *slirp, struct in_addr guest_addr, int guest_port,
884 const uint8_t *buf, int size)
885 {
886 int ret;
887 struct socket *so = slirp_find_ctl_socket(slirp, guest_addr, guest_port);
888
889 if (!so)
890 return;
891
892 ret = soreadbuf(so, (const char *)buf, size);
893
894 if (ret > 0)
895 tcp_output(sototcpcb(so));
896 }
897
898 static void slirp_tcp_save(QEMUFile *f, struct tcpcb *tp)
899 {
900 int i;
901
902 qemu_put_sbe16(f, tp->t_state);
903 for (i = 0; i < TCPT_NTIMERS; i++)
904 qemu_put_sbe16(f, tp->t_timer[i]);
905 qemu_put_sbe16(f, tp->t_rxtshift);
906 qemu_put_sbe16(f, tp->t_rxtcur);
907 qemu_put_sbe16(f, tp->t_dupacks);
908 qemu_put_be16(f, tp->t_maxseg);
909 qemu_put_sbyte(f, tp->t_force);
910 qemu_put_be16(f, tp->t_flags);
911 qemu_put_be32(f, tp->snd_una);
912 qemu_put_be32(f, tp->snd_nxt);
913 qemu_put_be32(f, tp->snd_up);
914 qemu_put_be32(f, tp->snd_wl1);
915 qemu_put_be32(f, tp->snd_wl2);
916 qemu_put_be32(f, tp->iss);
917 qemu_put_be32(f, tp->snd_wnd);
918 qemu_put_be32(f, tp->rcv_wnd);
919 qemu_put_be32(f, tp->rcv_nxt);
920 qemu_put_be32(f, tp->rcv_up);
921 qemu_put_be32(f, tp->irs);
922 qemu_put_be32(f, tp->rcv_adv);
923 qemu_put_be32(f, tp->snd_max);
924 qemu_put_be32(f, tp->snd_cwnd);
925 qemu_put_be32(f, tp->snd_ssthresh);
926 qemu_put_sbe16(f, tp->t_idle);
927 qemu_put_sbe16(f, tp->t_rtt);
928 qemu_put_be32(f, tp->t_rtseq);
929 qemu_put_sbe16(f, tp->t_srtt);
930 qemu_put_sbe16(f, tp->t_rttvar);
931 qemu_put_be16(f, tp->t_rttmin);
932 qemu_put_be32(f, tp->max_sndwnd);
933 qemu_put_byte(f, tp->t_oobflags);
934 qemu_put_byte(f, tp->t_iobc);
935 qemu_put_sbe16(f, tp->t_softerror);
936 qemu_put_byte(f, tp->snd_scale);
937 qemu_put_byte(f, tp->rcv_scale);
938 qemu_put_byte(f, tp->request_r_scale);
939 qemu_put_byte(f, tp->requested_s_scale);
940 qemu_put_be32(f, tp->ts_recent);
941 qemu_put_be32(f, tp->ts_recent_age);
942 qemu_put_be32(f, tp->last_ack_sent);
943 }
944
945 static void slirp_sbuf_save(QEMUFile *f, struct sbuf *sbuf)
946 {
947 uint32_t off;
948
949 qemu_put_be32(f, sbuf->sb_cc);
950 qemu_put_be32(f, sbuf->sb_datalen);
951 off = (uint32_t)(sbuf->sb_wptr - sbuf->sb_data);
952 qemu_put_sbe32(f, off);
953 off = (uint32_t)(sbuf->sb_rptr - sbuf->sb_data);
954 qemu_put_sbe32(f, off);
955 qemu_put_buffer(f, (unsigned char*)sbuf->sb_data, sbuf->sb_datalen);
956 }
957
958 static void slirp_socket_save(QEMUFile *f, struct socket *so)
959 {
960 qemu_put_be32(f, so->so_urgc);
961 qemu_put_be32(f, so->so_faddr.s_addr);
962 qemu_put_be32(f, so->so_laddr.s_addr);
963 qemu_put_be16(f, so->so_fport);
964 qemu_put_be16(f, so->so_lport);
965 qemu_put_byte(f, so->so_iptos);
966 qemu_put_byte(f, so->so_emu);
967 qemu_put_byte(f, so->so_type);
968 qemu_put_be32(f, so->so_state);
969 slirp_sbuf_save(f, &so->so_rcv);
970 slirp_sbuf_save(f, &so->so_snd);
971 slirp_tcp_save(f, so->so_tcpcb);
972 }
973
974 static void slirp_bootp_save(QEMUFile *f, Slirp *slirp)
975 {
976 int i;
977
978 for (i = 0; i < NB_BOOTP_CLIENTS; i++) {
979 qemu_put_be16(f, slirp->bootp_clients[i].allocated);
980 qemu_put_buffer(f, slirp->bootp_clients[i].macaddr, 6);
981 }
982 }
983
984 static void slirp_state_save(QEMUFile *f, void *opaque)
985 {
986 Slirp *slirp = opaque;
987 struct ex_list *ex_ptr;
988
989 for (ex_ptr = slirp->exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next)
990 if (ex_ptr->ex_pty == 3) {
991 struct socket *so;
992 so = slirp_find_ctl_socket(slirp, ex_ptr->ex_addr,
993 ntohs(ex_ptr->ex_fport));
994 if (!so)
995 continue;
996
997 qemu_put_byte(f, 42);
998 slirp_socket_save(f, so);
999 }
1000 qemu_put_byte(f, 0);
1001
1002 qemu_put_be16(f, slirp->ip_id);
1003
1004 slirp_bootp_save(f, slirp);
1005 }
1006
1007 static void slirp_tcp_load(QEMUFile *f, struct tcpcb *tp)
1008 {
1009 int i;
1010
1011 tp->t_state = qemu_get_sbe16(f);
1012 for (i = 0; i < TCPT_NTIMERS; i++)
1013 tp->t_timer[i] = qemu_get_sbe16(f);
1014 tp->t_rxtshift = qemu_get_sbe16(f);
1015 tp->t_rxtcur = qemu_get_sbe16(f);
1016 tp->t_dupacks = qemu_get_sbe16(f);
1017 tp->t_maxseg = qemu_get_be16(f);
1018 tp->t_force = qemu_get_sbyte(f);
1019 tp->t_flags = qemu_get_be16(f);
1020 tp->snd_una = qemu_get_be32(f);
1021 tp->snd_nxt = qemu_get_be32(f);
1022 tp->snd_up = qemu_get_be32(f);
1023 tp->snd_wl1 = qemu_get_be32(f);
1024 tp->snd_wl2 = qemu_get_be32(f);
1025 tp->iss = qemu_get_be32(f);
1026 tp->snd_wnd = qemu_get_be32(f);
1027 tp->rcv_wnd = qemu_get_be32(f);
1028 tp->rcv_nxt = qemu_get_be32(f);
1029 tp->rcv_up = qemu_get_be32(f);
1030 tp->irs = qemu_get_be32(f);
1031 tp->rcv_adv = qemu_get_be32(f);
1032 tp->snd_max = qemu_get_be32(f);
1033 tp->snd_cwnd = qemu_get_be32(f);
1034 tp->snd_ssthresh = qemu_get_be32(f);
1035 tp->t_idle = qemu_get_sbe16(f);
1036 tp->t_rtt = qemu_get_sbe16(f);
1037 tp->t_rtseq = qemu_get_be32(f);
1038 tp->t_srtt = qemu_get_sbe16(f);
1039 tp->t_rttvar = qemu_get_sbe16(f);
1040 tp->t_rttmin = qemu_get_be16(f);
1041 tp->max_sndwnd = qemu_get_be32(f);
1042 tp->t_oobflags = qemu_get_byte(f);
1043 tp->t_iobc = qemu_get_byte(f);
1044 tp->t_softerror = qemu_get_sbe16(f);
1045 tp->snd_scale = qemu_get_byte(f);
1046 tp->rcv_scale = qemu_get_byte(f);
1047 tp->request_r_scale = qemu_get_byte(f);
1048 tp->requested_s_scale = qemu_get_byte(f);
1049 tp->ts_recent = qemu_get_be32(f);
1050 tp->ts_recent_age = qemu_get_be32(f);
1051 tp->last_ack_sent = qemu_get_be32(f);
1052 tcp_template(tp);
1053 }
1054
1055 static int slirp_sbuf_load(QEMUFile *f, struct sbuf *sbuf)
1056 {
1057 uint32_t off, sb_cc, sb_datalen;
1058
1059 sb_cc = qemu_get_be32(f);
1060 sb_datalen = qemu_get_be32(f);
1061
1062 sbreserve(sbuf, sb_datalen);
1063
1064 if (sbuf->sb_datalen != sb_datalen)
1065 return -ENOMEM;
1066
1067 sbuf->sb_cc = sb_cc;
1068
1069 off = qemu_get_sbe32(f);
1070 sbuf->sb_wptr = sbuf->sb_data + off;
1071 off = qemu_get_sbe32(f);
1072 sbuf->sb_rptr = sbuf->sb_data + off;
1073 qemu_get_buffer(f, (unsigned char*)sbuf->sb_data, sbuf->sb_datalen);
1074
1075 return 0;
1076 }
1077
1078 static int slirp_socket_load(QEMUFile *f, struct socket *so)
1079 {
1080 if (tcp_attach(so) < 0)
1081 return -ENOMEM;
1082
1083 so->so_urgc = qemu_get_be32(f);
1084 so->so_faddr.s_addr = qemu_get_be32(f);
1085 so->so_laddr.s_addr = qemu_get_be32(f);
1086 so->so_fport = qemu_get_be16(f);
1087 so->so_lport = qemu_get_be16(f);
1088 so->so_iptos = qemu_get_byte(f);
1089 so->so_emu = qemu_get_byte(f);
1090 so->so_type = qemu_get_byte(f);
1091 so->so_state = qemu_get_be32(f);
1092 if (slirp_sbuf_load(f, &so->so_rcv) < 0)
1093 return -ENOMEM;
1094 if (slirp_sbuf_load(f, &so->so_snd) < 0)
1095 return -ENOMEM;
1096 slirp_tcp_load(f, so->so_tcpcb);
1097
1098 return 0;
1099 }
1100
1101 static void slirp_bootp_load(QEMUFile *f, Slirp *slirp)
1102 {
1103 int i;
1104
1105 for (i = 0; i < NB_BOOTP_CLIENTS; i++) {
1106 slirp->bootp_clients[i].allocated = qemu_get_be16(f);
1107 qemu_get_buffer(f, slirp->bootp_clients[i].macaddr, 6);
1108 }
1109 }
1110
1111 static int slirp_state_load(QEMUFile *f, void *opaque, int version_id)
1112 {
1113 Slirp *slirp = opaque;
1114 struct ex_list *ex_ptr;
1115
1116 while (qemu_get_byte(f)) {
1117 int ret;
1118 struct socket *so = socreate(slirp);
1119
1120 if (!so)
1121 return -ENOMEM;
1122
1123 ret = slirp_socket_load(f, so);
1124
1125 if (ret < 0)
1126 return ret;
1127
1128 if ((so->so_faddr.s_addr & slirp->vnetwork_mask.s_addr) !=
1129 slirp->vnetwork_addr.s_addr) {
1130 return -EINVAL;
1131 }
1132 for (ex_ptr = slirp->exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) {
1133 if (ex_ptr->ex_pty == 3 &&
1134 so->so_faddr.s_addr == ex_ptr->ex_addr.s_addr &&
1135 so->so_fport == ex_ptr->ex_fport) {
1136 break;
1137 }
1138 }
1139 if (!ex_ptr)
1140 return -EINVAL;
1141
1142 so->extra = (void *)ex_ptr->ex_exec;
1143 }
1144
1145 if (version_id >= 2) {
1146 slirp->ip_id = qemu_get_be16(f);
1147 }
1148
1149 if (version_id >= 3) {
1150 slirp_bootp_load(f, slirp);
1151 }
1152
1153 return 0;
1154 }