1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (C) 2009 Red Hat, Inc.
3 * Copyright (C) 2006 Rusty Russell IBM Corporation
5 * Author: Michael S. Tsirkin <mst@redhat.com>
7 * Inspiration, some code, and most witty comments come from
8 * Documentation/virtual/lguest/lguest.c, by Rusty Russell
10 * Generic code for virtio server in host kernel.
13 #include <linux/eventfd.h>
14 #include <linux/vhost.h>
15 #include <linux/uio.h>
17 #include <linux/mmu_context.h>
18 #include <linux/miscdevice.h>
19 #include <linux/mutex.h>
20 #include <linux/poll.h>
21 #include <linux/file.h>
22 #include <linux/highmem.h>
23 #include <linux/slab.h>
24 #include <linux/vmalloc.h>
25 #include <linux/kthread.h>
26 #include <linux/cgroup.h>
27 #include <linux/module.h>
28 #include <linux/sort.h>
29 #include <linux/sched/mm.h>
30 #include <linux/sched/signal.h>
31 #include <linux/interval_tree_generic.h>
32 #include <linux/nospec.h>
36 static ushort max_mem_regions = 64;
37 module_param(max_mem_regions, ushort, 0444);
38 MODULE_PARM_DESC(max_mem_regions,
39 "Maximum number of memory regions in memory map. (default: 64)");
40 static int max_iotlb_entries = 2048;
41 module_param(max_iotlb_entries, int, 0444);
42 MODULE_PARM_DESC(max_iotlb_entries,
43 "Maximum number of iotlb entries. (default: 2048)");
46 VHOST_MEMORY_F_LOG = 0x1,
49 #define vhost_used_event(vq) ((__virtio16 __user *)&vq->avail->ring[vq->num])
50 #define vhost_avail_event(vq) ((__virtio16 __user *)&vq->used->ring[vq->num])
52 INTERVAL_TREE_DEFINE(struct vhost_umem_node,
53 rb, __u64, __subtree_last,
54 START, LAST, static inline, vhost_umem_interval_tree);
56 #ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
57 static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
59 vq->user_be = !virtio_legacy_is_little_endian();
62 static void vhost_enable_cross_endian_big(struct vhost_virtqueue *vq)
67 static void vhost_enable_cross_endian_little(struct vhost_virtqueue *vq)
72 static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
74 struct vhost_vring_state s;
79 if (copy_from_user(&s, argp, sizeof(s)))
82 if (s.num != VHOST_VRING_LITTLE_ENDIAN &&
83 s.num != VHOST_VRING_BIG_ENDIAN)
86 if (s.num == VHOST_VRING_BIG_ENDIAN)
87 vhost_enable_cross_endian_big(vq);
89 vhost_enable_cross_endian_little(vq);
94 static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
97 struct vhost_vring_state s = {
102 if (copy_to_user(argp, &s, sizeof(s)))
108 static void vhost_init_is_le(struct vhost_virtqueue *vq)
110 /* Note for legacy virtio: user_be is initialized at reset time
111 * according to the host endianness. If userspace does not set an
112 * explicit endianness, the default behavior is native endian, as
113 * expected by legacy virtio.
115 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1) || !vq->user_be;
118 static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
122 static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
127 static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
133 static void vhost_init_is_le(struct vhost_virtqueue *vq)
135 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1)
136 || virtio_legacy_is_little_endian();
138 #endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */
140 static void vhost_reset_is_le(struct vhost_virtqueue *vq)
142 vhost_init_is_le(vq);
145 struct vhost_flush_struct {
146 struct vhost_work work;
147 struct completion wait_event;
150 static void vhost_flush_work(struct vhost_work *work)
152 struct vhost_flush_struct *s;
154 s = container_of(work, struct vhost_flush_struct, work);
155 complete(&s->wait_event);
158 static void vhost_poll_func(struct file *file, wait_queue_head_t *wqh,
161 struct vhost_poll *poll;
163 poll = container_of(pt, struct vhost_poll, table);
165 add_wait_queue(wqh, &poll->wait);
168 static int vhost_poll_wakeup(wait_queue_entry_t *wait, unsigned mode, int sync,
171 struct vhost_poll *poll = container_of(wait, struct vhost_poll, wait);
173 if (!(key_to_poll(key) & poll->mask))
176 vhost_poll_queue(poll);
180 void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn)
182 clear_bit(VHOST_WORK_QUEUED, &work->flags);
185 EXPORT_SYMBOL_GPL(vhost_work_init);
187 /* Init poll structure */
188 void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
189 __poll_t mask, struct vhost_dev *dev)
191 init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup);
192 init_poll_funcptr(&poll->table, vhost_poll_func);
197 vhost_work_init(&poll->work, fn);
199 EXPORT_SYMBOL_GPL(vhost_poll_init);
201 /* Start polling a file. We add ourselves to file's wait queue. The caller must
202 * keep a reference to a file until after vhost_poll_stop is called. */
203 int vhost_poll_start(struct vhost_poll *poll, struct file *file)
210 mask = vfs_poll(file, &poll->table);
212 vhost_poll_wakeup(&poll->wait, 0, 0, poll_to_key(mask));
213 if (mask & EPOLLERR) {
214 vhost_poll_stop(poll);
220 EXPORT_SYMBOL_GPL(vhost_poll_start);
222 /* Stop polling a file. After this function returns, it becomes safe to drop the
223 * file reference. You must also flush afterwards. */
224 void vhost_poll_stop(struct vhost_poll *poll)
227 remove_wait_queue(poll->wqh, &poll->wait);
231 EXPORT_SYMBOL_GPL(vhost_poll_stop);
233 void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work)
235 struct vhost_flush_struct flush;
238 init_completion(&flush.wait_event);
239 vhost_work_init(&flush.work, vhost_flush_work);
241 vhost_work_queue(dev, &flush.work);
242 wait_for_completion(&flush.wait_event);
245 EXPORT_SYMBOL_GPL(vhost_work_flush);
247 /* Flush any work that has been scheduled. When calling this, don't hold any
248 * locks that are also used by the callback. */
249 void vhost_poll_flush(struct vhost_poll *poll)
251 vhost_work_flush(poll->dev, &poll->work);
253 EXPORT_SYMBOL_GPL(vhost_poll_flush);
255 void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work)
260 if (!test_and_set_bit(VHOST_WORK_QUEUED, &work->flags)) {
261 /* We can only add the work to the list after we're
262 * sure it was not in the list.
263 * test_and_set_bit() implies a memory barrier.
265 llist_add(&work->node, &dev->work_list);
266 wake_up_process(dev->worker);
269 EXPORT_SYMBOL_GPL(vhost_work_queue);
271 /* A lockless hint for busy polling code to exit the loop */
272 bool vhost_has_work(struct vhost_dev *dev)
274 return !llist_empty(&dev->work_list);
276 EXPORT_SYMBOL_GPL(vhost_has_work);
278 void vhost_poll_queue(struct vhost_poll *poll)
280 vhost_work_queue(poll->dev, &poll->work);
282 EXPORT_SYMBOL_GPL(vhost_poll_queue);
284 static void __vhost_vq_meta_reset(struct vhost_virtqueue *vq)
288 for (j = 0; j < VHOST_NUM_ADDRS; j++)
289 vq->meta_iotlb[j] = NULL;
292 static void vhost_vq_meta_reset(struct vhost_dev *d)
296 for (i = 0; i < d->nvqs; ++i)
297 __vhost_vq_meta_reset(d->vqs[i]);
300 static void vhost_vq_reset(struct vhost_dev *dev,
301 struct vhost_virtqueue *vq)
307 vq->last_avail_idx = 0;
309 vq->last_used_idx = 0;
310 vq->signalled_used = 0;
311 vq->signalled_used_valid = false;
313 vq->log_used = false;
314 vq->log_addr = -1ull;
315 vq->private_data = NULL;
316 vq->acked_features = 0;
317 vq->acked_backend_features = 0;
319 vq->error_ctx = NULL;
323 vhost_reset_is_le(vq);
324 vhost_disable_cross_endian(vq);
325 vq->busyloop_timeout = 0;
328 __vhost_vq_meta_reset(vq);
331 static int vhost_worker(void *data)
333 struct vhost_dev *dev = data;
334 struct vhost_work *work, *work_next;
335 struct llist_node *node;
336 mm_segment_t oldfs = get_fs();
342 /* mb paired w/ kthread_stop */
343 set_current_state(TASK_INTERRUPTIBLE);
345 if (kthread_should_stop()) {
346 __set_current_state(TASK_RUNNING);
350 node = llist_del_all(&dev->work_list);
354 node = llist_reverse_order(node);
355 /* make sure flag is seen after deletion */
357 llist_for_each_entry_safe(work, work_next, node, node) {
358 clear_bit(VHOST_WORK_QUEUED, &work->flags);
359 __set_current_state(TASK_RUNNING);
370 static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq)
380 /* Helper to allocate iovec buffers for all vqs. */
381 static long vhost_dev_alloc_iovecs(struct vhost_dev *dev)
383 struct vhost_virtqueue *vq;
386 for (i = 0; i < dev->nvqs; ++i) {
388 vq->indirect = kmalloc_array(UIO_MAXIOV,
389 sizeof(*vq->indirect),
391 vq->log = kmalloc_array(dev->iov_limit, sizeof(*vq->log),
393 vq->heads = kmalloc_array(dev->iov_limit, sizeof(*vq->heads),
395 if (!vq->indirect || !vq->log || !vq->heads)
402 vhost_vq_free_iovecs(dev->vqs[i]);
406 static void vhost_dev_free_iovecs(struct vhost_dev *dev)
410 for (i = 0; i < dev->nvqs; ++i)
411 vhost_vq_free_iovecs(dev->vqs[i]);
414 bool vhost_exceeds_weight(struct vhost_virtqueue *vq,
415 int pkts, int total_len)
417 struct vhost_dev *dev = vq->dev;
419 if ((dev->byte_weight && total_len >= dev->byte_weight) ||
420 pkts >= dev->weight) {
421 vhost_poll_queue(&vq->poll);
427 EXPORT_SYMBOL_GPL(vhost_exceeds_weight);
429 static size_t vhost_get_avail_size(struct vhost_virtqueue *vq,
432 size_t event __maybe_unused =
433 vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
435 return sizeof(*vq->avail) +
436 sizeof(*vq->avail->ring) * num + event;
439 static size_t vhost_get_used_size(struct vhost_virtqueue *vq,
442 size_t event __maybe_unused =
443 vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
445 return sizeof(*vq->used) +
446 sizeof(*vq->used->ring) * num + event;
449 static size_t vhost_get_desc_size(struct vhost_virtqueue *vq,
452 return sizeof(*vq->desc) * num;
455 void vhost_dev_init(struct vhost_dev *dev,
456 struct vhost_virtqueue **vqs, int nvqs,
457 int iov_limit, int weight, int byte_weight)
459 struct vhost_virtqueue *vq;
464 mutex_init(&dev->mutex);
470 dev->iov_limit = iov_limit;
471 dev->weight = weight;
472 dev->byte_weight = byte_weight;
473 init_llist_head(&dev->work_list);
474 init_waitqueue_head(&dev->wait);
475 INIT_LIST_HEAD(&dev->read_list);
476 INIT_LIST_HEAD(&dev->pending_list);
477 spin_lock_init(&dev->iotlb_lock);
480 for (i = 0; i < dev->nvqs; ++i) {
486 mutex_init(&vq->mutex);
487 vhost_vq_reset(dev, vq);
489 vhost_poll_init(&vq->poll, vq->handle_kick,
493 EXPORT_SYMBOL_GPL(vhost_dev_init);
495 /* Caller should have device mutex */
496 long vhost_dev_check_owner(struct vhost_dev *dev)
498 /* Are you the owner? If not, I don't think you mean to do that */
499 return dev->mm == current->mm ? 0 : -EPERM;
501 EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
503 struct vhost_attach_cgroups_struct {
504 struct vhost_work work;
505 struct task_struct *owner;
509 static void vhost_attach_cgroups_work(struct vhost_work *work)
511 struct vhost_attach_cgroups_struct *s;
513 s = container_of(work, struct vhost_attach_cgroups_struct, work);
514 s->ret = cgroup_attach_task_all(s->owner, current);
517 static int vhost_attach_cgroups(struct vhost_dev *dev)
519 struct vhost_attach_cgroups_struct attach;
521 attach.owner = current;
522 vhost_work_init(&attach.work, vhost_attach_cgroups_work);
523 vhost_work_queue(dev, &attach.work);
524 vhost_work_flush(dev, &attach.work);
528 /* Caller should have device mutex */
529 bool vhost_dev_has_owner(struct vhost_dev *dev)
533 EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
535 /* Caller should have device mutex */
536 long vhost_dev_set_owner(struct vhost_dev *dev)
538 struct task_struct *worker;
541 /* Is there an owner already? */
542 if (vhost_dev_has_owner(dev)) {
547 /* No owner, become one */
548 dev->mm = get_task_mm(current);
549 worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
550 if (IS_ERR(worker)) {
551 err = PTR_ERR(worker);
555 dev->worker = worker;
556 wake_up_process(worker); /* avoid contributing to loadavg */
558 err = vhost_attach_cgroups(dev);
562 err = vhost_dev_alloc_iovecs(dev);
568 kthread_stop(worker);
577 EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
579 struct vhost_umem *vhost_dev_reset_owner_prepare(void)
581 return kvzalloc(sizeof(struct vhost_umem), GFP_KERNEL);
583 EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
585 /* Caller should have device mutex */
586 void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_umem *umem)
590 vhost_dev_cleanup(dev);
592 /* Restore memory to default empty mapping. */
593 INIT_LIST_HEAD(&umem->umem_list);
595 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
596 * VQs aren't running.
598 for (i = 0; i < dev->nvqs; ++i)
599 dev->vqs[i]->umem = umem;
601 EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
603 void vhost_dev_stop(struct vhost_dev *dev)
607 for (i = 0; i < dev->nvqs; ++i) {
608 if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
609 vhost_poll_stop(&dev->vqs[i]->poll);
610 vhost_poll_flush(&dev->vqs[i]->poll);
614 EXPORT_SYMBOL_GPL(vhost_dev_stop);
616 static void vhost_umem_free(struct vhost_umem *umem,
617 struct vhost_umem_node *node)
619 vhost_umem_interval_tree_remove(node, &umem->umem_tree);
620 list_del(&node->link);
625 static void vhost_umem_clean(struct vhost_umem *umem)
627 struct vhost_umem_node *node, *tmp;
632 list_for_each_entry_safe(node, tmp, &umem->umem_list, link)
633 vhost_umem_free(umem, node);
638 static void vhost_clear_msg(struct vhost_dev *dev)
640 struct vhost_msg_node *node, *n;
642 spin_lock(&dev->iotlb_lock);
644 list_for_each_entry_safe(node, n, &dev->read_list, node) {
645 list_del(&node->node);
649 list_for_each_entry_safe(node, n, &dev->pending_list, node) {
650 list_del(&node->node);
654 spin_unlock(&dev->iotlb_lock);
657 void vhost_dev_cleanup(struct vhost_dev *dev)
661 for (i = 0; i < dev->nvqs; ++i) {
662 if (dev->vqs[i]->error_ctx)
663 eventfd_ctx_put(dev->vqs[i]->error_ctx);
664 if (dev->vqs[i]->kick)
665 fput(dev->vqs[i]->kick);
666 if (dev->vqs[i]->call_ctx)
667 eventfd_ctx_put(dev->vqs[i]->call_ctx);
668 vhost_vq_reset(dev, dev->vqs[i]);
670 vhost_dev_free_iovecs(dev);
672 eventfd_ctx_put(dev->log_ctx);
674 /* No one will access memory at this point */
675 vhost_umem_clean(dev->umem);
677 vhost_umem_clean(dev->iotlb);
679 vhost_clear_msg(dev);
680 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
681 WARN_ON(!llist_empty(&dev->work_list));
683 kthread_stop(dev->worker);
690 EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
692 static bool log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
694 u64 a = addr / VHOST_PAGE_SIZE / 8;
696 /* Make sure 64 bit math will not overflow. */
697 if (a > ULONG_MAX - (unsigned long)log_base ||
698 a + (unsigned long)log_base > ULONG_MAX)
701 return access_ok(log_base + a,
702 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
705 static bool vhost_overflow(u64 uaddr, u64 size)
707 /* Make sure 64 bit math will not overflow. */
708 return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
711 /* Caller should have vq mutex and device mutex. */
712 static bool vq_memory_access_ok(void __user *log_base, struct vhost_umem *umem,
715 struct vhost_umem_node *node;
720 list_for_each_entry(node, &umem->umem_list, link) {
721 unsigned long a = node->userspace_addr;
723 if (vhost_overflow(node->userspace_addr, node->size))
727 if (!access_ok((void __user *)a,
730 else if (log_all && !log_access_ok(log_base,
738 static inline void __user *vhost_vq_meta_fetch(struct vhost_virtqueue *vq,
739 u64 addr, unsigned int size,
742 const struct vhost_umem_node *node = vq->meta_iotlb[type];
747 return (void *)(uintptr_t)(node->userspace_addr + addr - node->start);
750 /* Can we switch to this memory table? */
751 /* Caller should have device mutex but not vq mutex */
752 static bool memory_access_ok(struct vhost_dev *d, struct vhost_umem *umem,
757 for (i = 0; i < d->nvqs; ++i) {
761 mutex_lock(&d->vqs[i]->mutex);
762 log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
763 /* If ring is inactive, will check when it's enabled. */
764 if (d->vqs[i]->private_data)
765 ok = vq_memory_access_ok(d->vqs[i]->log_base,
769 mutex_unlock(&d->vqs[i]->mutex);
776 static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
777 struct iovec iov[], int iov_size, int access);
779 static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
780 const void *from, unsigned size)
785 return __copy_to_user(to, from, size);
787 /* This function should be called after iotlb
788 * prefetch, which means we're sure that all vq
789 * could be access through iotlb. So -EAGAIN should
790 * not happen in this case.
793 void __user *uaddr = vhost_vq_meta_fetch(vq,
794 (u64)(uintptr_t)to, size,
798 return __copy_to_user(uaddr, from, size);
800 ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
801 ARRAY_SIZE(vq->iotlb_iov),
805 iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
806 ret = copy_to_iter(from, size, &t);
814 static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
815 void __user *from, unsigned size)
820 return __copy_from_user(to, from, size);
822 /* This function should be called after iotlb
823 * prefetch, which means we're sure that vq
824 * could be access through iotlb. So -EAGAIN should
825 * not happen in this case.
827 void __user *uaddr = vhost_vq_meta_fetch(vq,
828 (u64)(uintptr_t)from, size,
833 return __copy_from_user(to, uaddr, size);
835 ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
836 ARRAY_SIZE(vq->iotlb_iov),
839 vq_err(vq, "IOTLB translation failure: uaddr "
840 "%p size 0x%llx\n", from,
841 (unsigned long long) size);
844 iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
845 ret = copy_from_iter(to, size, &f);
854 static void __user *__vhost_get_user_slow(struct vhost_virtqueue *vq,
855 void __user *addr, unsigned int size,
860 ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
861 ARRAY_SIZE(vq->iotlb_iov),
864 vq_err(vq, "IOTLB translation failure: uaddr "
865 "%p size 0x%llx\n", addr,
866 (unsigned long long) size);
870 if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
871 vq_err(vq, "Non atomic userspace memory access: uaddr "
872 "%p size 0x%llx\n", addr,
873 (unsigned long long) size);
877 return vq->iotlb_iov[0].iov_base;
880 /* This function should be called after iotlb
881 * prefetch, which means we're sure that vq
882 * could be access through iotlb. So -EAGAIN should
883 * not happen in this case.
885 static inline void __user *__vhost_get_user(struct vhost_virtqueue *vq,
886 void *addr, unsigned int size,
889 void __user *uaddr = vhost_vq_meta_fetch(vq,
890 (u64)(uintptr_t)addr, size, type);
894 return __vhost_get_user_slow(vq, addr, size, type);
897 #define vhost_put_user(vq, x, ptr) \
901 ret = __put_user(x, ptr); \
903 __typeof__(ptr) to = \
904 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
905 sizeof(*ptr), VHOST_ADDR_USED); \
907 ret = __put_user(x, to); \
914 static inline int vhost_put_avail_event(struct vhost_virtqueue *vq)
916 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
917 vhost_avail_event(vq));
920 static inline int vhost_put_used(struct vhost_virtqueue *vq,
921 struct vring_used_elem *head, int idx,
924 return vhost_copy_to_user(vq, vq->used->ring + idx, head,
925 count * sizeof(*head));
928 static inline int vhost_put_used_flags(struct vhost_virtqueue *vq)
931 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
935 static inline int vhost_put_used_idx(struct vhost_virtqueue *vq)
938 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
942 #define vhost_get_user(vq, x, ptr, type) \
946 ret = __get_user(x, ptr); \
948 __typeof__(ptr) from = \
949 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
953 ret = __get_user(x, from); \
960 #define vhost_get_avail(vq, x, ptr) \
961 vhost_get_user(vq, x, ptr, VHOST_ADDR_AVAIL)
963 #define vhost_get_used(vq, x, ptr) \
964 vhost_get_user(vq, x, ptr, VHOST_ADDR_USED)
966 static void vhost_dev_lock_vqs(struct vhost_dev *d)
969 for (i = 0; i < d->nvqs; ++i)
970 mutex_lock_nested(&d->vqs[i]->mutex, i);
973 static void vhost_dev_unlock_vqs(struct vhost_dev *d)
976 for (i = 0; i < d->nvqs; ++i)
977 mutex_unlock(&d->vqs[i]->mutex);
980 static inline int vhost_get_avail_idx(struct vhost_virtqueue *vq,
983 return vhost_get_avail(vq, *idx, &vq->avail->idx);
986 static inline int vhost_get_avail_head(struct vhost_virtqueue *vq,
987 __virtio16 *head, int idx)
989 return vhost_get_avail(vq, *head,
990 &vq->avail->ring[idx & (vq->num - 1)]);
993 static inline int vhost_get_avail_flags(struct vhost_virtqueue *vq,
996 return vhost_get_avail(vq, *flags, &vq->avail->flags);
999 static inline int vhost_get_used_event(struct vhost_virtqueue *vq,
1002 return vhost_get_avail(vq, *event, vhost_used_event(vq));
1005 static inline int vhost_get_used_idx(struct vhost_virtqueue *vq,
1008 return vhost_get_used(vq, *idx, &vq->used->idx);
1011 static inline int vhost_get_desc(struct vhost_virtqueue *vq,
1012 struct vring_desc *desc, int idx)
1014 return vhost_copy_from_user(vq, desc, vq->desc + idx, sizeof(*desc));
1017 static int vhost_new_umem_range(struct vhost_umem *umem,
1018 u64 start, u64 size, u64 end,
1019 u64 userspace_addr, int perm)
1021 struct vhost_umem_node *tmp, *node;
1026 node = kmalloc(sizeof(*node), GFP_ATOMIC);
1030 if (umem->numem == max_iotlb_entries) {
1031 tmp = list_first_entry(&umem->umem_list, typeof(*tmp), link);
1032 vhost_umem_free(umem, tmp);
1035 node->start = start;
1038 node->userspace_addr = userspace_addr;
1040 INIT_LIST_HEAD(&node->link);
1041 list_add_tail(&node->link, &umem->umem_list);
1042 vhost_umem_interval_tree_insert(node, &umem->umem_tree);
1048 static void vhost_del_umem_range(struct vhost_umem *umem,
1051 struct vhost_umem_node *node;
1053 while ((node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1055 vhost_umem_free(umem, node);
1058 static void vhost_iotlb_notify_vq(struct vhost_dev *d,
1059 struct vhost_iotlb_msg *msg)
1061 struct vhost_msg_node *node, *n;
1063 spin_lock(&d->iotlb_lock);
1065 list_for_each_entry_safe(node, n, &d->pending_list, node) {
1066 struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
1067 if (msg->iova <= vq_msg->iova &&
1068 msg->iova + msg->size - 1 >= vq_msg->iova &&
1069 vq_msg->type == VHOST_IOTLB_MISS) {
1070 vhost_poll_queue(&node->vq->poll);
1071 list_del(&node->node);
1076 spin_unlock(&d->iotlb_lock);
1079 static bool umem_access_ok(u64 uaddr, u64 size, int access)
1081 unsigned long a = uaddr;
1083 /* Make sure 64 bit math will not overflow. */
1084 if (vhost_overflow(uaddr, size))
1087 if ((access & VHOST_ACCESS_RO) &&
1088 !access_ok((void __user *)a, size))
1090 if ((access & VHOST_ACCESS_WO) &&
1091 !access_ok((void __user *)a, size))
1096 static int vhost_process_iotlb_msg(struct vhost_dev *dev,
1097 struct vhost_iotlb_msg *msg)
1101 mutex_lock(&dev->mutex);
1102 vhost_dev_lock_vqs(dev);
1103 switch (msg->type) {
1104 case VHOST_IOTLB_UPDATE:
1109 if (!umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
1113 vhost_vq_meta_reset(dev);
1114 if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
1115 msg->iova + msg->size - 1,
1116 msg->uaddr, msg->perm)) {
1120 vhost_iotlb_notify_vq(dev, msg);
1122 case VHOST_IOTLB_INVALIDATE:
1127 vhost_vq_meta_reset(dev);
1128 vhost_del_umem_range(dev->iotlb, msg->iova,
1129 msg->iova + msg->size - 1);
1136 vhost_dev_unlock_vqs(dev);
1137 mutex_unlock(&dev->mutex);
1141 ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
1142 struct iov_iter *from)
1144 struct vhost_iotlb_msg msg;
1148 ret = copy_from_iter(&type, sizeof(type), from);
1149 if (ret != sizeof(type)) {
1155 case VHOST_IOTLB_MSG:
1156 /* There maybe a hole after type for V1 message type,
1159 offset = offsetof(struct vhost_msg, iotlb) - sizeof(int);
1161 case VHOST_IOTLB_MSG_V2:
1162 offset = sizeof(__u32);
1169 iov_iter_advance(from, offset);
1170 ret = copy_from_iter(&msg, sizeof(msg), from);
1171 if (ret != sizeof(msg)) {
1175 if (vhost_process_iotlb_msg(dev, &msg)) {
1180 ret = (type == VHOST_IOTLB_MSG) ? sizeof(struct vhost_msg) :
1181 sizeof(struct vhost_msg_v2);
1185 EXPORT_SYMBOL(vhost_chr_write_iter);
1187 __poll_t vhost_chr_poll(struct file *file, struct vhost_dev *dev,
1192 poll_wait(file, &dev->wait, wait);
1194 if (!list_empty(&dev->read_list))
1195 mask |= EPOLLIN | EPOLLRDNORM;
1199 EXPORT_SYMBOL(vhost_chr_poll);
1201 ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1205 struct vhost_msg_node *node;
1207 unsigned size = sizeof(struct vhost_msg);
1209 if (iov_iter_count(to) < size)
1214 prepare_to_wait(&dev->wait, &wait,
1215 TASK_INTERRUPTIBLE);
1217 node = vhost_dequeue_msg(dev, &dev->read_list);
1224 if (signal_pending(current)) {
1237 finish_wait(&dev->wait, &wait);
1240 struct vhost_iotlb_msg *msg;
1241 void *start = &node->msg;
1243 switch (node->msg.type) {
1244 case VHOST_IOTLB_MSG:
1245 size = sizeof(node->msg);
1246 msg = &node->msg.iotlb;
1248 case VHOST_IOTLB_MSG_V2:
1249 size = sizeof(node->msg_v2);
1250 msg = &node->msg_v2.iotlb;
1257 ret = copy_to_iter(start, size, to);
1258 if (ret != size || msg->type != VHOST_IOTLB_MISS) {
1262 vhost_enqueue_msg(dev, &dev->pending_list, node);
1267 EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1269 static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1271 struct vhost_dev *dev = vq->dev;
1272 struct vhost_msg_node *node;
1273 struct vhost_iotlb_msg *msg;
1274 bool v2 = vhost_backend_has_feature(vq, VHOST_BACKEND_F_IOTLB_MSG_V2);
1276 node = vhost_new_msg(vq, v2 ? VHOST_IOTLB_MSG_V2 : VHOST_IOTLB_MSG);
1281 node->msg_v2.type = VHOST_IOTLB_MSG_V2;
1282 msg = &node->msg_v2.iotlb;
1284 msg = &node->msg.iotlb;
1287 msg->type = VHOST_IOTLB_MISS;
1291 vhost_enqueue_msg(dev, &dev->read_list, node);
1296 static bool vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
1297 struct vring_desc __user *desc,
1298 struct vring_avail __user *avail,
1299 struct vring_used __user *used)
1302 return access_ok(desc, vhost_get_desc_size(vq, num)) &&
1303 access_ok(avail, vhost_get_avail_size(vq, num)) &&
1304 access_ok(used, vhost_get_used_size(vq, num));
1307 static void vhost_vq_meta_update(struct vhost_virtqueue *vq,
1308 const struct vhost_umem_node *node,
1311 int access = (type == VHOST_ADDR_USED) ?
1312 VHOST_ACCESS_WO : VHOST_ACCESS_RO;
1314 if (likely(node->perm & access))
1315 vq->meta_iotlb[type] = node;
1318 static bool iotlb_access_ok(struct vhost_virtqueue *vq,
1319 int access, u64 addr, u64 len, int type)
1321 const struct vhost_umem_node *node;
1322 struct vhost_umem *umem = vq->iotlb;
1323 u64 s = 0, size, orig_addr = addr, last = addr + len - 1;
1325 if (vhost_vq_meta_fetch(vq, addr, len, type))
1329 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1332 if (node == NULL || node->start > addr) {
1333 vhost_iotlb_miss(vq, addr, access);
1335 } else if (!(node->perm & access)) {
1336 /* Report the possible access violation by
1337 * request another translation from userspace.
1342 size = node->size - addr + node->start;
1344 if (orig_addr == addr && size >= len)
1345 vhost_vq_meta_update(vq, node, type);
1354 int vq_meta_prefetch(struct vhost_virtqueue *vq)
1356 unsigned int num = vq->num;
1361 return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
1362 vhost_get_desc_size(vq, num), VHOST_ADDR_DESC) &&
1363 iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1364 vhost_get_avail_size(vq, num),
1365 VHOST_ADDR_AVAIL) &&
1366 iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1367 vhost_get_used_size(vq, num), VHOST_ADDR_USED);
1369 EXPORT_SYMBOL_GPL(vq_meta_prefetch);
1371 /* Can we log writes? */
1372 /* Caller should have device mutex but not vq mutex */
1373 bool vhost_log_access_ok(struct vhost_dev *dev)
1375 return memory_access_ok(dev, dev->umem, 1);
1377 EXPORT_SYMBOL_GPL(vhost_log_access_ok);
1379 /* Verify access for write logging. */
1380 /* Caller should have vq mutex and device mutex */
1381 static bool vq_log_access_ok(struct vhost_virtqueue *vq,
1382 void __user *log_base)
1384 return vq_memory_access_ok(log_base, vq->umem,
1385 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
1386 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
1387 vhost_get_used_size(vq, vq->num)));
1390 /* Can we start vq? */
1391 /* Caller should have vq mutex and device mutex */
1392 bool vhost_vq_access_ok(struct vhost_virtqueue *vq)
1394 if (!vq_log_access_ok(vq, vq->log_base))
1397 /* Access validation occurs at prefetch time with IOTLB */
1401 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
1403 EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
1405 static struct vhost_umem *vhost_umem_alloc(void)
1407 struct vhost_umem *umem = kvzalloc(sizeof(*umem), GFP_KERNEL);
1412 umem->umem_tree = RB_ROOT_CACHED;
1414 INIT_LIST_HEAD(&umem->umem_list);
1419 static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1421 struct vhost_memory mem, *newmem;
1422 struct vhost_memory_region *region;
1423 struct vhost_umem *newumem, *oldumem;
1424 unsigned long size = offsetof(struct vhost_memory, regions);
1427 if (copy_from_user(&mem, m, size))
1431 if (mem.nregions > max_mem_regions)
1433 newmem = kvzalloc(struct_size(newmem, regions, mem.nregions),
1438 memcpy(newmem, &mem, size);
1439 if (copy_from_user(newmem->regions, m->regions,
1440 mem.nregions * sizeof *m->regions)) {
1445 newumem = vhost_umem_alloc();
1451 for (region = newmem->regions;
1452 region < newmem->regions + mem.nregions;
1454 if (vhost_new_umem_range(newumem,
1455 region->guest_phys_addr,
1456 region->memory_size,
1457 region->guest_phys_addr +
1458 region->memory_size - 1,
1459 region->userspace_addr,
1464 if (!memory_access_ok(d, newumem, 0))
1470 /* All memory accesses are done under some VQ mutex. */
1471 for (i = 0; i < d->nvqs; ++i) {
1472 mutex_lock(&d->vqs[i]->mutex);
1473 d->vqs[i]->umem = newumem;
1474 mutex_unlock(&d->vqs[i]->mutex);
1478 vhost_umem_clean(oldumem);
1482 vhost_umem_clean(newumem);
1487 static long vhost_vring_set_num(struct vhost_dev *d,
1488 struct vhost_virtqueue *vq,
1491 struct vhost_vring_state s;
1493 /* Resizing ring with an active backend?
1494 * You don't want to do that. */
1495 if (vq->private_data)
1498 if (copy_from_user(&s, argp, sizeof s))
1501 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1)))
1508 static long vhost_vring_set_addr(struct vhost_dev *d,
1509 struct vhost_virtqueue *vq,
1512 struct vhost_vring_addr a;
1514 if (copy_from_user(&a, argp, sizeof a))
1516 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG))
1519 /* For 32bit, verify that the top 32bits of the user
1520 data are set to zero. */
1521 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1522 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1523 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr)
1526 /* Make sure it's safe to cast pointers to vring types. */
1527 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1528 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1529 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1530 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
1531 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1)))
1534 /* We only verify access here if backend is configured.
1535 * If it is not, we don't as size might not have been setup.
1536 * We will verify when backend is configured. */
1537 if (vq->private_data) {
1538 if (!vq_access_ok(vq, vq->num,
1539 (void __user *)(unsigned long)a.desc_user_addr,
1540 (void __user *)(unsigned long)a.avail_user_addr,
1541 (void __user *)(unsigned long)a.used_user_addr))
1544 /* Also validate log access for used ring if enabled. */
1545 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1546 !log_access_ok(vq->log_base, a.log_guest_addr,
1548 vq->num * sizeof *vq->used->ring))
1552 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1553 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1554 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1555 vq->log_addr = a.log_guest_addr;
1556 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1561 static long vhost_vring_set_num_addr(struct vhost_dev *d,
1562 struct vhost_virtqueue *vq,
1568 mutex_lock(&vq->mutex);
1571 case VHOST_SET_VRING_NUM:
1572 r = vhost_vring_set_num(d, vq, argp);
1574 case VHOST_SET_VRING_ADDR:
1575 r = vhost_vring_set_addr(d, vq, argp);
1581 mutex_unlock(&vq->mutex);
1585 long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
1587 struct file *eventfp, *filep = NULL;
1588 bool pollstart = false, pollstop = false;
1589 struct eventfd_ctx *ctx = NULL;
1590 u32 __user *idxp = argp;
1591 struct vhost_virtqueue *vq;
1592 struct vhost_vring_state s;
1593 struct vhost_vring_file f;
1597 r = get_user(idx, idxp);
1603 idx = array_index_nospec(idx, d->nvqs);
1606 if (ioctl == VHOST_SET_VRING_NUM ||
1607 ioctl == VHOST_SET_VRING_ADDR) {
1608 return vhost_vring_set_num_addr(d, vq, ioctl, argp);
1611 mutex_lock(&vq->mutex);
1614 case VHOST_SET_VRING_BASE:
1615 /* Moving base with an active backend?
1616 * You don't want to do that. */
1617 if (vq->private_data) {
1621 if (copy_from_user(&s, argp, sizeof s)) {
1625 if (s.num > 0xffff) {
1629 vq->last_avail_idx = s.num;
1630 /* Forget the cached index value. */
1631 vq->avail_idx = vq->last_avail_idx;
1633 case VHOST_GET_VRING_BASE:
1635 s.num = vq->last_avail_idx;
1636 if (copy_to_user(argp, &s, sizeof s))
1639 case VHOST_SET_VRING_KICK:
1640 if (copy_from_user(&f, argp, sizeof f)) {
1644 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
1645 if (IS_ERR(eventfp)) {
1646 r = PTR_ERR(eventfp);
1649 if (eventfp != vq->kick) {
1650 pollstop = (filep = vq->kick) != NULL;
1651 pollstart = (vq->kick = eventfp) != NULL;
1655 case VHOST_SET_VRING_CALL:
1656 if (copy_from_user(&f, argp, sizeof f)) {
1660 ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd);
1665 swap(ctx, vq->call_ctx);
1667 case VHOST_SET_VRING_ERR:
1668 if (copy_from_user(&f, argp, sizeof f)) {
1672 ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd);
1677 swap(ctx, vq->error_ctx);
1679 case VHOST_SET_VRING_ENDIAN:
1680 r = vhost_set_vring_endian(vq, argp);
1682 case VHOST_GET_VRING_ENDIAN:
1683 r = vhost_get_vring_endian(vq, idx, argp);
1685 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1686 if (copy_from_user(&s, argp, sizeof(s))) {
1690 vq->busyloop_timeout = s.num;
1692 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1694 s.num = vq->busyloop_timeout;
1695 if (copy_to_user(argp, &s, sizeof(s)))
1702 if (pollstop && vq->handle_kick)
1703 vhost_poll_stop(&vq->poll);
1705 if (!IS_ERR_OR_NULL(ctx))
1706 eventfd_ctx_put(ctx);
1710 if (pollstart && vq->handle_kick)
1711 r = vhost_poll_start(&vq->poll, vq->kick);
1713 mutex_unlock(&vq->mutex);
1715 if (pollstop && vq->handle_kick)
1716 vhost_poll_flush(&vq->poll);
1719 EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
1721 int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1723 struct vhost_umem *niotlb, *oiotlb;
1726 niotlb = vhost_umem_alloc();
1733 for (i = 0; i < d->nvqs; ++i) {
1734 struct vhost_virtqueue *vq = d->vqs[i];
1736 mutex_lock(&vq->mutex);
1738 __vhost_vq_meta_reset(vq);
1739 mutex_unlock(&vq->mutex);
1742 vhost_umem_clean(oiotlb);
1746 EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1748 /* Caller must have device mutex */
1749 long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
1751 struct eventfd_ctx *ctx;
1756 /* If you are not the owner, you can become one */
1757 if (ioctl == VHOST_SET_OWNER) {
1758 r = vhost_dev_set_owner(d);
1762 /* You must be the owner to do anything else */
1763 r = vhost_dev_check_owner(d);
1768 case VHOST_SET_MEM_TABLE:
1769 r = vhost_set_memory(d, argp);
1771 case VHOST_SET_LOG_BASE:
1772 if (copy_from_user(&p, argp, sizeof p)) {
1776 if ((u64)(unsigned long)p != p) {
1780 for (i = 0; i < d->nvqs; ++i) {
1781 struct vhost_virtqueue *vq;
1782 void __user *base = (void __user *)(unsigned long)p;
1784 mutex_lock(&vq->mutex);
1785 /* If ring is inactive, will check when it's enabled. */
1786 if (vq->private_data && !vq_log_access_ok(vq, base))
1789 vq->log_base = base;
1790 mutex_unlock(&vq->mutex);
1793 case VHOST_SET_LOG_FD:
1794 r = get_user(fd, (int __user *)argp);
1797 ctx = fd == -1 ? NULL : eventfd_ctx_fdget(fd);
1802 swap(ctx, d->log_ctx);
1803 for (i = 0; i < d->nvqs; ++i) {
1804 mutex_lock(&d->vqs[i]->mutex);
1805 d->vqs[i]->log_ctx = d->log_ctx;
1806 mutex_unlock(&d->vqs[i]->mutex);
1809 eventfd_ctx_put(ctx);
1818 EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
1820 /* TODO: This is really inefficient. We need something like get_user()
1821 * (instruction directly accesses the data, with an exception table entry
1822 * returning -EFAULT). See Documentation/x86/exception-tables.rst.
1824 static int set_bit_to_user(int nr, void __user *addr)
1826 unsigned long log = (unsigned long)addr;
1829 int bit = nr + (log % PAGE_SIZE) * 8;
1832 r = get_user_pages_fast(log, 1, FOLL_WRITE, &page);
1836 base = kmap_atomic(page);
1838 kunmap_atomic(base);
1839 set_page_dirty_lock(page);
1844 static int log_write(void __user *log_base,
1845 u64 write_address, u64 write_length)
1847 u64 write_page = write_address / VHOST_PAGE_SIZE;
1852 write_length += write_address % VHOST_PAGE_SIZE;
1854 u64 base = (u64)(unsigned long)log_base;
1855 u64 log = base + write_page / 8;
1856 int bit = write_page % 8;
1857 if ((u64)(unsigned long)log != log)
1859 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1862 if (write_length <= VHOST_PAGE_SIZE)
1864 write_length -= VHOST_PAGE_SIZE;
1870 static int log_write_hva(struct vhost_virtqueue *vq, u64 hva, u64 len)
1872 struct vhost_umem *umem = vq->umem;
1873 struct vhost_umem_node *u;
1874 u64 start, end, l, min;
1880 /* More than one GPAs can be mapped into a single HVA. So
1881 * iterate all possible umems here to be safe.
1883 list_for_each_entry(u, &umem->umem_list, link) {
1884 if (u->userspace_addr > hva - 1 + len ||
1885 u->userspace_addr - 1 + u->size < hva)
1887 start = max(u->userspace_addr, hva);
1888 end = min(u->userspace_addr - 1 + u->size,
1890 l = end - start + 1;
1891 r = log_write(vq->log_base,
1892 u->start + start - u->userspace_addr,
1910 static int log_used(struct vhost_virtqueue *vq, u64 used_offset, u64 len)
1912 struct iovec iov[64];
1916 return log_write(vq->log_base, vq->log_addr + used_offset, len);
1918 ret = translate_desc(vq, (uintptr_t)vq->used + used_offset,
1919 len, iov, 64, VHOST_ACCESS_WO);
1923 for (i = 0; i < ret; i++) {
1924 ret = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1933 int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
1934 unsigned int log_num, u64 len, struct iovec *iov, int count)
1938 /* Make sure data written is seen before log. */
1942 for (i = 0; i < count; i++) {
1943 r = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1951 for (i = 0; i < log_num; ++i) {
1952 u64 l = min(log[i].len, len);
1953 r = log_write(vq->log_base, log[i].addr, l);
1959 eventfd_signal(vq->log_ctx, 1);
1963 /* Length written exceeds what we have stored. This is a bug. */
1967 EXPORT_SYMBOL_GPL(vhost_log_write);
1969 static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1972 if (vhost_put_used_flags(vq))
1974 if (unlikely(vq->log_used)) {
1975 /* Make sure the flag is seen before log. */
1977 /* Log used flag write. */
1978 used = &vq->used->flags;
1979 log_used(vq, (used - (void __user *)vq->used),
1980 sizeof vq->used->flags);
1982 eventfd_signal(vq->log_ctx, 1);
1987 static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1989 if (vhost_put_avail_event(vq))
1991 if (unlikely(vq->log_used)) {
1993 /* Make sure the event is seen before log. */
1995 /* Log avail event write */
1996 used = vhost_avail_event(vq);
1997 log_used(vq, (used - (void __user *)vq->used),
1998 sizeof *vhost_avail_event(vq));
2000 eventfd_signal(vq->log_ctx, 1);
2005 int vhost_vq_init_access(struct vhost_virtqueue *vq)
2007 __virtio16 last_used_idx;
2009 bool is_le = vq->is_le;
2011 if (!vq->private_data)
2014 vhost_init_is_le(vq);
2016 r = vhost_update_used_flags(vq);
2019 vq->signalled_used_valid = false;
2021 !access_ok(&vq->used->idx, sizeof vq->used->idx)) {
2025 r = vhost_get_used_idx(vq, &last_used_idx);
2027 vq_err(vq, "Can't access used idx at %p\n",
2031 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
2038 EXPORT_SYMBOL_GPL(vhost_vq_init_access);
2040 static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
2041 struct iovec iov[], int iov_size, int access)
2043 const struct vhost_umem_node *node;
2044 struct vhost_dev *dev = vq->dev;
2045 struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
2050 while ((u64)len > s) {
2052 if (unlikely(ret >= iov_size)) {
2057 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
2058 addr, addr + len - 1);
2059 if (node == NULL || node->start > addr) {
2060 if (umem != dev->iotlb) {
2066 } else if (!(node->perm & access)) {
2072 size = node->size - addr + node->start;
2073 _iov->iov_len = min((u64)len - s, size);
2074 _iov->iov_base = (void __user *)(unsigned long)
2075 (node->userspace_addr + addr - node->start);
2082 vhost_iotlb_miss(vq, addr, access);
2086 /* Each buffer in the virtqueues is actually a chain of descriptors. This
2087 * function returns the next descriptor in the chain,
2088 * or -1U if we're at the end. */
2089 static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
2093 /* If this descriptor says it doesn't chain, we're done. */
2094 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
2097 /* Check they're not leading us off end of descriptors. */
2098 next = vhost16_to_cpu(vq, READ_ONCE(desc->next));
2102 static int get_indirect(struct vhost_virtqueue *vq,
2103 struct iovec iov[], unsigned int iov_size,
2104 unsigned int *out_num, unsigned int *in_num,
2105 struct vhost_log *log, unsigned int *log_num,
2106 struct vring_desc *indirect)
2108 struct vring_desc desc;
2109 unsigned int i = 0, count, found = 0;
2110 u32 len = vhost32_to_cpu(vq, indirect->len);
2111 struct iov_iter from;
2115 if (unlikely(len % sizeof desc)) {
2116 vq_err(vq, "Invalid length in indirect descriptor: "
2117 "len 0x%llx not multiple of 0x%zx\n",
2118 (unsigned long long)len,
2123 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
2124 UIO_MAXIOV, VHOST_ACCESS_RO);
2125 if (unlikely(ret < 0)) {
2127 vq_err(vq, "Translation failure %d in indirect.\n", ret);
2130 iov_iter_init(&from, READ, vq->indirect, ret, len);
2132 /* We will use the result as an address to read from, so most
2133 * architectures only need a compiler barrier here. */
2134 read_barrier_depends();
2136 count = len / sizeof desc;
2137 /* Buffers are chained via a 16 bit next field, so
2138 * we can have at most 2^16 of these. */
2139 if (unlikely(count > USHRT_MAX + 1)) {
2140 vq_err(vq, "Indirect buffer length too big: %d\n",
2146 unsigned iov_count = *in_num + *out_num;
2147 if (unlikely(++found > count)) {
2148 vq_err(vq, "Loop detected: last one at %u "
2149 "indirect size %u\n",
2153 if (unlikely(!copy_from_iter_full(&desc, sizeof(desc), &from))) {
2154 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
2155 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
2158 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
2159 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
2160 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
2164 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2165 access = VHOST_ACCESS_WO;
2167 access = VHOST_ACCESS_RO;
2169 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2170 vhost32_to_cpu(vq, desc.len), iov + iov_count,
2171 iov_size - iov_count, access);
2172 if (unlikely(ret < 0)) {
2174 vq_err(vq, "Translation failure %d indirect idx %d\n",
2178 /* If this is an input descriptor, increment that count. */
2179 if (access == VHOST_ACCESS_WO) {
2181 if (unlikely(log && ret)) {
2182 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2183 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
2187 /* If it's an output descriptor, they're all supposed
2188 * to come before any input descriptors. */
2189 if (unlikely(*in_num)) {
2190 vq_err(vq, "Indirect descriptor "
2191 "has out after in: idx %d\n", i);
2196 } while ((i = next_desc(vq, &desc)) != -1);
2200 /* This looks in the virtqueue and for the first available buffer, and converts
2201 * it to an iovec for convenient access. Since descriptors consist of some
2202 * number of output then some number of input descriptors, it's actually two
2203 * iovecs, but we pack them into one and note how many of each there were.
2205 * This function returns the descriptor number found, or vq->num (which is
2206 * never a valid descriptor number) if none was found. A negative code is
2207 * returned on error. */
2208 int vhost_get_vq_desc(struct vhost_virtqueue *vq,
2209 struct iovec iov[], unsigned int iov_size,
2210 unsigned int *out_num, unsigned int *in_num,
2211 struct vhost_log *log, unsigned int *log_num)
2213 struct vring_desc desc;
2214 unsigned int i, head, found = 0;
2216 __virtio16 avail_idx;
2217 __virtio16 ring_head;
2220 /* Check it isn't doing very strange things with descriptor numbers. */
2221 last_avail_idx = vq->last_avail_idx;
2223 if (vq->avail_idx == vq->last_avail_idx) {
2224 if (unlikely(vhost_get_avail_idx(vq, &avail_idx))) {
2225 vq_err(vq, "Failed to access avail idx at %p\n",
2229 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2231 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
2232 vq_err(vq, "Guest moved used index from %u to %u",
2233 last_avail_idx, vq->avail_idx);
2237 /* If there's nothing new since last we looked, return
2240 if (vq->avail_idx == last_avail_idx)
2243 /* Only get avail ring entries after they have been
2249 /* Grab the next descriptor number they're advertising, and increment
2250 * the index we've seen. */
2251 if (unlikely(vhost_get_avail_head(vq, &ring_head, last_avail_idx))) {
2252 vq_err(vq, "Failed to read head: idx %d address %p\n",
2254 &vq->avail->ring[last_avail_idx % vq->num]);
2258 head = vhost16_to_cpu(vq, ring_head);
2260 /* If their number is silly, that's an error. */
2261 if (unlikely(head >= vq->num)) {
2262 vq_err(vq, "Guest says index %u > %u is available",
2267 /* When we start there are none of either input nor output. */
2268 *out_num = *in_num = 0;
2274 unsigned iov_count = *in_num + *out_num;
2275 if (unlikely(i >= vq->num)) {
2276 vq_err(vq, "Desc index is %u > %u, head = %u",
2280 if (unlikely(++found > vq->num)) {
2281 vq_err(vq, "Loop detected: last one at %u "
2282 "vq size %u head %u\n",
2286 ret = vhost_get_desc(vq, &desc, i);
2287 if (unlikely(ret)) {
2288 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
2292 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
2293 ret = get_indirect(vq, iov, iov_size,
2295 log, log_num, &desc);
2296 if (unlikely(ret < 0)) {
2298 vq_err(vq, "Failure detected "
2299 "in indirect descriptor at idx %d\n", i);
2305 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2306 access = VHOST_ACCESS_WO;
2308 access = VHOST_ACCESS_RO;
2309 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2310 vhost32_to_cpu(vq, desc.len), iov + iov_count,
2311 iov_size - iov_count, access);
2312 if (unlikely(ret < 0)) {
2314 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2318 if (access == VHOST_ACCESS_WO) {
2319 /* If this is an input descriptor,
2320 * increment that count. */
2322 if (unlikely(log && ret)) {
2323 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2324 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
2328 /* If it's an output descriptor, they're all supposed
2329 * to come before any input descriptors. */
2330 if (unlikely(*in_num)) {
2331 vq_err(vq, "Descriptor has out after in: "
2337 } while ((i = next_desc(vq, &desc)) != -1);
2339 /* On success, increment avail index. */
2340 vq->last_avail_idx++;
2342 /* Assume notifications from guest are disabled at this point,
2343 * if they aren't we would need to update avail_event index. */
2344 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
2347 EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
2349 /* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
2350 void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
2352 vq->last_avail_idx -= n;
2354 EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
2356 /* After we've used one of their buffers, we tell them about it. We'll then
2357 * want to notify the guest, using eventfd. */
2358 int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2360 struct vring_used_elem heads = {
2361 cpu_to_vhost32(vq, head),
2362 cpu_to_vhost32(vq, len)
2365 return vhost_add_used_n(vq, &heads, 1);
2367 EXPORT_SYMBOL_GPL(vhost_add_used);
2369 static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2370 struct vring_used_elem *heads,
2373 struct vring_used_elem __user *used;
2377 start = vq->last_used_idx & (vq->num - 1);
2378 used = vq->used->ring + start;
2379 if (vhost_put_used(vq, heads, start, count)) {
2380 vq_err(vq, "Failed to write used");
2383 if (unlikely(vq->log_used)) {
2384 /* Make sure data is seen before log. */
2386 /* Log used ring entry write. */
2387 log_used(vq, ((void __user *)used - (void __user *)vq->used),
2388 count * sizeof *used);
2390 old = vq->last_used_idx;
2391 new = (vq->last_used_idx += count);
2392 /* If the driver never bothers to signal in a very long while,
2393 * used index might wrap around. If that happens, invalidate
2394 * signalled_used index we stored. TODO: make sure driver
2395 * signals at least once in 2^16 and remove this. */
2396 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2397 vq->signalled_used_valid = false;
2401 /* After we've used one of their buffers, we tell them about it. We'll then
2402 * want to notify the guest, using eventfd. */
2403 int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2408 start = vq->last_used_idx & (vq->num - 1);
2409 n = vq->num - start;
2411 r = __vhost_add_used_n(vq, heads, n);
2417 r = __vhost_add_used_n(vq, heads, count);
2419 /* Make sure buffer is written before we update index. */
2421 if (vhost_put_used_idx(vq)) {
2422 vq_err(vq, "Failed to increment used idx");
2425 if (unlikely(vq->log_used)) {
2426 /* Make sure used idx is seen before log. */
2428 /* Log used index update. */
2429 log_used(vq, offsetof(struct vring_used, idx),
2430 sizeof vq->used->idx);
2432 eventfd_signal(vq->log_ctx, 1);
2436 EXPORT_SYMBOL_GPL(vhost_add_used_n);
2438 static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2443 /* Flush out used index updates. This is paired
2444 * with the barrier that the Guest executes when enabling
2448 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
2449 unlikely(vq->avail_idx == vq->last_avail_idx))
2452 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
2454 if (vhost_get_avail_flags(vq, &flags)) {
2455 vq_err(vq, "Failed to get flags");
2458 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
2460 old = vq->signalled_used;
2461 v = vq->signalled_used_valid;
2462 new = vq->signalled_used = vq->last_used_idx;
2463 vq->signalled_used_valid = true;
2468 if (vhost_get_used_event(vq, &event)) {
2469 vq_err(vq, "Failed to get used event idx");
2472 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
2475 /* This actually signals the guest, using eventfd. */
2476 void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2478 /* Signal the Guest tell them we used something up. */
2479 if (vq->call_ctx && vhost_notify(dev, vq))
2480 eventfd_signal(vq->call_ctx, 1);
2482 EXPORT_SYMBOL_GPL(vhost_signal);
2484 /* And here's the combo meal deal. Supersize me! */
2485 void vhost_add_used_and_signal(struct vhost_dev *dev,
2486 struct vhost_virtqueue *vq,
2487 unsigned int head, int len)
2489 vhost_add_used(vq, head, len);
2490 vhost_signal(dev, vq);
2492 EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
2494 /* multi-buffer version of vhost_add_used_and_signal */
2495 void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2496 struct vhost_virtqueue *vq,
2497 struct vring_used_elem *heads, unsigned count)
2499 vhost_add_used_n(vq, heads, count);
2500 vhost_signal(dev, vq);
2502 EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
2504 /* return true if we're sure that avaiable ring is empty */
2505 bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2507 __virtio16 avail_idx;
2510 if (vq->avail_idx != vq->last_avail_idx)
2513 r = vhost_get_avail_idx(vq, &avail_idx);
2516 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2518 return vq->avail_idx == vq->last_avail_idx;
2520 EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2522 /* OK, now we need to know about added descriptors. */
2523 bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2525 __virtio16 avail_idx;
2528 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2530 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
2531 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
2532 r = vhost_update_used_flags(vq);
2534 vq_err(vq, "Failed to enable notification at %p: %d\n",
2535 &vq->used->flags, r);
2539 r = vhost_update_avail_event(vq, vq->avail_idx);
2541 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2542 vhost_avail_event(vq), r);
2546 /* They could have slipped one in as we were doing that: make
2547 * sure it's written, then check again. */
2549 r = vhost_get_avail_idx(vq, &avail_idx);
2551 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2552 &vq->avail->idx, r);
2556 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
2558 EXPORT_SYMBOL_GPL(vhost_enable_notify);
2560 /* We don't need to be notified again. */
2561 void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2565 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2567 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
2568 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
2569 r = vhost_update_used_flags(vq);
2571 vq_err(vq, "Failed to enable notification at %p: %d\n",
2572 &vq->used->flags, r);
2575 EXPORT_SYMBOL_GPL(vhost_disable_notify);
2577 /* Create a new message. */
2578 struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2580 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2584 /* Make sure all padding within the structure is initialized. */
2585 memset(&node->msg, 0, sizeof node->msg);
2587 node->msg.type = type;
2590 EXPORT_SYMBOL_GPL(vhost_new_msg);
2592 void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2593 struct vhost_msg_node *node)
2595 spin_lock(&dev->iotlb_lock);
2596 list_add_tail(&node->node, head);
2597 spin_unlock(&dev->iotlb_lock);
2599 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
2601 EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2603 struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2604 struct list_head *head)
2606 struct vhost_msg_node *node = NULL;
2608 spin_lock(&dev->iotlb_lock);
2609 if (!list_empty(head)) {
2610 node = list_first_entry(head, struct vhost_msg_node,
2612 list_del(&node->node);
2614 spin_unlock(&dev->iotlb_lock);
2618 EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2621 static int __init vhost_init(void)
2626 static void __exit vhost_exit(void)
2630 module_init(vhost_init);
2631 module_exit(vhost_exit);
2633 MODULE_VERSION("0.0.1");
2634 MODULE_LICENSE("GPL v2");
2635 MODULE_AUTHOR("Michael S. Tsirkin");
2636 MODULE_DESCRIPTION("Host kernel accelerator for virtio");