1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation
5 #include <linux/vhost.h>
6 #include <linux/virtio_net.h>
10 #ifdef RTE_LIBRTE_VHOST_NUMA
14 #include <rte_errno.h>
15 #include <rte_ethdev.h>
17 #include <rte_string_fns.h>
18 #include <rte_memory.h>
19 #include <rte_malloc.h>
20 #include <rte_vhost.h>
21 #include <rte_rwlock.h>
25 #include "vhost_user.h"
27 struct virtio_net *vhost_devices[MAX_VHOST_DEVICE];
29 /* Called with iotlb_lock read-locked */
31 __vhost_iova_to_vva(struct virtio_net *dev, struct vhost_virtqueue *vq,
32 uint64_t iova, uint64_t size, uint8_t perm)
34 uint64_t vva, tmp_size;
41 vva = vhost_user_iotlb_cache_find(vq, iova, &tmp_size, perm);
47 if (!vhost_user_iotlb_pending_miss(vq, iova, perm)) {
49 * iotlb_lock is read-locked for a full burst,
50 * but it only protects the iotlb cache.
51 * In case of IOTLB miss, we might block on the socket,
52 * which could cause a deadlock with QEMU if an IOTLB update
53 * is being handled. We can safely unlock here to avoid it.
55 vhost_user_iotlb_rd_unlock(vq);
57 vhost_user_iotlb_pending_insert(vq, iova, perm);
58 if (vhost_user_iotlb_miss(dev, iova, perm)) {
59 RTE_LOG(ERR, VHOST_CONFIG,
60 "IOTLB miss req failed for IOVA 0x%" PRIx64 "\n",
62 vhost_user_iotlb_pending_remove(vq, iova, 1, perm);
65 vhost_user_iotlb_rd_lock(vq);
72 cleanup_vq(struct vhost_virtqueue *vq, int destroy)
74 if ((vq->callfd >= 0) && (destroy != 0))
81 * Unmap any memory, close any file descriptors and
82 * free any memory owned by a device.
85 cleanup_device(struct virtio_net *dev, int destroy)
89 vhost_backend_cleanup(dev);
91 for (i = 0; i < dev->nr_vring; i++)
92 cleanup_vq(dev->virtqueue[i], destroy);
96 free_vq(struct vhost_virtqueue *vq)
98 rte_free(vq->shadow_used_ring);
99 rte_free(vq->batch_copy_elems);
100 rte_mempool_free(vq->iotlb_pool);
105 * Release virtqueues and device memory.
108 free_device(struct virtio_net *dev)
112 for (i = 0; i < dev->nr_vring; i++)
113 free_vq(dev->virtqueue[i]);
119 vring_translate(struct virtio_net *dev, struct vhost_virtqueue *vq)
123 if (!(dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)))
126 size = sizeof(struct vring_desc) * vq->size;
127 vq->desc = (struct vring_desc *)(uintptr_t)vhost_iova_to_vva(dev, vq,
128 vq->ring_addrs.desc_user_addr,
129 size, VHOST_ACCESS_RW);
133 size = sizeof(struct vring_avail);
134 size += sizeof(uint16_t) * vq->size;
135 vq->avail = (struct vring_avail *)(uintptr_t)vhost_iova_to_vva(dev, vq,
136 vq->ring_addrs.avail_user_addr,
137 size, VHOST_ACCESS_RW);
141 size = sizeof(struct vring_used);
142 size += sizeof(struct vring_used_elem) * vq->size;
143 vq->used = (struct vring_used *)(uintptr_t)vhost_iova_to_vva(dev, vq,
144 vq->ring_addrs.used_user_addr,
145 size, VHOST_ACCESS_RW);
156 vring_invalidate(struct virtio_net *dev, struct vhost_virtqueue *vq)
158 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
159 vhost_user_iotlb_wr_lock(vq);
166 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
167 vhost_user_iotlb_wr_unlock(vq);
171 init_vring_queue(struct virtio_net *dev, uint32_t vring_idx)
173 struct vhost_virtqueue *vq;
175 if (vring_idx >= VHOST_MAX_VRING) {
176 RTE_LOG(ERR, VHOST_CONFIG,
177 "Failed not init vring, out of bound (%d)\n",
182 vq = dev->virtqueue[vring_idx];
184 memset(vq, 0, sizeof(struct vhost_virtqueue));
186 vq->kickfd = VIRTIO_UNINITIALIZED_EVENTFD;
187 vq->callfd = VIRTIO_UNINITIALIZED_EVENTFD;
189 vhost_user_iotlb_init(dev, vring_idx);
190 /* Backends are set to -1 indicating an inactive device. */
193 TAILQ_INIT(&vq->zmbuf_list);
197 reset_vring_queue(struct virtio_net *dev, uint32_t vring_idx)
199 struct vhost_virtqueue *vq;
202 if (vring_idx >= VHOST_MAX_VRING) {
203 RTE_LOG(ERR, VHOST_CONFIG,
204 "Failed not init vring, out of bound (%d)\n",
209 vq = dev->virtqueue[vring_idx];
211 init_vring_queue(dev, vring_idx);
216 alloc_vring_queue(struct virtio_net *dev, uint32_t vring_idx)
218 struct vhost_virtqueue *vq;
220 vq = rte_malloc(NULL, sizeof(struct vhost_virtqueue), 0);
222 RTE_LOG(ERR, VHOST_CONFIG,
223 "Failed to allocate memory for vring:%u.\n", vring_idx);
227 dev->virtqueue[vring_idx] = vq;
228 init_vring_queue(dev, vring_idx);
229 rte_spinlock_init(&vq->access_lock);
237 * Reset some variables in device structure, while keeping few
238 * others untouched, such as vid, ifname, nr_vring: they
239 * should be same unless the device is removed.
242 reset_device(struct virtio_net *dev)
247 dev->protocol_features = 0;
248 dev->flags &= VIRTIO_DEV_BUILTIN_VIRTIO_NET;
250 for (i = 0; i < dev->nr_vring; i++)
251 reset_vring_queue(dev, i);
255 * Invoked when there is a new vhost-user connection established (when
256 * there is a new virtio device being attached).
259 vhost_new_device(void)
261 struct virtio_net *dev;
264 dev = rte_zmalloc(NULL, sizeof(struct virtio_net), 0);
266 RTE_LOG(ERR, VHOST_CONFIG,
267 "Failed to allocate memory for new dev.\n");
271 for (i = 0; i < MAX_VHOST_DEVICE; i++) {
272 if (vhost_devices[i] == NULL)
275 if (i == MAX_VHOST_DEVICE) {
276 RTE_LOG(ERR, VHOST_CONFIG,
277 "Failed to find a free slot for new device.\n");
282 vhost_devices[i] = dev;
284 dev->flags = VIRTIO_DEV_BUILTIN_VIRTIO_NET;
285 dev->slave_req_fd = -1;
286 dev->vdpa_dev_id = -1;
292 * Invoked when there is the vhost-user connection is broken (when
293 * the virtio device is being detached).
296 vhost_destroy_device(int vid)
298 struct virtio_net *dev = get_device(vid);
299 struct rte_vdpa_device *vdpa_dev;
305 if (dev->flags & VIRTIO_DEV_RUNNING) {
306 did = dev->vdpa_dev_id;
307 vdpa_dev = rte_vdpa_get_device(did);
308 if (vdpa_dev && vdpa_dev->ops->dev_close)
309 vdpa_dev->ops->dev_close(dev->vid);
310 dev->flags &= ~VIRTIO_DEV_RUNNING;
311 dev->notify_ops->destroy_device(vid);
314 cleanup_device(dev, 1);
317 vhost_devices[vid] = NULL;
321 vhost_attach_vdpa_device(int vid, int did)
323 struct virtio_net *dev = get_device(vid);
328 if (rte_vdpa_get_device(did) == NULL)
331 dev->vdpa_dev_id = did;
335 vhost_detach_vdpa_device(int vid)
337 struct virtio_net *dev = get_device(vid);
342 dev->vdpa_dev_id = -1;
346 vhost_set_ifname(int vid, const char *if_name, unsigned int if_len)
348 struct virtio_net *dev;
351 dev = get_device(vid);
355 len = if_len > sizeof(dev->ifname) ?
356 sizeof(dev->ifname) : if_len;
358 strncpy(dev->ifname, if_name, len);
359 dev->ifname[sizeof(dev->ifname) - 1] = '\0';
363 vhost_enable_dequeue_zero_copy(int vid)
365 struct virtio_net *dev = get_device(vid);
370 dev->dequeue_zero_copy = 1;
374 vhost_set_builtin_virtio_net(int vid, bool enable)
376 struct virtio_net *dev = get_device(vid);
382 dev->flags |= VIRTIO_DEV_BUILTIN_VIRTIO_NET;
384 dev->flags &= ~VIRTIO_DEV_BUILTIN_VIRTIO_NET;
388 rte_vhost_get_mtu(int vid, uint16_t *mtu)
390 struct virtio_net *dev = get_device(vid);
395 if (!(dev->flags & VIRTIO_DEV_READY))
398 if (!(dev->features & (1ULL << VIRTIO_NET_F_MTU)))
407 rte_vhost_get_numa_node(int vid)
409 #ifdef RTE_LIBRTE_VHOST_NUMA
410 struct virtio_net *dev = get_device(vid);
417 ret = get_mempolicy(&numa_node, NULL, 0, dev,
418 MPOL_F_NODE | MPOL_F_ADDR);
420 RTE_LOG(ERR, VHOST_CONFIG,
421 "(%d) failed to query numa node: %s\n",
422 vid, rte_strerror(errno));
434 rte_vhost_get_queue_num(int vid)
436 struct virtio_net *dev = get_device(vid);
441 return dev->nr_vring / 2;
445 rte_vhost_get_vring_num(int vid)
447 struct virtio_net *dev = get_device(vid);
452 return dev->nr_vring;
456 rte_vhost_get_ifname(int vid, char *buf, size_t len)
458 struct virtio_net *dev = get_device(vid);
463 len = RTE_MIN(len, sizeof(dev->ifname));
465 strncpy(buf, dev->ifname, len);
472 rte_vhost_get_negotiated_features(int vid, uint64_t *features)
474 struct virtio_net *dev;
476 dev = get_device(vid);
480 *features = dev->features;
485 rte_vhost_get_mem_table(int vid, struct rte_vhost_memory **mem)
487 struct virtio_net *dev;
488 struct rte_vhost_memory *m;
491 dev = get_device(vid);
495 size = dev->mem->nregions * sizeof(struct rte_vhost_mem_region);
496 m = malloc(sizeof(struct rte_vhost_memory) + size);
500 m->nregions = dev->mem->nregions;
501 memcpy(m->regions, dev->mem->regions, size);
508 rte_vhost_get_vhost_vring(int vid, uint16_t vring_idx,
509 struct rte_vhost_vring *vring)
511 struct virtio_net *dev;
512 struct vhost_virtqueue *vq;
514 dev = get_device(vid);
518 if (vring_idx >= VHOST_MAX_VRING)
521 vq = dev->virtqueue[vring_idx];
525 vring->desc = vq->desc;
526 vring->avail = vq->avail;
527 vring->used = vq->used;
528 vring->log_guest_addr = vq->log_guest_addr;
530 vring->callfd = vq->callfd;
531 vring->kickfd = vq->kickfd;
532 vring->size = vq->size;
538 rte_vhost_vring_call(int vid, uint16_t vring_idx)
540 struct virtio_net *dev;
541 struct vhost_virtqueue *vq;
543 dev = get_device(vid);
547 if (vring_idx >= VHOST_MAX_VRING)
550 vq = dev->virtqueue[vring_idx];
554 vhost_vring_call(dev, vq);
559 rte_vhost_avail_entries(int vid, uint16_t queue_id)
561 struct virtio_net *dev;
562 struct vhost_virtqueue *vq;
564 dev = get_device(vid);
568 vq = dev->virtqueue[queue_id];
572 return *(volatile uint16_t *)&vq->avail->idx - vq->last_used_idx;
576 rte_vhost_enable_guest_notification(int vid, uint16_t queue_id, int enable)
578 struct virtio_net *dev = get_device(vid);
584 RTE_LOG(ERR, VHOST_CONFIG,
585 "guest notification isn't supported.\n");
589 dev->virtqueue[queue_id]->used->flags = VRING_USED_F_NO_NOTIFY;
594 rte_vhost_log_write(int vid, uint64_t addr, uint64_t len)
596 struct virtio_net *dev = get_device(vid);
601 vhost_log_write(dev, addr, len);
605 rte_vhost_log_used_vring(int vid, uint16_t vring_idx,
606 uint64_t offset, uint64_t len)
608 struct virtio_net *dev;
609 struct vhost_virtqueue *vq;
611 dev = get_device(vid);
615 if (vring_idx >= VHOST_MAX_VRING)
617 vq = dev->virtqueue[vring_idx];
621 vhost_log_used_vring(dev, vq, offset, len);
625 rte_vhost_rx_queue_count(int vid, uint16_t qid)
627 struct virtio_net *dev;
628 struct vhost_virtqueue *vq;
630 dev = get_device(vid);
634 if (unlikely(qid >= dev->nr_vring || (qid & 1) == 0)) {
635 RTE_LOG(ERR, VHOST_DATA, "(%d) %s: invalid virtqueue idx %d.\n",
636 dev->vid, __func__, qid);
640 vq = dev->virtqueue[qid];
644 if (unlikely(vq->enabled == 0 || vq->avail == NULL))
647 return *((volatile uint16_t *)&vq->avail->idx) - vq->last_avail_idx;
650 int rte_vhost_get_vdpa_device_id(int vid)
652 struct virtio_net *dev = get_device(vid);
657 return dev->vdpa_dev_id;
660 int rte_vhost_get_log_base(int vid, uint64_t *log_base,
663 struct virtio_net *dev = get_device(vid);
668 if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
669 RTE_LOG(ERR, VHOST_DATA,
670 "(%d) %s: built-in vhost net backend is disabled.\n",
675 *log_base = dev->log_base;
676 *log_size = dev->log_size;
681 int rte_vhost_get_vring_base(int vid, uint16_t queue_id,
682 uint16_t *last_avail_idx, uint16_t *last_used_idx)
684 struct virtio_net *dev = get_device(vid);
689 if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
690 RTE_LOG(ERR, VHOST_DATA,
691 "(%d) %s: built-in vhost net backend is disabled.\n",
696 *last_avail_idx = dev->virtqueue[queue_id]->last_avail_idx;
697 *last_used_idx = dev->virtqueue[queue_id]->last_used_idx;
702 int rte_vhost_set_vring_base(int vid, uint16_t queue_id,
703 uint16_t last_avail_idx, uint16_t last_used_idx)
705 struct virtio_net *dev = get_device(vid);
710 if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
711 RTE_LOG(ERR, VHOST_DATA,
712 "(%d) %s: built-in vhost net backend is disabled.\n",
717 dev->virtqueue[queue_id]->last_avail_idx = last_avail_idx;
718 dev->virtqueue[queue_id]->last_used_idx = last_used_idx;