]> git.proxmox.com Git - mirror_qemu.git/blame - net/vhost-vdpa.c
Merge tag 'pull-ppc-20230918' of https://gitlab.com/danielhb/qemu into staging
[mirror_qemu.git] / net / vhost-vdpa.c
CommitLineData
1e0a84ea
CL
1/*
2 * vhost-vdpa.c
3 *
4 * Copyright(c) 2017-2018 Intel Corporation.
5 * Copyright(c) 2020 Red Hat, Inc.
6 *
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.
9 *
10 */
11
12#include "qemu/osdep.h"
13#include "clients.h"
bd907ae4 14#include "hw/virtio/virtio-net.h"
1e0a84ea
CL
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"
bd907ae4
EP
20#include "qemu/log.h"
21#include "qemu/memalign.h"
1e0a84ea
CL
22#include "qemu/option.h"
23#include "qapi/error.h"
40237840 24#include <linux/vhost.h>
1e0a84ea
CL
25#include <sys/ioctl.h>
26#include <err.h>
27#include "standard-headers/linux/virtio_net.h"
28#include "monitor/monitor.h"
69498430
EP
29#include "migration/migration.h"
30#include "migration/misc.h"
1e0a84ea
CL
31#include "hw/virtio/vhost.h"
32
33/* Todo:need to add the multiqueue support here */
34typedef struct VhostVDPAState {
35 NetClientState nc;
36 struct vhost_vdpa vhost_vdpa;
69498430 37 Notifier migration_state;
1e0a84ea 38 VHostNetState *vhost_net;
2df4dd31
EP
39
40 /* Control commands shadow buffers */
17fb889f
EP
41 void *cvq_cmd_out_buffer;
42 virtio_net_ctrl_ack *status;
43
7f211a28
EP
44 /* The device always have SVQ enabled */
45 bool always_svq;
152128d6
EP
46
47 /* The device can isolate CVQ in its own ASID */
48 bool cvq_isolated;
49
1e0a84ea
CL
50 bool started;
51} VhostVDPAState;
52
2875a0ca
HJ
53/*
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.
57 */
1e0a84ea 58const int vdpa_feature_bits[] = {
1e0a84ea 59 VIRTIO_F_ANY_LAYOUT,
2875a0ca
HJ
60 VIRTIO_F_IOMMU_PLATFORM,
61 VIRTIO_F_NOTIFY_ON_EMPTY,
62 VIRTIO_F_RING_PACKED,
63 VIRTIO_F_RING_RESET,
1e0a84ea
CL
64 VIRTIO_F_VERSION_1,
65 VIRTIO_NET_F_CSUM,
51e84244 66 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS,
2875a0ca
HJ
67 VIRTIO_NET_F_CTRL_MAC_ADDR,
68 VIRTIO_NET_F_CTRL_RX,
69 VIRTIO_NET_F_CTRL_RX_EXTRA,
70 VIRTIO_NET_F_CTRL_VLAN,
71 VIRTIO_NET_F_CTRL_VQ,
1e0a84ea 72 VIRTIO_NET_F_GSO,
2875a0ca
HJ
73 VIRTIO_NET_F_GUEST_CSUM,
74 VIRTIO_NET_F_GUEST_ECN,
1e0a84ea
CL
75 VIRTIO_NET_F_GUEST_TSO4,
76 VIRTIO_NET_F_GUEST_TSO6,
1e0a84ea 77 VIRTIO_NET_F_GUEST_UFO,
9da16849
AM
78 VIRTIO_NET_F_GUEST_USO4,
79 VIRTIO_NET_F_GUEST_USO6,
2875a0ca
HJ
80 VIRTIO_NET_F_HASH_REPORT,
81 VIRTIO_NET_F_HOST_ECN,
1e0a84ea
CL
82 VIRTIO_NET_F_HOST_TSO4,
83 VIRTIO_NET_F_HOST_TSO6,
1e0a84ea 84 VIRTIO_NET_F_HOST_UFO,
9da16849 85 VIRTIO_NET_F_HOST_USO,
2875a0ca 86 VIRTIO_NET_F_MQ,
1e0a84ea
CL
87 VIRTIO_NET_F_MRG_RXBUF,
88 VIRTIO_NET_F_MTU,
0145c393 89 VIRTIO_NET_F_RSS,
9aa47edd 90 VIRTIO_NET_F_STATUS,
2875a0ca
HJ
91 VIRTIO_RING_F_EVENT_IDX,
92 VIRTIO_RING_F_INDIRECT_DESC,
93
94 /* VHOST_INVALID_FEATURE_BIT should always be the last entry */
1e0a84ea
CL
95 VHOST_INVALID_FEATURE_BIT
96};
97
1576dbb5
EP
98/** Supported device specific feature bits with SVQ */
99static const uint64_t vdpa_svq_device_features =
100 BIT_ULL(VIRTIO_NET_F_CSUM) |
101 BIT_ULL(VIRTIO_NET_F_GUEST_CSUM) |
4b4a1378 102 BIT_ULL(VIRTIO_NET_F_CTRL_GUEST_OFFLOADS) |
1576dbb5
EP
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) |
ea6eec49 116 BIT_ULL(VIRTIO_NET_F_CTRL_RX) |
d669b7bb 117 BIT_ULL(VIRTIO_NET_F_CTRL_RX_EXTRA) |
72b99a87 118 BIT_ULL(VIRTIO_NET_F_MQ) |
1576dbb5
EP
119 BIT_ULL(VIRTIO_F_ANY_LAYOUT) |
120 BIT_ULL(VIRTIO_NET_F_CTRL_MAC_ADDR) |
609ab4c3
EP
121 /* VHOST_F_LOG_ALL is exposed by SVQ */
122 BIT_ULL(VHOST_F_LOG_ALL) |
1576dbb5 123 BIT_ULL(VIRTIO_NET_F_RSC_EXT) |
0d74e2b7
EP
124 BIT_ULL(VIRTIO_NET_F_STANDBY) |
125 BIT_ULL(VIRTIO_NET_F_SPEED_DUPLEX);
1576dbb5 126
c1a10086
EP
127#define VHOST_VDPA_NET_CVQ_ASID 1
128
1e0a84ea
CL
129VHostNetState *vhost_vdpa_get_vhost_net(NetClientState *nc)
130{
131 VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc);
132 assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
133 return s->vhost_net;
134}
135
915bf6cc
EP
136static size_t vhost_vdpa_net_cvq_cmd_len(void)
137{
138 /*
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
141 */
142 return sizeof(struct virtio_net_ctrl_hdr) +
143 2 * sizeof(struct virtio_net_ctrl_mac) +
144 MAC_TABLE_ENTRIES * ETH_ALEN;
145}
146
147static size_t vhost_vdpa_net_cvq_cmd_page_len(void)
148{
149 return ROUND_UP(vhost_vdpa_net_cvq_cmd_len(), qemu_real_host_page_size());
150}
151
36e46472
EP
152static bool vhost_vdpa_net_valid_svq_features(uint64_t features, Error **errp)
153{
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);
159
160 if (invalid_dev_features) {
161 error_setg(errp, "vdpa svq does not work with features 0x%" PRIx64,
162 invalid_dev_features);
258a0394 163 return false;
36e46472
EP
164 }
165
258a0394 166 return vhost_svq_valid_features(features, errp);
36e46472
EP
167}
168
1e0a84ea
CL
169static int vhost_vdpa_net_check_device_id(struct vhost_net *net)
170{
171 uint32_t device_id;
172 int ret;
173 struct vhost_dev *hdev;
174
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) {
178 return -ENOTSUP;
179 }
180 return ret;
181}
182
40237840
JW
183static int vhost_vdpa_add(NetClientState *ncs, void *be,
184 int queue_pair_index, int nvqs)
1e0a84ea
CL
185{
186 VhostNetOptions options;
187 struct vhost_net *net = NULL;
188 VhostVDPAState *s;
189 int ret;
190
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;
195 options.opaque = be;
196 options.busyloop_timeout = 0;
40237840 197 options.nvqs = nvqs;
1e0a84ea
CL
198
199 net = vhost_net_init(&options);
200 if (!net) {
201 error_report("failed to init vhost_net for queue");
a97ef87a 202 goto err_init;
1e0a84ea 203 }
1e0a84ea
CL
204 s->vhost_net = net;
205 ret = vhost_vdpa_net_check_device_id(net);
206 if (ret) {
a97ef87a 207 goto err_check;
1e0a84ea
CL
208 }
209 return 0;
a97ef87a
JW
210err_check:
211 vhost_net_cleanup(net);
212 g_free(net);
213err_init:
1e0a84ea
CL
214 return -1;
215}
216
217static void vhost_vdpa_cleanup(NetClientState *nc)
218{
219 VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc);
220
a0d7215e
AS
221 /*
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.
225 */
226 if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_NIC) {
227 return;
228 }
babf8b87
EP
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());
1e0a84ea
CL
231 if (s->vhost_net) {
232 vhost_net_cleanup(s->vhost_net);
233 g_free(s->vhost_net);
234 s->vhost_net = NULL;
235 }
57b3a7d8
CL
236 if (s->vhost_vdpa.device_fd >= 0) {
237 qemu_close(s->vhost_vdpa.device_fd);
238 s->vhost_vdpa.device_fd = -1;
239 }
1e0a84ea
CL
240}
241
242static bool vhost_vdpa_has_vnet_hdr(NetClientState *nc)
243{
244 assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
245
246 return true;
247}
248
249static bool vhost_vdpa_has_ufo(NetClientState *nc)
250{
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));
257
258}
259
ee8a1c63
KW
260static bool vhost_vdpa_check_peer_type(NetClientState *nc, ObjectClass *oc,
261 Error **errp)
262{
263 const char *driver = object_class_get_name(oc);
264
265 if (!g_str_has_prefix(driver, "virtio-net-")) {
266 error_setg(errp, "vhost-vdpa requires frontend driver virtio-net-*");
267 return false;
268 }
269
270 return true;
271}
272
846a1e85
EP
273/** Dummy receive in case qemu falls back to userland tap networking */
274static ssize_t vhost_vdpa_receive(NetClientState *nc, const uint8_t *buf,
275 size_t size)
276{
bc5add1d 277 return size;
846a1e85
EP
278}
279
00ef422e
EP
280/** From any vdpa net client, get the netclient of the first queue pair */
281static VhostVDPAState *vhost_vdpa_net_first_nc_vdpa(VhostVDPAState *s)
282{
283 NICState *nic = qemu_get_nic(s->nc.peer);
284 NetClientState *nc0 = qemu_get_peer(nic->ncs, 0);
285
286 return DO_UPCAST(VhostVDPAState, nc, nc0);
287}
288
69498430
EP
289static void vhost_vdpa_net_log_global_enable(VhostVDPAState *s, bool enable)
290{
291 struct vhost_vdpa *v = &s->vhost_vdpa;
292 VirtIONet *n;
293 VirtIODevice *vdev;
294 int data_queue_pairs, cvq, r;
295
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) {
298 return;
299 }
300
301 vdev = v->dev->vdev;
302 n = VIRTIO_NET(vdev);
303 if (!n->vhost_started) {
304 return;
305 }
306
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;
310 /*
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.
314 */
315 vhost_net_stop(vdev, n->nic->ncs, data_queue_pairs, cvq);
316
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);
321 }
322}
323
324static void vdpa_net_migration_state_notifier(Notifier *notifier, void *data)
325{
326 MigrationState *migration = data;
327 VhostVDPAState *s = container_of(notifier, VhostVDPAState,
328 migration_state);
329
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);
334 }
335}
336
00ef422e
EP
337static void vhost_vdpa_net_data_start_first(VhostVDPAState *s)
338{
339 struct vhost_vdpa *v = &s->vhost_vdpa;
340
69498430 341 add_migration_state_change_notifier(&s->migration_state);
00ef422e
EP
342 if (v->shadow_vqs_enabled) {
343 v->iova_tree = vhost_iova_tree_new(v->iova_range.first,
344 v->iova_range.last);
345 }
346}
347
348static int vhost_vdpa_net_data_start(NetClientState *nc)
349{
350 VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc);
351 struct vhost_vdpa *v = &s->vhost_vdpa;
352
353 assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
354
69498430
EP
355 if (s->always_svq ||
356 migration_is_setup_or_active(migrate_get_current()->state)) {
357 v->shadow_vqs_enabled = true;
358 v->shadow_data = true;
359 } else {
360 v->shadow_vqs_enabled = false;
361 v->shadow_data = false;
362 }
363
00ef422e
EP
364 if (v->index == 0) {
365 vhost_vdpa_net_data_start_first(s);
366 return 0;
367 }
368
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;
372 }
373
374 return 0;
375}
376
377static void vhost_vdpa_net_client_stop(NetClientState *nc)
378{
379 VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc);
380 struct vhost_dev *dev;
381
382 assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
383
69498430
EP
384 if (s->vhost_vdpa.index == 0) {
385 remove_migration_state_change_notifier(&s->migration_state);
386 }
387
00ef422e
EP
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);
391 }
392}
393
1e0a84ea
CL
394static NetClientInfo net_vhost_vdpa_info = {
395 .type = NET_CLIENT_DRIVER_VHOST_VDPA,
396 .size = sizeof(VhostVDPAState),
846a1e85 397 .receive = vhost_vdpa_receive,
00ef422e
EP
398 .start = vhost_vdpa_net_data_start,
399 .stop = vhost_vdpa_net_client_stop,
1e0a84ea
CL
400 .cleanup = vhost_vdpa_cleanup,
401 .has_vnet_hdr = vhost_vdpa_has_vnet_hdr,
402 .has_ufo = vhost_vdpa_has_ufo,
ee8a1c63 403 .check_peer_type = vhost_vdpa_check_peer_type,
1e0a84ea
CL
404};
405
152128d6
EP
406static int64_t vhost_vdpa_get_vring_group(int device_fd, unsigned vq_index,
407 Error **errp)
c1a10086
EP
408{
409 struct vhost_vring_state state = {
410 .index = vq_index,
411 };
412 int r = ioctl(device_fd, VHOST_VDPA_GET_VRING_GROUP, &state);
413
414 if (unlikely(r < 0)) {
0f2bb0bf 415 r = -errno;
152128d6 416 error_setg_errno(errp, errno, "Cannot get VQ %u group", vq_index);
c1a10086
EP
417 return r;
418 }
419
420 return state.num;
421}
422
423static int vhost_vdpa_set_address_space_id(struct vhost_vdpa *v,
424 unsigned vq_group,
425 unsigned asid_num)
426{
427 struct vhost_vring_state asid = {
428 .index = vq_group,
429 .num = asid_num,
430 };
431 int r;
432
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));
437 }
438 return r;
439}
440
2df4dd31
EP
441static void vhost_vdpa_cvq_unmap_buf(struct vhost_vdpa *v, void *addr)
442{
443 VhostIOVATree *tree = v->iova_tree;
444 DMAMap needle = {
445 /*
446 * No need to specify size or to look for more translations since
447 * this contiguous chunk was allocated by us.
448 */
449 .translated_addr = (hwaddr)(uintptr_t)addr,
450 };
451 const DMAMap *map = vhost_iova_tree_find_iova(tree, &needle);
452 int r;
453
454 if (unlikely(!map)) {
455 error_report("Cannot locate expected map");
456 return;
457 }
458
cd831ed5 459 r = vhost_vdpa_dma_unmap(v, v->address_space_id, map->iova, map->size + 1);
2df4dd31
EP
460 if (unlikely(r != 0)) {
461 error_report("Device cannot unmap: %s(%d)", g_strerror(r), r);
462 }
463
69292a8e 464 vhost_iova_tree_remove(tree, *map);
2df4dd31
EP
465}
466
7a7f87e9
EP
467/** Map CVQ buffer. */
468static int vhost_vdpa_cvq_map_buf(struct vhost_vdpa *v, void *buf, size_t size,
469 bool write)
2df4dd31
EP
470{
471 DMAMap map = {};
472 int r;
473
2df4dd31 474 map.translated_addr = (hwaddr)(uintptr_t)buf;
7a7f87e9 475 map.size = size - 1;
2df4dd31
EP
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");
7a7f87e9 480 return r;
2df4dd31
EP
481 }
482
cd831ed5
EP
483 r = vhost_vdpa_dma_map(v, v->address_space_id, map.iova,
484 vhost_vdpa_net_cvq_cmd_page_len(), buf, !write);
2df4dd31
EP
485 if (unlikely(r < 0)) {
486 goto dma_map_err;
487 }
488
7a7f87e9 489 return 0;
2df4dd31
EP
490
491dma_map_err:
69292a8e 492 vhost_iova_tree_remove(v->iova_tree, map);
7a7f87e9 493 return r;
2df4dd31
EP
494}
495
7a7f87e9 496static int vhost_vdpa_net_cvq_start(NetClientState *nc)
2df4dd31 497{
00ef422e 498 VhostVDPAState *s, *s0;
c1a10086 499 struct vhost_vdpa *v;
c1a10086 500 int64_t cvq_group;
152128d6
EP
501 int r;
502 Error *err = NULL;
2df4dd31 503
7a7f87e9
EP
504 assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
505
506 s = DO_UPCAST(VhostVDPAState, nc, nc);
c1a10086
EP
507 v = &s->vhost_vdpa;
508
69498430
EP
509 s0 = vhost_vdpa_net_first_nc_vdpa(s);
510 v->shadow_data = s0->vhost_vdpa.shadow_vqs_enabled;
c1a10086
EP
511 v->shadow_vqs_enabled = s->always_svq;
512 s->vhost_vdpa.address_space_id = VHOST_VDPA_GUEST_PA_ASID;
513
69498430 514 if (s->vhost_vdpa.shadow_data) {
c1a10086
EP
515 /* SVQ is already configured for all virtqueues */
516 goto out;
517 }
518
519 /*
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.
c1a10086 522 */
152128d6
EP
523 if (!vhost_vdpa_net_valid_svq_features(v->dev->features, NULL)) {
524 return 0;
c1a10086 525 }
152128d6
EP
526
527 if (!s->cvq_isolated) {
c1a10086
EP
528 return 0;
529 }
530
152128d6
EP
531 cvq_group = vhost_vdpa_get_vring_group(v->device_fd,
532 v->dev->vq_index_end - 1,
533 &err);
c1a10086 534 if (unlikely(cvq_group < 0)) {
152128d6 535 error_report_err(err);
c1a10086
EP
536 return cvq_group;
537 }
c1a10086
EP
538
539 r = vhost_vdpa_set_address_space_id(v, cvq_group, VHOST_VDPA_NET_CVQ_ASID);
540 if (unlikely(r < 0)) {
541 return r;
542 }
543
c1a10086
EP
544 v->shadow_vqs_enabled = true;
545 s->vhost_vdpa.address_space_id = VHOST_VDPA_NET_CVQ_ASID;
546
547out:
7a7f87e9
EP
548 if (!s->vhost_vdpa.shadow_vqs_enabled) {
549 return 0;
2df4dd31
EP
550 }
551
00ef422e
EP
552 if (s0->vhost_vdpa.iova_tree) {
553 /*
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
557 * in the IOVA tree.
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.
562 *
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.
565 */
566 v->iova_tree = s0->vhost_vdpa.iova_tree;
567 } else {
568 v->iova_tree = vhost_iova_tree_new(v->iova_range.first,
569 v->iova_range.last);
570 }
571
7a7f87e9
EP
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)) {
575 return r;
576 }
577
17fb889f 578 r = vhost_vdpa_cvq_map_buf(&s->vhost_vdpa, s->status,
7a7f87e9
EP
579 vhost_vdpa_net_cvq_cmd_page_len(), true);
580 if (unlikely(r < 0)) {
2df4dd31 581 vhost_vdpa_cvq_unmap_buf(&s->vhost_vdpa, s->cvq_cmd_out_buffer);
2df4dd31
EP
582 }
583
7a7f87e9
EP
584 return r;
585}
586
587static void vhost_vdpa_net_cvq_stop(NetClientState *nc)
588{
589 VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc);
590
591 assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
592
593 if (s->vhost_vdpa.shadow_vqs_enabled) {
594 vhost_vdpa_cvq_unmap_buf(&s->vhost_vdpa, s->cvq_cmd_out_buffer);
17fb889f 595 vhost_vdpa_cvq_unmap_buf(&s->vhost_vdpa, s->status);
7a7f87e9 596 }
00ef422e
EP
597
598 vhost_vdpa_net_client_stop(nc);
2df4dd31
EP
599}
600
be4278b6
EP
601static ssize_t vhost_vdpa_net_cvq_add(VhostVDPAState *s, size_t out_len,
602 size_t in_len)
603{
604 /* Buffers for the device */
605 const struct iovec out = {
606 .iov_base = s->cvq_cmd_out_buffer,
607 .iov_len = out_len,
608 };
609 const struct iovec in = {
17fb889f 610 .iov_base = s->status,
be4278b6
EP
611 .iov_len = sizeof(virtio_net_ctrl_ack),
612 };
613 VhostShadowVirtqueue *svq = g_ptr_array_index(s->vhost_vdpa.shadow_vqs, 0);
614 int r;
615
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",
620 __func__);
621 }
622 return r;
623 }
624
625 /*
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
629 */
630 return vhost_svq_poll(svq);
631}
632
f73c0c43 633static ssize_t vhost_vdpa_net_load_cmd(VhostVDPAState *s, uint8_t class,
2848c6aa
HJ
634 uint8_t cmd, const struct iovec *data_sg,
635 size_t data_num)
f73c0c43
EP
636{
637 const struct virtio_net_ctrl_hdr ctrl = {
638 .class = class,
639 .cmd = cmd,
640 };
2848c6aa 641 size_t data_size = iov_size(data_sg, data_num);
f73c0c43
EP
642
643 assert(data_size < vhost_vdpa_net_cvq_cmd_page_len() - sizeof(ctrl));
644
2848c6aa 645 /* pack the CVQ command header */
f73c0c43 646 memcpy(s->cvq_cmd_out_buffer, &ctrl, sizeof(ctrl));
f73c0c43 647
2848c6aa
HJ
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);
651
652 return vhost_vdpa_net_cvq_add(s, data_size + sizeof(ctrl),
f73c0c43
EP
653 sizeof(virtio_net_ctrl_ack));
654}
655
656static int vhost_vdpa_net_load_mac(VhostVDPAState *s, const VirtIONet *n)
657{
02d3bf09 658 if (virtio_vdev_has_feature(&n->parent_obj, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
2848c6aa
HJ
659 const struct iovec data = {
660 .iov_base = (void *)n->mac,
661 .iov_len = sizeof(n->mac),
662 };
f73c0c43
EP
663 ssize_t dev_written = vhost_vdpa_net_load_cmd(s, VIRTIO_NET_CTRL_MAC,
664 VIRTIO_NET_CTRL_MAC_ADDR_SET,
2848c6aa 665 &data, 1);
f73c0c43
EP
666 if (unlikely(dev_written < 0)) {
667 return dev_written;
668 }
b479bc3c
HJ
669 if (*s->status != VIRTIO_NET_OK) {
670 return -EIO;
671 }
f73c0c43
EP
672 }
673
0ddcecb8
HJ
674 /*
675 * According to VirtIO standard, "The device MUST have an
676 * empty MAC filtering table on reset.".
677 *
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.
681 *
682 * Note that the device's defaults can mismatch the driver's
683 * configuration only at live migration.
684 */
685 if (!virtio_vdev_has_feature(&n->parent_obj, VIRTIO_NET_F_CTRL_RX) ||
686 n->mac_table.in_use == 0) {
687 return 0;
688 }
689
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),
696 };
697 struct virtio_net_ctrl_mac mul = {
698 .entries = cpu_to_le32(mul_entries),
699 };
700 const struct iovec data[] = {
701 {
702 .iov_base = &uni,
703 .iov_len = sizeof(uni),
704 }, {
705 .iov_base = n->mac_table.macs,
706 .iov_len = uni_macs_size,
707 }, {
708 .iov_base = &mul,
709 .iov_len = sizeof(mul),
710 }, {
711 .iov_base = &n->mac_table.macs[uni_macs_size],
712 .iov_len = mul_macs_size,
713 },
714 };
715 ssize_t dev_written = vhost_vdpa_net_load_cmd(s,
716 VIRTIO_NET_CTRL_MAC,
717 VIRTIO_NET_CTRL_MAC_TABLE_SET,
718 data, ARRAY_SIZE(data));
719 if (unlikely(dev_written < 0)) {
720 return dev_written;
721 }
722 if (*s->status != VIRTIO_NET_OK) {
723 return -EIO;
724 }
725
f73c0c43
EP
726 return 0;
727}
728
f64c7cda
EP
729static int vhost_vdpa_net_load_mq(VhostVDPAState *s,
730 const VirtIONet *n)
731{
732 struct virtio_net_ctrl_mq mq;
f64c7cda
EP
733 ssize_t dev_written;
734
02d3bf09 735 if (!virtio_vdev_has_feature(&n->parent_obj, VIRTIO_NET_F_MQ)) {
f64c7cda
EP
736 return 0;
737 }
738
739 mq.virtqueue_pairs = cpu_to_le16(n->curr_queue_pairs);
2848c6aa
HJ
740 const struct iovec data = {
741 .iov_base = &mq,
742 .iov_len = sizeof(mq),
743 };
f64c7cda 744 dev_written = vhost_vdpa_net_load_cmd(s, VIRTIO_NET_CTRL_MQ,
2848c6aa
HJ
745 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET,
746 &data, 1);
f64c7cda
EP
747 if (unlikely(dev_written < 0)) {
748 return dev_written;
749 }
f45fd95e
HJ
750 if (*s->status != VIRTIO_NET_OK) {
751 return -EIO;
752 }
f64c7cda 753
f45fd95e 754 return 0;
f64c7cda
EP
755}
756
0b58d368
HJ
757static int vhost_vdpa_net_load_offloads(VhostVDPAState *s,
758 const VirtIONet *n)
759{
760 uint64_t offloads;
761 ssize_t dev_written;
762
763 if (!virtio_vdev_has_feature(&n->parent_obj,
764 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)) {
765 return 0;
766 }
767
768 if (n->curr_guest_offloads == virtio_net_supported_guest_offloads(n)) {
769 /*
770 * According to VirtIO standard, "Upon feature negotiation
771 * corresponding offload gets enabled to preserve
772 * backward compatibility.".
773 *
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.
777 *
778 * Note that the device's defaults can mismatch the driver's
779 * configuration only at live migration.
780 */
781 return 0;
782 }
783
784 offloads = cpu_to_le64(n->curr_guest_offloads);
2848c6aa
HJ
785 const struct iovec data = {
786 .iov_base = &offloads,
787 .iov_len = sizeof(offloads),
788 };
0b58d368
HJ
789 dev_written = vhost_vdpa_net_load_cmd(s, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
790 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET,
2848c6aa 791 &data, 1);
0b58d368
HJ
792 if (unlikely(dev_written < 0)) {
793 return dev_written;
794 }
6f348071
HJ
795 if (*s->status != VIRTIO_NET_OK) {
796 return -EIO;
797 }
0b58d368 798
6f348071 799 return 0;
0b58d368
HJ
800}
801
b12f907e
HJ
802static int vhost_vdpa_net_load_rx_mode(VhostVDPAState *s,
803 uint8_t cmd,
804 uint8_t on)
805{
806 const struct iovec data = {
807 .iov_base = &on,
808 .iov_len = sizeof(on),
809 };
810 return vhost_vdpa_net_load_cmd(s, VIRTIO_NET_CTRL_RX,
811 cmd, &data, 1);
812}
813
814static int vhost_vdpa_net_load_rx(VhostVDPAState *s,
815 const VirtIONet *n)
816{
817 ssize_t dev_written;
818
819 if (!virtio_vdev_has_feature(&n->parent_obj, VIRTIO_NET_F_CTRL_RX)) {
820 return 0;
821 }
822
823 /*
824 * According to virtio_net_reset(), device turns promiscuous mode
825 * on by default.
826 *
0a19d879 827 * Additionally, according to VirtIO standard, "Since there are
b12f907e
HJ
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
832 * should be enabled.
833 *
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.
837 *
838 * Note that the device's defaults can mismatch the driver's
839 * configuration only at live migration.
840 */
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)) {
845 return dev_written;
846 }
847 if (*s->status != VIRTIO_NET_OK) {
848 return -EIO;
849 }
850 }
851
852 /*
853 * According to virtio_net_reset(), device turns all-multicast mode
854 * off by default.
855 *
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.
861 *
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.
865 *
866 * Note that the device's defaults can mismatch the driver's
867 * configuration only at live migration.
868 */
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)) {
873 return dev_written;
874 }
875 if (*s->status != VIRTIO_NET_OK) {
876 return -EIO;
877 }
878 }
879
4fd180c7
HJ
880 if (!virtio_vdev_has_feature(&n->parent_obj, VIRTIO_NET_F_CTRL_RX_EXTRA)) {
881 return 0;
882 }
883
884 /*
885 * According to virtio_net_reset(), device turns all-unicast mode
886 * off by default.
887 *
888 * Therefore, QEMU should only send this CVQ command if the driver
889 * sets all-unicast mode on, different from the device's defaults.
890 *
891 * Note that the device's defaults can mismatch the driver's
892 * configuration only at live migration.
893 */
894 if (n->alluni) {
895 dev_written = vhost_vdpa_net_load_rx_mode(s,
896 VIRTIO_NET_CTRL_RX_ALLUNI, 1);
897 if (dev_written < 0) {
898 return dev_written;
899 }
900 if (*s->status != VIRTIO_NET_OK) {
901 return -EIO;
902 }
903 }
904
905 /*
906 * According to virtio_net_reset(), device turns non-multicast mode
907 * off by default.
908 *
909 * Therefore, QEMU should only send this CVQ command if the driver
910 * sets non-multicast mode on, different from the device's defaults.
911 *
912 * Note that the device's defaults can mismatch the driver's
913 * configuration only at live migration.
914 */
915 if (n->nomulti) {
916 dev_written = vhost_vdpa_net_load_rx_mode(s,
917 VIRTIO_NET_CTRL_RX_NOMULTI, 1);
918 if (dev_written < 0) {
919 return dev_written;
920 }
921 if (*s->status != VIRTIO_NET_OK) {
922 return -EIO;
923 }
924 }
925
926 /*
927 * According to virtio_net_reset(), device turns non-unicast mode
928 * off by default.
929 *
930 * Therefore, QEMU should only send this CVQ command if the driver
931 * sets non-unicast mode on, different from the device's defaults.
932 *
933 * Note that the device's defaults can mismatch the driver's
934 * configuration only at live migration.
935 */
936 if (n->nouni) {
937 dev_written = vhost_vdpa_net_load_rx_mode(s,
938 VIRTIO_NET_CTRL_RX_NOUNI, 1);
939 if (dev_written < 0) {
940 return dev_written;
941 }
942 if (*s->status != VIRTIO_NET_OK) {
943 return -EIO;
944 }
945 }
946
947 /*
948 * According to virtio_net_reset(), device turns non-broadcast mode
949 * off by default.
950 *
951 * Therefore, QEMU should only send this CVQ command if the driver
952 * sets non-broadcast mode on, different from the device's defaults.
953 *
954 * Note that the device's defaults can mismatch the driver's
955 * configuration only at live migration.
956 */
957 if (n->nobcast) {
958 dev_written = vhost_vdpa_net_load_rx_mode(s,
959 VIRTIO_NET_CTRL_RX_NOBCAST, 1);
960 if (dev_written < 0) {
961 return dev_written;
962 }
963 if (*s->status != VIRTIO_NET_OK) {
964 return -EIO;
965 }
966 }
967
b12f907e
HJ
968 return 0;
969}
970
dd036d8d
EP
971static int vhost_vdpa_net_load(NetClientState *nc)
972{
973 VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc);
f73c0c43 974 struct vhost_vdpa *v = &s->vhost_vdpa;
dd036d8d 975 const VirtIONet *n;
f73c0c43 976 int r;
dd036d8d
EP
977
978 assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
979
980 if (!v->shadow_vqs_enabled) {
981 return 0;
982 }
983
984 n = VIRTIO_NET(v->dev->vdev);
f73c0c43
EP
985 r = vhost_vdpa_net_load_mac(s, n);
986 if (unlikely(r < 0)) {
987 return r;
dd036d8d 988 }
f64c7cda
EP
989 r = vhost_vdpa_net_load_mq(s, n);
990 if (unlikely(r)) {
991 return r;
992 }
0b58d368
HJ
993 r = vhost_vdpa_net_load_offloads(s, n);
994 if (unlikely(r)) {
995 return r;
996 }
b12f907e
HJ
997 r = vhost_vdpa_net_load_rx(s, n);
998 if (unlikely(r)) {
999 return r;
1000 }
dd036d8d
EP
1001
1002 return 0;
1003}
1004
f8972b56
EP
1005static NetClientInfo net_vhost_vdpa_cvq_info = {
1006 .type = NET_CLIENT_DRIVER_VHOST_VDPA,
1007 .size = sizeof(VhostVDPAState),
1008 .receive = vhost_vdpa_receive,
7a7f87e9 1009 .start = vhost_vdpa_net_cvq_start,
dd036d8d 1010 .load = vhost_vdpa_net_load,
7a7f87e9 1011 .stop = vhost_vdpa_net_cvq_stop,
f8972b56
EP
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,
1016};
1017
fee364e4
HJ
1018/*
1019 * Forward the excessive VIRTIO_NET_CTRL_MAC_TABLE_SET CVQ command to
1020 * vdpa device.
1021 *
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.".
1028 *
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.
1034 *
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.
1042 */
1043static int vhost_vdpa_net_excessive_mac_filter_cvq_add(VhostVDPAState *s,
1044 VirtQueueElement *elem,
1045 struct iovec *out)
1046{
1047 struct virtio_net_ctrl_mac mac_data, *mac_ptr;
1048 struct virtio_net_ctrl_hdr *hdr_ptr;
1049 uint32_t cursor;
1050 ssize_t r;
1051
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))) {
1057 /*
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
1060 */
1061 *s->status = VIRTIO_NET_ERR;
1062 return sizeof(*s->status);
1063 }
1064 cursor += sizeof(mac_data) + le32_to_cpu(mac_data.entries) * ETH_ALEN;
1065
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)) {
1070 /*
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
1073 */
1074 *s->status = VIRTIO_NET_ERR;
1075 return sizeof(*s->status);
1076 }
1077 cursor += sizeof(mac_data) + le32_to_cpu(mac_data.entries) * ETH_ALEN;
1078
1079 /* validate the CVQ command */
1080 if (iov_size(elem->out_sg, elem->out_num) != cursor) {
1081 /*
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
1084 */
1085 *s->status = VIRTIO_NET_ERR;
1086 return sizeof(*s->status);
1087 }
1088
1089 /*
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.".
1093 *
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
1097 */
1098 r = vhost_vdpa_net_load_rx_mode(s, VIRTIO_NET_CTRL_RX_PROMISC, 1);
1099 if (unlikely(r < 0)) {
1100 return r;
1101 }
1102 if (*s->status != VIRTIO_NET_OK) {
1103 return sizeof(*s->status);
1104 }
1105
1106 /*
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.
1111 *
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.
1115 */
1116 cursor = 0;
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;
1122
1123 assert(fake_cvq_size < vhost_vdpa_net_cvq_cmd_page_len());
1124 out->iov_len = fake_cvq_size;
1125
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);
1131
1132 /*
1133 * Pack the non-multicast MAC addresses part for fake CVQ command.
1134 *
1135 * According to virtio_net_handle_mac(), QEMU doesn't verify the MAC
0a19d879 1136 * addresses provided in CVQ command. Therefore, only the entries
fee364e4
HJ
1137 * field need to be prepared in the CVQ command.
1138 */
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;
1142
1143 /*
1144 * Pack the multicast MAC addresses part for fake CVQ command.
1145 *
1146 * According to virtio_net_handle_mac(), QEMU doesn't verify the MAC
0a19d879 1147 * addresses provided in CVQ command. Therefore, only the entries
fee364e4
HJ
1148 * field need to be prepared in the CVQ command.
1149 */
1150 mac_ptr = out->iov_base + cursor;
1151 mac_ptr->entries = cpu_to_le32(fake_mul_entries);
1152
1153 /*
1154 * Simulating QEMU poll a vdpa device used buffer
1155 * for VIRTIO_NET_CTRL_MAC_TABLE_SET CVQ command
1156 */
1157 return sizeof(*s->status);
1158}
1159
2df4dd31
EP
1160/**
1161 * Validate and copy control virtqueue commands.
1162 *
1163 * Following QEMU guidelines, we offer a copy of the buffers to the device to
1164 * prevent TOCTOU bugs.
bd907ae4
EP
1165 */
1166static int vhost_vdpa_net_handle_ctrl_avail(VhostShadowVirtqueue *svq,
1167 VirtQueueElement *elem,
1168 void *opaque)
1169{
2df4dd31 1170 VhostVDPAState *s = opaque;
be4278b6 1171 size_t in_len;
45c41018 1172 const struct virtio_net_ctrl_hdr *ctrl;
bd907ae4 1173 virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
7a7f87e9
EP
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,
1177 };
2df4dd31
EP
1178 /* in buffer used for device model */
1179 const struct iovec in = {
1180 .iov_base = &status,
1181 .iov_len = sizeof(status),
1182 };
be4278b6 1183 ssize_t dev_written = -EINVAL;
2df4dd31 1184
7a7f87e9
EP
1185 out.iov_len = iov_to_buf(elem->out_sg, elem->out_num, 0,
1186 s->cvq_cmd_out_buffer,
fee364e4 1187 vhost_vdpa_net_cvq_cmd_page_len());
45c41018
HJ
1188
1189 ctrl = s->cvq_cmd_out_buffer;
1190 if (ctrl->class == VIRTIO_NET_CTRL_ANNOUNCE) {
3f9a3eeb
EP
1191 /*
1192 * Guest announce capability is emulated by qemu, so don't forward to
1193 * the device.
1194 */
1195 dev_written = sizeof(status);
1196 *s->status = VIRTIO_NET_OK;
fee364e4
HJ
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)) {
1200 /*
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.
1206 *
1207 * Therefore, QEMU must handle this situation instead of sending
0a19d879 1208 * the CVQ command directly.
fee364e4
HJ
1209 */
1210 dev_written = vhost_vdpa_net_excessive_mac_filter_cvq_add(s, elem,
1211 &out);
1212 if (unlikely(dev_written < 0)) {
1213 goto out;
1214 }
3f9a3eeb
EP
1215 } else {
1216 dev_written = vhost_vdpa_net_cvq_add(s, out.iov_len, sizeof(status));
1217 if (unlikely(dev_written < 0)) {
1218 goto out;
1219 }
bd907ae4
EP
1220 }
1221
bd907ae4
EP
1222 if (unlikely(dev_written < sizeof(status))) {
1223 error_report("Insufficient written data (%zu)", dev_written);
2df4dd31
EP
1224 goto out;
1225 }
1226
17fb889f 1227 if (*s->status != VIRTIO_NET_OK) {
d45243bc 1228 goto out;
2df4dd31
EP
1229 }
1230
1231 status = VIRTIO_NET_ERR;
7a7f87e9 1232 virtio_net_handle_ctrl_iov(svq->vdev, &in, 1, &out, 1);
2df4dd31
EP
1233 if (status != VIRTIO_NET_OK) {
1234 error_report("Bad CVQ processing in model");
bd907ae4
EP
1235 }
1236
1237out:
1238 in_len = iov_from_buf(elem->in_sg, elem->in_num, 0, &status,
1239 sizeof(status));
1240 if (unlikely(in_len < sizeof(status))) {
1241 error_report("Bad device CVQ written length");
1242 }
1243 vhost_svq_push_elem(svq, elem, MIN(in_len, sizeof(status)));
031b1aba
HJ
1244 /*
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
1248 * belongs to SVQ.
1249 * This function should only free the `elem` when it owns.
1250 */
1251 if (dev_written >= 0) {
1252 g_free(elem);
1253 }
be4278b6 1254 return dev_written < 0 ? dev_written : 0;
bd907ae4
EP
1255}
1256
1257static const VhostShadowVirtqueueOps vhost_vdpa_net_svq_ops = {
1258 .avail_handler = vhost_vdpa_net_handle_ctrl_avail,
1259};
1260
152128d6
EP
1261/**
1262 * Probe if CVQ is isolated
1263 *
1264 * @device_fd The vdpa device fd
1265 * @features Features offered by the device.
1266 * @cvq_index The control vq pair index
1267 *
1268 * Returns <0 in case of failure, 0 if false and 1 if true.
1269 */
1270static int vhost_vdpa_probe_cvq_isolation(int device_fd, uint64_t features,
1271 int cvq_index, Error **errp)
1272{
1273 uint64_t backend_features;
1274 int64_t cvq_group;
1275 uint8_t status = VIRTIO_CONFIG_S_ACKNOWLEDGE |
1276 VIRTIO_CONFIG_S_DRIVER |
1277 VIRTIO_CONFIG_S_FEATURES_OK;
1278 int r;
1279
1280 ERRP_GUARD();
1281
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");
1285 return r;
1286 }
1287
1288 if (!(backend_features & BIT_ULL(VHOST_BACKEND_F_IOTLB_ASID))) {
1289 return 0;
1290 }
1291
1292 r = ioctl(device_fd, VHOST_SET_FEATURES, &features);
1293 if (unlikely(r)) {
1294 error_setg_errno(errp, errno, "Cannot set features");
1295 }
1296
1297 r = ioctl(device_fd, VHOST_VDPA_SET_STATUS, &status);
1298 if (unlikely(r)) {
1299 error_setg_errno(errp, -r, "Cannot set device features");
1300 goto out;
1301 }
1302
1303 cvq_group = vhost_vdpa_get_vring_group(device_fd, cvq_index, errp);
1304 if (unlikely(cvq_group < 0)) {
1305 if (cvq_group != -ENOTSUP) {
1306 r = cvq_group;
1307 goto out;
1308 }
1309
1310 /*
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.
1314 */
1315 error_free(*errp);
1316 *errp = NULL;
1317 r = 0;
1318 goto out;
1319 }
1320
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)) {
1324 r = group;
1325 goto out;
1326 }
1327
1328 if (group == (int64_t)cvq_group) {
1329 r = 0;
1330 goto out;
1331 }
1332 }
1333
1334 r = 1;
1335
1336out:
1337 status = 0;
1338 ioctl(device_fd, VHOST_VDPA_SET_STATUS, &status);
1339 return r;
1340}
1341
654790b6 1342static NetClientState *net_vhost_vdpa_init(NetClientState *peer,
a585fad2
EP
1343 const char *device,
1344 const char *name,
1345 int vdpa_device_fd,
1346 int queue_pair_index,
1347 int nvqs,
1348 bool is_datapath,
1349 bool svq,
5c1ebd4c 1350 struct vhost_vdpa_iova_range iova_range,
152128d6
EP
1351 uint64_t features,
1352 Error **errp)
1e0a84ea
CL
1353{
1354 NetClientState *nc = NULL;
1355 VhostVDPAState *s;
1e0a84ea
CL
1356 int ret = 0;
1357 assert(name);
152128d6
EP
1358 int cvq_isolated;
1359
40237840
JW
1360 if (is_datapath) {
1361 nc = qemu_new_net_client(&net_vhost_vdpa_info, peer, device,
1362 name);
1363 } else {
152128d6
EP
1364 cvq_isolated = vhost_vdpa_probe_cvq_isolation(vdpa_device_fd, features,
1365 queue_pair_index * 2,
1366 errp);
1367 if (unlikely(cvq_isolated < 0)) {
1368 return NULL;
1369 }
1370
f8972b56 1371 nc = qemu_new_net_control_client(&net_vhost_vdpa_cvq_info, peer,
40237840
JW
1372 device, name);
1373 }
53b85d95 1374 qemu_set_info_str(nc, TYPE_VHOST_VDPA);
1e0a84ea 1375 s = DO_UPCAST(VhostVDPAState, nc, nc);
7327813d 1376
1e0a84ea 1377 s->vhost_vdpa.device_fd = vdpa_device_fd;
40237840 1378 s->vhost_vdpa.index = queue_pair_index;
7f211a28 1379 s->always_svq = svq;
69498430 1380 s->migration_state.notify = vdpa_net_migration_state_notifier;
1576dbb5 1381 s->vhost_vdpa.shadow_vqs_enabled = svq;
a585fad2 1382 s->vhost_vdpa.iova_range = iova_range;
6188d78a 1383 s->vhost_vdpa.shadow_data = svq;
5c1ebd4c
EP
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) {
babf8b87
EP
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,
1393 -1, 0);
2df4dd31 1394
bd907ae4
EP
1395 s->vhost_vdpa.shadow_vq_ops = &vhost_vdpa_net_svq_ops;
1396 s->vhost_vdpa.shadow_vq_ops_opaque = s;
152128d6 1397 s->cvq_isolated = cvq_isolated;
9c363cf6
EP
1398
1399 /*
8bc0049e
EP
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.
9c363cf6
EP
1403 *
1404 * Migration blocker ownership now belongs to s->vhost_vdpa.
1405 */
8bc0049e
EP
1406 if (!svq) {
1407 error_setg(&s->vhost_vdpa.migration_blocker,
1408 "net vdpa cannot migrate with CVQ feature");
1409 }
bd907ae4 1410 }
40237840 1411 ret = vhost_vdpa_add(nc, (void *)&s->vhost_vdpa, queue_pair_index, nvqs);
74af5eec 1412 if (ret) {
74af5eec 1413 qemu_del_net_client(nc);
654790b6 1414 return NULL;
74af5eec 1415 }
654790b6 1416 return nc;
1e0a84ea
CL
1417}
1418
8170ab3f
EP
1419static int vhost_vdpa_get_features(int fd, uint64_t *features, Error **errp)
1420{
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");
1425 }
1426 return ret;
1427}
1428
1429static int vhost_vdpa_get_max_queue_pairs(int fd, uint64_t features,
1430 int *has_cvq, Error **errp)
40237840
JW
1431{
1432 unsigned long config_size = offsetof(struct vhost_vdpa_config, buf);
cd523a41 1433 g_autofree struct vhost_vdpa_config *config = NULL;
40237840 1434 __virtio16 *max_queue_pairs;
40237840
JW
1435 int ret;
1436
40237840
JW
1437 if (features & (1 << VIRTIO_NET_F_CTRL_VQ)) {
1438 *has_cvq = 1;
1439 } else {
1440 *has_cvq = 0;
1441 }
1442
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);
1447
1448 ret = ioctl(fd, VHOST_VDPA_GET_CONFIG, config);
1449 if (ret) {
1450 error_setg(errp, "Fail to get config from vhost-vDPA device");
1451 return -ret;
1452 }
1453
1454 max_queue_pairs = (__virtio16 *)&config->buf;
1455
1456 return lduw_le_p(max_queue_pairs);
1457 }
1458
1459 return 1;
1460}
1461
1e0a84ea
CL
1462int net_init_vhost_vdpa(const Netdev *netdev, const char *name,
1463 NetClientState *peer, Error **errp)
1464{
1465 const NetdevVhostVDPAOptions *opts;
8170ab3f 1466 uint64_t features;
654790b6 1467 int vdpa_device_fd;
eb3cb751 1468 g_autofree NetClientState **ncs = NULL;
a585fad2 1469 struct vhost_vdpa_iova_range iova_range;
eb3cb751 1470 NetClientState *nc;
aed5da45 1471 int queue_pairs, r, i = 0, has_cvq = 0;
1e0a84ea
CL
1472
1473 assert(netdev->type == NET_CLIENT_DRIVER_VHOST_VDPA);
1474 opts = &netdev->u.vhost_vdpa;
7480874a 1475 if (!opts->vhostdev && !opts->vhostfd) {
8801ccd0
SWL
1476 error_setg(errp,
1477 "vhost-vdpa: neither vhostdev= nor vhostfd= was specified");
c8295404
EP
1478 return -1;
1479 }
7327813d 1480
7480874a 1481 if (opts->vhostdev && opts->vhostfd) {
8801ccd0
SWL
1482 error_setg(errp,
1483 "vhost-vdpa: vhostdev= and vhostfd= are mutually exclusive");
1484 return -1;
1485 }
1486
7480874a 1487 if (opts->vhostdev) {
8801ccd0
SWL
1488 vdpa_device_fd = qemu_open(opts->vhostdev, O_RDWR, errp);
1489 if (vdpa_device_fd == -1) {
1490 return -errno;
1491 }
5107fd3e
PM
1492 } else {
1493 /* has_vhostfd */
8801ccd0
SWL
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: ");
1497 return -1;
1498 }
7327813d
JW
1499 }
1500
8170ab3f
EP
1501 r = vhost_vdpa_get_features(vdpa_device_fd, &features, errp);
1502 if (unlikely(r < 0)) {
aed5da45 1503 goto err;
8170ab3f
EP
1504 }
1505
1506 queue_pairs = vhost_vdpa_get_max_queue_pairs(vdpa_device_fd, features,
40237840
JW
1507 &has_cvq, errp);
1508 if (queue_pairs < 0) {
7327813d 1509 qemu_close(vdpa_device_fd);
40237840
JW
1510 return queue_pairs;
1511 }
1512
bf7a2ad8
LM
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",
1516 strerror(-r));
1517 goto err;
1518 }
1519
00ef422e
EP
1520 if (opts->x_svq && !vhost_vdpa_net_valid_svq_features(features, errp)) {
1521 goto err;
1576dbb5
EP
1522 }
1523
40237840
JW
1524 ncs = g_malloc0(sizeof(*ncs) * queue_pairs);
1525
1526 for (i = 0; i < queue_pairs; i++) {
1527 ncs[i] = net_vhost_vdpa_init(peer, TYPE_VHOST_VDPA, name,
1576dbb5 1528 vdpa_device_fd, i, 2, true, opts->x_svq,
152128d6 1529 iova_range, features, errp);
40237840
JW
1530 if (!ncs[i])
1531 goto err;
7327813d
JW
1532 }
1533
40237840
JW
1534 if (has_cvq) {
1535 nc = net_vhost_vdpa_init(peer, TYPE_VHOST_VDPA, name,
1576dbb5 1536 vdpa_device_fd, i, 1, false,
152128d6 1537 opts->x_svq, iova_range, features, errp);
40237840
JW
1538 if (!nc)
1539 goto err;
1540 }
1541
654790b6 1542 return 0;
40237840
JW
1543
1544err:
1545 if (i) {
9bd05507
SWL
1546 for (i--; i >= 0; i--) {
1547 qemu_del_net_client(ncs[i]);
1548 }
40237840 1549 }
1576dbb5 1550
40237840 1551 qemu_close(vdpa_device_fd);
40237840
JW
1552
1553 return -1;
1e0a84ea 1554}