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 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
300 IOReadHandler
*fd_read
,
301 IOCanRWHandler
*fd_can_read
,
304 VLANClientState
*vc
, **pvc
;
305 vc
= qemu_mallocz(sizeof(VLANClientState
));
308 vc
->fd_read
= fd_read
;
309 vc
->fd_can_read
= fd_can_read
;
314 pvc
= &vlan
->first_client
;
321 void qemu_del_vlan_client(VLANClientState
*vc
)
323 VLANClientState
**pvc
= &vc
->vlan
->first_client
;
334 int qemu_can_send_packet(VLANClientState
*vc1
)
336 VLANState
*vlan
= vc1
->vlan
;
339 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
341 if (vc
->fd_can_read
&& vc
->fd_can_read(vc
->opaque
))
348 void qemu_send_packet(VLANClientState
*vc1
, const uint8_t *buf
, int size
)
350 VLANState
*vlan
= vc1
->vlan
;
354 printf("vlan %d send:\n", vlan
->id
);
355 hex_dump(stdout
, buf
, size
);
357 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
359 vc
->fd_read(vc
->opaque
, buf
, size
);
364 static ssize_t
vc_sendv_compat(VLANClientState
*vc
, const struct iovec
*iov
,
367 uint8_t buffer
[4096];
371 for (i
= 0; i
< iovcnt
; i
++) {
374 len
= MIN(sizeof(buffer
) - offset
, iov
[i
].iov_len
);
375 memcpy(buffer
+ offset
, iov
[i
].iov_base
, len
);
379 vc
->fd_read(vc
->opaque
, buffer
, offset
);
384 ssize_t
qemu_sendv_packet(VLANClientState
*vc1
, const struct iovec
*iov
,
387 VLANState
*vlan
= vc1
->vlan
;
391 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
398 len
= vc
->fd_readv(vc
->opaque
, iov
, iovcnt
);
399 else if (vc
->fd_read
)
400 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
402 max_len
= MAX(max_len
, len
);
408 #if defined(CONFIG_SLIRP)
410 /* slirp network adapter */
412 static int slirp_inited
;
413 static VLANClientState
*slirp_vc
;
415 int slirp_can_output(void)
417 return !slirp_vc
|| qemu_can_send_packet(slirp_vc
);
420 void slirp_output(const uint8_t *pkt
, int pkt_len
)
423 printf("slirp output:\n");
424 hex_dump(stdout
, pkt
, pkt_len
);
428 qemu_send_packet(slirp_vc
, pkt
, pkt_len
);
431 int slirp_is_inited(void)
436 static void slirp_receive(void *opaque
, const uint8_t *buf
, int size
)
439 printf("slirp input:\n");
440 hex_dump(stdout
, buf
, size
);
442 slirp_input(buf
, size
);
445 static int net_slirp_init(VLANState
*vlan
)
451 slirp_vc
= qemu_new_vlan_client(vlan
,
452 slirp_receive
, NULL
, NULL
);
453 snprintf(slirp_vc
->info_str
, sizeof(slirp_vc
->info_str
), "user redirector");
457 void net_slirp_redir(const char *redir_str
)
462 struct in_addr guest_addr
;
463 int host_port
, guest_port
;
471 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
473 if (!strcmp(buf
, "tcp")) {
475 } else if (!strcmp(buf
, "udp")) {
481 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
483 host_port
= strtol(buf
, &r
, 0);
487 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
489 if (buf
[0] == '\0') {
490 pstrcpy(buf
, sizeof(buf
), "10.0.2.15");
492 if (!inet_aton(buf
, &guest_addr
))
495 guest_port
= strtol(p
, &r
, 0);
499 if (slirp_redir(is_udp
, host_port
, guest_addr
, guest_port
) < 0) {
500 fprintf(stderr
, "qemu: could not set up redirection\n");
505 fprintf(stderr
, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
511 static char smb_dir
[1024];
513 static void erase_dir(char *dir_name
)
519 /* erase all the files in the directory */
520 if ((d
= opendir(dir_name
)) != 0) {
525 if (strcmp(de
->d_name
, ".") != 0 &&
526 strcmp(de
->d_name
, "..") != 0) {
527 snprintf(filename
, sizeof(filename
), "%s/%s",
528 smb_dir
, de
->d_name
);
529 if (unlink(filename
) != 0) /* is it a directory? */
538 /* automatic user mode samba server configuration */
539 static void smb_exit(void)
544 /* automatic user mode samba server configuration */
545 void net_slirp_smb(const char *exported_dir
)
548 char smb_cmdline
[1024];
556 /* XXX: better tmp dir construction */
557 snprintf(smb_dir
, sizeof(smb_dir
), "/tmp/qemu-smb.%d", getpid());
558 if (mkdir(smb_dir
, 0700) < 0) {
559 fprintf(stderr
, "qemu: could not create samba server dir '%s'\n", smb_dir
);
562 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", smb_dir
, "smb.conf");
564 f
= fopen(smb_conf
, "w");
566 fprintf(stderr
, "qemu: could not create samba server configuration file '%s'\n", smb_conf
);
573 "socket address=127.0.0.1\n"
575 "lock directory=%s\n"
576 "log file=%s/log.smbd\n"
577 "smb passwd file=%s/smbpasswd\n"
593 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
594 SMBD_COMMAND
, smb_conf
);
596 slirp_add_exec(0, smb_cmdline
, 4, 139);
599 #endif /* !defined(_WIN32) */
600 void do_info_slirp(void)
605 #endif /* CONFIG_SLIRP */
609 typedef struct TAPState
{
612 char down_script
[1024];
616 static ssize_t
tap_receive_iov(void *opaque
, const struct iovec
*iov
,
619 TAPState
*s
= opaque
;
623 len
= writev(s
->fd
, iov
, iovcnt
);
624 } while (len
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
630 static void tap_receive(void *opaque
, const uint8_t *buf
, int size
)
632 TAPState
*s
= opaque
;
635 ret
= write(s
->fd
, buf
, size
);
636 if (ret
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
643 static void tap_send(void *opaque
)
645 TAPState
*s
= opaque
;
652 sbuf
.maxlen
= sizeof(buf
);
654 size
= getmsg(s
->fd
, NULL
, &sbuf
, &f
) >=0 ? sbuf
.len
: -1;
656 size
= read(s
->fd
, buf
, sizeof(buf
));
659 qemu_send_packet(s
->vc
, buf
, size
);
665 static TAPState
*net_tap_fd_init(VLANState
*vlan
, int fd
)
669 s
= qemu_mallocz(sizeof(TAPState
));
673 s
->vc
= qemu_new_vlan_client(vlan
, tap_receive
, NULL
, s
);
675 s
->vc
->fd_readv
= tap_receive_iov
;
677 qemu_set_fd_handler(s
->fd
, tap_send
, NULL
, s
);
678 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "tap: fd=%d", fd
);
682 #if defined (_BSD) || defined (__FreeBSD_kernel__)
683 static int tap_open(char *ifname
, int ifname_size
)
689 TFR(fd
= open("/dev/tap", O_RDWR
));
691 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
696 dev
= devname(s
.st_rdev
, S_IFCHR
);
697 pstrcpy(ifname
, ifname_size
, dev
);
699 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
702 #elif defined(__sun__)
703 #define TUNNEWPPA (('T'<<16) | 0x0001)
705 * Allocate TAP device, returns opened fd.
706 * Stores dev name in the first arg(must be large enough).
708 int tap_alloc(char *dev
, size_t dev_size
)
710 int tap_fd
, if_fd
, ppa
= -1;
711 static int ip_fd
= 0;
714 static int arp_fd
= 0;
715 int ip_muxid
, arp_muxid
;
716 struct strioctl strioc_if
, strioc_ppa
;
717 int link_type
= I_PLINK
;;
719 char actual_name
[32] = "";
721 memset(&ifr
, 0x0, sizeof(ifr
));
725 while( *ptr
&& !qemu_isdigit((int)*ptr
) ) ptr
++;
729 /* Check if IP device was opened */
733 TFR(ip_fd
= open("/dev/udp", O_RDWR
, 0));
735 syslog(LOG_ERR
, "Can't open /dev/ip (actually /dev/udp)");
739 TFR(tap_fd
= open("/dev/tap", O_RDWR
, 0));
741 syslog(LOG_ERR
, "Can't open /dev/tap");
745 /* Assign a new PPA and get its unit number. */
746 strioc_ppa
.ic_cmd
= TUNNEWPPA
;
747 strioc_ppa
.ic_timout
= 0;
748 strioc_ppa
.ic_len
= sizeof(ppa
);
749 strioc_ppa
.ic_dp
= (char *)&ppa
;
750 if ((ppa
= ioctl (tap_fd
, I_STR
, &strioc_ppa
)) < 0)
751 syslog (LOG_ERR
, "Can't assign new interface");
753 TFR(if_fd
= open("/dev/tap", O_RDWR
, 0));
755 syslog(LOG_ERR
, "Can't open /dev/tap (2)");
758 if(ioctl(if_fd
, I_PUSH
, "ip") < 0){
759 syslog(LOG_ERR
, "Can't push IP module");
763 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) < 0)
764 syslog(LOG_ERR
, "Can't get flags\n");
766 snprintf (actual_name
, 32, "tap%d", ppa
);
767 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
770 /* Assign ppa according to the unit number returned by tun device */
772 if (ioctl (if_fd
, SIOCSLIFNAME
, &ifr
) < 0)
773 syslog (LOG_ERR
, "Can't set PPA %d", ppa
);
774 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) <0)
775 syslog (LOG_ERR
, "Can't get flags\n");
776 /* Push arp module to if_fd */
777 if (ioctl (if_fd
, I_PUSH
, "arp") < 0)
778 syslog (LOG_ERR
, "Can't push ARP module (2)");
780 /* Push arp module to ip_fd */
781 if (ioctl (ip_fd
, I_POP
, NULL
) < 0)
782 syslog (LOG_ERR
, "I_POP failed\n");
783 if (ioctl (ip_fd
, I_PUSH
, "arp") < 0)
784 syslog (LOG_ERR
, "Can't push ARP module (3)\n");
786 TFR(arp_fd
= open ("/dev/tap", O_RDWR
, 0));
788 syslog (LOG_ERR
, "Can't open %s\n", "/dev/tap");
790 /* Set ifname to arp */
791 strioc_if
.ic_cmd
= SIOCSLIFNAME
;
792 strioc_if
.ic_timout
= 0;
793 strioc_if
.ic_len
= sizeof(ifr
);
794 strioc_if
.ic_dp
= (char *)&ifr
;
795 if (ioctl(arp_fd
, I_STR
, &strioc_if
) < 0){
796 syslog (LOG_ERR
, "Can't set ifname to arp\n");
799 if((ip_muxid
= ioctl(ip_fd
, I_LINK
, if_fd
)) < 0){
800 syslog(LOG_ERR
, "Can't link TAP device to IP");
804 if ((arp_muxid
= ioctl (ip_fd
, link_type
, arp_fd
)) < 0)
805 syslog (LOG_ERR
, "Can't link TAP device to ARP");
809 memset(&ifr
, 0x0, sizeof(ifr
));
810 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
811 ifr
.lifr_ip_muxid
= ip_muxid
;
812 ifr
.lifr_arp_muxid
= arp_muxid
;
814 if (ioctl (ip_fd
, SIOCSLIFMUXID
, &ifr
) < 0)
816 ioctl (ip_fd
, I_PUNLINK
, arp_muxid
);
817 ioctl (ip_fd
, I_PUNLINK
, ip_muxid
);
818 syslog (LOG_ERR
, "Can't set multiplexor id");
821 snprintf(dev
, dev_size
, "tap%d", ppa
);
825 static int tap_open(char *ifname
, int ifname_size
)
829 if( (fd
= tap_alloc(dev
, sizeof(dev
))) < 0 ){
830 fprintf(stderr
, "Cannot allocate TAP device\n");
833 pstrcpy(ifname
, ifname_size
, dev
);
834 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
838 static int tap_open(char *ifname
, int ifname_size
)
840 fprintf (stderr
, "no tap on AIX\n");
844 static int tap_open(char *ifname
, int ifname_size
)
849 TFR(fd
= open("/dev/net/tun", O_RDWR
));
851 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
854 memset(&ifr
, 0, sizeof(ifr
));
855 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
856 if (ifname
[0] != '\0')
857 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
859 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
860 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
862 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
866 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
867 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
872 static int launch_script(const char *setup_script
, const char *ifname
, int fd
)
878 /* try to launch network script */
882 int open_max
= sysconf (_SC_OPEN_MAX
), i
;
883 for (i
= 0; i
< open_max
; i
++)
884 if (i
!= STDIN_FILENO
&&
885 i
!= STDOUT_FILENO
&&
886 i
!= STDERR_FILENO
&&
891 *parg
++ = (char *)setup_script
;
892 *parg
++ = (char *)ifname
;
894 execv(setup_script
, args
);
897 while (waitpid(pid
, &status
, 0) != pid
);
898 if (!WIFEXITED(status
) ||
899 WEXITSTATUS(status
) != 0) {
900 fprintf(stderr
, "%s: could not launch network script\n",
908 static int net_tap_init(VLANState
*vlan
, const char *ifname1
,
909 const char *setup_script
, const char *down_script
)
916 pstrcpy(ifname
, sizeof(ifname
), ifname1
);
919 TFR(fd
= tap_open(ifname
, sizeof(ifname
)));
923 if (!setup_script
|| !strcmp(setup_script
, "no"))
925 if (setup_script
[0] != '\0') {
926 if (launch_script(setup_script
, ifname
, fd
))
929 s
= net_tap_fd_init(vlan
, fd
);
932 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
933 "tap: ifname=%s setup_script=%s", ifname
, setup_script
);
934 if (down_script
&& strcmp(down_script
, "no"))
935 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", down_script
);
941 #if defined(CONFIG_VDE)
942 typedef struct VDEState
{
947 static void vde_to_qemu(void *opaque
)
949 VDEState
*s
= opaque
;
953 size
= vde_recv(s
->vde
, buf
, sizeof(buf
), 0);
955 qemu_send_packet(s
->vc
, buf
, size
);
959 static void vde_from_qemu(void *opaque
, const uint8_t *buf
, int size
)
961 VDEState
*s
= opaque
;
964 ret
= vde_send(s
->vde
, buf
, size
, 0);
965 if (ret
< 0 && errno
== EINTR
) {
972 static int net_vde_init(VLANState
*vlan
, const char *sock
, int port
,
973 const char *group
, int mode
)
976 char *init_group
= strlen(group
) ? (char *)group
: NULL
;
977 char *init_sock
= strlen(sock
) ? (char *)sock
: NULL
;
979 struct vde_open_args args
= {
985 s
= qemu_mallocz(sizeof(VDEState
));
988 s
->vde
= vde_open(init_sock
, "QEMU", &args
);
993 s
->vc
= qemu_new_vlan_client(vlan
, vde_from_qemu
, NULL
, s
);
994 qemu_set_fd_handler(vde_datafd(s
->vde
), vde_to_qemu
, NULL
, s
);
995 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "vde: sock=%s fd=%d",
996 sock
, vde_datafd(s
->vde
));
1001 /* network connection */
1002 typedef struct NetSocketState
{
1003 VLANClientState
*vc
;
1005 int state
; /* 0 = getting length, 1 = getting data */
1009 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1012 typedef struct NetSocketListenState
{
1015 } NetSocketListenState
;
1017 /* XXX: we consider we can send the whole packet without blocking */
1018 static void net_socket_receive(void *opaque
, const uint8_t *buf
, int size
)
1020 NetSocketState
*s
= opaque
;
1024 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
1025 send_all(s
->fd
, buf
, size
);
1028 static void net_socket_receive_dgram(void *opaque
, const uint8_t *buf
, int size
)
1030 NetSocketState
*s
= opaque
;
1031 sendto(s
->fd
, buf
, size
, 0,
1032 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
1035 static void net_socket_send(void *opaque
)
1037 NetSocketState
*s
= opaque
;
1042 size
= recv(s
->fd
, buf1
, sizeof(buf1
), 0);
1044 err
= socket_error();
1045 if (err
!= EWOULDBLOCK
)
1047 } else if (size
== 0) {
1048 /* end of connection */
1050 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1056 /* reassemble a packet from the network */
1062 memcpy(s
->buf
+ s
->index
, buf
, l
);
1066 if (s
->index
== 4) {
1068 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
1074 l
= s
->packet_len
- s
->index
;
1077 memcpy(s
->buf
+ s
->index
, buf
, l
);
1081 if (s
->index
>= s
->packet_len
) {
1082 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
1091 static void net_socket_send_dgram(void *opaque
)
1093 NetSocketState
*s
= opaque
;
1096 size
= recv(s
->fd
, s
->buf
, sizeof(s
->buf
), 0);
1100 /* end of connection */
1101 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1104 qemu_send_packet(s
->vc
, s
->buf
, size
);
1107 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
1112 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
1113 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1114 inet_ntoa(mcastaddr
->sin_addr
),
1115 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
1119 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
1121 perror("socket(PF_INET, SOCK_DGRAM)");
1126 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
1127 (const char *)&val
, sizeof(val
));
1129 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1133 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
1139 /* Add host to multicast group */
1140 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
1141 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
1143 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
1144 (const char *)&imr
, sizeof(struct ip_mreq
));
1146 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1150 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1152 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
1153 (const char *)&val
, sizeof(val
));
1155 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1159 socket_set_nonblock(fd
);
1167 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
, int fd
,
1170 struct sockaddr_in saddr
;
1172 socklen_t saddr_len
;
1175 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1176 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1177 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1181 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
1183 if (saddr
.sin_addr
.s_addr
==0) {
1184 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1188 /* clone dgram socket */
1189 newfd
= net_socket_mcast_create(&saddr
);
1191 /* error already reported by net_socket_mcast_create() */
1195 /* clone newfd to fd, close newfd */
1200 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1201 fd
, strerror(errno
));
1206 s
= qemu_mallocz(sizeof(NetSocketState
));
1211 s
->vc
= qemu_new_vlan_client(vlan
, net_socket_receive_dgram
, NULL
, s
);
1212 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
1214 /* mcast: save bound address as dst */
1215 if (is_connected
) s
->dgram_dst
=saddr
;
1217 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1218 "socket: fd=%d (%s mcast=%s:%d)",
1219 fd
, is_connected
? "cloned" : "",
1220 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1224 static void net_socket_connect(void *opaque
)
1226 NetSocketState
*s
= opaque
;
1227 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
1230 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
, int fd
,
1234 s
= qemu_mallocz(sizeof(NetSocketState
));
1238 s
->vc
= qemu_new_vlan_client(vlan
,
1239 net_socket_receive
, NULL
, s
);
1240 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1241 "socket: fd=%d", fd
);
1243 net_socket_connect(s
);
1245 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
1250 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
, int fd
,
1253 int so_type
=-1, optlen
=sizeof(so_type
);
1255 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
1256 (socklen_t
*)&optlen
)< 0) {
1257 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
1262 return net_socket_fd_init_dgram(vlan
, fd
, is_connected
);
1264 return net_socket_fd_init_stream(vlan
, fd
, is_connected
);
1266 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1267 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
1268 return net_socket_fd_init_stream(vlan
, fd
, is_connected
);
1273 static void net_socket_accept(void *opaque
)
1275 NetSocketListenState
*s
= opaque
;
1277 struct sockaddr_in saddr
;
1282 len
= sizeof(saddr
);
1283 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
1284 if (fd
< 0 && errno
!= EINTR
) {
1286 } else if (fd
>= 0) {
1290 s1
= net_socket_fd_init(s
->vlan
, fd
, 1);
1294 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
1295 "socket: connection from %s:%d",
1296 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1300 static int net_socket_listen_init(VLANState
*vlan
, const char *host_str
)
1302 NetSocketListenState
*s
;
1304 struct sockaddr_in saddr
;
1306 if (parse_host_port(&saddr
, host_str
) < 0)
1309 s
= qemu_mallocz(sizeof(NetSocketListenState
));
1313 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1318 socket_set_nonblock(fd
);
1320 /* allow fast reuse */
1322 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
1324 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1329 ret
= listen(fd
, 0);
1336 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
1340 static int net_socket_connect_init(VLANState
*vlan
, const char *host_str
)
1343 int fd
, connected
, ret
, err
;
1344 struct sockaddr_in saddr
;
1346 if (parse_host_port(&saddr
, host_str
) < 0)
1349 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1354 socket_set_nonblock(fd
);
1358 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1360 err
= socket_error();
1361 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
1362 } else if (err
== EINPROGRESS
) {
1365 } else if (err
== WSAEALREADY
) {
1378 s
= net_socket_fd_init(vlan
, fd
, connected
);
1381 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1382 "socket: connect to %s:%d",
1383 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1387 static int net_socket_mcast_init(VLANState
*vlan
, const char *host_str
)
1391 struct sockaddr_in saddr
;
1393 if (parse_host_port(&saddr
, host_str
) < 0)
1397 fd
= net_socket_mcast_create(&saddr
);
1401 s
= net_socket_fd_init(vlan
, fd
, 0);
1405 s
->dgram_dst
= saddr
;
1407 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1408 "socket: mcast=%s:%d",
1409 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1414 /* find or alloc a new VLAN */
1415 VLANState
*qemu_find_vlan(int id
)
1417 VLANState
**pvlan
, *vlan
;
1418 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1422 vlan
= qemu_mallocz(sizeof(VLANState
));
1427 pvlan
= &first_vlan
;
1428 while (*pvlan
!= NULL
)
1429 pvlan
= &(*pvlan
)->next
;
1434 int net_client_init(const char *device
, const char *p
)
1441 if (get_param_value(buf
, sizeof(buf
), "vlan", p
)) {
1442 vlan_id
= strtol(buf
, NULL
, 0);
1444 vlan
= qemu_find_vlan(vlan_id
);
1446 fprintf(stderr
, "Could not create vlan %d\n", vlan_id
);
1449 if (!strcmp(device
, "nic")) {
1453 if (nb_nics
>= MAX_NICS
) {
1454 fprintf(stderr
, "Too Many NICs\n");
1457 nd
= &nd_table
[nb_nics
];
1458 macaddr
= nd
->macaddr
;
1464 macaddr
[5] = 0x56 + nb_nics
;
1466 if (get_param_value(buf
, sizeof(buf
), "macaddr", p
)) {
1467 if (parse_macaddr(macaddr
, buf
) < 0) {
1468 fprintf(stderr
, "invalid syntax for ethernet address\n");
1472 if (get_param_value(buf
, sizeof(buf
), "model", p
)) {
1473 nd
->model
= strdup(buf
);
1477 vlan
->nb_guest_devs
++;
1480 if (!strcmp(device
, "none")) {
1481 /* does nothing. It is needed to signal that no network cards
1486 if (!strcmp(device
, "user")) {
1487 if (get_param_value(buf
, sizeof(buf
), "hostname", p
)) {
1488 pstrcpy(slirp_hostname
, sizeof(slirp_hostname
), buf
);
1490 vlan
->nb_host_devs
++;
1491 ret
= net_slirp_init(vlan
);
1495 if (!strcmp(device
, "tap")) {
1497 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
1498 fprintf(stderr
, "tap: no interface name\n");
1501 vlan
->nb_host_devs
++;
1502 ret
= tap_win32_init(vlan
, ifname
);
1504 #elif defined (_AIX)
1506 if (!strcmp(device
, "tap")) {
1508 char setup_script
[1024], down_script
[1024];
1510 vlan
->nb_host_devs
++;
1511 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
1512 fd
= strtol(buf
, NULL
, 0);
1513 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1515 if (net_tap_fd_init(vlan
, fd
))
1518 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
1521 if (get_param_value(setup_script
, sizeof(setup_script
), "script", p
) == 0) {
1522 pstrcpy(setup_script
, sizeof(setup_script
), DEFAULT_NETWORK_SCRIPT
);
1524 if (get_param_value(down_script
, sizeof(down_script
), "downscript", p
) == 0) {
1525 pstrcpy(down_script
, sizeof(down_script
), DEFAULT_NETWORK_DOWN_SCRIPT
);
1527 ret
= net_tap_init(vlan
, ifname
, setup_script
, down_script
);
1531 if (!strcmp(device
, "socket")) {
1532 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
1534 fd
= strtol(buf
, NULL
, 0);
1536 if (net_socket_fd_init(vlan
, fd
, 1))
1538 } else if (get_param_value(buf
, sizeof(buf
), "listen", p
) > 0) {
1539 ret
= net_socket_listen_init(vlan
, buf
);
1540 } else if (get_param_value(buf
, sizeof(buf
), "connect", p
) > 0) {
1541 ret
= net_socket_connect_init(vlan
, buf
);
1542 } else if (get_param_value(buf
, sizeof(buf
), "mcast", p
) > 0) {
1543 ret
= net_socket_mcast_init(vlan
, buf
);
1545 fprintf(stderr
, "Unknown socket options: %s\n", p
);
1548 vlan
->nb_host_devs
++;
1551 if (!strcmp(device
, "vde")) {
1552 char vde_sock
[1024], vde_group
[512];
1553 int vde_port
, vde_mode
;
1554 vlan
->nb_host_devs
++;
1555 if (get_param_value(vde_sock
, sizeof(vde_sock
), "sock", p
) <= 0) {
1558 if (get_param_value(buf
, sizeof(buf
), "port", p
) > 0) {
1559 vde_port
= strtol(buf
, NULL
, 10);
1563 if (get_param_value(vde_group
, sizeof(vde_group
), "group", p
) <= 0) {
1564 vde_group
[0] = '\0';
1566 if (get_param_value(buf
, sizeof(buf
), "mode", p
) > 0) {
1567 vde_mode
= strtol(buf
, NULL
, 8);
1571 ret
= net_vde_init(vlan
, vde_sock
, vde_port
, vde_group
, vde_mode
);
1575 fprintf(stderr
, "Unknown network device: %s\n", device
);
1579 fprintf(stderr
, "Could not initialize device '%s'\n", device
);
1585 int net_client_parse(const char *str
)
1593 while (*p
!= '\0' && *p
!= ',') {
1594 if ((q
- device
) < sizeof(device
) - 1)
1602 return net_client_init(device
, p
);
1605 void do_info_network(void)
1608 VLANClientState
*vc
;
1610 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1611 term_printf("VLAN %d devices:\n", vlan
->id
);
1612 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
1613 term_printf(" %s\n", vc
->info_str
);
1617 void net_cleanup(void)
1621 #if !defined(_WIN32)
1622 /* close network clients */
1623 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1624 VLANClientState
*vc
;
1626 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
1627 if (vc
->fd_read
== tap_receive
) {
1629 TAPState
*s
= vc
->opaque
;
1631 if (sscanf(vc
->info_str
, "tap: ifname=%63s ", ifname
) == 1 &&
1633 launch_script(s
->down_script
, ifname
, s
->fd
);
1635 #if defined(CONFIG_VDE)
1636 if (vc
->fd_read
== vde_from_qemu
) {
1637 VDEState
*s
= vc
->opaque
;
1646 void net_client_check(void)
1650 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1651 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
1653 if (vlan
->nb_guest_devs
== 0)
1654 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
1655 if (vlan
->nb_host_devs
== 0)
1657 "Warning: vlan %d is not connected to host network\n",