4 * Copyright(c) 2017-2018 Intel Corporation.
5 * Copyright(c) 2020 Red Hat, Inc.
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
12 #include "qemu/osdep.h"
14 #include "hw/virtio/virtio-net.h"
15 #include "net/vhost_net.h"
16 #include "net/vhost-vdpa.h"
17 #include "hw/virtio/vhost-vdpa.h"
18 #include "qemu/config-file.h"
19 #include "qemu/error-report.h"
21 #include "qemu/memalign.h"
22 #include "qemu/option.h"
23 #include "qapi/error.h"
24 #include <linux/vhost.h>
25 #include <sys/ioctl.h>
27 #include "standard-headers/linux/virtio_net.h"
28 #include "monitor/monitor.h"
29 #include "migration/migration.h"
30 #include "migration/misc.h"
31 #include "hw/virtio/vhost.h"
33 /* Todo:need to add the multiqueue support here */
34 typedef struct VhostVDPAState
{
36 struct vhost_vdpa vhost_vdpa
;
37 Notifier migration_state
;
38 VHostNetState
*vhost_net
;
40 /* Control commands shadow buffers */
41 void *cvq_cmd_out_buffer
;
42 virtio_net_ctrl_ack
*status
;
44 /* The device always have SVQ enabled */
47 /* The device can isolate CVQ in its own ASID */
54 * The array is sorted alphabetically in ascending order,
55 * with the exception of VHOST_INVALID_FEATURE_BIT,
56 * which should always be the last entry.
58 const int vdpa_feature_bits
[] = {
60 VIRTIO_F_IOMMU_PLATFORM
,
61 VIRTIO_F_NOTIFY_ON_EMPTY
,
66 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS
,
67 VIRTIO_NET_F_CTRL_MAC_ADDR
,
69 VIRTIO_NET_F_CTRL_RX_EXTRA
,
70 VIRTIO_NET_F_CTRL_VLAN
,
73 VIRTIO_NET_F_GUEST_CSUM
,
74 VIRTIO_NET_F_GUEST_ECN
,
75 VIRTIO_NET_F_GUEST_TSO4
,
76 VIRTIO_NET_F_GUEST_TSO6
,
77 VIRTIO_NET_F_GUEST_UFO
,
78 VIRTIO_NET_F_GUEST_USO4
,
79 VIRTIO_NET_F_GUEST_USO6
,
80 VIRTIO_NET_F_HASH_REPORT
,
81 VIRTIO_NET_F_HOST_ECN
,
82 VIRTIO_NET_F_HOST_TSO4
,
83 VIRTIO_NET_F_HOST_TSO6
,
84 VIRTIO_NET_F_HOST_UFO
,
85 VIRTIO_NET_F_HOST_USO
,
87 VIRTIO_NET_F_MRG_RXBUF
,
91 VIRTIO_RING_F_EVENT_IDX
,
92 VIRTIO_RING_F_INDIRECT_DESC
,
94 /* VHOST_INVALID_FEATURE_BIT should always be the last entry */
95 VHOST_INVALID_FEATURE_BIT
98 /** Supported device specific feature bits with SVQ */
99 static const uint64_t vdpa_svq_device_features
=
100 BIT_ULL(VIRTIO_NET_F_CSUM
) |
101 BIT_ULL(VIRTIO_NET_F_GUEST_CSUM
) |
102 BIT_ULL(VIRTIO_NET_F_CTRL_GUEST_OFFLOADS
) |
103 BIT_ULL(VIRTIO_NET_F_MTU
) |
104 BIT_ULL(VIRTIO_NET_F_MAC
) |
105 BIT_ULL(VIRTIO_NET_F_GUEST_TSO4
) |
106 BIT_ULL(VIRTIO_NET_F_GUEST_TSO6
) |
107 BIT_ULL(VIRTIO_NET_F_GUEST_ECN
) |
108 BIT_ULL(VIRTIO_NET_F_GUEST_UFO
) |
109 BIT_ULL(VIRTIO_NET_F_HOST_TSO4
) |
110 BIT_ULL(VIRTIO_NET_F_HOST_TSO6
) |
111 BIT_ULL(VIRTIO_NET_F_HOST_ECN
) |
112 BIT_ULL(VIRTIO_NET_F_HOST_UFO
) |
113 BIT_ULL(VIRTIO_NET_F_MRG_RXBUF
) |
114 BIT_ULL(VIRTIO_NET_F_STATUS
) |
115 BIT_ULL(VIRTIO_NET_F_CTRL_VQ
) |
116 BIT_ULL(VIRTIO_NET_F_CTRL_RX
) |
117 BIT_ULL(VIRTIO_NET_F_CTRL_RX_EXTRA
) |
118 BIT_ULL(VIRTIO_NET_F_MQ
) |
119 BIT_ULL(VIRTIO_F_ANY_LAYOUT
) |
120 BIT_ULL(VIRTIO_NET_F_CTRL_MAC_ADDR
) |
121 /* VHOST_F_LOG_ALL is exposed by SVQ */
122 BIT_ULL(VHOST_F_LOG_ALL
) |
123 BIT_ULL(VIRTIO_NET_F_RSC_EXT
) |
124 BIT_ULL(VIRTIO_NET_F_STANDBY
) |
125 BIT_ULL(VIRTIO_NET_F_SPEED_DUPLEX
);
127 #define VHOST_VDPA_NET_CVQ_ASID 1
129 VHostNetState
*vhost_vdpa_get_vhost_net(NetClientState
*nc
)
131 VhostVDPAState
*s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
132 assert(nc
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
136 static size_t vhost_vdpa_net_cvq_cmd_len(void)
139 * MAC_TABLE_SET is the ctrl command that produces the longer out buffer.
140 * In buffer is always 1 byte, so it should fit here
142 return sizeof(struct virtio_net_ctrl_hdr
) +
143 2 * sizeof(struct virtio_net_ctrl_mac
) +
144 MAC_TABLE_ENTRIES
* ETH_ALEN
;
147 static size_t vhost_vdpa_net_cvq_cmd_page_len(void)
149 return ROUND_UP(vhost_vdpa_net_cvq_cmd_len(), qemu_real_host_page_size());
152 static bool vhost_vdpa_net_valid_svq_features(uint64_t features
, Error
**errp
)
154 uint64_t invalid_dev_features
=
155 features
& ~vdpa_svq_device_features
&
156 /* Transport are all accepted at this point */
157 ~MAKE_64BIT_MASK(VIRTIO_TRANSPORT_F_START
,
158 VIRTIO_TRANSPORT_F_END
- VIRTIO_TRANSPORT_F_START
);
160 if (invalid_dev_features
) {
161 error_setg(errp
, "vdpa svq does not work with features 0x%" PRIx64
,
162 invalid_dev_features
);
166 return vhost_svq_valid_features(features
, errp
);
169 static int vhost_vdpa_net_check_device_id(struct vhost_net
*net
)
173 struct vhost_dev
*hdev
;
175 hdev
= (struct vhost_dev
*)&net
->dev
;
176 ret
= hdev
->vhost_ops
->vhost_get_device_id(hdev
, &device_id
);
177 if (device_id
!= VIRTIO_ID_NET
) {
183 static int vhost_vdpa_add(NetClientState
*ncs
, void *be
,
184 int queue_pair_index
, int nvqs
)
186 VhostNetOptions options
;
187 struct vhost_net
*net
= NULL
;
191 options
.backend_type
= VHOST_BACKEND_TYPE_VDPA
;
192 assert(ncs
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
193 s
= DO_UPCAST(VhostVDPAState
, nc
, ncs
);
194 options
.net_backend
= ncs
;
196 options
.busyloop_timeout
= 0;
199 net
= vhost_net_init(&options
);
201 error_report("failed to init vhost_net for queue");
205 ret
= vhost_vdpa_net_check_device_id(net
);
211 vhost_net_cleanup(net
);
217 static void vhost_vdpa_cleanup(NetClientState
*nc
)
219 VhostVDPAState
*s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
222 * If a peer NIC is attached, do not cleanup anything.
223 * Cleanup will happen as a part of qemu_cleanup() -> net_cleanup()
224 * when the guest is shutting down.
226 if (nc
->peer
&& nc
->peer
->info
->type
== NET_CLIENT_DRIVER_NIC
) {
229 munmap(s
->cvq_cmd_out_buffer
, vhost_vdpa_net_cvq_cmd_page_len());
230 munmap(s
->status
, vhost_vdpa_net_cvq_cmd_page_len());
232 vhost_net_cleanup(s
->vhost_net
);
233 g_free(s
->vhost_net
);
236 if (s
->vhost_vdpa
.device_fd
>= 0) {
237 qemu_close(s
->vhost_vdpa
.device_fd
);
238 s
->vhost_vdpa
.device_fd
= -1;
242 static bool vhost_vdpa_has_vnet_hdr(NetClientState
*nc
)
244 assert(nc
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
249 static bool vhost_vdpa_has_ufo(NetClientState
*nc
)
251 assert(nc
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
252 VhostVDPAState
*s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
253 uint64_t features
= 0;
254 features
|= (1ULL << VIRTIO_NET_F_HOST_UFO
);
255 features
= vhost_net_get_features(s
->vhost_net
, features
);
256 return !!(features
& (1ULL << VIRTIO_NET_F_HOST_UFO
));
260 static bool vhost_vdpa_check_peer_type(NetClientState
*nc
, ObjectClass
*oc
,
263 const char *driver
= object_class_get_name(oc
);
265 if (!g_str_has_prefix(driver
, "virtio-net-")) {
266 error_setg(errp
, "vhost-vdpa requires frontend driver virtio-net-*");
273 /** Dummy receive in case qemu falls back to userland tap networking */
274 static ssize_t
vhost_vdpa_receive(NetClientState
*nc
, const uint8_t *buf
,
280 /** From any vdpa net client, get the netclient of the first queue pair */
281 static VhostVDPAState
*vhost_vdpa_net_first_nc_vdpa(VhostVDPAState
*s
)
283 NICState
*nic
= qemu_get_nic(s
->nc
.peer
);
284 NetClientState
*nc0
= qemu_get_peer(nic
->ncs
, 0);
286 return DO_UPCAST(VhostVDPAState
, nc
, nc0
);
289 static void vhost_vdpa_net_log_global_enable(VhostVDPAState
*s
, bool enable
)
291 struct vhost_vdpa
*v
= &s
->vhost_vdpa
;
294 int data_queue_pairs
, cvq
, r
;
296 /* We are only called on the first data vqs and only if x-svq is not set */
297 if (s
->vhost_vdpa
.shadow_vqs_enabled
== enable
) {
302 n
= VIRTIO_NET(vdev
);
303 if (!n
->vhost_started
) {
307 data_queue_pairs
= n
->multiqueue
? n
->max_queue_pairs
: 1;
308 cvq
= virtio_vdev_has_feature(vdev
, VIRTIO_NET_F_CTRL_VQ
) ?
309 n
->max_ncs
- n
->max_queue_pairs
: 0;
311 * TODO: vhost_net_stop does suspend, get_base and reset. We can be smarter
312 * in the future and resume the device if read-only operations between
313 * suspend and reset goes wrong.
315 vhost_net_stop(vdev
, n
->nic
->ncs
, data_queue_pairs
, cvq
);
317 /* Start will check migration setup_or_active to configure or not SVQ */
318 r
= vhost_net_start(vdev
, n
->nic
->ncs
, data_queue_pairs
, cvq
);
319 if (unlikely(r
< 0)) {
320 error_report("unable to start vhost net: %s(%d)", g_strerror(-r
), -r
);
324 static void vdpa_net_migration_state_notifier(Notifier
*notifier
, void *data
)
326 MigrationState
*migration
= data
;
327 VhostVDPAState
*s
= container_of(notifier
, VhostVDPAState
,
330 if (migration_in_setup(migration
)) {
331 vhost_vdpa_net_log_global_enable(s
, true);
332 } else if (migration_has_failed(migration
)) {
333 vhost_vdpa_net_log_global_enable(s
, false);
337 static void vhost_vdpa_net_data_start_first(VhostVDPAState
*s
)
339 struct vhost_vdpa
*v
= &s
->vhost_vdpa
;
341 add_migration_state_change_notifier(&s
->migration_state
);
342 if (v
->shadow_vqs_enabled
) {
343 v
->iova_tree
= vhost_iova_tree_new(v
->iova_range
.first
,
348 static int vhost_vdpa_net_data_start(NetClientState
*nc
)
350 VhostVDPAState
*s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
351 struct vhost_vdpa
*v
= &s
->vhost_vdpa
;
353 assert(nc
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
356 migration_is_setup_or_active(migrate_get_current()->state
)) {
357 v
->shadow_vqs_enabled
= true;
358 v
->shadow_data
= true;
360 v
->shadow_vqs_enabled
= false;
361 v
->shadow_data
= false;
365 vhost_vdpa_net_data_start_first(s
);
369 if (v
->shadow_vqs_enabled
) {
370 VhostVDPAState
*s0
= vhost_vdpa_net_first_nc_vdpa(s
);
371 v
->iova_tree
= s0
->vhost_vdpa
.iova_tree
;
377 static void vhost_vdpa_net_client_stop(NetClientState
*nc
)
379 VhostVDPAState
*s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
380 struct vhost_dev
*dev
;
382 assert(nc
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
384 if (s
->vhost_vdpa
.index
== 0) {
385 remove_migration_state_change_notifier(&s
->migration_state
);
388 dev
= s
->vhost_vdpa
.dev
;
389 if (dev
->vq_index
+ dev
->nvqs
== dev
->vq_index_end
) {
390 g_clear_pointer(&s
->vhost_vdpa
.iova_tree
, vhost_iova_tree_delete
);
394 static NetClientInfo net_vhost_vdpa_info
= {
395 .type
= NET_CLIENT_DRIVER_VHOST_VDPA
,
396 .size
= sizeof(VhostVDPAState
),
397 .receive
= vhost_vdpa_receive
,
398 .start
= vhost_vdpa_net_data_start
,
399 .stop
= vhost_vdpa_net_client_stop
,
400 .cleanup
= vhost_vdpa_cleanup
,
401 .has_vnet_hdr
= vhost_vdpa_has_vnet_hdr
,
402 .has_ufo
= vhost_vdpa_has_ufo
,
403 .check_peer_type
= vhost_vdpa_check_peer_type
,
406 static int64_t vhost_vdpa_get_vring_group(int device_fd
, unsigned vq_index
,
409 struct vhost_vring_state state
= {
412 int r
= ioctl(device_fd
, VHOST_VDPA_GET_VRING_GROUP
, &state
);
414 if (unlikely(r
< 0)) {
416 error_setg_errno(errp
, errno
, "Cannot get VQ %u group", vq_index
);
423 static int vhost_vdpa_set_address_space_id(struct vhost_vdpa
*v
,
427 struct vhost_vring_state asid
= {
433 r
= ioctl(v
->device_fd
, VHOST_VDPA_SET_GROUP_ASID
, &asid
);
434 if (unlikely(r
< 0)) {
435 error_report("Can't set vq group %u asid %u, errno=%d (%s)",
436 asid
.index
, asid
.num
, errno
, g_strerror(errno
));
441 static void vhost_vdpa_cvq_unmap_buf(struct vhost_vdpa
*v
, void *addr
)
443 VhostIOVATree
*tree
= v
->iova_tree
;
446 * No need to specify size or to look for more translations since
447 * this contiguous chunk was allocated by us.
449 .translated_addr
= (hwaddr
)(uintptr_t)addr
,
451 const DMAMap
*map
= vhost_iova_tree_find_iova(tree
, &needle
);
454 if (unlikely(!map
)) {
455 error_report("Cannot locate expected map");
459 r
= vhost_vdpa_dma_unmap(v
, v
->address_space_id
, map
->iova
, map
->size
+ 1);
460 if (unlikely(r
!= 0)) {
461 error_report("Device cannot unmap: %s(%d)", g_strerror(r
), r
);
464 vhost_iova_tree_remove(tree
, *map
);
467 /** Map CVQ buffer. */
468 static int vhost_vdpa_cvq_map_buf(struct vhost_vdpa
*v
, void *buf
, size_t size
,
474 map
.translated_addr
= (hwaddr
)(uintptr_t)buf
;
476 map
.perm
= write
? IOMMU_RW
: IOMMU_RO
,
477 r
= vhost_iova_tree_map_alloc(v
->iova_tree
, &map
);
478 if (unlikely(r
!= IOVA_OK
)) {
479 error_report("Cannot map injected element");
483 r
= vhost_vdpa_dma_map(v
, v
->address_space_id
, map
.iova
,
484 vhost_vdpa_net_cvq_cmd_page_len(), buf
, !write
);
485 if (unlikely(r
< 0)) {
492 vhost_iova_tree_remove(v
->iova_tree
, map
);
496 static int vhost_vdpa_net_cvq_start(NetClientState
*nc
)
498 VhostVDPAState
*s
, *s0
;
499 struct vhost_vdpa
*v
;
504 assert(nc
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
506 s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
509 s0
= vhost_vdpa_net_first_nc_vdpa(s
);
510 v
->shadow_data
= s0
->vhost_vdpa
.shadow_vqs_enabled
;
511 v
->shadow_vqs_enabled
= s
->always_svq
;
512 s
->vhost_vdpa
.address_space_id
= VHOST_VDPA_GUEST_PA_ASID
;
514 if (s
->vhost_vdpa
.shadow_data
) {
515 /* SVQ is already configured for all virtqueues */
520 * If we early return in these cases SVQ will not be enabled. The migration
521 * will be blocked as long as vhost-vdpa backends will not offer _F_LOG.
523 if (!vhost_vdpa_net_valid_svq_features(v
->dev
->features
, NULL
)) {
527 if (!s
->cvq_isolated
) {
531 cvq_group
= vhost_vdpa_get_vring_group(v
->device_fd
,
532 v
->dev
->vq_index_end
- 1,
534 if (unlikely(cvq_group
< 0)) {
535 error_report_err(err
);
539 r
= vhost_vdpa_set_address_space_id(v
, cvq_group
, VHOST_VDPA_NET_CVQ_ASID
);
540 if (unlikely(r
< 0)) {
544 v
->shadow_vqs_enabled
= true;
545 s
->vhost_vdpa
.address_space_id
= VHOST_VDPA_NET_CVQ_ASID
;
548 if (!s
->vhost_vdpa
.shadow_vqs_enabled
) {
552 if (s0
->vhost_vdpa
.iova_tree
) {
554 * SVQ is already configured for all virtqueues. Reuse IOVA tree for
555 * simplicity, whether CVQ shares ASID with guest or not, because:
556 * - Memory listener need access to guest's memory addresses allocated
558 * - There should be plenty of IOVA address space for both ASID not to
559 * worry about collisions between them. Guest's translations are
560 * still validated with virtio virtqueue_pop so there is no risk for
561 * the guest to access memory that it shouldn't.
563 * To allocate a iova tree per ASID is doable but it complicates the
564 * code and it is not worth it for the moment.
566 v
->iova_tree
= s0
->vhost_vdpa
.iova_tree
;
568 v
->iova_tree
= vhost_iova_tree_new(v
->iova_range
.first
,
572 r
= vhost_vdpa_cvq_map_buf(&s
->vhost_vdpa
, s
->cvq_cmd_out_buffer
,
573 vhost_vdpa_net_cvq_cmd_page_len(), false);
574 if (unlikely(r
< 0)) {
578 r
= vhost_vdpa_cvq_map_buf(&s
->vhost_vdpa
, s
->status
,
579 vhost_vdpa_net_cvq_cmd_page_len(), true);
580 if (unlikely(r
< 0)) {
581 vhost_vdpa_cvq_unmap_buf(&s
->vhost_vdpa
, s
->cvq_cmd_out_buffer
);
587 static void vhost_vdpa_net_cvq_stop(NetClientState
*nc
)
589 VhostVDPAState
*s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
591 assert(nc
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
593 if (s
->vhost_vdpa
.shadow_vqs_enabled
) {
594 vhost_vdpa_cvq_unmap_buf(&s
->vhost_vdpa
, s
->cvq_cmd_out_buffer
);
595 vhost_vdpa_cvq_unmap_buf(&s
->vhost_vdpa
, s
->status
);
598 vhost_vdpa_net_client_stop(nc
);
601 static ssize_t
vhost_vdpa_net_cvq_add(VhostVDPAState
*s
, size_t out_len
,
604 /* Buffers for the device */
605 const struct iovec out
= {
606 .iov_base
= s
->cvq_cmd_out_buffer
,
609 const struct iovec in
= {
610 .iov_base
= s
->status
,
611 .iov_len
= sizeof(virtio_net_ctrl_ack
),
613 VhostShadowVirtqueue
*svq
= g_ptr_array_index(s
->vhost_vdpa
.shadow_vqs
, 0);
616 r
= vhost_svq_add(svq
, &out
, 1, &in
, 1, NULL
);
617 if (unlikely(r
!= 0)) {
618 if (unlikely(r
== -ENOSPC
)) {
619 qemu_log_mask(LOG_GUEST_ERROR
, "%s: No space on device queue\n",
626 * We can poll here since we've had BQL from the time we sent the
627 * descriptor. Also, we need to take the answer before SVQ pulls by itself,
628 * when BQL is released
630 return vhost_svq_poll(svq
);
633 static ssize_t
vhost_vdpa_net_load_cmd(VhostVDPAState
*s
, uint8_t class,
634 uint8_t cmd
, const struct iovec
*data_sg
,
637 const struct virtio_net_ctrl_hdr ctrl
= {
641 size_t data_size
= iov_size(data_sg
, data_num
);
643 assert(data_size
< vhost_vdpa_net_cvq_cmd_page_len() - sizeof(ctrl
));
645 /* pack the CVQ command header */
646 memcpy(s
->cvq_cmd_out_buffer
, &ctrl
, sizeof(ctrl
));
648 /* pack the CVQ command command-specific-data */
649 iov_to_buf(data_sg
, data_num
, 0,
650 s
->cvq_cmd_out_buffer
+ sizeof(ctrl
), data_size
);
652 return vhost_vdpa_net_cvq_add(s
, data_size
+ sizeof(ctrl
),
653 sizeof(virtio_net_ctrl_ack
));
656 static int vhost_vdpa_net_load_mac(VhostVDPAState
*s
, const VirtIONet
*n
)
658 if (virtio_vdev_has_feature(&n
->parent_obj
, VIRTIO_NET_F_CTRL_MAC_ADDR
)) {
659 const struct iovec data
= {
660 .iov_base
= (void *)n
->mac
,
661 .iov_len
= sizeof(n
->mac
),
663 ssize_t dev_written
= vhost_vdpa_net_load_cmd(s
, VIRTIO_NET_CTRL_MAC
,
664 VIRTIO_NET_CTRL_MAC_ADDR_SET
,
666 if (unlikely(dev_written
< 0)) {
669 if (*s
->status
!= VIRTIO_NET_OK
) {
675 * According to VirtIO standard, "The device MUST have an
676 * empty MAC filtering table on reset.".
678 * Therefore, there is no need to send this CVQ command if the
679 * driver also sets an empty MAC filter table, which aligns with
680 * the device's defaults.
682 * Note that the device's defaults can mismatch the driver's
683 * configuration only at live migration.
685 if (!virtio_vdev_has_feature(&n
->parent_obj
, VIRTIO_NET_F_CTRL_RX
) ||
686 n
->mac_table
.in_use
== 0) {
690 uint32_t uni_entries
= n
->mac_table
.first_multi
,
691 uni_macs_size
= uni_entries
* ETH_ALEN
,
692 mul_entries
= n
->mac_table
.in_use
- uni_entries
,
693 mul_macs_size
= mul_entries
* ETH_ALEN
;
694 struct virtio_net_ctrl_mac uni
= {
695 .entries
= cpu_to_le32(uni_entries
),
697 struct virtio_net_ctrl_mac mul
= {
698 .entries
= cpu_to_le32(mul_entries
),
700 const struct iovec data
[] = {
703 .iov_len
= sizeof(uni
),
705 .iov_base
= n
->mac_table
.macs
,
706 .iov_len
= uni_macs_size
,
709 .iov_len
= sizeof(mul
),
711 .iov_base
= &n
->mac_table
.macs
[uni_macs_size
],
712 .iov_len
= mul_macs_size
,
715 ssize_t dev_written
= vhost_vdpa_net_load_cmd(s
,
717 VIRTIO_NET_CTRL_MAC_TABLE_SET
,
718 data
, ARRAY_SIZE(data
));
719 if (unlikely(dev_written
< 0)) {
722 if (*s
->status
!= VIRTIO_NET_OK
) {
729 static int vhost_vdpa_net_load_mq(VhostVDPAState
*s
,
732 struct virtio_net_ctrl_mq mq
;
735 if (!virtio_vdev_has_feature(&n
->parent_obj
, VIRTIO_NET_F_MQ
)) {
739 mq
.virtqueue_pairs
= cpu_to_le16(n
->curr_queue_pairs
);
740 const struct iovec data
= {
742 .iov_len
= sizeof(mq
),
744 dev_written
= vhost_vdpa_net_load_cmd(s
, VIRTIO_NET_CTRL_MQ
,
745 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET
,
747 if (unlikely(dev_written
< 0)) {
750 if (*s
->status
!= VIRTIO_NET_OK
) {
757 static int vhost_vdpa_net_load_offloads(VhostVDPAState
*s
,
763 if (!virtio_vdev_has_feature(&n
->parent_obj
,
764 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS
)) {
768 if (n
->curr_guest_offloads
== virtio_net_supported_guest_offloads(n
)) {
770 * According to VirtIO standard, "Upon feature negotiation
771 * corresponding offload gets enabled to preserve
772 * backward compatibility.".
774 * Therefore, there is no need to send this CVQ command if the
775 * driver also enables all supported offloads, which aligns with
776 * the device's defaults.
778 * Note that the device's defaults can mismatch the driver's
779 * configuration only at live migration.
784 offloads
= cpu_to_le64(n
->curr_guest_offloads
);
785 const struct iovec data
= {
786 .iov_base
= &offloads
,
787 .iov_len
= sizeof(offloads
),
789 dev_written
= vhost_vdpa_net_load_cmd(s
, VIRTIO_NET_CTRL_GUEST_OFFLOADS
,
790 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET
,
792 if (unlikely(dev_written
< 0)) {
795 if (*s
->status
!= VIRTIO_NET_OK
) {
802 static int vhost_vdpa_net_load_rx_mode(VhostVDPAState
*s
,
806 const struct iovec data
= {
808 .iov_len
= sizeof(on
),
810 return vhost_vdpa_net_load_cmd(s
, VIRTIO_NET_CTRL_RX
,
814 static int vhost_vdpa_net_load_rx(VhostVDPAState
*s
,
819 if (!virtio_vdev_has_feature(&n
->parent_obj
, VIRTIO_NET_F_CTRL_RX
)) {
824 * According to virtio_net_reset(), device turns promiscuous mode
827 * Additionally, according to VirtIO standard, "Since there are
828 * no guarantees, it can use a hash filter or silently switch to
829 * allmulti or promiscuous mode if it is given too many addresses.".
830 * QEMU marks `n->mac_table.uni_overflow` if guest sets too many
831 * non-multicast MAC addresses, indicating that promiscuous mode
834 * Therefore, QEMU should only send this CVQ command if the
835 * `n->mac_table.uni_overflow` is not marked and `n->promisc` is off,
836 * which sets promiscuous mode on, different from the device's defaults.
838 * Note that the device's defaults can mismatch the driver's
839 * configuration only at live migration.
841 if (!n
->mac_table
.uni_overflow
&& !n
->promisc
) {
842 dev_written
= vhost_vdpa_net_load_rx_mode(s
,
843 VIRTIO_NET_CTRL_RX_PROMISC
, 0);
844 if (unlikely(dev_written
< 0)) {
847 if (*s
->status
!= VIRTIO_NET_OK
) {
853 * According to virtio_net_reset(), device turns all-multicast mode
856 * According to VirtIO standard, "Since there are no guarantees,
857 * it can use a hash filter or silently switch to allmulti or
858 * promiscuous mode if it is given too many addresses.". QEMU marks
859 * `n->mac_table.multi_overflow` if guest sets too many
860 * non-multicast MAC addresses.
862 * Therefore, QEMU should only send this CVQ command if the
863 * `n->mac_table.multi_overflow` is marked or `n->allmulti` is on,
864 * which sets all-multicast mode on, different from the device's defaults.
866 * Note that the device's defaults can mismatch the driver's
867 * configuration only at live migration.
869 if (n
->mac_table
.multi_overflow
|| n
->allmulti
) {
870 dev_written
= vhost_vdpa_net_load_rx_mode(s
,
871 VIRTIO_NET_CTRL_RX_ALLMULTI
, 1);
872 if (unlikely(dev_written
< 0)) {
875 if (*s
->status
!= VIRTIO_NET_OK
) {
880 if (!virtio_vdev_has_feature(&n
->parent_obj
, VIRTIO_NET_F_CTRL_RX_EXTRA
)) {
885 * According to virtio_net_reset(), device turns all-unicast mode
888 * Therefore, QEMU should only send this CVQ command if the driver
889 * sets all-unicast mode on, different from the device's defaults.
891 * Note that the device's defaults can mismatch the driver's
892 * configuration only at live migration.
895 dev_written
= vhost_vdpa_net_load_rx_mode(s
,
896 VIRTIO_NET_CTRL_RX_ALLUNI
, 1);
897 if (dev_written
< 0) {
900 if (*s
->status
!= VIRTIO_NET_OK
) {
906 * According to virtio_net_reset(), device turns non-multicast mode
909 * Therefore, QEMU should only send this CVQ command if the driver
910 * sets non-multicast mode on, different from the device's defaults.
912 * Note that the device's defaults can mismatch the driver's
913 * configuration only at live migration.
916 dev_written
= vhost_vdpa_net_load_rx_mode(s
,
917 VIRTIO_NET_CTRL_RX_NOMULTI
, 1);
918 if (dev_written
< 0) {
921 if (*s
->status
!= VIRTIO_NET_OK
) {
927 * According to virtio_net_reset(), device turns non-unicast mode
930 * Therefore, QEMU should only send this CVQ command if the driver
931 * sets non-unicast mode on, different from the device's defaults.
933 * Note that the device's defaults can mismatch the driver's
934 * configuration only at live migration.
937 dev_written
= vhost_vdpa_net_load_rx_mode(s
,
938 VIRTIO_NET_CTRL_RX_NOUNI
, 1);
939 if (dev_written
< 0) {
942 if (*s
->status
!= VIRTIO_NET_OK
) {
948 * According to virtio_net_reset(), device turns non-broadcast mode
951 * Therefore, QEMU should only send this CVQ command if the driver
952 * sets non-broadcast mode on, different from the device's defaults.
954 * Note that the device's defaults can mismatch the driver's
955 * configuration only at live migration.
958 dev_written
= vhost_vdpa_net_load_rx_mode(s
,
959 VIRTIO_NET_CTRL_RX_NOBCAST
, 1);
960 if (dev_written
< 0) {
963 if (*s
->status
!= VIRTIO_NET_OK
) {
971 static int vhost_vdpa_net_load(NetClientState
*nc
)
973 VhostVDPAState
*s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
974 struct vhost_vdpa
*v
= &s
->vhost_vdpa
;
978 assert(nc
->info
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
980 if (!v
->shadow_vqs_enabled
) {
984 n
= VIRTIO_NET(v
->dev
->vdev
);
985 r
= vhost_vdpa_net_load_mac(s
, n
);
986 if (unlikely(r
< 0)) {
989 r
= vhost_vdpa_net_load_mq(s
, n
);
993 r
= vhost_vdpa_net_load_offloads(s
, n
);
997 r
= vhost_vdpa_net_load_rx(s
, n
);
1005 static NetClientInfo net_vhost_vdpa_cvq_info
= {
1006 .type
= NET_CLIENT_DRIVER_VHOST_VDPA
,
1007 .size
= sizeof(VhostVDPAState
),
1008 .receive
= vhost_vdpa_receive
,
1009 .start
= vhost_vdpa_net_cvq_start
,
1010 .load
= vhost_vdpa_net_load
,
1011 .stop
= vhost_vdpa_net_cvq_stop
,
1012 .cleanup
= vhost_vdpa_cleanup
,
1013 .has_vnet_hdr
= vhost_vdpa_has_vnet_hdr
,
1014 .has_ufo
= vhost_vdpa_has_ufo
,
1015 .check_peer_type
= vhost_vdpa_check_peer_type
,
1019 * Forward the excessive VIRTIO_NET_CTRL_MAC_TABLE_SET CVQ command to
1022 * Considering that QEMU cannot send the entire filter table to the
1023 * vdpa device, it should send the VIRTIO_NET_CTRL_RX_PROMISC CVQ
1024 * command to enable promiscuous mode to receive all packets,
1025 * according to VirtIO standard, "Since there are no guarantees,
1026 * it can use a hash filter or silently switch to allmulti or
1027 * promiscuous mode if it is given too many addresses.".
1029 * Since QEMU ignores MAC addresses beyond `MAC_TABLE_ENTRIES` and
1030 * marks `n->mac_table.x_overflow` accordingly, it should have
1031 * the same effect on the device model to receive
1032 * (`MAC_TABLE_ENTRIES` + 1) or more non-multicast MAC addresses.
1033 * The same applies to multicast MAC addresses.
1035 * Therefore, QEMU can provide the device model with a fake
1036 * VIRTIO_NET_CTRL_MAC_TABLE_SET command with (`MAC_TABLE_ENTRIES` + 1)
1037 * non-multicast MAC addresses and (`MAC_TABLE_ENTRIES` + 1) multicast
1038 * MAC addresses. This ensures that the device model marks
1039 * `n->mac_table.uni_overflow` and `n->mac_table.multi_overflow`,
1040 * allowing all packets to be received, which aligns with the
1041 * state of the vdpa device.
1043 static int vhost_vdpa_net_excessive_mac_filter_cvq_add(VhostVDPAState
*s
,
1044 VirtQueueElement
*elem
,
1047 struct virtio_net_ctrl_mac mac_data
, *mac_ptr
;
1048 struct virtio_net_ctrl_hdr
*hdr_ptr
;
1052 /* parse the non-multicast MAC address entries from CVQ command */
1053 cursor
= sizeof(*hdr_ptr
);
1054 r
= iov_to_buf(elem
->out_sg
, elem
->out_num
, cursor
,
1055 &mac_data
, sizeof(mac_data
));
1056 if (unlikely(r
!= sizeof(mac_data
))) {
1058 * If the CVQ command is invalid, we should simulate the vdpa device
1059 * to reject the VIRTIO_NET_CTRL_MAC_TABLE_SET CVQ command
1061 *s
->status
= VIRTIO_NET_ERR
;
1062 return sizeof(*s
->status
);
1064 cursor
+= sizeof(mac_data
) + le32_to_cpu(mac_data
.entries
) * ETH_ALEN
;
1066 /* parse the multicast MAC address entries from CVQ command */
1067 r
= iov_to_buf(elem
->out_sg
, elem
->out_num
, cursor
,
1068 &mac_data
, sizeof(mac_data
));
1069 if (r
!= sizeof(mac_data
)) {
1071 * If the CVQ command is invalid, we should simulate the vdpa device
1072 * to reject the VIRTIO_NET_CTRL_MAC_TABLE_SET CVQ command
1074 *s
->status
= VIRTIO_NET_ERR
;
1075 return sizeof(*s
->status
);
1077 cursor
+= sizeof(mac_data
) + le32_to_cpu(mac_data
.entries
) * ETH_ALEN
;
1079 /* validate the CVQ command */
1080 if (iov_size(elem
->out_sg
, elem
->out_num
) != cursor
) {
1082 * If the CVQ command is invalid, we should simulate the vdpa device
1083 * to reject the VIRTIO_NET_CTRL_MAC_TABLE_SET CVQ command
1085 *s
->status
= VIRTIO_NET_ERR
;
1086 return sizeof(*s
->status
);
1090 * According to VirtIO standard, "Since there are no guarantees,
1091 * it can use a hash filter or silently switch to allmulti or
1092 * promiscuous mode if it is given too many addresses.".
1094 * Therefore, considering that QEMU is unable to send the entire
1095 * filter table to the vdpa device, it should send the
1096 * VIRTIO_NET_CTRL_RX_PROMISC CVQ command to enable promiscuous mode
1098 r
= vhost_vdpa_net_load_rx_mode(s
, VIRTIO_NET_CTRL_RX_PROMISC
, 1);
1099 if (unlikely(r
< 0)) {
1102 if (*s
->status
!= VIRTIO_NET_OK
) {
1103 return sizeof(*s
->status
);
1107 * QEMU should also send a fake VIRTIO_NET_CTRL_MAC_TABLE_SET CVQ
1108 * command to the device model, including (`MAC_TABLE_ENTRIES` + 1)
1109 * non-multicast MAC addresses and (`MAC_TABLE_ENTRIES` + 1)
1110 * multicast MAC addresses.
1112 * By doing so, the device model can mark `n->mac_table.uni_overflow`
1113 * and `n->mac_table.multi_overflow`, enabling all packets to be
1114 * received, which aligns with the state of the vdpa device.
1117 uint32_t fake_uni_entries
= MAC_TABLE_ENTRIES
+ 1,
1118 fake_mul_entries
= MAC_TABLE_ENTRIES
+ 1,
1119 fake_cvq_size
= sizeof(struct virtio_net_ctrl_hdr
) +
1120 sizeof(mac_data
) + fake_uni_entries
* ETH_ALEN
+
1121 sizeof(mac_data
) + fake_mul_entries
* ETH_ALEN
;
1123 assert(fake_cvq_size
< vhost_vdpa_net_cvq_cmd_page_len());
1124 out
->iov_len
= fake_cvq_size
;
1126 /* pack the header for fake CVQ command */
1127 hdr_ptr
= out
->iov_base
+ cursor
;
1128 hdr_ptr
->class = VIRTIO_NET_CTRL_MAC
;
1129 hdr_ptr
->cmd
= VIRTIO_NET_CTRL_MAC_TABLE_SET
;
1130 cursor
+= sizeof(*hdr_ptr
);
1133 * Pack the non-multicast MAC addresses part for fake CVQ command.
1135 * According to virtio_net_handle_mac(), QEMU doesn't verify the MAC
1136 * addresses provided in CVQ command. Therefore, only the entries
1137 * field need to be prepared in the CVQ command.
1139 mac_ptr
= out
->iov_base
+ cursor
;
1140 mac_ptr
->entries
= cpu_to_le32(fake_uni_entries
);
1141 cursor
+= sizeof(*mac_ptr
) + fake_uni_entries
* ETH_ALEN
;
1144 * Pack the multicast MAC addresses part for fake CVQ command.
1146 * According to virtio_net_handle_mac(), QEMU doesn't verify the MAC
1147 * addresses provided in CVQ command. Therefore, only the entries
1148 * field need to be prepared in the CVQ command.
1150 mac_ptr
= out
->iov_base
+ cursor
;
1151 mac_ptr
->entries
= cpu_to_le32(fake_mul_entries
);
1154 * Simulating QEMU poll a vdpa device used buffer
1155 * for VIRTIO_NET_CTRL_MAC_TABLE_SET CVQ command
1157 return sizeof(*s
->status
);
1161 * Validate and copy control virtqueue commands.
1163 * Following QEMU guidelines, we offer a copy of the buffers to the device to
1164 * prevent TOCTOU bugs.
1166 static int vhost_vdpa_net_handle_ctrl_avail(VhostShadowVirtqueue
*svq
,
1167 VirtQueueElement
*elem
,
1170 VhostVDPAState
*s
= opaque
;
1172 const struct virtio_net_ctrl_hdr
*ctrl
;
1173 virtio_net_ctrl_ack status
= VIRTIO_NET_ERR
;
1174 /* Out buffer sent to both the vdpa device and the device model */
1175 struct iovec out
= {
1176 .iov_base
= s
->cvq_cmd_out_buffer
,
1178 /* in buffer used for device model */
1179 const struct iovec in
= {
1180 .iov_base
= &status
,
1181 .iov_len
= sizeof(status
),
1183 ssize_t dev_written
= -EINVAL
;
1185 out
.iov_len
= iov_to_buf(elem
->out_sg
, elem
->out_num
, 0,
1186 s
->cvq_cmd_out_buffer
,
1187 vhost_vdpa_net_cvq_cmd_page_len());
1189 ctrl
= s
->cvq_cmd_out_buffer
;
1190 if (ctrl
->class == VIRTIO_NET_CTRL_ANNOUNCE
) {
1192 * Guest announce capability is emulated by qemu, so don't forward to
1195 dev_written
= sizeof(status
);
1196 *s
->status
= VIRTIO_NET_OK
;
1197 } else if (unlikely(ctrl
->class == VIRTIO_NET_CTRL_MAC
&&
1198 ctrl
->cmd
== VIRTIO_NET_CTRL_MAC_TABLE_SET
&&
1199 iov_size(elem
->out_sg
, elem
->out_num
) > out
.iov_len
)) {
1201 * Due to the size limitation of the out buffer sent to the vdpa device,
1202 * which is determined by vhost_vdpa_net_cvq_cmd_page_len(), excessive
1203 * MAC addresses set by the driver for the filter table can cause
1204 * truncation of the CVQ command in QEMU. As a result, the vdpa device
1205 * rejects the flawed CVQ command.
1207 * Therefore, QEMU must handle this situation instead of sending
1208 * the CVQ command directly.
1210 dev_written
= vhost_vdpa_net_excessive_mac_filter_cvq_add(s
, elem
,
1212 if (unlikely(dev_written
< 0)) {
1216 dev_written
= vhost_vdpa_net_cvq_add(s
, out
.iov_len
, sizeof(status
));
1217 if (unlikely(dev_written
< 0)) {
1222 if (unlikely(dev_written
< sizeof(status
))) {
1223 error_report("Insufficient written data (%zu)", dev_written
);
1227 if (*s
->status
!= VIRTIO_NET_OK
) {
1231 status
= VIRTIO_NET_ERR
;
1232 virtio_net_handle_ctrl_iov(svq
->vdev
, &in
, 1, &out
, 1);
1233 if (status
!= VIRTIO_NET_OK
) {
1234 error_report("Bad CVQ processing in model");
1238 in_len
= iov_from_buf(elem
->in_sg
, elem
->in_num
, 0, &status
,
1240 if (unlikely(in_len
< sizeof(status
))) {
1241 error_report("Bad device CVQ written length");
1243 vhost_svq_push_elem(svq
, elem
, MIN(in_len
, sizeof(status
)));
1245 * `elem` belongs to vhost_vdpa_net_handle_ctrl_avail() only when
1246 * the function successfully forwards the CVQ command, indicated
1247 * by a non-negative value of `dev_written`. Otherwise, it still
1249 * This function should only free the `elem` when it owns.
1251 if (dev_written
>= 0) {
1254 return dev_written
< 0 ? dev_written
: 0;
1257 static const VhostShadowVirtqueueOps vhost_vdpa_net_svq_ops
= {
1258 .avail_handler
= vhost_vdpa_net_handle_ctrl_avail
,
1262 * Probe if CVQ is isolated
1264 * @device_fd The vdpa device fd
1265 * @features Features offered by the device.
1266 * @cvq_index The control vq pair index
1268 * Returns <0 in case of failure, 0 if false and 1 if true.
1270 static int vhost_vdpa_probe_cvq_isolation(int device_fd
, uint64_t features
,
1271 int cvq_index
, Error
**errp
)
1273 uint64_t backend_features
;
1275 uint8_t status
= VIRTIO_CONFIG_S_ACKNOWLEDGE
|
1276 VIRTIO_CONFIG_S_DRIVER
|
1277 VIRTIO_CONFIG_S_FEATURES_OK
;
1282 r
= ioctl(device_fd
, VHOST_GET_BACKEND_FEATURES
, &backend_features
);
1283 if (unlikely(r
< 0)) {
1284 error_setg_errno(errp
, errno
, "Cannot get vdpa backend_features");
1288 if (!(backend_features
& BIT_ULL(VHOST_BACKEND_F_IOTLB_ASID
))) {
1292 r
= ioctl(device_fd
, VHOST_SET_FEATURES
, &features
);
1294 error_setg_errno(errp
, errno
, "Cannot set features");
1297 r
= ioctl(device_fd
, VHOST_VDPA_SET_STATUS
, &status
);
1299 error_setg_errno(errp
, -r
, "Cannot set device features");
1303 cvq_group
= vhost_vdpa_get_vring_group(device_fd
, cvq_index
, errp
);
1304 if (unlikely(cvq_group
< 0)) {
1305 if (cvq_group
!= -ENOTSUP
) {
1311 * The kernel report VHOST_BACKEND_F_IOTLB_ASID if the vdpa frontend
1312 * support ASID even if the parent driver does not. The CVQ cannot be
1313 * isolated in this case.
1321 for (int i
= 0; i
< cvq_index
; ++i
) {
1322 int64_t group
= vhost_vdpa_get_vring_group(device_fd
, i
, errp
);
1323 if (unlikely(group
< 0)) {
1328 if (group
== (int64_t)cvq_group
) {
1338 ioctl(device_fd
, VHOST_VDPA_SET_STATUS
, &status
);
1342 static NetClientState
*net_vhost_vdpa_init(NetClientState
*peer
,
1346 int queue_pair_index
,
1350 struct vhost_vdpa_iova_range iova_range
,
1354 NetClientState
*nc
= NULL
;
1361 nc
= qemu_new_net_client(&net_vhost_vdpa_info
, peer
, device
,
1364 cvq_isolated
= vhost_vdpa_probe_cvq_isolation(vdpa_device_fd
, features
,
1365 queue_pair_index
* 2,
1367 if (unlikely(cvq_isolated
< 0)) {
1371 nc
= qemu_new_net_control_client(&net_vhost_vdpa_cvq_info
, peer
,
1374 qemu_set_info_str(nc
, TYPE_VHOST_VDPA
);
1375 s
= DO_UPCAST(VhostVDPAState
, nc
, nc
);
1377 s
->vhost_vdpa
.device_fd
= vdpa_device_fd
;
1378 s
->vhost_vdpa
.index
= queue_pair_index
;
1379 s
->always_svq
= svq
;
1380 s
->migration_state
.notify
= vdpa_net_migration_state_notifier
;
1381 s
->vhost_vdpa
.shadow_vqs_enabled
= svq
;
1382 s
->vhost_vdpa
.iova_range
= iova_range
;
1383 s
->vhost_vdpa
.shadow_data
= svq
;
1384 if (queue_pair_index
== 0) {
1385 vhost_vdpa_net_valid_svq_features(features
,
1386 &s
->vhost_vdpa
.migration_blocker
);
1387 } else if (!is_datapath
) {
1388 s
->cvq_cmd_out_buffer
= mmap(NULL
, vhost_vdpa_net_cvq_cmd_page_len(),
1389 PROT_READ
| PROT_WRITE
,
1390 MAP_SHARED
| MAP_ANONYMOUS
, -1, 0);
1391 s
->status
= mmap(NULL
, vhost_vdpa_net_cvq_cmd_page_len(),
1392 PROT_READ
| PROT_WRITE
, MAP_SHARED
| MAP_ANONYMOUS
,
1395 s
->vhost_vdpa
.shadow_vq_ops
= &vhost_vdpa_net_svq_ops
;
1396 s
->vhost_vdpa
.shadow_vq_ops_opaque
= s
;
1397 s
->cvq_isolated
= cvq_isolated
;
1400 * TODO: We cannot migrate devices with CVQ and no x-svq enabled as
1401 * there is no way to set the device state (MAC, MQ, etc) before
1402 * starting the datapath.
1404 * Migration blocker ownership now belongs to s->vhost_vdpa.
1407 error_setg(&s
->vhost_vdpa
.migration_blocker
,
1408 "net vdpa cannot migrate with CVQ feature");
1411 ret
= vhost_vdpa_add(nc
, (void *)&s
->vhost_vdpa
, queue_pair_index
, nvqs
);
1413 qemu_del_net_client(nc
);
1419 static int vhost_vdpa_get_features(int fd
, uint64_t *features
, Error
**errp
)
1421 int ret
= ioctl(fd
, VHOST_GET_FEATURES
, features
);
1422 if (unlikely(ret
< 0)) {
1423 error_setg_errno(errp
, errno
,
1424 "Fail to query features from vhost-vDPA device");
1429 static int vhost_vdpa_get_max_queue_pairs(int fd
, uint64_t features
,
1430 int *has_cvq
, Error
**errp
)
1432 unsigned long config_size
= offsetof(struct vhost_vdpa_config
, buf
);
1433 g_autofree
struct vhost_vdpa_config
*config
= NULL
;
1434 __virtio16
*max_queue_pairs
;
1437 if (features
& (1 << VIRTIO_NET_F_CTRL_VQ
)) {
1443 if (features
& (1 << VIRTIO_NET_F_MQ
)) {
1444 config
= g_malloc0(config_size
+ sizeof(*max_queue_pairs
));
1445 config
->off
= offsetof(struct virtio_net_config
, max_virtqueue_pairs
);
1446 config
->len
= sizeof(*max_queue_pairs
);
1448 ret
= ioctl(fd
, VHOST_VDPA_GET_CONFIG
, config
);
1450 error_setg(errp
, "Fail to get config from vhost-vDPA device");
1454 max_queue_pairs
= (__virtio16
*)&config
->buf
;
1456 return lduw_le_p(max_queue_pairs
);
1462 int net_init_vhost_vdpa(const Netdev
*netdev
, const char *name
,
1463 NetClientState
*peer
, Error
**errp
)
1465 const NetdevVhostVDPAOptions
*opts
;
1468 g_autofree NetClientState
**ncs
= NULL
;
1469 struct vhost_vdpa_iova_range iova_range
;
1471 int queue_pairs
, r
, i
= 0, has_cvq
= 0;
1473 assert(netdev
->type
== NET_CLIENT_DRIVER_VHOST_VDPA
);
1474 opts
= &netdev
->u
.vhost_vdpa
;
1475 if (!opts
->vhostdev
&& !opts
->vhostfd
) {
1477 "vhost-vdpa: neither vhostdev= nor vhostfd= was specified");
1481 if (opts
->vhostdev
&& opts
->vhostfd
) {
1483 "vhost-vdpa: vhostdev= and vhostfd= are mutually exclusive");
1487 if (opts
->vhostdev
) {
1488 vdpa_device_fd
= qemu_open(opts
->vhostdev
, O_RDWR
, errp
);
1489 if (vdpa_device_fd
== -1) {
1494 vdpa_device_fd
= monitor_fd_param(monitor_cur(), opts
->vhostfd
, errp
);
1495 if (vdpa_device_fd
== -1) {
1496 error_prepend(errp
, "vhost-vdpa: unable to parse vhostfd: ");
1501 r
= vhost_vdpa_get_features(vdpa_device_fd
, &features
, errp
);
1502 if (unlikely(r
< 0)) {
1506 queue_pairs
= vhost_vdpa_get_max_queue_pairs(vdpa_device_fd
, features
,
1508 if (queue_pairs
< 0) {
1509 qemu_close(vdpa_device_fd
);
1513 r
= vhost_vdpa_get_iova_range(vdpa_device_fd
, &iova_range
);
1514 if (unlikely(r
< 0)) {
1515 error_setg(errp
, "vhost-vdpa: get iova range failed: %s",
1520 if (opts
->x_svq
&& !vhost_vdpa_net_valid_svq_features(features
, errp
)) {
1524 ncs
= g_malloc0(sizeof(*ncs
) * queue_pairs
);
1526 for (i
= 0; i
< queue_pairs
; i
++) {
1527 ncs
[i
] = net_vhost_vdpa_init(peer
, TYPE_VHOST_VDPA
, name
,
1528 vdpa_device_fd
, i
, 2, true, opts
->x_svq
,
1529 iova_range
, features
, errp
);
1535 nc
= net_vhost_vdpa_init(peer
, TYPE_VHOST_VDPA
, name
,
1536 vdpa_device_fd
, i
, 1, false,
1537 opts
->x_svq
, iova_range
, features
, errp
);
1546 for (i
--; i
>= 0; i
--) {
1547 qemu_del_net_client(ncs
[i
]);
1551 qemu_close(vdpa_device_fd
);