ETRAX: Add a model for the axis devboard88 machine.
[qemu/qemu-JZ.git] / net.c
blobc49abef5223dae79e205626ea2b295e770e7e9fa
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
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"
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>
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>
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"
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
101 #include "qemu_socket.h"
103 #if defined(CONFIG_SLIRP)
104 #include "libslirp.h"
105 #endif
107 #if defined(__OpenBSD__)
108 #include <util.h>
109 #endif
111 #if defined(CONFIG_VDE)
112 #include <libvdeplug.h>
113 #endif
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
123 static VLANState *first_vlan;
125 /***********************************************************/
126 /* network device redirectors */
128 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
129 static void hex_dump(FILE *f, const uint8_t *buf, int size)
131 int len, i, j, c;
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, " ");
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);
151 fprintf(f, "\n");
154 #endif
156 static int parse_macaddr(uint8_t *macaddr, const char *p)
158 int i;
159 char *last_char;
160 long int offset;
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++;
182 return 0;
185 return -1;
188 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
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';
204 *pp = p1;
205 return 0;
208 int parse_host_src_port(struct sockaddr_in *haddr,
209 struct sockaddr_in *saddr,
210 const char *input_str)
212 char *str = strdup(input_str);
213 char *host_str = str;
214 char *src_str;
215 const char *src_str2;
216 char *ptr;
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".
223 if ((ptr = strchr(str,',')))
224 *ptr = '\0';
226 if ((src_str = strchr(input_str,'@'))) {
227 *src_str = '\0';
228 src_str++;
231 if (parse_host_port(haddr, host_str) < 0)
232 goto fail;
234 src_str2 = src_str;
235 if (!src_str || *src_str == '\0')
236 src_str2 = ":0";
238 if (parse_host_port(saddr, src_str2) < 0)
239 goto fail;
241 free(str);
242 return(0);
244 fail:
245 free(str);
246 return -1;
249 int parse_host_port(struct sockaddr_in *saddr, const char *str)
251 char buf[512];
252 struct hostent *he;
253 const char *p, *r;
254 int port;
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;
272 port = strtol(p, (char **)&r, 0);
273 if (r == p)
274 return -1;
275 saddr->sin_port = htons(port);
276 return 0;
279 #if !defined(_WIN32) && 0
280 static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
282 const char *p;
283 int len;
285 len = MIN(108, strlen(str));
286 p = strchr(str, ',');
287 if (p)
288 len = MIN(len, p - str);
290 memset(uaddr, 0, sizeof(*uaddr));
292 uaddr->sun_family = AF_UNIX;
293 memcpy(uaddr->sun_path, str, len);
295 return 0;
297 #endif
299 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
300 IOReadHandler *fd_read,
301 IOCanRWHandler *fd_can_read,
302 void *opaque)
304 VLANClientState *vc, **pvc;
305 vc = qemu_mallocz(sizeof(VLANClientState));
306 if (!vc)
307 return NULL;
308 vc->fd_read = fd_read;
309 vc->fd_can_read = fd_can_read;
310 vc->opaque = opaque;
311 vc->vlan = vlan;
313 vc->next = NULL;
314 pvc = &vlan->first_client;
315 while (*pvc != NULL)
316 pvc = &(*pvc)->next;
317 *pvc = vc;
318 return vc;
321 void qemu_del_vlan_client(VLANClientState *vc)
323 VLANClientState **pvc = &vc->vlan->first_client;
325 while (*pvc != NULL)
326 if (*pvc == vc) {
327 *pvc = vc->next;
328 free(vc);
329 break;
330 } else
331 pvc = &(*pvc)->next;
334 int qemu_can_send_packet(VLANClientState *vc1)
336 VLANState *vlan = vc1->vlan;
337 VLANClientState *vc;
339 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
340 if (vc != vc1) {
341 if (vc->fd_can_read && vc->fd_can_read(vc->opaque))
342 return 1;
345 return 0;
348 void qemu_send_packet(VLANClientState *vc1, const uint8_t *buf, int size)
350 VLANState *vlan = vc1->vlan;
351 VLANClientState *vc;
353 #ifdef DEBUG_NET
354 printf("vlan %d send:\n", vlan->id);
355 hex_dump(stdout, buf, size);
356 #endif
357 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
358 if (vc != vc1) {
359 vc->fd_read(vc->opaque, buf, size);
364 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
365 int iovcnt)
367 uint8_t buffer[4096];
368 size_t offset = 0;
369 int i;
371 for (i = 0; i < iovcnt; i++) {
372 size_t len;
374 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
375 memcpy(buffer + offset, iov[i].iov_base, len);
376 offset += len;
379 vc->fd_read(vc->opaque, buffer, offset);
381 return offset;
384 ssize_t qemu_sendv_packet(VLANClientState *vc1, const struct iovec *iov,
385 int iovcnt)
387 VLANState *vlan = vc1->vlan;
388 VLANClientState *vc;
389 ssize_t max_len = 0;
391 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
392 ssize_t len = 0;
394 if (vc == vc1)
395 continue;
397 if (vc->fd_readv)
398 len = vc->fd_readv(vc->opaque, iov, iovcnt);
399 else if (vc->fd_read)
400 len = vc_sendv_compat(vc, iov, iovcnt);
402 max_len = MAX(max_len, len);
405 return max_len;
408 #if defined(CONFIG_SLIRP)
410 /* slirp network adapter */
412 static int slirp_inited;
413 static VLANClientState *slirp_vc;
415 int slirp_can_output(void)
417 return !slirp_vc || qemu_can_send_packet(slirp_vc);
420 void slirp_output(const uint8_t *pkt, int pkt_len)
422 #ifdef DEBUG_SLIRP
423 printf("slirp output:\n");
424 hex_dump(stdout, pkt, pkt_len);
425 #endif
426 if (!slirp_vc)
427 return;
428 qemu_send_packet(slirp_vc, pkt, pkt_len);
431 int slirp_is_inited(void)
433 return slirp_inited;
436 static void slirp_receive(void *opaque, const uint8_t *buf, int size)
438 #ifdef DEBUG_SLIRP
439 printf("slirp input:\n");
440 hex_dump(stdout, buf, size);
441 #endif
442 slirp_input(buf, size);
445 static int net_slirp_init(VLANState *vlan)
447 if (!slirp_inited) {
448 slirp_inited = 1;
449 slirp_init();
451 slirp_vc = qemu_new_vlan_client(vlan,
452 slirp_receive, NULL, NULL);
453 snprintf(slirp_vc->info_str, sizeof(slirp_vc->info_str), "user redirector");
454 return 0;
457 void net_slirp_redir(const char *redir_str)
459 int is_udp;
460 char buf[256], *r;
461 const char *p;
462 struct in_addr guest_addr;
463 int host_port, guest_port;
465 if (!slirp_inited) {
466 slirp_inited = 1;
467 slirp_init();
470 p = redir_str;
471 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
472 goto fail;
473 if (!strcmp(buf, "tcp")) {
474 is_udp = 0;
475 } else if (!strcmp(buf, "udp")) {
476 is_udp = 1;
477 } else {
478 goto fail;
481 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
482 goto fail;
483 host_port = strtol(buf, &r, 0);
484 if (r == buf)
485 goto fail;
487 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
488 goto fail;
489 if (buf[0] == '\0') {
490 pstrcpy(buf, sizeof(buf), "10.0.2.15");
492 if (!inet_aton(buf, &guest_addr))
493 goto fail;
495 guest_port = strtol(p, &r, 0);
496 if (r == p)
497 goto fail;
499 if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
500 fprintf(stderr, "qemu: could not set up redirection\n");
501 exit(1);
503 return;
504 fail:
505 fprintf(stderr, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
506 exit(1);
509 #ifndef _WIN32
511 static char smb_dir[1024];
513 static void erase_dir(char *dir_name)
515 DIR *d;
516 struct dirent *de;
517 char filename[1024];
519 /* erase all the files in the directory */
520 if ((d = opendir(dir_name)) != 0) {
521 for(;;) {
522 de = readdir(d);
523 if (!de)
524 break;
525 if (strcmp(de->d_name, ".") != 0 &&
526 strcmp(de->d_name, "..") != 0) {
527 snprintf(filename, sizeof(filename), "%s/%s",
528 smb_dir, de->d_name);
529 if (unlink(filename) != 0) /* is it a directory? */
530 erase_dir(filename);
533 closedir(d);
534 rmdir(dir_name);
538 /* automatic user mode samba server configuration */
539 static void smb_exit(void)
541 erase_dir(smb_dir);
544 /* automatic user mode samba server configuration */
545 void net_slirp_smb(const char *exported_dir)
547 char smb_conf[1024];
548 char smb_cmdline[1024];
549 FILE *f;
551 if (!slirp_inited) {
552 slirp_inited = 1;
553 slirp_init();
556 /* XXX: better tmp dir construction */
557 snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%d", getpid());
558 if (mkdir(smb_dir, 0700) < 0) {
559 fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
560 exit(1);
562 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
564 f = fopen(smb_conf, "w");
565 if (!f) {
566 fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
567 exit(1);
569 fprintf(f,
570 "[global]\n"
571 "private dir=%s\n"
572 "smb ports=0\n"
573 "socket address=127.0.0.1\n"
574 "pid directory=%s\n"
575 "lock directory=%s\n"
576 "log file=%s/log.smbd\n"
577 "smb passwd file=%s/smbpasswd\n"
578 "security = share\n"
579 "[qemu]\n"
580 "path=%s\n"
581 "read only=no\n"
582 "guest ok=yes\n",
583 smb_dir,
584 smb_dir,
585 smb_dir,
586 smb_dir,
587 smb_dir,
588 exported_dir
590 fclose(f);
591 atexit(smb_exit);
593 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
594 SMBD_COMMAND, smb_conf);
596 slirp_add_exec(0, smb_cmdline, 4, 139);
599 #endif /* !defined(_WIN32) */
600 void do_info_slirp(void)
602 slirp_stats();
605 #endif /* CONFIG_SLIRP */
607 #if !defined(_WIN32)
609 typedef struct TAPState {
610 VLANClientState *vc;
611 int fd;
612 char down_script[1024];
613 } TAPState;
615 #ifdef HAVE_IOVEC
616 static ssize_t tap_receive_iov(void *opaque, const struct iovec *iov,
617 int iovcnt)
619 TAPState *s = opaque;
620 ssize_t len;
622 do {
623 len = writev(s->fd, iov, iovcnt);
624 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
626 return len;
628 #endif
630 static void tap_receive(void *opaque, const uint8_t *buf, int size)
632 TAPState *s = opaque;
633 int ret;
634 for(;;) {
635 ret = write(s->fd, buf, size);
636 if (ret < 0 && (errno == EINTR || errno == EAGAIN)) {
637 } else {
638 break;
643 static void tap_send(void *opaque)
645 TAPState *s = opaque;
646 uint8_t buf[4096];
647 int size;
649 #ifdef __sun__
650 struct strbuf sbuf;
651 int f = 0;
652 sbuf.maxlen = sizeof(buf);
653 sbuf.buf = buf;
654 size = getmsg(s->fd, NULL, &sbuf, &f) >=0 ? sbuf.len : -1;
655 #else
656 size = read(s->fd, buf, sizeof(buf));
657 #endif
658 if (size > 0) {
659 qemu_send_packet(s->vc, buf, size);
663 /* fd support */
665 static TAPState *net_tap_fd_init(VLANState *vlan, int fd)
667 TAPState *s;
669 s = qemu_mallocz(sizeof(TAPState));
670 if (!s)
671 return NULL;
672 s->fd = fd;
673 s->vc = qemu_new_vlan_client(vlan, tap_receive, NULL, s);
674 #ifdef HAVE_IOVEC
675 s->vc->fd_readv = tap_receive_iov;
676 #endif
677 qemu_set_fd_handler(s->fd, tap_send, NULL, s);
678 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "tap: fd=%d", fd);
679 return s;
682 #if defined (_BSD) || defined (__FreeBSD_kernel__)
683 static int tap_open(char *ifname, int ifname_size)
685 int fd;
686 char *dev;
687 struct stat s;
689 TFR(fd = open("/dev/tap", O_RDWR));
690 if (fd < 0) {
691 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
692 return -1;
695 fstat(fd, &s);
696 dev = devname(s.st_rdev, S_IFCHR);
697 pstrcpy(ifname, ifname_size, dev);
699 fcntl(fd, F_SETFL, O_NONBLOCK);
700 return fd;
702 #elif defined(__sun__)
703 #define TUNNEWPPA (('T'<<16) | 0x0001)
705 * Allocate TAP device, returns opened fd.
706 * Stores dev name in the first arg(must be large enough).
708 int tap_alloc(char *dev, size_t dev_size)
710 int tap_fd, if_fd, ppa = -1;
711 static int ip_fd = 0;
712 char *ptr;
714 static int arp_fd = 0;
715 int ip_muxid, arp_muxid;
716 struct strioctl strioc_if, strioc_ppa;
717 int link_type = I_PLINK;;
718 struct lifreq ifr;
719 char actual_name[32] = "";
721 memset(&ifr, 0x0, sizeof(ifr));
723 if( *dev ){
724 ptr = dev;
725 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
726 ppa = atoi(ptr);
729 /* Check if IP device was opened */
730 if( ip_fd )
731 close(ip_fd);
733 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
734 if (ip_fd < 0) {
735 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
736 return -1;
739 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
740 if (tap_fd < 0) {
741 syslog(LOG_ERR, "Can't open /dev/tap");
742 return -1;
745 /* Assign a new PPA and get its unit number. */
746 strioc_ppa.ic_cmd = TUNNEWPPA;
747 strioc_ppa.ic_timout = 0;
748 strioc_ppa.ic_len = sizeof(ppa);
749 strioc_ppa.ic_dp = (char *)&ppa;
750 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
751 syslog (LOG_ERR, "Can't assign new interface");
753 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
754 if (if_fd < 0) {
755 syslog(LOG_ERR, "Can't open /dev/tap (2)");
756 return -1;
758 if(ioctl(if_fd, I_PUSH, "ip") < 0){
759 syslog(LOG_ERR, "Can't push IP module");
760 return -1;
763 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
764 syslog(LOG_ERR, "Can't get flags\n");
766 snprintf (actual_name, 32, "tap%d", ppa);
767 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
769 ifr.lifr_ppa = ppa;
770 /* Assign ppa according to the unit number returned by tun device */
772 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
773 syslog (LOG_ERR, "Can't set PPA %d", ppa);
774 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
775 syslog (LOG_ERR, "Can't get flags\n");
776 /* Push arp module to if_fd */
777 if (ioctl (if_fd, I_PUSH, "arp") < 0)
778 syslog (LOG_ERR, "Can't push ARP module (2)");
780 /* Push arp module to ip_fd */
781 if (ioctl (ip_fd, I_POP, NULL) < 0)
782 syslog (LOG_ERR, "I_POP failed\n");
783 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
784 syslog (LOG_ERR, "Can't push ARP module (3)\n");
785 /* Open arp_fd */
786 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
787 if (arp_fd < 0)
788 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
790 /* Set ifname to arp */
791 strioc_if.ic_cmd = SIOCSLIFNAME;
792 strioc_if.ic_timout = 0;
793 strioc_if.ic_len = sizeof(ifr);
794 strioc_if.ic_dp = (char *)&ifr;
795 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
796 syslog (LOG_ERR, "Can't set ifname to arp\n");
799 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
800 syslog(LOG_ERR, "Can't link TAP device to IP");
801 return -1;
804 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
805 syslog (LOG_ERR, "Can't link TAP device to ARP");
807 close (if_fd);
809 memset(&ifr, 0x0, sizeof(ifr));
810 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
811 ifr.lifr_ip_muxid = ip_muxid;
812 ifr.lifr_arp_muxid = arp_muxid;
814 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
816 ioctl (ip_fd, I_PUNLINK , arp_muxid);
817 ioctl (ip_fd, I_PUNLINK, ip_muxid);
818 syslog (LOG_ERR, "Can't set multiplexor id");
821 snprintf(dev, dev_size, "tap%d", ppa);
822 return tap_fd;
825 static int tap_open(char *ifname, int ifname_size)
827 char dev[10]="";
828 int fd;
829 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
830 fprintf(stderr, "Cannot allocate TAP device\n");
831 return -1;
833 pstrcpy(ifname, ifname_size, dev);
834 fcntl(fd, F_SETFL, O_NONBLOCK);
835 return fd;
837 #elif defined (_AIX)
838 static int tap_open(char *ifname, int ifname_size)
840 fprintf (stderr, "no tap on AIX\n");
841 return -1;
843 #else
844 static int tap_open(char *ifname, int ifname_size)
846 struct ifreq ifr;
847 int fd, ret;
849 TFR(fd = open("/dev/net/tun", O_RDWR));
850 if (fd < 0) {
851 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
852 return -1;
854 memset(&ifr, 0, sizeof(ifr));
855 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
856 if (ifname[0] != '\0')
857 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
858 else
859 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
860 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
861 if (ret != 0) {
862 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
863 close(fd);
864 return -1;
866 pstrcpy(ifname, ifname_size, ifr.ifr_name);
867 fcntl(fd, F_SETFL, O_NONBLOCK);
868 return fd;
870 #endif
872 static int launch_script(const char *setup_script, const char *ifname, int fd)
874 int pid, status;
875 char *args[3];
876 char **parg;
878 /* try to launch network script */
879 pid = fork();
880 if (pid >= 0) {
881 if (pid == 0) {
882 int open_max = sysconf (_SC_OPEN_MAX), i;
883 for (i = 0; i < open_max; i++)
884 if (i != STDIN_FILENO &&
885 i != STDOUT_FILENO &&
886 i != STDERR_FILENO &&
887 i != fd)
888 close(i);
890 parg = args;
891 *parg++ = (char *)setup_script;
892 *parg++ = (char *)ifname;
893 *parg++ = NULL;
894 execv(setup_script, args);
895 _exit(1);
897 while (waitpid(pid, &status, 0) != pid);
898 if (!WIFEXITED(status) ||
899 WEXITSTATUS(status) != 0) {
900 fprintf(stderr, "%s: could not launch network script\n",
901 setup_script);
902 return -1;
905 return 0;
908 static int net_tap_init(VLANState *vlan, const char *ifname1,
909 const char *setup_script, const char *down_script)
911 TAPState *s;
912 int fd;
913 char ifname[128];
915 if (ifname1 != NULL)
916 pstrcpy(ifname, sizeof(ifname), ifname1);
917 else
918 ifname[0] = '\0';
919 TFR(fd = tap_open(ifname, sizeof(ifname)));
920 if (fd < 0)
921 return -1;
923 if (!setup_script || !strcmp(setup_script, "no"))
924 setup_script = "";
925 if (setup_script[0] != '\0') {
926 if (launch_script(setup_script, ifname, fd))
927 return -1;
929 s = net_tap_fd_init(vlan, fd);
930 if (!s)
931 return -1;
932 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
933 "tap: ifname=%s setup_script=%s", ifname, setup_script);
934 if (down_script && strcmp(down_script, "no"))
935 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
936 return 0;
939 #endif /* !_WIN32 */
941 #if defined(CONFIG_VDE)
942 typedef struct VDEState {
943 VLANClientState *vc;
944 VDECONN *vde;
945 } VDEState;
947 static void vde_to_qemu(void *opaque)
949 VDEState *s = opaque;
950 uint8_t buf[4096];
951 int size;
953 size = vde_recv(s->vde, buf, sizeof(buf), 0);
954 if (size > 0) {
955 qemu_send_packet(s->vc, buf, size);
959 static void vde_from_qemu(void *opaque, const uint8_t *buf, int size)
961 VDEState *s = opaque;
962 int ret;
963 for(;;) {
964 ret = vde_send(s->vde, buf, size, 0);
965 if (ret < 0 && errno == EINTR) {
966 } else {
967 break;
972 static int net_vde_init(VLANState *vlan, const char *sock, int port,
973 const char *group, int mode)
975 VDEState *s;
976 char *init_group = strlen(group) ? (char *)group : NULL;
977 char *init_sock = strlen(sock) ? (char *)sock : NULL;
979 struct vde_open_args args = {
980 .port = port,
981 .group = init_group,
982 .mode = mode,
985 s = qemu_mallocz(sizeof(VDEState));
986 if (!s)
987 return -1;
988 s->vde = vde_open(init_sock, "QEMU", &args);
989 if (!s->vde){
990 free(s);
991 return -1;
993 s->vc = qemu_new_vlan_client(vlan, vde_from_qemu, NULL, s);
994 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
995 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "vde: sock=%s fd=%d",
996 sock, vde_datafd(s->vde));
997 return 0;
999 #endif
1001 /* network connection */
1002 typedef struct NetSocketState {
1003 VLANClientState *vc;
1004 int fd;
1005 int state; /* 0 = getting length, 1 = getting data */
1006 int index;
1007 int packet_len;
1008 uint8_t buf[4096];
1009 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1010 } NetSocketState;
1012 typedef struct NetSocketListenState {
1013 VLANState *vlan;
1014 int fd;
1015 } NetSocketListenState;
1017 /* XXX: we consider we can send the whole packet without blocking */
1018 static void net_socket_receive(void *opaque, const uint8_t *buf, int size)
1020 NetSocketState *s = opaque;
1021 uint32_t len;
1022 len = htonl(size);
1024 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1025 send_all(s->fd, buf, size);
1028 static void net_socket_receive_dgram(void *opaque, const uint8_t *buf, int size)
1030 NetSocketState *s = opaque;
1031 sendto(s->fd, buf, size, 0,
1032 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
1035 static void net_socket_send(void *opaque)
1037 NetSocketState *s = opaque;
1038 int l, size, err;
1039 uint8_t buf1[4096];
1040 const uint8_t *buf;
1042 size = recv(s->fd, buf1, sizeof(buf1), 0);
1043 if (size < 0) {
1044 err = socket_error();
1045 if (err != EWOULDBLOCK)
1046 goto eoc;
1047 } else if (size == 0) {
1048 /* end of connection */
1049 eoc:
1050 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1051 closesocket(s->fd);
1052 return;
1054 buf = buf1;
1055 while (size > 0) {
1056 /* reassemble a packet from the network */
1057 switch(s->state) {
1058 case 0:
1059 l = 4 - s->index;
1060 if (l > size)
1061 l = size;
1062 memcpy(s->buf + s->index, buf, l);
1063 buf += l;
1064 size -= l;
1065 s->index += l;
1066 if (s->index == 4) {
1067 /* got length */
1068 s->packet_len = ntohl(*(uint32_t *)s->buf);
1069 s->index = 0;
1070 s->state = 1;
1072 break;
1073 case 1:
1074 l = s->packet_len - s->index;
1075 if (l > size)
1076 l = size;
1077 memcpy(s->buf + s->index, buf, l);
1078 s->index += l;
1079 buf += l;
1080 size -= l;
1081 if (s->index >= s->packet_len) {
1082 qemu_send_packet(s->vc, s->buf, s->packet_len);
1083 s->index = 0;
1084 s->state = 0;
1086 break;
1091 static void net_socket_send_dgram(void *opaque)
1093 NetSocketState *s = opaque;
1094 int size;
1096 size = recv(s->fd, s->buf, sizeof(s->buf), 0);
1097 if (size < 0)
1098 return;
1099 if (size == 0) {
1100 /* end of connection */
1101 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1102 return;
1104 qemu_send_packet(s->vc, s->buf, size);
1107 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1109 struct ip_mreq imr;
1110 int fd;
1111 int val, ret;
1112 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1113 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1114 inet_ntoa(mcastaddr->sin_addr),
1115 (int)ntohl(mcastaddr->sin_addr.s_addr));
1116 return -1;
1119 fd = socket(PF_INET, SOCK_DGRAM, 0);
1120 if (fd < 0) {
1121 perror("socket(PF_INET, SOCK_DGRAM)");
1122 return -1;
1125 val = 1;
1126 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1127 (const char *)&val, sizeof(val));
1128 if (ret < 0) {
1129 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1130 goto fail;
1133 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1134 if (ret < 0) {
1135 perror("bind");
1136 goto fail;
1139 /* Add host to multicast group */
1140 imr.imr_multiaddr = mcastaddr->sin_addr;
1141 imr.imr_interface.s_addr = htonl(INADDR_ANY);
1143 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1144 (const char *)&imr, sizeof(struct ip_mreq));
1145 if (ret < 0) {
1146 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1147 goto fail;
1150 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1151 val = 1;
1152 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1153 (const char *)&val, sizeof(val));
1154 if (ret < 0) {
1155 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1156 goto fail;
1159 socket_set_nonblock(fd);
1160 return fd;
1161 fail:
1162 if (fd >= 0)
1163 closesocket(fd);
1164 return -1;
1167 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan, int fd,
1168 int is_connected)
1170 struct sockaddr_in saddr;
1171 int newfd;
1172 socklen_t saddr_len;
1173 NetSocketState *s;
1175 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1176 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1177 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1180 if (is_connected) {
1181 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1182 /* must be bound */
1183 if (saddr.sin_addr.s_addr==0) {
1184 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1185 fd);
1186 return NULL;
1188 /* clone dgram socket */
1189 newfd = net_socket_mcast_create(&saddr);
1190 if (newfd < 0) {
1191 /* error already reported by net_socket_mcast_create() */
1192 close(fd);
1193 return NULL;
1195 /* clone newfd to fd, close newfd */
1196 dup2(newfd, fd);
1197 close(newfd);
1199 } else {
1200 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1201 fd, strerror(errno));
1202 return NULL;
1206 s = qemu_mallocz(sizeof(NetSocketState));
1207 if (!s)
1208 return NULL;
1209 s->fd = fd;
1211 s->vc = qemu_new_vlan_client(vlan, net_socket_receive_dgram, NULL, s);
1212 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1214 /* mcast: save bound address as dst */
1215 if (is_connected) s->dgram_dst=saddr;
1217 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1218 "socket: fd=%d (%s mcast=%s:%d)",
1219 fd, is_connected? "cloned" : "",
1220 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1221 return s;
1224 static void net_socket_connect(void *opaque)
1226 NetSocketState *s = opaque;
1227 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1230 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan, int fd,
1231 int is_connected)
1233 NetSocketState *s;
1234 s = qemu_mallocz(sizeof(NetSocketState));
1235 if (!s)
1236 return NULL;
1237 s->fd = fd;
1238 s->vc = qemu_new_vlan_client(vlan,
1239 net_socket_receive, NULL, s);
1240 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1241 "socket: fd=%d", fd);
1242 if (is_connected) {
1243 net_socket_connect(s);
1244 } else {
1245 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1247 return s;
1250 static NetSocketState *net_socket_fd_init(VLANState *vlan, int fd,
1251 int is_connected)
1253 int so_type=-1, optlen=sizeof(so_type);
1255 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1256 (socklen_t *)&optlen)< 0) {
1257 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1258 return NULL;
1260 switch(so_type) {
1261 case SOCK_DGRAM:
1262 return net_socket_fd_init_dgram(vlan, fd, is_connected);
1263 case SOCK_STREAM:
1264 return net_socket_fd_init_stream(vlan, fd, is_connected);
1265 default:
1266 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1267 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
1268 return net_socket_fd_init_stream(vlan, fd, is_connected);
1270 return NULL;
1273 static void net_socket_accept(void *opaque)
1275 NetSocketListenState *s = opaque;
1276 NetSocketState *s1;
1277 struct sockaddr_in saddr;
1278 socklen_t len;
1279 int fd;
1281 for(;;) {
1282 len = sizeof(saddr);
1283 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1284 if (fd < 0 && errno != EINTR) {
1285 return;
1286 } else if (fd >= 0) {
1287 break;
1290 s1 = net_socket_fd_init(s->vlan, fd, 1);
1291 if (!s1) {
1292 closesocket(fd);
1293 } else {
1294 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1295 "socket: connection from %s:%d",
1296 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1300 static int net_socket_listen_init(VLANState *vlan, const char *host_str)
1302 NetSocketListenState *s;
1303 int fd, val, ret;
1304 struct sockaddr_in saddr;
1306 if (parse_host_port(&saddr, host_str) < 0)
1307 return -1;
1309 s = qemu_mallocz(sizeof(NetSocketListenState));
1310 if (!s)
1311 return -1;
1313 fd = socket(PF_INET, SOCK_STREAM, 0);
1314 if (fd < 0) {
1315 perror("socket");
1316 return -1;
1318 socket_set_nonblock(fd);
1320 /* allow fast reuse */
1321 val = 1;
1322 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1324 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1325 if (ret < 0) {
1326 perror("bind");
1327 return -1;
1329 ret = listen(fd, 0);
1330 if (ret < 0) {
1331 perror("listen");
1332 return -1;
1334 s->vlan = vlan;
1335 s->fd = fd;
1336 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1337 return 0;
1340 static int net_socket_connect_init(VLANState *vlan, const char *host_str)
1342 NetSocketState *s;
1343 int fd, connected, ret, err;
1344 struct sockaddr_in saddr;
1346 if (parse_host_port(&saddr, host_str) < 0)
1347 return -1;
1349 fd = socket(PF_INET, SOCK_STREAM, 0);
1350 if (fd < 0) {
1351 perror("socket");
1352 return -1;
1354 socket_set_nonblock(fd);
1356 connected = 0;
1357 for(;;) {
1358 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1359 if (ret < 0) {
1360 err = socket_error();
1361 if (err == EINTR || err == EWOULDBLOCK) {
1362 } else if (err == EINPROGRESS) {
1363 break;
1364 #ifdef _WIN32
1365 } else if (err == WSAEALREADY) {
1366 break;
1367 #endif
1368 } else {
1369 perror("connect");
1370 closesocket(fd);
1371 return -1;
1373 } else {
1374 connected = 1;
1375 break;
1378 s = net_socket_fd_init(vlan, fd, connected);
1379 if (!s)
1380 return -1;
1381 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1382 "socket: connect to %s:%d",
1383 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1384 return 0;
1387 static int net_socket_mcast_init(VLANState *vlan, const char *host_str)
1389 NetSocketState *s;
1390 int fd;
1391 struct sockaddr_in saddr;
1393 if (parse_host_port(&saddr, host_str) < 0)
1394 return -1;
1397 fd = net_socket_mcast_create(&saddr);
1398 if (fd < 0)
1399 return -1;
1401 s = net_socket_fd_init(vlan, fd, 0);
1402 if (!s)
1403 return -1;
1405 s->dgram_dst = saddr;
1407 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1408 "socket: mcast=%s:%d",
1409 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1410 return 0;
1414 /* find or alloc a new VLAN */
1415 VLANState *qemu_find_vlan(int id)
1417 VLANState **pvlan, *vlan;
1418 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1419 if (vlan->id == id)
1420 return vlan;
1422 vlan = qemu_mallocz(sizeof(VLANState));
1423 if (!vlan)
1424 return NULL;
1425 vlan->id = id;
1426 vlan->next = NULL;
1427 pvlan = &first_vlan;
1428 while (*pvlan != NULL)
1429 pvlan = &(*pvlan)->next;
1430 *pvlan = vlan;
1431 return vlan;
1434 int net_client_init(const char *device, const char *p)
1436 char buf[1024];
1437 int vlan_id, ret;
1438 VLANState *vlan;
1440 vlan_id = 0;
1441 if (get_param_value(buf, sizeof(buf), "vlan", p)) {
1442 vlan_id = strtol(buf, NULL, 0);
1444 vlan = qemu_find_vlan(vlan_id);
1445 if (!vlan) {
1446 fprintf(stderr, "Could not create vlan %d\n", vlan_id);
1447 return -1;
1449 if (!strcmp(device, "nic")) {
1450 NICInfo *nd;
1451 uint8_t *macaddr;
1453 if (nb_nics >= MAX_NICS) {
1454 fprintf(stderr, "Too Many NICs\n");
1455 return -1;
1457 nd = &nd_table[nb_nics];
1458 macaddr = nd->macaddr;
1459 macaddr[0] = 0x52;
1460 macaddr[1] = 0x54;
1461 macaddr[2] = 0x00;
1462 macaddr[3] = 0x12;
1463 macaddr[4] = 0x34;
1464 macaddr[5] = 0x56 + nb_nics;
1466 if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
1467 if (parse_macaddr(macaddr, buf) < 0) {
1468 fprintf(stderr, "invalid syntax for ethernet address\n");
1469 return -1;
1472 if (get_param_value(buf, sizeof(buf), "model", p)) {
1473 nd->model = strdup(buf);
1475 nd->vlan = vlan;
1476 nb_nics++;
1477 vlan->nb_guest_devs++;
1478 ret = 0;
1479 } else
1480 if (!strcmp(device, "none")) {
1481 /* does nothing. It is needed to signal that no network cards
1482 are wanted */
1483 ret = 0;
1484 } else
1485 #ifdef CONFIG_SLIRP
1486 if (!strcmp(device, "user")) {
1487 if (get_param_value(buf, sizeof(buf), "hostname", p)) {
1488 pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
1490 vlan->nb_host_devs++;
1491 ret = net_slirp_init(vlan);
1492 } else
1493 #endif
1494 #ifdef _WIN32
1495 if (!strcmp(device, "tap")) {
1496 char ifname[64];
1497 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1498 fprintf(stderr, "tap: no interface name\n");
1499 return -1;
1501 vlan->nb_host_devs++;
1502 ret = tap_win32_init(vlan, ifname);
1503 } else
1504 #elif defined (_AIX)
1505 #else
1506 if (!strcmp(device, "tap")) {
1507 char ifname[64];
1508 char setup_script[1024], down_script[1024];
1509 int fd;
1510 vlan->nb_host_devs++;
1511 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1512 fd = strtol(buf, NULL, 0);
1513 fcntl(fd, F_SETFL, O_NONBLOCK);
1514 ret = -1;
1515 if (net_tap_fd_init(vlan, fd))
1516 ret = 0;
1517 } else {
1518 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1519 ifname[0] = '\0';
1521 if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
1522 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
1524 if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
1525 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
1527 ret = net_tap_init(vlan, ifname, setup_script, down_script);
1529 } else
1530 #endif
1531 if (!strcmp(device, "socket")) {
1532 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1533 int fd;
1534 fd = strtol(buf, NULL, 0);
1535 ret = -1;
1536 if (net_socket_fd_init(vlan, fd, 1))
1537 ret = 0;
1538 } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
1539 ret = net_socket_listen_init(vlan, buf);
1540 } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
1541 ret = net_socket_connect_init(vlan, buf);
1542 } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
1543 ret = net_socket_mcast_init(vlan, buf);
1544 } else {
1545 fprintf(stderr, "Unknown socket options: %s\n", p);
1546 return -1;
1548 vlan->nb_host_devs++;
1549 } else
1550 #ifdef CONFIG_VDE
1551 if (!strcmp(device, "vde")) {
1552 char vde_sock[1024], vde_group[512];
1553 int vde_port, vde_mode;
1554 vlan->nb_host_devs++;
1555 if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
1556 vde_sock[0] = '\0';
1558 if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
1559 vde_port = strtol(buf, NULL, 10);
1560 } else {
1561 vde_port = 0;
1563 if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
1564 vde_group[0] = '\0';
1566 if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
1567 vde_mode = strtol(buf, NULL, 8);
1568 } else {
1569 vde_mode = 0700;
1571 ret = net_vde_init(vlan, vde_sock, vde_port, vde_group, vde_mode);
1572 } else
1573 #endif
1575 fprintf(stderr, "Unknown network device: %s\n", device);
1576 return -1;
1578 if (ret < 0) {
1579 fprintf(stderr, "Could not initialize device '%s'\n", device);
1582 return ret;
1585 int net_client_parse(const char *str)
1587 const char *p;
1588 char *q;
1589 char device[64];
1591 p = str;
1592 q = device;
1593 while (*p != '\0' && *p != ',') {
1594 if ((q - device) < sizeof(device) - 1)
1595 *q++ = *p;
1596 p++;
1598 *q = '\0';
1599 if (*p == ',')
1600 p++;
1602 return net_client_init(device, p);
1605 void do_info_network(void)
1607 VLANState *vlan;
1608 VLANClientState *vc;
1610 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1611 term_printf("VLAN %d devices:\n", vlan->id);
1612 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
1613 term_printf(" %s\n", vc->info_str);
1617 void net_cleanup(void)
1619 VLANState *vlan;
1621 #if !defined(_WIN32)
1622 /* close network clients */
1623 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1624 VLANClientState *vc;
1626 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
1627 if (vc->fd_read == tap_receive) {
1628 char ifname[64];
1629 TAPState *s = vc->opaque;
1631 if (sscanf(vc->info_str, "tap: ifname=%63s ", ifname) == 1 &&
1632 s->down_script[0])
1633 launch_script(s->down_script, ifname, s->fd);
1635 #if defined(CONFIG_VDE)
1636 if (vc->fd_read == vde_from_qemu) {
1637 VDEState *s = vc->opaque;
1638 vde_close(s->vde);
1640 #endif
1643 #endif
1646 void net_client_check(void)
1648 VLANState *vlan;
1650 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1651 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
1652 continue;
1653 if (vlan->nb_guest_devs == 0)
1654 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1655 if (vlan->nb_host_devs == 0)
1656 fprintf(stderr,
1657 "Warning: vlan %d is not connected to host network\n",
1658 vlan->id);