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"
122 #if defined(CONFIG_SLIRP)
123 #include "libslirp.h"
127 static VLANState *first_vlan;
129 /***********************************************************/
130 /* network device redirectors */
132 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
133 static void hex_dump(FILE *f, const uint8_t *buf, int size)
137 for(i=0;i<size;i+=16) {
141 fprintf(f, "%08x ", i);
144 fprintf(f, " %02x", buf[i+j]);
151 if (c < ' ' || c > '~')
160 static int parse_macaddr(uint8_t *macaddr, const char *p)
167 offset = strtol(p, &last_char, 0);
168 if (0 == errno && '\0' == *last_char &&
169 offset >= 0 && offset <= 0xFFFFFF) {
170 macaddr[3] = (offset & 0xFF0000) >> 16;
171 macaddr[4] = (offset & 0xFF00) >> 8;
172 macaddr[5] = offset & 0xFF;
175 for(i = 0; i < 6; i++) {
176 macaddr[i] = strtol(p, (char **)&p, 16);
181 if (*p != ':' && *p != '-')
192 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
203 if (len > buf_size - 1)
212 int parse_host_src_port(struct sockaddr_in *haddr,
213 struct sockaddr_in *saddr,
214 const char *input_str)
216 char *str = strdup(input_str);
217 char *host_str = str;
219 const char *src_str2;
223 * Chop off any extra arguments at the end of the string which
224 * would start with a comma, then fill in the src port information
225 * if it was provided else use the "any address" and "any port".
227 if ((ptr = strchr(str,',')))
230 if ((src_str = strchr(input_str,'@'))) {
235 if (parse_host_port(haddr, host_str) < 0)
239 if (!src_str || *src_str == '\0')
242 if (parse_host_port(saddr, src_str2) < 0)
253 int parse_host_port(struct sockaddr_in *saddr, const char *str)
261 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
263 saddr->sin_family = AF_INET;
264 if (buf[0] == '\0') {
265 saddr->sin_addr.s_addr = 0;
267 if (qemu_isdigit(buf[0])) {
268 if (!inet_aton(buf, &saddr->sin_addr))
271 if ((he = gethostbyname(buf)) == NULL)
273 saddr->sin_addr = *(struct in_addr *)he->h_addr;
276 port = strtol(p, (char **)&r, 0);
279 saddr->sin_port = htons(port);
283 #if !defined(_WIN32) && 0
284 static int parse_unix_path(struct sockaddr_un *uaddr, const char *str)
289 len = MIN(108, strlen(str));
290 p = strchr(str, ',');
292 len = MIN(len, p - str);
294 memset(uaddr, 0, sizeof(*uaddr));
296 uaddr->sun_family = AF_UNIX;
297 memcpy(uaddr->sun_path, str, len);
303 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
305 snprintf(vc->info_str, sizeof(vc->info_str),
306 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
308 macaddr[0], macaddr[1], macaddr[2],
309 macaddr[3], macaddr[4], macaddr[5]);
312 static char *assign_name(VLANClientState *vc1, const char *model)
318 for (vlan = first_vlan; vlan; vlan = vlan->next) {
321 for (vc = vlan->first_client; vc; vc = vc->next)
322 if (vc != vc1 && strcmp(vc->model, model) == 0)
326 snprintf(buf, sizeof(buf), "%s.%d", model, id);
331 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
334 IOReadHandler *fd_read,
335 IOCanRWHandler *fd_can_read,
338 VLANClientState *vc, **pvc;
339 vc = qemu_mallocz(sizeof(VLANClientState));
340 vc->model = strdup(model);
342 vc->name = strdup(name);
344 vc->name = assign_name(vc, model);
345 vc->fd_read = fd_read;
346 vc->fd_can_read = fd_can_read;
351 pvc = &vlan->first_client;
358 void qemu_del_vlan_client(VLANClientState *vc)
360 VLANClientState **pvc = &vc->vlan->first_client;
373 VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
375 VLANClientState **pvc = &vlan->first_client;
378 if ((*pvc)->opaque == opaque)
386 int qemu_can_send_packet(VLANClientState *vc1)
388 VLANState *vlan = vc1->vlan;
391 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
393 if (vc->fd_can_read && vc->fd_can_read(vc->opaque))
400 void qemu_send_packet(VLANClientState *vc1, const uint8_t *buf, int size)
402 VLANState *vlan = vc1->vlan;
409 printf("vlan %d send:\n", vlan->id);
410 hex_dump(stdout, buf, size);
412 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
413 if (vc != vc1 && !vc->link_down) {
414 vc->fd_read(vc->opaque, buf, size);
419 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
422 uint8_t buffer[4096];
426 for (i = 0; i < iovcnt; i++) {
429 len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
430 memcpy(buffer + offset, iov[i].iov_base, len);
434 vc->fd_read(vc->opaque, buffer, offset);
439 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
444 for (i = 0; i < iovcnt; i++)
445 offset += iov[i].iov_len;
449 ssize_t qemu_sendv_packet(VLANClientState *vc1, const struct iovec *iov,
452 VLANState *vlan = vc1->vlan;
457 return calc_iov_length(iov, iovcnt);
459 for (vc = vlan->first_client; vc != NULL; vc = vc->next) {
466 len = calc_iov_length(iov, iovcnt);
468 len = vc->fd_readv(vc->opaque, iov, iovcnt);
469 else if (vc->fd_read)
470 len = vc_sendv_compat(vc, iov, iovcnt);
472 max_len = MAX(max_len, len);
478 #if defined(CONFIG_SLIRP)
480 /* slirp network adapter */
482 static int slirp_inited;
483 static int slirp_restrict;
484 static char *slirp_ip;
485 static VLANClientState *slirp_vc;
487 int slirp_can_output(void)
489 return !slirp_vc || qemu_can_send_packet(slirp_vc);
492 void slirp_output(const uint8_t *pkt, int pkt_len)
495 printf("slirp output:\n");
496 hex_dump(stdout, pkt, pkt_len);
500 qemu_send_packet(slirp_vc, pkt, pkt_len);
503 int slirp_is_inited(void)
508 static void slirp_receive(void *opaque, const uint8_t *buf, int size)
511 printf("slirp input:\n");
512 hex_dump(stdout, buf, size);
514 slirp_input(buf, size);
517 static int net_slirp_init(VLANState *vlan, const char *model, const char *name)
521 slirp_init(slirp_restrict, slirp_ip);
523 slirp_vc = qemu_new_vlan_client(vlan, model, name,
524 slirp_receive, NULL, NULL);
525 slirp_vc->info_str[0] = '\0';
529 void net_slirp_redir(const char *redir_str)
534 struct in_addr guest_addr;
535 int host_port, guest_port;
539 slirp_init(slirp_restrict, slirp_ip);
543 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
545 if (!strcmp(buf, "tcp")) {
547 } else if (!strcmp(buf, "udp")) {
553 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
555 host_port = strtol(buf, &r, 0);
559 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
561 if (buf[0] == '\0') {
562 pstrcpy(buf, sizeof(buf), "10.0.2.15");
564 if (!inet_aton(buf, &guest_addr))
567 guest_port = strtol(p, &r, 0);
571 if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
572 fprintf(stderr, "qemu: could not set up redirection\n");
577 fprintf(stderr, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
583 static char smb_dir[1024];
585 static void erase_dir(char *dir_name)
591 /* erase all the files in the directory */
592 if ((d = opendir(dir_name)) != NULL) {
597 if (strcmp(de->d_name, ".") != 0 &&
598 strcmp(de->d_name, "..") != 0) {
599 snprintf(filename, sizeof(filename), "%s/%s",
600 smb_dir, de->d_name);
601 if (unlink(filename) != 0) /* is it a directory? */
610 /* automatic user mode samba server configuration */
611 static void smb_exit(void)
616 /* automatic user mode samba server configuration */
617 void net_slirp_smb(const char *exported_dir)
620 char smb_cmdline[1024];
625 slirp_init(slirp_restrict, slirp_ip);
628 /* XXX: better tmp dir construction */
629 snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%d", getpid());
630 if (mkdir(smb_dir, 0700) < 0) {
631 fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
634 snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
636 f = fopen(smb_conf, "w");
638 fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
645 "socket address=127.0.0.1\n"
647 "lock directory=%s\n"
648 "log file=%s/log.smbd\n"
649 "smb passwd file=%s/smbpasswd\n"
665 snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s",
666 SMBD_COMMAND, smb_conf);
668 slirp_add_exec(0, smb_cmdline, 4, 139);
671 #endif /* !defined(_WIN32) */
672 void do_info_slirp(Monitor *mon)
682 static int vmchannel_can_read(void *opaque)
684 struct VMChannel *vmc = (struct VMChannel*)opaque;
685 return slirp_socket_can_recv(4, vmc->port);
688 static void vmchannel_read(void *opaque, const uint8_t *buf, int size)
690 struct VMChannel *vmc = (struct VMChannel*)opaque;
691 slirp_socket_recv(4, vmc->port, buf, size);
694 #endif /* CONFIG_SLIRP */
698 typedef struct TAPState {
701 char down_script[1024];
702 char down_script_arg[128];
706 static ssize_t tap_receive_iov(void *opaque, const struct iovec *iov,
709 TAPState *s = opaque;
713 len = writev(s->fd, iov, iovcnt);
714 } while (len == -1 && (errno == EINTR || errno == EAGAIN));
720 static void tap_receive(void *opaque, const uint8_t *buf, int size)
722 TAPState *s = opaque;
725 ret = write(s->fd, buf, size);
726 if (ret < 0 && (errno == EINTR || errno == EAGAIN)) {
733 static void tap_send(void *opaque)
735 TAPState *s = opaque;
742 sbuf.maxlen = sizeof(buf);
744 size = getmsg(s->fd, NULL, &sbuf, &f) >=0 ? sbuf.len : -1;
746 size = read(s->fd, buf, sizeof(buf));
749 qemu_send_packet(s->vc, buf, size);
755 static TAPState *net_tap_fd_init(VLANState *vlan,
762 s = qemu_mallocz(sizeof(TAPState));
764 s->vc = qemu_new_vlan_client(vlan, model, name, tap_receive, NULL, s);
766 s->vc->fd_readv = tap_receive_iov;
768 qemu_set_fd_handler(s->fd, tap_send, NULL, s);
769 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "fd=%d", fd);
773 #if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
774 static int tap_open(char *ifname, int ifname_size)
780 TFR(fd = open("/dev/tap", O_RDWR));
782 fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
787 dev = devname(s.st_rdev, S_IFCHR);
788 pstrcpy(ifname, ifname_size, dev);
790 fcntl(fd, F_SETFL, O_NONBLOCK);
793 #elif defined(__sun__)
794 #define TUNNEWPPA (('T'<<16) | 0x0001)
796 * Allocate TAP device, returns opened fd.
797 * Stores dev name in the first arg(must be large enough).
799 int tap_alloc(char *dev, size_t dev_size)
801 int tap_fd, if_fd, ppa = -1;
802 static int ip_fd = 0;
805 static int arp_fd = 0;
806 int ip_muxid, arp_muxid;
807 struct strioctl strioc_if, strioc_ppa;
808 int link_type = I_PLINK;;
810 char actual_name[32] = "";
812 memset(&ifr, 0x0, sizeof(ifr));
816 while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
820 /* Check if IP device was opened */
824 TFR(ip_fd = open("/dev/udp", O_RDWR, 0));
826 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
830 TFR(tap_fd = open("/dev/tap", O_RDWR, 0));
832 syslog(LOG_ERR, "Can't open /dev/tap");
836 /* Assign a new PPA and get its unit number. */
837 strioc_ppa.ic_cmd = TUNNEWPPA;
838 strioc_ppa.ic_timout = 0;
839 strioc_ppa.ic_len = sizeof(ppa);
840 strioc_ppa.ic_dp = (char *)&ppa;
841 if ((ppa = ioctl (tap_fd, I_STR, &strioc_ppa)) < 0)
842 syslog (LOG_ERR, "Can't assign new interface");
844 TFR(if_fd = open("/dev/tap", O_RDWR, 0));
846 syslog(LOG_ERR, "Can't open /dev/tap (2)");
849 if(ioctl(if_fd, I_PUSH, "ip") < 0){
850 syslog(LOG_ERR, "Can't push IP module");
854 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0)
855 syslog(LOG_ERR, "Can't get flags\n");
857 snprintf (actual_name, 32, "tap%d", ppa);
858 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
861 /* Assign ppa according to the unit number returned by tun device */
863 if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0)
864 syslog (LOG_ERR, "Can't set PPA %d", ppa);
865 if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0)
866 syslog (LOG_ERR, "Can't get flags\n");
867 /* Push arp module to if_fd */
868 if (ioctl (if_fd, I_PUSH, "arp") < 0)
869 syslog (LOG_ERR, "Can't push ARP module (2)");
871 /* Push arp module to ip_fd */
872 if (ioctl (ip_fd, I_POP, NULL) < 0)
873 syslog (LOG_ERR, "I_POP failed\n");
874 if (ioctl (ip_fd, I_PUSH, "arp") < 0)
875 syslog (LOG_ERR, "Can't push ARP module (3)\n");
877 TFR(arp_fd = open ("/dev/tap", O_RDWR, 0));
879 syslog (LOG_ERR, "Can't open %s\n", "/dev/tap");
881 /* Set ifname to arp */
882 strioc_if.ic_cmd = SIOCSLIFNAME;
883 strioc_if.ic_timout = 0;
884 strioc_if.ic_len = sizeof(ifr);
885 strioc_if.ic_dp = (char *)𝔦
886 if (ioctl(arp_fd, I_STR, &strioc_if) < 0){
887 syslog (LOG_ERR, "Can't set ifname to arp\n");
890 if((ip_muxid = ioctl(ip_fd, I_LINK, if_fd)) < 0){
891 syslog(LOG_ERR, "Can't link TAP device to IP");
895 if ((arp_muxid = ioctl (ip_fd, link_type, arp_fd)) < 0)
896 syslog (LOG_ERR, "Can't link TAP device to ARP");
900 memset(&ifr, 0x0, sizeof(ifr));
901 pstrcpy(ifr.lifr_name, sizeof(ifr.lifr_name), actual_name);
902 ifr.lifr_ip_muxid = ip_muxid;
903 ifr.lifr_arp_muxid = arp_muxid;
905 if (ioctl (ip_fd, SIOCSLIFMUXID, &ifr) < 0)
907 ioctl (ip_fd, I_PUNLINK , arp_muxid);
908 ioctl (ip_fd, I_PUNLINK, ip_muxid);
909 syslog (LOG_ERR, "Can't set multiplexor id");
912 snprintf(dev, dev_size, "tap%d", ppa);
916 static int tap_open(char *ifname, int ifname_size)
920 if( (fd = tap_alloc(dev, sizeof(dev))) < 0 ){
921 fprintf(stderr, "Cannot allocate TAP device\n");
924 pstrcpy(ifname, ifname_size, dev);
925 fcntl(fd, F_SETFL, O_NONBLOCK);
929 static int tap_open(char *ifname, int ifname_size)
931 fprintf (stderr, "no tap on AIX\n");
935 static int tap_open(char *ifname, int ifname_size)
940 TFR(fd = open("/dev/net/tun", O_RDWR));
942 fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
945 memset(&ifr, 0, sizeof(ifr));
946 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
947 if (ifname[0] != '\0')
948 pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
950 pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
951 ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
953 fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
957 pstrcpy(ifname, ifname_size, ifr.ifr_name);
958 fcntl(fd, F_SETFL, O_NONBLOCK);
963 static int launch_script(const char *setup_script, const char *ifname, int fd)
969 /* try to launch network script */
973 int open_max = sysconf (_SC_OPEN_MAX), i;
974 for (i = 0; i < open_max; i++)
975 if (i != STDIN_FILENO &&
976 i != STDOUT_FILENO &&
977 i != STDERR_FILENO &&
982 *parg++ = (char *)setup_script;
983 *parg++ = (char *)ifname;
985 execv(setup_script, args);
988 while (waitpid(pid, &status, 0) != pid);
989 if (!WIFEXITED(status) ||
990 WEXITSTATUS(status) != 0) {
991 fprintf(stderr, "%s: could not launch network script\n",
999 static int net_tap_init(VLANState *vlan, const char *model,
1000 const char *name, const char *ifname1,
1001 const char *setup_script, const char *down_script)
1007 if (ifname1 != NULL)
1008 pstrcpy(ifname, sizeof(ifname), ifname1);
1011 TFR(fd = tap_open(ifname, sizeof(ifname)));
1015 if (!setup_script || !strcmp(setup_script, "no"))
1017 if (setup_script[0] != '\0') {
1018 if (launch_script(setup_script, ifname, fd))
1021 s = net_tap_fd_init(vlan, model, name, fd);
1024 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1025 "ifname=%s,script=%s,downscript=%s",
1026 ifname, setup_script, down_script);
1027 if (down_script && strcmp(down_script, "no")) {
1028 snprintf(s->down_script, sizeof(s->down_script), "%s", down_script);
1029 snprintf(s->down_script_arg, sizeof(s->down_script_arg), "%s", ifname);
1034 #endif /* !_WIN32 */
1036 #if defined(CONFIG_VDE)
1037 typedef struct VDEState {
1038 VLANClientState *vc;
1042 static void vde_to_qemu(void *opaque)
1044 VDEState *s = opaque;
1048 size = vde_recv(s->vde, buf, sizeof(buf), 0);
1050 qemu_send_packet(s->vc, buf, size);
1054 static void vde_from_qemu(void *opaque, const uint8_t *buf, int size)
1056 VDEState *s = opaque;
1059 ret = vde_send(s->vde, buf, size, 0);
1060 if (ret < 0 && errno == EINTR) {
1067 static int net_vde_init(VLANState *vlan, const char *model,
1068 const char *name, const char *sock,
1069 int port, const char *group, int mode)
1072 char *init_group = strlen(group) ? (char *)group : NULL;
1073 char *init_sock = strlen(sock) ? (char *)sock : NULL;
1075 struct vde_open_args args = {
1077 .group = init_group,
1081 s = qemu_mallocz(sizeof(VDEState));
1082 s->vde = vde_open(init_sock, "QEMU", &args);
1087 s->vc = qemu_new_vlan_client(vlan, model, name, vde_from_qemu, NULL, s);
1088 qemu_set_fd_handler(vde_datafd(s->vde), vde_to_qemu, NULL, s);
1089 snprintf(s->vc->info_str, sizeof(s->vc->info_str), "sock=%s,fd=%d",
1090 sock, vde_datafd(s->vde));
1095 /* network connection */
1096 typedef struct NetSocketState {
1097 VLANClientState *vc;
1099 int state; /* 0 = getting length, 1 = getting data */
1101 unsigned int packet_len;
1103 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1106 typedef struct NetSocketListenState {
1111 } NetSocketListenState;
1113 /* XXX: we consider we can send the whole packet without blocking */
1114 static void net_socket_receive(void *opaque, const uint8_t *buf, int size)
1116 NetSocketState *s = opaque;
1120 send_all(s->fd, (const uint8_t *)&len, sizeof(len));
1121 send_all(s->fd, buf, size);
1124 static void net_socket_receive_dgram(void *opaque, const uint8_t *buf, int size)
1126 NetSocketState *s = opaque;
1127 sendto(s->fd, buf, size, 0,
1128 (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
1131 static void net_socket_send(void *opaque)
1133 NetSocketState *s = opaque;
1139 size = recv(s->fd, buf1, sizeof(buf1), 0);
1141 err = socket_error();
1142 if (err != EWOULDBLOCK)
1144 } else if (size == 0) {
1145 /* end of connection */
1147 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1153 /* reassemble a packet from the network */
1159 memcpy(s->buf + s->index, buf, l);
1163 if (s->index == 4) {
1165 s->packet_len = ntohl(*(uint32_t *)s->buf);
1171 l = s->packet_len - s->index;
1174 if (s->index + l <= sizeof(s->buf)) {
1175 memcpy(s->buf + s->index, buf, l);
1177 fprintf(stderr, "serious error: oversized packet received,"
1178 "connection terminated.\n");
1186 if (s->index >= s->packet_len) {
1187 qemu_send_packet(s->vc, s->buf, s->packet_len);
1196 static void net_socket_send_dgram(void *opaque)
1198 NetSocketState *s = opaque;
1201 size = recv(s->fd, s->buf, sizeof(s->buf), 0);
1205 /* end of connection */
1206 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
1209 qemu_send_packet(s->vc, s->buf, size);
1212 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
1217 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
1218 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1219 inet_ntoa(mcastaddr->sin_addr),
1220 (int)ntohl(mcastaddr->sin_addr.s_addr));
1224 fd = socket(PF_INET, SOCK_DGRAM, 0);
1226 perror("socket(PF_INET, SOCK_DGRAM)");
1231 ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
1232 (const char *)&val, sizeof(val));
1234 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1238 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
1244 /* Add host to multicast group */
1245 imr.imr_multiaddr = mcastaddr->sin_addr;
1246 imr.imr_interface.s_addr = htonl(INADDR_ANY);
1248 ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
1249 (const char *)&imr, sizeof(struct ip_mreq));
1251 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1255 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1257 ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
1258 (const char *)&val, sizeof(val));
1260 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1264 socket_set_nonblock(fd);
1272 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan,
1275 int fd, int is_connected)
1277 struct sockaddr_in saddr;
1279 socklen_t saddr_len;
1282 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1283 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1284 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1288 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
1290 if (saddr.sin_addr.s_addr==0) {
1291 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1295 /* clone dgram socket */
1296 newfd = net_socket_mcast_create(&saddr);
1298 /* error already reported by net_socket_mcast_create() */
1302 /* clone newfd to fd, close newfd */
1307 fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1308 fd, strerror(errno));
1313 s = qemu_mallocz(sizeof(NetSocketState));
1316 s->vc = qemu_new_vlan_client(vlan, model, name, net_socket_receive_dgram, NULL, s);
1317 qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
1319 /* mcast: save bound address as dst */
1320 if (is_connected) s->dgram_dst=saddr;
1322 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1323 "socket: fd=%d (%s mcast=%s:%d)",
1324 fd, is_connected? "cloned" : "",
1325 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1329 static void net_socket_connect(void *opaque)
1331 NetSocketState *s = opaque;
1332 qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
1335 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan,
1338 int fd, int is_connected)
1341 s = qemu_mallocz(sizeof(NetSocketState));
1343 s->vc = qemu_new_vlan_client(vlan, model, name,
1344 net_socket_receive, NULL, s);
1345 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1346 "socket: fd=%d", fd);
1348 net_socket_connect(s);
1350 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
1355 static NetSocketState *net_socket_fd_init(VLANState *vlan,
1356 const char *model, const char *name,
1357 int fd, int is_connected)
1359 int so_type=-1, optlen=sizeof(so_type);
1361 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1362 (socklen_t *)&optlen)< 0) {
1363 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd);
1368 return net_socket_fd_init_dgram(vlan, model, name, fd, is_connected);
1370 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
1372 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1373 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
1374 return net_socket_fd_init_stream(vlan, model, name, fd, is_connected);
1379 static void net_socket_accept(void *opaque)
1381 NetSocketListenState *s = opaque;
1383 struct sockaddr_in saddr;
1388 len = sizeof(saddr);
1389 fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
1390 if (fd < 0 && errno != EINTR) {
1392 } else if (fd >= 0) {
1396 s1 = net_socket_fd_init(s->vlan, s->model, s->name, fd, 1);
1400 snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
1401 "socket: connection from %s:%d",
1402 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1406 static int net_socket_listen_init(VLANState *vlan,
1409 const char *host_str)
1411 NetSocketListenState *s;
1413 struct sockaddr_in saddr;
1415 if (parse_host_port(&saddr, host_str) < 0)
1418 s = qemu_mallocz(sizeof(NetSocketListenState));
1420 fd = socket(PF_INET, SOCK_STREAM, 0);
1425 socket_set_nonblock(fd);
1427 /* allow fast reuse */
1429 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
1431 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1436 ret = listen(fd, 0);
1442 s->model = strdup(model);
1443 s->name = strdup(name);
1445 qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
1449 static int net_socket_connect_init(VLANState *vlan,
1452 const char *host_str)
1455 int fd, connected, ret, err;
1456 struct sockaddr_in saddr;
1458 if (parse_host_port(&saddr, host_str) < 0)
1461 fd = socket(PF_INET, SOCK_STREAM, 0);
1466 socket_set_nonblock(fd);
1470 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
1472 err = socket_error();
1473 if (err == EINTR || err == EWOULDBLOCK) {
1474 } else if (err == EINPROGRESS) {
1477 } else if (err == WSAEALREADY) {
1490 s = net_socket_fd_init(vlan, model, name, fd, connected);
1493 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1494 "socket: connect to %s:%d",
1495 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1499 static int net_socket_mcast_init(VLANState *vlan,
1502 const char *host_str)
1506 struct sockaddr_in saddr;
1508 if (parse_host_port(&saddr, host_str) < 0)
1512 fd = net_socket_mcast_create(&saddr);
1516 s = net_socket_fd_init(vlan, model, name, fd, 0);
1520 s->dgram_dst = saddr;
1522 snprintf(s->vc->info_str, sizeof(s->vc->info_str),
1523 "socket: mcast=%s:%d",
1524 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
1529 /* find or alloc a new VLAN */
1530 VLANState *qemu_find_vlan(int id)
1532 VLANState **pvlan, *vlan;
1533 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1537 vlan = qemu_mallocz(sizeof(VLANState));
1540 pvlan = &first_vlan;
1541 while (*pvlan != NULL)
1542 pvlan = &(*pvlan)->next;
1547 static int nic_get_free_idx(void)
1551 for (index = 0; index < MAX_NICS; index++)
1552 if (!nd_table[index].used)
1557 void qemu_check_nic_model(NICInfo *nd, const char *model)
1559 const char *models[2];
1564 qemu_check_nic_model_list(nd, models, model);
1567 void qemu_check_nic_model_list(NICInfo *nd, const char * const *models,
1568 const char *default_model)
1570 int i, exit_status = 0;
1573 nd->model = strdup(default_model);
1575 if (strcmp(nd->model, "?") != 0) {
1576 for (i = 0 ; models[i]; i++)
1577 if (strcmp(nd->model, models[i]) == 0)
1580 fprintf(stderr, "qemu: Unsupported NIC model: %s\n", nd->model);
1584 fprintf(stderr, "qemu: Supported NIC models: ");
1585 for (i = 0 ; models[i]; i++)
1586 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
1591 int net_client_init(const char *device, const char *p)
1599 if (get_param_value(buf, sizeof(buf), "vlan", p)) {
1600 vlan_id = strtol(buf, NULL, 0);
1602 vlan = qemu_find_vlan(vlan_id);
1604 fprintf(stderr, "Could not create vlan %d\n", vlan_id);
1607 if (get_param_value(buf, sizeof(buf), "name", p)) {
1610 if (!strcmp(device, "nic")) {
1613 int idx = nic_get_free_idx();
1615 if (idx == -1 || nb_nics >= MAX_NICS) {
1616 fprintf(stderr, "Too Many NICs\n");
1619 nd = &nd_table[idx];
1620 macaddr = nd->macaddr;
1626 macaddr[5] = 0x56 + idx;
1628 if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
1629 if (parse_macaddr(macaddr, buf) < 0) {
1630 fprintf(stderr, "invalid syntax for ethernet address\n");
1634 if (get_param_value(buf, sizeof(buf), "model", p)) {
1635 nd->model = strdup(buf);
1642 vlan->nb_guest_devs++;
1645 if (!strcmp(device, "none")) {
1646 /* does nothing. It is needed to signal that no network cards
1651 if (!strcmp(device, "user")) {
1652 if (get_param_value(buf, sizeof(buf), "hostname", p)) {
1653 pstrcpy(slirp_hostname, sizeof(slirp_hostname), buf);
1655 if (get_param_value(buf, sizeof(buf), "restrict", p)) {
1656 slirp_restrict = (buf[0] == 'y') ? 1 : 0;
1658 if (get_param_value(buf, sizeof(buf), "ip", p)) {
1659 slirp_ip = strdup(buf);
1661 vlan->nb_host_devs++;
1662 ret = net_slirp_init(vlan, device, name);
1663 } else if (!strcmp(device, "channel")) {
1665 char name[20], *devname;
1666 struct VMChannel *vmc;
1668 port = strtol(p, &devname, 10);
1670 if (port < 1 || port > 65535) {
1671 fprintf(stderr, "vmchannel wrong port number\n");
1674 vmc = malloc(sizeof(struct VMChannel));
1675 snprintf(name, 20, "vmchannel%ld", port);
1676 vmc->hd = qemu_chr_open(name, devname, NULL);
1678 fprintf(stderr, "qemu: could not open vmchannel device"
1683 slirp_add_exec(3, vmc->hd, 4, port);
1684 qemu_chr_add_handlers(vmc->hd, vmchannel_can_read, vmchannel_read,
1690 if (!strcmp(device, "tap")) {
1692 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1693 fprintf(stderr, "tap: no interface name\n");
1696 vlan->nb_host_devs++;
1697 ret = tap_win32_init(vlan, device, name, ifname);
1699 #elif defined (_AIX)
1701 if (!strcmp(device, "tap")) {
1703 char setup_script[1024], down_script[1024];
1705 vlan->nb_host_devs++;
1706 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1707 fd = strtol(buf, NULL, 0);
1708 fcntl(fd, F_SETFL, O_NONBLOCK);
1710 if (net_tap_fd_init(vlan, device, name, fd))
1713 if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
1716 if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
1717 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
1719 if (get_param_value(down_script, sizeof(down_script), "downscript", p) == 0) {
1720 pstrcpy(down_script, sizeof(down_script), DEFAULT_NETWORK_DOWN_SCRIPT);
1722 ret = net_tap_init(vlan, device, name, ifname, setup_script, down_script);
1726 if (!strcmp(device, "socket")) {
1727 if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
1729 fd = strtol(buf, NULL, 0);
1731 if (net_socket_fd_init(vlan, device, name, fd, 1))
1733 } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
1734 ret = net_socket_listen_init(vlan, device, name, buf);
1735 } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
1736 ret = net_socket_connect_init(vlan, device, name, buf);
1737 } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
1738 ret = net_socket_mcast_init(vlan, device, name, buf);
1740 fprintf(stderr, "Unknown socket options: %s\n", p);
1743 vlan->nb_host_devs++;
1746 if (!strcmp(device, "vde")) {
1747 char vde_sock[1024], vde_group[512];
1748 int vde_port, vde_mode;
1749 vlan->nb_host_devs++;
1750 if (get_param_value(vde_sock, sizeof(vde_sock), "sock", p) <= 0) {
1753 if (get_param_value(buf, sizeof(buf), "port", p) > 0) {
1754 vde_port = strtol(buf, NULL, 10);
1758 if (get_param_value(vde_group, sizeof(vde_group), "group", p) <= 0) {
1759 vde_group[0] = '\0';
1761 if (get_param_value(buf, sizeof(buf), "mode", p) > 0) {
1762 vde_mode = strtol(buf, NULL, 8);
1766 ret = net_vde_init(vlan, device, name, vde_sock, vde_port, vde_group, vde_mode);
1770 fprintf(stderr, "Unknown network device: %s\n", device);
1776 fprintf(stderr, "Could not initialize device '%s'\n", device);
1783 void net_client_uninit(NICInfo *nd)
1785 nd->vlan->nb_guest_devs--;
1788 free((void *)nd->model);
1791 static int net_host_check_device(const char *device)
1794 const char *valid_param_list[] = { "tap", "socket"
1802 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
1803 if (!strncmp(valid_param_list[i], device,
1804 strlen(valid_param_list[i])))
1811 void net_host_device_add(Monitor *mon, const char *device, const char *opts)
1813 if (!net_host_check_device(device)) {
1814 monitor_printf(mon, "invalid host network device %s\n", device);
1817 net_client_init(device, opts);
1820 void net_host_device_remove(Monitor *mon, int vlan_id, const char *device)
1823 VLANClientState *vc;
1825 vlan = qemu_find_vlan(vlan_id);
1827 monitor_printf(mon, "can't find vlan %d\n", vlan_id);
1831 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
1832 if (!strcmp(vc->name, device))
1836 monitor_printf(mon, "can't find device %s\n", device);
1839 qemu_del_vlan_client(vc);
1842 int net_client_parse(const char *str)
1850 while (*p != '\0' && *p != ',') {
1851 if ((q - device) < sizeof(device) - 1)
1859 return net_client_init(device, p);
1862 void do_info_network(Monitor *mon)
1865 VLANClientState *vc;
1867 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1868 monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
1869 for(vc = vlan->first_client; vc != NULL; vc = vc->next)
1870 monitor_printf(mon, " %s: %s\n", vc->name, vc->info_str);
1874 int do_set_link(Monitor *mon, const char *name, const char *up_or_down)
1877 VLANClientState *vc = NULL;
1879 for (vlan = first_vlan; vlan != NULL; vlan = vlan->next)
1880 for (vc = vlan->first_client; vc != NULL; vc = vc->next)
1881 if (strcmp(vc->name, name) == 0)
1886 monitor_printf(mon, "could not find network device '%s'", name);
1890 if (strcmp(up_or_down, "up") == 0)
1892 else if (strcmp(up_or_down, "down") == 0)
1895 monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
1896 "valid\n", up_or_down);
1898 if (vc->link_status_changed)
1899 vc->link_status_changed(vc);
1904 void net_cleanup(void)
1908 #if !defined(_WIN32)
1909 /* close network clients */
1910 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1911 VLANClientState *vc;
1913 for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
1914 if (vc->fd_read == tap_receive) {
1915 TAPState *s = vc->opaque;
1917 if (s->down_script[0])
1918 launch_script(s->down_script, s->down_script_arg, s->fd);
1920 #if defined(CONFIG_VDE)
1921 if (vc->fd_read == vde_from_qemu) {
1922 VDEState *s = vc->opaque;
1931 void net_client_check(void)
1935 for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1936 if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
1938 if (vlan->nb_guest_devs == 0)
1939 fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1940 if (vlan->nb_host_devs == 0)
1942 "Warning: vlan %d is not connected to host network\n",