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
32 /* Needed early for HOST_BSD etc. */
33 #include "config-host.h"
36 #include <sys/times.h>
40 #include <sys/ioctl.h>
41 #include <sys/resource.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
46 #include <net/if_tap.h>
49 #include <linux/if_tun.h>
51 #include <arpa/inet.h>
54 #include <sys/select.h>
57 #if defined(__FreeBSD__) || defined(__DragonFly__)
62 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63 #include <freebsd/stdlib.h>
68 #include <linux/rtc.h>
70 /* For the benefit of older linux systems which don't supply it,
71 we use a local copy of hpet.h. */
72 /* #include <linux/hpet.h> */
75 #include <linux/ppdev.h>
76 #include <linux/parport.h>
80 #include <sys/ethernet.h>
81 #include <sys/sockio.h>
82 #include <netinet/arp.h>
83 #include <netinet/in.h>
84 #include <netinet/in_systm.h>
85 #include <netinet/ip.h>
86 #include <netinet/ip_icmp.h> // must come after ip.h
87 #include <netinet/udp.h>
88 #include <netinet/tcp.h>
96 #if defined(__OpenBSD__)
100 #if defined(CONFIG_VDE)
101 #include <libvdeplug.h>
107 #include <sys/timeb.h>
108 #include <mmsystem.h>
109 #define getopt_long_only getopt_long
110 #define memalign(align, size) malloc(size)
113 #include "qemu-common.h"
117 #include "qemu-timer.h"
118 #include "qemu-char.h"
119 #include "audio/audio.h"
120 #include "qemu_socket.h"
121 #include "qemu-log.h"
123 #if defined(CONFIG_SLIRP)
124 #include "libslirp.h"
128 static VLANState *first_vlan;
130 /***********************************************************/
131 /* network device redirectors */
133 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
134 static void hex_dump(FILE *f, const uint8_t *buf, int size)
138 for(i=0;i<size;i+=16) {
142 fprintf(f, "%08x ", i);
145 fprintf(f, " %02x", buf[i+j]);
152 if (c < ' ' || c > '~')
161 static int parse_macaddr(uint8_t *macaddr, const char *p)
168 offset = strtol(p, &last_char, 0);
169 if (0 == errno && '\0' == *last_char &&
170 offset >= 0 && offset <= 0xFFFFFF) {
171 macaddr[3] = (offset & 0xFF0000) >> 16;
172 macaddr[4] = (offset & 0xFF00) >> 8;
173 macaddr[5] = offset & 0xFF;
176 for(i = 0; i < 6; i++) {
177 macaddr[i] = strtol(p, (char **)&p, 16);
182 if (*p != ':' && *p != '-')
193 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
204 if (len > buf_size - 1)
213 int parse_host_src_port(struct sockaddr_in *haddr,
214 struct sockaddr_in *saddr,
215 const char *input_str)
217 char *str = strdup(input_str);
218 char *host_str = str;
220 const char *src_str2;
224 * Chop off any extra arguments at the end of the string which
225 * would start with a comma, then fill in the src port information
226 * if it was provided else use the "any address" and "any port".
228 if ((ptr = strchr(str,',')))
231 if ((src_str = strchr(input_str,'@'))) {
236 if (parse_host_port(haddr, host_str) < 0)
240 if (!src_str || *src_str == '\0')
243 if (parse_host_port(saddr, src_str2) < 0)
254 int parse_host_port(struct sockaddr_in *saddr, const char *str)
262 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
264 saddr->sin_family = AF_INET;
265 if (buf[0] == '\0') {
266 saddr->sin_addr.s_addr = 0;
268 if (qemu_isdigit(buf[0])) {
269 if (!inet_aton(buf, &saddr->sin_addr))
272 if ((he = gethostbyname(buf)) == NULL)
274 saddr->sin_addr = *(struct in_addr *)he->h_addr;
277 port = strtol(p, (char **)&r, 0);
280 saddr->sin_port = htons(port);
284 #if !defined(_WIN32) && 0
285 static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
290 len = MIN(108, strlen(str));
291 p = strchr(str, ',');
293 len = MIN(len, p - str);
295 memset(uaddr, 0, sizeof(*uaddr));
297 uaddr->sun_family = AF_UNIX;
298 memcpy(uaddr->sun_path, str, len);
304 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
306 snprintf(vc->info_str, sizeof(vc->info_str),
307 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
309 macaddr[0], macaddr[1], macaddr[2],
310 macaddr[3], macaddr[4], macaddr[5]);
313 static char *assign_name(VLANClientState *vc1, const char *model)
319 for (vlan = first_vlan; vlan; vlan = vlan->next) {
322 for (vc = vlan->first_client; vc; vc = vc->next)
323 if (vc != vc1 && strcmp(vc->model, model) == 0)
327 snprintf(buf, sizeof(buf), "%s.%d", model, id);
332 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
335 NetCanReceive *can_receive,
337 NetReceiveIOV *receive_iov,
341 VLANClientState *vc, **pvc;
342 vc = qemu_mallocz(sizeof(VLANClientState));
343 vc->model = strdup(model);
345 vc->name = strdup(name);
347 vc->name = assign_name(vc, model);
348 vc->can_receive = can_receive;
349 vc->receive = receive;
350 vc->receive_iov = receive_iov;
351 vc->cleanup = cleanup;
356 pvc = &vlan->first_client;
363 void qemu_del_vlan_client(VLANClientState *vc)
365 VLANClientState **pvc = &vc->vlan->first_client;
381 VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
383 VLANClientState **pvc = &vlan->first_client;
386 if ((*pvc)->opaque == opaque)
394 int qemu_can_send_packet(VLANClientState *sender)
396 VLANState *vlan = sender->vlan;
399 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
404 /* no can_receive() handler, they can always receive */
405 if (!vc->can_receive || vc->can_receive(vc)) {
413 qemu_deliver_packet(VLANClientState *sender, const uint8_t *buf, int size)
418 for (vc = sender->vlan->first_client; vc != NULL; vc = vc->next) {
430 len = vc->receive(vc, buf, size);
432 ret = (ret >= 0) ? ret : len;
438 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
440 VLANState *vlan = vc->vlan;
447 printf("vlan %d send:\n", vlan->id);
448 hex_dump(stdout, buf, size);
450 if (vlan->delivering) {
451 packet = qemu_malloc(sizeof(VLANPacket) + size);
452 packet->next = vlan->send_queue;
455 memcpy(packet->data, buf, size);
456 vlan->send_queue = packet;
458 vlan->delivering = 1;
459 qemu_deliver_packet(vc, buf, size);
460 while ((packet = vlan->send_queue) != NULL) {
461 vlan->send_queue = packet->next;
462 qemu_deliver_packet(packet->sender, packet->data, packet->size);
465 vlan->delivering = 0;
469 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
472 uint8_t buffer[4096];
476 for (i = 0; i < iovcnt; i++) {
479 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
480 memcpy(buffer + offset, iov[i].iov_base, len);
484 vc->receive(vc, buffer, offset);
489 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
494 for (i = 0; i < iovcnt; i++)
495 offset += iov[i].iov_len;
499 ssize_t qemu_sendv_packet(VLANClientState *sender, const struct iovec *iov,
502 VLANState *vlan = sender->vlan;
508 if (sender->link_down)
509 return calc_iov_length(iov, iovcnt);
511 if (vlan->delivering) {
512 max_len = calc_iov_length(iov, iovcnt);
514 packet = qemu_malloc(sizeof(VLANPacket) + max_len);
515 packet->next = vlan->send_queue;
516 packet->sender = sender;
518 for (i = 0; i < iovcnt; i++) {
519 size_t len = iov[i].iov_len;
521 memcpy(packet->data + packet->size, iov[i].iov_base, len);
524 vlan->send_queue = packet;
526 vlan->delivering = 1;
528 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
535 len = calc_iov_length(iov, iovcnt);
536 } else if (vc->receive_iov) {
537 len = vc->receive_iov(vc, iov, iovcnt);
538 } else if (vc->receive) {
539 len = vc_sendv_compat(vc, iov, iovcnt);
541 max_len = MAX(max_len, len);
544 while ((packet = vlan->send_queue) != NULL) {
545 vlan->send_queue = packet->next;
546 qemu_deliver_packet(packet->sender, packet->data, packet->size);
549 vlan->delivering = 0;
555 static void config_error(Monitor *mon, const char *fmt, ...)
561 monitor_vprintf(mon, fmt, ap);
563 fprintf(stderr, "qemu: ");
564 vfprintf(stderr, fmt, ap);
570 #if defined(CONFIG_SLIRP)
572 /* slirp network adapter */
574 struct slirp_config_str {
575 struct slirp_config_str *next;
579 static int slirp_inited;
580 static struct slirp_config_str *slirp_redirs;
582 static const char *slirp_smb_export;
584 static VLANClientState *slirp_vc;
586 static void slirp_smb(const char *exported_dir);
587 static void slirp_redirection(Monitor *mon, const char *redir_str);
589 int slirp_can_output(void)
591 return !slirp_vc || qemu_can_send_packet(slirp_vc);
594 void slirp_output(const uint8_t *pkt, int pkt_len)
597 printf("slirp output:\n");
598 hex_dump(stdout, pkt, pkt_len);
602 qemu_send_packet(slirp_vc, pkt, pkt_len);
605 int slirp_is_inited(void)
610 static ssize_t slirp_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
613 printf("slirp input:\n");
614 hex_dump(stdout, buf, size);
616 slirp_input(buf, size);
620 static int slirp_in_use;
622 static void net_slirp_cleanup(VLANClientState *vc)
627 static int net_slirp_init(VLANState *vlan, const char *model, const char *name,
628 int restricted, const char *ip)
631 /* slirp only supports a single instance so far */
636 slirp_init(restricted, ip);
638 while (slirp_redirs) {
639 struct slirp_config_str *config = slirp_redirs;
641 slirp_redirection(NULL, config->str);
642 slirp_redirs = config->next;
646 if (slirp_smb_export) {
647 slirp_smb(slirp_smb_export);
652 slirp_vc = qemu_new_vlan_client(vlan, model, name, NULL, slirp_receive,
653 NULL, net_slirp_cleanup, NULL);
654 slirp_vc->info_str[0] = '\0';
659 static void net_slirp_redir_print(void *opaque, int is_udp,
660 struct in_addr *laddr, u_int lport,
661 struct in_addr *faddr, u_int fport)
663 Monitor *mon = (Monitor *)opaque;
668 h_addr = ntohl(faddr->s_addr);
669 g_addr = ntohl(laddr->s_addr);
671 monitor_printf(mon, " %s |", is_udp ? "udp" : "tcp" );
672 snprintf(buf, 15, "%d.%d.%d.%d", (h_addr >> 24) & 0xff,
673 (h_addr >> 16) & 0xff,
674 (h_addr >> 8) & 0xff,
676 monitor_printf(mon, " %15s |", buf);
677 monitor_printf(mon, " %5d |", fport);
679 snprintf(buf, 15, "%d.%d.%d.%d", (g_addr >> 24) & 0xff,
680 (g_addr >> 16) & 0xff,
681 (g_addr >> 8) & 0xff,
683 monitor_printf(mon, " %15s |", buf);
684 monitor_printf(mon, " %5d\n", lport);
688 static void net_slirp_redir_list(Monitor *mon)
693 monitor_printf(mon, " Prot | Host Addr | HPort | Guest Addr | GPort\n");
694 monitor_printf(mon, " | | | | \n");
695 slirp_redir_loop(net_slirp_redir_print, mon);
698 static void net_slirp_redir_rm(Monitor *mon, const char *port_str)
702 const char *p = port_str;
709 if (!port_str || !port_str[0])
712 get_str_sep(buf, sizeof(buf), &p, ':');
714 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
716 } else if (!strcmp(buf, "udp")) {
724 n = slirp_redir_rm(is_udp, host_port);
726 monitor_printf(mon, "removed %d redirections to %s port %d\n", n,
727 is_udp ? "udp" : "tcp", host_port);
731 monitor_printf(mon, "invalid format\n");
734 static void slirp_redirection(Monitor *mon, const char *redir_str)
736 struct in_addr guest_addr;
737 int host_port, guest_port;
743 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
746 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
748 } else if (!strcmp(buf, "udp")) {
754 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
757 host_port = strtol(buf, &r, 0);
762 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
765 if (buf[0] == '\0') {
766 pstrcpy(buf, sizeof(buf), "10.0.2.15");
768 if (!inet_aton(buf, &guest_addr)) {
772 guest_port = strtol(p, &r, 0);
777 if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
778 config_error(mon, "could not set up redirection '%s'\n", redir_str);
783 config_error(mon, "invalid redirection format '%s'\n", redir_str);
786 void net_slirp_redir(Monitor *mon, const char *redir_str, const char *redir_opt2)
788 struct slirp_config_str *config;
792 monitor_printf(mon, "user mode network stack not in use\n");
794 config = qemu_malloc(sizeof(*config));
795 config->str = redir_str;
796 config->next = slirp_redirs;
797 slirp_redirs = config;
802 if (!strcmp(redir_str, "remove")) {
803 net_slirp_redir_rm(mon, redir_opt2);
807 if (!strcmp(redir_str, "list")) {
808 net_slirp_redir_list(mon);
812 slirp_redirection(mon, redir_str);
817 static char smb_dir[1024];
819 static void erase_dir(char *dir_name)
825 /* erase all the files in the directory */
826 if ((d = opendir(dir_name)) != NULL) {
831 if (strcmp(de->d_name, ".") != 0 &&
832 strcmp(de->d_name, "..") != 0) {
833 snprintf(filename, sizeof(filename), "%s/%s",
834 smb_dir, de->d_name);
835 if (unlink(filename) != 0) /* is it a directory? */
844 /* automatic user mode samba server configuration */
845 static void smb_exit(void)
850 static void slirp_smb(const char *exported_dir)
853 char smb_cmdline[1024];
856 /* XXX: better tmp dir construction */
857 snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%ld", (long)getpid());
858 if (mkdir(smb_dir, 0700) < 0) {
859 fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
862 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
864 f = fopen(smb_conf, "w");
866 fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
873 "socket address=127.0.0.1\n"
875 "lock directory=%s\n"
876 "log file=%s/log.smbd\n"
877 "smb passwd file=%s/smbpasswd\n"
893 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
894 SMBD_COMMAND, smb_conf);
896 slirp_add_exec(0, smb_cmdline, 4, 139);
899 /* automatic user mode samba server configuration */
900 void net_slirp_smb(const char *exported_dir)
902 if (slirp_smb_export) {
903 fprintf(stderr, "-smb given twice\n");
906 slirp_smb_export = exported_dir;
908 slirp_smb(exported_dir);
912 #endif /* !defined(_WIN32) */
914 void do_info_slirp(Monitor *mon)
924 static int vmchannel_can_read(void *opaque)
926 struct VMChannel *vmc = (struct VMChannel*)opaque;
927 return slirp_socket_can_recv(4, vmc->port);
930 static void vmchannel_read(void *opaque, const uint8_t *buf, int size)
932 struct VMChannel *vmc = (struct VMChannel*)opaque;
933 slirp_socket_recv(4, vmc->port, buf, size);
936 #endif /* CONFIG_SLIRP */
940 typedef struct TAPState {
943 char down_script[1024];
944 char down_script_arg[128];
948 static int launch_script(const char *setup_script, const char *ifname, int fd);
950 static ssize_t tap_receive_iov(VLANClientState *vc, const struct iovec *iov,
953 TAPState *s = vc->opaque;
957 len = writev(s->fd, iov, iovcnt);
958 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
963 static ssize_t tap_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
965 TAPState *s = vc->opaque;
969 len = write(s->fd, buf, size);
970 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
975 static int tap_can_send(void *opaque)
977 TAPState *s = opaque;
979 return qemu_can_send_packet(s->vc);
983 static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
988 sbuf.maxlen = maxlen;
989 sbuf.buf = (char *)buf;
991 return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
994 static ssize_t tap_read_packet(int tapfd, uint8_t *buf, int maxlen)
996 return read(tapfd, buf, maxlen);
1000 static void tap_send(void *opaque)
1002 TAPState *s = opaque;
1005 size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
1007 qemu_send_packet(s->vc, s->buf, size);
1011 static void tap_cleanup(VLANClientState *vc)
1013 TAPState *s = vc->opaque;
1015 if (s->down_script[0])
1016 launch_script(s->down_script, s->down_script_arg, s->fd);
1018 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1025 static TAPState *net_tap_fd_init(VLANState *vlan,
1032 s = qemu_mallocz(sizeof(TAPState));
1034 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, tap_receive,
1035 tap_receive_iov, tap_cleanup, s);
1036 qemu_set_fd_handler2(s->fd, tap_can_send, tap_send, NULL, s);
1037 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
1041 #if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
1042 static int tap_open(char *ifname, int ifname_size)
1048 TFR(fd = open("/dev/tap", O_RDWR));
1050 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
1055 dev = devname(s.st_rdev, S_IFCHR);
1056 pstrcpy(ifname, ifname_size, dev);
1058 fcntl(fd, F_SETFL, O_NONBLOCK);
1061 #elif defined(__sun__)
1062 #define TUNNEWPPA (('T'<<16) | 0x0001)
1064 * Allocate TAP device, returns opened fd.
1065 * Stores dev name in the first arg(must be large enough).
1067 static int tap_alloc(char *dev, size_t dev_size)
1069 int tap_fd, if_fd, ppa = -1;
1070 static int ip_fd = 0;
1073 static int arp_fd = 0;
1074 int ip_muxid, arp_muxid;
1075 struct strioctl strioc_if, strioc_ppa;
1076 int link_type = I_PLINK;;
1078 char actual_name[32] = "";
1080 memset(&ifr, 0x0, sizeof(ifr));
1084 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
1088 /* Check if IP device was opened */
1092 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
1094 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
1098 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
1100 syslog(LOG_ERR, "Can't open /dev/tap");
1104 /* Assign a new PPA and get its unit number. */
1105 strioc_ppa.ic_cmd = TUNNEWPPA;
1106 strioc_ppa.ic_timout = 0;
1107 strioc_ppa.ic_len = sizeof(ppa);
1108 strioc_ppa.ic_dp = (char *)&ppa;
1109 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
1110 syslog (LOG_ERR, "Can't assign new interface");
1112 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
1114 syslog(LOG_ERR, "Can't open /dev/tap (2)");
1117 if(ioctl(if_fd, I_PUSH, "ip") < 0){
1118 syslog(LOG_ERR, "Can't push IP module");
1122 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
1123 syslog(LOG_ERR, "Can't get flags\n");
1125 snprintf (actual_name, 32, "tap%d", ppa);
1126 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1129 /* Assign ppa according to the unit number returned by tun device */
1131 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
1132 syslog (LOG_ERR, "Can't set PPA %d", ppa);
1133 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
1134 syslog (LOG_ERR, "Can't get flags\n");
1135 /* Push arp module to if_fd */
1136 if (ioctl (if_fd, I_PUSH, "arp") < 0)
1137 syslog (LOG_ERR, "Can't push ARP module (2)");
1139 /* Push arp module to ip_fd */
1140 if (ioctl (ip_fd, I_POP, NULL) < 0)
1141 syslog (LOG_ERR, "I_POP failed\n");
1142 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
1143 syslog (LOG_ERR, "Can't push ARP module (3)\n");
1145 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
1147 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
1149 /* Set ifname to arp */
1150 strioc_if.ic_cmd = SIOCSLIFNAME;
1151 strioc_if.ic_timout = 0;
1152 strioc_if.ic_len = sizeof(ifr);
1153 strioc_if.ic_dp = (char *)𝔦
1154 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
1155 syslog (LOG_ERR, "Can't set ifname to arp\n");
1158 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
1159 syslog(LOG_ERR, "Can't link TAP device to IP");
1163 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
1164 syslog (LOG_ERR, "Can't link TAP device to ARP");
1168 memset(&ifr, 0x0, sizeof(ifr));
1169 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
1170 ifr.lifr_ip_muxid = ip_muxid;
1171 ifr.lifr_arp_muxid = arp_muxid;
1173 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
1175 ioctl (ip_fd, I_PUNLINK , arp_muxid);
1176 ioctl (ip_fd, I_PUNLINK, ip_muxid);
1177 syslog (LOG_ERR, "Can't set multiplexor id");
1180 snprintf(dev, dev_size, "tap%d", ppa);
1184 static int tap_open(char *ifname, int ifname_size)
1188 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
1189 fprintf(stderr, "Cannot allocate TAP device\n");
1192 pstrcpy(ifname, ifname_size, dev);
1193 fcntl(fd, F_SETFL, O_NONBLOCK);
1196 #elif defined (_AIX)
1197 static int tap_open(char *ifname, int ifname_size)
1199 fprintf (stderr, "no tap on AIX\n");
1203 static int tap_open(char *ifname, int ifname_size)
1208 TFR(fd = open("/dev/net/tun", O_RDWR));
1210 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1213 memset(&ifr, 0, sizeof(ifr));
1214 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
1215 if (ifname[0] != '\0')
1216 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
1218 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
1219 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
1221 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1225 pstrcpy(ifname, ifname_size, ifr.ifr_name);
1226 fcntl(fd, F_SETFL, O_NONBLOCK);
1231 static int launch_script(const char *setup_script, const char *ifname, int fd)
1233 sigset_t oldmask, mask;
1239 sigaddset(&mask, SIGCHLD);
1240 sigprocmask(SIG_BLOCK, &mask, &oldmask);
1242 /* try to launch network script */
1245 int open_max = sysconf(_SC_OPEN_MAX), i;
1247 for (i = 0; i < open_max; i++) {
1248 if (i != STDIN_FILENO &&
1249 i != STDOUT_FILENO &&
1250 i != STDERR_FILENO &&
1256 *parg++ = (char *)setup_script;
1257 *parg++ = (char *)ifname;
1259 execv(setup_script, args);
1261 } else if (pid > 0) {
1262 while (waitpid(pid, &status, 0) != pid) {
1265 sigprocmask(SIG_SETMASK, &oldmask, NULL);
1267 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
1271 fprintf(stderr, "%s: could not launch network script\n", setup_script);
1275 static int net_tap_init(VLANState *vlan, const char *model,
1276 const char *name, const char *ifname1,
1277 const char *setup_script, const char *down_script)
1283 if (ifname1 != NULL)
1284 pstrcpy(ifname, sizeof(ifname), ifname1);
1287 TFR(fd = tap_open(ifname, sizeof(ifname)));
1291 if (!setup_script || !strcmp(setup_script, "no"))
1293 if (setup_script[0] != '\0') {
1294 if (launch_script(setup_script, ifname, fd))
1297 s = net_tap_fd_init(vlan, model, name, fd);
1298 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1299 "ifname=%s,script=%s,downscript=%s",
1300 ifname, setup_script, down_script);
1301 if (down_script && strcmp(down_script, "no")) {
1302 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
1303 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1308 #endif /* !_WIN32 */
1310 #if defined(CONFIG_VDE)
1311 typedef struct VDEState {
1312 VLANClientState *vc;
1316 static void vde_to_qemu(void *opaque)
1318 VDEState *s = opaque;
1322 size = vde_recv(s->vde, (char *)buf, sizeof(buf), 0);
1324 qemu_send_packet(s->vc, buf, size);
1328 static ssize_t vde_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1330 VDEState *s = vc->opaque;
1334 ret = vde_send(s->vde, (const char *)buf, size, 0);
1335 } while (ret < 0 && errno == EINTR);
1340 static void vde_cleanup(VLANClientState *vc)
1342 VDEState *s = vc->opaque;
1343 qemu_set_fd_handler(vde_datafd(s->vde), NULL, NULL, NULL);
1348 static int net_vde_init(VLANState *vlan, const char *model,
1349 const char *name, const char *sock,
1350 int port, const char *group, int mode)
1353 char *init_group = strlen(group) ? (char *)group : NULL;
1354 char *init_sock = strlen(sock) ? (char *)sock : NULL;
1356 struct vde_open_args args = {
1358 .group = init_group,
1362 s = qemu_mallocz(sizeof(VDEState));
1363 s->vde = vde_open(init_sock, (char *)"QEMU", &args);
1368 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, vde_receive,
1369 NULL, vde_cleanup, s);
1370 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
1371 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
1372 sock, vde_datafd(s->vde));
1377 /* network connection */
1378 typedef struct NetSocketState {
1379 VLANClientState *vc;
1381 int state; /* 0 = getting length, 1 = getting data */
1383 unsigned int packet_len;
1385 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1388 typedef struct NetSocketListenState {
1393 } NetSocketListenState;
1395 /* XXX: we consider we can send the whole packet without blocking */
1396 static ssize_t net_socket_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1398 NetSocketState *s = vc->opaque;
1402 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1403 return send_all(s->fd, buf, size);
1406 static ssize_t net_socket_receive_dgram(VLANClientState *vc, const uint8_t *buf, size_t size)
1408 NetSocketState *s = vc->opaque;
1410 return sendto(s->fd, buf, size, 0,
1411 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
1414 static void net_socket_send(void *opaque)
1416 NetSocketState *s = opaque;
1422 size = recv(s->fd, buf1, sizeof(buf1), 0);
1424 err = socket_error();
1425 if (err != EWOULDBLOCK)
1427 } else if (size == 0) {
1428 /* end of connection */
1430 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1436 /* reassemble a packet from the network */
1442 memcpy(s->buf + s->index, buf, l);
1446 if (s->index == 4) {
1448 s->packet_len = ntohl(*(uint32_t *)s->buf);
1454 l = s->packet_len - s->index;
1457 if (s->index + l <= sizeof(s->buf)) {
1458 memcpy(s->buf + s->index, buf, l);
1460 fprintf(stderr, "serious error: oversized packet received,"
1461 "connection terminated.\n");
1469 if (s->index >= s->packet_len) {
1470 qemu_send_packet(s->vc, s->buf, s->packet_len);
1479 static void net_socket_send_dgram(void *opaque)
1481 NetSocketState *s = opaque;
1484 size = recv(s->fd, s->buf, sizeof(s->buf), 0);
1488 /* end of connection */
1489 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1492 qemu_send_packet(s->vc, s->buf, size);
1495 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1500 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1501 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1502 inet_ntoa(mcastaddr->sin_addr),
1503 (int)ntohl(mcastaddr->sin_addr.s_addr));
1507 fd = socket(PF_INET, SOCK_DGRAM, 0);
1509 perror("socket(PF_INET, SOCK_DGRAM)");
1514 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1515 (const char *)&val, sizeof(val));
1517 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1521 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1527 /* Add host to multicast group */
1528 imr.imr_multiaddr = mcastaddr->sin_addr;
1529 imr.imr_interface.s_addr = htonl(INADDR_ANY);
1531 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1532 (const char *)&imr, sizeof(struct ip_mreq));
1534 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1538 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1540 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1541 (const char *)&val, sizeof(val));
1543 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1547 socket_set_nonblock(fd);
1555 static void net_socket_cleanup(VLANClientState *vc)
1557 NetSocketState *s = vc->opaque;
1558 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1563 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1566 int fd, int is_connected)
1568 struct sockaddr_in saddr;
1570 socklen_t saddr_len;
1573 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1574 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1575 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1579 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1581 if (saddr.sin_addr.s_addr==0) {
1582 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1586 /* clone dgram socket */
1587 newfd = net_socket_mcast_create(&saddr);
1589 /* error already reported by net_socket_mcast_create() */
1593 /* clone newfd to fd, close newfd */
1598 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1599 fd, strerror(errno));
1604 s = qemu_mallocz(sizeof(NetSocketState));
1607 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive_dgram,
1608 NULL, net_socket_cleanup, s);
1609 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1611 /* mcast: save bound address as dst */
1612 if (is_connected) s->dgram_dst=saddr;
1614 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1615 "socket: fd=%d (%s mcast=%s:%d)",
1616 fd, is_connected? "cloned" : "",
1617 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1621 static void net_socket_connect(void *opaque)
1623 NetSocketState *s = opaque;
1624 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1627 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
1630 int fd, int is_connected)
1633 s = qemu_mallocz(sizeof(NetSocketState));
1635 s->vc = qemu_new_vlan_client(vlan, model, name, NULL, net_socket_receive,
1636 NULL, net_socket_cleanup, s);
1637 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1638 "socket: fd=%d", fd);
1640 net_socket_connect(s);
1642 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1647 static NetSocketState *net_socket_fd_init(VLANState *vlan,
1648 const char *model, const char *name,
1649 int fd, int is_connected)
1651 int so_type=-1, optlen=sizeof(so_type);
1653 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1654 (socklen_t *)&optlen)< 0) {
1655 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1660 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
1662 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
1664 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1665 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
1666 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
1671 static void net_socket_accept(void *opaque)
1673 NetSocketListenState *s = opaque;
1675 struct sockaddr_in saddr;
1680 len = sizeof(saddr);
1681 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1682 if (fd < 0 && errno != EINTR) {
1684 } else if (fd >= 0) {
1688 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
1692 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1693 "socket: connection from %s:%d",
1694 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1698 static int net_socket_listen_init(VLANState *vlan,
1701 const char *host_str)
1703 NetSocketListenState *s;
1705 struct sockaddr_in saddr;
1707 if (parse_host_port(&saddr, host_str) < 0)
1710 s = qemu_mallocz(sizeof(NetSocketListenState));
1712 fd = socket(PF_INET, SOCK_STREAM, 0);
1717 socket_set_nonblock(fd);
1719 /* allow fast reuse */
1721 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1723 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1728 ret = listen(fd, 0);
1734 s->model = strdup(model);
1735 s->name = name ? strdup(name) : NULL;
1737 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1741 static int net_socket_connect_init(VLANState *vlan,
1744 const char *host_str)
1747 int fd, connected, ret, err;
1748 struct sockaddr_in saddr;
1750 if (parse_host_port(&saddr, host_str) < 0)
1753 fd = socket(PF_INET, SOCK_STREAM, 0);
1758 socket_set_nonblock(fd);
1762 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1764 err = socket_error();
1765 if (err == EINTR || err == EWOULDBLOCK) {
1766 } else if (err == EINPROGRESS) {
1769 } else if (err == WSAEALREADY) {
1782 s = net_socket_fd_init(vlan, model, name, fd, connected);
1785 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1786 "socket: connect to %s:%d",
1787 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1791 static int net_socket_mcast_init(VLANState *vlan,
1794 const char *host_str)
1798 struct sockaddr_in saddr;
1800 if (parse_host_port(&saddr, host_str) < 0)
1804 fd = net_socket_mcast_create(&saddr);
1808 s = net_socket_fd_init(vlan, model, name, fd, 0);
1812 s->dgram_dst = saddr;
1814 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1815 "socket: mcast=%s:%d",
1816 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1821 typedef struct DumpState {
1822 VLANClientState *pcap_vc;
1827 #define PCAP_MAGIC 0xa1b2c3d4
1829 struct pcap_file_hdr {
1831 uint16_t version_major;
1832 uint16_t version_minor;
1839 struct pcap_sf_pkthdr {
1848 static ssize_t dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
1850 DumpState *s = vc->opaque;
1851 struct pcap_sf_pkthdr hdr;
1855 /* Early return in case of previous error. */
1860 ts = muldiv64(qemu_get_clock(vm_clock), 1000000, ticks_per_sec);
1861 caplen = size > s->pcap_caplen ? s->pcap_caplen : size;
1863 hdr.ts.tv_sec = ts / 1000000;
1864 hdr.ts.tv_usec = ts % 1000000;
1865 hdr.caplen = caplen;
1867 if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
1868 write(s->fd, buf, caplen) != caplen) {
1869 qemu_log("-net dump write error - stop dump\n");
1877 static void net_dump_cleanup(VLANClientState *vc)
1879 DumpState *s = vc->opaque;
1885 static int net_dump_init(Monitor *mon, VLANState *vlan, const char *device,
1886 const char *name, const char *filename, int len)
1888 struct pcap_file_hdr hdr;
1891 s = qemu_malloc(sizeof(DumpState));
1893 s->fd = open(filename, O_CREAT | O_WRONLY, 0644);
1895 config_error(mon, "-net dump: can't open %s\n", filename);
1899 s->pcap_caplen = len;
1901 hdr.magic = PCAP_MAGIC;
1902 hdr.version_major = 2;
1903 hdr.version_minor = 4;
1906 hdr.snaplen = s->pcap_caplen;
1909 if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
1910 config_error(mon, "-net dump write error: %s\n", strerror(errno));
1916 s->pcap_vc = qemu_new_vlan_client(vlan, device, name, NULL, dump_receive, NULL,
1917 net_dump_cleanup, s);
1918 snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
1919 "dump to %s (len=%d)", filename, len);
1923 /* find or alloc a new VLAN */
1924 VLANState *qemu_find_vlan(int id)
1926 VLANState **pvlan, *vlan;
1927 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1931 vlan = qemu_mallocz(sizeof(VLANState));
1934 pvlan = &first_vlan;
1935 while (*pvlan != NULL)
1936 pvlan = &(*pvlan)->next;
1941 static int nic_get_free_idx(void)
1945 for (index = 0; index < MAX_NICS; index++)
1946 if (!nd_table[index].used)
1951 void qemu_check_nic_model(NICInfo *nd, const char *model)
1953 const char *models[2];
1958 qemu_check_nic_model_list(nd, models, model);
1961 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
1962 const char *default_model)
1964 int i, exit_status = 0;
1967 nd->model = strdup(default_model);
1969 if (strcmp(nd->model, "?") != 0) {
1970 for (i = 0 ; models[i]; i++)
1971 if (strcmp(nd->model, models[i]) == 0)
1974 fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
1978 fprintf(stderr, "qemu: Supported NIC models: ");
1979 for (i = 0 ; models[i]; i++)
1980 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
1985 int net_client_init(Monitor *mon, const char *device, const char *p)
1987 static const char * const fd_params[] = {
1988 "vlan", "name", "fd", NULL
1996 if (get_param_value(buf, sizeof(buf), "vlan", p)) {
1997 vlan_id = strtol(buf, NULL, 0);
1999 vlan = qemu_find_vlan(vlan_id);
2001 if (get_param_value(buf, sizeof(buf), "name", p)) {
2002 name = qemu_strdup(buf);
2004 if (!strcmp(device, "nic")) {
2005 static const char * const nic_params[] = {
2006 "vlan", "name", "macaddr", "model", NULL
2010 int idx = nic_get_free_idx();
2012 if (check_params(buf, sizeof(buf), nic_params, p) < 0) {
2013 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2017 if (idx == -1 || nb_nics >= MAX_NICS) {
2018 config_error(mon, "Too Many NICs\n");
2022 nd = &nd_table[idx];
2023 macaddr = nd->macaddr;
2029 macaddr[5] = 0x56 + idx;
2031 if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
2032 if (parse_macaddr(macaddr, buf) < 0) {
2033 config_error(mon, "invalid syntax for ethernet address\n");
2038 if (get_param_value(buf, sizeof(buf), "model", p)) {
2039 nd->model = strdup(buf);
2046 vlan->nb_guest_devs++;
2049 if (!strcmp(device, "none")) {
2051 config_error(mon, "'none' takes no parameters\n");
2055 /* does nothing. It is needed to signal that no network cards
2060 if (!strcmp(device, "user")) {
2061 static const char * const slirp_params[] = {
2062 "vlan", "name", "hostname", "restrict", "ip", NULL
2067 if (check_params(buf, sizeof(buf), slirp_params, p) < 0) {
2068 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2072 if (get_param_value(buf, sizeof(buf), "hostname", p)) {
2073 pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
2075 if (get_param_value(buf, sizeof(buf), "restrict", p)) {
2076 restricted = (buf[0] == 'y') ? 1 : 0;
2078 if (get_param_value(buf, sizeof(buf), "ip", p)) {
2079 ip = qemu_strdup(buf);
2081 vlan->nb_host_devs++;
2082 ret = net_slirp_init(vlan, device, name, restricted, ip);
2084 } else if (!strcmp(device, "channel")) {
2086 char name[20], *devname;
2087 struct VMChannel *vmc;
2089 port = strtol(p, &devname, 10);
2091 if (port < 1 || port > 65535) {
2092 config_error(mon, "vmchannel wrong port number\n");
2096 vmc = malloc(sizeof(struct VMChannel));
2097 snprintf(name, 20, "vmchannel%ld", port);
2098 vmc->hd = qemu_chr_open(name, devname, NULL);
2100 config_error(mon, "could not open vmchannel device '%s'\n",
2106 slirp_add_exec(3, vmc->hd, 4, port);
2107 qemu_chr_add_handlers(vmc->hd, vmchannel_can_read, vmchannel_read,
2113 if (!strcmp(device, "tap")) {
2114 static const char * const tap_params[] = {
2115 "vlan", "name", "ifname", NULL
2119 if (check_params(buf, sizeof(buf), tap_params, p) < 0) {
2120 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2124 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2125 config_error(mon, "tap: no interface name\n");
2129 vlan->nb_host_devs++;
2130 ret = tap_win32_init(vlan, device, name, ifname);
2132 #elif defined (_AIX)
2134 if (!strcmp(device, "tap")) {
2135 char ifname[64], chkbuf[64];
2136 char setup_script[1024], down_script[1024];
2138 vlan->nb_host_devs++;
2139 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2140 if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
2141 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2145 fd = strtol(buf, NULL, 0);
2146 fcntl(fd, F_SETFL, O_NONBLOCK);
2147 net_tap_fd_init(vlan, device, name, fd);
2150 static const char * const tap_params[] = {
2151 "vlan", "name", "ifname", "script", "downscript", NULL
2153 if (check_params(chkbuf, sizeof(chkbuf), tap_params, p) < 0) {
2154 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2158 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2161 if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
2162 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
2164 if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
2165 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
2167 ret = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
2171 if (!strcmp(device, "socket")) {
2173 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2175 if (check_params(chkbuf, sizeof(chkbuf), fd_params, p) < 0) {
2176 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2180 fd = strtol(buf, NULL, 0);
2182 if (net_socket_fd_init(vlan, device, name, fd, 1))
2184 } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
2185 static const char * const listen_params[] = {
2186 "vlan", "name", "listen", NULL
2188 if (check_params(chkbuf, sizeof(chkbuf), listen_params, p) < 0) {
2189 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2193 ret = net_socket_listen_init(vlan, device, name, buf);
2194 } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
2195 static const char * const connect_params[] = {
2196 "vlan", "name", "connect", NULL
2198 if (check_params(chkbuf, sizeof(chkbuf), connect_params, p) < 0) {
2199 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2203 ret = net_socket_connect_init(vlan, device, name, buf);
2204 } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
2205 static const char * const mcast_params[] = {
2206 "vlan", "name", "mcast", NULL
2208 if (check_params(chkbuf, sizeof(chkbuf), mcast_params, p) < 0) {
2209 config_error(mon, "invalid parameter '%s' in '%s'\n", chkbuf, p);
2213 ret = net_socket_mcast_init(vlan, device, name, buf);
2215 config_error(mon, "Unknown socket options: %s\n", p);
2219 vlan->nb_host_devs++;
2222 if (!strcmp(device, "vde")) {
2223 static const char * const vde_params[] = {
2224 "vlan", "name", "sock", "port", "group", "mode", NULL
2226 char vde_sock[1024], vde_group[512];
2227 int vde_port, vde_mode;
2229 if (check_params(buf, sizeof(buf), vde_params, p) < 0) {
2230 config_error(mon, "invalid parameter '%s' in '%s'\n", buf, p);
2234 vlan->nb_host_devs++;
2235 if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
2238 if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
2239 vde_port = strtol(buf, NULL, 10);
2243 if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
2244 vde_group[0] = '\0';
2246 if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
2247 vde_mode = strtol(buf, NULL, 8);
2251 ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
2254 if (!strcmp(device, "dump")) {
2257 if (get_param_value(buf, sizeof(buf), "len", p) > 0) {
2258 len = strtol(buf, NULL, 0);
2260 if (!get_param_value(buf, sizeof(buf), "file", p)) {
2261 snprintf(buf, sizeof(buf), "qemu-vlan%d.pcap", vlan_id);
2263 ret = net_dump_init(mon, vlan, device, name, buf, len);
2265 config_error(mon, "Unknown network device: %s\n", device);
2270 config_error(mon, "Could not initialize device '%s'\n", device);
2277 void net_client_uninit(NICInfo *nd)
2279 nd->vlan->nb_guest_devs--;
2282 free((void *)nd->model);
2285 static int net_host_check_device(const char *device)
2288 const char *valid_param_list[] = { "tap", "socket", "dump"
2296 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
2297 if (!strncmp(valid_param_list[i], device,
2298 strlen(valid_param_list[i])))
2305 void net_host_device_add(Monitor *mon, const char *device, const char *opts)
2307 if (!net_host_check_device(device)) {
2308 monitor_printf(mon, "invalid host network device %s\n", device);
2311 if (net_client_init(mon, device, opts ? opts : "") < 0) {
2312 monitor_printf(mon, "adding host network device %s failed\n", device);
2316 void net_host_device_remove(Monitor *mon, int vlan_id, const char *device)
2319 VLANClientState *vc;
2321 vlan = qemu_find_vlan(vlan_id);
2323 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
2324 if (!strcmp(vc->name, device)) {
2330 monitor_printf(mon, "can't find device %s\n", device);
2333 if (!net_host_check_device(vc->model)) {
2334 monitor_printf(mon, "invalid host network device %s\n", device);
2337 qemu_del_vlan_client(vc);
2340 int net_client_parse(const char *str)
2348 while (*p != '\0' && *p != ',') {
2349 if ((q - device) < sizeof(device) - 1)
2357 return net_client_init(NULL, device, p);
2360 void do_info_network(Monitor *mon)
2363 VLANClientState *vc;
2365 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2366 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
2367 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
2368 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
2372 int do_set_link(Monitor *mon, const char *name, const char *up_or_down)
2375 VLANClientState *vc = NULL;
2377 for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
2378 for (vc = vlan->first_client; vc != NULL; vc = vc->next)
2379 if (strcmp(vc->name, name) == 0)
2384 monitor_printf(mon, "could not find network device '%s'", name);
2388 if (strcmp(up_or_down, "up") == 0)
2390 else if (strcmp(up_or_down, "down") == 0)
2393 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
2394 "valid\n", up_or_down);
2396 if (vc->link_status_changed)
2397 vc->link_status_changed(vc);
2402 void net_cleanup(void)
2406 /* close network clients */
2407 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2408 VLANClientState *vc = vlan->first_client;
2411 VLANClientState *next = vc->next;
2413 qemu_del_vlan_client(vc);
2420 void net_client_check(void)
2424 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2425 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
2427 if (vlan->nb_guest_devs == 0)
2428 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
2429 if (vlan->nb_host_devs == 0)
2431 "Warning: vlan %d is not connected to host network\n",