4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
32 /* Needed early for HOST_BSD etc. */
33 #include "config-host.h"
36 #include <sys/times.h>
40 #include <sys/ioctl.h>
41 #include <sys/resource.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
46 #include <net/if_tap.h>
49 #include <linux/if_tun.h>
51 #include <arpa/inet.h>
54 #include <sys/select.h>
57 #if defined(__FreeBSD__) || defined(__DragonFly__)
62 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63 #include <freebsd/stdlib.h>
68 #include <linux/rtc.h>
70 /* For the benefit of older linux systems which don't supply it,
71 we use a local copy of hpet.h. */
72 /* #include <linux/hpet.h> */
75 #include <linux/ppdev.h>
76 #include <linux/parport.h>
80 #include <sys/ethernet.h>
81 #include <sys/sockio.h>
82 #include <netinet/arp.h>
83 #include <netinet/in.h>
84 #include <netinet/in_systm.h>
85 #include <netinet/ip.h>
86 #include <netinet/ip_icmp.h> // must come after ip.h
87 #include <netinet/udp.h>
88 #include <netinet/tcp.h>
96 #if defined(__OpenBSD__)
100 #if defined(CONFIG_VDE)
101 #include <libvdeplug.h>
107 #include <sys/timeb.h>
108 #include <mmsystem.h>
109 #define getopt_long_only getopt_long
110 #define memalign(align, size) malloc(size)
113 #include "qemu-common.h"
117 #include "qemu-timer.h"
118 #include "qemu-char.h"
119 #include "audio/audio.h"
120 #include "qemu_socket.h"
121 #include "qemu-log.h"
123 #if defined(CONFIG_SLIRP)
124 #include "libslirp.h"
128 static VLANState
*first_vlan
;
130 /***********************************************************/
131 /* network device redirectors */
133 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
134 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
138 for(i
=0;i
<size
;i
+=16) {
142 fprintf(f
, "%08x ", i
);
145 fprintf(f
, " %02x", buf
[i
+j
]);
152 if (c
< ' ' || c
> '~')
161 static int parse_macaddr(uint8_t *macaddr
, const char *p
)
168 offset
= strtol(p
, &last_char
, 0);
169 if (0 == errno
&& '\0' == *last_char
&&
170 offset
>= 0 && offset
<= 0xFFFFFF) {
171 macaddr
[3] = (offset
& 0xFF0000) >> 16;
172 macaddr
[4] = (offset
& 0xFF00) >> 8;
173 macaddr
[5] = offset
& 0xFF;
176 for(i
= 0; i
< 6; i
++) {
177 macaddr
[i
] = strtol(p
, (char **)&p
, 16);
182 if (*p
!= ':' && *p
!= '-')
193 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
204 if (len
> buf_size
- 1)
213 int parse_host_src_port(struct sockaddr_in
*haddr
,
214 struct sockaddr_in
*saddr
,
215 const char *input_str
)
217 char *str
= strdup(input_str
);
218 char *host_str
= str
;
220 const char *src_str2
;
224 * Chop off any extra arguments at the end of the string which
225 * would start with a comma, then fill in the src port information
226 * if it was provided else use the "any address" and "any port".
228 if ((ptr
= strchr(str
,',')))
231 if ((src_str
= strchr(input_str
,'@'))) {
236 if (parse_host_port(haddr
, host_str
) < 0)
240 if (!src_str
|| *src_str
== '\0')
243 if (parse_host_port(saddr
, src_str2
) < 0)
254 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
262 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
264 saddr
->sin_family
= AF_INET
;
265 if (buf
[0] == '\0') {
266 saddr
->sin_addr
.s_addr
= 0;
268 if (qemu_isdigit(buf
[0])) {
269 if (!inet_aton(buf
, &saddr
->sin_addr
))
272 if ((he
= gethostbyname(buf
)) == NULL
)
274 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
277 port
= strtol(p
, (char **)&r
, 0);
280 saddr
->sin_port
= htons(port
);
284 #if !defined(_WIN32) && 0
285 static int parse_unix_path(struct sockaddr_un
*uaddr
, const char *str
)
290 len
= MIN(108, strlen(str
));
291 p
= strchr(str
, ',');
293 len
= MIN(len
, p
- str
);
295 memset(uaddr
, 0, sizeof(*uaddr
));
297 uaddr
->sun_family
= AF_UNIX
;
298 memcpy(uaddr
->sun_path
, str
, len
);
304 void qemu_format_nic_info_str(VLANClientState
*vc
, uint8_t macaddr
[6])
306 snprintf(vc
->info_str
, sizeof(vc
->info_str
),
307 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
309 macaddr
[0], macaddr
[1], macaddr
[2],
310 macaddr
[3], macaddr
[4], macaddr
[5]);
313 static char *assign_name(VLANClientState
*vc1
, const char *model
)
319 for (vlan
= first_vlan
; vlan
; vlan
= vlan
->next
) {
322 for (vc
= vlan
->first_client
; vc
; vc
= vc
->next
)
323 if (vc
!= vc1
&& strcmp(vc
->model
, model
) == 0)
327 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
332 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
335 IOReadHandler
*fd_read
,
336 IOCanRWHandler
*fd_can_read
,
340 VLANClientState
*vc
, **pvc
;
341 vc
= qemu_mallocz(sizeof(VLANClientState
));
342 vc
->model
= strdup(model
);
344 vc
->name
= strdup(name
);
346 vc
->name
= assign_name(vc
, model
);
347 vc
->fd_read
= fd_read
;
348 vc
->fd_can_read
= fd_can_read
;
349 vc
->cleanup
= cleanup
;
354 pvc
= &vlan
->first_client
;
361 void qemu_del_vlan_client(VLANClientState
*vc
)
363 VLANClientState
**pvc
= &vc
->vlan
->first_client
;
379 VLANClientState
*qemu_find_vlan_client(VLANState
*vlan
, void *opaque
)
381 VLANClientState
**pvc
= &vlan
->first_client
;
384 if ((*pvc
)->opaque
== opaque
)
392 int qemu_can_send_packet(VLANClientState
*vc1
)
394 VLANState
*vlan
= vc1
->vlan
;
397 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
399 if (vc
->fd_can_read
&& vc
->fd_can_read(vc
->opaque
))
407 qemu_deliver_packet(VLANClientState
*sender
, const uint8_t *buf
, int size
)
411 for (vc
= sender
->vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
412 if (vc
!= sender
&& !vc
->link_down
) {
413 vc
->fd_read(vc
->opaque
, buf
, size
);
418 void qemu_send_packet(VLANClientState
*vc
, const uint8_t *buf
, int size
)
420 VLANState
*vlan
= vc
->vlan
;
427 printf("vlan %d send:\n", vlan
->id
);
428 hex_dump(stdout
, buf
, size
);
430 if (vlan
->delivering
) {
431 packet
= qemu_malloc(sizeof(VLANPacket
) + size
);
432 packet
->next
= vlan
->send_queue
;
435 memcpy(packet
->data
, buf
, size
);
436 vlan
->send_queue
= packet
;
438 vlan
->delivering
= 1;
439 qemu_deliver_packet(vc
, buf
, size
);
440 while ((packet
= vlan
->send_queue
) != NULL
) {
441 qemu_deliver_packet(packet
->sender
, packet
->data
, packet
->size
);
442 vlan
->send_queue
= packet
->next
;
445 vlan
->delivering
= 0;
449 static ssize_t
vc_sendv_compat(VLANClientState
*vc
, const struct iovec
*iov
,
452 uint8_t buffer
[4096];
456 for (i
= 0; i
< iovcnt
; i
++) {
459 len
= MIN(sizeof(buffer
) - offset
, iov
[i
].iov_len
);
460 memcpy(buffer
+ offset
, iov
[i
].iov_base
, len
);
464 vc
->fd_read(vc
->opaque
, buffer
, offset
);
469 static ssize_t
calc_iov_length(const struct iovec
*iov
, int iovcnt
)
474 for (i
= 0; i
< iovcnt
; i
++)
475 offset
+= iov
[i
].iov_len
;
479 ssize_t
qemu_sendv_packet(VLANClientState
*vc1
, const struct iovec
*iov
,
482 VLANState
*vlan
= vc1
->vlan
;
487 return calc_iov_length(iov
, iovcnt
);
489 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
496 len
= calc_iov_length(iov
, iovcnt
);
498 len
= vc
->fd_readv(vc
->opaque
, iov
, iovcnt
);
499 else if (vc
->fd_read
)
500 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
502 max_len
= MAX(max_len
, len
);
508 #if defined(CONFIG_SLIRP)
510 /* slirp network adapter */
512 static int slirp_inited
;
513 static int slirp_restrict
;
514 static char *slirp_ip
;
515 static VLANClientState
*slirp_vc
;
517 int slirp_can_output(void)
519 return !slirp_vc
|| qemu_can_send_packet(slirp_vc
);
522 void slirp_output(const uint8_t *pkt
, int pkt_len
)
525 printf("slirp output:\n");
526 hex_dump(stdout
, pkt
, pkt_len
);
530 qemu_send_packet(slirp_vc
, pkt
, pkt_len
);
533 int slirp_is_inited(void)
538 static void slirp_receive(void *opaque
, const uint8_t *buf
, int size
)
541 printf("slirp input:\n");
542 hex_dump(stdout
, buf
, size
);
544 slirp_input(buf
, size
);
547 static int slirp_in_use
;
549 static void net_slirp_cleanup(VLANClientState
*vc
)
554 static int net_slirp_init(VLANState
*vlan
, const char *model
, const char *name
)
557 /* slirp only supports a single instance so far */
562 slirp_init(slirp_restrict
, slirp_ip
);
564 slirp_vc
= qemu_new_vlan_client(vlan
, model
, name
,
565 slirp_receive
, NULL
, net_slirp_cleanup
, NULL
);
566 slirp_vc
->info_str
[0] = '\0';
571 void net_slirp_redir(Monitor
*mon
, const char *redir_str
)
575 const char *p
, *errmsg
;
576 struct in_addr guest_addr
;
577 int host_port
, guest_port
;
581 slirp_init(slirp_restrict
, slirp_ip
);
585 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
587 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
589 } else if (!strcmp(buf
, "udp")) {
595 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
597 host_port
= strtol(buf
, &r
, 0);
601 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
603 if (buf
[0] == '\0') {
604 pstrcpy(buf
, sizeof(buf
), "10.0.2.15");
606 if (!inet_aton(buf
, &guest_addr
))
609 guest_port
= strtol(p
, &r
, 0);
613 if (slirp_redir(is_udp
, host_port
, guest_addr
, guest_port
) < 0) {
614 errmsg
= "could not set up redirection\n";
620 errmsg
= "invalid redirection format\n";
623 monitor_printf(mon
, "%s", errmsg
);
625 fprintf(stderr
, "qemu: %s", errmsg
);
632 static char smb_dir
[1024];
634 static void erase_dir(char *dir_name
)
640 /* erase all the files in the directory */
641 if ((d
= opendir(dir_name
)) != NULL
) {
646 if (strcmp(de
->d_name
, ".") != 0 &&
647 strcmp(de
->d_name
, "..") != 0) {
648 snprintf(filename
, sizeof(filename
), "%s/%s",
649 smb_dir
, de
->d_name
);
650 if (unlink(filename
) != 0) /* is it a directory? */
659 /* automatic user mode samba server configuration */
660 static void smb_exit(void)
665 /* automatic user mode samba server configuration */
666 void net_slirp_smb(const char *exported_dir
)
669 char smb_cmdline
[1024];
674 slirp_init(slirp_restrict
, slirp_ip
);
677 /* XXX: better tmp dir construction */
678 snprintf(smb_dir
, sizeof(smb_dir
), "/tmp/qemu-smb.%ld", (long)getpid());
679 if (mkdir(smb_dir
, 0700) < 0) {
680 fprintf(stderr
, "qemu: could not create samba server dir '%s'\n", smb_dir
);
683 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", smb_dir
, "smb.conf");
685 f
= fopen(smb_conf
, "w");
687 fprintf(stderr
, "qemu: could not create samba server configuration file '%s'\n", smb_conf
);
694 "socket address=127.0.0.1\n"
696 "lock directory=%s\n"
697 "log file=%s/log.smbd\n"
698 "smb passwd file=%s/smbpasswd\n"
714 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
715 SMBD_COMMAND
, smb_conf
);
717 slirp_add_exec(0, smb_cmdline
, 4, 139);
720 #endif /* !defined(_WIN32) */
721 void do_info_slirp(Monitor
*mon
)
731 static int vmchannel_can_read(void *opaque
)
733 struct VMChannel
*vmc
= (struct VMChannel
*)opaque
;
734 return slirp_socket_can_recv(4, vmc
->port
);
737 static void vmchannel_read(void *opaque
, const uint8_t *buf
, int size
)
739 struct VMChannel
*vmc
= (struct VMChannel
*)opaque
;
740 slirp_socket_recv(4, vmc
->port
, buf
, size
);
743 #endif /* CONFIG_SLIRP */
747 typedef struct TAPState
{
750 char down_script
[1024];
751 char down_script_arg
[128];
754 static int launch_script(const char *setup_script
, const char *ifname
, int fd
);
756 static ssize_t
tap_receive_iov(void *opaque
, const struct iovec
*iov
,
759 TAPState
*s
= opaque
;
763 len
= writev(s
->fd
, iov
, iovcnt
);
764 } while (len
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
769 static void tap_receive(void *opaque
, const uint8_t *buf
, int size
)
771 TAPState
*s
= opaque
;
774 ret
= write(s
->fd
, buf
, size
);
775 if (ret
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
782 static void tap_send(void *opaque
)
784 TAPState
*s
= opaque
;
791 sbuf
.maxlen
= sizeof(buf
);
792 sbuf
.buf
= (char *)buf
;
793 size
= getmsg(s
->fd
, NULL
, &sbuf
, &f
) >=0 ? sbuf
.len
: -1;
795 size
= read(s
->fd
, buf
, sizeof(buf
));
798 qemu_send_packet(s
->vc
, buf
, size
);
802 static void tap_cleanup(VLANClientState
*vc
)
804 TAPState
*s
= vc
->opaque
;
806 if (s
->down_script
[0])
807 launch_script(s
->down_script
, s
->down_script_arg
, s
->fd
);
809 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
816 static TAPState
*net_tap_fd_init(VLANState
*vlan
,
823 s
= qemu_mallocz(sizeof(TAPState
));
825 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, tap_receive
,
826 NULL
, tap_cleanup
, s
);
827 s
->vc
->fd_readv
= tap_receive_iov
;
828 qemu_set_fd_handler(s
->fd
, tap_send
, NULL
, s
);
829 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "fd=%d", fd
);
833 #if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
834 static int tap_open(char *ifname
, int ifname_size
)
840 TFR(fd
= open("/dev/tap", O_RDWR
));
842 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
847 dev
= devname(s
.st_rdev
, S_IFCHR
);
848 pstrcpy(ifname
, ifname_size
, dev
);
850 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
853 #elif defined(__sun__)
854 #define TUNNEWPPA (('T'<<16) | 0x0001)
856 * Allocate TAP device, returns opened fd.
857 * Stores dev name in the first arg(must be large enough).
859 static int tap_alloc(char *dev
, size_t dev_size
)
861 int tap_fd
, if_fd
, ppa
= -1;
862 static int ip_fd
= 0;
865 static int arp_fd
= 0;
866 int ip_muxid
, arp_muxid
;
867 struct strioctl strioc_if
, strioc_ppa
;
868 int link_type
= I_PLINK
;;
870 char actual_name
[32] = "";
872 memset(&ifr
, 0x0, sizeof(ifr
));
876 while( *ptr
&& !qemu_isdigit((int)*ptr
) ) ptr
++;
880 /* Check if IP device was opened */
884 TFR(ip_fd
= open("/dev/udp", O_RDWR
, 0));
886 syslog(LOG_ERR
, "Can't open /dev/ip (actually /dev/udp)");
890 TFR(tap_fd
= open("/dev/tap", O_RDWR
, 0));
892 syslog(LOG_ERR
, "Can't open /dev/tap");
896 /* Assign a new PPA and get its unit number. */
897 strioc_ppa
.ic_cmd
= TUNNEWPPA
;
898 strioc_ppa
.ic_timout
= 0;
899 strioc_ppa
.ic_len
= sizeof(ppa
);
900 strioc_ppa
.ic_dp
= (char *)&ppa
;
901 if ((ppa
= ioctl (tap_fd
, I_STR
, &strioc_ppa
)) < 0)
902 syslog (LOG_ERR
, "Can't assign new interface");
904 TFR(if_fd
= open("/dev/tap", O_RDWR
, 0));
906 syslog(LOG_ERR
, "Can't open /dev/tap (2)");
909 if(ioctl(if_fd
, I_PUSH
, "ip") < 0){
910 syslog(LOG_ERR
, "Can't push IP module");
914 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) < 0)
915 syslog(LOG_ERR
, "Can't get flags\n");
917 snprintf (actual_name
, 32, "tap%d", ppa
);
918 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
921 /* Assign ppa according to the unit number returned by tun device */
923 if (ioctl (if_fd
, SIOCSLIFNAME
, &ifr
) < 0)
924 syslog (LOG_ERR
, "Can't set PPA %d", ppa
);
925 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) <0)
926 syslog (LOG_ERR
, "Can't get flags\n");
927 /* Push arp module to if_fd */
928 if (ioctl (if_fd
, I_PUSH
, "arp") < 0)
929 syslog (LOG_ERR
, "Can't push ARP module (2)");
931 /* Push arp module to ip_fd */
932 if (ioctl (ip_fd
, I_POP
, NULL
) < 0)
933 syslog (LOG_ERR
, "I_POP failed\n");
934 if (ioctl (ip_fd
, I_PUSH
, "arp") < 0)
935 syslog (LOG_ERR
, "Can't push ARP module (3)\n");
937 TFR(arp_fd
= open ("/dev/tap", O_RDWR
, 0));
939 syslog (LOG_ERR
, "Can't open %s\n", "/dev/tap");
941 /* Set ifname to arp */
942 strioc_if
.ic_cmd
= SIOCSLIFNAME
;
943 strioc_if
.ic_timout
= 0;
944 strioc_if
.ic_len
= sizeof(ifr
);
945 strioc_if
.ic_dp
= (char *)&ifr
;
946 if (ioctl(arp_fd
, I_STR
, &strioc_if
) < 0){
947 syslog (LOG_ERR
, "Can't set ifname to arp\n");
950 if((ip_muxid
= ioctl(ip_fd
, I_LINK
, if_fd
)) < 0){
951 syslog(LOG_ERR
, "Can't link TAP device to IP");
955 if ((arp_muxid
= ioctl (ip_fd
, link_type
, arp_fd
)) < 0)
956 syslog (LOG_ERR
, "Can't link TAP device to ARP");
960 memset(&ifr
, 0x0, sizeof(ifr
));
961 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
962 ifr
.lifr_ip_muxid
= ip_muxid
;
963 ifr
.lifr_arp_muxid
= arp_muxid
;
965 if (ioctl (ip_fd
, SIOCSLIFMUXID
, &ifr
) < 0)
967 ioctl (ip_fd
, I_PUNLINK
, arp_muxid
);
968 ioctl (ip_fd
, I_PUNLINK
, ip_muxid
);
969 syslog (LOG_ERR
, "Can't set multiplexor id");
972 snprintf(dev
, dev_size
, "tap%d", ppa
);
976 static int tap_open(char *ifname
, int ifname_size
)
980 if( (fd
= tap_alloc(dev
, sizeof(dev
))) < 0 ){
981 fprintf(stderr
, "Cannot allocate TAP device\n");
984 pstrcpy(ifname
, ifname_size
, dev
);
985 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
989 static int tap_open(char *ifname
, int ifname_size
)
991 fprintf (stderr
, "no tap on AIX\n");
995 static int tap_open(char *ifname
, int ifname_size
)
1000 TFR(fd
= open("/dev/net/tun", O_RDWR
));
1002 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1005 memset(&ifr
, 0, sizeof(ifr
));
1006 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
1007 if (ifname
[0] != '\0')
1008 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
1010 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
1011 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
1013 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1017 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
1018 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1023 static int launch_script(const char *setup_script
, const char *ifname
, int fd
)
1029 /* try to launch network script */
1033 int open_max
= sysconf (_SC_OPEN_MAX
), i
;
1034 for (i
= 0; i
< open_max
; i
++)
1035 if (i
!= STDIN_FILENO
&&
1036 i
!= STDOUT_FILENO
&&
1037 i
!= STDERR_FILENO
&&
1042 *parg
++ = (char *)setup_script
;
1043 *parg
++ = (char *)ifname
;
1045 execv(setup_script
, args
);
1048 while (waitpid(pid
, &status
, 0) != pid
);
1049 if (!WIFEXITED(status
) ||
1050 WEXITSTATUS(status
) != 0) {
1051 fprintf(stderr
, "%s: could not launch network script\n",
1059 static int net_tap_init(VLANState
*vlan
, const char *model
,
1060 const char *name
, const char *ifname1
,
1061 const char *setup_script
, const char *down_script
)
1067 if (ifname1
!= NULL
)
1068 pstrcpy(ifname
, sizeof(ifname
), ifname1
);
1071 TFR(fd
= tap_open(ifname
, sizeof(ifname
)));
1075 if (!setup_script
|| !strcmp(setup_script
, "no"))
1077 if (setup_script
[0] != '\0') {
1078 if (launch_script(setup_script
, ifname
, fd
))
1081 s
= net_tap_fd_init(vlan
, model
, name
, fd
);
1082 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1083 "ifname=%s,script=%s,downscript=%s",
1084 ifname
, setup_script
, down_script
);
1085 if (down_script
&& strcmp(down_script
, "no")) {
1086 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", down_script
);
1087 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
), "%s", ifname
);
1092 #endif /* !_WIN32 */
1094 #if defined(CONFIG_VDE)
1095 typedef struct VDEState
{
1096 VLANClientState
*vc
;
1100 static void vde_to_qemu(void *opaque
)
1102 VDEState
*s
= opaque
;
1106 size
= vde_recv(s
->vde
, (char *)buf
, sizeof(buf
), 0);
1108 qemu_send_packet(s
->vc
, buf
, size
);
1112 static void vde_from_qemu(void *opaque
, const uint8_t *buf
, int size
)
1114 VDEState
*s
= opaque
;
1117 ret
= vde_send(s
->vde
, (const char *)buf
, size
, 0);
1118 if (ret
< 0 && errno
== EINTR
) {
1125 static void vde_cleanup(VLANClientState
*vc
)
1127 VDEState
*s
= vc
->opaque
;
1128 qemu_set_fd_handler(vde_datafd(s
->vde
), NULL
, NULL
, NULL
);
1133 static int net_vde_init(VLANState
*vlan
, const char *model
,
1134 const char *name
, const char *sock
,
1135 int port
, const char *group
, int mode
)
1138 char *init_group
= strlen(group
) ? (char *)group
: NULL
;
1139 char *init_sock
= strlen(sock
) ? (char *)sock
: NULL
;
1141 struct vde_open_args args
= {
1143 .group
= init_group
,
1147 s
= qemu_mallocz(sizeof(VDEState
));
1148 s
->vde
= vde_open(init_sock
, (char *)"QEMU", &args
);
1153 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, vde_from_qemu
,
1154 NULL
, vde_cleanup
, s
);
1155 qemu_set_fd_handler(vde_datafd(s
->vde
), vde_to_qemu
, NULL
, s
);
1156 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "sock=%s,fd=%d",
1157 sock
, vde_datafd(s
->vde
));
1162 /* network connection */
1163 typedef struct NetSocketState
{
1164 VLANClientState
*vc
;
1166 int state
; /* 0 = getting length, 1 = getting data */
1168 unsigned int packet_len
;
1170 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1173 typedef struct NetSocketListenState
{
1178 } NetSocketListenState
;
1180 /* XXX: we consider we can send the whole packet without blocking */
1181 static void net_socket_receive(void *opaque
, const uint8_t *buf
, int size
)
1183 NetSocketState
*s
= opaque
;
1187 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
1188 send_all(s
->fd
, buf
, size
);
1191 static void net_socket_receive_dgram(void *opaque
, const uint8_t *buf
, int size
)
1193 NetSocketState
*s
= opaque
;
1194 sendto(s
->fd
, buf
, size
, 0,
1195 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
1198 static void net_socket_send(void *opaque
)
1200 NetSocketState
*s
= opaque
;
1206 size
= recv(s
->fd
, buf1
, sizeof(buf1
), 0);
1208 err
= socket_error();
1209 if (err
!= EWOULDBLOCK
)
1211 } else if (size
== 0) {
1212 /* end of connection */
1214 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1220 /* reassemble a packet from the network */
1226 memcpy(s
->buf
+ s
->index
, buf
, l
);
1230 if (s
->index
== 4) {
1232 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
1238 l
= s
->packet_len
- s
->index
;
1241 if (s
->index
+ l
<= sizeof(s
->buf
)) {
1242 memcpy(s
->buf
+ s
->index
, buf
, l
);
1244 fprintf(stderr
, "serious error: oversized packet received,"
1245 "connection terminated.\n");
1253 if (s
->index
>= s
->packet_len
) {
1254 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
1263 static void net_socket_send_dgram(void *opaque
)
1265 NetSocketState
*s
= opaque
;
1268 size
= recv(s
->fd
, s
->buf
, sizeof(s
->buf
), 0);
1272 /* end of connection */
1273 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1276 qemu_send_packet(s
->vc
, s
->buf
, size
);
1279 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
1284 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
1285 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1286 inet_ntoa(mcastaddr
->sin_addr
),
1287 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
1291 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
1293 perror("socket(PF_INET, SOCK_DGRAM)");
1298 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
1299 (const char *)&val
, sizeof(val
));
1301 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1305 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
1311 /* Add host to multicast group */
1312 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
1313 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
1315 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
1316 (const char *)&imr
, sizeof(struct ip_mreq
));
1318 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1322 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1324 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
1325 (const char *)&val
, sizeof(val
));
1327 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1331 socket_set_nonblock(fd
);
1339 static void net_socket_cleanup(VLANClientState
*vc
)
1341 NetSocketState
*s
= vc
->opaque
;
1342 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1347 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
,
1350 int fd
, int is_connected
)
1352 struct sockaddr_in saddr
;
1354 socklen_t saddr_len
;
1357 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1358 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1359 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1363 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
1365 if (saddr
.sin_addr
.s_addr
==0) {
1366 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1370 /* clone dgram socket */
1371 newfd
= net_socket_mcast_create(&saddr
);
1373 /* error already reported by net_socket_mcast_create() */
1377 /* clone newfd to fd, close newfd */
1382 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1383 fd
, strerror(errno
));
1388 s
= qemu_mallocz(sizeof(NetSocketState
));
1391 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, net_socket_receive_dgram
,
1392 NULL
, net_socket_cleanup
, s
);
1393 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
1395 /* mcast: save bound address as dst */
1396 if (is_connected
) s
->dgram_dst
=saddr
;
1398 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1399 "socket: fd=%d (%s mcast=%s:%d)",
1400 fd
, is_connected
? "cloned" : "",
1401 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1405 static void net_socket_connect(void *opaque
)
1407 NetSocketState
*s
= opaque
;
1408 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
1411 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
,
1414 int fd
, int is_connected
)
1417 s
= qemu_mallocz(sizeof(NetSocketState
));
1419 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, net_socket_receive
,
1420 NULL
, net_socket_cleanup
, s
);
1421 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1422 "socket: fd=%d", fd
);
1424 net_socket_connect(s
);
1426 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
1431 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
,
1432 const char *model
, const char *name
,
1433 int fd
, int is_connected
)
1435 int so_type
=-1, optlen
=sizeof(so_type
);
1437 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
1438 (socklen_t
*)&optlen
)< 0) {
1439 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
1444 return net_socket_fd_init_dgram(vlan
, model
, name
, fd
, is_connected
);
1446 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
1448 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1449 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
1450 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
1455 static void net_socket_accept(void *opaque
)
1457 NetSocketListenState
*s
= opaque
;
1459 struct sockaddr_in saddr
;
1464 len
= sizeof(saddr
);
1465 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
1466 if (fd
< 0 && errno
!= EINTR
) {
1468 } else if (fd
>= 0) {
1472 s1
= net_socket_fd_init(s
->vlan
, s
->model
, s
->name
, fd
, 1);
1476 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
1477 "socket: connection from %s:%d",
1478 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1482 static int net_socket_listen_init(VLANState
*vlan
,
1485 const char *host_str
)
1487 NetSocketListenState
*s
;
1489 struct sockaddr_in saddr
;
1491 if (parse_host_port(&saddr
, host_str
) < 0)
1494 s
= qemu_mallocz(sizeof(NetSocketListenState
));
1496 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1501 socket_set_nonblock(fd
);
1503 /* allow fast reuse */
1505 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
1507 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1512 ret
= listen(fd
, 0);
1518 s
->model
= strdup(model
);
1519 s
->name
= name
? strdup(name
) : NULL
;
1521 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
1525 static int net_socket_connect_init(VLANState
*vlan
,
1528 const char *host_str
)
1531 int fd
, connected
, ret
, err
;
1532 struct sockaddr_in saddr
;
1534 if (parse_host_port(&saddr
, host_str
) < 0)
1537 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1542 socket_set_nonblock(fd
);
1546 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1548 err
= socket_error();
1549 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
1550 } else if (err
== EINPROGRESS
) {
1553 } else if (err
== WSAEALREADY
) {
1566 s
= net_socket_fd_init(vlan
, model
, name
, fd
, connected
);
1569 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1570 "socket: connect to %s:%d",
1571 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1575 static int net_socket_mcast_init(VLANState
*vlan
,
1578 const char *host_str
)
1582 struct sockaddr_in saddr
;
1584 if (parse_host_port(&saddr
, host_str
) < 0)
1588 fd
= net_socket_mcast_create(&saddr
);
1592 s
= net_socket_fd_init(vlan
, model
, name
, fd
, 0);
1596 s
->dgram_dst
= saddr
;
1598 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1599 "socket: mcast=%s:%d",
1600 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1605 typedef struct DumpState
{
1606 VLANClientState
*pcap_vc
;
1611 #define PCAP_MAGIC 0xa1b2c3d4
1613 struct pcap_file_hdr
{
1615 uint16_t version_major
;
1616 uint16_t version_minor
;
1623 struct pcap_sf_pkthdr
{
1632 static void dump_receive(void *opaque
, const uint8_t *buf
, int size
)
1634 DumpState
*s
= opaque
;
1635 struct pcap_sf_pkthdr hdr
;
1639 /* Early return in case of previous error. */
1644 ts
= muldiv64 (qemu_get_clock(vm_clock
),1000000, ticks_per_sec
);
1645 caplen
= size
> s
->pcap_caplen
? s
->pcap_caplen
: size
;
1647 hdr
.ts
.tv_sec
= ts
/ 1000000000LL;
1648 hdr
.ts
.tv_usec
= ts
% 1000000;
1649 hdr
.caplen
= caplen
;
1651 if (write(s
->fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
) ||
1652 write(s
->fd
, buf
, caplen
) != caplen
) {
1653 qemu_log("-net dump write error - stop dump\n");
1659 static void net_dump_cleanup(VLANClientState
*vc
)
1661 DumpState
*s
= vc
->opaque
;
1667 static int net_dump_init(VLANState
*vlan
, const char *device
,
1668 const char *name
, const char *filename
, int len
)
1670 struct pcap_file_hdr hdr
;
1673 s
= qemu_malloc(sizeof(DumpState
));
1675 s
->fd
= open(filename
, O_CREAT
| O_WRONLY
, 0644);
1677 fprintf(stderr
, "-net dump: can't open %s\n", filename
);
1681 s
->pcap_caplen
= len
;
1683 hdr
.magic
= PCAP_MAGIC
;
1684 hdr
.version_major
= 2;
1685 hdr
.version_minor
= 4;
1688 hdr
.snaplen
= s
->pcap_caplen
;
1691 if (write(s
->fd
, &hdr
, sizeof(hdr
)) < sizeof(hdr
)) {
1692 perror("-net dump write error");
1698 s
->pcap_vc
= qemu_new_vlan_client(vlan
, device
, name
, dump_receive
, NULL
,
1699 net_dump_cleanup
, s
);
1700 snprintf(s
->pcap_vc
->info_str
, sizeof(s
->pcap_vc
->info_str
),
1701 "dump to %s (len=%d)", filename
, len
);
1705 /* find or alloc a new VLAN */
1706 VLANState
*qemu_find_vlan(int id
)
1708 VLANState
**pvlan
, *vlan
;
1709 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1713 vlan
= qemu_mallocz(sizeof(VLANState
));
1716 pvlan
= &first_vlan
;
1717 while (*pvlan
!= NULL
)
1718 pvlan
= &(*pvlan
)->next
;
1723 static int nic_get_free_idx(void)
1727 for (index
= 0; index
< MAX_NICS
; index
++)
1728 if (!nd_table
[index
].used
)
1733 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
1735 const char *models
[2];
1740 qemu_check_nic_model_list(nd
, models
, model
);
1743 void qemu_check_nic_model_list(NICInfo
*nd
, const char * const *models
,
1744 const char *default_model
)
1746 int i
, exit_status
= 0;
1749 nd
->model
= strdup(default_model
);
1751 if (strcmp(nd
->model
, "?") != 0) {
1752 for (i
= 0 ; models
[i
]; i
++)
1753 if (strcmp(nd
->model
, models
[i
]) == 0)
1756 fprintf(stderr
, "qemu: Unsupported NIC model: %s\n", nd
->model
);
1760 fprintf(stderr
, "qemu: Supported NIC models: ");
1761 for (i
= 0 ; models
[i
]; i
++)
1762 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
1767 int net_client_init(const char *device
, const char *p
)
1769 static const char * const fd_params
[] = {
1770 "vlan", "name", "fd", NULL
1778 if (get_param_value(buf
, sizeof(buf
), "vlan", p
)) {
1779 vlan_id
= strtol(buf
, NULL
, 0);
1781 vlan
= qemu_find_vlan(vlan_id
);
1783 if (get_param_value(buf
, sizeof(buf
), "name", p
)) {
1786 if (!strcmp(device
, "nic")) {
1787 static const char * const nic_params
[] = {
1788 "vlan", "name", "macaddr", "model", NULL
1792 int idx
= nic_get_free_idx();
1794 if (check_params(nic_params
, p
) < 0) {
1795 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1799 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
1800 fprintf(stderr
, "Too Many NICs\n");
1804 nd
= &nd_table
[idx
];
1805 macaddr
= nd
->macaddr
;
1811 macaddr
[5] = 0x56 + idx
;
1813 if (get_param_value(buf
, sizeof(buf
), "macaddr", p
)) {
1814 if (parse_macaddr(macaddr
, buf
) < 0) {
1815 fprintf(stderr
, "invalid syntax for ethernet address\n");
1820 if (get_param_value(buf
, sizeof(buf
), "model", p
)) {
1821 nd
->model
= strdup(buf
);
1828 vlan
->nb_guest_devs
++;
1831 if (!strcmp(device
, "none")) {
1833 fprintf(stderr
, "qemu: 'none' takes no parameters\n");
1836 /* does nothing. It is needed to signal that no network cards
1841 if (!strcmp(device
, "user")) {
1842 static const char * const slirp_params
[] = {
1843 "vlan", "name", "hostname", "restrict", "ip", NULL
1845 if (check_params(slirp_params
, p
) < 0) {
1846 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1850 if (get_param_value(buf
, sizeof(buf
), "hostname", p
)) {
1851 pstrcpy(slirp_hostname
, sizeof(slirp_hostname
), buf
);
1853 if (get_param_value(buf
, sizeof(buf
), "restrict", p
)) {
1854 slirp_restrict
= (buf
[0] == 'y') ? 1 : 0;
1856 if (get_param_value(buf
, sizeof(buf
), "ip", p
)) {
1857 slirp_ip
= strdup(buf
);
1859 vlan
->nb_host_devs
++;
1860 ret
= net_slirp_init(vlan
, device
, name
);
1861 } else if (!strcmp(device
, "channel")) {
1863 char name
[20], *devname
;
1864 struct VMChannel
*vmc
;
1866 port
= strtol(p
, &devname
, 10);
1868 if (port
< 1 || port
> 65535) {
1869 fprintf(stderr
, "vmchannel wrong port number\n");
1873 vmc
= malloc(sizeof(struct VMChannel
));
1874 snprintf(name
, 20, "vmchannel%ld", port
);
1875 vmc
->hd
= qemu_chr_open(name
, devname
, NULL
);
1877 fprintf(stderr
, "qemu: could not open vmchannel device"
1883 slirp_add_exec(3, vmc
->hd
, 4, port
);
1884 qemu_chr_add_handlers(vmc
->hd
, vmchannel_can_read
, vmchannel_read
,
1890 if (!strcmp(device
, "tap")) {
1891 static const char * const tap_params
[] = {
1892 "vlan", "name", "ifname", NULL
1896 if (check_params(tap_params
, p
) < 0) {
1897 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1901 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
1902 fprintf(stderr
, "tap: no interface name\n");
1906 vlan
->nb_host_devs
++;
1907 ret
= tap_win32_init(vlan
, device
, name
, ifname
);
1909 #elif defined (_AIX)
1911 if (!strcmp(device
, "tap")) {
1913 char setup_script
[1024], down_script
[1024];
1915 vlan
->nb_host_devs
++;
1916 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
1917 if (check_params(fd_params
, p
) < 0) {
1918 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1922 fd
= strtol(buf
, NULL
, 0);
1923 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1924 net_tap_fd_init(vlan
, device
, name
, fd
);
1927 static const char * const tap_params
[] = {
1928 "vlan", "name", "ifname", "script", "downscript", NULL
1930 if (check_params(tap_params
, p
) < 0) {
1931 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1935 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
1938 if (get_param_value(setup_script
, sizeof(setup_script
), "script", p
) == 0) {
1939 pstrcpy(setup_script
, sizeof(setup_script
), DEFAULT_NETWORK_SCRIPT
);
1941 if (get_param_value(down_script
, sizeof(down_script
), "downscript", p
) == 0) {
1942 pstrcpy(down_script
, sizeof(down_script
), DEFAULT_NETWORK_DOWN_SCRIPT
);
1944 ret
= net_tap_init(vlan
, device
, name
, ifname
, setup_script
, down_script
);
1948 if (!strcmp(device
, "socket")) {
1949 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
1951 if (check_params(fd_params
, p
) < 0) {
1952 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1956 fd
= strtol(buf
, NULL
, 0);
1958 if (net_socket_fd_init(vlan
, device
, name
, fd
, 1))
1960 } else if (get_param_value(buf
, sizeof(buf
), "listen", p
) > 0) {
1961 static const char * const listen_params
[] = {
1962 "vlan", "name", "listen", NULL
1964 if (check_params(listen_params
, p
) < 0) {
1965 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1969 ret
= net_socket_listen_init(vlan
, device
, name
, buf
);
1970 } else if (get_param_value(buf
, sizeof(buf
), "connect", p
) > 0) {
1971 static const char * const connect_params
[] = {
1972 "vlan", "name", "connect", NULL
1974 if (check_params(connect_params
, p
) < 0) {
1975 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1979 ret
= net_socket_connect_init(vlan
, device
, name
, buf
);
1980 } else if (get_param_value(buf
, sizeof(buf
), "mcast", p
) > 0) {
1981 static const char * const mcast_params
[] = {
1982 "vlan", "name", "mcast", NULL
1984 if (check_params(mcast_params
, p
) < 0) {
1985 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
1989 ret
= net_socket_mcast_init(vlan
, device
, name
, buf
);
1991 fprintf(stderr
, "Unknown socket options: %s\n", p
);
1995 vlan
->nb_host_devs
++;
1998 if (!strcmp(device
, "vde")) {
1999 static const char * const vde_params
[] = {
2000 "vlan", "name", "sock", "port", "group", "mode", NULL
2002 char vde_sock
[1024], vde_group
[512];
2003 int vde_port
, vde_mode
;
2005 if (check_params(vde_params
, p
) < 0) {
2006 fprintf(stderr
, "qemu: invalid parameter '%s' in '%s'\n",
2010 vlan
->nb_host_devs
++;
2011 if (get_param_value(vde_sock
, sizeof(vde_sock
), "sock", p
) <= 0) {
2014 if (get_param_value(buf
, sizeof(buf
), "port", p
) > 0) {
2015 vde_port
= strtol(buf
, NULL
, 10);
2019 if (get_param_value(vde_group
, sizeof(vde_group
), "group", p
) <= 0) {
2020 vde_group
[0] = '\0';
2022 if (get_param_value(buf
, sizeof(buf
), "mode", p
) > 0) {
2023 vde_mode
= strtol(buf
, NULL
, 8);
2027 ret
= net_vde_init(vlan
, device
, name
, vde_sock
, vde_port
, vde_group
, vde_mode
);
2030 if (!strcmp(device
, "dump")) {
2033 if (get_param_value(buf
, sizeof(buf
), "len", p
) > 0) {
2034 len
= strtol(buf
, NULL
, 0);
2036 if (!get_param_value(buf
, sizeof(buf
), "file", p
)) {
2037 snprintf(buf
, sizeof(buf
), "qemu-vlan%d.pcap", vlan_id
);
2039 ret
= net_dump_init(vlan
, device
, name
, buf
, len
);
2041 fprintf(stderr
, "Unknown network device: %s\n", device
);
2046 fprintf(stderr
, "Could not initialize device '%s'\n", device
);
2054 void net_client_uninit(NICInfo
*nd
)
2056 nd
->vlan
->nb_guest_devs
--;
2059 free((void *)nd
->model
);
2062 static int net_host_check_device(const char *device
)
2065 const char *valid_param_list
[] = { "tap", "socket", "dump"
2073 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
2074 if (!strncmp(valid_param_list
[i
], device
,
2075 strlen(valid_param_list
[i
])))
2082 void net_host_device_add(Monitor
*mon
, const char *device
, const char *opts
)
2084 if (!net_host_check_device(device
)) {
2085 monitor_printf(mon
, "invalid host network device %s\n", device
);
2088 if (net_client_init(device
, opts
? opts
: "") < 0) {
2089 monitor_printf(mon
, "adding host network device %s failed\n", device
);
2093 void net_host_device_remove(Monitor
*mon
, int vlan_id
, const char *device
)
2096 VLANClientState
*vc
;
2098 vlan
= qemu_find_vlan(vlan_id
);
2100 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
2101 if (!strcmp(vc
->name
, device
)) {
2107 monitor_printf(mon
, "can't find device %s\n", device
);
2110 if (!net_host_check_device(vc
->model
)) {
2111 monitor_printf(mon
, "invalid host network device %s\n", device
);
2114 qemu_del_vlan_client(vc
);
2117 int net_client_parse(const char *str
)
2125 while (*p
!= '\0' && *p
!= ',') {
2126 if ((q
- device
) < sizeof(device
) - 1)
2134 return net_client_init(device
, p
);
2137 void do_info_network(Monitor
*mon
)
2140 VLANClientState
*vc
;
2142 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2143 monitor_printf(mon
, "VLAN %d devices:\n", vlan
->id
);
2144 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
2145 monitor_printf(mon
, " %s: %s\n", vc
->name
, vc
->info_str
);
2149 int do_set_link(Monitor
*mon
, const char *name
, const char *up_or_down
)
2152 VLANClientState
*vc
= NULL
;
2154 for (vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
)
2155 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
2156 if (strcmp(vc
->name
, name
) == 0)
2161 monitor_printf(mon
, "could not find network device '%s'", name
);
2165 if (strcmp(up_or_down
, "up") == 0)
2167 else if (strcmp(up_or_down
, "down") == 0)
2170 monitor_printf(mon
, "invalid link status '%s'; only 'up' or 'down' "
2171 "valid\n", up_or_down
);
2173 if (vc
->link_status_changed
)
2174 vc
->link_status_changed(vc
);
2179 void net_cleanup(void)
2183 /* close network clients */
2184 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2185 VLANClientState
*vc
= vlan
->first_client
;
2188 VLANClientState
*next
= vc
->next
;
2190 qemu_del_vlan_client(vc
);
2197 void net_client_check(void)
2201 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2202 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
2204 if (vlan
->nb_guest_devs
== 0)
2205 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
2206 if (vlan
->nb_host_devs
== 0)
2208 "Warning: vlan %d is not connected to host network\n",