fix raw_aio_remove (Stefano Stabellini)
[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 static VLANState *first_vlan;
124
125 /***********************************************************/
126 /* network device redirectors */
127
128 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
129 static void hex_dump(FILE *f, const uint8_t *buf, int size)
130 {
131     int len, i, j, c;
132
133     for(i=0;i<size;i+=16) {
134         len = size - i;
135         if (len > 16)
136             len = 16;
137         fprintf(f, "%08x ", i);
138         for(j=0;j<16;j++) {
139             if (j < len)
140                 fprintf(f, " %02x", buf[i+j]);
141             else
142                 fprintf(f, "   ");
143         }
144         fprintf(f, " ");
145         for(j=0;j<len;j++) {
146             c = buf[i+j];
147             if (c < ' ' || c > '~')
148                 c = '.';
149             fprintf(f, "%c", c);
150         }
151         fprintf(f, "\n");
152     }
153 }
154 #endif
155
156 static int parse_macaddr(uint8_t *macaddr, const char *p)
157 {
158     int i;
159     char *last_char;
160     long int offset;
161
162     errno = 0;
163     offset = strtol(p, &last_char, 0);    
164     if (0 == errno && '\0' == *last_char &&
165             offset >= 0 && offset <= 0xFFFFFF) {
166         macaddr[3] = (offset & 0xFF0000) >> 16;
167         macaddr[4] = (offset & 0xFF00) >> 8;
168         macaddr[5] = offset & 0xFF;
169         return 0;
170     } else {
171         for(i = 0; i < 6; i++) {
172             macaddr[i] = strtol(p, (char **)&p, 16);
173             if (i == 5) {
174                 if (*p != '\0')
175                     return -1;
176             } else {
177                 if (*p != ':' && *p != '-')
178                     return -1;
179                 p++;
180             }
181         }
182         return 0;    
183     }
184
185     return -1;
186 }
187
188 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
189 {
190     const char *p, *p1;
191     int len;
192     p = *pp;
193     p1 = strchr(p, sep);
194     if (!p1)
195         return -1;
196     len = p1 - p;
197     p1++;
198     if (buf_size > 0) {
199         if (len > buf_size - 1)
200             len = buf_size - 1;
201         memcpy(buf, p, len);
202         buf[len] = '\0';
203     }
204     *pp = p1;
205     return 0;
206 }
207
208 int parse_host_src_port(struct sockaddr_in *haddr,
209                         struct sockaddr_in *saddr,
210                         const char *input_str)
211 {
212     char *str = strdup(input_str);
213     char *host_str = str;
214     char *src_str;
215     const char *src_str2;
216     char *ptr;
217
218     /*
219      * Chop off any extra arguments at the end of the string which
220      * would start with a comma, then fill in the src port information
221      * if it was provided else use the "any address" and "any port".
222      */
223     if ((ptr = strchr(str,',')))
224         *ptr = '\0';
225
226     if ((src_str = strchr(input_str,'@'))) {
227         *src_str = '\0';
228         src_str++;
229     }
230
231     if (parse_host_port(haddr, host_str) < 0)
232         goto fail;
233
234     src_str2 = src_str;
235     if (!src_str || *src_str == '\0')
236         src_str2 = ":0";
237
238     if (parse_host_port(saddr, src_str2) < 0)
239         goto fail;
240
241     free(str);
242     return(0);
243
244 fail:
245     free(str);
246     return -1;
247 }
248
249 int parse_host_port(struct sockaddr_in *saddr, const char *str)
250 {
251     char buf[512];
252     struct hostent *he;
253     const char *p, *r;
254     int port;
255
256     p = str;
257     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
258         return -1;
259     saddr->sin_family = AF_INET;
260     if (buf[0] == '\0') {
261         saddr->sin_addr.s_addr = 0;
262     } else {
263         if (qemu_isdigit(buf[0])) {
264             if (!inet_aton(buf, &saddr->sin_addr))
265                 return -1;
266         } else {
267             if ((he = gethostbyname(buf)) == NULL)
268                 return - 1;
269             saddr->sin_addr = *(struct in_addr *)he->h_addr;
270         }
271     }
272     port = strtol(p, (char **)&r, 0);
273     if (r == p)
274         return -1;
275     saddr->sin_port = htons(port);
276     return 0;
277 }
278
279 #if !defined(_WIN32) && 0
280 static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
281 {
282     const char *p;
283     int len;
284
285     len = MIN(108, strlen(str));
286     p = strchr(str, ',');
287     if (p)
288         len = MIN(len, p - str);
289
290     memset(uaddr, 0, sizeof(*uaddr));
291
292     uaddr->sun_family = AF_UNIX;
293     memcpy(uaddr->sun_path, str, len);
294
295     return 0;
296 }
297 #endif
298
299 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
300 {
301     snprintf(vc->info_str, sizeof(vc->info_str),
302              "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
303              vc->model,
304              macaddr[0], macaddr[1], macaddr[2],
305              macaddr[3], macaddr[4], macaddr[5]);
306 }
307
308 static char *assign_name(VLANClientState *vc1, const char *model)
309 {
310     VLANState *vlan;
311     char buf[256];
312     int id = 0;
313
314     for (vlan = first_vlan; vlan; vlan = vlan->next) {
315         VLANClientState *vc;
316
317         for (vc = vlan->first_client; vc; vc = vc->next)
318             if (vc != vc1 && strcmp(vc->model, model) == 0)
319                 id++;
320     }
321
322     snprintf(buf, sizeof(buf), "%s.%d", model, id);
323
324     return strdup(buf);
325 }
326
327 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
328                                       const char *model,
329                                       const char *name,
330                                       IOReadHandler *fd_read,
331                                       IOCanRWHandler *fd_can_read,
332                                       void *opaque)
333 {
334     VLANClientState *vc, **pvc;
335     vc = qemu_mallocz(sizeof(VLANClientState));
336     vc->model = strdup(model);
337     if (name)
338         vc->name = strdup(name);
339     else
340         vc->name = assign_name(vc, model);
341     vc->fd_read = fd_read;
342     vc->fd_can_read = fd_can_read;
343     vc->opaque = opaque;
344     vc->vlan = vlan;
345
346     vc->next = NULL;
347     pvc = &vlan->first_client;
348     while (*pvc != NULL)
349         pvc = &(*pvc)->next;
350     *pvc = vc;
351     return vc;
352 }
353
354 void qemu_del_vlan_client(VLANClientState *vc)
355 {
356     VLANClientState **pvc = &vc->vlan->first_client;
357
358     while (*pvc != NULL)
359         if (*pvc == vc) {
360             *pvc = vc->next;
361             free(vc->name);
362             free(vc->model);
363             free(vc);
364             break;
365         } else
366             pvc = &(*pvc)->next;
367 }
368
369 VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
370 {
371     VLANClientState **pvc = &vlan->first_client;
372
373     while (*pvc != NULL)
374         if ((*pvc)->opaque == opaque)
375             return *pvc;
376         else
377             pvc = &(*pvc)->next;
378
379     return NULL;
380 }
381
382 int qemu_can_send_packet(VLANClientState *vc1)
383 {
384     VLANState *vlan = vc1->vlan;
385     VLANClientState *vc;
386
387     for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
388         if (vc != vc1) {
389             if (vc->fd_can_read && vc->fd_can_read(vc->opaque))
390                 return 1;
391         }
392     }
393     return 0;
394 }
395
396 void qemu_send_packet(VLANClientState *vc1, const uint8_t *buf, int size)
397 {
398     VLANState *vlan = vc1->vlan;
399     VLANClientState *vc;
400
401     if (vc1->link_down)
402         return;
403
404 #ifdef DEBUG_NET
405     printf("vlan %d send:\n", vlan->id);
406     hex_dump(stdout, buf, size);
407 #endif
408     for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
409         if (vc != vc1 && !vc->link_down) {
410             vc->fd_read(vc->opaque, buf, size);
411         }
412     }
413 }
414
415 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
416                                int iovcnt)
417 {
418     uint8_t buffer[4096];
419     size_t offset = 0;
420     int i;
421
422     for (i = 0; i < iovcnt; i++) {
423         size_t len;
424
425         len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
426         memcpy(buffer + offset, iov[i].iov_base, len);
427         offset += len;
428     }
429
430     vc->fd_read(vc->opaque, buffer, offset);
431
432     return offset;
433 }
434
435 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
436 {
437     size_t offset = 0;
438     int i;
439
440     for (i = 0; i < iovcnt; i++)
441         offset += iov[i].iov_len;
442     return offset;
443 }
444
445 ssize_t qemu_sendv_packet(VLANClientState *vc1, const struct iovec *iov,
446                           int iovcnt)
447 {
448     VLANState *vlan = vc1->vlan;
449     VLANClientState *vc;
450     ssize_t max_len = 0;
451
452     if (vc1->link_down)
453         return calc_iov_length(iov, iovcnt);
454
455     for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
456         ssize_t len = 0;
457
458         if (vc == vc1)
459             continue;
460
461         if (vc->link_down)
462             len = calc_iov_length(iov, iovcnt);
463         if (vc->fd_readv)
464             len = vc->fd_readv(vc->opaque, iov, iovcnt);
465         else if (vc->fd_read)
466             len = vc_sendv_compat(vc, iov, iovcnt);
467
468         max_len = MAX(max_len, len);
469     }
470
471     return max_len;
472 }
473
474 #if defined(CONFIG_SLIRP)
475
476 /* slirp network adapter */
477
478 static int slirp_inited;
479 static int slirp_restrict;
480 static char *slirp_ip;
481 static VLANClientState *slirp_vc;
482
483 int slirp_can_output(void)
484 {
485     return !slirp_vc || qemu_can_send_packet(slirp_vc);
486 }
487
488 void slirp_output(const uint8_t *pkt, int pkt_len)
489 {
490 #ifdef DEBUG_SLIRP
491     printf("slirp output:\n");
492     hex_dump(stdout, pkt, pkt_len);
493 #endif
494     if (!slirp_vc)
495         return;
496     qemu_send_packet(slirp_vc, pkt, pkt_len);
497 }
498
499 int slirp_is_inited(void)
500 {
501     return slirp_inited;
502 }
503
504 static void slirp_receive(void *opaque, const uint8_t *buf, int size)
505 {
506 #ifdef DEBUG_SLIRP
507     printf("slirp input:\n");
508     hex_dump(stdout, buf, size);
509 #endif
510     slirp_input(buf, size);
511 }
512
513 static int net_slirp_init(VLANState *vlan, const char *model, const char *name)
514 {
515     if (!slirp_inited) {
516         slirp_inited = 1;
517         slirp_init(slirp_restrict, slirp_ip);
518     }
519     slirp_vc = qemu_new_vlan_client(vlan, model, name,
520                                     slirp_receive, NULL, NULL);
521     slirp_vc->info_str[0] = '\0';
522     return 0;
523 }
524
525 void net_slirp_redir(const char *redir_str)
526 {
527     int is_udp;
528     char buf[256], *r;
529     const char *p;
530     struct in_addr guest_addr;
531     int host_port, guest_port;
532
533     if (!slirp_inited) {
534         slirp_inited = 1;
535         slirp_init(slirp_restrict, slirp_ip);
536     }
537
538     p = redir_str;
539     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
540         goto fail;
541     if (!strcmp(buf, "tcp")) {
542         is_udp = 0;
543     } else if (!strcmp(buf, "udp")) {
544         is_udp = 1;
545     } else {
546         goto fail;
547     }
548
549     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
550         goto fail;
551     host_port = strtol(buf, &r, 0);
552     if (r == buf)
553         goto fail;
554
555     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
556         goto fail;
557     if (buf[0] == '\0') {
558         pstrcpy(buf, sizeof(buf), "10.0.2.15");
559     }
560     if (!inet_aton(buf, &guest_addr))
561         goto fail;
562
563     guest_port = strtol(p, &r, 0);
564     if (r == p)
565         goto fail;
566
567     if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
568         fprintf(stderr, "qemu: could not set up redirection\n");
569         exit(1);
570     }
571     return;
572  fail:
573     fprintf(stderr, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
574     exit(1);
575 }
576
577 #ifndef _WIN32
578
579 static char smb_dir[1024];
580
581 static void erase_dir(char *dir_name)
582 {
583     DIR *d;
584     struct dirent *de;
585     char filename[1024];
586
587     /* erase all the files in the directory */
588     if ((d = opendir(dir_name)) != 0) {
589         for(;;) {
590             de = readdir(d);
591             if (!de)
592                 break;
593             if (strcmp(de->d_name, ".") != 0 &&
594                 strcmp(de->d_name, "..") != 0) {
595                 snprintf(filename, sizeof(filename), "%s/%s",
596                          smb_dir, de->d_name);
597                 if (unlink(filename) != 0)  /* is it a directory? */
598                     erase_dir(filename);
599             }
600         }
601         closedir(d);
602         rmdir(dir_name);
603     }
604 }
605
606 /* automatic user mode samba server configuration */
607 static void smb_exit(void)
608 {
609     erase_dir(smb_dir);
610 }
611
612 /* automatic user mode samba server configuration */
613 void net_slirp_smb(const char *exported_dir)
614 {
615     char smb_conf[1024];
616     char smb_cmdline[1024];
617     FILE *f;
618
619     if (!slirp_inited) {
620         slirp_inited = 1;
621         slirp_init(slirp_restrict, slirp_ip);
622     }
623
624     /* XXX: better tmp dir construction */
625     snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%d", getpid());
626     if (mkdir(smb_dir, 0700) < 0) {
627         fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
628         exit(1);
629     }
630     snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
631
632     f = fopen(smb_conf, "w");
633     if (!f) {
634         fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
635         exit(1);
636     }
637     fprintf(f,
638             "[global]\n"
639             "private dir=%s\n"
640             "smb ports=0\n"
641             "socket address=127.0.0.1\n"
642             "pid directory=%s\n"
643             "lock directory=%s\n"
644             "log file=%s/log.smbd\n"
645             "smb passwd file=%s/smbpasswd\n"
646             "security = share\n"
647             "[qemu]\n"
648             "path=%s\n"
649             "read only=no\n"
650             "guest ok=yes\n",
651             smb_dir,
652             smb_dir,
653             smb_dir,
654             smb_dir,
655             smb_dir,
656             exported_dir
657             );
658     fclose(f);
659     atexit(smb_exit);
660
661     snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
662              SMBD_COMMAND, smb_conf);
663
664     slirp_add_exec(0, smb_cmdline, 4, 139);
665 }
666
667 #endif /* !defined(_WIN32) */
668 void do_info_slirp(void)
669 {
670     slirp_stats();
671 }
672
673 struct VMChannel {
674     CharDriverState *hd;
675     int port;
676 } *vmchannels;
677
678 static int vmchannel_can_read(void *opaque)
679 {
680     struct VMChannel *vmc = (struct VMChannel*)opaque;
681     return slirp_socket_can_recv(4, vmc->port);
682 }
683
684 static void vmchannel_read(void *opaque, const uint8_t *buf, int size)
685 {
686     struct VMChannel *vmc = (struct VMChannel*)opaque;
687     slirp_socket_recv(4, vmc->port, buf, size);
688 }
689
690 #endif /* CONFIG_SLIRP */
691
692 #if !defined(_WIN32)
693
694 typedef struct TAPState {
695     VLANClientState *vc;
696     int fd;
697     char down_script[1024];
698     char down_script_arg[128];
699 } TAPState;
700
701 #ifdef HAVE_IOVEC
702 static ssize_t tap_receive_iov(void *opaque, const struct iovec *iov,
703                                int iovcnt)
704 {
705     TAPState *s = opaque;
706     ssize_t len;
707
708     do {
709         len = writev(s->fd, iov, iovcnt);
710     } while (len == -1 && (errno == EINTR || errno == EAGAIN));
711
712     return len;
713 }
714 #endif
715
716 static void tap_receive(void *opaque, const uint8_t *buf, int size)
717 {
718     TAPState *s = opaque;
719     int ret;
720     for(;;) {
721         ret = write(s->fd, buf, size);
722         if (ret < 0 && (errno == EINTR || errno == EAGAIN)) {
723         } else {
724             break;
725         }
726     }
727 }
728
729 static void tap_send(void *opaque)
730 {
731     TAPState *s = opaque;
732     uint8_t buf[4096];
733     int size;
734
735 #ifdef __sun__
736     struct strbuf sbuf;
737     int f = 0;
738     sbuf.maxlen = sizeof(buf);
739     sbuf.buf = buf;
740     size = getmsg(s->fd, NULL, &sbuf, &f) >=0 ? sbuf.len : -1;
741 #else
742     size = read(s->fd, buf, sizeof(buf));
743 #endif
744     if (size > 0) {
745         qemu_send_packet(s->vc, buf, size);
746     }
747 }
748
749 /* fd support */
750
751 static TAPState *net_tap_fd_init(VLANState *vlan,
752                                  const char *model,
753                                  const char *name,
754                                  int fd)
755 {
756     TAPState *s;
757
758     s = qemu_mallocz(sizeof(TAPState));
759     s->fd = fd;
760     s->vc = qemu_new_vlan_client(vlan, model, name, tap_receive, NULL, s);
761 #ifdef HAVE_IOVEC
762     s->vc->fd_readv = tap_receive_iov;
763 #endif
764     qemu_set_fd_handler(s->fd, tap_send, NULL, s);
765     snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
766     return s;
767 }
768
769 #if defined (_BSD) || defined (__FreeBSD_kernel__)
770 static int tap_open(char *ifname, int ifname_size)
771 {
772     int fd;
773     char *dev;
774     struct stat s;
775
776     TFR(fd = open("/dev/tap", O_RDWR));
777     if (fd < 0) {
778         fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
779         return -1;
780     }
781
782     fstat(fd, &s);
783     dev = devname(s.st_rdev, S_IFCHR);
784     pstrcpy(ifname, ifname_size, dev);
785
786     fcntl(fd, F_SETFL, O_NONBLOCK);
787     return fd;
788 }
789 #elif defined(__sun__)
790 #define TUNNEWPPA       (('T'<<16) | 0x0001)
791 /*
792  * Allocate TAP device, returns opened fd.
793  * Stores dev name in the first arg(must be large enough).
794  */
795 int tap_alloc(char *dev, size_t dev_size)
796 {
797     int tap_fd, if_fd, ppa = -1;
798     static int ip_fd = 0;
799     char *ptr;
800
801     static int arp_fd = 0;
802     int ip_muxid, arp_muxid;
803     struct strioctl  strioc_if, strioc_ppa;
804     int link_type = I_PLINK;;
805     struct lifreq ifr;
806     char actual_name[32] = "";
807
808     memset(&ifr, 0x0, sizeof(ifr));
809
810     if( *dev ){
811        ptr = dev;
812        while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
813        ppa = atoi(ptr);
814     }
815
816     /* Check if IP device was opened */
817     if( ip_fd )
818        close(ip_fd);
819
820     TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
821     if (ip_fd < 0) {
822        syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
823        return -1;
824     }
825
826     TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
827     if (tap_fd < 0) {
828        syslog(LOG_ERR, "Can't open /dev/tap");
829        return -1;
830     }
831
832     /* Assign a new PPA and get its unit number. */
833     strioc_ppa.ic_cmd = TUNNEWPPA;
834     strioc_ppa.ic_timout = 0;
835     strioc_ppa.ic_len = sizeof(ppa);
836     strioc_ppa.ic_dp = (char *)&ppa;
837     if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
838        syslog (LOG_ERR, "Can't assign new interface");
839
840     TFR(if_fd = open("/dev/tap", O_RDWR, 0));
841     if (if_fd < 0) {
842        syslog(LOG_ERR, "Can't open /dev/tap (2)");
843        return -1;
844     }
845     if(ioctl(if_fd, I_PUSH, "ip") < 0){
846        syslog(LOG_ERR, "Can't push IP module");
847        return -1;
848     }
849
850     if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
851         syslog(LOG_ERR, "Can't get flags\n");
852
853     snprintf (actual_name, 32, "tap%d", ppa);
854     pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
855
856     ifr.lifr_ppa = ppa;
857     /* Assign ppa according to the unit number returned by tun device */
858
859     if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
860         syslog (LOG_ERR, "Can't set PPA %d", ppa);
861     if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
862         syslog (LOG_ERR, "Can't get flags\n");
863     /* Push arp module to if_fd */
864     if (ioctl (if_fd, I_PUSH, "arp") < 0)
865         syslog (LOG_ERR, "Can't push ARP module (2)");
866
867     /* Push arp module to ip_fd */
868     if (ioctl (ip_fd, I_POP, NULL) < 0)
869         syslog (LOG_ERR, "I_POP failed\n");
870     if (ioctl (ip_fd, I_PUSH, "arp") < 0)
871         syslog (LOG_ERR, "Can't push ARP module (3)\n");
872     /* Open arp_fd */
873     TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
874     if (arp_fd < 0)
875        syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
876
877     /* Set ifname to arp */
878     strioc_if.ic_cmd = SIOCSLIFNAME;
879     strioc_if.ic_timout = 0;
880     strioc_if.ic_len = sizeof(ifr);
881     strioc_if.ic_dp = (char *)&ifr;
882     if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
883         syslog (LOG_ERR, "Can't set ifname to arp\n");
884     }
885
886     if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
887        syslog(LOG_ERR, "Can't link TAP device to IP");
888        return -1;
889     }
890
891     if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
892         syslog (LOG_ERR, "Can't link TAP device to ARP");
893
894     close (if_fd);
895
896     memset(&ifr, 0x0, sizeof(ifr));
897     pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
898     ifr.lifr_ip_muxid  = ip_muxid;
899     ifr.lifr_arp_muxid = arp_muxid;
900
901     if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
902     {
903       ioctl (ip_fd, I_PUNLINK , arp_muxid);
904       ioctl (ip_fd, I_PUNLINK, ip_muxid);
905       syslog (LOG_ERR, "Can't set multiplexor id");
906     }
907
908     snprintf(dev, dev_size, "tap%d", ppa);
909     return tap_fd;
910 }
911
912 static int tap_open(char *ifname, int ifname_size)
913 {
914     char  dev[10]="";
915     int fd;
916     if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
917        fprintf(stderr, "Cannot allocate TAP device\n");
918        return -1;
919     }
920     pstrcpy(ifname, ifname_size, dev);
921     fcntl(fd, F_SETFL, O_NONBLOCK);
922     return fd;
923 }
924 #elif defined (_AIX)
925 static int tap_open(char *ifname, int ifname_size)
926 {
927     fprintf (stderr, "no tap on AIX\n");
928     return -1;
929 }
930 #else
931 static int tap_open(char *ifname, int ifname_size)
932 {
933     struct ifreq ifr;
934     int fd, ret;
935
936     TFR(fd = open("/dev/net/tun", O_RDWR));
937     if (fd < 0) {
938         fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
939         return -1;
940     }
941     memset(&ifr, 0, sizeof(ifr));
942     ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
943     if (ifname[0] != '\0')
944         pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
945     else
946         pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
947     ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
948     if (ret != 0) {
949         fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
950         close(fd);
951         return -1;
952     }
953     pstrcpy(ifname, ifname_size, ifr.ifr_name);
954     fcntl(fd, F_SETFL, O_NONBLOCK);
955     return fd;
956 }
957 #endif
958
959 static int launch_script(const char *setup_script, const char *ifname, int fd)
960 {
961     int pid, status;
962     char *args[3];
963     char **parg;
964
965         /* try to launch network script */
966         pid = fork();
967         if (pid >= 0) {
968             if (pid == 0) {
969                 int open_max = sysconf (_SC_OPEN_MAX), i;
970                 for (i = 0; i < open_max; i++)
971                     if (i != STDIN_FILENO &&
972                         i != STDOUT_FILENO &&
973                         i != STDERR_FILENO &&
974                         i != fd)
975                         close(i);
976
977                 parg = args;
978                 *parg++ = (char *)setup_script;
979                 *parg++ = (char *)ifname;
980                 *parg++ = NULL;
981                 execv(setup_script, args);
982                 _exit(1);
983             }
984             while (waitpid(pid, &status, 0) != pid);
985             if (!WIFEXITED(status) ||
986                 WEXITSTATUS(status) != 0) {
987                 fprintf(stderr, "%s: could not launch network script\n",
988                         setup_script);
989                 return -1;
990             }
991         }
992     return 0;
993 }
994
995 static int net_tap_init(VLANState *vlan, const char *model,
996                         const char *name, const char *ifname1,
997                         const char *setup_script, const char *down_script)
998 {
999     TAPState *s;
1000     int fd;
1001     char ifname[128];
1002
1003     if (ifname1 != NULL)
1004         pstrcpy(ifname, sizeof(ifname), ifname1);
1005     else
1006         ifname[0] = '\0';
1007     TFR(fd = tap_open(ifname, sizeof(ifname)));
1008     if (fd < 0)
1009         return -1;
1010
1011     if (!setup_script || !strcmp(setup_script, "no"))
1012         setup_script = "";
1013     if (setup_script[0] != '\0') {
1014         if (launch_script(setup_script, ifname, fd))
1015             return -1;
1016     }
1017     s = net_tap_fd_init(vlan, model, name, fd);
1018     if (!s)
1019         return -1;
1020     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1021              "ifname=%s,script=%s,downscript=%s",
1022              ifname, setup_script, down_script);
1023     if (down_script && strcmp(down_script, "no")) {
1024         snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
1025         snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1026     }
1027     return 0;
1028 }
1029
1030 #endif /* !_WIN32 */
1031
1032 #if defined(CONFIG_VDE)
1033 typedef struct VDEState {
1034     VLANClientState *vc;
1035     VDECONN *vde;
1036 } VDEState;
1037
1038 static void vde_to_qemu(void *opaque)
1039 {
1040     VDEState *s = opaque;
1041     uint8_t buf[4096];
1042     int size;
1043
1044     size = vde_recv(s->vde, buf, sizeof(buf), 0);
1045     if (size > 0) {
1046         qemu_send_packet(s->vc, buf, size);
1047     }
1048 }
1049
1050 static void vde_from_qemu(void *opaque, const uint8_t *buf, int size)
1051 {
1052     VDEState *s = opaque;
1053     int ret;
1054     for(;;) {
1055         ret = vde_send(s->vde, buf, size, 0);
1056         if (ret < 0 && errno == EINTR) {
1057         } else {
1058             break;
1059         }
1060     }
1061 }
1062
1063 static int net_vde_init(VLANState *vlan, const char *model,
1064                         const char *name, const char *sock,
1065                         int port, const char *group, int mode)
1066 {
1067     VDEState *s;
1068     char *init_group = strlen(group) ? (char *)group : NULL;
1069     char *init_sock = strlen(sock) ? (char *)sock : NULL;
1070
1071     struct vde_open_args args = {
1072         .port = port,
1073         .group = init_group,
1074         .mode = mode,
1075     };
1076
1077     s = qemu_mallocz(sizeof(VDEState));
1078     s->vde = vde_open(init_sock, "QEMU", &args);
1079     if (!s->vde){
1080         free(s);
1081         return -1;
1082     }
1083     s->vc = qemu_new_vlan_client(vlan, model, name, vde_from_qemu, NULL, s);
1084     qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
1085     snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
1086              sock, vde_datafd(s->vde));
1087     return 0;
1088 }
1089 #endif
1090
1091 /* network connection */
1092 typedef struct NetSocketState {
1093     VLANClientState *vc;
1094     int fd;
1095     int state; /* 0 = getting length, 1 = getting data */
1096     int index;
1097     int packet_len;
1098     uint8_t buf[4096];
1099     struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1100 } NetSocketState;
1101
1102 typedef struct NetSocketListenState {
1103     VLANState *vlan;
1104     char *model;
1105     char *name;
1106     int fd;
1107 } NetSocketListenState;
1108
1109 /* XXX: we consider we can send the whole packet without blocking */
1110 static void net_socket_receive(void *opaque, const uint8_t *buf, int size)
1111 {
1112     NetSocketState *s = opaque;
1113     uint32_t len;
1114     len = htonl(size);
1115
1116     send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1117     send_all(s->fd, buf, size);
1118 }
1119
1120 static void net_socket_receive_dgram(void *opaque, const uint8_t *buf, int size)
1121 {
1122     NetSocketState *s = opaque;
1123     sendto(s->fd, buf, size, 0,
1124            (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
1125 }
1126
1127 static void net_socket_send(void *opaque)
1128 {
1129     NetSocketState *s = opaque;
1130     int l, size, err;
1131     uint8_t buf1[4096];
1132     const uint8_t *buf;
1133
1134     size = recv(s->fd, buf1, sizeof(buf1), 0);
1135     if (size < 0) {
1136         err = socket_error();
1137         if (err != EWOULDBLOCK)
1138             goto eoc;
1139     } else if (size == 0) {
1140         /* end of connection */
1141     eoc:
1142         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1143         closesocket(s->fd);
1144         return;
1145     }
1146     buf = buf1;
1147     while (size > 0) {
1148         /* reassemble a packet from the network */
1149         switch(s->state) {
1150         case 0:
1151             l = 4 - s->index;
1152             if (l > size)
1153                 l = size;
1154             memcpy(s->buf + s->index, buf, l);
1155             buf += l;
1156             size -= l;
1157             s->index += l;
1158             if (s->index == 4) {
1159                 /* got length */
1160                 s->packet_len = ntohl(*(uint32_t *)s->buf);
1161                 s->index = 0;
1162                 s->state = 1;
1163             }
1164             break;
1165         case 1:
1166             l = s->packet_len - s->index;
1167             if (l > size)
1168                 l = size;
1169             memcpy(s->buf + s->index, buf, l);
1170             s->index += l;
1171             buf += l;
1172             size -= l;
1173             if (s->index >= s->packet_len) {
1174                 qemu_send_packet(s->vc, s->buf, s->packet_len);
1175                 s->index = 0;
1176                 s->state = 0;
1177             }
1178             break;
1179         }
1180     }
1181 }
1182
1183 static void net_socket_send_dgram(void *opaque)
1184 {
1185     NetSocketState *s = opaque;
1186     int size;
1187
1188     size = recv(s->fd, s->buf, sizeof(s->buf), 0);
1189     if (size < 0)
1190         return;
1191     if (size == 0) {
1192         /* end of connection */
1193         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1194         return;
1195     }
1196     qemu_send_packet(s->vc, s->buf, size);
1197 }
1198
1199 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1200 {
1201     struct ip_mreq imr;
1202     int fd;
1203     int val, ret;
1204     if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1205         fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1206                 inet_ntoa(mcastaddr->sin_addr),
1207                 (int)ntohl(mcastaddr->sin_addr.s_addr));
1208         return -1;
1209
1210     }
1211     fd = socket(PF_INET, SOCK_DGRAM, 0);
1212     if (fd < 0) {
1213         perror("socket(PF_INET, SOCK_DGRAM)");
1214         return -1;
1215     }
1216
1217     val = 1;
1218     ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1219                    (const char *)&val, sizeof(val));
1220     if (ret < 0) {
1221         perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1222         goto fail;
1223     }
1224
1225     ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1226     if (ret < 0) {
1227         perror("bind");
1228         goto fail;
1229     }
1230
1231     /* Add host to multicast group */
1232     imr.imr_multiaddr = mcastaddr->sin_addr;
1233     imr.imr_interface.s_addr = htonl(INADDR_ANY);
1234
1235     ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1236                      (const char *)&imr, sizeof(struct ip_mreq));
1237     if (ret < 0) {
1238         perror("setsockopt(IP_ADD_MEMBERSHIP)");
1239         goto fail;
1240     }
1241
1242     /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1243     val = 1;
1244     ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1245                    (const char *)&val, sizeof(val));
1246     if (ret < 0) {
1247         perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1248         goto fail;
1249     }
1250
1251     socket_set_nonblock(fd);
1252     return fd;
1253 fail:
1254     if (fd >= 0)
1255         closesocket(fd);
1256     return -1;
1257 }
1258
1259 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1260                                                 const char *model,
1261                                                 const char *name,
1262                                                 int fd, int is_connected)
1263 {
1264     struct sockaddr_in saddr;
1265     int newfd;
1266     socklen_t saddr_len;
1267     NetSocketState *s;
1268
1269     /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1270      * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1271      * by ONLY ONE process: we must "clone" this dgram socket --jjo
1272      */
1273
1274     if (is_connected) {
1275         if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1276             /* must be bound */
1277             if (saddr.sin_addr.s_addr==0) {
1278                 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1279                         fd);
1280                 return NULL;
1281             }
1282             /* clone dgram socket */
1283             newfd = net_socket_mcast_create(&saddr);
1284             if (newfd < 0) {
1285                 /* error already reported by net_socket_mcast_create() */
1286                 close(fd);
1287                 return NULL;
1288             }
1289             /* clone newfd to fd, close newfd */
1290             dup2(newfd, fd);
1291             close(newfd);
1292
1293         } else {
1294             fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1295                     fd, strerror(errno));
1296             return NULL;
1297         }
1298     }
1299
1300     s = qemu_mallocz(sizeof(NetSocketState));
1301     s->fd = fd;
1302
1303     s->vc = qemu_new_vlan_client(vlan, model, name, net_socket_receive_dgram, NULL, s);
1304     qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1305
1306     /* mcast: save bound address as dst */
1307     if (is_connected) s->dgram_dst=saddr;
1308
1309     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1310             "socket: fd=%d (%s mcast=%s:%d)",
1311             fd, is_connected? "cloned" : "",
1312             inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1313     return s;
1314 }
1315
1316 static void net_socket_connect(void *opaque)
1317 {
1318     NetSocketState *s = opaque;
1319     qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1320 }
1321
1322 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
1323                                                  const char *model,
1324                                                  const char *name,
1325                                                  int fd, int is_connected)
1326 {
1327     NetSocketState *s;
1328     s = qemu_mallocz(sizeof(NetSocketState));
1329     s->fd = fd;
1330     s->vc = qemu_new_vlan_client(vlan, model, name,
1331                                  net_socket_receive, NULL, s);
1332     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1333              "socket: fd=%d", fd);
1334     if (is_connected) {
1335         net_socket_connect(s);
1336     } else {
1337         qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1338     }
1339     return s;
1340 }
1341
1342 static NetSocketState *net_socket_fd_init(VLANState *vlan,
1343                                           const char *model, const char *name,
1344                                           int fd, int is_connected)
1345 {
1346     int so_type=-1, optlen=sizeof(so_type);
1347
1348     if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1349         (socklen_t *)&optlen)< 0) {
1350         fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1351         return NULL;
1352     }
1353     switch(so_type) {
1354     case SOCK_DGRAM:
1355         return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
1356     case SOCK_STREAM:
1357         return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
1358     default:
1359         /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1360         fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
1361         return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
1362     }
1363     return NULL;
1364 }
1365
1366 static void net_socket_accept(void *opaque)
1367 {
1368     NetSocketListenState *s = opaque;
1369     NetSocketState *s1;
1370     struct sockaddr_in saddr;
1371     socklen_t len;
1372     int fd;
1373
1374     for(;;) {
1375         len = sizeof(saddr);
1376         fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1377         if (fd < 0 && errno != EINTR) {
1378             return;
1379         } else if (fd >= 0) {
1380             break;
1381         }
1382     }
1383     s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
1384     if (!s1) {
1385         closesocket(fd);
1386     } else {
1387         snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1388                  "socket: connection from %s:%d",
1389                  inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1390     }
1391 }
1392
1393 static int net_socket_listen_init(VLANState *vlan,
1394                                   const char *model,
1395                                   const char *name,
1396                                   const char *host_str)
1397 {
1398     NetSocketListenState *s;
1399     int fd, val, ret;
1400     struct sockaddr_in saddr;
1401
1402     if (parse_host_port(&saddr, host_str) < 0)
1403         return -1;
1404
1405     s = qemu_mallocz(sizeof(NetSocketListenState));
1406
1407     fd = socket(PF_INET, SOCK_STREAM, 0);
1408     if (fd < 0) {
1409         perror("socket");
1410         return -1;
1411     }
1412     socket_set_nonblock(fd);
1413
1414     /* allow fast reuse */
1415     val = 1;
1416     setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1417
1418     ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1419     if (ret < 0) {
1420         perror("bind");
1421         return -1;
1422     }
1423     ret = listen(fd, 0);
1424     if (ret < 0) {
1425         perror("listen");
1426         return -1;
1427     }
1428     s->vlan = vlan;
1429     s->model = strdup(model);
1430     s->name = strdup(name);
1431     s->fd = fd;
1432     qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1433     return 0;
1434 }
1435
1436 static int net_socket_connect_init(VLANState *vlan,
1437                                    const char *model,
1438                                    const char *name,
1439                                    const char *host_str)
1440 {
1441     NetSocketState *s;
1442     int fd, connected, ret, err;
1443     struct sockaddr_in saddr;
1444
1445     if (parse_host_port(&saddr, host_str) < 0)
1446         return -1;
1447
1448     fd = socket(PF_INET, SOCK_STREAM, 0);
1449     if (fd < 0) {
1450         perror("socket");
1451         return -1;
1452     }
1453     socket_set_nonblock(fd);
1454
1455     connected = 0;
1456     for(;;) {
1457         ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1458         if (ret < 0) {
1459             err = socket_error();
1460             if (err == EINTR || err == EWOULDBLOCK) {
1461             } else if (err == EINPROGRESS) {
1462                 break;
1463 #ifdef _WIN32
1464             } else if (err == WSAEALREADY) {
1465                 break;
1466 #endif
1467             } else {
1468                 perror("connect");
1469                 closesocket(fd);
1470                 return -1;
1471             }
1472         } else {
1473             connected = 1;
1474             break;
1475         }
1476     }
1477     s = net_socket_fd_init(vlan, model, name, fd, connected);
1478     if (!s)
1479         return -1;
1480     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1481              "socket: connect to %s:%d",
1482              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1483     return 0;
1484 }
1485
1486 static int net_socket_mcast_init(VLANState *vlan,
1487                                  const char *model,
1488                                  const char *name,
1489                                  const char *host_str)
1490 {
1491     NetSocketState *s;
1492     int fd;
1493     struct sockaddr_in saddr;
1494
1495     if (parse_host_port(&saddr, host_str) < 0)
1496         return -1;
1497
1498
1499     fd = net_socket_mcast_create(&saddr);
1500     if (fd < 0)
1501         return -1;
1502
1503     s = net_socket_fd_init(vlan, model, name, fd, 0);
1504     if (!s)
1505         return -1;
1506
1507     s->dgram_dst = saddr;
1508
1509     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1510              "socket: mcast=%s:%d",
1511              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1512     return 0;
1513
1514 }
1515
1516 /* find or alloc a new VLAN */
1517 VLANState *qemu_find_vlan(int id)
1518 {
1519     VLANState **pvlan, *vlan;
1520     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1521         if (vlan->id == id)
1522             return vlan;
1523     }
1524     vlan = qemu_mallocz(sizeof(VLANState));
1525     vlan->id = id;
1526     vlan->next = NULL;
1527     pvlan = &first_vlan;
1528     while (*pvlan != NULL)
1529         pvlan = &(*pvlan)->next;
1530     *pvlan = vlan;
1531     return vlan;
1532 }
1533
1534 static int nic_get_free_idx(void)
1535 {
1536     int index;
1537
1538     for (index = 0; index < MAX_NICS; index++)
1539         if (!nd_table[index].used)
1540             return index;
1541     return -1;
1542 }
1543
1544 void qemu_check_nic_model(NICInfo *nd, const char *model)
1545 {
1546     const char *models[2];
1547
1548     models[0] = model;
1549     models[1] = NULL;
1550
1551     qemu_check_nic_model_list(nd, models, model);
1552 }
1553
1554 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
1555                                const char *default_model)
1556 {
1557     int i, exit_status = 0;
1558
1559     if (!nd->model)
1560         nd->model = strdup(default_model);
1561
1562     if (strcmp(nd->model, "?") != 0) {
1563         for (i = 0 ; models[i]; i++)
1564             if (strcmp(nd->model, models[i]) == 0)
1565                 return;
1566
1567         fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
1568         exit_status = 1;
1569     }
1570
1571     fprintf(stderr, "qemu: Supported NIC models: ");
1572     for (i = 0 ; models[i]; i++)
1573         fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
1574
1575     exit(exit_status);
1576 }
1577
1578 int net_client_init(const char *device, const char *p)
1579 {
1580     char buf[1024];
1581     int vlan_id, ret;
1582     VLANState *vlan;
1583     char *name = NULL;
1584
1585     vlan_id = 0;
1586     if (get_param_value(buf, sizeof(buf), "vlan", p)) {
1587         vlan_id = strtol(buf, NULL, 0);
1588     }
1589     vlan = qemu_find_vlan(vlan_id);
1590     if (!vlan) {
1591         fprintf(stderr, "Could not create vlan %d\n", vlan_id);
1592         return -1;
1593     }
1594     if (get_param_value(buf, sizeof(buf), "name", p)) {
1595         name = strdup(buf);
1596     }
1597     if (!strcmp(device, "nic")) {
1598         NICInfo *nd;
1599         uint8_t *macaddr;
1600         int idx = nic_get_free_idx();
1601
1602         if (idx == -1 || nb_nics >= MAX_NICS) {
1603             fprintf(stderr, "Too Many NICs\n");
1604             return -1;
1605         }
1606         nd = &nd_table[idx];
1607         macaddr = nd->macaddr;
1608         macaddr[0] = 0x52;
1609         macaddr[1] = 0x54;
1610         macaddr[2] = 0x00;
1611         macaddr[3] = 0x12;
1612         macaddr[4] = 0x34;
1613         macaddr[5] = 0x56 + idx;
1614
1615         if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
1616             if (parse_macaddr(macaddr, buf) < 0) {
1617                 fprintf(stderr, "invalid syntax for ethernet address\n");
1618                 return -1;
1619             }
1620         }
1621         if (get_param_value(buf, sizeof(buf), "model", p)) {
1622             nd->model = strdup(buf);
1623         }
1624         nd->vlan = vlan;
1625         nd->name = name;
1626         nd->used = 1;
1627         name = NULL;
1628         nb_nics++;
1629         vlan->nb_guest_devs++;
1630         ret = idx;
1631     } else
1632     if (!strcmp(device, "none")) {
1633         /* does nothing. It is needed to signal that no network cards
1634            are wanted */
1635         ret = 0;
1636     } else
1637 #ifdef CONFIG_SLIRP
1638     if (!strcmp(device, "user")) {
1639         if (get_param_value(buf, sizeof(buf), "hostname", p)) {
1640             pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
1641         }
1642         if (get_param_value(buf, sizeof(buf), "restrict", p)) {
1643             slirp_restrict = (buf[0] == 'y') ? 1 : 0;
1644         }
1645         if (get_param_value(buf, sizeof(buf), "ip", p)) {
1646             slirp_ip = strdup(buf);
1647         }
1648         vlan->nb_host_devs++;
1649         ret = net_slirp_init(vlan, device, name);
1650     } else if (!strcmp(device, "channel")) {
1651         long port;
1652         char name[20], *devname;
1653         struct VMChannel *vmc;
1654
1655         port = strtol(p, &devname, 10);
1656         devname++;
1657         if (port < 1 || port > 65535) {
1658             fprintf(stderr, "vmchannel wrong port number\n"); 
1659             return -1;
1660         }
1661         vmc = malloc(sizeof(struct VMChannel));
1662         snprintf(name, 20, "vmchannel%ld", port);
1663         vmc->hd = qemu_chr_open(name, devname, NULL);
1664         if (!vmc->hd) {
1665             fprintf(stderr, "qemu: could not open vmchannel device"
1666                     "'%s'\n", devname);
1667             return -1;
1668         }
1669         vmc->port = port;
1670         slirp_add_exec(3, vmc->hd, 4, port);
1671         qemu_chr_add_handlers(vmc->hd, vmchannel_can_read, vmchannel_read,
1672                 NULL, vmc);
1673         ret = 0;
1674     } else
1675 #endif
1676 #ifdef _WIN32
1677     if (!strcmp(device, "tap")) {
1678         char ifname[64];
1679         if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1680             fprintf(stderr, "tap: no interface name\n");
1681             return -1;
1682         }
1683         vlan->nb_host_devs++;
1684         ret = tap_win32_init(vlan, device, name, ifname);
1685     } else
1686 #elif defined (_AIX)
1687 #else
1688     if (!strcmp(device, "tap")) {
1689         char ifname[64];
1690         char setup_script[1024], down_script[1024];
1691         int fd;
1692         vlan->nb_host_devs++;
1693         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1694             fd = strtol(buf, NULL, 0);
1695             fcntl(fd, F_SETFL, O_NONBLOCK);
1696             ret = -1;
1697             if (net_tap_fd_init(vlan, device, name, fd))
1698                 ret = 0;
1699         } else {
1700             if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1701                 ifname[0] = '\0';
1702             }
1703             if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
1704                 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
1705             }
1706             if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
1707                 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
1708             }
1709             ret = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
1710         }
1711     } else
1712 #endif
1713     if (!strcmp(device, "socket")) {
1714         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1715             int fd;
1716             fd = strtol(buf, NULL, 0);
1717             ret = -1;
1718             if (net_socket_fd_init(vlan, device, name, fd, 1))
1719                 ret = 0;
1720         } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
1721             ret = net_socket_listen_init(vlan, device, name, buf);
1722         } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
1723             ret = net_socket_connect_init(vlan, device, name, buf);
1724         } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
1725             ret = net_socket_mcast_init(vlan, device, name, buf);
1726         } else {
1727             fprintf(stderr, "Unknown socket options: %s\n", p);
1728             return -1;
1729         }
1730         vlan->nb_host_devs++;
1731     } else
1732 #ifdef CONFIG_VDE
1733     if (!strcmp(device, "vde")) {
1734         char vde_sock[1024], vde_group[512];
1735         int vde_port, vde_mode;
1736         vlan->nb_host_devs++;
1737         if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
1738             vde_sock[0] = '\0';
1739         }
1740         if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
1741             vde_port = strtol(buf, NULL, 10);
1742         } else {
1743             vde_port = 0;
1744         }
1745         if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
1746             vde_group[0] = '\0';
1747         }
1748         if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
1749             vde_mode = strtol(buf, NULL, 8);
1750         } else {
1751             vde_mode = 0700;
1752         }
1753         ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
1754     } else
1755 #endif
1756     {
1757         fprintf(stderr, "Unknown network device: %s\n", device);
1758         if (name)
1759             free(name);
1760         return -1;
1761     }
1762     if (ret < 0) {
1763         fprintf(stderr, "Could not initialize device '%s'\n", device);
1764     }
1765     if (name)
1766         free(name);
1767     return ret;
1768 }
1769
1770 void net_client_uninit(NICInfo *nd)
1771 {
1772     nd->vlan->nb_guest_devs--;
1773     nb_nics--;
1774     nd->used = 0;
1775     free((void *)nd->model);
1776 }
1777
1778 static int net_host_check_device(const char *device)
1779 {
1780     int i;
1781     const char *valid_param_list[] = { "tap", "socket"
1782 #ifdef CONFIG_SLIRP
1783                                        ,"user"
1784 #endif
1785 #ifdef CONFIG_VDE
1786                                        ,"vde"
1787 #endif
1788     };
1789     for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
1790         if (!strncmp(valid_param_list[i], device,
1791                      strlen(valid_param_list[i])))
1792             return 1;
1793     }
1794
1795     return 0;
1796 }
1797
1798 void net_host_device_add(const char *device, const char *opts)
1799 {
1800     if (!net_host_check_device(device)) {
1801         term_printf("invalid host network device %s\n", device);
1802         return;
1803     }
1804     net_client_init(device, opts);
1805 }
1806
1807 void net_host_device_remove(int vlan_id, const char *device)
1808 {
1809     VLANState *vlan;
1810     VLANClientState *vc;
1811
1812     if (!net_host_check_device(device)) {
1813         term_printf("invalid host network device %s\n", device);
1814         return;
1815     }
1816
1817     vlan = qemu_find_vlan(vlan_id);
1818     if (!vlan) {
1819         term_printf("can't find vlan %d\n", vlan_id);
1820         return;
1821     }
1822
1823    for(vc = vlan->first_client; vc != NULL; vc = vc->next)
1824         if (!strcmp(vc->name, device))
1825             break;
1826
1827     if (!vc) {
1828         term_printf("can't find device %s\n", device);
1829         return;
1830     }
1831     qemu_del_vlan_client(vc);
1832 }
1833
1834 int net_client_parse(const char *str)
1835 {
1836     const char *p;
1837     char *q;
1838     char device[64];
1839
1840     p = str;
1841     q = device;
1842     while (*p != '\0' && *p != ',') {
1843         if ((q - device) < sizeof(device) - 1)
1844             *q++ = *p;
1845         p++;
1846     }
1847     *q = '\0';
1848     if (*p == ',')
1849         p++;
1850
1851     return net_client_init(device, p);
1852 }
1853
1854 void do_info_network(void)
1855 {
1856     VLANState *vlan;
1857     VLANClientState *vc;
1858
1859     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1860         term_printf("VLAN %d devices:\n", vlan->id);
1861         for(vc = vlan->first_client; vc != NULL; vc = vc->next)
1862             term_printf("  %s: %s\n", vc->name, vc->info_str);
1863     }
1864 }
1865
1866 int do_set_link(const char *name, const char *up_or_down)
1867 {
1868     VLANState *vlan;
1869     VLANClientState *vc = NULL;
1870
1871     for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
1872         for (vc = vlan->first_client; vc != NULL; vc = vc->next)
1873             if (strcmp(vc->name, name) == 0)
1874                 goto done;
1875 done:
1876
1877     if (!vc) {
1878         term_printf("could not find network device '%s'", name);
1879         return 0;
1880     }
1881
1882     if (strcmp(up_or_down, "up") == 0)
1883         vc->link_down = 0;
1884     else if (strcmp(up_or_down, "down") == 0)
1885         vc->link_down = 1;
1886     else
1887         term_printf("invalid link status '%s'; only 'up' or 'down' valid\n",
1888                     up_or_down);
1889
1890     if (vc->link_status_changed)
1891         vc->link_status_changed(vc);
1892
1893     return 1;
1894 }
1895
1896 void net_cleanup(void)
1897 {
1898     VLANState *vlan;
1899
1900 #if !defined(_WIN32)
1901     /* close network clients */
1902     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1903         VLANClientState *vc;
1904
1905         for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
1906             if (vc->fd_read == tap_receive) {
1907                 TAPState *s = vc->opaque;
1908
1909                 if (s->down_script[0])
1910                     launch_script(s->down_script, s->down_script_arg, s->fd);
1911             }
1912 #if defined(CONFIG_VDE)
1913             if (vc->fd_read == vde_from_qemu) {
1914                 VDEState *s = vc->opaque;
1915                 vde_close(s->vde);
1916             }
1917 #endif
1918         }
1919     }
1920 #endif
1921 }
1922
1923 void net_client_check(void)
1924 {
1925     VLANState *vlan;
1926
1927     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1928         if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
1929             continue;
1930         if (vlan->nb_guest_devs == 0)
1931             fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1932         if (vlan->nb_host_devs == 0)
1933             fprintf(stderr,
1934                     "Warning: vlan %d is not connected to host network\n",
1935                     vlan->id);
1936     }
1937 }