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
26 #include "config-host.h"
29 #include "net/socket.h"
31 #include "net/slirp.h"
36 #include "qemu-common.h"
37 #include "qemu_socket.h"
39 static QTAILQ_HEAD(, VLANState
) vlans
;
40 static QTAILQ_HEAD(, VLANClientState
) non_vlan_clients
;
42 /***********************************************************/
43 /* network device redirectors */
45 #if defined(DEBUG_NET)
46 static void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
50 for(i
=0;i
<size
;i
+=16) {
54 fprintf(f
, "%08x ", i
);
57 fprintf(f
, " %02x", buf
[i
+j
]);
64 if (c
< ' ' || c
> '~')
73 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
84 if (len
> buf_size
- 1)
93 int parse_host_src_port(struct sockaddr_in
*haddr
,
94 struct sockaddr_in
*saddr
,
95 const char *input_str
)
97 char *str
= strdup(input_str
);
100 const char *src_str2
;
104 * Chop off any extra arguments at the end of the string which
105 * would start with a comma, then fill in the src port information
106 * if it was provided else use the "any address" and "any port".
108 if ((ptr
= strchr(str
,',')))
111 if ((src_str
= strchr(input_str
,'@'))) {
116 if (parse_host_port(haddr
, host_str
) < 0)
120 if (!src_str
|| *src_str
== '\0')
123 if (parse_host_port(saddr
, src_str2
) < 0)
134 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
142 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
144 saddr
->sin_family
= AF_INET
;
145 if (buf
[0] == '\0') {
146 saddr
->sin_addr
.s_addr
= 0;
148 if (qemu_isdigit(buf
[0])) {
149 if (!inet_aton(buf
, &saddr
->sin_addr
))
152 if ((he
= gethostbyname(buf
)) == NULL
)
154 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
157 port
= strtol(p
, (char **)&r
, 0);
160 saddr
->sin_port
= htons(port
);
164 void qemu_format_nic_info_str(VLANClientState
*vc
, uint8_t macaddr
[6])
166 snprintf(vc
->info_str
, sizeof(vc
->info_str
),
167 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
169 macaddr
[0], macaddr
[1], macaddr
[2],
170 macaddr
[3], macaddr
[4], macaddr
[5]);
173 void qemu_macaddr_default_if_unset(MACAddr
*macaddr
)
175 static int index
= 0;
176 static const MACAddr zero
= { .a
= { 0,0,0,0,0,0 } };
178 if (memcmp(macaddr
, &zero
, sizeof(zero
)) != 0)
180 macaddr
->a
[0] = 0x52;
181 macaddr
->a
[1] = 0x54;
182 macaddr
->a
[2] = 0x00;
183 macaddr
->a
[3] = 0x12;
184 macaddr
->a
[4] = 0x34;
185 macaddr
->a
[5] = 0x56 + index
++;
188 static char *assign_name(VLANClientState
*vc1
, const char *model
)
194 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
197 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
198 if (vc
!= vc1
&& strcmp(vc
->model
, model
) == 0) {
204 snprintf(buf
, sizeof(buf
), "%s.%d", model
, id
);
206 return qemu_strdup(buf
);
209 static ssize_t
qemu_deliver_packet(VLANClientState
*sender
,
214 static ssize_t
qemu_deliver_packet_iov(VLANClientState
*sender
,
216 const struct iovec
*iov
,
220 VLANClientState
*qemu_new_net_client(NetClientInfo
*info
,
222 VLANClientState
*peer
,
228 assert(info
->size
>= sizeof(VLANClientState
));
230 vc
= qemu_mallocz(info
->size
);
233 vc
->model
= qemu_strdup(model
);
235 vc
->name
= qemu_strdup(name
);
237 vc
->name
= assign_name(vc
, model
);
243 QTAILQ_INSERT_TAIL(&vc
->vlan
->clients
, vc
, next
);
249 QTAILQ_INSERT_TAIL(&non_vlan_clients
, vc
, next
);
251 vc
->send_queue
= qemu_new_net_queue(qemu_deliver_packet
,
252 qemu_deliver_packet_iov
,
259 NICState
*qemu_new_nic(NetClientInfo
*info
,
268 assert(info
->type
== NET_CLIENT_TYPE_NIC
);
269 assert(info
->size
>= sizeof(NICState
));
271 nc
= qemu_new_net_client(info
, conf
->vlan
, conf
->peer
, model
, name
);
273 nic
= DO_UPCAST(NICState
, nc
, nc
);
275 nic
->opaque
= opaque
;
280 void qemu_del_vlan_client(VLANClientState
*vc
)
283 QTAILQ_REMOVE(&vc
->vlan
->clients
, vc
, next
);
285 if (vc
->send_queue
) {
286 qemu_del_net_queue(vc
->send_queue
);
288 QTAILQ_REMOVE(&non_vlan_clients
, vc
, next
);
290 vc
->peer
->peer
= NULL
;
294 if (vc
->info
->cleanup
) {
295 vc
->info
->cleanup(vc
);
299 qemu_free(vc
->model
);
304 qemu_find_vlan_client_by_name(Monitor
*mon
, int vlan_id
,
305 const char *client_str
)
310 vlan
= qemu_find_vlan(vlan_id
, 0);
312 monitor_printf(mon
, "unknown VLAN %d\n", vlan_id
);
316 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
317 if (!strcmp(vc
->name
, client_str
)) {
322 monitor_printf(mon
, "can't find device %s on VLAN %d\n",
323 client_str
, vlan_id
);
329 void qemu_foreach_nic(qemu_nic_foreach func
, void *opaque
)
334 QTAILQ_FOREACH(nc
, &non_vlan_clients
, next
) {
335 if (nc
->info
->type
== NET_CLIENT_TYPE_NIC
) {
336 func(DO_UPCAST(NICState
, nc
, nc
), opaque
);
340 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
341 QTAILQ_FOREACH(nc
, &vlan
->clients
, next
) {
342 if (nc
->info
->type
== NET_CLIENT_TYPE_NIC
) {
343 func(DO_UPCAST(NICState
, nc
, nc
), opaque
);
349 int qemu_can_send_packet(VLANClientState
*sender
)
351 VLANState
*vlan
= sender
->vlan
;
355 if (sender
->peer
->receive_disabled
) {
357 } else if (sender
->peer
->info
->can_receive
&&
358 !sender
->peer
->info
->can_receive(sender
->peer
)) {
369 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
374 /* no can_receive() handler, they can always receive */
375 if (!vc
->info
->can_receive
|| vc
->info
->can_receive(vc
)) {
382 static ssize_t
qemu_deliver_packet(VLANClientState
*sender
,
388 VLANClientState
*vc
= opaque
;
395 if (vc
->receive_disabled
) {
399 if (flags
& QEMU_NET_PACKET_FLAG_RAW
&& vc
->info
->receive_raw
) {
400 ret
= vc
->info
->receive_raw(vc
, data
, size
);
402 ret
= vc
->info
->receive(vc
, data
, size
);
406 vc
->receive_disabled
= 1;
412 static ssize_t
qemu_vlan_deliver_packet(VLANClientState
*sender
,
418 VLANState
*vlan
= opaque
;
422 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
434 if (vc
->receive_disabled
) {
439 if (flags
& QEMU_NET_PACKET_FLAG_RAW
&& vc
->info
->receive_raw
) {
440 len
= vc
->info
->receive_raw(vc
, buf
, size
);
442 len
= vc
->info
->receive(vc
, buf
, size
);
446 vc
->receive_disabled
= 1;
449 ret
= (ret
>= 0) ? ret
: len
;
456 void qemu_purge_queued_packets(VLANClientState
*vc
)
460 if (!vc
->peer
&& !vc
->vlan
) {
465 queue
= vc
->peer
->send_queue
;
467 queue
= vc
->vlan
->send_queue
;
470 qemu_net_queue_purge(queue
, vc
);
473 void qemu_flush_queued_packets(VLANClientState
*vc
)
477 vc
->receive_disabled
= 0;
480 queue
= vc
->vlan
->send_queue
;
482 queue
= vc
->send_queue
;
485 qemu_net_queue_flush(queue
);
488 static ssize_t
qemu_send_packet_async_with_flags(VLANClientState
*sender
,
490 const uint8_t *buf
, int size
,
491 NetPacketSent
*sent_cb
)
496 printf("qemu_send_packet_async:\n");
497 hex_dump(stdout
, buf
, size
);
500 if (sender
->link_down
|| (!sender
->peer
&& !sender
->vlan
)) {
505 queue
= sender
->peer
->send_queue
;
507 queue
= sender
->vlan
->send_queue
;
510 return qemu_net_queue_send(queue
, sender
, flags
, buf
, size
, sent_cb
);
513 ssize_t
qemu_send_packet_async(VLANClientState
*sender
,
514 const uint8_t *buf
, int size
,
515 NetPacketSent
*sent_cb
)
517 return qemu_send_packet_async_with_flags(sender
, QEMU_NET_PACKET_FLAG_NONE
,
521 void qemu_send_packet(VLANClientState
*vc
, const uint8_t *buf
, int size
)
523 qemu_send_packet_async(vc
, buf
, size
, NULL
);
526 ssize_t
qemu_send_packet_raw(VLANClientState
*vc
, const uint8_t *buf
, int size
)
528 return qemu_send_packet_async_with_flags(vc
, QEMU_NET_PACKET_FLAG_RAW
,
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
->info
->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 ssize_t
qemu_deliver_packet_iov(VLANClientState
*sender
,
562 const struct iovec
*iov
,
566 VLANClientState
*vc
= opaque
;
569 return calc_iov_length(iov
, iovcnt
);
572 if (vc
->info
->receive_iov
) {
573 return vc
->info
->receive_iov(vc
, iov
, iovcnt
);
575 return vc_sendv_compat(vc
, iov
, iovcnt
);
579 static ssize_t
qemu_vlan_deliver_packet_iov(VLANClientState
*sender
,
581 const struct iovec
*iov
,
585 VLANState
*vlan
= opaque
;
589 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
597 ret
= calc_iov_length(iov
, iovcnt
);
601 assert(!(flags
& QEMU_NET_PACKET_FLAG_RAW
));
603 if (vc
->info
->receive_iov
) {
604 len
= vc
->info
->receive_iov(vc
, iov
, iovcnt
);
606 len
= vc_sendv_compat(vc
, iov
, iovcnt
);
609 ret
= (ret
>= 0) ? ret
: len
;
615 ssize_t
qemu_sendv_packet_async(VLANClientState
*sender
,
616 const struct iovec
*iov
, int iovcnt
,
617 NetPacketSent
*sent_cb
)
621 if (sender
->link_down
|| (!sender
->peer
&& !sender
->vlan
)) {
622 return calc_iov_length(iov
, iovcnt
);
626 queue
= sender
->peer
->send_queue
;
628 queue
= sender
->vlan
->send_queue
;
631 return qemu_net_queue_send_iov(queue
, sender
,
632 QEMU_NET_PACKET_FLAG_NONE
,
633 iov
, iovcnt
, sent_cb
);
637 qemu_sendv_packet(VLANClientState
*vc
, const struct iovec
*iov
, int iovcnt
)
639 return qemu_sendv_packet_async(vc
, iov
, iovcnt
, NULL
);
642 /* find or alloc a new VLAN */
643 VLANState
*qemu_find_vlan(int id
, int allocate
)
647 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
648 if (vlan
->id
== id
) {
657 vlan
= qemu_mallocz(sizeof(VLANState
));
659 QTAILQ_INIT(&vlan
->clients
);
661 vlan
->send_queue
= qemu_new_net_queue(qemu_vlan_deliver_packet
,
662 qemu_vlan_deliver_packet_iov
,
665 QTAILQ_INSERT_TAIL(&vlans
, vlan
, next
);
670 VLANClientState
*qemu_find_netdev(const char *id
)
674 QTAILQ_FOREACH(vc
, &non_vlan_clients
, next
) {
675 if (!strcmp(vc
->name
, id
)) {
683 static int nic_get_free_idx(void)
687 for (index
= 0; index
< MAX_NICS
; index
++)
688 if (!nd_table
[index
].used
)
693 int qemu_show_nic_models(const char *arg
, const char *const *models
)
697 if (!arg
|| strcmp(arg
, "?"))
700 fprintf(stderr
, "qemu: Supported NIC models: ");
701 for (i
= 0 ; models
[i
]; i
++)
702 fprintf(stderr
, "%s%c", models
[i
], models
[i
+1] ? ',' : '\n');
706 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
708 const char *models
[2];
713 if (qemu_show_nic_models(nd
->model
, models
))
715 if (qemu_find_nic_model(nd
, models
, model
) < 0)
719 int qemu_find_nic_model(NICInfo
*nd
, const char * const *models
,
720 const char *default_model
)
725 nd
->model
= qemu_strdup(default_model
);
727 for (i
= 0 ; models
[i
]; i
++) {
728 if (strcmp(nd
->model
, models
[i
]) == 0)
732 qemu_error("qemu: Unsupported NIC model: %s\n", nd
->model
);
736 int net_handle_fd_param(Monitor
*mon
, const char *param
)
738 if (!qemu_isdigit(param
[0])) {
741 fd
= monitor_get_fd(mon
, param
);
743 qemu_error("No file descriptor named %s found", param
);
749 return strtol(param
, NULL
, 0);
753 static int net_init_nic(QemuOpts
*opts
,
762 idx
= nic_get_free_idx();
763 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
764 qemu_error("Too Many NICs\n");
770 memset(nd
, 0, sizeof(*nd
));
772 if ((netdev
= qemu_opt_get(opts
, "netdev"))) {
773 nd
->netdev
= qemu_find_netdev(netdev
);
775 qemu_error("netdev '%s' not found\n", netdev
);
783 nd
->name
= qemu_strdup(name
);
785 if (qemu_opt_get(opts
, "model")) {
786 nd
->model
= qemu_strdup(qemu_opt_get(opts
, "model"));
788 if (qemu_opt_get(opts
, "addr")) {
789 nd
->devaddr
= qemu_strdup(qemu_opt_get(opts
, "addr"));
792 nd
->macaddr
[0] = 0x52;
793 nd
->macaddr
[1] = 0x54;
794 nd
->macaddr
[2] = 0x00;
795 nd
->macaddr
[3] = 0x12;
796 nd
->macaddr
[4] = 0x34;
797 nd
->macaddr
[5] = 0x56 + idx
;
799 if (qemu_opt_get(opts
, "macaddr") &&
800 net_parse_macaddr(nd
->macaddr
, qemu_opt_get(opts
, "macaddr")) < 0) {
801 qemu_error("invalid syntax for ethernet address\n");
805 nd
->nvectors
= qemu_opt_get_number(opts
, "vectors", NIC_NVECTORS_UNSPECIFIED
);
806 if (nd
->nvectors
!= NIC_NVECTORS_UNSPECIFIED
&&
807 (nd
->nvectors
< 0 || nd
->nvectors
> 0x7ffffff)) {
808 qemu_error("invalid # of vectors: %d\n", nd
->nvectors
);
814 nd
->vlan
->nb_guest_devs
++;
821 #define NET_COMMON_PARAMS_DESC \
824 .type = QEMU_OPT_STRING, \
825 .help = "net client type (nic, tap etc.)", \
828 .type = QEMU_OPT_NUMBER, \
829 .help = "vlan number", \
832 .type = QEMU_OPT_STRING, \
833 .help = "identifier for monitor commands", \
836 typedef int (*net_client_init_func
)(QemuOpts
*opts
,
841 /* magic number, but compiler will warn if too small */
842 #define NET_MAX_DESC 20
846 net_client_init_func init
;
847 QemuOptDesc desc
[NET_MAX_DESC
];
848 } net_client_types
[] = {
852 NET_COMMON_PARAMS_DESC
,
853 { /* end of list */ }
857 .init
= net_init_nic
,
859 NET_COMMON_PARAMS_DESC
,
862 .type
= QEMU_OPT_STRING
,
863 .help
= "id of -netdev to connect to",
867 .type
= QEMU_OPT_STRING
,
868 .help
= "MAC address",
871 .type
= QEMU_OPT_STRING
,
872 .help
= "device model (e1000, rtl8139, virtio etc.)",
875 .type
= QEMU_OPT_STRING
,
876 .help
= "PCI device address",
879 .type
= QEMU_OPT_NUMBER
,
880 .help
= "number of MSI-x vectors, 0 to disable MSI-X",
882 { /* end of list */ }
887 .init
= net_init_slirp
,
889 NET_COMMON_PARAMS_DESC
,
892 .type
= QEMU_OPT_STRING
,
893 .help
= "client hostname reported by the builtin DHCP server",
896 .type
= QEMU_OPT_STRING
,
897 .help
= "isolate the guest from the host (y|yes|n|no)",
900 .type
= QEMU_OPT_STRING
,
901 .help
= "legacy parameter, use net= instead",
904 .type
= QEMU_OPT_STRING
,
905 .help
= "IP address and optional netmask",
908 .type
= QEMU_OPT_STRING
,
909 .help
= "guest-visible address of the host",
912 .type
= QEMU_OPT_STRING
,
913 .help
= "root directory of the built-in TFTP server",
916 .type
= QEMU_OPT_STRING
,
917 .help
= "BOOTP filename, for use with tftp=",
920 .type
= QEMU_OPT_STRING
,
921 .help
= "the first of the 16 IPs the built-in DHCP server can assign",
924 .type
= QEMU_OPT_STRING
,
925 .help
= "guest-visible address of the virtual nameserver",
928 .type
= QEMU_OPT_STRING
,
929 .help
= "root directory of the built-in SMB server",
932 .type
= QEMU_OPT_STRING
,
933 .help
= "IP address of the built-in SMB server",
936 .type
= QEMU_OPT_STRING
,
937 .help
= "guest port number to forward incoming TCP or UDP connections",
940 .type
= QEMU_OPT_STRING
,
941 .help
= "IP address and port to forward guest TCP connections",
943 { /* end of list */ }
948 .init
= net_init_tap
,
950 NET_COMMON_PARAMS_DESC
,
953 .type
= QEMU_OPT_STRING
,
954 .help
= "interface name",
959 .type
= QEMU_OPT_STRING
,
960 .help
= "file descriptor of an already opened tap",
963 .type
= QEMU_OPT_STRING
,
964 .help
= "script to initialize the interface",
966 .name
= "downscript",
967 .type
= QEMU_OPT_STRING
,
968 .help
= "script to shut down the interface",
971 .type
= QEMU_OPT_SIZE
,
972 .help
= "send buffer limit"
975 .type
= QEMU_OPT_BOOL
,
976 .help
= "enable the IFF_VNET_HDR flag on the tap interface"
979 { /* end of list */ }
983 .init
= net_init_socket
,
985 NET_COMMON_PARAMS_DESC
,
988 .type
= QEMU_OPT_STRING
,
989 .help
= "file descriptor of an already opened socket",
992 .type
= QEMU_OPT_STRING
,
993 .help
= "port number, and optional hostname, to listen on",
996 .type
= QEMU_OPT_STRING
,
997 .help
= "port number, and optional hostname, to connect to",
1000 .type
= QEMU_OPT_STRING
,
1001 .help
= "UDP multicast address and port number",
1003 { /* end of list */ }
1008 .init
= net_init_vde
,
1010 NET_COMMON_PARAMS_DESC
,
1013 .type
= QEMU_OPT_STRING
,
1014 .help
= "socket path",
1017 .type
= QEMU_OPT_NUMBER
,
1018 .help
= "port number",
1021 .type
= QEMU_OPT_STRING
,
1022 .help
= "group owner of socket",
1025 .type
= QEMU_OPT_NUMBER
,
1026 .help
= "permissions for socket",
1028 { /* end of list */ }
1033 .init
= net_init_dump
,
1035 NET_COMMON_PARAMS_DESC
,
1038 .type
= QEMU_OPT_SIZE
,
1039 .help
= "per-packet size limit (64k default)",
1042 .type
= QEMU_OPT_STRING
,
1043 .help
= "dump file path (default is qemu-vlan0.pcap)",
1045 { /* end of list */ }
1048 { /* end of list */ }
1051 int net_client_init(Monitor
*mon
, QemuOpts
*opts
, int is_netdev
)
1057 type
= qemu_opt_get(opts
, "type");
1061 qemu_error("No type specified for -net\n");
1066 qemu_error("No type specified for -netdev\n");
1070 if (strcmp(type
, "tap") != 0 &&
1072 strcmp(type
, "user") != 0 &&
1075 strcmp(type
, "vde") != 0 &&
1077 strcmp(type
, "socket") != 0) {
1078 qemu_error("The '%s' network backend type is not valid with -netdev\n",
1083 if (qemu_opt_get(opts
, "vlan")) {
1084 qemu_error("The 'vlan' parameter is not valid with -netdev\n");
1087 if (qemu_opt_get(opts
, "name")) {
1088 qemu_error("The 'name' parameter is not valid with -netdev\n");
1091 if (!qemu_opts_id(opts
)) {
1092 qemu_error("The id= parameter is required with -netdev\n");
1097 name
= qemu_opts_id(opts
);
1099 name
= qemu_opt_get(opts
, "name");
1102 for (i
= 0; net_client_types
[i
].type
!= NULL
; i
++) {
1103 if (!strcmp(net_client_types
[i
].type
, type
)) {
1104 VLANState
*vlan
= NULL
;
1106 if (qemu_opts_validate(opts
, &net_client_types
[i
].desc
[0]) == -1) {
1110 /* Do not add to a vlan if it's a -netdev or a nic with a
1111 * netdev= parameter. */
1113 (strcmp(type
, "nic") == 0 && qemu_opt_get(opts
, "netdev")))) {
1114 vlan
= qemu_find_vlan(qemu_opt_get_number(opts
, "vlan", 0), 1);
1117 if (net_client_types
[i
].init
) {
1118 return net_client_types
[i
].init(opts
, mon
, name
, vlan
);
1125 qemu_error("Invalid -net type '%s'\n", type
);
1129 void net_client_uninit(NICInfo
*nd
)
1132 nd
->vlan
->nb_guest_devs
--;
1136 qemu_free(nd
->model
);
1137 qemu_free(nd
->name
);
1138 qemu_free(nd
->devaddr
);
1143 static int net_host_check_device(const char *device
)
1146 const char *valid_param_list
[] = { "tap", "socket", "dump"
1154 for (i
= 0; i
< sizeof(valid_param_list
) / sizeof(char *); i
++) {
1155 if (!strncmp(valid_param_list
[i
], device
,
1156 strlen(valid_param_list
[i
])))
1163 void net_host_device_add(Monitor
*mon
, const QDict
*qdict
)
1165 const char *device
= qdict_get_str(qdict
, "device");
1166 const char *opts_str
= qdict_get_try_str(qdict
, "opts");
1169 if (!net_host_check_device(device
)) {
1170 monitor_printf(mon
, "invalid host network device %s\n", device
);
1174 opts
= qemu_opts_parse(&qemu_net_opts
, opts_str
? opts_str
: "", NULL
);
1176 monitor_printf(mon
, "parsing network options '%s' failed\n",
1177 opts_str
? opts_str
: "");
1181 qemu_opt_set(opts
, "type", device
);
1183 if (net_client_init(mon
, opts
, 0) < 0) {
1184 monitor_printf(mon
, "adding host network device %s failed\n", device
);
1188 void net_host_device_remove(Monitor
*mon
, const QDict
*qdict
)
1190 VLANClientState
*vc
;
1191 int vlan_id
= qdict_get_int(qdict
, "vlan_id");
1192 const char *device
= qdict_get_str(qdict
, "device");
1194 vc
= qemu_find_vlan_client_by_name(mon
, vlan_id
, device
);
1198 if (!net_host_check_device(vc
->model
)) {
1199 monitor_printf(mon
, "invalid host network device %s\n", device
);
1202 qemu_del_vlan_client(vc
);
1205 void net_set_boot_mask(int net_boot_mask
)
1209 /* Only the first four NICs may be bootable */
1210 net_boot_mask
= net_boot_mask
& 0xF;
1212 for (i
= 0; i
< nb_nics
; i
++) {
1213 if (net_boot_mask
& (1 << i
)) {
1214 nd_table
[i
].bootable
= 1;
1215 net_boot_mask
&= ~(1 << i
);
1219 if (net_boot_mask
) {
1220 fprintf(stderr
, "Cannot boot from non-existent NIC\n");
1225 void do_info_network(Monitor
*mon
)
1229 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
1230 VLANClientState
*vc
;
1232 monitor_printf(mon
, "VLAN %d devices:\n", vlan
->id
);
1234 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
1235 monitor_printf(mon
, " %s: %s\n", vc
->name
, vc
->info_str
);
1240 void do_set_link(Monitor
*mon
, const QDict
*qdict
)
1243 VLANClientState
*vc
= NULL
;
1244 const char *name
= qdict_get_str(qdict
, "name");
1245 const char *up_or_down
= qdict_get_str(qdict
, "up_or_down");
1247 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
1248 QTAILQ_FOREACH(vc
, &vlan
->clients
, next
) {
1249 if (strcmp(vc
->name
, name
) == 0) {
1257 monitor_printf(mon
, "could not find network device '%s'\n", name
);
1261 if (strcmp(up_or_down
, "up") == 0)
1263 else if (strcmp(up_or_down
, "down") == 0)
1266 monitor_printf(mon
, "invalid link status '%s'; only 'up' or 'down' "
1267 "valid\n", up_or_down
);
1269 if (vc
->info
->link_status_changed
) {
1270 vc
->info
->link_status_changed(vc
);
1274 void net_cleanup(void)
1277 VLANClientState
*vc
, *next_vc
;
1279 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
1280 QTAILQ_FOREACH_SAFE(vc
, &vlan
->clients
, next
, next_vc
) {
1281 qemu_del_vlan_client(vc
);
1285 QTAILQ_FOREACH_SAFE(vc
, &non_vlan_clients
, next
, next_vc
) {
1286 qemu_del_vlan_client(vc
);
1290 static void net_check_clients(void)
1294 QTAILQ_FOREACH(vlan
, &vlans
, next
) {
1295 if (vlan
->nb_guest_devs
== 0 && vlan
->nb_host_devs
== 0)
1297 if (vlan
->nb_guest_devs
== 0)
1298 fprintf(stderr
, "Warning: vlan %d with no nics\n", vlan
->id
);
1299 if (vlan
->nb_host_devs
== 0)
1301 "Warning: vlan %d is not connected to host network\n",
1306 static int net_init_client(QemuOpts
*opts
, void *dummy
)
1308 if (net_client_init(NULL
, opts
, 0) < 0)
1313 static int net_init_netdev(QemuOpts
*opts
, void *dummy
)
1315 return net_client_init(NULL
, opts
, 1);
1318 int net_init_clients(void)
1320 if (QTAILQ_EMPTY(&qemu_net_opts
.head
)) {
1321 /* if no clients, we use a default config */
1322 qemu_opts_set(&qemu_net_opts
, NULL
, "type", "nic");
1324 qemu_opts_set(&qemu_net_opts
, NULL
, "type", "user");
1328 QTAILQ_INIT(&vlans
);
1329 QTAILQ_INIT(&non_vlan_clients
);
1331 if (qemu_opts_foreach(&qemu_netdev_opts
, net_init_netdev
, NULL
, 1) == -1)
1334 if (qemu_opts_foreach(&qemu_net_opts
, net_init_client
, NULL
, 1) == -1) {
1338 net_check_clients();
1343 int net_client_parse(QemuOptsList
*opts_list
, const char *optarg
)
1345 #if defined(CONFIG_SLIRP)
1347 if (net_slirp_parse_legacy(opts_list
, optarg
, &ret
)) {
1352 if (!qemu_opts_parse(opts_list
, optarg
, "type")) {