Respect the standard
[qemu] / net.c
1 /*
2  * QEMU System Emulator
3  *
4  * Copyright (c) 2003-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 <unistd.h>
25 #include <fcntl.h>
26 #include <signal.h>
27 #include <time.h>
28 #include <errno.h>
29 #include <sys/time.h>
30 #include <zlib.h>
31
32 /* Needed early for HOST_BSD etc. */
33 #include "config-host.h"
34
35 #ifndef _WIN32
36 #include <sys/times.h>
37 #include <sys/wait.h>
38 #include <termios.h>
39 #include <sys/mman.h>
40 #include <sys/ioctl.h>
41 #include <sys/resource.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
44 #include <net/if.h>
45 #ifdef __NetBSD__
46 #include <net/if_tap.h>
47 #endif
48 #ifdef __linux__
49 #include <linux/if_tun.h>
50 #endif
51 #include <arpa/inet.h>
52 #include <dirent.h>
53 #include <netdb.h>
54 #include <sys/select.h>
55 #ifdef HOST_BSD
56 #include <sys/stat.h>
57 #if defined(__FreeBSD__) || defined(__DragonFly__)
58 #include <libutil.h>
59 #else
60 #include <util.h>
61 #endif
62 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63 #include <freebsd/stdlib.h>
64 #else
65 #ifdef __linux__
66 #include <pty.h>
67 #include <malloc.h>
68 #include <linux/rtc.h>
69
70 /* For the benefit of older linux systems which don't supply it,
71    we use a local copy of hpet.h. */
72 /* #include <linux/hpet.h> */
73 #include "hpet.h"
74
75 #include <linux/ppdev.h>
76 #include <linux/parport.h>
77 #endif
78 #ifdef __sun__
79 #include <sys/stat.h>
80 #include <sys/ethernet.h>
81 #include <sys/sockio.h>
82 #include <netinet/arp.h>
83 #include <netinet/in.h>
84 #include <netinet/in_systm.h>
85 #include <netinet/ip.h>
86 #include <netinet/ip_icmp.h> // must come after ip.h
87 #include <netinet/udp.h>
88 #include <netinet/tcp.h>
89 #include <net/if.h>
90 #include <syslog.h>
91 #include <stropts.h>
92 #endif
93 #endif
94 #endif
95
96 #if defined(__OpenBSD__)
97 #include <util.h>
98 #endif
99
100 #if defined(CONFIG_VDE)
101 #include <libvdeplug.h>
102 #endif
103
104 #ifdef _WIN32
105 #include <windows.h>
106 #include <malloc.h>
107 #include <sys/timeb.h>
108 #include <mmsystem.h>
109 #define getopt_long_only getopt_long
110 #define memalign(align, size) malloc(size)
111 #endif
112
113 #include "qemu-common.h"
114 #include "net.h"
115 #include "monitor.h"
116 #include "sysemu.h"
117 #include "qemu-timer.h"
118 #include "qemu-char.h"
119 #include "audio/audio.h"
120 #include "qemu_socket.h"
121 #include "qemu-log.h"
122
123 #include "slirp/libslirp.h"
124
125
126 static VLANState *first_vlan;
127
128 /***********************************************************/
129 /* network device redirectors */
130
131 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
132 static void hex_dump(FILE *f, const uint8_t *buf, int size)
133 {
134     int len, i, j, c;
135
136     for(i=0;i<size;i+=16) {
137         len = size - i;
138         if (len > 16)
139             len = 16;
140         fprintf(f, "%08x ", i);
141         for(j=0;j<16;j++) {
142             if (j < len)
143                 fprintf(f, " %02x", buf[i+j]);
144             else
145                 fprintf(f, "   ");
146         }
147         fprintf(f, " ");
148         for(j=0;j<len;j++) {
149             c = buf[i+j];
150             if (c < ' ' || c > '~')
151                 c = '.';
152             fprintf(f, "%c", c);
153         }
154         fprintf(f, "\n");
155     }
156 }
157 #endif
158
159 static int parse_macaddr(uint8_t *macaddr, const char *p)
160 {
161     int i;
162     char *last_char;
163     long int offset;
164
165     errno = 0;
166     offset = strtol(p, &last_char, 0);    
167     if (0 == errno && '\0' == *last_char &&
168             offset >= 0 && offset <= 0xFFFFFF) {
169         macaddr[3] = (offset & 0xFF0000) >> 16;
170         macaddr[4] = (offset & 0xFF00) >> 8;
171         macaddr[5] = offset & 0xFF;
172         return 0;
173     } else {
174         for(i = 0; i < 6; i++) {
175             macaddr[i] = strtol(p, (char **)&p, 16);
176             if (i == 5) {
177                 if (*p != '\0')
178                     return -1;
179             } else {
180                 if (*p != ':' && *p != '-')
181                     return -1;
182                 p++;
183             }
184         }
185         return 0;    
186     }
187
188     return -1;
189 }
190
191 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
192 {
193     const char *p, *p1;
194     int len;
195     p = *pp;
196     p1 = strchr(p, sep);
197     if (!p1)
198         return -1;
199     len = p1 - p;
200     p1++;
201     if (buf_size > 0) {
202         if (len > buf_size - 1)
203             len = buf_size - 1;
204         memcpy(buf, p, len);
205         buf[len] = '\0';
206     }
207     *pp = p1;
208     return 0;
209 }
210
211 int parse_host_src_port(struct sockaddr_in *haddr,
212                         struct sockaddr_in *saddr,
213                         const char *input_str)
214 {
215     char *str = strdup(input_str);
216     char *host_str = str;
217     char *src_str;
218     const char *src_str2;
219     char *ptr;
220
221     /*
222      * Chop off any extra arguments at the end of the string which
223      * would start with a comma, then fill in the src port information
224      * if it was provided else use the "any address" and "any port".
225      */
226     if ((ptr = strchr(str,',')))
227         *ptr = '\0';
228
229     if ((src_str = strchr(input_str,'@'))) {
230         *src_str = '\0';
231         src_str++;
232     }
233
234     if (parse_host_port(haddr, host_str) < 0)
235         goto fail;
236
237     src_str2 = src_str;
238     if (!src_str || *src_str == '\0')
239         src_str2 = ":0";
240
241     if (parse_host_port(saddr, src_str2) < 0)
242         goto fail;
243
244     free(str);
245     return(0);
246
247 fail:
248     free(str);
249     return -1;
250 }
251
252 int parse_host_port(struct sockaddr_in *saddr, const char *str)
253 {
254     char buf[512];
255     struct hostent *he;
256     const char *p, *r;
257     int port;
258
259     p = str;
260     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
261         return -1;
262     saddr->sin_family = AF_INET;
263     if (buf[0] == '\0') {
264         saddr->sin_addr.s_addr = 0;
265     } else {
266         if (qemu_isdigit(buf[0])) {
267             if (!inet_aton(buf, &saddr->sin_addr))
268                 return -1;
269         } else {
270             if ((he = gethostbyname(buf)) == NULL)
271                 return - 1;
272             saddr->sin_addr = *(struct in_addr *)he->h_addr;
273         }
274     }
275     port = strtol(p, (char **)&r, 0);
276     if (r == p)
277         return -1;
278     saddr->sin_port = htons(port);
279     return 0;
280 }
281
282 #if !defined(_WIN32) && 0
283 static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
284 {
285     const char *p;
286     int len;
287
288     len = MIN(108, strlen(str));
289     p = strchr(str, ',');
290     if (p)
291         len = MIN(len, p - str);
292
293     memset(uaddr, 0, sizeof(*uaddr));
294
295     uaddr->sun_family = AF_UNIX;
296     memcpy(uaddr->sun_path, str, len);
297
298     return 0;
299 }
300 #endif
301
302 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
303 {
304     snprintf(vc->info_str, sizeof(vc->info_str),
305              "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
306              vc->model,
307              macaddr[0], macaddr[1], macaddr[2],
308              macaddr[3], macaddr[4], macaddr[5]);
309 }
310
311 static char *assign_name(VLANClientState *vc1, const char *model)
312 {
313     VLANState *vlan;
314     char buf[256];
315     int id = 0;
316
317     for (vlan = first_vlan; vlan; vlan = vlan->next) {
318         VLANClientState *vc;
319
320         for (vc = vlan->first_client; vc; vc = vc->next)
321             if (vc != vc1 && strcmp(vc->model, model) == 0)
322                 id++;
323     }
324
325     snprintf(buf, sizeof(buf), "%s.%d", model, id);
326
327     return strdup(buf);
328 }
329
330 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
331                                       const char *model,
332                                       const char *name,
333                                       NetCanReceive *can_receive,
334                                       NetReceive *receive,
335                                       NetReceiveIOV *receive_iov,
336                                       NetCleanup *cleanup,
337                                       void *opaque)
338 {
339     VLANClientState *vc, **pvc;
340     vc = qemu_mallocz(sizeof(VLANClientState));
341     vc->model = strdup(model);
342     if (name)
343         vc->name = strdup(name);
344     else
345         vc->name = assign_name(vc, model);
346     vc->can_receive = can_receive;
347     vc->receive = receive;
348     vc->receive_iov = receive_iov;
349     vc->cleanup = cleanup;
350     vc->opaque = opaque;
351     vc->vlan = vlan;
352
353     vc->next = NULL;
354     pvc = &vlan->first_client;
355     while (*pvc != NULL)
356         pvc = &(*pvc)->next;
357     *pvc = vc;
358     return vc;
359 }
360
361 void qemu_del_vlan_client(VLANClientState *vc)
362 {
363     VLANClientState **pvc = &vc->vlan->first_client;
364
365     while (*pvc != NULL)
366         if (*pvc == vc) {
367             *pvc = vc->next;
368             if (vc->cleanup) {
369                 vc->cleanup(vc);
370             }
371             free(vc->name);
372             free(vc->model);
373             qemu_free(vc);
374             break;
375         } else
376             pvc = &(*pvc)->next;
377 }
378
379 VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
380 {
381     VLANClientState **pvc = &vlan->first_client;
382
383     while (*pvc != NULL)
384         if ((*pvc)->opaque == opaque)
385             return *pvc;
386         else
387             pvc = &(*pvc)->next;
388
389     return NULL;
390 }
391
392 static VLANClientState *
393 qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
394                               const char *client_str)
395 {
396     VLANState *vlan;
397     VLANClientState *vc;
398
399     vlan = qemu_find_vlan(vlan_id, 0);
400     if (!vlan) {
401         monitor_printf(mon, "unknown VLAN %d\n", vlan_id);
402         return NULL;
403     }
404
405     for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
406         if (!strcmp(vc->name, client_str)) {
407             break;
408         }
409     }
410     if (!vc) {
411         monitor_printf(mon, "can't find device %s on VLAN %d\n",
412                        client_str, vlan_id);
413     }
414
415     return vc;
416 }
417
418 int qemu_can_send_packet(VLANClientState *sender)
419 {
420     VLANState *vlan = sender->vlan;
421     VLANClientState *vc;
422
423     for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
424         if (vc == sender) {
425             continue;
426         }
427
428         /* no can_receive() handler, they can always receive */
429         if (!vc->can_receive || vc->can_receive(vc)) {
430             return 1;
431         }
432     }
433     return 0;
434 }
435
436 static int
437 qemu_deliver_packet(VLANClientState *sender, const uint8_t *buf, int size)
438 {
439     VLANClientState *vc;
440     int ret = -1;
441
442     sender->vlan->delivering = 1;
443
444     for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
445         ssize_t len;
446
447         if (vc == sender) {
448             continue;
449         }
450
451         if (vc->link_down) {
452             ret = size;
453             continue;
454         }
455
456         len = vc->receive(vc, buf, size);
457
458         ret = (ret >= 0) ? ret : len;
459     }
460
461     sender->vlan->delivering = 0;
462
463     return ret;
464 }
465
466 void qemu_purge_queued_packets(VLANClientState *vc)
467 {
468     VLANPacket **pp = &vc->vlan->send_queue;
469
470     while (*pp != NULL) {
471         VLANPacket *packet = *pp;
472
473         if (packet->sender == vc) {
474             *pp = packet->next;
475             qemu_free(packet);
476         } else {
477             pp = &packet->next;
478         }
479     }
480 }
481
482 void qemu_flush_queued_packets(VLANClientState *vc)
483 {
484     VLANPacket *packet;
485
486     while ((packet = vc->vlan->send_queue) != NULL) {
487         int ret;
488
489         vc->vlan->send_queue = packet->next;
490
491         ret = qemu_deliver_packet(packet->sender, packet->data, packet->size);
492         if (ret == 0 && packet->sent_cb != NULL) {
493             packet->next = vc->vlan->send_queue;
494             vc->vlan->send_queue = packet;
495             break;
496         }
497
498         if (packet->sent_cb)
499             packet->sent_cb(packet->sender, ret);
500
501         qemu_free(packet);
502     }
503 }
504
505 static void qemu_enqueue_packet(VLANClientState *sender,
506                                 const uint8_t *buf, int size,
507                                 NetPacketSent *sent_cb)
508 {
509     VLANPacket *packet;
510
511     packet = qemu_malloc(sizeof(VLANPacket) + size);
512     packet->next = sender->vlan->send_queue;
513     packet->sender = sender;
514     packet->size = size;
515     packet->sent_cb = sent_cb;
516     memcpy(packet->data, buf, size);
517     sender->vlan->send_queue = packet;
518 }
519
520 ssize_t qemu_send_packet_async(VLANClientState *sender,
521                                const uint8_t *buf, int size,
522                                NetPacketSent *sent_cb)
523 {
524     int ret;
525
526     if (sender->link_down) {
527         return size;
528     }
529
530 #ifdef DEBUG_NET
531     printf("vlan %d send:\n", sender->vlan->id);
532     hex_dump(stdout, buf, size);
533 #endif
534
535     if (sender->vlan->delivering) {
536         qemu_enqueue_packet(sender, buf, size, NULL);
537         return size;
538     }
539
540     ret = qemu_deliver_packet(sender, buf, size);
541     if (ret == 0 && sent_cb != NULL) {
542         qemu_enqueue_packet(sender, buf, size, sent_cb);
543         return 0;
544     }
545
546     qemu_flush_queued_packets(sender);
547
548     return ret;
549 }
550
551 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
552 {
553     qemu_send_packet_async(vc, buf, size, NULL);
554 }
555
556 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
557                                int iovcnt)
558 {
559     uint8_t buffer[4096];
560     size_t offset = 0;
561     int i;
562
563     for (i = 0; i < iovcnt; i++) {
564         size_t len;
565
566         len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
567         memcpy(buffer + offset, iov[i].iov_base, len);
568         offset += len;
569     }
570
571     return vc->receive(vc, buffer, offset);
572 }
573
574 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
575 {
576     size_t offset = 0;
577     int i;
578
579     for (i = 0; i < iovcnt; i++)
580         offset += iov[i].iov_len;
581     return offset;
582 }
583
584 static int qemu_deliver_packet_iov(VLANClientState *sender,
585                                    const struct iovec *iov, int iovcnt)
586 {
587     VLANClientState *vc;
588     int ret = -1;
589
590     sender->vlan->delivering = 1;
591
592     for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
593         ssize_t len;
594
595         if (vc == sender) {
596             continue;
597         }
598
599         if (vc->link_down) {
600             ret = calc_iov_length(iov, iovcnt);
601             continue;
602         }
603
604         if (vc->receive_iov) {
605             len = vc->receive_iov(vc, iov, iovcnt);
606         } else {
607             len = vc_sendv_compat(vc, iov, iovcnt);
608         }
609
610         ret = (ret >= 0) ? ret : len;
611     }
612
613     sender->vlan->delivering = 0;
614
615     return ret;
616 }
617
618 static ssize_t qemu_enqueue_packet_iov(VLANClientState *sender,
619                                        const struct iovec *iov, int iovcnt,
620                                        NetPacketSent *sent_cb)
621 {
622     VLANPacket *packet;
623     size_t max_len = 0;
624     int i;
625
626     max_len = calc_iov_length(iov, iovcnt);
627
628     packet = qemu_malloc(sizeof(VLANPacket) + max_len);
629     packet->next = sender->vlan->send_queue;
630     packet->sender = sender;
631     packet->sent_cb = sent_cb;
632     packet->size = 0;
633
634     for (i = 0; i < iovcnt; i++) {
635         size_t len = iov[i].iov_len;
636
637         memcpy(packet->data + packet->size, iov[i].iov_base, len);
638         packet->size += len;
639     }
640
641     sender->vlan->send_queue = packet;
642
643     return packet->size;
644 }
645
646 ssize_t qemu_sendv_packet_async(VLANClientState *sender,
647                                 const struct iovec *iov, int iovcnt,
648                                 NetPacketSent *sent_cb)
649 {
650     int ret;
651
652     if (sender->link_down) {
653         return calc_iov_length(iov, iovcnt);
654     }
655
656     if (sender->vlan->delivering) {
657         return qemu_enqueue_packet_iov(sender, iov, iovcnt, NULL);
658     }
659
660     ret = qemu_deliver_packet_iov(sender, iov, iovcnt);
661     if (ret == 0 && sent_cb != NULL) {
662         qemu_enqueue_packet_iov(sender, iov, iovcnt, sent_cb);
663         return 0;
664     }
665
666     qemu_flush_queued_packets(sender);
667
668     return ret;
669 }
670
671 ssize_t
672 qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
673 {
674     return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
675 }
676
677 static void config_error(Monitor *mon, const char *fmt, ...)
678 {
679     va_list ap;
680
681     va_start(ap, fmt);
682     if (mon) {
683         monitor_vprintf(mon, fmt, ap);
684     } else {
685         fprintf(stderr, "qemu: ");
686         vfprintf(stderr, fmt, ap);
687         exit(1);
688     }
689     va_end(ap);
690 }
691
692 #if defined(CONFIG_SLIRP)
693
694 /* slirp network adapter */
695
696 #define SLIRP_CFG_HOSTFWD 1
697 #define SLIRP_CFG_LEGACY  2
698
699 struct slirp_config_str {
700     struct slirp_config_str *next;
701     int flags;
702     char str[1024];
703     int legacy_format;
704 };
705
706 typedef struct SlirpState {
707     TAILQ_ENTRY(SlirpState) entry;
708     VLANClientState *vc;
709     Slirp *slirp;
710 #ifndef _WIN32
711     char smb_dir[128];
712 #endif
713 } SlirpState;
714
715 static struct slirp_config_str *slirp_configs;
716 const char *legacy_tftp_prefix;
717 const char *legacy_bootp_filename;
718 static TAILQ_HEAD(slirp_stacks, SlirpState) slirp_stacks =
719     TAILQ_HEAD_INITIALIZER(slirp_stacks);
720
721 static void slirp_hostfwd(SlirpState *s, Monitor *mon, const char *redir_str,
722                           int legacy_format);
723 static void slirp_guestfwd(SlirpState *s, Monitor *mon, const char *config_str,
724                            int legacy_format);
725
726 #ifndef _WIN32
727 static const char *legacy_smb_export;
728
729 static void slirp_smb(SlirpState *s, Monitor *mon, const char *exported_dir,
730                       struct in_addr vserver_addr);
731 static void slirp_smb_cleanup(SlirpState *s);
732 #else
733 static inline void slirp_smb_cleanup(SlirpState *s) { }
734 #endif
735
736 int slirp_can_output(void *opaque)
737 {
738     SlirpState *s = opaque;
739
740     return qemu_can_send_packet(s->vc);
741 }
742
743 void slirp_output(void *opaque, const uint8_t *pkt, int pkt_len)
744 {
745     SlirpState *s = opaque;
746
747 #ifdef DEBUG_SLIRP
748     printf("slirp output:\n");
749     hex_dump(stdout, pkt, pkt_len);
750 #endif
751     qemu_send_packet(s->vc, pkt, pkt_len);
752 }
753
754 static ssize_t slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
755 {
756     SlirpState *s = vc->opaque;
757
758 #ifdef DEBUG_SLIRP
759     printf("slirp input:\n");
760     hex_dump(stdout, buf, size);
761 #endif
762     slirp_input(s->slirp, buf, size);
763     return size;
764 }
765
766 static void net_slirp_cleanup(VLANClientState *vc)
767 {
768     SlirpState *s = vc->opaque;
769
770     slirp_cleanup(s->slirp);
771     slirp_smb_cleanup(s);
772     TAILQ_REMOVE(&slirp_stacks, s, entry);
773     qemu_free(s);
774 }
775
776 static int net_slirp_init(Monitor *mon, VLANState *vlan, const char *model,
777                           const char *name, int restricted,
778                           const char *vnetwork, const char *vhost,
779                           const char *vhostname, const char *tftp_export,
780                           const char *bootfile, const char *vdhcp_start,
781                           const char *vnameserver, const char *smb_export,
782                           const char *vsmbserver)
783 {
784     /* default settings according to historic slirp */
785     struct in_addr net  = { .s_addr = htonl(0x0a000000) }; /* 10.0.0.0 */
786     struct in_addr mask = { .s_addr = htonl(0xff000000) }; /* 255.0.0.0 */
787     struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
788     struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
789     struct in_addr dns  = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */
790 #ifndef _WIN32
791     struct in_addr smbsrv = { .s_addr = 0 };
792 #endif
793     SlirpState *s;
794     char buf[20];
795     uint32_t addr;
796     int shift;
797     char *end;
798
799     if (!tftp_export) {
800         tftp_export = legacy_tftp_prefix;
801     }
802     if (!bootfile) {
803         bootfile = legacy_bootp_filename;
804     }
805
806     if (vnetwork) {
807         if (get_str_sep(buf, sizeof(buf), &vnetwork, '/') < 0) {
808             if (!inet_aton(vnetwork, &net)) {
809                 return -1;
810             }
811             addr = ntohl(net.s_addr);
812             if (!(addr & 0x80000000)) {
813                 mask.s_addr = htonl(0xff000000); /* class A */
814             } else if ((addr & 0xfff00000) == 0xac100000) {
815                 mask.s_addr = htonl(0xfff00000); /* priv. 172.16.0.0/12 */
816             } else if ((addr & 0xc0000000) == 0x80000000) {
817                 mask.s_addr = htonl(0xffff0000); /* class B */
818             } else if ((addr & 0xffff0000) == 0xc0a80000) {
819                 mask.s_addr = htonl(0xffff0000); /* priv. 192.168.0.0/16 */
820             } else if ((addr & 0xffff0000) == 0xc6120000) {
821                 mask.s_addr = htonl(0xfffe0000); /* tests 198.18.0.0/15 */
822             } else if ((addr & 0xe0000000) == 0xe0000000) {
823                 mask.s_addr = htonl(0xffffff00); /* class C */
824             } else {
825                 mask.s_addr = htonl(0xfffffff0); /* multicast/reserved */
826             }
827         } else {
828             if (!inet_aton(buf, &net)) {
829                 return -1;
830             }
831             shift = strtol(vnetwork, &end, 10);
832             if (*end != '\0') {
833                 if (!inet_aton(vnetwork, &mask)) {
834                     return -1;
835                 }
836             } else if (shift < 4 || shift > 32) {
837                 return -1;
838             } else {
839                 mask.s_addr = htonl(0xffffffff << (32 - shift));
840             }
841         }
842         net.s_addr &= mask.s_addr;
843         host.s_addr = net.s_addr | (htonl(0x0202) & ~mask.s_addr);
844         dhcp.s_addr = net.s_addr | (htonl(0x020f) & ~mask.s_addr);
845         dns.s_addr  = net.s_addr | (htonl(0x0203) & ~mask.s_addr);
846     }
847
848     if (vhost && !inet_aton(vhost, &host)) {
849         return -1;
850     }
851     if ((host.s_addr & mask.s_addr) != net.s_addr) {
852         return -1;
853     }
854
855     if (vdhcp_start && !inet_aton(vdhcp_start, &dhcp)) {
856         return -1;
857     }
858     if ((dhcp.s_addr & mask.s_addr) != net.s_addr ||
859         dhcp.s_addr == host.s_addr || dhcp.s_addr == dns.s_addr) {
860         return -1;
861     }
862
863     if (vnameserver && !inet_aton(vnameserver, &dns)) {
864         return -1;
865     }
866     if ((dns.s_addr & mask.s_addr) != net.s_addr ||
867         dns.s_addr == host.s_addr) {
868         return -1;
869     }
870
871 #ifndef _WIN32
872     if (vsmbserver && !inet_aton(vsmbserver, &smbsrv)) {
873         return -1;
874     }
875 #endif
876
877     s = qemu_mallocz(sizeof(SlirpState));
878     s->slirp = slirp_init(restricted, net, mask, host, vhostname,
879                           tftp_export, bootfile, dhcp, dns, s);
880     TAILQ_INSERT_TAIL(&slirp_stacks, s, entry);
881
882     while (slirp_configs) {
883         struct slirp_config_str *config = slirp_configs;
884
885         if (config->flags & SLIRP_CFG_HOSTFWD) {
886             slirp_hostfwd(s, mon, config->str,
887                           config->flags & SLIRP_CFG_LEGACY);
888         } else {
889             slirp_guestfwd(s, mon, config->str,
890                            config->flags & SLIRP_CFG_LEGACY);
891         }
892         slirp_configs = config->next;
893         qemu_free(config);
894     }
895 #ifndef _WIN32
896     if (!smb_export) {
897         smb_export = legacy_smb_export;
898     }
899     if (smb_export) {
900         slirp_smb(s, mon, smb_export, smbsrv);
901     }
902 #endif
903
904     s->vc = qemu_new_vlan_client(vlan, model, name, NULL, slirp_receive, NULL,
905                                  net_slirp_cleanup, s);
906     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
907              "net=%s, restricted=%c", inet_ntoa(net), restricted ? 'y' : 'n');
908     return 0;
909 }
910
911 static SlirpState *slirp_lookup(Monitor *mon, const char *vlan,
912                                 const char *stack)
913 {
914     VLANClientState *vc;
915
916     if (vlan) {
917         vc = qemu_find_vlan_client_by_name(mon, strtol(vlan, NULL, 0), stack);
918         if (!vc) {
919             return NULL;
920         }
921         if (strcmp(vc->model, "user")) {
922             monitor_printf(mon, "invalid device specified\n");
923             return NULL;
924         }
925         return vc->opaque;
926     } else {
927         if (TAILQ_EMPTY(&slirp_stacks)) {
928             monitor_printf(mon, "user mode network stack not in use\n");
929             return NULL;
930         }
931         return TAILQ_FIRST(&slirp_stacks);
932     }
933 }
934
935 void net_slirp_hostfwd_remove(Monitor *mon, const char *arg1,
936                               const char *arg2, const char *arg3)
937 {
938     struct in_addr host_addr = { .s_addr = INADDR_ANY };
939     int host_port;
940     char buf[256] = "";
941     const char *src_str, *p;
942     SlirpState *s;
943     int is_udp = 0;
944     int err;
945
946     if (arg2) {
947         s = slirp_lookup(mon, arg1, arg2);
948         src_str = arg3;
949     } else {
950         s = slirp_lookup(mon, NULL, NULL);
951         src_str = arg1;
952     }
953     if (!s) {
954         return;
955     }
956
957     if (!src_str || !src_str[0])
958         goto fail_syntax;
959
960     p = src_str;
961     get_str_sep(buf, sizeof(buf), &p, ':');
962
963     if (!strcmp(buf, "tcp") || buf[0] == '\0') {
964         is_udp = 0;
965     } else if (!strcmp(buf, "udp")) {
966         is_udp = 1;
967     } else {
968         goto fail_syntax;
969     }
970
971     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
972         goto fail_syntax;
973     }
974     if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
975         goto fail_syntax;
976     }
977
978     host_port = atoi(p);
979
980     err = slirp_remove_hostfwd(TAILQ_FIRST(&slirp_stacks)->slirp, is_udp,
981                                host_addr, host_port);
982
983     monitor_printf(mon, "host forwarding rule for %s %s\n", src_str,
984                    err ? "removed" : "not found");
985     return;
986
987  fail_syntax:
988     monitor_printf(mon, "invalid format\n");
989 }
990
991 static void slirp_hostfwd(SlirpState *s, Monitor *mon, const char *redir_str,
992                           int legacy_format)
993 {
994     struct in_addr host_addr = { .s_addr = INADDR_ANY };
995     struct in_addr guest_addr = { .s_addr = 0 };
996     int host_port, guest_port;
997     const char *p;
998     char buf[256];
999     int is_udp;
1000     char *end;
1001
1002     p = redir_str;
1003     if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1004         goto fail_syntax;
1005     }
1006     if (!strcmp(buf, "tcp") || buf[0] == '\0') {
1007         is_udp = 0;
1008     } else if (!strcmp(buf, "udp")) {
1009         is_udp = 1;
1010     } else {
1011         goto fail_syntax;
1012     }
1013
1014     if (!legacy_format) {
1015         if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1016             goto fail_syntax;
1017         }
1018         if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
1019             goto fail_syntax;
1020         }
1021     }
1022
1023     if (get_str_sep(buf, sizeof(buf), &p, legacy_format ? ':' : '-') < 0) {
1024         goto fail_syntax;
1025     }
1026     host_port = strtol(buf, &end, 0);
1027     if (*end != '\0' || host_port < 1 || host_port > 65535) {
1028         goto fail_syntax;
1029     }
1030
1031     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1032         goto fail_syntax;
1033     }
1034     if (buf[0] != '\0' && !inet_aton(buf, &guest_addr)) {
1035         goto fail_syntax;
1036     }
1037
1038     guest_port = strtol(p, &end, 0);
1039     if (*end != '\0' || guest_port < 1 || guest_port > 65535) {
1040         goto fail_syntax;
1041     }
1042
1043     if (slirp_add_hostfwd(s->slirp, is_udp, host_addr, host_port, guest_addr,
1044                           guest_port) < 0) {
1045         config_error(mon, "could not set up host forwarding rule '%s'\n",
1046                      redir_str);
1047     }
1048     return;
1049
1050  fail_syntax:
1051     config_error(mon, "invalid host forwarding rule '%s'\n", redir_str);
1052 }
1053
1054 void net_slirp_hostfwd_add(Monitor *mon, const char *arg1,
1055                            const char *arg2, const char *arg3)
1056 {
1057     const char *redir_str;
1058     SlirpState *s;
1059
1060     if (arg2) {
1061         s = slirp_lookup(mon, arg1, arg2);
1062         redir_str = arg3;
1063     } else {
1064         s = slirp_lookup(mon, NULL, NULL);
1065         redir_str = arg1;
1066     }
1067     if (s) {
1068         slirp_hostfwd(s, mon, redir_str, 0);
1069     }
1070
1071 }
1072
1073 void net_slirp_redir(const char *redir_str)
1074 {
1075     struct slirp_config_str *config;
1076
1077     if (TAILQ_EMPTY(&slirp_stacks)) {
1078         config = qemu_malloc(sizeof(*config));
1079         pstrcpy(config->str, sizeof(config->str), redir_str);
1080         config->flags = SLIRP_CFG_HOSTFWD | SLIRP_CFG_LEGACY;
1081         config->next = slirp_configs;
1082         slirp_configs = config;
1083         return;
1084     }
1085
1086     slirp_hostfwd(TAILQ_FIRST(&slirp_stacks), NULL, redir_str, 1);
1087 }
1088
1089 #ifndef _WIN32
1090
1091 /* automatic user mode samba server configuration */
1092 static void slirp_smb_cleanup(SlirpState *s)
1093 {
1094     char cmd[128];
1095
1096     if (s->smb_dir[0] != '\0') {
1097         snprintf(cmd, sizeof(cmd), "rm -rf %s", s->smb_dir);
1098         system(cmd);
1099         s->smb_dir[0] = '\0';
1100     }
1101 }
1102
1103 static void slirp_smb(SlirpState* s, Monitor *mon, const char *exported_dir,
1104                       struct in_addr vserver_addr)
1105 {
1106     static int instance;
1107     char smb_conf[128];
1108     char smb_cmdline[128];
1109     FILE *f;
1110
1111     snprintf(s->smb_dir, sizeof(s->smb_dir), "/tmp/qemu-smb.%ld-%d",
1112              (long)getpid(), instance++);
1113     if (mkdir(s->smb_dir, 0700) < 0) {
1114         config_error(mon, "could not create samba server dir '%s'\n",
1115                      s->smb_dir);
1116         return;
1117     }
1118     snprintf(smb_conf, sizeof(smb_conf), "%s/%s", s->smb_dir, "smb.conf");
1119
1120     f = fopen(smb_conf, "w");
1121     if (!f) {
1122         slirp_smb_cleanup(s);
1123         config_error(mon, "could not create samba server "
1124                      "configuration file '%s'\n", smb_conf);
1125         return;
1126     }
1127     fprintf(f,
1128             "[global]\n"
1129             "private dir=%s\n"
1130             "smb ports=0\n"
1131             "socket address=127.0.0.1\n"
1132             "pid directory=%s\n"
1133             "lock directory=%s\n"
1134             "log file=%s/log.smbd\n"
1135             "smb passwd file=%s/smbpasswd\n"
1136             "security = share\n"
1137             "[qemu]\n"
1138             "path=%s\n"
1139             "read only=no\n"
1140             "guest ok=yes\n",
1141             s->smb_dir,
1142             s->smb_dir,
1143             s->smb_dir,
1144             s->smb_dir,
1145             s->smb_dir,
1146             exported_dir
1147             );
1148     fclose(f);
1149
1150     snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
1151              SMBD_COMMAND, smb_conf);
1152
1153     if (slirp_add_exec(s->slirp, 0, smb_cmdline, vserver_addr, 139) < 0) {
1154         slirp_smb_cleanup(s);
1155         config_error(mon, "conflicting/invalid smbserver address\n");
1156     }
1157 }
1158
1159 /* automatic user mode samba server configuration (legacy interface) */
1160 void net_slirp_smb(const char *exported_dir)
1161 {
1162     struct in_addr vserver_addr = { .s_addr = 0 };
1163
1164     if (legacy_smb_export) {
1165         fprintf(stderr, "-smb given twice\n");
1166         exit(1);
1167     }
1168     legacy_smb_export = exported_dir;
1169     if (!TAILQ_EMPTY(&slirp_stacks)) {
1170         slirp_smb(TAILQ_FIRST(&slirp_stacks), NULL, exported_dir,
1171                   vserver_addr);
1172     }
1173 }
1174
1175 #endif /* !defined(_WIN32) */
1176
1177 struct GuestFwd {
1178     CharDriverState *hd;
1179     struct in_addr server;
1180     int port;
1181     Slirp *slirp;
1182 };
1183
1184 static int guestfwd_can_read(void *opaque)
1185 {
1186     struct GuestFwd *fwd = opaque;
1187     return slirp_socket_can_recv(fwd->slirp, fwd->server, fwd->port);
1188 }
1189
1190 static void guestfwd_read(void *opaque, const uint8_t *buf, int size)
1191 {
1192     struct GuestFwd *fwd = opaque;
1193     slirp_socket_recv(fwd->slirp, fwd->server, fwd->port, buf, size);
1194 }
1195
1196 static void slirp_guestfwd(SlirpState *s, Monitor *mon, const char *config_str,
1197                            int legacy_format)
1198 {
1199     struct in_addr server = { .s_addr = 0 };
1200     struct GuestFwd *fwd;
1201     const char *p;
1202     char buf[128];
1203     char *end;
1204     int port;
1205
1206     p = config_str;
1207     if (legacy_format) {
1208         if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1209             goto fail_syntax;
1210         }
1211     } else {
1212         if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1213             goto fail_syntax;
1214         }
1215         if (strcmp(buf, "tcp") && buf[0] != '\0') {
1216             goto fail_syntax;
1217         }
1218         if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
1219             goto fail_syntax;
1220         }
1221         if (buf[0] != '\0' && !inet_aton(buf, &server)) {
1222             goto fail_syntax;
1223         }
1224         if (get_str_sep(buf, sizeof(buf), &p, '-') < 0) {
1225             goto fail_syntax;
1226         }
1227     }
1228     port = strtol(buf, &end, 10);
1229     if (*end != '\0' || port < 1 || port > 65535) {
1230         goto fail_syntax;
1231     }
1232
1233     fwd = qemu_malloc(sizeof(struct GuestFwd));
1234     snprintf(buf, sizeof(buf), "guestfwd.tcp:%d", port);
1235     fwd->hd = qemu_chr_open(buf, p, NULL);
1236     if (!fwd->hd) {
1237         config_error(mon, "could not open guest forwarding device '%s'\n",
1238                      buf);
1239         qemu_free(fwd);
1240         return;
1241     }
1242     fwd->server = server;
1243     fwd->port = port;
1244     fwd->slirp = s->slirp;
1245
1246     if (slirp_add_exec(s->slirp, 3, fwd->hd, server, port) < 0) {
1247         config_error(mon, "conflicting/invalid host:port in guest forwarding "
1248                      "rule '%s'\n", config_str);
1249         qemu_free(fwd);
1250         return;
1251     }
1252     qemu_chr_add_handlers(fwd->hd, guestfwd_can_read, guestfwd_read,
1253                           NULL, fwd);
1254     return;
1255
1256  fail_syntax:
1257     config_error(mon, "invalid guest forwarding rule '%s'\n", config_str);
1258 }
1259
1260 void do_info_usernet(Monitor *mon)
1261 {
1262     SlirpState *s;
1263
1264     TAILQ_FOREACH(s, &slirp_stacks, entry) {
1265         monitor_printf(mon, "VLAN %d (%s):\n", s->vc->vlan->id, s->vc->name);
1266         slirp_connection_info(s->slirp, mon);
1267     }
1268 }
1269
1270 #endif /* CONFIG_SLIRP */
1271
1272 #if !defined(_WIN32)
1273
1274 typedef struct TAPState {
1275     VLANClientState *vc;
1276     int fd;
1277     char down_script[1024];
1278     char down_script_arg[128];
1279     uint8_t buf[4096];
1280     unsigned int read_poll : 1;
1281     unsigned int write_poll : 1;
1282 } TAPState;
1283
1284 static int launch_script(const char *setup_script, const char *ifname, int fd);
1285
1286 static int tap_can_send(void *opaque);
1287 static void tap_send(void *opaque);
1288 static void tap_writable(void *opaque);
1289
1290 static void tap_update_fd_handler(TAPState *s)
1291 {
1292     qemu_set_fd_handler2(s->fd,
1293                          s->read_poll  ? tap_can_send : NULL,
1294                          s->read_poll  ? tap_send     : NULL,
1295                          s->write_poll ? tap_writable : NULL,
1296                          s);
1297 }
1298
1299 static void tap_read_poll(TAPState *s, int enable)
1300 {
1301     s->read_poll = !!enable;
1302     tap_update_fd_handler(s);
1303 }
1304
1305 static void tap_write_poll(TAPState *s, int enable)
1306 {
1307     s->write_poll = !!enable;
1308     tap_update_fd_handler(s);
1309 }
1310
1311 static void tap_writable(void *opaque)
1312 {
1313     TAPState *s = opaque;
1314
1315     tap_write_poll(s, 0);
1316
1317     qemu_flush_queued_packets(s->vc);
1318 }
1319
1320 static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
1321                                int iovcnt)
1322 {
1323     TAPState *s = vc->opaque;
1324     ssize_t len;
1325
1326     do {
1327         len = writev(s->fd, iov, iovcnt);
1328     } while (len == -1 && errno == EINTR);
1329
1330     if (len == -1 && errno == EAGAIN) {
1331         tap_write_poll(s, 1);
1332         return 0;
1333     }
1334
1335     return len;
1336 }
1337
1338 static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1339 {
1340     TAPState *s = vc->opaque;
1341     ssize_t len;
1342
1343     do {
1344         len = write(s->fd, buf, size);
1345     } while (len == -1 && (errno == EINTR || errno == EAGAIN));
1346
1347     return len;
1348 }
1349
1350 static int tap_can_send(void *opaque)
1351 {
1352     TAPState *s = opaque;
1353
1354     return qemu_can_send_packet(s->vc);
1355 }
1356
1357 #ifdef __sun__
1358 static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1359 {
1360     struct strbuf sbuf;
1361     int f = 0;
1362
1363     sbuf.maxlen = maxlen;
1364     sbuf.buf = (char *)buf;
1365
1366     return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
1367 }
1368 #else
1369 static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
1370 {
1371     return read(tapfd, buf, maxlen);
1372 }
1373 #endif
1374
1375 static void tap_send_completed(VLANClientState *vc, ssize_t len)
1376 {
1377     TAPState *s = vc->opaque;
1378     tap_read_poll(s, 1);
1379 }
1380
1381 static void tap_send(void *opaque)
1382 {
1383     TAPState *s = opaque;
1384     int size;
1385
1386     do {
1387         size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
1388         if (size <= 0) {
1389             break;
1390         }
1391
1392         size = qemu_send_packet_async(s->vc, s->buf, size, tap_send_completed);
1393         if (size == 0) {
1394             tap_read_poll(s, 0);
1395         }
1396     } while (size > 0);
1397 }
1398
1399 static void tap_set_sndbuf(TAPState *s, int sndbuf, Monitor *mon)
1400 {
1401 #ifdef TUNSETSNDBUF
1402     if (ioctl(s->fd, TUNSETSNDBUF, &sndbuf) == -1) {
1403         config_error(mon, "TUNSETSNDBUF ioctl failed: %s\n",
1404                      strerror(errno));
1405     }
1406 #else
1407     config_error(mon, "No '-net tap,sndbuf=<nbytes>' support available\n");
1408 #endif
1409 }
1410
1411 static void tap_cleanup(VLANClientState *vc)
1412 {
1413     TAPState *s = vc->opaque;
1414
1415     qemu_purge_queued_packets(vc);
1416
1417     if (s->down_script[0])
1418         launch_script(s->down_script, s->down_script_arg, s->fd);
1419
1420     tap_read_poll(s, 0);
1421     tap_write_poll(s, 0);
1422     close(s->fd);
1423     qemu_free(s);
1424 }
1425
1426 /* fd support */
1427
1428 static TAPState *net_tap_fd_init(VLANState *vlan,
1429                                  const char *model,
1430                                  const char *name,
1431                                  int fd)
1432 {
1433     TAPState *s;
1434
1435     s = qemu_mallocz(sizeof(TAPState));
1436     s->fd = fd;
1437     s->vc = qemu_new_vlan_client(vlan, model, name, NULL, tap_receive,
1438                                  tap_receive_iov, tap_cleanup, s);
1439     tap_read_poll(s, 1);
1440     snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
1441     return s;
1442 }
1443
1444 #if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
1445 static int tap_open(char *ifname, int ifname_size)
1446 {
1447     int fd;
1448     char *dev;
1449     struct stat s;
1450
1451     TFR(fd = open("/dev/tap", O_RDWR));
1452     if (fd < 0) {
1453         fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
1454         return -1;
1455     }
1456
1457     fstat(fd, &s);
1458     dev = devname(s.st_rdev, S_IFCHR);
1459     pstrcpy(ifname, ifname_size, dev);
1460
1461     fcntl(fd, F_SETFL, O_NONBLOCK);
1462     return fd;
1463 }
1464 #elif defined(__sun__)
1465 #define TUNNEWPPA       (('T'<<16) | 0x0001)
1466 /*
1467  * Allocate TAP device, returns opened fd.
1468  * Stores dev name in the first arg(must be large enough).
1469  */
1470 static int tap_alloc(char *dev, size_t dev_size)
1471 {
1472     int tap_fd, if_fd, ppa = -1;
1473     static int ip_fd = 0;
1474     char *ptr;
1475
1476     static int arp_fd = 0;
1477     int ip_muxid, arp_muxid;
1478     struct strioctl  strioc_if, strioc_ppa;
1479     int link_type = I_PLINK;;
1480     struct lifreq ifr;
1481     char actual_name[32] = "";
1482
1483     memset(&ifr, 0x0, sizeof(ifr));
1484
1485     if( *dev ){
1486        ptr = dev;
1487        while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
1488        ppa = atoi(ptr);
1489     }
1490
1491     /* Check if IP device was opened */
1492     if( ip_fd )
1493        close(ip_fd);
1494
1495     TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
1496     if (ip_fd < 0) {
1497        syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
1498        return -1;
1499     }
1500
1501     TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
1502     if (tap_fd < 0) {
1503        syslog(LOG_ERR, "Can't open /dev/tap");
1504        return -1;
1505     }
1506
1507     /* Assign a new PPA and get its unit number. */
1508     strioc_ppa.ic_cmd = TUNNEWPPA;
1509     strioc_ppa.ic_timout = 0;
1510     strioc_ppa.ic_len = sizeof(ppa);
1511     strioc_ppa.ic_dp = (char *)&ppa;
1512     if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
1513        syslog (LOG_ERR, "Can't assign new interface");
1514
1515     TFR(if_fd = open("/dev/tap", O_RDWR, 0));
1516     if (if_fd < 0) {
1517        syslog(LOG_ERR, "Can't open /dev/tap (2)");
1518        return -1;
1519     }
1520     if(ioctl(if_fd, I_PUSH, "ip") < 0){
1521        syslog(LOG_ERR, "Can't push IP module");
1522        return -1;
1523     }
1524
1525     if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
1526         syslog(LOG_ERR, "Can't get flags\n");
1527
1528     snprintf (actual_name, 32, "tap%d", ppa);
1529     pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1530
1531     ifr.lifr_ppa = ppa;
1532     /* Assign ppa according to the unit number returned by tun device */
1533
1534     if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
1535         syslog (LOG_ERR, "Can't set PPA %d", ppa);
1536     if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
1537         syslog (LOG_ERR, "Can't get flags\n");
1538     /* Push arp module to if_fd */
1539     if (ioctl (if_fd, I_PUSH, "arp") < 0)
1540         syslog (LOG_ERR, "Can't push ARP module (2)");
1541
1542     /* Push arp module to ip_fd */
1543     if (ioctl (ip_fd, I_POP, NULL) < 0)
1544         syslog (LOG_ERR, "I_POP failed\n");
1545     if (ioctl (ip_fd, I_PUSH, "arp") < 0)
1546         syslog (LOG_ERR, "Can't push ARP module (3)\n");
1547     /* Open arp_fd */
1548     TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
1549     if (arp_fd < 0)
1550        syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
1551
1552     /* Set ifname to arp */
1553     strioc_if.ic_cmd = SIOCSLIFNAME;
1554     strioc_if.ic_timout = 0;
1555     strioc_if.ic_len = sizeof(ifr);
1556     strioc_if.ic_dp = (char *)&ifr;
1557     if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
1558         syslog (LOG_ERR, "Can't set ifname to arp\n");
1559     }
1560
1561     if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
1562        syslog(LOG_ERR, "Can't link TAP device to IP");
1563        return -1;
1564     }
1565
1566     if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
1567         syslog (LOG_ERR, "Can't link TAP device to ARP");
1568
1569     close (if_fd);
1570
1571     memset(&ifr, 0x0, sizeof(ifr));
1572     pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1573     ifr.lifr_ip_muxid  = ip_muxid;
1574     ifr.lifr_arp_muxid = arp_muxid;
1575
1576     if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
1577     {
1578       ioctl (ip_fd, I_PUNLINK , arp_muxid);
1579       ioctl (ip_fd, I_PUNLINK, ip_muxid);
1580       syslog (LOG_ERR, "Can't set multiplexor id");
1581     }
1582
1583     snprintf(dev, dev_size, "tap%d", ppa);
1584     return tap_fd;
1585 }
1586
1587 static int tap_open(char *ifname, int ifname_size)
1588 {
1589     char  dev[10]="";
1590     int fd;
1591     if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
1592        fprintf(stderr, "Cannot allocate TAP device\n");
1593        return -1;
1594     }
1595     pstrcpy(ifname, ifname_size, dev);
1596     fcntl(fd, F_SETFL, O_NONBLOCK);
1597     return fd;
1598 }
1599 #elif defined (_AIX)
1600 static int tap_open(char *ifname, int ifname_size)
1601 {
1602     fprintf (stderr, "no tap on AIX\n");
1603     return -1;
1604 }
1605 #else
1606 static int tap_open(char *ifname, int ifname_size)
1607 {
1608     struct ifreq ifr;
1609     int fd, ret;
1610
1611     TFR(fd = open("/dev/net/tun", O_RDWR));
1612     if (fd < 0) {
1613         fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1614         return -1;
1615     }
1616     memset(&ifr, 0, sizeof(ifr));
1617     ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1618     if (ifname[0] != '\0')
1619         pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
1620     else
1621         pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
1622     ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
1623     if (ret != 0) {
1624         fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1625         close(fd);
1626         return -1;
1627     }
1628     pstrcpy(ifname, ifname_size, ifr.ifr_name);
1629     fcntl(fd, F_SETFL, O_NONBLOCK);
1630     return fd;
1631 }
1632 #endif
1633
1634 static int launch_script(const char *setup_script, const char *ifname, int fd)
1635 {
1636     sigset_t oldmask, mask;
1637     int pid, status;
1638     char *args[3];
1639     char **parg;
1640
1641     sigemptyset(&mask);
1642     sigaddset(&mask, SIGCHLD);
1643     sigprocmask(SIG_BLOCK, &mask, &oldmask);
1644
1645     /* try to launch network script */
1646     pid = fork();
1647     if (pid == 0) {
1648         int open_max = sysconf(_SC_OPEN_MAX), i;
1649
1650         for (i = 0; i < open_max; i++) {
1651             if (i != STDIN_FILENO &&
1652                 i != STDOUT_FILENO &&
1653                 i != STDERR_FILENO &&
1654                 i != fd) {
1655                 close(i);
1656             }
1657         }
1658         parg = args;
1659         *parg++ = (char *)setup_script;
1660         *parg++ = (char *)ifname;
1661         *parg++ = NULL;
1662         execv(setup_script, args);
1663         _exit(1);
1664     } else if (pid > 0) {
1665         while (waitpid(pid, &status, 0) != pid) {
1666             /* loop */
1667         }
1668         sigprocmask(SIG_SETMASK, &oldmask, NULL);
1669
1670         if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1671             return 0;
1672         }
1673     }
1674     fprintf(stderr, "%s: could not launch network script\n", setup_script);
1675     return -1;
1676 }
1677
1678 static TAPState *net_tap_init(VLANState *vlan, const char *model,
1679                               const char *name, const char *ifname1,
1680                               const char *setup_script, const char *down_script)
1681 {
1682     TAPState *s;
1683     int fd;
1684     char ifname[128];
1685
1686     if (ifname1 != NULL)
1687         pstrcpy(ifname, sizeof(ifname), ifname1);
1688     else
1689         ifname[0] = '\0';
1690     TFR(fd = tap_open(ifname, sizeof(ifname)));
1691     if (fd < 0)
1692         return NULL;
1693
1694     if (!setup_script || !strcmp(setup_script, "no"))
1695         setup_script = "";
1696     if (setup_script[0] != '\0' &&
1697         launch_script(setup_script, ifname, fd)) {
1698         return NULL;
1699     }
1700     s = net_tap_fd_init(vlan, model, name, fd);
1701     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1702              "ifname=%s,script=%s,downscript=%s",
1703              ifname, setup_script, down_script);
1704     if (down_script && strcmp(down_script, "no")) {
1705         snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
1706         snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1707     }
1708     return s;
1709 }
1710
1711 #endif /* !_WIN32 */
1712
1713 #if defined(CONFIG_VDE)
1714 typedef struct VDEState {
1715     VLANClientState *vc;
1716     VDECONN *vde;
1717 } VDEState;
1718
1719 static void vde_to_qemu(void *opaque)
1720 {
1721     VDEState *s = opaque;
1722     uint8_t buf[4096];
1723     int size;
1724
1725     size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
1726     if (size > 0) {
1727         qemu_send_packet(s->vc, buf, size);
1728     }
1729 }
1730
1731 static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1732 {
1733     VDEState *s = vc->opaque;
1734     ssize_t ret;
1735
1736     do {
1737       ret = vde_send(s->vde, (const char *)buf, size, 0);
1738     } while (ret < 0 && errno == EINTR);
1739
1740     return ret;
1741 }
1742
1743 static void vde_cleanup(VLANClientState *vc)
1744 {
1745     VDEState *s = vc->opaque;
1746     qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
1747     vde_close(s->vde);
1748     qemu_free(s);
1749 }
1750
1751 static int net_vde_init(VLANState *vlan, const char *model,
1752                         const char *name, const char *sock,
1753                         int port, const char *group, int mode)
1754 {
1755     VDEState *s;
1756     char *init_group = strlen(group) ? (char *)group : NULL;
1757     char *init_sock = strlen(sock) ? (char *)sock : NULL;
1758
1759     struct vde_open_args args = {
1760         .port = port,
1761         .group = init_group,
1762         .mode = mode,
1763     };
1764
1765     s = qemu_mallocz(sizeof(VDEState));
1766     s->vde = vde_open(init_sock, (char *)"QEMU", &args);
1767     if (!s->vde){
1768         free(s);
1769         return -1;
1770     }
1771     s->vc = qemu_new_vlan_client(vlan, model, name, NULL, vde_receive,
1772                                  NULL, vde_cleanup, s);
1773     qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
1774     snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
1775              sock, vde_datafd(s->vde));
1776     return 0;
1777 }
1778 #endif
1779
1780 /* network connection */
1781 typedef struct NetSocketState {
1782     VLANClientState *vc;
1783     int fd;
1784     int state; /* 0 = getting length, 1 = getting data */
1785     unsigned int index;
1786     unsigned int packet_len;
1787     uint8_t buf[4096];
1788     struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1789 } NetSocketState;
1790
1791 typedef struct NetSocketListenState {
1792     VLANState *vlan;
1793     char *model;
1794     char *name;
1795     int fd;
1796 } NetSocketListenState;
1797
1798 /* XXX: we consider we can send the whole packet without blocking */
1799 static ssize_t net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1800 {
1801     NetSocketState *s = vc->opaque;
1802     uint32_t len;
1803     len = htonl(size);
1804
1805     send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1806     return send_all(s->fd, buf, size);
1807 }
1808
1809 static ssize_t net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size)
1810 {
1811     NetSocketState *s = vc->opaque;
1812
1813     return sendto(s->fd, (const void *)buf, size, 0,
1814                   (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
1815 }
1816
1817 static void net_socket_send(void *opaque)
1818 {
1819     NetSocketState *s = opaque;
1820     int size, err;
1821     unsigned l;
1822     uint8_t buf1[4096];
1823     const uint8_t *buf;
1824
1825     size = recv(s->fd, (void *)buf1, sizeof(buf1), 0);
1826     if (size < 0) {
1827         err = socket_error();
1828         if (err != EWOULDBLOCK)
1829             goto eoc;
1830     } else if (size == 0) {
1831         /* end of connection */
1832     eoc:
1833         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1834         closesocket(s->fd);
1835         return;
1836     }
1837     buf = buf1;
1838     while (size > 0) {
1839         /* reassemble a packet from the network */
1840         switch(s->state) {
1841         case 0:
1842             l = 4 - s->index;
1843             if (l > size)
1844                 l = size;
1845             memcpy(s->buf + s->index, buf, l);
1846             buf += l;
1847             size -= l;
1848             s->index += l;
1849             if (s->index == 4) {
1850                 /* got length */
1851                 s->packet_len = ntohl(*(uint32_t *)s->buf);
1852                 s->index = 0;
1853                 s->state = 1;
1854             }
1855             break;
1856         case 1:
1857             l = s->packet_len - s->index;
1858             if (l > size)
1859                 l = size;
1860             if (s->index + l <= sizeof(s->buf)) {
1861                 memcpy(s->buf + s->index, buf, l);
1862             } else {
1863                 fprintf(stderr, "serious error: oversized packet received,"
1864                     "connection terminated.\n");
1865                 s->state = 0;
1866                 goto eoc;
1867             }
1868
1869             s->index += l;
1870             buf += l;
1871             size -= l;
1872             if (s->index >= s->packet_len) {
1873                 qemu_send_packet(s->vc, s->buf, s->packet_len);
1874                 s->index = 0;
1875                 s->state = 0;
1876             }
1877             break;
1878         }
1879     }
1880 }
1881
1882 static void net_socket_send_dgram(void *opaque)
1883 {
1884     NetSocketState *s = opaque;
1885     int size;
1886
1887     size = recv(s->fd, (void *)s->buf, sizeof(s->buf), 0);
1888     if (size < 0)
1889         return;
1890     if (size == 0) {
1891         /* end of connection */
1892         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1893         return;
1894     }
1895     qemu_send_packet(s->vc, s->buf, size);
1896 }
1897
1898 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1899 {
1900     struct ip_mreq imr;
1901     int fd;
1902     int val, ret;
1903     if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1904         fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1905                 inet_ntoa(mcastaddr->sin_addr),
1906                 (int)ntohl(mcastaddr->sin_addr.s_addr));
1907         return -1;
1908
1909     }
1910     fd = socket(PF_INET, SOCK_DGRAM, 0);
1911     if (fd < 0) {
1912         perror("socket(PF_INET, SOCK_DGRAM)");
1913         return -1;
1914     }
1915
1916     val = 1;
1917     ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1918                    (const char *)&val, sizeof(val));
1919     if (ret < 0) {
1920         perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1921         goto fail;
1922     }
1923
1924     ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1925     if (ret < 0) {
1926         perror("bind");
1927         goto fail;
1928     }
1929
1930     /* Add host to multicast group */
1931     imr.imr_multiaddr = mcastaddr->sin_addr;
1932     imr.imr_interface.s_addr = htonl(INADDR_ANY);
1933
1934     ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1935                      (const char *)&imr, sizeof(struct ip_mreq));
1936     if (ret < 0) {
1937         perror("setsockopt(IP_ADD_MEMBERSHIP)");
1938         goto fail;
1939     }
1940
1941     /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1942     val = 1;
1943     ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1944                    (const char *)&val, sizeof(val));
1945     if (ret < 0) {
1946         perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1947         goto fail;
1948     }
1949
1950     socket_set_nonblock(fd);
1951     return fd;
1952 fail:
1953     if (fd >= 0)
1954         closesocket(fd);
1955     return -1;
1956 }
1957
1958 static void net_socket_cleanup(VLANClientState *vc)
1959 {
1960     NetSocketState *s = vc->opaque;
1961     qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1962     close(s->fd);
1963     qemu_free(s);
1964 }
1965
1966 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1967                                                 const char *model,
1968                                                 const char *name,
1969                                                 int fd, int is_connected)
1970 {
1971     struct sockaddr_in saddr;
1972     int newfd;
1973     socklen_t saddr_len;
1974     NetSocketState *s;
1975
1976     /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1977      * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1978      * by ONLY ONE process: we must "clone" this dgram socket --jjo
1979      */
1980
1981     if (is_connected) {
1982         if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1983             /* must be bound */
1984             if (saddr.sin_addr.s_addr==0) {
1985                 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1986                         fd);
1987                 return NULL;
1988             }
1989             /* clone dgram socket */
1990             newfd = net_socket_mcast_create(&saddr);
1991             if (newfd < 0) {
1992                 /* error already reported by net_socket_mcast_create() */
1993                 close(fd);
1994                 return NULL;
1995             }
1996             /* clone newfd to fd, close newfd */
1997             dup2(newfd, fd);
1998             close(newfd);
1999
2000         } else {
2001             fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
2002                     fd, strerror(errno));
2003             return NULL;
2004         }
2005     }
2006
2007     s = qemu_mallocz(sizeof(NetSocketState));
2008     s->fd = fd;
2009
2010     s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive_dgram,
2011                                  NULL, net_socket_cleanup, s);
2012     qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
2013
2014     /* mcast: save bound address as dst */
2015     if (is_connected) s->dgram_dst=saddr;
2016
2017     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2018             "socket: fd=%d (%s mcast=%s:%d)",
2019             fd, is_connected? "cloned" : "",
2020             inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2021     return s;
2022 }
2023
2024 static void net_socket_connect(void *opaque)
2025 {
2026     NetSocketState *s = opaque;
2027     qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
2028 }
2029
2030 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
2031                                                  const char *model,
2032                                                  const char *name,
2033                                                  int fd, int is_connected)
2034 {
2035     NetSocketState *s;
2036     s = qemu_mallocz(sizeof(NetSocketState));
2037     s->fd = fd;
2038     s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive,
2039                                  NULL, net_socket_cleanup, s);
2040     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2041              "socket: fd=%d", fd);
2042     if (is_connected) {
2043         net_socket_connect(s);
2044     } else {
2045         qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
2046     }
2047     return s;
2048 }
2049
2050 static NetSocketState *net_socket_fd_init(VLANState *vlan,
2051                                           const char *model, const char *name,
2052                                           int fd, int is_connected)
2053 {
2054     int so_type=-1, optlen=sizeof(so_type);
2055
2056     if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
2057         (socklen_t *)&optlen)< 0) {
2058         fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
2059         return NULL;
2060     }
2061     switch(so_type) {
2062     case SOCK_DGRAM:
2063         return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
2064     case SOCK_STREAM:
2065         return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
2066     default:
2067         /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2068         fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
2069         return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
2070     }
2071     return NULL;
2072 }
2073
2074 static void net_socket_accept(void *opaque)
2075 {
2076     NetSocketListenState *s = opaque;
2077     NetSocketState *s1;
2078     struct sockaddr_in saddr;
2079     socklen_t len;
2080     int fd;
2081
2082     for(;;) {
2083         len = sizeof(saddr);
2084         fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
2085         if (fd < 0 && errno != EINTR) {
2086             return;
2087         } else if (fd >= 0) {
2088             break;
2089         }
2090     }
2091     s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
2092     if (!s1) {
2093         closesocket(fd);
2094     } else {
2095         snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
2096                  "socket: connection from %s:%d",
2097                  inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2098     }
2099 }
2100
2101 static int net_socket_listen_init(VLANState *vlan,
2102                                   const char *model,
2103                                   const char *name,
2104                                   const char *host_str)
2105 {
2106     NetSocketListenState *s;
2107     int fd, val, ret;
2108     struct sockaddr_in saddr;
2109
2110     if (parse_host_port(&saddr, host_str) < 0)
2111         return -1;
2112
2113     s = qemu_mallocz(sizeof(NetSocketListenState));
2114
2115     fd = socket(PF_INET, SOCK_STREAM, 0);
2116     if (fd < 0) {
2117         perror("socket");
2118         return -1;
2119     }
2120     socket_set_nonblock(fd);
2121
2122     /* allow fast reuse */
2123     val = 1;
2124     setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
2125
2126     ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2127     if (ret < 0) {
2128         perror("bind");
2129         return -1;
2130     }
2131     ret = listen(fd, 0);
2132     if (ret < 0) {
2133         perror("listen");
2134         return -1;
2135     }
2136     s->vlan = vlan;
2137     s->model = strdup(model);
2138     s->name = name ? strdup(name) : NULL;
2139     s->fd = fd;
2140     qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
2141     return 0;
2142 }
2143
2144 static int net_socket_connect_init(VLANState *vlan,
2145                                    const char *model,
2146                                    const char *name,
2147                                    const char *host_str)
2148 {
2149     NetSocketState *s;
2150     int fd, connected, ret, err;
2151     struct sockaddr_in saddr;
2152
2153     if (parse_host_port(&saddr, host_str) < 0)
2154         return -1;
2155
2156     fd = socket(PF_INET, SOCK_STREAM, 0);
2157     if (fd < 0) {
2158         perror("socket");
2159         return -1;
2160     }
2161     socket_set_nonblock(fd);
2162
2163     connected = 0;
2164     for(;;) {
2165         ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2166         if (ret < 0) {
2167             err = socket_error();
2168             if (err == EINTR || err == EWOULDBLOCK) {
2169             } else if (err == EINPROGRESS) {
2170                 break;
2171 #ifdef _WIN32
2172             } else if (err == WSAEALREADY) {
2173                 break;
2174 #endif
2175             } else {
2176                 perror("connect");
2177                 closesocket(fd);
2178                 return -1;
2179             }
2180         } else {
2181             connected = 1;
2182             break;
2183         }
2184     }
2185     s = net_socket_fd_init(vlan, model, name, fd, connected);
2186     if (!s)
2187         return -1;
2188     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2189              "socket: connect to %s:%d",
2190              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2191     return 0;
2192 }
2193
2194 static int net_socket_mcast_init(VLANState *vlan,
2195                                  const char *model,
2196                                  const char *name,
2197                                  const char *host_str)
2198 {
2199     NetSocketState *s;
2200     int fd;
2201     struct sockaddr_in saddr;
2202
2203     if (parse_host_port(&saddr, host_str) < 0)
2204         return -1;
2205
2206
2207     fd = net_socket_mcast_create(&saddr);
2208     if (fd < 0)
2209         return -1;
2210
2211     s = net_socket_fd_init(vlan, model, name, fd, 0);
2212     if (!s)
2213         return -1;
2214
2215     s->dgram_dst = saddr;
2216
2217     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2218              "socket: mcast=%s:%d",
2219              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2220     return 0;
2221
2222 }
2223
2224 typedef struct DumpState {
2225     VLANClientState *pcap_vc;
2226     int fd;
2227     int pcap_caplen;
2228 } DumpState;
2229
2230 #define PCAP_MAGIC 0xa1b2c3d4
2231
2232 struct pcap_file_hdr {
2233     uint32_t magic;
2234     uint16_t version_major;
2235     uint16_t version_minor;
2236     int32_t thiszone;
2237     uint32_t sigfigs;
2238     uint32_t snaplen;
2239     uint32_t linktype;
2240 };
2241
2242 struct pcap_sf_pkthdr {
2243     struct {
2244         int32_t tv_sec;
2245         int32_t tv_usec;
2246     } ts;
2247     uint32_t caplen;
2248     uint32_t len;
2249 };
2250
2251 static ssize_t dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
2252 {
2253     DumpState *s = vc->opaque;
2254     struct pcap_sf_pkthdr hdr;
2255     int64_t ts;
2256     int caplen;
2257
2258     /* Early return in case of previous error. */
2259     if (s->fd < 0) {
2260         return size;
2261     }
2262
2263     ts = muldiv64(qemu_get_clock(vm_clock), 1000000, ticks_per_sec);
2264     caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
2265
2266     hdr.ts.tv_sec = ts / 1000000;
2267     hdr.ts.tv_usec = ts % 1000000;
2268     hdr.caplen = caplen;
2269     hdr.len = size;
2270     if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
2271         write(s->fd, buf, caplen) != caplen) {
2272         qemu_log("-net dump write error - stop dump\n");
2273         close(s->fd);
2274         s->fd = -1;
2275     }
2276
2277     return size;
2278 }
2279
2280 static void net_dump_cleanup(VLANClientState *vc)
2281 {
2282     DumpState *s = vc->opaque;
2283
2284     close(s->fd);
2285     qemu_free(s);
2286 }
2287
2288 static int net_dump_init(Monitor *mon, VLANState *vlan, const char *device,
2289                          const char *name, const char *filename, int len)
2290 {
2291     struct pcap_file_hdr hdr;
2292     DumpState *s;
2293
2294     s = qemu_malloc(sizeof(DumpState));
2295
2296     s->fd = open(filename, O_CREAT | O_WRONLY | O_BINARY, 0644);
2297     if (s->fd < 0) {
2298         config_error(mon, "-net dump: can't open %s\n", filename);
2299         return -1;
2300     }
2301
2302     s->pcap_caplen = len;
2303
2304     hdr.magic = PCAP_MAGIC;
2305     hdr.version_major = 2;
2306     hdr.version_minor = 4;
2307     hdr.thiszone = 0;
2308     hdr.sigfigs = 0;
2309     hdr.snaplen = s->pcap_caplen;
2310     hdr.linktype = 1;
2311
2312     if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
2313         config_error(mon, "-net dump write error: %s\n", strerror(errno));
2314         close(s->fd);
2315         qemu_free(s);
2316         return -1;
2317     }
2318
2319     s->pcap_vc = qemu_new_vlan_client(vlan, device, name, NULL, dump_receive, NULL,
2320                                       net_dump_cleanup, s);
2321     snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
2322              "dump to %s (len=%d)", filename, len);
2323     return 0;
2324 }
2325
2326 /* find or alloc a new VLAN */
2327 VLANState *qemu_find_vlan(int id, int allocate)
2328 {
2329     VLANState **pvlan, *vlan;
2330     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2331         if (vlan->id == id)
2332             return vlan;
2333     }
2334     if (!allocate) {
2335         return NULL;
2336     }
2337     vlan = qemu_mallocz(sizeof(VLANState));
2338     vlan->id = id;
2339     vlan->next = NULL;
2340     pvlan = &first_vlan;
2341     while (*pvlan != NULL)
2342         pvlan = &(*pvlan)->next;
2343     *pvlan = vlan;
2344     return vlan;
2345 }
2346
2347 static int nic_get_free_idx(void)
2348 {
2349     int index;
2350
2351     for (index = 0; index < MAX_NICS; index++)
2352         if (!nd_table[index].used)
2353             return index;
2354     return -1;
2355 }
2356
2357 void qemu_check_nic_model(NICInfo *nd, const char *model)
2358 {
2359     const char *models[2];
2360
2361     models[0] = model;
2362     models[1] = NULL;
2363
2364     qemu_check_nic_model_list(nd, models, model);
2365 }
2366
2367 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
2368                                const char *default_model)
2369 {
2370     int i, exit_status = 0;
2371
2372     if (!nd->model)
2373         nd->model = strdup(default_model);
2374
2375     if (strcmp(nd->model, "?") != 0) {
2376         for (i = 0 ; models[i]; i++)
2377             if (strcmp(nd->model, models[i]) == 0)
2378                 return;
2379
2380         fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
2381         exit_status = 1;
2382     }
2383
2384     fprintf(stderr, "qemu: Supported NIC models: ");
2385     for (i = 0 ; models[i]; i++)
2386         fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
2387
2388     exit(exit_status);
2389 }
2390
2391 int net_client_init(Monitor *mon, const char *device, const char *p)
2392 {
2393     char buf[1024];
2394     int vlan_id, ret;
2395     VLANState *vlan;
2396     char *name = NULL;
2397
2398     vlan_id = 0;
2399     if (get_param_value(buf, sizeof(buf), "vlan", p)) {
2400         vlan_id = strtol(buf, NULL, 0);
2401     }
2402     vlan = qemu_find_vlan(vlan_id, 1);
2403
2404     if (get_param_value(buf, sizeof(buf), "name", p)) {
2405         name = qemu_strdup(buf);
2406     }
2407     if (!strcmp(device, "nic")) {
2408         static const char * const nic_params[] = {
2409             "vlan", "name", "macaddr", "model", "addr", "vectors", NULL
2410         };
2411         NICInfo *nd;
2412         uint8_t *macaddr;
2413         int idx = nic_get_free_idx();
2414
2415         if (check_params(buf, sizeof(buf), nic_params, p) < 0) {
2416             config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2417             ret = -1;
2418             goto out;
2419         }
2420         if (idx == -1 || nb_nics >= MAX_NICS) {
2421             config_error(mon, "Too Many NICs\n");
2422             ret = -1;
2423             goto out;
2424         }
2425         nd = &nd_table[idx];
2426         macaddr = nd->macaddr;
2427         macaddr[0] = 0x52;
2428         macaddr[1] = 0x54;
2429         macaddr[2] = 0x00;
2430         macaddr[3] = 0x12;
2431         macaddr[4] = 0x34;
2432         macaddr[5] = 0x56 + idx;
2433
2434         if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
2435             if (parse_macaddr(macaddr, buf) < 0) {
2436                 config_error(mon, "invalid syntax for ethernet address\n");
2437                 ret = -1;
2438                 goto out;
2439             }
2440         }
2441         if (get_param_value(buf, sizeof(buf), "model", p)) {
2442             nd->model = strdup(buf);
2443         }
2444         if (get_param_value(buf, sizeof(buf), "addr", p)) {
2445             nd->devaddr = strdup(buf);
2446         }
2447         nd->nvectors = NIC_NVECTORS_UNSPECIFIED;
2448         if (get_param_value(buf, sizeof(buf), "vectors", p)) {
2449             char *endptr;
2450             long vectors = strtol(buf, &endptr, 0);
2451             if (*endptr) {
2452                 config_error(mon, "invalid syntax for # of vectors\n");
2453                 ret = -1;
2454                 goto out;
2455             }
2456             if (vectors < 0 || vectors > 0x7ffffff) {
2457                 config_error(mon, "invalid # of vectors\n");
2458                 ret = -1;
2459                 goto out;
2460             }
2461             nd->nvectors = vectors;
2462         }
2463         nd->vlan = vlan;
2464         nd->name = name;
2465         nd->used = 1;
2466         name = NULL;
2467         nb_nics++;
2468         vlan->nb_guest_devs++;
2469         ret = idx;
2470     } else
2471     if (!strcmp(device, "none")) {
2472         if (*p != '\0') {
2473             config_error(mon, "'none' takes no parameters\n");
2474             ret = -1;
2475             goto out;
2476         }
2477         /* does nothing. It is needed to signal that no network cards
2478            are wanted */
2479         ret = 0;
2480     } else
2481 #ifdef CONFIG_SLIRP
2482     if (!strcmp(device, "user")) {
2483         static const char * const slirp_params[] = {
2484             "vlan", "name", "hostname", "restrict", "ip", "net", "host",
2485             "tftp", "bootfile", "dhcpstart", "dns", "smb", "smbserver",
2486             "hostfwd", "guestfwd", NULL
2487         };
2488         struct slirp_config_str *config;
2489         int restricted = 0;
2490         char *vnet = NULL;
2491         char *vhost = NULL;
2492         char *vhostname = NULL;
2493         char *tftp_export = NULL;
2494         char *bootfile = NULL;
2495         char *vdhcp_start = NULL;
2496         char *vnamesrv = NULL;
2497         char *smb_export = NULL;
2498         char *vsmbsrv = NULL;
2499         const char *q;
2500
2501         if (check_params(buf, sizeof(buf), slirp_params, p) < 0) {
2502             config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2503             ret = -1;
2504             goto out;
2505         }
2506         if (get_param_value(buf, sizeof(buf), "ip", p)) {
2507             int vnet_buflen = strlen(buf) + strlen("/24") + 1;
2508             /* emulate legacy parameter */
2509             vnet = qemu_malloc(vnet_buflen);
2510             pstrcpy(vnet, vnet_buflen, buf);
2511             pstrcat(vnet, vnet_buflen, "/24");
2512         }
2513         if (get_param_value(buf, sizeof(buf), "net", p)) {
2514             vnet = qemu_strdup(buf);
2515         }
2516         if (get_param_value(buf, sizeof(buf), "host", p)) {
2517             vhost = qemu_strdup(buf);
2518         }
2519         if (get_param_value(buf, sizeof(buf), "hostname", p)) {
2520             vhostname = qemu_strdup(buf);
2521         }
2522         if (get_param_value(buf, sizeof(buf), "restrict", p)) {
2523             restricted = (buf[0] == 'y') ? 1 : 0;
2524         }
2525         if (get_param_value(buf, sizeof(buf), "dhcpstart", p)) {
2526             vdhcp_start = qemu_strdup(buf);
2527         }
2528         if (get_param_value(buf, sizeof(buf), "dns", p)) {
2529             vnamesrv = qemu_strdup(buf);
2530         }
2531         if (get_param_value(buf, sizeof(buf), "tftp", p)) {
2532             tftp_export = qemu_strdup(buf);
2533         }
2534         if (get_param_value(buf, sizeof(buf), "bootfile", p)) {
2535             bootfile = qemu_strdup(buf);
2536         }
2537         if (get_param_value(buf, sizeof(buf), "smb", p)) {
2538             smb_export = qemu_strdup(buf);
2539             if (get_param_value(buf, sizeof(buf), "smbserver", p)) {
2540                 vsmbsrv = qemu_strdup(buf);
2541             }
2542         }
2543         q = p;
2544         while (1) {
2545             config = qemu_malloc(sizeof(*config));
2546             if (!get_next_param_value(config->str, sizeof(config->str),
2547                                       "hostfwd", &q)) {
2548                 break;
2549             }
2550             config->flags = SLIRP_CFG_HOSTFWD;
2551             config->next = slirp_configs;
2552             slirp_configs = config;
2553             config = NULL;
2554         }
2555         q = p;
2556         while (1) {
2557             config = qemu_malloc(sizeof(*config));
2558             if (!get_next_param_value(config->str, sizeof(config->str),
2559                                       "guestfwd", &q)) {
2560                 break;
2561             }
2562             config->flags = 0;
2563             config->next = slirp_configs;
2564             slirp_configs = config;
2565             config = NULL;
2566         }
2567         qemu_free(config);
2568         vlan->nb_host_devs++;
2569         ret = net_slirp_init(mon, vlan, device, name, restricted, vnet, vhost,
2570                              vhostname, tftp_export, bootfile, vdhcp_start,
2571                              vnamesrv, smb_export, vsmbsrv);
2572         qemu_free(vnet);
2573         qemu_free(vhost);
2574         qemu_free(vhostname);
2575         qemu_free(tftp_export);
2576         qemu_free(bootfile);
2577         qemu_free(vdhcp_start);
2578         qemu_free(vnamesrv);
2579         qemu_free(smb_export);
2580         qemu_free(vsmbsrv);
2581     } else if (!strcmp(device, "channel")) {
2582         if (TAILQ_EMPTY(&slirp_stacks)) {
2583             struct slirp_config_str *config;
2584
2585             config = qemu_malloc(sizeof(*config));
2586             pstrcpy(config->str, sizeof(config->str), p);
2587             config->flags = SLIRP_CFG_LEGACY;
2588             config->next = slirp_configs;
2589             slirp_configs = config;
2590         } else {
2591             slirp_guestfwd(TAILQ_FIRST(&slirp_stacks), mon, p, 1);
2592         }
2593         ret = 0;
2594     } else
2595 #endif
2596 #ifdef _WIN32
2597     if (!strcmp(device, "tap")) {
2598         static const char * const tap_params[] = {
2599             "vlan", "name", "ifname", NULL
2600         };
2601         char ifname[64];
2602
2603         if (check_params(buf, sizeof(buf), tap_params, p) < 0) {
2604             config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2605             ret = -1;
2606             goto out;
2607         }
2608         if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2609             config_error(mon, "tap: no interface name\n");
2610             ret = -1;
2611             goto out;
2612         }
2613         vlan->nb_host_devs++;
2614         ret = tap_win32_init(vlan, device, name, ifname);
2615     } else
2616 #elif defined (_AIX)
2617 #else
2618     if (!strcmp(device, "tap")) {
2619         char ifname[64], chkbuf[64];
2620         char setup_script[1024], down_script[1024];
2621         TAPState *s;
2622         int fd;
2623         vlan->nb_host_devs++;
2624         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2625             static const char * const fd_params[] = {
2626                 "vlan", "name", "fd", "sndbuf", NULL
2627             };
2628             if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
2629                 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2630                 ret = -1;
2631                 goto out;
2632             }
2633             fd = strtol(buf, NULL, 0);
2634             fcntl(fd, F_SETFL, O_NONBLOCK);
2635             s = net_tap_fd_init(vlan, device, name, fd);
2636         } else {
2637             static const char * const tap_params[] = {
2638                 "vlan", "name", "ifname", "script", "downscript", "sndbuf", NULL
2639             };
2640             if (check_params(chkbuf, sizeof(chkbuf), tap_params, p) < 0) {
2641                 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2642                 ret = -1;
2643                 goto out;
2644             }
2645             if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2646                 ifname[0] = '\0';
2647             }
2648             if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
2649                 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
2650             }
2651             if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
2652                 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
2653             }
2654             s = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
2655         }
2656         if (s != NULL) {
2657             if (get_param_value(buf, sizeof(buf), "sndbuf", p)) {
2658                 tap_set_sndbuf(s, atoi(buf), mon);
2659             }
2660             ret = 0;
2661         } else {
2662             ret = -1;
2663         }
2664     } else
2665 #endif
2666     if (!strcmp(device, "socket")) {
2667         char chkbuf[64];
2668         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2669             static const char * const fd_params[] = {
2670                 "vlan", "name", "fd", NULL
2671             };
2672             int fd;
2673             if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
2674                 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2675                 ret = -1;
2676                 goto out;
2677             }
2678             fd = strtol(buf, NULL, 0);
2679             ret = -1;
2680             if (net_socket_fd_init(vlan, device, name, fd, 1))
2681                 ret = 0;
2682         } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
2683             static const char * const listen_params[] = {
2684                 "vlan", "name", "listen", NULL
2685             };
2686             if (check_params(chkbuf, sizeof(chkbuf), listen_params, p) < 0) {
2687                 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2688                 ret = -1;
2689                 goto out;
2690             }
2691             ret = net_socket_listen_init(vlan, device, name, buf);
2692         } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
2693             static const char * const connect_params[] = {
2694                 "vlan", "name", "connect", NULL
2695             };
2696             if (check_params(chkbuf, sizeof(chkbuf), connect_params, p) < 0) {
2697                 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2698                 ret = -1;
2699                 goto out;
2700             }
2701             ret = net_socket_connect_init(vlan, device, name, buf);
2702         } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
2703             static const char * const mcast_params[] = {
2704                 "vlan", "name", "mcast", NULL
2705             };
2706             if (check_params(chkbuf, sizeof(chkbuf), mcast_params, p) < 0) {
2707                 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2708                 ret = -1;
2709                 goto out;
2710             }
2711             ret = net_socket_mcast_init(vlan, device, name, buf);
2712         } else {
2713             config_error(mon, "Unknown socket options: %s\n", p);
2714             ret = -1;
2715             goto out;
2716         }
2717         vlan->nb_host_devs++;
2718     } else
2719 #ifdef CONFIG_VDE
2720     if (!strcmp(device, "vde")) {
2721         static const char * const vde_params[] = {
2722             "vlan", "name", "sock", "port", "group", "mode", NULL
2723         };
2724         char vde_sock[1024], vde_group[512];
2725         int vde_port, vde_mode;
2726
2727         if (check_params(buf, sizeof(buf), vde_params, p) < 0) {
2728             config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2729             ret = -1;
2730             goto out;
2731         }
2732         vlan->nb_host_devs++;
2733         if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
2734             vde_sock[0] = '\0';
2735         }
2736         if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
2737             vde_port = strtol(buf, NULL, 10);
2738         } else {
2739             vde_port = 0;
2740         }
2741         if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
2742             vde_group[0] = '\0';
2743         }
2744         if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
2745             vde_mode = strtol(buf, NULL, 8);
2746         } else {
2747             vde_mode = 0700;
2748         }
2749         ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
2750     } else
2751 #endif
2752     if (!strcmp(device, "dump")) {
2753         int len = 65536;
2754
2755         if (get_param_value(buf, sizeof(buf), "len", p) > 0) {
2756             len = strtol(buf, NULL, 0);
2757         }
2758         if (!get_param_value(buf, sizeof(buf), "file", p)) {
2759             snprintf(buf, sizeof(buf), "qemu-vlan%d.pcap", vlan_id);
2760         }
2761         ret = net_dump_init(mon, vlan, device, name, buf, len);
2762     } else {
2763         config_error(mon, "Unknown network device: %s\n", device);
2764         ret = -1;
2765         goto out;
2766     }
2767     if (ret < 0) {
2768         config_error(mon, "Could not initialize device '%s'\n", device);
2769     }
2770 out:
2771     qemu_free(name);
2772     return ret;
2773 }
2774
2775 void net_client_uninit(NICInfo *nd)
2776 {
2777     nd->vlan->nb_guest_devs--;
2778     nb_nics--;
2779     nd->used = 0;
2780     free((void *)nd->model);
2781 }
2782
2783 static int net_host_check_device(const char *device)
2784 {
2785     int i;
2786     const char *valid_param_list[] = { "tap", "socket", "dump"
2787 #ifdef CONFIG_SLIRP
2788                                        ,"user"
2789 #endif
2790 #ifdef CONFIG_VDE
2791                                        ,"vde"
2792 #endif
2793     };
2794     for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
2795         if (!strncmp(valid_param_list[i], device,
2796                      strlen(valid_param_list[i])))
2797             return 1;
2798     }
2799
2800     return 0;
2801 }
2802
2803 void net_host_device_add(Monitor *mon, const char *device, const char *opts)
2804 {
2805     if (!net_host_check_device(device)) {
2806         monitor_printf(mon, "invalid host network device %s\n", device);
2807         return;
2808     }
2809     if (net_client_init(mon, device, opts ? opts : "") < 0) {
2810         monitor_printf(mon, "adding host network device %s failed\n", device);
2811     }
2812 }
2813
2814 void net_host_device_remove(Monitor *mon, int vlan_id, const char *device)
2815 {
2816     VLANClientState *vc;
2817
2818     vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
2819     if (!vc) {
2820         return;
2821     }
2822     if (!net_host_check_device(vc->model)) {
2823         monitor_printf(mon, "invalid host network device %s\n", device);
2824         return;
2825     }
2826     qemu_del_vlan_client(vc);
2827 }
2828
2829 int net_client_parse(const char *str)
2830 {
2831     const char *p;
2832     char *q;
2833     char device[64];
2834
2835     p = str;
2836     q = device;
2837     while (*p != '\0' && *p != ',') {
2838         if ((q - device) < sizeof(device) - 1)
2839             *q++ = *p;
2840         p++;
2841     }
2842     *q = '\0';
2843     if (*p == ',')
2844         p++;
2845
2846     return net_client_init(NULL, device, p);
2847 }
2848
2849 void net_set_boot_mask(int net_boot_mask)
2850 {
2851     int i;
2852
2853     /* Only the first four NICs may be bootable */
2854     net_boot_mask = net_boot_mask & 0xF;
2855
2856     for (i = 0; i < nb_nics; i++) {
2857         if (net_boot_mask & (1 << i)) {
2858             nd_table[i].bootable = 1;
2859             net_boot_mask &= ~(1 << i);
2860         }
2861     }
2862
2863     if (net_boot_mask) {
2864         fprintf(stderr, "Cannot boot from non-existent NIC\n");
2865         exit(1);
2866     }
2867 }
2868
2869 void do_info_network(Monitor *mon)
2870 {
2871     VLANState *vlan;
2872     VLANClientState *vc;
2873
2874     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2875         monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
2876         for(vc = vlan->first_client; vc != NULL; vc = vc->next)
2877             monitor_printf(mon, "  %s: %s\n", vc->name, vc->info_str);
2878     }
2879 }
2880
2881 int do_set_link(Monitor *mon, const char *name, const char *up_or_down)
2882 {
2883     VLANState *vlan;
2884     VLANClientState *vc = NULL;
2885
2886     for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
2887         for (vc = vlan->first_client; vc != NULL; vc = vc->next)
2888             if (strcmp(vc->name, name) == 0)
2889                 goto done;
2890 done:
2891
2892     if (!vc) {
2893         monitor_printf(mon, "could not find network device '%s'", name);
2894         return 0;
2895     }
2896
2897     if (strcmp(up_or_down, "up") == 0)
2898         vc->link_down = 0;
2899     else if (strcmp(up_or_down, "down") == 0)
2900         vc->link_down = 1;
2901     else
2902         monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
2903                        "valid\n", up_or_down);
2904
2905     if (vc->link_status_changed)
2906         vc->link_status_changed(vc);
2907
2908     return 1;
2909 }
2910
2911 void net_cleanup(void)
2912 {
2913     VLANState *vlan;
2914
2915     /* close network clients */
2916     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2917         VLANClientState *vc = vlan->first_client;
2918
2919         while (vc) {
2920             VLANClientState *next = vc->next;
2921
2922             qemu_del_vlan_client(vc);
2923
2924             vc = next;
2925         }
2926     }
2927 }
2928
2929 void net_client_check(void)
2930 {
2931     VLANState *vlan;
2932
2933     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2934         if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
2935             continue;
2936         if (vlan->nb_guest_devs == 0)
2937             fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
2938         if (vlan->nb_host_devs == 0)
2939             fprintf(stderr,
2940                     "Warning: vlan %d is not connected to host network\n",
2941                     vlan->id);
2942     }
2943 }