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 // FIXME: #include "qemu-kvm.h"
114 #include "qemu-common.h"
118 #include "qemu-timer.h"
119 #include "qemu-char.h"
120 #include "audio/audio.h"
121 #include "qemu_socket.h"
122 #include "qemu-log.h"
124 #include "slirp/libslirp.h"
127 static VLANState
*first_vlan
;
129 /***********************************************************/
130 /* network device redirectors */
132 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
133 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
137 for(i
=0;i
<size
;i
+=16) {
141 fprintf(f
, "%08x ", i
);
144 fprintf(f
, " %02x", buf
[i
+j
]);
151 if (c
< ' ' || c
> '~')
160 static int parse_macaddr(uint8_t *macaddr
, const char *p
)
167 offset
= strtol(p
, &last_char
, 0);
168 if (0 == errno
&& '\0' == *last_char
&&
169 offset
>= 0 && offset
<= 0xFFFFFF) {
170 macaddr
[3] = (offset
& 0xFF0000) >> 16;
171 macaddr
[4] = (offset
& 0xFF00) >> 8;
172 macaddr
[5] = offset
& 0xFF;
175 for(i
= 0; i
< 6; i
++) {
176 macaddr
[i
] = strtol(p
, (char **)&p
, 16);
181 if (*p
!= ':' && *p
!= '-')
192 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
203 if (len
> buf_size
- 1)
212 int parse_host_src_port(struct sockaddr_in
*haddr
,
213 struct sockaddr_in
*saddr
,
214 const char *input_str
)
216 char *str
= strdup(input_str
);
217 char *host_str
= str
;
219 const char *src_str2
;
223 * Chop off any extra arguments at the end of the string which
224 * would start with a comma, then fill in the src port information
225 * if it was provided else use the "any address" and "any port".
227 if ((ptr
= strchr(str
,',')))
230 if ((src_str
= strchr(input_str
,'@'))) {
235 if (parse_host_port(haddr
, host_str
) < 0)
239 if (!src_str
|| *src_str
== '\0')
242 if (parse_host_port(saddr
, src_str2
) < 0)
253 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
261 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
263 saddr
->sin_family
= AF_INET
;
264 if (buf
[0] == '\0') {
265 saddr
->sin_addr
.s_addr
= 0;
267 if (qemu_isdigit(buf
[0])) {
268 if (!inet_aton(buf
, &saddr
->sin_addr
))
271 if ((he
= gethostbyname(buf
)) == NULL
)
273 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
276 port
= strtol(p
, (char **)&r
, 0);
279 saddr
->sin_port
= htons(port
);
283 #if !defined(_WIN32) && 0
284 static int parse_unix_path(struct sockaddr_un
*uaddr
, const char *str
)
289 len
= MIN(108, strlen(str
));
290 p
= strchr(str
, ',');
292 len
= MIN(len
, p
- str
);
294 memset(uaddr
, 0, sizeof(*uaddr
));
296 uaddr
->sun_family
= AF_UNIX
;
297 memcpy(uaddr
->sun_path
, str
, len
);
303 void qemu_format_nic_info_str(VLANClientState
*vc
, uint8_t macaddr
[6])
305 snprintf(vc
->info_str
, sizeof(vc
->info_str
),
306 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
308 macaddr
[0], macaddr
[1], macaddr
[2],
309 macaddr
[3], macaddr
[4], macaddr
[5]);
312 static char *assign_name(VLANClientState
*vc1
, const char *model
)
318 for (vlan
= first_vlan
; vlan
; vlan
= vlan
->next
) {
321 for (vc
= vlan
->first_client
; vc
; vc
= vc
->next
)
322 if (vc
!= vc1
&& strcmp(vc
->model
, model
) == 0)
326 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
331 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
334 NetCanReceive
*can_receive
,
336 NetReceiveIOV
*receive_iov
,
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
->can_receive
= can_receive
;
348 vc
->receive
= receive
;
349 vc
->receive_iov
= receive_iov
;
350 vc
->cleanup
= cleanup
;
355 pvc
= &vlan
->first_client
;
362 void qemu_del_vlan_client(VLANClientState
*vc
)
364 VLANClientState
**pvc
= &vc
->vlan
->first_client
;
380 VLANClientState
*qemu_find_vlan_client(VLANState
*vlan
, void *opaque
)
382 VLANClientState
**pvc
= &vlan
->first_client
;
385 if ((*pvc
)->opaque
== opaque
)
393 static VLANClientState
*
394 qemu_find_vlan_client_by_name(Monitor
*mon
, int vlan_id
,
395 const char *client_str
)
400 vlan
= qemu_find_vlan(vlan_id
, 0);
402 monitor_printf(mon
, "unknown VLAN %d\n", vlan_id
);
406 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
407 if (!strcmp(vc
->name
, client_str
)) {
412 monitor_printf(mon
, "can't find device %s on VLAN %d\n",
413 client_str
, vlan_id
);
419 int qemu_can_send_packet(VLANClientState
*sender
)
421 VLANState
*vlan
= sender
->vlan
;
424 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
429 /* no can_receive() handler, they can always receive */
430 if (!vc
->can_receive
|| vc
->can_receive(vc
)) {
438 qemu_deliver_packet(VLANClientState
*sender
, const uint8_t *buf
, int size
, int raw
)
443 sender
->vlan
->delivering
= 1;
445 for (vc
= sender
->vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
457 if (raw
&& vc
->receive_raw
) {
458 len
= vc
->receive_raw(vc
, buf
, size
);
460 len
= vc
->receive(vc
, buf
, size
);
463 ret
= (ret
>= 0) ? ret
: len
;
466 sender
->vlan
->delivering
= 0;
471 void qemu_purge_queued_packets(VLANClientState
*vc
)
473 VLANPacket
**pp
= &vc
->vlan
->send_queue
;
475 while (*pp
!= NULL
) {
476 VLANPacket
*packet
= *pp
;
478 if (packet
->sender
== vc
) {
487 void qemu_flush_queued_packets(VLANClientState
*vc
)
491 while ((packet
= vc
->vlan
->send_queue
) != NULL
) {
494 vc
->vlan
->send_queue
= packet
->next
;
496 ret
= qemu_deliver_packet(packet
->sender
, packet
->data
,
497 packet
->size
, packet
->raw
);
498 if (ret
== 0 && packet
->sent_cb
!= NULL
) {
499 packet
->next
= vc
->vlan
->send_queue
;
500 vc
->vlan
->send_queue
= packet
;
505 packet
->sent_cb(packet
->sender
, ret
);
511 static void qemu_enqueue_packet(VLANClientState
*sender
,
512 const uint8_t *buf
, int size
, int raw
,
513 NetPacketSent
*sent_cb
)
517 packet
= qemu_malloc(sizeof(VLANPacket
) + size
);
518 packet
->next
= sender
->vlan
->send_queue
;
519 packet
->sender
= sender
;
522 packet
->sent_cb
= sent_cb
;
523 memcpy(packet
->data
, buf
, size
);
524 sender
->vlan
->send_queue
= packet
;
527 static ssize_t
qemu_send_packet_async2(VLANClientState
*sender
,
528 const uint8_t *buf
, int size
, int raw
,
529 NetPacketSent
*sent_cb
)
533 if (sender
->link_down
) {
538 printf("vlan %d send:\n", sender
->vlan
->id
);
539 hex_dump(stdout
, buf
, size
);
542 if (sender
->vlan
->delivering
) {
543 qemu_enqueue_packet(sender
, buf
, size
, raw
, NULL
);
547 ret
= qemu_deliver_packet(sender
, buf
, size
, raw
);
548 if (ret
== 0 && sent_cb
!= NULL
) {
549 qemu_enqueue_packet(sender
, buf
, size
, raw
, sent_cb
);
553 qemu_flush_queued_packets(sender
);
558 ssize_t
qemu_send_packet_async(VLANClientState
*sender
,
559 const uint8_t *buf
, int size
,
560 NetPacketSent
*sent_cb
)
562 return qemu_send_packet_async2(sender
, buf
, size
, 0, sent_cb
);
565 ssize_t
qemu_send_packet(VLANClientState
*sender
, const uint8_t *buf
, int size
)
567 return qemu_send_packet_async2(sender
, buf
, size
, 0, NULL
);
570 ssize_t
qemu_send_packet_raw(VLANClientState
*sender
, const uint8_t *buf
, int size
)
572 return qemu_send_packet_async2(sender
, buf
, size
, 1, NULL
);
575 static ssize_t
vc_sendv_compat(VLANClientState
*vc
, const struct iovec
*iov
,
578 uint8_t buffer
[4096];
582 for (i
= 0; i
< iovcnt
; i
++) {
585 len
= MIN(sizeof(buffer
) - offset
, iov
[i
].iov_len
);
586 memcpy(buffer
+ offset
, iov
[i
].iov_base
, len
);
590 return vc
->receive(vc
, buffer
, offset
);
593 static ssize_t
calc_iov_length(const struct iovec
*iov
, int iovcnt
)
598 for (i
= 0; i
< iovcnt
; i
++)
599 offset
+= iov
[i
].iov_len
;
603 static int qemu_deliver_packet_iov(VLANClientState
*sender
,
604 const struct iovec
*iov
, int iovcnt
)
609 sender
->vlan
->delivering
= 1;
611 for (vc
= sender
->vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
619 ret
= calc_iov_length(iov
, iovcnt
);
623 if (vc
->receive_iov
) {
624 len
= vc
->receive_iov(vc
, iov
, iovcnt
);
626 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
629 ret
= (ret
>= 0) ? ret
: len
;
632 sender
->vlan
->delivering
= 0;
637 static ssize_t
qemu_enqueue_packet_iov(VLANClientState
*sender
,
638 const struct iovec
*iov
, int iovcnt
,
639 NetPacketSent
*sent_cb
)
645 max_len
= calc_iov_length(iov
, iovcnt
);
647 packet
= qemu_malloc(sizeof(VLANPacket
) + max_len
);
648 packet
->next
= sender
->vlan
->send_queue
;
649 packet
->sender
= sender
;
650 packet
->sent_cb
= sent_cb
;
654 for (i
= 0; i
< iovcnt
; i
++) {
655 size_t len
= iov
[i
].iov_len
;
657 memcpy(packet
->data
+ packet
->size
, iov
[i
].iov_base
, len
);
661 sender
->vlan
->send_queue
= packet
;
666 ssize_t
qemu_sendv_packet_async(VLANClientState
*sender
,
667 const struct iovec
*iov
, int iovcnt
,
668 NetPacketSent
*sent_cb
)
672 if (sender
->link_down
) {
673 return calc_iov_length(iov
, iovcnt
);
676 if (sender
->vlan
->delivering
) {
677 return qemu_enqueue_packet_iov(sender
, iov
, iovcnt
, NULL
);
680 ret
= qemu_deliver_packet_iov(sender
, iov
, iovcnt
);
681 if (ret
== 0 && sent_cb
!= NULL
) {
682 qemu_enqueue_packet_iov(sender
, iov
, iovcnt
, sent_cb
);
686 qemu_flush_queued_packets(sender
);
692 qemu_sendv_packet(VLANClientState
*vc
, const struct iovec
*iov
, int iovcnt
)
694 return qemu_sendv_packet_async(vc
, iov
, iovcnt
, NULL
);
697 static void config_error(Monitor
*mon
, const char *fmt
, ...)
703 monitor_vprintf(mon
, fmt
, ap
);
705 fprintf(stderr
, "qemu: ");
706 vfprintf(stderr
, fmt
, ap
);
712 #if defined(CONFIG_SLIRP)
714 /* slirp network adapter */
716 #define SLIRP_CFG_HOSTFWD 1
717 #define SLIRP_CFG_LEGACY 2
719 struct slirp_config_str
{
720 struct slirp_config_str
*next
;
726 typedef struct SlirpState
{
727 TAILQ_ENTRY(SlirpState
) entry
;
735 static struct slirp_config_str
*slirp_configs
;
736 const char *legacy_tftp_prefix
;
737 const char *legacy_bootp_filename
;
738 static TAILQ_HEAD(slirp_stacks
, SlirpState
) slirp_stacks
=
739 TAILQ_HEAD_INITIALIZER(slirp_stacks
);
741 static void slirp_hostfwd(SlirpState
*s
, Monitor
*mon
, const char *redir_str
,
743 static void slirp_guestfwd(SlirpState
*s
, Monitor
*mon
, const char *config_str
,
747 static const char *legacy_smb_export
;
749 static void slirp_smb(SlirpState
*s
, Monitor
*mon
, const char *exported_dir
,
750 struct in_addr vserver_addr
);
751 static void slirp_smb_cleanup(SlirpState
*s
);
753 static inline void slirp_smb_cleanup(SlirpState
*s
) { }
756 int slirp_can_output(void *opaque
)
758 SlirpState
*s
= opaque
;
760 return qemu_can_send_packet(s
->vc
);
763 void slirp_output(void *opaque
, const uint8_t *pkt
, int pkt_len
)
765 SlirpState
*s
= opaque
;
768 printf("slirp output:\n");
769 hex_dump(stdout
, pkt
, pkt_len
);
771 qemu_send_packet(s
->vc
, pkt
, pkt_len
);
774 static ssize_t
slirp_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
776 SlirpState
*s
= vc
->opaque
;
779 printf("slirp input:\n");
780 hex_dump(stdout
, buf
, size
);
782 slirp_input(s
->slirp
, buf
, size
);
786 static void net_slirp_cleanup(VLANClientState
*vc
)
788 SlirpState
*s
= vc
->opaque
;
790 slirp_cleanup(s
->slirp
);
791 slirp_smb_cleanup(s
);
792 TAILQ_REMOVE(&slirp_stacks
, s
, entry
);
796 static int net_slirp_init(Monitor
*mon
, VLANState
*vlan
, const char *model
,
797 const char *name
, int restricted
,
798 const char *vnetwork
, const char *vhost
,
799 const char *vhostname
, const char *tftp_export
,
800 const char *bootfile
, const char *vdhcp_start
,
801 const char *vnameserver
, const char *smb_export
,
802 const char *vsmbserver
)
804 /* default settings according to historic slirp */
805 struct in_addr net
= { .s_addr
= htonl(0x0a000200) }; /* 10.0.2.0 */
806 struct in_addr mask
= { .s_addr
= htonl(0xffffff00) }; /* 255.255.255.0 */
807 struct in_addr host
= { .s_addr
= htonl(0x0a000202) }; /* 10.0.2.2 */
808 struct in_addr dhcp
= { .s_addr
= htonl(0x0a00020f) }; /* 10.0.2.15 */
809 struct in_addr dns
= { .s_addr
= htonl(0x0a000203) }; /* 10.0.2.3 */
811 struct in_addr smbsrv
= { .s_addr
= 0 };
820 tftp_export
= legacy_tftp_prefix
;
823 bootfile
= legacy_bootp_filename
;
827 if (get_str_sep(buf
, sizeof(buf
), &vnetwork
, '/') < 0) {
828 if (!inet_aton(vnetwork
, &net
)) {
831 addr
= ntohl(net
.s_addr
);
832 if (!(addr
& 0x80000000)) {
833 mask
.s_addr
= htonl(0xff000000); /* class A */
834 } else if ((addr
& 0xfff00000) == 0xac100000) {
835 mask
.s_addr
= htonl(0xfff00000); /* priv. 172.16.0.0/12 */
836 } else if ((addr
& 0xc0000000) == 0x80000000) {
837 mask
.s_addr
= htonl(0xffff0000); /* class B */
838 } else if ((addr
& 0xffff0000) == 0xc0a80000) {
839 mask
.s_addr
= htonl(0xffff0000); /* priv. 192.168.0.0/16 */
840 } else if ((addr
& 0xffff0000) == 0xc6120000) {
841 mask
.s_addr
= htonl(0xfffe0000); /* tests 198.18.0.0/15 */
842 } else if ((addr
& 0xe0000000) == 0xe0000000) {
843 mask
.s_addr
= htonl(0xffffff00); /* class C */
845 mask
.s_addr
= htonl(0xfffffff0); /* multicast/reserved */
848 if (!inet_aton(buf
, &net
)) {
851 shift
= strtol(vnetwork
, &end
, 10);
853 if (!inet_aton(vnetwork
, &mask
)) {
856 } else if (shift
< 4 || shift
> 32) {
859 mask
.s_addr
= htonl(0xffffffff << (32 - shift
));
862 net
.s_addr
&= mask
.s_addr
;
863 host
.s_addr
= net
.s_addr
| (htonl(0x0202) & ~mask
.s_addr
);
864 dhcp
.s_addr
= net
.s_addr
| (htonl(0x020f) & ~mask
.s_addr
);
865 dns
.s_addr
= net
.s_addr
| (htonl(0x0203) & ~mask
.s_addr
);
868 if (vhost
&& !inet_aton(vhost
, &host
)) {
871 if ((host
.s_addr
& mask
.s_addr
) != net
.s_addr
) {
875 if (vdhcp_start
&& !inet_aton(vdhcp_start
, &dhcp
)) {
878 if ((dhcp
.s_addr
& mask
.s_addr
) != net
.s_addr
||
879 dhcp
.s_addr
== host
.s_addr
|| dhcp
.s_addr
== dns
.s_addr
) {
883 if (vnameserver
&& !inet_aton(vnameserver
, &dns
)) {
886 if ((dns
.s_addr
& mask
.s_addr
) != net
.s_addr
||
887 dns
.s_addr
== host
.s_addr
) {
892 if (vsmbserver
&& !inet_aton(vsmbserver
, &smbsrv
)) {
897 s
= qemu_mallocz(sizeof(SlirpState
));
898 s
->slirp
= slirp_init(restricted
, net
, mask
, host
, vhostname
,
899 tftp_export
, bootfile
, dhcp
, dns
, s
);
900 TAILQ_INSERT_TAIL(&slirp_stacks
, s
, entry
);
902 while (slirp_configs
) {
903 struct slirp_config_str
*config
= slirp_configs
;
905 if (config
->flags
& SLIRP_CFG_HOSTFWD
) {
906 slirp_hostfwd(s
, mon
, config
->str
,
907 config
->flags
& SLIRP_CFG_LEGACY
);
909 slirp_guestfwd(s
, mon
, config
->str
,
910 config
->flags
& SLIRP_CFG_LEGACY
);
912 slirp_configs
= config
->next
;
917 smb_export
= legacy_smb_export
;
920 slirp_smb(s
, mon
, smb_export
, smbsrv
);
924 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, slirp_receive
, NULL
,
925 net_slirp_cleanup
, s
);
926 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
927 "net=%s, restricted=%c", inet_ntoa(net
), restricted
? 'y' : 'n');
931 static SlirpState
*slirp_lookup(Monitor
*mon
, const char *vlan
,
937 vc
= qemu_find_vlan_client_by_name(mon
, strtol(vlan
, NULL
, 0), stack
);
941 if (strcmp(vc
->model
, "user")) {
942 monitor_printf(mon
, "invalid device specified\n");
947 if (TAILQ_EMPTY(&slirp_stacks
)) {
948 monitor_printf(mon
, "user mode network stack not in use\n");
951 return TAILQ_FIRST(&slirp_stacks
);
955 void net_slirp_hostfwd_remove(Monitor
*mon
, const char *arg1
,
956 const char *arg2
, const char *arg3
)
958 struct in_addr host_addr
= { .s_addr
= INADDR_ANY
};
961 const char *src_str
, *p
;
967 s
= slirp_lookup(mon
, arg1
, arg2
);
970 s
= slirp_lookup(mon
, NULL
, NULL
);
977 if (!src_str
|| !src_str
[0])
981 get_str_sep(buf
, sizeof(buf
), &p
, ':');
983 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
985 } else if (!strcmp(buf
, "udp")) {
991 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
994 if (buf
[0] != '\0' && !inet_aton(buf
, &host_addr
)) {
1000 err
= slirp_remove_hostfwd(TAILQ_FIRST(&slirp_stacks
)->slirp
, is_udp
,
1001 host_addr
, host_port
);
1003 monitor_printf(mon
, "host forwarding rule for %s %s\n", src_str
,
1004 err
? "removed" : "not found");
1008 monitor_printf(mon
, "invalid format\n");
1011 static void slirp_hostfwd(SlirpState
*s
, Monitor
*mon
, const char *redir_str
,
1014 struct in_addr host_addr
= { .s_addr
= INADDR_ANY
};
1015 struct in_addr guest_addr
= { .s_addr
= 0 };
1016 int host_port
, guest_port
;
1023 if (!p
|| get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1026 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
1028 } else if (!strcmp(buf
, "udp")) {
1034 if (!legacy_format
) {
1035 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1038 if (buf
[0] != '\0' && !inet_aton(buf
, &host_addr
)) {
1043 if (get_str_sep(buf
, sizeof(buf
), &p
, legacy_format
? ':' : '-') < 0) {
1046 host_port
= strtol(buf
, &end
, 0);
1047 if (*end
!= '\0' || host_port
< 1 || host_port
> 65535) {
1051 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1054 if (buf
[0] != '\0' && !inet_aton(buf
, &guest_addr
)) {
1058 guest_port
= strtol(p
, &end
, 0);
1059 if (*end
!= '\0' || guest_port
< 1 || guest_port
> 65535) {
1063 if (slirp_add_hostfwd(s
->slirp
, is_udp
, host_addr
, host_port
, guest_addr
,
1065 config_error(mon
, "could not set up host forwarding rule '%s'\n",
1071 config_error(mon
, "invalid host forwarding rule '%s'\n", redir_str
);
1074 void net_slirp_hostfwd_add(Monitor
*mon
, const char *arg1
,
1075 const char *arg2
, const char *arg3
)
1077 const char *redir_str
;
1081 s
= slirp_lookup(mon
, arg1
, arg2
);
1084 s
= slirp_lookup(mon
, NULL
, NULL
);
1088 slirp_hostfwd(s
, mon
, redir_str
, 0);
1093 void net_slirp_redir(const char *redir_str
)
1095 struct slirp_config_str
*config
;
1097 if (TAILQ_EMPTY(&slirp_stacks
)) {
1098 config
= qemu_malloc(sizeof(*config
));
1099 pstrcpy(config
->str
, sizeof(config
->str
), redir_str
);
1100 config
->flags
= SLIRP_CFG_HOSTFWD
| SLIRP_CFG_LEGACY
;
1101 config
->next
= slirp_configs
;
1102 slirp_configs
= config
;
1106 slirp_hostfwd(TAILQ_FIRST(&slirp_stacks
), NULL
, redir_str
, 1);
1111 /* automatic user mode samba server configuration */
1112 static void slirp_smb_cleanup(SlirpState
*s
)
1116 if (s
->smb_dir
[0] != '\0') {
1117 snprintf(cmd
, sizeof(cmd
), "rm -rf %s", s
->smb_dir
);
1119 s
->smb_dir
[0] = '\0';
1123 static void slirp_smb(SlirpState
* s
, Monitor
*mon
, const char *exported_dir
,
1124 struct in_addr vserver_addr
)
1126 static int instance
;
1128 char smb_cmdline
[128];
1131 snprintf(s
->smb_dir
, sizeof(s
->smb_dir
), "/tmp/qemu-smb.%ld-%d",
1132 (long)getpid(), instance
++);
1133 if (mkdir(s
->smb_dir
, 0700) < 0) {
1134 config_error(mon
, "could not create samba server dir '%s'\n",
1138 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", s
->smb_dir
, "smb.conf");
1140 f
= fopen(smb_conf
, "w");
1142 slirp_smb_cleanup(s
);
1143 config_error(mon
, "could not create samba server "
1144 "configuration file '%s'\n", smb_conf
);
1151 "socket address=127.0.0.1\n"
1152 "pid directory=%s\n"
1153 "lock directory=%s\n"
1154 "log file=%s/log.smbd\n"
1155 "smb passwd file=%s/smbpasswd\n"
1156 "security = share\n"
1170 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
1171 SMBD_COMMAND
, smb_conf
);
1173 if (slirp_add_exec(s
->slirp
, 0, smb_cmdline
, vserver_addr
, 139) < 0) {
1174 slirp_smb_cleanup(s
);
1175 config_error(mon
, "conflicting/invalid smbserver address\n");
1179 /* automatic user mode samba server configuration (legacy interface) */
1180 void net_slirp_smb(const char *exported_dir
)
1182 struct in_addr vserver_addr
= { .s_addr
= 0 };
1184 if (legacy_smb_export
) {
1185 fprintf(stderr
, "-smb given twice\n");
1188 legacy_smb_export
= exported_dir
;
1189 if (!TAILQ_EMPTY(&slirp_stacks
)) {
1190 slirp_smb(TAILQ_FIRST(&slirp_stacks
), NULL
, exported_dir
,
1195 #endif /* !defined(_WIN32) */
1198 CharDriverState
*hd
;
1199 struct in_addr server
;
1204 static int guestfwd_can_read(void *opaque
)
1206 struct GuestFwd
*fwd
= opaque
;
1207 return slirp_socket_can_recv(fwd
->slirp
, fwd
->server
, fwd
->port
);
1210 static void guestfwd_read(void *opaque
, const uint8_t *buf
, int size
)
1212 struct GuestFwd
*fwd
= opaque
;
1213 slirp_socket_recv(fwd
->slirp
, fwd
->server
, fwd
->port
, buf
, size
);
1216 static void slirp_guestfwd(SlirpState
*s
, Monitor
*mon
, const char *config_str
,
1219 struct in_addr server
= { .s_addr
= 0 };
1220 struct GuestFwd
*fwd
;
1227 if (legacy_format
) {
1228 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1232 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1235 if (strcmp(buf
, "tcp") && buf
[0] != '\0') {
1238 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1241 if (buf
[0] != '\0' && !inet_aton(buf
, &server
)) {
1244 if (get_str_sep(buf
, sizeof(buf
), &p
, '-') < 0) {
1248 port
= strtol(buf
, &end
, 10);
1249 if (*end
!= '\0' || port
< 1 || port
> 65535) {
1253 fwd
= qemu_malloc(sizeof(struct GuestFwd
));
1254 snprintf(buf
, sizeof(buf
), "guestfwd.tcp:%d", port
);
1255 fwd
->hd
= qemu_chr_open(buf
, p
, NULL
);
1257 config_error(mon
, "could not open guest forwarding device '%s'\n",
1262 fwd
->server
= server
;
1264 fwd
->slirp
= s
->slirp
;
1266 if (slirp_add_exec(s
->slirp
, 3, fwd
->hd
, server
, port
) < 0) {
1267 config_error(mon
, "conflicting/invalid host:port in guest forwarding "
1268 "rule '%s'\n", config_str
);
1272 qemu_chr_add_handlers(fwd
->hd
, guestfwd_can_read
, guestfwd_read
,
1277 config_error(mon
, "invalid guest forwarding rule '%s'\n", config_str
);
1280 void do_info_usernet(Monitor
*mon
)
1284 TAILQ_FOREACH(s
, &slirp_stacks
, entry
) {
1285 monitor_printf(mon
, "VLAN %d (%s):\n", s
->vc
->vlan
->id
, s
->vc
->name
);
1286 slirp_connection_info(s
->slirp
, mon
);
1290 #endif /* CONFIG_SLIRP */
1294 int tap_has_vnet_hdr(void *opaque
)
1299 void tap_using_vnet_hdr(void *opaque
, int using_vnet_hdr
)
1303 #else /* !defined(_WIN32) */
1305 /* Maximum GSO packet size (64k) plus plenty of room for
1306 * the ethernet and virtio_net headers
1308 #define TAP_BUFSIZE (4096 + 65536)
1311 #include <linux/virtio_net.h>
1314 typedef struct TAPState
{
1315 VLANClientState
*vc
;
1317 char down_script
[1024];
1318 char down_script_arg
[128];
1319 uint8_t buf
[TAP_BUFSIZE
];
1320 unsigned int read_poll
: 1;
1321 unsigned int write_poll
: 1;
1322 unsigned int has_vnet_hdr
: 1;
1323 unsigned int using_vnet_hdr
: 1;
1326 static int launch_script(const char *setup_script
, const char *ifname
, int fd
);
1328 static int tap_can_send(void *opaque
);
1329 static void tap_send(void *opaque
);
1330 static void tap_writable(void *opaque
);
1332 static void tap_update_fd_handler(TAPState
*s
)
1334 qemu_set_fd_handler2(s
->fd
,
1335 s
->read_poll
? tap_can_send
: NULL
,
1336 s
->read_poll
? tap_send
: NULL
,
1337 s
->write_poll
? tap_writable
: NULL
,
1341 static void tap_read_poll(TAPState
*s
, int enable
)
1343 s
->read_poll
= !!enable
;
1344 tap_update_fd_handler(s
);
1347 static void tap_write_poll(TAPState
*s
, int enable
)
1349 s
->write_poll
= !!enable
;
1350 tap_update_fd_handler(s
);
1353 static void tap_writable(void *opaque
)
1355 TAPState
*s
= opaque
;
1357 tap_write_poll(s
, 0);
1359 qemu_flush_queued_packets(s
->vc
);
1362 static ssize_t
tap_receive_iov(VLANClientState
*vc
, const struct iovec
*iov
,
1365 TAPState
*s
= vc
->opaque
;
1369 len
= writev(s
->fd
, iov
, iovcnt
);
1370 } while (len
== -1 && errno
== EINTR
);
1372 if (len
== -1 && errno
== EAGAIN
) {
1373 tap_write_poll(s
, 1);
1380 static ssize_t
tap_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1382 struct iovec iov
[2];
1386 TAPState
*s
= vc
->opaque
;
1387 struct virtio_net_hdr hdr
= { 0, };
1389 if (s
->has_vnet_hdr
&& !s
->using_vnet_hdr
) {
1390 iov
[i
].iov_base
= &hdr
;
1391 iov
[i
].iov_len
= sizeof(hdr
);
1396 iov
[i
].iov_base
= (char *) buf
;
1397 iov
[i
].iov_len
= size
;
1400 return tap_receive_iov(vc
, iov
, i
);
1403 static ssize_t
tap_receive_raw(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1405 struct iovec iov
[2];
1409 TAPState
*s
= vc
->opaque
;
1410 struct virtio_net_hdr hdr
= { 0, };
1412 if (s
->has_vnet_hdr
&& s
->using_vnet_hdr
) {
1413 iov
[i
].iov_base
= &hdr
;
1414 iov
[i
].iov_len
= sizeof(hdr
);
1419 iov
[i
].iov_base
= (char *) buf
;
1420 iov
[i
].iov_len
= size
;
1423 return tap_receive_iov(vc
, iov
, i
);
1426 static int tap_can_send(void *opaque
)
1428 TAPState
*s
= opaque
;
1430 return qemu_can_send_packet(s
->vc
);
1434 static ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
1439 sbuf
.maxlen
= maxlen
;
1440 sbuf
.buf
= (char *)buf
;
1442 return getmsg(tapfd
, NULL
, &sbuf
, &f
) >= 0 ? sbuf
.len
: -1;
1445 static ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
1447 return read(tapfd
, buf
, maxlen
);
1451 static void tap_send_completed(VLANClientState
*vc
, ssize_t len
)
1453 TAPState
*s
= vc
->opaque
;
1454 tap_read_poll(s
, 1);
1457 static void tap_send(void *opaque
)
1459 TAPState
*s
= opaque
;
1463 uint8_t *buf
= s
->buf
;
1465 size
= tap_read_packet(s
->fd
, s
->buf
, sizeof(s
->buf
));
1471 if (s
->has_vnet_hdr
&& !s
->using_vnet_hdr
) {
1472 buf
+= sizeof(struct virtio_net_hdr
);
1473 size
-= sizeof(struct virtio_net_hdr
);
1477 size
= qemu_send_packet_async(s
->vc
, buf
, size
, tap_send_completed
);
1479 tap_read_poll(s
, 0);
1485 /* sndbuf should be set to a value lower than the tx queue
1486 * capacity of any destination network interface.
1487 * Ethernet NICs generally have txqueuelen=1000, so 1Mb is
1488 * a good default, given a 1500 byte MTU.
1490 #define TAP_DEFAULT_SNDBUF 1024*1024
1492 static void tap_set_sndbuf(TAPState
*s
, const char *sndbuf_str
, Monitor
*mon
)
1494 int sndbuf
= TAP_DEFAULT_SNDBUF
;
1497 sndbuf
= atoi(sndbuf_str
);
1504 if (ioctl(s
->fd
, TUNSETSNDBUF
, &sndbuf
) == -1 && sndbuf_str
) {
1505 config_error(mon
, "TUNSETSNDBUF ioctl failed: %s\n",
1510 static void tap_set_sndbuf(TAPState
*s
, const char *sndbuf_str
, Monitor
*mon
)
1513 config_error(mon
, "No '-net tap,sndbuf=<nbytes>' support available\n");
1516 #endif /* TUNSETSNDBUF */
1518 int tap_has_vnet_hdr(void *opaque
)
1520 VLANClientState
*vc
= opaque
;
1521 TAPState
*s
= vc
->opaque
;
1523 return s
? s
->has_vnet_hdr
: 0;
1526 void tap_using_vnet_hdr(void *opaque
, int using_vnet_hdr
)
1528 VLANClientState
*vc
= opaque
;
1529 TAPState
*s
= vc
->opaque
;
1531 if (!s
|| !s
->has_vnet_hdr
)
1534 s
->using_vnet_hdr
= using_vnet_hdr
!= 0;
1537 static int tap_probe_vnet_hdr(int fd
)
1539 #if defined(TUNGETIFF) && defined(IFF_VNET_HDR)
1542 if (ioctl(fd
, TUNGETIFF
, &ifr
) != 0) {
1543 fprintf(stderr
, "TUNGETIFF ioctl() failed: %s\n", strerror(errno
));
1547 return ifr
.ifr_flags
& IFF_VNET_HDR
;
1553 #ifdef TUNSETOFFLOAD
1554 static void tap_set_offload(VLANClientState
*vc
, int csum
, int tso4
, int tso6
,
1557 TAPState
*s
= vc
->opaque
;
1558 unsigned int offload
= 0;
1561 offload
|= TUN_F_CSUM
;
1563 offload
|= TUN_F_TSO4
;
1565 offload
|= TUN_F_TSO6
;
1566 if ((tso4
|| tso6
) && ecn
)
1567 offload
|= TUN_F_TSO_ECN
;
1570 if (ioctl(s
->fd
, TUNSETOFFLOAD
, offload
) != 0)
1571 fprintf(stderr
, "TUNSETOFFLOAD ioctl() failed: %s\n",
1574 #endif /* TUNSETOFFLOAD */
1576 static void tap_cleanup(VLANClientState
*vc
)
1578 TAPState
*s
= vc
->opaque
;
1580 qemu_purge_queued_packets(vc
);
1582 if (s
->down_script
[0])
1583 launch_script(s
->down_script
, s
->down_script_arg
, s
->fd
);
1585 tap_read_poll(s
, 0);
1586 tap_write_poll(s
, 0);
1593 static TAPState
*net_tap_fd_init(VLANState
*vlan
,
1601 s
= qemu_mallocz(sizeof(TAPState
));
1603 s
->has_vnet_hdr
= vnet_hdr
!= 0;
1604 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, tap_receive
,
1605 tap_receive_iov
, tap_cleanup
, s
);
1606 s
->vc
->receive_raw
= tap_receive_raw
;
1607 #ifdef TUNSETOFFLOAD
1608 s
->vc
->set_offload
= tap_set_offload
;
1609 tap_set_offload(s
->vc
, 0, 0, 0, 0);
1611 tap_read_poll(s
, 1);
1612 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "fd=%d", fd
);
1616 #if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
1617 static int tap_open(char *ifname
, int ifname_size
)
1623 TFR(fd
= open("/dev/tap", O_RDWR
));
1625 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
1630 dev
= devname(s
.st_rdev
, S_IFCHR
);
1631 pstrcpy(ifname
, ifname_size
, dev
);
1633 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1636 #elif defined(__sun__)
1637 #define TUNNEWPPA (('T'<<16) | 0x0001)
1639 * Allocate TAP device, returns opened fd.
1640 * Stores dev name in the first arg(must be large enough).
1642 static int tap_alloc(char *dev
, size_t dev_size
)
1644 int tap_fd
, if_fd
, ppa
= -1;
1645 static int ip_fd
= 0;
1648 static int arp_fd
= 0;
1649 int ip_muxid
, arp_muxid
;
1650 struct strioctl strioc_if
, strioc_ppa
;
1651 int link_type
= I_PLINK
;;
1653 char actual_name
[32] = "";
1655 memset(&ifr
, 0x0, sizeof(ifr
));
1659 while( *ptr
&& !qemu_isdigit((int)*ptr
) ) ptr
++;
1663 /* Check if IP device was opened */
1667 TFR(ip_fd
= open("/dev/udp", O_RDWR
, 0));
1669 syslog(LOG_ERR
, "Can't open /dev/ip (actually /dev/udp)");
1673 TFR(tap_fd
= open("/dev/tap", O_RDWR
, 0));
1675 syslog(LOG_ERR
, "Can't open /dev/tap");
1679 /* Assign a new PPA and get its unit number. */
1680 strioc_ppa
.ic_cmd
= TUNNEWPPA
;
1681 strioc_ppa
.ic_timout
= 0;
1682 strioc_ppa
.ic_len
= sizeof(ppa
);
1683 strioc_ppa
.ic_dp
= (char *)&ppa
;
1684 if ((ppa
= ioctl (tap_fd
, I_STR
, &strioc_ppa
)) < 0)
1685 syslog (LOG_ERR
, "Can't assign new interface");
1687 TFR(if_fd
= open("/dev/tap", O_RDWR
, 0));
1689 syslog(LOG_ERR
, "Can't open /dev/tap (2)");
1692 if(ioctl(if_fd
, I_PUSH
, "ip") < 0){
1693 syslog(LOG_ERR
, "Can't push IP module");
1697 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) < 0)
1698 syslog(LOG_ERR
, "Can't get flags\n");
1700 snprintf (actual_name
, 32, "tap%d", ppa
);
1701 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
1704 /* Assign ppa according to the unit number returned by tun device */
1706 if (ioctl (if_fd
, SIOCSLIFNAME
, &ifr
) < 0)
1707 syslog (LOG_ERR
, "Can't set PPA %d", ppa
);
1708 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) <0)
1709 syslog (LOG_ERR
, "Can't get flags\n");
1710 /* Push arp module to if_fd */
1711 if (ioctl (if_fd
, I_PUSH
, "arp") < 0)
1712 syslog (LOG_ERR
, "Can't push ARP module (2)");
1714 /* Push arp module to ip_fd */
1715 if (ioctl (ip_fd
, I_POP
, NULL
) < 0)
1716 syslog (LOG_ERR
, "I_POP failed\n");
1717 if (ioctl (ip_fd
, I_PUSH
, "arp") < 0)
1718 syslog (LOG_ERR
, "Can't push ARP module (3)\n");
1720 TFR(arp_fd
= open ("/dev/tap", O_RDWR
, 0));
1722 syslog (LOG_ERR
, "Can't open %s\n", "/dev/tap");
1724 /* Set ifname to arp */
1725 strioc_if
.ic_cmd
= SIOCSLIFNAME
;
1726 strioc_if
.ic_timout
= 0;
1727 strioc_if
.ic_len
= sizeof(ifr
);
1728 strioc_if
.ic_dp
= (char *)&ifr
;
1729 if (ioctl(arp_fd
, I_STR
, &strioc_if
) < 0){
1730 syslog (LOG_ERR
, "Can't set ifname to arp\n");
1733 if((ip_muxid
= ioctl(ip_fd
, I_LINK
, if_fd
)) < 0){
1734 syslog(LOG_ERR
, "Can't link TAP device to IP");
1738 if ((arp_muxid
= ioctl (ip_fd
, link_type
, arp_fd
)) < 0)
1739 syslog (LOG_ERR
, "Can't link TAP device to ARP");
1743 memset(&ifr
, 0x0, sizeof(ifr
));
1744 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
1745 ifr
.lifr_ip_muxid
= ip_muxid
;
1746 ifr
.lifr_arp_muxid
= arp_muxid
;
1748 if (ioctl (ip_fd
, SIOCSLIFMUXID
, &ifr
) < 0)
1750 ioctl (ip_fd
, I_PUNLINK
, arp_muxid
);
1751 ioctl (ip_fd
, I_PUNLINK
, ip_muxid
);
1752 syslog (LOG_ERR
, "Can't set multiplexor id");
1755 snprintf(dev
, dev_size
, "tap%d", ppa
);
1759 static int tap_open(char *ifname
, int ifname_size
, int *vnet_hdr
)
1763 if( (fd
= tap_alloc(dev
, sizeof(dev
))) < 0 ){
1764 fprintf(stderr
, "Cannot allocate TAP device\n");
1767 pstrcpy(ifname
, ifname_size
, dev
);
1768 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1771 #elif defined (_AIX)
1772 static int tap_open(char *ifname
, int ifname_size
)
1774 fprintf (stderr
, "no tap on AIX\n");
1778 static int tap_open(char *ifname
, int ifname_size
, int *vnet_hdr
)
1783 TFR(fd
= open("/dev/net/tun", O_RDWR
));
1785 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1788 memset(&ifr
, 0, sizeof(ifr
));
1789 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
1791 #if defined(TUNGETFEATURES) && defined(IFF_VNET_HDR)
1793 unsigned int features
;
1795 if (ioctl(fd
, TUNGETFEATURES
, &features
) == 0 &&
1796 features
& IFF_VNET_HDR
) {
1798 ifr
.ifr_flags
|= IFF_VNET_HDR
;
1803 if (ifname
[0] != '\0')
1804 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
1806 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
1807 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
1809 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1813 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
1814 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1819 static int launch_script(const char *setup_script
, const char *ifname
, int fd
)
1821 sigset_t oldmask
, mask
;
1827 sigaddset(&mask
, SIGCHLD
);
1828 sigprocmask(SIG_BLOCK
, &mask
, &oldmask
);
1830 /* try to launch network script */
1833 int open_max
= sysconf(_SC_OPEN_MAX
), i
;
1835 for (i
= 0; i
< open_max
; i
++) {
1836 if (i
!= STDIN_FILENO
&&
1837 i
!= STDOUT_FILENO
&&
1838 i
!= STDERR_FILENO
&&
1844 *parg
++ = (char *)setup_script
;
1845 *parg
++ = (char *)ifname
;
1847 execv(setup_script
, args
);
1849 } else if (pid
> 0) {
1850 while (waitpid(pid
, &status
, 0) != pid
) {
1853 sigprocmask(SIG_SETMASK
, &oldmask
, NULL
);
1855 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
1859 fprintf(stderr
, "%s: could not launch network script\n", setup_script
);
1863 static TAPState
*net_tap_init(VLANState
*vlan
, const char *model
,
1864 const char *name
, const char *ifname1
,
1865 const char *setup_script
, const char *down_script
)
1872 if (ifname1
!= NULL
)
1873 pstrcpy(ifname
, sizeof(ifname
), ifname1
);
1877 TFR(fd
= tap_open(ifname
, sizeof(ifname
), &vnet_hdr
));
1881 if (!setup_script
|| !strcmp(setup_script
, "no"))
1883 if (setup_script
[0] != '\0' &&
1884 launch_script(setup_script
, ifname
, fd
)) {
1887 s
= net_tap_fd_init(vlan
, model
, name
, fd
, vnet_hdr
);
1888 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1889 "ifname=%s,script=%s,downscript=%s",
1890 ifname
, setup_script
, down_script
);
1891 if (down_script
&& strcmp(down_script
, "no")) {
1892 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", down_script
);
1893 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
), "%s", ifname
);
1898 #endif /* !_WIN32 */
1900 #if defined(CONFIG_VDE)
1901 typedef struct VDEState
{
1902 VLANClientState
*vc
;
1906 static void vde_to_qemu(void *opaque
)
1908 VDEState
*s
= opaque
;
1912 size
= vde_recv(s
->vde
, (char *)buf
, sizeof(buf
), 0);
1914 qemu_send_packet(s
->vc
, buf
, size
);
1918 static ssize_t
vde_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1920 VDEState
*s
= vc
->opaque
;
1924 ret
= vde_send(s
->vde
, (const char *)buf
, size
, 0);
1925 } while (ret
< 0 && errno
== EINTR
);
1930 static void vde_cleanup(VLANClientState
*vc
)
1932 VDEState
*s
= vc
->opaque
;
1933 qemu_set_fd_handler(vde_datafd(s
->vde
), NULL
, NULL
, NULL
);
1938 static int net_vde_init(VLANState
*vlan
, const char *model
,
1939 const char *name
, const char *sock
,
1940 int port
, const char *group
, int mode
)
1943 char *init_group
= strlen(group
) ? (char *)group
: NULL
;
1944 char *init_sock
= strlen(sock
) ? (char *)sock
: NULL
;
1946 struct vde_open_args args
= {
1948 .group
= init_group
,
1952 s
= qemu_mallocz(sizeof(VDEState
));
1953 s
->vde
= vde_open(init_sock
, (char *)"QEMU", &args
);
1958 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, vde_receive
,
1959 NULL
, vde_cleanup
, s
);
1960 qemu_set_fd_handler(vde_datafd(s
->vde
), vde_to_qemu
, NULL
, s
);
1961 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "sock=%s,fd=%d",
1962 sock
, vde_datafd(s
->vde
));
1967 /* network connection */
1968 typedef struct NetSocketState
{
1969 VLANClientState
*vc
;
1971 int state
; /* 0 = getting length, 1 = getting data */
1973 unsigned int packet_len
;
1975 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1978 typedef struct NetSocketListenState
{
1983 } NetSocketListenState
;
1985 /* XXX: we consider we can send the whole packet without blocking */
1986 static ssize_t
net_socket_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1988 NetSocketState
*s
= vc
->opaque
;
1992 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
1993 return send_all(s
->fd
, buf
, size
);
1996 static ssize_t
net_socket_receive_dgram(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1998 NetSocketState
*s
= vc
->opaque
;
2000 return sendto(s
->fd
, (const void *)buf
, size
, 0,
2001 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
2004 static void net_socket_send(void *opaque
)
2006 NetSocketState
*s
= opaque
;
2012 size
= recv(s
->fd
, (void *)buf1
, sizeof(buf1
), 0);
2014 err
= socket_error();
2015 if (err
!= EWOULDBLOCK
)
2017 } else if (size
== 0) {
2018 /* end of connection */
2020 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2026 /* reassemble a packet from the network */
2032 memcpy(s
->buf
+ s
->index
, buf
, l
);
2036 if (s
->index
== 4) {
2038 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
2044 l
= s
->packet_len
- s
->index
;
2047 if (s
->index
+ l
<= sizeof(s
->buf
)) {
2048 memcpy(s
->buf
+ s
->index
, buf
, l
);
2050 fprintf(stderr
, "serious error: oversized packet received,"
2051 "connection terminated.\n");
2059 if (s
->index
>= s
->packet_len
) {
2060 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
2069 static void net_socket_send_dgram(void *opaque
)
2071 NetSocketState
*s
= opaque
;
2074 size
= recv(s
->fd
, (void *)s
->buf
, sizeof(s
->buf
), 0);
2078 /* end of connection */
2079 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2082 qemu_send_packet(s
->vc
, s
->buf
, size
);
2085 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
2090 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
2091 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
2092 inet_ntoa(mcastaddr
->sin_addr
),
2093 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
2097 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
2099 perror("socket(PF_INET, SOCK_DGRAM)");
2104 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
2105 (const char *)&val
, sizeof(val
));
2107 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
2111 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
2117 /* Add host to multicast group */
2118 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
2119 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
2121 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
2122 (const char *)&imr
, sizeof(struct ip_mreq
));
2124 perror("setsockopt(IP_ADD_MEMBERSHIP)");
2128 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
2130 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
2131 (const char *)&val
, sizeof(val
));
2133 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
2137 socket_set_nonblock(fd
);
2145 static void net_socket_cleanup(VLANClientState
*vc
)
2147 NetSocketState
*s
= vc
->opaque
;
2148 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2153 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
,
2156 int fd
, int is_connected
)
2158 struct sockaddr_in saddr
;
2160 socklen_t saddr_len
;
2163 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
2164 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
2165 * by ONLY ONE process: we must "clone" this dgram socket --jjo
2169 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
2171 if (saddr
.sin_addr
.s_addr
==0) {
2172 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
2176 /* clone dgram socket */
2177 newfd
= net_socket_mcast_create(&saddr
);
2179 /* error already reported by net_socket_mcast_create() */
2183 /* clone newfd to fd, close newfd */
2188 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
2189 fd
, strerror(errno
));
2194 s
= qemu_mallocz(sizeof(NetSocketState
));
2197 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, net_socket_receive_dgram
,
2198 NULL
, net_socket_cleanup
, s
);
2199 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
2201 /* mcast: save bound address as dst */
2202 if (is_connected
) s
->dgram_dst
=saddr
;
2204 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2205 "socket: fd=%d (%s mcast=%s:%d)",
2206 fd
, is_connected
? "cloned" : "",
2207 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2211 static void net_socket_connect(void *opaque
)
2213 NetSocketState
*s
= opaque
;
2214 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
2217 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
,
2220 int fd
, int is_connected
)
2223 s
= qemu_mallocz(sizeof(NetSocketState
));
2225 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, net_socket_receive
,
2226 NULL
, net_socket_cleanup
, s
);
2227 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2228 "socket: fd=%d", fd
);
2230 net_socket_connect(s
);
2232 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
2237 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
,
2238 const char *model
, const char *name
,
2239 int fd
, int is_connected
)
2241 int so_type
=-1, optlen
=sizeof(so_type
);
2243 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
2244 (socklen_t
*)&optlen
)< 0) {
2245 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
2250 return net_socket_fd_init_dgram(vlan
, model
, name
, fd
, is_connected
);
2252 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
2254 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2255 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
2256 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
2261 static void net_socket_accept(void *opaque
)
2263 NetSocketListenState
*s
= opaque
;
2265 struct sockaddr_in saddr
;
2270 len
= sizeof(saddr
);
2271 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
2272 if (fd
< 0 && errno
!= EINTR
) {
2274 } else if (fd
>= 0) {
2278 s1
= net_socket_fd_init(s
->vlan
, s
->model
, s
->name
, fd
, 1);
2282 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
2283 "socket: connection from %s:%d",
2284 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2288 static int net_socket_listen_init(VLANState
*vlan
,
2291 const char *host_str
)
2293 NetSocketListenState
*s
;
2295 struct sockaddr_in saddr
;
2297 if (parse_host_port(&saddr
, host_str
) < 0)
2300 s
= qemu_mallocz(sizeof(NetSocketListenState
));
2302 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
2307 socket_set_nonblock(fd
);
2309 /* allow fast reuse */
2311 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
2313 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
2318 ret
= listen(fd
, 0);
2324 s
->model
= strdup(model
);
2325 s
->name
= name
? strdup(name
) : NULL
;
2327 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
2331 static int net_socket_connect_init(VLANState
*vlan
,
2334 const char *host_str
)
2337 int fd
, connected
, ret
, err
;
2338 struct sockaddr_in saddr
;
2340 if (parse_host_port(&saddr
, host_str
) < 0)
2343 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
2348 socket_set_nonblock(fd
);
2352 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
2354 err
= socket_error();
2355 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
2356 } else if (err
== EINPROGRESS
) {
2359 } else if (err
== WSAEALREADY
) {
2372 s
= net_socket_fd_init(vlan
, model
, name
, fd
, connected
);
2375 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2376 "socket: connect to %s:%d",
2377 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2381 static int net_socket_mcast_init(VLANState
*vlan
,
2384 const char *host_str
)
2388 struct sockaddr_in saddr
;
2390 if (parse_host_port(&saddr
, host_str
) < 0)
2394 fd
= net_socket_mcast_create(&saddr
);
2398 s
= net_socket_fd_init(vlan
, model
, name
, fd
, 0);
2402 s
->dgram_dst
= saddr
;
2404 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2405 "socket: mcast=%s:%d",
2406 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2411 typedef struct DumpState
{
2412 VLANClientState
*pcap_vc
;
2417 #define PCAP_MAGIC 0xa1b2c3d4
2419 struct pcap_file_hdr
{
2421 uint16_t version_major
;
2422 uint16_t version_minor
;
2429 struct pcap_sf_pkthdr
{
2438 static ssize_t
dump_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
2440 DumpState
*s
= vc
->opaque
;
2441 struct pcap_sf_pkthdr hdr
;
2445 /* Early return in case of previous error. */
2450 ts
= muldiv64(qemu_get_clock(vm_clock
), 1000000, ticks_per_sec
);
2451 caplen
= size
> s
->pcap_caplen
? s
->pcap_caplen
: size
;
2453 hdr
.ts
.tv_sec
= ts
/ 1000000;
2454 hdr
.ts
.tv_usec
= ts
% 1000000;
2455 hdr
.caplen
= caplen
;
2457 if (write(s
->fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
) ||
2458 write(s
->fd
, buf
, caplen
) != caplen
) {
2459 qemu_log("-net dump write error - stop dump\n");
2467 static void net_dump_cleanup(VLANClientState
*vc
)
2469 DumpState
*s
= vc
->opaque
;
2475 static int net_dump_init(Monitor
*mon
, VLANState
*vlan
, const char *device
,
2476 const char *name
, const char *filename
, int len
)
2478 struct pcap_file_hdr hdr
;
2481 s
= qemu_malloc(sizeof(DumpState
));
2483 s
->fd
= open(filename
, O_CREAT
| O_WRONLY
| O_BINARY
, 0644);
2485 config_error(mon
, "-net dump: can't open %s\n", filename
);
2489 s
->pcap_caplen
= len
;
2491 hdr
.magic
= PCAP_MAGIC
;
2492 hdr
.version_major
= 2;
2493 hdr
.version_minor
= 4;
2496 hdr
.snaplen
= s
->pcap_caplen
;
2499 if (write(s
->fd
, &hdr
, sizeof(hdr
)) < sizeof(hdr
)) {
2500 config_error(mon
, "-net dump write error: %s\n", strerror(errno
));
2506 s
->pcap_vc
= qemu_new_vlan_client(vlan
, device
, name
, NULL
, dump_receive
, NULL
,
2507 net_dump_cleanup
, s
);
2508 snprintf(s
->pcap_vc
->info_str
, sizeof(s
->pcap_vc
->info_str
),
2509 "dump to %s (len=%d)", filename
, len
);
2513 /* find or alloc a new VLAN */
2514 VLANState
*qemu_find_vlan(int id
, int allocate
)
2516 VLANState
**pvlan
, *vlan
;
2517 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2524 vlan
= qemu_mallocz(sizeof(VLANState
));
2527 pvlan
= &first_vlan
;
2528 while (*pvlan
!= NULL
)
2529 pvlan
= &(*pvlan
)->next
;
2534 static int nic_get_free_idx(void)
2538 for (index
= 0; index
< MAX_NICS
; index
++)
2539 if (!nd_table
[index
].used
)
2544 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
2546 const char *models
[2];
2551 qemu_check_nic_model_list(nd
, models
, model
);
2554 void qemu_check_nic_model_list(NICInfo
*nd
, const char * const *models
,
2555 const char *default_model
)
2557 int i
, exit_status
= 0;
2560 nd
->model
= strdup(default_model
);
2562 if (strcmp(nd
->model
, "?") != 0) {
2563 for (i
= 0 ; models
[i
]; i
++)
2564 if (strcmp(nd
->model
, models
[i
]) == 0)
2567 fprintf(stderr
, "qemu: Unsupported NIC model: %s\n", nd
->model
);
2571 fprintf(stderr
, "qemu: Supported NIC models: ");
2572 for (i
= 0 ; models
[i
]; i
++)
2573 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
2578 int net_client_init(Monitor
*mon
, const char *device
, const char *p
)
2586 if (get_param_value(buf
, sizeof(buf
), "vlan", p
)) {
2587 vlan_id
= strtol(buf
, NULL
, 0);
2589 vlan
= qemu_find_vlan(vlan_id
, 1);
2591 if (get_param_value(buf
, sizeof(buf
), "name", p
)) {
2592 name
= qemu_strdup(buf
);
2594 if (!strcmp(device
, "nic")) {
2595 static const char * const nic_params
[] = {
2596 "vlan", "name", "macaddr", "model", "addr", "vectors", NULL
2600 int idx
= nic_get_free_idx();
2602 if (check_params(buf
, sizeof(buf
), nic_params
, p
) < 0) {
2603 config_error(mon
, "invalid parameter '%s' in '%s'\n", buf
, p
);
2607 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
2608 config_error(mon
, "Too Many NICs\n");
2612 nd
= &nd_table
[idx
];
2613 macaddr
= nd
->macaddr
;
2619 macaddr
[5] = 0x56 + idx
;
2621 if (get_param_value(buf
, sizeof(buf
), "macaddr", p
)) {
2622 if (parse_macaddr(macaddr
, buf
) < 0) {
2623 config_error(mon
, "invalid syntax for ethernet address\n");
2628 if (get_param_value(buf
, sizeof(buf
), "model", p
)) {
2629 nd
->model
= strdup(buf
);
2631 if (get_param_value(buf
, sizeof(buf
), "addr", p
)) {
2632 nd
->devaddr
= strdup(buf
);
2634 nd
->nvectors
= NIC_NVECTORS_UNSPECIFIED
;
2635 if (get_param_value(buf
, sizeof(buf
), "vectors", p
)) {
2637 long vectors
= strtol(buf
, &endptr
, 0);
2639 config_error(mon
, "invalid syntax for # of vectors\n");
2643 if (vectors
< 0 || vectors
> 0x7ffffff) {
2644 config_error(mon
, "invalid # of vectors\n");
2648 nd
->nvectors
= vectors
;
2655 vlan
->nb_guest_devs
++;
2658 if (!strcmp(device
, "none")) {
2660 config_error(mon
, "'none' takes no parameters\n");
2664 /* does nothing. It is needed to signal that no network cards
2669 if (!strcmp(device
, "user")) {
2670 static const char * const slirp_params
[] = {
2671 "vlan", "name", "hostname", "restrict", "ip", "net", "host",
2672 "tftp", "bootfile", "dhcpstart", "dns", "smb", "smbserver",
2673 "hostfwd", "guestfwd", NULL
2675 struct slirp_config_str
*config
;
2679 char *vhostname
= NULL
;
2680 char *tftp_export
= NULL
;
2681 char *bootfile
= NULL
;
2682 char *vdhcp_start
= NULL
;
2683 char *vnamesrv
= NULL
;
2684 char *smb_export
= NULL
;
2685 char *vsmbsrv
= NULL
;
2688 if (check_params(buf
, sizeof(buf
), slirp_params
, p
) < 0) {
2689 config_error(mon
, "invalid parameter '%s' in '%s'\n", buf
, p
);
2693 if (get_param_value(buf
, sizeof(buf
), "ip", p
)) {
2694 int vnet_buflen
= strlen(buf
) + strlen("/24") + 1;
2695 /* emulate legacy parameter */
2696 vnet
= qemu_malloc(vnet_buflen
);
2697 pstrcpy(vnet
, vnet_buflen
, buf
);
2698 pstrcat(vnet
, vnet_buflen
, "/24");
2700 if (get_param_value(buf
, sizeof(buf
), "net", p
)) {
2701 vnet
= qemu_strdup(buf
);
2703 if (get_param_value(buf
, sizeof(buf
), "host", p
)) {
2704 vhost
= qemu_strdup(buf
);
2706 if (get_param_value(buf
, sizeof(buf
), "hostname", p
)) {
2707 vhostname
= qemu_strdup(buf
);
2709 if (get_param_value(buf
, sizeof(buf
), "restrict", p
)) {
2710 restricted
= (buf
[0] == 'y') ? 1 : 0;
2712 if (get_param_value(buf
, sizeof(buf
), "dhcpstart", p
)) {
2713 vdhcp_start
= qemu_strdup(buf
);
2715 if (get_param_value(buf
, sizeof(buf
), "dns", p
)) {
2716 vnamesrv
= qemu_strdup(buf
);
2718 if (get_param_value(buf
, sizeof(buf
), "tftp", p
)) {
2719 tftp_export
= qemu_strdup(buf
);
2721 if (get_param_value(buf
, sizeof(buf
), "bootfile", p
)) {
2722 bootfile
= qemu_strdup(buf
);
2724 if (get_param_value(buf
, sizeof(buf
), "smb", p
)) {
2725 smb_export
= qemu_strdup(buf
);
2726 if (get_param_value(buf
, sizeof(buf
), "smbserver", p
)) {
2727 vsmbsrv
= qemu_strdup(buf
);
2732 config
= qemu_malloc(sizeof(*config
));
2733 if (!get_next_param_value(config
->str
, sizeof(config
->str
),
2737 config
->flags
= SLIRP_CFG_HOSTFWD
;
2738 config
->next
= slirp_configs
;
2739 slirp_configs
= config
;
2744 config
= qemu_malloc(sizeof(*config
));
2745 if (!get_next_param_value(config
->str
, sizeof(config
->str
),
2750 config
->next
= slirp_configs
;
2751 slirp_configs
= config
;
2755 vlan
->nb_host_devs
++;
2756 ret
= net_slirp_init(mon
, vlan
, device
, name
, restricted
, vnet
, vhost
,
2757 vhostname
, tftp_export
, bootfile
, vdhcp_start
,
2758 vnamesrv
, smb_export
, vsmbsrv
);
2761 qemu_free(vhostname
);
2762 qemu_free(tftp_export
);
2763 qemu_free(bootfile
);
2764 qemu_free(vdhcp_start
);
2765 qemu_free(vnamesrv
);
2766 qemu_free(smb_export
);
2768 } else if (!strcmp(device
, "channel")) {
2769 if (TAILQ_EMPTY(&slirp_stacks
)) {
2770 struct slirp_config_str
*config
;
2772 config
= qemu_malloc(sizeof(*config
));
2773 pstrcpy(config
->str
, sizeof(config
->str
), p
);
2774 config
->flags
= SLIRP_CFG_LEGACY
;
2775 config
->next
= slirp_configs
;
2776 slirp_configs
= config
;
2778 slirp_guestfwd(TAILQ_FIRST(&slirp_stacks
), mon
, p
, 1);
2784 if (!strcmp(device
, "tap")) {
2785 static const char * const tap_params
[] = {
2786 "vlan", "name", "ifname", NULL
2790 if (check_params(buf
, sizeof(buf
), tap_params
, p
) < 0) {
2791 config_error(mon
, "invalid parameter '%s' in '%s'\n", buf
, p
);
2795 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
2796 config_error(mon
, "tap: no interface name\n");
2800 vlan
->nb_host_devs
++;
2801 ret
= tap_win32_init(vlan
, device
, name
, ifname
);
2803 #elif defined (_AIX)
2805 if (!strcmp(device
, "tap")) {
2806 char ifname
[64], chkbuf
[64];
2807 char setup_script
[1024], down_script
[1024];
2810 vlan
->nb_host_devs
++;
2811 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
2812 static const char * const fd_params
[] = {
2813 "vlan", "name", "fd", "sndbuf", NULL
2815 if (check_params(chkbuf
, sizeof(chkbuf
), fd_params
, p
) < 0) {
2816 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2820 fd
= strtol(buf
, NULL
, 0);
2821 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
2822 s
= net_tap_fd_init(vlan
, device
, name
, fd
, tap_probe_vnet_hdr(fd
));
2824 static const char * const tap_params
[] = {
2825 "vlan", "name", "ifname", "script", "downscript", "sndbuf", NULL
2827 if (check_params(chkbuf
, sizeof(chkbuf
), tap_params
, p
) < 0) {
2828 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2832 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
2835 if (get_param_value(setup_script
, sizeof(setup_script
), "script", p
) == 0) {
2836 pstrcpy(setup_script
, sizeof(setup_script
), DEFAULT_NETWORK_SCRIPT
);
2838 if (get_param_value(down_script
, sizeof(down_script
), "downscript", p
) == 0) {
2839 pstrcpy(down_script
, sizeof(down_script
), DEFAULT_NETWORK_DOWN_SCRIPT
);
2841 s
= net_tap_init(vlan
, device
, name
, ifname
, setup_script
, down_script
);
2844 const char *sndbuf_str
= NULL
;
2845 if (get_param_value(buf
, sizeof(buf
), "sndbuf", p
)) {
2848 tap_set_sndbuf(s
, sndbuf_str
, mon
);
2855 if (!strcmp(device
, "socket")) {
2857 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
2858 static const char * const fd_params
[] = {
2859 "vlan", "name", "fd", NULL
2862 if (check_params(chkbuf
, sizeof(chkbuf
), fd_params
, p
) < 0) {
2863 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2867 fd
= strtol(buf
, NULL
, 0);
2869 if (net_socket_fd_init(vlan
, device
, name
, fd
, 1))
2871 } else if (get_param_value(buf
, sizeof(buf
), "listen", p
) > 0) {
2872 static const char * const listen_params
[] = {
2873 "vlan", "name", "listen", NULL
2875 if (check_params(chkbuf
, sizeof(chkbuf
), listen_params
, p
) < 0) {
2876 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2880 ret
= net_socket_listen_init(vlan
, device
, name
, buf
);
2881 } else if (get_param_value(buf
, sizeof(buf
), "connect", p
) > 0) {
2882 static const char * const connect_params
[] = {
2883 "vlan", "name", "connect", NULL
2885 if (check_params(chkbuf
, sizeof(chkbuf
), connect_params
, p
) < 0) {
2886 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2890 ret
= net_socket_connect_init(vlan
, device
, name
, buf
);
2891 } else if (get_param_value(buf
, sizeof(buf
), "mcast", p
) > 0) {
2892 static const char * const mcast_params
[] = {
2893 "vlan", "name", "mcast", NULL
2895 if (check_params(chkbuf
, sizeof(chkbuf
), mcast_params
, p
) < 0) {
2896 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2900 ret
= net_socket_mcast_init(vlan
, device
, name
, buf
);
2902 config_error(mon
, "Unknown socket options: %s\n", p
);
2906 vlan
->nb_host_devs
++;
2909 if (!strcmp(device
, "vde")) {
2910 static const char * const vde_params
[] = {
2911 "vlan", "name", "sock", "port", "group", "mode", NULL
2913 char vde_sock
[1024], vde_group
[512];
2914 int vde_port
, vde_mode
;
2916 if (check_params(buf
, sizeof(buf
), vde_params
, p
) < 0) {
2917 config_error(mon
, "invalid parameter '%s' in '%s'\n", buf
, p
);
2921 vlan
->nb_host_devs
++;
2922 if (get_param_value(vde_sock
, sizeof(vde_sock
), "sock", p
) <= 0) {
2925 if (get_param_value(buf
, sizeof(buf
), "port", p
) > 0) {
2926 vde_port
= strtol(buf
, NULL
, 10);
2930 if (get_param_value(vde_group
, sizeof(vde_group
), "group", p
) <= 0) {
2931 vde_group
[0] = '\0';
2933 if (get_param_value(buf
, sizeof(buf
), "mode", p
) > 0) {
2934 vde_mode
= strtol(buf
, NULL
, 8);
2938 ret
= net_vde_init(vlan
, device
, name
, vde_sock
, vde_port
, vde_group
, vde_mode
);
2941 if (!strcmp(device
, "dump")) {
2944 if (get_param_value(buf
, sizeof(buf
), "len", p
) > 0) {
2945 len
= strtol(buf
, NULL
, 0);
2947 if (!get_param_value(buf
, sizeof(buf
), "file", p
)) {
2948 snprintf(buf
, sizeof(buf
), "qemu-vlan%d.pcap", vlan_id
);
2950 ret
= net_dump_init(mon
, vlan
, device
, name
, buf
, len
);
2952 config_error(mon
, "Unknown network device: %s\n", device
);
2957 config_error(mon
, "Could not initialize device '%s'\n", device
);
2964 void net_client_uninit(NICInfo
*nd
)
2966 nd
->vlan
->nb_guest_devs
--;
2969 free((void *)nd
->model
);
2972 static int net_host_check_device(const char *device
)
2975 const char *valid_param_list
[] = { "tap", "socket", "dump"
2983 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
2984 if (!strncmp(valid_param_list
[i
], device
,
2985 strlen(valid_param_list
[i
])))
2992 void net_host_device_add(Monitor
*mon
, const char *device
, const char *opts
)
2994 if (!net_host_check_device(device
)) {
2995 monitor_printf(mon
, "invalid host network device %s\n", device
);
2998 if (net_client_init(mon
, device
, opts
? opts
: "") < 0) {
2999 monitor_printf(mon
, "adding host network device %s failed\n", device
);
3003 void net_host_device_remove(Monitor
*mon
, int vlan_id
, const char *device
)
3005 VLANClientState
*vc
;
3007 vc
= qemu_find_vlan_client_by_name(mon
, vlan_id
, device
);
3011 if (!net_host_check_device(vc
->model
)) {
3012 monitor_printf(mon
, "invalid host network device %s\n", device
);
3015 qemu_del_vlan_client(vc
);
3018 int net_client_parse(const char *str
)
3026 while (*p
!= '\0' && *p
!= ',') {
3027 if ((q
- device
) < sizeof(device
) - 1)
3035 return net_client_init(NULL
, device
, p
);
3038 void net_set_boot_mask(int net_boot_mask
)
3042 /* Only the first four NICs may be bootable */
3043 net_boot_mask
= net_boot_mask
& 0xF;
3045 for (i
= 0; i
< nb_nics
; i
++) {
3046 if (net_boot_mask
& (1 << i
)) {
3047 nd_table
[i
].bootable
= 1;
3048 net_boot_mask
&= ~(1 << i
);
3052 if (net_boot_mask
) {
3053 fprintf(stderr
, "Cannot boot from non-existent NIC\n");
3058 void do_info_network(Monitor
*mon
)
3061 VLANClientState
*vc
;
3063 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
3064 monitor_printf(mon
, "VLAN %d devices:\n", vlan
->id
);
3065 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
3066 monitor_printf(mon
, " %s: %s\n", vc
->name
, vc
->info_str
);
3070 int do_set_link(Monitor
*mon
, const char *name
, const char *up_or_down
)
3073 VLANClientState
*vc
= NULL
;
3075 for (vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
)
3076 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
3077 if (strcmp(vc
->name
, name
) == 0)
3082 monitor_printf(mon
, "could not find network device '%s'", name
);
3086 if (strcmp(up_or_down
, "up") == 0)
3088 else if (strcmp(up_or_down
, "down") == 0)
3091 monitor_printf(mon
, "invalid link status '%s'; only 'up' or 'down' "
3092 "valid\n", up_or_down
);
3094 if (vc
->link_status_changed
)
3095 vc
->link_status_changed(vc
);
3100 void net_cleanup(void)
3104 /* close network clients */
3105 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
3106 VLANClientState
*vc
= vlan
->first_client
;
3109 VLANClientState
*next
= vc
->next
;
3111 qemu_del_vlan_client(vc
);
3118 void net_client_check(void)
3122 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
3123 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
3125 if (vlan
->nb_guest_devs
== 0)
3126 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
3127 if (vlan
->nb_host_devs
== 0)
3129 "Warning: vlan %d is not connected to host network\n",