blob: 4c5625cb540c51912f38c0be3d35ad041b98eeb0 [file] [log] [blame]
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001/* 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
Rob Landley61516582011-05-06 09:27:36 -07007 * Documentation/virtual/lguest/lguest.c, by Rusty Russell
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008 *
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>
Asias He35596b22013-08-19 09:23:19 +080016#include <linux/uio.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000017#include <linux/mm.h>
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +020018#include <linux/mmu_context.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000019#include <linux/miscdevice.h>
20#include <linux/mutex.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000021#include <linux/poll.h>
22#include <linux/file.h>
23#include <linux/highmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Igor Mammedov4de72552015-07-01 11:07:09 +020025#include <linux/vmalloc.h>
Tejun Heoc23f34452010-06-02 20:40:00 +020026#include <linux/kthread.h>
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +030027#include <linux/cgroup.h>
Asias He6ac1afb2013-05-06 16:38:21 +080028#include <linux/module.h>
Igor Mammedovbcfeaca2015-06-16 18:33:35 +020029#include <linux/sort.h>
Jason Wanga9709d62016-06-23 02:04:31 -040030#include <linux/interval_tree_generic.h>
Jason Wang242e6f522018-10-30 14:10:49 +080031#include <linux/nospec.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000032
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000033#include "vhost.h"
34
Igor Mammedovc9ce42f2015-07-02 15:08:11 +020035static ushort max_mem_regions = 64;
36module_param(max_mem_regions, ushort, 0444);
37MODULE_PARM_DESC(max_mem_regions,
38 "Maximum number of memory regions in memory map. (default: 64)");
Jason Wang6b1e6cc2016-06-23 02:04:32 -040039static int max_iotlb_entries = 2048;
40module_param(max_iotlb_entries, int, 0444);
41MODULE_PARM_DESC(max_iotlb_entries,
42 "Maximum number of iotlb entries. (default: 2048)");
Igor Mammedovc9ce42f2015-07-02 15:08:11 +020043
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000044enum {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000045 VHOST_MEMORY_F_LOG = 0x1,
46};
47
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +030048#define vhost_used_event(vq) ((__virtio16 __user *)&vq->avail->ring[vq->num])
49#define vhost_avail_event(vq) ((__virtio16 __user *)&vq->used->ring[vq->num])
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +030050
Jason Wanga9709d62016-06-23 02:04:31 -040051INTERVAL_TREE_DEFINE(struct vhost_umem_node,
52 rb, __u64, __subtree_last,
53 START, LAST, , vhost_umem_interval_tree);
54
Greg Kurz2751c982015-04-24 14:27:24 +020055#ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
Greg Kurzc5072032016-02-16 15:59:34 +010056static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
Greg Kurz2751c982015-04-24 14:27:24 +020057{
58 vq->user_be = !virtio_legacy_is_little_endian();
59}
60
Greg Kurzc5072032016-02-16 15:59:34 +010061static void vhost_enable_cross_endian_big(struct vhost_virtqueue *vq)
62{
63 vq->user_be = true;
64}
65
66static void vhost_enable_cross_endian_little(struct vhost_virtqueue *vq)
67{
68 vq->user_be = false;
69}
70
Greg Kurz2751c982015-04-24 14:27:24 +020071static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
72{
73 struct vhost_vring_state s;
74
75 if (vq->private_data)
76 return -EBUSY;
77
78 if (copy_from_user(&s, argp, sizeof(s)))
79 return -EFAULT;
80
81 if (s.num != VHOST_VRING_LITTLE_ENDIAN &&
82 s.num != VHOST_VRING_BIG_ENDIAN)
83 return -EINVAL;
84
Greg Kurzc5072032016-02-16 15:59:34 +010085 if (s.num == VHOST_VRING_BIG_ENDIAN)
86 vhost_enable_cross_endian_big(vq);
87 else
88 vhost_enable_cross_endian_little(vq);
Greg Kurz2751c982015-04-24 14:27:24 +020089
90 return 0;
91}
92
93static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
94 int __user *argp)
95{
96 struct vhost_vring_state s = {
97 .index = idx,
98 .num = vq->user_be
99 };
100
101 if (copy_to_user(argp, &s, sizeof(s)))
102 return -EFAULT;
103
104 return 0;
105}
106
107static void vhost_init_is_le(struct vhost_virtqueue *vq)
108{
109 /* Note for legacy virtio: user_be is initialized at reset time
110 * according to the host endianness. If userspace does not set an
111 * explicit endianness, the default behavior is native endian, as
112 * expected by legacy virtio.
113 */
114 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1) || !vq->user_be;
115}
116#else
Greg Kurzc5072032016-02-16 15:59:34 +0100117static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
Greg Kurz2751c982015-04-24 14:27:24 +0200118{
119}
120
121static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
122{
123 return -ENOIOCTLCMD;
124}
125
126static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
127 int __user *argp)
128{
129 return -ENOIOCTLCMD;
130}
131
132static void vhost_init_is_le(struct vhost_virtqueue *vq)
133{
Halil Pasic1594edd2017-01-30 11:09:36 +0100134 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1)
135 || virtio_legacy_is_little_endian();
Greg Kurz2751c982015-04-24 14:27:24 +0200136}
137#endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */
138
Greg Kurzc5072032016-02-16 15:59:34 +0100139static void vhost_reset_is_le(struct vhost_virtqueue *vq)
140{
Halil Pasic1594edd2017-01-30 11:09:36 +0100141 vhost_init_is_le(vq);
Greg Kurzc5072032016-02-16 15:59:34 +0100142}
143
Jason Wang7235acd2016-04-25 22:14:32 -0400144struct vhost_flush_struct {
145 struct vhost_work work;
146 struct completion wait_event;
147};
148
149static void vhost_flush_work(struct vhost_work *work)
150{
151 struct vhost_flush_struct *s;
152
153 s = container_of(work, struct vhost_flush_struct, work);
154 complete(&s->wait_event);
155}
156
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000157static void vhost_poll_func(struct file *file, wait_queue_head_t *wqh,
158 poll_table *pt)
159{
160 struct vhost_poll *poll;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000161
Krishna Kumard47effe2011-03-01 17:06:37 +0530162 poll = container_of(pt, struct vhost_poll, table);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000163 poll->wqh = wqh;
164 add_wait_queue(wqh, &poll->wait);
165}
166
167static int vhost_poll_wakeup(wait_queue_t *wait, unsigned mode, int sync,
168 void *key)
169{
Tejun Heoc23f34452010-06-02 20:40:00 +0200170 struct vhost_poll *poll = container_of(wait, struct vhost_poll, wait);
171
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000172 if (!((unsigned long)key & poll->mask))
173 return 0;
174
Tejun Heoc23f34452010-06-02 20:40:00 +0200175 vhost_poll_queue(poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000176 return 0;
177}
178
Stefan Hajnoczi163049a2012-07-21 06:55:37 +0000179void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000180{
Jason Wang04b96e52016-04-25 22:14:33 -0400181 clear_bit(VHOST_WORK_QUEUED, &work->flags);
Tejun Heoc23f34452010-06-02 20:40:00 +0200182 work->fn = fn;
183 init_waitqueue_head(&work->done);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000184}
Asias He6ac1afb2013-05-06 16:38:21 +0800185EXPORT_SYMBOL_GPL(vhost_work_init);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000186
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300187/* Init poll structure */
188void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
189 unsigned long mask, struct vhost_dev *dev)
190{
191 init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup);
192 init_poll_funcptr(&poll->table, vhost_poll_func);
193 poll->mask = mask;
194 poll->dev = dev;
Jason Wang2b8b3282013-01-28 01:05:18 +0000195 poll->wqh = NULL;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300196
197 vhost_work_init(&poll->work, fn);
198}
Asias He6ac1afb2013-05-06 16:38:21 +0800199EXPORT_SYMBOL_GPL(vhost_poll_init);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300200
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000201/* Start polling a file. We add ourselves to file's wait queue. The caller must
202 * keep a reference to a file until after vhost_poll_stop is called. */
Jason Wang2b8b3282013-01-28 01:05:18 +0000203int vhost_poll_start(struct vhost_poll *poll, struct file *file)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000204{
205 unsigned long mask;
Jason Wang2b8b3282013-01-28 01:05:18 +0000206 int ret = 0;
Krishna Kumard47effe2011-03-01 17:06:37 +0530207
Jason Wang70181d512013-04-10 20:50:48 +0000208 if (poll->wqh)
209 return 0;
210
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000211 mask = file->f_op->poll(file, &poll->table);
212 if (mask)
213 vhost_poll_wakeup(&poll->wait, 0, 0, (void *)mask);
Jason Wang2b8b3282013-01-28 01:05:18 +0000214 if (mask & POLLERR) {
Jason Wang827148d2018-03-27 20:50:52 +0800215 vhost_poll_stop(poll);
Jason Wang2b8b3282013-01-28 01:05:18 +0000216 ret = -EINVAL;
217 }
218
219 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000220}
Asias He6ac1afb2013-05-06 16:38:21 +0800221EXPORT_SYMBOL_GPL(vhost_poll_start);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000222
223/* Stop polling a file. After this function returns, it becomes safe to drop the
224 * file reference. You must also flush afterwards. */
225void vhost_poll_stop(struct vhost_poll *poll)
226{
Jason Wang2b8b3282013-01-28 01:05:18 +0000227 if (poll->wqh) {
228 remove_wait_queue(poll->wqh, &poll->wait);
229 poll->wqh = NULL;
230 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000231}
Asias He6ac1afb2013-05-06 16:38:21 +0800232EXPORT_SYMBOL_GPL(vhost_poll_stop);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000233
Asias He6ac1afb2013-05-06 16:38:21 +0800234void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000235{
Jason Wang7235acd2016-04-25 22:14:32 -0400236 struct vhost_flush_struct flush;
Tejun Heoc23f34452010-06-02 20:40:00 +0200237
Jason Wang7235acd2016-04-25 22:14:32 -0400238 if (dev->worker) {
239 init_completion(&flush.wait_event);
240 vhost_work_init(&flush.work, vhost_flush_work);
241
242 vhost_work_queue(dev, &flush.work);
243 wait_for_completion(&flush.wait_event);
244 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000245}
Asias He6ac1afb2013-05-06 16:38:21 +0800246EXPORT_SYMBOL_GPL(vhost_work_flush);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000247
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300248/* Flush any work that has been scheduled. When calling this, don't hold any
249 * locks that are also used by the callback. */
250void vhost_poll_flush(struct vhost_poll *poll)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000251{
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300252 vhost_work_flush(poll->dev, &poll->work);
253}
Asias He6ac1afb2013-05-06 16:38:21 +0800254EXPORT_SYMBOL_GPL(vhost_poll_flush);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300255
Stefan Hajnoczi163049a2012-07-21 06:55:37 +0000256void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work)
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300257{
Jason Wang04b96e52016-04-25 22:14:33 -0400258 if (!dev->worker)
259 return;
Tejun Heoc23f34452010-06-02 20:40:00 +0200260
Jason Wang04b96e52016-04-25 22:14:33 -0400261 if (!test_and_set_bit(VHOST_WORK_QUEUED, &work->flags)) {
262 /* We can only add the work to the list after we're
263 * sure it was not in the list.
264 */
265 smp_mb();
266 llist_add(&work->node, &dev->work_list);
Tejun Heoc23f34452010-06-02 20:40:00 +0200267 wake_up_process(dev->worker);
268 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000269}
Asias He6ac1afb2013-05-06 16:38:21 +0800270EXPORT_SYMBOL_GPL(vhost_work_queue);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000271
Jason Wang526d3e72016-03-04 06:24:51 -0500272/* A lockless hint for busy polling code to exit the loop */
273bool vhost_has_work(struct vhost_dev *dev)
274{
Jason Wang04b96e52016-04-25 22:14:33 -0400275 return !llist_empty(&dev->work_list);
Jason Wang526d3e72016-03-04 06:24:51 -0500276}
277EXPORT_SYMBOL_GPL(vhost_has_work);
278
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300279void vhost_poll_queue(struct vhost_poll *poll)
280{
281 vhost_work_queue(poll->dev, &poll->work);
282}
Asias He6ac1afb2013-05-06 16:38:21 +0800283EXPORT_SYMBOL_GPL(vhost_poll_queue);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300284
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000285static void vhost_vq_reset(struct vhost_dev *dev,
286 struct vhost_virtqueue *vq)
287{
288 vq->num = 1;
289 vq->desc = NULL;
290 vq->avail = NULL;
291 vq->used = NULL;
292 vq->last_avail_idx = 0;
293 vq->avail_idx = 0;
294 vq->last_used_idx = 0;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300295 vq->signalled_used = 0;
296 vq->signalled_used_valid = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000297 vq->used_flags = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000298 vq->log_used = false;
299 vq->log_addr = -1ull;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000300 vq->private_data = NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300301 vq->acked_features = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000302 vq->log_base = NULL;
303 vq->error_ctx = NULL;
304 vq->error = NULL;
305 vq->kick = NULL;
306 vq->call_ctx = NULL;
307 vq->call = NULL;
Michael S. Tsirkin73a99f02010-02-23 11:23:45 +0200308 vq->log_ctx = NULL;
Greg Kurzc5072032016-02-16 15:59:34 +0100309 vhost_reset_is_le(vq);
310 vhost_disable_cross_endian(vq);
Jason Wang03088132016-03-04 06:24:53 -0500311 vq->busyloop_timeout = 0;
Jason Wanga9709d62016-06-23 02:04:31 -0400312 vq->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400313 vq->iotlb = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000314}
315
Tejun Heoc23f34452010-06-02 20:40:00 +0200316static int vhost_worker(void *data)
317{
318 struct vhost_dev *dev = data;
Jason Wang04b96e52016-04-25 22:14:33 -0400319 struct vhost_work *work, *work_next;
320 struct llist_node *node;
Jens Freimannd7ffde32012-06-26 00:59:58 +0000321 mm_segment_t oldfs = get_fs();
Tejun Heoc23f34452010-06-02 20:40:00 +0200322
Jens Freimannd7ffde32012-06-26 00:59:58 +0000323 set_fs(USER_DS);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200324 use_mm(dev->mm);
325
Tejun Heoc23f34452010-06-02 20:40:00 +0200326 for (;;) {
327 /* mb paired w/ kthread_stop */
328 set_current_state(TASK_INTERRUPTIBLE);
329
Tejun Heoc23f34452010-06-02 20:40:00 +0200330 if (kthread_should_stop()) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200331 __set_current_state(TASK_RUNNING);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200332 break;
Tejun Heoc23f34452010-06-02 20:40:00 +0200333 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200334
Jason Wang04b96e52016-04-25 22:14:33 -0400335 node = llist_del_all(&dev->work_list);
336 if (!node)
337 schedule();
338
339 node = llist_reverse_order(node);
340 /* make sure flag is seen after deletion */
341 smp_wmb();
342 llist_for_each_entry_safe(work, work_next, node, node) {
343 clear_bit(VHOST_WORK_QUEUED, &work->flags);
Tejun Heoc23f34452010-06-02 20:40:00 +0200344 __set_current_state(TASK_RUNNING);
345 work->fn(work);
Nadav Har'Eld550dda2012-02-27 15:07:29 +0200346 if (need_resched())
347 schedule();
Jason Wang04b96e52016-04-25 22:14:33 -0400348 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200349 }
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200350 unuse_mm(dev->mm);
Jens Freimannd7ffde32012-06-26 00:59:58 +0000351 set_fs(oldfs);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200352 return 0;
Tejun Heoc23f34452010-06-02 20:40:00 +0200353}
354
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000355static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq)
356{
357 kfree(vq->indirect);
358 vq->indirect = NULL;
359 kfree(vq->log);
360 vq->log = NULL;
361 kfree(vq->heads);
362 vq->heads = NULL;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000363}
364
Jason Wange0e9b402010-09-14 23:53:05 +0800365/* Helper to allocate iovec buffers for all vqs. */
366static long vhost_dev_alloc_iovecs(struct vhost_dev *dev)
367{
Asias He6d5e6aa2013-05-06 16:38:23 +0800368 struct vhost_virtqueue *vq;
Jason Wange0e9b402010-09-14 23:53:05 +0800369 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530370
Jason Wange0e9b402010-09-14 23:53:05 +0800371 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800372 vq = dev->vqs[i];
373 vq->indirect = kmalloc(sizeof *vq->indirect * UIO_MAXIOV,
374 GFP_KERNEL);
375 vq->log = kmalloc(sizeof *vq->log * UIO_MAXIOV, GFP_KERNEL);
376 vq->heads = kmalloc(sizeof *vq->heads * UIO_MAXIOV, GFP_KERNEL);
377 if (!vq->indirect || !vq->log || !vq->heads)
Jason Wange0e9b402010-09-14 23:53:05 +0800378 goto err_nomem;
379 }
380 return 0;
Krishna Kumard47effe2011-03-01 17:06:37 +0530381
Jason Wange0e9b402010-09-14 23:53:05 +0800382err_nomem:
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000383 for (; i >= 0; --i)
Asias He3ab2e422013-04-27 11:16:48 +0800384 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800385 return -ENOMEM;
386}
387
388static void vhost_dev_free_iovecs(struct vhost_dev *dev)
389{
390 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530391
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000392 for (i = 0; i < dev->nvqs; ++i)
Asias He3ab2e422013-04-27 11:16:48 +0800393 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800394}
395
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800396void vhost_dev_init(struct vhost_dev *dev,
Asias He3ab2e422013-04-27 11:16:48 +0800397 struct vhost_virtqueue **vqs, int nvqs)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000398{
Asias He6d5e6aa2013-05-06 16:38:23 +0800399 struct vhost_virtqueue *vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000400 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200401
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000402 dev->vqs = vqs;
403 dev->nvqs = nvqs;
404 mutex_init(&dev->mutex);
405 dev->log_ctx = NULL;
406 dev->log_file = NULL;
Jason Wanga9709d62016-06-23 02:04:31 -0400407 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400408 dev->iotlb = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000409 dev->mm = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200410 dev->worker = NULL;
Jason Wang04b96e52016-04-25 22:14:33 -0400411 init_llist_head(&dev->work_list);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400412 init_waitqueue_head(&dev->wait);
413 INIT_LIST_HEAD(&dev->read_list);
414 INIT_LIST_HEAD(&dev->pending_list);
415 spin_lock_init(&dev->iotlb_lock);
Jason Wang04b96e52016-04-25 22:14:33 -0400416
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000417
418 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800419 vq = dev->vqs[i];
420 vq->log = NULL;
421 vq->indirect = NULL;
422 vq->heads = NULL;
423 vq->dev = dev;
424 mutex_init(&vq->mutex);
425 vhost_vq_reset(dev, vq);
426 if (vq->handle_kick)
427 vhost_poll_init(&vq->poll, vq->handle_kick,
428 POLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000429 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000430}
Asias He6ac1afb2013-05-06 16:38:21 +0800431EXPORT_SYMBOL_GPL(vhost_dev_init);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000432
433/* Caller should have device mutex */
434long vhost_dev_check_owner(struct vhost_dev *dev)
435{
436 /* Are you the owner? If not, I don't think you mean to do that */
437 return dev->mm == current->mm ? 0 : -EPERM;
438}
Asias He6ac1afb2013-05-06 16:38:21 +0800439EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000440
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300441struct vhost_attach_cgroups_struct {
Krishna Kumard47effe2011-03-01 17:06:37 +0530442 struct vhost_work work;
443 struct task_struct *owner;
444 int ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300445};
446
447static void vhost_attach_cgroups_work(struct vhost_work *work)
448{
Krishna Kumard47effe2011-03-01 17:06:37 +0530449 struct vhost_attach_cgroups_struct *s;
450
451 s = container_of(work, struct vhost_attach_cgroups_struct, work);
452 s->ret = cgroup_attach_task_all(s->owner, current);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300453}
454
455static int vhost_attach_cgroups(struct vhost_dev *dev)
456{
Krishna Kumard47effe2011-03-01 17:06:37 +0530457 struct vhost_attach_cgroups_struct attach;
458
459 attach.owner = current;
460 vhost_work_init(&attach.work, vhost_attach_cgroups_work);
461 vhost_work_queue(dev, &attach.work);
462 vhost_work_flush(dev, &attach.work);
463 return attach.ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300464}
465
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000466/* Caller should have device mutex */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300467bool vhost_dev_has_owner(struct vhost_dev *dev)
468{
469 return dev->mm;
470}
Asias He6ac1afb2013-05-06 16:38:21 +0800471EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300472
473/* Caller should have device mutex */
Asias He54db63c2013-05-06 11:15:59 +0800474long vhost_dev_set_owner(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000475{
Tejun Heoc23f34452010-06-02 20:40:00 +0200476 struct task_struct *worker;
477 int err;
Krishna Kumard47effe2011-03-01 17:06:37 +0530478
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000479 /* Is there an owner already? */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300480 if (vhost_dev_has_owner(dev)) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200481 err = -EBUSY;
482 goto err_mm;
483 }
Krishna Kumard47effe2011-03-01 17:06:37 +0530484
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000485 /* No owner, become one */
486 dev->mm = get_task_mm(current);
Tejun Heoc23f34452010-06-02 20:40:00 +0200487 worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
488 if (IS_ERR(worker)) {
489 err = PTR_ERR(worker);
490 goto err_worker;
491 }
492
493 dev->worker = worker;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300494 wake_up_process(worker); /* avoid contributing to loadavg */
495
496 err = vhost_attach_cgroups(dev);
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300497 if (err)
498 goto err_cgroup;
Tejun Heoc23f34452010-06-02 20:40:00 +0200499
Jason Wange0e9b402010-09-14 23:53:05 +0800500 err = vhost_dev_alloc_iovecs(dev);
501 if (err)
502 goto err_cgroup;
503
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000504 return 0;
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300505err_cgroup:
506 kthread_stop(worker);
Michael S. Tsirkin615cc222010-09-02 14:16:36 +0300507 dev->worker = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200508err_worker:
509 if (dev->mm)
510 mmput(dev->mm);
511 dev->mm = NULL;
512err_mm:
513 return err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000514}
Asias He6ac1afb2013-05-06 16:38:21 +0800515EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000516
Jason Wanga9709d62016-06-23 02:04:31 -0400517static void *vhost_kvzalloc(unsigned long size)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000518{
Jason Wanga9709d62016-06-23 02:04:31 -0400519 void *n = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
520
521 if (!n)
522 n = vzalloc(size);
523 return n;
524}
525
526struct vhost_umem *vhost_dev_reset_owner_prepare(void)
527{
528 return vhost_kvzalloc(sizeof(struct vhost_umem));
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300529}
Asias He6ac1afb2013-05-06 16:38:21 +0800530EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000531
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300532/* Caller should have device mutex */
Jason Wanga9709d62016-06-23 02:04:31 -0400533void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_umem *umem)
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300534{
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300535 int i;
536
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200537 vhost_dev_cleanup(dev, true);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000538
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300539 /* Restore memory to default empty mapping. */
Jason Wanga9709d62016-06-23 02:04:31 -0400540 INIT_LIST_HEAD(&umem->umem_list);
541 dev->umem = umem;
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300542 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
543 * VQs aren't running.
544 */
545 for (i = 0; i < dev->nvqs; ++i)
Jason Wanga9709d62016-06-23 02:04:31 -0400546 dev->vqs[i]->umem = umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000547}
Asias He6ac1afb2013-05-06 16:38:21 +0800548EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000549
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000550void vhost_dev_stop(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000551{
552 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530553
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000554 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800555 if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
556 vhost_poll_stop(&dev->vqs[i]->poll);
557 vhost_poll_flush(&dev->vqs[i]->poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000558 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000559 }
560}
Asias He6ac1afb2013-05-06 16:38:21 +0800561EXPORT_SYMBOL_GPL(vhost_dev_stop);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000562
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400563static void vhost_umem_free(struct vhost_umem *umem,
564 struct vhost_umem_node *node)
565{
566 vhost_umem_interval_tree_remove(node, &umem->umem_tree);
567 list_del(&node->link);
568 kfree(node);
569 umem->numem--;
570}
571
Jason Wanga9709d62016-06-23 02:04:31 -0400572static void vhost_umem_clean(struct vhost_umem *umem)
573{
574 struct vhost_umem_node *node, *tmp;
575
576 if (!umem)
577 return;
578
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400579 list_for_each_entry_safe(node, tmp, &umem->umem_list, link)
580 vhost_umem_free(umem, node);
581
Jason Wanga9709d62016-06-23 02:04:31 -0400582 kvfree(umem);
583}
584
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400585static void vhost_clear_msg(struct vhost_dev *dev)
586{
587 struct vhost_msg_node *node, *n;
588
589 spin_lock(&dev->iotlb_lock);
590
591 list_for_each_entry_safe(node, n, &dev->read_list, node) {
592 list_del(&node->node);
593 kfree(node);
594 }
595
596 list_for_each_entry_safe(node, n, &dev->pending_list, node) {
597 list_del(&node->node);
598 kfree(node);
599 }
600
601 spin_unlock(&dev->iotlb_lock);
602}
603
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000604/* Caller should have device mutex if and only if locked is set */
605void vhost_dev_cleanup(struct vhost_dev *dev, bool locked)
606{
607 int i;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000608
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000609 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800610 if (dev->vqs[i]->error_ctx)
611 eventfd_ctx_put(dev->vqs[i]->error_ctx);
612 if (dev->vqs[i]->error)
613 fput(dev->vqs[i]->error);
614 if (dev->vqs[i]->kick)
615 fput(dev->vqs[i]->kick);
616 if (dev->vqs[i]->call_ctx)
617 eventfd_ctx_put(dev->vqs[i]->call_ctx);
618 if (dev->vqs[i]->call)
619 fput(dev->vqs[i]->call);
620 vhost_vq_reset(dev, dev->vqs[i]);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000621 }
Jason Wange0e9b402010-09-14 23:53:05 +0800622 vhost_dev_free_iovecs(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000623 if (dev->log_ctx)
624 eventfd_ctx_put(dev->log_ctx);
625 dev->log_ctx = NULL;
626 if (dev->log_file)
627 fput(dev->log_file);
628 dev->log_file = NULL;
629 /* No one will access memory at this point */
Jason Wanga9709d62016-06-23 02:04:31 -0400630 vhost_umem_clean(dev->umem);
631 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400632 vhost_umem_clean(dev->iotlb);
633 dev->iotlb = NULL;
634 vhost_clear_msg(dev);
635 wake_up_interruptible_poll(&dev->wait, POLLIN | POLLRDNORM);
Jason Wang04b96e52016-04-25 22:14:33 -0400636 WARN_ON(!llist_empty(&dev->work_list));
Eric Dumazet78b620c2010-08-31 02:05:57 +0000637 if (dev->worker) {
638 kthread_stop(dev->worker);
639 dev->worker = NULL;
640 }
Michael S. Tsirkin533a19b2010-10-06 15:34:38 +0200641 if (dev->mm)
642 mmput(dev->mm);
643 dev->mm = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000644}
Asias He6ac1afb2013-05-06 16:38:21 +0800645EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000646
647static int log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
648{
649 u64 a = addr / VHOST_PAGE_SIZE / 8;
Krishna Kumard47effe2011-03-01 17:06:37 +0530650
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000651 /* Make sure 64 bit math will not overflow. */
652 if (a > ULONG_MAX - (unsigned long)log_base ||
653 a + (unsigned long)log_base > ULONG_MAX)
Dan Carpenter6d97e552010-10-11 19:24:19 +0200654 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000655
656 return access_ok(VERIFY_WRITE, log_base + a,
657 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
658}
659
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300660static bool vhost_overflow(u64 uaddr, u64 size)
661{
662 /* Make sure 64 bit math will not overflow. */
663 return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
664}
665
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000666/* Caller should have vq mutex and device mutex. */
Jason Wanga9709d62016-06-23 02:04:31 -0400667static int vq_memory_access_ok(void __user *log_base, struct vhost_umem *umem,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000668 int log_all)
669{
Jason Wanga9709d62016-06-23 02:04:31 -0400670 struct vhost_umem_node *node;
Jeff Dike179b2842010-04-07 09:59:10 -0400671
Jason Wanga9709d62016-06-23 02:04:31 -0400672 if (!umem)
Michael S. Tsirkinf8322fb2010-05-27 12:28:03 +0300673 return 0;
Jeff Dike179b2842010-04-07 09:59:10 -0400674
Jason Wanga9709d62016-06-23 02:04:31 -0400675 list_for_each_entry(node, &umem->umem_list, link) {
676 unsigned long a = node->userspace_addr;
677
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300678 if (vhost_overflow(node->userspace_addr, node->size))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000679 return 0;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300680
681
682 if (!access_ok(VERIFY_WRITE, (void __user *)a,
Jason Wanga9709d62016-06-23 02:04:31 -0400683 node->size))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000684 return 0;
685 else if (log_all && !log_access_ok(log_base,
Jason Wanga9709d62016-06-23 02:04:31 -0400686 node->start,
687 node->size))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000688 return 0;
689 }
690 return 1;
691}
692
693/* Can we switch to this memory table? */
694/* Caller should have device mutex but not vq mutex */
Jason Wanga9709d62016-06-23 02:04:31 -0400695static int memory_access_ok(struct vhost_dev *d, struct vhost_umem *umem,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000696 int log_all)
697{
698 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530699
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000700 for (i = 0; i < d->nvqs; ++i) {
701 int ok;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300702 bool log;
703
Asias He3ab2e422013-04-27 11:16:48 +0800704 mutex_lock(&d->vqs[i]->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300705 log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000706 /* If ring is inactive, will check when it's enabled. */
Asias He3ab2e422013-04-27 11:16:48 +0800707 if (d->vqs[i]->private_data)
Jason Wanga9709d62016-06-23 02:04:31 -0400708 ok = vq_memory_access_ok(d->vqs[i]->log_base,
709 umem, log);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000710 else
711 ok = 1;
Asias He3ab2e422013-04-27 11:16:48 +0800712 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000713 if (!ok)
714 return 0;
715 }
716 return 1;
717}
718
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400719static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
720 struct iovec iov[], int iov_size, int access);
Jason Wangbfe2bc52016-06-23 02:04:30 -0400721
722static int vhost_copy_to_user(struct vhost_virtqueue *vq, void *to,
723 const void *from, unsigned size)
724{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400725 int ret;
Jason Wangbfe2bc52016-06-23 02:04:30 -0400726
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400727 if (!vq->iotlb)
728 return __copy_to_user(to, from, size);
729 else {
730 /* This function should be called after iotlb
731 * prefetch, which means we're sure that all vq
732 * could be access through iotlb. So -EAGAIN should
733 * not happen in this case.
734 */
735 /* TODO: more fast path */
736 struct iov_iter t;
737 ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
738 ARRAY_SIZE(vq->iotlb_iov),
739 VHOST_ACCESS_WO);
740 if (ret < 0)
741 goto out;
742 iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
743 ret = copy_to_iter(from, size, &t);
744 if (ret == size)
745 ret = 0;
746 }
747out:
748 return ret;
749}
Jason Wangbfe2bc52016-06-23 02:04:30 -0400750
751static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
752 void *from, unsigned size)
753{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400754 int ret;
755
756 if (!vq->iotlb)
757 return __copy_from_user(to, from, size);
758 else {
759 /* This function should be called after iotlb
760 * prefetch, which means we're sure that vq
761 * could be access through iotlb. So -EAGAIN should
762 * not happen in this case.
763 */
764 /* TODO: more fast path */
765 struct iov_iter f;
766 ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
767 ARRAY_SIZE(vq->iotlb_iov),
768 VHOST_ACCESS_RO);
769 if (ret < 0) {
770 vq_err(vq, "IOTLB translation failure: uaddr "
771 "%p size 0x%llx\n", from,
772 (unsigned long long) size);
773 goto out;
774 }
775 iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
776 ret = copy_from_iter(to, size, &f);
777 if (ret == size)
778 ret = 0;
779 }
780
781out:
782 return ret;
783}
784
785static void __user *__vhost_get_user(struct vhost_virtqueue *vq,
786 void *addr, unsigned size)
787{
788 int ret;
789
790 /* This function should be called after iotlb
791 * prefetch, which means we're sure that vq
792 * could be access through iotlb. So -EAGAIN should
793 * not happen in this case.
794 */
795 /* TODO: more fast path */
796 ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
797 ARRAY_SIZE(vq->iotlb_iov),
798 VHOST_ACCESS_RO);
799 if (ret < 0) {
800 vq_err(vq, "IOTLB translation failure: uaddr "
801 "%p size 0x%llx\n", addr,
802 (unsigned long long) size);
803 return NULL;
804 }
805
806 if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
807 vq_err(vq, "Non atomic userspace memory access: uaddr "
808 "%p size 0x%llx\n", addr,
809 (unsigned long long) size);
810 return NULL;
811 }
812
813 return vq->iotlb_iov[0].iov_base;
814}
815
816#define vhost_put_user(vq, x, ptr) \
817({ \
818 int ret = -EFAULT; \
819 if (!vq->iotlb) { \
820 ret = __put_user(x, ptr); \
821 } else { \
822 __typeof__(ptr) to = \
823 (__typeof__(ptr)) __vhost_get_user(vq, ptr, sizeof(*ptr)); \
824 if (to != NULL) \
825 ret = __put_user(x, to); \
826 else \
827 ret = -EFAULT; \
828 } \
829 ret; \
830})
831
832#define vhost_get_user(vq, x, ptr) \
833({ \
834 int ret; \
835 if (!vq->iotlb) { \
836 ret = __get_user(x, ptr); \
837 } else { \
838 __typeof__(ptr) from = \
839 (__typeof__(ptr)) __vhost_get_user(vq, ptr, sizeof(*ptr)); \
840 if (from != NULL) \
841 ret = __get_user(x, from); \
842 else \
843 ret = -EFAULT; \
844 } \
845 ret; \
846})
847
848static void vhost_dev_lock_vqs(struct vhost_dev *d)
849{
850 int i = 0;
851 for (i = 0; i < d->nvqs; ++i)
Jason Wangbd3ccdc2018-01-23 17:27:25 +0800852 mutex_lock_nested(&d->vqs[i]->mutex, i);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400853}
854
855static void vhost_dev_unlock_vqs(struct vhost_dev *d)
856{
857 int i = 0;
858 for (i = 0; i < d->nvqs; ++i)
859 mutex_unlock(&d->vqs[i]->mutex);
860}
861
862static int vhost_new_umem_range(struct vhost_umem *umem,
863 u64 start, u64 size, u64 end,
864 u64 userspace_addr, int perm)
865{
866 struct vhost_umem_node *tmp, *node = kmalloc(sizeof(*node), GFP_ATOMIC);
867
868 if (!node)
869 return -ENOMEM;
870
871 if (umem->numem == max_iotlb_entries) {
872 tmp = list_first_entry(&umem->umem_list, typeof(*tmp), link);
873 vhost_umem_free(umem, tmp);
874 }
875
876 node->start = start;
877 node->size = size;
878 node->last = end;
879 node->userspace_addr = userspace_addr;
880 node->perm = perm;
881 INIT_LIST_HEAD(&node->link);
882 list_add_tail(&node->link, &umem->umem_list);
883 vhost_umem_interval_tree_insert(node, &umem->umem_tree);
884 umem->numem++;
885
886 return 0;
887}
888
889static void vhost_del_umem_range(struct vhost_umem *umem,
890 u64 start, u64 end)
891{
892 struct vhost_umem_node *node;
893
894 while ((node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
895 start, end)))
896 vhost_umem_free(umem, node);
897}
898
899static void vhost_iotlb_notify_vq(struct vhost_dev *d,
900 struct vhost_iotlb_msg *msg)
901{
902 struct vhost_msg_node *node, *n;
903
904 spin_lock(&d->iotlb_lock);
905
906 list_for_each_entry_safe(node, n, &d->pending_list, node) {
907 struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
908 if (msg->iova <= vq_msg->iova &&
Jason Wanga21a39a2018-08-24 16:53:13 +0800909 msg->iova + msg->size - 1 >= vq_msg->iova &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400910 vq_msg->type == VHOST_IOTLB_MISS) {
911 vhost_poll_queue(&node->vq->poll);
912 list_del(&node->node);
913 kfree(node);
914 }
915 }
916
917 spin_unlock(&d->iotlb_lock);
918}
919
920static int umem_access_ok(u64 uaddr, u64 size, int access)
921{
922 unsigned long a = uaddr;
923
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300924 /* Make sure 64 bit math will not overflow. */
925 if (vhost_overflow(uaddr, size))
926 return -EFAULT;
927
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400928 if ((access & VHOST_ACCESS_RO) &&
929 !access_ok(VERIFY_READ, (void __user *)a, size))
930 return -EFAULT;
931 if ((access & VHOST_ACCESS_WO) &&
932 !access_ok(VERIFY_WRITE, (void __user *)a, size))
933 return -EFAULT;
934 return 0;
935}
936
937int vhost_process_iotlb_msg(struct vhost_dev *dev,
938 struct vhost_iotlb_msg *msg)
939{
940 int ret = 0;
941
Jason Wangf8332092018-05-22 19:58:57 +0800942 mutex_lock(&dev->mutex);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400943 vhost_dev_lock_vqs(dev);
944 switch (msg->type) {
945 case VHOST_IOTLB_UPDATE:
946 if (!dev->iotlb) {
947 ret = -EFAULT;
948 break;
949 }
950 if (umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
951 ret = -EFAULT;
952 break;
953 }
954 if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
955 msg->iova + msg->size - 1,
956 msg->uaddr, msg->perm)) {
957 ret = -ENOMEM;
958 break;
959 }
960 vhost_iotlb_notify_vq(dev, msg);
961 break;
962 case VHOST_IOTLB_INVALIDATE:
963 vhost_del_umem_range(dev->iotlb, msg->iova,
964 msg->iova + msg->size - 1);
965 break;
966 default:
967 ret = -EINVAL;
968 break;
969 }
970
971 vhost_dev_unlock_vqs(dev);
Jason Wangf8332092018-05-22 19:58:57 +0800972 mutex_unlock(&dev->mutex);
973
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400974 return ret;
975}
976ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
977 struct iov_iter *from)
978{
979 struct vhost_msg_node node;
980 unsigned size = sizeof(struct vhost_msg);
981 size_t ret;
982 int err;
983
984 if (iov_iter_count(from) < size)
985 return 0;
986 ret = copy_from_iter(&node.msg, size, from);
987 if (ret != size)
988 goto done;
989
990 switch (node.msg.type) {
991 case VHOST_IOTLB_MSG:
992 err = vhost_process_iotlb_msg(dev, &node.msg.iotlb);
993 if (err)
994 ret = err;
995 break;
996 default:
997 ret = -EINVAL;
998 break;
999 }
1000
1001done:
1002 return ret;
1003}
1004EXPORT_SYMBOL(vhost_chr_write_iter);
1005
1006unsigned int vhost_chr_poll(struct file *file, struct vhost_dev *dev,
1007 poll_table *wait)
1008{
1009 unsigned int mask = 0;
1010
1011 poll_wait(file, &dev->wait, wait);
1012
1013 if (!list_empty(&dev->read_list))
1014 mask |= POLLIN | POLLRDNORM;
1015
1016 return mask;
1017}
1018EXPORT_SYMBOL(vhost_chr_poll);
1019
1020ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1021 int noblock)
1022{
1023 DEFINE_WAIT(wait);
1024 struct vhost_msg_node *node;
1025 ssize_t ret = 0;
1026 unsigned size = sizeof(struct vhost_msg);
1027
1028 if (iov_iter_count(to) < size)
1029 return 0;
1030
1031 while (1) {
1032 if (!noblock)
1033 prepare_to_wait(&dev->wait, &wait,
1034 TASK_INTERRUPTIBLE);
1035
1036 node = vhost_dequeue_msg(dev, &dev->read_list);
1037 if (node)
1038 break;
1039 if (noblock) {
1040 ret = -EAGAIN;
1041 break;
1042 }
1043 if (signal_pending(current)) {
1044 ret = -ERESTARTSYS;
1045 break;
1046 }
1047 if (!dev->iotlb) {
1048 ret = -EBADFD;
1049 break;
1050 }
1051
1052 schedule();
1053 }
1054
1055 if (!noblock)
1056 finish_wait(&dev->wait, &wait);
1057
1058 if (node) {
1059 ret = copy_to_iter(&node->msg, size, to);
1060
1061 if (ret != size || node->msg.type != VHOST_IOTLB_MISS) {
1062 kfree(node);
1063 return ret;
1064 }
1065
1066 vhost_enqueue_msg(dev, &dev->pending_list, node);
1067 }
1068
1069 return ret;
1070}
1071EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1072
1073static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1074{
1075 struct vhost_dev *dev = vq->dev;
1076 struct vhost_msg_node *node;
1077 struct vhost_iotlb_msg *msg;
1078
1079 node = vhost_new_msg(vq, VHOST_IOTLB_MISS);
1080 if (!node)
1081 return -ENOMEM;
1082
1083 msg = &node->msg.iotlb;
1084 msg->type = VHOST_IOTLB_MISS;
1085 msg->iova = iova;
1086 msg->perm = access;
1087
1088 vhost_enqueue_msg(dev, &dev->read_list, node);
1089
1090 return 0;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001091}
1092
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001093static int vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001094 struct vring_desc __user *desc,
1095 struct vring_avail __user *avail,
1096 struct vring_used __user *used)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001097
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001098{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001099 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001100
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001101 return access_ok(VERIFY_READ, desc, num * sizeof *desc) &&
1102 access_ok(VERIFY_READ, avail,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001103 sizeof *avail + num * sizeof *avail->ring + s) &&
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001104 access_ok(VERIFY_WRITE, used,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001105 sizeof *used + num * sizeof *used->ring + s);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001106}
1107
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001108static int iotlb_access_ok(struct vhost_virtqueue *vq,
1109 int access, u64 addr, u64 len)
1110{
1111 const struct vhost_umem_node *node;
1112 struct vhost_umem *umem = vq->iotlb;
1113 u64 s = 0, size;
1114
1115 while (len > s) {
1116 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1117 addr,
1118 addr + len - 1);
1119 if (node == NULL || node->start > addr) {
1120 vhost_iotlb_miss(vq, addr, access);
1121 return false;
1122 } else if (!(node->perm & access)) {
1123 /* Report the possible access violation by
1124 * request another translation from userspace.
1125 */
1126 return false;
1127 }
1128
1129 size = node->size - addr + node->start;
1130 s += size;
1131 addr += size;
1132 }
1133
1134 return true;
1135}
1136
1137int vq_iotlb_prefetch(struct vhost_virtqueue *vq)
1138{
1139 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1140 unsigned int num = vq->num;
1141
1142 if (!vq->iotlb)
1143 return 1;
1144
1145 return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
1146 num * sizeof *vq->desc) &&
1147 iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1148 sizeof *vq->avail +
1149 num * sizeof *vq->avail->ring + s) &&
1150 iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1151 sizeof *vq->used +
1152 num * sizeof *vq->used->ring + s);
1153}
1154EXPORT_SYMBOL_GPL(vq_iotlb_prefetch);
1155
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001156/* Can we log writes? */
1157/* Caller should have device mutex but not vq mutex */
1158int vhost_log_access_ok(struct vhost_dev *dev)
1159{
Jason Wanga9709d62016-06-23 02:04:31 -04001160 return memory_access_ok(dev, dev->umem, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001161}
Asias He6ac1afb2013-05-06 16:38:21 +08001162EXPORT_SYMBOL_GPL(vhost_log_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001163
1164/* Verify access for write logging. */
1165/* Caller should have vq mutex and device mutex */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001166static int vq_log_access_ok(struct vhost_virtqueue *vq,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001167 void __user *log_base)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001168{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001169 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Arnd Bergmann28457ee2010-03-09 19:24:45 +01001170
Jason Wanga9709d62016-06-23 02:04:31 -04001171 return vq_memory_access_ok(log_base, vq->umem,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001172 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001173 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
1174 sizeof *vq->used +
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001175 vq->num * sizeof *vq->used->ring + s));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001176}
1177
1178/* Can we start vq? */
1179/* Caller should have vq mutex and device mutex */
1180int vhost_vq_access_ok(struct vhost_virtqueue *vq)
1181{
Stefan Hajnoczi72de9892018-04-11 10:35:40 +08001182 if (!vq_log_access_ok(vq, vq->log_base))
1183 return 0;
Jason Wang992dbb12018-03-29 16:00:04 +08001184
Stefan Hajnoczi72de9892018-04-11 10:35:40 +08001185 /* Access validation occurs at prefetch time with IOTLB */
1186 if (vq->iotlb)
1187 return 1;
Jason Wang992dbb12018-03-29 16:00:04 +08001188
1189 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001190}
Asias He6ac1afb2013-05-06 16:38:21 +08001191EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001192
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001193static struct vhost_umem *vhost_umem_alloc(void)
1194{
1195 struct vhost_umem *umem = vhost_kvzalloc(sizeof(*umem));
1196
1197 if (!umem)
1198 return NULL;
1199
1200 umem->umem_tree = RB_ROOT;
1201 umem->numem = 0;
1202 INIT_LIST_HEAD(&umem->umem_list);
1203
1204 return umem;
1205}
1206
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001207static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1208{
Jason Wanga9709d62016-06-23 02:04:31 -04001209 struct vhost_memory mem, *newmem;
1210 struct vhost_memory_region *region;
Jason Wanga9709d62016-06-23 02:04:31 -04001211 struct vhost_umem *newumem, *oldumem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001212 unsigned long size = offsetof(struct vhost_memory, regions);
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001213 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +05301214
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001215 if (copy_from_user(&mem, m, size))
1216 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001217 if (mem.padding)
1218 return -EOPNOTSUPP;
Igor Mammedovc9ce42f2015-07-02 15:08:11 +02001219 if (mem.nregions > max_mem_regions)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001220 return -E2BIG;
Igor Mammedov4de72552015-07-01 11:07:09 +02001221 newmem = vhost_kvzalloc(size + mem.nregions * sizeof(*m->regions));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001222 if (!newmem)
1223 return -ENOMEM;
1224
1225 memcpy(newmem, &mem, size);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001226 if (copy_from_user(newmem->regions, m->regions,
1227 mem.nregions * sizeof *m->regions)) {
Igor Mammedovbcfeaca2015-06-16 18:33:35 +02001228 kvfree(newmem);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001229 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001230 }
1231
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001232 newumem = vhost_umem_alloc();
Jason Wanga9709d62016-06-23 02:04:31 -04001233 if (!newumem) {
Igor Mammedov4de72552015-07-01 11:07:09 +02001234 kvfree(newmem);
Jason Wanga9709d62016-06-23 02:04:31 -04001235 return -ENOMEM;
Takuya Yoshikawaa02c3782010-05-27 19:03:56 +09001236 }
Jason Wanga9709d62016-06-23 02:04:31 -04001237
Jason Wanga9709d62016-06-23 02:04:31 -04001238 for (region = newmem->regions;
1239 region < newmem->regions + mem.nregions;
1240 region++) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001241 if (vhost_new_umem_range(newumem,
1242 region->guest_phys_addr,
1243 region->memory_size,
1244 region->guest_phys_addr +
1245 region->memory_size - 1,
1246 region->userspace_addr,
1247 VHOST_ACCESS_RW))
Jason Wanga9709d62016-06-23 02:04:31 -04001248 goto err;
Jason Wanga9709d62016-06-23 02:04:31 -04001249 }
1250
1251 if (!memory_access_ok(d, newumem, 0))
1252 goto err;
1253
1254 oldumem = d->umem;
1255 d->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001256
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001257 /* All memory accesses are done under some VQ mutex. */
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001258 for (i = 0; i < d->nvqs; ++i) {
1259 mutex_lock(&d->vqs[i]->mutex);
Jason Wanga9709d62016-06-23 02:04:31 -04001260 d->vqs[i]->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001261 mutex_unlock(&d->vqs[i]->mutex);
1262 }
Jason Wanga9709d62016-06-23 02:04:31 -04001263
1264 kvfree(newmem);
1265 vhost_umem_clean(oldumem);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001266 return 0;
Jason Wanga9709d62016-06-23 02:04:31 -04001267
1268err:
1269 vhost_umem_clean(newumem);
1270 kvfree(newmem);
1271 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001272}
1273
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001274long vhost_vring_ioctl(struct vhost_dev *d, int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001275{
Al Virocecb46f2012-08-27 14:21:39 -04001276 struct file *eventfp, *filep = NULL;
1277 bool pollstart = false, pollstop = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001278 struct eventfd_ctx *ctx = NULL;
1279 u32 __user *idxp = argp;
1280 struct vhost_virtqueue *vq;
1281 struct vhost_vring_state s;
1282 struct vhost_vring_file f;
1283 struct vhost_vring_addr a;
1284 u32 idx;
1285 long r;
1286
1287 r = get_user(idx, idxp);
1288 if (r < 0)
1289 return r;
Krishna Kumar0f3d9a12010-05-25 11:10:36 +05301290 if (idx >= d->nvqs)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001291 return -ENOBUFS;
1292
Jason Wang242e6f522018-10-30 14:10:49 +08001293 idx = array_index_nospec(idx, d->nvqs);
Asias He3ab2e422013-04-27 11:16:48 +08001294 vq = d->vqs[idx];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001295
1296 mutex_lock(&vq->mutex);
1297
1298 switch (ioctl) {
1299 case VHOST_SET_VRING_NUM:
1300 /* Resizing ring with an active backend?
1301 * You don't want to do that. */
1302 if (vq->private_data) {
1303 r = -EBUSY;
1304 break;
1305 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001306 if (copy_from_user(&s, argp, sizeof s)) {
1307 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001308 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001309 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001310 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) {
1311 r = -EINVAL;
1312 break;
1313 }
1314 vq->num = s.num;
1315 break;
1316 case VHOST_SET_VRING_BASE:
1317 /* Moving base with an active backend?
1318 * You don't want to do that. */
1319 if (vq->private_data) {
1320 r = -EBUSY;
1321 break;
1322 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001323 if (copy_from_user(&s, argp, sizeof s)) {
1324 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001325 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001326 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001327 if (s.num > 0xffff) {
1328 r = -EINVAL;
1329 break;
1330 }
1331 vq->last_avail_idx = s.num;
1332 /* Forget the cached index value. */
1333 vq->avail_idx = vq->last_avail_idx;
1334 break;
1335 case VHOST_GET_VRING_BASE:
1336 s.index = idx;
1337 s.num = vq->last_avail_idx;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001338 if (copy_to_user(argp, &s, sizeof s))
1339 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001340 break;
1341 case VHOST_SET_VRING_ADDR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001342 if (copy_from_user(&a, argp, sizeof a)) {
1343 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001344 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001345 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001346 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) {
1347 r = -EOPNOTSUPP;
1348 break;
1349 }
1350 /* For 32bit, verify that the top 32bits of the user
1351 data are set to zero. */
1352 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1353 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1354 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) {
1355 r = -EFAULT;
1356 break;
1357 }
Michael S. Tsirkin5d9a07b2014-12-21 01:00:23 +02001358
1359 /* Make sure it's safe to cast pointers to vring types. */
1360 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1361 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1362 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1363 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
Michael S. Tsirkind5424832015-11-16 16:57:08 +02001364 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001365 r = -EINVAL;
1366 break;
1367 }
1368
1369 /* We only verify access here if backend is configured.
1370 * If it is not, we don't as size might not have been setup.
1371 * We will verify when backend is configured. */
1372 if (vq->private_data) {
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001373 if (!vq_access_ok(vq, vq->num,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001374 (void __user *)(unsigned long)a.desc_user_addr,
1375 (void __user *)(unsigned long)a.avail_user_addr,
1376 (void __user *)(unsigned long)a.used_user_addr)) {
1377 r = -EINVAL;
1378 break;
1379 }
1380
1381 /* Also validate log access for used ring if enabled. */
1382 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1383 !log_access_ok(vq->log_base, a.log_guest_addr,
1384 sizeof *vq->used +
1385 vq->num * sizeof *vq->used->ring)) {
1386 r = -EINVAL;
1387 break;
1388 }
1389 }
1390
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001391 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1392 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1393 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1394 vq->log_addr = a.log_guest_addr;
1395 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1396 break;
1397 case VHOST_SET_VRING_KICK:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001398 if (copy_from_user(&f, argp, sizeof f)) {
1399 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001400 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001401 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001402 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001403 if (IS_ERR(eventfp)) {
1404 r = PTR_ERR(eventfp);
1405 break;
1406 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001407 if (eventfp != vq->kick) {
Al Virocecb46f2012-08-27 14:21:39 -04001408 pollstop = (filep = vq->kick) != NULL;
1409 pollstart = (vq->kick = eventfp) != NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001410 } else
1411 filep = eventfp;
1412 break;
1413 case VHOST_SET_VRING_CALL:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001414 if (copy_from_user(&f, argp, sizeof f)) {
1415 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001416 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001417 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001418 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001419 if (IS_ERR(eventfp)) {
1420 r = PTR_ERR(eventfp);
1421 break;
1422 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001423 if (eventfp != vq->call) {
1424 filep = vq->call;
1425 ctx = vq->call_ctx;
1426 vq->call = eventfp;
1427 vq->call_ctx = eventfp ?
1428 eventfd_ctx_fileget(eventfp) : NULL;
1429 } else
1430 filep = eventfp;
1431 break;
1432 case VHOST_SET_VRING_ERR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001433 if (copy_from_user(&f, argp, sizeof f)) {
1434 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001435 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001436 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001437 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001438 if (IS_ERR(eventfp)) {
1439 r = PTR_ERR(eventfp);
1440 break;
1441 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001442 if (eventfp != vq->error) {
1443 filep = vq->error;
1444 vq->error = eventfp;
1445 ctx = vq->error_ctx;
1446 vq->error_ctx = eventfp ?
1447 eventfd_ctx_fileget(eventfp) : NULL;
1448 } else
1449 filep = eventfp;
1450 break;
Greg Kurz2751c982015-04-24 14:27:24 +02001451 case VHOST_SET_VRING_ENDIAN:
1452 r = vhost_set_vring_endian(vq, argp);
1453 break;
1454 case VHOST_GET_VRING_ENDIAN:
1455 r = vhost_get_vring_endian(vq, idx, argp);
1456 break;
Jason Wang03088132016-03-04 06:24:53 -05001457 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1458 if (copy_from_user(&s, argp, sizeof(s))) {
1459 r = -EFAULT;
1460 break;
1461 }
1462 vq->busyloop_timeout = s.num;
1463 break;
1464 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1465 s.index = idx;
1466 s.num = vq->busyloop_timeout;
1467 if (copy_to_user(argp, &s, sizeof(s)))
1468 r = -EFAULT;
1469 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001470 default:
1471 r = -ENOIOCTLCMD;
1472 }
1473
1474 if (pollstop && vq->handle_kick)
1475 vhost_poll_stop(&vq->poll);
1476
1477 if (ctx)
1478 eventfd_ctx_put(ctx);
1479 if (filep)
1480 fput(filep);
1481
1482 if (pollstart && vq->handle_kick)
Jason Wang2b8b3282013-01-28 01:05:18 +00001483 r = vhost_poll_start(&vq->poll, vq->kick);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001484
1485 mutex_unlock(&vq->mutex);
1486
1487 if (pollstop && vq->handle_kick)
1488 vhost_poll_flush(&vq->poll);
1489 return r;
1490}
Asias He6ac1afb2013-05-06 16:38:21 +08001491EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001492
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001493int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1494{
1495 struct vhost_umem *niotlb, *oiotlb;
1496 int i;
1497
1498 niotlb = vhost_umem_alloc();
1499 if (!niotlb)
1500 return -ENOMEM;
1501
1502 oiotlb = d->iotlb;
1503 d->iotlb = niotlb;
1504
1505 for (i = 0; i < d->nvqs; ++i) {
1506 mutex_lock(&d->vqs[i]->mutex);
1507 d->vqs[i]->iotlb = niotlb;
1508 mutex_unlock(&d->vqs[i]->mutex);
1509 }
1510
1511 vhost_umem_clean(oiotlb);
1512
1513 return 0;
1514}
1515EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1516
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001517/* Caller must have device mutex */
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001518long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001519{
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001520 struct file *eventfp, *filep = NULL;
1521 struct eventfd_ctx *ctx = NULL;
1522 u64 p;
1523 long r;
1524 int i, fd;
1525
1526 /* If you are not the owner, you can become one */
1527 if (ioctl == VHOST_SET_OWNER) {
1528 r = vhost_dev_set_owner(d);
1529 goto done;
1530 }
1531
1532 /* You must be the owner to do anything else */
1533 r = vhost_dev_check_owner(d);
1534 if (r)
1535 goto done;
1536
1537 switch (ioctl) {
1538 case VHOST_SET_MEM_TABLE:
1539 r = vhost_set_memory(d, argp);
1540 break;
1541 case VHOST_SET_LOG_BASE:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001542 if (copy_from_user(&p, argp, sizeof p)) {
1543 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001544 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001545 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001546 if ((u64)(unsigned long)p != p) {
1547 r = -EFAULT;
1548 break;
1549 }
1550 for (i = 0; i < d->nvqs; ++i) {
1551 struct vhost_virtqueue *vq;
1552 void __user *base = (void __user *)(unsigned long)p;
Asias He3ab2e422013-04-27 11:16:48 +08001553 vq = d->vqs[i];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001554 mutex_lock(&vq->mutex);
1555 /* If ring is inactive, will check when it's enabled. */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001556 if (vq->private_data && !vq_log_access_ok(vq, base))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001557 r = -EFAULT;
1558 else
1559 vq->log_base = base;
1560 mutex_unlock(&vq->mutex);
1561 }
1562 break;
1563 case VHOST_SET_LOG_FD:
1564 r = get_user(fd, (int __user *)argp);
1565 if (r < 0)
1566 break;
1567 eventfp = fd == -1 ? NULL : eventfd_fget(fd);
1568 if (IS_ERR(eventfp)) {
1569 r = PTR_ERR(eventfp);
1570 break;
1571 }
1572 if (eventfp != d->log_file) {
1573 filep = d->log_file;
Marc-André Lureau7932c0b2015-07-17 15:32:03 +02001574 d->log_file = eventfp;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001575 ctx = d->log_ctx;
1576 d->log_ctx = eventfp ?
1577 eventfd_ctx_fileget(eventfp) : NULL;
1578 } else
1579 filep = eventfp;
1580 for (i = 0; i < d->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001581 mutex_lock(&d->vqs[i]->mutex);
1582 d->vqs[i]->log_ctx = d->log_ctx;
1583 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001584 }
1585 if (ctx)
1586 eventfd_ctx_put(ctx);
1587 if (filep)
1588 fput(filep);
1589 break;
1590 default:
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001591 r = -ENOIOCTLCMD;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001592 break;
1593 }
1594done:
1595 return r;
1596}
Asias He6ac1afb2013-05-06 16:38:21 +08001597EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001598
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001599/* TODO: This is really inefficient. We need something like get_user()
1600 * (instruction directly accesses the data, with an exception table entry
1601 * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1602 */
1603static int set_bit_to_user(int nr, void __user *addr)
1604{
1605 unsigned long log = (unsigned long)addr;
1606 struct page *page;
1607 void *base;
1608 int bit = nr + (log % PAGE_SIZE) * 8;
1609 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301610
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001611 r = get_user_pages_fast(log, 1, 1, &page);
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001612 if (r < 0)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001613 return r;
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001614 BUG_ON(r != 1);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001615 base = kmap_atomic(page);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001616 set_bit(bit, base);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001617 kunmap_atomic(base);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001618 set_page_dirty_lock(page);
1619 put_page(page);
1620 return 0;
1621}
1622
1623static int log_write(void __user *log_base,
1624 u64 write_address, u64 write_length)
1625{
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001626 u64 write_page = write_address / VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001627 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301628
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001629 if (!write_length)
1630 return 0;
Michael S. Tsirkin3bf9be42010-11-29 10:19:07 +02001631 write_length += write_address % VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001632 for (;;) {
1633 u64 base = (u64)(unsigned long)log_base;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001634 u64 log = base + write_page / 8;
1635 int bit = write_page % 8;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001636 if ((u64)(unsigned long)log != log)
1637 return -EFAULT;
1638 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1639 if (r < 0)
1640 return r;
1641 if (write_length <= VHOST_PAGE_SIZE)
1642 break;
1643 write_length -= VHOST_PAGE_SIZE;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001644 write_page += 1;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001645 }
1646 return r;
1647}
1648
1649int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
1650 unsigned int log_num, u64 len)
1651{
1652 int i, r;
1653
1654 /* Make sure data written is seen before log. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001655 smp_wmb();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001656 for (i = 0; i < log_num; ++i) {
1657 u64 l = min(log[i].len, len);
1658 r = log_write(vq->log_base, log[i].addr, l);
1659 if (r < 0)
1660 return r;
1661 len -= l;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001662 if (!len) {
1663 if (vq->log_ctx)
1664 eventfd_signal(vq->log_ctx, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001665 return 0;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001666 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001667 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001668 /* Length written exceeds what we have stored. This is a bug. */
1669 BUG();
1670 return 0;
1671}
Asias He6ac1afb2013-05-06 16:38:21 +08001672EXPORT_SYMBOL_GPL(vhost_log_write);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001673
Jason Wang2723fea2011-06-21 18:04:38 +08001674static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1675{
1676 void __user *used;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001677 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
1678 &vq->used->flags) < 0)
Jason Wang2723fea2011-06-21 18:04:38 +08001679 return -EFAULT;
1680 if (unlikely(vq->log_used)) {
1681 /* Make sure the flag is seen before log. */
1682 smp_wmb();
1683 /* Log used flag write. */
1684 used = &vq->used->flags;
1685 log_write(vq->log_base, vq->log_addr +
1686 (used - (void __user *)vq->used),
1687 sizeof vq->used->flags);
1688 if (vq->log_ctx)
1689 eventfd_signal(vq->log_ctx, 1);
1690 }
1691 return 0;
1692}
1693
1694static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1695{
Jason Wangbfe2bc52016-06-23 02:04:30 -04001696 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
1697 vhost_avail_event(vq)))
Jason Wang2723fea2011-06-21 18:04:38 +08001698 return -EFAULT;
1699 if (unlikely(vq->log_used)) {
1700 void __user *used;
1701 /* Make sure the event is seen before log. */
1702 smp_wmb();
1703 /* Log avail event write */
1704 used = vhost_avail_event(vq);
1705 log_write(vq->log_base, vq->log_addr +
1706 (used - (void __user *)vq->used),
1707 sizeof *vhost_avail_event(vq));
1708 if (vq->log_ctx)
1709 eventfd_signal(vq->log_ctx, 1);
1710 }
1711 return 0;
1712}
1713
Greg Kurz80f7d032016-02-16 15:59:44 +01001714int vhost_vq_init_access(struct vhost_virtqueue *vq)
Jason Wang2723fea2011-06-21 18:04:38 +08001715{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001716 __virtio16 last_used_idx;
Jason Wang2723fea2011-06-21 18:04:38 +08001717 int r;
Greg Kurze1f33be2016-02-16 15:54:28 +01001718 bool is_le = vq->is_le;
1719
Halil Pasic1594edd2017-01-30 11:09:36 +01001720 if (!vq->private_data)
Jason Wang2723fea2011-06-21 18:04:38 +08001721 return 0;
Greg Kurz2751c982015-04-24 14:27:24 +02001722
1723 vhost_init_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08001724
1725 r = vhost_update_used_flags(vq);
1726 if (r)
Greg Kurze1f33be2016-02-16 15:54:28 +01001727 goto err;
Jason Wang2723fea2011-06-21 18:04:38 +08001728 vq->signalled_used_valid = false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001729 if (!vq->iotlb &&
1730 !access_ok(VERIFY_READ, &vq->used->idx, sizeof vq->used->idx)) {
Greg Kurze1f33be2016-02-16 15:54:28 +01001731 r = -EFAULT;
1732 goto err;
1733 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04001734 r = vhost_get_user(vq, last_used_idx, &vq->used->idx);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001735 if (r) {
1736 vq_err(vq, "Can't access used idx at %p\n",
1737 &vq->used->idx);
Greg Kurze1f33be2016-02-16 15:54:28 +01001738 goto err;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001739 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001740 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
Michael S. Tsirkin64f7f052014-12-01 17:39:39 +02001741 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001742
Greg Kurze1f33be2016-02-16 15:54:28 +01001743err:
1744 vq->is_le = is_le;
1745 return r;
Jason Wang2723fea2011-06-21 18:04:38 +08001746}
Greg Kurz80f7d032016-02-16 15:59:44 +01001747EXPORT_SYMBOL_GPL(vhost_vq_init_access);
Jason Wang2723fea2011-06-21 18:04:38 +08001748
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001749static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001750 struct iovec iov[], int iov_size, int access)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001751{
Jason Wanga9709d62016-06-23 02:04:31 -04001752 const struct vhost_umem_node *node;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001753 struct vhost_dev *dev = vq->dev;
1754 struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001755 struct iovec *_iov;
1756 u64 s = 0;
1757 int ret = 0;
1758
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001759 while ((u64)len > s) {
1760 u64 size;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001761 if (unlikely(ret >= iov_size)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001762 ret = -ENOBUFS;
1763 break;
1764 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001765
Jason Wanga9709d62016-06-23 02:04:31 -04001766 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1767 addr, addr + len - 1);
1768 if (node == NULL || node->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001769 if (umem != dev->iotlb) {
1770 ret = -EFAULT;
1771 break;
1772 }
1773 ret = -EAGAIN;
1774 break;
1775 } else if (!(node->perm & access)) {
1776 ret = -EPERM;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001777 break;
1778 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001779
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001780 _iov = iov + ret;
Jason Wanga9709d62016-06-23 02:04:31 -04001781 size = node->size - addr + node->start;
Michael S. Tsirkinbd971202012-11-26 05:57:27 +00001782 _iov->iov_len = min((u64)len - s, size);
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001783 _iov->iov_base = (void __user *)(unsigned long)
Jason Wanga9709d62016-06-23 02:04:31 -04001784 (node->userspace_addr + addr - node->start);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001785 s += size;
1786 addr += size;
1787 ++ret;
1788 }
1789
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001790 if (ret == -EAGAIN)
1791 vhost_iotlb_miss(vq, addr, access);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001792 return ret;
1793}
1794
1795/* Each buffer in the virtqueues is actually a chain of descriptors. This
1796 * function returns the next descriptor in the chain,
1797 * or -1U if we're at the end. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001798static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001799{
1800 unsigned int next;
1801
1802 /* If this descriptor says it doesn't chain, we're done. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001803 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001804 return -1U;
1805
1806 /* Check they're not leading us off end of descriptors. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001807 next = vhost16_to_cpu(vq, desc->next);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001808 /* Make sure compiler knows to grab that: we don't want it changing! */
1809 /* We will use the result as an index in an array, so most
1810 * architectures only need a compiler barrier here. */
1811 read_barrier_depends();
1812
1813 return next;
1814}
1815
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001816static int get_indirect(struct vhost_virtqueue *vq,
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001817 struct iovec iov[], unsigned int iov_size,
1818 unsigned int *out_num, unsigned int *in_num,
1819 struct vhost_log *log, unsigned int *log_num,
1820 struct vring_desc *indirect)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001821{
1822 struct vring_desc desc;
1823 unsigned int i = 0, count, found = 0;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001824 u32 len = vhost32_to_cpu(vq, indirect->len);
Al Viroaad9a1c2014-12-10 14:49:01 -05001825 struct iov_iter from;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001826 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001827
1828 /* Sanity check */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001829 if (unlikely(len % sizeof desc)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001830 vq_err(vq, "Invalid length in indirect descriptor: "
1831 "len 0x%llx not multiple of 0x%zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001832 (unsigned long long)len,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001833 sizeof desc);
1834 return -EINVAL;
1835 }
1836
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001837 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001838 UIO_MAXIOV, VHOST_ACCESS_RO);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001839 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001840 if (ret != -EAGAIN)
1841 vq_err(vq, "Translation failure %d in indirect.\n", ret);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001842 return ret;
1843 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001844 iov_iter_init(&from, READ, vq->indirect, ret, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001845
1846 /* We will use the result as an address to read from, so most
1847 * architectures only need a compiler barrier here. */
1848 read_barrier_depends();
1849
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001850 count = len / sizeof desc;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001851 /* Buffers are chained via a 16 bit next field, so
1852 * we can have at most 2^16 of these. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001853 if (unlikely(count > USHRT_MAX + 1)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001854 vq_err(vq, "Indirect buffer length too big: %d\n",
1855 indirect->len);
1856 return -E2BIG;
1857 }
1858
1859 do {
1860 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001861 if (unlikely(++found > count)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001862 vq_err(vq, "Loop detected: last one at %u "
1863 "indirect size %u\n",
1864 i, count);
1865 return -EINVAL;
1866 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001867 if (unlikely(copy_from_iter(&desc, sizeof(desc), &from) !=
1868 sizeof(desc))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001869 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001870 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001871 return -EINVAL;
1872 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001873 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001874 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001875 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001876 return -EINVAL;
1877 }
1878
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001879 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
1880 access = VHOST_ACCESS_WO;
1881 else
1882 access = VHOST_ACCESS_RO;
1883
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001884 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
1885 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001886 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001887 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001888 if (ret != -EAGAIN)
1889 vq_err(vq, "Translation failure %d indirect idx %d\n",
1890 ret, i);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001891 return ret;
1892 }
1893 /* If this is an input descriptor, increment that count. */
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001894 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001895 *in_num += ret;
1896 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001897 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
1898 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001899 ++*log_num;
1900 }
1901 } else {
1902 /* If it's an output descriptor, they're all supposed
1903 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001904 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001905 vq_err(vq, "Indirect descriptor "
1906 "has out after in: idx %d\n", i);
1907 return -EINVAL;
1908 }
1909 *out_num += ret;
1910 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001911 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001912 return 0;
1913}
1914
1915/* This looks in the virtqueue and for the first available buffer, and converts
1916 * it to an iovec for convenient access. Since descriptors consist of some
1917 * number of output then some number of input descriptors, it's actually two
1918 * iovecs, but we pack them into one and note how many of each there were.
1919 *
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001920 * This function returns the descriptor number found, or vq->num (which is
1921 * never a valid descriptor number) if none was found. A negative code is
1922 * returned on error. */
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001923int vhost_get_vq_desc(struct vhost_virtqueue *vq,
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001924 struct iovec iov[], unsigned int iov_size,
1925 unsigned int *out_num, unsigned int *in_num,
1926 struct vhost_log *log, unsigned int *log_num)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001927{
1928 struct vring_desc desc;
1929 unsigned int i, head, found = 0;
1930 u16 last_avail_idx;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001931 __virtio16 avail_idx;
1932 __virtio16 ring_head;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001933 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001934
1935 /* Check it isn't doing very strange things with descriptor numbers. */
1936 last_avail_idx = vq->last_avail_idx;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001937 if (unlikely(vhost_get_user(vq, avail_idx, &vq->avail->idx))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001938 vq_err(vq, "Failed to access avail idx at %p\n",
1939 &vq->avail->idx);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001940 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001941 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001942 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001943
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001944 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001945 vq_err(vq, "Guest moved used index from %u to %u",
1946 last_avail_idx, vq->avail_idx);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001947 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001948 }
1949
1950 /* If there's nothing new since last we looked, return invalid. */
1951 if (vq->avail_idx == last_avail_idx)
1952 return vq->num;
1953
1954 /* Only get avail ring entries after they have been exposed by guest. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001955 smp_rmb();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001956
1957 /* Grab the next descriptor number they're advertising, and increment
1958 * the index we've seen. */
Jason Wangbfe2bc52016-06-23 02:04:30 -04001959 if (unlikely(vhost_get_user(vq, ring_head,
1960 &vq->avail->ring[last_avail_idx & (vq->num - 1)]))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001961 vq_err(vq, "Failed to read head: idx %d address %p\n",
1962 last_avail_idx,
1963 &vq->avail->ring[last_avail_idx % vq->num]);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001964 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001965 }
1966
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001967 head = vhost16_to_cpu(vq, ring_head);
1968
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001969 /* If their number is silly, that's an error. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001970 if (unlikely(head >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001971 vq_err(vq, "Guest says index %u > %u is available",
1972 head, vq->num);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001973 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001974 }
1975
1976 /* When we start there are none of either input nor output. */
1977 *out_num = *in_num = 0;
1978 if (unlikely(log))
1979 *log_num = 0;
1980
1981 i = head;
1982 do {
1983 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001984 if (unlikely(i >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001985 vq_err(vq, "Desc index is %u > %u, head = %u",
1986 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001987 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001988 }
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001989 if (unlikely(++found > vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001990 vq_err(vq, "Loop detected: last one at %u "
1991 "vq size %u head %u\n",
1992 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001993 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001994 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04001995 ret = vhost_copy_from_user(vq, &desc, vq->desc + i,
1996 sizeof desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001997 if (unlikely(ret)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001998 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
1999 i, vq->desc + i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002000 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002001 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002002 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002003 ret = get_indirect(vq, iov, iov_size,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002004 out_num, in_num,
2005 log, log_num, &desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002006 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002007 if (ret != -EAGAIN)
2008 vq_err(vq, "Failure detected "
2009 "in indirect descriptor at idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002010 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002011 }
2012 continue;
2013 }
2014
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002015 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2016 access = VHOST_ACCESS_WO;
2017 else
2018 access = VHOST_ACCESS_RO;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002019 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2020 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002021 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002022 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002023 if (ret != -EAGAIN)
2024 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2025 ret, i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002026 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002027 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002028 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002029 /* If this is an input descriptor,
2030 * increment that count. */
2031 *in_num += ret;
2032 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002033 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2034 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002035 ++*log_num;
2036 }
2037 } else {
2038 /* If it's an output descriptor, they're all supposed
2039 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002040 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002041 vq_err(vq, "Descriptor has out after in: "
2042 "idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002043 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002044 }
2045 *out_num += ret;
2046 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002047 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002048
2049 /* On success, increment avail index. */
2050 vq->last_avail_idx++;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002051
2052 /* Assume notifications from guest are disabled at this point,
2053 * if they aren't we would need to update avail_event index. */
2054 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002055 return head;
2056}
Asias He6ac1afb2013-05-06 16:38:21 +08002057EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002058
2059/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
David Stevens8dd014a2010-07-27 18:52:21 +03002060void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002061{
David Stevens8dd014a2010-07-27 18:52:21 +03002062 vq->last_avail_idx -= n;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002063}
Asias He6ac1afb2013-05-06 16:38:21 +08002064EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002065
2066/* After we've used one of their buffers, we tell them about it. We'll then
2067 * want to notify the guest, using eventfd. */
2068int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2069{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002070 struct vring_used_elem heads = {
2071 cpu_to_vhost32(vq, head),
2072 cpu_to_vhost32(vq, len)
2073 };
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002074
Jason Wangc49e4e52013-09-02 16:40:58 +08002075 return vhost_add_used_n(vq, &heads, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002076}
Asias He6ac1afb2013-05-06 16:38:21 +08002077EXPORT_SYMBOL_GPL(vhost_add_used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002078
David Stevens8dd014a2010-07-27 18:52:21 +03002079static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2080 struct vring_used_elem *heads,
2081 unsigned count)
2082{
2083 struct vring_used_elem __user *used;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002084 u16 old, new;
David Stevens8dd014a2010-07-27 18:52:21 +03002085 int start;
2086
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002087 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002088 used = vq->used->ring + start;
Jason Wangc49e4e52013-09-02 16:40:58 +08002089 if (count == 1) {
Jason Wangbfe2bc52016-06-23 02:04:30 -04002090 if (vhost_put_user(vq, heads[0].id, &used->id)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002091 vq_err(vq, "Failed to write used id");
2092 return -EFAULT;
2093 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002094 if (vhost_put_user(vq, heads[0].len, &used->len)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002095 vq_err(vq, "Failed to write used len");
2096 return -EFAULT;
2097 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002098 } else if (vhost_copy_to_user(vq, used, heads, count * sizeof *used)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002099 vq_err(vq, "Failed to write used");
2100 return -EFAULT;
2101 }
2102 if (unlikely(vq->log_used)) {
2103 /* Make sure data is seen before log. */
2104 smp_wmb();
2105 /* Log used ring entry write. */
2106 log_write(vq->log_base,
2107 vq->log_addr +
2108 ((void __user *)used - (void __user *)vq->used),
2109 count * sizeof *used);
2110 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002111 old = vq->last_used_idx;
2112 new = (vq->last_used_idx += count);
2113 /* If the driver never bothers to signal in a very long while,
2114 * used index might wrap around. If that happens, invalidate
2115 * signalled_used index we stored. TODO: make sure driver
2116 * signals at least once in 2^16 and remove this. */
2117 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2118 vq->signalled_used_valid = false;
David Stevens8dd014a2010-07-27 18:52:21 +03002119 return 0;
2120}
2121
2122/* After we've used one of their buffers, we tell them about it. We'll then
2123 * want to notify the guest, using eventfd. */
2124int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2125 unsigned count)
2126{
2127 int start, n, r;
2128
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002129 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002130 n = vq->num - start;
2131 if (n < count) {
2132 r = __vhost_add_used_n(vq, heads, n);
2133 if (r < 0)
2134 return r;
2135 heads += n;
2136 count -= n;
2137 }
2138 r = __vhost_add_used_n(vq, heads, count);
2139
2140 /* Make sure buffer is written before we update index. */
2141 smp_wmb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002142 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
2143 &vq->used->idx)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002144 vq_err(vq, "Failed to increment used idx");
2145 return -EFAULT;
2146 }
2147 if (unlikely(vq->log_used)) {
2148 /* Log used index update. */
2149 log_write(vq->log_base,
2150 vq->log_addr + offsetof(struct vring_used, idx),
2151 sizeof vq->used->idx);
2152 if (vq->log_ctx)
2153 eventfd_signal(vq->log_ctx, 1);
2154 }
2155 return r;
2156}
Asias He6ac1afb2013-05-06 16:38:21 +08002157EXPORT_SYMBOL_GPL(vhost_add_used_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002158
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002159static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002160{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002161 __u16 old, new;
2162 __virtio16 event;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002163 bool v;
Michael S. Tsirkin0d499352010-05-11 19:44:17 +03002164 /* Flush out used index updates. This is paired
2165 * with the barrier that the Guest executes when enabling
2166 * interrupts. */
2167 smp_mb();
2168
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002169 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002170 unlikely(vq->avail_idx == vq->last_avail_idx))
2171 return true;
2172
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002173 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002174 __virtio16 flags;
Jason Wangbfe2bc52016-06-23 02:04:30 -04002175 if (vhost_get_user(vq, flags, &vq->avail->flags)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002176 vq_err(vq, "Failed to get flags");
2177 return true;
2178 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002179 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002180 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002181 old = vq->signalled_used;
2182 v = vq->signalled_used_valid;
2183 new = vq->signalled_used = vq->last_used_idx;
2184 vq->signalled_used_valid = true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002185
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002186 if (unlikely(!v))
2187 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002188
Jason Wangbfe2bc52016-06-23 02:04:30 -04002189 if (vhost_get_user(vq, event, vhost_used_event(vq))) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002190 vq_err(vq, "Failed to get used event idx");
2191 return true;
2192 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002193 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002194}
2195
2196/* This actually signals the guest, using eventfd. */
2197void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2198{
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002199 /* Signal the Guest tell them we used something up. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002200 if (vq->call_ctx && vhost_notify(dev, vq))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002201 eventfd_signal(vq->call_ctx, 1);
2202}
Asias He6ac1afb2013-05-06 16:38:21 +08002203EXPORT_SYMBOL_GPL(vhost_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002204
2205/* And here's the combo meal deal. Supersize me! */
2206void vhost_add_used_and_signal(struct vhost_dev *dev,
2207 struct vhost_virtqueue *vq,
2208 unsigned int head, int len)
2209{
2210 vhost_add_used(vq, head, len);
2211 vhost_signal(dev, vq);
2212}
Asias He6ac1afb2013-05-06 16:38:21 +08002213EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002214
David Stevens8dd014a2010-07-27 18:52:21 +03002215/* multi-buffer version of vhost_add_used_and_signal */
2216void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2217 struct vhost_virtqueue *vq,
2218 struct vring_used_elem *heads, unsigned count)
2219{
2220 vhost_add_used_n(vq, heads, count);
2221 vhost_signal(dev, vq);
2222}
Asias He6ac1afb2013-05-06 16:38:21 +08002223EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002224
Jason Wangd4a60602016-03-04 06:24:52 -05002225/* return true if we're sure that avaiable ring is empty */
2226bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2227{
2228 __virtio16 avail_idx;
2229 int r;
2230
Jason Wangbfe2bc52016-06-23 02:04:30 -04002231 r = vhost_get_user(vq, avail_idx, &vq->avail->idx);
Jason Wangd4a60602016-03-04 06:24:52 -05002232 if (r)
2233 return false;
2234
2235 return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx;
2236}
2237EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2238
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002239/* OK, now we need to know about added descriptors. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002240bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002241{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002242 __virtio16 avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002243 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302244
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002245 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2246 return false;
2247 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002248 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002249 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002250 if (r) {
2251 vq_err(vq, "Failed to enable notification at %p: %d\n",
2252 &vq->used->flags, r);
2253 return false;
2254 }
2255 } else {
Jason Wang2723fea2011-06-21 18:04:38 +08002256 r = vhost_update_avail_event(vq, vq->avail_idx);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002257 if (r) {
2258 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2259 vhost_avail_event(vq), r);
2260 return false;
2261 }
2262 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002263 /* They could have slipped one in as we were doing that: make
2264 * sure it's written, then check again. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00002265 smp_mb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002266 r = vhost_get_user(vq, avail_idx, &vq->avail->idx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002267 if (r) {
2268 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2269 &vq->avail->idx, r);
2270 return false;
2271 }
2272
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002273 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002274}
Asias He6ac1afb2013-05-06 16:38:21 +08002275EXPORT_SYMBOL_GPL(vhost_enable_notify);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002276
2277/* We don't need to be notified again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002278void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002279{
2280 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302281
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002282 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2283 return;
2284 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002285 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002286 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002287 if (r)
2288 vq_err(vq, "Failed to enable notification at %p: %d\n",
2289 &vq->used->flags, r);
2290 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002291}
Asias He6ac1afb2013-05-06 16:38:21 +08002292EXPORT_SYMBOL_GPL(vhost_disable_notify);
2293
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002294/* Create a new message. */
2295struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2296{
2297 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2298 if (!node)
2299 return NULL;
Michael S. Tsirkin9681c3b2018-05-12 00:33:10 +03002300
2301 /* Make sure all padding within the structure is initialized. */
2302 memset(&node->msg, 0, sizeof node->msg);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002303 node->vq = vq;
2304 node->msg.type = type;
2305 return node;
2306}
2307EXPORT_SYMBOL_GPL(vhost_new_msg);
2308
2309void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2310 struct vhost_msg_node *node)
2311{
2312 spin_lock(&dev->iotlb_lock);
2313 list_add_tail(&node->node, head);
2314 spin_unlock(&dev->iotlb_lock);
2315
2316 wake_up_interruptible_poll(&dev->wait, POLLIN | POLLRDNORM);
2317}
2318EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2319
2320struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2321 struct list_head *head)
2322{
2323 struct vhost_msg_node *node = NULL;
2324
2325 spin_lock(&dev->iotlb_lock);
2326 if (!list_empty(head)) {
2327 node = list_first_entry(head, struct vhost_msg_node,
2328 node);
2329 list_del(&node->node);
2330 }
2331 spin_unlock(&dev->iotlb_lock);
2332
2333 return node;
2334}
2335EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2336
2337
Asias He6ac1afb2013-05-06 16:38:21 +08002338static int __init vhost_init(void)
2339{
2340 return 0;
2341}
2342
2343static void __exit vhost_exit(void)
2344{
2345}
2346
2347module_init(vhost_init);
2348module_exit(vhost_exit);
2349
2350MODULE_VERSION("0.0.1");
2351MODULE_LICENSE("GPL v2");
2352MODULE_AUTHOR("Michael S. Tsirkin");
2353MODULE_DESCRIPTION("Host kernel accelerator for virtio");