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 CONFIG_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 "tap-linux.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>
104 // FIXME: #include "qemu-kvm.h"
105 #include "qemu-common.h"
109 #include "qemu-timer.h"
110 #include "qemu-char.h"
111 #include "audio/audio.h"
112 #include "qemu_socket.h"
113 #include "qemu-log.h"
114 #include "qemu-config.h"
116 #include "slirp/libslirp.h"
118 static QTAILQ_HEAD(, VLANState
) vlans
;
119 static QTAILQ_HEAD(, VLANClientState
) non_vlan_clients
;
121 /***********************************************************/
122 /* network device redirectors */
124 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
125 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
129 for(i
=0;i
<size
;i
+=16) {
133 fprintf(f
, "%08x ", i
);
136 fprintf(f
, " %02x", buf
[i
+j
]);
143 if (c
< ' ' || c
> '~')
152 static int parse_macaddr(uint8_t *macaddr
, const char *p
)
159 offset
= strtol(p
, &last_char
, 0);
160 if (0 == errno
&& '\0' == *last_char
&&
161 offset
>= 0 && offset
<= 0xFFFFFF) {
162 macaddr
[3] = (offset
& 0xFF0000) >> 16;
163 macaddr
[4] = (offset
& 0xFF00) >> 8;
164 macaddr
[5] = offset
& 0xFF;
167 for(i
= 0; i
< 6; i
++) {
168 macaddr
[i
] = strtol(p
, (char **)&p
, 16);
173 if (*p
!= ':' && *p
!= '-')
184 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
195 if (len
> buf_size
- 1)
204 int parse_host_src_port(struct sockaddr_in
*haddr
,
205 struct sockaddr_in
*saddr
,
206 const char *input_str
)
208 char *str
= strdup(input_str
);
209 char *host_str
= str
;
211 const char *src_str2
;
215 * Chop off any extra arguments at the end of the string which
216 * would start with a comma, then fill in the src port information
217 * if it was provided else use the "any address" and "any port".
219 if ((ptr
= strchr(str
,',')))
222 if ((src_str
= strchr(input_str
,'@'))) {
227 if (parse_host_port(haddr
, host_str
) < 0)
231 if (!src_str
|| *src_str
== '\0')
234 if (parse_host_port(saddr
, src_str2
) < 0)
245 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
253 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
255 saddr
->sin_family
= AF_INET
;
256 if (buf
[0] == '\0') {
257 saddr
->sin_addr
.s_addr
= 0;
259 if (qemu_isdigit(buf
[0])) {
260 if (!inet_aton(buf
, &saddr
->sin_addr
))
263 if ((he
= gethostbyname(buf
)) == NULL
)
265 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
268 port
= strtol(p
, (char **)&r
, 0);
271 saddr
->sin_port
= htons(port
);
275 void qemu_format_nic_info_str(VLANClientState
*vc
, uint8_t macaddr
[6])
277 snprintf(vc
->info_str
, sizeof(vc
->info_str
),
278 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
280 macaddr
[0], macaddr
[1], macaddr
[2],
281 macaddr
[3], macaddr
[4], macaddr
[5]);
284 void qemu_macaddr_default_if_unset(MACAddr
*macaddr
)
286 static int index
= 0;
287 static const MACAddr zero
= { .a
= { 0,0,0,0,0,0 } };
289 if (memcmp(macaddr
, &zero
, sizeof(zero
)) != 0)
291 macaddr
->a
[0] = 0x52;
292 macaddr
->a
[1] = 0x54;
293 macaddr
->a
[2] = 0x00;
294 macaddr
->a
[3] = 0x12;
295 macaddr
->a
[4] = 0x34;
296 macaddr
->a
[5] = 0x56 + index
++;
299 static char *assign_name(VLANClientState
*vc1
, const char *model
)
305 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
308 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
309 if (vc
!= vc1
&& strcmp(vc
->model
, model
) == 0) {
315 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
317 return qemu_strdup(buf
);
320 static ssize_t
qemu_deliver_packet(VLANClientState
*sender
,
325 static ssize_t
qemu_deliver_packet_iov(VLANClientState
*sender
,
327 const struct iovec
*iov
,
331 VLANClientState
*qemu_new_vlan_client(net_client_type type
,
333 VLANClientState
*peer
,
336 NetCanReceive
*can_receive
,
338 NetReceive
*receive_raw
,
339 NetReceiveIOV
*receive_iov
,
345 vc
= qemu_mallocz(sizeof(VLANClientState
));
348 vc
->model
= qemu_strdup(model
);
350 vc
->name
= qemu_strdup(name
);
352 vc
->name
= assign_name(vc
, model
);
353 vc
->can_receive
= can_receive
;
354 vc
->receive
= receive
;
355 vc
->receive_raw
= receive_raw
;
356 vc
->receive_iov
= receive_iov
;
357 vc
->cleanup
= cleanup
;
363 QTAILQ_INSERT_TAIL(&vc
->vlan
->clients
, vc
, next
);
369 QTAILQ_INSERT_TAIL(&non_vlan_clients
, vc
, next
);
371 vc
->send_queue
= qemu_new_net_queue(qemu_deliver_packet
,
372 qemu_deliver_packet_iov
,
379 void qemu_del_vlan_client(VLANClientState
*vc
)
382 QTAILQ_REMOVE(&vc
->vlan
->clients
, vc
, next
);
384 if (vc
->send_queue
) {
385 qemu_del_net_queue(vc
->send_queue
);
387 QTAILQ_REMOVE(&non_vlan_clients
, vc
, next
);
389 vc
->peer
->peer
= NULL
;
398 qemu_free(vc
->model
);
402 VLANClientState
*qemu_find_vlan_client(VLANState
*vlan
, void *opaque
)
406 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
407 if (vc
->opaque
== opaque
) {
415 static VLANClientState
*
416 qemu_find_vlan_client_by_name(Monitor
*mon
, int vlan_id
,
417 const char *client_str
)
422 vlan
= qemu_find_vlan(vlan_id
, 0);
424 monitor_printf(mon
, "unknown VLAN %d\n", vlan_id
);
428 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
429 if (!strcmp(vc
->name
, client_str
)) {
434 monitor_printf(mon
, "can't find device %s on VLAN %d\n",
435 client_str
, vlan_id
);
441 int qemu_can_send_packet(VLANClientState
*sender
)
443 VLANState
*vlan
= sender
->vlan
;
447 if (!sender
->peer
->can_receive
||
448 sender
->peer
->can_receive(sender
->peer
)) {
459 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
464 /* no can_receive() handler, they can always receive */
465 if (!vc
->can_receive
|| vc
->can_receive(vc
)) {
472 static ssize_t
qemu_deliver_packet(VLANClientState
*sender
,
478 VLANClientState
*vc
= opaque
;
484 if (flags
& QEMU_NET_PACKET_FLAG_RAW
&& vc
->receive_raw
)
485 return vc
->receive_raw(vc
, data
, size
);
487 return vc
->receive(vc
, data
, size
);
490 static ssize_t
qemu_vlan_deliver_packet(VLANClientState
*sender
,
496 VLANState
*vlan
= opaque
;
500 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
512 if (flags
& QEMU_NET_PACKET_FLAG_RAW
&& vc
->receive_raw
)
513 len
= vc
->receive_raw(vc
, buf
, size
);
515 len
= vc
->receive(vc
, buf
, size
);
517 ret
= (ret
>= 0) ? ret
: len
;
523 void qemu_purge_queued_packets(VLANClientState
*vc
)
527 if (!vc
->peer
&& !vc
->vlan
) {
532 queue
= vc
->peer
->send_queue
;
534 queue
= vc
->vlan
->send_queue
;
537 qemu_net_queue_purge(queue
, vc
);
540 void qemu_flush_queued_packets(VLANClientState
*vc
)
545 queue
= vc
->vlan
->send_queue
;
547 queue
= vc
->send_queue
;
550 qemu_net_queue_flush(queue
);
553 static ssize_t
qemu_send_packet_async_with_flags(VLANClientState
*sender
,
555 const uint8_t *buf
, int size
,
556 NetPacketSent
*sent_cb
)
561 printf("qemu_send_packet_async:\n");
562 hex_dump(stdout
, buf
, size
);
565 if (sender
->link_down
|| (!sender
->peer
&& !sender
->vlan
)) {
570 queue
= sender
->peer
->send_queue
;
572 queue
= sender
->vlan
->send_queue
;
575 return qemu_net_queue_send(queue
, sender
, flags
, buf
, size
, sent_cb
);
578 ssize_t
qemu_send_packet_async(VLANClientState
*sender
,
579 const uint8_t *buf
, int size
,
580 NetPacketSent
*sent_cb
)
582 return qemu_send_packet_async_with_flags(sender
, QEMU_NET_PACKET_FLAG_NONE
,
586 void qemu_send_packet(VLANClientState
*vc
, const uint8_t *buf
, int size
)
588 qemu_send_packet_async(vc
, buf
, size
, NULL
);
591 ssize_t
qemu_send_packet_raw(VLANClientState
*vc
, const uint8_t *buf
, int size
)
593 return qemu_send_packet_async_with_flags(vc
, QEMU_NET_PACKET_FLAG_RAW
,
597 static ssize_t
vc_sendv_compat(VLANClientState
*vc
, const struct iovec
*iov
,
600 uint8_t buffer
[4096];
604 for (i
= 0; i
< iovcnt
; i
++) {
607 len
= MIN(sizeof(buffer
) - offset
, iov
[i
].iov_len
);
608 memcpy(buffer
+ offset
, iov
[i
].iov_base
, len
);
612 return vc
->receive(vc
, buffer
, offset
);
615 static ssize_t
calc_iov_length(const struct iovec
*iov
, int iovcnt
)
620 for (i
= 0; i
< iovcnt
; i
++)
621 offset
+= iov
[i
].iov_len
;
625 static ssize_t
qemu_deliver_packet_iov(VLANClientState
*sender
,
627 const struct iovec
*iov
,
631 VLANClientState
*vc
= opaque
;
634 return calc_iov_length(iov
, iovcnt
);
637 if (vc
->receive_iov
) {
638 return vc
->receive_iov(vc
, iov
, iovcnt
);
640 return vc_sendv_compat(vc
, iov
, iovcnt
);
644 static ssize_t
qemu_vlan_deliver_packet_iov(VLANClientState
*sender
,
646 const struct iovec
*iov
,
650 VLANState
*vlan
= opaque
;
654 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
662 ret
= calc_iov_length(iov
, iovcnt
);
666 assert(!(flags
& QEMU_NET_PACKET_FLAG_RAW
));
668 if (vc
->receive_iov
) {
669 len
= vc
->receive_iov(vc
, iov
, iovcnt
);
671 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
674 ret
= (ret
>= 0) ? ret
: len
;
680 ssize_t
qemu_sendv_packet_async(VLANClientState
*sender
,
681 const struct iovec
*iov
, int iovcnt
,
682 NetPacketSent
*sent_cb
)
686 if (sender
->link_down
|| (!sender
->peer
&& !sender
->vlan
)) {
687 return calc_iov_length(iov
, iovcnt
);
691 queue
= sender
->peer
->send_queue
;
693 queue
= sender
->vlan
->send_queue
;
696 return qemu_net_queue_send_iov(queue
, sender
,
697 QEMU_NET_PACKET_FLAG_NONE
,
698 iov
, iovcnt
, sent_cb
);
702 qemu_sendv_packet(VLANClientState
*vc
, const struct iovec
*iov
, int iovcnt
)
704 return qemu_sendv_packet_async(vc
, iov
, iovcnt
, NULL
);
707 #if defined(CONFIG_SLIRP)
709 /* slirp network adapter */
711 #define SLIRP_CFG_HOSTFWD 1
712 #define SLIRP_CFG_LEGACY 2
714 struct slirp_config_str
{
715 struct slirp_config_str
*next
;
721 typedef struct SlirpState
{
722 QTAILQ_ENTRY(SlirpState
) entry
;
730 static struct slirp_config_str
*slirp_configs
;
731 const char *legacy_tftp_prefix
;
732 const char *legacy_bootp_filename
;
733 static QTAILQ_HEAD(slirp_stacks
, SlirpState
) slirp_stacks
=
734 QTAILQ_HEAD_INITIALIZER(slirp_stacks
);
736 static int slirp_hostfwd(SlirpState
*s
, const char *redir_str
,
738 static int slirp_guestfwd(SlirpState
*s
, const char *config_str
,
742 static const char *legacy_smb_export
;
744 static int slirp_smb(SlirpState
*s
, const char *exported_dir
,
745 struct in_addr vserver_addr
);
746 static void slirp_smb_cleanup(SlirpState
*s
);
748 static inline void slirp_smb_cleanup(SlirpState
*s
) { }
751 int slirp_can_output(void *opaque
)
753 SlirpState
*s
= opaque
;
755 return qemu_can_send_packet(s
->vc
);
758 void slirp_output(void *opaque
, const uint8_t *pkt
, int pkt_len
)
760 SlirpState
*s
= opaque
;
763 printf("slirp output:\n");
764 hex_dump(stdout
, pkt
, pkt_len
);
766 qemu_send_packet(s
->vc
, pkt
, pkt_len
);
769 static ssize_t
slirp_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
771 SlirpState
*s
= vc
->opaque
;
774 printf("slirp input:\n");
775 hex_dump(stdout
, buf
, size
);
777 slirp_input(s
->slirp
, buf
, size
);
781 static void net_slirp_cleanup(VLANClientState
*vc
)
783 SlirpState
*s
= vc
->opaque
;
785 slirp_cleanup(s
->slirp
);
786 slirp_smb_cleanup(s
);
787 QTAILQ_REMOVE(&slirp_stacks
, s
, entry
);
791 static int net_slirp_init(VLANState
*vlan
, const char *model
,
792 const char *name
, int restricted
,
793 const char *vnetwork
, const char *vhost
,
794 const char *vhostname
, const char *tftp_export
,
795 const char *bootfile
, const char *vdhcp_start
,
796 const char *vnameserver
, const char *smb_export
,
797 const char *vsmbserver
)
799 /* default settings according to historic slirp */
800 struct in_addr net
= { .s_addr
= htonl(0x0a000200) }; /* 10.0.2.0 */
801 struct in_addr mask
= { .s_addr
= htonl(0xffffff00) }; /* 255.255.255.0 */
802 struct in_addr host
= { .s_addr
= htonl(0x0a000202) }; /* 10.0.2.2 */
803 struct in_addr dhcp
= { .s_addr
= htonl(0x0a00020f) }; /* 10.0.2.15 */
804 struct in_addr dns
= { .s_addr
= htonl(0x0a000203) }; /* 10.0.2.3 */
806 struct in_addr smbsrv
= { .s_addr
= 0 };
813 struct slirp_config_str
*config
;
816 tftp_export
= legacy_tftp_prefix
;
819 bootfile
= legacy_bootp_filename
;
823 if (get_str_sep(buf
, sizeof(buf
), &vnetwork
, '/') < 0) {
824 if (!inet_aton(vnetwork
, &net
)) {
827 addr
= ntohl(net
.s_addr
);
828 if (!(addr
& 0x80000000)) {
829 mask
.s_addr
= htonl(0xff000000); /* class A */
830 } else if ((addr
& 0xfff00000) == 0xac100000) {
831 mask
.s_addr
= htonl(0xfff00000); /* priv. 172.16.0.0/12 */
832 } else if ((addr
& 0xc0000000) == 0x80000000) {
833 mask
.s_addr
= htonl(0xffff0000); /* class B */
834 } else if ((addr
& 0xffff0000) == 0xc0a80000) {
835 mask
.s_addr
= htonl(0xffff0000); /* priv. 192.168.0.0/16 */
836 } else if ((addr
& 0xffff0000) == 0xc6120000) {
837 mask
.s_addr
= htonl(0xfffe0000); /* tests 198.18.0.0/15 */
838 } else if ((addr
& 0xe0000000) == 0xe0000000) {
839 mask
.s_addr
= htonl(0xffffff00); /* class C */
841 mask
.s_addr
= htonl(0xfffffff0); /* multicast/reserved */
844 if (!inet_aton(buf
, &net
)) {
847 shift
= strtol(vnetwork
, &end
, 10);
849 if (!inet_aton(vnetwork
, &mask
)) {
852 } else if (shift
< 4 || shift
> 32) {
855 mask
.s_addr
= htonl(0xffffffff << (32 - shift
));
858 net
.s_addr
&= mask
.s_addr
;
859 host
.s_addr
= net
.s_addr
| (htonl(0x0202) & ~mask
.s_addr
);
860 dhcp
.s_addr
= net
.s_addr
| (htonl(0x020f) & ~mask
.s_addr
);
861 dns
.s_addr
= net
.s_addr
| (htonl(0x0203) & ~mask
.s_addr
);
864 if (vhost
&& !inet_aton(vhost
, &host
)) {
867 if ((host
.s_addr
& mask
.s_addr
) != net
.s_addr
) {
871 if (vdhcp_start
&& !inet_aton(vdhcp_start
, &dhcp
)) {
874 if ((dhcp
.s_addr
& mask
.s_addr
) != net
.s_addr
||
875 dhcp
.s_addr
== host
.s_addr
|| dhcp
.s_addr
== dns
.s_addr
) {
879 if (vnameserver
&& !inet_aton(vnameserver
, &dns
)) {
882 if ((dns
.s_addr
& mask
.s_addr
) != net
.s_addr
||
883 dns
.s_addr
== host
.s_addr
) {
888 if (vsmbserver
&& !inet_aton(vsmbserver
, &smbsrv
)) {
893 s
= qemu_mallocz(sizeof(SlirpState
));
894 s
->slirp
= slirp_init(restricted
, net
, mask
, host
, vhostname
,
895 tftp_export
, bootfile
, dhcp
, dns
, s
);
896 QTAILQ_INSERT_TAIL(&slirp_stacks
, s
, entry
);
898 for (config
= slirp_configs
; config
; config
= config
->next
) {
899 if (config
->flags
& SLIRP_CFG_HOSTFWD
) {
900 if (slirp_hostfwd(s
, config
->str
,
901 config
->flags
& SLIRP_CFG_LEGACY
) < 0)
904 if (slirp_guestfwd(s
, config
->str
,
905 config
->flags
& SLIRP_CFG_LEGACY
) < 0)
911 smb_export
= legacy_smb_export
;
914 if (slirp_smb(s
, smb_export
, smbsrv
) < 0)
919 s
->vc
= qemu_new_vlan_client(NET_CLIENT_TYPE_SLIRP
,
920 vlan
, NULL
, model
, name
, NULL
,
921 slirp_receive
, NULL
, NULL
,
922 net_slirp_cleanup
, s
);
923 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
924 "net=%s, restricted=%c", inet_ntoa(net
), restricted
? 'y' : 'n');
928 static SlirpState
*slirp_lookup(Monitor
*mon
, const char *vlan
,
934 vc
= qemu_find_vlan_client_by_name(mon
, strtol(vlan
, NULL
, 0), stack
);
938 if (strcmp(vc
->model
, "user")) {
939 monitor_printf(mon
, "invalid device specified\n");
944 if (QTAILQ_EMPTY(&slirp_stacks
)) {
945 monitor_printf(mon
, "user mode network stack not in use\n");
948 return QTAILQ_FIRST(&slirp_stacks
);
952 void net_slirp_hostfwd_remove(Monitor
*mon
, const QDict
*qdict
)
954 struct in_addr host_addr
= { .s_addr
= INADDR_ANY
};
957 const char *src_str
, *p
;
961 const char *arg1
= qdict_get_str(qdict
, "arg1");
962 const char *arg2
= qdict_get_try_str(qdict
, "arg2");
963 const char *arg3
= qdict_get_try_str(qdict
, "arg3");
966 s
= slirp_lookup(mon
, arg1
, arg2
);
969 s
= slirp_lookup(mon
, NULL
, NULL
);
976 if (!src_str
|| !src_str
[0])
980 get_str_sep(buf
, sizeof(buf
), &p
, ':');
982 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
984 } else if (!strcmp(buf
, "udp")) {
990 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
993 if (buf
[0] != '\0' && !inet_aton(buf
, &host_addr
)) {
999 err
= slirp_remove_hostfwd(QTAILQ_FIRST(&slirp_stacks
)->slirp
, is_udp
,
1000 host_addr
, host_port
);
1002 monitor_printf(mon
, "host forwarding rule for %s %s\n", src_str
,
1003 err
? "removed" : "not found");
1007 monitor_printf(mon
, "invalid format\n");
1010 static int slirp_hostfwd(SlirpState
*s
, const char *redir_str
,
1013 struct in_addr host_addr
= { .s_addr
= INADDR_ANY
};
1014 struct in_addr guest_addr
= { .s_addr
= 0 };
1015 int host_port
, guest_port
;
1022 if (!p
|| get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1025 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
1027 } else if (!strcmp(buf
, "udp")) {
1033 if (!legacy_format
) {
1034 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1037 if (buf
[0] != '\0' && !inet_aton(buf
, &host_addr
)) {
1042 if (get_str_sep(buf
, sizeof(buf
), &p
, legacy_format
? ':' : '-') < 0) {
1045 host_port
= strtol(buf
, &end
, 0);
1046 if (*end
!= '\0' || host_port
< 1 || host_port
> 65535) {
1050 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1053 if (buf
[0] != '\0' && !inet_aton(buf
, &guest_addr
)) {
1057 guest_port
= strtol(p
, &end
, 0);
1058 if (*end
!= '\0' || guest_port
< 1 || guest_port
> 65535) {
1062 if (slirp_add_hostfwd(s
->slirp
, is_udp
, host_addr
, host_port
, guest_addr
,
1064 qemu_error("could not set up host forwarding rule '%s'\n",
1071 qemu_error("invalid host forwarding rule '%s'\n", redir_str
);
1075 void net_slirp_hostfwd_add(Monitor
*mon
, const QDict
*qdict
)
1077 const char *redir_str
;
1079 const char *arg1
= qdict_get_str(qdict
, "arg1");
1080 const char *arg2
= qdict_get_try_str(qdict
, "arg2");
1081 const char *arg3
= qdict_get_try_str(qdict
, "arg3");
1084 s
= slirp_lookup(mon
, arg1
, arg2
);
1087 s
= slirp_lookup(mon
, NULL
, NULL
);
1091 slirp_hostfwd(s
, redir_str
, 0);
1096 int net_slirp_redir(const char *redir_str
)
1098 struct slirp_config_str
*config
;
1100 if (QTAILQ_EMPTY(&slirp_stacks
)) {
1101 config
= qemu_malloc(sizeof(*config
));
1102 pstrcpy(config
->str
, sizeof(config
->str
), redir_str
);
1103 config
->flags
= SLIRP_CFG_HOSTFWD
| SLIRP_CFG_LEGACY
;
1104 config
->next
= slirp_configs
;
1105 slirp_configs
= config
;
1109 return slirp_hostfwd(QTAILQ_FIRST(&slirp_stacks
), redir_str
, 1);
1114 /* automatic user mode samba server configuration */
1115 static void slirp_smb_cleanup(SlirpState
*s
)
1119 if (s
->smb_dir
[0] != '\0') {
1120 snprintf(cmd
, sizeof(cmd
), "rm -rf %s", s
->smb_dir
);
1122 s
->smb_dir
[0] = '\0';
1126 static int slirp_smb(SlirpState
* s
, const char *exported_dir
,
1127 struct in_addr vserver_addr
)
1129 static int instance
;
1131 char smb_cmdline
[128];
1134 snprintf(s
->smb_dir
, sizeof(s
->smb_dir
), "/tmp/qemu-smb.%ld-%d",
1135 (long)getpid(), instance
++);
1136 if (mkdir(s
->smb_dir
, 0700) < 0) {
1137 qemu_error("could not create samba server dir '%s'\n", s
->smb_dir
);
1140 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", s
->smb_dir
, "smb.conf");
1142 f
= fopen(smb_conf
, "w");
1144 slirp_smb_cleanup(s
);
1145 qemu_error("could not create samba server configuration file '%s'\n",
1153 "socket address=127.0.0.1\n"
1154 "pid directory=%s\n"
1155 "lock directory=%s\n"
1156 "log file=%s/log.smbd\n"
1157 "smb passwd file=%s/smbpasswd\n"
1158 "security = share\n"
1172 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
1173 SMBD_COMMAND
, smb_conf
);
1175 if (slirp_add_exec(s
->slirp
, 0, smb_cmdline
, &vserver_addr
, 139) < 0) {
1176 slirp_smb_cleanup(s
);
1177 qemu_error("conflicting/invalid smbserver address\n");
1183 /* automatic user mode samba server configuration (legacy interface) */
1184 int net_slirp_smb(const char *exported_dir
)
1186 struct in_addr vserver_addr
= { .s_addr
= 0 };
1188 if (legacy_smb_export
) {
1189 fprintf(stderr
, "-smb given twice\n");
1192 legacy_smb_export
= exported_dir
;
1193 if (!QTAILQ_EMPTY(&slirp_stacks
)) {
1194 return slirp_smb(QTAILQ_FIRST(&slirp_stacks
), exported_dir
,
1200 #endif /* !defined(_WIN32) */
1203 CharDriverState
*hd
;
1204 struct in_addr server
;
1209 static int guestfwd_can_read(void *opaque
)
1211 struct GuestFwd
*fwd
= opaque
;
1212 return slirp_socket_can_recv(fwd
->slirp
, fwd
->server
, fwd
->port
);
1215 static void guestfwd_read(void *opaque
, const uint8_t *buf
, int size
)
1217 struct GuestFwd
*fwd
= opaque
;
1218 slirp_socket_recv(fwd
->slirp
, fwd
->server
, fwd
->port
, buf
, size
);
1221 static int slirp_guestfwd(SlirpState
*s
, const char *config_str
,
1224 struct in_addr server
= { .s_addr
= 0 };
1225 struct GuestFwd
*fwd
;
1232 if (legacy_format
) {
1233 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1237 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1240 if (strcmp(buf
, "tcp") && buf
[0] != '\0') {
1243 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1246 if (buf
[0] != '\0' && !inet_aton(buf
, &server
)) {
1249 if (get_str_sep(buf
, sizeof(buf
), &p
, '-') < 0) {
1253 port
= strtol(buf
, &end
, 10);
1254 if (*end
!= '\0' || port
< 1 || port
> 65535) {
1258 fwd
= qemu_malloc(sizeof(struct GuestFwd
));
1259 snprintf(buf
, sizeof(buf
), "guestfwd.tcp:%d", port
);
1260 fwd
->hd
= qemu_chr_open(buf
, p
, NULL
);
1262 qemu_error("could not open guest forwarding device '%s'\n", buf
);
1267 if (slirp_add_exec(s
->slirp
, 3, fwd
->hd
, &server
, port
) < 0) {
1268 qemu_error("conflicting/invalid host:port in guest forwarding "
1269 "rule '%s'\n", config_str
);
1273 fwd
->server
= server
;
1275 fwd
->slirp
= s
->slirp
;
1277 qemu_chr_add_handlers(fwd
->hd
, guestfwd_can_read
, guestfwd_read
,
1282 qemu_error("invalid guest forwarding rule '%s'\n", config_str
);
1286 void do_info_usernet(Monitor
*mon
)
1290 QTAILQ_FOREACH(s
, &slirp_stacks
, entry
) {
1291 monitor_printf(mon
, "VLAN %d (%s):\n", s
->vc
->vlan
->id
, s
->vc
->name
);
1292 slirp_connection_info(s
->slirp
, mon
);
1296 #endif /* CONFIG_SLIRP */
1299 int tap_has_vnet_hdr(VLANClientState
*vc
)
1303 void tap_using_vnet_hdr(VLANClientState
*vc
, int using_vnet_hdr
)
1306 #else /* !defined(_WIN32) */
1308 /* Maximum GSO packet size (64k) plus plenty of room for
1309 * the ethernet and virtio_net headers
1311 #define TAP_BUFSIZE (4096 + 65536)
1313 typedef struct TAPState
{
1314 VLANClientState
*vc
;
1316 char down_script
[1024];
1317 char down_script_arg
[128];
1318 uint8_t buf
[TAP_BUFSIZE
];
1319 unsigned int read_poll
: 1;
1320 unsigned int write_poll
: 1;
1321 unsigned int has_vnet_hdr
: 1;
1322 unsigned int using_vnet_hdr
: 1;
1323 unsigned int has_ufo
: 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_write_packet(TAPState
*s
, const struct iovec
*iov
, int iovcnt
)
1367 len
= writev(s
->fd
, iov
, iovcnt
);
1368 } while (len
== -1 && errno
== EINTR
);
1370 if (len
== -1 && errno
== EAGAIN
) {
1371 tap_write_poll(s
, 1);
1378 static ssize_t
tap_receive_iov(VLANClientState
*vc
, const struct iovec
*iov
,
1381 TAPState
*s
= vc
->opaque
;
1382 const struct iovec
*iovp
= iov
;
1383 struct iovec iov_copy
[iovcnt
+ 1];
1384 struct virtio_net_hdr hdr
= { 0, };
1386 if (s
->has_vnet_hdr
&& !s
->using_vnet_hdr
) {
1387 iov_copy
[0].iov_base
= &hdr
;
1388 iov_copy
[0].iov_len
= sizeof(hdr
);
1389 memcpy(&iov_copy
[1], iov
, iovcnt
* sizeof(*iov
));
1394 return tap_write_packet(s
, iovp
, iovcnt
);
1397 static ssize_t
tap_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1399 TAPState
*s
= vc
->opaque
;
1400 struct iovec iov
[2];
1402 struct virtio_net_hdr hdr
= { 0, };
1404 if (s
->has_vnet_hdr
&& !s
->using_vnet_hdr
) {
1405 iov
[iovcnt
].iov_base
= &hdr
;
1406 iov
[iovcnt
].iov_len
= sizeof(hdr
);
1410 iov
[iovcnt
].iov_base
= (char *)buf
;
1411 iov
[iovcnt
].iov_len
= size
;
1414 return tap_write_packet(s
, iov
, iovcnt
);
1417 static ssize_t
tap_receive_raw(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1419 TAPState
*s
= vc
->opaque
;
1420 struct iovec iov
[2];
1424 struct virtio_net_hdr hdr
= { 0, };
1426 if (s
->has_vnet_hdr
) {
1427 iov
[iovcnt
].iov_base
= &hdr
;
1428 iov
[iovcnt
].iov_len
= sizeof(hdr
);
1433 iov
[iovcnt
].iov_base
= (char *)buf
;
1434 iov
[iovcnt
].iov_len
= size
;
1437 return tap_write_packet(s
, iov
, iovcnt
);
1440 static int tap_can_send(void *opaque
)
1442 TAPState
*s
= opaque
;
1444 return qemu_can_send_packet(s
->vc
);
1448 static ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
1453 sbuf
.maxlen
= maxlen
;
1454 sbuf
.buf
= (char *)buf
;
1456 return getmsg(tapfd
, NULL
, &sbuf
, &f
) >= 0 ? sbuf
.len
: -1;
1459 static ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
1461 return read(tapfd
, buf
, maxlen
);
1465 static void tap_send_completed(VLANClientState
*vc
, ssize_t len
)
1467 TAPState
*s
= vc
->opaque
;
1468 tap_read_poll(s
, 1);
1471 static void tap_send(void *opaque
)
1473 TAPState
*s
= opaque
;
1477 uint8_t *buf
= s
->buf
;
1479 size
= tap_read_packet(s
->fd
, s
->buf
, sizeof(s
->buf
));
1484 if (s
->has_vnet_hdr
&& !s
->using_vnet_hdr
) {
1485 buf
+= sizeof(struct virtio_net_hdr
);
1486 size
-= sizeof(struct virtio_net_hdr
);
1489 size
= qemu_send_packet_async(s
->vc
, buf
, size
, tap_send_completed
);
1491 tap_read_poll(s
, 0);
1496 /* sndbuf should be set to a value lower than the tx queue
1497 * capacity of any destination network interface.
1498 * Ethernet NICs generally have txqueuelen=1000, so 1Mb is
1499 * a good default, given a 1500 byte MTU.
1501 #define TAP_DEFAULT_SNDBUF 1024*1024
1503 static int tap_set_sndbuf(TAPState
*s
, QemuOpts
*opts
)
1507 sndbuf
= qemu_opt_get_size(opts
, "sndbuf", TAP_DEFAULT_SNDBUF
);
1512 if (ioctl(s
->fd
, TUNSETSNDBUF
, &sndbuf
) == -1 && qemu_opt_get(opts
, "sndbuf")) {
1513 qemu_error("TUNSETSNDBUF ioctl failed: %s\n", strerror(errno
));
1519 int tap_has_vnet_hdr(VLANClientState
*vc
)
1521 TAPState
*s
= vc
->opaque
;
1523 assert(vc
->type
== NET_CLIENT_TYPE_TAP
);
1525 return s
->has_vnet_hdr
;
1528 void tap_using_vnet_hdr(VLANClientState
*vc
, int using_vnet_hdr
)
1530 TAPState
*s
= vc
->opaque
;
1532 using_vnet_hdr
= using_vnet_hdr
!= 0;
1534 assert(vc
->type
== NET_CLIENT_TYPE_TAP
);
1535 assert(s
->has_vnet_hdr
== using_vnet_hdr
);
1537 s
->using_vnet_hdr
= using_vnet_hdr
;
1540 static int tap_probe_vnet_hdr(int fd
)
1544 if (ioctl(fd
, TUNGETIFF
, &ifr
) != 0) {
1545 qemu_error("TUNGETIFF ioctl() failed: %s\n", strerror(errno
));
1549 return ifr
.ifr_flags
& IFF_VNET_HDR
;
1552 int tap_has_ufo(void *opaque
)
1554 VLANClientState
*vc
= opaque
;
1555 TAPState
*s
= vc
->opaque
;
1557 return s
? s
->has_ufo
: 0;
1560 #ifdef TUNSETOFFLOAD
1563 #define TUN_F_UFO 0x10
1566 static void tap_set_offload(VLANClientState
*vc
, int csum
, int tso4
, int tso6
,
1569 TAPState
*s
= vc
->opaque
;
1570 unsigned int offload
= 0;
1573 offload
|= TUN_F_CSUM
;
1575 offload
|= TUN_F_TSO4
;
1577 offload
|= TUN_F_TSO6
;
1578 if ((tso4
|| tso6
) && ecn
)
1579 offload
|= TUN_F_TSO_ECN
;
1581 offload
|= TUN_F_UFO
;
1584 if (ioctl(s
->fd
, TUNSETOFFLOAD
, offload
) != 0) {
1585 /* Try without UFO */
1586 offload
&= ~TUN_F_UFO
;
1587 if (ioctl(s
->fd
, TUNSETOFFLOAD
, offload
) != 0) {
1588 fprintf(stderr
, "TUNSETOFFLOAD ioctl() failed: %s\n",
1593 #endif /* TUNSETOFFLOAD */
1595 static void tap_cleanup(VLANClientState
*vc
)
1597 TAPState
*s
= vc
->opaque
;
1599 qemu_purge_queued_packets(vc
);
1601 if (s
->down_script
[0])
1602 launch_script(s
->down_script
, s
->down_script_arg
, s
->fd
);
1604 tap_read_poll(s
, 0);
1605 tap_write_poll(s
, 0);
1612 static TAPState
*net_tap_fd_init(VLANState
*vlan
,
1619 #ifdef TUNSETOFFLOAD
1620 unsigned int offload
;
1623 s
= qemu_mallocz(sizeof(TAPState
));
1625 s
->has_vnet_hdr
= vnet_hdr
!= 0;
1626 s
->using_vnet_hdr
= 0;
1627 s
->vc
= qemu_new_vlan_client(NET_CLIENT_TYPE_TAP
,
1628 vlan
, NULL
, model
, name
, NULL
,
1629 tap_receive
, NULL
, tap_receive_iov
,
1631 s
->vc
->receive_raw
= tap_receive_raw
;
1632 #ifdef TUNSETOFFLOAD
1633 s
->vc
->set_offload
= tap_set_offload
;
1636 /* Check if tap supports UFO */
1637 offload
= TUN_F_CSUM
| TUN_F_UFO
;
1638 if (ioctl(s
->fd
, TUNSETOFFLOAD
, offload
) == 0)
1641 tap_set_offload(s
->vc
, 0, 0, 0, 0, 0);
1643 tap_read_poll(s
, 1);
1647 #if defined (CONFIG_BSD) || defined (__FreeBSD_kernel__)
1648 static int tap_open(char *ifname
, int ifname_size
,
1649 int *vnet_hdr
, int vnet_hdr_required
)
1655 TFR(fd
= open("/dev/tap", O_RDWR
));
1657 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
1662 dev
= devname(s
.st_rdev
, S_IFCHR
);
1663 pstrcpy(ifname
, ifname_size
, dev
);
1665 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1668 #elif defined(__sun__)
1669 #define TUNNEWPPA (('T'<<16) | 0x0001)
1671 * Allocate TAP device, returns opened fd.
1672 * Stores dev name in the first arg(must be large enough).
1674 static int tap_alloc(char *dev
, size_t dev_size
)
1676 int tap_fd
, if_fd
, ppa
= -1;
1677 static int ip_fd
= 0;
1680 static int arp_fd
= 0;
1681 int ip_muxid
, arp_muxid
;
1682 struct strioctl strioc_if
, strioc_ppa
;
1683 int link_type
= I_PLINK
;;
1685 char actual_name
[32] = "";
1687 memset(&ifr
, 0x0, sizeof(ifr
));
1691 while( *ptr
&& !qemu_isdigit((int)*ptr
) ) ptr
++;
1695 /* Check if IP device was opened */
1699 TFR(ip_fd
= open("/dev/udp", O_RDWR
, 0));
1701 syslog(LOG_ERR
, "Can't open /dev/ip (actually /dev/udp)");
1705 TFR(tap_fd
= open("/dev/tap", O_RDWR
, 0));
1707 syslog(LOG_ERR
, "Can't open /dev/tap");
1711 /* Assign a new PPA and get its unit number. */
1712 strioc_ppa
.ic_cmd
= TUNNEWPPA
;
1713 strioc_ppa
.ic_timout
= 0;
1714 strioc_ppa
.ic_len
= sizeof(ppa
);
1715 strioc_ppa
.ic_dp
= (char *)&ppa
;
1716 if ((ppa
= ioctl (tap_fd
, I_STR
, &strioc_ppa
)) < 0)
1717 syslog (LOG_ERR
, "Can't assign new interface");
1719 TFR(if_fd
= open("/dev/tap", O_RDWR
, 0));
1721 syslog(LOG_ERR
, "Can't open /dev/tap (2)");
1724 if(ioctl(if_fd
, I_PUSH
, "ip") < 0){
1725 syslog(LOG_ERR
, "Can't push IP module");
1729 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) < 0)
1730 syslog(LOG_ERR
, "Can't get flags\n");
1732 snprintf (actual_name
, 32, "tap%d", ppa
);
1733 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
1736 /* Assign ppa according to the unit number returned by tun device */
1738 if (ioctl (if_fd
, SIOCSLIFNAME
, &ifr
) < 0)
1739 syslog (LOG_ERR
, "Can't set PPA %d", ppa
);
1740 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) <0)
1741 syslog (LOG_ERR
, "Can't get flags\n");
1742 /* Push arp module to if_fd */
1743 if (ioctl (if_fd
, I_PUSH
, "arp") < 0)
1744 syslog (LOG_ERR
, "Can't push ARP module (2)");
1746 /* Push arp module to ip_fd */
1747 if (ioctl (ip_fd
, I_POP
, NULL
) < 0)
1748 syslog (LOG_ERR
, "I_POP failed\n");
1749 if (ioctl (ip_fd
, I_PUSH
, "arp") < 0)
1750 syslog (LOG_ERR
, "Can't push ARP module (3)\n");
1752 TFR(arp_fd
= open ("/dev/tap", O_RDWR
, 0));
1754 syslog (LOG_ERR
, "Can't open %s\n", "/dev/tap");
1756 /* Set ifname to arp */
1757 strioc_if
.ic_cmd
= SIOCSLIFNAME
;
1758 strioc_if
.ic_timout
= 0;
1759 strioc_if
.ic_len
= sizeof(ifr
);
1760 strioc_if
.ic_dp
= (char *)&ifr
;
1761 if (ioctl(arp_fd
, I_STR
, &strioc_if
) < 0){
1762 syslog (LOG_ERR
, "Can't set ifname to arp\n");
1765 if((ip_muxid
= ioctl(ip_fd
, I_LINK
, if_fd
)) < 0){
1766 syslog(LOG_ERR
, "Can't link TAP device to IP");
1770 if ((arp_muxid
= ioctl (ip_fd
, link_type
, arp_fd
)) < 0)
1771 syslog (LOG_ERR
, "Can't link TAP device to ARP");
1775 memset(&ifr
, 0x0, sizeof(ifr
));
1776 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
1777 ifr
.lifr_ip_muxid
= ip_muxid
;
1778 ifr
.lifr_arp_muxid
= arp_muxid
;
1780 if (ioctl (ip_fd
, SIOCSLIFMUXID
, &ifr
) < 0)
1782 ioctl (ip_fd
, I_PUNLINK
, arp_muxid
);
1783 ioctl (ip_fd
, I_PUNLINK
, ip_muxid
);
1784 syslog (LOG_ERR
, "Can't set multiplexor id");
1787 snprintf(dev
, dev_size
, "tap%d", ppa
);
1791 static int tap_open(char *ifname
, int ifname_size
,
1792 int *vnet_hdr
, int vnet_hdr_required
)
1796 if( (fd
= tap_alloc(dev
, sizeof(dev
))) < 0 ){
1797 fprintf(stderr
, "Cannot allocate TAP device\n");
1800 pstrcpy(ifname
, ifname_size
, dev
);
1801 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1804 #elif defined (_AIX)
1805 static int tap_open(char *ifname
, int ifname_size
,
1806 int *vnet_hdr
, int vnet_hdr_required
)
1808 fprintf (stderr
, "no tap on AIX\n");
1812 static int tap_open(char *ifname
, int ifname_size
,
1813 int *vnet_hdr
, int vnet_hdr_required
)
1818 TFR(fd
= open("/dev/net/tun", O_RDWR
));
1820 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1823 memset(&ifr
, 0, sizeof(ifr
));
1824 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
1827 unsigned int features
;
1829 if (ioctl(fd
, TUNGETFEATURES
, &features
) == 0 &&
1830 features
& IFF_VNET_HDR
) {
1832 ifr
.ifr_flags
|= IFF_VNET_HDR
;
1835 if (vnet_hdr_required
&& !*vnet_hdr
) {
1836 qemu_error("vnet_hdr=1 requested, but no kernel "
1837 "support for IFF_VNET_HDR available");
1843 if (ifname
[0] != '\0')
1844 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
1846 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
1847 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
1849 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1853 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
1854 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1859 static int launch_script(const char *setup_script
, const char *ifname
, int fd
)
1861 sigset_t oldmask
, mask
;
1867 sigaddset(&mask
, SIGCHLD
);
1868 sigprocmask(SIG_BLOCK
, &mask
, &oldmask
);
1870 /* try to launch network script */
1873 int open_max
= sysconf(_SC_OPEN_MAX
), i
;
1875 for (i
= 0; i
< open_max
; i
++) {
1876 if (i
!= STDIN_FILENO
&&
1877 i
!= STDOUT_FILENO
&&
1878 i
!= STDERR_FILENO
&&
1884 *parg
++ = (char *)setup_script
;
1885 *parg
++ = (char *)ifname
;
1887 execv(setup_script
, args
);
1889 } else if (pid
> 0) {
1890 while (waitpid(pid
, &status
, 0) != pid
) {
1893 sigprocmask(SIG_SETMASK
, &oldmask
, NULL
);
1895 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
1899 fprintf(stderr
, "%s: could not launch network script\n", setup_script
);
1903 static int net_tap_init(QemuOpts
*opts
, int *vnet_hdr
)
1905 int fd
, vnet_hdr_required
;
1906 char ifname
[128] = {0,};
1907 const char *setup_script
;
1909 if (qemu_opt_get(opts
, "ifname")) {
1910 pstrcpy(ifname
, sizeof(ifname
), qemu_opt_get(opts
, "ifname"));
1913 *vnet_hdr
= qemu_opt_get_bool(opts
, "vnet_hdr", 1);
1914 if (qemu_opt_get(opts
, "vnet_hdr")) {
1915 vnet_hdr_required
= *vnet_hdr
;
1917 vnet_hdr_required
= 0;
1920 TFR(fd
= tap_open(ifname
, sizeof(ifname
), vnet_hdr
, vnet_hdr_required
));
1925 setup_script
= qemu_opt_get(opts
, "script");
1927 setup_script
[0] != '\0' &&
1928 strcmp(setup_script
, "no") != 0 &&
1929 launch_script(setup_script
, ifname
, fd
)) {
1934 qemu_opt_set(opts
, "ifname", ifname
);
1939 #endif /* !_WIN32 */
1941 #if defined(CONFIG_VDE)
1942 typedef struct VDEState
{
1943 VLANClientState
*vc
;
1947 static void vde_to_qemu(void *opaque
)
1949 VDEState
*s
= opaque
;
1953 size
= vde_recv(s
->vde
, (char *)buf
, sizeof(buf
), 0);
1955 qemu_send_packet(s
->vc
, buf
, size
);
1959 static ssize_t
vde_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1961 VDEState
*s
= vc
->opaque
;
1965 ret
= vde_send(s
->vde
, (const char *)buf
, size
, 0);
1966 } while (ret
< 0 && errno
== EINTR
);
1971 static void vde_cleanup(VLANClientState
*vc
)
1973 VDEState
*s
= vc
->opaque
;
1974 qemu_set_fd_handler(vde_datafd(s
->vde
), NULL
, NULL
, NULL
);
1979 static int net_vde_init(VLANState
*vlan
, const char *model
,
1980 const char *name
, const char *sock
,
1981 int port
, const char *group
, int mode
)
1984 char *init_group
= (char *)group
;
1985 char *init_sock
= (char *)sock
;
1987 struct vde_open_args args
= {
1989 .group
= init_group
,
1993 s
= qemu_mallocz(sizeof(VDEState
));
1994 s
->vde
= vde_open(init_sock
, (char *)"QEMU", &args
);
1999 s
->vc
= qemu_new_vlan_client(NET_CLIENT_TYPE_VDE
,
2000 vlan
, NULL
, model
, name
, NULL
,
2001 vde_receive
, NULL
, NULL
,
2003 qemu_set_fd_handler(vde_datafd(s
->vde
), vde_to_qemu
, NULL
, s
);
2004 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "sock=%s,fd=%d",
2005 sock
, vde_datafd(s
->vde
));
2010 /* network connection */
2011 typedef struct NetSocketState
{
2012 VLANClientState
*vc
;
2014 int state
; /* 0 = getting length, 1 = getting data */
2016 unsigned int packet_len
;
2018 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
2021 typedef struct NetSocketListenState
{
2026 } NetSocketListenState
;
2028 /* XXX: we consider we can send the whole packet without blocking */
2029 static ssize_t
net_socket_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
2031 NetSocketState
*s
= vc
->opaque
;
2035 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
2036 return send_all(s
->fd
, buf
, size
);
2039 static ssize_t
net_socket_receive_dgram(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
2041 NetSocketState
*s
= vc
->opaque
;
2043 return sendto(s
->fd
, (const void *)buf
, size
, 0,
2044 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
2047 static void net_socket_send(void *opaque
)
2049 NetSocketState
*s
= opaque
;
2055 size
= recv(s
->fd
, (void *)buf1
, sizeof(buf1
), 0);
2057 err
= socket_error();
2058 if (err
!= EWOULDBLOCK
)
2060 } else if (size
== 0) {
2061 /* end of connection */
2063 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2069 /* reassemble a packet from the network */
2075 memcpy(s
->buf
+ s
->index
, buf
, l
);
2079 if (s
->index
== 4) {
2081 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
2087 l
= s
->packet_len
- s
->index
;
2090 if (s
->index
+ l
<= sizeof(s
->buf
)) {
2091 memcpy(s
->buf
+ s
->index
, buf
, l
);
2093 fprintf(stderr
, "serious error: oversized packet received,"
2094 "connection terminated.\n");
2102 if (s
->index
>= s
->packet_len
) {
2103 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
2112 static void net_socket_send_dgram(void *opaque
)
2114 NetSocketState
*s
= opaque
;
2117 size
= recv(s
->fd
, (void *)s
->buf
, sizeof(s
->buf
), 0);
2121 /* end of connection */
2122 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2125 qemu_send_packet(s
->vc
, s
->buf
, size
);
2128 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
2133 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
2134 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
2135 inet_ntoa(mcastaddr
->sin_addr
),
2136 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
2140 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
2142 perror("socket(PF_INET, SOCK_DGRAM)");
2147 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
2148 (const char *)&val
, sizeof(val
));
2150 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
2154 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
2160 /* Add host to multicast group */
2161 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
2162 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
2164 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
2165 (const char *)&imr
, sizeof(struct ip_mreq
));
2167 perror("setsockopt(IP_ADD_MEMBERSHIP)");
2171 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
2173 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
2174 (const char *)&val
, sizeof(val
));
2176 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
2180 socket_set_nonblock(fd
);
2188 static void net_socket_cleanup(VLANClientState
*vc
)
2190 NetSocketState
*s
= vc
->opaque
;
2191 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2196 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
,
2199 int fd
, int is_connected
)
2201 struct sockaddr_in saddr
;
2203 socklen_t saddr_len
;
2206 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
2207 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
2208 * by ONLY ONE process: we must "clone" this dgram socket --jjo
2212 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
2214 if (saddr
.sin_addr
.s_addr
==0) {
2215 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
2219 /* clone dgram socket */
2220 newfd
= net_socket_mcast_create(&saddr
);
2222 /* error already reported by net_socket_mcast_create() */
2226 /* clone newfd to fd, close newfd */
2231 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
2232 fd
, strerror(errno
));
2237 s
= qemu_mallocz(sizeof(NetSocketState
));
2240 s
->vc
= qemu_new_vlan_client(NET_CLIENT_TYPE_SOCKET
,
2241 vlan
, NULL
, model
, name
, NULL
,
2242 net_socket_receive_dgram
, NULL
, NULL
,
2243 net_socket_cleanup
, s
);
2244 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
2246 /* mcast: save bound address as dst */
2247 if (is_connected
) s
->dgram_dst
=saddr
;
2249 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2250 "socket: fd=%d (%s mcast=%s:%d)",
2251 fd
, is_connected
? "cloned" : "",
2252 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2256 static void net_socket_connect(void *opaque
)
2258 NetSocketState
*s
= opaque
;
2259 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
2262 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
,
2265 int fd
, int is_connected
)
2268 s
= qemu_mallocz(sizeof(NetSocketState
));
2270 s
->vc
= qemu_new_vlan_client(NET_CLIENT_TYPE_SOCKET
,
2271 vlan
, NULL
, model
, name
, NULL
,
2272 net_socket_receive
, NULL
, NULL
,
2273 net_socket_cleanup
, s
);
2274 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2275 "socket: fd=%d", fd
);
2277 net_socket_connect(s
);
2279 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
2284 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
,
2285 const char *model
, const char *name
,
2286 int fd
, int is_connected
)
2288 int so_type
= -1, optlen
=sizeof(so_type
);
2290 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
2291 (socklen_t
*)&optlen
)< 0) {
2292 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
2297 return net_socket_fd_init_dgram(vlan
, model
, name
, fd
, is_connected
);
2299 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
2301 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2302 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
2303 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
2308 static void net_socket_accept(void *opaque
)
2310 NetSocketListenState
*s
= opaque
;
2312 struct sockaddr_in saddr
;
2317 len
= sizeof(saddr
);
2318 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
2319 if (fd
< 0 && errno
!= EINTR
) {
2321 } else if (fd
>= 0) {
2325 s1
= net_socket_fd_init(s
->vlan
, s
->model
, s
->name
, fd
, 1);
2329 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
2330 "socket: connection from %s:%d",
2331 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2335 static int net_socket_listen_init(VLANState
*vlan
,
2338 const char *host_str
)
2340 NetSocketListenState
*s
;
2342 struct sockaddr_in saddr
;
2344 if (parse_host_port(&saddr
, host_str
) < 0)
2347 s
= qemu_mallocz(sizeof(NetSocketListenState
));
2349 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
2354 socket_set_nonblock(fd
);
2356 /* allow fast reuse */
2358 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
2360 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
2365 ret
= listen(fd
, 0);
2371 s
->model
= qemu_strdup(model
);
2372 s
->name
= name
? qemu_strdup(name
) : NULL
;
2374 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
2378 static int net_socket_connect_init(VLANState
*vlan
,
2381 const char *host_str
)
2384 int fd
, connected
, ret
, err
;
2385 struct sockaddr_in saddr
;
2387 if (parse_host_port(&saddr
, host_str
) < 0)
2390 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
2395 socket_set_nonblock(fd
);
2399 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
2401 err
= socket_error();
2402 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
2403 } else if (err
== EINPROGRESS
) {
2406 } else if (err
== WSAEALREADY
) {
2419 s
= net_socket_fd_init(vlan
, model
, name
, fd
, connected
);
2422 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2423 "socket: connect to %s:%d",
2424 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2428 static int net_socket_mcast_init(VLANState
*vlan
,
2431 const char *host_str
)
2435 struct sockaddr_in saddr
;
2437 if (parse_host_port(&saddr
, host_str
) < 0)
2441 fd
= net_socket_mcast_create(&saddr
);
2445 s
= net_socket_fd_init(vlan
, model
, name
, fd
, 0);
2449 s
->dgram_dst
= saddr
;
2451 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2452 "socket: mcast=%s:%d",
2453 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2458 typedef struct DumpState
{
2459 VLANClientState
*pcap_vc
;
2464 #define PCAP_MAGIC 0xa1b2c3d4
2466 struct pcap_file_hdr
{
2468 uint16_t version_major
;
2469 uint16_t version_minor
;
2476 struct pcap_sf_pkthdr
{
2485 static ssize_t
dump_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
2487 DumpState
*s
= vc
->opaque
;
2488 struct pcap_sf_pkthdr hdr
;
2492 /* Early return in case of previous error. */
2497 ts
= muldiv64(qemu_get_clock(vm_clock
), 1000000, get_ticks_per_sec());
2498 caplen
= size
> s
->pcap_caplen
? s
->pcap_caplen
: size
;
2500 hdr
.ts
.tv_sec
= ts
/ 1000000;
2501 hdr
.ts
.tv_usec
= ts
% 1000000;
2502 hdr
.caplen
= caplen
;
2504 if (write(s
->fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
) ||
2505 write(s
->fd
, buf
, caplen
) != caplen
) {
2506 qemu_log("-net dump write error - stop dump\n");
2514 static void net_dump_cleanup(VLANClientState
*vc
)
2516 DumpState
*s
= vc
->opaque
;
2522 static int net_dump_init(VLANState
*vlan
, const char *device
,
2523 const char *name
, const char *filename
, int len
)
2525 struct pcap_file_hdr hdr
;
2528 s
= qemu_malloc(sizeof(DumpState
));
2530 s
->fd
= open(filename
, O_CREAT
| O_WRONLY
| O_BINARY
, 0644);
2532 qemu_error("-net dump: can't open %s\n", filename
);
2536 s
->pcap_caplen
= len
;
2538 hdr
.magic
= PCAP_MAGIC
;
2539 hdr
.version_major
= 2;
2540 hdr
.version_minor
= 4;
2543 hdr
.snaplen
= s
->pcap_caplen
;
2546 if (write(s
->fd
, &hdr
, sizeof(hdr
)) < sizeof(hdr
)) {
2547 qemu_error("-net dump write error: %s\n", strerror(errno
));
2553 s
->pcap_vc
= qemu_new_vlan_client(NET_CLIENT_TYPE_DUMP
,
2554 vlan
, NULL
, device
, name
, NULL
,
2555 dump_receive
, NULL
, NULL
,
2556 net_dump_cleanup
, s
);
2557 snprintf(s
->pcap_vc
->info_str
, sizeof(s
->pcap_vc
->info_str
),
2558 "dump to %s (len=%d)", filename
, len
);
2562 /* find or alloc a new VLAN */
2563 VLANState
*qemu_find_vlan(int id
, int allocate
)
2567 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
2568 if (vlan
->id
== id
) {
2577 vlan
= qemu_mallocz(sizeof(VLANState
));
2579 QTAILQ_INIT(&vlan
->clients
);
2581 vlan
->send_queue
= qemu_new_net_queue(qemu_vlan_deliver_packet
,
2582 qemu_vlan_deliver_packet_iov
,
2585 QTAILQ_INSERT_TAIL(&vlans
, vlan
, next
);
2590 VLANClientState
*qemu_find_netdev(const char *id
)
2592 VLANClientState
*vc
;
2594 QTAILQ_FOREACH(vc
, &non_vlan_clients
, next
) {
2595 if (!strcmp(vc
->name
, id
)) {
2603 static int nic_get_free_idx(void)
2607 for (index
= 0; index
< MAX_NICS
; index
++)
2608 if (!nd_table
[index
].used
)
2613 int qemu_show_nic_models(const char *arg
, const char *const *models
)
2617 if (!arg
|| strcmp(arg
, "?"))
2620 fprintf(stderr
, "qemu: Supported NIC models: ");
2621 for (i
= 0 ; models
[i
]; i
++)
2622 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
2626 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
2628 const char *models
[2];
2633 if (qemu_show_nic_models(nd
->model
, models
))
2635 if (qemu_find_nic_model(nd
, models
, model
) < 0)
2639 int qemu_find_nic_model(NICInfo
*nd
, const char * const *models
,
2640 const char *default_model
)
2645 nd
->model
= qemu_strdup(default_model
);
2647 for (i
= 0 ; models
[i
]; i
++) {
2648 if (strcmp(nd
->model
, models
[i
]) == 0)
2652 qemu_error("qemu: Unsupported NIC model: %s\n", nd
->model
);
2656 static int net_handle_fd_param(Monitor
*mon
, const char *param
)
2658 if (!qemu_isdigit(param
[0])) {
2661 fd
= monitor_get_fd(mon
, param
);
2663 qemu_error("No file descriptor named %s found", param
);
2669 return strtol(param
, NULL
, 0);
2673 static int net_init_nic(QemuOpts
*opts
,
2682 idx
= nic_get_free_idx();
2683 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
2684 qemu_error("Too Many NICs\n");
2688 nd
= &nd_table
[idx
];
2690 memset(nd
, 0, sizeof(*nd
));
2692 if ((netdev
= qemu_opt_get(opts
, "netdev"))) {
2693 nd
->netdev
= qemu_find_netdev(netdev
);
2695 qemu_error("netdev '%s' not found\n", netdev
);
2703 nd
->name
= qemu_strdup(name
);
2705 if (qemu_opt_get(opts
, "model")) {
2706 nd
->model
= qemu_strdup(qemu_opt_get(opts
, "model"));
2708 if (qemu_opt_get(opts
, "addr")) {
2709 nd
->devaddr
= qemu_strdup(qemu_opt_get(opts
, "addr"));
2712 nd
->macaddr
[0] = 0x52;
2713 nd
->macaddr
[1] = 0x54;
2714 nd
->macaddr
[2] = 0x00;
2715 nd
->macaddr
[3] = 0x12;
2716 nd
->macaddr
[4] = 0x34;
2717 nd
->macaddr
[5] = 0x56 + idx
;
2719 if (qemu_opt_get(opts
, "macaddr") &&
2720 parse_macaddr(nd
->macaddr
, qemu_opt_get(opts
, "macaddr")) < 0) {
2721 qemu_error("invalid syntax for ethernet address\n");
2725 nd
->nvectors
= qemu_opt_get_number(opts
, "vectors", NIC_NVECTORS_UNSPECIFIED
);
2726 if (nd
->nvectors
!= NIC_NVECTORS_UNSPECIFIED
&&
2727 (nd
->nvectors
< 0 || nd
->nvectors
> 0x7ffffff)) {
2728 qemu_error("invalid # of vectors: %d\n", nd
->nvectors
);
2734 nd
->vlan
->nb_guest_devs
++;
2741 #if defined(CONFIG_SLIRP)
2742 static int net_init_slirp_configs(const char *name
, const char *value
, void *opaque
)
2744 struct slirp_config_str
*config
;
2746 if (strcmp(name
, "hostfwd") != 0 && strcmp(name
, "guestfwd") != 0) {
2750 config
= qemu_mallocz(sizeof(*config
));
2752 pstrcpy(config
->str
, sizeof(config
->str
), value
);
2754 if (!strcmp(name
, "hostfwd")) {
2755 config
->flags
= SLIRP_CFG_HOSTFWD
;
2758 config
->next
= slirp_configs
;
2759 slirp_configs
= config
;
2764 static int net_init_slirp(QemuOpts
*opts
,
2769 struct slirp_config_str
*config
;
2771 const char *vhostname
;
2772 const char *vdhcp_start
;
2773 const char *vnamesrv
;
2774 const char *tftp_export
;
2775 const char *bootfile
;
2776 const char *smb_export
;
2777 const char *vsmbsrv
;
2782 vhost
= qemu_opt_get(opts
, "host");
2783 vhostname
= qemu_opt_get(opts
, "hostname");
2784 vdhcp_start
= qemu_opt_get(opts
, "dhcpstart");
2785 vnamesrv
= qemu_opt_get(opts
, "dns");
2786 tftp_export
= qemu_opt_get(opts
, "tftp");
2787 bootfile
= qemu_opt_get(opts
, "bootfile");
2788 smb_export
= qemu_opt_get(opts
, "smb");
2789 vsmbsrv
= qemu_opt_get(opts
, "smbserver");
2791 if (qemu_opt_get(opts
, "ip")) {
2792 const char *ip
= qemu_opt_get(opts
, "ip");
2793 int l
= strlen(ip
) + strlen("/24") + 1;
2795 vnet
= qemu_malloc(l
);
2797 /* emulate legacy ip= parameter */
2798 pstrcpy(vnet
, l
, ip
);
2799 pstrcat(vnet
, l
, "/24");
2802 if (qemu_opt_get(opts
, "net")) {
2806 vnet
= qemu_strdup(qemu_opt_get(opts
, "net"));
2809 if (qemu_opt_get(opts
, "restrict") &&
2810 qemu_opt_get(opts
, "restrict")[0] == 'y') {
2814 qemu_opt_foreach(opts
, net_init_slirp_configs
, NULL
, 0);
2816 ret
= net_slirp_init(vlan
, "user", name
, restricted
, vnet
, vhost
,
2817 vhostname
, tftp_export
, bootfile
, vdhcp_start
,
2818 vnamesrv
, smb_export
, vsmbsrv
);
2820 while (slirp_configs
) {
2821 config
= slirp_configs
;
2822 slirp_configs
= config
->next
;
2826 if (ret
!= -1 && vlan
) {
2827 vlan
->nb_host_devs
++;
2834 #endif /* CONFIG_SLIRP */
2837 static int net_init_tap_win32(QemuOpts
*opts
,
2844 ifname
= qemu_opt_get(opts
, "ifname");
2847 qemu_error("tap: no interface name\n");
2851 if (tap_win32_init(vlan
, "tap", name
, ifname
) == -1) {
2856 vlan
->nb_host_devs
++;
2861 #elif !defined(_AIX)
2862 static int net_init_tap(QemuOpts
*opts
,
2870 if (qemu_opt_get(opts
, "fd")) {
2871 if (qemu_opt_get(opts
, "ifname") ||
2872 qemu_opt_get(opts
, "script") ||
2873 qemu_opt_get(opts
, "downscript") ||
2874 qemu_opt_get(opts
, "vnet_hdr")) {
2875 qemu_error("ifname=, script=, downscript= and vnet_hdr= is invalid with fd=\n");
2879 fd
= net_handle_fd_param(mon
, qemu_opt_get(opts
, "fd"));
2884 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
2886 vnet_hdr
= tap_probe_vnet_hdr(fd
);
2888 if (!qemu_opt_get(opts
, "script")) {
2889 qemu_opt_set(opts
, "script", DEFAULT_NETWORK_SCRIPT
);
2892 if (!qemu_opt_get(opts
, "downscript")) {
2893 qemu_opt_set(opts
, "downscript", DEFAULT_NETWORK_DOWN_SCRIPT
);
2896 fd
= net_tap_init(opts
, &vnet_hdr
);
2899 s
= net_tap_fd_init(vlan
, "tap", name
, fd
, vnet_hdr
);
2905 if (tap_set_sndbuf(s
, opts
) < 0) {
2909 if (qemu_opt_get(opts
, "fd")) {
2910 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "fd=%d", fd
);
2912 const char *ifname
, *script
, *downscript
;
2914 ifname
= qemu_opt_get(opts
, "ifname");
2915 script
= qemu_opt_get(opts
, "script");
2916 downscript
= qemu_opt_get(opts
, "downscript");
2918 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2919 "ifname=%s,script=%s,downscript=%s",
2920 ifname
, script
, downscript
);
2922 if (strcmp(downscript
, "no") != 0) {
2923 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", downscript
);
2924 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
), "%s", ifname
);
2929 vlan
->nb_host_devs
++;
2936 static int net_init_socket(QemuOpts
*opts
,
2941 if (qemu_opt_get(opts
, "fd")) {
2944 if (qemu_opt_get(opts
, "listen") ||
2945 qemu_opt_get(opts
, "connect") ||
2946 qemu_opt_get(opts
, "mcast")) {
2947 qemu_error("listen=, connect= and mcast= is invalid with fd=\n");
2951 fd
= net_handle_fd_param(mon
, qemu_opt_get(opts
, "fd"));
2956 if (!net_socket_fd_init(vlan
, "socket", name
, fd
, 1)) {
2960 } else if (qemu_opt_get(opts
, "listen")) {
2963 if (qemu_opt_get(opts
, "fd") ||
2964 qemu_opt_get(opts
, "connect") ||
2965 qemu_opt_get(opts
, "mcast")) {
2966 qemu_error("fd=, connect= and mcast= is invalid with listen=\n");
2970 listen
= qemu_opt_get(opts
, "listen");
2972 if (net_socket_listen_init(vlan
, "socket", name
, listen
) == -1) {
2975 } else if (qemu_opt_get(opts
, "connect")) {
2976 const char *connect
;
2978 if (qemu_opt_get(opts
, "fd") ||
2979 qemu_opt_get(opts
, "listen") ||
2980 qemu_opt_get(opts
, "mcast")) {
2981 qemu_error("fd=, listen= and mcast= is invalid with connect=\n");
2985 connect
= qemu_opt_get(opts
, "connect");
2987 if (net_socket_connect_init(vlan
, "socket", name
, connect
) == -1) {
2990 } else if (qemu_opt_get(opts
, "mcast")) {
2993 if (qemu_opt_get(opts
, "fd") ||
2994 qemu_opt_get(opts
, "connect") ||
2995 qemu_opt_get(opts
, "listen")) {
2996 qemu_error("fd=, connect= and listen= is invalid with mcast=\n");
3000 mcast
= qemu_opt_get(opts
, "mcast");
3002 if (net_socket_mcast_init(vlan
, "socket", name
, mcast
) == -1) {
3006 qemu_error("-socket requires fd=, listen=, connect= or mcast=\n");
3011 vlan
->nb_host_devs
++;
3018 static int net_init_vde(QemuOpts
*opts
,
3027 sock
= qemu_opt_get(opts
, "sock");
3028 group
= qemu_opt_get(opts
, "group");
3030 port
= qemu_opt_get_number(opts
, "port", 0);
3031 mode
= qemu_opt_get_number(opts
, "mode", 0700);
3033 if (net_vde_init(vlan
, "vde", name
, sock
, port
, group
, mode
) == -1) {
3038 vlan
->nb_host_devs
++;
3045 static int net_init_dump(QemuOpts
*opts
,
3056 file
= qemu_opt_get(opts
, "file");
3058 snprintf(def_file
, sizeof(def_file
), "qemu-vlan%d.pcap", vlan
->id
);
3062 len
= qemu_opt_get_size(opts
, "len", 65536);
3064 return net_dump_init(vlan
, "dump", name
, file
, len
);
3067 #define NET_COMMON_PARAMS_DESC \
3070 .type = QEMU_OPT_STRING, \
3071 .help = "net client type (nic, tap etc.)", \
3074 .type = QEMU_OPT_NUMBER, \
3075 .help = "vlan number", \
3078 .type = QEMU_OPT_STRING, \
3079 .help = "identifier for monitor commands", \
3082 typedef int (*net_client_init_func
)(QemuOpts
*opts
,
3087 /* magic number, but compiler will warn if too small */
3088 #define NET_MAX_DESC 20
3092 net_client_init_func init
;
3093 QemuOptDesc desc
[NET_MAX_DESC
];
3094 } net_client_types
[] = {
3098 NET_COMMON_PARAMS_DESC
,
3099 { /* end of list */ }
3103 .init
= net_init_nic
,
3105 NET_COMMON_PARAMS_DESC
,
3108 .type
= QEMU_OPT_STRING
,
3109 .help
= "id of -netdev to connect to",
3113 .type
= QEMU_OPT_STRING
,
3114 .help
= "MAC address",
3117 .type
= QEMU_OPT_STRING
,
3118 .help
= "device model (e1000, rtl8139, virtio etc.)",
3121 .type
= QEMU_OPT_STRING
,
3122 .help
= "PCI device address",
3125 .type
= QEMU_OPT_NUMBER
,
3126 .help
= "number of MSI-x vectors, 0 to disable MSI-X",
3128 { /* end of list */ }
3133 .init
= net_init_slirp
,
3135 NET_COMMON_PARAMS_DESC
,
3138 .type
= QEMU_OPT_STRING
,
3139 .help
= "client hostname reported by the builtin DHCP server",
3142 .type
= QEMU_OPT_STRING
,
3143 .help
= "isolate the guest from the host (y|yes|n|no)",
3146 .type
= QEMU_OPT_STRING
,
3147 .help
= "legacy parameter, use net= instead",
3150 .type
= QEMU_OPT_STRING
,
3151 .help
= "IP address and optional netmask",
3154 .type
= QEMU_OPT_STRING
,
3155 .help
= "guest-visible address of the host",
3158 .type
= QEMU_OPT_STRING
,
3159 .help
= "root directory of the built-in TFTP server",
3162 .type
= QEMU_OPT_STRING
,
3163 .help
= "BOOTP filename, for use with tftp=",
3165 .name
= "dhcpstart",
3166 .type
= QEMU_OPT_STRING
,
3167 .help
= "the first of the 16 IPs the built-in DHCP server can assign",
3170 .type
= QEMU_OPT_STRING
,
3171 .help
= "guest-visible address of the virtual nameserver",
3174 .type
= QEMU_OPT_STRING
,
3175 .help
= "root directory of the built-in SMB server",
3177 .name
= "smbserver",
3178 .type
= QEMU_OPT_STRING
,
3179 .help
= "IP address of the built-in SMB server",
3182 .type
= QEMU_OPT_STRING
,
3183 .help
= "guest port number to forward incoming TCP or UDP connections",
3186 .type
= QEMU_OPT_STRING
,
3187 .help
= "IP address and port to forward guest TCP connections",
3189 { /* end of list */ }
3195 .init
= net_init_tap_win32
,
3197 NET_COMMON_PARAMS_DESC
,
3200 .type
= QEMU_OPT_STRING
,
3201 .help
= "interface name",
3203 { /* end of list */ }
3205 #elif !defined(_AIX)
3208 .init
= net_init_tap
,
3210 NET_COMMON_PARAMS_DESC
,
3213 .type
= QEMU_OPT_STRING
,
3214 .help
= "file descriptor of an already opened tap",
3217 .type
= QEMU_OPT_STRING
,
3218 .help
= "interface name",
3221 .type
= QEMU_OPT_STRING
,
3222 .help
= "script to initialize the interface",
3224 .name
= "downscript",
3225 .type
= QEMU_OPT_STRING
,
3226 .help
= "script to shut down the interface",
3229 .type
= QEMU_OPT_SIZE
,
3230 .help
= "send buffer limit"
3233 .type
= QEMU_OPT_BOOL
,
3234 .help
= "enable the IFF_VNET_HDR flag on the tap interface"
3236 { /* end of list */ }
3241 .init
= net_init_socket
,
3243 NET_COMMON_PARAMS_DESC
,
3246 .type
= QEMU_OPT_STRING
,
3247 .help
= "file descriptor of an already opened socket",
3250 .type
= QEMU_OPT_STRING
,
3251 .help
= "port number, and optional hostname, to listen on",
3254 .type
= QEMU_OPT_STRING
,
3255 .help
= "port number, and optional hostname, to connect to",
3258 .type
= QEMU_OPT_STRING
,
3259 .help
= "UDP multicast address and port number",
3261 { /* end of list */ }
3266 .init
= net_init_vde
,
3268 NET_COMMON_PARAMS_DESC
,
3271 .type
= QEMU_OPT_STRING
,
3272 .help
= "socket path",
3275 .type
= QEMU_OPT_NUMBER
,
3276 .help
= "port number",
3279 .type
= QEMU_OPT_STRING
,
3280 .help
= "group owner of socket",
3283 .type
= QEMU_OPT_NUMBER
,
3284 .help
= "permissions for socket",
3286 { /* end of list */ }
3291 .init
= net_init_dump
,
3293 NET_COMMON_PARAMS_DESC
,
3296 .type
= QEMU_OPT_SIZE
,
3297 .help
= "per-packet size limit (64k default)",
3300 .type
= QEMU_OPT_STRING
,
3301 .help
= "dump file path (default is qemu-vlan0.pcap)",
3303 { /* end of list */ }
3306 { /* end of list */ }
3309 int net_client_init(Monitor
*mon
, QemuOpts
*opts
, int is_netdev
)
3315 type
= qemu_opt_get(opts
, "type");
3317 qemu_error("No type specified for -net\n");
3322 if (strcmp(type
, "tap") != 0 &&
3324 strcmp(type
, "user") != 0 &&
3327 strcmp(type
, "vde") != 0 &&
3329 strcmp(type
, "socket") != 0) {
3330 qemu_error("The '%s' network backend type is not valid with -netdev\n",
3335 if (qemu_opt_get(opts
, "vlan")) {
3336 qemu_error("The 'vlan' parameter is not valid with -netdev\n");
3339 if (qemu_opt_get(opts
, "name")) {
3340 qemu_error("The 'name' parameter is not valid with -netdev\n");
3343 if (!qemu_opts_id(opts
)) {
3344 qemu_error("The id= parameter is required with -netdev\n");
3349 name
= qemu_opts_id(opts
);
3351 name
= qemu_opt_get(opts
, "name");
3354 for (i
= 0; net_client_types
[i
].type
!= NULL
; i
++) {
3355 if (!strcmp(net_client_types
[i
].type
, type
)) {
3356 VLANState
*vlan
= NULL
;
3358 if (qemu_opts_validate(opts
, &net_client_types
[i
].desc
[0]) == -1) {
3362 /* Do not add to a vlan if it's a -netdev or a nic with a
3363 * netdev= parameter. */
3365 (strcmp(type
, "nic") == 0 && qemu_opt_get(opts
, "netdev")))) {
3366 vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
3369 if (net_client_types
[i
].init
) {
3370 return net_client_types
[i
].init(opts
, mon
, name
, vlan
);
3377 qemu_error("Invalid -net type '%s'\n", type
);
3381 void net_client_uninit(NICInfo
*nd
)
3384 nd
->vlan
->nb_guest_devs
--;
3388 qemu_free(nd
->model
);
3389 qemu_free(nd
->name
);
3390 qemu_free(nd
->devaddr
);
3395 static int net_host_check_device(const char *device
)
3398 const char *valid_param_list
[] = { "tap", "socket", "dump"
3406 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
3407 if (!strncmp(valid_param_list
[i
], device
,
3408 strlen(valid_param_list
[i
])))
3415 void net_host_device_add(Monitor
*mon
, const QDict
*qdict
)
3417 const char *device
= qdict_get_str(qdict
, "device");
3418 const char *opts_str
= qdict_get_try_str(qdict
, "opts");
3421 if (!net_host_check_device(device
)) {
3422 monitor_printf(mon
, "invalid host network device %s\n", device
);
3426 opts
= qemu_opts_parse(&qemu_net_opts
, opts_str
? opts_str
: "", NULL
);
3428 monitor_printf(mon
, "parsing network options '%s' failed\n",
3429 opts_str
? opts_str
: "");
3433 qemu_opt_set(opts
, "type", device
);
3435 if (net_client_init(mon
, opts
, 0) < 0) {
3436 monitor_printf(mon
, "adding host network device %s failed\n", device
);
3440 void net_host_device_remove(Monitor
*mon
, const QDict
*qdict
)
3442 VLANClientState
*vc
;
3443 int vlan_id
= qdict_get_int(qdict
, "vlan_id");
3444 const char *device
= qdict_get_str(qdict
, "device");
3446 vc
= qemu_find_vlan_client_by_name(mon
, vlan_id
, device
);
3450 if (!net_host_check_device(vc
->model
)) {
3451 monitor_printf(mon
, "invalid host network device %s\n", device
);
3454 qemu_del_vlan_client(vc
);
3457 void net_set_boot_mask(int net_boot_mask
)
3461 /* Only the first four NICs may be bootable */
3462 net_boot_mask
= net_boot_mask
& 0xF;
3464 for (i
= 0; i
< nb_nics
; i
++) {
3465 if (net_boot_mask
& (1 << i
)) {
3466 nd_table
[i
].bootable
= 1;
3467 net_boot_mask
&= ~(1 << i
);
3471 if (net_boot_mask
) {
3472 fprintf(stderr
, "Cannot boot from non-existent NIC\n");
3477 void do_info_network(Monitor
*mon
)
3481 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
3482 VLANClientState
*vc
;
3484 monitor_printf(mon
, "VLAN %d devices:\n", vlan
->id
);
3486 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
3487 monitor_printf(mon
, " %s: %s\n", vc
->name
, vc
->info_str
);
3492 void do_set_link(Monitor
*mon
, const QDict
*qdict
)
3495 VLANClientState
*vc
= NULL
;
3496 const char *name
= qdict_get_str(qdict
, "name");
3497 const char *up_or_down
= qdict_get_str(qdict
, "up_or_down");
3499 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
3500 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
3501 if (strcmp(vc
->name
, name
) == 0) {
3509 monitor_printf(mon
, "could not find network device '%s'\n", name
);
3513 if (strcmp(up_or_down
, "up") == 0)
3515 else if (strcmp(up_or_down
, "down") == 0)
3518 monitor_printf(mon
, "invalid link status '%s'; only 'up' or 'down' "
3519 "valid\n", up_or_down
);
3521 if (vc
->link_status_changed
)
3522 vc
->link_status_changed(vc
);
3525 void net_cleanup(void)
3528 VLANClientState
*vc
, *next_vc
;
3530 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
3531 QTAILQ_FOREACH_SAFE(vc
, &vlan
->clients
, next
, next_vc
) {
3532 qemu_del_vlan_client(vc
);
3536 QTAILQ_FOREACH_SAFE(vc
, &non_vlan_clients
, next
, next_vc
) {
3537 qemu_del_vlan_client(vc
);
3541 static void net_check_clients(void)
3545 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
3546 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
3548 if (vlan
->nb_guest_devs
== 0)
3549 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
3550 if (vlan
->nb_host_devs
== 0)
3552 "Warning: vlan %d is not connected to host network\n",
3557 static int net_init_client(QemuOpts
*opts
, void *dummy
)
3559 if (net_client_init(NULL
, opts
, 0) < 0)
3564 static int net_init_netdev(QemuOpts
*opts
, void *dummy
)
3566 return net_client_init(NULL
, opts
, 1);
3569 int net_init_clients(void)
3571 if (QTAILQ_EMPTY(&qemu_net_opts
.head
)) {
3572 /* if no clients, we use a default config */
3573 qemu_opts_set(&qemu_net_opts
, NULL
, "type", "nic");
3575 qemu_opts_set(&qemu_net_opts
, NULL
, "type", "user");
3579 QTAILQ_INIT(&vlans
);
3580 QTAILQ_INIT(&non_vlan_clients
);
3582 if (qemu_opts_foreach(&qemu_netdev_opts
, net_init_netdev
, NULL
, 1) == -1)
3585 if (qemu_opts_foreach(&qemu_net_opts
, net_init_client
, NULL
, 1) == -1) {
3589 net_check_clients();
3594 int net_client_parse(QemuOptsList
*opts_list
, const char *optarg
)
3596 #if defined(CONFIG_SLIRP)
3597 /* handle legacy -net channel,port:chr */
3598 if (!strcmp(opts_list
->name
, "net") &&
3599 !strncmp(optarg
, "channel,", strlen("channel,"))) {
3602 optarg
+= strlen("channel,");
3604 if (QTAILQ_EMPTY(&slirp_stacks
)) {
3605 struct slirp_config_str
*config
;
3607 config
= qemu_malloc(sizeof(*config
));
3608 pstrcpy(config
->str
, sizeof(config
->str
), optarg
);
3609 config
->flags
= SLIRP_CFG_LEGACY
;
3610 config
->next
= slirp_configs
;
3611 slirp_configs
= config
;
3614 ret
= slirp_guestfwd(QTAILQ_FIRST(&slirp_stacks
), optarg
, 1);
3620 if (!qemu_opts_parse(opts_list
, optarg
, "type")) {