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
25 #include "qemu/osdep.h"
30 #include "hw/qdev-properties.h"
31 #include "net/slirp.h"
35 #include "monitor/monitor.h"
36 #include "qemu/help_option.h"
37 #include "qapi/qapi-commands-net.h"
38 #include "qapi/qapi-visit-net.h"
39 #include "qapi/qmp/qdict.h"
40 #include "qapi/qmp/qerror.h"
41 #include "qemu/error-report.h"
42 #include "qemu/sockets.h"
43 #include "qemu/cutils.h"
44 #include "qemu/config-file.h"
45 #include "qemu/ctype.h"
48 #include "qemu/qemu-print.h"
49 #include "qemu/main-loop.h"
50 #include "qemu/option.h"
51 #include "qapi/error.h"
52 #include "qapi/opts-visitor.h"
53 #include "sysemu/sysemu.h"
54 #include "sysemu/runstate.h"
55 #include "sysemu/sysemu.h"
56 #include "net/filter.h"
57 #include "qapi/string-output-visitor.h"
59 /* Net bridge is currently not supported for W32. */
61 # define CONFIG_NET_BRIDGE
64 static VMChangeStateEntry
*net_change_state_entry
;
65 static QTAILQ_HEAD(, NetClientState
) net_clients
;
67 /***********************************************************/
68 /* network device redirectors */
70 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
,
75 const char *addr
, *p
, *r
;
78 substrings
= g_strsplit(str
, ":", 2);
79 if (!substrings
|| !substrings
[0] || !substrings
[1]) {
80 error_setg(errp
, "host address '%s' doesn't contain ':' "
81 "separating host from port", str
);
89 saddr
->sin_family
= AF_INET
;
90 if (addr
[0] == '\0') {
91 saddr
->sin_addr
.s_addr
= 0;
93 if (qemu_isdigit(addr
[0])) {
94 if (!inet_aton(addr
, &saddr
->sin_addr
)) {
95 error_setg(errp
, "host address '%s' is not a valid "
96 "IPv4 address", addr
);
101 he
= gethostbyname(addr
);
103 error_setg(errp
, "can't resolve host address '%s'", addr
);
107 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
110 port
= strtol(p
, (char **)&r
, 0);
112 error_setg(errp
, "port number '%s' is invalid", p
);
116 saddr
->sin_port
= htons(port
);
119 g_strfreev(substrings
);
123 char *qemu_mac_strdup_printf(const uint8_t *macaddr
)
125 return g_strdup_printf("%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
126 macaddr
[0], macaddr
[1], macaddr
[2],
127 macaddr
[3], macaddr
[4], macaddr
[5]);
130 void qemu_format_nic_info_str(NetClientState
*nc
, uint8_t macaddr
[6])
132 snprintf(nc
->info_str
, sizeof(nc
->info_str
),
133 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
135 macaddr
[0], macaddr
[1], macaddr
[2],
136 macaddr
[3], macaddr
[4], macaddr
[5]);
139 static int mac_table
[256] = {0};
141 static void qemu_macaddr_set_used(MACAddr
*macaddr
)
145 for (index
= 0x56; index
< 0xFF; index
++) {
146 if (macaddr
->a
[5] == index
) {
152 static void qemu_macaddr_set_free(MACAddr
*macaddr
)
155 static const MACAddr base
= { .a
= { 0x52, 0x54, 0x00, 0x12, 0x34, 0 } };
157 if (memcmp(macaddr
->a
, &base
.a
, (sizeof(base
.a
) - 1)) != 0) {
160 for (index
= 0x56; index
< 0xFF; index
++) {
161 if (macaddr
->a
[5] == index
) {
167 static int qemu_macaddr_get_free(void)
171 for (index
= 0x56; index
< 0xFF; index
++) {
172 if (mac_table
[index
] == 0) {
180 void qemu_macaddr_default_if_unset(MACAddr
*macaddr
)
182 static const MACAddr zero
= { .a
= { 0,0,0,0,0,0 } };
183 static const MACAddr base
= { .a
= { 0x52, 0x54, 0x00, 0x12, 0x34, 0 } };
185 if (memcmp(macaddr
, &zero
, sizeof(zero
)) != 0) {
186 if (memcmp(macaddr
->a
, &base
.a
, (sizeof(base
.a
) - 1)) != 0) {
189 qemu_macaddr_set_used(macaddr
);
194 macaddr
->a
[0] = 0x52;
195 macaddr
->a
[1] = 0x54;
196 macaddr
->a
[2] = 0x00;
197 macaddr
->a
[3] = 0x12;
198 macaddr
->a
[4] = 0x34;
199 macaddr
->a
[5] = qemu_macaddr_get_free();
200 qemu_macaddr_set_used(macaddr
);
204 * Generate a name for net client
206 * Only net clients created with the legacy -net option and NICs need this.
208 static char *assign_name(NetClientState
*nc1
, const char *model
)
213 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
217 if (strcmp(nc
->model
, model
) == 0) {
222 return g_strdup_printf("%s.%d", model
, id
);
225 static void qemu_net_client_destructor(NetClientState
*nc
)
229 static ssize_t
qemu_deliver_packet_iov(NetClientState
*sender
,
231 const struct iovec
*iov
,
235 static void qemu_net_client_setup(NetClientState
*nc
,
237 NetClientState
*peer
,
240 NetClientDestructor
*destructor
)
243 nc
->model
= g_strdup(model
);
245 nc
->name
= g_strdup(name
);
247 nc
->name
= assign_name(nc
, model
);
255 QTAILQ_INSERT_TAIL(&net_clients
, nc
, next
);
257 nc
->incoming_queue
= qemu_new_net_queue(qemu_deliver_packet_iov
, nc
);
258 nc
->destructor
= destructor
;
259 QTAILQ_INIT(&nc
->filters
);
262 NetClientState
*qemu_new_net_client(NetClientInfo
*info
,
263 NetClientState
*peer
,
269 assert(info
->size
>= sizeof(NetClientState
));
271 nc
= g_malloc0(info
->size
);
272 qemu_net_client_setup(nc
, info
, peer
, model
, name
,
273 qemu_net_client_destructor
);
278 NICState
*qemu_new_nic(NetClientInfo
*info
,
284 NetClientState
**peers
= conf
->peers
.ncs
;
286 int i
, queues
= MAX(1, conf
->peers
.queues
);
288 assert(info
->type
== NET_CLIENT_DRIVER_NIC
);
289 assert(info
->size
>= sizeof(NICState
));
291 nic
= g_malloc0(info
->size
+ sizeof(NetClientState
) * queues
);
292 nic
->ncs
= (void *)nic
+ info
->size
;
294 nic
->opaque
= opaque
;
296 for (i
= 0; i
< queues
; i
++) {
297 qemu_net_client_setup(&nic
->ncs
[i
], info
, peers
[i
], model
, name
,
299 nic
->ncs
[i
].queue_index
= i
;
305 NetClientState
*qemu_get_subqueue(NICState
*nic
, int queue_index
)
307 return nic
->ncs
+ queue_index
;
310 NetClientState
*qemu_get_queue(NICState
*nic
)
312 return qemu_get_subqueue(nic
, 0);
315 NICState
*qemu_get_nic(NetClientState
*nc
)
317 NetClientState
*nc0
= nc
- nc
->queue_index
;
319 return (NICState
*)((void *)nc0
- nc
->info
->size
);
322 void *qemu_get_nic_opaque(NetClientState
*nc
)
324 NICState
*nic
= qemu_get_nic(nc
);
329 NetClientState
*qemu_get_peer(NetClientState
*nc
, int queue_index
)
332 NetClientState
*ncs
= nc
+ queue_index
;
336 static void qemu_cleanup_net_client(NetClientState
*nc
)
338 QTAILQ_REMOVE(&net_clients
, nc
, next
);
340 if (nc
->info
->cleanup
) {
341 nc
->info
->cleanup(nc
);
345 static void qemu_free_net_client(NetClientState
*nc
)
347 if (nc
->incoming_queue
) {
348 qemu_del_net_queue(nc
->incoming_queue
);
351 nc
->peer
->peer
= NULL
;
355 if (nc
->destructor
) {
360 void qemu_del_net_client(NetClientState
*nc
)
362 NetClientState
*ncs
[MAX_QUEUE_NUM
];
364 NetFilterState
*nf
, *next
;
366 assert(nc
->info
->type
!= NET_CLIENT_DRIVER_NIC
);
368 /* If the NetClientState belongs to a multiqueue backend, we will change all
369 * other NetClientStates also.
371 queues
= qemu_find_net_clients_except(nc
->name
, ncs
,
372 NET_CLIENT_DRIVER_NIC
,
376 QTAILQ_FOREACH_SAFE(nf
, &nc
->filters
, next
, next
) {
377 object_unparent(OBJECT(nf
));
380 /* If there is a peer NIC, delete and cleanup client, but do not free. */
381 if (nc
->peer
&& nc
->peer
->info
->type
== NET_CLIENT_DRIVER_NIC
) {
382 NICState
*nic
= qemu_get_nic(nc
->peer
);
383 if (nic
->peer_deleted
) {
386 nic
->peer_deleted
= true;
388 for (i
= 0; i
< queues
; i
++) {
389 ncs
[i
]->peer
->link_down
= true;
392 if (nc
->peer
->info
->link_status_changed
) {
393 nc
->peer
->info
->link_status_changed(nc
->peer
);
396 for (i
= 0; i
< queues
; i
++) {
397 qemu_cleanup_net_client(ncs
[i
]);
403 for (i
= 0; i
< queues
; i
++) {
404 qemu_cleanup_net_client(ncs
[i
]);
405 qemu_free_net_client(ncs
[i
]);
409 void qemu_del_nic(NICState
*nic
)
411 int i
, queues
= MAX(nic
->conf
->peers
.queues
, 1);
413 qemu_macaddr_set_free(&nic
->conf
->macaddr
);
415 for (i
= 0; i
< queues
; i
++) {
416 NetClientState
*nc
= qemu_get_subqueue(nic
, i
);
417 /* If this is a peer NIC and peer has already been deleted, free it now. */
418 if (nic
->peer_deleted
) {
419 qemu_free_net_client(nc
->peer
);
420 } else if (nc
->peer
) {
421 /* if there are RX packets pending, complete them */
422 qemu_purge_queued_packets(nc
->peer
);
426 for (i
= queues
- 1; i
>= 0; i
--) {
427 NetClientState
*nc
= qemu_get_subqueue(nic
, i
);
429 qemu_cleanup_net_client(nc
);
430 qemu_free_net_client(nc
);
436 void qemu_foreach_nic(qemu_nic_foreach func
, void *opaque
)
440 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
441 if (nc
->info
->type
== NET_CLIENT_DRIVER_NIC
) {
442 if (nc
->queue_index
== 0) {
443 func(qemu_get_nic(nc
), opaque
);
449 bool qemu_has_ufo(NetClientState
*nc
)
451 if (!nc
|| !nc
->info
->has_ufo
) {
455 return nc
->info
->has_ufo(nc
);
458 bool qemu_has_vnet_hdr(NetClientState
*nc
)
460 if (!nc
|| !nc
->info
->has_vnet_hdr
) {
464 return nc
->info
->has_vnet_hdr(nc
);
467 bool qemu_has_vnet_hdr_len(NetClientState
*nc
, int len
)
469 if (!nc
|| !nc
->info
->has_vnet_hdr_len
) {
473 return nc
->info
->has_vnet_hdr_len(nc
, len
);
476 void qemu_using_vnet_hdr(NetClientState
*nc
, bool enable
)
478 if (!nc
|| !nc
->info
->using_vnet_hdr
) {
482 nc
->info
->using_vnet_hdr(nc
, enable
);
485 void qemu_set_offload(NetClientState
*nc
, int csum
, int tso4
, int tso6
,
488 if (!nc
|| !nc
->info
->set_offload
) {
492 nc
->info
->set_offload(nc
, csum
, tso4
, tso6
, ecn
, ufo
);
495 void qemu_set_vnet_hdr_len(NetClientState
*nc
, int len
)
497 if (!nc
|| !nc
->info
->set_vnet_hdr_len
) {
501 nc
->vnet_hdr_len
= len
;
502 nc
->info
->set_vnet_hdr_len(nc
, len
);
505 int qemu_set_vnet_le(NetClientState
*nc
, bool is_le
)
507 #ifdef HOST_WORDS_BIGENDIAN
508 if (!nc
|| !nc
->info
->set_vnet_le
) {
512 return nc
->info
->set_vnet_le(nc
, is_le
);
518 int qemu_set_vnet_be(NetClientState
*nc
, bool is_be
)
520 #ifdef HOST_WORDS_BIGENDIAN
523 if (!nc
|| !nc
->info
->set_vnet_be
) {
527 return nc
->info
->set_vnet_be(nc
, is_be
);
531 int qemu_can_send_packet(NetClientState
*sender
)
533 int vm_running
= runstate_is_running();
543 if (sender
->peer
->receive_disabled
) {
545 } else if (sender
->peer
->info
->can_receive
&&
546 !sender
->peer
->info
->can_receive(sender
->peer
)) {
552 static ssize_t
filter_receive_iov(NetClientState
*nc
,
553 NetFilterDirection direction
,
554 NetClientState
*sender
,
556 const struct iovec
*iov
,
558 NetPacketSent
*sent_cb
)
561 NetFilterState
*nf
= NULL
;
563 if (direction
== NET_FILTER_DIRECTION_TX
) {
564 QTAILQ_FOREACH(nf
, &nc
->filters
, next
) {
565 ret
= qemu_netfilter_receive(nf
, direction
, sender
, flags
, iov
,
572 QTAILQ_FOREACH_REVERSE(nf
, &nc
->filters
, next
) {
573 ret
= qemu_netfilter_receive(nf
, direction
, sender
, flags
, iov
,
584 static ssize_t
filter_receive(NetClientState
*nc
,
585 NetFilterDirection direction
,
586 NetClientState
*sender
,
590 NetPacketSent
*sent_cb
)
593 .iov_base
= (void *)data
,
597 return filter_receive_iov(nc
, direction
, sender
, flags
, &iov
, 1, sent_cb
);
600 void qemu_purge_queued_packets(NetClientState
*nc
)
606 qemu_net_queue_purge(nc
->peer
->incoming_queue
, nc
);
609 void qemu_flush_or_purge_queued_packets(NetClientState
*nc
, bool purge
)
611 nc
->receive_disabled
= 0;
613 if (nc
->peer
&& nc
->peer
->info
->type
== NET_CLIENT_DRIVER_HUBPORT
) {
614 if (net_hub_flush(nc
->peer
)) {
618 if (qemu_net_queue_flush(nc
->incoming_queue
)) {
619 /* We emptied the queue successfully, signal to the IO thread to repoll
620 * the file descriptor (for tap, for example).
624 /* Unable to empty the queue, purge remaining packets */
625 qemu_net_queue_purge(nc
->incoming_queue
, nc
->peer
);
629 void qemu_flush_queued_packets(NetClientState
*nc
)
631 qemu_flush_or_purge_queued_packets(nc
, false);
634 static ssize_t
qemu_send_packet_async_with_flags(NetClientState
*sender
,
636 const uint8_t *buf
, int size
,
637 NetPacketSent
*sent_cb
)
643 printf("qemu_send_packet_async:\n");
644 qemu_hexdump(stdout
, "net", buf
, size
);
647 if (sender
->link_down
|| !sender
->peer
) {
651 /* Let filters handle the packet first */
652 ret
= filter_receive(sender
, NET_FILTER_DIRECTION_TX
,
653 sender
, flags
, buf
, size
, sent_cb
);
658 ret
= filter_receive(sender
->peer
, NET_FILTER_DIRECTION_RX
,
659 sender
, flags
, buf
, size
, sent_cb
);
664 queue
= sender
->peer
->incoming_queue
;
666 return qemu_net_queue_send(queue
, sender
, flags
, buf
, size
, sent_cb
);
669 ssize_t
qemu_send_packet_async(NetClientState
*sender
,
670 const uint8_t *buf
, int size
,
671 NetPacketSent
*sent_cb
)
673 return qemu_send_packet_async_with_flags(sender
, QEMU_NET_PACKET_FLAG_NONE
,
677 ssize_t
qemu_send_packet(NetClientState
*nc
, const uint8_t *buf
, int size
)
679 return qemu_send_packet_async(nc
, buf
, size
, NULL
);
682 ssize_t
qemu_send_packet_raw(NetClientState
*nc
, const uint8_t *buf
, int size
)
684 return qemu_send_packet_async_with_flags(nc
, QEMU_NET_PACKET_FLAG_RAW
,
688 static ssize_t
nc_sendv_compat(NetClientState
*nc
, const struct iovec
*iov
,
689 int iovcnt
, unsigned flags
)
697 buffer
= iov
[0].iov_base
;
698 offset
= iov
[0].iov_len
;
700 offset
= iov_size(iov
, iovcnt
);
701 if (offset
> NET_BUFSIZE
) {
704 buf
= g_malloc(offset
);
706 offset
= iov_to_buf(iov
, iovcnt
, 0, buf
, offset
);
709 if (flags
& QEMU_NET_PACKET_FLAG_RAW
&& nc
->info
->receive_raw
) {
710 ret
= nc
->info
->receive_raw(nc
, buffer
, offset
);
712 ret
= nc
->info
->receive(nc
, buffer
, offset
);
719 static ssize_t
qemu_deliver_packet_iov(NetClientState
*sender
,
721 const struct iovec
*iov
,
725 NetClientState
*nc
= opaque
;
730 return iov_size(iov
, iovcnt
);
733 if (nc
->receive_disabled
) {
737 if (nc
->info
->receive_iov
&& !(flags
& QEMU_NET_PACKET_FLAG_RAW
)) {
738 ret
= nc
->info
->receive_iov(nc
, iov
, iovcnt
);
740 ret
= nc_sendv_compat(nc
, iov
, iovcnt
, flags
);
744 nc
->receive_disabled
= 1;
750 ssize_t
qemu_sendv_packet_async(NetClientState
*sender
,
751 const struct iovec
*iov
, int iovcnt
,
752 NetPacketSent
*sent_cb
)
755 size_t size
= iov_size(iov
, iovcnt
);
758 if (size
> NET_BUFSIZE
) {
762 if (sender
->link_down
|| !sender
->peer
) {
766 /* Let filters handle the packet first */
767 ret
= filter_receive_iov(sender
, NET_FILTER_DIRECTION_TX
, sender
,
768 QEMU_NET_PACKET_FLAG_NONE
, iov
, iovcnt
, sent_cb
);
773 ret
= filter_receive_iov(sender
->peer
, NET_FILTER_DIRECTION_RX
, sender
,
774 QEMU_NET_PACKET_FLAG_NONE
, iov
, iovcnt
, sent_cb
);
779 queue
= sender
->peer
->incoming_queue
;
781 return qemu_net_queue_send_iov(queue
, sender
,
782 QEMU_NET_PACKET_FLAG_NONE
,
783 iov
, iovcnt
, sent_cb
);
787 qemu_sendv_packet(NetClientState
*nc
, const struct iovec
*iov
, int iovcnt
)
789 return qemu_sendv_packet_async(nc
, iov
, iovcnt
, NULL
);
792 NetClientState
*qemu_find_netdev(const char *id
)
796 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
797 if (nc
->info
->type
== NET_CLIENT_DRIVER_NIC
)
799 if (!strcmp(nc
->name
, id
)) {
807 int qemu_find_net_clients_except(const char *id
, NetClientState
**ncs
,
808 NetClientDriver type
, int max
)
813 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
814 if (nc
->info
->type
== type
) {
817 if (!id
|| !strcmp(nc
->name
, id
)) {
828 static int nic_get_free_idx(void)
832 for (index
= 0; index
< MAX_NICS
; index
++)
833 if (!nd_table
[index
].used
)
838 int qemu_show_nic_models(const char *arg
, const char *const *models
)
842 if (!arg
|| !is_help_option(arg
)) {
846 printf("Supported NIC models:\n");
847 for (i
= 0 ; models
[i
]; i
++) {
848 printf("%s\n", models
[i
]);
853 void qemu_check_nic_model(NICInfo
*nd
, const char *model
)
855 const char *models
[2];
860 if (qemu_show_nic_models(nd
->model
, models
))
862 if (qemu_find_nic_model(nd
, models
, model
) < 0)
866 int qemu_find_nic_model(NICInfo
*nd
, const char * const *models
,
867 const char *default_model
)
872 nd
->model
= g_strdup(default_model
);
874 for (i
= 0 ; models
[i
]; i
++) {
875 if (strcmp(nd
->model
, models
[i
]) == 0)
879 error_report("Unsupported NIC model: %s", nd
->model
);
883 static int net_init_nic(const Netdev
*netdev
, const char *name
,
884 NetClientState
*peer
, Error
**errp
)
888 const NetLegacyNicOptions
*nic
;
890 assert(netdev
->type
== NET_CLIENT_DRIVER_NIC
);
891 nic
= &netdev
->u
.nic
;
893 idx
= nic_get_free_idx();
894 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
895 error_setg(errp
, "too many NICs");
901 memset(nd
, 0, sizeof(*nd
));
903 if (nic
->has_netdev
) {
904 nd
->netdev
= qemu_find_netdev(nic
->netdev
);
906 error_setg(errp
, "netdev '%s' not found", nic
->netdev
);
913 nd
->name
= g_strdup(name
);
914 if (nic
->has_model
) {
915 nd
->model
= g_strdup(nic
->model
);
918 nd
->devaddr
= g_strdup(nic
->addr
);
921 if (nic
->has_macaddr
&&
922 net_parse_macaddr(nd
->macaddr
.a
, nic
->macaddr
) < 0) {
923 error_setg(errp
, "invalid syntax for ethernet address");
926 if (nic
->has_macaddr
&&
927 is_multicast_ether_addr(nd
->macaddr
.a
)) {
929 "NIC cannot have multicast MAC address (odd 1st byte)");
932 qemu_macaddr_default_if_unset(&nd
->macaddr
);
934 if (nic
->has_vectors
) {
935 if (nic
->vectors
> 0x7ffffff) {
936 error_setg(errp
, "invalid # of vectors: %"PRIu32
, nic
->vectors
);
939 nd
->nvectors
= nic
->vectors
;
941 nd
->nvectors
= DEV_NVECTORS_UNSPECIFIED
;
951 static int (* const net_client_init_fun
[NET_CLIENT_DRIVER__MAX
])(
952 const Netdev
*netdev
,
954 NetClientState
*peer
, Error
**errp
) = {
955 [NET_CLIENT_DRIVER_NIC
] = net_init_nic
,
957 [NET_CLIENT_DRIVER_USER
] = net_init_slirp
,
959 [NET_CLIENT_DRIVER_TAP
] = net_init_tap
,
960 [NET_CLIENT_DRIVER_SOCKET
] = net_init_socket
,
962 [NET_CLIENT_DRIVER_VDE
] = net_init_vde
,
965 [NET_CLIENT_DRIVER_NETMAP
] = net_init_netmap
,
967 #ifdef CONFIG_NET_BRIDGE
968 [NET_CLIENT_DRIVER_BRIDGE
] = net_init_bridge
,
970 [NET_CLIENT_DRIVER_HUBPORT
] = net_init_hubport
,
971 #ifdef CONFIG_VHOST_NET_USER
972 [NET_CLIENT_DRIVER_VHOST_USER
] = net_init_vhost_user
,
974 #ifdef CONFIG_VHOST_NET_VDPA
975 [NET_CLIENT_DRIVER_VHOST_VDPA
] = net_init_vhost_vdpa
,
978 [NET_CLIENT_DRIVER_L2TPV3
] = net_init_l2tpv3
,
983 static int net_client_init1(const Netdev
*netdev
, bool is_netdev
, Error
**errp
)
985 NetClientState
*peer
= NULL
;
989 if (netdev
->type
== NET_CLIENT_DRIVER_NIC
||
990 !net_client_init_fun
[netdev
->type
]) {
991 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "type",
992 "a netdev backend type");
996 if (netdev
->type
== NET_CLIENT_DRIVER_NONE
) {
997 return 0; /* nothing to do */
999 if (netdev
->type
== NET_CLIENT_DRIVER_HUBPORT
||
1000 !net_client_init_fun
[netdev
->type
]) {
1001 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "type",
1002 "a net backend type (maybe it is not compiled "
1003 "into this binary)");
1007 /* Do not add to a hub if it's a nic with a netdev= parameter. */
1008 if (netdev
->type
!= NET_CLIENT_DRIVER_NIC
||
1009 !netdev
->u
.nic
.has_netdev
) {
1010 peer
= net_hub_add_port(0, NULL
, NULL
);
1014 nc
= qemu_find_netdev(netdev
->id
);
1016 error_setg(errp
, "Duplicate ID '%s'", netdev
->id
);
1020 if (net_client_init_fun
[netdev
->type
](netdev
, netdev
->id
, peer
, errp
) < 0) {
1021 /* FIXME drop when all init functions store an Error */
1022 if (errp
&& !*errp
) {
1023 error_setg(errp
, "Device '%s' could not be initialized",
1024 NetClientDriver_str(netdev
->type
));
1030 nc
= qemu_find_netdev(netdev
->id
);
1032 nc
->is_netdev
= true;
1038 void show_netdevs(void)
1041 const char *available_netdevs
[] = {
1048 #ifdef CONFIG_L2TPV3
1054 #ifdef CONFIG_NET_BRIDGE
1057 #ifdef CONFIG_NETMAP
1063 #ifdef CONFIG_VHOST_VDPA
1068 qemu_printf("Available netdev backend types:\n");
1069 for (idx
= 0; idx
< ARRAY_SIZE(available_netdevs
); idx
++) {
1070 qemu_printf("%s\n", available_netdevs
[idx
]);
1074 static int net_client_init(QemuOpts
*opts
, bool is_netdev
, Error
**errp
)
1076 gchar
**substrings
= NULL
;
1077 Netdev
*object
= NULL
;
1079 Visitor
*v
= opts_visitor_new(opts
);
1081 /* Parse convenience option format ip6-net=fec0::0[/64] */
1082 const char *ip6_net
= qemu_opt_get(opts
, "ipv6-net");
1086 unsigned long prefix_len
= 64; /* Default 64bit prefix length. */
1088 substrings
= g_strsplit(ip6_net
, "/", 2);
1089 if (!substrings
|| !substrings
[0]) {
1090 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "ipv6-net",
1091 "a valid IPv6 prefix");
1095 prefix_addr
= substrings
[0];
1097 /* Handle user-specified prefix length. */
1098 if (substrings
[1] &&
1099 qemu_strtoul(substrings
[1], NULL
, 10, &prefix_len
))
1101 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
,
1102 "ipv6-prefixlen", "a number");
1106 qemu_opt_set(opts
, "ipv6-prefix", prefix_addr
, &error_abort
);
1107 qemu_opt_set_number(opts
, "ipv6-prefixlen", prefix_len
,
1109 qemu_opt_unset(opts
, "ipv6-net");
1112 /* Create an ID for -net if the user did not specify one */
1113 if (!is_netdev
&& !qemu_opts_id(opts
)) {
1114 qemu_opts_set_id(opts
, id_generate(ID_NET
));
1117 if (visit_type_Netdev(v
, NULL
, &object
, errp
)) {
1118 ret
= net_client_init1(object
, is_netdev
, errp
);
1121 qapi_free_Netdev(object
);
1124 g_strfreev(substrings
);
1129 void netdev_add(QemuOpts
*opts
, Error
**errp
)
1131 net_client_init(opts
, true, errp
);
1134 void qmp_netdev_add(Netdev
*netdev
, Error
**errp
)
1136 net_client_init1(netdev
, true, errp
);
1139 void qmp_netdev_del(const char *id
, Error
**errp
)
1144 nc
= qemu_find_netdev(id
);
1146 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
1147 "Device '%s' not found", id
);
1151 if (!nc
->is_netdev
) {
1152 error_setg(errp
, "Device '%s' is not a netdev", id
);
1156 qemu_del_net_client(nc
);
1159 * Wart: we need to delete the QemuOpts associated with netdevs
1160 * created via CLI or HMP, to avoid bogus "Duplicate ID" errors in
1163 opts
= qemu_opts_find(qemu_find_opts("netdev"), id
);
1165 qemu_opts_del(opts
);
1169 static void netfilter_print_info(Monitor
*mon
, NetFilterState
*nf
)
1172 ObjectProperty
*prop
;
1173 ObjectPropertyIterator iter
;
1176 /* generate info str */
1177 object_property_iter_init(&iter
, OBJECT(nf
));
1178 while ((prop
= object_property_iter_next(&iter
))) {
1179 if (!strcmp(prop
->name
, "type")) {
1182 v
= string_output_visitor_new(false, &str
);
1183 object_property_get(OBJECT(nf
), prop
->name
, v
, NULL
);
1184 visit_complete(v
, &str
);
1186 monitor_printf(mon
, ",%s=%s", prop
->name
, str
);
1189 monitor_printf(mon
, "\n");
1192 void print_net_client(Monitor
*mon
, NetClientState
*nc
)
1196 monitor_printf(mon
, "%s: index=%d,type=%s,%s\n", nc
->name
,
1198 NetClientDriver_str(nc
->info
->type
),
1200 if (!QTAILQ_EMPTY(&nc
->filters
)) {
1201 monitor_printf(mon
, "filters:\n");
1203 QTAILQ_FOREACH(nf
, &nc
->filters
, next
) {
1204 monitor_printf(mon
, " - %s: type=%s",
1205 object_get_canonical_path_component(OBJECT(nf
)),
1206 object_get_typename(OBJECT(nf
)));
1207 netfilter_print_info(mon
, nf
);
1211 RxFilterInfoList
*qmp_query_rx_filter(bool has_name
, const char *name
,
1215 RxFilterInfoList
*filter_list
= NULL
, **tail
= &filter_list
;
1217 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
1220 if (has_name
&& strcmp(nc
->name
, name
) != 0) {
1224 /* only query rx-filter information of NIC */
1225 if (nc
->info
->type
!= NET_CLIENT_DRIVER_NIC
) {
1227 error_setg(errp
, "net client(%s) isn't a NIC", name
);
1228 assert(!filter_list
);
1234 /* only query information on queue 0 since the info is per nic,
1237 if (nc
->queue_index
!= 0)
1240 if (nc
->info
->query_rx_filter
) {
1241 info
= nc
->info
->query_rx_filter(nc
);
1242 QAPI_LIST_APPEND(tail
, info
);
1243 } else if (has_name
) {
1244 error_setg(errp
, "net client(%s) doesn't support"
1245 " rx-filter querying", name
);
1246 assert(!filter_list
);
1255 if (filter_list
== NULL
&& has_name
) {
1256 error_setg(errp
, "invalid net client name: %s", name
);
1262 void hmp_info_network(Monitor
*mon
, const QDict
*qdict
)
1264 NetClientState
*nc
, *peer
;
1265 NetClientDriver type
;
1269 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
1271 type
= nc
->info
->type
;
1273 /* Skip if already printed in hub info */
1274 if (net_hub_id_for_client(nc
, NULL
) == 0) {
1278 if (!peer
|| type
== NET_CLIENT_DRIVER_NIC
) {
1279 print_net_client(mon
, nc
);
1280 } /* else it's a netdev connected to a NIC, printed with the NIC */
1281 if (peer
&& type
== NET_CLIENT_DRIVER_NIC
) {
1282 monitor_printf(mon
, " \\ ");
1283 print_net_client(mon
, peer
);
1288 void colo_notify_filters_event(int event
, Error
**errp
)
1292 NetFilterClass
*nfc
= NULL
;
1293 Error
*local_err
= NULL
;
1295 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
1296 QTAILQ_FOREACH(nf
, &nc
->filters
, next
) {
1297 nfc
= NETFILTER_GET_CLASS(OBJECT(nf
));
1298 nfc
->handle_event(nf
, event
, &local_err
);
1300 error_propagate(errp
, local_err
);
1307 void qmp_set_link(const char *name
, bool up
, Error
**errp
)
1309 NetClientState
*ncs
[MAX_QUEUE_NUM
];
1313 queues
= qemu_find_net_clients_except(name
, ncs
,
1314 NET_CLIENT_DRIVER__MAX
,
1318 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
1319 "Device '%s' not found", name
);
1324 for (i
= 0; i
< queues
; i
++) {
1325 ncs
[i
]->link_down
= !up
;
1328 if (nc
->info
->link_status_changed
) {
1329 nc
->info
->link_status_changed(nc
);
1333 /* Change peer link only if the peer is NIC and then notify peer.
1334 * If the peer is a HUBPORT or a backend, we do not change the
1337 * This behavior is compatible with qemu hubs where there could be
1338 * multiple clients that can still communicate with each other in
1339 * disconnected mode. For now maintain this compatibility.
1341 if (nc
->peer
->info
->type
== NET_CLIENT_DRIVER_NIC
) {
1342 for (i
= 0; i
< queues
; i
++) {
1343 ncs
[i
]->peer
->link_down
= !up
;
1346 if (nc
->peer
->info
->link_status_changed
) {
1347 nc
->peer
->info
->link_status_changed(nc
->peer
);
1352 static void net_vm_change_state_handler(void *opaque
, bool running
,
1356 NetClientState
*tmp
;
1358 QTAILQ_FOREACH_SAFE(nc
, &net_clients
, next
, tmp
) {
1360 /* Flush queued packets and wake up backends. */
1361 if (nc
->peer
&& qemu_can_send_packet(nc
)) {
1362 qemu_flush_queued_packets(nc
->peer
);
1365 /* Complete all queued packets, to guarantee we don't modify
1366 * state later when VM is not running.
1368 qemu_flush_or_purge_queued_packets(nc
, true);
1373 void net_cleanup(void)
1377 /* We may del multiple entries during qemu_del_net_client(),
1378 * so QTAILQ_FOREACH_SAFE() is also not safe here.
1380 while (!QTAILQ_EMPTY(&net_clients
)) {
1381 nc
= QTAILQ_FIRST(&net_clients
);
1382 if (nc
->info
->type
== NET_CLIENT_DRIVER_NIC
) {
1383 qemu_del_nic(qemu_get_nic(nc
));
1385 qemu_del_net_client(nc
);
1389 qemu_del_vm_change_state_handler(net_change_state_entry
);
1392 void net_check_clients(void)
1397 net_hub_check_clients();
1399 QTAILQ_FOREACH(nc
, &net_clients
, next
) {
1401 warn_report("%s %s has no peer",
1402 nc
->info
->type
== NET_CLIENT_DRIVER_NIC
1408 /* Check that all NICs requested via -net nic actually got created.
1409 * NICs created via -device don't need to be checked here because
1410 * they are always instantiated.
1412 for (i
= 0; i
< MAX_NICS
; i
++) {
1413 NICInfo
*nd
= &nd_table
[i
];
1414 if (nd
->used
&& !nd
->instantiated
) {
1415 warn_report("requested NIC (%s, model %s) "
1416 "was not created (not supported by this machine?)",
1417 nd
->name
? nd
->name
: "anonymous",
1418 nd
->model
? nd
->model
: "unspecified");
1423 static int net_init_client(void *dummy
, QemuOpts
*opts
, Error
**errp
)
1425 return net_client_init(opts
, false, errp
);
1428 static int net_init_netdev(void *dummy
, QemuOpts
*opts
, Error
**errp
)
1430 const char *type
= qemu_opt_get(opts
, "type");
1432 if (type
&& is_help_option(type
)) {
1436 return net_client_init(opts
, true, errp
);
1439 /* For the convenience "--nic" parameter */
1440 static int net_param_nic(void *dummy
, QemuOpts
*opts
, Error
**errp
)
1447 type
= qemu_opt_get(opts
, "type");
1448 if (type
&& g_str_equal(type
, "none")) {
1449 return 0; /* Nothing to do, default_net is cleared in vl.c */
1452 idx
= nic_get_free_idx();
1453 if (idx
== -1 || nb_nics
>= MAX_NICS
) {
1454 error_setg(errp
, "no more on-board/default NIC slots available");
1459 qemu_opt_set(opts
, "type", "user", &error_abort
);
1462 ni
= &nd_table
[idx
];
1463 memset(ni
, 0, sizeof(*ni
));
1464 ni
->model
= qemu_opt_get_del(opts
, "model");
1466 /* Create an ID if the user did not specify one */
1467 nd_id
= g_strdup(qemu_opts_id(opts
));
1469 nd_id
= id_generate(ID_NET
);
1470 qemu_opts_set_id(opts
, nd_id
);
1473 /* Handle MAC address */
1474 mac
= qemu_opt_get_del(opts
, "mac");
1476 ret
= net_parse_macaddr(ni
->macaddr
.a
, mac
);
1479 error_setg(errp
, "invalid syntax for ethernet address");
1482 if (is_multicast_ether_addr(ni
->macaddr
.a
)) {
1483 error_setg(errp
, "NIC cannot have multicast MAC address");
1488 qemu_macaddr_default_if_unset(&ni
->macaddr
);
1490 ret
= net_client_init(opts
, true, errp
);
1492 ni
->netdev
= qemu_find_netdev(nd_id
);
1502 int net_init_clients(Error
**errp
)
1504 net_change_state_entry
=
1505 qemu_add_vm_change_state_handler(net_vm_change_state_handler
, NULL
);
1507 QTAILQ_INIT(&net_clients
);
1509 if (qemu_opts_foreach(qemu_find_opts("netdev"),
1510 net_init_netdev
, NULL
, errp
)) {
1514 if (qemu_opts_foreach(qemu_find_opts("nic"), net_param_nic
, NULL
, errp
)) {
1518 if (qemu_opts_foreach(qemu_find_opts("net"), net_init_client
, NULL
, errp
)) {
1525 int net_client_parse(QemuOptsList
*opts_list
, const char *optarg
)
1527 if (!qemu_opts_parse_noisily(opts_list
, optarg
, true)) {
1536 uint32_t net_crc32(const uint8_t *p
, int len
)
1543 for (i
= 0; i
< len
; i
++) {
1545 for (j
= 0; j
< 8; j
++) {
1546 carry
= ((crc
& 0x80000000L
) ? 1 : 0) ^ (b
& 0x01);
1550 crc
= ((crc
^ POLYNOMIAL_BE
) | carry
);
1558 uint32_t net_crc32_le(const uint8_t *p
, int len
)
1565 for (i
= 0; i
< len
; i
++) {
1567 for (j
= 0; j
< 8; j
++) {
1568 carry
= (crc
& 0x1) ^ (b
& 0x01);
1572 crc
^= POLYNOMIAL_LE
;
1580 QemuOptsList qemu_netdev_opts
= {
1582 .implied_opt_name
= "type",
1583 .head
= QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts
.head
),
1586 * no elements => accept any params
1587 * validation will happen later
1589 { /* end of list */ }
1593 QemuOptsList qemu_nic_opts
= {
1595 .implied_opt_name
= "type",
1596 .head
= QTAILQ_HEAD_INITIALIZER(qemu_nic_opts
.head
),
1599 * no elements => accept any params
1600 * validation will happen later
1602 { /* end of list */ }
1606 QemuOptsList qemu_net_opts
= {
1608 .implied_opt_name
= "type",
1609 .head
= QTAILQ_HEAD_INITIALIZER(qemu_net_opts
.head
),
1612 * no elements => accept any params
1613 * validation will happen later
1615 { /* end of list */ }
1619 void net_socket_rs_init(SocketReadState
*rs
,
1620 SocketReadStateFinalize
*finalize
,
1624 rs
->vnet_hdr
= vnet_hdr
;
1627 rs
->vnet_hdr_len
= 0;
1628 memset(rs
->buf
, 0, sizeof(rs
->buf
));
1629 rs
->finalize
= finalize
;
1637 int net_fill_rstate(SocketReadState
*rs
, const uint8_t *buf
, int size
)
1642 /* Reassemble a packet from the network.
1643 * 0 = getting length.
1644 * 1 = getting vnet header length.
1647 switch (rs
->state
) {
1653 memcpy(rs
->buf
+ rs
->index
, buf
, l
);
1657 if (rs
->index
== 4) {
1659 rs
->packet_len
= ntohl(*(uint32_t *)rs
->buf
);
1665 rs
->vnet_hdr_len
= 0;
1674 memcpy(rs
->buf
+ rs
->index
, buf
, l
);
1678 if (rs
->index
== 4) {
1679 /* got vnet header length */
1680 rs
->vnet_hdr_len
= ntohl(*(uint32_t *)rs
->buf
);
1686 l
= rs
->packet_len
- rs
->index
;
1690 if (rs
->index
+ l
<= sizeof(rs
->buf
)) {
1691 memcpy(rs
->buf
+ rs
->index
, buf
, l
);
1693 fprintf(stderr
, "serious error: oversized packet received,"
1694 "connection terminated.\n");
1695 rs
->index
= rs
->state
= 0;
1702 if (rs
->index
>= rs
->packet_len
) {
1705 assert(rs
->finalize
);