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