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 #define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
124 #define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
126 #define SMBD_COMMAND "/usr/sfw/sbin/smbd"
128 #define SMBD_COMMAND "/usr/sbin/smbd"
131 static VLANState
*first_vlan
;
133 /***********************************************************/
134 /* network device redirectors */
136 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
137 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
141 for(i
=0;i
<size
;i
+=16) {
145 fprintf(f
, "%08x ", i
);
148 fprintf(f
, " %02x", buf
[i
+j
]);
155 if (c
< ' ' || c
> '~')
164 static int parse_macaddr(uint8_t *macaddr
, const char *p
)
171 offset
= strtol(p
, &last_char
, 0);
172 if (0 == errno
&& '\0' == *last_char
&&
173 offset
>= 0 && offset
<= 0xFFFFFF) {
174 macaddr
[3] = (offset
& 0xFF0000) >> 16;
175 macaddr
[4] = (offset
& 0xFF00) >> 8;
176 macaddr
[5] = offset
& 0xFF;
179 for(i
= 0; i
< 6; i
++) {
180 macaddr
[i
] = strtol(p
, (char **)&p
, 16);
185 if (*p
!= ':' && *p
!= '-')
196 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
207 if (len
> buf_size
- 1)
216 int parse_host_src_port(struct sockaddr_in
*haddr
,
217 struct sockaddr_in
*saddr
,
218 const char *input_str
)
220 char *str
= strdup(input_str
);
221 char *host_str
= str
;
223 const char *src_str2
;
227 * Chop off any extra arguments at the end of the string which
228 * would start with a comma, then fill in the src port information
229 * if it was provided else use the "any address" and "any port".
231 if ((ptr
= strchr(str
,',')))
234 if ((src_str
= strchr(input_str
,'@'))) {
239 if (parse_host_port(haddr
, host_str
) < 0)
243 if (!src_str
|| *src_str
== '\0')
246 if (parse_host_port(saddr
, src_str2
) < 0)
257 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
265 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
267 saddr
->sin_family
= AF_INET
;
268 if (buf
[0] == '\0') {
269 saddr
->sin_addr
.s_addr
= 0;
271 if (qemu_isdigit(buf
[0])) {
272 if (!inet_aton(buf
, &saddr
->sin_addr
))
275 if ((he
= gethostbyname(buf
)) == NULL
)
277 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
280 port
= strtol(p
, (char **)&r
, 0);
283 saddr
->sin_port
= htons(port
);
287 #if !defined(_WIN32) && 0
288 static int parse_unix_path(struct sockaddr_un
*uaddr
, const char *str
)
293 len
= MIN(108, strlen(str
));
294 p
= strchr(str
, ',');
296 len
= MIN(len
, p
- str
);
298 memset(uaddr
, 0, sizeof(*uaddr
));
300 uaddr
->sun_family
= AF_UNIX
;
301 memcpy(uaddr
->sun_path
, str
, len
);
307 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
308 IOReadHandler
*fd_read
,
309 IOCanRWHandler
*fd_can_read
,
312 VLANClientState
*vc
, **pvc
;
313 vc
= qemu_mallocz(sizeof(VLANClientState
));
316 vc
->fd_read
= fd_read
;
317 vc
->fd_can_read
= fd_can_read
;
322 pvc
= &vlan
->first_client
;
329 void qemu_del_vlan_client(VLANClientState
*vc
)
331 VLANClientState
**pvc
= &vc
->vlan
->first_client
;
342 int qemu_can_send_packet(VLANClientState
*vc1
)
344 VLANState
*vlan
= vc1
->vlan
;
347 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
349 if (vc
->fd_can_read
&& vc
->fd_can_read(vc
->opaque
))
356 void qemu_send_packet(VLANClientState
*vc1
, const uint8_t *buf
, int size
)
358 VLANState
*vlan
= vc1
->vlan
;
362 printf("vlan %d send:\n", vlan
->id
);
363 hex_dump(stdout
, buf
, size
);
365 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
367 vc
->fd_read(vc
->opaque
, buf
, size
);
372 static ssize_t
vc_sendv_compat(VLANClientState
*vc
, const struct iovec
*iov
,
375 uint8_t buffer
[4096];
379 for (i
= 0; i
< iovcnt
; i
++) {
382 len
= MIN(sizeof(buffer
) - offset
, iov
[i
].iov_len
);
383 memcpy(buffer
+ offset
, iov
[i
].iov_base
, len
);
387 vc
->fd_read(vc
->opaque
, buffer
, offset
);
392 ssize_t
qemu_sendv_packet(VLANClientState
*vc1
, const struct iovec
*iov
,
395 VLANState
*vlan
= vc1
->vlan
;
399 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
406 len
= vc
->fd_readv(vc
->opaque
, iov
, iovcnt
);
407 else if (vc
->fd_read
)
408 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
410 max_len
= MAX(max_len
, len
);
416 #if defined(CONFIG_SLIRP)
418 /* slirp network adapter */
420 static int slirp_inited
;
421 static VLANClientState
*slirp_vc
;
423 int slirp_can_output(void)
425 return !slirp_vc
|| qemu_can_send_packet(slirp_vc
);
428 void slirp_output(const uint8_t *pkt
, int pkt_len
)
431 printf("slirp output:\n");
432 hex_dump(stdout
, pkt
, pkt_len
);
436 qemu_send_packet(slirp_vc
, pkt
, pkt_len
);
439 int slirp_is_inited(void)
444 static void slirp_receive(void *opaque
, const uint8_t *buf
, int size
)
447 printf("slirp input:\n");
448 hex_dump(stdout
, buf
, size
);
450 slirp_input(buf
, size
);
453 static int net_slirp_init(VLANState
*vlan
)
459 slirp_vc
= qemu_new_vlan_client(vlan
,
460 slirp_receive
, NULL
, NULL
);
461 snprintf(slirp_vc
->info_str
, sizeof(slirp_vc
->info_str
), "user redirector");
465 void net_slirp_redir(const char *redir_str
)
470 struct in_addr guest_addr
;
471 int host_port
, guest_port
;
479 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
481 if (!strcmp(buf
, "tcp")) {
483 } else if (!strcmp(buf
, "udp")) {
489 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
491 host_port
= strtol(buf
, &r
, 0);
495 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
497 if (buf
[0] == '\0') {
498 pstrcpy(buf
, sizeof(buf
), "10.0.2.15");
500 if (!inet_aton(buf
, &guest_addr
))
503 guest_port
= strtol(p
, &r
, 0);
507 if (slirp_redir(is_udp
, host_port
, guest_addr
, guest_port
) < 0) {
508 fprintf(stderr
, "qemu: could not set up redirection\n");
513 fprintf(stderr
, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
519 static char smb_dir
[1024];
521 static void erase_dir(char *dir_name
)
527 /* erase all the files in the directory */
528 if ((d
= opendir(dir_name
)) != 0) {
533 if (strcmp(de
->d_name
, ".") != 0 &&
534 strcmp(de
->d_name
, "..") != 0) {
535 snprintf(filename
, sizeof(filename
), "%s/%s",
536 smb_dir
, de
->d_name
);
537 if (unlink(filename
) != 0) /* is it a directory? */
546 /* automatic user mode samba server configuration */
547 static void smb_exit(void)
552 /* automatic user mode samba server configuration */
553 void net_slirp_smb(const char *exported_dir
)
556 char smb_cmdline
[1024];
564 /* XXX: better tmp dir construction */
565 snprintf(smb_dir
, sizeof(smb_dir
), "/tmp/qemu-smb.%d", getpid());
566 if (mkdir(smb_dir
, 0700) < 0) {
567 fprintf(stderr
, "qemu: could not create samba server dir '%s'\n", smb_dir
);
570 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", smb_dir
, "smb.conf");
572 f
= fopen(smb_conf
, "w");
574 fprintf(stderr
, "qemu: could not create samba server configuration file '%s'\n", smb_conf
);
581 "socket address=127.0.0.1\n"
583 "lock directory=%s\n"
584 "log file=%s/log.smbd\n"
585 "smb passwd file=%s/smbpasswd\n"
601 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
602 SMBD_COMMAND
, smb_conf
);
604 slirp_add_exec(0, smb_cmdline
, 4, 139);
607 #endif /* !defined(_WIN32) */
608 void do_info_slirp(void)
613 #endif /* CONFIG_SLIRP */
617 typedef struct TAPState
{
620 char down_script
[1024];
624 static ssize_t
tap_receive_iov(void *opaque
, const struct iovec
*iov
,
627 TAPState
*s
= opaque
;
631 len
= writev(s
->fd
, iov
, iovcnt
);
632 } while (len
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
638 static void tap_receive(void *opaque
, const uint8_t *buf
, int size
)
640 TAPState
*s
= opaque
;
643 ret
= write(s
->fd
, buf
, size
);
644 if (ret
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
651 static void tap_send(void *opaque
)
653 TAPState
*s
= opaque
;
660 sbuf
.maxlen
= sizeof(buf
);
662 size
= getmsg(s
->fd
, NULL
, &sbuf
, &f
) >=0 ? sbuf
.len
: -1;
664 size
= read(s
->fd
, buf
, sizeof(buf
));
667 qemu_send_packet(s
->vc
, buf
, size
);
673 static TAPState
*net_tap_fd_init(VLANState
*vlan
, int fd
)
677 s
= qemu_mallocz(sizeof(TAPState
));
681 s
->vc
= qemu_new_vlan_client(vlan
, tap_receive
, NULL
, s
);
683 s
->vc
->fd_readv
= tap_receive_iov
;
685 qemu_set_fd_handler(s
->fd
, tap_send
, NULL
, s
);
686 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "tap: fd=%d", fd
);
690 #if defined (_BSD) || defined (__FreeBSD_kernel__)
691 static int tap_open(char *ifname
, int ifname_size
)
697 TFR(fd
= open("/dev/tap", O_RDWR
));
699 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
704 dev
= devname(s
.st_rdev
, S_IFCHR
);
705 pstrcpy(ifname
, ifname_size
, dev
);
707 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
710 #elif defined(__sun__)
711 #define TUNNEWPPA (('T'<<16) | 0x0001)
713 * Allocate TAP device, returns opened fd.
714 * Stores dev name in the first arg(must be large enough).
716 int tap_alloc(char *dev
, size_t dev_size
)
718 int tap_fd
, if_fd
, ppa
= -1;
719 static int ip_fd
= 0;
722 static int arp_fd
= 0;
723 int ip_muxid
, arp_muxid
;
724 struct strioctl strioc_if
, strioc_ppa
;
725 int link_type
= I_PLINK
;;
727 char actual_name
[32] = "";
729 memset(&ifr
, 0x0, sizeof(ifr
));
733 while( *ptr
&& !qemu_isdigit((int)*ptr
) ) ptr
++;
737 /* Check if IP device was opened */
741 TFR(ip_fd
= open("/dev/udp", O_RDWR
, 0));
743 syslog(LOG_ERR
, "Can't open /dev/ip (actually /dev/udp)");
747 TFR(tap_fd
= open("/dev/tap", O_RDWR
, 0));
749 syslog(LOG_ERR
, "Can't open /dev/tap");
753 /* Assign a new PPA and get its unit number. */
754 strioc_ppa
.ic_cmd
= TUNNEWPPA
;
755 strioc_ppa
.ic_timout
= 0;
756 strioc_ppa
.ic_len
= sizeof(ppa
);
757 strioc_ppa
.ic_dp
= (char *)&ppa
;
758 if ((ppa
= ioctl (tap_fd
, I_STR
, &strioc_ppa
)) < 0)
759 syslog (LOG_ERR
, "Can't assign new interface");
761 TFR(if_fd
= open("/dev/tap", O_RDWR
, 0));
763 syslog(LOG_ERR
, "Can't open /dev/tap (2)");
766 if(ioctl(if_fd
, I_PUSH
, "ip") < 0){
767 syslog(LOG_ERR
, "Can't push IP module");
771 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) < 0)
772 syslog(LOG_ERR
, "Can't get flags\n");
774 snprintf (actual_name
, 32, "tap%d", ppa
);
775 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
778 /* Assign ppa according to the unit number returned by tun device */
780 if (ioctl (if_fd
, SIOCSLIFNAME
, &ifr
) < 0)
781 syslog (LOG_ERR
, "Can't set PPA %d", ppa
);
782 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) <0)
783 syslog (LOG_ERR
, "Can't get flags\n");
784 /* Push arp module to if_fd */
785 if (ioctl (if_fd
, I_PUSH
, "arp") < 0)
786 syslog (LOG_ERR
, "Can't push ARP module (2)");
788 /* Push arp module to ip_fd */
789 if (ioctl (ip_fd
, I_POP
, NULL
) < 0)
790 syslog (LOG_ERR
, "I_POP failed\n");
791 if (ioctl (ip_fd
, I_PUSH
, "arp") < 0)
792 syslog (LOG_ERR
, "Can't push ARP module (3)\n");
794 TFR(arp_fd
= open ("/dev/tap", O_RDWR
, 0));
796 syslog (LOG_ERR
, "Can't open %s\n", "/dev/tap");
798 /* Set ifname to arp */
799 strioc_if
.ic_cmd
= SIOCSLIFNAME
;
800 strioc_if
.ic_timout
= 0;
801 strioc_if
.ic_len
= sizeof(ifr
);
802 strioc_if
.ic_dp
= (char *)&ifr
;
803 if (ioctl(arp_fd
, I_STR
, &strioc_if
) < 0){
804 syslog (LOG_ERR
, "Can't set ifname to arp\n");
807 if((ip_muxid
= ioctl(ip_fd
, I_LINK
, if_fd
)) < 0){
808 syslog(LOG_ERR
, "Can't link TAP device to IP");
812 if ((arp_muxid
= ioctl (ip_fd
, link_type
, arp_fd
)) < 0)
813 syslog (LOG_ERR
, "Can't link TAP device to ARP");
817 memset(&ifr
, 0x0, sizeof(ifr
));
818 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
819 ifr
.lifr_ip_muxid
= ip_muxid
;
820 ifr
.lifr_arp_muxid
= arp_muxid
;
822 if (ioctl (ip_fd
, SIOCSLIFMUXID
, &ifr
) < 0)
824 ioctl (ip_fd
, I_PUNLINK
, arp_muxid
);
825 ioctl (ip_fd
, I_PUNLINK
, ip_muxid
);
826 syslog (LOG_ERR
, "Can't set multiplexor id");
829 snprintf(dev
, dev_size
, "tap%d", ppa
);
833 static int tap_open(char *ifname
, int ifname_size
)
837 if( (fd
= tap_alloc(dev
, sizeof(dev
))) < 0 ){
838 fprintf(stderr
, "Cannot allocate TAP device\n");
841 pstrcpy(ifname
, ifname_size
, dev
);
842 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
846 static int tap_open(char *ifname
, int ifname_size
)
848 fprintf (stderr
, "no tap on AIX\n");
852 static int tap_open(char *ifname
, int ifname_size
)
857 TFR(fd
= open("/dev/net/tun", O_RDWR
));
859 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
862 memset(&ifr
, 0, sizeof(ifr
));
863 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
864 if (ifname
[0] != '\0')
865 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
867 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
868 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
870 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
874 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
875 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
880 static int launch_script(const char *setup_script
, const char *ifname
, int fd
)
886 /* try to launch network script */
890 int open_max
= sysconf (_SC_OPEN_MAX
), i
;
891 for (i
= 0; i
< open_max
; i
++)
892 if (i
!= STDIN_FILENO
&&
893 i
!= STDOUT_FILENO
&&
894 i
!= STDERR_FILENO
&&
899 *parg
++ = (char *)setup_script
;
900 *parg
++ = (char *)ifname
;
902 execv(setup_script
, args
);
905 while (waitpid(pid
, &status
, 0) != pid
);
906 if (!WIFEXITED(status
) ||
907 WEXITSTATUS(status
) != 0) {
908 fprintf(stderr
, "%s: could not launch network script\n",
916 static int net_tap_init(VLANState
*vlan
, const char *ifname1
,
917 const char *setup_script
, const char *down_script
)
924 pstrcpy(ifname
, sizeof(ifname
), ifname1
);
927 TFR(fd
= tap_open(ifname
, sizeof(ifname
)));
931 if (!setup_script
|| !strcmp(setup_script
, "no"))
933 if (setup_script
[0] != '\0') {
934 if (launch_script(setup_script
, ifname
, fd
))
937 s
= net_tap_fd_init(vlan
, fd
);
940 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
941 "tap: ifname=%s setup_script=%s", ifname
, setup_script
);
942 if (down_script
&& strcmp(down_script
, "no"))
943 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", down_script
);
949 #if defined(CONFIG_VDE)
950 typedef struct VDEState
{
955 static void vde_to_qemu(void *opaque
)
957 VDEState
*s
= opaque
;
961 size
= vde_recv(s
->vde
, buf
, sizeof(buf
), 0);
963 qemu_send_packet(s
->vc
, buf
, size
);
967 static void vde_from_qemu(void *opaque
, const uint8_t *buf
, int size
)
969 VDEState
*s
= opaque
;
972 ret
= vde_send(s
->vde
, buf
, size
, 0);
973 if (ret
< 0 && errno
== EINTR
) {
980 static int net_vde_init(VLANState
*vlan
, const char *sock
, int port
,
981 const char *group
, int mode
)
984 char *init_group
= strlen(group
) ? (char *)group
: NULL
;
985 char *init_sock
= strlen(sock
) ? (char *)sock
: NULL
;
987 struct vde_open_args args
= {
993 s
= qemu_mallocz(sizeof(VDEState
));
996 s
->vde
= vde_open(init_sock
, "QEMU", &args
);
1001 s
->vc
= qemu_new_vlan_client(vlan
, vde_from_qemu
, NULL
, s
);
1002 qemu_set_fd_handler(vde_datafd(s
->vde
), vde_to_qemu
, NULL
, s
);
1003 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "vde: sock=%s fd=%d",
1004 sock
, vde_datafd(s
->vde
));
1009 /* network connection */
1010 typedef struct NetSocketState
{
1011 VLANClientState
*vc
;
1013 int state
; /* 0 = getting length, 1 = getting data */
1017 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1020 typedef struct NetSocketListenState
{
1023 } NetSocketListenState
;
1025 /* XXX: we consider we can send the whole packet without blocking */
1026 static void net_socket_receive(void *opaque
, const uint8_t *buf
, int size
)
1028 NetSocketState
*s
= opaque
;
1032 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
1033 send_all(s
->fd
, buf
, size
);
1036 static void net_socket_receive_dgram(void *opaque
, const uint8_t *buf
, int size
)
1038 NetSocketState
*s
= opaque
;
1039 sendto(s
->fd
, buf
, size
, 0,
1040 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
1043 static void net_socket_send(void *opaque
)
1045 NetSocketState
*s
= opaque
;
1050 size
= recv(s
->fd
, buf1
, sizeof(buf1
), 0);
1052 err
= socket_error();
1053 if (err
!= EWOULDBLOCK
)
1055 } else if (size
== 0) {
1056 /* end of connection */
1058 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1064 /* reassemble a packet from the network */
1070 memcpy(s
->buf
+ s
->index
, buf
, l
);
1074 if (s
->index
== 4) {
1076 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
1082 l
= s
->packet_len
- s
->index
;
1085 memcpy(s
->buf
+ s
->index
, buf
, l
);
1089 if (s
->index
>= s
->packet_len
) {
1090 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
1099 static void net_socket_send_dgram(void *opaque
)
1101 NetSocketState
*s
= opaque
;
1104 size
= recv(s
->fd
, s
->buf
, sizeof(s
->buf
), 0);
1108 /* end of connection */
1109 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1112 qemu_send_packet(s
->vc
, s
->buf
, size
);
1115 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
1120 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
1121 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1122 inet_ntoa(mcastaddr
->sin_addr
),
1123 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
1127 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
1129 perror("socket(PF_INET, SOCK_DGRAM)");
1134 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
1135 (const char *)&val
, sizeof(val
));
1137 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1141 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
1147 /* Add host to multicast group */
1148 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
1149 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
1151 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
1152 (const char *)&imr
, sizeof(struct ip_mreq
));
1154 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1158 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1160 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
1161 (const char *)&val
, sizeof(val
));
1163 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1167 socket_set_nonblock(fd
);
1175 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
, int fd
,
1178 struct sockaddr_in saddr
;
1180 socklen_t saddr_len
;
1183 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1184 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1185 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1189 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
1191 if (saddr
.sin_addr
.s_addr
==0) {
1192 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1196 /* clone dgram socket */
1197 newfd
= net_socket_mcast_create(&saddr
);
1199 /* error already reported by net_socket_mcast_create() */
1203 /* clone newfd to fd, close newfd */
1208 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1209 fd
, strerror(errno
));
1214 s
= qemu_mallocz(sizeof(NetSocketState
));
1219 s
->vc
= qemu_new_vlan_client(vlan
, net_socket_receive_dgram
, NULL
, s
);
1220 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
1222 /* mcast: save bound address as dst */
1223 if (is_connected
) s
->dgram_dst
=saddr
;
1225 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1226 "socket: fd=%d (%s mcast=%s:%d)",
1227 fd
, is_connected
? "cloned" : "",
1228 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1232 static void net_socket_connect(void *opaque
)
1234 NetSocketState
*s
= opaque
;
1235 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
1238 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
, int fd
,
1242 s
= qemu_mallocz(sizeof(NetSocketState
));
1246 s
->vc
= qemu_new_vlan_client(vlan
,
1247 net_socket_receive
, NULL
, s
);
1248 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1249 "socket: fd=%d", fd
);
1251 net_socket_connect(s
);
1253 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
1258 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
, int fd
,
1261 int so_type
=-1, optlen
=sizeof(so_type
);
1263 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
1264 (socklen_t
*)&optlen
)< 0) {
1265 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
1270 return net_socket_fd_init_dgram(vlan
, fd
, is_connected
);
1272 return net_socket_fd_init_stream(vlan
, fd
, is_connected
);
1274 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1275 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
1276 return net_socket_fd_init_stream(vlan
, fd
, is_connected
);
1281 static void net_socket_accept(void *opaque
)
1283 NetSocketListenState
*s
= opaque
;
1285 struct sockaddr_in saddr
;
1290 len
= sizeof(saddr
);
1291 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
1292 if (fd
< 0 && errno
!= EINTR
) {
1294 } else if (fd
>= 0) {
1298 s1
= net_socket_fd_init(s
->vlan
, fd
, 1);
1302 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
1303 "socket: connection from %s:%d",
1304 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1308 static int net_socket_listen_init(VLANState
*vlan
, const char *host_str
)
1310 NetSocketListenState
*s
;
1312 struct sockaddr_in saddr
;
1314 if (parse_host_port(&saddr
, host_str
) < 0)
1317 s
= qemu_mallocz(sizeof(NetSocketListenState
));
1321 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1326 socket_set_nonblock(fd
);
1328 /* allow fast reuse */
1330 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
1332 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1337 ret
= listen(fd
, 0);
1344 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
1348 static int net_socket_connect_init(VLANState
*vlan
, const char *host_str
)
1351 int fd
, connected
, ret
, err
;
1352 struct sockaddr_in saddr
;
1354 if (parse_host_port(&saddr
, host_str
) < 0)
1357 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1362 socket_set_nonblock(fd
);
1366 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1368 err
= socket_error();
1369 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
1370 } else if (err
== EINPROGRESS
) {
1373 } else if (err
== WSAEALREADY
) {
1386 s
= net_socket_fd_init(vlan
, fd
, connected
);
1389 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1390 "socket: connect to %s:%d",
1391 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1395 static int net_socket_mcast_init(VLANState
*vlan
, const char *host_str
)
1399 struct sockaddr_in saddr
;
1401 if (parse_host_port(&saddr
, host_str
) < 0)
1405 fd
= net_socket_mcast_create(&saddr
);
1409 s
= net_socket_fd_init(vlan
, fd
, 0);
1413 s
->dgram_dst
= saddr
;
1415 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1416 "socket: mcast=%s:%d",
1417 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1422 /* find or alloc a new VLAN */
1423 VLANState
*qemu_find_vlan(int id
)
1425 VLANState
**pvlan
, *vlan
;
1426 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1430 vlan
= qemu_mallocz(sizeof(VLANState
));
1435 pvlan
= &first_vlan
;
1436 while (*pvlan
!= NULL
)
1437 pvlan
= &(*pvlan
)->next
;
1442 int net_client_init(const char *device
, const char *p
)
1449 if (get_param_value(buf
, sizeof(buf
), "vlan", p
)) {
1450 vlan_id
= strtol(buf
, NULL
, 0);
1452 vlan
= qemu_find_vlan(vlan_id
);
1454 fprintf(stderr
, "Could not create vlan %d\n", vlan_id
);
1457 if (!strcmp(device
, "nic")) {
1461 if (nb_nics
>= MAX_NICS
) {
1462 fprintf(stderr
, "Too Many NICs\n");
1465 nd
= &nd_table
[nb_nics
];
1466 macaddr
= nd
->macaddr
;
1472 macaddr
[5] = 0x56 + nb_nics
;
1474 if (get_param_value(buf
, sizeof(buf
), "macaddr", p
)) {
1475 if (parse_macaddr(macaddr
, buf
) < 0) {
1476 fprintf(stderr
, "invalid syntax for ethernet address\n");
1480 if (get_param_value(buf
, sizeof(buf
), "model", p
)) {
1481 nd
->model
= strdup(buf
);
1485 vlan
->nb_guest_devs
++;
1488 if (!strcmp(device
, "none")) {
1489 /* does nothing. It is needed to signal that no network cards
1494 if (!strcmp(device
, "user")) {
1495 if (get_param_value(buf
, sizeof(buf
), "hostname", p
)) {
1496 pstrcpy(slirp_hostname
, sizeof(slirp_hostname
), buf
);
1498 vlan
->nb_host_devs
++;
1499 ret
= net_slirp_init(vlan
);
1503 if (!strcmp(device
, "tap")) {
1505 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
1506 fprintf(stderr
, "tap: no interface name\n");
1509 vlan
->nb_host_devs
++;
1510 ret
= tap_win32_init(vlan
, ifname
);
1512 #elif defined (_AIX)
1514 if (!strcmp(device
, "tap")) {
1516 char setup_script
[1024], down_script
[1024];
1518 vlan
->nb_host_devs
++;
1519 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
1520 fd
= strtol(buf
, NULL
, 0);
1521 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1523 if (net_tap_fd_init(vlan
, fd
))
1526 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
1529 if (get_param_value(setup_script
, sizeof(setup_script
), "script", p
) == 0) {
1530 pstrcpy(setup_script
, sizeof(setup_script
), DEFAULT_NETWORK_SCRIPT
);
1532 if (get_param_value(down_script
, sizeof(down_script
), "downscript", p
) == 0) {
1533 pstrcpy(down_script
, sizeof(down_script
), DEFAULT_NETWORK_DOWN_SCRIPT
);
1535 ret
= net_tap_init(vlan
, ifname
, setup_script
, down_script
);
1539 if (!strcmp(device
, "socket")) {
1540 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
1542 fd
= strtol(buf
, NULL
, 0);
1544 if (net_socket_fd_init(vlan
, fd
, 1))
1546 } else if (get_param_value(buf
, sizeof(buf
), "listen", p
) > 0) {
1547 ret
= net_socket_listen_init(vlan
, buf
);
1548 } else if (get_param_value(buf
, sizeof(buf
), "connect", p
) > 0) {
1549 ret
= net_socket_connect_init(vlan
, buf
);
1550 } else if (get_param_value(buf
, sizeof(buf
), "mcast", p
) > 0) {
1551 ret
= net_socket_mcast_init(vlan
, buf
);
1553 fprintf(stderr
, "Unknown socket options: %s\n", p
);
1556 vlan
->nb_host_devs
++;
1559 if (!strcmp(device
, "vde")) {
1560 char vde_sock
[1024], vde_group
[512];
1561 int vde_port
, vde_mode
;
1562 vlan
->nb_host_devs
++;
1563 if (get_param_value(vde_sock
, sizeof(vde_sock
), "sock", p
) <= 0) {
1566 if (get_param_value(buf
, sizeof(buf
), "port", p
) > 0) {
1567 vde_port
= strtol(buf
, NULL
, 10);
1571 if (get_param_value(vde_group
, sizeof(vde_group
), "group", p
) <= 0) {
1572 vde_group
[0] = '\0';
1574 if (get_param_value(buf
, sizeof(buf
), "mode", p
) > 0) {
1575 vde_mode
= strtol(buf
, NULL
, 8);
1579 ret
= net_vde_init(vlan
, vde_sock
, vde_port
, vde_group
, vde_mode
);
1583 fprintf(stderr
, "Unknown network device: %s\n", device
);
1587 fprintf(stderr
, "Could not initialize device '%s'\n", device
);
1593 int net_client_parse(const char *str
)
1601 while (*p
!= '\0' && *p
!= ',') {
1602 if ((q
- device
) < sizeof(device
) - 1)
1610 return net_client_init(device
, p
);
1613 void do_info_network(void)
1616 VLANClientState
*vc
;
1618 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1619 term_printf("VLAN %d devices:\n", vlan
->id
);
1620 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
1621 term_printf(" %s\n", vc
->info_str
);
1625 void net_cleanup(void)
1629 #if !defined(_WIN32)
1630 /* close network clients */
1631 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1632 VLANClientState
*vc
;
1634 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
1635 if (vc
->fd_read
== tap_receive
) {
1637 TAPState
*s
= vc
->opaque
;
1639 if (sscanf(vc
->info_str
, "tap: ifname=%63s ", ifname
) == 1 &&
1641 launch_script(s
->down_script
, ifname
, s
->fd
);
1643 #if defined(CONFIG_VDE)
1644 if (vc
->fd_read
== vde_from_qemu
) {
1645 VDEState
*s
= vc
->opaque
;
1654 void net_client_check(void)
1658 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1659 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
1661 if (vlan
->nb_guest_devs
== 0)
1662 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
1663 if (vlan
->nb_host_devs
== 0)
1665 "Warning: vlan %d is not connected to host network\n",