• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright (C) 2009 Red Hat, Inc.
2  * Copyright (C) 2006 Rusty Russell IBM Corporation
3  *
4  * Author: Michael S. Tsirkin <mst@redhat.com>
5  *
6  * Inspiration, some code, and most witty comments come from
7  * Documentation/virtual/lguest/lguest.c, by Rusty Russell
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2.
10  *
11  * Generic code for virtio server in host kernel.
12  */
13 
14 #include <linux/eventfd.h>
15 #include <linux/vhost.h>
16 #include <linux/uio.h>
17 #include <linux/mm.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>
34 
35 #include "vhost.h"
36 
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)");
45 
46 enum {
47 	VHOST_MEMORY_F_LOG = 0x1,
48 };
49 
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])
52 
53 INTERVAL_TREE_DEFINE(struct vhost_umem_node,
54 		     rb, __u64, __subtree_last,
55 		     START, LAST, static inline, vhost_umem_interval_tree);
56 
57 #ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
vhost_disable_cross_endian(struct vhost_virtqueue * vq)58 static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
59 {
60 	vq->user_be = !virtio_legacy_is_little_endian();
61 }
62 
vhost_enable_cross_endian_big(struct vhost_virtqueue * vq)63 static void vhost_enable_cross_endian_big(struct vhost_virtqueue *vq)
64 {
65 	vq->user_be = true;
66 }
67 
vhost_enable_cross_endian_little(struct vhost_virtqueue * vq)68 static void vhost_enable_cross_endian_little(struct vhost_virtqueue *vq)
69 {
70 	vq->user_be = false;
71 }
72 
vhost_set_vring_endian(struct vhost_virtqueue * vq,int __user * argp)73 static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
74 {
75 	struct vhost_vring_state s;
76 
77 	if (vq->private_data)
78 		return -EBUSY;
79 
80 	if (copy_from_user(&s, argp, sizeof(s)))
81 		return -EFAULT;
82 
83 	if (s.num != VHOST_VRING_LITTLE_ENDIAN &&
84 	    s.num != VHOST_VRING_BIG_ENDIAN)
85 		return -EINVAL;
86 
87 	if (s.num == VHOST_VRING_BIG_ENDIAN)
88 		vhost_enable_cross_endian_big(vq);
89 	else
90 		vhost_enable_cross_endian_little(vq);
91 
92 	return 0;
93 }
94 
vhost_get_vring_endian(struct vhost_virtqueue * vq,u32 idx,int __user * argp)95 static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
96 				   int __user *argp)
97 {
98 	struct vhost_vring_state s = {
99 		.index = idx,
100 		.num = vq->user_be
101 	};
102 
103 	if (copy_to_user(argp, &s, sizeof(s)))
104 		return -EFAULT;
105 
106 	return 0;
107 }
108 
vhost_init_is_le(struct vhost_virtqueue * vq)109 static void vhost_init_is_le(struct vhost_virtqueue *vq)
110 {
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.
115 	 */
116 	vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1) || !vq->user_be;
117 }
118 #else
vhost_disable_cross_endian(struct vhost_virtqueue * vq)119 static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
120 {
121 }
122 
vhost_set_vring_endian(struct vhost_virtqueue * vq,int __user * argp)123 static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
124 {
125 	return -ENOIOCTLCMD;
126 }
127 
vhost_get_vring_endian(struct vhost_virtqueue * vq,u32 idx,int __user * argp)128 static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
129 				   int __user *argp)
130 {
131 	return -ENOIOCTLCMD;
132 }
133 
vhost_init_is_le(struct vhost_virtqueue * vq)134 static void vhost_init_is_le(struct vhost_virtqueue *vq)
135 {
136 	vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1)
137 		|| virtio_legacy_is_little_endian();
138 }
139 #endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */
140 
vhost_reset_is_le(struct vhost_virtqueue * vq)141 static void vhost_reset_is_le(struct vhost_virtqueue *vq)
142 {
143 	vhost_init_is_le(vq);
144 }
145 
146 struct vhost_flush_struct {
147 	struct vhost_work work;
148 	struct completion wait_event;
149 };
150 
vhost_flush_work(struct vhost_work * work)151 static void vhost_flush_work(struct vhost_work *work)
152 {
153 	struct vhost_flush_struct *s;
154 
155 	s = container_of(work, struct vhost_flush_struct, work);
156 	complete(&s->wait_event);
157 }
158 
vhost_poll_func(struct file * file,wait_queue_head_t * wqh,poll_table * pt)159 static void vhost_poll_func(struct file *file, wait_queue_head_t *wqh,
160 			    poll_table *pt)
161 {
162 	struct vhost_poll *poll;
163 
164 	poll = container_of(pt, struct vhost_poll, table);
165 	poll->wqh = wqh;
166 	add_wait_queue(wqh, &poll->wait);
167 }
168 
vhost_poll_wakeup(wait_queue_entry_t * wait,unsigned mode,int sync,void * key)169 static int vhost_poll_wakeup(wait_queue_entry_t *wait, unsigned mode, int sync,
170 			     void *key)
171 {
172 	struct vhost_poll *poll = container_of(wait, struct vhost_poll, wait);
173 
174 	if (!((unsigned long)key & poll->mask))
175 		return 0;
176 
177 	vhost_poll_queue(poll);
178 	return 0;
179 }
180 
vhost_work_init(struct vhost_work * work,vhost_work_fn_t fn)181 void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn)
182 {
183 	clear_bit(VHOST_WORK_QUEUED, &work->flags);
184 	work->fn = fn;
185 	init_waitqueue_head(&work->done);
186 }
187 EXPORT_SYMBOL_GPL(vhost_work_init);
188 
189 /* Init poll structure */
vhost_poll_init(struct vhost_poll * poll,vhost_work_fn_t fn,unsigned long mask,struct vhost_dev * dev)190 void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
191 		     unsigned long mask, struct vhost_dev *dev)
192 {
193 	init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup);
194 	init_poll_funcptr(&poll->table, vhost_poll_func);
195 	poll->mask = mask;
196 	poll->dev = dev;
197 	poll->wqh = NULL;
198 
199 	vhost_work_init(&poll->work, fn);
200 }
201 EXPORT_SYMBOL_GPL(vhost_poll_init);
202 
203 /* Start polling a file. We add ourselves to file's wait queue. The caller must
204  * keep a reference to a file until after vhost_poll_stop is called. */
vhost_poll_start(struct vhost_poll * poll,struct file * file)205 int vhost_poll_start(struct vhost_poll *poll, struct file *file)
206 {
207 	unsigned long mask;
208 	int ret = 0;
209 
210 	if (poll->wqh)
211 		return 0;
212 
213 	mask = file->f_op->poll(file, &poll->table);
214 	if (mask)
215 		vhost_poll_wakeup(&poll->wait, 0, 0, (void *)mask);
216 	if (mask & POLLERR) {
217 		vhost_poll_stop(poll);
218 		ret = -EINVAL;
219 	}
220 
221 	return ret;
222 }
223 EXPORT_SYMBOL_GPL(vhost_poll_start);
224 
225 /* Stop polling a file. After this function returns, it becomes safe to drop the
226  * file reference. You must also flush afterwards. */
vhost_poll_stop(struct vhost_poll * poll)227 void vhost_poll_stop(struct vhost_poll *poll)
228 {
229 	if (poll->wqh) {
230 		remove_wait_queue(poll->wqh, &poll->wait);
231 		poll->wqh = NULL;
232 	}
233 }
234 EXPORT_SYMBOL_GPL(vhost_poll_stop);
235 
vhost_work_flush(struct vhost_dev * dev,struct vhost_work * work)236 void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work)
237 {
238 	struct vhost_flush_struct flush;
239 
240 	if (dev->worker) {
241 		init_completion(&flush.wait_event);
242 		vhost_work_init(&flush.work, vhost_flush_work);
243 
244 		vhost_work_queue(dev, &flush.work);
245 		wait_for_completion(&flush.wait_event);
246 	}
247 }
248 EXPORT_SYMBOL_GPL(vhost_work_flush);
249 
250 /* Flush any work that has been scheduled. When calling this, don't hold any
251  * locks that are also used by the callback. */
vhost_poll_flush(struct vhost_poll * poll)252 void vhost_poll_flush(struct vhost_poll *poll)
253 {
254 	vhost_work_flush(poll->dev, &poll->work);
255 }
256 EXPORT_SYMBOL_GPL(vhost_poll_flush);
257 
vhost_work_queue(struct vhost_dev * dev,struct vhost_work * work)258 void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work)
259 {
260 	if (!dev->worker)
261 		return;
262 
263 	if (!test_and_set_bit(VHOST_WORK_QUEUED, &work->flags)) {
264 		/* We can only add the work to the list after we're
265 		 * sure it was not in the list.
266 		 * test_and_set_bit() implies a memory barrier.
267 		 */
268 		llist_add(&work->node, &dev->work_list);
269 		wake_up_process(dev->worker);
270 	}
271 }
272 EXPORT_SYMBOL_GPL(vhost_work_queue);
273 
274 /* A lockless hint for busy polling code to exit the loop */
vhost_has_work(struct vhost_dev * dev)275 bool vhost_has_work(struct vhost_dev *dev)
276 {
277 	return !llist_empty(&dev->work_list);
278 }
279 EXPORT_SYMBOL_GPL(vhost_has_work);
280 
vhost_poll_queue(struct vhost_poll * poll)281 void vhost_poll_queue(struct vhost_poll *poll)
282 {
283 	vhost_work_queue(poll->dev, &poll->work);
284 }
285 EXPORT_SYMBOL_GPL(vhost_poll_queue);
286 
__vhost_vq_meta_reset(struct vhost_virtqueue * vq)287 static void __vhost_vq_meta_reset(struct vhost_virtqueue *vq)
288 {
289 	int j;
290 
291 	for (j = 0; j < VHOST_NUM_ADDRS; j++)
292 		vq->meta_iotlb[j] = NULL;
293 }
294 
vhost_vq_meta_reset(struct vhost_dev * d)295 static void vhost_vq_meta_reset(struct vhost_dev *d)
296 {
297 	int i;
298 
299 	for (i = 0; i < d->nvqs; ++i)
300 		__vhost_vq_meta_reset(d->vqs[i]);
301 }
302 
vhost_vq_reset(struct vhost_dev * dev,struct vhost_virtqueue * vq)303 static void vhost_vq_reset(struct vhost_dev *dev,
304 			   struct vhost_virtqueue *vq)
305 {
306 	vq->num = 1;
307 	vq->desc = NULL;
308 	vq->avail = NULL;
309 	vq->used = NULL;
310 	vq->last_avail_idx = 0;
311 	vq->avail_idx = 0;
312 	vq->last_used_idx = 0;
313 	vq->signalled_used = 0;
314 	vq->signalled_used_valid = false;
315 	vq->used_flags = 0;
316 	vq->log_used = false;
317 	vq->log_addr = -1ull;
318 	vq->private_data = NULL;
319 	vq->acked_features = 0;
320 	vq->log_base = NULL;
321 	vq->error_ctx = NULL;
322 	vq->error = NULL;
323 	vq->kick = NULL;
324 	vq->call_ctx = NULL;
325 	vq->call = NULL;
326 	vq->log_ctx = NULL;
327 	vhost_reset_is_le(vq);
328 	vhost_disable_cross_endian(vq);
329 	vq->busyloop_timeout = 0;
330 	vq->umem = NULL;
331 	vq->iotlb = NULL;
332 	__vhost_vq_meta_reset(vq);
333 }
334 
vhost_worker(void * data)335 static int vhost_worker(void *data)
336 {
337 	struct vhost_dev *dev = data;
338 	struct vhost_work *work, *work_next;
339 	struct llist_node *node;
340 	mm_segment_t oldfs = get_fs();
341 
342 	set_fs(USER_DS);
343 	use_mm(dev->mm);
344 
345 	for (;;) {
346 		/* mb paired w/ kthread_stop */
347 		set_current_state(TASK_INTERRUPTIBLE);
348 
349 		if (kthread_should_stop()) {
350 			__set_current_state(TASK_RUNNING);
351 			break;
352 		}
353 
354 		node = llist_del_all(&dev->work_list);
355 		if (!node)
356 			schedule();
357 
358 		node = llist_reverse_order(node);
359 		/* make sure flag is seen after deletion */
360 		smp_wmb();
361 		llist_for_each_entry_safe(work, work_next, node, node) {
362 			clear_bit(VHOST_WORK_QUEUED, &work->flags);
363 			__set_current_state(TASK_RUNNING);
364 			work->fn(work);
365 			if (need_resched())
366 				schedule();
367 		}
368 	}
369 	unuse_mm(dev->mm);
370 	set_fs(oldfs);
371 	return 0;
372 }
373 
vhost_vq_free_iovecs(struct vhost_virtqueue * vq)374 static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq)
375 {
376 	kfree(vq->indirect);
377 	vq->indirect = NULL;
378 	kfree(vq->log);
379 	vq->log = NULL;
380 	kfree(vq->heads);
381 	vq->heads = NULL;
382 }
383 
384 /* Helper to allocate iovec buffers for all vqs. */
vhost_dev_alloc_iovecs(struct vhost_dev * dev)385 static long vhost_dev_alloc_iovecs(struct vhost_dev *dev)
386 {
387 	struct vhost_virtqueue *vq;
388 	int i;
389 
390 	for (i = 0; i < dev->nvqs; ++i) {
391 		vq = dev->vqs[i];
392 		vq->indirect = kmalloc(sizeof *vq->indirect * UIO_MAXIOV,
393 				       GFP_KERNEL);
394 		vq->log = kmalloc(sizeof *vq->log * UIO_MAXIOV, GFP_KERNEL);
395 		vq->heads = kmalloc(sizeof *vq->heads * UIO_MAXIOV, GFP_KERNEL);
396 		if (!vq->indirect || !vq->log || !vq->heads)
397 			goto err_nomem;
398 	}
399 	return 0;
400 
401 err_nomem:
402 	for (; i >= 0; --i)
403 		vhost_vq_free_iovecs(dev->vqs[i]);
404 	return -ENOMEM;
405 }
406 
vhost_dev_free_iovecs(struct vhost_dev * dev)407 static void vhost_dev_free_iovecs(struct vhost_dev *dev)
408 {
409 	int i;
410 
411 	for (i = 0; i < dev->nvqs; ++i)
412 		vhost_vq_free_iovecs(dev->vqs[i]);
413 }
414 
vhost_exceeds_weight(struct vhost_virtqueue * vq,int pkts,int total_len)415 bool vhost_exceeds_weight(struct vhost_virtqueue *vq,
416 			  int pkts, int total_len)
417 {
418 	struct vhost_dev *dev = vq->dev;
419 
420 	if ((dev->byte_weight && total_len >= dev->byte_weight) ||
421 	    pkts >= dev->weight) {
422 		vhost_poll_queue(&vq->poll);
423 		return true;
424 	}
425 
426 	return false;
427 }
428 EXPORT_SYMBOL_GPL(vhost_exceeds_weight);
429 
vhost_dev_init(struct vhost_dev * dev,struct vhost_virtqueue ** vqs,int nvqs,int weight,int byte_weight)430 void vhost_dev_init(struct vhost_dev *dev,
431 		    struct vhost_virtqueue **vqs, int nvqs,
432 		    int weight, int byte_weight)
433 {
434 	struct vhost_virtqueue *vq;
435 	int i;
436 
437 	dev->vqs = vqs;
438 	dev->nvqs = nvqs;
439 	mutex_init(&dev->mutex);
440 	dev->log_ctx = NULL;
441 	dev->log_file = NULL;
442 	dev->umem = NULL;
443 	dev->iotlb = NULL;
444 	dev->mm = NULL;
445 	dev->worker = NULL;
446 	dev->weight = weight;
447 	dev->byte_weight = byte_weight;
448 	init_llist_head(&dev->work_list);
449 	init_waitqueue_head(&dev->wait);
450 	INIT_LIST_HEAD(&dev->read_list);
451 	INIT_LIST_HEAD(&dev->pending_list);
452 	spin_lock_init(&dev->iotlb_lock);
453 
454 
455 	for (i = 0; i < dev->nvqs; ++i) {
456 		vq = dev->vqs[i];
457 		vq->log = NULL;
458 		vq->indirect = NULL;
459 		vq->heads = NULL;
460 		vq->dev = dev;
461 		mutex_init(&vq->mutex);
462 		vhost_vq_reset(dev, vq);
463 		if (vq->handle_kick)
464 			vhost_poll_init(&vq->poll, vq->handle_kick,
465 					POLLIN, dev);
466 	}
467 }
468 EXPORT_SYMBOL_GPL(vhost_dev_init);
469 
470 /* Caller should have device mutex */
vhost_dev_check_owner(struct vhost_dev * dev)471 long vhost_dev_check_owner(struct vhost_dev *dev)
472 {
473 	/* Are you the owner? If not, I don't think you mean to do that */
474 	return dev->mm == current->mm ? 0 : -EPERM;
475 }
476 EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
477 
478 struct vhost_attach_cgroups_struct {
479 	struct vhost_work work;
480 	struct task_struct *owner;
481 	int ret;
482 };
483 
vhost_attach_cgroups_work(struct vhost_work * work)484 static void vhost_attach_cgroups_work(struct vhost_work *work)
485 {
486 	struct vhost_attach_cgroups_struct *s;
487 
488 	s = container_of(work, struct vhost_attach_cgroups_struct, work);
489 	s->ret = cgroup_attach_task_all(s->owner, current);
490 }
491 
vhost_attach_cgroups(struct vhost_dev * dev)492 static int vhost_attach_cgroups(struct vhost_dev *dev)
493 {
494 	struct vhost_attach_cgroups_struct attach;
495 
496 	attach.owner = current;
497 	vhost_work_init(&attach.work, vhost_attach_cgroups_work);
498 	vhost_work_queue(dev, &attach.work);
499 	vhost_work_flush(dev, &attach.work);
500 	return attach.ret;
501 }
502 
503 /* Caller should have device mutex */
vhost_dev_has_owner(struct vhost_dev * dev)504 bool vhost_dev_has_owner(struct vhost_dev *dev)
505 {
506 	return dev->mm;
507 }
508 EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
509 
510 /* Caller should have device mutex */
vhost_dev_set_owner(struct vhost_dev * dev)511 long vhost_dev_set_owner(struct vhost_dev *dev)
512 {
513 	struct task_struct *worker;
514 	int err;
515 
516 	/* Is there an owner already? */
517 	if (vhost_dev_has_owner(dev)) {
518 		err = -EBUSY;
519 		goto err_mm;
520 	}
521 
522 	/* No owner, become one */
523 	dev->mm = get_task_mm(current);
524 	worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
525 	if (IS_ERR(worker)) {
526 		err = PTR_ERR(worker);
527 		goto err_worker;
528 	}
529 
530 	dev->worker = worker;
531 	wake_up_process(worker);	/* avoid contributing to loadavg */
532 
533 	err = vhost_attach_cgroups(dev);
534 	if (err)
535 		goto err_cgroup;
536 
537 	err = vhost_dev_alloc_iovecs(dev);
538 	if (err)
539 		goto err_cgroup;
540 
541 	return 0;
542 err_cgroup:
543 	kthread_stop(worker);
544 	dev->worker = NULL;
545 err_worker:
546 	if (dev->mm)
547 		mmput(dev->mm);
548 	dev->mm = NULL;
549 err_mm:
550 	return err;
551 }
552 EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
553 
vhost_dev_reset_owner_prepare(void)554 struct vhost_umem *vhost_dev_reset_owner_prepare(void)
555 {
556 	return kvzalloc(sizeof(struct vhost_umem), GFP_KERNEL);
557 }
558 EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
559 
560 /* Caller should have device mutex */
vhost_dev_reset_owner(struct vhost_dev * dev,struct vhost_umem * umem)561 void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_umem *umem)
562 {
563 	int i;
564 
565 	vhost_dev_cleanup(dev, true);
566 
567 	/* Restore memory to default empty mapping. */
568 	INIT_LIST_HEAD(&umem->umem_list);
569 	dev->umem = umem;
570 	/* We don't need VQ locks below since vhost_dev_cleanup makes sure
571 	 * VQs aren't running.
572 	 */
573 	for (i = 0; i < dev->nvqs; ++i)
574 		dev->vqs[i]->umem = umem;
575 }
576 EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
577 
vhost_dev_stop(struct vhost_dev * dev)578 void vhost_dev_stop(struct vhost_dev *dev)
579 {
580 	int i;
581 
582 	for (i = 0; i < dev->nvqs; ++i) {
583 		if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
584 			vhost_poll_stop(&dev->vqs[i]->poll);
585 			vhost_poll_flush(&dev->vqs[i]->poll);
586 		}
587 	}
588 }
589 EXPORT_SYMBOL_GPL(vhost_dev_stop);
590 
vhost_umem_free(struct vhost_umem * umem,struct vhost_umem_node * node)591 static void vhost_umem_free(struct vhost_umem *umem,
592 			    struct vhost_umem_node *node)
593 {
594 	vhost_umem_interval_tree_remove(node, &umem->umem_tree);
595 	list_del(&node->link);
596 	kfree(node);
597 	umem->numem--;
598 }
599 
vhost_umem_clean(struct vhost_umem * umem)600 static void vhost_umem_clean(struct vhost_umem *umem)
601 {
602 	struct vhost_umem_node *node, *tmp;
603 
604 	if (!umem)
605 		return;
606 
607 	list_for_each_entry_safe(node, tmp, &umem->umem_list, link)
608 		vhost_umem_free(umem, node);
609 
610 	kvfree(umem);
611 }
612 
vhost_clear_msg(struct vhost_dev * dev)613 static void vhost_clear_msg(struct vhost_dev *dev)
614 {
615 	struct vhost_msg_node *node, *n;
616 
617 	spin_lock(&dev->iotlb_lock);
618 
619 	list_for_each_entry_safe(node, n, &dev->read_list, node) {
620 		list_del(&node->node);
621 		kfree(node);
622 	}
623 
624 	list_for_each_entry_safe(node, n, &dev->pending_list, node) {
625 		list_del(&node->node);
626 		kfree(node);
627 	}
628 
629 	spin_unlock(&dev->iotlb_lock);
630 }
631 
632 /* Caller should have device mutex if and only if locked is set */
vhost_dev_cleanup(struct vhost_dev * dev,bool locked)633 void vhost_dev_cleanup(struct vhost_dev *dev, bool locked)
634 {
635 	int i;
636 
637 	for (i = 0; i < dev->nvqs; ++i) {
638 		if (dev->vqs[i]->error_ctx)
639 			eventfd_ctx_put(dev->vqs[i]->error_ctx);
640 		if (dev->vqs[i]->error)
641 			fput(dev->vqs[i]->error);
642 		if (dev->vqs[i]->kick)
643 			fput(dev->vqs[i]->kick);
644 		if (dev->vqs[i]->call_ctx)
645 			eventfd_ctx_put(dev->vqs[i]->call_ctx);
646 		if (dev->vqs[i]->call)
647 			fput(dev->vqs[i]->call);
648 		vhost_vq_reset(dev, dev->vqs[i]);
649 	}
650 	vhost_dev_free_iovecs(dev);
651 	if (dev->log_ctx)
652 		eventfd_ctx_put(dev->log_ctx);
653 	dev->log_ctx = NULL;
654 	if (dev->log_file)
655 		fput(dev->log_file);
656 	dev->log_file = NULL;
657 	/* No one will access memory at this point */
658 	vhost_umem_clean(dev->umem);
659 	dev->umem = NULL;
660 	vhost_umem_clean(dev->iotlb);
661 	dev->iotlb = NULL;
662 	vhost_clear_msg(dev);
663 	wake_up_interruptible_poll(&dev->wait, POLLIN | POLLRDNORM);
664 	WARN_ON(!llist_empty(&dev->work_list));
665 	if (dev->worker) {
666 		kthread_stop(dev->worker);
667 		dev->worker = NULL;
668 	}
669 	if (dev->mm)
670 		mmput(dev->mm);
671 	dev->mm = NULL;
672 }
673 EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
674 
log_access_ok(void __user * log_base,u64 addr,unsigned long sz)675 static int log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
676 {
677 	u64 a = addr / VHOST_PAGE_SIZE / 8;
678 
679 	/* Make sure 64 bit math will not overflow. */
680 	if (a > ULONG_MAX - (unsigned long)log_base ||
681 	    a + (unsigned long)log_base > ULONG_MAX)
682 		return 0;
683 
684 	return access_ok(VERIFY_WRITE, log_base + a,
685 			 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
686 }
687 
vhost_overflow(u64 uaddr,u64 size)688 static bool vhost_overflow(u64 uaddr, u64 size)
689 {
690 	/* Make sure 64 bit math will not overflow. */
691 	return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
692 }
693 
694 /* Caller should have vq mutex and device mutex. */
vq_memory_access_ok(void __user * log_base,struct vhost_umem * umem,int log_all)695 static int vq_memory_access_ok(void __user *log_base, struct vhost_umem *umem,
696 			       int log_all)
697 {
698 	struct vhost_umem_node *node;
699 
700 	if (!umem)
701 		return 0;
702 
703 	list_for_each_entry(node, &umem->umem_list, link) {
704 		unsigned long a = node->userspace_addr;
705 
706 		if (vhost_overflow(node->userspace_addr, node->size))
707 			return 0;
708 
709 
710 		if (!access_ok(VERIFY_WRITE, (void __user *)a,
711 				    node->size))
712 			return 0;
713 		else if (log_all && !log_access_ok(log_base,
714 						   node->start,
715 						   node->size))
716 			return 0;
717 	}
718 	return 1;
719 }
720 
vhost_vq_meta_fetch(struct vhost_virtqueue * vq,u64 addr,unsigned int size,int type)721 static inline void __user *vhost_vq_meta_fetch(struct vhost_virtqueue *vq,
722 					       u64 addr, unsigned int size,
723 					       int type)
724 {
725 	const struct vhost_umem_node *node = vq->meta_iotlb[type];
726 
727 	if (!node)
728 		return NULL;
729 
730 	return (void *)(uintptr_t)(node->userspace_addr + addr - node->start);
731 }
732 
733 /* Can we switch to this memory table? */
734 /* Caller should have device mutex but not vq mutex */
memory_access_ok(struct vhost_dev * d,struct vhost_umem * umem,int log_all)735 static int memory_access_ok(struct vhost_dev *d, struct vhost_umem *umem,
736 			    int log_all)
737 {
738 	int i;
739 
740 	for (i = 0; i < d->nvqs; ++i) {
741 		int ok;
742 		bool log;
743 
744 		mutex_lock(&d->vqs[i]->mutex);
745 		log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
746 		/* If ring is inactive, will check when it's enabled. */
747 		if (d->vqs[i]->private_data)
748 			ok = vq_memory_access_ok(d->vqs[i]->log_base,
749 						 umem, log);
750 		else
751 			ok = 1;
752 		mutex_unlock(&d->vqs[i]->mutex);
753 		if (!ok)
754 			return 0;
755 	}
756 	return 1;
757 }
758 
759 static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
760 			  struct iovec iov[], int iov_size, int access);
761 
vhost_copy_to_user(struct vhost_virtqueue * vq,void __user * to,const void * from,unsigned size)762 static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
763 			      const void *from, unsigned size)
764 {
765 	int ret;
766 
767 	if (!vq->iotlb)
768 		return __copy_to_user(to, from, size);
769 	else {
770 		/* This function should be called after iotlb
771 		 * prefetch, which means we're sure that all vq
772 		 * could be access through iotlb. So -EAGAIN should
773 		 * not happen in this case.
774 		 */
775 		struct iov_iter t;
776 		void __user *uaddr = vhost_vq_meta_fetch(vq,
777 				     (u64)(uintptr_t)to, size,
778 				     VHOST_ADDR_USED);
779 
780 		if (uaddr)
781 			return __copy_to_user(uaddr, from, size);
782 
783 		ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
784 				     ARRAY_SIZE(vq->iotlb_iov),
785 				     VHOST_ACCESS_WO);
786 		if (ret < 0)
787 			goto out;
788 		iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
789 		ret = copy_to_iter(from, size, &t);
790 		if (ret == size)
791 			ret = 0;
792 	}
793 out:
794 	return ret;
795 }
796 
vhost_copy_from_user(struct vhost_virtqueue * vq,void * to,void __user * from,unsigned size)797 static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
798 				void __user *from, unsigned size)
799 {
800 	int ret;
801 
802 	if (!vq->iotlb)
803 		return __copy_from_user(to, from, size);
804 	else {
805 		/* This function should be called after iotlb
806 		 * prefetch, which means we're sure that vq
807 		 * could be access through iotlb. So -EAGAIN should
808 		 * not happen in this case.
809 		 */
810 		void __user *uaddr = vhost_vq_meta_fetch(vq,
811 				     (u64)(uintptr_t)from, size,
812 				     VHOST_ADDR_DESC);
813 		struct iov_iter f;
814 
815 		if (uaddr)
816 			return __copy_from_user(to, uaddr, size);
817 
818 		ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
819 				     ARRAY_SIZE(vq->iotlb_iov),
820 				     VHOST_ACCESS_RO);
821 		if (ret < 0) {
822 			vq_err(vq, "IOTLB translation failure: uaddr "
823 			       "%p size 0x%llx\n", from,
824 			       (unsigned long long) size);
825 			goto out;
826 		}
827 		iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
828 		ret = copy_from_iter(to, size, &f);
829 		if (ret == size)
830 			ret = 0;
831 	}
832 
833 out:
834 	return ret;
835 }
836 
__vhost_get_user_slow(struct vhost_virtqueue * vq,void __user * addr,unsigned int size,int type)837 static void __user *__vhost_get_user_slow(struct vhost_virtqueue *vq,
838 					  void __user *addr, unsigned int size,
839 					  int type)
840 {
841 	int ret;
842 
843 	ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
844 			     ARRAY_SIZE(vq->iotlb_iov),
845 			     VHOST_ACCESS_RO);
846 	if (ret < 0) {
847 		vq_err(vq, "IOTLB translation failure: uaddr "
848 			"%p size 0x%llx\n", addr,
849 			(unsigned long long) size);
850 		return NULL;
851 	}
852 
853 	if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
854 		vq_err(vq, "Non atomic userspace memory access: uaddr "
855 			"%p size 0x%llx\n", addr,
856 			(unsigned long long) size);
857 		return NULL;
858 	}
859 
860 	return vq->iotlb_iov[0].iov_base;
861 }
862 
863 /* This function should be called after iotlb
864  * prefetch, which means we're sure that vq
865  * could be access through iotlb. So -EAGAIN should
866  * not happen in this case.
867  */
__vhost_get_user(struct vhost_virtqueue * vq,void * addr,unsigned int size,int type)868 static inline void __user *__vhost_get_user(struct vhost_virtqueue *vq,
869 					    void *addr, unsigned int size,
870 					    int type)
871 {
872 	void __user *uaddr = vhost_vq_meta_fetch(vq,
873 			     (u64)(uintptr_t)addr, size, type);
874 	if (uaddr)
875 		return uaddr;
876 
877 	return __vhost_get_user_slow(vq, addr, size, type);
878 }
879 
880 #define vhost_put_user(vq, x, ptr)		\
881 ({ \
882 	int ret = -EFAULT; \
883 	if (!vq->iotlb) { \
884 		ret = __put_user(x, ptr); \
885 	} else { \
886 		__typeof__(ptr) to = \
887 			(__typeof__(ptr)) __vhost_get_user(vq, ptr,	\
888 					  sizeof(*ptr), VHOST_ADDR_USED); \
889 		if (to != NULL) \
890 			ret = __put_user(x, to); \
891 		else \
892 			ret = -EFAULT;	\
893 	} \
894 	ret; \
895 })
896 
897 #define vhost_get_user(vq, x, ptr, type)		\
898 ({ \
899 	int ret; \
900 	if (!vq->iotlb) { \
901 		ret = __get_user(x, ptr); \
902 	} else { \
903 		__typeof__(ptr) from = \
904 			(__typeof__(ptr)) __vhost_get_user(vq, ptr, \
905 							   sizeof(*ptr), \
906 							   type); \
907 		if (from != NULL) \
908 			ret = __get_user(x, from); \
909 		else \
910 			ret = -EFAULT; \
911 	} \
912 	ret; \
913 })
914 
915 #define vhost_get_avail(vq, x, ptr) \
916 	vhost_get_user(vq, x, ptr, VHOST_ADDR_AVAIL)
917 
918 #define vhost_get_used(vq, x, ptr) \
919 	vhost_get_user(vq, x, ptr, VHOST_ADDR_USED)
920 
vhost_dev_lock_vqs(struct vhost_dev * d)921 static void vhost_dev_lock_vqs(struct vhost_dev *d)
922 {
923 	int i = 0;
924 	for (i = 0; i < d->nvqs; ++i)
925 		mutex_lock_nested(&d->vqs[i]->mutex, i);
926 }
927 
vhost_dev_unlock_vqs(struct vhost_dev * d)928 static void vhost_dev_unlock_vqs(struct vhost_dev *d)
929 {
930 	int i = 0;
931 	for (i = 0; i < d->nvqs; ++i)
932 		mutex_unlock(&d->vqs[i]->mutex);
933 }
934 
vhost_new_umem_range(struct vhost_umem * umem,u64 start,u64 size,u64 end,u64 userspace_addr,int perm)935 static int vhost_new_umem_range(struct vhost_umem *umem,
936 				u64 start, u64 size, u64 end,
937 				u64 userspace_addr, int perm)
938 {
939 	struct vhost_umem_node *tmp, *node;
940 
941 	if (!size)
942 		return -EFAULT;
943 
944 	node = kmalloc(sizeof(*node), GFP_ATOMIC);
945 	if (!node)
946 		return -ENOMEM;
947 
948 	if (umem->numem == max_iotlb_entries) {
949 		tmp = list_first_entry(&umem->umem_list, typeof(*tmp), link);
950 		vhost_umem_free(umem, tmp);
951 	}
952 
953 	node->start = start;
954 	node->size = size;
955 	node->last = end;
956 	node->userspace_addr = userspace_addr;
957 	node->perm = perm;
958 	INIT_LIST_HEAD(&node->link);
959 	list_add_tail(&node->link, &umem->umem_list);
960 	vhost_umem_interval_tree_insert(node, &umem->umem_tree);
961 	umem->numem++;
962 
963 	return 0;
964 }
965 
vhost_del_umem_range(struct vhost_umem * umem,u64 start,u64 end)966 static void vhost_del_umem_range(struct vhost_umem *umem,
967 				 u64 start, u64 end)
968 {
969 	struct vhost_umem_node *node;
970 
971 	while ((node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
972 							   start, end)))
973 		vhost_umem_free(umem, node);
974 }
975 
vhost_iotlb_notify_vq(struct vhost_dev * d,struct vhost_iotlb_msg * msg)976 static void vhost_iotlb_notify_vq(struct vhost_dev *d,
977 				  struct vhost_iotlb_msg *msg)
978 {
979 	struct vhost_msg_node *node, *n;
980 
981 	spin_lock(&d->iotlb_lock);
982 
983 	list_for_each_entry_safe(node, n, &d->pending_list, node) {
984 		struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
985 		if (msg->iova <= vq_msg->iova &&
986 		    msg->iova + msg->size - 1 >= vq_msg->iova &&
987 		    vq_msg->type == VHOST_IOTLB_MISS) {
988 			vhost_poll_queue(&node->vq->poll);
989 			list_del(&node->node);
990 			kfree(node);
991 		}
992 	}
993 
994 	spin_unlock(&d->iotlb_lock);
995 }
996 
umem_access_ok(u64 uaddr,u64 size,int access)997 static int umem_access_ok(u64 uaddr, u64 size, int access)
998 {
999 	unsigned long a = uaddr;
1000 
1001 	/* Make sure 64 bit math will not overflow. */
1002 	if (vhost_overflow(uaddr, size))
1003 		return -EFAULT;
1004 
1005 	if ((access & VHOST_ACCESS_RO) &&
1006 	    !access_ok(VERIFY_READ, (void __user *)a, size))
1007 		return -EFAULT;
1008 	if ((access & VHOST_ACCESS_WO) &&
1009 	    !access_ok(VERIFY_WRITE, (void __user *)a, size))
1010 		return -EFAULT;
1011 	return 0;
1012 }
1013 
vhost_process_iotlb_msg(struct vhost_dev * dev,struct vhost_iotlb_msg * msg)1014 static int vhost_process_iotlb_msg(struct vhost_dev *dev,
1015 				   struct vhost_iotlb_msg *msg)
1016 {
1017 	int ret = 0;
1018 
1019 	mutex_lock(&dev->mutex);
1020 	vhost_dev_lock_vqs(dev);
1021 	switch (msg->type) {
1022 	case VHOST_IOTLB_UPDATE:
1023 		if (!dev->iotlb) {
1024 			ret = -EFAULT;
1025 			break;
1026 		}
1027 		if (umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
1028 			ret = -EFAULT;
1029 			break;
1030 		}
1031 		vhost_vq_meta_reset(dev);
1032 		if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
1033 					 msg->iova + msg->size - 1,
1034 					 msg->uaddr, msg->perm)) {
1035 			ret = -ENOMEM;
1036 			break;
1037 		}
1038 		vhost_iotlb_notify_vq(dev, msg);
1039 		break;
1040 	case VHOST_IOTLB_INVALIDATE:
1041 		vhost_vq_meta_reset(dev);
1042 		vhost_del_umem_range(dev->iotlb, msg->iova,
1043 				     msg->iova + msg->size - 1);
1044 		break;
1045 	default:
1046 		ret = -EINVAL;
1047 		break;
1048 	}
1049 
1050 	vhost_dev_unlock_vqs(dev);
1051 	mutex_unlock(&dev->mutex);
1052 
1053 	return ret;
1054 }
vhost_chr_write_iter(struct vhost_dev * dev,struct iov_iter * from)1055 ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
1056 			     struct iov_iter *from)
1057 {
1058 	struct vhost_msg_node node;
1059 	unsigned size = sizeof(struct vhost_msg);
1060 	size_t ret;
1061 	int err;
1062 
1063 	if (iov_iter_count(from) < size)
1064 		return 0;
1065 	ret = copy_from_iter(&node.msg, size, from);
1066 	if (ret != size)
1067 		goto done;
1068 
1069 	switch (node.msg.type) {
1070 	case VHOST_IOTLB_MSG:
1071 		err = vhost_process_iotlb_msg(dev, &node.msg.iotlb);
1072 		if (err)
1073 			ret = err;
1074 		break;
1075 	default:
1076 		ret = -EINVAL;
1077 		break;
1078 	}
1079 
1080 done:
1081 	return ret;
1082 }
1083 EXPORT_SYMBOL(vhost_chr_write_iter);
1084 
vhost_chr_poll(struct file * file,struct vhost_dev * dev,poll_table * wait)1085 unsigned int vhost_chr_poll(struct file *file, struct vhost_dev *dev,
1086 			    poll_table *wait)
1087 {
1088 	unsigned int mask = 0;
1089 
1090 	poll_wait(file, &dev->wait, wait);
1091 
1092 	if (!list_empty(&dev->read_list))
1093 		mask |= POLLIN | POLLRDNORM;
1094 
1095 	return mask;
1096 }
1097 EXPORT_SYMBOL(vhost_chr_poll);
1098 
vhost_chr_read_iter(struct vhost_dev * dev,struct iov_iter * to,int noblock)1099 ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1100 			    int noblock)
1101 {
1102 	DEFINE_WAIT(wait);
1103 	struct vhost_msg_node *node;
1104 	ssize_t ret = 0;
1105 	unsigned size = sizeof(struct vhost_msg);
1106 
1107 	if (iov_iter_count(to) < size)
1108 		return 0;
1109 
1110 	while (1) {
1111 		if (!noblock)
1112 			prepare_to_wait(&dev->wait, &wait,
1113 					TASK_INTERRUPTIBLE);
1114 
1115 		node = vhost_dequeue_msg(dev, &dev->read_list);
1116 		if (node)
1117 			break;
1118 		if (noblock) {
1119 			ret = -EAGAIN;
1120 			break;
1121 		}
1122 		if (signal_pending(current)) {
1123 			ret = -ERESTARTSYS;
1124 			break;
1125 		}
1126 		if (!dev->iotlb) {
1127 			ret = -EBADFD;
1128 			break;
1129 		}
1130 
1131 		schedule();
1132 	}
1133 
1134 	if (!noblock)
1135 		finish_wait(&dev->wait, &wait);
1136 
1137 	if (node) {
1138 		ret = copy_to_iter(&node->msg, size, to);
1139 
1140 		if (ret != size || node->msg.type != VHOST_IOTLB_MISS) {
1141 			kfree(node);
1142 			return ret;
1143 		}
1144 
1145 		vhost_enqueue_msg(dev, &dev->pending_list, node);
1146 	}
1147 
1148 	return ret;
1149 }
1150 EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1151 
vhost_iotlb_miss(struct vhost_virtqueue * vq,u64 iova,int access)1152 static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1153 {
1154 	struct vhost_dev *dev = vq->dev;
1155 	struct vhost_msg_node *node;
1156 	struct vhost_iotlb_msg *msg;
1157 
1158 	node = vhost_new_msg(vq, VHOST_IOTLB_MISS);
1159 	if (!node)
1160 		return -ENOMEM;
1161 
1162 	msg = &node->msg.iotlb;
1163 	msg->type = VHOST_IOTLB_MISS;
1164 	msg->iova = iova;
1165 	msg->perm = access;
1166 
1167 	vhost_enqueue_msg(dev, &dev->read_list, node);
1168 
1169 	return 0;
1170 }
1171 
vq_access_ok(struct vhost_virtqueue * vq,unsigned int num,struct vring_desc __user * desc,struct vring_avail __user * avail,struct vring_used __user * used)1172 static int vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
1173 			struct vring_desc __user *desc,
1174 			struct vring_avail __user *avail,
1175 			struct vring_used __user *used)
1176 
1177 {
1178 	size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1179 
1180 	return access_ok(VERIFY_READ, desc, num * sizeof *desc) &&
1181 	       access_ok(VERIFY_READ, avail,
1182 			 sizeof *avail + num * sizeof *avail->ring + s) &&
1183 	       access_ok(VERIFY_WRITE, used,
1184 			sizeof *used + num * sizeof *used->ring + s);
1185 }
1186 
vhost_vq_meta_update(struct vhost_virtqueue * vq,const struct vhost_umem_node * node,int type)1187 static void vhost_vq_meta_update(struct vhost_virtqueue *vq,
1188 				 const struct vhost_umem_node *node,
1189 				 int type)
1190 {
1191 	int access = (type == VHOST_ADDR_USED) ?
1192 		     VHOST_ACCESS_WO : VHOST_ACCESS_RO;
1193 
1194 	if (likely(node->perm & access))
1195 		vq->meta_iotlb[type] = node;
1196 }
1197 
iotlb_access_ok(struct vhost_virtqueue * vq,int access,u64 addr,u64 len,int type)1198 static int iotlb_access_ok(struct vhost_virtqueue *vq,
1199 			   int access, u64 addr, u64 len, int type)
1200 {
1201 	const struct vhost_umem_node *node;
1202 	struct vhost_umem *umem = vq->iotlb;
1203 	u64 s = 0, size, orig_addr = addr;
1204 
1205 	if (vhost_vq_meta_fetch(vq, addr, len, type))
1206 		return true;
1207 
1208 	while (len > s) {
1209 		node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1210 							   addr,
1211 							   addr + len - 1);
1212 		if (node == NULL || node->start > addr) {
1213 			vhost_iotlb_miss(vq, addr, access);
1214 			return false;
1215 		} else if (!(node->perm & access)) {
1216 			/* Report the possible access violation by
1217 			 * request another translation from userspace.
1218 			 */
1219 			return false;
1220 		}
1221 
1222 		size = node->size - addr + node->start;
1223 
1224 		if (orig_addr == addr && size >= len)
1225 			vhost_vq_meta_update(vq, node, type);
1226 
1227 		s += size;
1228 		addr += size;
1229 	}
1230 
1231 	return true;
1232 }
1233 
vq_iotlb_prefetch(struct vhost_virtqueue * vq)1234 int vq_iotlb_prefetch(struct vhost_virtqueue *vq)
1235 {
1236 	size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1237 	unsigned int num = vq->num;
1238 
1239 	if (!vq->iotlb)
1240 		return 1;
1241 
1242 	return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
1243 			       num * sizeof(*vq->desc), VHOST_ADDR_DESC) &&
1244 	       iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1245 			       sizeof *vq->avail +
1246 			       num * sizeof(*vq->avail->ring) + s,
1247 			       VHOST_ADDR_AVAIL) &&
1248 	       iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1249 			       sizeof *vq->used +
1250 			       num * sizeof(*vq->used->ring) + s,
1251 			       VHOST_ADDR_USED);
1252 }
1253 EXPORT_SYMBOL_GPL(vq_iotlb_prefetch);
1254 
1255 /* Can we log writes? */
1256 /* Caller should have device mutex but not vq mutex */
vhost_log_access_ok(struct vhost_dev * dev)1257 int vhost_log_access_ok(struct vhost_dev *dev)
1258 {
1259 	return memory_access_ok(dev, dev->umem, 1);
1260 }
1261 EXPORT_SYMBOL_GPL(vhost_log_access_ok);
1262 
1263 /* Verify access for write logging. */
1264 /* Caller should have vq mutex and device mutex */
vq_log_access_ok(struct vhost_virtqueue * vq,void __user * log_base)1265 static int vq_log_access_ok(struct vhost_virtqueue *vq,
1266 			    void __user *log_base)
1267 {
1268 	size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1269 
1270 	return vq_memory_access_ok(log_base, vq->umem,
1271 				   vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
1272 		(!vq->log_used || log_access_ok(log_base, vq->log_addr,
1273 					sizeof *vq->used +
1274 					vq->num * sizeof *vq->used->ring + s));
1275 }
1276 
1277 /* Can we start vq? */
1278 /* Caller should have vq mutex and device mutex */
vhost_vq_access_ok(struct vhost_virtqueue * vq)1279 int vhost_vq_access_ok(struct vhost_virtqueue *vq)
1280 {
1281 	if (!vq_log_access_ok(vq, vq->log_base))
1282 		return 0;
1283 
1284 	/* Access validation occurs at prefetch time with IOTLB */
1285 	if (vq->iotlb)
1286 		return 1;
1287 
1288 	return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
1289 }
1290 EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
1291 
vhost_umem_alloc(void)1292 static struct vhost_umem *vhost_umem_alloc(void)
1293 {
1294 	struct vhost_umem *umem = kvzalloc(sizeof(*umem), GFP_KERNEL);
1295 
1296 	if (!umem)
1297 		return NULL;
1298 
1299 	umem->umem_tree = RB_ROOT_CACHED;
1300 	umem->numem = 0;
1301 	INIT_LIST_HEAD(&umem->umem_list);
1302 
1303 	return umem;
1304 }
1305 
vhost_set_memory(struct vhost_dev * d,struct vhost_memory __user * m)1306 static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1307 {
1308 	struct vhost_memory mem, *newmem;
1309 	struct vhost_memory_region *region;
1310 	struct vhost_umem *newumem, *oldumem;
1311 	unsigned long size = offsetof(struct vhost_memory, regions);
1312 	int i;
1313 
1314 	if (copy_from_user(&mem, m, size))
1315 		return -EFAULT;
1316 	if (mem.padding)
1317 		return -EOPNOTSUPP;
1318 	if (mem.nregions > max_mem_regions)
1319 		return -E2BIG;
1320 	newmem = kvzalloc(size + mem.nregions * sizeof(*m->regions), GFP_KERNEL);
1321 	if (!newmem)
1322 		return -ENOMEM;
1323 
1324 	memcpy(newmem, &mem, size);
1325 	if (copy_from_user(newmem->regions, m->regions,
1326 			   mem.nregions * sizeof *m->regions)) {
1327 		kvfree(newmem);
1328 		return -EFAULT;
1329 	}
1330 
1331 	newumem = vhost_umem_alloc();
1332 	if (!newumem) {
1333 		kvfree(newmem);
1334 		return -ENOMEM;
1335 	}
1336 
1337 	for (region = newmem->regions;
1338 	     region < newmem->regions + mem.nregions;
1339 	     region++) {
1340 		if (vhost_new_umem_range(newumem,
1341 					 region->guest_phys_addr,
1342 					 region->memory_size,
1343 					 region->guest_phys_addr +
1344 					 region->memory_size - 1,
1345 					 region->userspace_addr,
1346 					 VHOST_ACCESS_RW))
1347 			goto err;
1348 	}
1349 
1350 	if (!memory_access_ok(d, newumem, 0))
1351 		goto err;
1352 
1353 	oldumem = d->umem;
1354 	d->umem = newumem;
1355 
1356 	/* All memory accesses are done under some VQ mutex. */
1357 	for (i = 0; i < d->nvqs; ++i) {
1358 		mutex_lock(&d->vqs[i]->mutex);
1359 		d->vqs[i]->umem = newumem;
1360 		mutex_unlock(&d->vqs[i]->mutex);
1361 	}
1362 
1363 	kvfree(newmem);
1364 	vhost_umem_clean(oldumem);
1365 	return 0;
1366 
1367 err:
1368 	vhost_umem_clean(newumem);
1369 	kvfree(newmem);
1370 	return -EFAULT;
1371 }
1372 
vhost_vring_ioctl(struct vhost_dev * d,int ioctl,void __user * argp)1373 long vhost_vring_ioctl(struct vhost_dev *d, int ioctl, void __user *argp)
1374 {
1375 	struct file *eventfp, *filep = NULL;
1376 	bool pollstart = false, pollstop = false;
1377 	struct eventfd_ctx *ctx = NULL;
1378 	u32 __user *idxp = argp;
1379 	struct vhost_virtqueue *vq;
1380 	struct vhost_vring_state s;
1381 	struct vhost_vring_file f;
1382 	struct vhost_vring_addr a;
1383 	u32 idx;
1384 	long r;
1385 
1386 	r = get_user(idx, idxp);
1387 	if (r < 0)
1388 		return r;
1389 	if (idx >= d->nvqs)
1390 		return -ENOBUFS;
1391 
1392 	idx = array_index_nospec(idx, d->nvqs);
1393 	vq = d->vqs[idx];
1394 
1395 	mutex_lock(&vq->mutex);
1396 
1397 	switch (ioctl) {
1398 	case VHOST_SET_VRING_NUM:
1399 		/* Resizing ring with an active backend?
1400 		 * You don't want to do that. */
1401 		if (vq->private_data) {
1402 			r = -EBUSY;
1403 			break;
1404 		}
1405 		if (copy_from_user(&s, argp, sizeof s)) {
1406 			r = -EFAULT;
1407 			break;
1408 		}
1409 		if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) {
1410 			r = -EINVAL;
1411 			break;
1412 		}
1413 		vq->num = s.num;
1414 		break;
1415 	case VHOST_SET_VRING_BASE:
1416 		/* Moving base with an active backend?
1417 		 * You don't want to do that. */
1418 		if (vq->private_data) {
1419 			r = -EBUSY;
1420 			break;
1421 		}
1422 		if (copy_from_user(&s, argp, sizeof s)) {
1423 			r = -EFAULT;
1424 			break;
1425 		}
1426 		if (s.num > 0xffff) {
1427 			r = -EINVAL;
1428 			break;
1429 		}
1430 		vq->last_avail_idx = s.num;
1431 		/* Forget the cached index value. */
1432 		vq->avail_idx = vq->last_avail_idx;
1433 		break;
1434 	case VHOST_GET_VRING_BASE:
1435 		s.index = idx;
1436 		s.num = vq->last_avail_idx;
1437 		if (copy_to_user(argp, &s, sizeof s))
1438 			r = -EFAULT;
1439 		break;
1440 	case VHOST_SET_VRING_ADDR:
1441 		if (copy_from_user(&a, argp, sizeof a)) {
1442 			r = -EFAULT;
1443 			break;
1444 		}
1445 		if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) {
1446 			r = -EOPNOTSUPP;
1447 			break;
1448 		}
1449 		/* For 32bit, verify that the top 32bits of the user
1450 		   data are set to zero. */
1451 		if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1452 		    (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1453 		    (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) {
1454 			r = -EFAULT;
1455 			break;
1456 		}
1457 
1458 		/* Make sure it's safe to cast pointers to vring types. */
1459 		BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1460 		BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1461 		if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1462 		    (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
1463 		    (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1))) {
1464 			r = -EINVAL;
1465 			break;
1466 		}
1467 
1468 		/* We only verify access here if backend is configured.
1469 		 * If it is not, we don't as size might not have been setup.
1470 		 * We will verify when backend is configured. */
1471 		if (vq->private_data) {
1472 			if (!vq_access_ok(vq, vq->num,
1473 				(void __user *)(unsigned long)a.desc_user_addr,
1474 				(void __user *)(unsigned long)a.avail_user_addr,
1475 				(void __user *)(unsigned long)a.used_user_addr)) {
1476 				r = -EINVAL;
1477 				break;
1478 			}
1479 
1480 			/* Also validate log access for used ring if enabled. */
1481 			if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1482 			    !log_access_ok(vq->log_base, a.log_guest_addr,
1483 					   sizeof *vq->used +
1484 					   vq->num * sizeof *vq->used->ring)) {
1485 				r = -EINVAL;
1486 				break;
1487 			}
1488 		}
1489 
1490 		vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1491 		vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1492 		vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1493 		vq->log_addr = a.log_guest_addr;
1494 		vq->used = (void __user *)(unsigned long)a.used_user_addr;
1495 		break;
1496 	case VHOST_SET_VRING_KICK:
1497 		if (copy_from_user(&f, argp, sizeof f)) {
1498 			r = -EFAULT;
1499 			break;
1500 		}
1501 		eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
1502 		if (IS_ERR(eventfp)) {
1503 			r = PTR_ERR(eventfp);
1504 			break;
1505 		}
1506 		if (eventfp != vq->kick) {
1507 			pollstop = (filep = vq->kick) != NULL;
1508 			pollstart = (vq->kick = eventfp) != NULL;
1509 		} else
1510 			filep = eventfp;
1511 		break;
1512 	case VHOST_SET_VRING_CALL:
1513 		if (copy_from_user(&f, argp, sizeof f)) {
1514 			r = -EFAULT;
1515 			break;
1516 		}
1517 		eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
1518 		if (IS_ERR(eventfp)) {
1519 			r = PTR_ERR(eventfp);
1520 			break;
1521 		}
1522 		if (eventfp != vq->call) {
1523 			filep = vq->call;
1524 			ctx = vq->call_ctx;
1525 			vq->call = eventfp;
1526 			vq->call_ctx = eventfp ?
1527 				eventfd_ctx_fileget(eventfp) : NULL;
1528 		} else
1529 			filep = eventfp;
1530 		break;
1531 	case VHOST_SET_VRING_ERR:
1532 		if (copy_from_user(&f, argp, sizeof f)) {
1533 			r = -EFAULT;
1534 			break;
1535 		}
1536 		eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
1537 		if (IS_ERR(eventfp)) {
1538 			r = PTR_ERR(eventfp);
1539 			break;
1540 		}
1541 		if (eventfp != vq->error) {
1542 			filep = vq->error;
1543 			vq->error = eventfp;
1544 			ctx = vq->error_ctx;
1545 			vq->error_ctx = eventfp ?
1546 				eventfd_ctx_fileget(eventfp) : NULL;
1547 		} else
1548 			filep = eventfp;
1549 		break;
1550 	case VHOST_SET_VRING_ENDIAN:
1551 		r = vhost_set_vring_endian(vq, argp);
1552 		break;
1553 	case VHOST_GET_VRING_ENDIAN:
1554 		r = vhost_get_vring_endian(vq, idx, argp);
1555 		break;
1556 	case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1557 		if (copy_from_user(&s, argp, sizeof(s))) {
1558 			r = -EFAULT;
1559 			break;
1560 		}
1561 		vq->busyloop_timeout = s.num;
1562 		break;
1563 	case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1564 		s.index = idx;
1565 		s.num = vq->busyloop_timeout;
1566 		if (copy_to_user(argp, &s, sizeof(s)))
1567 			r = -EFAULT;
1568 		break;
1569 	default:
1570 		r = -ENOIOCTLCMD;
1571 	}
1572 
1573 	if (pollstop && vq->handle_kick)
1574 		vhost_poll_stop(&vq->poll);
1575 
1576 	if (ctx)
1577 		eventfd_ctx_put(ctx);
1578 	if (filep)
1579 		fput(filep);
1580 
1581 	if (pollstart && vq->handle_kick)
1582 		r = vhost_poll_start(&vq->poll, vq->kick);
1583 
1584 	mutex_unlock(&vq->mutex);
1585 
1586 	if (pollstop && vq->handle_kick)
1587 		vhost_poll_flush(&vq->poll);
1588 	return r;
1589 }
1590 EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
1591 
vhost_init_device_iotlb(struct vhost_dev * d,bool enabled)1592 int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1593 {
1594 	struct vhost_umem *niotlb, *oiotlb;
1595 	int i;
1596 
1597 	niotlb = vhost_umem_alloc();
1598 	if (!niotlb)
1599 		return -ENOMEM;
1600 
1601 	oiotlb = d->iotlb;
1602 	d->iotlb = niotlb;
1603 
1604 	for (i = 0; i < d->nvqs; ++i) {
1605 		struct vhost_virtqueue *vq = d->vqs[i];
1606 
1607 		mutex_lock(&vq->mutex);
1608 		vq->iotlb = niotlb;
1609 		__vhost_vq_meta_reset(vq);
1610 		mutex_unlock(&vq->mutex);
1611 	}
1612 
1613 	vhost_umem_clean(oiotlb);
1614 
1615 	return 0;
1616 }
1617 EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1618 
1619 /* Caller must have device mutex */
vhost_dev_ioctl(struct vhost_dev * d,unsigned int ioctl,void __user * argp)1620 long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
1621 {
1622 	struct file *eventfp, *filep = NULL;
1623 	struct eventfd_ctx *ctx = NULL;
1624 	u64 p;
1625 	long r;
1626 	int i, fd;
1627 
1628 	/* If you are not the owner, you can become one */
1629 	if (ioctl == VHOST_SET_OWNER) {
1630 		r = vhost_dev_set_owner(d);
1631 		goto done;
1632 	}
1633 
1634 	/* You must be the owner to do anything else */
1635 	r = vhost_dev_check_owner(d);
1636 	if (r)
1637 		goto done;
1638 
1639 	switch (ioctl) {
1640 	case VHOST_SET_MEM_TABLE:
1641 		r = vhost_set_memory(d, argp);
1642 		break;
1643 	case VHOST_SET_LOG_BASE:
1644 		if (copy_from_user(&p, argp, sizeof p)) {
1645 			r = -EFAULT;
1646 			break;
1647 		}
1648 		if ((u64)(unsigned long)p != p) {
1649 			r = -EFAULT;
1650 			break;
1651 		}
1652 		for (i = 0; i < d->nvqs; ++i) {
1653 			struct vhost_virtqueue *vq;
1654 			void __user *base = (void __user *)(unsigned long)p;
1655 			vq = d->vqs[i];
1656 			mutex_lock(&vq->mutex);
1657 			/* If ring is inactive, will check when it's enabled. */
1658 			if (vq->private_data && !vq_log_access_ok(vq, base))
1659 				r = -EFAULT;
1660 			else
1661 				vq->log_base = base;
1662 			mutex_unlock(&vq->mutex);
1663 		}
1664 		break;
1665 	case VHOST_SET_LOG_FD:
1666 		r = get_user(fd, (int __user *)argp);
1667 		if (r < 0)
1668 			break;
1669 		eventfp = fd == -1 ? NULL : eventfd_fget(fd);
1670 		if (IS_ERR(eventfp)) {
1671 			r = PTR_ERR(eventfp);
1672 			break;
1673 		}
1674 		if (eventfp != d->log_file) {
1675 			filep = d->log_file;
1676 			d->log_file = eventfp;
1677 			ctx = d->log_ctx;
1678 			d->log_ctx = eventfp ?
1679 				eventfd_ctx_fileget(eventfp) : NULL;
1680 		} else
1681 			filep = eventfp;
1682 		for (i = 0; i < d->nvqs; ++i) {
1683 			mutex_lock(&d->vqs[i]->mutex);
1684 			d->vqs[i]->log_ctx = d->log_ctx;
1685 			mutex_unlock(&d->vqs[i]->mutex);
1686 		}
1687 		if (ctx)
1688 			eventfd_ctx_put(ctx);
1689 		if (filep)
1690 			fput(filep);
1691 		break;
1692 	default:
1693 		r = -ENOIOCTLCMD;
1694 		break;
1695 	}
1696 done:
1697 	return r;
1698 }
1699 EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
1700 
1701 /* TODO: This is really inefficient.  We need something like get_user()
1702  * (instruction directly accesses the data, with an exception table entry
1703  * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1704  */
set_bit_to_user(int nr,void __user * addr)1705 static int set_bit_to_user(int nr, void __user *addr)
1706 {
1707 	unsigned long log = (unsigned long)addr;
1708 	struct page *page;
1709 	void *base;
1710 	int bit = nr + (log % PAGE_SIZE) * 8;
1711 	int r;
1712 
1713 	r = get_user_pages_fast(log, 1, 1, &page);
1714 	if (r < 0)
1715 		return r;
1716 	BUG_ON(r != 1);
1717 	base = kmap_atomic(page);
1718 	set_bit(bit, base);
1719 	kunmap_atomic(base);
1720 	set_page_dirty_lock(page);
1721 	put_page(page);
1722 	return 0;
1723 }
1724 
log_write(void __user * log_base,u64 write_address,u64 write_length)1725 static int log_write(void __user *log_base,
1726 		     u64 write_address, u64 write_length)
1727 {
1728 	u64 write_page = write_address / VHOST_PAGE_SIZE;
1729 	int r;
1730 
1731 	if (!write_length)
1732 		return 0;
1733 	write_length += write_address % VHOST_PAGE_SIZE;
1734 	for (;;) {
1735 		u64 base = (u64)(unsigned long)log_base;
1736 		u64 log = base + write_page / 8;
1737 		int bit = write_page % 8;
1738 		if ((u64)(unsigned long)log != log)
1739 			return -EFAULT;
1740 		r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1741 		if (r < 0)
1742 			return r;
1743 		if (write_length <= VHOST_PAGE_SIZE)
1744 			break;
1745 		write_length -= VHOST_PAGE_SIZE;
1746 		write_page += 1;
1747 	}
1748 	return r;
1749 }
1750 
log_write_hva(struct vhost_virtqueue * vq,u64 hva,u64 len)1751 static int log_write_hva(struct vhost_virtqueue *vq, u64 hva, u64 len)
1752 {
1753 	struct vhost_umem *umem = vq->umem;
1754 	struct vhost_umem_node *u;
1755 	u64 start, end, l, min;
1756 	int r;
1757 	bool hit = false;
1758 
1759 	while (len) {
1760 		min = len;
1761 		/* More than one GPAs can be mapped into a single HVA. So
1762 		 * iterate all possible umems here to be safe.
1763 		 */
1764 		list_for_each_entry(u, &umem->umem_list, link) {
1765 			if (u->userspace_addr > hva - 1 + len ||
1766 			    u->userspace_addr - 1 + u->size < hva)
1767 				continue;
1768 			start = max(u->userspace_addr, hva);
1769 			end = min(u->userspace_addr - 1 + u->size,
1770 				  hva - 1 + len);
1771 			l = end - start + 1;
1772 			r = log_write(vq->log_base,
1773 				      u->start + start - u->userspace_addr,
1774 				      l);
1775 			if (r < 0)
1776 				return r;
1777 			hit = true;
1778 			min = min(l, min);
1779 		}
1780 
1781 		if (!hit)
1782 			return -EFAULT;
1783 
1784 		len -= min;
1785 		hva += min;
1786 	}
1787 
1788 	return 0;
1789 }
1790 
log_used(struct vhost_virtqueue * vq,u64 used_offset,u64 len)1791 static int log_used(struct vhost_virtqueue *vq, u64 used_offset, u64 len)
1792 {
1793 	struct iovec iov[64];
1794 	int i, ret;
1795 
1796 	if (!vq->iotlb)
1797 		return log_write(vq->log_base, vq->log_addr + used_offset, len);
1798 
1799 	ret = translate_desc(vq, (uintptr_t)vq->used + used_offset,
1800 			     len, iov, 64, VHOST_ACCESS_WO);
1801 	if (ret < 0)
1802 		return ret;
1803 
1804 	for (i = 0; i < ret; i++) {
1805 		ret = log_write_hva(vq,	(uintptr_t)iov[i].iov_base,
1806 				    iov[i].iov_len);
1807 		if (ret)
1808 			return ret;
1809 	}
1810 
1811 	return 0;
1812 }
1813 
vhost_log_write(struct vhost_virtqueue * vq,struct vhost_log * log,unsigned int log_num,u64 len,struct iovec * iov,int count)1814 int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
1815 		    unsigned int log_num, u64 len, struct iovec *iov, int count)
1816 {
1817 	int i, r;
1818 
1819 	/* Make sure data written is seen before log. */
1820 	smp_wmb();
1821 
1822 	if (vq->iotlb) {
1823 		for (i = 0; i < count; i++) {
1824 			r = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1825 					  iov[i].iov_len);
1826 			if (r < 0)
1827 				return r;
1828 		}
1829 		return 0;
1830 	}
1831 
1832 	for (i = 0; i < log_num; ++i) {
1833 		u64 l = min(log[i].len, len);
1834 		r = log_write(vq->log_base, log[i].addr, l);
1835 		if (r < 0)
1836 			return r;
1837 		len -= l;
1838 		if (!len) {
1839 			if (vq->log_ctx)
1840 				eventfd_signal(vq->log_ctx, 1);
1841 			return 0;
1842 		}
1843 	}
1844 	/* Length written exceeds what we have stored. This is a bug. */
1845 	BUG();
1846 	return 0;
1847 }
1848 EXPORT_SYMBOL_GPL(vhost_log_write);
1849 
vhost_update_used_flags(struct vhost_virtqueue * vq)1850 static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1851 {
1852 	void __user *used;
1853 	if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
1854 			   &vq->used->flags) < 0)
1855 		return -EFAULT;
1856 	if (unlikely(vq->log_used)) {
1857 		/* Make sure the flag is seen before log. */
1858 		smp_wmb();
1859 		/* Log used flag write. */
1860 		used = &vq->used->flags;
1861 		log_used(vq, (used - (void __user *)vq->used),
1862 			 sizeof vq->used->flags);
1863 		if (vq->log_ctx)
1864 			eventfd_signal(vq->log_ctx, 1);
1865 	}
1866 	return 0;
1867 }
1868 
vhost_update_avail_event(struct vhost_virtqueue * vq,u16 avail_event)1869 static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1870 {
1871 	if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
1872 			   vhost_avail_event(vq)))
1873 		return -EFAULT;
1874 	if (unlikely(vq->log_used)) {
1875 		void __user *used;
1876 		/* Make sure the event is seen before log. */
1877 		smp_wmb();
1878 		/* Log avail event write */
1879 		used = vhost_avail_event(vq);
1880 		log_used(vq, (used - (void __user *)vq->used),
1881 			 sizeof *vhost_avail_event(vq));
1882 		if (vq->log_ctx)
1883 			eventfd_signal(vq->log_ctx, 1);
1884 	}
1885 	return 0;
1886 }
1887 
vhost_vq_init_access(struct vhost_virtqueue * vq)1888 int vhost_vq_init_access(struct vhost_virtqueue *vq)
1889 {
1890 	__virtio16 last_used_idx;
1891 	int r;
1892 	bool is_le = vq->is_le;
1893 
1894 	if (!vq->private_data)
1895 		return 0;
1896 
1897 	vhost_init_is_le(vq);
1898 
1899 	r = vhost_update_used_flags(vq);
1900 	if (r)
1901 		goto err;
1902 	vq->signalled_used_valid = false;
1903 	if (!vq->iotlb &&
1904 	    !access_ok(VERIFY_READ, &vq->used->idx, sizeof vq->used->idx)) {
1905 		r = -EFAULT;
1906 		goto err;
1907 	}
1908 	r = vhost_get_used(vq, last_used_idx, &vq->used->idx);
1909 	if (r) {
1910 		vq_err(vq, "Can't access used idx at %p\n",
1911 		       &vq->used->idx);
1912 		goto err;
1913 	}
1914 	vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
1915 	return 0;
1916 
1917 err:
1918 	vq->is_le = is_le;
1919 	return r;
1920 }
1921 EXPORT_SYMBOL_GPL(vhost_vq_init_access);
1922 
translate_desc(struct vhost_virtqueue * vq,u64 addr,u32 len,struct iovec iov[],int iov_size,int access)1923 static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
1924 			  struct iovec iov[], int iov_size, int access)
1925 {
1926 	const struct vhost_umem_node *node;
1927 	struct vhost_dev *dev = vq->dev;
1928 	struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
1929 	struct iovec *_iov;
1930 	u64 s = 0;
1931 	int ret = 0;
1932 
1933 	while ((u64)len > s) {
1934 		u64 size;
1935 		if (unlikely(ret >= iov_size)) {
1936 			ret = -ENOBUFS;
1937 			break;
1938 		}
1939 
1940 		node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1941 							addr, addr + len - 1);
1942 		if (node == NULL || node->start > addr) {
1943 			if (umem != dev->iotlb) {
1944 				ret = -EFAULT;
1945 				break;
1946 			}
1947 			ret = -EAGAIN;
1948 			break;
1949 		} else if (!(node->perm & access)) {
1950 			ret = -EPERM;
1951 			break;
1952 		}
1953 
1954 		_iov = iov + ret;
1955 		size = node->size - addr + node->start;
1956 		_iov->iov_len = min((u64)len - s, size);
1957 		_iov->iov_base = (void __user *)(unsigned long)
1958 			(node->userspace_addr + addr - node->start);
1959 		s += size;
1960 		addr += size;
1961 		++ret;
1962 	}
1963 
1964 	if (ret == -EAGAIN)
1965 		vhost_iotlb_miss(vq, addr, access);
1966 	return ret;
1967 }
1968 
1969 /* Each buffer in the virtqueues is actually a chain of descriptors.  This
1970  * function returns the next descriptor in the chain,
1971  * or -1U if we're at the end. */
next_desc(struct vhost_virtqueue * vq,struct vring_desc * desc)1972 static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
1973 {
1974 	unsigned int next;
1975 
1976 	/* If this descriptor says it doesn't chain, we're done. */
1977 	if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
1978 		return -1U;
1979 
1980 	/* Check they're not leading us off end of descriptors. */
1981 	next = vhost16_to_cpu(vq, desc->next);
1982 	/* Make sure compiler knows to grab that: we don't want it changing! */
1983 	/* We will use the result as an index in an array, so most
1984 	 * architectures only need a compiler barrier here. */
1985 	read_barrier_depends();
1986 
1987 	return next;
1988 }
1989 
get_indirect(struct vhost_virtqueue * vq,struct iovec iov[],unsigned int iov_size,unsigned int * out_num,unsigned int * in_num,struct vhost_log * log,unsigned int * log_num,struct vring_desc * indirect)1990 static int get_indirect(struct vhost_virtqueue *vq,
1991 			struct iovec iov[], unsigned int iov_size,
1992 			unsigned int *out_num, unsigned int *in_num,
1993 			struct vhost_log *log, unsigned int *log_num,
1994 			struct vring_desc *indirect)
1995 {
1996 	struct vring_desc desc;
1997 	unsigned int i = 0, count, found = 0;
1998 	u32 len = vhost32_to_cpu(vq, indirect->len);
1999 	struct iov_iter from;
2000 	int ret, access;
2001 
2002 	/* Sanity check */
2003 	if (unlikely(len % sizeof desc)) {
2004 		vq_err(vq, "Invalid length in indirect descriptor: "
2005 		       "len 0x%llx not multiple of 0x%zx\n",
2006 		       (unsigned long long)len,
2007 		       sizeof desc);
2008 		return -EINVAL;
2009 	}
2010 
2011 	ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
2012 			     UIO_MAXIOV, VHOST_ACCESS_RO);
2013 	if (unlikely(ret < 0)) {
2014 		if (ret != -EAGAIN)
2015 			vq_err(vq, "Translation failure %d in indirect.\n", ret);
2016 		return ret;
2017 	}
2018 	iov_iter_init(&from, READ, vq->indirect, ret, len);
2019 
2020 	/* We will use the result as an address to read from, so most
2021 	 * architectures only need a compiler barrier here. */
2022 	read_barrier_depends();
2023 
2024 	count = len / sizeof desc;
2025 	/* Buffers are chained via a 16 bit next field, so
2026 	 * we can have at most 2^16 of these. */
2027 	if (unlikely(count > USHRT_MAX + 1)) {
2028 		vq_err(vq, "Indirect buffer length too big: %d\n",
2029 		       indirect->len);
2030 		return -E2BIG;
2031 	}
2032 
2033 	do {
2034 		unsigned iov_count = *in_num + *out_num;
2035 		if (unlikely(++found > count)) {
2036 			vq_err(vq, "Loop detected: last one at %u "
2037 			       "indirect size %u\n",
2038 			       i, count);
2039 			return -EINVAL;
2040 		}
2041 		if (unlikely(!copy_from_iter_full(&desc, sizeof(desc), &from))) {
2042 			vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
2043 			       i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
2044 			return -EINVAL;
2045 		}
2046 		if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
2047 			vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
2048 			       i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
2049 			return -EINVAL;
2050 		}
2051 
2052 		if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2053 			access = VHOST_ACCESS_WO;
2054 		else
2055 			access = VHOST_ACCESS_RO;
2056 
2057 		ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2058 				     vhost32_to_cpu(vq, desc.len), iov + iov_count,
2059 				     iov_size - iov_count, access);
2060 		if (unlikely(ret < 0)) {
2061 			if (ret != -EAGAIN)
2062 				vq_err(vq, "Translation failure %d indirect idx %d\n",
2063 					ret, i);
2064 			return ret;
2065 		}
2066 		/* If this is an input descriptor, increment that count. */
2067 		if (access == VHOST_ACCESS_WO) {
2068 			*in_num += ret;
2069 			if (unlikely(log && ret)) {
2070 				log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2071 				log[*log_num].len = vhost32_to_cpu(vq, desc.len);
2072 				++*log_num;
2073 			}
2074 		} else {
2075 			/* If it's an output descriptor, they're all supposed
2076 			 * to come before any input descriptors. */
2077 			if (unlikely(*in_num)) {
2078 				vq_err(vq, "Indirect descriptor "
2079 				       "has out after in: idx %d\n", i);
2080 				return -EINVAL;
2081 			}
2082 			*out_num += ret;
2083 		}
2084 	} while ((i = next_desc(vq, &desc)) != -1);
2085 	return 0;
2086 }
2087 
2088 /* This looks in the virtqueue and for the first available buffer, and converts
2089  * it to an iovec for convenient access.  Since descriptors consist of some
2090  * number of output then some number of input descriptors, it's actually two
2091  * iovecs, but we pack them into one and note how many of each there were.
2092  *
2093  * This function returns the descriptor number found, or vq->num (which is
2094  * never a valid descriptor number) if none was found.  A negative code is
2095  * returned on error. */
vhost_get_vq_desc(struct vhost_virtqueue * vq,struct iovec iov[],unsigned int iov_size,unsigned int * out_num,unsigned int * in_num,struct vhost_log * log,unsigned int * log_num)2096 int vhost_get_vq_desc(struct vhost_virtqueue *vq,
2097 		      struct iovec iov[], unsigned int iov_size,
2098 		      unsigned int *out_num, unsigned int *in_num,
2099 		      struct vhost_log *log, unsigned int *log_num)
2100 {
2101 	struct vring_desc desc;
2102 	unsigned int i, head, found = 0;
2103 	u16 last_avail_idx;
2104 	__virtio16 avail_idx;
2105 	__virtio16 ring_head;
2106 	int ret, access;
2107 
2108 	/* Check it isn't doing very strange things with descriptor numbers. */
2109 	last_avail_idx = vq->last_avail_idx;
2110 
2111 	if (vq->avail_idx == vq->last_avail_idx) {
2112 		if (unlikely(vhost_get_avail(vq, avail_idx, &vq->avail->idx))) {
2113 			vq_err(vq, "Failed to access avail idx at %p\n",
2114 				&vq->avail->idx);
2115 			return -EFAULT;
2116 		}
2117 		vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2118 
2119 		if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
2120 			vq_err(vq, "Guest moved used index from %u to %u",
2121 				last_avail_idx, vq->avail_idx);
2122 			return -EFAULT;
2123 		}
2124 
2125 		/* If there's nothing new since last we looked, return
2126 		 * invalid.
2127 		 */
2128 		if (vq->avail_idx == last_avail_idx)
2129 			return vq->num;
2130 
2131 		/* Only get avail ring entries after they have been
2132 		 * exposed by guest.
2133 		 */
2134 		smp_rmb();
2135 	}
2136 
2137 	/* Grab the next descriptor number they're advertising, and increment
2138 	 * the index we've seen. */
2139 	if (unlikely(vhost_get_avail(vq, ring_head,
2140 		     &vq->avail->ring[last_avail_idx & (vq->num - 1)]))) {
2141 		vq_err(vq, "Failed to read head: idx %d address %p\n",
2142 		       last_avail_idx,
2143 		       &vq->avail->ring[last_avail_idx % vq->num]);
2144 		return -EFAULT;
2145 	}
2146 
2147 	head = vhost16_to_cpu(vq, ring_head);
2148 
2149 	/* If their number is silly, that's an error. */
2150 	if (unlikely(head >= vq->num)) {
2151 		vq_err(vq, "Guest says index %u > %u is available",
2152 		       head, vq->num);
2153 		return -EINVAL;
2154 	}
2155 
2156 	/* When we start there are none of either input nor output. */
2157 	*out_num = *in_num = 0;
2158 	if (unlikely(log))
2159 		*log_num = 0;
2160 
2161 	i = head;
2162 	do {
2163 		unsigned iov_count = *in_num + *out_num;
2164 		if (unlikely(i >= vq->num)) {
2165 			vq_err(vq, "Desc index is %u > %u, head = %u",
2166 			       i, vq->num, head);
2167 			return -EINVAL;
2168 		}
2169 		if (unlikely(++found > vq->num)) {
2170 			vq_err(vq, "Loop detected: last one at %u "
2171 			       "vq size %u head %u\n",
2172 			       i, vq->num, head);
2173 			return -EINVAL;
2174 		}
2175 		ret = vhost_copy_from_user(vq, &desc, vq->desc + i,
2176 					   sizeof desc);
2177 		if (unlikely(ret)) {
2178 			vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
2179 			       i, vq->desc + i);
2180 			return -EFAULT;
2181 		}
2182 		if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
2183 			ret = get_indirect(vq, iov, iov_size,
2184 					   out_num, in_num,
2185 					   log, log_num, &desc);
2186 			if (unlikely(ret < 0)) {
2187 				if (ret != -EAGAIN)
2188 					vq_err(vq, "Failure detected "
2189 						"in indirect descriptor at idx %d\n", i);
2190 				return ret;
2191 			}
2192 			continue;
2193 		}
2194 
2195 		if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2196 			access = VHOST_ACCESS_WO;
2197 		else
2198 			access = VHOST_ACCESS_RO;
2199 		ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2200 				     vhost32_to_cpu(vq, desc.len), iov + iov_count,
2201 				     iov_size - iov_count, access);
2202 		if (unlikely(ret < 0)) {
2203 			if (ret != -EAGAIN)
2204 				vq_err(vq, "Translation failure %d descriptor idx %d\n",
2205 					ret, i);
2206 			return ret;
2207 		}
2208 		if (access == VHOST_ACCESS_WO) {
2209 			/* If this is an input descriptor,
2210 			 * increment that count. */
2211 			*in_num += ret;
2212 			if (unlikely(log && ret)) {
2213 				log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2214 				log[*log_num].len = vhost32_to_cpu(vq, desc.len);
2215 				++*log_num;
2216 			}
2217 		} else {
2218 			/* If it's an output descriptor, they're all supposed
2219 			 * to come before any input descriptors. */
2220 			if (unlikely(*in_num)) {
2221 				vq_err(vq, "Descriptor has out after in: "
2222 				       "idx %d\n", i);
2223 				return -EINVAL;
2224 			}
2225 			*out_num += ret;
2226 		}
2227 	} while ((i = next_desc(vq, &desc)) != -1);
2228 
2229 	/* On success, increment avail index. */
2230 	vq->last_avail_idx++;
2231 
2232 	/* Assume notifications from guest are disabled at this point,
2233 	 * if they aren't we would need to update avail_event index. */
2234 	BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
2235 	return head;
2236 }
2237 EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
2238 
2239 /* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
vhost_discard_vq_desc(struct vhost_virtqueue * vq,int n)2240 void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
2241 {
2242 	vq->last_avail_idx -= n;
2243 }
2244 EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
2245 
2246 /* After we've used one of their buffers, we tell them about it.  We'll then
2247  * want to notify the guest, using eventfd. */
vhost_add_used(struct vhost_virtqueue * vq,unsigned int head,int len)2248 int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2249 {
2250 	struct vring_used_elem heads = {
2251 		cpu_to_vhost32(vq, head),
2252 		cpu_to_vhost32(vq, len)
2253 	};
2254 
2255 	return vhost_add_used_n(vq, &heads, 1);
2256 }
2257 EXPORT_SYMBOL_GPL(vhost_add_used);
2258 
__vhost_add_used_n(struct vhost_virtqueue * vq,struct vring_used_elem * heads,unsigned count)2259 static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2260 			    struct vring_used_elem *heads,
2261 			    unsigned count)
2262 {
2263 	struct vring_used_elem __user *used;
2264 	u16 old, new;
2265 	int start;
2266 
2267 	start = vq->last_used_idx & (vq->num - 1);
2268 	used = vq->used->ring + start;
2269 	if (count == 1) {
2270 		if (vhost_put_user(vq, heads[0].id, &used->id)) {
2271 			vq_err(vq, "Failed to write used id");
2272 			return -EFAULT;
2273 		}
2274 		if (vhost_put_user(vq, heads[0].len, &used->len)) {
2275 			vq_err(vq, "Failed to write used len");
2276 			return -EFAULT;
2277 		}
2278 	} else if (vhost_copy_to_user(vq, used, heads, count * sizeof *used)) {
2279 		vq_err(vq, "Failed to write used");
2280 		return -EFAULT;
2281 	}
2282 	if (unlikely(vq->log_used)) {
2283 		/* Make sure data is seen before log. */
2284 		smp_wmb();
2285 		/* Log used ring entry write. */
2286 		log_used(vq, ((void __user *)used - (void __user *)vq->used),
2287 			 count * sizeof *used);
2288 	}
2289 	old = vq->last_used_idx;
2290 	new = (vq->last_used_idx += count);
2291 	/* If the driver never bothers to signal in a very long while,
2292 	 * used index might wrap around. If that happens, invalidate
2293 	 * signalled_used index we stored. TODO: make sure driver
2294 	 * signals at least once in 2^16 and remove this. */
2295 	if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2296 		vq->signalled_used_valid = false;
2297 	return 0;
2298 }
2299 
2300 /* After we've used one of their buffers, we tell them about it.  We'll then
2301  * want to notify the guest, using eventfd. */
vhost_add_used_n(struct vhost_virtqueue * vq,struct vring_used_elem * heads,unsigned count)2302 int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2303 		     unsigned count)
2304 {
2305 	int start, n, r;
2306 
2307 	start = vq->last_used_idx & (vq->num - 1);
2308 	n = vq->num - start;
2309 	if (n < count) {
2310 		r = __vhost_add_used_n(vq, heads, n);
2311 		if (r < 0)
2312 			return r;
2313 		heads += n;
2314 		count -= n;
2315 	}
2316 	r = __vhost_add_used_n(vq, heads, count);
2317 
2318 	/* Make sure buffer is written before we update index. */
2319 	smp_wmb();
2320 	if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
2321 			   &vq->used->idx)) {
2322 		vq_err(vq, "Failed to increment used idx");
2323 		return -EFAULT;
2324 	}
2325 	if (unlikely(vq->log_used)) {
2326 		/* Make sure used idx is seen before log. */
2327 		smp_wmb();
2328 		/* Log used index update. */
2329 		log_used(vq, offsetof(struct vring_used, idx),
2330 			 sizeof vq->used->idx);
2331 		if (vq->log_ctx)
2332 			eventfd_signal(vq->log_ctx, 1);
2333 	}
2334 	return r;
2335 }
2336 EXPORT_SYMBOL_GPL(vhost_add_used_n);
2337 
vhost_notify(struct vhost_dev * dev,struct vhost_virtqueue * vq)2338 static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2339 {
2340 	__u16 old, new;
2341 	__virtio16 event;
2342 	bool v;
2343 	/* Flush out used index updates. This is paired
2344 	 * with the barrier that the Guest executes when enabling
2345 	 * interrupts. */
2346 	smp_mb();
2347 
2348 	if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
2349 	    unlikely(vq->avail_idx == vq->last_avail_idx))
2350 		return true;
2351 
2352 	if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
2353 		__virtio16 flags;
2354 		if (vhost_get_avail(vq, flags, &vq->avail->flags)) {
2355 			vq_err(vq, "Failed to get flags");
2356 			return true;
2357 		}
2358 		return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
2359 	}
2360 	old = vq->signalled_used;
2361 	v = vq->signalled_used_valid;
2362 	new = vq->signalled_used = vq->last_used_idx;
2363 	vq->signalled_used_valid = true;
2364 
2365 	if (unlikely(!v))
2366 		return true;
2367 
2368 	if (vhost_get_avail(vq, event, vhost_used_event(vq))) {
2369 		vq_err(vq, "Failed to get used event idx");
2370 		return true;
2371 	}
2372 	return vring_need_event(vhost16_to_cpu(vq, event), new, old);
2373 }
2374 
2375 /* This actually signals the guest, using eventfd. */
vhost_signal(struct vhost_dev * dev,struct vhost_virtqueue * vq)2376 void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2377 {
2378 	/* Signal the Guest tell them we used something up. */
2379 	if (vq->call_ctx && vhost_notify(dev, vq))
2380 		eventfd_signal(vq->call_ctx, 1);
2381 }
2382 EXPORT_SYMBOL_GPL(vhost_signal);
2383 
2384 /* And here's the combo meal deal.  Supersize me! */
vhost_add_used_and_signal(struct vhost_dev * dev,struct vhost_virtqueue * vq,unsigned int head,int len)2385 void vhost_add_used_and_signal(struct vhost_dev *dev,
2386 			       struct vhost_virtqueue *vq,
2387 			       unsigned int head, int len)
2388 {
2389 	vhost_add_used(vq, head, len);
2390 	vhost_signal(dev, vq);
2391 }
2392 EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
2393 
2394 /* multi-buffer version of vhost_add_used_and_signal */
vhost_add_used_and_signal_n(struct vhost_dev * dev,struct vhost_virtqueue * vq,struct vring_used_elem * heads,unsigned count)2395 void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2396 				 struct vhost_virtqueue *vq,
2397 				 struct vring_used_elem *heads, unsigned count)
2398 {
2399 	vhost_add_used_n(vq, heads, count);
2400 	vhost_signal(dev, vq);
2401 }
2402 EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
2403 
2404 /* return true if we're sure that avaiable ring is empty */
vhost_vq_avail_empty(struct vhost_dev * dev,struct vhost_virtqueue * vq)2405 bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2406 {
2407 	__virtio16 avail_idx;
2408 	int r;
2409 
2410 	if (vq->avail_idx != vq->last_avail_idx)
2411 		return false;
2412 
2413 	r = vhost_get_avail(vq, avail_idx, &vq->avail->idx);
2414 	if (unlikely(r))
2415 		return false;
2416 	vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2417 
2418 	return vq->avail_idx == vq->last_avail_idx;
2419 }
2420 EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2421 
2422 /* OK, now we need to know about added descriptors. */
vhost_enable_notify(struct vhost_dev * dev,struct vhost_virtqueue * vq)2423 bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2424 {
2425 	__virtio16 avail_idx;
2426 	int r;
2427 
2428 	if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2429 		return false;
2430 	vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
2431 	if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
2432 		r = vhost_update_used_flags(vq);
2433 		if (r) {
2434 			vq_err(vq, "Failed to enable notification at %p: %d\n",
2435 			       &vq->used->flags, r);
2436 			return false;
2437 		}
2438 	} else {
2439 		r = vhost_update_avail_event(vq, vq->avail_idx);
2440 		if (r) {
2441 			vq_err(vq, "Failed to update avail event index at %p: %d\n",
2442 			       vhost_avail_event(vq), r);
2443 			return false;
2444 		}
2445 	}
2446 	/* They could have slipped one in as we were doing that: make
2447 	 * sure it's written, then check again. */
2448 	smp_mb();
2449 	r = vhost_get_avail(vq, avail_idx, &vq->avail->idx);
2450 	if (r) {
2451 		vq_err(vq, "Failed to check avail idx at %p: %d\n",
2452 		       &vq->avail->idx, r);
2453 		return false;
2454 	}
2455 
2456 	return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
2457 }
2458 EXPORT_SYMBOL_GPL(vhost_enable_notify);
2459 
2460 /* We don't need to be notified again. */
vhost_disable_notify(struct vhost_dev * dev,struct vhost_virtqueue * vq)2461 void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2462 {
2463 	int r;
2464 
2465 	if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2466 		return;
2467 	vq->used_flags |= VRING_USED_F_NO_NOTIFY;
2468 	if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
2469 		r = vhost_update_used_flags(vq);
2470 		if (r)
2471 			vq_err(vq, "Failed to enable notification at %p: %d\n",
2472 			       &vq->used->flags, r);
2473 	}
2474 }
2475 EXPORT_SYMBOL_GPL(vhost_disable_notify);
2476 
2477 /* Create a new message. */
vhost_new_msg(struct vhost_virtqueue * vq,int type)2478 struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2479 {
2480 	struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2481 	if (!node)
2482 		return NULL;
2483 
2484 	/* Make sure all padding within the structure is initialized. */
2485 	memset(&node->msg, 0, sizeof node->msg);
2486 	node->vq = vq;
2487 	node->msg.type = type;
2488 	return node;
2489 }
2490 EXPORT_SYMBOL_GPL(vhost_new_msg);
2491 
vhost_enqueue_msg(struct vhost_dev * dev,struct list_head * head,struct vhost_msg_node * node)2492 void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2493 		       struct vhost_msg_node *node)
2494 {
2495 	spin_lock(&dev->iotlb_lock);
2496 	list_add_tail(&node->node, head);
2497 	spin_unlock(&dev->iotlb_lock);
2498 
2499 	wake_up_interruptible_poll(&dev->wait, POLLIN | POLLRDNORM);
2500 }
2501 EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2502 
vhost_dequeue_msg(struct vhost_dev * dev,struct list_head * head)2503 struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2504 					 struct list_head *head)
2505 {
2506 	struct vhost_msg_node *node = NULL;
2507 
2508 	spin_lock(&dev->iotlb_lock);
2509 	if (!list_empty(head)) {
2510 		node = list_first_entry(head, struct vhost_msg_node,
2511 					node);
2512 		list_del(&node->node);
2513 	}
2514 	spin_unlock(&dev->iotlb_lock);
2515 
2516 	return node;
2517 }
2518 EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2519 
2520 
vhost_init(void)2521 static int __init vhost_init(void)
2522 {
2523 	return 0;
2524 }
2525 
vhost_exit(void)2526 static void __exit vhost_exit(void)
2527 {
2528 }
2529 
2530 module_init(vhost_init);
2531 module_exit(vhost_exit);
2532 
2533 MODULE_VERSION("0.0.1");
2534 MODULE_LICENSE("GPL v2");
2535 MODULE_AUTHOR("Michael S. Tsirkin");
2536 MODULE_DESCRIPTION("Host kernel accelerator for virtio");
2537