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 <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>
104 #include "qemu-common.h"
108 #include "qemu-timer.h"
109 #include "qemu-char.h"
110 #include "audio/audio.h"
111 #include "qemu_socket.h"
112 #include "qemu-log.h"
113 #include "qemu-config.h"
115 #include "slirp/libslirp.h"
117 static QTAILQ_HEAD(, VLANState
) vlans
;
119 /***********************************************************/
120 /* network device redirectors */
122 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
123 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
127 for(i
=0;i
<size
;i
+=16) {
131 fprintf(f
, "%08x ", i
);
134 fprintf(f
, " %02x", buf
[i
+j
]);
141 if (c
< ' ' || c
> '~')
150 static int parse_macaddr(uint8_t *macaddr
, const char *p
)
157 offset
= strtol(p
, &last_char
, 0);
158 if (0 == errno
&& '\0' == *last_char
&&
159 offset
>= 0 && offset
<= 0xFFFFFF) {
160 macaddr
[3] = (offset
& 0xFF0000) >> 16;
161 macaddr
[4] = (offset
& 0xFF00) >> 8;
162 macaddr
[5] = offset
& 0xFF;
165 for(i
= 0; i
< 6; i
++) {
166 macaddr
[i
] = strtol(p
, (char **)&p
, 16);
171 if (*p
!= ':' && *p
!= '-')
182 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
193 if (len
> buf_size
- 1)
202 int parse_host_src_port(struct sockaddr_in
*haddr
,
203 struct sockaddr_in
*saddr
,
204 const char *input_str
)
206 char *str
= strdup(input_str
);
207 char *host_str
= str
;
209 const char *src_str2
;
213 * Chop off any extra arguments at the end of the string which
214 * would start with a comma, then fill in the src port information
215 * if it was provided else use the "any address" and "any port".
217 if ((ptr
= strchr(str
,',')))
220 if ((src_str
= strchr(input_str
,'@'))) {
225 if (parse_host_port(haddr
, host_str
) < 0)
229 if (!src_str
|| *src_str
== '\0')
232 if (parse_host_port(saddr
, src_str2
) < 0)
243 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
251 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
253 saddr
->sin_family
= AF_INET
;
254 if (buf
[0] == '\0') {
255 saddr
->sin_addr
.s_addr
= 0;
257 if (qemu_isdigit(buf
[0])) {
258 if (!inet_aton(buf
, &saddr
->sin_addr
))
261 if ((he
= gethostbyname(buf
)) == NULL
)
263 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
266 port
= strtol(p
, (char **)&r
, 0);
269 saddr
->sin_port
= htons(port
);
273 void qemu_format_nic_info_str(VLANClientState
*vc
, uint8_t macaddr
[6])
275 snprintf(vc
->info_str
, sizeof(vc
->info_str
),
276 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
278 macaddr
[0], macaddr
[1], macaddr
[2],
279 macaddr
[3], macaddr
[4], macaddr
[5]);
282 static char *assign_name(VLANClientState
*vc1
, const char *model
)
288 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
291 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
292 if (vc
!= vc1
&& strcmp(vc
->model
, model
) == 0) {
298 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
300 return qemu_strdup(buf
);
303 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
306 NetCanReceive
*can_receive
,
308 NetReceiveIOV
*receive_iov
,
314 vc
= qemu_mallocz(sizeof(VLANClientState
));
316 vc
->model
= qemu_strdup(model
);
318 vc
->name
= qemu_strdup(name
);
320 vc
->name
= assign_name(vc
, model
);
321 vc
->can_receive
= can_receive
;
322 vc
->receive
= receive
;
323 vc
->receive_iov
= receive_iov
;
324 vc
->cleanup
= cleanup
;
329 QTAILQ_INSERT_TAIL(&vc
->vlan
->clients
, vc
, next
);
335 void qemu_del_vlan_client(VLANClientState
*vc
)
338 QTAILQ_REMOVE(&vc
->vlan
->clients
, vc
, next
);
346 qemu_free(vc
->model
);
350 VLANClientState
*qemu_find_vlan_client(VLANState
*vlan
, void *opaque
)
354 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
355 if (vc
->opaque
== opaque
) {
363 static VLANClientState
*
364 qemu_find_vlan_client_by_name(Monitor
*mon
, int vlan_id
,
365 const char *client_str
)
370 vlan
= qemu_find_vlan(vlan_id
, 0);
372 monitor_printf(mon
, "unknown VLAN %d\n", vlan_id
);
376 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
377 if (!strcmp(vc
->name
, client_str
)) {
382 monitor_printf(mon
, "can't find device %s on VLAN %d\n",
383 client_str
, vlan_id
);
389 int qemu_can_send_packet(VLANClientState
*sender
)
391 VLANState
*vlan
= sender
->vlan
;
398 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
403 /* no can_receive() handler, they can always receive */
404 if (!vc
->can_receive
|| vc
->can_receive(vc
)) {
412 qemu_deliver_packet(VLANClientState
*sender
, const uint8_t *buf
, int size
)
417 sender
->vlan
->delivering
= 1;
419 QTAILQ_FOREACH(vc
, &sender
->vlan
->clients
, next
) {
431 len
= vc
->receive(vc
, buf
, size
);
433 ret
= (ret
>= 0) ? ret
: len
;
436 sender
->vlan
->delivering
= 0;
441 void qemu_purge_queued_packets(VLANClientState
*vc
)
443 VLANPacket
*packet
, *next
;
448 QTAILQ_FOREACH_SAFE(packet
, &vc
->vlan
->send_queue
, entry
, next
) {
449 if (packet
->sender
== vc
) {
450 QTAILQ_REMOVE(&vc
->vlan
->send_queue
, packet
, entry
);
456 void qemu_flush_queued_packets(VLANClientState
*vc
)
461 while (!QTAILQ_EMPTY(&vc
->vlan
->send_queue
)) {
465 packet
= QTAILQ_FIRST(&vc
->vlan
->send_queue
);
466 QTAILQ_REMOVE(&vc
->vlan
->send_queue
, packet
, entry
);
468 ret
= qemu_deliver_packet(packet
->sender
, packet
->data
, packet
->size
);
469 if (ret
== 0 && packet
->sent_cb
!= NULL
) {
470 QTAILQ_INSERT_HEAD(&vc
->vlan
->send_queue
, packet
, entry
);
475 packet
->sent_cb(packet
->sender
, ret
);
481 static void qemu_enqueue_packet(VLANClientState
*sender
,
482 const uint8_t *buf
, int size
,
483 NetPacketSent
*sent_cb
)
487 packet
= qemu_malloc(sizeof(VLANPacket
) + size
);
488 packet
->sender
= sender
;
490 packet
->sent_cb
= sent_cb
;
491 memcpy(packet
->data
, buf
, size
);
493 QTAILQ_INSERT_TAIL(&sender
->vlan
->send_queue
, packet
, entry
);
496 ssize_t
qemu_send_packet_async(VLANClientState
*sender
,
497 const uint8_t *buf
, int size
,
498 NetPacketSent
*sent_cb
)
502 if (sender
->link_down
|| !sender
->vlan
) {
507 printf("qemu_send_packet_async:\n");
508 hex_dump(stdout
, buf
, size
);
511 if (sender
->vlan
->delivering
) {
512 qemu_enqueue_packet(sender
, buf
, size
, NULL
);
516 ret
= qemu_deliver_packet(sender
, buf
, size
);
517 if (ret
== 0 && sent_cb
!= NULL
) {
518 qemu_enqueue_packet(sender
, buf
, size
, sent_cb
);
522 qemu_flush_queued_packets(sender
);
527 void qemu_send_packet(VLANClientState
*vc
, const uint8_t *buf
, int size
)
529 qemu_send_packet_async(vc
, buf
, size
, NULL
);
532 static ssize_t
vc_sendv_compat(VLANClientState
*vc
, const struct iovec
*iov
,
535 uint8_t buffer
[4096];
539 for (i
= 0; i
< iovcnt
; i
++) {
542 len
= MIN(sizeof(buffer
) - offset
, iov
[i
].iov_len
);
543 memcpy(buffer
+ offset
, iov
[i
].iov_base
, len
);
547 return vc
->receive(vc
, buffer
, offset
);
550 static ssize_t
calc_iov_length(const struct iovec
*iov
, int iovcnt
)
555 for (i
= 0; i
< iovcnt
; i
++)
556 offset
+= iov
[i
].iov_len
;
560 static int qemu_deliver_packet_iov(VLANClientState
*sender
,
561 const struct iovec
*iov
, int iovcnt
)
566 sender
->vlan
->delivering
= 1;
568 QTAILQ_FOREACH(vc
, &sender
->vlan
->clients
, next
) {
576 ret
= calc_iov_length(iov
, iovcnt
);
580 if (vc
->receive_iov
) {
581 len
= vc
->receive_iov(vc
, iov
, iovcnt
);
583 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
586 ret
= (ret
>= 0) ? ret
: len
;
589 sender
->vlan
->delivering
= 0;
594 static ssize_t
qemu_enqueue_packet_iov(VLANClientState
*sender
,
595 const struct iovec
*iov
, int iovcnt
,
596 NetPacketSent
*sent_cb
)
602 max_len
= calc_iov_length(iov
, iovcnt
);
604 packet
= qemu_malloc(sizeof(VLANPacket
) + max_len
);
605 packet
->sender
= sender
;
606 packet
->sent_cb
= sent_cb
;
609 for (i
= 0; i
< iovcnt
; i
++) {
610 size_t len
= iov
[i
].iov_len
;
612 memcpy(packet
->data
+ packet
->size
, iov
[i
].iov_base
, len
);
616 QTAILQ_INSERT_TAIL(&sender
->vlan
->send_queue
, packet
, entry
);
621 ssize_t
qemu_sendv_packet_async(VLANClientState
*sender
,
622 const struct iovec
*iov
, int iovcnt
,
623 NetPacketSent
*sent_cb
)
627 if (sender
->link_down
|| !sender
->vlan
) {
628 return calc_iov_length(iov
, iovcnt
);
631 if (sender
->vlan
->delivering
) {
632 return qemu_enqueue_packet_iov(sender
, iov
, iovcnt
, NULL
);
635 ret
= qemu_deliver_packet_iov(sender
, iov
, iovcnt
);
636 if (ret
== 0 && sent_cb
!= NULL
) {
637 qemu_enqueue_packet_iov(sender
, iov
, iovcnt
, sent_cb
);
641 qemu_flush_queued_packets(sender
);
647 qemu_sendv_packet(VLANClientState
*vc
, const struct iovec
*iov
, int iovcnt
)
649 return qemu_sendv_packet_async(vc
, iov
, iovcnt
, NULL
);
652 #if defined(CONFIG_SLIRP)
654 /* slirp network adapter */
656 #define SLIRP_CFG_HOSTFWD 1
657 #define SLIRP_CFG_LEGACY 2
659 struct slirp_config_str
{
660 struct slirp_config_str
*next
;
666 typedef struct SlirpState
{
667 QTAILQ_ENTRY(SlirpState
) entry
;
675 static struct slirp_config_str
*slirp_configs
;
676 const char *legacy_tftp_prefix
;
677 const char *legacy_bootp_filename
;
678 static QTAILQ_HEAD(slirp_stacks
, SlirpState
) slirp_stacks
=
679 QTAILQ_HEAD_INITIALIZER(slirp_stacks
);
681 static int slirp_hostfwd(SlirpState
*s
, const char *redir_str
,
683 static int slirp_guestfwd(SlirpState
*s
, const char *config_str
,
687 static const char *legacy_smb_export
;
689 static int slirp_smb(SlirpState
*s
, const char *exported_dir
,
690 struct in_addr vserver_addr
);
691 static void slirp_smb_cleanup(SlirpState
*s
);
693 static inline void slirp_smb_cleanup(SlirpState
*s
) { }
696 int slirp_can_output(void *opaque
)
698 SlirpState
*s
= opaque
;
700 return qemu_can_send_packet(s
->vc
);
703 void slirp_output(void *opaque
, const uint8_t *pkt
, int pkt_len
)
705 SlirpState
*s
= opaque
;
708 printf("slirp output:\n");
709 hex_dump(stdout
, pkt
, pkt_len
);
711 qemu_send_packet(s
->vc
, pkt
, pkt_len
);
714 static ssize_t
slirp_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
716 SlirpState
*s
= vc
->opaque
;
719 printf("slirp input:\n");
720 hex_dump(stdout
, buf
, size
);
722 slirp_input(s
->slirp
, buf
, size
);
726 static void net_slirp_cleanup(VLANClientState
*vc
)
728 SlirpState
*s
= vc
->opaque
;
730 slirp_cleanup(s
->slirp
);
731 slirp_smb_cleanup(s
);
732 QTAILQ_REMOVE(&slirp_stacks
, s
, entry
);
736 static int net_slirp_init(VLANState
*vlan
, const char *model
,
737 const char *name
, int restricted
,
738 const char *vnetwork
, const char *vhost
,
739 const char *vhostname
, const char *tftp_export
,
740 const char *bootfile
, const char *vdhcp_start
,
741 const char *vnameserver
, const char *smb_export
,
742 const char *vsmbserver
)
744 /* default settings according to historic slirp */
745 struct in_addr net
= { .s_addr
= htonl(0x0a000200) }; /* 10.0.2.0 */
746 struct in_addr mask
= { .s_addr
= htonl(0xffffff00) }; /* 255.255.255.0 */
747 struct in_addr host
= { .s_addr
= htonl(0x0a000202) }; /* 10.0.2.2 */
748 struct in_addr dhcp
= { .s_addr
= htonl(0x0a00020f) }; /* 10.0.2.15 */
749 struct in_addr dns
= { .s_addr
= htonl(0x0a000203) }; /* 10.0.2.3 */
751 struct in_addr smbsrv
= { .s_addr
= 0 };
758 struct slirp_config_str
*config
;
761 tftp_export
= legacy_tftp_prefix
;
764 bootfile
= legacy_bootp_filename
;
768 if (get_str_sep(buf
, sizeof(buf
), &vnetwork
, '/') < 0) {
769 if (!inet_aton(vnetwork
, &net
)) {
772 addr
= ntohl(net
.s_addr
);
773 if (!(addr
& 0x80000000)) {
774 mask
.s_addr
= htonl(0xff000000); /* class A */
775 } else if ((addr
& 0xfff00000) == 0xac100000) {
776 mask
.s_addr
= htonl(0xfff00000); /* priv. 172.16.0.0/12 */
777 } else if ((addr
& 0xc0000000) == 0x80000000) {
778 mask
.s_addr
= htonl(0xffff0000); /* class B */
779 } else if ((addr
& 0xffff0000) == 0xc0a80000) {
780 mask
.s_addr
= htonl(0xffff0000); /* priv. 192.168.0.0/16 */
781 } else if ((addr
& 0xffff0000) == 0xc6120000) {
782 mask
.s_addr
= htonl(0xfffe0000); /* tests 198.18.0.0/15 */
783 } else if ((addr
& 0xe0000000) == 0xe0000000) {
784 mask
.s_addr
= htonl(0xffffff00); /* class C */
786 mask
.s_addr
= htonl(0xfffffff0); /* multicast/reserved */
789 if (!inet_aton(buf
, &net
)) {
792 shift
= strtol(vnetwork
, &end
, 10);
794 if (!inet_aton(vnetwork
, &mask
)) {
797 } else if (shift
< 4 || shift
> 32) {
800 mask
.s_addr
= htonl(0xffffffff << (32 - shift
));
803 net
.s_addr
&= mask
.s_addr
;
804 host
.s_addr
= net
.s_addr
| (htonl(0x0202) & ~mask
.s_addr
);
805 dhcp
.s_addr
= net
.s_addr
| (htonl(0x020f) & ~mask
.s_addr
);
806 dns
.s_addr
= net
.s_addr
| (htonl(0x0203) & ~mask
.s_addr
);
809 if (vhost
&& !inet_aton(vhost
, &host
)) {
812 if ((host
.s_addr
& mask
.s_addr
) != net
.s_addr
) {
816 if (vdhcp_start
&& !inet_aton(vdhcp_start
, &dhcp
)) {
819 if ((dhcp
.s_addr
& mask
.s_addr
) != net
.s_addr
||
820 dhcp
.s_addr
== host
.s_addr
|| dhcp
.s_addr
== dns
.s_addr
) {
824 if (vnameserver
&& !inet_aton(vnameserver
, &dns
)) {
827 if ((dns
.s_addr
& mask
.s_addr
) != net
.s_addr
||
828 dns
.s_addr
== host
.s_addr
) {
833 if (vsmbserver
&& !inet_aton(vsmbserver
, &smbsrv
)) {
838 s
= qemu_mallocz(sizeof(SlirpState
));
839 s
->slirp
= slirp_init(restricted
, net
, mask
, host
, vhostname
,
840 tftp_export
, bootfile
, dhcp
, dns
, s
);
841 QTAILQ_INSERT_TAIL(&slirp_stacks
, s
, entry
);
843 for (config
= slirp_configs
; config
; config
= config
->next
) {
844 if (config
->flags
& SLIRP_CFG_HOSTFWD
) {
845 if (slirp_hostfwd(s
, config
->str
,
846 config
->flags
& SLIRP_CFG_LEGACY
) < 0)
849 if (slirp_guestfwd(s
, config
->str
,
850 config
->flags
& SLIRP_CFG_LEGACY
) < 0)
856 smb_export
= legacy_smb_export
;
859 if (slirp_smb(s
, smb_export
, smbsrv
) < 0)
864 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, slirp_receive
, NULL
,
865 net_slirp_cleanup
, s
);
866 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
867 "net=%s, restricted=%c", inet_ntoa(net
), restricted
? 'y' : 'n');
871 static SlirpState
*slirp_lookup(Monitor
*mon
, const char *vlan
,
877 vc
= qemu_find_vlan_client_by_name(mon
, strtol(vlan
, NULL
, 0), stack
);
881 if (strcmp(vc
->model
, "user")) {
882 monitor_printf(mon
, "invalid device specified\n");
887 if (QTAILQ_EMPTY(&slirp_stacks
)) {
888 monitor_printf(mon
, "user mode network stack not in use\n");
891 return QTAILQ_FIRST(&slirp_stacks
);
895 void net_slirp_hostfwd_remove(Monitor
*mon
, const QDict
*qdict
)
897 struct in_addr host_addr
= { .s_addr
= INADDR_ANY
};
900 const char *src_str
, *p
;
904 const char *arg1
= qdict_get_str(qdict
, "arg1");
905 const char *arg2
= qdict_get_try_str(qdict
, "arg2");
906 const char *arg3
= qdict_get_try_str(qdict
, "arg3");
909 s
= slirp_lookup(mon
, arg1
, arg2
);
912 s
= slirp_lookup(mon
, NULL
, NULL
);
919 if (!src_str
|| !src_str
[0])
923 get_str_sep(buf
, sizeof(buf
), &p
, ':');
925 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
927 } else if (!strcmp(buf
, "udp")) {
933 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
936 if (buf
[0] != '\0' && !inet_aton(buf
, &host_addr
)) {
942 err
= slirp_remove_hostfwd(QTAILQ_FIRST(&slirp_stacks
)->slirp
, is_udp
,
943 host_addr
, host_port
);
945 monitor_printf(mon
, "host forwarding rule for %s %s\n", src_str
,
946 err
? "removed" : "not found");
950 monitor_printf(mon
, "invalid format\n");
953 static int slirp_hostfwd(SlirpState
*s
, const char *redir_str
,
956 struct in_addr host_addr
= { .s_addr
= INADDR_ANY
};
957 struct in_addr guest_addr
= { .s_addr
= 0 };
958 int host_port
, guest_port
;
965 if (!p
|| get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
968 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
970 } else if (!strcmp(buf
, "udp")) {
976 if (!legacy_format
) {
977 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
980 if (buf
[0] != '\0' && !inet_aton(buf
, &host_addr
)) {
985 if (get_str_sep(buf
, sizeof(buf
), &p
, legacy_format
? ':' : '-') < 0) {
988 host_port
= strtol(buf
, &end
, 0);
989 if (*end
!= '\0' || host_port
< 1 || host_port
> 65535) {
993 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
996 if (buf
[0] != '\0' && !inet_aton(buf
, &guest_addr
)) {
1000 guest_port
= strtol(p
, &end
, 0);
1001 if (*end
!= '\0' || guest_port
< 1 || guest_port
> 65535) {
1005 if (slirp_add_hostfwd(s
->slirp
, is_udp
, host_addr
, host_port
, guest_addr
,
1007 qemu_error("could not set up host forwarding rule '%s'\n",
1014 qemu_error("invalid host forwarding rule '%s'\n", redir_str
);
1018 void net_slirp_hostfwd_add(Monitor
*mon
, const QDict
*qdict
)
1020 const char *redir_str
;
1022 const char *arg1
= qdict_get_str(qdict
, "arg1");
1023 const char *arg2
= qdict_get_try_str(qdict
, "arg2");
1024 const char *arg3
= qdict_get_try_str(qdict
, "arg3");
1027 s
= slirp_lookup(mon
, arg1
, arg2
);
1030 s
= slirp_lookup(mon
, NULL
, NULL
);
1034 slirp_hostfwd(s
, redir_str
, 0);
1039 int net_slirp_redir(const char *redir_str
)
1041 struct slirp_config_str
*config
;
1043 if (QTAILQ_EMPTY(&slirp_stacks
)) {
1044 config
= qemu_malloc(sizeof(*config
));
1045 pstrcpy(config
->str
, sizeof(config
->str
), redir_str
);
1046 config
->flags
= SLIRP_CFG_HOSTFWD
| SLIRP_CFG_LEGACY
;
1047 config
->next
= slirp_configs
;
1048 slirp_configs
= config
;
1052 return slirp_hostfwd(QTAILQ_FIRST(&slirp_stacks
), redir_str
, 1);
1057 /* automatic user mode samba server configuration */
1058 static void slirp_smb_cleanup(SlirpState
*s
)
1062 if (s
->smb_dir
[0] != '\0') {
1063 snprintf(cmd
, sizeof(cmd
), "rm -rf %s", s
->smb_dir
);
1065 s
->smb_dir
[0] = '\0';
1069 static int slirp_smb(SlirpState
* s
, const char *exported_dir
,
1070 struct in_addr vserver_addr
)
1072 static int instance
;
1074 char smb_cmdline
[128];
1077 snprintf(s
->smb_dir
, sizeof(s
->smb_dir
), "/tmp/qemu-smb.%ld-%d",
1078 (long)getpid(), instance
++);
1079 if (mkdir(s
->smb_dir
, 0700) < 0) {
1080 qemu_error("could not create samba server dir '%s'\n", s
->smb_dir
);
1083 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", s
->smb_dir
, "smb.conf");
1085 f
= fopen(smb_conf
, "w");
1087 slirp_smb_cleanup(s
);
1088 qemu_error("could not create samba server configuration file '%s'\n",
1096 "socket address=127.0.0.1\n"
1097 "pid directory=%s\n"
1098 "lock directory=%s\n"
1099 "log file=%s/log.smbd\n"
1100 "smb passwd file=%s/smbpasswd\n"
1101 "security = share\n"
1115 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
1116 SMBD_COMMAND
, smb_conf
);
1118 if (slirp_add_exec(s
->slirp
, 0, smb_cmdline
, &vserver_addr
, 139) < 0) {
1119 slirp_smb_cleanup(s
);
1120 qemu_error("conflicting/invalid smbserver address\n");
1126 /* automatic user mode samba server configuration (legacy interface) */
1127 int net_slirp_smb(const char *exported_dir
)
1129 struct in_addr vserver_addr
= { .s_addr
= 0 };
1131 if (legacy_smb_export
) {
1132 fprintf(stderr
, "-smb given twice\n");
1135 legacy_smb_export
= exported_dir
;
1136 if (!QTAILQ_EMPTY(&slirp_stacks
)) {
1137 return slirp_smb(QTAILQ_FIRST(&slirp_stacks
), exported_dir
,
1143 #endif /* !defined(_WIN32) */
1146 CharDriverState
*hd
;
1147 struct in_addr server
;
1152 static int guestfwd_can_read(void *opaque
)
1154 struct GuestFwd
*fwd
= opaque
;
1155 return slirp_socket_can_recv(fwd
->slirp
, fwd
->server
, fwd
->port
);
1158 static void guestfwd_read(void *opaque
, const uint8_t *buf
, int size
)
1160 struct GuestFwd
*fwd
= opaque
;
1161 slirp_socket_recv(fwd
->slirp
, fwd
->server
, fwd
->port
, buf
, size
);
1164 static int slirp_guestfwd(SlirpState
*s
, const char *config_str
,
1167 struct in_addr server
= { .s_addr
= 0 };
1168 struct GuestFwd
*fwd
;
1175 if (legacy_format
) {
1176 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1180 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1183 if (strcmp(buf
, "tcp") && buf
[0] != '\0') {
1186 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
1189 if (buf
[0] != '\0' && !inet_aton(buf
, &server
)) {
1192 if (get_str_sep(buf
, sizeof(buf
), &p
, '-') < 0) {
1196 port
= strtol(buf
, &end
, 10);
1197 if (*end
!= '\0' || port
< 1 || port
> 65535) {
1201 fwd
= qemu_malloc(sizeof(struct GuestFwd
));
1202 snprintf(buf
, sizeof(buf
), "guestfwd.tcp:%d", port
);
1203 fwd
->hd
= qemu_chr_open(buf
, p
, NULL
);
1205 qemu_error("could not open guest forwarding device '%s'\n", buf
);
1210 if (slirp_add_exec(s
->slirp
, 3, fwd
->hd
, &server
, port
) < 0) {
1211 qemu_error("conflicting/invalid host:port in guest forwarding "
1212 "rule '%s'\n", config_str
);
1216 fwd
->server
= server
;
1218 fwd
->slirp
= s
->slirp
;
1220 qemu_chr_add_handlers(fwd
->hd
, guestfwd_can_read
, guestfwd_read
,
1225 qemu_error("invalid guest forwarding rule '%s'\n", config_str
);
1229 void do_info_usernet(Monitor
*mon
)
1233 QTAILQ_FOREACH(s
, &slirp_stacks
, entry
) {
1234 monitor_printf(mon
, "VLAN %d (%s):\n", s
->vc
->vlan
->id
, s
->vc
->name
);
1235 slirp_connection_info(s
->slirp
, mon
);
1239 #endif /* CONFIG_SLIRP */
1241 #if !defined(_WIN32)
1243 typedef struct TAPState
{
1244 VLANClientState
*vc
;
1246 char down_script
[1024];
1247 char down_script_arg
[128];
1249 unsigned int read_poll
: 1;
1250 unsigned int write_poll
: 1;
1253 static int launch_script(const char *setup_script
, const char *ifname
, int fd
);
1255 static int tap_can_send(void *opaque
);
1256 static void tap_send(void *opaque
);
1257 static void tap_writable(void *opaque
);
1259 static void tap_update_fd_handler(TAPState
*s
)
1261 qemu_set_fd_handler2(s
->fd
,
1262 s
->read_poll
? tap_can_send
: NULL
,
1263 s
->read_poll
? tap_send
: NULL
,
1264 s
->write_poll
? tap_writable
: NULL
,
1268 static void tap_read_poll(TAPState
*s
, int enable
)
1270 s
->read_poll
= !!enable
;
1271 tap_update_fd_handler(s
);
1274 static void tap_write_poll(TAPState
*s
, int enable
)
1276 s
->write_poll
= !!enable
;
1277 tap_update_fd_handler(s
);
1280 static void tap_writable(void *opaque
)
1282 TAPState
*s
= opaque
;
1284 tap_write_poll(s
, 0);
1286 qemu_flush_queued_packets(s
->vc
);
1289 static ssize_t
tap_receive_iov(VLANClientState
*vc
, const struct iovec
*iov
,
1292 TAPState
*s
= vc
->opaque
;
1296 len
= writev(s
->fd
, iov
, iovcnt
);
1297 } while (len
== -1 && errno
== EINTR
);
1299 if (len
== -1 && errno
== EAGAIN
) {
1300 tap_write_poll(s
, 1);
1307 static ssize_t
tap_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1309 TAPState
*s
= vc
->opaque
;
1313 len
= write(s
->fd
, buf
, size
);
1314 } while (len
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
1319 static int tap_can_send(void *opaque
)
1321 TAPState
*s
= opaque
;
1323 return qemu_can_send_packet(s
->vc
);
1327 static ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
1332 sbuf
.maxlen
= maxlen
;
1333 sbuf
.buf
= (char *)buf
;
1335 return getmsg(tapfd
, NULL
, &sbuf
, &f
) >= 0 ? sbuf
.len
: -1;
1338 static ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
1340 return read(tapfd
, buf
, maxlen
);
1344 static void tap_send_completed(VLANClientState
*vc
, ssize_t len
)
1346 TAPState
*s
= vc
->opaque
;
1347 tap_read_poll(s
, 1);
1350 static void tap_send(void *opaque
)
1352 TAPState
*s
= opaque
;
1356 size
= tap_read_packet(s
->fd
, s
->buf
, sizeof(s
->buf
));
1361 size
= qemu_send_packet_async(s
->vc
, s
->buf
, size
, tap_send_completed
);
1363 tap_read_poll(s
, 0);
1369 /* sndbuf should be set to a value lower than the tx queue
1370 * capacity of any destination network interface.
1371 * Ethernet NICs generally have txqueuelen=1000, so 1Mb is
1372 * a good default, given a 1500 byte MTU.
1374 #define TAP_DEFAULT_SNDBUF 1024*1024
1376 static int tap_set_sndbuf(TAPState
*s
, QemuOpts
*opts
)
1380 sndbuf
= qemu_opt_get_size(opts
, "sndbuf", TAP_DEFAULT_SNDBUF
);
1385 if (ioctl(s
->fd
, TUNSETSNDBUF
, &sndbuf
) == -1 && qemu_opt_get(opts
, "sndbuf")) {
1386 qemu_error("TUNSETSNDBUF ioctl failed: %s\n", strerror(errno
));
1392 static int tap_set_sndbuf(TAPState
*s
, QemuOpts
*opts
)
1396 #endif /* TUNSETSNDBUF */
1398 static void tap_cleanup(VLANClientState
*vc
)
1400 TAPState
*s
= vc
->opaque
;
1402 qemu_purge_queued_packets(vc
);
1404 if (s
->down_script
[0])
1405 launch_script(s
->down_script
, s
->down_script_arg
, s
->fd
);
1407 tap_read_poll(s
, 0);
1408 tap_write_poll(s
, 0);
1415 static TAPState
*net_tap_fd_init(VLANState
*vlan
,
1422 s
= qemu_mallocz(sizeof(TAPState
));
1424 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, tap_receive
,
1425 tap_receive_iov
, tap_cleanup
, s
);
1426 tap_read_poll(s
, 1);
1427 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "fd=%d", fd
);
1431 #if defined (CONFIG_BSD) || defined (__FreeBSD_kernel__)
1432 static int tap_open(char *ifname
, int ifname_size
)
1438 TFR(fd
= open("/dev/tap", O_RDWR
));
1440 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
1445 dev
= devname(s
.st_rdev
, S_IFCHR
);
1446 pstrcpy(ifname
, ifname_size
, dev
);
1448 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1451 #elif defined(__sun__)
1452 #define TUNNEWPPA (('T'<<16) | 0x0001)
1454 * Allocate TAP device, returns opened fd.
1455 * Stores dev name in the first arg(must be large enough).
1457 static int tap_alloc(char *dev
, size_t dev_size
)
1459 int tap_fd
, if_fd
, ppa
= -1;
1460 static int ip_fd
= 0;
1463 static int arp_fd
= 0;
1464 int ip_muxid
, arp_muxid
;
1465 struct strioctl strioc_if
, strioc_ppa
;
1466 int link_type
= I_PLINK
;;
1468 char actual_name
[32] = "";
1470 memset(&ifr
, 0x0, sizeof(ifr
));
1474 while( *ptr
&& !qemu_isdigit((int)*ptr
) ) ptr
++;
1478 /* Check if IP device was opened */
1482 TFR(ip_fd
= open("/dev/udp", O_RDWR
, 0));
1484 syslog(LOG_ERR
, "Can't open /dev/ip (actually /dev/udp)");
1488 TFR(tap_fd
= open("/dev/tap", O_RDWR
, 0));
1490 syslog(LOG_ERR
, "Can't open /dev/tap");
1494 /* Assign a new PPA and get its unit number. */
1495 strioc_ppa
.ic_cmd
= TUNNEWPPA
;
1496 strioc_ppa
.ic_timout
= 0;
1497 strioc_ppa
.ic_len
= sizeof(ppa
);
1498 strioc_ppa
.ic_dp
= (char *)&ppa
;
1499 if ((ppa
= ioctl (tap_fd
, I_STR
, &strioc_ppa
)) < 0)
1500 syslog (LOG_ERR
, "Can't assign new interface");
1502 TFR(if_fd
= open("/dev/tap", O_RDWR
, 0));
1504 syslog(LOG_ERR
, "Can't open /dev/tap (2)");
1507 if(ioctl(if_fd
, I_PUSH
, "ip") < 0){
1508 syslog(LOG_ERR
, "Can't push IP module");
1512 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) < 0)
1513 syslog(LOG_ERR
, "Can't get flags\n");
1515 snprintf (actual_name
, 32, "tap%d", ppa
);
1516 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
1519 /* Assign ppa according to the unit number returned by tun device */
1521 if (ioctl (if_fd
, SIOCSLIFNAME
, &ifr
) < 0)
1522 syslog (LOG_ERR
, "Can't set PPA %d", ppa
);
1523 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) <0)
1524 syslog (LOG_ERR
, "Can't get flags\n");
1525 /* Push arp module to if_fd */
1526 if (ioctl (if_fd
, I_PUSH
, "arp") < 0)
1527 syslog (LOG_ERR
, "Can't push ARP module (2)");
1529 /* Push arp module to ip_fd */
1530 if (ioctl (ip_fd
, I_POP
, NULL
) < 0)
1531 syslog (LOG_ERR
, "I_POP failed\n");
1532 if (ioctl (ip_fd
, I_PUSH
, "arp") < 0)
1533 syslog (LOG_ERR
, "Can't push ARP module (3)\n");
1535 TFR(arp_fd
= open ("/dev/tap", O_RDWR
, 0));
1537 syslog (LOG_ERR
, "Can't open %s\n", "/dev/tap");
1539 /* Set ifname to arp */
1540 strioc_if
.ic_cmd
= SIOCSLIFNAME
;
1541 strioc_if
.ic_timout
= 0;
1542 strioc_if
.ic_len
= sizeof(ifr
);
1543 strioc_if
.ic_dp
= (char *)&ifr
;
1544 if (ioctl(arp_fd
, I_STR
, &strioc_if
) < 0){
1545 syslog (LOG_ERR
, "Can't set ifname to arp\n");
1548 if((ip_muxid
= ioctl(ip_fd
, I_LINK
, if_fd
)) < 0){
1549 syslog(LOG_ERR
, "Can't link TAP device to IP");
1553 if ((arp_muxid
= ioctl (ip_fd
, link_type
, arp_fd
)) < 0)
1554 syslog (LOG_ERR
, "Can't link TAP device to ARP");
1558 memset(&ifr
, 0x0, sizeof(ifr
));
1559 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
1560 ifr
.lifr_ip_muxid
= ip_muxid
;
1561 ifr
.lifr_arp_muxid
= arp_muxid
;
1563 if (ioctl (ip_fd
, SIOCSLIFMUXID
, &ifr
) < 0)
1565 ioctl (ip_fd
, I_PUNLINK
, arp_muxid
);
1566 ioctl (ip_fd
, I_PUNLINK
, ip_muxid
);
1567 syslog (LOG_ERR
, "Can't set multiplexor id");
1570 snprintf(dev
, dev_size
, "tap%d", ppa
);
1574 static int tap_open(char *ifname
, int ifname_size
)
1578 if( (fd
= tap_alloc(dev
, sizeof(dev
))) < 0 ){
1579 fprintf(stderr
, "Cannot allocate TAP device\n");
1582 pstrcpy(ifname
, ifname_size
, dev
);
1583 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1586 #elif defined (_AIX)
1587 static int tap_open(char *ifname
, int ifname_size
)
1589 fprintf (stderr
, "no tap on AIX\n");
1593 static int tap_open(char *ifname
, int ifname_size
)
1598 TFR(fd
= open("/dev/net/tun", O_RDWR
));
1600 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1603 memset(&ifr
, 0, sizeof(ifr
));
1604 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
1605 if (ifname
[0] != '\0')
1606 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
1608 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
1609 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
1611 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1615 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
1616 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1621 static int launch_script(const char *setup_script
, const char *ifname
, int fd
)
1623 sigset_t oldmask
, mask
;
1629 sigaddset(&mask
, SIGCHLD
);
1630 sigprocmask(SIG_BLOCK
, &mask
, &oldmask
);
1632 /* try to launch network script */
1635 int open_max
= sysconf(_SC_OPEN_MAX
), i
;
1637 for (i
= 0; i
< open_max
; i
++) {
1638 if (i
!= STDIN_FILENO
&&
1639 i
!= STDOUT_FILENO
&&
1640 i
!= STDERR_FILENO
&&
1646 *parg
++ = (char *)setup_script
;
1647 *parg
++ = (char *)ifname
;
1649 execv(setup_script
, args
);
1651 } else if (pid
> 0) {
1652 while (waitpid(pid
, &status
, 0) != pid
) {
1655 sigprocmask(SIG_SETMASK
, &oldmask
, NULL
);
1657 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
1661 fprintf(stderr
, "%s: could not launch network script\n", setup_script
);
1665 static TAPState
*net_tap_init(VLANState
*vlan
, const char *model
,
1666 const char *name
, const char *ifname1
,
1667 const char *setup_script
, const char *down_script
)
1673 if (ifname1
!= NULL
)
1674 pstrcpy(ifname
, sizeof(ifname
), ifname1
);
1677 TFR(fd
= tap_open(ifname
, sizeof(ifname
)));
1681 if (!setup_script
|| !strcmp(setup_script
, "no"))
1683 if (setup_script
[0] != '\0' &&
1684 launch_script(setup_script
, ifname
, fd
)) {
1687 s
= net_tap_fd_init(vlan
, model
, name
, fd
);
1688 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1689 "ifname=%s,script=%s,downscript=%s",
1690 ifname
, setup_script
, down_script
);
1691 if (down_script
&& strcmp(down_script
, "no")) {
1692 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", down_script
);
1693 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
), "%s", ifname
);
1698 #endif /* !_WIN32 */
1700 #if defined(CONFIG_VDE)
1701 typedef struct VDEState
{
1702 VLANClientState
*vc
;
1706 static void vde_to_qemu(void *opaque
)
1708 VDEState
*s
= opaque
;
1712 size
= vde_recv(s
->vde
, (char *)buf
, sizeof(buf
), 0);
1714 qemu_send_packet(s
->vc
, buf
, size
);
1718 static ssize_t
vde_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1720 VDEState
*s
= vc
->opaque
;
1724 ret
= vde_send(s
->vde
, (const char *)buf
, size
, 0);
1725 } while (ret
< 0 && errno
== EINTR
);
1730 static void vde_cleanup(VLANClientState
*vc
)
1732 VDEState
*s
= vc
->opaque
;
1733 qemu_set_fd_handler(vde_datafd(s
->vde
), NULL
, NULL
, NULL
);
1738 static int net_vde_init(VLANState
*vlan
, const char *model
,
1739 const char *name
, const char *sock
,
1740 int port
, const char *group
, int mode
)
1743 char *init_group
= (char *)group
;
1744 char *init_sock
= (char *)sock
;
1746 struct vde_open_args args
= {
1748 .group
= init_group
,
1752 s
= qemu_mallocz(sizeof(VDEState
));
1753 s
->vde
= vde_open(init_sock
, (char *)"QEMU", &args
);
1758 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, vde_receive
,
1759 NULL
, vde_cleanup
, s
);
1760 qemu_set_fd_handler(vde_datafd(s
->vde
), vde_to_qemu
, NULL
, s
);
1761 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "sock=%s,fd=%d",
1762 sock
, vde_datafd(s
->vde
));
1767 /* network connection */
1768 typedef struct NetSocketState
{
1769 VLANClientState
*vc
;
1771 int state
; /* 0 = getting length, 1 = getting data */
1773 unsigned int packet_len
;
1775 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1778 typedef struct NetSocketListenState
{
1783 } NetSocketListenState
;
1785 /* XXX: we consider we can send the whole packet without blocking */
1786 static ssize_t
net_socket_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1788 NetSocketState
*s
= vc
->opaque
;
1792 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
1793 return send_all(s
->fd
, buf
, size
);
1796 static ssize_t
net_socket_receive_dgram(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1798 NetSocketState
*s
= vc
->opaque
;
1800 return sendto(s
->fd
, (const void *)buf
, size
, 0,
1801 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
1804 static void net_socket_send(void *opaque
)
1806 NetSocketState
*s
= opaque
;
1812 size
= recv(s
->fd
, (void *)buf1
, sizeof(buf1
), 0);
1814 err
= socket_error();
1815 if (err
!= EWOULDBLOCK
)
1817 } else if (size
== 0) {
1818 /* end of connection */
1820 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1826 /* reassemble a packet from the network */
1832 memcpy(s
->buf
+ s
->index
, buf
, l
);
1836 if (s
->index
== 4) {
1838 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
1844 l
= s
->packet_len
- s
->index
;
1847 if (s
->index
+ l
<= sizeof(s
->buf
)) {
1848 memcpy(s
->buf
+ s
->index
, buf
, l
);
1850 fprintf(stderr
, "serious error: oversized packet received,"
1851 "connection terminated.\n");
1859 if (s
->index
>= s
->packet_len
) {
1860 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
1869 static void net_socket_send_dgram(void *opaque
)
1871 NetSocketState
*s
= opaque
;
1874 size
= recv(s
->fd
, (void *)s
->buf
, sizeof(s
->buf
), 0);
1878 /* end of connection */
1879 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1882 qemu_send_packet(s
->vc
, s
->buf
, size
);
1885 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
1890 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
1891 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1892 inet_ntoa(mcastaddr
->sin_addr
),
1893 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
1897 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
1899 perror("socket(PF_INET, SOCK_DGRAM)");
1904 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
1905 (const char *)&val
, sizeof(val
));
1907 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1911 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
1917 /* Add host to multicast group */
1918 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
1919 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
1921 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
1922 (const char *)&imr
, sizeof(struct ip_mreq
));
1924 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1928 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1930 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
1931 (const char *)&val
, sizeof(val
));
1933 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1937 socket_set_nonblock(fd
);
1945 static void net_socket_cleanup(VLANClientState
*vc
)
1947 NetSocketState
*s
= vc
->opaque
;
1948 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1953 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
,
1956 int fd
, int is_connected
)
1958 struct sockaddr_in saddr
;
1960 socklen_t saddr_len
;
1963 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1964 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1965 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1969 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
1971 if (saddr
.sin_addr
.s_addr
==0) {
1972 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1976 /* clone dgram socket */
1977 newfd
= net_socket_mcast_create(&saddr
);
1979 /* error already reported by net_socket_mcast_create() */
1983 /* clone newfd to fd, close newfd */
1988 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1989 fd
, strerror(errno
));
1994 s
= qemu_mallocz(sizeof(NetSocketState
));
1997 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, net_socket_receive_dgram
,
1998 NULL
, net_socket_cleanup
, s
);
1999 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
2001 /* mcast: save bound address as dst */
2002 if (is_connected
) s
->dgram_dst
=saddr
;
2004 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2005 "socket: fd=%d (%s mcast=%s:%d)",
2006 fd
, is_connected
? "cloned" : "",
2007 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2011 static void net_socket_connect(void *opaque
)
2013 NetSocketState
*s
= opaque
;
2014 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
2017 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
,
2020 int fd
, int is_connected
)
2023 s
= qemu_mallocz(sizeof(NetSocketState
));
2025 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, net_socket_receive
,
2026 NULL
, net_socket_cleanup
, s
);
2027 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2028 "socket: fd=%d", fd
);
2030 net_socket_connect(s
);
2032 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
2037 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
,
2038 const char *model
, const char *name
,
2039 int fd
, int is_connected
)
2041 int so_type
= -1, optlen
=sizeof(so_type
);
2043 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
2044 (socklen_t
*)&optlen
)< 0) {
2045 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
2050 return net_socket_fd_init_dgram(vlan
, model
, name
, fd
, is_connected
);
2052 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
2054 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2055 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
2056 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
2061 static void net_socket_accept(void *opaque
)
2063 NetSocketListenState
*s
= opaque
;
2065 struct sockaddr_in saddr
;
2070 len
= sizeof(saddr
);
2071 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
2072 if (fd
< 0 && errno
!= EINTR
) {
2074 } else if (fd
>= 0) {
2078 s1
= net_socket_fd_init(s
->vlan
, s
->model
, s
->name
, fd
, 1);
2082 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
2083 "socket: connection from %s:%d",
2084 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2088 static int net_socket_listen_init(VLANState
*vlan
,
2091 const char *host_str
)
2093 NetSocketListenState
*s
;
2095 struct sockaddr_in saddr
;
2097 if (parse_host_port(&saddr
, host_str
) < 0)
2100 s
= qemu_mallocz(sizeof(NetSocketListenState
));
2102 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
2107 socket_set_nonblock(fd
);
2109 /* allow fast reuse */
2111 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
2113 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
2118 ret
= listen(fd
, 0);
2124 s
->model
= qemu_strdup(model
);
2125 s
->name
= name
? qemu_strdup(name
) : NULL
;
2127 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
2131 static int net_socket_connect_init(VLANState
*vlan
,
2134 const char *host_str
)
2137 int fd
, connected
, ret
, err
;
2138 struct sockaddr_in saddr
;
2140 if (parse_host_port(&saddr
, host_str
) < 0)
2143 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
2148 socket_set_nonblock(fd
);
2152 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
2154 err
= socket_error();
2155 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
2156 } else if (err
== EINPROGRESS
) {
2159 } else if (err
== WSAEALREADY
) {
2172 s
= net_socket_fd_init(vlan
, model
, name
, fd
, connected
);
2175 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2176 "socket: connect to %s:%d",
2177 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2181 static int net_socket_mcast_init(VLANState
*vlan
,
2184 const char *host_str
)
2188 struct sockaddr_in saddr
;
2190 if (parse_host_port(&saddr
, host_str
) < 0)
2194 fd
= net_socket_mcast_create(&saddr
);
2198 s
= net_socket_fd_init(vlan
, model
, name
, fd
, 0);
2202 s
->dgram_dst
= saddr
;
2204 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
2205 "socket: mcast=%s:%d",
2206 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
2211 typedef struct DumpState
{
2212 VLANClientState
*pcap_vc
;
2217 #define PCAP_MAGIC 0xa1b2c3d4
2219 struct pcap_file_hdr
{
2221 uint16_t version_major
;
2222 uint16_t version_minor
;
2229 struct pcap_sf_pkthdr
{
2238 static ssize_t
dump_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
2240 DumpState
*s
= vc
->opaque
;
2241 struct pcap_sf_pkthdr hdr
;
2245 /* Early return in case of previous error. */
2250 ts
= muldiv64(qemu_get_clock(vm_clock
), 1000000, get_ticks_per_sec());
2251 caplen
= size
> s
->pcap_caplen
? s
->pcap_caplen
: size
;
2253 hdr
.ts
.tv_sec
= ts
/ 1000000;
2254 hdr
.ts
.tv_usec
= ts
% 1000000;
2255 hdr
.caplen
= caplen
;
2257 if (write(s
->fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
) ||
2258 write(s
->fd
, buf
, caplen
) != caplen
) {
2259 qemu_log("-net dump write error - stop dump\n");
2267 static void net_dump_cleanup(VLANClientState
*vc
)
2269 DumpState
*s
= vc
->opaque
;
2275 static int net_dump_init(VLANState
*vlan
, const char *device
,
2276 const char *name
, const char *filename
, int len
)
2278 struct pcap_file_hdr hdr
;
2281 s
= qemu_malloc(sizeof(DumpState
));
2283 s
->fd
= open(filename
, O_CREAT
| O_WRONLY
| O_BINARY
, 0644);
2285 qemu_error("-net dump: can't open %s\n", filename
);
2289 s
->pcap_caplen
= len
;
2291 hdr
.magic
= PCAP_MAGIC
;
2292 hdr
.version_major
= 2;
2293 hdr
.version_minor
= 4;
2296 hdr
.snaplen
= s
->pcap_caplen
;
2299 if (write(s
->fd
, &hdr
, sizeof(hdr
)) < sizeof(hdr
)) {
2300 qemu_error("-net dump write error: %s\n", strerror(errno
));
2306 s
->pcap_vc
= qemu_new_vlan_client(vlan
, device
, name
, NULL
, dump_receive
, NULL
,
2307 net_dump_cleanup
, s
);
2308 snprintf(s
->pcap_vc
->info_str
, sizeof(s
->pcap_vc
->info_str
),
2309 "dump to %s (len=%d)", filename
, len
);
2313 /* find or alloc a new VLAN */
2314 VLANState
*qemu_find_vlan(int id
, int allocate
)
2318 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
2319 if (vlan
->id
== id
) {
2328 vlan
= qemu_mallocz(sizeof(VLANState
));
2330 QTAILQ_INIT(&vlan
->clients
);
2331 QTAILQ_INIT(&vlan
->send_queue
);
2333 QTAILQ_INSERT_TAIL(&vlans
, vlan
, next
);
2338 static int nic_get_free_idx(void)
2342 for (index
= 0; index
< MAX_NICS
; index
++)
2343 if (!nd_table
[index
].used
)
2348 int qemu_show_nic_models(const char *arg
, const char *const *models
)
2352 if (!arg
|| strcmp(arg
, "?"))
2355 fprintf(stderr
, "qemu: Supported NIC models: ");
2356 for (i
= 0 ; models
[i
]; i
++)
2357 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
2361 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
2363 const char *models
[2];
2368 if (qemu_show_nic_models(nd
->model
, models
))
2370 if (qemu_find_nic_model(nd
, models
, model
) < 0)
2374 int qemu_find_nic_model(NICInfo
*nd
, const char * const *models
,
2375 const char *default_model
)
2380 nd
->model
= qemu_strdup(default_model
);
2382 for (i
= 0 ; models
[i
]; i
++) {
2383 if (strcmp(nd
->model
, models
[i
]) == 0)
2387 qemu_error("qemu: Unsupported NIC model: %s\n", nd
->model
);
2391 static int net_handle_fd_param(Monitor
*mon
, const char *param
)
2393 if (!qemu_isdigit(param
[0])) {
2396 fd
= monitor_get_fd(mon
, param
);
2398 qemu_error("No file descriptor named %s found", param
);
2404 return strtol(param
, NULL
, 0);
2408 static int net_init_nic(QemuOpts
*opts
, Monitor
*mon
, const char *name
)
2413 idx
= nic_get_free_idx();
2414 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
2415 qemu_error("Too Many NICs\n");
2419 nd
= &nd_table
[idx
];
2421 memset(nd
, 0, sizeof(*nd
));
2423 nd
->vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
2426 nd
->name
= qemu_strdup(name
);
2428 if (qemu_opt_get(opts
, "model")) {
2429 nd
->model
= qemu_strdup(qemu_opt_get(opts
, "model"));
2431 if (qemu_opt_get(opts
, "addr")) {
2432 nd
->devaddr
= qemu_strdup(qemu_opt_get(opts
, "addr"));
2435 nd
->macaddr
[0] = 0x52;
2436 nd
->macaddr
[1] = 0x54;
2437 nd
->macaddr
[2] = 0x00;
2438 nd
->macaddr
[3] = 0x12;
2439 nd
->macaddr
[4] = 0x34;
2440 nd
->macaddr
[5] = 0x56 + idx
;
2442 if (qemu_opt_get(opts
, "macaddr") &&
2443 parse_macaddr(nd
->macaddr
, qemu_opt_get(opts
, "macaddr")) < 0) {
2444 qemu_error("invalid syntax for ethernet address\n");
2448 nd
->nvectors
= qemu_opt_get_number(opts
, "vectors", NIC_NVECTORS_UNSPECIFIED
);
2449 if (nd
->nvectors
!= NIC_NVECTORS_UNSPECIFIED
&&
2450 (nd
->nvectors
< 0 || nd
->nvectors
> 0x7ffffff)) {
2451 qemu_error("invalid # of vectors: %d\n", nd
->nvectors
);
2456 nd
->vlan
->nb_guest_devs
++;
2462 #if defined(CONFIG_SLIRP)
2463 static int net_init_slirp_configs(const char *name
, const char *value
, void *opaque
)
2465 struct slirp_config_str
*config
;
2467 if (strcmp(name
, "hostfwd") != 0 && strcmp(name
, "guestfwd") != 0) {
2471 config
= qemu_mallocz(sizeof(*config
));
2473 pstrcpy(config
->str
, sizeof(config
->str
), value
);
2475 if (!strcmp(name
, "hostfwd")) {
2476 config
->flags
= SLIRP_CFG_HOSTFWD
;
2479 config
->next
= slirp_configs
;
2480 slirp_configs
= config
;
2485 static int net_init_slirp(QemuOpts
*opts
, Monitor
*mon
, const char *name
)
2488 struct slirp_config_str
*config
;
2490 const char *vhostname
;
2491 const char *vdhcp_start
;
2492 const char *vnamesrv
;
2493 const char *tftp_export
;
2494 const char *bootfile
;
2495 const char *smb_export
;
2496 const char *vsmbsrv
;
2501 vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
2503 vhost
= qemu_opt_get(opts
, "host");
2504 vhostname
= qemu_opt_get(opts
, "hostname");
2505 vdhcp_start
= qemu_opt_get(opts
, "dhcpstart");
2506 vnamesrv
= qemu_opt_get(opts
, "dns");
2507 tftp_export
= qemu_opt_get(opts
, "tftp");
2508 bootfile
= qemu_opt_get(opts
, "bootfile");
2509 smb_export
= qemu_opt_get(opts
, "smb");
2510 vsmbsrv
= qemu_opt_get(opts
, "smbserver");
2512 if (qemu_opt_get(opts
, "ip")) {
2513 const char *ip
= qemu_opt_get(opts
, "ip");
2514 int l
= strlen(ip
) + strlen("/24") + 1;
2516 vnet
= qemu_malloc(l
);
2518 /* emulate legacy ip= parameter */
2519 pstrcpy(vnet
, l
, ip
);
2520 pstrcat(vnet
, l
, "/24");
2523 if (qemu_opt_get(opts
, "net")) {
2527 vnet
= qemu_strdup(qemu_opt_get(opts
, "net"));
2530 if (qemu_opt_get(opts
, "restrict") &&
2531 qemu_opt_get(opts
, "restrict")[0] == 'y') {
2535 qemu_opt_foreach(opts
, net_init_slirp_configs
, NULL
, 0);
2537 ret
= net_slirp_init(vlan
, "user", name
, restricted
, vnet
, vhost
,
2538 vhostname
, tftp_export
, bootfile
, vdhcp_start
,
2539 vnamesrv
, smb_export
, vsmbsrv
);
2541 while (slirp_configs
) {
2542 config
= slirp_configs
;
2543 slirp_configs
= config
->next
;
2548 vlan
->nb_host_devs
++;
2555 #endif /* CONFIG_SLIRP */
2558 static int net_init_tap_win32(QemuOpts
*opts
, Monitor
*mon
, const char *name
)
2563 vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
2565 ifname
= qemu_opt_get(opts
, "ifname");
2568 qemu_error("tap: no interface name\n");
2572 if (tap_win32_init(vlan
, "tap", name
, ifname
) == -1) {
2576 vlan
->nb_host_devs
++;
2580 #elif !defined(_AIX)
2581 static int net_init_tap(QemuOpts
*opts
, Monitor
*mon
, const char *name
)
2586 vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
2588 if (qemu_opt_get(opts
, "fd")) {
2591 if (qemu_opt_get(opts
, "ifname") ||
2592 qemu_opt_get(opts
, "script") ||
2593 qemu_opt_get(opts
, "downscript")) {
2594 qemu_error("ifname=, script= and downscript= is invalid with fd=\n");
2598 fd
= net_handle_fd_param(mon
, qemu_opt_get(opts
, "fd"));
2603 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
2605 s
= net_tap_fd_init(vlan
, "tap", name
, fd
);
2610 const char *ifname
, *script
, *downscript
;
2612 ifname
= qemu_opt_get(opts
, "ifname");
2613 script
= qemu_opt_get(opts
, "script");
2614 downscript
= qemu_opt_get(opts
, "downscript");
2617 script
= DEFAULT_NETWORK_SCRIPT
;
2620 downscript
= DEFAULT_NETWORK_DOWN_SCRIPT
;
2623 s
= net_tap_init(vlan
, "tap", name
, ifname
, script
, downscript
);
2630 if (tap_set_sndbuf(s
, opts
) < 0) {
2634 vlan
->nb_host_devs
++;
2640 static int net_init_socket(QemuOpts
*opts
, Monitor
*mon
, const char *name
)
2644 vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
2646 if (qemu_opt_get(opts
, "fd")) {
2649 if (qemu_opt_get(opts
, "listen") ||
2650 qemu_opt_get(opts
, "connect") ||
2651 qemu_opt_get(opts
, "mcast")) {
2652 qemu_error("listen=, connect= and mcast= is invalid with fd=\n");
2656 fd
= net_handle_fd_param(mon
, qemu_opt_get(opts
, "fd"));
2661 if (!net_socket_fd_init(vlan
, "socket", name
, fd
, 1)) {
2665 } else if (qemu_opt_get(opts
, "listen")) {
2668 if (qemu_opt_get(opts
, "fd") ||
2669 qemu_opt_get(opts
, "connect") ||
2670 qemu_opt_get(opts
, "mcast")) {
2671 qemu_error("fd=, connect= and mcast= is invalid with listen=\n");
2675 listen
= qemu_opt_get(opts
, "listen");
2677 if (net_socket_listen_init(vlan
, "socket", name
, listen
) == -1) {
2680 } else if (qemu_opt_get(opts
, "connect")) {
2681 const char *connect
;
2683 if (qemu_opt_get(opts
, "fd") ||
2684 qemu_opt_get(opts
, "listen") ||
2685 qemu_opt_get(opts
, "mcast")) {
2686 qemu_error("fd=, listen= and mcast= is invalid with connect=\n");
2690 connect
= qemu_opt_get(opts
, "connect");
2692 if (net_socket_connect_init(vlan
, "socket", name
, connect
) == -1) {
2695 } else if (qemu_opt_get(opts
, "mcast")) {
2698 if (qemu_opt_get(opts
, "fd") ||
2699 qemu_opt_get(opts
, "connect") ||
2700 qemu_opt_get(opts
, "listen")) {
2701 qemu_error("fd=, connect= and listen= is invalid with mcast=\n");
2705 mcast
= qemu_opt_get(opts
, "mcast");
2707 if (net_socket_mcast_init(vlan
, "socket", name
, mcast
) == -1) {
2711 qemu_error("-socket requires fd=, listen=, connect= or mcast=\n");
2715 vlan
->nb_host_devs
++;
2721 static int net_init_vde(QemuOpts
*opts
, Monitor
*mon
, const char *name
)
2728 vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
2730 sock
= qemu_opt_get(opts
, "sock");
2731 group
= qemu_opt_get(opts
, "group");
2733 port
= qemu_opt_get_number(opts
, "port", 0);
2734 mode
= qemu_opt_get_number(opts
, "mode", 0700);
2736 if (net_vde_init(vlan
, "vde", name
, sock
, port
, group
, mode
) == -1) {
2740 vlan
->nb_host_devs
++;
2746 static int net_init_dump(QemuOpts
*opts
, Monitor
*mon
, const char *name
)
2753 vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
2755 file
= qemu_opt_get(opts
, "file");
2757 snprintf(def_file
, sizeof(def_file
), "qemu-vlan%d.pcap", vlan
->id
);
2761 len
= qemu_opt_get_size(opts
, "len", 65536);
2763 return net_dump_init(vlan
, "dump", name
, file
, len
);
2766 #define NET_COMMON_PARAMS_DESC \
2769 .type = QEMU_OPT_STRING, \
2770 .help = "net client type (nic, tap etc.)", \
2773 .type = QEMU_OPT_NUMBER, \
2774 .help = "vlan number", \
2777 .type = QEMU_OPT_STRING, \
2778 .help = "identifier for monitor commands", \
2781 typedef int (*net_client_init_func
)(QemuOpts
*opts
,
2785 /* magic number, but compiler will warn if too small */
2786 #define NET_MAX_DESC 20
2790 net_client_init_func init
;
2791 QemuOptDesc desc
[NET_MAX_DESC
];
2792 } net_client_types
[] = {
2796 NET_COMMON_PARAMS_DESC
,
2797 { /* end of list */ }
2801 .init
= net_init_nic
,
2803 NET_COMMON_PARAMS_DESC
,
2806 .type
= QEMU_OPT_STRING
,
2807 .help
= "MAC address",
2810 .type
= QEMU_OPT_STRING
,
2811 .help
= "device model (e1000, rtl8139, virtio etc.)",
2814 .type
= QEMU_OPT_STRING
,
2815 .help
= "PCI device address",
2818 .type
= QEMU_OPT_NUMBER
,
2819 .help
= "number of MSI-x vectors, 0 to disable MSI-X",
2821 { /* end of list */ }
2826 .init
= net_init_slirp
,
2828 NET_COMMON_PARAMS_DESC
,
2831 .type
= QEMU_OPT_STRING
,
2832 .help
= "client hostname reported by the builtin DHCP server",
2835 .type
= QEMU_OPT_STRING
,
2836 .help
= "isolate the guest from the host (y|yes|n|no)",
2839 .type
= QEMU_OPT_STRING
,
2840 .help
= "legacy parameter, use net= instead",
2843 .type
= QEMU_OPT_STRING
,
2844 .help
= "IP address and optional netmask",
2847 .type
= QEMU_OPT_STRING
,
2848 .help
= "guest-visible address of the host",
2851 .type
= QEMU_OPT_STRING
,
2852 .help
= "root directory of the built-in TFTP server",
2855 .type
= QEMU_OPT_STRING
,
2856 .help
= "BOOTP filename, for use with tftp=",
2858 .name
= "dhcpstart",
2859 .type
= QEMU_OPT_STRING
,
2860 .help
= "the first of the 16 IPs the built-in DHCP server can assign",
2863 .type
= QEMU_OPT_STRING
,
2864 .help
= "guest-visible address of the virtual nameserver",
2867 .type
= QEMU_OPT_STRING
,
2868 .help
= "root directory of the built-in SMB server",
2870 .name
= "smbserver",
2871 .type
= QEMU_OPT_STRING
,
2872 .help
= "IP address of the built-in SMB server",
2875 .type
= QEMU_OPT_STRING
,
2876 .help
= "guest port number to forward incoming TCP or UDP connections",
2879 .type
= QEMU_OPT_STRING
,
2880 .help
= "IP address and port to forward guest TCP connections",
2882 { /* end of list */ }
2888 .init
= net_init_tap_win32
,
2890 NET_COMMON_PARAMS_DESC
,
2893 .type
= QEMU_OPT_STRING
,
2894 .help
= "interface name",
2896 { /* end of list */ }
2898 #elif !defined(_AIX)
2901 .init
= net_init_tap
,
2903 NET_COMMON_PARAMS_DESC
,
2906 .type
= QEMU_OPT_STRING
,
2907 .help
= "file descriptor of an already opened tap",
2910 .type
= QEMU_OPT_STRING
,
2911 .help
= "interface name",
2914 .type
= QEMU_OPT_STRING
,
2915 .help
= "script to initialize the interface",
2917 .name
= "downscript",
2918 .type
= QEMU_OPT_STRING
,
2919 .help
= "script to shut down the interface",
2923 .type
= QEMU_OPT_SIZE
,
2924 .help
= "send buffer limit"
2927 { /* end of list */ }
2932 .init
= net_init_socket
,
2934 NET_COMMON_PARAMS_DESC
,
2937 .type
= QEMU_OPT_STRING
,
2938 .help
= "file descriptor of an already opened socket",
2941 .type
= QEMU_OPT_STRING
,
2942 .help
= "port number, and optional hostname, to listen on",
2945 .type
= QEMU_OPT_STRING
,
2946 .help
= "port number, and optional hostname, to connect to",
2949 .type
= QEMU_OPT_STRING
,
2950 .help
= "UDP multicast address and port number",
2952 { /* end of list */ }
2957 .init
= net_init_vde
,
2959 NET_COMMON_PARAMS_DESC
,
2962 .type
= QEMU_OPT_STRING
,
2963 .help
= "socket path",
2966 .type
= QEMU_OPT_NUMBER
,
2967 .help
= "port number",
2970 .type
= QEMU_OPT_STRING
,
2971 .help
= "group owner of socket",
2974 .type
= QEMU_OPT_NUMBER
,
2975 .help
= "permissions for socket",
2977 { /* end of list */ }
2982 .init
= net_init_dump
,
2984 NET_COMMON_PARAMS_DESC
,
2987 .type
= QEMU_OPT_SIZE
,
2988 .help
= "per-packet size limit (64k default)",
2991 .type
= QEMU_OPT_STRING
,
2992 .help
= "dump file path (default is qemu-vlan0.pcap)",
2994 { /* end of list */ }
2997 { /* end of list */ }
3000 int net_client_init(Monitor
*mon
, QemuOpts
*opts
)
3006 type
= qemu_opt_get(opts
, "type");
3008 qemu_error("No type specified for -net\n");
3012 name
= qemu_opts_id(opts
);
3014 name
= qemu_opt_get(opts
, "name");
3017 for (i
= 0; net_client_types
[i
].type
!= NULL
; i
++) {
3018 if (!strcmp(net_client_types
[i
].type
, type
)) {
3019 if (qemu_opts_validate(opts
, &net_client_types
[i
].desc
[0]) == -1) {
3023 if (net_client_types
[i
].init
) {
3024 return net_client_types
[i
].init(opts
, mon
, name
);
3031 qemu_error("Invalid -net type '%s'\n", type
);
3035 void net_client_uninit(NICInfo
*nd
)
3038 nd
->vlan
->nb_guest_devs
--;
3042 qemu_free(nd
->model
);
3043 qemu_free(nd
->name
);
3044 qemu_free(nd
->devaddr
);
3049 static int net_host_check_device(const char *device
)
3052 const char *valid_param_list
[] = { "tap", "socket", "dump"
3060 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
3061 if (!strncmp(valid_param_list
[i
], device
,
3062 strlen(valid_param_list
[i
])))
3069 void net_host_device_add(Monitor
*mon
, const QDict
*qdict
)
3071 const char *device
= qdict_get_str(qdict
, "device");
3072 const char *opts_str
= qdict_get_try_str(qdict
, "opts");
3075 if (!net_host_check_device(device
)) {
3076 monitor_printf(mon
, "invalid host network device %s\n", device
);
3080 opts
= qemu_opts_parse(&qemu_net_opts
, opts_str
? opts_str
: "", NULL
);
3082 monitor_printf(mon
, "parsing network options '%s' failed\n",
3083 opts_str
? opts_str
: "");
3087 qemu_opt_set(opts
, "type", device
);
3089 if (net_client_init(mon
, opts
) < 0) {
3090 monitor_printf(mon
, "adding host network device %s failed\n", device
);
3094 void net_host_device_remove(Monitor
*mon
, const QDict
*qdict
)
3096 VLANClientState
*vc
;
3097 int vlan_id
= qdict_get_int(qdict
, "vlan_id");
3098 const char *device
= qdict_get_str(qdict
, "device");
3100 vc
= qemu_find_vlan_client_by_name(mon
, vlan_id
, device
);
3104 if (!net_host_check_device(vc
->model
)) {
3105 monitor_printf(mon
, "invalid host network device %s\n", device
);
3108 qemu_del_vlan_client(vc
);
3111 void net_set_boot_mask(int net_boot_mask
)
3115 /* Only the first four NICs may be bootable */
3116 net_boot_mask
= net_boot_mask
& 0xF;
3118 for (i
= 0; i
< nb_nics
; i
++) {
3119 if (net_boot_mask
& (1 << i
)) {
3120 nd_table
[i
].bootable
= 1;
3121 net_boot_mask
&= ~(1 << i
);
3125 if (net_boot_mask
) {
3126 fprintf(stderr
, "Cannot boot from non-existent NIC\n");
3131 void do_info_network(Monitor
*mon
)
3135 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
3136 VLANClientState
*vc
;
3138 monitor_printf(mon
, "VLAN %d devices:\n", vlan
->id
);
3140 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
3141 monitor_printf(mon
, " %s: %s\n", vc
->name
, vc
->info_str
);
3146 void do_set_link(Monitor
*mon
, const QDict
*qdict
)
3149 VLANClientState
*vc
= NULL
;
3150 const char *name
= qdict_get_str(qdict
, "name");
3151 const char *up_or_down
= qdict_get_str(qdict
, "up_or_down");
3153 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
3154 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
3155 if (strcmp(vc
->name
, name
) == 0) {
3163 monitor_printf(mon
, "could not find network device '%s'\n", name
);
3167 if (strcmp(up_or_down
, "up") == 0)
3169 else if (strcmp(up_or_down
, "down") == 0)
3172 monitor_printf(mon
, "invalid link status '%s'; only 'up' or 'down' "
3173 "valid\n", up_or_down
);
3175 if (vc
->link_status_changed
)
3176 vc
->link_status_changed(vc
);
3179 void net_cleanup(void)
3183 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
3184 VLANClientState
*vc
, *next_vc
;
3186 QTAILQ_FOREACH_SAFE(vc
, &vlan
->clients
, next
, next_vc
) {
3187 qemu_del_vlan_client(vc
);
3192 static void net_check_clients(void)
3196 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
3197 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
3199 if (vlan
->nb_guest_devs
== 0)
3200 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
3201 if (vlan
->nb_host_devs
== 0)
3203 "Warning: vlan %d is not connected to host network\n",
3208 static int net_init_client(QemuOpts
*opts
, void *dummy
)
3210 return net_client_init(NULL
, opts
);
3213 int net_init_clients(void)
3215 if (QTAILQ_EMPTY(&qemu_net_opts
.head
)) {
3216 /* if no clients, we use a default config */
3217 qemu_opts_set(&qemu_net_opts
, NULL
, "type", "nic");
3219 qemu_opts_set(&qemu_net_opts
, NULL
, "type", "user");
3223 QTAILQ_INIT(&vlans
);
3225 if (qemu_opts_foreach(&qemu_net_opts
, net_init_client
, NULL
, 1) == -1) {
3229 net_check_clients();
3234 int net_client_parse(QemuOptsList
*opts_list
, const char *optarg
)
3236 #if defined(CONFIG_SLIRP)
3237 /* handle legacy -net channel,port:chr */
3238 if (!strcmp(opts_list
->name
, "net") &&
3239 !strncmp(optarg
, "channel,", strlen("channel,"))) {
3242 optarg
+= strlen("channel,");
3244 if (QTAILQ_EMPTY(&slirp_stacks
)) {
3245 struct slirp_config_str
*config
;
3247 config
= qemu_malloc(sizeof(*config
));
3248 pstrcpy(config
->str
, sizeof(config
->str
), optarg
);
3249 config
->flags
= SLIRP_CFG_LEGACY
;
3250 config
->next
= slirp_configs
;
3251 slirp_configs
= config
;
3254 ret
= slirp_guestfwd(QTAILQ_FIRST(&slirp_stacks
), optarg
, 1);
3260 if (!qemu_opts_parse(opts_list
, optarg
, "type")) {