1 /* Copyright (C) 2009 Red Hat, Inc.
2 * Copyright (C) 2006 Rusty Russell IBM Corporation
4 * Author: Michael S. Tsirkin <mst@redhat.com>
6 * Inspiration, some code, and most witty comments come from
7 * Documentation/virtual/lguest/lguest.c, by Rusty Russell
9 * This work is licensed under the terms of the GNU GPL, version 2.
11 * Generic code for virtio server in host kernel.
14 #include <linux/eventfd.h>
15 #include <linux/vhost.h>
16 #include <linux/uio.h>
18 #include <linux/mmu_context.h>
19 #include <linux/miscdevice.h>
20 #include <linux/mutex.h>
21 #include <linux/poll.h>
22 #include <linux/file.h>
23 #include <linux/highmem.h>
24 #include <linux/slab.h>
25 #include <linux/vmalloc.h>
26 #include <linux/kthread.h>
27 #include <linux/cgroup.h>
28 #include <linux/module.h>
29 #include <linux/sort.h>
30 #include <linux/sched/mm.h>
31 #include <linux/sched/signal.h>
32 #include <linux/interval_tree_generic.h>
33 #include <linux/nospec.h>
37 static ushort max_mem_regions
= 64;
38 module_param(max_mem_regions
, ushort
, 0444);
39 MODULE_PARM_DESC(max_mem_regions
,
40 "Maximum number of memory regions in memory map. (default: 64)");
41 static int max_iotlb_entries
= 2048;
42 module_param(max_iotlb_entries
, int, 0444);
43 MODULE_PARM_DESC(max_iotlb_entries
,
44 "Maximum number of iotlb entries. (default: 2048)");
47 VHOST_MEMORY_F_LOG
= 0x1,
50 #define vhost_used_event(vq) ((__virtio16 __user *)&vq->avail->ring[vq->num])
51 #define vhost_avail_event(vq) ((__virtio16 __user *)&vq->used->ring[vq->num])
53 INTERVAL_TREE_DEFINE(struct vhost_umem_node
,
54 rb
, __u64
, __subtree_last
,
55 START
, LAST
, static inline, vhost_umem_interval_tree
);
57 #ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
58 static void vhost_disable_cross_endian(struct vhost_virtqueue
*vq
)
60 vq
->user_be
= !virtio_legacy_is_little_endian();
63 static void vhost_enable_cross_endian_big(struct vhost_virtqueue
*vq
)
68 static void vhost_enable_cross_endian_little(struct vhost_virtqueue
*vq
)
73 static long vhost_set_vring_endian(struct vhost_virtqueue
*vq
, int __user
*argp
)
75 struct vhost_vring_state s
;
80 if (copy_from_user(&s
, argp
, sizeof(s
)))
83 if (s
.num
!= VHOST_VRING_LITTLE_ENDIAN
&&
84 s
.num
!= VHOST_VRING_BIG_ENDIAN
)
87 if (s
.num
== VHOST_VRING_BIG_ENDIAN
)
88 vhost_enable_cross_endian_big(vq
);
90 vhost_enable_cross_endian_little(vq
);
95 static long vhost_get_vring_endian(struct vhost_virtqueue
*vq
, u32 idx
,
98 struct vhost_vring_state s
= {
103 if (copy_to_user(argp
, &s
, sizeof(s
)))
109 static void vhost_init_is_le(struct vhost_virtqueue
*vq
)
111 /* Note for legacy virtio: user_be is initialized at reset time
112 * according to the host endianness. If userspace does not set an
113 * explicit endianness, the default behavior is native endian, as
114 * expected by legacy virtio.
116 vq
->is_le
= vhost_has_feature(vq
, VIRTIO_F_VERSION_1
) || !vq
->user_be
;
119 static void vhost_disable_cross_endian(struct vhost_virtqueue
*vq
)
123 static long vhost_set_vring_endian(struct vhost_virtqueue
*vq
, int __user
*argp
)
128 static long vhost_get_vring_endian(struct vhost_virtqueue
*vq
, u32 idx
,
134 static void vhost_init_is_le(struct vhost_virtqueue
*vq
)
136 vq
->is_le
= vhost_has_feature(vq
, VIRTIO_F_VERSION_1
)
137 || virtio_legacy_is_little_endian();
139 #endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */
141 static void vhost_reset_is_le(struct vhost_virtqueue
*vq
)
143 vhost_init_is_le(vq
);
146 struct vhost_flush_struct
{
147 struct vhost_work work
;
148 struct completion wait_event
;
151 static void vhost_flush_work(struct vhost_work
*work
)
153 struct vhost_flush_struct
*s
;
155 s
= container_of(work
, struct vhost_flush_struct
, work
);
156 complete(&s
->wait_event
);
159 static void vhost_poll_func(struct file
*file
, wait_queue_head_t
*wqh
,
162 struct vhost_poll
*poll
;
164 poll
= container_of(pt
, struct vhost_poll
, table
);
166 add_wait_queue(wqh
, &poll
->wait
);
169 static int vhost_poll_wakeup(wait_queue_entry_t
*wait
, unsigned mode
, int sync
,
172 struct vhost_poll
*poll
= container_of(wait
, struct vhost_poll
, wait
);
174 if (!(key_to_poll(key
) & poll
->mask
))
177 vhost_poll_queue(poll
);
181 void vhost_work_init(struct vhost_work
*work
, vhost_work_fn_t fn
)
183 clear_bit(VHOST_WORK_QUEUED
, &work
->flags
);
186 EXPORT_SYMBOL_GPL(vhost_work_init
);
188 /* Init poll structure */
189 void vhost_poll_init(struct vhost_poll
*poll
, vhost_work_fn_t fn
,
190 __poll_t mask
, struct vhost_dev
*dev
)
192 init_waitqueue_func_entry(&poll
->wait
, vhost_poll_wakeup
);
193 init_poll_funcptr(&poll
->table
, vhost_poll_func
);
198 vhost_work_init(&poll
->work
, fn
);
200 EXPORT_SYMBOL_GPL(vhost_poll_init
);
202 /* Start polling a file. We add ourselves to file's wait queue. The caller must
203 * keep a reference to a file until after vhost_poll_stop is called. */
204 int vhost_poll_start(struct vhost_poll
*poll
, struct file
*file
)
212 mask
= vfs_poll(file
, &poll
->table
);
214 vhost_poll_wakeup(&poll
->wait
, 0, 0, poll_to_key(mask
));
215 if (mask
& EPOLLERR
) {
216 vhost_poll_stop(poll
);
222 EXPORT_SYMBOL_GPL(vhost_poll_start
);
224 /* Stop polling a file. After this function returns, it becomes safe to drop the
225 * file reference. You must also flush afterwards. */
226 void vhost_poll_stop(struct vhost_poll
*poll
)
229 remove_wait_queue(poll
->wqh
, &poll
->wait
);
233 EXPORT_SYMBOL_GPL(vhost_poll_stop
);
235 void vhost_work_flush(struct vhost_dev
*dev
, struct vhost_work
*work
)
237 struct vhost_flush_struct flush
;
240 init_completion(&flush
.wait_event
);
241 vhost_work_init(&flush
.work
, vhost_flush_work
);
243 vhost_work_queue(dev
, &flush
.work
);
244 wait_for_completion(&flush
.wait_event
);
247 EXPORT_SYMBOL_GPL(vhost_work_flush
);
249 /* Flush any work that has been scheduled. When calling this, don't hold any
250 * locks that are also used by the callback. */
251 void vhost_poll_flush(struct vhost_poll
*poll
)
253 vhost_work_flush(poll
->dev
, &poll
->work
);
255 EXPORT_SYMBOL_GPL(vhost_poll_flush
);
257 void vhost_work_queue(struct vhost_dev
*dev
, struct vhost_work
*work
)
262 if (!test_and_set_bit(VHOST_WORK_QUEUED
, &work
->flags
)) {
263 /* We can only add the work to the list after we're
264 * sure it was not in the list.
265 * test_and_set_bit() implies a memory barrier.
267 llist_add(&work
->node
, &dev
->work_list
);
268 wake_up_process(dev
->worker
);
271 EXPORT_SYMBOL_GPL(vhost_work_queue
);
273 /* A lockless hint for busy polling code to exit the loop */
274 bool vhost_has_work(struct vhost_dev
*dev
)
276 return !llist_empty(&dev
->work_list
);
278 EXPORT_SYMBOL_GPL(vhost_has_work
);
280 void vhost_poll_queue(struct vhost_poll
*poll
)
282 vhost_work_queue(poll
->dev
, &poll
->work
);
284 EXPORT_SYMBOL_GPL(vhost_poll_queue
);
286 static void __vhost_vq_meta_reset(struct vhost_virtqueue
*vq
)
290 for (j
= 0; j
< VHOST_NUM_ADDRS
; j
++)
291 vq
->meta_iotlb
[j
] = NULL
;
294 static void vhost_vq_meta_reset(struct vhost_dev
*d
)
298 for (i
= 0; i
< d
->nvqs
; ++i
) {
299 mutex_lock(&d
->vqs
[i
]->mutex
);
300 __vhost_vq_meta_reset(d
->vqs
[i
]);
301 mutex_unlock(&d
->vqs
[i
]->mutex
);
305 static void vhost_vq_reset(struct vhost_dev
*dev
,
306 struct vhost_virtqueue
*vq
)
312 vq
->last_avail_idx
= 0;
314 vq
->last_used_idx
= 0;
315 vq
->signalled_used
= 0;
316 vq
->signalled_used_valid
= false;
318 vq
->log_used
= false;
319 vq
->log_addr
= -1ull;
320 vq
->private_data
= NULL
;
321 vq
->acked_features
= 0;
322 vq
->acked_backend_features
= 0;
324 vq
->error_ctx
= NULL
;
328 vhost_reset_is_le(vq
);
329 vhost_disable_cross_endian(vq
);
330 vq
->busyloop_timeout
= 0;
333 __vhost_vq_meta_reset(vq
);
336 static int vhost_worker(void *data
)
338 struct vhost_dev
*dev
= data
;
339 struct vhost_work
*work
, *work_next
;
340 struct llist_node
*node
;
341 mm_segment_t oldfs
= get_fs();
347 /* mb paired w/ kthread_stop */
348 set_current_state(TASK_INTERRUPTIBLE
);
350 if (kthread_should_stop()) {
351 __set_current_state(TASK_RUNNING
);
355 node
= llist_del_all(&dev
->work_list
);
359 node
= llist_reverse_order(node
);
360 /* make sure flag is seen after deletion */
362 llist_for_each_entry_safe(work
, work_next
, node
, node
) {
363 clear_bit(VHOST_WORK_QUEUED
, &work
->flags
);
364 __set_current_state(TASK_RUNNING
);
375 static void vhost_vq_free_iovecs(struct vhost_virtqueue
*vq
)
385 /* Helper to allocate iovec buffers for all vqs. */
386 static long vhost_dev_alloc_iovecs(struct vhost_dev
*dev
)
388 struct vhost_virtqueue
*vq
;
391 for (i
= 0; i
< dev
->nvqs
; ++i
) {
393 vq
->indirect
= kmalloc_array(UIO_MAXIOV
,
394 sizeof(*vq
->indirect
),
396 vq
->log
= kmalloc_array(UIO_MAXIOV
, sizeof(*vq
->log
),
398 vq
->heads
= kmalloc_array(UIO_MAXIOV
, sizeof(*vq
->heads
),
400 if (!vq
->indirect
|| !vq
->log
|| !vq
->heads
)
407 vhost_vq_free_iovecs(dev
->vqs
[i
]);
411 static void vhost_dev_free_iovecs(struct vhost_dev
*dev
)
415 for (i
= 0; i
< dev
->nvqs
; ++i
)
416 vhost_vq_free_iovecs(dev
->vqs
[i
]);
419 void vhost_dev_init(struct vhost_dev
*dev
,
420 struct vhost_virtqueue
**vqs
, int nvqs
)
422 struct vhost_virtqueue
*vq
;
427 mutex_init(&dev
->mutex
);
433 init_llist_head(&dev
->work_list
);
434 init_waitqueue_head(&dev
->wait
);
435 INIT_LIST_HEAD(&dev
->read_list
);
436 INIT_LIST_HEAD(&dev
->pending_list
);
437 spin_lock_init(&dev
->iotlb_lock
);
440 for (i
= 0; i
< dev
->nvqs
; ++i
) {
446 mutex_init(&vq
->mutex
);
447 vhost_vq_reset(dev
, vq
);
449 vhost_poll_init(&vq
->poll
, vq
->handle_kick
,
453 EXPORT_SYMBOL_GPL(vhost_dev_init
);
455 /* Caller should have device mutex */
456 long vhost_dev_check_owner(struct vhost_dev
*dev
)
458 /* Are you the owner? If not, I don't think you mean to do that */
459 return dev
->mm
== current
->mm
? 0 : -EPERM
;
461 EXPORT_SYMBOL_GPL(vhost_dev_check_owner
);
463 struct vhost_attach_cgroups_struct
{
464 struct vhost_work work
;
465 struct task_struct
*owner
;
469 static void vhost_attach_cgroups_work(struct vhost_work
*work
)
471 struct vhost_attach_cgroups_struct
*s
;
473 s
= container_of(work
, struct vhost_attach_cgroups_struct
, work
);
474 s
->ret
= cgroup_attach_task_all(s
->owner
, current
);
477 static int vhost_attach_cgroups(struct vhost_dev
*dev
)
479 struct vhost_attach_cgroups_struct attach
;
481 attach
.owner
= current
;
482 vhost_work_init(&attach
.work
, vhost_attach_cgroups_work
);
483 vhost_work_queue(dev
, &attach
.work
);
484 vhost_work_flush(dev
, &attach
.work
);
488 /* Caller should have device mutex */
489 bool vhost_dev_has_owner(struct vhost_dev
*dev
)
493 EXPORT_SYMBOL_GPL(vhost_dev_has_owner
);
495 /* Caller should have device mutex */
496 long vhost_dev_set_owner(struct vhost_dev
*dev
)
498 struct task_struct
*worker
;
501 /* Is there an owner already? */
502 if (vhost_dev_has_owner(dev
)) {
507 /* No owner, become one */
508 dev
->mm
= get_task_mm(current
);
509 worker
= kthread_create(vhost_worker
, dev
, "vhost-%d", current
->pid
);
510 if (IS_ERR(worker
)) {
511 err
= PTR_ERR(worker
);
515 dev
->worker
= worker
;
516 wake_up_process(worker
); /* avoid contributing to loadavg */
518 err
= vhost_attach_cgroups(dev
);
522 err
= vhost_dev_alloc_iovecs(dev
);
528 kthread_stop(worker
);
537 EXPORT_SYMBOL_GPL(vhost_dev_set_owner
);
539 struct vhost_umem
*vhost_dev_reset_owner_prepare(void)
541 return kvzalloc(sizeof(struct vhost_umem
), GFP_KERNEL
);
543 EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare
);
545 /* Caller should have device mutex */
546 void vhost_dev_reset_owner(struct vhost_dev
*dev
, struct vhost_umem
*umem
)
550 vhost_dev_cleanup(dev
);
552 /* Restore memory to default empty mapping. */
553 INIT_LIST_HEAD(&umem
->umem_list
);
555 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
556 * VQs aren't running.
558 for (i
= 0; i
< dev
->nvqs
; ++i
)
559 dev
->vqs
[i
]->umem
= umem
;
561 EXPORT_SYMBOL_GPL(vhost_dev_reset_owner
);
563 void vhost_dev_stop(struct vhost_dev
*dev
)
567 for (i
= 0; i
< dev
->nvqs
; ++i
) {
568 if (dev
->vqs
[i
]->kick
&& dev
->vqs
[i
]->handle_kick
) {
569 vhost_poll_stop(&dev
->vqs
[i
]->poll
);
570 vhost_poll_flush(&dev
->vqs
[i
]->poll
);
574 EXPORT_SYMBOL_GPL(vhost_dev_stop
);
576 static void vhost_umem_free(struct vhost_umem
*umem
,
577 struct vhost_umem_node
*node
)
579 vhost_umem_interval_tree_remove(node
, &umem
->umem_tree
);
580 list_del(&node
->link
);
585 static void vhost_umem_clean(struct vhost_umem
*umem
)
587 struct vhost_umem_node
*node
, *tmp
;
592 list_for_each_entry_safe(node
, tmp
, &umem
->umem_list
, link
)
593 vhost_umem_free(umem
, node
);
598 static void vhost_clear_msg(struct vhost_dev
*dev
)
600 struct vhost_msg_node
*node
, *n
;
602 spin_lock(&dev
->iotlb_lock
);
604 list_for_each_entry_safe(node
, n
, &dev
->read_list
, node
) {
605 list_del(&node
->node
);
609 list_for_each_entry_safe(node
, n
, &dev
->pending_list
, node
) {
610 list_del(&node
->node
);
614 spin_unlock(&dev
->iotlb_lock
);
617 void vhost_dev_cleanup(struct vhost_dev
*dev
)
621 for (i
= 0; i
< dev
->nvqs
; ++i
) {
622 if (dev
->vqs
[i
]->error_ctx
)
623 eventfd_ctx_put(dev
->vqs
[i
]->error_ctx
);
624 if (dev
->vqs
[i
]->kick
)
625 fput(dev
->vqs
[i
]->kick
);
626 if (dev
->vqs
[i
]->call_ctx
)
627 eventfd_ctx_put(dev
->vqs
[i
]->call_ctx
);
628 vhost_vq_reset(dev
, dev
->vqs
[i
]);
630 vhost_dev_free_iovecs(dev
);
632 eventfd_ctx_put(dev
->log_ctx
);
634 /* No one will access memory at this point */
635 vhost_umem_clean(dev
->umem
);
637 vhost_umem_clean(dev
->iotlb
);
639 vhost_clear_msg(dev
);
640 wake_up_interruptible_poll(&dev
->wait
, EPOLLIN
| EPOLLRDNORM
);
641 WARN_ON(!llist_empty(&dev
->work_list
));
643 kthread_stop(dev
->worker
);
650 EXPORT_SYMBOL_GPL(vhost_dev_cleanup
);
652 static bool log_access_ok(void __user
*log_base
, u64 addr
, unsigned long sz
)
654 u64 a
= addr
/ VHOST_PAGE_SIZE
/ 8;
656 /* Make sure 64 bit math will not overflow. */
657 if (a
> ULONG_MAX
- (unsigned long)log_base
||
658 a
+ (unsigned long)log_base
> ULONG_MAX
)
661 return access_ok(VERIFY_WRITE
, log_base
+ a
,
662 (sz
+ VHOST_PAGE_SIZE
* 8 - 1) / VHOST_PAGE_SIZE
/ 8);
665 static bool vhost_overflow(u64 uaddr
, u64 size
)
667 /* Make sure 64 bit math will not overflow. */
668 return uaddr
> ULONG_MAX
|| size
> ULONG_MAX
|| uaddr
> ULONG_MAX
- size
;
671 /* Caller should have vq mutex and device mutex. */
672 static bool vq_memory_access_ok(void __user
*log_base
, struct vhost_umem
*umem
,
675 struct vhost_umem_node
*node
;
680 list_for_each_entry(node
, &umem
->umem_list
, link
) {
681 unsigned long a
= node
->userspace_addr
;
683 if (vhost_overflow(node
->userspace_addr
, node
->size
))
687 if (!access_ok(VERIFY_WRITE
, (void __user
*)a
,
690 else if (log_all
&& !log_access_ok(log_base
,
698 static inline void __user
*vhost_vq_meta_fetch(struct vhost_virtqueue
*vq
,
699 u64 addr
, unsigned int size
,
702 const struct vhost_umem_node
*node
= vq
->meta_iotlb
[type
];
707 return (void *)(uintptr_t)(node
->userspace_addr
+ addr
- node
->start
);
710 /* Can we switch to this memory table? */
711 /* Caller should have device mutex but not vq mutex */
712 static bool memory_access_ok(struct vhost_dev
*d
, struct vhost_umem
*umem
,
717 for (i
= 0; i
< d
->nvqs
; ++i
) {
721 mutex_lock(&d
->vqs
[i
]->mutex
);
722 log
= log_all
|| vhost_has_feature(d
->vqs
[i
], VHOST_F_LOG_ALL
);
723 /* If ring is inactive, will check when it's enabled. */
724 if (d
->vqs
[i
]->private_data
)
725 ok
= vq_memory_access_ok(d
->vqs
[i
]->log_base
,
729 mutex_unlock(&d
->vqs
[i
]->mutex
);
736 static int translate_desc(struct vhost_virtqueue
*vq
, u64 addr
, u32 len
,
737 struct iovec iov
[], int iov_size
, int access
);
739 static int vhost_copy_to_user(struct vhost_virtqueue
*vq
, void __user
*to
,
740 const void *from
, unsigned size
)
745 return __copy_to_user(to
, from
, size
);
747 /* This function should be called after iotlb
748 * prefetch, which means we're sure that all vq
749 * could be access through iotlb. So -EAGAIN should
750 * not happen in this case.
753 void __user
*uaddr
= vhost_vq_meta_fetch(vq
,
754 (u64
)(uintptr_t)to
, size
,
758 return __copy_to_user(uaddr
, from
, size
);
760 ret
= translate_desc(vq
, (u64
)(uintptr_t)to
, size
, vq
->iotlb_iov
,
761 ARRAY_SIZE(vq
->iotlb_iov
),
765 iov_iter_init(&t
, WRITE
, vq
->iotlb_iov
, ret
, size
);
766 ret
= copy_to_iter(from
, size
, &t
);
774 static int vhost_copy_from_user(struct vhost_virtqueue
*vq
, void *to
,
775 void __user
*from
, unsigned size
)
780 return __copy_from_user(to
, from
, size
);
782 /* This function should be called after iotlb
783 * prefetch, which means we're sure that vq
784 * could be access through iotlb. So -EAGAIN should
785 * not happen in this case.
787 void __user
*uaddr
= vhost_vq_meta_fetch(vq
,
788 (u64
)(uintptr_t)from
, size
,
793 return __copy_from_user(to
, uaddr
, size
);
795 ret
= translate_desc(vq
, (u64
)(uintptr_t)from
, size
, vq
->iotlb_iov
,
796 ARRAY_SIZE(vq
->iotlb_iov
),
799 vq_err(vq
, "IOTLB translation failure: uaddr "
800 "%p size 0x%llx\n", from
,
801 (unsigned long long) size
);
804 iov_iter_init(&f
, READ
, vq
->iotlb_iov
, ret
, size
);
805 ret
= copy_from_iter(to
, size
, &f
);
814 static void __user
*__vhost_get_user_slow(struct vhost_virtqueue
*vq
,
815 void __user
*addr
, unsigned int size
,
820 ret
= translate_desc(vq
, (u64
)(uintptr_t)addr
, size
, vq
->iotlb_iov
,
821 ARRAY_SIZE(vq
->iotlb_iov
),
824 vq_err(vq
, "IOTLB translation failure: uaddr "
825 "%p size 0x%llx\n", addr
,
826 (unsigned long long) size
);
830 if (ret
!= 1 || vq
->iotlb_iov
[0].iov_len
!= size
) {
831 vq_err(vq
, "Non atomic userspace memory access: uaddr "
832 "%p size 0x%llx\n", addr
,
833 (unsigned long long) size
);
837 return vq
->iotlb_iov
[0].iov_base
;
840 /* This function should be called after iotlb
841 * prefetch, which means we're sure that vq
842 * could be access through iotlb. So -EAGAIN should
843 * not happen in this case.
845 static inline void __user
*__vhost_get_user(struct vhost_virtqueue
*vq
,
846 void *addr
, unsigned int size
,
849 void __user
*uaddr
= vhost_vq_meta_fetch(vq
,
850 (u64
)(uintptr_t)addr
, size
, type
);
854 return __vhost_get_user_slow(vq
, addr
, size
, type
);
857 #define vhost_put_user(vq, x, ptr) \
861 ret = __put_user(x, ptr); \
863 __typeof__(ptr) to = \
864 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
865 sizeof(*ptr), VHOST_ADDR_USED); \
867 ret = __put_user(x, to); \
874 #define vhost_get_user(vq, x, ptr, type) \
878 ret = __get_user(x, ptr); \
880 __typeof__(ptr) from = \
881 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
885 ret = __get_user(x, from); \
892 #define vhost_get_avail(vq, x, ptr) \
893 vhost_get_user(vq, x, ptr, VHOST_ADDR_AVAIL)
895 #define vhost_get_used(vq, x, ptr) \
896 vhost_get_user(vq, x, ptr, VHOST_ADDR_USED)
898 static int vhost_new_umem_range(struct vhost_umem
*umem
,
899 u64 start
, u64 size
, u64 end
,
900 u64 userspace_addr
, int perm
)
902 struct vhost_umem_node
*tmp
, *node
= kmalloc(sizeof(*node
), GFP_ATOMIC
);
907 if (umem
->numem
== max_iotlb_entries
) {
908 tmp
= list_first_entry(&umem
->umem_list
, typeof(*tmp
), link
);
909 vhost_umem_free(umem
, tmp
);
915 node
->userspace_addr
= userspace_addr
;
917 INIT_LIST_HEAD(&node
->link
);
918 list_add_tail(&node
->link
, &umem
->umem_list
);
919 vhost_umem_interval_tree_insert(node
, &umem
->umem_tree
);
925 static void vhost_del_umem_range(struct vhost_umem
*umem
,
928 struct vhost_umem_node
*node
;
930 while ((node
= vhost_umem_interval_tree_iter_first(&umem
->umem_tree
,
932 vhost_umem_free(umem
, node
);
935 static void vhost_iotlb_notify_vq(struct vhost_dev
*d
,
936 struct vhost_iotlb_msg
*msg
)
938 struct vhost_msg_node
*node
, *n
;
940 spin_lock(&d
->iotlb_lock
);
942 list_for_each_entry_safe(node
, n
, &d
->pending_list
, node
) {
943 struct vhost_iotlb_msg
*vq_msg
= &node
->msg
.iotlb
;
944 if (msg
->iova
<= vq_msg
->iova
&&
945 msg
->iova
+ msg
->size
- 1 >= vq_msg
->iova
&&
946 vq_msg
->type
== VHOST_IOTLB_MISS
) {
947 vhost_poll_queue(&node
->vq
->poll
);
948 list_del(&node
->node
);
953 spin_unlock(&d
->iotlb_lock
);
956 static bool umem_access_ok(u64 uaddr
, u64 size
, int access
)
958 unsigned long a
= uaddr
;
960 /* Make sure 64 bit math will not overflow. */
961 if (vhost_overflow(uaddr
, size
))
964 if ((access
& VHOST_ACCESS_RO
) &&
965 !access_ok(VERIFY_READ
, (void __user
*)a
, size
))
967 if ((access
& VHOST_ACCESS_WO
) &&
968 !access_ok(VERIFY_WRITE
, (void __user
*)a
, size
))
973 static int vhost_process_iotlb_msg(struct vhost_dev
*dev
,
974 struct vhost_iotlb_msg
*msg
)
978 mutex_lock(&dev
->mutex
);
980 case VHOST_IOTLB_UPDATE
:
985 if (!umem_access_ok(msg
->uaddr
, msg
->size
, msg
->perm
)) {
989 vhost_vq_meta_reset(dev
);
990 if (vhost_new_umem_range(dev
->iotlb
, msg
->iova
, msg
->size
,
991 msg
->iova
+ msg
->size
- 1,
992 msg
->uaddr
, msg
->perm
)) {
996 vhost_iotlb_notify_vq(dev
, msg
);
998 case VHOST_IOTLB_INVALIDATE
:
1003 vhost_vq_meta_reset(dev
);
1004 vhost_del_umem_range(dev
->iotlb
, msg
->iova
,
1005 msg
->iova
+ msg
->size
- 1);
1012 mutex_unlock(&dev
->mutex
);
1016 ssize_t
vhost_chr_write_iter(struct vhost_dev
*dev
,
1017 struct iov_iter
*from
)
1019 struct vhost_iotlb_msg msg
;
1023 ret
= copy_from_iter(&type
, sizeof(type
), from
);
1024 if (ret
!= sizeof(type
))
1028 case VHOST_IOTLB_MSG
:
1029 /* There maybe a hole after type for V1 message type,
1032 offset
= offsetof(struct vhost_msg
, iotlb
) - sizeof(int);
1034 case VHOST_IOTLB_MSG_V2
:
1035 offset
= sizeof(__u32
);
1042 iov_iter_advance(from
, offset
);
1043 ret
= copy_from_iter(&msg
, sizeof(msg
), from
);
1044 if (ret
!= sizeof(msg
))
1046 if (vhost_process_iotlb_msg(dev
, &msg
)) {
1051 ret
= (type
== VHOST_IOTLB_MSG
) ? sizeof(struct vhost_msg
) :
1052 sizeof(struct vhost_msg_v2
);
1056 EXPORT_SYMBOL(vhost_chr_write_iter
);
1058 __poll_t
vhost_chr_poll(struct file
*file
, struct vhost_dev
*dev
,
1063 poll_wait(file
, &dev
->wait
, wait
);
1065 if (!list_empty(&dev
->read_list
))
1066 mask
|= EPOLLIN
| EPOLLRDNORM
;
1070 EXPORT_SYMBOL(vhost_chr_poll
);
1072 ssize_t
vhost_chr_read_iter(struct vhost_dev
*dev
, struct iov_iter
*to
,
1076 struct vhost_msg_node
*node
;
1078 unsigned size
= sizeof(struct vhost_msg
);
1080 if (iov_iter_count(to
) < size
)
1085 prepare_to_wait(&dev
->wait
, &wait
,
1086 TASK_INTERRUPTIBLE
);
1088 node
= vhost_dequeue_msg(dev
, &dev
->read_list
);
1095 if (signal_pending(current
)) {
1108 finish_wait(&dev
->wait
, &wait
);
1111 struct vhost_iotlb_msg
*msg
;
1112 void *start
= &node
->msg
;
1114 switch (node
->msg
.type
) {
1115 case VHOST_IOTLB_MSG
:
1116 size
= sizeof(node
->msg
);
1117 msg
= &node
->msg
.iotlb
;
1119 case VHOST_IOTLB_MSG_V2
:
1120 size
= sizeof(node
->msg_v2
);
1121 msg
= &node
->msg_v2
.iotlb
;
1128 ret
= copy_to_iter(start
, size
, to
);
1129 if (ret
!= size
|| msg
->type
!= VHOST_IOTLB_MISS
) {
1133 vhost_enqueue_msg(dev
, &dev
->pending_list
, node
);
1138 EXPORT_SYMBOL_GPL(vhost_chr_read_iter
);
1140 static int vhost_iotlb_miss(struct vhost_virtqueue
*vq
, u64 iova
, int access
)
1142 struct vhost_dev
*dev
= vq
->dev
;
1143 struct vhost_msg_node
*node
;
1144 struct vhost_iotlb_msg
*msg
;
1145 bool v2
= vhost_backend_has_feature(vq
, VHOST_BACKEND_F_IOTLB_MSG_V2
);
1147 node
= vhost_new_msg(vq
, v2
? VHOST_IOTLB_MSG_V2
: VHOST_IOTLB_MSG
);
1152 node
->msg_v2
.type
= VHOST_IOTLB_MSG_V2
;
1153 msg
= &node
->msg_v2
.iotlb
;
1155 msg
= &node
->msg
.iotlb
;
1158 msg
->type
= VHOST_IOTLB_MISS
;
1162 vhost_enqueue_msg(dev
, &dev
->read_list
, node
);
1167 static bool vq_access_ok(struct vhost_virtqueue
*vq
, unsigned int num
,
1168 struct vring_desc __user
*desc
,
1169 struct vring_avail __user
*avail
,
1170 struct vring_used __user
*used
)
1173 size_t s
= vhost_has_feature(vq
, VIRTIO_RING_F_EVENT_IDX
) ? 2 : 0;
1175 return access_ok(VERIFY_READ
, desc
, num
* sizeof *desc
) &&
1176 access_ok(VERIFY_READ
, avail
,
1177 sizeof *avail
+ num
* sizeof *avail
->ring
+ s
) &&
1178 access_ok(VERIFY_WRITE
, used
,
1179 sizeof *used
+ num
* sizeof *used
->ring
+ s
);
1182 static void vhost_vq_meta_update(struct vhost_virtqueue
*vq
,
1183 const struct vhost_umem_node
*node
,
1186 int access
= (type
== VHOST_ADDR_USED
) ?
1187 VHOST_ACCESS_WO
: VHOST_ACCESS_RO
;
1189 if (likely(node
->perm
& access
))
1190 vq
->meta_iotlb
[type
] = node
;
1193 static bool iotlb_access_ok(struct vhost_virtqueue
*vq
,
1194 int access
, u64 addr
, u64 len
, int type
)
1196 const struct vhost_umem_node
*node
;
1197 struct vhost_umem
*umem
= vq
->iotlb
;
1198 u64 s
= 0, size
, orig_addr
= addr
, last
= addr
+ len
- 1;
1200 if (vhost_vq_meta_fetch(vq
, addr
, len
, type
))
1204 node
= vhost_umem_interval_tree_iter_first(&umem
->umem_tree
,
1207 if (node
== NULL
|| node
->start
> addr
) {
1208 vhost_iotlb_miss(vq
, addr
, access
);
1210 } else if (!(node
->perm
& access
)) {
1211 /* Report the possible access violation by
1212 * request another translation from userspace.
1217 size
= node
->size
- addr
+ node
->start
;
1219 if (orig_addr
== addr
&& size
>= len
)
1220 vhost_vq_meta_update(vq
, node
, type
);
1229 int vq_iotlb_prefetch(struct vhost_virtqueue
*vq
)
1231 size_t s
= vhost_has_feature(vq
, VIRTIO_RING_F_EVENT_IDX
) ? 2 : 0;
1232 unsigned int num
= vq
->num
;
1237 return iotlb_access_ok(vq
, VHOST_ACCESS_RO
, (u64
)(uintptr_t)vq
->desc
,
1238 num
* sizeof(*vq
->desc
), VHOST_ADDR_DESC
) &&
1239 iotlb_access_ok(vq
, VHOST_ACCESS_RO
, (u64
)(uintptr_t)vq
->avail
,
1241 num
* sizeof(*vq
->avail
->ring
) + s
,
1242 VHOST_ADDR_AVAIL
) &&
1243 iotlb_access_ok(vq
, VHOST_ACCESS_WO
, (u64
)(uintptr_t)vq
->used
,
1245 num
* sizeof(*vq
->used
->ring
) + s
,
1248 EXPORT_SYMBOL_GPL(vq_iotlb_prefetch
);
1250 /* Can we log writes? */
1251 /* Caller should have device mutex but not vq mutex */
1252 bool vhost_log_access_ok(struct vhost_dev
*dev
)
1254 return memory_access_ok(dev
, dev
->umem
, 1);
1256 EXPORT_SYMBOL_GPL(vhost_log_access_ok
);
1258 /* Verify access for write logging. */
1259 /* Caller should have vq mutex and device mutex */
1260 static bool vq_log_access_ok(struct vhost_virtqueue
*vq
,
1261 void __user
*log_base
)
1263 size_t s
= vhost_has_feature(vq
, VIRTIO_RING_F_EVENT_IDX
) ? 2 : 0;
1265 return vq_memory_access_ok(log_base
, vq
->umem
,
1266 vhost_has_feature(vq
, VHOST_F_LOG_ALL
)) &&
1267 (!vq
->log_used
|| log_access_ok(log_base
, vq
->log_addr
,
1269 vq
->num
* sizeof *vq
->used
->ring
+ s
));
1272 /* Can we start vq? */
1273 /* Caller should have vq mutex and device mutex */
1274 bool vhost_vq_access_ok(struct vhost_virtqueue
*vq
)
1276 if (!vq_log_access_ok(vq
, vq
->log_base
))
1279 /* Access validation occurs at prefetch time with IOTLB */
1283 return vq_access_ok(vq
, vq
->num
, vq
->desc
, vq
->avail
, vq
->used
);
1285 EXPORT_SYMBOL_GPL(vhost_vq_access_ok
);
1287 static struct vhost_umem
*vhost_umem_alloc(void)
1289 struct vhost_umem
*umem
= kvzalloc(sizeof(*umem
), GFP_KERNEL
);
1294 umem
->umem_tree
= RB_ROOT_CACHED
;
1296 INIT_LIST_HEAD(&umem
->umem_list
);
1301 static long vhost_set_memory(struct vhost_dev
*d
, struct vhost_memory __user
*m
)
1303 struct vhost_memory mem
, *newmem
;
1304 struct vhost_memory_region
*region
;
1305 struct vhost_umem
*newumem
, *oldumem
;
1306 unsigned long size
= offsetof(struct vhost_memory
, regions
);
1309 if (copy_from_user(&mem
, m
, size
))
1313 if (mem
.nregions
> max_mem_regions
)
1315 newmem
= kvzalloc(struct_size(newmem
, regions
, mem
.nregions
),
1320 memcpy(newmem
, &mem
, size
);
1321 if (copy_from_user(newmem
->regions
, m
->regions
,
1322 mem
.nregions
* sizeof *m
->regions
)) {
1327 newumem
= vhost_umem_alloc();
1333 for (region
= newmem
->regions
;
1334 region
< newmem
->regions
+ mem
.nregions
;
1336 if (vhost_new_umem_range(newumem
,
1337 region
->guest_phys_addr
,
1338 region
->memory_size
,
1339 region
->guest_phys_addr
+
1340 region
->memory_size
- 1,
1341 region
->userspace_addr
,
1346 if (!memory_access_ok(d
, newumem
, 0))
1352 /* All memory accesses are done under some VQ mutex. */
1353 for (i
= 0; i
< d
->nvqs
; ++i
) {
1354 mutex_lock(&d
->vqs
[i
]->mutex
);
1355 d
->vqs
[i
]->umem
= newumem
;
1356 mutex_unlock(&d
->vqs
[i
]->mutex
);
1360 vhost_umem_clean(oldumem
);
1364 vhost_umem_clean(newumem
);
1369 long vhost_vring_ioctl(struct vhost_dev
*d
, unsigned int ioctl
, void __user
*argp
)
1371 struct file
*eventfp
, *filep
= NULL
;
1372 bool pollstart
= false, pollstop
= false;
1373 struct eventfd_ctx
*ctx
= NULL
;
1374 u32 __user
*idxp
= argp
;
1375 struct vhost_virtqueue
*vq
;
1376 struct vhost_vring_state s
;
1377 struct vhost_vring_file f
;
1378 struct vhost_vring_addr a
;
1382 r
= get_user(idx
, idxp
);
1388 idx
= array_index_nospec(idx
, d
->nvqs
);
1391 mutex_lock(&vq
->mutex
);
1394 case VHOST_SET_VRING_NUM
:
1395 /* Resizing ring with an active backend?
1396 * You don't want to do that. */
1397 if (vq
->private_data
) {
1401 if (copy_from_user(&s
, argp
, sizeof s
)) {
1405 if (!s
.num
|| s
.num
> 0xffff || (s
.num
& (s
.num
- 1))) {
1411 case VHOST_SET_VRING_BASE
:
1412 /* Moving base with an active backend?
1413 * You don't want to do that. */
1414 if (vq
->private_data
) {
1418 if (copy_from_user(&s
, argp
, sizeof s
)) {
1422 if (s
.num
> 0xffff) {
1426 vq
->last_avail_idx
= s
.num
;
1427 /* Forget the cached index value. */
1428 vq
->avail_idx
= vq
->last_avail_idx
;
1430 case VHOST_GET_VRING_BASE
:
1432 s
.num
= vq
->last_avail_idx
;
1433 if (copy_to_user(argp
, &s
, sizeof s
))
1436 case VHOST_SET_VRING_ADDR
:
1437 if (copy_from_user(&a
, argp
, sizeof a
)) {
1441 if (a
.flags
& ~(0x1 << VHOST_VRING_F_LOG
)) {
1445 /* For 32bit, verify that the top 32bits of the user
1446 data are set to zero. */
1447 if ((u64
)(unsigned long)a
.desc_user_addr
!= a
.desc_user_addr
||
1448 (u64
)(unsigned long)a
.used_user_addr
!= a
.used_user_addr
||
1449 (u64
)(unsigned long)a
.avail_user_addr
!= a
.avail_user_addr
) {
1454 /* Make sure it's safe to cast pointers to vring types. */
1455 BUILD_BUG_ON(__alignof__
*vq
->avail
> VRING_AVAIL_ALIGN_SIZE
);
1456 BUILD_BUG_ON(__alignof__
*vq
->used
> VRING_USED_ALIGN_SIZE
);
1457 if ((a
.avail_user_addr
& (VRING_AVAIL_ALIGN_SIZE
- 1)) ||
1458 (a
.used_user_addr
& (VRING_USED_ALIGN_SIZE
- 1)) ||
1459 (a
.log_guest_addr
& (VRING_USED_ALIGN_SIZE
- 1))) {
1464 /* We only verify access here if backend is configured.
1465 * If it is not, we don't as size might not have been setup.
1466 * We will verify when backend is configured. */
1467 if (vq
->private_data
) {
1468 if (!vq_access_ok(vq
, vq
->num
,
1469 (void __user
*)(unsigned long)a
.desc_user_addr
,
1470 (void __user
*)(unsigned long)a
.avail_user_addr
,
1471 (void __user
*)(unsigned long)a
.used_user_addr
)) {
1476 /* Also validate log access for used ring if enabled. */
1477 if ((a
.flags
& (0x1 << VHOST_VRING_F_LOG
)) &&
1478 !log_access_ok(vq
->log_base
, a
.log_guest_addr
,
1480 vq
->num
* sizeof *vq
->used
->ring
)) {
1486 vq
->log_used
= !!(a
.flags
& (0x1 << VHOST_VRING_F_LOG
));
1487 vq
->desc
= (void __user
*)(unsigned long)a
.desc_user_addr
;
1488 vq
->avail
= (void __user
*)(unsigned long)a
.avail_user_addr
;
1489 vq
->log_addr
= a
.log_guest_addr
;
1490 vq
->used
= (void __user
*)(unsigned long)a
.used_user_addr
;
1492 case VHOST_SET_VRING_KICK
:
1493 if (copy_from_user(&f
, argp
, sizeof f
)) {
1497 eventfp
= f
.fd
== -1 ? NULL
: eventfd_fget(f
.fd
);
1498 if (IS_ERR(eventfp
)) {
1499 r
= PTR_ERR(eventfp
);
1502 if (eventfp
!= vq
->kick
) {
1503 pollstop
= (filep
= vq
->kick
) != NULL
;
1504 pollstart
= (vq
->kick
= eventfp
) != NULL
;
1508 case VHOST_SET_VRING_CALL
:
1509 if (copy_from_user(&f
, argp
, sizeof f
)) {
1513 ctx
= f
.fd
== -1 ? NULL
: eventfd_ctx_fdget(f
.fd
);
1518 swap(ctx
, vq
->call_ctx
);
1520 case VHOST_SET_VRING_ERR
:
1521 if (copy_from_user(&f
, argp
, sizeof f
)) {
1525 ctx
= f
.fd
== -1 ? NULL
: eventfd_ctx_fdget(f
.fd
);
1530 swap(ctx
, vq
->error_ctx
);
1532 case VHOST_SET_VRING_ENDIAN
:
1533 r
= vhost_set_vring_endian(vq
, argp
);
1535 case VHOST_GET_VRING_ENDIAN
:
1536 r
= vhost_get_vring_endian(vq
, idx
, argp
);
1538 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT
:
1539 if (copy_from_user(&s
, argp
, sizeof(s
))) {
1543 vq
->busyloop_timeout
= s
.num
;
1545 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT
:
1547 s
.num
= vq
->busyloop_timeout
;
1548 if (copy_to_user(argp
, &s
, sizeof(s
)))
1555 if (pollstop
&& vq
->handle_kick
)
1556 vhost_poll_stop(&vq
->poll
);
1558 if (!IS_ERR_OR_NULL(ctx
))
1559 eventfd_ctx_put(ctx
);
1563 if (pollstart
&& vq
->handle_kick
)
1564 r
= vhost_poll_start(&vq
->poll
, vq
->kick
);
1566 mutex_unlock(&vq
->mutex
);
1568 if (pollstop
&& vq
->handle_kick
)
1569 vhost_poll_flush(&vq
->poll
);
1572 EXPORT_SYMBOL_GPL(vhost_vring_ioctl
);
1574 int vhost_init_device_iotlb(struct vhost_dev
*d
, bool enabled
)
1576 struct vhost_umem
*niotlb
, *oiotlb
;
1579 niotlb
= vhost_umem_alloc();
1586 for (i
= 0; i
< d
->nvqs
; ++i
) {
1587 struct vhost_virtqueue
*vq
= d
->vqs
[i
];
1589 mutex_lock(&vq
->mutex
);
1591 __vhost_vq_meta_reset(vq
);
1592 mutex_unlock(&vq
->mutex
);
1595 vhost_umem_clean(oiotlb
);
1599 EXPORT_SYMBOL_GPL(vhost_init_device_iotlb
);
1601 /* Caller must have device mutex */
1602 long vhost_dev_ioctl(struct vhost_dev
*d
, unsigned int ioctl
, void __user
*argp
)
1604 struct eventfd_ctx
*ctx
;
1609 /* If you are not the owner, you can become one */
1610 if (ioctl
== VHOST_SET_OWNER
) {
1611 r
= vhost_dev_set_owner(d
);
1615 /* You must be the owner to do anything else */
1616 r
= vhost_dev_check_owner(d
);
1621 case VHOST_SET_MEM_TABLE
:
1622 r
= vhost_set_memory(d
, argp
);
1624 case VHOST_SET_LOG_BASE
:
1625 if (copy_from_user(&p
, argp
, sizeof p
)) {
1629 if ((u64
)(unsigned long)p
!= p
) {
1633 for (i
= 0; i
< d
->nvqs
; ++i
) {
1634 struct vhost_virtqueue
*vq
;
1635 void __user
*base
= (void __user
*)(unsigned long)p
;
1637 mutex_lock(&vq
->mutex
);
1638 /* If ring is inactive, will check when it's enabled. */
1639 if (vq
->private_data
&& !vq_log_access_ok(vq
, base
))
1642 vq
->log_base
= base
;
1643 mutex_unlock(&vq
->mutex
);
1646 case VHOST_SET_LOG_FD
:
1647 r
= get_user(fd
, (int __user
*)argp
);
1650 ctx
= fd
== -1 ? NULL
: eventfd_ctx_fdget(fd
);
1655 swap(ctx
, d
->log_ctx
);
1656 for (i
= 0; i
< d
->nvqs
; ++i
) {
1657 mutex_lock(&d
->vqs
[i
]->mutex
);
1658 d
->vqs
[i
]->log_ctx
= d
->log_ctx
;
1659 mutex_unlock(&d
->vqs
[i
]->mutex
);
1662 eventfd_ctx_put(ctx
);
1671 EXPORT_SYMBOL_GPL(vhost_dev_ioctl
);
1673 /* TODO: This is really inefficient. We need something like get_user()
1674 * (instruction directly accesses the data, with an exception table entry
1675 * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1677 static int set_bit_to_user(int nr
, void __user
*addr
)
1679 unsigned long log
= (unsigned long)addr
;
1682 int bit
= nr
+ (log
% PAGE_SIZE
) * 8;
1685 r
= get_user_pages_fast(log
, 1, 1, &page
);
1689 base
= kmap_atomic(page
);
1691 kunmap_atomic(base
);
1692 set_page_dirty_lock(page
);
1697 static int log_write(void __user
*log_base
,
1698 u64 write_address
, u64 write_length
)
1700 u64 write_page
= write_address
/ VHOST_PAGE_SIZE
;
1705 write_length
+= write_address
% VHOST_PAGE_SIZE
;
1707 u64 base
= (u64
)(unsigned long)log_base
;
1708 u64 log
= base
+ write_page
/ 8;
1709 int bit
= write_page
% 8;
1710 if ((u64
)(unsigned long)log
!= log
)
1712 r
= set_bit_to_user(bit
, (void __user
*)(unsigned long)log
);
1715 if (write_length
<= VHOST_PAGE_SIZE
)
1717 write_length
-= VHOST_PAGE_SIZE
;
1723 int vhost_log_write(struct vhost_virtqueue
*vq
, struct vhost_log
*log
,
1724 unsigned int log_num
, u64 len
)
1728 /* Make sure data written is seen before log. */
1730 for (i
= 0; i
< log_num
; ++i
) {
1731 u64 l
= min(log
[i
].len
, len
);
1732 r
= log_write(vq
->log_base
, log
[i
].addr
, l
);
1738 eventfd_signal(vq
->log_ctx
, 1);
1742 /* Length written exceeds what we have stored. This is a bug. */
1746 EXPORT_SYMBOL_GPL(vhost_log_write
);
1748 static int vhost_update_used_flags(struct vhost_virtqueue
*vq
)
1751 if (vhost_put_user(vq
, cpu_to_vhost16(vq
, vq
->used_flags
),
1752 &vq
->used
->flags
) < 0)
1754 if (unlikely(vq
->log_used
)) {
1755 /* Make sure the flag is seen before log. */
1757 /* Log used flag write. */
1758 used
= &vq
->used
->flags
;
1759 log_write(vq
->log_base
, vq
->log_addr
+
1760 (used
- (void __user
*)vq
->used
),
1761 sizeof vq
->used
->flags
);
1763 eventfd_signal(vq
->log_ctx
, 1);
1768 static int vhost_update_avail_event(struct vhost_virtqueue
*vq
, u16 avail_event
)
1770 if (vhost_put_user(vq
, cpu_to_vhost16(vq
, vq
->avail_idx
),
1771 vhost_avail_event(vq
)))
1773 if (unlikely(vq
->log_used
)) {
1775 /* Make sure the event is seen before log. */
1777 /* Log avail event write */
1778 used
= vhost_avail_event(vq
);
1779 log_write(vq
->log_base
, vq
->log_addr
+
1780 (used
- (void __user
*)vq
->used
),
1781 sizeof *vhost_avail_event(vq
));
1783 eventfd_signal(vq
->log_ctx
, 1);
1788 int vhost_vq_init_access(struct vhost_virtqueue
*vq
)
1790 __virtio16 last_used_idx
;
1792 bool is_le
= vq
->is_le
;
1794 if (!vq
->private_data
)
1797 vhost_init_is_le(vq
);
1799 r
= vhost_update_used_flags(vq
);
1802 vq
->signalled_used_valid
= false;
1804 !access_ok(VERIFY_READ
, &vq
->used
->idx
, sizeof vq
->used
->idx
)) {
1808 r
= vhost_get_used(vq
, last_used_idx
, &vq
->used
->idx
);
1810 vq_err(vq
, "Can't access used idx at %p\n",
1814 vq
->last_used_idx
= vhost16_to_cpu(vq
, last_used_idx
);
1821 EXPORT_SYMBOL_GPL(vhost_vq_init_access
);
1823 static int translate_desc(struct vhost_virtqueue
*vq
, u64 addr
, u32 len
,
1824 struct iovec iov
[], int iov_size
, int access
)
1826 const struct vhost_umem_node
*node
;
1827 struct vhost_dev
*dev
= vq
->dev
;
1828 struct vhost_umem
*umem
= dev
->iotlb
? dev
->iotlb
: dev
->umem
;
1833 while ((u64
)len
> s
) {
1835 if (unlikely(ret
>= iov_size
)) {
1840 node
= vhost_umem_interval_tree_iter_first(&umem
->umem_tree
,
1841 addr
, addr
+ len
- 1);
1842 if (node
== NULL
|| node
->start
> addr
) {
1843 if (umem
!= dev
->iotlb
) {
1849 } else if (!(node
->perm
& access
)) {
1855 size
= node
->size
- addr
+ node
->start
;
1856 _iov
->iov_len
= min((u64
)len
- s
, size
);
1857 _iov
->iov_base
= (void __user
*)(unsigned long)
1858 (node
->userspace_addr
+ addr
- node
->start
);
1865 vhost_iotlb_miss(vq
, addr
, access
);
1869 /* Each buffer in the virtqueues is actually a chain of descriptors. This
1870 * function returns the next descriptor in the chain,
1871 * or -1U if we're at the end. */
1872 static unsigned next_desc(struct vhost_virtqueue
*vq
, struct vring_desc
*desc
)
1876 /* If this descriptor says it doesn't chain, we're done. */
1877 if (!(desc
->flags
& cpu_to_vhost16(vq
, VRING_DESC_F_NEXT
)))
1880 /* Check they're not leading us off end of descriptors. */
1881 next
= vhost16_to_cpu(vq
, READ_ONCE(desc
->next
));
1885 static int get_indirect(struct vhost_virtqueue
*vq
,
1886 struct iovec iov
[], unsigned int iov_size
,
1887 unsigned int *out_num
, unsigned int *in_num
,
1888 struct vhost_log
*log
, unsigned int *log_num
,
1889 struct vring_desc
*indirect
)
1891 struct vring_desc desc
;
1892 unsigned int i
= 0, count
, found
= 0;
1893 u32 len
= vhost32_to_cpu(vq
, indirect
->len
);
1894 struct iov_iter from
;
1898 if (unlikely(len
% sizeof desc
)) {
1899 vq_err(vq
, "Invalid length in indirect descriptor: "
1900 "len 0x%llx not multiple of 0x%zx\n",
1901 (unsigned long long)len
,
1906 ret
= translate_desc(vq
, vhost64_to_cpu(vq
, indirect
->addr
), len
, vq
->indirect
,
1907 UIO_MAXIOV
, VHOST_ACCESS_RO
);
1908 if (unlikely(ret
< 0)) {
1910 vq_err(vq
, "Translation failure %d in indirect.\n", ret
);
1913 iov_iter_init(&from
, READ
, vq
->indirect
, ret
, len
);
1915 /* We will use the result as an address to read from, so most
1916 * architectures only need a compiler barrier here. */
1917 read_barrier_depends();
1919 count
= len
/ sizeof desc
;
1920 /* Buffers are chained via a 16 bit next field, so
1921 * we can have at most 2^16 of these. */
1922 if (unlikely(count
> USHRT_MAX
+ 1)) {
1923 vq_err(vq
, "Indirect buffer length too big: %d\n",
1929 unsigned iov_count
= *in_num
+ *out_num
;
1930 if (unlikely(++found
> count
)) {
1931 vq_err(vq
, "Loop detected: last one at %u "
1932 "indirect size %u\n",
1936 if (unlikely(!copy_from_iter_full(&desc
, sizeof(desc
), &from
))) {
1937 vq_err(vq
, "Failed indirect descriptor: idx %d, %zx\n",
1938 i
, (size_t)vhost64_to_cpu(vq
, indirect
->addr
) + i
* sizeof desc
);
1941 if (unlikely(desc
.flags
& cpu_to_vhost16(vq
, VRING_DESC_F_INDIRECT
))) {
1942 vq_err(vq
, "Nested indirect descriptor: idx %d, %zx\n",
1943 i
, (size_t)vhost64_to_cpu(vq
, indirect
->addr
) + i
* sizeof desc
);
1947 if (desc
.flags
& cpu_to_vhost16(vq
, VRING_DESC_F_WRITE
))
1948 access
= VHOST_ACCESS_WO
;
1950 access
= VHOST_ACCESS_RO
;
1952 ret
= translate_desc(vq
, vhost64_to_cpu(vq
, desc
.addr
),
1953 vhost32_to_cpu(vq
, desc
.len
), iov
+ iov_count
,
1954 iov_size
- iov_count
, access
);
1955 if (unlikely(ret
< 0)) {
1957 vq_err(vq
, "Translation failure %d indirect idx %d\n",
1961 /* If this is an input descriptor, increment that count. */
1962 if (access
== VHOST_ACCESS_WO
) {
1964 if (unlikely(log
)) {
1965 log
[*log_num
].addr
= vhost64_to_cpu(vq
, desc
.addr
);
1966 log
[*log_num
].len
= vhost32_to_cpu(vq
, desc
.len
);
1970 /* If it's an output descriptor, they're all supposed
1971 * to come before any input descriptors. */
1972 if (unlikely(*in_num
)) {
1973 vq_err(vq
, "Indirect descriptor "
1974 "has out after in: idx %d\n", i
);
1979 } while ((i
= next_desc(vq
, &desc
)) != -1);
1983 /* This looks in the virtqueue and for the first available buffer, and converts
1984 * it to an iovec for convenient access. Since descriptors consist of some
1985 * number of output then some number of input descriptors, it's actually two
1986 * iovecs, but we pack them into one and note how many of each there were.
1988 * This function returns the descriptor number found, or vq->num (which is
1989 * never a valid descriptor number) if none was found. A negative code is
1990 * returned on error. */
1991 int vhost_get_vq_desc(struct vhost_virtqueue
*vq
,
1992 struct iovec iov
[], unsigned int iov_size
,
1993 unsigned int *out_num
, unsigned int *in_num
,
1994 struct vhost_log
*log
, unsigned int *log_num
)
1996 struct vring_desc desc
;
1997 unsigned int i
, head
, found
= 0;
1999 __virtio16 avail_idx
;
2000 __virtio16 ring_head
;
2003 /* Check it isn't doing very strange things with descriptor numbers. */
2004 last_avail_idx
= vq
->last_avail_idx
;
2006 if (vq
->avail_idx
== vq
->last_avail_idx
) {
2007 if (unlikely(vhost_get_avail(vq
, avail_idx
, &vq
->avail
->idx
))) {
2008 vq_err(vq
, "Failed to access avail idx at %p\n",
2012 vq
->avail_idx
= vhost16_to_cpu(vq
, avail_idx
);
2014 if (unlikely((u16
)(vq
->avail_idx
- last_avail_idx
) > vq
->num
)) {
2015 vq_err(vq
, "Guest moved used index from %u to %u",
2016 last_avail_idx
, vq
->avail_idx
);
2020 /* If there's nothing new since last we looked, return
2023 if (vq
->avail_idx
== last_avail_idx
)
2026 /* Only get avail ring entries after they have been
2032 /* Grab the next descriptor number they're advertising, and increment
2033 * the index we've seen. */
2034 if (unlikely(vhost_get_avail(vq
, ring_head
,
2035 &vq
->avail
->ring
[last_avail_idx
& (vq
->num
- 1)]))) {
2036 vq_err(vq
, "Failed to read head: idx %d address %p\n",
2038 &vq
->avail
->ring
[last_avail_idx
% vq
->num
]);
2042 head
= vhost16_to_cpu(vq
, ring_head
);
2044 /* If their number is silly, that's an error. */
2045 if (unlikely(head
>= vq
->num
)) {
2046 vq_err(vq
, "Guest says index %u > %u is available",
2051 /* When we start there are none of either input nor output. */
2052 *out_num
= *in_num
= 0;
2058 unsigned iov_count
= *in_num
+ *out_num
;
2059 if (unlikely(i
>= vq
->num
)) {
2060 vq_err(vq
, "Desc index is %u > %u, head = %u",
2064 if (unlikely(++found
> vq
->num
)) {
2065 vq_err(vq
, "Loop detected: last one at %u "
2066 "vq size %u head %u\n",
2070 ret
= vhost_copy_from_user(vq
, &desc
, vq
->desc
+ i
,
2072 if (unlikely(ret
)) {
2073 vq_err(vq
, "Failed to get descriptor: idx %d addr %p\n",
2077 if (desc
.flags
& cpu_to_vhost16(vq
, VRING_DESC_F_INDIRECT
)) {
2078 ret
= get_indirect(vq
, iov
, iov_size
,
2080 log
, log_num
, &desc
);
2081 if (unlikely(ret
< 0)) {
2083 vq_err(vq
, "Failure detected "
2084 "in indirect descriptor at idx %d\n", i
);
2090 if (desc
.flags
& cpu_to_vhost16(vq
, VRING_DESC_F_WRITE
))
2091 access
= VHOST_ACCESS_WO
;
2093 access
= VHOST_ACCESS_RO
;
2094 ret
= translate_desc(vq
, vhost64_to_cpu(vq
, desc
.addr
),
2095 vhost32_to_cpu(vq
, desc
.len
), iov
+ iov_count
,
2096 iov_size
- iov_count
, access
);
2097 if (unlikely(ret
< 0)) {
2099 vq_err(vq
, "Translation failure %d descriptor idx %d\n",
2103 if (access
== VHOST_ACCESS_WO
) {
2104 /* If this is an input descriptor,
2105 * increment that count. */
2107 if (unlikely(log
)) {
2108 log
[*log_num
].addr
= vhost64_to_cpu(vq
, desc
.addr
);
2109 log
[*log_num
].len
= vhost32_to_cpu(vq
, desc
.len
);
2113 /* If it's an output descriptor, they're all supposed
2114 * to come before any input descriptors. */
2115 if (unlikely(*in_num
)) {
2116 vq_err(vq
, "Descriptor has out after in: "
2122 } while ((i
= next_desc(vq
, &desc
)) != -1);
2124 /* On success, increment avail index. */
2125 vq
->last_avail_idx
++;
2127 /* Assume notifications from guest are disabled at this point,
2128 * if they aren't we would need to update avail_event index. */
2129 BUG_ON(!(vq
->used_flags
& VRING_USED_F_NO_NOTIFY
));
2132 EXPORT_SYMBOL_GPL(vhost_get_vq_desc
);
2134 /* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
2135 void vhost_discard_vq_desc(struct vhost_virtqueue
*vq
, int n
)
2137 vq
->last_avail_idx
-= n
;
2139 EXPORT_SYMBOL_GPL(vhost_discard_vq_desc
);
2141 /* After we've used one of their buffers, we tell them about it. We'll then
2142 * want to notify the guest, using eventfd. */
2143 int vhost_add_used(struct vhost_virtqueue
*vq
, unsigned int head
, int len
)
2145 struct vring_used_elem heads
= {
2146 cpu_to_vhost32(vq
, head
),
2147 cpu_to_vhost32(vq
, len
)
2150 return vhost_add_used_n(vq
, &heads
, 1);
2152 EXPORT_SYMBOL_GPL(vhost_add_used
);
2154 static int __vhost_add_used_n(struct vhost_virtqueue
*vq
,
2155 struct vring_used_elem
*heads
,
2158 struct vring_used_elem __user
*used
;
2162 start
= vq
->last_used_idx
& (vq
->num
- 1);
2163 used
= vq
->used
->ring
+ start
;
2165 if (vhost_put_user(vq
, heads
[0].id
, &used
->id
)) {
2166 vq_err(vq
, "Failed to write used id");
2169 if (vhost_put_user(vq
, heads
[0].len
, &used
->len
)) {
2170 vq_err(vq
, "Failed to write used len");
2173 } else if (vhost_copy_to_user(vq
, used
, heads
, count
* sizeof *used
)) {
2174 vq_err(vq
, "Failed to write used");
2177 if (unlikely(vq
->log_used
)) {
2178 /* Make sure data is seen before log. */
2180 /* Log used ring entry write. */
2181 log_write(vq
->log_base
,
2183 ((void __user
*)used
- (void __user
*)vq
->used
),
2184 count
* sizeof *used
);
2186 old
= vq
->last_used_idx
;
2187 new = (vq
->last_used_idx
+= count
);
2188 /* If the driver never bothers to signal in a very long while,
2189 * used index might wrap around. If that happens, invalidate
2190 * signalled_used index we stored. TODO: make sure driver
2191 * signals at least once in 2^16 and remove this. */
2192 if (unlikely((u16
)(new - vq
->signalled_used
) < (u16
)(new - old
)))
2193 vq
->signalled_used_valid
= false;
2197 /* After we've used one of their buffers, we tell them about it. We'll then
2198 * want to notify the guest, using eventfd. */
2199 int vhost_add_used_n(struct vhost_virtqueue
*vq
, struct vring_used_elem
*heads
,
2204 start
= vq
->last_used_idx
& (vq
->num
- 1);
2205 n
= vq
->num
- start
;
2207 r
= __vhost_add_used_n(vq
, heads
, n
);
2213 r
= __vhost_add_used_n(vq
, heads
, count
);
2215 /* Make sure buffer is written before we update index. */
2217 if (vhost_put_user(vq
, cpu_to_vhost16(vq
, vq
->last_used_idx
),
2219 vq_err(vq
, "Failed to increment used idx");
2222 if (unlikely(vq
->log_used
)) {
2223 /* Log used index update. */
2224 log_write(vq
->log_base
,
2225 vq
->log_addr
+ offsetof(struct vring_used
, idx
),
2226 sizeof vq
->used
->idx
);
2228 eventfd_signal(vq
->log_ctx
, 1);
2232 EXPORT_SYMBOL_GPL(vhost_add_used_n
);
2234 static bool vhost_notify(struct vhost_dev
*dev
, struct vhost_virtqueue
*vq
)
2239 /* Flush out used index updates. This is paired
2240 * with the barrier that the Guest executes when enabling
2244 if (vhost_has_feature(vq
, VIRTIO_F_NOTIFY_ON_EMPTY
) &&
2245 unlikely(vq
->avail_idx
== vq
->last_avail_idx
))
2248 if (!vhost_has_feature(vq
, VIRTIO_RING_F_EVENT_IDX
)) {
2250 if (vhost_get_avail(vq
, flags
, &vq
->avail
->flags
)) {
2251 vq_err(vq
, "Failed to get flags");
2254 return !(flags
& cpu_to_vhost16(vq
, VRING_AVAIL_F_NO_INTERRUPT
));
2256 old
= vq
->signalled_used
;
2257 v
= vq
->signalled_used_valid
;
2258 new = vq
->signalled_used
= vq
->last_used_idx
;
2259 vq
->signalled_used_valid
= true;
2264 if (vhost_get_avail(vq
, event
, vhost_used_event(vq
))) {
2265 vq_err(vq
, "Failed to get used event idx");
2268 return vring_need_event(vhost16_to_cpu(vq
, event
), new, old
);
2271 /* This actually signals the guest, using eventfd. */
2272 void vhost_signal(struct vhost_dev
*dev
, struct vhost_virtqueue
*vq
)
2274 /* Signal the Guest tell them we used something up. */
2275 if (vq
->call_ctx
&& vhost_notify(dev
, vq
))
2276 eventfd_signal(vq
->call_ctx
, 1);
2278 EXPORT_SYMBOL_GPL(vhost_signal
);
2280 /* And here's the combo meal deal. Supersize me! */
2281 void vhost_add_used_and_signal(struct vhost_dev
*dev
,
2282 struct vhost_virtqueue
*vq
,
2283 unsigned int head
, int len
)
2285 vhost_add_used(vq
, head
, len
);
2286 vhost_signal(dev
, vq
);
2288 EXPORT_SYMBOL_GPL(vhost_add_used_and_signal
);
2290 /* multi-buffer version of vhost_add_used_and_signal */
2291 void vhost_add_used_and_signal_n(struct vhost_dev
*dev
,
2292 struct vhost_virtqueue
*vq
,
2293 struct vring_used_elem
*heads
, unsigned count
)
2295 vhost_add_used_n(vq
, heads
, count
);
2296 vhost_signal(dev
, vq
);
2298 EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n
);
2300 /* return true if we're sure that avaiable ring is empty */
2301 bool vhost_vq_avail_empty(struct vhost_dev
*dev
, struct vhost_virtqueue
*vq
)
2303 __virtio16 avail_idx
;
2306 if (vq
->avail_idx
!= vq
->last_avail_idx
)
2309 r
= vhost_get_avail(vq
, avail_idx
, &vq
->avail
->idx
);
2312 vq
->avail_idx
= vhost16_to_cpu(vq
, avail_idx
);
2314 return vq
->avail_idx
== vq
->last_avail_idx
;
2316 EXPORT_SYMBOL_GPL(vhost_vq_avail_empty
);
2318 /* OK, now we need to know about added descriptors. */
2319 bool vhost_enable_notify(struct vhost_dev
*dev
, struct vhost_virtqueue
*vq
)
2321 __virtio16 avail_idx
;
2324 if (!(vq
->used_flags
& VRING_USED_F_NO_NOTIFY
))
2326 vq
->used_flags
&= ~VRING_USED_F_NO_NOTIFY
;
2327 if (!vhost_has_feature(vq
, VIRTIO_RING_F_EVENT_IDX
)) {
2328 r
= vhost_update_used_flags(vq
);
2330 vq_err(vq
, "Failed to enable notification at %p: %d\n",
2331 &vq
->used
->flags
, r
);
2335 r
= vhost_update_avail_event(vq
, vq
->avail_idx
);
2337 vq_err(vq
, "Failed to update avail event index at %p: %d\n",
2338 vhost_avail_event(vq
), r
);
2342 /* They could have slipped one in as we were doing that: make
2343 * sure it's written, then check again. */
2345 r
= vhost_get_avail(vq
, avail_idx
, &vq
->avail
->idx
);
2347 vq_err(vq
, "Failed to check avail idx at %p: %d\n",
2348 &vq
->avail
->idx
, r
);
2352 return vhost16_to_cpu(vq
, avail_idx
) != vq
->avail_idx
;
2354 EXPORT_SYMBOL_GPL(vhost_enable_notify
);
2356 /* We don't need to be notified again. */
2357 void vhost_disable_notify(struct vhost_dev
*dev
, struct vhost_virtqueue
*vq
)
2361 if (vq
->used_flags
& VRING_USED_F_NO_NOTIFY
)
2363 vq
->used_flags
|= VRING_USED_F_NO_NOTIFY
;
2364 if (!vhost_has_feature(vq
, VIRTIO_RING_F_EVENT_IDX
)) {
2365 r
= vhost_update_used_flags(vq
);
2367 vq_err(vq
, "Failed to enable notification at %p: %d\n",
2368 &vq
->used
->flags
, r
);
2371 EXPORT_SYMBOL_GPL(vhost_disable_notify
);
2373 /* Create a new message. */
2374 struct vhost_msg_node
*vhost_new_msg(struct vhost_virtqueue
*vq
, int type
)
2376 struct vhost_msg_node
*node
= kmalloc(sizeof *node
, GFP_KERNEL
);
2380 /* Make sure all padding within the structure is initialized. */
2381 memset(&node
->msg
, 0, sizeof node
->msg
);
2383 node
->msg
.type
= type
;
2386 EXPORT_SYMBOL_GPL(vhost_new_msg
);
2388 void vhost_enqueue_msg(struct vhost_dev
*dev
, struct list_head
*head
,
2389 struct vhost_msg_node
*node
)
2391 spin_lock(&dev
->iotlb_lock
);
2392 list_add_tail(&node
->node
, head
);
2393 spin_unlock(&dev
->iotlb_lock
);
2395 wake_up_interruptible_poll(&dev
->wait
, EPOLLIN
| EPOLLRDNORM
);
2397 EXPORT_SYMBOL_GPL(vhost_enqueue_msg
);
2399 struct vhost_msg_node
*vhost_dequeue_msg(struct vhost_dev
*dev
,
2400 struct list_head
*head
)
2402 struct vhost_msg_node
*node
= NULL
;
2404 spin_lock(&dev
->iotlb_lock
);
2405 if (!list_empty(head
)) {
2406 node
= list_first_entry(head
, struct vhost_msg_node
,
2408 list_del(&node
->node
);
2410 spin_unlock(&dev
->iotlb_lock
);
2414 EXPORT_SYMBOL_GPL(vhost_dequeue_msg
);
2417 static int __init
vhost_init(void)
2422 static void __exit
vhost_exit(void)
2426 module_init(vhost_init
);
2427 module_exit(vhost_exit
);
2429 MODULE_VERSION("0.0.1");
2430 MODULE_LICENSE("GPL v2");
2431 MODULE_AUTHOR("Michael S. Tsirkin");
2432 MODULE_DESCRIPTION("Host kernel accelerator for virtio");