dump: Recognize "fd:" protocols on Windows hosts
[qemu/armbru.git] / hw / net / virtio-net.c
blobb85c7946a7d9375b676ed19c3b8e5a593babc7f5
1 /*
2 * Virtio Network Device
4 * Copyright IBM, Corp. 2007
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qemu/atomic.h"
16 #include "qemu/iov.h"
17 #include "qemu/log.h"
18 #include "qemu/main-loop.h"
19 #include "qemu/module.h"
20 #include "hw/virtio/virtio.h"
21 #include "net/net.h"
22 #include "net/checksum.h"
23 #include "net/tap.h"
24 #include "qemu/error-report.h"
25 #include "qemu/timer.h"
26 #include "qemu/option.h"
27 #include "qemu/option_int.h"
28 #include "qemu/config-file.h"
29 #include "qapi/qmp/qdict.h"
30 #include "hw/virtio/virtio-net.h"
31 #include "net/vhost_net.h"
32 #include "net/announce.h"
33 #include "hw/virtio/virtio-bus.h"
34 #include "qapi/error.h"
35 #include "qapi/qapi-events-net.h"
36 #include "hw/qdev-properties.h"
37 #include "qapi/qapi-types-migration.h"
38 #include "qapi/qapi-events-migration.h"
39 #include "hw/virtio/virtio-access.h"
40 #include "migration/misc.h"
41 #include "standard-headers/linux/ethtool.h"
42 #include "sysemu/sysemu.h"
43 #include "trace.h"
44 #include "monitor/qdev.h"
45 #include "hw/pci/pci_device.h"
46 #include "net_rx_pkt.h"
47 #include "hw/virtio/vhost.h"
48 #include "sysemu/qtest.h"
50 #define VIRTIO_NET_VM_VERSION 11
52 /* previously fixed value */
53 #define VIRTIO_NET_RX_QUEUE_DEFAULT_SIZE 256
54 #define VIRTIO_NET_TX_QUEUE_DEFAULT_SIZE 256
56 /* for now, only allow larger queue_pairs; with virtio-1, guest can downsize */
57 #define VIRTIO_NET_RX_QUEUE_MIN_SIZE VIRTIO_NET_RX_QUEUE_DEFAULT_SIZE
58 #define VIRTIO_NET_TX_QUEUE_MIN_SIZE VIRTIO_NET_TX_QUEUE_DEFAULT_SIZE
60 #define VIRTIO_NET_IP4_ADDR_SIZE 8 /* ipv4 saddr + daddr */
62 #define VIRTIO_NET_TCP_FLAG 0x3F
63 #define VIRTIO_NET_TCP_HDR_LENGTH 0xF000
65 /* IPv4 max payload, 16 bits in the header */
66 #define VIRTIO_NET_MAX_IP4_PAYLOAD (65535 - sizeof(struct ip_header))
67 #define VIRTIO_NET_MAX_TCP_PAYLOAD 65535
69 /* header length value in ip header without option */
70 #define VIRTIO_NET_IP4_HEADER_LENGTH 5
72 #define VIRTIO_NET_IP6_ADDR_SIZE 32 /* ipv6 saddr + daddr */
73 #define VIRTIO_NET_MAX_IP6_PAYLOAD VIRTIO_NET_MAX_TCP_PAYLOAD
75 /* Purge coalesced packets timer interval, This value affects the performance
76 a lot, and should be tuned carefully, '300000'(300us) is the recommended
77 value to pass the WHQL test, '50000' can gain 2x netperf throughput with
78 tso/gso/gro 'off'. */
79 #define VIRTIO_NET_RSC_DEFAULT_INTERVAL 300000
81 #define VIRTIO_NET_RSS_SUPPORTED_HASHES (VIRTIO_NET_RSS_HASH_TYPE_IPv4 | \
82 VIRTIO_NET_RSS_HASH_TYPE_TCPv4 | \
83 VIRTIO_NET_RSS_HASH_TYPE_UDPv4 | \
84 VIRTIO_NET_RSS_HASH_TYPE_IPv6 | \
85 VIRTIO_NET_RSS_HASH_TYPE_TCPv6 | \
86 VIRTIO_NET_RSS_HASH_TYPE_UDPv6 | \
87 VIRTIO_NET_RSS_HASH_TYPE_IP_EX | \
88 VIRTIO_NET_RSS_HASH_TYPE_TCP_EX | \
89 VIRTIO_NET_RSS_HASH_TYPE_UDP_EX)
91 static const VirtIOFeature feature_sizes[] = {
92 {.flags = 1ULL << VIRTIO_NET_F_MAC,
93 .end = endof(struct virtio_net_config, mac)},
94 {.flags = 1ULL << VIRTIO_NET_F_STATUS,
95 .end = endof(struct virtio_net_config, status)},
96 {.flags = 1ULL << VIRTIO_NET_F_MQ,
97 .end = endof(struct virtio_net_config, max_virtqueue_pairs)},
98 {.flags = 1ULL << VIRTIO_NET_F_MTU,
99 .end = endof(struct virtio_net_config, mtu)},
100 {.flags = 1ULL << VIRTIO_NET_F_SPEED_DUPLEX,
101 .end = endof(struct virtio_net_config, duplex)},
102 {.flags = (1ULL << VIRTIO_NET_F_RSS) | (1ULL << VIRTIO_NET_F_HASH_REPORT),
103 .end = endof(struct virtio_net_config, supported_hash_types)},
107 static const VirtIOConfigSizeParams cfg_size_params = {
108 .min_size = endof(struct virtio_net_config, mac),
109 .max_size = sizeof(struct virtio_net_config),
110 .feature_sizes = feature_sizes
113 static VirtIONetQueue *virtio_net_get_subqueue(NetClientState *nc)
115 VirtIONet *n = qemu_get_nic_opaque(nc);
117 return &n->vqs[nc->queue_index];
120 static int vq2q(int queue_index)
122 return queue_index / 2;
125 static void flush_or_purge_queued_packets(NetClientState *nc)
127 if (!nc->peer) {
128 return;
131 qemu_flush_or_purge_queued_packets(nc->peer, true);
132 assert(!virtio_net_get_subqueue(nc)->async_tx.elem);
135 /* TODO
136 * - we could suppress RX interrupt if we were so inclined.
139 static void virtio_net_get_config(VirtIODevice *vdev, uint8_t *config)
141 VirtIONet *n = VIRTIO_NET(vdev);
142 struct virtio_net_config netcfg;
143 NetClientState *nc = qemu_get_queue(n->nic);
144 static const MACAddr zero = { .a = { 0, 0, 0, 0, 0, 0 } };
146 int ret = 0;
147 memset(&netcfg, 0 , sizeof(struct virtio_net_config));
148 virtio_stw_p(vdev, &netcfg.status, n->status);
149 virtio_stw_p(vdev, &netcfg.max_virtqueue_pairs, n->max_queue_pairs);
150 virtio_stw_p(vdev, &netcfg.mtu, n->net_conf.mtu);
151 memcpy(netcfg.mac, n->mac, ETH_ALEN);
152 virtio_stl_p(vdev, &netcfg.speed, n->net_conf.speed);
153 netcfg.duplex = n->net_conf.duplex;
154 netcfg.rss_max_key_size = VIRTIO_NET_RSS_MAX_KEY_SIZE;
155 virtio_stw_p(vdev, &netcfg.rss_max_indirection_table_length,
156 virtio_host_has_feature(vdev, VIRTIO_NET_F_RSS) ?
157 VIRTIO_NET_RSS_MAX_TABLE_LEN : 1);
158 virtio_stl_p(vdev, &netcfg.supported_hash_types,
159 VIRTIO_NET_RSS_SUPPORTED_HASHES);
160 memcpy(config, &netcfg, n->config_size);
163 * Is this VDPA? No peer means not VDPA: there's no way to
164 * disconnect/reconnect a VDPA peer.
166 if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_VDPA) {
167 ret = vhost_net_get_config(get_vhost_net(nc->peer), (uint8_t *)&netcfg,
168 n->config_size);
169 if (ret == -1) {
170 return;
174 * Some NIC/kernel combinations present 0 as the mac address. As that
175 * is not a legal address, try to proceed with the address from the
176 * QEMU command line in the hope that the address has been configured
177 * correctly elsewhere - just not reported by the device.
179 if (memcmp(&netcfg.mac, &zero, sizeof(zero)) == 0) {
180 info_report("Zero hardware mac address detected. Ignoring.");
181 memcpy(netcfg.mac, n->mac, ETH_ALEN);
184 netcfg.status |= virtio_tswap16(vdev,
185 n->status & VIRTIO_NET_S_ANNOUNCE);
186 memcpy(config, &netcfg, n->config_size);
190 static void virtio_net_set_config(VirtIODevice *vdev, const uint8_t *config)
192 VirtIONet *n = VIRTIO_NET(vdev);
193 struct virtio_net_config netcfg = {};
194 NetClientState *nc = qemu_get_queue(n->nic);
196 memcpy(&netcfg, config, n->config_size);
198 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR) &&
199 !virtio_vdev_has_feature(vdev, VIRTIO_F_VERSION_1) &&
200 memcmp(netcfg.mac, n->mac, ETH_ALEN)) {
201 memcpy(n->mac, netcfg.mac, ETH_ALEN);
202 qemu_format_nic_info_str(qemu_get_queue(n->nic), n->mac);
206 * Is this VDPA? No peer means not VDPA: there's no way to
207 * disconnect/reconnect a VDPA peer.
209 if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_VDPA) {
210 vhost_net_set_config(get_vhost_net(nc->peer),
211 (uint8_t *)&netcfg, 0, n->config_size,
212 VHOST_SET_CONFIG_TYPE_FRONTEND);
216 static bool virtio_net_started(VirtIONet *n, uint8_t status)
218 VirtIODevice *vdev = VIRTIO_DEVICE(n);
219 return (status & VIRTIO_CONFIG_S_DRIVER_OK) &&
220 (n->status & VIRTIO_NET_S_LINK_UP) && vdev->vm_running;
223 static void virtio_net_announce_notify(VirtIONet *net)
225 VirtIODevice *vdev = VIRTIO_DEVICE(net);
226 trace_virtio_net_announce_notify();
228 net->status |= VIRTIO_NET_S_ANNOUNCE;
229 virtio_notify_config(vdev);
232 static void virtio_net_announce_timer(void *opaque)
234 VirtIONet *n = opaque;
235 trace_virtio_net_announce_timer(n->announce_timer.round);
237 n->announce_timer.round--;
238 virtio_net_announce_notify(n);
241 static void virtio_net_announce(NetClientState *nc)
243 VirtIONet *n = qemu_get_nic_opaque(nc);
244 VirtIODevice *vdev = VIRTIO_DEVICE(n);
247 * Make sure the virtio migration announcement timer isn't running
248 * If it is, let it trigger announcement so that we do not cause
249 * confusion.
251 if (n->announce_timer.round) {
252 return;
255 if (virtio_vdev_has_feature(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE) &&
256 virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) {
257 virtio_net_announce_notify(n);
261 static void virtio_net_vhost_status(VirtIONet *n, uint8_t status)
263 VirtIODevice *vdev = VIRTIO_DEVICE(n);
264 NetClientState *nc = qemu_get_queue(n->nic);
265 int queue_pairs = n->multiqueue ? n->max_queue_pairs : 1;
266 int cvq = virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) ?
267 n->max_ncs - n->max_queue_pairs : 0;
269 if (!get_vhost_net(nc->peer)) {
270 return;
273 if ((virtio_net_started(n, status) && !nc->peer->link_down) ==
274 !!n->vhost_started) {
275 return;
277 if (!n->vhost_started) {
278 int r, i;
280 if (n->needs_vnet_hdr_swap) {
281 error_report("backend does not support %s vnet headers; "
282 "falling back on userspace virtio",
283 virtio_is_big_endian(vdev) ? "BE" : "LE");
284 return;
287 /* Any packets outstanding? Purge them to avoid touching rings
288 * when vhost is running.
290 for (i = 0; i < queue_pairs; i++) {
291 NetClientState *qnc = qemu_get_subqueue(n->nic, i);
293 /* Purge both directions: TX and RX. */
294 qemu_net_queue_purge(qnc->peer->incoming_queue, qnc);
295 qemu_net_queue_purge(qnc->incoming_queue, qnc->peer);
298 if (virtio_has_feature(vdev->guest_features, VIRTIO_NET_F_MTU)) {
299 r = vhost_net_set_mtu(get_vhost_net(nc->peer), n->net_conf.mtu);
300 if (r < 0) {
301 error_report("%uBytes MTU not supported by the backend",
302 n->net_conf.mtu);
304 return;
308 n->vhost_started = 1;
309 r = vhost_net_start(vdev, n->nic->ncs, queue_pairs, cvq);
310 if (r < 0) {
311 error_report("unable to start vhost net: %d: "
312 "falling back on userspace virtio", -r);
313 n->vhost_started = 0;
315 } else {
316 vhost_net_stop(vdev, n->nic->ncs, queue_pairs, cvq);
317 n->vhost_started = 0;
321 static int virtio_net_set_vnet_endian_one(VirtIODevice *vdev,
322 NetClientState *peer,
323 bool enable)
325 if (virtio_is_big_endian(vdev)) {
326 return qemu_set_vnet_be(peer, enable);
327 } else {
328 return qemu_set_vnet_le(peer, enable);
332 static bool virtio_net_set_vnet_endian(VirtIODevice *vdev, NetClientState *ncs,
333 int queue_pairs, bool enable)
335 int i;
337 for (i = 0; i < queue_pairs; i++) {
338 if (virtio_net_set_vnet_endian_one(vdev, ncs[i].peer, enable) < 0 &&
339 enable) {
340 while (--i >= 0) {
341 virtio_net_set_vnet_endian_one(vdev, ncs[i].peer, false);
344 return true;
348 return false;
351 static void virtio_net_vnet_endian_status(VirtIONet *n, uint8_t status)
353 VirtIODevice *vdev = VIRTIO_DEVICE(n);
354 int queue_pairs = n->multiqueue ? n->max_queue_pairs : 1;
356 if (virtio_net_started(n, status)) {
357 /* Before using the device, we tell the network backend about the
358 * endianness to use when parsing vnet headers. If the backend
359 * can't do it, we fallback onto fixing the headers in the core
360 * virtio-net code.
362 n->needs_vnet_hdr_swap = virtio_net_set_vnet_endian(vdev, n->nic->ncs,
363 queue_pairs, true);
364 } else if (virtio_net_started(n, vdev->status)) {
365 /* After using the device, we need to reset the network backend to
366 * the default (guest native endianness), otherwise the guest may
367 * lose network connectivity if it is rebooted into a different
368 * endianness.
370 virtio_net_set_vnet_endian(vdev, n->nic->ncs, queue_pairs, false);
374 static void virtio_net_drop_tx_queue_data(VirtIODevice *vdev, VirtQueue *vq)
376 unsigned int dropped = virtqueue_drop_all(vq);
377 if (dropped) {
378 virtio_notify(vdev, vq);
382 static void virtio_net_set_status(struct VirtIODevice *vdev, uint8_t status)
384 VirtIONet *n = VIRTIO_NET(vdev);
385 VirtIONetQueue *q;
386 int i;
387 uint8_t queue_status;
389 virtio_net_vnet_endian_status(n, status);
390 virtio_net_vhost_status(n, status);
392 for (i = 0; i < n->max_queue_pairs; i++) {
393 NetClientState *ncs = qemu_get_subqueue(n->nic, i);
394 bool queue_started;
395 q = &n->vqs[i];
397 if ((!n->multiqueue && i != 0) || i >= n->curr_queue_pairs) {
398 queue_status = 0;
399 } else {
400 queue_status = status;
402 queue_started =
403 virtio_net_started(n, queue_status) && !n->vhost_started;
405 if (queue_started) {
406 qemu_flush_queued_packets(ncs);
409 if (!q->tx_waiting) {
410 continue;
413 if (queue_started) {
414 if (q->tx_timer) {
415 timer_mod(q->tx_timer,
416 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + n->tx_timeout);
417 } else {
418 qemu_bh_schedule(q->tx_bh);
420 } else {
421 if (q->tx_timer) {
422 timer_del(q->tx_timer);
423 } else {
424 qemu_bh_cancel(q->tx_bh);
426 if ((n->status & VIRTIO_NET_S_LINK_UP) == 0 &&
427 (queue_status & VIRTIO_CONFIG_S_DRIVER_OK) &&
428 vdev->vm_running) {
429 /* if tx is waiting we are likely have some packets in tx queue
430 * and disabled notification */
431 q->tx_waiting = 0;
432 virtio_queue_set_notification(q->tx_vq, 1);
433 virtio_net_drop_tx_queue_data(vdev, q->tx_vq);
439 static void virtio_net_set_link_status(NetClientState *nc)
441 VirtIONet *n = qemu_get_nic_opaque(nc);
442 VirtIODevice *vdev = VIRTIO_DEVICE(n);
443 uint16_t old_status = n->status;
445 if (nc->link_down)
446 n->status &= ~VIRTIO_NET_S_LINK_UP;
447 else
448 n->status |= VIRTIO_NET_S_LINK_UP;
450 if (n->status != old_status)
451 virtio_notify_config(vdev);
453 virtio_net_set_status(vdev, vdev->status);
456 static void rxfilter_notify(NetClientState *nc)
458 VirtIONet *n = qemu_get_nic_opaque(nc);
460 if (nc->rxfilter_notify_enabled) {
461 char *path = object_get_canonical_path(OBJECT(n->qdev));
462 qapi_event_send_nic_rx_filter_changed(n->netclient_name, path);
463 g_free(path);
465 /* disable event notification to avoid events flooding */
466 nc->rxfilter_notify_enabled = 0;
470 static intList *get_vlan_table(VirtIONet *n)
472 intList *list;
473 int i, j;
475 list = NULL;
476 for (i = 0; i < MAX_VLAN >> 5; i++) {
477 for (j = 0; n->vlans[i] && j <= 0x1f; j++) {
478 if (n->vlans[i] & (1U << j)) {
479 QAPI_LIST_PREPEND(list, (i << 5) + j);
484 return list;
487 static RxFilterInfo *virtio_net_query_rxfilter(NetClientState *nc)
489 VirtIONet *n = qemu_get_nic_opaque(nc);
490 VirtIODevice *vdev = VIRTIO_DEVICE(n);
491 RxFilterInfo *info;
492 strList *str_list;
493 int i;
495 info = g_malloc0(sizeof(*info));
496 info->name = g_strdup(nc->name);
497 info->promiscuous = n->promisc;
499 if (n->nouni) {
500 info->unicast = RX_STATE_NONE;
501 } else if (n->alluni) {
502 info->unicast = RX_STATE_ALL;
503 } else {
504 info->unicast = RX_STATE_NORMAL;
507 if (n->nomulti) {
508 info->multicast = RX_STATE_NONE;
509 } else if (n->allmulti) {
510 info->multicast = RX_STATE_ALL;
511 } else {
512 info->multicast = RX_STATE_NORMAL;
515 info->broadcast_allowed = n->nobcast;
516 info->multicast_overflow = n->mac_table.multi_overflow;
517 info->unicast_overflow = n->mac_table.uni_overflow;
519 info->main_mac = qemu_mac_strdup_printf(n->mac);
521 str_list = NULL;
522 for (i = 0; i < n->mac_table.first_multi; i++) {
523 QAPI_LIST_PREPEND(str_list,
524 qemu_mac_strdup_printf(n->mac_table.macs + i * ETH_ALEN));
526 info->unicast_table = str_list;
528 str_list = NULL;
529 for (i = n->mac_table.first_multi; i < n->mac_table.in_use; i++) {
530 QAPI_LIST_PREPEND(str_list,
531 qemu_mac_strdup_printf(n->mac_table.macs + i * ETH_ALEN));
533 info->multicast_table = str_list;
534 info->vlan_table = get_vlan_table(n);
536 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_VLAN)) {
537 info->vlan = RX_STATE_ALL;
538 } else if (!info->vlan_table) {
539 info->vlan = RX_STATE_NONE;
540 } else {
541 info->vlan = RX_STATE_NORMAL;
544 /* enable event notification after query */
545 nc->rxfilter_notify_enabled = 1;
547 return info;
550 static void virtio_net_queue_reset(VirtIODevice *vdev, uint32_t queue_index)
552 VirtIONet *n = VIRTIO_NET(vdev);
553 NetClientState *nc;
555 /* validate queue_index and skip for cvq */
556 if (queue_index >= n->max_queue_pairs * 2) {
557 return;
560 nc = qemu_get_subqueue(n->nic, vq2q(queue_index));
562 if (!nc->peer) {
563 return;
566 if (get_vhost_net(nc->peer) &&
567 nc->peer->info->type == NET_CLIENT_DRIVER_TAP) {
568 vhost_net_virtqueue_reset(vdev, nc, queue_index);
571 flush_or_purge_queued_packets(nc);
574 static void virtio_net_queue_enable(VirtIODevice *vdev, uint32_t queue_index)
576 VirtIONet *n = VIRTIO_NET(vdev);
577 NetClientState *nc;
578 int r;
580 /* validate queue_index and skip for cvq */
581 if (queue_index >= n->max_queue_pairs * 2) {
582 return;
585 nc = qemu_get_subqueue(n->nic, vq2q(queue_index));
587 if (!nc->peer || !vdev->vhost_started) {
588 return;
591 if (get_vhost_net(nc->peer) &&
592 nc->peer->info->type == NET_CLIENT_DRIVER_TAP) {
593 r = vhost_net_virtqueue_restart(vdev, nc, queue_index);
594 if (r < 0) {
595 error_report("unable to restart vhost net virtqueue: %d, "
596 "when resetting the queue", queue_index);
601 static void virtio_net_reset(VirtIODevice *vdev)
603 VirtIONet *n = VIRTIO_NET(vdev);
604 int i;
606 /* Reset back to compatibility mode */
607 n->promisc = 1;
608 n->allmulti = 0;
609 n->alluni = 0;
610 n->nomulti = 0;
611 n->nouni = 0;
612 n->nobcast = 0;
613 /* multiqueue is disabled by default */
614 n->curr_queue_pairs = 1;
615 timer_del(n->announce_timer.tm);
616 n->announce_timer.round = 0;
617 n->status &= ~VIRTIO_NET_S_ANNOUNCE;
619 /* Flush any MAC and VLAN filter table state */
620 n->mac_table.in_use = 0;
621 n->mac_table.first_multi = 0;
622 n->mac_table.multi_overflow = 0;
623 n->mac_table.uni_overflow = 0;
624 memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);
625 memcpy(&n->mac[0], &n->nic->conf->macaddr, sizeof(n->mac));
626 qemu_format_nic_info_str(qemu_get_queue(n->nic), n->mac);
627 memset(n->vlans, 0, MAX_VLAN >> 3);
629 /* Flush any async TX */
630 for (i = 0; i < n->max_queue_pairs; i++) {
631 flush_or_purge_queued_packets(qemu_get_subqueue(n->nic, i));
635 static void peer_test_vnet_hdr(VirtIONet *n)
637 NetClientState *nc = qemu_get_queue(n->nic);
638 if (!nc->peer) {
639 return;
642 n->has_vnet_hdr = qemu_has_vnet_hdr(nc->peer);
645 static int peer_has_vnet_hdr(VirtIONet *n)
647 return n->has_vnet_hdr;
650 static int peer_has_ufo(VirtIONet *n)
652 if (!peer_has_vnet_hdr(n))
653 return 0;
655 n->has_ufo = qemu_has_ufo(qemu_get_queue(n->nic)->peer);
657 return n->has_ufo;
660 static int peer_has_uso(VirtIONet *n)
662 if (!peer_has_vnet_hdr(n)) {
663 return 0;
666 return qemu_has_uso(qemu_get_queue(n->nic)->peer);
669 static void virtio_net_set_mrg_rx_bufs(VirtIONet *n, int mergeable_rx_bufs,
670 int version_1, int hash_report)
672 int i;
673 NetClientState *nc;
675 n->mergeable_rx_bufs = mergeable_rx_bufs;
677 if (version_1) {
678 n->guest_hdr_len = hash_report ?
679 sizeof(struct virtio_net_hdr_v1_hash) :
680 sizeof(struct virtio_net_hdr_mrg_rxbuf);
681 n->rss_data.populate_hash = !!hash_report;
682 } else {
683 n->guest_hdr_len = n->mergeable_rx_bufs ?
684 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
685 sizeof(struct virtio_net_hdr);
688 for (i = 0; i < n->max_queue_pairs; i++) {
689 nc = qemu_get_subqueue(n->nic, i);
691 if (peer_has_vnet_hdr(n) &&
692 qemu_has_vnet_hdr_len(nc->peer, n->guest_hdr_len)) {
693 qemu_set_vnet_hdr_len(nc->peer, n->guest_hdr_len);
694 n->host_hdr_len = n->guest_hdr_len;
699 static int virtio_net_max_tx_queue_size(VirtIONet *n)
701 NetClientState *peer = n->nic_conf.peers.ncs[0];
704 * Backends other than vhost-user or vhost-vdpa don't support max queue
705 * size.
707 if (!peer) {
708 return VIRTIO_NET_TX_QUEUE_DEFAULT_SIZE;
711 switch(peer->info->type) {
712 case NET_CLIENT_DRIVER_VHOST_USER:
713 case NET_CLIENT_DRIVER_VHOST_VDPA:
714 return VIRTQUEUE_MAX_SIZE;
715 default:
716 return VIRTIO_NET_TX_QUEUE_DEFAULT_SIZE;
720 static int peer_attach(VirtIONet *n, int index)
722 NetClientState *nc = qemu_get_subqueue(n->nic, index);
724 if (!nc->peer) {
725 return 0;
728 if (nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_USER) {
729 vhost_set_vring_enable(nc->peer, 1);
732 if (nc->peer->info->type != NET_CLIENT_DRIVER_TAP) {
733 return 0;
736 if (n->max_queue_pairs == 1) {
737 return 0;
740 return tap_enable(nc->peer);
743 static int peer_detach(VirtIONet *n, int index)
745 NetClientState *nc = qemu_get_subqueue(n->nic, index);
747 if (!nc->peer) {
748 return 0;
751 if (nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_USER) {
752 vhost_set_vring_enable(nc->peer, 0);
755 if (nc->peer->info->type != NET_CLIENT_DRIVER_TAP) {
756 return 0;
759 return tap_disable(nc->peer);
762 static void virtio_net_set_queue_pairs(VirtIONet *n)
764 int i;
765 int r;
767 if (n->nic->peer_deleted) {
768 return;
771 for (i = 0; i < n->max_queue_pairs; i++) {
772 if (i < n->curr_queue_pairs) {
773 r = peer_attach(n, i);
774 assert(!r);
775 } else {
776 r = peer_detach(n, i);
777 assert(!r);
782 static void virtio_net_set_multiqueue(VirtIONet *n, int multiqueue);
784 static uint64_t virtio_net_get_features(VirtIODevice *vdev, uint64_t features,
785 Error **errp)
787 VirtIONet *n = VIRTIO_NET(vdev);
788 NetClientState *nc = qemu_get_queue(n->nic);
790 /* Firstly sync all virtio-net possible supported features */
791 features |= n->host_features;
793 virtio_add_feature(&features, VIRTIO_NET_F_MAC);
795 if (!peer_has_vnet_hdr(n)) {
796 virtio_clear_feature(&features, VIRTIO_NET_F_CSUM);
797 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_TSO4);
798 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_TSO6);
799 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_ECN);
801 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_CSUM);
802 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_TSO4);
803 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_TSO6);
804 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_ECN);
806 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_USO);
807 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_USO4);
808 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_USO6);
810 virtio_clear_feature(&features, VIRTIO_NET_F_HASH_REPORT);
813 if (!peer_has_vnet_hdr(n) || !peer_has_ufo(n)) {
814 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_UFO);
815 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_UFO);
818 if (!peer_has_uso(n)) {
819 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_USO);
820 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_USO4);
821 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_USO6);
824 if (!get_vhost_net(nc->peer)) {
825 return features;
828 if (!ebpf_rss_is_loaded(&n->ebpf_rss)) {
829 virtio_clear_feature(&features, VIRTIO_NET_F_RSS);
831 features = vhost_net_get_features(get_vhost_net(nc->peer), features);
832 vdev->backend_features = features;
834 if (n->mtu_bypass_backend &&
835 (n->host_features & 1ULL << VIRTIO_NET_F_MTU)) {
836 features |= (1ULL << VIRTIO_NET_F_MTU);
840 * Since GUEST_ANNOUNCE is emulated the feature bit could be set without
841 * enabled. This happens in the vDPA case.
843 * Make sure the feature set is not incoherent, as the driver could refuse
844 * to start.
846 * TODO: QEMU is able to emulate a CVQ just for guest_announce purposes,
847 * helping guest to notify the new location with vDPA devices that does not
848 * support it.
850 if (!virtio_has_feature(vdev->backend_features, VIRTIO_NET_F_CTRL_VQ)) {
851 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_ANNOUNCE);
854 return features;
857 static uint64_t virtio_net_bad_features(VirtIODevice *vdev)
859 uint64_t features = 0;
861 /* Linux kernel 2.6.25. It understood MAC (as everyone must),
862 * but also these: */
863 virtio_add_feature(&features, VIRTIO_NET_F_MAC);
864 virtio_add_feature(&features, VIRTIO_NET_F_CSUM);
865 virtio_add_feature(&features, VIRTIO_NET_F_HOST_TSO4);
866 virtio_add_feature(&features, VIRTIO_NET_F_HOST_TSO6);
867 virtio_add_feature(&features, VIRTIO_NET_F_HOST_ECN);
869 return features;
872 static void virtio_net_apply_guest_offloads(VirtIONet *n)
874 qemu_set_offload(qemu_get_queue(n->nic)->peer,
875 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_CSUM)),
876 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_TSO4)),
877 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_TSO6)),
878 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_ECN)),
879 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_UFO)),
880 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_USO4)),
881 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_USO6)));
884 static uint64_t virtio_net_guest_offloads_by_features(uint64_t features)
886 static const uint64_t guest_offloads_mask =
887 (1ULL << VIRTIO_NET_F_GUEST_CSUM) |
888 (1ULL << VIRTIO_NET_F_GUEST_TSO4) |
889 (1ULL << VIRTIO_NET_F_GUEST_TSO6) |
890 (1ULL << VIRTIO_NET_F_GUEST_ECN) |
891 (1ULL << VIRTIO_NET_F_GUEST_UFO) |
892 (1ULL << VIRTIO_NET_F_GUEST_USO4) |
893 (1ULL << VIRTIO_NET_F_GUEST_USO6);
895 return guest_offloads_mask & features;
898 uint64_t virtio_net_supported_guest_offloads(const VirtIONet *n)
900 VirtIODevice *vdev = VIRTIO_DEVICE(n);
901 return virtio_net_guest_offloads_by_features(vdev->guest_features);
904 typedef struct {
905 VirtIONet *n;
906 DeviceState *dev;
907 } FailoverDevice;
910 * Set the failover primary device
912 * @opaque: FailoverId to setup
913 * @opts: opts for device we are handling
914 * @errp: returns an error if this function fails
916 static int failover_set_primary(DeviceState *dev, void *opaque)
918 FailoverDevice *fdev = opaque;
919 PCIDevice *pci_dev = (PCIDevice *)
920 object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE);
922 if (!pci_dev) {
923 return 0;
926 if (!g_strcmp0(pci_dev->failover_pair_id, fdev->n->netclient_name)) {
927 fdev->dev = dev;
928 return 1;
931 return 0;
935 * Find the primary device for this failover virtio-net
937 * @n: VirtIONet device
938 * @errp: returns an error if this function fails
940 static DeviceState *failover_find_primary_device(VirtIONet *n)
942 FailoverDevice fdev = {
943 .n = n,
946 qbus_walk_children(sysbus_get_default(), failover_set_primary, NULL,
947 NULL, NULL, &fdev);
948 return fdev.dev;
951 static void failover_add_primary(VirtIONet *n, Error **errp)
953 Error *err = NULL;
954 DeviceState *dev = failover_find_primary_device(n);
956 if (dev) {
957 return;
960 if (!n->primary_opts) {
961 error_setg(errp, "Primary device not found");
962 error_append_hint(errp, "Virtio-net failover will not work. Make "
963 "sure primary device has parameter"
964 " failover_pair_id=%s\n", n->netclient_name);
965 return;
968 dev = qdev_device_add_from_qdict(n->primary_opts,
969 n->primary_opts_from_json,
970 &err);
971 if (err) {
972 qobject_unref(n->primary_opts);
973 n->primary_opts = NULL;
974 } else {
975 object_unref(OBJECT(dev));
977 error_propagate(errp, err);
980 static void virtio_net_set_features(VirtIODevice *vdev, uint64_t features)
982 VirtIONet *n = VIRTIO_NET(vdev);
983 Error *err = NULL;
984 int i;
986 if (n->mtu_bypass_backend &&
987 !virtio_has_feature(vdev->backend_features, VIRTIO_NET_F_MTU)) {
988 features &= ~(1ULL << VIRTIO_NET_F_MTU);
991 virtio_net_set_multiqueue(n,
992 virtio_has_feature(features, VIRTIO_NET_F_RSS) ||
993 virtio_has_feature(features, VIRTIO_NET_F_MQ));
995 virtio_net_set_mrg_rx_bufs(n,
996 virtio_has_feature(features,
997 VIRTIO_NET_F_MRG_RXBUF),
998 virtio_has_feature(features,
999 VIRTIO_F_VERSION_1),
1000 virtio_has_feature(features,
1001 VIRTIO_NET_F_HASH_REPORT));
1003 n->rsc4_enabled = virtio_has_feature(features, VIRTIO_NET_F_RSC_EXT) &&
1004 virtio_has_feature(features, VIRTIO_NET_F_GUEST_TSO4);
1005 n->rsc6_enabled = virtio_has_feature(features, VIRTIO_NET_F_RSC_EXT) &&
1006 virtio_has_feature(features, VIRTIO_NET_F_GUEST_TSO6);
1007 n->rss_data.redirect = virtio_has_feature(features, VIRTIO_NET_F_RSS);
1009 if (n->has_vnet_hdr) {
1010 n->curr_guest_offloads =
1011 virtio_net_guest_offloads_by_features(features);
1012 virtio_net_apply_guest_offloads(n);
1015 for (i = 0; i < n->max_queue_pairs; i++) {
1016 NetClientState *nc = qemu_get_subqueue(n->nic, i);
1018 if (!get_vhost_net(nc->peer)) {
1019 continue;
1021 vhost_net_ack_features(get_vhost_net(nc->peer), features);
1024 * keep acked_features in NetVhostUserState up-to-date so it
1025 * can't miss any features configured by guest virtio driver.
1027 vhost_net_save_acked_features(nc->peer);
1030 if (!virtio_has_feature(features, VIRTIO_NET_F_CTRL_VLAN)) {
1031 memset(n->vlans, 0xff, MAX_VLAN >> 3);
1034 if (virtio_has_feature(features, VIRTIO_NET_F_STANDBY)) {
1035 qapi_event_send_failover_negotiated(n->netclient_name);
1036 qatomic_set(&n->failover_primary_hidden, false);
1037 failover_add_primary(n, &err);
1038 if (err) {
1039 if (!qtest_enabled()) {
1040 warn_report_err(err);
1041 } else {
1042 error_free(err);
1048 static int virtio_net_handle_rx_mode(VirtIONet *n, uint8_t cmd,
1049 struct iovec *iov, unsigned int iov_cnt)
1051 uint8_t on;
1052 size_t s;
1053 NetClientState *nc = qemu_get_queue(n->nic);
1055 s = iov_to_buf(iov, iov_cnt, 0, &on, sizeof(on));
1056 if (s != sizeof(on)) {
1057 return VIRTIO_NET_ERR;
1060 if (cmd == VIRTIO_NET_CTRL_RX_PROMISC) {
1061 n->promisc = on;
1062 } else if (cmd == VIRTIO_NET_CTRL_RX_ALLMULTI) {
1063 n->allmulti = on;
1064 } else if (cmd == VIRTIO_NET_CTRL_RX_ALLUNI) {
1065 n->alluni = on;
1066 } else if (cmd == VIRTIO_NET_CTRL_RX_NOMULTI) {
1067 n->nomulti = on;
1068 } else if (cmd == VIRTIO_NET_CTRL_RX_NOUNI) {
1069 n->nouni = on;
1070 } else if (cmd == VIRTIO_NET_CTRL_RX_NOBCAST) {
1071 n->nobcast = on;
1072 } else {
1073 return VIRTIO_NET_ERR;
1076 rxfilter_notify(nc);
1078 return VIRTIO_NET_OK;
1081 static int virtio_net_handle_offloads(VirtIONet *n, uint8_t cmd,
1082 struct iovec *iov, unsigned int iov_cnt)
1084 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1085 uint64_t offloads;
1086 size_t s;
1088 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)) {
1089 return VIRTIO_NET_ERR;
1092 s = iov_to_buf(iov, iov_cnt, 0, &offloads, sizeof(offloads));
1093 if (s != sizeof(offloads)) {
1094 return VIRTIO_NET_ERR;
1097 if (cmd == VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET) {
1098 uint64_t supported_offloads;
1100 offloads = virtio_ldq_p(vdev, &offloads);
1102 if (!n->has_vnet_hdr) {
1103 return VIRTIO_NET_ERR;
1106 n->rsc4_enabled = virtio_has_feature(offloads, VIRTIO_NET_F_RSC_EXT) &&
1107 virtio_has_feature(offloads, VIRTIO_NET_F_GUEST_TSO4);
1108 n->rsc6_enabled = virtio_has_feature(offloads, VIRTIO_NET_F_RSC_EXT) &&
1109 virtio_has_feature(offloads, VIRTIO_NET_F_GUEST_TSO6);
1110 virtio_clear_feature(&offloads, VIRTIO_NET_F_RSC_EXT);
1112 supported_offloads = virtio_net_supported_guest_offloads(n);
1113 if (offloads & ~supported_offloads) {
1114 return VIRTIO_NET_ERR;
1117 n->curr_guest_offloads = offloads;
1118 virtio_net_apply_guest_offloads(n);
1120 return VIRTIO_NET_OK;
1121 } else {
1122 return VIRTIO_NET_ERR;
1126 static int virtio_net_handle_mac(VirtIONet *n, uint8_t cmd,
1127 struct iovec *iov, unsigned int iov_cnt)
1129 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1130 struct virtio_net_ctrl_mac mac_data;
1131 size_t s;
1132 NetClientState *nc = qemu_get_queue(n->nic);
1134 if (cmd == VIRTIO_NET_CTRL_MAC_ADDR_SET) {
1135 if (iov_size(iov, iov_cnt) != sizeof(n->mac)) {
1136 return VIRTIO_NET_ERR;
1138 s = iov_to_buf(iov, iov_cnt, 0, &n->mac, sizeof(n->mac));
1139 assert(s == sizeof(n->mac));
1140 qemu_format_nic_info_str(qemu_get_queue(n->nic), n->mac);
1141 rxfilter_notify(nc);
1143 return VIRTIO_NET_OK;
1146 if (cmd != VIRTIO_NET_CTRL_MAC_TABLE_SET) {
1147 return VIRTIO_NET_ERR;
1150 int in_use = 0;
1151 int first_multi = 0;
1152 uint8_t uni_overflow = 0;
1153 uint8_t multi_overflow = 0;
1154 uint8_t *macs = g_malloc0(MAC_TABLE_ENTRIES * ETH_ALEN);
1156 s = iov_to_buf(iov, iov_cnt, 0, &mac_data.entries,
1157 sizeof(mac_data.entries));
1158 mac_data.entries = virtio_ldl_p(vdev, &mac_data.entries);
1159 if (s != sizeof(mac_data.entries)) {
1160 goto error;
1162 iov_discard_front(&iov, &iov_cnt, s);
1164 if (mac_data.entries * ETH_ALEN > iov_size(iov, iov_cnt)) {
1165 goto error;
1168 if (mac_data.entries <= MAC_TABLE_ENTRIES) {
1169 s = iov_to_buf(iov, iov_cnt, 0, macs,
1170 mac_data.entries * ETH_ALEN);
1171 if (s != mac_data.entries * ETH_ALEN) {
1172 goto error;
1174 in_use += mac_data.entries;
1175 } else {
1176 uni_overflow = 1;
1179 iov_discard_front(&iov, &iov_cnt, mac_data.entries * ETH_ALEN);
1181 first_multi = in_use;
1183 s = iov_to_buf(iov, iov_cnt, 0, &mac_data.entries,
1184 sizeof(mac_data.entries));
1185 mac_data.entries = virtio_ldl_p(vdev, &mac_data.entries);
1186 if (s != sizeof(mac_data.entries)) {
1187 goto error;
1190 iov_discard_front(&iov, &iov_cnt, s);
1192 if (mac_data.entries * ETH_ALEN != iov_size(iov, iov_cnt)) {
1193 goto error;
1196 if (mac_data.entries <= MAC_TABLE_ENTRIES - in_use) {
1197 s = iov_to_buf(iov, iov_cnt, 0, &macs[in_use * ETH_ALEN],
1198 mac_data.entries * ETH_ALEN);
1199 if (s != mac_data.entries * ETH_ALEN) {
1200 goto error;
1202 in_use += mac_data.entries;
1203 } else {
1204 multi_overflow = 1;
1207 n->mac_table.in_use = in_use;
1208 n->mac_table.first_multi = first_multi;
1209 n->mac_table.uni_overflow = uni_overflow;
1210 n->mac_table.multi_overflow = multi_overflow;
1211 memcpy(n->mac_table.macs, macs, MAC_TABLE_ENTRIES * ETH_ALEN);
1212 g_free(macs);
1213 rxfilter_notify(nc);
1215 return VIRTIO_NET_OK;
1217 error:
1218 g_free(macs);
1219 return VIRTIO_NET_ERR;
1222 static int virtio_net_handle_vlan_table(VirtIONet *n, uint8_t cmd,
1223 struct iovec *iov, unsigned int iov_cnt)
1225 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1226 uint16_t vid;
1227 size_t s;
1228 NetClientState *nc = qemu_get_queue(n->nic);
1230 s = iov_to_buf(iov, iov_cnt, 0, &vid, sizeof(vid));
1231 vid = virtio_lduw_p(vdev, &vid);
1232 if (s != sizeof(vid)) {
1233 return VIRTIO_NET_ERR;
1236 if (vid >= MAX_VLAN)
1237 return VIRTIO_NET_ERR;
1239 if (cmd == VIRTIO_NET_CTRL_VLAN_ADD)
1240 n->vlans[vid >> 5] |= (1U << (vid & 0x1f));
1241 else if (cmd == VIRTIO_NET_CTRL_VLAN_DEL)
1242 n->vlans[vid >> 5] &= ~(1U << (vid & 0x1f));
1243 else
1244 return VIRTIO_NET_ERR;
1246 rxfilter_notify(nc);
1248 return VIRTIO_NET_OK;
1251 static int virtio_net_handle_announce(VirtIONet *n, uint8_t cmd,
1252 struct iovec *iov, unsigned int iov_cnt)
1254 trace_virtio_net_handle_announce(n->announce_timer.round);
1255 if (cmd == VIRTIO_NET_CTRL_ANNOUNCE_ACK &&
1256 n->status & VIRTIO_NET_S_ANNOUNCE) {
1257 n->status &= ~VIRTIO_NET_S_ANNOUNCE;
1258 if (n->announce_timer.round) {
1259 qemu_announce_timer_step(&n->announce_timer);
1261 return VIRTIO_NET_OK;
1262 } else {
1263 return VIRTIO_NET_ERR;
1267 static void virtio_net_detach_epbf_rss(VirtIONet *n);
1269 static void virtio_net_disable_rss(VirtIONet *n)
1271 if (n->rss_data.enabled) {
1272 trace_virtio_net_rss_disable();
1274 n->rss_data.enabled = false;
1276 virtio_net_detach_epbf_rss(n);
1279 static bool virtio_net_attach_ebpf_to_backend(NICState *nic, int prog_fd)
1281 NetClientState *nc = qemu_get_peer(qemu_get_queue(nic), 0);
1282 if (nc == NULL || nc->info->set_steering_ebpf == NULL) {
1283 return false;
1286 return nc->info->set_steering_ebpf(nc, prog_fd);
1289 static void rss_data_to_rss_config(struct VirtioNetRssData *data,
1290 struct EBPFRSSConfig *config)
1292 config->redirect = data->redirect;
1293 config->populate_hash = data->populate_hash;
1294 config->hash_types = data->hash_types;
1295 config->indirections_len = data->indirections_len;
1296 config->default_queue = data->default_queue;
1299 static bool virtio_net_attach_epbf_rss(VirtIONet *n)
1301 struct EBPFRSSConfig config = {};
1303 if (!ebpf_rss_is_loaded(&n->ebpf_rss)) {
1304 return false;
1307 rss_data_to_rss_config(&n->rss_data, &config);
1309 if (!ebpf_rss_set_all(&n->ebpf_rss, &config,
1310 n->rss_data.indirections_table, n->rss_data.key)) {
1311 return false;
1314 if (!virtio_net_attach_ebpf_to_backend(n->nic, n->ebpf_rss.program_fd)) {
1315 return false;
1318 return true;
1321 static void virtio_net_detach_epbf_rss(VirtIONet *n)
1323 virtio_net_attach_ebpf_to_backend(n->nic, -1);
1326 static bool virtio_net_load_ebpf(VirtIONet *n)
1328 if (!virtio_net_attach_ebpf_to_backend(n->nic, -1)) {
1329 /* backend doesn't support steering ebpf */
1330 return false;
1333 return ebpf_rss_load(&n->ebpf_rss);
1336 static void virtio_net_unload_ebpf(VirtIONet *n)
1338 virtio_net_attach_ebpf_to_backend(n->nic, -1);
1339 ebpf_rss_unload(&n->ebpf_rss);
1342 static uint16_t virtio_net_handle_rss(VirtIONet *n,
1343 struct iovec *iov,
1344 unsigned int iov_cnt,
1345 bool do_rss)
1347 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1348 struct virtio_net_rss_config cfg;
1349 size_t s, offset = 0, size_get;
1350 uint16_t queue_pairs, i;
1351 struct {
1352 uint16_t us;
1353 uint8_t b;
1354 } QEMU_PACKED temp;
1355 const char *err_msg = "";
1356 uint32_t err_value = 0;
1358 if (do_rss && !virtio_vdev_has_feature(vdev, VIRTIO_NET_F_RSS)) {
1359 err_msg = "RSS is not negotiated";
1360 goto error;
1362 if (!do_rss && !virtio_vdev_has_feature(vdev, VIRTIO_NET_F_HASH_REPORT)) {
1363 err_msg = "Hash report is not negotiated";
1364 goto error;
1366 size_get = offsetof(struct virtio_net_rss_config, indirection_table);
1367 s = iov_to_buf(iov, iov_cnt, offset, &cfg, size_get);
1368 if (s != size_get) {
1369 err_msg = "Short command buffer";
1370 err_value = (uint32_t)s;
1371 goto error;
1373 n->rss_data.hash_types = virtio_ldl_p(vdev, &cfg.hash_types);
1374 n->rss_data.indirections_len =
1375 virtio_lduw_p(vdev, &cfg.indirection_table_mask);
1376 n->rss_data.indirections_len++;
1377 if (!do_rss) {
1378 n->rss_data.indirections_len = 1;
1380 if (!is_power_of_2(n->rss_data.indirections_len)) {
1381 err_msg = "Invalid size of indirection table";
1382 err_value = n->rss_data.indirections_len;
1383 goto error;
1385 if (n->rss_data.indirections_len > VIRTIO_NET_RSS_MAX_TABLE_LEN) {
1386 err_msg = "Too large indirection table";
1387 err_value = n->rss_data.indirections_len;
1388 goto error;
1390 n->rss_data.default_queue = do_rss ?
1391 virtio_lduw_p(vdev, &cfg.unclassified_queue) : 0;
1392 if (n->rss_data.default_queue >= n->max_queue_pairs) {
1393 err_msg = "Invalid default queue";
1394 err_value = n->rss_data.default_queue;
1395 goto error;
1397 offset += size_get;
1398 size_get = sizeof(uint16_t) * n->rss_data.indirections_len;
1399 g_free(n->rss_data.indirections_table);
1400 n->rss_data.indirections_table = g_malloc(size_get);
1401 if (!n->rss_data.indirections_table) {
1402 err_msg = "Can't allocate indirections table";
1403 err_value = n->rss_data.indirections_len;
1404 goto error;
1406 s = iov_to_buf(iov, iov_cnt, offset,
1407 n->rss_data.indirections_table, size_get);
1408 if (s != size_get) {
1409 err_msg = "Short indirection table buffer";
1410 err_value = (uint32_t)s;
1411 goto error;
1413 for (i = 0; i < n->rss_data.indirections_len; ++i) {
1414 uint16_t val = n->rss_data.indirections_table[i];
1415 n->rss_data.indirections_table[i] = virtio_lduw_p(vdev, &val);
1417 offset += size_get;
1418 size_get = sizeof(temp);
1419 s = iov_to_buf(iov, iov_cnt, offset, &temp, size_get);
1420 if (s != size_get) {
1421 err_msg = "Can't get queue_pairs";
1422 err_value = (uint32_t)s;
1423 goto error;
1425 queue_pairs = do_rss ? virtio_lduw_p(vdev, &temp.us) : n->curr_queue_pairs;
1426 if (queue_pairs == 0 || queue_pairs > n->max_queue_pairs) {
1427 err_msg = "Invalid number of queue_pairs";
1428 err_value = queue_pairs;
1429 goto error;
1431 if (temp.b > VIRTIO_NET_RSS_MAX_KEY_SIZE) {
1432 err_msg = "Invalid key size";
1433 err_value = temp.b;
1434 goto error;
1436 if (!temp.b && n->rss_data.hash_types) {
1437 err_msg = "No key provided";
1438 err_value = 0;
1439 goto error;
1441 if (!temp.b && !n->rss_data.hash_types) {
1442 virtio_net_disable_rss(n);
1443 return queue_pairs;
1445 offset += size_get;
1446 size_get = temp.b;
1447 s = iov_to_buf(iov, iov_cnt, offset, n->rss_data.key, size_get);
1448 if (s != size_get) {
1449 err_msg = "Can get key buffer";
1450 err_value = (uint32_t)s;
1451 goto error;
1453 n->rss_data.enabled = true;
1455 if (!n->rss_data.populate_hash) {
1456 if (!virtio_net_attach_epbf_rss(n)) {
1457 /* EBPF must be loaded for vhost */
1458 if (get_vhost_net(qemu_get_queue(n->nic)->peer)) {
1459 warn_report("Can't load eBPF RSS for vhost");
1460 goto error;
1462 /* fallback to software RSS */
1463 warn_report("Can't load eBPF RSS - fallback to software RSS");
1464 n->rss_data.enabled_software_rss = true;
1466 } else {
1467 /* use software RSS for hash populating */
1468 /* and detach eBPF if was loaded before */
1469 virtio_net_detach_epbf_rss(n);
1470 n->rss_data.enabled_software_rss = true;
1473 trace_virtio_net_rss_enable(n->rss_data.hash_types,
1474 n->rss_data.indirections_len,
1475 temp.b);
1476 return queue_pairs;
1477 error:
1478 trace_virtio_net_rss_error(err_msg, err_value);
1479 virtio_net_disable_rss(n);
1480 return 0;
1483 static int virtio_net_handle_mq(VirtIONet *n, uint8_t cmd,
1484 struct iovec *iov, unsigned int iov_cnt)
1486 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1487 uint16_t queue_pairs;
1488 NetClientState *nc = qemu_get_queue(n->nic);
1490 virtio_net_disable_rss(n);
1491 if (cmd == VIRTIO_NET_CTRL_MQ_HASH_CONFIG) {
1492 queue_pairs = virtio_net_handle_rss(n, iov, iov_cnt, false);
1493 return queue_pairs ? VIRTIO_NET_OK : VIRTIO_NET_ERR;
1495 if (cmd == VIRTIO_NET_CTRL_MQ_RSS_CONFIG) {
1496 queue_pairs = virtio_net_handle_rss(n, iov, iov_cnt, true);
1497 } else if (cmd == VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET) {
1498 struct virtio_net_ctrl_mq mq;
1499 size_t s;
1500 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_MQ)) {
1501 return VIRTIO_NET_ERR;
1503 s = iov_to_buf(iov, iov_cnt, 0, &mq, sizeof(mq));
1504 if (s != sizeof(mq)) {
1505 return VIRTIO_NET_ERR;
1507 queue_pairs = virtio_lduw_p(vdev, &mq.virtqueue_pairs);
1509 } else {
1510 return VIRTIO_NET_ERR;
1513 if (queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
1514 queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
1515 queue_pairs > n->max_queue_pairs ||
1516 !n->multiqueue) {
1517 return VIRTIO_NET_ERR;
1520 n->curr_queue_pairs = queue_pairs;
1521 if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_VDPA) {
1523 * Avoid updating the backend for a vdpa device: We're only interested
1524 * in updating the device model queues.
1526 return VIRTIO_NET_OK;
1528 /* stop the backend before changing the number of queue_pairs to avoid handling a
1529 * disabled queue */
1530 virtio_net_set_status(vdev, vdev->status);
1531 virtio_net_set_queue_pairs(n);
1533 return VIRTIO_NET_OK;
1536 size_t virtio_net_handle_ctrl_iov(VirtIODevice *vdev,
1537 const struct iovec *in_sg, unsigned in_num,
1538 const struct iovec *out_sg,
1539 unsigned out_num)
1541 VirtIONet *n = VIRTIO_NET(vdev);
1542 struct virtio_net_ctrl_hdr ctrl;
1543 virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
1544 size_t s;
1545 struct iovec *iov, *iov2;
1547 if (iov_size(in_sg, in_num) < sizeof(status) ||
1548 iov_size(out_sg, out_num) < sizeof(ctrl)) {
1549 virtio_error(vdev, "virtio-net ctrl missing headers");
1550 return 0;
1553 iov2 = iov = g_memdup2(out_sg, sizeof(struct iovec) * out_num);
1554 s = iov_to_buf(iov, out_num, 0, &ctrl, sizeof(ctrl));
1555 iov_discard_front(&iov, &out_num, sizeof(ctrl));
1556 if (s != sizeof(ctrl)) {
1557 status = VIRTIO_NET_ERR;
1558 } else if (ctrl.class == VIRTIO_NET_CTRL_RX) {
1559 status = virtio_net_handle_rx_mode(n, ctrl.cmd, iov, out_num);
1560 } else if (ctrl.class == VIRTIO_NET_CTRL_MAC) {
1561 status = virtio_net_handle_mac(n, ctrl.cmd, iov, out_num);
1562 } else if (ctrl.class == VIRTIO_NET_CTRL_VLAN) {
1563 status = virtio_net_handle_vlan_table(n, ctrl.cmd, iov, out_num);
1564 } else if (ctrl.class == VIRTIO_NET_CTRL_ANNOUNCE) {
1565 status = virtio_net_handle_announce(n, ctrl.cmd, iov, out_num);
1566 } else if (ctrl.class == VIRTIO_NET_CTRL_MQ) {
1567 status = virtio_net_handle_mq(n, ctrl.cmd, iov, out_num);
1568 } else if (ctrl.class == VIRTIO_NET_CTRL_GUEST_OFFLOADS) {
1569 status = virtio_net_handle_offloads(n, ctrl.cmd, iov, out_num);
1572 s = iov_from_buf(in_sg, in_num, 0, &status, sizeof(status));
1573 assert(s == sizeof(status));
1575 g_free(iov2);
1576 return sizeof(status);
1579 static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
1581 VirtQueueElement *elem;
1583 for (;;) {
1584 size_t written;
1585 elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
1586 if (!elem) {
1587 break;
1590 written = virtio_net_handle_ctrl_iov(vdev, elem->in_sg, elem->in_num,
1591 elem->out_sg, elem->out_num);
1592 if (written > 0) {
1593 virtqueue_push(vq, elem, written);
1594 virtio_notify(vdev, vq);
1595 g_free(elem);
1596 } else {
1597 virtqueue_detach_element(vq, elem, 0);
1598 g_free(elem);
1599 break;
1604 /* RX */
1606 static void virtio_net_handle_rx(VirtIODevice *vdev, VirtQueue *vq)
1608 VirtIONet *n = VIRTIO_NET(vdev);
1609 int queue_index = vq2q(virtio_get_queue_index(vq));
1611 qemu_flush_queued_packets(qemu_get_subqueue(n->nic, queue_index));
1614 static bool virtio_net_can_receive(NetClientState *nc)
1616 VirtIONet *n = qemu_get_nic_opaque(nc);
1617 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1618 VirtIONetQueue *q = virtio_net_get_subqueue(nc);
1620 if (!vdev->vm_running) {
1621 return false;
1624 if (nc->queue_index >= n->curr_queue_pairs) {
1625 return false;
1628 if (!virtio_queue_ready(q->rx_vq) ||
1629 !(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK)) {
1630 return false;
1633 return true;
1636 static int virtio_net_has_buffers(VirtIONetQueue *q, int bufsize)
1638 VirtIONet *n = q->n;
1639 if (virtio_queue_empty(q->rx_vq) ||
1640 (n->mergeable_rx_bufs &&
1641 !virtqueue_avail_bytes(q->rx_vq, bufsize, 0))) {
1642 virtio_queue_set_notification(q->rx_vq, 1);
1644 /* To avoid a race condition where the guest has made some buffers
1645 * available after the above check but before notification was
1646 * enabled, check for available buffers again.
1648 if (virtio_queue_empty(q->rx_vq) ||
1649 (n->mergeable_rx_bufs &&
1650 !virtqueue_avail_bytes(q->rx_vq, bufsize, 0))) {
1651 return 0;
1655 virtio_queue_set_notification(q->rx_vq, 0);
1656 return 1;
1659 static void virtio_net_hdr_swap(VirtIODevice *vdev, struct virtio_net_hdr *hdr)
1661 virtio_tswap16s(vdev, &hdr->hdr_len);
1662 virtio_tswap16s(vdev, &hdr->gso_size);
1663 virtio_tswap16s(vdev, &hdr->csum_start);
1664 virtio_tswap16s(vdev, &hdr->csum_offset);
1667 /* dhclient uses AF_PACKET but doesn't pass auxdata to the kernel so
1668 * it never finds out that the packets don't have valid checksums. This
1669 * causes dhclient to get upset. Fedora's carried a patch for ages to
1670 * fix this with Xen but it hasn't appeared in an upstream release of
1671 * dhclient yet.
1673 * To avoid breaking existing guests, we catch udp packets and add
1674 * checksums. This is terrible but it's better than hacking the guest
1675 * kernels.
1677 * N.B. if we introduce a zero-copy API, this operation is no longer free so
1678 * we should provide a mechanism to disable it to avoid polluting the host
1679 * cache.
1681 static void work_around_broken_dhclient(struct virtio_net_hdr *hdr,
1682 uint8_t *buf, size_t size)
1684 if ((hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) && /* missing csum */
1685 (size > 27 && size < 1500) && /* normal sized MTU */
1686 (buf[12] == 0x08 && buf[13] == 0x00) && /* ethertype == IPv4 */
1687 (buf[23] == 17) && /* ip.protocol == UDP */
1688 (buf[34] == 0 && buf[35] == 67)) { /* udp.srcport == bootps */
1689 net_checksum_calculate(buf, size, CSUM_UDP);
1690 hdr->flags &= ~VIRTIO_NET_HDR_F_NEEDS_CSUM;
1694 static void receive_header(VirtIONet *n, const struct iovec *iov, int iov_cnt,
1695 const void *buf, size_t size)
1697 if (n->has_vnet_hdr) {
1698 /* FIXME this cast is evil */
1699 void *wbuf = (void *)buf;
1700 work_around_broken_dhclient(wbuf, wbuf + n->host_hdr_len,
1701 size - n->host_hdr_len);
1703 if (n->needs_vnet_hdr_swap) {
1704 virtio_net_hdr_swap(VIRTIO_DEVICE(n), wbuf);
1706 iov_from_buf(iov, iov_cnt, 0, buf, sizeof(struct virtio_net_hdr));
1707 } else {
1708 struct virtio_net_hdr hdr = {
1709 .flags = 0,
1710 .gso_type = VIRTIO_NET_HDR_GSO_NONE
1712 iov_from_buf(iov, iov_cnt, 0, &hdr, sizeof hdr);
1716 static int receive_filter(VirtIONet *n, const uint8_t *buf, int size)
1718 static const uint8_t bcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
1719 static const uint8_t vlan[] = {0x81, 0x00};
1720 uint8_t *ptr = (uint8_t *)buf;
1721 int i;
1723 if (n->promisc)
1724 return 1;
1726 ptr += n->host_hdr_len;
1728 if (!memcmp(&ptr[12], vlan, sizeof(vlan))) {
1729 int vid = lduw_be_p(ptr + 14) & 0xfff;
1730 if (!(n->vlans[vid >> 5] & (1U << (vid & 0x1f))))
1731 return 0;
1734 if (ptr[0] & 1) { // multicast
1735 if (!memcmp(ptr, bcast, sizeof(bcast))) {
1736 return !n->nobcast;
1737 } else if (n->nomulti) {
1738 return 0;
1739 } else if (n->allmulti || n->mac_table.multi_overflow) {
1740 return 1;
1743 for (i = n->mac_table.first_multi; i < n->mac_table.in_use; i++) {
1744 if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
1745 return 1;
1748 } else { // unicast
1749 if (n->nouni) {
1750 return 0;
1751 } else if (n->alluni || n->mac_table.uni_overflow) {
1752 return 1;
1753 } else if (!memcmp(ptr, n->mac, ETH_ALEN)) {
1754 return 1;
1757 for (i = 0; i < n->mac_table.first_multi; i++) {
1758 if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
1759 return 1;
1764 return 0;
1767 static uint8_t virtio_net_get_hash_type(bool hasip4,
1768 bool hasip6,
1769 EthL4HdrProto l4hdr_proto,
1770 uint32_t types)
1772 if (hasip4) {
1773 switch (l4hdr_proto) {
1774 case ETH_L4_HDR_PROTO_TCP:
1775 if (types & VIRTIO_NET_RSS_HASH_TYPE_TCPv4) {
1776 return NetPktRssIpV4Tcp;
1778 break;
1780 case ETH_L4_HDR_PROTO_UDP:
1781 if (types & VIRTIO_NET_RSS_HASH_TYPE_UDPv4) {
1782 return NetPktRssIpV4Udp;
1784 break;
1786 default:
1787 break;
1790 if (types & VIRTIO_NET_RSS_HASH_TYPE_IPv4) {
1791 return NetPktRssIpV4;
1793 } else if (hasip6) {
1794 switch (l4hdr_proto) {
1795 case ETH_L4_HDR_PROTO_TCP:
1796 if (types & VIRTIO_NET_RSS_HASH_TYPE_TCP_EX) {
1797 return NetPktRssIpV6TcpEx;
1799 if (types & VIRTIO_NET_RSS_HASH_TYPE_TCPv6) {
1800 return NetPktRssIpV6Tcp;
1802 break;
1804 case ETH_L4_HDR_PROTO_UDP:
1805 if (types & VIRTIO_NET_RSS_HASH_TYPE_UDP_EX) {
1806 return NetPktRssIpV6UdpEx;
1808 if (types & VIRTIO_NET_RSS_HASH_TYPE_UDPv6) {
1809 return NetPktRssIpV6Udp;
1811 break;
1813 default:
1814 break;
1817 if (types & VIRTIO_NET_RSS_HASH_TYPE_IP_EX) {
1818 return NetPktRssIpV6Ex;
1820 if (types & VIRTIO_NET_RSS_HASH_TYPE_IPv6) {
1821 return NetPktRssIpV6;
1824 return 0xff;
1827 static void virtio_set_packet_hash(const uint8_t *buf, uint8_t report,
1828 uint32_t hash)
1830 struct virtio_net_hdr_v1_hash *hdr = (void *)buf;
1831 hdr->hash_value = hash;
1832 hdr->hash_report = report;
1835 static int virtio_net_process_rss(NetClientState *nc, const uint8_t *buf,
1836 size_t size)
1838 VirtIONet *n = qemu_get_nic_opaque(nc);
1839 unsigned int index = nc->queue_index, new_index = index;
1840 struct NetRxPkt *pkt = n->rx_pkt;
1841 uint8_t net_hash_type;
1842 uint32_t hash;
1843 bool hasip4, hasip6;
1844 EthL4HdrProto l4hdr_proto;
1845 static const uint8_t reports[NetPktRssIpV6UdpEx + 1] = {
1846 VIRTIO_NET_HASH_REPORT_IPv4,
1847 VIRTIO_NET_HASH_REPORT_TCPv4,
1848 VIRTIO_NET_HASH_REPORT_TCPv6,
1849 VIRTIO_NET_HASH_REPORT_IPv6,
1850 VIRTIO_NET_HASH_REPORT_IPv6_EX,
1851 VIRTIO_NET_HASH_REPORT_TCPv6_EX,
1852 VIRTIO_NET_HASH_REPORT_UDPv4,
1853 VIRTIO_NET_HASH_REPORT_UDPv6,
1854 VIRTIO_NET_HASH_REPORT_UDPv6_EX
1856 struct iovec iov = {
1857 .iov_base = (void *)buf,
1858 .iov_len = size
1861 net_rx_pkt_set_protocols(pkt, &iov, 1, n->host_hdr_len);
1862 net_rx_pkt_get_protocols(pkt, &hasip4, &hasip6, &l4hdr_proto);
1863 net_hash_type = virtio_net_get_hash_type(hasip4, hasip6, l4hdr_proto,
1864 n->rss_data.hash_types);
1865 if (net_hash_type > NetPktRssIpV6UdpEx) {
1866 if (n->rss_data.populate_hash) {
1867 virtio_set_packet_hash(buf, VIRTIO_NET_HASH_REPORT_NONE, 0);
1869 return n->rss_data.redirect ? n->rss_data.default_queue : -1;
1872 hash = net_rx_pkt_calc_rss_hash(pkt, net_hash_type, n->rss_data.key);
1874 if (n->rss_data.populate_hash) {
1875 virtio_set_packet_hash(buf, reports[net_hash_type], hash);
1878 if (n->rss_data.redirect) {
1879 new_index = hash & (n->rss_data.indirections_len - 1);
1880 new_index = n->rss_data.indirections_table[new_index];
1883 return (index == new_index) ? -1 : new_index;
1886 static ssize_t virtio_net_receive_rcu(NetClientState *nc, const uint8_t *buf,
1887 size_t size, bool no_rss)
1889 VirtIONet *n = qemu_get_nic_opaque(nc);
1890 VirtIONetQueue *q = virtio_net_get_subqueue(nc);
1891 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1892 VirtQueueElement *elems[VIRTQUEUE_MAX_SIZE];
1893 size_t lens[VIRTQUEUE_MAX_SIZE];
1894 struct iovec mhdr_sg[VIRTQUEUE_MAX_SIZE];
1895 struct virtio_net_hdr_mrg_rxbuf mhdr;
1896 unsigned mhdr_cnt = 0;
1897 size_t offset, i, guest_offset, j;
1898 ssize_t err;
1900 if (!virtio_net_can_receive(nc)) {
1901 return -1;
1904 if (!no_rss && n->rss_data.enabled && n->rss_data.enabled_software_rss) {
1905 int index = virtio_net_process_rss(nc, buf, size);
1906 if (index >= 0) {
1907 NetClientState *nc2 = qemu_get_subqueue(n->nic, index);
1908 return virtio_net_receive_rcu(nc2, buf, size, true);
1912 /* hdr_len refers to the header we supply to the guest */
1913 if (!virtio_net_has_buffers(q, size + n->guest_hdr_len - n->host_hdr_len)) {
1914 return 0;
1917 if (!receive_filter(n, buf, size))
1918 return size;
1920 offset = i = 0;
1922 while (offset < size) {
1923 VirtQueueElement *elem;
1924 int len, total;
1925 const struct iovec *sg;
1927 total = 0;
1929 if (i == VIRTQUEUE_MAX_SIZE) {
1930 virtio_error(vdev, "virtio-net unexpected long buffer chain");
1931 err = size;
1932 goto err;
1935 elem = virtqueue_pop(q->rx_vq, sizeof(VirtQueueElement));
1936 if (!elem) {
1937 if (i) {
1938 virtio_error(vdev, "virtio-net unexpected empty queue: "
1939 "i %zd mergeable %d offset %zd, size %zd, "
1940 "guest hdr len %zd, host hdr len %zd "
1941 "guest features 0x%" PRIx64,
1942 i, n->mergeable_rx_bufs, offset, size,
1943 n->guest_hdr_len, n->host_hdr_len,
1944 vdev->guest_features);
1946 err = -1;
1947 goto err;
1950 if (elem->in_num < 1) {
1951 virtio_error(vdev,
1952 "virtio-net receive queue contains no in buffers");
1953 virtqueue_detach_element(q->rx_vq, elem, 0);
1954 g_free(elem);
1955 err = -1;
1956 goto err;
1959 sg = elem->in_sg;
1960 if (i == 0) {
1961 assert(offset == 0);
1962 if (n->mergeable_rx_bufs) {
1963 mhdr_cnt = iov_copy(mhdr_sg, ARRAY_SIZE(mhdr_sg),
1964 sg, elem->in_num,
1965 offsetof(typeof(mhdr), num_buffers),
1966 sizeof(mhdr.num_buffers));
1969 receive_header(n, sg, elem->in_num, buf, size);
1970 if (n->rss_data.populate_hash) {
1971 offset = sizeof(mhdr);
1972 iov_from_buf(sg, elem->in_num, offset,
1973 buf + offset, n->host_hdr_len - sizeof(mhdr));
1975 offset = n->host_hdr_len;
1976 total += n->guest_hdr_len;
1977 guest_offset = n->guest_hdr_len;
1978 } else {
1979 guest_offset = 0;
1982 /* copy in packet. ugh */
1983 len = iov_from_buf(sg, elem->in_num, guest_offset,
1984 buf + offset, size - offset);
1985 total += len;
1986 offset += len;
1987 /* If buffers can't be merged, at this point we
1988 * must have consumed the complete packet.
1989 * Otherwise, drop it. */
1990 if (!n->mergeable_rx_bufs && offset < size) {
1991 virtqueue_unpop(q->rx_vq, elem, total);
1992 g_free(elem);
1993 err = size;
1994 goto err;
1997 elems[i] = elem;
1998 lens[i] = total;
1999 i++;
2002 if (mhdr_cnt) {
2003 virtio_stw_p(vdev, &mhdr.num_buffers, i);
2004 iov_from_buf(mhdr_sg, mhdr_cnt,
2006 &mhdr.num_buffers, sizeof mhdr.num_buffers);
2009 for (j = 0; j < i; j++) {
2010 /* signal other side */
2011 virtqueue_fill(q->rx_vq, elems[j], lens[j], j);
2012 g_free(elems[j]);
2015 virtqueue_flush(q->rx_vq, i);
2016 virtio_notify(vdev, q->rx_vq);
2018 return size;
2020 err:
2021 for (j = 0; j < i; j++) {
2022 virtqueue_detach_element(q->rx_vq, elems[j], lens[j]);
2023 g_free(elems[j]);
2026 return err;
2029 static ssize_t virtio_net_do_receive(NetClientState *nc, const uint8_t *buf,
2030 size_t size)
2032 RCU_READ_LOCK_GUARD();
2034 return virtio_net_receive_rcu(nc, buf, size, false);
2037 static void virtio_net_rsc_extract_unit4(VirtioNetRscChain *chain,
2038 const uint8_t *buf,
2039 VirtioNetRscUnit *unit)
2041 uint16_t ip_hdrlen;
2042 struct ip_header *ip;
2044 ip = (struct ip_header *)(buf + chain->n->guest_hdr_len
2045 + sizeof(struct eth_header));
2046 unit->ip = (void *)ip;
2047 ip_hdrlen = (ip->ip_ver_len & 0xF) << 2;
2048 unit->ip_plen = &ip->ip_len;
2049 unit->tcp = (struct tcp_header *)(((uint8_t *)unit->ip) + ip_hdrlen);
2050 unit->tcp_hdrlen = (htons(unit->tcp->th_offset_flags) & 0xF000) >> 10;
2051 unit->payload = htons(*unit->ip_plen) - ip_hdrlen - unit->tcp_hdrlen;
2054 static void virtio_net_rsc_extract_unit6(VirtioNetRscChain *chain,
2055 const uint8_t *buf,
2056 VirtioNetRscUnit *unit)
2058 struct ip6_header *ip6;
2060 ip6 = (struct ip6_header *)(buf + chain->n->guest_hdr_len
2061 + sizeof(struct eth_header));
2062 unit->ip = ip6;
2063 unit->ip_plen = &(ip6->ip6_ctlun.ip6_un1.ip6_un1_plen);
2064 unit->tcp = (struct tcp_header *)(((uint8_t *)unit->ip)
2065 + sizeof(struct ip6_header));
2066 unit->tcp_hdrlen = (htons(unit->tcp->th_offset_flags) & 0xF000) >> 10;
2068 /* There is a difference between payload length in ipv4 and v6,
2069 ip header is excluded in ipv6 */
2070 unit->payload = htons(*unit->ip_plen) - unit->tcp_hdrlen;
2073 static size_t virtio_net_rsc_drain_seg(VirtioNetRscChain *chain,
2074 VirtioNetRscSeg *seg)
2076 int ret;
2077 struct virtio_net_hdr_v1 *h;
2079 h = (struct virtio_net_hdr_v1 *)seg->buf;
2080 h->flags = 0;
2081 h->gso_type = VIRTIO_NET_HDR_GSO_NONE;
2083 if (seg->is_coalesced) {
2084 h->rsc.segments = seg->packets;
2085 h->rsc.dup_acks = seg->dup_ack;
2086 h->flags = VIRTIO_NET_HDR_F_RSC_INFO;
2087 if (chain->proto == ETH_P_IP) {
2088 h->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
2089 } else {
2090 h->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
2094 ret = virtio_net_do_receive(seg->nc, seg->buf, seg->size);
2095 QTAILQ_REMOVE(&chain->buffers, seg, next);
2096 g_free(seg->buf);
2097 g_free(seg);
2099 return ret;
2102 static void virtio_net_rsc_purge(void *opq)
2104 VirtioNetRscSeg *seg, *rn;
2105 VirtioNetRscChain *chain = (VirtioNetRscChain *)opq;
2107 QTAILQ_FOREACH_SAFE(seg, &chain->buffers, next, rn) {
2108 if (virtio_net_rsc_drain_seg(chain, seg) == 0) {
2109 chain->stat.purge_failed++;
2110 continue;
2114 chain->stat.timer++;
2115 if (!QTAILQ_EMPTY(&chain->buffers)) {
2116 timer_mod(chain->drain_timer,
2117 qemu_clock_get_ns(QEMU_CLOCK_HOST) + chain->n->rsc_timeout);
2121 static void virtio_net_rsc_cleanup(VirtIONet *n)
2123 VirtioNetRscChain *chain, *rn_chain;
2124 VirtioNetRscSeg *seg, *rn_seg;
2126 QTAILQ_FOREACH_SAFE(chain, &n->rsc_chains, next, rn_chain) {
2127 QTAILQ_FOREACH_SAFE(seg, &chain->buffers, next, rn_seg) {
2128 QTAILQ_REMOVE(&chain->buffers, seg, next);
2129 g_free(seg->buf);
2130 g_free(seg);
2133 timer_free(chain->drain_timer);
2134 QTAILQ_REMOVE(&n->rsc_chains, chain, next);
2135 g_free(chain);
2139 static void virtio_net_rsc_cache_buf(VirtioNetRscChain *chain,
2140 NetClientState *nc,
2141 const uint8_t *buf, size_t size)
2143 uint16_t hdr_len;
2144 VirtioNetRscSeg *seg;
2146 hdr_len = chain->n->guest_hdr_len;
2147 seg = g_new(VirtioNetRscSeg, 1);
2148 seg->buf = g_malloc(hdr_len + sizeof(struct eth_header)
2149 + sizeof(struct ip6_header) + VIRTIO_NET_MAX_TCP_PAYLOAD);
2150 memcpy(seg->buf, buf, size);
2151 seg->size = size;
2152 seg->packets = 1;
2153 seg->dup_ack = 0;
2154 seg->is_coalesced = 0;
2155 seg->nc = nc;
2157 QTAILQ_INSERT_TAIL(&chain->buffers, seg, next);
2158 chain->stat.cache++;
2160 switch (chain->proto) {
2161 case ETH_P_IP:
2162 virtio_net_rsc_extract_unit4(chain, seg->buf, &seg->unit);
2163 break;
2164 case ETH_P_IPV6:
2165 virtio_net_rsc_extract_unit6(chain, seg->buf, &seg->unit);
2166 break;
2167 default:
2168 g_assert_not_reached();
2172 static int32_t virtio_net_rsc_handle_ack(VirtioNetRscChain *chain,
2173 VirtioNetRscSeg *seg,
2174 const uint8_t *buf,
2175 struct tcp_header *n_tcp,
2176 struct tcp_header *o_tcp)
2178 uint32_t nack, oack;
2179 uint16_t nwin, owin;
2181 nack = htonl(n_tcp->th_ack);
2182 nwin = htons(n_tcp->th_win);
2183 oack = htonl(o_tcp->th_ack);
2184 owin = htons(o_tcp->th_win);
2186 if ((nack - oack) >= VIRTIO_NET_MAX_TCP_PAYLOAD) {
2187 chain->stat.ack_out_of_win++;
2188 return RSC_FINAL;
2189 } else if (nack == oack) {
2190 /* duplicated ack or window probe */
2191 if (nwin == owin) {
2192 /* duplicated ack, add dup ack count due to whql test up to 1 */
2193 chain->stat.dup_ack++;
2194 return RSC_FINAL;
2195 } else {
2196 /* Coalesce window update */
2197 o_tcp->th_win = n_tcp->th_win;
2198 chain->stat.win_update++;
2199 return RSC_COALESCE;
2201 } else {
2202 /* pure ack, go to 'C', finalize*/
2203 chain->stat.pure_ack++;
2204 return RSC_FINAL;
2208 static int32_t virtio_net_rsc_coalesce_data(VirtioNetRscChain *chain,
2209 VirtioNetRscSeg *seg,
2210 const uint8_t *buf,
2211 VirtioNetRscUnit *n_unit)
2213 void *data;
2214 uint16_t o_ip_len;
2215 uint32_t nseq, oseq;
2216 VirtioNetRscUnit *o_unit;
2218 o_unit = &seg->unit;
2219 o_ip_len = htons(*o_unit->ip_plen);
2220 nseq = htonl(n_unit->tcp->th_seq);
2221 oseq = htonl(o_unit->tcp->th_seq);
2223 /* out of order or retransmitted. */
2224 if ((nseq - oseq) > VIRTIO_NET_MAX_TCP_PAYLOAD) {
2225 chain->stat.data_out_of_win++;
2226 return RSC_FINAL;
2229 data = ((uint8_t *)n_unit->tcp) + n_unit->tcp_hdrlen;
2230 if (nseq == oseq) {
2231 if ((o_unit->payload == 0) && n_unit->payload) {
2232 /* From no payload to payload, normal case, not a dup ack or etc */
2233 chain->stat.data_after_pure_ack++;
2234 goto coalesce;
2235 } else {
2236 return virtio_net_rsc_handle_ack(chain, seg, buf,
2237 n_unit->tcp, o_unit->tcp);
2239 } else if ((nseq - oseq) != o_unit->payload) {
2240 /* Not a consistent packet, out of order */
2241 chain->stat.data_out_of_order++;
2242 return RSC_FINAL;
2243 } else {
2244 coalesce:
2245 if ((o_ip_len + n_unit->payload) > chain->max_payload) {
2246 chain->stat.over_size++;
2247 return RSC_FINAL;
2250 /* Here comes the right data, the payload length in v4/v6 is different,
2251 so use the field value to update and record the new data len */
2252 o_unit->payload += n_unit->payload; /* update new data len */
2254 /* update field in ip header */
2255 *o_unit->ip_plen = htons(o_ip_len + n_unit->payload);
2257 /* Bring 'PUSH' big, the whql test guide says 'PUSH' can be coalesced
2258 for windows guest, while this may change the behavior for linux
2259 guest (only if it uses RSC feature). */
2260 o_unit->tcp->th_offset_flags = n_unit->tcp->th_offset_flags;
2262 o_unit->tcp->th_ack = n_unit->tcp->th_ack;
2263 o_unit->tcp->th_win = n_unit->tcp->th_win;
2265 memmove(seg->buf + seg->size, data, n_unit->payload);
2266 seg->size += n_unit->payload;
2267 seg->packets++;
2268 chain->stat.coalesced++;
2269 return RSC_COALESCE;
2273 static int32_t virtio_net_rsc_coalesce4(VirtioNetRscChain *chain,
2274 VirtioNetRscSeg *seg,
2275 const uint8_t *buf, size_t size,
2276 VirtioNetRscUnit *unit)
2278 struct ip_header *ip1, *ip2;
2280 ip1 = (struct ip_header *)(unit->ip);
2281 ip2 = (struct ip_header *)(seg->unit.ip);
2282 if ((ip1->ip_src ^ ip2->ip_src) || (ip1->ip_dst ^ ip2->ip_dst)
2283 || (unit->tcp->th_sport ^ seg->unit.tcp->th_sport)
2284 || (unit->tcp->th_dport ^ seg->unit.tcp->th_dport)) {
2285 chain->stat.no_match++;
2286 return RSC_NO_MATCH;
2289 return virtio_net_rsc_coalesce_data(chain, seg, buf, unit);
2292 static int32_t virtio_net_rsc_coalesce6(VirtioNetRscChain *chain,
2293 VirtioNetRscSeg *seg,
2294 const uint8_t *buf, size_t size,
2295 VirtioNetRscUnit *unit)
2297 struct ip6_header *ip1, *ip2;
2299 ip1 = (struct ip6_header *)(unit->ip);
2300 ip2 = (struct ip6_header *)(seg->unit.ip);
2301 if (memcmp(&ip1->ip6_src, &ip2->ip6_src, sizeof(struct in6_address))
2302 || memcmp(&ip1->ip6_dst, &ip2->ip6_dst, sizeof(struct in6_address))
2303 || (unit->tcp->th_sport ^ seg->unit.tcp->th_sport)
2304 || (unit->tcp->th_dport ^ seg->unit.tcp->th_dport)) {
2305 chain->stat.no_match++;
2306 return RSC_NO_MATCH;
2309 return virtio_net_rsc_coalesce_data(chain, seg, buf, unit);
2312 /* Packets with 'SYN' should bypass, other flag should be sent after drain
2313 * to prevent out of order */
2314 static int virtio_net_rsc_tcp_ctrl_check(VirtioNetRscChain *chain,
2315 struct tcp_header *tcp)
2317 uint16_t tcp_hdr;
2318 uint16_t tcp_flag;
2320 tcp_flag = htons(tcp->th_offset_flags);
2321 tcp_hdr = (tcp_flag & VIRTIO_NET_TCP_HDR_LENGTH) >> 10;
2322 tcp_flag &= VIRTIO_NET_TCP_FLAG;
2323 if (tcp_flag & TH_SYN) {
2324 chain->stat.tcp_syn++;
2325 return RSC_BYPASS;
2328 if (tcp_flag & (TH_FIN | TH_URG | TH_RST | TH_ECE | TH_CWR)) {
2329 chain->stat.tcp_ctrl_drain++;
2330 return RSC_FINAL;
2333 if (tcp_hdr > sizeof(struct tcp_header)) {
2334 chain->stat.tcp_all_opt++;
2335 return RSC_FINAL;
2338 return RSC_CANDIDATE;
2341 static size_t virtio_net_rsc_do_coalesce(VirtioNetRscChain *chain,
2342 NetClientState *nc,
2343 const uint8_t *buf, size_t size,
2344 VirtioNetRscUnit *unit)
2346 int ret;
2347 VirtioNetRscSeg *seg, *nseg;
2349 if (QTAILQ_EMPTY(&chain->buffers)) {
2350 chain->stat.empty_cache++;
2351 virtio_net_rsc_cache_buf(chain, nc, buf, size);
2352 timer_mod(chain->drain_timer,
2353 qemu_clock_get_ns(QEMU_CLOCK_HOST) + chain->n->rsc_timeout);
2354 return size;
2357 QTAILQ_FOREACH_SAFE(seg, &chain->buffers, next, nseg) {
2358 if (chain->proto == ETH_P_IP) {
2359 ret = virtio_net_rsc_coalesce4(chain, seg, buf, size, unit);
2360 } else {
2361 ret = virtio_net_rsc_coalesce6(chain, seg, buf, size, unit);
2364 if (ret == RSC_FINAL) {
2365 if (virtio_net_rsc_drain_seg(chain, seg) == 0) {
2366 /* Send failed */
2367 chain->stat.final_failed++;
2368 return 0;
2371 /* Send current packet */
2372 return virtio_net_do_receive(nc, buf, size);
2373 } else if (ret == RSC_NO_MATCH) {
2374 continue;
2375 } else {
2376 /* Coalesced, mark coalesced flag to tell calc cksum for ipv4 */
2377 seg->is_coalesced = 1;
2378 return size;
2382 chain->stat.no_match_cache++;
2383 virtio_net_rsc_cache_buf(chain, nc, buf, size);
2384 return size;
2387 /* Drain a connection data, this is to avoid out of order segments */
2388 static size_t virtio_net_rsc_drain_flow(VirtioNetRscChain *chain,
2389 NetClientState *nc,
2390 const uint8_t *buf, size_t size,
2391 uint16_t ip_start, uint16_t ip_size,
2392 uint16_t tcp_port)
2394 VirtioNetRscSeg *seg, *nseg;
2395 uint32_t ppair1, ppair2;
2397 ppair1 = *(uint32_t *)(buf + tcp_port);
2398 QTAILQ_FOREACH_SAFE(seg, &chain->buffers, next, nseg) {
2399 ppair2 = *(uint32_t *)(seg->buf + tcp_port);
2400 if (memcmp(buf + ip_start, seg->buf + ip_start, ip_size)
2401 || (ppair1 != ppair2)) {
2402 continue;
2404 if (virtio_net_rsc_drain_seg(chain, seg) == 0) {
2405 chain->stat.drain_failed++;
2408 break;
2411 return virtio_net_do_receive(nc, buf, size);
2414 static int32_t virtio_net_rsc_sanity_check4(VirtioNetRscChain *chain,
2415 struct ip_header *ip,
2416 const uint8_t *buf, size_t size)
2418 uint16_t ip_len;
2420 /* Not an ipv4 packet */
2421 if (((ip->ip_ver_len & 0xF0) >> 4) != IP_HEADER_VERSION_4) {
2422 chain->stat.ip_option++;
2423 return RSC_BYPASS;
2426 /* Don't handle packets with ip option */
2427 if ((ip->ip_ver_len & 0xF) != VIRTIO_NET_IP4_HEADER_LENGTH) {
2428 chain->stat.ip_option++;
2429 return RSC_BYPASS;
2432 if (ip->ip_p != IPPROTO_TCP) {
2433 chain->stat.bypass_not_tcp++;
2434 return RSC_BYPASS;
2437 /* Don't handle packets with ip fragment */
2438 if (!(htons(ip->ip_off) & IP_DF)) {
2439 chain->stat.ip_frag++;
2440 return RSC_BYPASS;
2443 /* Don't handle packets with ecn flag */
2444 if (IPTOS_ECN(ip->ip_tos)) {
2445 chain->stat.ip_ecn++;
2446 return RSC_BYPASS;
2449 ip_len = htons(ip->ip_len);
2450 if (ip_len < (sizeof(struct ip_header) + sizeof(struct tcp_header))
2451 || ip_len > (size - chain->n->guest_hdr_len -
2452 sizeof(struct eth_header))) {
2453 chain->stat.ip_hacked++;
2454 return RSC_BYPASS;
2457 return RSC_CANDIDATE;
2460 static size_t virtio_net_rsc_receive4(VirtioNetRscChain *chain,
2461 NetClientState *nc,
2462 const uint8_t *buf, size_t size)
2464 int32_t ret;
2465 uint16_t hdr_len;
2466 VirtioNetRscUnit unit;
2468 hdr_len = ((VirtIONet *)(chain->n))->guest_hdr_len;
2470 if (size < (hdr_len + sizeof(struct eth_header) + sizeof(struct ip_header)
2471 + sizeof(struct tcp_header))) {
2472 chain->stat.bypass_not_tcp++;
2473 return virtio_net_do_receive(nc, buf, size);
2476 virtio_net_rsc_extract_unit4(chain, buf, &unit);
2477 if (virtio_net_rsc_sanity_check4(chain, unit.ip, buf, size)
2478 != RSC_CANDIDATE) {
2479 return virtio_net_do_receive(nc, buf, size);
2482 ret = virtio_net_rsc_tcp_ctrl_check(chain, unit.tcp);
2483 if (ret == RSC_BYPASS) {
2484 return virtio_net_do_receive(nc, buf, size);
2485 } else if (ret == RSC_FINAL) {
2486 return virtio_net_rsc_drain_flow(chain, nc, buf, size,
2487 ((hdr_len + sizeof(struct eth_header)) + 12),
2488 VIRTIO_NET_IP4_ADDR_SIZE,
2489 hdr_len + sizeof(struct eth_header) + sizeof(struct ip_header));
2492 return virtio_net_rsc_do_coalesce(chain, nc, buf, size, &unit);
2495 static int32_t virtio_net_rsc_sanity_check6(VirtioNetRscChain *chain,
2496 struct ip6_header *ip6,
2497 const uint8_t *buf, size_t size)
2499 uint16_t ip_len;
2501 if (((ip6->ip6_ctlun.ip6_un1.ip6_un1_flow & 0xF0) >> 4)
2502 != IP_HEADER_VERSION_6) {
2503 return RSC_BYPASS;
2506 /* Both option and protocol is checked in this */
2507 if (ip6->ip6_ctlun.ip6_un1.ip6_un1_nxt != IPPROTO_TCP) {
2508 chain->stat.bypass_not_tcp++;
2509 return RSC_BYPASS;
2512 ip_len = htons(ip6->ip6_ctlun.ip6_un1.ip6_un1_plen);
2513 if (ip_len < sizeof(struct tcp_header) ||
2514 ip_len > (size - chain->n->guest_hdr_len - sizeof(struct eth_header)
2515 - sizeof(struct ip6_header))) {
2516 chain->stat.ip_hacked++;
2517 return RSC_BYPASS;
2520 /* Don't handle packets with ecn flag */
2521 if (IP6_ECN(ip6->ip6_ctlun.ip6_un3.ip6_un3_ecn)) {
2522 chain->stat.ip_ecn++;
2523 return RSC_BYPASS;
2526 return RSC_CANDIDATE;
2529 static size_t virtio_net_rsc_receive6(void *opq, NetClientState *nc,
2530 const uint8_t *buf, size_t size)
2532 int32_t ret;
2533 uint16_t hdr_len;
2534 VirtioNetRscChain *chain;
2535 VirtioNetRscUnit unit;
2537 chain = opq;
2538 hdr_len = ((VirtIONet *)(chain->n))->guest_hdr_len;
2540 if (size < (hdr_len + sizeof(struct eth_header) + sizeof(struct ip6_header)
2541 + sizeof(tcp_header))) {
2542 return virtio_net_do_receive(nc, buf, size);
2545 virtio_net_rsc_extract_unit6(chain, buf, &unit);
2546 if (RSC_CANDIDATE != virtio_net_rsc_sanity_check6(chain,
2547 unit.ip, buf, size)) {
2548 return virtio_net_do_receive(nc, buf, size);
2551 ret = virtio_net_rsc_tcp_ctrl_check(chain, unit.tcp);
2552 if (ret == RSC_BYPASS) {
2553 return virtio_net_do_receive(nc, buf, size);
2554 } else if (ret == RSC_FINAL) {
2555 return virtio_net_rsc_drain_flow(chain, nc, buf, size,
2556 ((hdr_len + sizeof(struct eth_header)) + 8),
2557 VIRTIO_NET_IP6_ADDR_SIZE,
2558 hdr_len + sizeof(struct eth_header)
2559 + sizeof(struct ip6_header));
2562 return virtio_net_rsc_do_coalesce(chain, nc, buf, size, &unit);
2565 static VirtioNetRscChain *virtio_net_rsc_lookup_chain(VirtIONet *n,
2566 NetClientState *nc,
2567 uint16_t proto)
2569 VirtioNetRscChain *chain;
2571 if ((proto != (uint16_t)ETH_P_IP) && (proto != (uint16_t)ETH_P_IPV6)) {
2572 return NULL;
2575 QTAILQ_FOREACH(chain, &n->rsc_chains, next) {
2576 if (chain->proto == proto) {
2577 return chain;
2581 chain = g_malloc(sizeof(*chain));
2582 chain->n = n;
2583 chain->proto = proto;
2584 if (proto == (uint16_t)ETH_P_IP) {
2585 chain->max_payload = VIRTIO_NET_MAX_IP4_PAYLOAD;
2586 chain->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
2587 } else {
2588 chain->max_payload = VIRTIO_NET_MAX_IP6_PAYLOAD;
2589 chain->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
2591 chain->drain_timer = timer_new_ns(QEMU_CLOCK_HOST,
2592 virtio_net_rsc_purge, chain);
2593 memset(&chain->stat, 0, sizeof(chain->stat));
2595 QTAILQ_INIT(&chain->buffers);
2596 QTAILQ_INSERT_TAIL(&n->rsc_chains, chain, next);
2598 return chain;
2601 static ssize_t virtio_net_rsc_receive(NetClientState *nc,
2602 const uint8_t *buf,
2603 size_t size)
2605 uint16_t proto;
2606 VirtioNetRscChain *chain;
2607 struct eth_header *eth;
2608 VirtIONet *n;
2610 n = qemu_get_nic_opaque(nc);
2611 if (size < (n->host_hdr_len + sizeof(struct eth_header))) {
2612 return virtio_net_do_receive(nc, buf, size);
2615 eth = (struct eth_header *)(buf + n->guest_hdr_len);
2616 proto = htons(eth->h_proto);
2618 chain = virtio_net_rsc_lookup_chain(n, nc, proto);
2619 if (chain) {
2620 chain->stat.received++;
2621 if (proto == (uint16_t)ETH_P_IP && n->rsc4_enabled) {
2622 return virtio_net_rsc_receive4(chain, nc, buf, size);
2623 } else if (proto == (uint16_t)ETH_P_IPV6 && n->rsc6_enabled) {
2624 return virtio_net_rsc_receive6(chain, nc, buf, size);
2627 return virtio_net_do_receive(nc, buf, size);
2630 static ssize_t virtio_net_receive(NetClientState *nc, const uint8_t *buf,
2631 size_t size)
2633 VirtIONet *n = qemu_get_nic_opaque(nc);
2634 if ((n->rsc4_enabled || n->rsc6_enabled)) {
2635 return virtio_net_rsc_receive(nc, buf, size);
2636 } else {
2637 return virtio_net_do_receive(nc, buf, size);
2641 static int32_t virtio_net_flush_tx(VirtIONetQueue *q);
2643 static void virtio_net_tx_complete(NetClientState *nc, ssize_t len)
2645 VirtIONet *n = qemu_get_nic_opaque(nc);
2646 VirtIONetQueue *q = virtio_net_get_subqueue(nc);
2647 VirtIODevice *vdev = VIRTIO_DEVICE(n);
2648 int ret;
2650 virtqueue_push(q->tx_vq, q->async_tx.elem, 0);
2651 virtio_notify(vdev, q->tx_vq);
2653 g_free(q->async_tx.elem);
2654 q->async_tx.elem = NULL;
2656 virtio_queue_set_notification(q->tx_vq, 1);
2657 ret = virtio_net_flush_tx(q);
2658 if (ret >= n->tx_burst) {
2660 * the flush has been stopped by tx_burst
2661 * we will not receive notification for the
2662 * remainining part, so re-schedule
2664 virtio_queue_set_notification(q->tx_vq, 0);
2665 if (q->tx_bh) {
2666 qemu_bh_schedule(q->tx_bh);
2667 } else {
2668 timer_mod(q->tx_timer,
2669 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + n->tx_timeout);
2671 q->tx_waiting = 1;
2675 /* TX */
2676 static int32_t virtio_net_flush_tx(VirtIONetQueue *q)
2678 VirtIONet *n = q->n;
2679 VirtIODevice *vdev = VIRTIO_DEVICE(n);
2680 VirtQueueElement *elem;
2681 int32_t num_packets = 0;
2682 int queue_index = vq2q(virtio_get_queue_index(q->tx_vq));
2683 if (!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK)) {
2684 return num_packets;
2687 if (q->async_tx.elem) {
2688 virtio_queue_set_notification(q->tx_vq, 0);
2689 return num_packets;
2692 for (;;) {
2693 ssize_t ret;
2694 unsigned int out_num;
2695 struct iovec sg[VIRTQUEUE_MAX_SIZE], sg2[VIRTQUEUE_MAX_SIZE + 1], *out_sg;
2696 struct virtio_net_hdr_mrg_rxbuf mhdr;
2698 elem = virtqueue_pop(q->tx_vq, sizeof(VirtQueueElement));
2699 if (!elem) {
2700 break;
2703 out_num = elem->out_num;
2704 out_sg = elem->out_sg;
2705 if (out_num < 1) {
2706 virtio_error(vdev, "virtio-net header not in first element");
2707 virtqueue_detach_element(q->tx_vq, elem, 0);
2708 g_free(elem);
2709 return -EINVAL;
2712 if (n->has_vnet_hdr) {
2713 if (iov_to_buf(out_sg, out_num, 0, &mhdr, n->guest_hdr_len) <
2714 n->guest_hdr_len) {
2715 virtio_error(vdev, "virtio-net header incorrect");
2716 virtqueue_detach_element(q->tx_vq, elem, 0);
2717 g_free(elem);
2718 return -EINVAL;
2720 if (n->needs_vnet_hdr_swap) {
2721 virtio_net_hdr_swap(vdev, (void *) &mhdr);
2722 sg2[0].iov_base = &mhdr;
2723 sg2[0].iov_len = n->guest_hdr_len;
2724 out_num = iov_copy(&sg2[1], ARRAY_SIZE(sg2) - 1,
2725 out_sg, out_num,
2726 n->guest_hdr_len, -1);
2727 if (out_num == VIRTQUEUE_MAX_SIZE) {
2728 goto drop;
2730 out_num += 1;
2731 out_sg = sg2;
2735 * If host wants to see the guest header as is, we can
2736 * pass it on unchanged. Otherwise, copy just the parts
2737 * that host is interested in.
2739 assert(n->host_hdr_len <= n->guest_hdr_len);
2740 if (n->host_hdr_len != n->guest_hdr_len) {
2741 unsigned sg_num = iov_copy(sg, ARRAY_SIZE(sg),
2742 out_sg, out_num,
2743 0, n->host_hdr_len);
2744 sg_num += iov_copy(sg + sg_num, ARRAY_SIZE(sg) - sg_num,
2745 out_sg, out_num,
2746 n->guest_hdr_len, -1);
2747 out_num = sg_num;
2748 out_sg = sg;
2751 ret = qemu_sendv_packet_async(qemu_get_subqueue(n->nic, queue_index),
2752 out_sg, out_num, virtio_net_tx_complete);
2753 if (ret == 0) {
2754 virtio_queue_set_notification(q->tx_vq, 0);
2755 q->async_tx.elem = elem;
2756 return -EBUSY;
2759 drop:
2760 virtqueue_push(q->tx_vq, elem, 0);
2761 virtio_notify(vdev, q->tx_vq);
2762 g_free(elem);
2764 if (++num_packets >= n->tx_burst) {
2765 break;
2768 return num_packets;
2771 static void virtio_net_tx_timer(void *opaque);
2773 static void virtio_net_handle_tx_timer(VirtIODevice *vdev, VirtQueue *vq)
2775 VirtIONet *n = VIRTIO_NET(vdev);
2776 VirtIONetQueue *q = &n->vqs[vq2q(virtio_get_queue_index(vq))];
2778 if (unlikely((n->status & VIRTIO_NET_S_LINK_UP) == 0)) {
2779 virtio_net_drop_tx_queue_data(vdev, vq);
2780 return;
2783 /* This happens when device was stopped but VCPU wasn't. */
2784 if (!vdev->vm_running) {
2785 q->tx_waiting = 1;
2786 return;
2789 if (q->tx_waiting) {
2790 /* We already have queued packets, immediately flush */
2791 timer_del(q->tx_timer);
2792 virtio_net_tx_timer(q);
2793 } else {
2794 /* re-arm timer to flush it (and more) on next tick */
2795 timer_mod(q->tx_timer,
2796 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + n->tx_timeout);
2797 q->tx_waiting = 1;
2798 virtio_queue_set_notification(vq, 0);
2802 static void virtio_net_handle_tx_bh(VirtIODevice *vdev, VirtQueue *vq)
2804 VirtIONet *n = VIRTIO_NET(vdev);
2805 VirtIONetQueue *q = &n->vqs[vq2q(virtio_get_queue_index(vq))];
2807 if (unlikely((n->status & VIRTIO_NET_S_LINK_UP) == 0)) {
2808 virtio_net_drop_tx_queue_data(vdev, vq);
2809 return;
2812 if (unlikely(q->tx_waiting)) {
2813 return;
2815 q->tx_waiting = 1;
2816 /* This happens when device was stopped but VCPU wasn't. */
2817 if (!vdev->vm_running) {
2818 return;
2820 virtio_queue_set_notification(vq, 0);
2821 qemu_bh_schedule(q->tx_bh);
2824 static void virtio_net_tx_timer(void *opaque)
2826 VirtIONetQueue *q = opaque;
2827 VirtIONet *n = q->n;
2828 VirtIODevice *vdev = VIRTIO_DEVICE(n);
2829 int ret;
2831 /* This happens when device was stopped but BH wasn't. */
2832 if (!vdev->vm_running) {
2833 /* Make sure tx waiting is set, so we'll run when restarted. */
2834 assert(q->tx_waiting);
2835 return;
2838 q->tx_waiting = 0;
2840 /* Just in case the driver is not ready on more */
2841 if (!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK)) {
2842 return;
2845 ret = virtio_net_flush_tx(q);
2846 if (ret == -EBUSY || ret == -EINVAL) {
2847 return;
2850 * If we flush a full burst of packets, assume there are
2851 * more coming and immediately rearm
2853 if (ret >= n->tx_burst) {
2854 q->tx_waiting = 1;
2855 timer_mod(q->tx_timer,
2856 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + n->tx_timeout);
2857 return;
2860 * If less than a full burst, re-enable notification and flush
2861 * anything that may have come in while we weren't looking. If
2862 * we find something, assume the guest is still active and rearm
2864 virtio_queue_set_notification(q->tx_vq, 1);
2865 ret = virtio_net_flush_tx(q);
2866 if (ret > 0) {
2867 virtio_queue_set_notification(q->tx_vq, 0);
2868 q->tx_waiting = 1;
2869 timer_mod(q->tx_timer,
2870 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + n->tx_timeout);
2874 static void virtio_net_tx_bh(void *opaque)
2876 VirtIONetQueue *q = opaque;
2877 VirtIONet *n = q->n;
2878 VirtIODevice *vdev = VIRTIO_DEVICE(n);
2879 int32_t ret;
2881 /* This happens when device was stopped but BH wasn't. */
2882 if (!vdev->vm_running) {
2883 /* Make sure tx waiting is set, so we'll run when restarted. */
2884 assert(q->tx_waiting);
2885 return;
2888 q->tx_waiting = 0;
2890 /* Just in case the driver is not ready on more */
2891 if (unlikely(!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK))) {
2892 return;
2895 ret = virtio_net_flush_tx(q);
2896 if (ret == -EBUSY || ret == -EINVAL) {
2897 return; /* Notification re-enable handled by tx_complete or device
2898 * broken */
2901 /* If we flush a full burst of packets, assume there are
2902 * more coming and immediately reschedule */
2903 if (ret >= n->tx_burst) {
2904 qemu_bh_schedule(q->tx_bh);
2905 q->tx_waiting = 1;
2906 return;
2909 /* If less than a full burst, re-enable notification and flush
2910 * anything that may have come in while we weren't looking. If
2911 * we find something, assume the guest is still active and reschedule */
2912 virtio_queue_set_notification(q->tx_vq, 1);
2913 ret = virtio_net_flush_tx(q);
2914 if (ret == -EINVAL) {
2915 return;
2916 } else if (ret > 0) {
2917 virtio_queue_set_notification(q->tx_vq, 0);
2918 qemu_bh_schedule(q->tx_bh);
2919 q->tx_waiting = 1;
2923 static void virtio_net_add_queue(VirtIONet *n, int index)
2925 VirtIODevice *vdev = VIRTIO_DEVICE(n);
2927 n->vqs[index].rx_vq = virtio_add_queue(vdev, n->net_conf.rx_queue_size,
2928 virtio_net_handle_rx);
2930 if (n->net_conf.tx && !strcmp(n->net_conf.tx, "timer")) {
2931 n->vqs[index].tx_vq =
2932 virtio_add_queue(vdev, n->net_conf.tx_queue_size,
2933 virtio_net_handle_tx_timer);
2934 n->vqs[index].tx_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
2935 virtio_net_tx_timer,
2936 &n->vqs[index]);
2937 } else {
2938 n->vqs[index].tx_vq =
2939 virtio_add_queue(vdev, n->net_conf.tx_queue_size,
2940 virtio_net_handle_tx_bh);
2941 n->vqs[index].tx_bh = qemu_bh_new_guarded(virtio_net_tx_bh, &n->vqs[index],
2942 &DEVICE(vdev)->mem_reentrancy_guard);
2945 n->vqs[index].tx_waiting = 0;
2946 n->vqs[index].n = n;
2949 static void virtio_net_del_queue(VirtIONet *n, int index)
2951 VirtIODevice *vdev = VIRTIO_DEVICE(n);
2952 VirtIONetQueue *q = &n->vqs[index];
2953 NetClientState *nc = qemu_get_subqueue(n->nic, index);
2955 qemu_purge_queued_packets(nc);
2957 virtio_del_queue(vdev, index * 2);
2958 if (q->tx_timer) {
2959 timer_free(q->tx_timer);
2960 q->tx_timer = NULL;
2961 } else {
2962 qemu_bh_delete(q->tx_bh);
2963 q->tx_bh = NULL;
2965 q->tx_waiting = 0;
2966 virtio_del_queue(vdev, index * 2 + 1);
2969 static void virtio_net_change_num_queue_pairs(VirtIONet *n, int new_max_queue_pairs)
2971 VirtIODevice *vdev = VIRTIO_DEVICE(n);
2972 int old_num_queues = virtio_get_num_queues(vdev);
2973 int new_num_queues = new_max_queue_pairs * 2 + 1;
2974 int i;
2976 assert(old_num_queues >= 3);
2977 assert(old_num_queues % 2 == 1);
2979 if (old_num_queues == new_num_queues) {
2980 return;
2984 * We always need to remove and add ctrl vq if
2985 * old_num_queues != new_num_queues. Remove ctrl_vq first,
2986 * and then we only enter one of the following two loops.
2988 virtio_del_queue(vdev, old_num_queues - 1);
2990 for (i = new_num_queues - 1; i < old_num_queues - 1; i += 2) {
2991 /* new_num_queues < old_num_queues */
2992 virtio_net_del_queue(n, i / 2);
2995 for (i = old_num_queues - 1; i < new_num_queues - 1; i += 2) {
2996 /* new_num_queues > old_num_queues */
2997 virtio_net_add_queue(n, i / 2);
3000 /* add ctrl_vq last */
3001 n->ctrl_vq = virtio_add_queue(vdev, 64, virtio_net_handle_ctrl);
3004 static void virtio_net_set_multiqueue(VirtIONet *n, int multiqueue)
3006 int max = multiqueue ? n->max_queue_pairs : 1;
3008 n->multiqueue = multiqueue;
3009 virtio_net_change_num_queue_pairs(n, max);
3011 virtio_net_set_queue_pairs(n);
3014 static int virtio_net_post_load_device(void *opaque, int version_id)
3016 VirtIONet *n = opaque;
3017 VirtIODevice *vdev = VIRTIO_DEVICE(n);
3018 int i, link_down;
3020 trace_virtio_net_post_load_device();
3021 virtio_net_set_mrg_rx_bufs(n, n->mergeable_rx_bufs,
3022 virtio_vdev_has_feature(vdev,
3023 VIRTIO_F_VERSION_1),
3024 virtio_vdev_has_feature(vdev,
3025 VIRTIO_NET_F_HASH_REPORT));
3027 /* MAC_TABLE_ENTRIES may be different from the saved image */
3028 if (n->mac_table.in_use > MAC_TABLE_ENTRIES) {
3029 n->mac_table.in_use = 0;
3032 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)) {
3033 n->curr_guest_offloads = virtio_net_supported_guest_offloads(n);
3037 * curr_guest_offloads will be later overwritten by the
3038 * virtio_set_features_nocheck call done from the virtio_load.
3039 * Here we make sure it is preserved and restored accordingly
3040 * in the virtio_net_post_load_virtio callback.
3042 n->saved_guest_offloads = n->curr_guest_offloads;
3044 virtio_net_set_queue_pairs(n);
3046 /* Find the first multicast entry in the saved MAC filter */
3047 for (i = 0; i < n->mac_table.in_use; i++) {
3048 if (n->mac_table.macs[i * ETH_ALEN] & 1) {
3049 break;
3052 n->mac_table.first_multi = i;
3054 /* nc.link_down can't be migrated, so infer link_down according
3055 * to link status bit in n->status */
3056 link_down = (n->status & VIRTIO_NET_S_LINK_UP) == 0;
3057 for (i = 0; i < n->max_queue_pairs; i++) {
3058 qemu_get_subqueue(n->nic, i)->link_down = link_down;
3061 if (virtio_vdev_has_feature(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE) &&
3062 virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) {
3063 qemu_announce_timer_reset(&n->announce_timer, migrate_announce_params(),
3064 QEMU_CLOCK_VIRTUAL,
3065 virtio_net_announce_timer, n);
3066 if (n->announce_timer.round) {
3067 timer_mod(n->announce_timer.tm,
3068 qemu_clock_get_ms(n->announce_timer.type));
3069 } else {
3070 qemu_announce_timer_del(&n->announce_timer, false);
3074 if (n->rss_data.enabled) {
3075 n->rss_data.enabled_software_rss = n->rss_data.populate_hash;
3076 if (!n->rss_data.populate_hash) {
3077 if (!virtio_net_attach_epbf_rss(n)) {
3078 if (get_vhost_net(qemu_get_queue(n->nic)->peer)) {
3079 warn_report("Can't post-load eBPF RSS for vhost");
3080 } else {
3081 warn_report("Can't post-load eBPF RSS - "
3082 "fallback to software RSS");
3083 n->rss_data.enabled_software_rss = true;
3088 trace_virtio_net_rss_enable(n->rss_data.hash_types,
3089 n->rss_data.indirections_len,
3090 sizeof(n->rss_data.key));
3091 } else {
3092 trace_virtio_net_rss_disable();
3094 return 0;
3097 static int virtio_net_post_load_virtio(VirtIODevice *vdev)
3099 VirtIONet *n = VIRTIO_NET(vdev);
3101 * The actual needed state is now in saved_guest_offloads,
3102 * see virtio_net_post_load_device for detail.
3103 * Restore it back and apply the desired offloads.
3105 n->curr_guest_offloads = n->saved_guest_offloads;
3106 if (peer_has_vnet_hdr(n)) {
3107 virtio_net_apply_guest_offloads(n);
3110 return 0;
3113 /* tx_waiting field of a VirtIONetQueue */
3114 static const VMStateDescription vmstate_virtio_net_queue_tx_waiting = {
3115 .name = "virtio-net-queue-tx_waiting",
3116 .fields = (VMStateField[]) {
3117 VMSTATE_UINT32(tx_waiting, VirtIONetQueue),
3118 VMSTATE_END_OF_LIST()
3122 static bool max_queue_pairs_gt_1(void *opaque, int version_id)
3124 return VIRTIO_NET(opaque)->max_queue_pairs > 1;
3127 static bool has_ctrl_guest_offloads(void *opaque, int version_id)
3129 return virtio_vdev_has_feature(VIRTIO_DEVICE(opaque),
3130 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS);
3133 static bool mac_table_fits(void *opaque, int version_id)
3135 return VIRTIO_NET(opaque)->mac_table.in_use <= MAC_TABLE_ENTRIES;
3138 static bool mac_table_doesnt_fit(void *opaque, int version_id)
3140 return !mac_table_fits(opaque, version_id);
3143 /* This temporary type is shared by all the WITH_TMP methods
3144 * although only some fields are used by each.
3146 struct VirtIONetMigTmp {
3147 VirtIONet *parent;
3148 VirtIONetQueue *vqs_1;
3149 uint16_t curr_queue_pairs_1;
3150 uint8_t has_ufo;
3151 uint32_t has_vnet_hdr;
3154 /* The 2nd and subsequent tx_waiting flags are loaded later than
3155 * the 1st entry in the queue_pairs and only if there's more than one
3156 * entry. We use the tmp mechanism to calculate a temporary
3157 * pointer and count and also validate the count.
3160 static int virtio_net_tx_waiting_pre_save(void *opaque)
3162 struct VirtIONetMigTmp *tmp = opaque;
3164 tmp->vqs_1 = tmp->parent->vqs + 1;
3165 tmp->curr_queue_pairs_1 = tmp->parent->curr_queue_pairs - 1;
3166 if (tmp->parent->curr_queue_pairs == 0) {
3167 tmp->curr_queue_pairs_1 = 0;
3170 return 0;
3173 static int virtio_net_tx_waiting_pre_load(void *opaque)
3175 struct VirtIONetMigTmp *tmp = opaque;
3177 /* Reuse the pointer setup from save */
3178 virtio_net_tx_waiting_pre_save(opaque);
3180 if (tmp->parent->curr_queue_pairs > tmp->parent->max_queue_pairs) {
3181 error_report("virtio-net: curr_queue_pairs %x > max_queue_pairs %x",
3182 tmp->parent->curr_queue_pairs, tmp->parent->max_queue_pairs);
3184 return -EINVAL;
3187 return 0; /* all good */
3190 static const VMStateDescription vmstate_virtio_net_tx_waiting = {
3191 .name = "virtio-net-tx_waiting",
3192 .pre_load = virtio_net_tx_waiting_pre_load,
3193 .pre_save = virtio_net_tx_waiting_pre_save,
3194 .fields = (VMStateField[]) {
3195 VMSTATE_STRUCT_VARRAY_POINTER_UINT16(vqs_1, struct VirtIONetMigTmp,
3196 curr_queue_pairs_1,
3197 vmstate_virtio_net_queue_tx_waiting,
3198 struct VirtIONetQueue),
3199 VMSTATE_END_OF_LIST()
3203 /* the 'has_ufo' flag is just tested; if the incoming stream has the
3204 * flag set we need to check that we have it
3206 static int virtio_net_ufo_post_load(void *opaque, int version_id)
3208 struct VirtIONetMigTmp *tmp = opaque;
3210 if (tmp->has_ufo && !peer_has_ufo(tmp->parent)) {
3211 error_report("virtio-net: saved image requires TUN_F_UFO support");
3212 return -EINVAL;
3215 return 0;
3218 static int virtio_net_ufo_pre_save(void *opaque)
3220 struct VirtIONetMigTmp *tmp = opaque;
3222 tmp->has_ufo = tmp->parent->has_ufo;
3224 return 0;
3227 static const VMStateDescription vmstate_virtio_net_has_ufo = {
3228 .name = "virtio-net-ufo",
3229 .post_load = virtio_net_ufo_post_load,
3230 .pre_save = virtio_net_ufo_pre_save,
3231 .fields = (VMStateField[]) {
3232 VMSTATE_UINT8(has_ufo, struct VirtIONetMigTmp),
3233 VMSTATE_END_OF_LIST()
3237 /* the 'has_vnet_hdr' flag is just tested; if the incoming stream has the
3238 * flag set we need to check that we have it
3240 static int virtio_net_vnet_post_load(void *opaque, int version_id)
3242 struct VirtIONetMigTmp *tmp = opaque;
3244 if (tmp->has_vnet_hdr && !peer_has_vnet_hdr(tmp->parent)) {
3245 error_report("virtio-net: saved image requires vnet_hdr=on");
3246 return -EINVAL;
3249 return 0;
3252 static int virtio_net_vnet_pre_save(void *opaque)
3254 struct VirtIONetMigTmp *tmp = opaque;
3256 tmp->has_vnet_hdr = tmp->parent->has_vnet_hdr;
3258 return 0;
3261 static const VMStateDescription vmstate_virtio_net_has_vnet = {
3262 .name = "virtio-net-vnet",
3263 .post_load = virtio_net_vnet_post_load,
3264 .pre_save = virtio_net_vnet_pre_save,
3265 .fields = (VMStateField[]) {
3266 VMSTATE_UINT32(has_vnet_hdr, struct VirtIONetMigTmp),
3267 VMSTATE_END_OF_LIST()
3271 static bool virtio_net_rss_needed(void *opaque)
3273 return VIRTIO_NET(opaque)->rss_data.enabled;
3276 static const VMStateDescription vmstate_virtio_net_rss = {
3277 .name = "virtio-net-device/rss",
3278 .version_id = 1,
3279 .minimum_version_id = 1,
3280 .needed = virtio_net_rss_needed,
3281 .fields = (VMStateField[]) {
3282 VMSTATE_BOOL(rss_data.enabled, VirtIONet),
3283 VMSTATE_BOOL(rss_data.redirect, VirtIONet),
3284 VMSTATE_BOOL(rss_data.populate_hash, VirtIONet),
3285 VMSTATE_UINT32(rss_data.hash_types, VirtIONet),
3286 VMSTATE_UINT16(rss_data.indirections_len, VirtIONet),
3287 VMSTATE_UINT16(rss_data.default_queue, VirtIONet),
3288 VMSTATE_UINT8_ARRAY(rss_data.key, VirtIONet,
3289 VIRTIO_NET_RSS_MAX_KEY_SIZE),
3290 VMSTATE_VARRAY_UINT16_ALLOC(rss_data.indirections_table, VirtIONet,
3291 rss_data.indirections_len, 0,
3292 vmstate_info_uint16, uint16_t),
3293 VMSTATE_END_OF_LIST()
3297 static const VMStateDescription vmstate_virtio_net_device = {
3298 .name = "virtio-net-device",
3299 .version_id = VIRTIO_NET_VM_VERSION,
3300 .minimum_version_id = VIRTIO_NET_VM_VERSION,
3301 .post_load = virtio_net_post_load_device,
3302 .fields = (VMStateField[]) {
3303 VMSTATE_UINT8_ARRAY(mac, VirtIONet, ETH_ALEN),
3304 VMSTATE_STRUCT_POINTER(vqs, VirtIONet,
3305 vmstate_virtio_net_queue_tx_waiting,
3306 VirtIONetQueue),
3307 VMSTATE_UINT32(mergeable_rx_bufs, VirtIONet),
3308 VMSTATE_UINT16(status, VirtIONet),
3309 VMSTATE_UINT8(promisc, VirtIONet),
3310 VMSTATE_UINT8(allmulti, VirtIONet),
3311 VMSTATE_UINT32(mac_table.in_use, VirtIONet),
3313 /* Guarded pair: If it fits we load it, else we throw it away
3314 * - can happen if source has a larger MAC table.; post-load
3315 * sets flags in this case.
3317 VMSTATE_VBUFFER_MULTIPLY(mac_table.macs, VirtIONet,
3318 0, mac_table_fits, mac_table.in_use,
3319 ETH_ALEN),
3320 VMSTATE_UNUSED_VARRAY_UINT32(VirtIONet, mac_table_doesnt_fit, 0,
3321 mac_table.in_use, ETH_ALEN),
3323 /* Note: This is an array of uint32's that's always been saved as a
3324 * buffer; hold onto your endiannesses; it's actually used as a bitmap
3325 * but based on the uint.
3327 VMSTATE_BUFFER_POINTER_UNSAFE(vlans, VirtIONet, 0, MAX_VLAN >> 3),
3328 VMSTATE_WITH_TMP(VirtIONet, struct VirtIONetMigTmp,
3329 vmstate_virtio_net_has_vnet),
3330 VMSTATE_UINT8(mac_table.multi_overflow, VirtIONet),
3331 VMSTATE_UINT8(mac_table.uni_overflow, VirtIONet),
3332 VMSTATE_UINT8(alluni, VirtIONet),
3333 VMSTATE_UINT8(nomulti, VirtIONet),
3334 VMSTATE_UINT8(nouni, VirtIONet),
3335 VMSTATE_UINT8(nobcast, VirtIONet),
3336 VMSTATE_WITH_TMP(VirtIONet, struct VirtIONetMigTmp,
3337 vmstate_virtio_net_has_ufo),
3338 VMSTATE_SINGLE_TEST(max_queue_pairs, VirtIONet, max_queue_pairs_gt_1, 0,
3339 vmstate_info_uint16_equal, uint16_t),
3340 VMSTATE_UINT16_TEST(curr_queue_pairs, VirtIONet, max_queue_pairs_gt_1),
3341 VMSTATE_WITH_TMP(VirtIONet, struct VirtIONetMigTmp,
3342 vmstate_virtio_net_tx_waiting),
3343 VMSTATE_UINT64_TEST(curr_guest_offloads, VirtIONet,
3344 has_ctrl_guest_offloads),
3345 VMSTATE_END_OF_LIST()
3347 .subsections = (const VMStateDescription * []) {
3348 &vmstate_virtio_net_rss,
3349 NULL
3353 static NetClientInfo net_virtio_info = {
3354 .type = NET_CLIENT_DRIVER_NIC,
3355 .size = sizeof(NICState),
3356 .can_receive = virtio_net_can_receive,
3357 .receive = virtio_net_receive,
3358 .link_status_changed = virtio_net_set_link_status,
3359 .query_rx_filter = virtio_net_query_rxfilter,
3360 .announce = virtio_net_announce,
3363 static bool virtio_net_guest_notifier_pending(VirtIODevice *vdev, int idx)
3365 VirtIONet *n = VIRTIO_NET(vdev);
3366 NetClientState *nc;
3367 assert(n->vhost_started);
3368 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_MQ) && idx == 2) {
3369 /* Must guard against invalid features and bogus queue index
3370 * from being set by malicious guest, or penetrated through
3371 * buggy migration stream.
3373 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) {
3374 qemu_log_mask(LOG_GUEST_ERROR,
3375 "%s: bogus vq index ignored\n", __func__);
3376 return false;
3378 nc = qemu_get_subqueue(n->nic, n->max_queue_pairs);
3379 } else {
3380 nc = qemu_get_subqueue(n->nic, vq2q(idx));
3383 * Add the check for configure interrupt, Use VIRTIO_CONFIG_IRQ_IDX -1
3384 * as the macro of configure interrupt's IDX, If this driver does not
3385 * support, the function will return false
3388 if (idx == VIRTIO_CONFIG_IRQ_IDX) {
3389 return vhost_net_config_pending(get_vhost_net(nc->peer));
3391 return vhost_net_virtqueue_pending(get_vhost_net(nc->peer), idx);
3394 static void virtio_net_guest_notifier_mask(VirtIODevice *vdev, int idx,
3395 bool mask)
3397 VirtIONet *n = VIRTIO_NET(vdev);
3398 NetClientState *nc;
3399 assert(n->vhost_started);
3400 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_MQ) && idx == 2) {
3401 /* Must guard against invalid features and bogus queue index
3402 * from being set by malicious guest, or penetrated through
3403 * buggy migration stream.
3405 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) {
3406 qemu_log_mask(LOG_GUEST_ERROR,
3407 "%s: bogus vq index ignored\n", __func__);
3408 return;
3410 nc = qemu_get_subqueue(n->nic, n->max_queue_pairs);
3411 } else {
3412 nc = qemu_get_subqueue(n->nic, vq2q(idx));
3415 *Add the check for configure interrupt, Use VIRTIO_CONFIG_IRQ_IDX -1
3416 * as the macro of configure interrupt's IDX, If this driver does not
3417 * support, the function will return
3420 if (idx == VIRTIO_CONFIG_IRQ_IDX) {
3421 vhost_net_config_mask(get_vhost_net(nc->peer), vdev, mask);
3422 return;
3424 vhost_net_virtqueue_mask(get_vhost_net(nc->peer), vdev, idx, mask);
3427 static void virtio_net_set_config_size(VirtIONet *n, uint64_t host_features)
3429 virtio_add_feature(&host_features, VIRTIO_NET_F_MAC);
3431 n->config_size = virtio_get_config_size(&cfg_size_params, host_features);
3434 void virtio_net_set_netclient_name(VirtIONet *n, const char *name,
3435 const char *type)
3438 * The name can be NULL, the netclient name will be type.x.
3440 assert(type != NULL);
3442 g_free(n->netclient_name);
3443 g_free(n->netclient_type);
3444 n->netclient_name = g_strdup(name);
3445 n->netclient_type = g_strdup(type);
3448 static bool failover_unplug_primary(VirtIONet *n, DeviceState *dev)
3450 HotplugHandler *hotplug_ctrl;
3451 PCIDevice *pci_dev;
3452 Error *err = NULL;
3454 hotplug_ctrl = qdev_get_hotplug_handler(dev);
3455 if (hotplug_ctrl) {
3456 pci_dev = PCI_DEVICE(dev);
3457 pci_dev->partially_hotplugged = true;
3458 hotplug_handler_unplug_request(hotplug_ctrl, dev, &err);
3459 if (err) {
3460 error_report_err(err);
3461 return false;
3463 } else {
3464 return false;
3466 return true;
3469 static bool failover_replug_primary(VirtIONet *n, DeviceState *dev,
3470 Error **errp)
3472 Error *err = NULL;
3473 HotplugHandler *hotplug_ctrl;
3474 PCIDevice *pdev = PCI_DEVICE(dev);
3475 BusState *primary_bus;
3477 if (!pdev->partially_hotplugged) {
3478 return true;
3480 primary_bus = dev->parent_bus;
3481 if (!primary_bus) {
3482 error_setg(errp, "virtio_net: couldn't find primary bus");
3483 return false;
3485 qdev_set_parent_bus(dev, primary_bus, &error_abort);
3486 qatomic_set(&n->failover_primary_hidden, false);
3487 hotplug_ctrl = qdev_get_hotplug_handler(dev);
3488 if (hotplug_ctrl) {
3489 hotplug_handler_pre_plug(hotplug_ctrl, dev, &err);
3490 if (err) {
3491 goto out;
3493 hotplug_handler_plug(hotplug_ctrl, dev, &err);
3495 pdev->partially_hotplugged = false;
3497 out:
3498 error_propagate(errp, err);
3499 return !err;
3502 static void virtio_net_handle_migration_primary(VirtIONet *n, MigrationState *s)
3504 bool should_be_hidden;
3505 Error *err = NULL;
3506 DeviceState *dev = failover_find_primary_device(n);
3508 if (!dev) {
3509 return;
3512 should_be_hidden = qatomic_read(&n->failover_primary_hidden);
3514 if (migration_in_setup(s) && !should_be_hidden) {
3515 if (failover_unplug_primary(n, dev)) {
3516 vmstate_unregister(VMSTATE_IF(dev), qdev_get_vmsd(dev), dev);
3517 qapi_event_send_unplug_primary(dev->id);
3518 qatomic_set(&n->failover_primary_hidden, true);
3519 } else {
3520 warn_report("couldn't unplug primary device");
3522 } else if (migration_has_failed(s)) {
3523 /* We already unplugged the device let's plug it back */
3524 if (!failover_replug_primary(n, dev, &err)) {
3525 if (err) {
3526 error_report_err(err);
3532 static void virtio_net_migration_state_notifier(Notifier *notifier, void *data)
3534 MigrationState *s = data;
3535 VirtIONet *n = container_of(notifier, VirtIONet, migration_state);
3536 virtio_net_handle_migration_primary(n, s);
3539 static bool failover_hide_primary_device(DeviceListener *listener,
3540 const QDict *device_opts,
3541 bool from_json,
3542 Error **errp)
3544 VirtIONet *n = container_of(listener, VirtIONet, primary_listener);
3545 const char *standby_id;
3547 if (!device_opts) {
3548 return false;
3551 if (!qdict_haskey(device_opts, "failover_pair_id")) {
3552 return false;
3555 if (!qdict_haskey(device_opts, "id")) {
3556 error_setg(errp, "Device with failover_pair_id needs to have id");
3557 return false;
3560 standby_id = qdict_get_str(device_opts, "failover_pair_id");
3561 if (g_strcmp0(standby_id, n->netclient_name) != 0) {
3562 return false;
3566 * The hide helper can be called several times for a given device.
3567 * Check there is only one primary for a virtio-net device but
3568 * don't duplicate the qdict several times if it's called for the same
3569 * device.
3571 if (n->primary_opts) {
3572 const char *old, *new;
3573 /* devices with failover_pair_id always have an id */
3574 old = qdict_get_str(n->primary_opts, "id");
3575 new = qdict_get_str(device_opts, "id");
3576 if (strcmp(old, new) != 0) {
3577 error_setg(errp, "Cannot attach more than one primary device to "
3578 "'%s': '%s' and '%s'", n->netclient_name, old, new);
3579 return false;
3581 } else {
3582 n->primary_opts = qdict_clone_shallow(device_opts);
3583 n->primary_opts_from_json = from_json;
3586 /* failover_primary_hidden is set during feature negotiation */
3587 return qatomic_read(&n->failover_primary_hidden);
3590 static void virtio_net_device_realize(DeviceState *dev, Error **errp)
3592 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
3593 VirtIONet *n = VIRTIO_NET(dev);
3594 NetClientState *nc;
3595 int i;
3597 if (n->net_conf.mtu) {
3598 n->host_features |= (1ULL << VIRTIO_NET_F_MTU);
3601 if (n->net_conf.duplex_str) {
3602 if (strncmp(n->net_conf.duplex_str, "half", 5) == 0) {
3603 n->net_conf.duplex = DUPLEX_HALF;
3604 } else if (strncmp(n->net_conf.duplex_str, "full", 5) == 0) {
3605 n->net_conf.duplex = DUPLEX_FULL;
3606 } else {
3607 error_setg(errp, "'duplex' must be 'half' or 'full'");
3608 return;
3610 n->host_features |= (1ULL << VIRTIO_NET_F_SPEED_DUPLEX);
3611 } else {
3612 n->net_conf.duplex = DUPLEX_UNKNOWN;
3615 if (n->net_conf.speed < SPEED_UNKNOWN) {
3616 error_setg(errp, "'speed' must be between 0 and INT_MAX");
3617 return;
3619 if (n->net_conf.speed >= 0) {
3620 n->host_features |= (1ULL << VIRTIO_NET_F_SPEED_DUPLEX);
3623 if (n->failover) {
3624 n->primary_listener.hide_device = failover_hide_primary_device;
3625 qatomic_set(&n->failover_primary_hidden, true);
3626 device_listener_register(&n->primary_listener);
3627 migration_add_notifier(&n->migration_state,
3628 virtio_net_migration_state_notifier);
3629 n->host_features |= (1ULL << VIRTIO_NET_F_STANDBY);
3632 virtio_net_set_config_size(n, n->host_features);
3633 virtio_init(vdev, VIRTIO_ID_NET, n->config_size);
3636 * We set a lower limit on RX queue size to what it always was.
3637 * Guests that want a smaller ring can always resize it without
3638 * help from us (using virtio 1 and up).
3640 if (n->net_conf.rx_queue_size < VIRTIO_NET_RX_QUEUE_MIN_SIZE ||
3641 n->net_conf.rx_queue_size > VIRTQUEUE_MAX_SIZE ||
3642 !is_power_of_2(n->net_conf.rx_queue_size)) {
3643 error_setg(errp, "Invalid rx_queue_size (= %" PRIu16 "), "
3644 "must be a power of 2 between %d and %d.",
3645 n->net_conf.rx_queue_size, VIRTIO_NET_RX_QUEUE_MIN_SIZE,
3646 VIRTQUEUE_MAX_SIZE);
3647 virtio_cleanup(vdev);
3648 return;
3651 if (n->net_conf.tx_queue_size < VIRTIO_NET_TX_QUEUE_MIN_SIZE ||
3652 n->net_conf.tx_queue_size > virtio_net_max_tx_queue_size(n) ||
3653 !is_power_of_2(n->net_conf.tx_queue_size)) {
3654 error_setg(errp, "Invalid tx_queue_size (= %" PRIu16 "), "
3655 "must be a power of 2 between %d and %d",
3656 n->net_conf.tx_queue_size, VIRTIO_NET_TX_QUEUE_MIN_SIZE,
3657 virtio_net_max_tx_queue_size(n));
3658 virtio_cleanup(vdev);
3659 return;
3662 n->max_ncs = MAX(n->nic_conf.peers.queues, 1);
3665 * Figure out the datapath queue pairs since the backend could
3666 * provide control queue via peers as well.
3668 if (n->nic_conf.peers.queues) {
3669 for (i = 0; i < n->max_ncs; i++) {
3670 if (n->nic_conf.peers.ncs[i]->is_datapath) {
3671 ++n->max_queue_pairs;
3675 n->max_queue_pairs = MAX(n->max_queue_pairs, 1);
3677 if (n->max_queue_pairs * 2 + 1 > VIRTIO_QUEUE_MAX) {
3678 error_setg(errp, "Invalid number of queue pairs (= %" PRIu32 "), "
3679 "must be a positive integer less than %d.",
3680 n->max_queue_pairs, (VIRTIO_QUEUE_MAX - 1) / 2);
3681 virtio_cleanup(vdev);
3682 return;
3684 n->vqs = g_new0(VirtIONetQueue, n->max_queue_pairs);
3685 n->curr_queue_pairs = 1;
3686 n->tx_timeout = n->net_conf.txtimer;
3688 if (n->net_conf.tx && strcmp(n->net_conf.tx, "timer")
3689 && strcmp(n->net_conf.tx, "bh")) {
3690 warn_report("virtio-net: "
3691 "Unknown option tx=%s, valid options: \"timer\" \"bh\"",
3692 n->net_conf.tx);
3693 error_printf("Defaulting to \"bh\"");
3696 n->net_conf.tx_queue_size = MIN(virtio_net_max_tx_queue_size(n),
3697 n->net_conf.tx_queue_size);
3699 for (i = 0; i < n->max_queue_pairs; i++) {
3700 virtio_net_add_queue(n, i);
3703 n->ctrl_vq = virtio_add_queue(vdev, 64, virtio_net_handle_ctrl);
3704 qemu_macaddr_default_if_unset(&n->nic_conf.macaddr);
3705 memcpy(&n->mac[0], &n->nic_conf.macaddr, sizeof(n->mac));
3706 n->status = VIRTIO_NET_S_LINK_UP;
3707 qemu_announce_timer_reset(&n->announce_timer, migrate_announce_params(),
3708 QEMU_CLOCK_VIRTUAL,
3709 virtio_net_announce_timer, n);
3710 n->announce_timer.round = 0;
3712 if (n->netclient_type) {
3714 * Happen when virtio_net_set_netclient_name has been called.
3716 n->nic = qemu_new_nic(&net_virtio_info, &n->nic_conf,
3717 n->netclient_type, n->netclient_name, n);
3718 } else {
3719 n->nic = qemu_new_nic(&net_virtio_info, &n->nic_conf,
3720 object_get_typename(OBJECT(dev)), dev->id, n);
3723 for (i = 0; i < n->max_queue_pairs; i++) {
3724 n->nic->ncs[i].do_not_pad = true;
3727 peer_test_vnet_hdr(n);
3728 if (peer_has_vnet_hdr(n)) {
3729 for (i = 0; i < n->max_queue_pairs; i++) {
3730 qemu_using_vnet_hdr(qemu_get_subqueue(n->nic, i)->peer, true);
3732 n->host_hdr_len = sizeof(struct virtio_net_hdr);
3733 } else {
3734 n->host_hdr_len = 0;
3737 qemu_format_nic_info_str(qemu_get_queue(n->nic), n->nic_conf.macaddr.a);
3739 n->vqs[0].tx_waiting = 0;
3740 n->tx_burst = n->net_conf.txburst;
3741 virtio_net_set_mrg_rx_bufs(n, 0, 0, 0);
3742 n->promisc = 1; /* for compatibility */
3744 n->mac_table.macs = g_malloc0(MAC_TABLE_ENTRIES * ETH_ALEN);
3746 n->vlans = g_malloc0(MAX_VLAN >> 3);
3748 nc = qemu_get_queue(n->nic);
3749 nc->rxfilter_notify_enabled = 1;
3751 if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_VDPA) {
3752 struct virtio_net_config netcfg = {};
3753 memcpy(&netcfg.mac, &n->nic_conf.macaddr, ETH_ALEN);
3754 vhost_net_set_config(get_vhost_net(nc->peer),
3755 (uint8_t *)&netcfg, 0, ETH_ALEN, VHOST_SET_CONFIG_TYPE_FRONTEND);
3757 QTAILQ_INIT(&n->rsc_chains);
3758 n->qdev = dev;
3760 net_rx_pkt_init(&n->rx_pkt);
3762 if (virtio_has_feature(n->host_features, VIRTIO_NET_F_RSS)) {
3763 virtio_net_load_ebpf(n);
3767 static void virtio_net_device_unrealize(DeviceState *dev)
3769 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
3770 VirtIONet *n = VIRTIO_NET(dev);
3771 int i, max_queue_pairs;
3773 if (virtio_has_feature(n->host_features, VIRTIO_NET_F_RSS)) {
3774 virtio_net_unload_ebpf(n);
3777 /* This will stop vhost backend if appropriate. */
3778 virtio_net_set_status(vdev, 0);
3780 g_free(n->netclient_name);
3781 n->netclient_name = NULL;
3782 g_free(n->netclient_type);
3783 n->netclient_type = NULL;
3785 g_free(n->mac_table.macs);
3786 g_free(n->vlans);
3788 if (n->failover) {
3789 qobject_unref(n->primary_opts);
3790 device_listener_unregister(&n->primary_listener);
3791 migration_remove_notifier(&n->migration_state);
3792 } else {
3793 assert(n->primary_opts == NULL);
3796 max_queue_pairs = n->multiqueue ? n->max_queue_pairs : 1;
3797 for (i = 0; i < max_queue_pairs; i++) {
3798 virtio_net_del_queue(n, i);
3800 /* delete also control vq */
3801 virtio_del_queue(vdev, max_queue_pairs * 2);
3802 qemu_announce_timer_del(&n->announce_timer, false);
3803 g_free(n->vqs);
3804 qemu_del_nic(n->nic);
3805 virtio_net_rsc_cleanup(n);
3806 g_free(n->rss_data.indirections_table);
3807 net_rx_pkt_uninit(n->rx_pkt);
3808 virtio_cleanup(vdev);
3811 static void virtio_net_instance_init(Object *obj)
3813 VirtIONet *n = VIRTIO_NET(obj);
3816 * The default config_size is sizeof(struct virtio_net_config).
3817 * Can be overridden with virtio_net_set_config_size.
3819 n->config_size = sizeof(struct virtio_net_config);
3820 device_add_bootindex_property(obj, &n->nic_conf.bootindex,
3821 "bootindex", "/ethernet-phy@0",
3822 DEVICE(n));
3824 ebpf_rss_init(&n->ebpf_rss);
3827 static int virtio_net_pre_save(void *opaque)
3829 VirtIONet *n = opaque;
3831 /* At this point, backend must be stopped, otherwise
3832 * it might keep writing to memory. */
3833 assert(!n->vhost_started);
3835 return 0;
3838 static bool primary_unplug_pending(void *opaque)
3840 DeviceState *dev = opaque;
3841 DeviceState *primary;
3842 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
3843 VirtIONet *n = VIRTIO_NET(vdev);
3845 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
3846 return false;
3848 primary = failover_find_primary_device(n);
3849 return primary ? primary->pending_deleted_event : false;
3852 static bool dev_unplug_pending(void *opaque)
3854 DeviceState *dev = opaque;
3855 VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(dev);
3857 return vdc->primary_unplug_pending(dev);
3860 static struct vhost_dev *virtio_net_get_vhost(VirtIODevice *vdev)
3862 VirtIONet *n = VIRTIO_NET(vdev);
3863 NetClientState *nc = qemu_get_queue(n->nic);
3864 struct vhost_net *net = get_vhost_net(nc->peer);
3865 return &net->dev;
3868 static const VMStateDescription vmstate_virtio_net = {
3869 .name = "virtio-net",
3870 .minimum_version_id = VIRTIO_NET_VM_VERSION,
3871 .version_id = VIRTIO_NET_VM_VERSION,
3872 .fields = (VMStateField[]) {
3873 VMSTATE_VIRTIO_DEVICE,
3874 VMSTATE_END_OF_LIST()
3876 .pre_save = virtio_net_pre_save,
3877 .dev_unplug_pending = dev_unplug_pending,
3880 static Property virtio_net_properties[] = {
3881 DEFINE_PROP_BIT64("csum", VirtIONet, host_features,
3882 VIRTIO_NET_F_CSUM, true),
3883 DEFINE_PROP_BIT64("guest_csum", VirtIONet, host_features,
3884 VIRTIO_NET_F_GUEST_CSUM, true),
3885 DEFINE_PROP_BIT64("gso", VirtIONet, host_features, VIRTIO_NET_F_GSO, true),
3886 DEFINE_PROP_BIT64("guest_tso4", VirtIONet, host_features,
3887 VIRTIO_NET_F_GUEST_TSO4, true),
3888 DEFINE_PROP_BIT64("guest_tso6", VirtIONet, host_features,
3889 VIRTIO_NET_F_GUEST_TSO6, true),
3890 DEFINE_PROP_BIT64("guest_ecn", VirtIONet, host_features,
3891 VIRTIO_NET_F_GUEST_ECN, true),
3892 DEFINE_PROP_BIT64("guest_ufo", VirtIONet, host_features,
3893 VIRTIO_NET_F_GUEST_UFO, true),
3894 DEFINE_PROP_BIT64("guest_announce", VirtIONet, host_features,
3895 VIRTIO_NET_F_GUEST_ANNOUNCE, true),
3896 DEFINE_PROP_BIT64("host_tso4", VirtIONet, host_features,
3897 VIRTIO_NET_F_HOST_TSO4, true),
3898 DEFINE_PROP_BIT64("host_tso6", VirtIONet, host_features,
3899 VIRTIO_NET_F_HOST_TSO6, true),
3900 DEFINE_PROP_BIT64("host_ecn", VirtIONet, host_features,
3901 VIRTIO_NET_F_HOST_ECN, true),
3902 DEFINE_PROP_BIT64("host_ufo", VirtIONet, host_features,
3903 VIRTIO_NET_F_HOST_UFO, true),
3904 DEFINE_PROP_BIT64("mrg_rxbuf", VirtIONet, host_features,
3905 VIRTIO_NET_F_MRG_RXBUF, true),
3906 DEFINE_PROP_BIT64("status", VirtIONet, host_features,
3907 VIRTIO_NET_F_STATUS, true),
3908 DEFINE_PROP_BIT64("ctrl_vq", VirtIONet, host_features,
3909 VIRTIO_NET_F_CTRL_VQ, true),
3910 DEFINE_PROP_BIT64("ctrl_rx", VirtIONet, host_features,
3911 VIRTIO_NET_F_CTRL_RX, true),
3912 DEFINE_PROP_BIT64("ctrl_vlan", VirtIONet, host_features,
3913 VIRTIO_NET_F_CTRL_VLAN, true),
3914 DEFINE_PROP_BIT64("ctrl_rx_extra", VirtIONet, host_features,
3915 VIRTIO_NET_F_CTRL_RX_EXTRA, true),
3916 DEFINE_PROP_BIT64("ctrl_mac_addr", VirtIONet, host_features,
3917 VIRTIO_NET_F_CTRL_MAC_ADDR, true),
3918 DEFINE_PROP_BIT64("ctrl_guest_offloads", VirtIONet, host_features,
3919 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, true),
3920 DEFINE_PROP_BIT64("mq", VirtIONet, host_features, VIRTIO_NET_F_MQ, false),
3921 DEFINE_PROP_BIT64("rss", VirtIONet, host_features,
3922 VIRTIO_NET_F_RSS, false),
3923 DEFINE_PROP_BIT64("hash", VirtIONet, host_features,
3924 VIRTIO_NET_F_HASH_REPORT, false),
3925 DEFINE_PROP_BIT64("guest_rsc_ext", VirtIONet, host_features,
3926 VIRTIO_NET_F_RSC_EXT, false),
3927 DEFINE_PROP_UINT32("rsc_interval", VirtIONet, rsc_timeout,
3928 VIRTIO_NET_RSC_DEFAULT_INTERVAL),
3929 DEFINE_NIC_PROPERTIES(VirtIONet, nic_conf),
3930 DEFINE_PROP_UINT32("x-txtimer", VirtIONet, net_conf.txtimer,
3931 TX_TIMER_INTERVAL),
3932 DEFINE_PROP_INT32("x-txburst", VirtIONet, net_conf.txburst, TX_BURST),
3933 DEFINE_PROP_STRING("tx", VirtIONet, net_conf.tx),
3934 DEFINE_PROP_UINT16("rx_queue_size", VirtIONet, net_conf.rx_queue_size,
3935 VIRTIO_NET_RX_QUEUE_DEFAULT_SIZE),
3936 DEFINE_PROP_UINT16("tx_queue_size", VirtIONet, net_conf.tx_queue_size,
3937 VIRTIO_NET_TX_QUEUE_DEFAULT_SIZE),
3938 DEFINE_PROP_UINT16("host_mtu", VirtIONet, net_conf.mtu, 0),
3939 DEFINE_PROP_BOOL("x-mtu-bypass-backend", VirtIONet, mtu_bypass_backend,
3940 true),
3941 DEFINE_PROP_INT32("speed", VirtIONet, net_conf.speed, SPEED_UNKNOWN),
3942 DEFINE_PROP_STRING("duplex", VirtIONet, net_conf.duplex_str),
3943 DEFINE_PROP_BOOL("failover", VirtIONet, failover, false),
3944 DEFINE_PROP_BIT64("guest_uso4", VirtIONet, host_features,
3945 VIRTIO_NET_F_GUEST_USO4, true),
3946 DEFINE_PROP_BIT64("guest_uso6", VirtIONet, host_features,
3947 VIRTIO_NET_F_GUEST_USO6, true),
3948 DEFINE_PROP_BIT64("host_uso", VirtIONet, host_features,
3949 VIRTIO_NET_F_HOST_USO, true),
3950 DEFINE_PROP_END_OF_LIST(),
3953 static void virtio_net_class_init(ObjectClass *klass, void *data)
3955 DeviceClass *dc = DEVICE_CLASS(klass);
3956 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
3958 device_class_set_props(dc, virtio_net_properties);
3959 dc->vmsd = &vmstate_virtio_net;
3960 set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
3961 vdc->realize = virtio_net_device_realize;
3962 vdc->unrealize = virtio_net_device_unrealize;
3963 vdc->get_config = virtio_net_get_config;
3964 vdc->set_config = virtio_net_set_config;
3965 vdc->get_features = virtio_net_get_features;
3966 vdc->set_features = virtio_net_set_features;
3967 vdc->bad_features = virtio_net_bad_features;
3968 vdc->reset = virtio_net_reset;
3969 vdc->queue_reset = virtio_net_queue_reset;
3970 vdc->queue_enable = virtio_net_queue_enable;
3971 vdc->set_status = virtio_net_set_status;
3972 vdc->guest_notifier_mask = virtio_net_guest_notifier_mask;
3973 vdc->guest_notifier_pending = virtio_net_guest_notifier_pending;
3974 vdc->legacy_features |= (0x1 << VIRTIO_NET_F_GSO);
3975 vdc->post_load = virtio_net_post_load_virtio;
3976 vdc->vmsd = &vmstate_virtio_net_device;
3977 vdc->primary_unplug_pending = primary_unplug_pending;
3978 vdc->get_vhost = virtio_net_get_vhost;
3979 vdc->toggle_device_iotlb = vhost_toggle_device_iotlb;
3982 static const TypeInfo virtio_net_info = {
3983 .name = TYPE_VIRTIO_NET,
3984 .parent = TYPE_VIRTIO_DEVICE,
3985 .instance_size = sizeof(VirtIONet),
3986 .instance_init = virtio_net_instance_init,
3987 .class_init = virtio_net_class_init,
3990 static void virtio_register_types(void)
3992 type_register_static(&virtio_net_info);
3995 type_init(virtio_register_types)