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
24 #include "qemu-common.h"
28 #include "qemu-timer.h"
29 #include "qemu-char.h"
30 #include "audio/audio.h"
41 #include <sys/times.h>
45 #include <sys/ioctl.h>
46 #include <sys/resource.h>
47 #include <sys/socket.h>
48 #include <netinet/in.h>
51 #include <net/if_tap.h>
54 #include <linux/if_tun.h>
56 #include <arpa/inet.h>
59 #include <sys/select.h>
67 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
68 #include <freebsd/stdlib.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> */
80 #include <linux/ppdev.h>
81 #include <linux/parport.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>
101 #include "qemu_socket.h"
103 #if defined(CONFIG_SLIRP)
104 #include "libslirp.h"
107 #if defined(__OpenBSD__)
111 #if defined(CONFIG_VDE)
112 #include <libvdeplug.h>
117 #include <sys/timeb.h>
118 #include <mmsystem.h>
119 #define getopt_long_only getopt_long
120 #define memalign(align, size) malloc(size)
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
)
133 for(i
=0;i
<size
;i
+=16) {
137 fprintf(f
, "%08x ", i
);
140 fprintf(f
, " %02x", buf
[i
+j
]);
147 if (c
< ' ' || c
> '~')
156 static int parse_macaddr(uint8_t *macaddr
, const char *p
)
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;
171 for(i
= 0; i
< 6; i
++) {
172 macaddr
[i
] = strtol(p
, (char **)&p
, 16);
177 if (*p
!= ':' && *p
!= '-')
188 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
199 if (len
> buf_size
- 1)
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
;
215 const char *src_str2
;
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
,',')))
226 if ((src_str
= strchr(input_str
,'@'))) {
231 if (parse_host_port(haddr
, host_str
) < 0)
235 if (!src_str
|| *src_str
== '\0')
238 if (parse_host_port(saddr
, src_str2
) < 0)
249 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
257 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
259 saddr
->sin_family
= AF_INET
;
260 if (buf
[0] == '\0') {
261 saddr
->sin_addr
.s_addr
= 0;
263 if (qemu_isdigit(buf
[0])) {
264 if (!inet_aton(buf
, &saddr
->sin_addr
))
267 if ((he
= gethostbyname(buf
)) == NULL
)
269 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
272 port
= strtol(p
, (char **)&r
, 0);
275 saddr
->sin_port
= htons(port
);
279 #if !defined(_WIN32) && 0
280 static int parse_unix_path(struct sockaddr_un
*uaddr
, const char *str
)
285 len
= MIN(108, strlen(str
));
286 p
= strchr(str
, ',');
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
);
299 void qemu_format_nic_info_str(VLANClientState
*vc
, uint8_t macaddr
[6])
301 snprintf(vc
->info_str
, sizeof(vc
->info_str
),
302 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
304 macaddr
[0], macaddr
[1], macaddr
[2],
305 macaddr
[3], macaddr
[4], macaddr
[5]);
308 static char *assign_name(VLANClientState
*vc1
, const char *model
)
314 for (vlan
= first_vlan
; vlan
; vlan
= vlan
->next
) {
317 for (vc
= vlan
->first_client
; vc
; vc
= vc
->next
)
318 if (vc
!= vc1
&& strcmp(vc
->model
, model
) == 0)
322 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
327 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
330 IOReadHandler
*fd_read
,
331 IOCanRWHandler
*fd_can_read
,
335 VLANClientState
*vc
, **pvc
;
336 vc
= qemu_mallocz(sizeof(VLANClientState
));
337 vc
->model
= strdup(model
);
339 vc
->name
= strdup(name
);
341 vc
->name
= assign_name(vc
, model
);
342 vc
->fd_read
= fd_read
;
343 vc
->fd_can_read
= fd_can_read
;
344 vc
->cleanup
= cleanup
;
349 pvc
= &vlan
->first_client
;
356 void qemu_del_vlan_client(VLANClientState
*vc
)
358 VLANClientState
**pvc
= &vc
->vlan
->first_client
;
374 VLANClientState
*qemu_find_vlan_client(VLANState
*vlan
, void *opaque
)
376 VLANClientState
**pvc
= &vlan
->first_client
;
379 if ((*pvc
)->opaque
== opaque
)
387 int qemu_can_send_packet(VLANClientState
*vc1
)
389 VLANState
*vlan
= vc1
->vlan
;
392 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
394 if (vc
->fd_can_read
&& vc
->fd_can_read(vc
->opaque
))
401 void qemu_send_packet(VLANClientState
*vc1
, const uint8_t *buf
, int size
)
403 VLANState
*vlan
= vc1
->vlan
;
410 printf("vlan %d send:\n", vlan
->id
);
411 hex_dump(stdout
, buf
, size
);
413 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
414 if (vc
!= vc1
&& !vc
->link_down
) {
415 vc
->fd_read(vc
->opaque
, buf
, size
);
420 static ssize_t
vc_sendv_compat(VLANClientState
*vc
, const struct iovec
*iov
,
423 uint8_t buffer
[4096];
427 for (i
= 0; i
< iovcnt
; i
++) {
430 len
= MIN(sizeof(buffer
) - offset
, iov
[i
].iov_len
);
431 memcpy(buffer
+ offset
, iov
[i
].iov_base
, len
);
435 vc
->fd_read(vc
->opaque
, buffer
, offset
);
440 static ssize_t
calc_iov_length(const struct iovec
*iov
, int iovcnt
)
445 for (i
= 0; i
< iovcnt
; i
++)
446 offset
+= iov
[i
].iov_len
;
450 ssize_t
qemu_sendv_packet(VLANClientState
*vc1
, const struct iovec
*iov
,
453 VLANState
*vlan
= vc1
->vlan
;
458 return calc_iov_length(iov
, iovcnt
);
460 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
467 len
= calc_iov_length(iov
, iovcnt
);
469 len
= vc
->fd_readv(vc
->opaque
, iov
, iovcnt
);
470 else if (vc
->fd_read
)
471 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
473 max_len
= MAX(max_len
, len
);
479 #if defined(CONFIG_SLIRP)
481 /* slirp network adapter */
483 static int slirp_inited
;
484 static int slirp_restrict
;
485 static char *slirp_ip
;
486 static VLANClientState
*slirp_vc
;
488 int slirp_can_output(void)
490 return !slirp_vc
|| qemu_can_send_packet(slirp_vc
);
493 void slirp_output(const uint8_t *pkt
, int pkt_len
)
496 printf("slirp output:\n");
497 hex_dump(stdout
, pkt
, pkt_len
);
501 qemu_send_packet(slirp_vc
, pkt
, pkt_len
);
504 int slirp_is_inited(void)
509 static void slirp_receive(void *opaque
, const uint8_t *buf
, int size
)
512 printf("slirp input:\n");
513 hex_dump(stdout
, buf
, size
);
515 slirp_input(buf
, size
);
518 static int net_slirp_init(VLANState
*vlan
, const char *model
, const char *name
)
522 slirp_init(slirp_restrict
, slirp_ip
);
524 slirp_vc
= qemu_new_vlan_client(vlan
, model
, name
,
525 slirp_receive
, NULL
, NULL
, NULL
);
526 slirp_vc
->info_str
[0] = '\0';
530 void net_slirp_redir(const char *redir_str
)
535 struct in_addr guest_addr
;
536 int host_port
, guest_port
;
540 slirp_init(slirp_restrict
, slirp_ip
);
544 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
546 if (!strcmp(buf
, "tcp")) {
548 } else if (!strcmp(buf
, "udp")) {
554 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
556 host_port
= strtol(buf
, &r
, 0);
560 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
562 if (buf
[0] == '\0') {
563 pstrcpy(buf
, sizeof(buf
), "10.0.2.15");
565 if (!inet_aton(buf
, &guest_addr
))
568 guest_port
= strtol(p
, &r
, 0);
572 if (slirp_redir(is_udp
, host_port
, guest_addr
, guest_port
) < 0) {
573 fprintf(stderr
, "qemu: could not set up redirection\n");
578 fprintf(stderr
, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
584 static char smb_dir
[1024];
586 static void erase_dir(char *dir_name
)
592 /* erase all the files in the directory */
593 if ((d
= opendir(dir_name
)) != 0) {
598 if (strcmp(de
->d_name
, ".") != 0 &&
599 strcmp(de
->d_name
, "..") != 0) {
600 snprintf(filename
, sizeof(filename
), "%s/%s",
601 smb_dir
, de
->d_name
);
602 if (unlink(filename
) != 0) /* is it a directory? */
611 /* automatic user mode samba server configuration */
612 static void smb_exit(void)
617 /* automatic user mode samba server configuration */
618 void net_slirp_smb(const char *exported_dir
)
621 char smb_cmdline
[1024];
626 slirp_init(slirp_restrict
, slirp_ip
);
629 /* XXX: better tmp dir construction */
630 snprintf(smb_dir
, sizeof(smb_dir
), "/tmp/qemu-smb.%d", getpid());
631 if (mkdir(smb_dir
, 0700) < 0) {
632 fprintf(stderr
, "qemu: could not create samba server dir '%s'\n", smb_dir
);
635 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", smb_dir
, "smb.conf");
637 f
= fopen(smb_conf
, "w");
639 fprintf(stderr
, "qemu: could not create samba server configuration file '%s'\n", smb_conf
);
646 "socket address=127.0.0.1\n"
648 "lock directory=%s\n"
649 "log file=%s/log.smbd\n"
650 "smb passwd file=%s/smbpasswd\n"
666 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
667 SMBD_COMMAND
, smb_conf
);
669 slirp_add_exec(0, smb_cmdline
, 4, 139);
672 #endif /* !defined(_WIN32) */
673 void do_info_slirp(void)
683 static int vmchannel_can_read(void *opaque
)
685 struct VMChannel
*vmc
= (struct VMChannel
*)opaque
;
686 return slirp_socket_can_recv(4, vmc
->port
);
689 static void vmchannel_read(void *opaque
, const uint8_t *buf
, int size
)
691 struct VMChannel
*vmc
= (struct VMChannel
*)opaque
;
692 slirp_socket_recv(4, vmc
->port
, buf
, size
);
695 #endif /* CONFIG_SLIRP */
699 typedef struct TAPState
{
702 char down_script
[1024];
703 char down_script_arg
[128];
706 static int launch_script(const char *setup_script
, const char *ifname
, int fd
);
708 static ssize_t
tap_receive_iov(void *opaque
, const struct iovec
*iov
,
711 TAPState
*s
= opaque
;
715 len
= writev(s
->fd
, iov
, iovcnt
);
716 } while (len
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
721 static void tap_receive(void *opaque
, const uint8_t *buf
, int size
)
723 TAPState
*s
= opaque
;
726 ret
= write(s
->fd
, buf
, size
);
727 if (ret
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
734 static void tap_send(void *opaque
)
736 TAPState
*s
= opaque
;
743 sbuf
.maxlen
= sizeof(buf
);
745 size
= getmsg(s
->fd
, NULL
, &sbuf
, &f
) >=0 ? sbuf
.len
: -1;
747 size
= read(s
->fd
, buf
, sizeof(buf
));
750 qemu_send_packet(s
->vc
, buf
, size
);
754 static void tap_cleanup(VLANClientState
*vc
)
756 TAPState
*s
= vc
->opaque
;
758 if (s
->down_script
[0])
759 launch_script(s
->down_script
, s
->down_script_arg
, s
->fd
);
761 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
768 static TAPState
*net_tap_fd_init(VLANState
*vlan
,
775 s
= qemu_mallocz(sizeof(TAPState
));
777 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, tap_receive
,
778 NULL
, tap_cleanup
, s
);
779 s
->vc
->fd_readv
= tap_receive_iov
;
780 qemu_set_fd_handler(s
->fd
, tap_send
, NULL
, s
);
781 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "fd=%d", fd
);
785 #if defined (_BSD) || defined (__FreeBSD_kernel__)
786 static int tap_open(char *ifname
, int ifname_size
)
792 TFR(fd
= open("/dev/tap", O_RDWR
));
794 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
799 dev
= devname(s
.st_rdev
, S_IFCHR
);
800 pstrcpy(ifname
, ifname_size
, dev
);
802 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
805 #elif defined(__sun__)
806 #define TUNNEWPPA (('T'<<16) | 0x0001)
808 * Allocate TAP device, returns opened fd.
809 * Stores dev name in the first arg(must be large enough).
811 int tap_alloc(char *dev
, size_t dev_size
)
813 int tap_fd
, if_fd
, ppa
= -1;
814 static int ip_fd
= 0;
817 static int arp_fd
= 0;
818 int ip_muxid
, arp_muxid
;
819 struct strioctl strioc_if
, strioc_ppa
;
820 int link_type
= I_PLINK
;;
822 char actual_name
[32] = "";
824 memset(&ifr
, 0x0, sizeof(ifr
));
828 while( *ptr
&& !qemu_isdigit((int)*ptr
) ) ptr
++;
832 /* Check if IP device was opened */
836 TFR(ip_fd
= open("/dev/udp", O_RDWR
, 0));
838 syslog(LOG_ERR
, "Can't open /dev/ip (actually /dev/udp)");
842 TFR(tap_fd
= open("/dev/tap", O_RDWR
, 0));
844 syslog(LOG_ERR
, "Can't open /dev/tap");
848 /* Assign a new PPA and get its unit number. */
849 strioc_ppa
.ic_cmd
= TUNNEWPPA
;
850 strioc_ppa
.ic_timout
= 0;
851 strioc_ppa
.ic_len
= sizeof(ppa
);
852 strioc_ppa
.ic_dp
= (char *)&ppa
;
853 if ((ppa
= ioctl (tap_fd
, I_STR
, &strioc_ppa
)) < 0)
854 syslog (LOG_ERR
, "Can't assign new interface");
856 TFR(if_fd
= open("/dev/tap", O_RDWR
, 0));
858 syslog(LOG_ERR
, "Can't open /dev/tap (2)");
861 if(ioctl(if_fd
, I_PUSH
, "ip") < 0){
862 syslog(LOG_ERR
, "Can't push IP module");
866 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) < 0)
867 syslog(LOG_ERR
, "Can't get flags\n");
869 snprintf (actual_name
, 32, "tap%d", ppa
);
870 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
873 /* Assign ppa according to the unit number returned by tun device */
875 if (ioctl (if_fd
, SIOCSLIFNAME
, &ifr
) < 0)
876 syslog (LOG_ERR
, "Can't set PPA %d", ppa
);
877 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) <0)
878 syslog (LOG_ERR
, "Can't get flags\n");
879 /* Push arp module to if_fd */
880 if (ioctl (if_fd
, I_PUSH
, "arp") < 0)
881 syslog (LOG_ERR
, "Can't push ARP module (2)");
883 /* Push arp module to ip_fd */
884 if (ioctl (ip_fd
, I_POP
, NULL
) < 0)
885 syslog (LOG_ERR
, "I_POP failed\n");
886 if (ioctl (ip_fd
, I_PUSH
, "arp") < 0)
887 syslog (LOG_ERR
, "Can't push ARP module (3)\n");
889 TFR(arp_fd
= open ("/dev/tap", O_RDWR
, 0));
891 syslog (LOG_ERR
, "Can't open %s\n", "/dev/tap");
893 /* Set ifname to arp */
894 strioc_if
.ic_cmd
= SIOCSLIFNAME
;
895 strioc_if
.ic_timout
= 0;
896 strioc_if
.ic_len
= sizeof(ifr
);
897 strioc_if
.ic_dp
= (char *)&ifr
;
898 if (ioctl(arp_fd
, I_STR
, &strioc_if
) < 0){
899 syslog (LOG_ERR
, "Can't set ifname to arp\n");
902 if((ip_muxid
= ioctl(ip_fd
, I_LINK
, if_fd
)) < 0){
903 syslog(LOG_ERR
, "Can't link TAP device to IP");
907 if ((arp_muxid
= ioctl (ip_fd
, link_type
, arp_fd
)) < 0)
908 syslog (LOG_ERR
, "Can't link TAP device to ARP");
912 memset(&ifr
, 0x0, sizeof(ifr
));
913 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
914 ifr
.lifr_ip_muxid
= ip_muxid
;
915 ifr
.lifr_arp_muxid
= arp_muxid
;
917 if (ioctl (ip_fd
, SIOCSLIFMUXID
, &ifr
) < 0)
919 ioctl (ip_fd
, I_PUNLINK
, arp_muxid
);
920 ioctl (ip_fd
, I_PUNLINK
, ip_muxid
);
921 syslog (LOG_ERR
, "Can't set multiplexor id");
924 snprintf(dev
, dev_size
, "tap%d", ppa
);
928 static int tap_open(char *ifname
, int ifname_size
)
932 if( (fd
= tap_alloc(dev
, sizeof(dev
))) < 0 ){
933 fprintf(stderr
, "Cannot allocate TAP device\n");
936 pstrcpy(ifname
, ifname_size
, dev
);
937 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
941 static int tap_open(char *ifname
, int ifname_size
)
943 fprintf (stderr
, "no tap on AIX\n");
947 static int tap_open(char *ifname
, int ifname_size
)
952 TFR(fd
= open("/dev/net/tun", O_RDWR
));
954 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
957 memset(&ifr
, 0, sizeof(ifr
));
958 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
959 if (ifname
[0] != '\0')
960 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
962 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
963 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
965 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
969 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
970 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
975 static int launch_script(const char *setup_script
, const char *ifname
, int fd
)
981 /* try to launch network script */
985 int open_max
= sysconf (_SC_OPEN_MAX
), i
;
986 for (i
= 0; i
< open_max
; i
++)
987 if (i
!= STDIN_FILENO
&&
988 i
!= STDOUT_FILENO
&&
989 i
!= STDERR_FILENO
&&
994 *parg
++ = (char *)setup_script
;
995 *parg
++ = (char *)ifname
;
997 execv(setup_script
, args
);
1000 while (waitpid(pid
, &status
, 0) != pid
);
1001 if (!WIFEXITED(status
) ||
1002 WEXITSTATUS(status
) != 0) {
1003 fprintf(stderr
, "%s: could not launch network script\n",
1011 static int net_tap_init(VLANState
*vlan
, const char *model
,
1012 const char *name
, const char *ifname1
,
1013 const char *setup_script
, const char *down_script
)
1019 if (ifname1
!= NULL
)
1020 pstrcpy(ifname
, sizeof(ifname
), ifname1
);
1023 TFR(fd
= tap_open(ifname
, sizeof(ifname
)));
1027 if (!setup_script
|| !strcmp(setup_script
, "no"))
1029 if (setup_script
[0] != '\0') {
1030 if (launch_script(setup_script
, ifname
, fd
))
1033 s
= net_tap_fd_init(vlan
, model
, name
, fd
);
1034 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1035 "ifname=%s,script=%s,downscript=%s",
1036 ifname
, setup_script
, down_script
);
1037 if (down_script
&& strcmp(down_script
, "no")) {
1038 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", down_script
);
1039 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
), "%s", ifname
);
1044 #endif /* !_WIN32 */
1046 #if defined(CONFIG_VDE)
1047 typedef struct VDEState
{
1048 VLANClientState
*vc
;
1052 static void vde_to_qemu(void *opaque
)
1054 VDEState
*s
= opaque
;
1058 size
= vde_recv(s
->vde
, buf
, sizeof(buf
), 0);
1060 qemu_send_packet(s
->vc
, buf
, size
);
1064 static void vde_from_qemu(void *opaque
, const uint8_t *buf
, int size
)
1066 VDEState
*s
= opaque
;
1069 ret
= vde_send(s
->vde
, buf
, size
, 0);
1070 if (ret
< 0 && errno
== EINTR
) {
1077 static void vde_cleanup(VLANClientState
*vc
)
1079 VDEState
*s
= vc
->opaque
;
1080 qemu_set_fd_handler(vde_datafd(s
->vde
), NULL
, NULL
, NULL
);
1085 static int net_vde_init(VLANState
*vlan
, const char *model
,
1086 const char *name
, const char *sock
,
1087 int port
, const char *group
, int mode
)
1090 char *init_group
= strlen(group
) ? (char *)group
: NULL
;
1091 char *init_sock
= strlen(sock
) ? (char *)sock
: NULL
;
1093 struct vde_open_args args
= {
1095 .group
= init_group
,
1099 s
= qemu_mallocz(sizeof(VDEState
));
1100 s
->vde
= vde_open(init_sock
, "QEMU", &args
);
1105 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, vde_from_qemu
,
1106 NULL
, vde_cleanup
, s
);
1107 qemu_set_fd_handler(vde_datafd(s
->vde
), vde_to_qemu
, NULL
, s
);
1108 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "sock=%s,fd=%d",
1109 sock
, vde_datafd(s
->vde
));
1114 /* network connection */
1115 typedef struct NetSocketState
{
1116 VLANClientState
*vc
;
1118 int state
; /* 0 = getting length, 1 = getting data */
1120 unsigned int packet_len
;
1122 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1125 typedef struct NetSocketListenState
{
1130 } NetSocketListenState
;
1132 /* XXX: we consider we can send the whole packet without blocking */
1133 static void net_socket_receive(void *opaque
, const uint8_t *buf
, int size
)
1135 NetSocketState
*s
= opaque
;
1139 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
1140 send_all(s
->fd
, buf
, size
);
1143 static void net_socket_receive_dgram(void *opaque
, const uint8_t *buf
, int size
)
1145 NetSocketState
*s
= opaque
;
1146 sendto(s
->fd
, buf
, size
, 0,
1147 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
1150 static void net_socket_send(void *opaque
)
1152 NetSocketState
*s
= opaque
;
1158 size
= recv(s
->fd
, buf1
, sizeof(buf1
), 0);
1160 err
= socket_error();
1161 if (err
!= EWOULDBLOCK
)
1163 } else if (size
== 0) {
1164 /* end of connection */
1166 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1172 /* reassemble a packet from the network */
1178 memcpy(s
->buf
+ s
->index
, buf
, l
);
1182 if (s
->index
== 4) {
1184 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
1190 l
= s
->packet_len
- s
->index
;
1193 if (s
->index
+ l
<= sizeof(s
->buf
)) {
1194 memcpy(s
->buf
+ s
->index
, buf
, l
);
1196 fprintf(stderr
, "serious error: oversized packet received,"
1197 "connection terminated.\n");
1205 if (s
->index
>= s
->packet_len
) {
1206 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
1215 static void net_socket_send_dgram(void *opaque
)
1217 NetSocketState
*s
= opaque
;
1220 size
= recv(s
->fd
, s
->buf
, sizeof(s
->buf
), 0);
1224 /* end of connection */
1225 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1228 qemu_send_packet(s
->vc
, s
->buf
, size
);
1231 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
1236 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
1237 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1238 inet_ntoa(mcastaddr
->sin_addr
),
1239 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
1243 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
1245 perror("socket(PF_INET, SOCK_DGRAM)");
1250 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
1251 (const char *)&val
, sizeof(val
));
1253 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1257 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
1263 /* Add host to multicast group */
1264 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
1265 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
1267 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
1268 (const char *)&imr
, sizeof(struct ip_mreq
));
1270 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1274 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1276 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
1277 (const char *)&val
, sizeof(val
));
1279 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1283 socket_set_nonblock(fd
);
1291 static void net_socket_cleanup(VLANClientState
*vc
)
1293 NetSocketState
*s
= vc
->opaque
;
1294 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1299 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
,
1302 int fd
, int is_connected
)
1304 struct sockaddr_in saddr
;
1306 socklen_t saddr_len
;
1309 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1310 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1311 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1315 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
1317 if (saddr
.sin_addr
.s_addr
==0) {
1318 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1322 /* clone dgram socket */
1323 newfd
= net_socket_mcast_create(&saddr
);
1325 /* error already reported by net_socket_mcast_create() */
1329 /* clone newfd to fd, close newfd */
1334 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1335 fd
, strerror(errno
));
1340 s
= qemu_mallocz(sizeof(NetSocketState
));
1343 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, net_socket_receive_dgram
,
1344 NULL
, net_socket_cleanup
, s
);
1345 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
1347 /* mcast: save bound address as dst */
1348 if (is_connected
) s
->dgram_dst
=saddr
;
1350 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1351 "socket: fd=%d (%s mcast=%s:%d)",
1352 fd
, is_connected
? "cloned" : "",
1353 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1357 static void net_socket_connect(void *opaque
)
1359 NetSocketState
*s
= opaque
;
1360 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
1363 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
,
1366 int fd
, int is_connected
)
1369 s
= qemu_mallocz(sizeof(NetSocketState
));
1371 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, net_socket_receive
,
1372 NULL
, net_socket_cleanup
, s
);
1373 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1374 "socket: fd=%d", fd
);
1376 net_socket_connect(s
);
1378 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
1383 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
,
1384 const char *model
, const char *name
,
1385 int fd
, int is_connected
)
1387 int so_type
=-1, optlen
=sizeof(so_type
);
1389 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
1390 (socklen_t
*)&optlen
)< 0) {
1391 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
1396 return net_socket_fd_init_dgram(vlan
, model
, name
, fd
, is_connected
);
1398 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
1400 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1401 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
1402 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
1407 static void net_socket_accept(void *opaque
)
1409 NetSocketListenState
*s
= opaque
;
1411 struct sockaddr_in saddr
;
1416 len
= sizeof(saddr
);
1417 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
1418 if (fd
< 0 && errno
!= EINTR
) {
1420 } else if (fd
>= 0) {
1424 s1
= net_socket_fd_init(s
->vlan
, s
->model
, s
->name
, fd
, 1);
1428 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
1429 "socket: connection from %s:%d",
1430 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1434 static int net_socket_listen_init(VLANState
*vlan
,
1437 const char *host_str
)
1439 NetSocketListenState
*s
;
1441 struct sockaddr_in saddr
;
1443 if (parse_host_port(&saddr
, host_str
) < 0)
1446 s
= qemu_mallocz(sizeof(NetSocketListenState
));
1448 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1453 socket_set_nonblock(fd
);
1455 /* allow fast reuse */
1457 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
1459 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1464 ret
= listen(fd
, 0);
1470 s
->model
= strdup(model
);
1471 s
->name
= strdup(name
);
1473 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
1477 static int net_socket_connect_init(VLANState
*vlan
,
1480 const char *host_str
)
1483 int fd
, connected
, ret
, err
;
1484 struct sockaddr_in saddr
;
1486 if (parse_host_port(&saddr
, host_str
) < 0)
1489 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1494 socket_set_nonblock(fd
);
1498 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1500 err
= socket_error();
1501 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
1502 } else if (err
== EINPROGRESS
) {
1505 } else if (err
== WSAEALREADY
) {
1518 s
= net_socket_fd_init(vlan
, model
, name
, fd
, connected
);
1521 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1522 "socket: connect to %s:%d",
1523 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1527 static int net_socket_mcast_init(VLANState
*vlan
,
1530 const char *host_str
)
1534 struct sockaddr_in saddr
;
1536 if (parse_host_port(&saddr
, host_str
) < 0)
1540 fd
= net_socket_mcast_create(&saddr
);
1544 s
= net_socket_fd_init(vlan
, model
, name
, fd
, 0);
1548 s
->dgram_dst
= saddr
;
1550 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1551 "socket: mcast=%s:%d",
1552 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1557 /* find or alloc a new VLAN */
1558 VLANState
*qemu_find_vlan(int id
)
1560 VLANState
**pvlan
, *vlan
;
1561 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1565 vlan
= qemu_mallocz(sizeof(VLANState
));
1568 pvlan
= &first_vlan
;
1569 while (*pvlan
!= NULL
)
1570 pvlan
= &(*pvlan
)->next
;
1575 static int nic_get_free_idx(void)
1579 for (index
= 0; index
< MAX_NICS
; index
++)
1580 if (!nd_table
[index
].used
)
1585 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
1587 const char *models
[2];
1592 qemu_check_nic_model_list(nd
, models
, model
);
1595 void qemu_check_nic_model_list(NICInfo
*nd
, const char * const *models
,
1596 const char *default_model
)
1598 int i
, exit_status
= 0;
1601 nd
->model
= strdup(default_model
);
1603 if (strcmp(nd
->model
, "?") != 0) {
1604 for (i
= 0 ; models
[i
]; i
++)
1605 if (strcmp(nd
->model
, models
[i
]) == 0)
1608 fprintf(stderr
, "qemu: Unsupported NIC model: %s\n", nd
->model
);
1612 fprintf(stderr
, "qemu: Supported NIC models: ");
1613 for (i
= 0 ; models
[i
]; i
++)
1614 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
1619 int net_client_init(const char *device
, const char *p
)
1627 if (get_param_value(buf
, sizeof(buf
), "vlan", p
)) {
1628 vlan_id
= strtol(buf
, NULL
, 0);
1630 vlan
= qemu_find_vlan(vlan_id
);
1632 if (get_param_value(buf
, sizeof(buf
), "name", p
)) {
1635 if (!strcmp(device
, "nic")) {
1638 int idx
= nic_get_free_idx();
1640 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
1641 fprintf(stderr
, "Too Many NICs\n");
1645 nd
= &nd_table
[idx
];
1646 macaddr
= nd
->macaddr
;
1652 macaddr
[5] = 0x56 + idx
;
1654 if (get_param_value(buf
, sizeof(buf
), "macaddr", p
)) {
1655 if (parse_macaddr(macaddr
, buf
) < 0) {
1656 fprintf(stderr
, "invalid syntax for ethernet address\n");
1661 if (get_param_value(buf
, sizeof(buf
), "model", p
)) {
1662 nd
->model
= strdup(buf
);
1669 vlan
->nb_guest_devs
++;
1672 if (!strcmp(device
, "none")) {
1673 /* does nothing. It is needed to signal that no network cards
1678 if (!strcmp(device
, "user")) {
1679 if (get_param_value(buf
, sizeof(buf
), "hostname", p
)) {
1680 pstrcpy(slirp_hostname
, sizeof(slirp_hostname
), buf
);
1682 if (get_param_value(buf
, sizeof(buf
), "restrict", p
)) {
1683 slirp_restrict
= (buf
[0] == 'y') ? 1 : 0;
1685 if (get_param_value(buf
, sizeof(buf
), "ip", p
)) {
1686 slirp_ip
= strdup(buf
);
1688 vlan
->nb_host_devs
++;
1689 ret
= net_slirp_init(vlan
, device
, name
);
1690 } else if (!strcmp(device
, "channel")) {
1692 char name
[20], *devname
;
1693 struct VMChannel
*vmc
;
1695 port
= strtol(p
, &devname
, 10);
1697 if (port
< 1 || port
> 65535) {
1698 fprintf(stderr
, "vmchannel wrong port number\n");
1702 vmc
= malloc(sizeof(struct VMChannel
));
1703 snprintf(name
, 20, "vmchannel%ld", port
);
1704 vmc
->hd
= qemu_chr_open(name
, devname
, NULL
);
1706 fprintf(stderr
, "qemu: could not open vmchannel device"
1712 slirp_add_exec(3, vmc
->hd
, 4, port
);
1713 qemu_chr_add_handlers(vmc
->hd
, vmchannel_can_read
, vmchannel_read
,
1719 if (!strcmp(device
, "tap")) {
1721 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
1722 fprintf(stderr
, "tap: no interface name\n");
1726 vlan
->nb_host_devs
++;
1727 ret
= tap_win32_init(vlan
, device
, name
, ifname
);
1729 #elif defined (_AIX)
1731 if (!strcmp(device
, "tap")) {
1733 char setup_script
[1024], down_script
[1024];
1735 vlan
->nb_host_devs
++;
1736 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
1737 fd
= strtol(buf
, NULL
, 0);
1738 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1739 net_tap_fd_init(vlan
, device
, name
, fd
);
1742 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
1745 if (get_param_value(setup_script
, sizeof(setup_script
), "script", p
) == 0) {
1746 pstrcpy(setup_script
, sizeof(setup_script
), DEFAULT_NETWORK_SCRIPT
);
1748 if (get_param_value(down_script
, sizeof(down_script
), "downscript", p
) == 0) {
1749 pstrcpy(down_script
, sizeof(down_script
), DEFAULT_NETWORK_DOWN_SCRIPT
);
1751 ret
= net_tap_init(vlan
, device
, name
, ifname
, setup_script
, down_script
);
1755 if (!strcmp(device
, "socket")) {
1756 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
1758 fd
= strtol(buf
, NULL
, 0);
1760 if (net_socket_fd_init(vlan
, device
, name
, fd
, 1))
1762 } else if (get_param_value(buf
, sizeof(buf
), "listen", p
) > 0) {
1763 ret
= net_socket_listen_init(vlan
, device
, name
, buf
);
1764 } else if (get_param_value(buf
, sizeof(buf
), "connect", p
) > 0) {
1765 ret
= net_socket_connect_init(vlan
, device
, name
, buf
);
1766 } else if (get_param_value(buf
, sizeof(buf
), "mcast", p
) > 0) {
1767 ret
= net_socket_mcast_init(vlan
, device
, name
, buf
);
1769 fprintf(stderr
, "Unknown socket options: %s\n", p
);
1773 vlan
->nb_host_devs
++;
1776 if (!strcmp(device
, "vde")) {
1777 char vde_sock
[1024], vde_group
[512];
1778 int vde_port
, vde_mode
;
1779 vlan
->nb_host_devs
++;
1780 if (get_param_value(vde_sock
, sizeof(vde_sock
), "sock", p
) <= 0) {
1783 if (get_param_value(buf
, sizeof(buf
), "port", p
) > 0) {
1784 vde_port
= strtol(buf
, NULL
, 10);
1788 if (get_param_value(vde_group
, sizeof(vde_group
), "group", p
) <= 0) {
1789 vde_group
[0] = '\0';
1791 if (get_param_value(buf
, sizeof(buf
), "mode", p
) > 0) {
1792 vde_mode
= strtol(buf
, NULL
, 8);
1796 ret
= net_vde_init(vlan
, device
, name
, vde_sock
, vde_port
, vde_group
, vde_mode
);
1800 fprintf(stderr
, "Unknown network device: %s\n", device
);
1805 fprintf(stderr
, "Could not initialize device '%s'\n", device
);
1813 void net_client_uninit(NICInfo
*nd
)
1815 nd
->vlan
->nb_guest_devs
--;
1818 free((void *)nd
->model
);
1821 static int net_host_check_device(const char *device
)
1824 const char *valid_param_list
[] = { "tap", "socket"
1832 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
1833 if (!strncmp(valid_param_list
[i
], device
,
1834 strlen(valid_param_list
[i
])))
1841 void net_host_device_add(const char *device
, const char *opts
)
1843 if (!net_host_check_device(device
)) {
1844 term_printf("invalid host network device %s\n", device
);
1847 net_client_init(device
, opts
);
1850 void net_host_device_remove(int vlan_id
, const char *device
)
1853 VLANClientState
*vc
;
1855 vlan
= qemu_find_vlan(vlan_id
);
1857 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
1858 if (!strcmp(vc
->name
, device
))
1862 term_printf("can't find device %s\n", device
);
1865 qemu_del_vlan_client(vc
);
1868 int net_client_parse(const char *str
)
1876 while (*p
!= '\0' && *p
!= ',') {
1877 if ((q
- device
) < sizeof(device
) - 1)
1885 return net_client_init(device
, p
);
1888 void do_info_network(void)
1891 VLANClientState
*vc
;
1893 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1894 term_printf("VLAN %d devices:\n", vlan
->id
);
1895 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
1896 term_printf(" %s: %s\n", vc
->name
, vc
->info_str
);
1900 int do_set_link(const char *name
, const char *up_or_down
)
1903 VLANClientState
*vc
= NULL
;
1905 for (vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
)
1906 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
1907 if (strcmp(vc
->name
, name
) == 0)
1912 term_printf("could not find network device '%s'", name
);
1916 if (strcmp(up_or_down
, "up") == 0)
1918 else if (strcmp(up_or_down
, "down") == 0)
1921 term_printf("invalid link status '%s'; only 'up' or 'down' valid\n",
1924 if (vc
->link_status_changed
)
1925 vc
->link_status_changed(vc
);
1930 void net_cleanup(void)
1934 /* close network clients */
1935 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1936 VLANClientState
*vc
= vlan
->first_client
;
1939 VLANClientState
*next
= vc
->next
;
1941 qemu_del_vlan_client(vc
);
1948 void net_client_check(void)
1952 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1953 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
1955 if (vlan
->nb_guest_devs
== 0)
1956 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
1957 if (vlan
->nb_host_devs
== 0)
1959 "Warning: vlan %d is not connected to host network\n",