Attached patch fixes a series of this warning
[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 "qemu-common.h"
25 #include "net.h"
26 #include "console.h"
27 #include "sysemu.h"
28 #include "qemu-timer.h"
29 #include "qemu-char.h"
30 #include "audio/audio.h"
31
32 #include <unistd.h>
33 #include <fcntl.h>
34 #include <signal.h>
35 #include <time.h>
36 #include <errno.h>
37 #include <sys/time.h>
38 #include <zlib.h>
39
40 #ifndef _WIN32
41 #include <sys/times.h>
42 #include <sys/wait.h>
43 #include <termios.h>
44 #include <sys/mman.h>
45 #include <sys/ioctl.h>
46 #include <sys/resource.h>
47 #include <sys/socket.h>
48 #include <netinet/in.h>
49 #include <net/if.h>
50 #ifdef __NetBSD__
51 #include <net/if_tap.h>
52 #endif
53 #ifdef __linux__
54 #include <linux/if_tun.h>
55 #endif
56 #include <arpa/inet.h>
57 #include <dirent.h>
58 #include <netdb.h>
59 #include <sys/select.h>
60 #ifdef _BSD
61 #include <sys/stat.h>
62 #ifdef __FreeBSD__
63 #include <libutil.h>
64 #else
65 #include <util.h>
66 #endif
67 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
68 #include <freebsd/stdlib.h>
69 #else
70 #ifdef __linux__
71 #include <pty.h>
72 #include <malloc.h>
73 #include <linux/rtc.h>
74
75 /* For the benefit of older linux systems which don't supply it,
76    we use a local copy of hpet.h. */
77 /* #include <linux/hpet.h> */
78 #include "hpet.h"
79
80 #include <linux/ppdev.h>
81 #include <linux/parport.h>
82 #endif
83 #ifdef __sun__
84 #include <sys/stat.h>
85 #include <sys/ethernet.h>
86 #include <sys/sockio.h>
87 #include <netinet/arp.h>
88 #include <netinet/in.h>
89 #include <netinet/in_systm.h>
90 #include <netinet/ip.h>
91 #include <netinet/ip_icmp.h> // must come after ip.h
92 #include <netinet/udp.h>
93 #include <netinet/tcp.h>
94 #include <net/if.h>
95 #include <syslog.h>
96 #include <stropts.h>
97 #endif
98 #endif
99 #endif
100
101 #include "qemu_socket.h"
102
103 #if defined(CONFIG_SLIRP)
104 #include "libslirp.h"
105 #endif
106
107 #if defined(__OpenBSD__)
108 #include <util.h>
109 #endif
110
111 #if defined(CONFIG_VDE)
112 #include <libvdeplug.h>
113 #endif
114
115 #ifdef _WIN32
116 #include <malloc.h>
117 #include <sys/timeb.h>
118 #include <mmsystem.h>
119 #define getopt_long_only getopt_long
120 #define memalign(align, size) malloc(size)
121 #endif
122
123 #define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
124 #define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
125 #ifdef __sun__
126 #define SMBD_COMMAND "/usr/sfw/sbin/smbd"
127 #else
128 #define SMBD_COMMAND "/usr/sbin/smbd"
129 #endif
130
131 static VLANState *first_vlan;
132
133 /***********************************************************/
134 /* network device redirectors */
135
136 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
137 static void hex_dump(FILE *f, const uint8_t *buf, int size)
138 {
139     int len, i, j, c;
140
141     for(i=0;i<size;i+=16) {
142         len = size - i;
143         if (len > 16)
144             len = 16;
145         fprintf(f, "%08x ", i);
146         for(j=0;j<16;j++) {
147             if (j < len)
148                 fprintf(f, " %02x", buf[i+j]);
149             else
150                 fprintf(f, "   ");
151         }
152         fprintf(f, " ");
153         for(j=0;j<len;j++) {
154             c = buf[i+j];
155             if (c < ' ' || c > '~')
156                 c = '.';
157             fprintf(f, "%c", c);
158         }
159         fprintf(f, "\n");
160     }
161 }
162 #endif
163
164 static int parse_macaddr(uint8_t *macaddr, const char *p)
165 {
166     int i;
167     char *last_char;
168     long int offset;
169
170     errno = 0;
171     offset = strtol(p, &last_char, 0);    
172     if (0 == errno && '\0' == *last_char &&
173             offset >= 0 && offset <= 0xFFFFFF) {
174         macaddr[3] = (offset & 0xFF0000) >> 16;
175         macaddr[4] = (offset & 0xFF00) >> 8;
176         macaddr[5] = offset & 0xFF;
177         return 0;
178     } else {
179         for(i = 0; i < 6; i++) {
180             macaddr[i] = strtol(p, (char **)&p, 16);
181             if (i == 5) {
182                 if (*p != '\0')
183                     return -1;
184             } else {
185                 if (*p != ':' && *p != '-')
186                     return -1;
187                 p++;
188             }
189         }
190         return 0;    
191     }
192
193     return -1;
194 }
195
196 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
197 {
198     const char *p, *p1;
199     int len;
200     p = *pp;
201     p1 = strchr(p, sep);
202     if (!p1)
203         return -1;
204     len = p1 - p;
205     p1++;
206     if (buf_size > 0) {
207         if (len > buf_size - 1)
208             len = buf_size - 1;
209         memcpy(buf, p, len);
210         buf[len] = '\0';
211     }
212     *pp = p1;
213     return 0;
214 }
215
216 int parse_host_src_port(struct sockaddr_in *haddr,
217                         struct sockaddr_in *saddr,
218                         const char *input_str)
219 {
220     char *str = strdup(input_str);
221     char *host_str = str;
222     char *src_str;
223     const char *src_str2;
224     char *ptr;
225
226     /*
227      * Chop off any extra arguments at the end of the string which
228      * would start with a comma, then fill in the src port information
229      * if it was provided else use the "any address" and "any port".
230      */
231     if ((ptr = strchr(str,',')))
232         *ptr = '\0';
233
234     if ((src_str = strchr(input_str,'@'))) {
235         *src_str = '\0';
236         src_str++;
237     }
238
239     if (parse_host_port(haddr, host_str) < 0)
240         goto fail;
241
242     src_str2 = src_str;
243     if (!src_str || *src_str == '\0')
244         src_str2 = ":0";
245
246     if (parse_host_port(saddr, src_str2) < 0)
247         goto fail;
248
249     free(str);
250     return(0);
251
252 fail:
253     free(str);
254     return -1;
255 }
256
257 int parse_host_port(struct sockaddr_in *saddr, const char *str)
258 {
259     char buf[512];
260     struct hostent *he;
261     const char *p, *r;
262     int port;
263
264     p = str;
265     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
266         return -1;
267     saddr->sin_family = AF_INET;
268     if (buf[0] == '\0') {
269         saddr->sin_addr.s_addr = 0;
270     } else {
271         if (qemu_isdigit(buf[0])) {
272             if (!inet_aton(buf, &saddr->sin_addr))
273                 return -1;
274         } else {
275             if ((he = gethostbyname(buf)) == NULL)
276                 return - 1;
277             saddr->sin_addr = *(struct in_addr *)he->h_addr;
278         }
279     }
280     port = strtol(p, (char **)&r, 0);
281     if (r == p)
282         return -1;
283     saddr->sin_port = htons(port);
284     return 0;
285 }
286
287 #ifndef _WIN32
288 int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
289 {
290     const char *p;
291     int len;
292
293     len = MIN(108, strlen(str));
294     p = strchr(str, ',');
295     if (p)
296         len = MIN(len, p - str);
297
298     memset(uaddr, 0, sizeof(*uaddr));
299
300     uaddr->sun_family = AF_UNIX;
301     memcpy(uaddr->sun_path, str, len);
302
303     return 0;
304 }
305 #endif
306
307 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
308                                       IOReadHandler *fd_read,
309                                       IOCanRWHandler *fd_can_read,
310                                       void *opaque)
311 {
312     VLANClientState *vc, **pvc;
313     vc = qemu_mallocz(sizeof(VLANClientState));
314     if (!vc)
315         return NULL;
316     vc->fd_read = fd_read;
317     vc->fd_can_read = fd_can_read;
318     vc->opaque = opaque;
319     vc->vlan = vlan;
320
321     vc->next = NULL;
322     pvc = &vlan->first_client;
323     while (*pvc != NULL)
324         pvc = &(*pvc)->next;
325     *pvc = vc;
326     return vc;
327 }
328
329 void qemu_del_vlan_client(VLANClientState *vc)
330 {
331     VLANClientState **pvc = &vc->vlan->first_client;
332
333     while (*pvc != NULL)
334         if (*pvc == vc) {
335             *pvc = vc->next;
336             free(vc);
337             break;
338         } else
339             pvc = &(*pvc)->next;
340 }
341
342 int qemu_can_send_packet(VLANClientState *vc1)
343 {
344     VLANState *vlan = vc1->vlan;
345     VLANClientState *vc;
346
347     for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
348         if (vc != vc1) {
349             if (vc->fd_can_read && vc->fd_can_read(vc->opaque))
350                 return 1;
351         }
352     }
353     return 0;
354 }
355
356 void qemu_send_packet(VLANClientState *vc1, const uint8_t *buf, int size)
357 {
358     VLANState *vlan = vc1->vlan;
359     VLANClientState *vc;
360
361 #ifdef DEBUG_NET
362     printf("vlan %d send:\n", vlan->id);
363     hex_dump(stdout, buf, size);
364 #endif
365     for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
366         if (vc != vc1) {
367             vc->fd_read(vc->opaque, buf, size);
368         }
369     }
370 }
371
372 #if defined(CONFIG_SLIRP)
373
374 /* slirp network adapter */
375
376 static int slirp_inited;
377 static VLANClientState *slirp_vc;
378
379 int slirp_can_output(void)
380 {
381     return !slirp_vc || qemu_can_send_packet(slirp_vc);
382 }
383
384 void slirp_output(const uint8_t *pkt, int pkt_len)
385 {
386 #ifdef DEBUG_SLIRP
387     printf("slirp output:\n");
388     hex_dump(stdout, pkt, pkt_len);
389 #endif
390     if (!slirp_vc)
391         return;
392     qemu_send_packet(slirp_vc, pkt, pkt_len);
393 }
394
395 int slirp_is_inited(void)
396 {
397     return slirp_inited;
398 }
399
400 static void slirp_receive(void *opaque, const uint8_t *buf, int size)
401 {
402 #ifdef DEBUG_SLIRP
403     printf("slirp input:\n");
404     hex_dump(stdout, buf, size);
405 #endif
406     slirp_input(buf, size);
407 }
408
409 static int net_slirp_init(VLANState *vlan)
410 {
411     if (!slirp_inited) {
412         slirp_inited = 1;
413         slirp_init();
414     }
415     slirp_vc = qemu_new_vlan_client(vlan,
416                                     slirp_receive, NULL, NULL);
417     snprintf(slirp_vc->info_str, sizeof(slirp_vc->info_str), "user redirector");
418     return 0;
419 }
420
421 void net_slirp_redir(const char *redir_str)
422 {
423     int is_udp;
424     char buf[256], *r;
425     const char *p;
426     struct in_addr guest_addr;
427     int host_port, guest_port;
428
429     if (!slirp_inited) {
430         slirp_inited = 1;
431         slirp_init();
432     }
433
434     p = redir_str;
435     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
436         goto fail;
437     if (!strcmp(buf, "tcp")) {
438         is_udp = 0;
439     } else if (!strcmp(buf, "udp")) {
440         is_udp = 1;
441     } else {
442         goto fail;
443     }
444
445     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
446         goto fail;
447     host_port = strtol(buf, &r, 0);
448     if (r == buf)
449         goto fail;
450
451     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
452         goto fail;
453     if (buf[0] == '\0') {
454         pstrcpy(buf, sizeof(buf), "10.0.2.15");
455     }
456     if (!inet_aton(buf, &guest_addr))
457         goto fail;
458
459     guest_port = strtol(p, &r, 0);
460     if (r == p)
461         goto fail;
462
463     if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
464         fprintf(stderr, "qemu: could not set up redirection\n");
465         exit(1);
466     }
467     return;
468  fail:
469     fprintf(stderr, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
470     exit(1);
471 }
472
473 #ifndef _WIN32
474
475 static char smb_dir[1024];
476
477 static void erase_dir(char *dir_name)
478 {
479     DIR *d;
480     struct dirent *de;
481     char filename[1024];
482
483     /* erase all the files in the directory */
484     if ((d = opendir(dir_name)) != 0) {
485         for(;;) {
486             de = readdir(d);
487             if (!de)
488                 break;
489             if (strcmp(de->d_name, ".") != 0 &&
490                 strcmp(de->d_name, "..") != 0) {
491                 snprintf(filename, sizeof(filename), "%s/%s",
492                          smb_dir, de->d_name);
493                 if (unlink(filename) != 0)  /* is it a directory? */
494                     erase_dir(filename);
495             }
496         }
497         closedir(d);
498         rmdir(dir_name);
499     }
500 }
501
502 /* automatic user mode samba server configuration */
503 static void smb_exit(void)
504 {
505     erase_dir(smb_dir);
506 }
507
508 /* automatic user mode samba server configuration */
509 void net_slirp_smb(const char *exported_dir)
510 {
511     char smb_conf[1024];
512     char smb_cmdline[1024];
513     FILE *f;
514
515     if (!slirp_inited) {
516         slirp_inited = 1;
517         slirp_init();
518     }
519
520     /* XXX: better tmp dir construction */
521     snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%d", getpid());
522     if (mkdir(smb_dir, 0700) < 0) {
523         fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
524         exit(1);
525     }
526     snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
527
528     f = fopen(smb_conf, "w");
529     if (!f) {
530         fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
531         exit(1);
532     }
533     fprintf(f,
534             "[global]\n"
535             "private dir=%s\n"
536             "smb ports=0\n"
537             "socket address=127.0.0.1\n"
538             "pid directory=%s\n"
539             "lock directory=%s\n"
540             "log file=%s/log.smbd\n"
541             "smb passwd file=%s/smbpasswd\n"
542             "security = share\n"
543             "[qemu]\n"
544             "path=%s\n"
545             "read only=no\n"
546             "guest ok=yes\n",
547             smb_dir,
548             smb_dir,
549             smb_dir,
550             smb_dir,
551             smb_dir,
552             exported_dir
553             );
554     fclose(f);
555     atexit(smb_exit);
556
557     snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
558              SMBD_COMMAND, smb_conf);
559
560     slirp_add_exec(0, smb_cmdline, 4, 139);
561 }
562
563 #endif /* !defined(_WIN32) */
564 void do_info_slirp(void)
565 {
566     slirp_stats();
567 }
568
569 #endif /* CONFIG_SLIRP */
570
571 #if !defined(_WIN32)
572
573 typedef struct TAPState {
574     VLANClientState *vc;
575     int fd;
576     char down_script[1024];
577 } TAPState;
578
579 static void tap_receive(void *opaque, const uint8_t *buf, int size)
580 {
581     TAPState *s = opaque;
582     int ret;
583     for(;;) {
584         ret = write(s->fd, buf, size);
585         if (ret < 0 && (errno == EINTR || errno == EAGAIN)) {
586         } else {
587             break;
588         }
589     }
590 }
591
592 static void tap_send(void *opaque)
593 {
594     TAPState *s = opaque;
595     uint8_t buf[4096];
596     int size;
597
598 #ifdef __sun__
599     struct strbuf sbuf;
600     int f = 0;
601     sbuf.maxlen = sizeof(buf);
602     sbuf.buf = buf;
603     size = getmsg(s->fd, NULL, &sbuf, &f) >=0 ? sbuf.len : -1;
604 #else
605     size = read(s->fd, buf, sizeof(buf));
606 #endif
607     if (size > 0) {
608         qemu_send_packet(s->vc, buf, size);
609     }
610 }
611
612 /* fd support */
613
614 static TAPState *net_tap_fd_init(VLANState *vlan, int fd)
615 {
616     TAPState *s;
617
618     s = qemu_mallocz(sizeof(TAPState));
619     if (!s)
620         return NULL;
621     s->fd = fd;
622     s->vc = qemu_new_vlan_client(vlan, tap_receive, NULL, s);
623     qemu_set_fd_handler(s->fd, tap_send, NULL, s);
624     snprintf(s->vc->info_str, sizeof(s->vc->info_str), "tap: fd=%d", fd);
625     return s;
626 }
627
628 #if defined (_BSD) || defined (__FreeBSD_kernel__)
629 static int tap_open(char *ifname, int ifname_size)
630 {
631     int fd;
632     char *dev;
633     struct stat s;
634
635     TFR(fd = open("/dev/tap", O_RDWR));
636     if (fd < 0) {
637         fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
638         return -1;
639     }
640
641     fstat(fd, &s);
642     dev = devname(s.st_rdev, S_IFCHR);
643     pstrcpy(ifname, ifname_size, dev);
644
645     fcntl(fd, F_SETFL, O_NONBLOCK);
646     return fd;
647 }
648 #elif defined(__sun__)
649 #define TUNNEWPPA       (('T'<<16) | 0x0001)
650 /*
651  * Allocate TAP device, returns opened fd.
652  * Stores dev name in the first arg(must be large enough).
653  */
654 int tap_alloc(char *dev, size_t dev_size)
655 {
656     int tap_fd, if_fd, ppa = -1;
657     static int ip_fd = 0;
658     char *ptr;
659
660     static int arp_fd = 0;
661     int ip_muxid, arp_muxid;
662     struct strioctl  strioc_if, strioc_ppa;
663     int link_type = I_PLINK;;
664     struct lifreq ifr;
665     char actual_name[32] = "";
666
667     memset(&ifr, 0x0, sizeof(ifr));
668
669     if( *dev ){
670        ptr = dev;
671        while( *ptr && !isdigit((int)*ptr) ) ptr++;
672        ppa = atoi(ptr);
673     }
674
675     /* Check if IP device was opened */
676     if( ip_fd )
677        close(ip_fd);
678
679     TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
680     if (ip_fd < 0) {
681        syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
682        return -1;
683     }
684
685     TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
686     if (tap_fd < 0) {
687        syslog(LOG_ERR, "Can't open /dev/tap");
688        return -1;
689     }
690
691     /* Assign a new PPA and get its unit number. */
692     strioc_ppa.ic_cmd = TUNNEWPPA;
693     strioc_ppa.ic_timout = 0;
694     strioc_ppa.ic_len = sizeof(ppa);
695     strioc_ppa.ic_dp = (char *)&ppa;
696     if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
697        syslog (LOG_ERR, "Can't assign new interface");
698
699     TFR(if_fd = open("/dev/tap", O_RDWR, 0));
700     if (if_fd < 0) {
701        syslog(LOG_ERR, "Can't open /dev/tap (2)");
702        return -1;
703     }
704     if(ioctl(if_fd, I_PUSH, "ip") < 0){
705        syslog(LOG_ERR, "Can't push IP module");
706        return -1;
707     }
708
709     if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
710         syslog(LOG_ERR, "Can't get flags\n");
711
712     snprintf (actual_name, 32, "tap%d", ppa);
713     pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
714
715     ifr.lifr_ppa = ppa;
716     /* Assign ppa according to the unit number returned by tun device */
717
718     if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
719         syslog (LOG_ERR, "Can't set PPA %d", ppa);
720     if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
721         syslog (LOG_ERR, "Can't get flags\n");
722     /* Push arp module to if_fd */
723     if (ioctl (if_fd, I_PUSH, "arp") < 0)
724         syslog (LOG_ERR, "Can't push ARP module (2)");
725
726     /* Push arp module to ip_fd */
727     if (ioctl (ip_fd, I_POP, NULL) < 0)
728         syslog (LOG_ERR, "I_POP failed\n");
729     if (ioctl (ip_fd, I_PUSH, "arp") < 0)
730         syslog (LOG_ERR, "Can't push ARP module (3)\n");
731     /* Open arp_fd */
732     TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
733     if (arp_fd < 0)
734        syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
735
736     /* Set ifname to arp */
737     strioc_if.ic_cmd = SIOCSLIFNAME;
738     strioc_if.ic_timout = 0;
739     strioc_if.ic_len = sizeof(ifr);
740     strioc_if.ic_dp = (char *)&ifr;
741     if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
742         syslog (LOG_ERR, "Can't set ifname to arp\n");
743     }
744
745     if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
746        syslog(LOG_ERR, "Can't link TAP device to IP");
747        return -1;
748     }
749
750     if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
751         syslog (LOG_ERR, "Can't link TAP device to ARP");
752
753     close (if_fd);
754
755     memset(&ifr, 0x0, sizeof(ifr));
756     pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
757     ifr.lifr_ip_muxid  = ip_muxid;
758     ifr.lifr_arp_muxid = arp_muxid;
759
760     if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
761     {
762       ioctl (ip_fd, I_PUNLINK , arp_muxid);
763       ioctl (ip_fd, I_PUNLINK, ip_muxid);
764       syslog (LOG_ERR, "Can't set multiplexor id");
765     }
766
767     snprintf(dev, dev_size, "tap%d", ppa);
768     return tap_fd;
769 }
770
771 static int tap_open(char *ifname, int ifname_size)
772 {
773     char  dev[10]="";
774     int fd;
775     if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
776        fprintf(stderr, "Cannot allocate TAP device\n");
777        return -1;
778     }
779     pstrcpy(ifname, ifname_size, dev);
780     fcntl(fd, F_SETFL, O_NONBLOCK);
781     return fd;
782 }
783 #else
784 static int tap_open(char *ifname, int ifname_size)
785 {
786     struct ifreq ifr;
787     int fd, ret;
788
789     TFR(fd = open("/dev/net/tun", O_RDWR));
790     if (fd < 0) {
791         fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
792         return -1;
793     }
794     memset(&ifr, 0, sizeof(ifr));
795     ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
796     if (ifname[0] != '\0')
797         pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
798     else
799         pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
800     ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
801     if (ret != 0) {
802         fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
803         close(fd);
804         return -1;
805     }
806     pstrcpy(ifname, ifname_size, ifr.ifr_name);
807     fcntl(fd, F_SETFL, O_NONBLOCK);
808     return fd;
809 }
810 #endif
811
812 static int launch_script(const char *setup_script, const char *ifname, int fd)
813 {
814     int pid, status;
815     char *args[3];
816     char **parg;
817
818         /* try to launch network script */
819         pid = fork();
820         if (pid >= 0) {
821             if (pid == 0) {
822                 int open_max = sysconf (_SC_OPEN_MAX), i;
823                 for (i = 0; i < open_max; i++)
824                     if (i != STDIN_FILENO &&
825                         i != STDOUT_FILENO &&
826                         i != STDERR_FILENO &&
827                         i != fd)
828                         close(i);
829
830                 parg = args;
831                 *parg++ = (char *)setup_script;
832                 *parg++ = (char *)ifname;
833                 *parg++ = NULL;
834                 execv(setup_script, args);
835                 _exit(1);
836             }
837             while (waitpid(pid, &status, 0) != pid);
838             if (!WIFEXITED(status) ||
839                 WEXITSTATUS(status) != 0) {
840                 fprintf(stderr, "%s: could not launch network script\n",
841                         setup_script);
842                 return -1;
843             }
844         }
845     return 0;
846 }
847
848 static int net_tap_init(VLANState *vlan, const char *ifname1,
849                         const char *setup_script, const char *down_script)
850 {
851     TAPState *s;
852     int fd;
853     char ifname[128];
854
855     if (ifname1 != NULL)
856         pstrcpy(ifname, sizeof(ifname), ifname1);
857     else
858         ifname[0] = '\0';
859     TFR(fd = tap_open(ifname, sizeof(ifname)));
860     if (fd < 0)
861         return -1;
862
863     if (!setup_script || !strcmp(setup_script, "no"))
864         setup_script = "";
865     if (setup_script[0] != '\0') {
866         if (launch_script(setup_script, ifname, fd))
867             return -1;
868     }
869     s = net_tap_fd_init(vlan, fd);
870     if (!s)
871         return -1;
872     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
873              "tap: ifname=%s setup_script=%s", ifname, setup_script);
874     if (down_script && strcmp(down_script, "no"))
875         snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
876     return 0;
877 }
878
879 #endif /* !_WIN32 */
880
881 #if defined(CONFIG_VDE)
882 typedef struct VDEState {
883     VLANClientState *vc;
884     VDECONN *vde;
885 } VDEState;
886
887 static void vde_to_qemu(void *opaque)
888 {
889     VDEState *s = opaque;
890     uint8_t buf[4096];
891     int size;
892
893     size = vde_recv(s->vde, buf, sizeof(buf), 0);
894     if (size > 0) {
895         qemu_send_packet(s->vc, buf, size);
896     }
897 }
898
899 static void vde_from_qemu(void *opaque, const uint8_t *buf, int size)
900 {
901     VDEState *s = opaque;
902     int ret;
903     for(;;) {
904         ret = vde_send(s->vde, buf, size, 0);
905         if (ret < 0 && errno == EINTR) {
906         } else {
907             break;
908         }
909     }
910 }
911
912 static int net_vde_init(VLANState *vlan, const char *sock, int port,
913                         const char *group, int mode)
914 {
915     VDEState *s;
916     char *init_group = strlen(group) ? (char *)group : NULL;
917     char *init_sock = strlen(sock) ? (char *)sock : NULL;
918
919     struct vde_open_args args = {
920         .port = port,
921         .group = init_group,
922         .mode = mode,
923     };
924
925     s = qemu_mallocz(sizeof(VDEState));
926     if (!s)
927         return -1;
928     s->vde = vde_open(init_sock, "QEMU", &args);
929     if (!s->vde){
930         free(s);
931         return -1;
932     }
933     s->vc = qemu_new_vlan_client(vlan, vde_from_qemu, NULL, s);
934     qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
935     snprintf(s->vc->info_str, sizeof(s->vc->info_str), "vde: sock=%s fd=%d",
936              sock, vde_datafd(s->vde));
937     return 0;
938 }
939 #endif
940
941 /* network connection */
942 typedef struct NetSocketState {
943     VLANClientState *vc;
944     int fd;
945     int state; /* 0 = getting length, 1 = getting data */
946     int index;
947     int packet_len;
948     uint8_t buf[4096];
949     struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
950 } NetSocketState;
951
952 typedef struct NetSocketListenState {
953     VLANState *vlan;
954     int fd;
955 } NetSocketListenState;
956
957 /* XXX: we consider we can send the whole packet without blocking */
958 static void net_socket_receive(void *opaque, const uint8_t *buf, int size)
959 {
960     NetSocketState *s = opaque;
961     uint32_t len;
962     len = htonl(size);
963
964     send_all(s->fd, (const uint8_t *)&len, sizeof(len));
965     send_all(s->fd, buf, size);
966 }
967
968 static void net_socket_receive_dgram(void *opaque, const uint8_t *buf, int size)
969 {
970     NetSocketState *s = opaque;
971     sendto(s->fd, buf, size, 0,
972            (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
973 }
974
975 static void net_socket_send(void *opaque)
976 {
977     NetSocketState *s = opaque;
978     int l, size, err;
979     uint8_t buf1[4096];
980     const uint8_t *buf;
981
982     size = recv(s->fd, buf1, sizeof(buf1), 0);
983     if (size < 0) {
984         err = socket_error();
985         if (err != EWOULDBLOCK)
986             goto eoc;
987     } else if (size == 0) {
988         /* end of connection */
989     eoc:
990         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
991         closesocket(s->fd);
992         return;
993     }
994     buf = buf1;
995     while (size > 0) {
996         /* reassemble a packet from the network */
997         switch(s->state) {
998         case 0:
999             l = 4 - s->index;
1000             if (l > size)
1001                 l = size;
1002             memcpy(s->buf + s->index, buf, l);
1003             buf += l;
1004             size -= l;
1005             s->index += l;
1006             if (s->index == 4) {
1007                 /* got length */
1008                 s->packet_len = ntohl(*(uint32_t *)s->buf);
1009                 s->index = 0;
1010                 s->state = 1;
1011             }
1012             break;
1013         case 1:
1014             l = s->packet_len - s->index;
1015             if (l > size)
1016                 l = size;
1017             memcpy(s->buf + s->index, buf, l);
1018             s->index += l;
1019             buf += l;
1020             size -= l;
1021             if (s->index >= s->packet_len) {
1022                 qemu_send_packet(s->vc, s->buf, s->packet_len);
1023                 s->index = 0;
1024                 s->state = 0;
1025             }
1026             break;
1027         }
1028     }
1029 }
1030
1031 static void net_socket_send_dgram(void *opaque)
1032 {
1033     NetSocketState *s = opaque;
1034     int size;
1035
1036     size = recv(s->fd, s->buf, sizeof(s->buf), 0);
1037     if (size < 0)
1038         return;
1039     if (size == 0) {
1040         /* end of connection */
1041         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1042         return;
1043     }
1044     qemu_send_packet(s->vc, s->buf, size);
1045 }
1046
1047 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1048 {
1049     struct ip_mreq imr;
1050     int fd;
1051     int val, ret;
1052     if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1053         fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1054                 inet_ntoa(mcastaddr->sin_addr),
1055                 (int)ntohl(mcastaddr->sin_addr.s_addr));
1056         return -1;
1057
1058     }
1059     fd = socket(PF_INET, SOCK_DGRAM, 0);
1060     if (fd < 0) {
1061         perror("socket(PF_INET, SOCK_DGRAM)");
1062         return -1;
1063     }
1064
1065     val = 1;
1066     ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1067                    (const char *)&val, sizeof(val));
1068     if (ret < 0) {
1069         perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1070         goto fail;
1071     }
1072
1073     ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1074     if (ret < 0) {
1075         perror("bind");
1076         goto fail;
1077     }
1078
1079     /* Add host to multicast group */
1080     imr.imr_multiaddr = mcastaddr->sin_addr;
1081     imr.imr_interface.s_addr = htonl(INADDR_ANY);
1082
1083     ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1084                      (const char *)&imr, sizeof(struct ip_mreq));
1085     if (ret < 0) {
1086         perror("setsockopt(IP_ADD_MEMBERSHIP)");
1087         goto fail;
1088     }
1089
1090     /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1091     val = 1;
1092     ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1093                    (const char *)&val, sizeof(val));
1094     if (ret < 0) {
1095         perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1096         goto fail;
1097     }
1098
1099     socket_set_nonblock(fd);
1100     return fd;
1101 fail:
1102     if (fd >= 0)
1103         closesocket(fd);
1104     return -1;
1105 }
1106
1107 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan, int fd,
1108                                           int is_connected)
1109 {
1110     struct sockaddr_in saddr;
1111     int newfd;
1112     socklen_t saddr_len;
1113     NetSocketState *s;
1114
1115     /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1116      * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1117      * by ONLY ONE process: we must "clone" this dgram socket --jjo
1118      */
1119
1120     if (is_connected) {
1121         if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1122             /* must be bound */
1123             if (saddr.sin_addr.s_addr==0) {
1124                 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1125                         fd);
1126                 return NULL;
1127             }
1128             /* clone dgram socket */
1129             newfd = net_socket_mcast_create(&saddr);
1130             if (newfd < 0) {
1131                 /* error already reported by net_socket_mcast_create() */
1132                 close(fd);
1133                 return NULL;
1134             }
1135             /* clone newfd to fd, close newfd */
1136             dup2(newfd, fd);
1137             close(newfd);
1138
1139         } else {
1140             fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1141                     fd, strerror(errno));
1142             return NULL;
1143         }
1144     }
1145
1146     s = qemu_mallocz(sizeof(NetSocketState));
1147     if (!s)
1148         return NULL;
1149     s->fd = fd;
1150
1151     s->vc = qemu_new_vlan_client(vlan, net_socket_receive_dgram, NULL, s);
1152     qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1153
1154     /* mcast: save bound address as dst */
1155     if (is_connected) s->dgram_dst=saddr;
1156
1157     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1158             "socket: fd=%d (%s mcast=%s:%d)",
1159             fd, is_connected? "cloned" : "",
1160             inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1161     return s;
1162 }
1163
1164 static void net_socket_connect(void *opaque)
1165 {
1166     NetSocketState *s = opaque;
1167     qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1168 }
1169
1170 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan, int fd,
1171                                           int is_connected)
1172 {
1173     NetSocketState *s;
1174     s = qemu_mallocz(sizeof(NetSocketState));
1175     if (!s)
1176         return NULL;
1177     s->fd = fd;
1178     s->vc = qemu_new_vlan_client(vlan,
1179                                  net_socket_receive, NULL, s);
1180     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1181              "socket: fd=%d", fd);
1182     if (is_connected) {
1183         net_socket_connect(s);
1184     } else {
1185         qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1186     }
1187     return s;
1188 }
1189
1190 static NetSocketState *net_socket_fd_init(VLANState *vlan, int fd,
1191                                           int is_connected)
1192 {
1193     int so_type=-1, optlen=sizeof(so_type);
1194
1195     if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1196         (socklen_t *)&optlen)< 0) {
1197         fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1198         return NULL;
1199     }
1200     switch(so_type) {
1201     case SOCK_DGRAM:
1202         return net_socket_fd_init_dgram(vlan, fd, is_connected);
1203     case SOCK_STREAM:
1204         return net_socket_fd_init_stream(vlan, fd, is_connected);
1205     default:
1206         /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1207         fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
1208         return net_socket_fd_init_stream(vlan, fd, is_connected);
1209     }
1210     return NULL;
1211 }
1212
1213 static void net_socket_accept(void *opaque)
1214 {
1215     NetSocketListenState *s = opaque;
1216     NetSocketState *s1;
1217     struct sockaddr_in saddr;
1218     socklen_t len;
1219     int fd;
1220
1221     for(;;) {
1222         len = sizeof(saddr);
1223         fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1224         if (fd < 0 && errno != EINTR) {
1225             return;
1226         } else if (fd >= 0) {
1227             break;
1228         }
1229     }
1230     s1 = net_socket_fd_init(s->vlan, fd, 1);
1231     if (!s1) {
1232         closesocket(fd);
1233     } else {
1234         snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1235                  "socket: connection from %s:%d",
1236                  inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1237     }
1238 }
1239
1240 static int net_socket_listen_init(VLANState *vlan, const char *host_str)
1241 {
1242     NetSocketListenState *s;
1243     int fd, val, ret;
1244     struct sockaddr_in saddr;
1245
1246     if (parse_host_port(&saddr, host_str) < 0)
1247         return -1;
1248
1249     s = qemu_mallocz(sizeof(NetSocketListenState));
1250     if (!s)
1251         return -1;
1252
1253     fd = socket(PF_INET, SOCK_STREAM, 0);
1254     if (fd < 0) {
1255         perror("socket");
1256         return -1;
1257     }
1258     socket_set_nonblock(fd);
1259
1260     /* allow fast reuse */
1261     val = 1;
1262     setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1263
1264     ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1265     if (ret < 0) {
1266         perror("bind");
1267         return -1;
1268     }
1269     ret = listen(fd, 0);
1270     if (ret < 0) {
1271         perror("listen");
1272         return -1;
1273     }
1274     s->vlan = vlan;
1275     s->fd = fd;
1276     qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1277     return 0;
1278 }
1279
1280 static int net_socket_connect_init(VLANState *vlan, const char *host_str)
1281 {
1282     NetSocketState *s;
1283     int fd, connected, ret, err;
1284     struct sockaddr_in saddr;
1285
1286     if (parse_host_port(&saddr, host_str) < 0)
1287         return -1;
1288
1289     fd = socket(PF_INET, SOCK_STREAM, 0);
1290     if (fd < 0) {
1291         perror("socket");
1292         return -1;
1293     }
1294     socket_set_nonblock(fd);
1295
1296     connected = 0;
1297     for(;;) {
1298         ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1299         if (ret < 0) {
1300             err = socket_error();
1301             if (err == EINTR || err == EWOULDBLOCK) {
1302             } else if (err == EINPROGRESS) {
1303                 break;
1304 #ifdef _WIN32
1305             } else if (err == WSAEALREADY) {
1306                 break;
1307 #endif
1308             } else {
1309                 perror("connect");
1310                 closesocket(fd);
1311                 return -1;
1312             }
1313         } else {
1314             connected = 1;
1315             break;
1316         }
1317     }
1318     s = net_socket_fd_init(vlan, fd, connected);
1319     if (!s)
1320         return -1;
1321     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1322              "socket: connect to %s:%d",
1323              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1324     return 0;
1325 }
1326
1327 static int net_socket_mcast_init(VLANState *vlan, const char *host_str)
1328 {
1329     NetSocketState *s;
1330     int fd;
1331     struct sockaddr_in saddr;
1332
1333     if (parse_host_port(&saddr, host_str) < 0)
1334         return -1;
1335
1336
1337     fd = net_socket_mcast_create(&saddr);
1338     if (fd < 0)
1339         return -1;
1340
1341     s = net_socket_fd_init(vlan, fd, 0);
1342     if (!s)
1343         return -1;
1344
1345     s->dgram_dst = saddr;
1346
1347     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1348              "socket: mcast=%s:%d",
1349              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1350     return 0;
1351
1352 }
1353
1354 /* find or alloc a new VLAN */
1355 VLANState *qemu_find_vlan(int id)
1356 {
1357     VLANState **pvlan, *vlan;
1358     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1359         if (vlan->id == id)
1360             return vlan;
1361     }
1362     vlan = qemu_mallocz(sizeof(VLANState));
1363     if (!vlan)
1364         return NULL;
1365     vlan->id = id;
1366     vlan->next = NULL;
1367     pvlan = &first_vlan;
1368     while (*pvlan != NULL)
1369         pvlan = &(*pvlan)->next;
1370     *pvlan = vlan;
1371     return vlan;
1372 }
1373
1374 int net_client_init(const char *device, const char *p)
1375 {
1376     char buf[1024];
1377     int vlan_id, ret;
1378     VLANState *vlan;
1379
1380     vlan_id = 0;
1381     if (get_param_value(buf, sizeof(buf), "vlan", p)) {
1382         vlan_id = strtol(buf, NULL, 0);
1383     }
1384     vlan = qemu_find_vlan(vlan_id);
1385     if (!vlan) {
1386         fprintf(stderr, "Could not create vlan %d\n", vlan_id);
1387         return -1;
1388     }
1389     if (!strcmp(device, "nic")) {
1390         NICInfo *nd;
1391         uint8_t *macaddr;
1392
1393         if (nb_nics >= MAX_NICS) {
1394             fprintf(stderr, "Too Many NICs\n");
1395             return -1;
1396         }
1397         nd = &nd_table[nb_nics];
1398         macaddr = nd->macaddr;
1399         macaddr[0] = 0x52;
1400         macaddr[1] = 0x54;
1401         macaddr[2] = 0x00;
1402         macaddr[3] = 0x12;
1403         macaddr[4] = 0x34;
1404         macaddr[5] = 0x56 + nb_nics;
1405
1406         if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
1407             if (parse_macaddr(macaddr, buf) < 0) {
1408                 fprintf(stderr, "invalid syntax for ethernet address\n");
1409                 return -1;
1410             }
1411         }
1412         if (get_param_value(buf, sizeof(buf), "model", p)) {
1413             nd->model = strdup(buf);
1414         }
1415         nd->vlan = vlan;
1416         nb_nics++;
1417         vlan->nb_guest_devs++;
1418         ret = 0;
1419     } else
1420     if (!strcmp(device, "none")) {
1421         /* does nothing. It is needed to signal that no network cards
1422            are wanted */
1423         ret = 0;
1424     } else
1425 #ifdef CONFIG_SLIRP
1426     if (!strcmp(device, "user")) {
1427         if (get_param_value(buf, sizeof(buf), "hostname", p)) {
1428             pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
1429         }
1430         vlan->nb_host_devs++;
1431         ret = net_slirp_init(vlan);
1432     } else
1433 #endif
1434 #ifdef _WIN32
1435     if (!strcmp(device, "tap")) {
1436         char ifname[64];
1437         if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1438             fprintf(stderr, "tap: no interface name\n");
1439             return -1;
1440         }
1441         vlan->nb_host_devs++;
1442         ret = tap_win32_init(vlan, ifname);
1443     } else
1444 #else
1445     if (!strcmp(device, "tap")) {
1446         char ifname[64];
1447         char setup_script[1024], down_script[1024];
1448         int fd;
1449         vlan->nb_host_devs++;
1450         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1451             fd = strtol(buf, NULL, 0);
1452             fcntl(fd, F_SETFL, O_NONBLOCK);
1453             ret = -1;
1454             if (net_tap_fd_init(vlan, fd))
1455                 ret = 0;
1456         } else {
1457             if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1458                 ifname[0] = '\0';
1459             }
1460             if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
1461                 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
1462             }
1463             if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
1464                 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
1465             }
1466             ret = net_tap_init(vlan, ifname, setup_script, down_script);
1467         }
1468     } else
1469 #endif
1470     if (!strcmp(device, "socket")) {
1471         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1472             int fd;
1473             fd = strtol(buf, NULL, 0);
1474             ret = -1;
1475             if (net_socket_fd_init(vlan, fd, 1))
1476                 ret = 0;
1477         } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
1478             ret = net_socket_listen_init(vlan, buf);
1479         } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
1480             ret = net_socket_connect_init(vlan, buf);
1481         } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
1482             ret = net_socket_mcast_init(vlan, buf);
1483         } else {
1484             fprintf(stderr, "Unknown socket options: %s\n", p);
1485             return -1;
1486         }
1487         vlan->nb_host_devs++;
1488     } else
1489 #ifdef CONFIG_VDE
1490     if (!strcmp(device, "vde")) {
1491         char vde_sock[1024], vde_group[512];
1492         int vde_port, vde_mode;
1493         vlan->nb_host_devs++;
1494         if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
1495             vde_sock[0] = '\0';
1496         }
1497         if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
1498             vde_port = strtol(buf, NULL, 10);
1499         } else {
1500             vde_port = 0;
1501         }
1502         if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
1503             vde_group[0] = '\0';
1504         }
1505         if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
1506             vde_mode = strtol(buf, NULL, 8);
1507         } else {
1508             vde_mode = 0700;
1509         }
1510         ret = net_vde_init(vlan, vde_sock, vde_port, vde_group, vde_mode);
1511     } else
1512 #endif
1513     {
1514         fprintf(stderr, "Unknown network device: %s\n", device);
1515         return -1;
1516     }
1517     if (ret < 0) {
1518         fprintf(stderr, "Could not initialize device '%s'\n", device);
1519     }
1520
1521     return ret;
1522 }
1523
1524 int net_client_parse(const char *str)
1525 {
1526     const char *p;
1527     char *q;
1528     char device[64];
1529
1530     p = str;
1531     q = device;
1532     while (*p != '\0' && *p != ',') {
1533         if ((q - device) < sizeof(device) - 1)
1534             *q++ = *p;
1535         p++;
1536     }
1537     *q = '\0';
1538     if (*p == ',')
1539         p++;
1540
1541     return net_client_init(device, p);
1542 }
1543
1544 void do_info_network(void)
1545 {
1546     VLANState *vlan;
1547     VLANClientState *vc;
1548
1549     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1550         term_printf("VLAN %d devices:\n", vlan->id);
1551         for(vc = vlan->first_client; vc != NULL; vc = vc->next)
1552             term_printf("  %s\n", vc->info_str);
1553     }
1554 }
1555
1556 void net_cleanup(void)
1557 {
1558     VLANState *vlan;
1559
1560 #if !defined(_WIN32)
1561     /* close network clients */
1562     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1563         VLANClientState *vc;
1564
1565         for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
1566             if (vc->fd_read == tap_receive) {
1567                 char ifname[64];
1568                 TAPState *s = vc->opaque;
1569
1570                 if (sscanf(vc->info_str, "tap: ifname=%63s ", ifname) == 1 &&
1571                     s->down_script[0])
1572                     launch_script(s->down_script, ifname, s->fd);
1573             }
1574 #if defined(CONFIG_VDE)
1575             if (vc->fd_read == vde_from_qemu) {
1576                 VDEState *s = vc->opaque;
1577                 vde_close(s->vde);
1578             }
1579 #endif
1580         }
1581     }
1582 #endif
1583 }
1584
1585 void net_client_check(void)
1586 {
1587     VLANState *vlan;
1588
1589     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1590         if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
1591             continue;
1592         if (vlan->nb_guest_devs == 0)
1593             fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1594         if (vlan->nb_host_devs == 0)
1595             fprintf(stderr,
1596                     "Warning: vlan %d is not connected to host network\n",
1597                     vlan->id);
1598     }
1599 }