4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
32 /* Needed early for HOST_BSD etc. */
33 #include "config-host.h"
36 #include <sys/times.h>
40 #include <sys/ioctl.h>
41 #include <sys/resource.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
46 #include <net/if_tap.h>
49 #include <linux/if_tun.h>
51 #include <arpa/inet.h>
54 #include <sys/select.h>
57 #if defined(__FreeBSD__) || defined(__DragonFly__)
62 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
63 #include <freebsd/stdlib.h>
68 #include <linux/rtc.h>
70 /* For the benefit of older linux systems which don't supply it,
71 we use a local copy of hpet.h. */
72 /* #include <linux/hpet.h> */
75 #include <linux/ppdev.h>
76 #include <linux/parport.h>
80 #include <sys/ethernet.h>
81 #include <sys/sockio.h>
82 #include <netinet/arp.h>
83 #include <netinet/in.h>
84 #include <netinet/in_systm.h>
85 #include <netinet/ip.h>
86 #include <netinet/ip_icmp.h> // must come after ip.h
87 #include <netinet/udp.h>
88 #include <netinet/tcp.h>
96 #if defined(__OpenBSD__)
100 #if defined(CONFIG_VDE)
101 #include <libvdeplug.h>
107 #include <sys/timeb.h>
108 #include <mmsystem.h>
109 #define getopt_long_only getopt_long
110 #define memalign(align, size) malloc(size)
113 #include "qemu-common.h"
117 #include "qemu-timer.h"
118 #include "qemu-char.h"
119 #include "audio/audio.h"
120 #include "qemu_socket.h"
121 #include "qemu-log.h"
123 #if defined(CONFIG_SLIRP)
124 #include "libslirp.h"
128 static VLANState
*first_vlan
;
130 /***********************************************************/
131 /* network device redirectors */
133 #if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
134 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
138 for(i
=0;i
<size
;i
+=16) {
142 fprintf(f
, "%08x ", i
);
145 fprintf(f
, " %02x", buf
[i
+j
]);
152 if (c
< ' ' || c
> '~')
161 static int parse_macaddr(uint8_t *macaddr
, const char *p
)
168 offset
= strtol(p
, &last_char
, 0);
169 if (0 == errno
&& '\0' == *last_char
&&
170 offset
>= 0 && offset
<= 0xFFFFFF) {
171 macaddr
[3] = (offset
& 0xFF0000) >> 16;
172 macaddr
[4] = (offset
& 0xFF00) >> 8;
173 macaddr
[5] = offset
& 0xFF;
176 for(i
= 0; i
< 6; i
++) {
177 macaddr
[i
] = strtol(p
, (char **)&p
, 16);
182 if (*p
!= ':' && *p
!= '-')
193 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
204 if (len
> buf_size
- 1)
213 int parse_host_src_port(struct sockaddr_in
*haddr
,
214 struct sockaddr_in
*saddr
,
215 const char *input_str
)
217 char *str
= strdup(input_str
);
218 char *host_str
= str
;
220 const char *src_str2
;
224 * Chop off any extra arguments at the end of the string which
225 * would start with a comma, then fill in the src port information
226 * if it was provided else use the "any address" and "any port".
228 if ((ptr
= strchr(str
,',')))
231 if ((src_str
= strchr(input_str
,'@'))) {
236 if (parse_host_port(haddr
, host_str
) < 0)
240 if (!src_str
|| *src_str
== '\0')
243 if (parse_host_port(saddr
, src_str2
) < 0)
254 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
262 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
264 saddr
->sin_family
= AF_INET
;
265 if (buf
[0] == '\0') {
266 saddr
->sin_addr
.s_addr
= 0;
268 if (qemu_isdigit(buf
[0])) {
269 if (!inet_aton(buf
, &saddr
->sin_addr
))
272 if ((he
= gethostbyname(buf
)) == NULL
)
274 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
277 port
= strtol(p
, (char **)&r
, 0);
280 saddr
->sin_port
= htons(port
);
284 #if !defined(_WIN32) && 0
285 static int parse_unix_path(struct sockaddr_un
*uaddr
, const char *str
)
290 len
= MIN(108, strlen(str
));
291 p
= strchr(str
, ',');
293 len
= MIN(len
, p
- str
);
295 memset(uaddr
, 0, sizeof(*uaddr
));
297 uaddr
->sun_family
= AF_UNIX
;
298 memcpy(uaddr
->sun_path
, str
, len
);
304 void qemu_format_nic_info_str(VLANClientState
*vc
, uint8_t macaddr
[6])
306 snprintf(vc
->info_str
, sizeof(vc
->info_str
),
307 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
309 macaddr
[0], macaddr
[1], macaddr
[2],
310 macaddr
[3], macaddr
[4], macaddr
[5]);
313 static char *assign_name(VLANClientState
*vc1
, const char *model
)
319 for (vlan
= first_vlan
; vlan
; vlan
= vlan
->next
) {
322 for (vc
= vlan
->first_client
; vc
; vc
= vc
->next
)
323 if (vc
!= vc1
&& strcmp(vc
->model
, model
) == 0)
327 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
332 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
335 NetCanReceive
*can_receive
,
337 NetReceiveIOV
*receive_iov
,
341 VLANClientState
*vc
, **pvc
;
342 vc
= qemu_mallocz(sizeof(VLANClientState
));
343 vc
->model
= strdup(model
);
345 vc
->name
= strdup(name
);
347 vc
->name
= assign_name(vc
, model
);
348 vc
->can_receive
= can_receive
;
349 vc
->receive
= receive
;
350 vc
->receive_iov
= receive_iov
;
351 vc
->cleanup
= cleanup
;
356 pvc
= &vlan
->first_client
;
363 void qemu_del_vlan_client(VLANClientState
*vc
)
365 VLANClientState
**pvc
= &vc
->vlan
->first_client
;
381 VLANClientState
*qemu_find_vlan_client(VLANState
*vlan
, void *opaque
)
383 VLANClientState
**pvc
= &vlan
->first_client
;
386 if ((*pvc
)->opaque
== opaque
)
394 int qemu_can_send_packet(VLANClientState
*sender
)
396 VLANState
*vlan
= sender
->vlan
;
399 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
404 /* no can_receive() handler, they can always receive */
405 if (!vc
->can_receive
|| vc
->can_receive(vc
)) {
413 qemu_deliver_packet(VLANClientState
*sender
, const uint8_t *buf
, int size
)
418 sender
->vlan
->delivering
= 1;
420 for (vc
= sender
->vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
432 len
= vc
->receive(vc
, buf
, size
);
434 ret
= (ret
>= 0) ? ret
: len
;
437 sender
->vlan
->delivering
= 0;
442 void qemu_flush_queued_packets(VLANClientState
*vc
)
446 while ((packet
= vc
->vlan
->send_queue
) != NULL
) {
449 vc
->vlan
->send_queue
= packet
->next
;
451 ret
= qemu_deliver_packet(packet
->sender
, packet
->data
, packet
->size
);
452 if (ret
== 0 && packet
->sent_cb
!= NULL
) {
453 packet
->next
= vc
->vlan
->send_queue
;
454 vc
->vlan
->send_queue
= packet
;
459 packet
->sent_cb(packet
->sender
);
465 static void qemu_enqueue_packet(VLANClientState
*sender
,
466 const uint8_t *buf
, int size
,
467 NetPacketSent
*sent_cb
)
471 packet
= qemu_malloc(sizeof(VLANPacket
) + size
);
472 packet
->next
= sender
->vlan
->send_queue
;
473 packet
->sender
= sender
;
475 packet
->sent_cb
= sent_cb
;
476 memcpy(packet
->data
, buf
, size
);
477 sender
->vlan
->send_queue
= packet
;
480 ssize_t
qemu_send_packet_async(VLANClientState
*sender
,
481 const uint8_t *buf
, int size
,
482 NetPacketSent
*sent_cb
)
486 if (sender
->link_down
) {
491 printf("vlan %d send:\n", sender
->vlan
->id
);
492 hex_dump(stdout
, buf
, size
);
495 if (sender
->vlan
->delivering
) {
496 qemu_enqueue_packet(sender
, buf
, size
, NULL
);
500 ret
= qemu_deliver_packet(sender
, buf
, size
);
501 if (ret
== 0 && sent_cb
!= NULL
) {
502 qemu_enqueue_packet(sender
, buf
, size
, sent_cb
);
506 qemu_flush_queued_packets(sender
);
511 void qemu_send_packet(VLANClientState
*vc
, const uint8_t *buf
, int size
)
513 qemu_send_packet_async(vc
, buf
, size
, NULL
);
516 static ssize_t
vc_sendv_compat(VLANClientState
*vc
, const struct iovec
*iov
,
519 uint8_t buffer
[4096];
523 for (i
= 0; i
< iovcnt
; i
++) {
526 len
= MIN(sizeof(buffer
) - offset
, iov
[i
].iov_len
);
527 memcpy(buffer
+ offset
, iov
[i
].iov_base
, len
);
531 return vc
->receive(vc
, buffer
, offset
);
534 static ssize_t
calc_iov_length(const struct iovec
*iov
, int iovcnt
)
539 for (i
= 0; i
< iovcnt
; i
++)
540 offset
+= iov
[i
].iov_len
;
544 static int qemu_deliver_packet_iov(VLANClientState
*sender
,
545 const struct iovec
*iov
, int iovcnt
)
550 sender
->vlan
->delivering
= 1;
552 for (vc
= sender
->vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
560 ret
= calc_iov_length(iov
, iovcnt
);
564 if (vc
->receive_iov
) {
565 len
= vc
->receive_iov(vc
, iov
, iovcnt
);
567 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
570 ret
= (ret
>= 0) ? ret
: len
;
573 sender
->vlan
->delivering
= 0;
578 static ssize_t
qemu_enqueue_packet_iov(VLANClientState
*sender
,
579 const struct iovec
*iov
, int iovcnt
,
580 NetPacketSent
*sent_cb
)
586 max_len
= calc_iov_length(iov
, iovcnt
);
588 packet
= qemu_malloc(sizeof(VLANPacket
) + max_len
);
589 packet
->next
= sender
->vlan
->send_queue
;
590 packet
->sender
= sender
;
591 packet
->sent_cb
= sent_cb
;
594 for (i
= 0; i
< iovcnt
; i
++) {
595 size_t len
= iov
[i
].iov_len
;
597 memcpy(packet
->data
+ packet
->size
, iov
[i
].iov_base
, len
);
601 sender
->vlan
->send_queue
= packet
;
606 ssize_t
qemu_sendv_packet_async(VLANClientState
*sender
,
607 const struct iovec
*iov
, int iovcnt
,
608 NetPacketSent
*sent_cb
)
612 if (sender
->link_down
) {
613 return calc_iov_length(iov
, iovcnt
);
616 if (sender
->vlan
->delivering
) {
617 return qemu_enqueue_packet_iov(sender
, iov
, iovcnt
, NULL
);
620 ret
= qemu_deliver_packet_iov(sender
, iov
, iovcnt
);
621 if (ret
== 0 && sent_cb
!= NULL
) {
622 qemu_enqueue_packet_iov(sender
, iov
, iovcnt
, sent_cb
);
626 qemu_flush_queued_packets(sender
);
632 qemu_sendv_packet(VLANClientState
*vc
, const struct iovec
*iov
, int iovcnt
)
634 return qemu_sendv_packet_async(vc
, iov
, iovcnt
, NULL
);
637 static void config_error(Monitor
*mon
, const char *fmt
, ...)
643 monitor_vprintf(mon
, fmt
, ap
);
645 fprintf(stderr
, "qemu: ");
646 vfprintf(stderr
, fmt
, ap
);
652 #if defined(CONFIG_SLIRP)
654 /* slirp network adapter */
656 struct slirp_config_str
{
657 struct slirp_config_str
*next
;
661 static int slirp_inited
;
662 static struct slirp_config_str
*slirp_redirs
;
664 static const char *slirp_smb_export
;
666 static VLANClientState
*slirp_vc
;
669 static void slirp_smb(const char *exported_dir
);
671 static void slirp_redirection(Monitor
*mon
, const char *redir_str
);
673 int slirp_can_output(void)
675 return !slirp_vc
|| qemu_can_send_packet(slirp_vc
);
678 void slirp_output(const uint8_t *pkt
, int pkt_len
)
681 printf("slirp output:\n");
682 hex_dump(stdout
, pkt
, pkt_len
);
686 qemu_send_packet(slirp_vc
, pkt
, pkt_len
);
689 int slirp_is_inited(void)
694 static ssize_t
slirp_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
697 printf("slirp input:\n");
698 hex_dump(stdout
, buf
, size
);
700 slirp_input(buf
, size
);
704 static int slirp_in_use
;
706 static void net_slirp_cleanup(VLANClientState
*vc
)
711 static int net_slirp_init(VLANState
*vlan
, const char *model
, const char *name
,
712 int restricted
, const char *ip
)
715 /* slirp only supports a single instance so far */
720 slirp_init(restricted
, ip
);
722 while (slirp_redirs
) {
723 struct slirp_config_str
*config
= slirp_redirs
;
725 slirp_redirection(NULL
, config
->str
);
726 slirp_redirs
= config
->next
;
730 if (slirp_smb_export
) {
731 slirp_smb(slirp_smb_export
);
736 slirp_vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, slirp_receive
,
737 NULL
, net_slirp_cleanup
, NULL
);
738 slirp_vc
->info_str
[0] = '\0';
743 static void net_slirp_redir_print(void *opaque
, int is_udp
,
744 struct in_addr
*laddr
, u_int lport
,
745 struct in_addr
*faddr
, u_int fport
)
747 Monitor
*mon
= (Monitor
*)opaque
;
752 h_addr
= ntohl(faddr
->s_addr
);
753 g_addr
= ntohl(laddr
->s_addr
);
755 monitor_printf(mon
, " %s |", is_udp
? "udp" : "tcp" );
756 snprintf(buf
, 15, "%d.%d.%d.%d", (h_addr
>> 24) & 0xff,
757 (h_addr
>> 16) & 0xff,
758 (h_addr
>> 8) & 0xff,
760 monitor_printf(mon
, " %15s |", buf
);
761 monitor_printf(mon
, " %5d |", fport
);
763 snprintf(buf
, 15, "%d.%d.%d.%d", (g_addr
>> 24) & 0xff,
764 (g_addr
>> 16) & 0xff,
765 (g_addr
>> 8) & 0xff,
767 monitor_printf(mon
, " %15s |", buf
);
768 monitor_printf(mon
, " %5d\n", lport
);
772 static void net_slirp_redir_list(Monitor
*mon
)
777 monitor_printf(mon
, " Prot | Host Addr | HPort | Guest Addr | GPort\n");
778 monitor_printf(mon
, " | | | | \n");
779 slirp_redir_loop(net_slirp_redir_print
, mon
);
782 static void net_slirp_redir_rm(Monitor
*mon
, const char *port_str
)
786 const char *p
= port_str
;
793 if (!port_str
|| !port_str
[0])
796 get_str_sep(buf
, sizeof(buf
), &p
, ':');
798 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
800 } else if (!strcmp(buf
, "udp")) {
808 n
= slirp_redir_rm(is_udp
, host_port
);
810 monitor_printf(mon
, "removed %d redirections to %s port %d\n", n
,
811 is_udp
? "udp" : "tcp", host_port
);
815 monitor_printf(mon
, "invalid format\n");
818 static void slirp_redirection(Monitor
*mon
, const char *redir_str
)
820 struct in_addr guest_addr
;
821 int host_port
, guest_port
;
827 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
830 if (!strcmp(buf
, "tcp") || buf
[0] == '\0') {
832 } else if (!strcmp(buf
, "udp")) {
838 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
841 host_port
= strtol(buf
, &r
, 0);
846 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0) {
849 if (buf
[0] == '\0') {
850 pstrcpy(buf
, sizeof(buf
), "10.0.2.15");
852 if (!inet_aton(buf
, &guest_addr
)) {
856 guest_port
= strtol(p
, &r
, 0);
861 if (slirp_redir(is_udp
, host_port
, guest_addr
, guest_port
) < 0) {
862 config_error(mon
, "could not set up redirection '%s'\n", redir_str
);
867 config_error(mon
, "invalid redirection format '%s'\n", redir_str
);
870 void net_slirp_redir(Monitor
*mon
, const char *redir_str
, const char *redir_opt2
)
872 struct slirp_config_str
*config
;
876 monitor_printf(mon
, "user mode network stack not in use\n");
878 config
= qemu_malloc(sizeof(*config
));
879 config
->str
= redir_str
;
880 config
->next
= slirp_redirs
;
881 slirp_redirs
= config
;
886 if (!strcmp(redir_str
, "remove")) {
887 net_slirp_redir_rm(mon
, redir_opt2
);
891 if (!strcmp(redir_str
, "list")) {
892 net_slirp_redir_list(mon
);
896 slirp_redirection(mon
, redir_str
);
901 static char smb_dir
[1024];
903 static void erase_dir(char *dir_name
)
909 /* erase all the files in the directory */
910 if ((d
= opendir(dir_name
)) != NULL
) {
915 if (strcmp(de
->d_name
, ".") != 0 &&
916 strcmp(de
->d_name
, "..") != 0) {
917 snprintf(filename
, sizeof(filename
), "%s/%s",
918 smb_dir
, de
->d_name
);
919 if (unlink(filename
) != 0) /* is it a directory? */
928 /* automatic user mode samba server configuration */
929 static void smb_exit(void)
934 static void slirp_smb(const char *exported_dir
)
937 char smb_cmdline
[1024];
940 /* XXX: better tmp dir construction */
941 snprintf(smb_dir
, sizeof(smb_dir
), "/tmp/qemu-smb.%ld", (long)getpid());
942 if (mkdir(smb_dir
, 0700) < 0) {
943 fprintf(stderr
, "qemu: could not create samba server dir '%s'\n", smb_dir
);
946 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", smb_dir
, "smb.conf");
948 f
= fopen(smb_conf
, "w");
950 fprintf(stderr
, "qemu: could not create samba server configuration file '%s'\n", smb_conf
);
957 "socket address=127.0.0.1\n"
959 "lock directory=%s\n"
960 "log file=%s/log.smbd\n"
961 "smb passwd file=%s/smbpasswd\n"
977 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
978 SMBD_COMMAND
, smb_conf
);
980 slirp_add_exec(0, smb_cmdline
, 4, 139);
983 /* automatic user mode samba server configuration */
984 void net_slirp_smb(const char *exported_dir
)
986 if (slirp_smb_export
) {
987 fprintf(stderr
, "-smb given twice\n");
990 slirp_smb_export
= exported_dir
;
992 slirp_smb(exported_dir
);
996 #endif /* !defined(_WIN32) */
998 void do_info_slirp(Monitor
*mon
)
1004 CharDriverState
*hd
;
1008 static int vmchannel_can_read(void *opaque
)
1010 struct VMChannel
*vmc
= (struct VMChannel
*)opaque
;
1011 return slirp_socket_can_recv(4, vmc
->port
);
1014 static void vmchannel_read(void *opaque
, const uint8_t *buf
, int size
)
1016 struct VMChannel
*vmc
= (struct VMChannel
*)opaque
;
1017 slirp_socket_recv(4, vmc
->port
, buf
, size
);
1020 #endif /* CONFIG_SLIRP */
1022 #if !defined(_WIN32)
1024 typedef struct TAPState
{
1025 VLANClientState
*vc
;
1027 char down_script
[1024];
1028 char down_script_arg
[128];
1032 static int launch_script(const char *setup_script
, const char *ifname
, int fd
);
1034 static ssize_t
tap_receive_iov(VLANClientState
*vc
, const struct iovec
*iov
,
1037 TAPState
*s
= vc
->opaque
;
1041 len
= writev(s
->fd
, iov
, iovcnt
);
1042 } while (len
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
1047 static ssize_t
tap_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1049 TAPState
*s
= vc
->opaque
;
1053 len
= write(s
->fd
, buf
, size
);
1054 } while (len
== -1 && (errno
== EINTR
|| errno
== EAGAIN
));
1059 static int tap_can_send(void *opaque
)
1061 TAPState
*s
= opaque
;
1063 return qemu_can_send_packet(s
->vc
);
1067 static ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
1072 sbuf
.maxlen
= maxlen
;
1073 sbuf
.buf
= (char *)buf
;
1075 return getmsg(tapfd
, NULL
, &sbuf
, &f
) >= 0 ? sbuf
.len
: -1;
1078 static ssize_t
tap_read_packet(int tapfd
, uint8_t *buf
, int maxlen
)
1080 return read(tapfd
, buf
, maxlen
);
1084 static void tap_send(void *opaque
);
1086 static void tap_send_completed(VLANClientState
*vc
)
1088 TAPState
*s
= vc
->opaque
;
1090 qemu_set_fd_handler2(s
->fd
, tap_can_send
, tap_send
, NULL
, s
);
1093 static void tap_send(void *opaque
)
1095 TAPState
*s
= opaque
;
1099 size
= tap_read_packet(s
->fd
, s
->buf
, sizeof(s
->buf
));
1104 size
= qemu_send_packet_async(s
->vc
, s
->buf
, size
, tap_send_completed
);
1106 qemu_set_fd_handler2(s
->fd
, NULL
, NULL
, NULL
, NULL
);
1111 static void tap_cleanup(VLANClientState
*vc
)
1113 TAPState
*s
= vc
->opaque
;
1115 if (s
->down_script
[0])
1116 launch_script(s
->down_script
, s
->down_script_arg
, s
->fd
);
1118 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1125 static TAPState
*net_tap_fd_init(VLANState
*vlan
,
1132 s
= qemu_mallocz(sizeof(TAPState
));
1134 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, tap_receive
,
1135 tap_receive_iov
, tap_cleanup
, s
);
1136 qemu_set_fd_handler2(s
->fd
, tap_can_send
, tap_send
, NULL
, s
);
1137 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "fd=%d", fd
);
1141 #if defined (HOST_BSD) || defined (__FreeBSD_kernel__)
1142 static int tap_open(char *ifname
, int ifname_size
)
1148 TFR(fd
= open("/dev/tap", O_RDWR
));
1150 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
1155 dev
= devname(s
.st_rdev
, S_IFCHR
);
1156 pstrcpy(ifname
, ifname_size
, dev
);
1158 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1161 #elif defined(__sun__)
1162 #define TUNNEWPPA (('T'<<16) | 0x0001)
1164 * Allocate TAP device, returns opened fd.
1165 * Stores dev name in the first arg(must be large enough).
1167 static int tap_alloc(char *dev
, size_t dev_size
)
1169 int tap_fd
, if_fd
, ppa
= -1;
1170 static int ip_fd
= 0;
1173 static int arp_fd
= 0;
1174 int ip_muxid
, arp_muxid
;
1175 struct strioctl strioc_if
, strioc_ppa
;
1176 int link_type
= I_PLINK
;;
1178 char actual_name
[32] = "";
1180 memset(&ifr
, 0x0, sizeof(ifr
));
1184 while( *ptr
&& !qemu_isdigit((int)*ptr
) ) ptr
++;
1188 /* Check if IP device was opened */
1192 TFR(ip_fd
= open("/dev/udp", O_RDWR
, 0));
1194 syslog(LOG_ERR
, "Can't open /dev/ip (actually /dev/udp)");
1198 TFR(tap_fd
= open("/dev/tap", O_RDWR
, 0));
1200 syslog(LOG_ERR
, "Can't open /dev/tap");
1204 /* Assign a new PPA and get its unit number. */
1205 strioc_ppa
.ic_cmd
= TUNNEWPPA
;
1206 strioc_ppa
.ic_timout
= 0;
1207 strioc_ppa
.ic_len
= sizeof(ppa
);
1208 strioc_ppa
.ic_dp
= (char *)&ppa
;
1209 if ((ppa
= ioctl (tap_fd
, I_STR
, &strioc_ppa
)) < 0)
1210 syslog (LOG_ERR
, "Can't assign new interface");
1212 TFR(if_fd
= open("/dev/tap", O_RDWR
, 0));
1214 syslog(LOG_ERR
, "Can't open /dev/tap (2)");
1217 if(ioctl(if_fd
, I_PUSH
, "ip") < 0){
1218 syslog(LOG_ERR
, "Can't push IP module");
1222 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) < 0)
1223 syslog(LOG_ERR
, "Can't get flags\n");
1225 snprintf (actual_name
, 32, "tap%d", ppa
);
1226 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
1229 /* Assign ppa according to the unit number returned by tun device */
1231 if (ioctl (if_fd
, SIOCSLIFNAME
, &ifr
) < 0)
1232 syslog (LOG_ERR
, "Can't set PPA %d", ppa
);
1233 if (ioctl(if_fd
, SIOCGLIFFLAGS
, &ifr
) <0)
1234 syslog (LOG_ERR
, "Can't get flags\n");
1235 /* Push arp module to if_fd */
1236 if (ioctl (if_fd
, I_PUSH
, "arp") < 0)
1237 syslog (LOG_ERR
, "Can't push ARP module (2)");
1239 /* Push arp module to ip_fd */
1240 if (ioctl (ip_fd
, I_POP
, NULL
) < 0)
1241 syslog (LOG_ERR
, "I_POP failed\n");
1242 if (ioctl (ip_fd
, I_PUSH
, "arp") < 0)
1243 syslog (LOG_ERR
, "Can't push ARP module (3)\n");
1245 TFR(arp_fd
= open ("/dev/tap", O_RDWR
, 0));
1247 syslog (LOG_ERR
, "Can't open %s\n", "/dev/tap");
1249 /* Set ifname to arp */
1250 strioc_if
.ic_cmd
= SIOCSLIFNAME
;
1251 strioc_if
.ic_timout
= 0;
1252 strioc_if
.ic_len
= sizeof(ifr
);
1253 strioc_if
.ic_dp
= (char *)&ifr
;
1254 if (ioctl(arp_fd
, I_STR
, &strioc_if
) < 0){
1255 syslog (LOG_ERR
, "Can't set ifname to arp\n");
1258 if((ip_muxid
= ioctl(ip_fd
, I_LINK
, if_fd
)) < 0){
1259 syslog(LOG_ERR
, "Can't link TAP device to IP");
1263 if ((arp_muxid
= ioctl (ip_fd
, link_type
, arp_fd
)) < 0)
1264 syslog (LOG_ERR
, "Can't link TAP device to ARP");
1268 memset(&ifr
, 0x0, sizeof(ifr
));
1269 pstrcpy(ifr
.lifr_name
, sizeof(ifr
.lifr_name
), actual_name
);
1270 ifr
.lifr_ip_muxid
= ip_muxid
;
1271 ifr
.lifr_arp_muxid
= arp_muxid
;
1273 if (ioctl (ip_fd
, SIOCSLIFMUXID
, &ifr
) < 0)
1275 ioctl (ip_fd
, I_PUNLINK
, arp_muxid
);
1276 ioctl (ip_fd
, I_PUNLINK
, ip_muxid
);
1277 syslog (LOG_ERR
, "Can't set multiplexor id");
1280 snprintf(dev
, dev_size
, "tap%d", ppa
);
1284 static int tap_open(char *ifname
, int ifname_size
)
1288 if( (fd
= tap_alloc(dev
, sizeof(dev
))) < 0 ){
1289 fprintf(stderr
, "Cannot allocate TAP device\n");
1292 pstrcpy(ifname
, ifname_size
, dev
);
1293 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1296 #elif defined (_AIX)
1297 static int tap_open(char *ifname
, int ifname_size
)
1299 fprintf (stderr
, "no tap on AIX\n");
1303 static int tap_open(char *ifname
, int ifname_size
)
1308 TFR(fd
= open("/dev/net/tun", O_RDWR
));
1310 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
1313 memset(&ifr
, 0, sizeof(ifr
));
1314 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
1315 if (ifname
[0] != '\0')
1316 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
1318 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
1319 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
1321 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
1325 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
1326 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1331 static int launch_script(const char *setup_script
, const char *ifname
, int fd
)
1333 sigset_t oldmask
, mask
;
1339 sigaddset(&mask
, SIGCHLD
);
1340 sigprocmask(SIG_BLOCK
, &mask
, &oldmask
);
1342 /* try to launch network script */
1345 int open_max
= sysconf(_SC_OPEN_MAX
), i
;
1347 for (i
= 0; i
< open_max
; i
++) {
1348 if (i
!= STDIN_FILENO
&&
1349 i
!= STDOUT_FILENO
&&
1350 i
!= STDERR_FILENO
&&
1356 *parg
++ = (char *)setup_script
;
1357 *parg
++ = (char *)ifname
;
1359 execv(setup_script
, args
);
1361 } else if (pid
> 0) {
1362 while (waitpid(pid
, &status
, 0) != pid
) {
1365 sigprocmask(SIG_SETMASK
, &oldmask
, NULL
);
1367 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
1371 fprintf(stderr
, "%s: could not launch network script\n", setup_script
);
1375 static int net_tap_init(VLANState
*vlan
, const char *model
,
1376 const char *name
, const char *ifname1
,
1377 const char *setup_script
, const char *down_script
)
1383 if (ifname1
!= NULL
)
1384 pstrcpy(ifname
, sizeof(ifname
), ifname1
);
1387 TFR(fd
= tap_open(ifname
, sizeof(ifname
)));
1391 if (!setup_script
|| !strcmp(setup_script
, "no"))
1393 if (setup_script
[0] != '\0') {
1394 if (launch_script(setup_script
, ifname
, fd
))
1397 s
= net_tap_fd_init(vlan
, model
, name
, fd
);
1398 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1399 "ifname=%s,script=%s,downscript=%s",
1400 ifname
, setup_script
, down_script
);
1401 if (down_script
&& strcmp(down_script
, "no")) {
1402 snprintf(s
->down_script
, sizeof(s
->down_script
), "%s", down_script
);
1403 snprintf(s
->down_script_arg
, sizeof(s
->down_script_arg
), "%s", ifname
);
1408 #endif /* !_WIN32 */
1410 #if defined(CONFIG_VDE)
1411 typedef struct VDEState
{
1412 VLANClientState
*vc
;
1416 static void vde_to_qemu(void *opaque
)
1418 VDEState
*s
= opaque
;
1422 size
= vde_recv(s
->vde
, (char *)buf
, sizeof(buf
), 0);
1424 qemu_send_packet(s
->vc
, buf
, size
);
1428 static ssize_t
vde_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1430 VDEState
*s
= vc
->opaque
;
1434 ret
= vde_send(s
->vde
, (const char *)buf
, size
, 0);
1435 } while (ret
< 0 && errno
== EINTR
);
1440 static void vde_cleanup(VLANClientState
*vc
)
1442 VDEState
*s
= vc
->opaque
;
1443 qemu_set_fd_handler(vde_datafd(s
->vde
), NULL
, NULL
, NULL
);
1448 static int net_vde_init(VLANState
*vlan
, const char *model
,
1449 const char *name
, const char *sock
,
1450 int port
, const char *group
, int mode
)
1453 char *init_group
= strlen(group
) ? (char *)group
: NULL
;
1454 char *init_sock
= strlen(sock
) ? (char *)sock
: NULL
;
1456 struct vde_open_args args
= {
1458 .group
= init_group
,
1462 s
= qemu_mallocz(sizeof(VDEState
));
1463 s
->vde
= vde_open(init_sock
, (char *)"QEMU", &args
);
1468 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, vde_receive
,
1469 NULL
, vde_cleanup
, s
);
1470 qemu_set_fd_handler(vde_datafd(s
->vde
), vde_to_qemu
, NULL
, s
);
1471 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "sock=%s,fd=%d",
1472 sock
, vde_datafd(s
->vde
));
1477 /* network connection */
1478 typedef struct NetSocketState
{
1479 VLANClientState
*vc
;
1481 int state
; /* 0 = getting length, 1 = getting data */
1483 unsigned int packet_len
;
1485 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
1488 typedef struct NetSocketListenState
{
1493 } NetSocketListenState
;
1495 /* XXX: we consider we can send the whole packet without blocking */
1496 static ssize_t
net_socket_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1498 NetSocketState
*s
= vc
->opaque
;
1502 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
1503 return send_all(s
->fd
, buf
, size
);
1506 static ssize_t
net_socket_receive_dgram(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1508 NetSocketState
*s
= vc
->opaque
;
1510 return sendto(s
->fd
, (const void *)buf
, size
, 0,
1511 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
1514 static void net_socket_send(void *opaque
)
1516 NetSocketState
*s
= opaque
;
1522 size
= recv(s
->fd
, (void *)buf1
, sizeof(buf1
), 0);
1524 err
= socket_error();
1525 if (err
!= EWOULDBLOCK
)
1527 } else if (size
== 0) {
1528 /* end of connection */
1530 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1536 /* reassemble a packet from the network */
1542 memcpy(s
->buf
+ s
->index
, buf
, l
);
1546 if (s
->index
== 4) {
1548 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
1554 l
= s
->packet_len
- s
->index
;
1557 if (s
->index
+ l
<= sizeof(s
->buf
)) {
1558 memcpy(s
->buf
+ s
->index
, buf
, l
);
1560 fprintf(stderr
, "serious error: oversized packet received,"
1561 "connection terminated.\n");
1569 if (s
->index
>= s
->packet_len
) {
1570 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
1579 static void net_socket_send_dgram(void *opaque
)
1581 NetSocketState
*s
= opaque
;
1584 size
= recv(s
->fd
, (void *)s
->buf
, sizeof(s
->buf
), 0);
1588 /* end of connection */
1589 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1592 qemu_send_packet(s
->vc
, s
->buf
, size
);
1595 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
1600 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
1601 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
1602 inet_ntoa(mcastaddr
->sin_addr
),
1603 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
1607 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
1609 perror("socket(PF_INET, SOCK_DGRAM)");
1614 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
1615 (const char *)&val
, sizeof(val
));
1617 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
1621 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
1627 /* Add host to multicast group */
1628 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
1629 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
1631 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
1632 (const char *)&imr
, sizeof(struct ip_mreq
));
1634 perror("setsockopt(IP_ADD_MEMBERSHIP)");
1638 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
1640 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
1641 (const char *)&val
, sizeof(val
));
1643 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
1647 socket_set_nonblock(fd
);
1655 static void net_socket_cleanup(VLANClientState
*vc
)
1657 NetSocketState
*s
= vc
->opaque
;
1658 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
1663 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
,
1666 int fd
, int is_connected
)
1668 struct sockaddr_in saddr
;
1670 socklen_t saddr_len
;
1673 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
1674 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
1675 * by ONLY ONE process: we must "clone" this dgram socket --jjo
1679 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
1681 if (saddr
.sin_addr
.s_addr
==0) {
1682 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
1686 /* clone dgram socket */
1687 newfd
= net_socket_mcast_create(&saddr
);
1689 /* error already reported by net_socket_mcast_create() */
1693 /* clone newfd to fd, close newfd */
1698 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
1699 fd
, strerror(errno
));
1704 s
= qemu_mallocz(sizeof(NetSocketState
));
1707 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, net_socket_receive_dgram
,
1708 NULL
, net_socket_cleanup
, s
);
1709 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
1711 /* mcast: save bound address as dst */
1712 if (is_connected
) s
->dgram_dst
=saddr
;
1714 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1715 "socket: fd=%d (%s mcast=%s:%d)",
1716 fd
, is_connected
? "cloned" : "",
1717 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1721 static void net_socket_connect(void *opaque
)
1723 NetSocketState
*s
= opaque
;
1724 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
1727 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
,
1730 int fd
, int is_connected
)
1733 s
= qemu_mallocz(sizeof(NetSocketState
));
1735 s
->vc
= qemu_new_vlan_client(vlan
, model
, name
, NULL
, net_socket_receive
,
1736 NULL
, net_socket_cleanup
, s
);
1737 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1738 "socket: fd=%d", fd
);
1740 net_socket_connect(s
);
1742 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
1747 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
,
1748 const char *model
, const char *name
,
1749 int fd
, int is_connected
)
1751 int so_type
=-1, optlen
=sizeof(so_type
);
1753 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
1754 (socklen_t
*)&optlen
)< 0) {
1755 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
1760 return net_socket_fd_init_dgram(vlan
, model
, name
, fd
, is_connected
);
1762 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
1764 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
1765 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
1766 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
1771 static void net_socket_accept(void *opaque
)
1773 NetSocketListenState
*s
= opaque
;
1775 struct sockaddr_in saddr
;
1780 len
= sizeof(saddr
);
1781 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
1782 if (fd
< 0 && errno
!= EINTR
) {
1784 } else if (fd
>= 0) {
1788 s1
= net_socket_fd_init(s
->vlan
, s
->model
, s
->name
, fd
, 1);
1792 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
1793 "socket: connection from %s:%d",
1794 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1798 static int net_socket_listen_init(VLANState
*vlan
,
1801 const char *host_str
)
1803 NetSocketListenState
*s
;
1805 struct sockaddr_in saddr
;
1807 if (parse_host_port(&saddr
, host_str
) < 0)
1810 s
= qemu_mallocz(sizeof(NetSocketListenState
));
1812 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1817 socket_set_nonblock(fd
);
1819 /* allow fast reuse */
1821 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
1823 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1828 ret
= listen(fd
, 0);
1834 s
->model
= strdup(model
);
1835 s
->name
= name
? strdup(name
) : NULL
;
1837 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
1841 static int net_socket_connect_init(VLANState
*vlan
,
1844 const char *host_str
)
1847 int fd
, connected
, ret
, err
;
1848 struct sockaddr_in saddr
;
1850 if (parse_host_port(&saddr
, host_str
) < 0)
1853 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
1858 socket_set_nonblock(fd
);
1862 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
1864 err
= socket_error();
1865 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
1866 } else if (err
== EINPROGRESS
) {
1869 } else if (err
== WSAEALREADY
) {
1882 s
= net_socket_fd_init(vlan
, model
, name
, fd
, connected
);
1885 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1886 "socket: connect to %s:%d",
1887 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1891 static int net_socket_mcast_init(VLANState
*vlan
,
1894 const char *host_str
)
1898 struct sockaddr_in saddr
;
1900 if (parse_host_port(&saddr
, host_str
) < 0)
1904 fd
= net_socket_mcast_create(&saddr
);
1908 s
= net_socket_fd_init(vlan
, model
, name
, fd
, 0);
1912 s
->dgram_dst
= saddr
;
1914 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
1915 "socket: mcast=%s:%d",
1916 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
1921 typedef struct DumpState
{
1922 VLANClientState
*pcap_vc
;
1927 #define PCAP_MAGIC 0xa1b2c3d4
1929 struct pcap_file_hdr
{
1931 uint16_t version_major
;
1932 uint16_t version_minor
;
1939 struct pcap_sf_pkthdr
{
1948 static ssize_t
dump_receive(VLANClientState
*vc
, const uint8_t *buf
, size_t size
)
1950 DumpState
*s
= vc
->opaque
;
1951 struct pcap_sf_pkthdr hdr
;
1955 /* Early return in case of previous error. */
1960 ts
= muldiv64(qemu_get_clock(vm_clock
), 1000000, ticks_per_sec
);
1961 caplen
= size
> s
->pcap_caplen
? s
->pcap_caplen
: size
;
1963 hdr
.ts
.tv_sec
= ts
/ 1000000;
1964 hdr
.ts
.tv_usec
= ts
% 1000000;
1965 hdr
.caplen
= caplen
;
1967 if (write(s
->fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
) ||
1968 write(s
->fd
, buf
, caplen
) != caplen
) {
1969 qemu_log("-net dump write error - stop dump\n");
1977 static void net_dump_cleanup(VLANClientState
*vc
)
1979 DumpState
*s
= vc
->opaque
;
1985 static int net_dump_init(Monitor
*mon
, VLANState
*vlan
, const char *device
,
1986 const char *name
, const char *filename
, int len
)
1988 struct pcap_file_hdr hdr
;
1991 s
= qemu_malloc(sizeof(DumpState
));
1993 s
->fd
= open(filename
, O_CREAT
| O_WRONLY
, 0644);
1995 config_error(mon
, "-net dump: can't open %s\n", filename
);
1999 s
->pcap_caplen
= len
;
2001 hdr
.magic
= PCAP_MAGIC
;
2002 hdr
.version_major
= 2;
2003 hdr
.version_minor
= 4;
2006 hdr
.snaplen
= s
->pcap_caplen
;
2009 if (write(s
->fd
, &hdr
, sizeof(hdr
)) < sizeof(hdr
)) {
2010 config_error(mon
, "-net dump write error: %s\n", strerror(errno
));
2016 s
->pcap_vc
= qemu_new_vlan_client(vlan
, device
, name
, NULL
, dump_receive
, NULL
,
2017 net_dump_cleanup
, s
);
2018 snprintf(s
->pcap_vc
->info_str
, sizeof(s
->pcap_vc
->info_str
),
2019 "dump to %s (len=%d)", filename
, len
);
2023 /* find or alloc a new VLAN */
2024 VLANState
*qemu_find_vlan(int id
)
2026 VLANState
**pvlan
, *vlan
;
2027 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2031 vlan
= qemu_mallocz(sizeof(VLANState
));
2034 pvlan
= &first_vlan
;
2035 while (*pvlan
!= NULL
)
2036 pvlan
= &(*pvlan
)->next
;
2041 static int nic_get_free_idx(void)
2045 for (index
= 0; index
< MAX_NICS
; index
++)
2046 if (!nd_table
[index
].used
)
2051 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
2053 const char *models
[2];
2058 qemu_check_nic_model_list(nd
, models
, model
);
2061 void qemu_check_nic_model_list(NICInfo
*nd
, const char * const *models
,
2062 const char *default_model
)
2064 int i
, exit_status
= 0;
2067 nd
->model
= strdup(default_model
);
2069 if (strcmp(nd
->model
, "?") != 0) {
2070 for (i
= 0 ; models
[i
]; i
++)
2071 if (strcmp(nd
->model
, models
[i
]) == 0)
2074 fprintf(stderr
, "qemu: Unsupported NIC model: %s\n", nd
->model
);
2078 fprintf(stderr
, "qemu: Supported NIC models: ");
2079 for (i
= 0 ; models
[i
]; i
++)
2080 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
2085 int net_client_init(Monitor
*mon
, const char *device
, const char *p
)
2087 static const char * const fd_params
[] = {
2088 "vlan", "name", "fd", NULL
2096 if (get_param_value(buf
, sizeof(buf
), "vlan", p
)) {
2097 vlan_id
= strtol(buf
, NULL
, 0);
2099 vlan
= qemu_find_vlan(vlan_id
);
2101 if (get_param_value(buf
, sizeof(buf
), "name", p
)) {
2102 name
= qemu_strdup(buf
);
2104 if (!strcmp(device
, "nic")) {
2105 static const char * const nic_params
[] = {
2106 "vlan", "name", "macaddr", "model", NULL
2110 int idx
= nic_get_free_idx();
2112 if (check_params(buf
, sizeof(buf
), nic_params
, p
) < 0) {
2113 config_error(mon
, "invalid parameter '%s' in '%s'\n", buf
, p
);
2117 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
2118 config_error(mon
, "Too Many NICs\n");
2122 nd
= &nd_table
[idx
];
2123 macaddr
= nd
->macaddr
;
2129 macaddr
[5] = 0x56 + idx
;
2131 if (get_param_value(buf
, sizeof(buf
), "macaddr", p
)) {
2132 if (parse_macaddr(macaddr
, buf
) < 0) {
2133 config_error(mon
, "invalid syntax for ethernet address\n");
2138 if (get_param_value(buf
, sizeof(buf
), "model", p
)) {
2139 nd
->model
= strdup(buf
);
2146 vlan
->nb_guest_devs
++;
2149 if (!strcmp(device
, "none")) {
2151 config_error(mon
, "'none' takes no parameters\n");
2155 /* does nothing. It is needed to signal that no network cards
2160 if (!strcmp(device
, "user")) {
2161 static const char * const slirp_params
[] = {
2162 "vlan", "name", "hostname", "restrict", "ip", NULL
2167 if (check_params(buf
, sizeof(buf
), slirp_params
, p
) < 0) {
2168 config_error(mon
, "invalid parameter '%s' in '%s'\n", buf
, p
);
2172 if (get_param_value(buf
, sizeof(buf
), "hostname", p
)) {
2173 pstrcpy(slirp_hostname
, sizeof(slirp_hostname
), buf
);
2175 if (get_param_value(buf
, sizeof(buf
), "restrict", p
)) {
2176 restricted
= (buf
[0] == 'y') ? 1 : 0;
2178 if (get_param_value(buf
, sizeof(buf
), "ip", p
)) {
2179 ip
= qemu_strdup(buf
);
2181 vlan
->nb_host_devs
++;
2182 ret
= net_slirp_init(vlan
, device
, name
, restricted
, ip
);
2184 } else if (!strcmp(device
, "channel")) {
2186 char name
[20], *devname
;
2187 struct VMChannel
*vmc
;
2189 port
= strtol(p
, &devname
, 10);
2191 if (port
< 1 || port
> 65535) {
2192 config_error(mon
, "vmchannel wrong port number\n");
2196 vmc
= malloc(sizeof(struct VMChannel
));
2197 snprintf(name
, 20, "vmchannel%ld", port
);
2198 vmc
->hd
= qemu_chr_open(name
, devname
, NULL
);
2200 config_error(mon
, "could not open vmchannel device '%s'\n",
2206 slirp_add_exec(3, vmc
->hd
, 4, port
);
2207 qemu_chr_add_handlers(vmc
->hd
, vmchannel_can_read
, vmchannel_read
,
2213 if (!strcmp(device
, "tap")) {
2214 static const char * const tap_params
[] = {
2215 "vlan", "name", "ifname", NULL
2219 if (check_params(buf
, sizeof(buf
), tap_params
, p
) < 0) {
2220 config_error(mon
, "invalid parameter '%s' in '%s'\n", buf
, p
);
2224 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
2225 config_error(mon
, "tap: no interface name\n");
2229 vlan
->nb_host_devs
++;
2230 ret
= tap_win32_init(vlan
, device
, name
, ifname
);
2232 #elif defined (_AIX)
2234 if (!strcmp(device
, "tap")) {
2235 char ifname
[64], chkbuf
[64];
2236 char setup_script
[1024], down_script
[1024];
2238 vlan
->nb_host_devs
++;
2239 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
2240 if (check_params(chkbuf
, sizeof(chkbuf
), fd_params
, p
) < 0) {
2241 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2245 fd
= strtol(buf
, NULL
, 0);
2246 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
2247 net_tap_fd_init(vlan
, device
, name
, fd
);
2250 static const char * const tap_params
[] = {
2251 "vlan", "name", "ifname", "script", "downscript", NULL
2253 if (check_params(chkbuf
, sizeof(chkbuf
), tap_params
, p
) < 0) {
2254 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2258 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
2261 if (get_param_value(setup_script
, sizeof(setup_script
), "script", p
) == 0) {
2262 pstrcpy(setup_script
, sizeof(setup_script
), DEFAULT_NETWORK_SCRIPT
);
2264 if (get_param_value(down_script
, sizeof(down_script
), "downscript", p
) == 0) {
2265 pstrcpy(down_script
, sizeof(down_script
), DEFAULT_NETWORK_DOWN_SCRIPT
);
2267 ret
= net_tap_init(vlan
, device
, name
, ifname
, setup_script
, down_script
);
2271 if (!strcmp(device
, "socket")) {
2273 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
2275 if (check_params(chkbuf
, sizeof(chkbuf
), fd_params
, p
) < 0) {
2276 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2280 fd
= strtol(buf
, NULL
, 0);
2282 if (net_socket_fd_init(vlan
, device
, name
, fd
, 1))
2284 } else if (get_param_value(buf
, sizeof(buf
), "listen", p
) > 0) {
2285 static const char * const listen_params
[] = {
2286 "vlan", "name", "listen", NULL
2288 if (check_params(chkbuf
, sizeof(chkbuf
), listen_params
, p
) < 0) {
2289 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2293 ret
= net_socket_listen_init(vlan
, device
, name
, buf
);
2294 } else if (get_param_value(buf
, sizeof(buf
), "connect", p
) > 0) {
2295 static const char * const connect_params
[] = {
2296 "vlan", "name", "connect", NULL
2298 if (check_params(chkbuf
, sizeof(chkbuf
), connect_params
, p
) < 0) {
2299 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2303 ret
= net_socket_connect_init(vlan
, device
, name
, buf
);
2304 } else if (get_param_value(buf
, sizeof(buf
), "mcast", p
) > 0) {
2305 static const char * const mcast_params
[] = {
2306 "vlan", "name", "mcast", NULL
2308 if (check_params(chkbuf
, sizeof(chkbuf
), mcast_params
, p
) < 0) {
2309 config_error(mon
, "invalid parameter '%s' in '%s'\n", chkbuf
, p
);
2313 ret
= net_socket_mcast_init(vlan
, device
, name
, buf
);
2315 config_error(mon
, "Unknown socket options: %s\n", p
);
2319 vlan
->nb_host_devs
++;
2322 if (!strcmp(device
, "vde")) {
2323 static const char * const vde_params
[] = {
2324 "vlan", "name", "sock", "port", "group", "mode", NULL
2326 char vde_sock
[1024], vde_group
[512];
2327 int vde_port
, vde_mode
;
2329 if (check_params(buf
, sizeof(buf
), vde_params
, p
) < 0) {
2330 config_error(mon
, "invalid parameter '%s' in '%s'\n", buf
, p
);
2334 vlan
->nb_host_devs
++;
2335 if (get_param_value(vde_sock
, sizeof(vde_sock
), "sock", p
) <= 0) {
2338 if (get_param_value(buf
, sizeof(buf
), "port", p
) > 0) {
2339 vde_port
= strtol(buf
, NULL
, 10);
2343 if (get_param_value(vde_group
, sizeof(vde_group
), "group", p
) <= 0) {
2344 vde_group
[0] = '\0';
2346 if (get_param_value(buf
, sizeof(buf
), "mode", p
) > 0) {
2347 vde_mode
= strtol(buf
, NULL
, 8);
2351 ret
= net_vde_init(vlan
, device
, name
, vde_sock
, vde_port
, vde_group
, vde_mode
);
2354 if (!strcmp(device
, "dump")) {
2357 if (get_param_value(buf
, sizeof(buf
), "len", p
) > 0) {
2358 len
= strtol(buf
, NULL
, 0);
2360 if (!get_param_value(buf
, sizeof(buf
), "file", p
)) {
2361 snprintf(buf
, sizeof(buf
), "qemu-vlan%d.pcap", vlan_id
);
2363 ret
= net_dump_init(mon
, vlan
, device
, name
, buf
, len
);
2365 config_error(mon
, "Unknown network device: %s\n", device
);
2370 config_error(mon
, "Could not initialize device '%s'\n", device
);
2377 void net_client_uninit(NICInfo
*nd
)
2379 nd
->vlan
->nb_guest_devs
--;
2382 free((void *)nd
->model
);
2385 static int net_host_check_device(const char *device
)
2388 const char *valid_param_list
[] = { "tap", "socket", "dump"
2396 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
2397 if (!strncmp(valid_param_list
[i
], device
,
2398 strlen(valid_param_list
[i
])))
2405 void net_host_device_add(Monitor
*mon
, const char *device
, const char *opts
)
2407 if (!net_host_check_device(device
)) {
2408 monitor_printf(mon
, "invalid host network device %s\n", device
);
2411 if (net_client_init(mon
, device
, opts
? opts
: "") < 0) {
2412 monitor_printf(mon
, "adding host network device %s failed\n", device
);
2416 void net_host_device_remove(Monitor
*mon
, int vlan_id
, const char *device
)
2419 VLANClientState
*vc
;
2421 vlan
= qemu_find_vlan(vlan_id
);
2423 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
2424 if (!strcmp(vc
->name
, device
)) {
2430 monitor_printf(mon
, "can't find device %s\n", device
);
2433 if (!net_host_check_device(vc
->model
)) {
2434 monitor_printf(mon
, "invalid host network device %s\n", device
);
2437 qemu_del_vlan_client(vc
);
2440 int net_client_parse(const char *str
)
2448 while (*p
!= '\0' && *p
!= ',') {
2449 if ((q
- device
) < sizeof(device
) - 1)
2457 return net_client_init(NULL
, device
, p
);
2460 void do_info_network(Monitor
*mon
)
2463 VLANClientState
*vc
;
2465 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2466 monitor_printf(mon
, "VLAN %d devices:\n", vlan
->id
);
2467 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
2468 monitor_printf(mon
, " %s: %s\n", vc
->name
, vc
->info_str
);
2472 int do_set_link(Monitor
*mon
, const char *name
, const char *up_or_down
)
2475 VLANClientState
*vc
= NULL
;
2477 for (vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
)
2478 for (vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
2479 if (strcmp(vc
->name
, name
) == 0)
2484 monitor_printf(mon
, "could not find network device '%s'", name
);
2488 if (strcmp(up_or_down
, "up") == 0)
2490 else if (strcmp(up_or_down
, "down") == 0)
2493 monitor_printf(mon
, "invalid link status '%s'; only 'up' or 'down' "
2494 "valid\n", up_or_down
);
2496 if (vc
->link_status_changed
)
2497 vc
->link_status_changed(vc
);
2502 void net_cleanup(void)
2506 /* close network clients */
2507 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2508 VLANClientState
*vc
= vlan
->first_client
;
2511 VLANClientState
*next
= vc
->next
;
2513 qemu_del_vlan_client(vc
);
2520 void net_client_check(void)
2524 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2525 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
2527 if (vlan
->nb_guest_devs
== 0)
2528 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
2529 if (vlan
->nb_host_devs
== 0)
2531 "Warning: vlan %d is not connected to host network\n",