blob: c6f2d89c0e97cd4c184e615be6e3d86aca722a0d [file] [log] [blame]
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000019#include <linux/miscdevice.h>
20#include <linux/mutex.h>
Michael S. Tsirkin3a4d5c94e2010-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>
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000031
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000032#include "vhost.h"
33
Igor Mammedovc9ce42f2015-07-02 15:08:11 +020034static ushort max_mem_regions = 64;
35module_param(max_mem_regions, ushort, 0444);
36MODULE_PARM_DESC(max_mem_regions,
37 "Maximum number of memory regions in memory map. (default: 64)");
Jason Wang6b1e6cc2016-06-23 02:04:32 -040038static int max_iotlb_entries = 2048;
39module_param(max_iotlb_entries, int, 0444);
40MODULE_PARM_DESC(max_iotlb_entries,
41 "Maximum number of iotlb entries. (default: 2048)");
Igor Mammedovc9ce42f2015-07-02 15:08:11 +020042
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000043enum {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000044 VHOST_MEMORY_F_LOG = 0x1,
45};
46
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +030047#define vhost_used_event(vq) ((__virtio16 __user *)&vq->avail->ring[vq->num])
48#define vhost_avail_event(vq) ((__virtio16 __user *)&vq->used->ring[vq->num])
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +030049
Jason Wanga9709d62016-06-23 02:04:31 -040050INTERVAL_TREE_DEFINE(struct vhost_umem_node,
51 rb, __u64, __subtree_last,
52 START, LAST, , vhost_umem_interval_tree);
53
Greg Kurz2751c982015-04-24 14:27:24 +020054#ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
Greg Kurzc5072032016-02-16 15:59:34 +010055static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
Greg Kurz2751c982015-04-24 14:27:24 +020056{
57 vq->user_be = !virtio_legacy_is_little_endian();
58}
59
Greg Kurzc5072032016-02-16 15:59:34 +010060static void vhost_enable_cross_endian_big(struct vhost_virtqueue *vq)
61{
62 vq->user_be = true;
63}
64
65static void vhost_enable_cross_endian_little(struct vhost_virtqueue *vq)
66{
67 vq->user_be = false;
68}
69
Greg Kurz2751c982015-04-24 14:27:24 +020070static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
71{
72 struct vhost_vring_state s;
73
74 if (vq->private_data)
75 return -EBUSY;
76
77 if (copy_from_user(&s, argp, sizeof(s)))
78 return -EFAULT;
79
80 if (s.num != VHOST_VRING_LITTLE_ENDIAN &&
81 s.num != VHOST_VRING_BIG_ENDIAN)
82 return -EINVAL;
83
Greg Kurzc5072032016-02-16 15:59:34 +010084 if (s.num == VHOST_VRING_BIG_ENDIAN)
85 vhost_enable_cross_endian_big(vq);
86 else
87 vhost_enable_cross_endian_little(vq);
Greg Kurz2751c982015-04-24 14:27:24 +020088
89 return 0;
90}
91
92static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
93 int __user *argp)
94{
95 struct vhost_vring_state s = {
96 .index = idx,
97 .num = vq->user_be
98 };
99
100 if (copy_to_user(argp, &s, sizeof(s)))
101 return -EFAULT;
102
103 return 0;
104}
105
106static void vhost_init_is_le(struct vhost_virtqueue *vq)
107{
108 /* Note for legacy virtio: user_be is initialized at reset time
109 * according to the host endianness. If userspace does not set an
110 * explicit endianness, the default behavior is native endian, as
111 * expected by legacy virtio.
112 */
113 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1) || !vq->user_be;
114}
115#else
Greg Kurzc5072032016-02-16 15:59:34 +0100116static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
Greg Kurz2751c982015-04-24 14:27:24 +0200117{
118}
119
120static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
121{
122 return -ENOIOCTLCMD;
123}
124
125static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
126 int __user *argp)
127{
128 return -ENOIOCTLCMD;
129}
130
131static void vhost_init_is_le(struct vhost_virtqueue *vq)
132{
133 if (vhost_has_feature(vq, VIRTIO_F_VERSION_1))
134 vq->is_le = true;
135}
136#endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */
137
Greg Kurzc5072032016-02-16 15:59:34 +0100138static void vhost_reset_is_le(struct vhost_virtqueue *vq)
139{
140 vq->is_le = virtio_legacy_is_little_endian();
141}
142
Jason Wang7235acd2016-04-25 22:14:32 -0400143struct vhost_flush_struct {
144 struct vhost_work work;
145 struct completion wait_event;
146};
147
148static void vhost_flush_work(struct vhost_work *work)
149{
150 struct vhost_flush_struct *s;
151
152 s = container_of(work, struct vhost_flush_struct, work);
153 complete(&s->wait_event);
154}
155
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000156static void vhost_poll_func(struct file *file, wait_queue_head_t *wqh,
157 poll_table *pt)
158{
159 struct vhost_poll *poll;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000160
Krishna Kumard47effe2011-03-01 17:06:37 +0530161 poll = container_of(pt, struct vhost_poll, table);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000162 poll->wqh = wqh;
163 add_wait_queue(wqh, &poll->wait);
164}
165
166static int vhost_poll_wakeup(wait_queue_t *wait, unsigned mode, int sync,
167 void *key)
168{
Tejun Heoc23f34452010-06-02 20:40:00 +0200169 struct vhost_poll *poll = container_of(wait, struct vhost_poll, wait);
170
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000171 if (!((unsigned long)key & poll->mask))
172 return 0;
173
Tejun Heoc23f34452010-06-02 20:40:00 +0200174 vhost_poll_queue(poll);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000175 return 0;
176}
177
Stefan Hajnoczi163049a2012-07-21 06:55:37 +0000178void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000179{
Jason Wang04b96e52016-04-25 22:14:33 -0400180 clear_bit(VHOST_WORK_QUEUED, &work->flags);
Tejun Heoc23f34452010-06-02 20:40:00 +0200181 work->fn = fn;
182 init_waitqueue_head(&work->done);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000183}
Asias He6ac1afb2013-05-06 16:38:21 +0800184EXPORT_SYMBOL_GPL(vhost_work_init);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000185
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300186/* Init poll structure */
187void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
188 unsigned long mask, struct vhost_dev *dev)
189{
190 init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup);
191 init_poll_funcptr(&poll->table, vhost_poll_func);
192 poll->mask = mask;
193 poll->dev = dev;
Jason Wang2b8b3282013-01-28 01:05:18 +0000194 poll->wqh = NULL;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300195
196 vhost_work_init(&poll->work, fn);
197}
Asias He6ac1afb2013-05-06 16:38:21 +0800198EXPORT_SYMBOL_GPL(vhost_poll_init);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300199
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000200/* Start polling a file. We add ourselves to file's wait queue. The caller must
201 * keep a reference to a file until after vhost_poll_stop is called. */
Jason Wang2b8b3282013-01-28 01:05:18 +0000202int vhost_poll_start(struct vhost_poll *poll, struct file *file)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000203{
204 unsigned long mask;
Jason Wang2b8b3282013-01-28 01:05:18 +0000205 int ret = 0;
Krishna Kumard47effe2011-03-01 17:06:37 +0530206
Jason Wang70181d512013-04-10 20:50:48 +0000207 if (poll->wqh)
208 return 0;
209
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000210 mask = file->f_op->poll(file, &poll->table);
211 if (mask)
212 vhost_poll_wakeup(&poll->wait, 0, 0, (void *)mask);
Jason Wang2b8b3282013-01-28 01:05:18 +0000213 if (mask & POLLERR) {
214 if (poll->wqh)
215 remove_wait_queue(poll->wqh, &poll->wait);
216 ret = -EINVAL;
217 }
218
219 return ret;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000220}
Asias He6ac1afb2013-05-06 16:38:21 +0800221EXPORT_SYMBOL_GPL(vhost_poll_start);
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000231}
Asias He6ac1afb2013-05-06 16:38:21 +0800232EXPORT_SYMBOL_GPL(vhost_poll_stop);
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000245}
Asias He6ac1afb2013-05-06 16:38:21 +0800246EXPORT_SYMBOL_GPL(vhost_work_flush);
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000269}
Asias He6ac1afb2013-05-06 16:38:21 +0800270EXPORT_SYMBOL_GPL(vhost_work_queue);
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000297 vq->used_flags = 0;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000298 vq->log_used = false;
299 vq->log_addr = -1ull;
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000398{
Asias He6d5e6aa2013-05-06 16:38:23 +0800399 struct vhost_virtqueue *vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000400 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200401
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000429 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000430}
Asias He6ac1afb2013-05-06 16:38:21 +0800431EXPORT_SYMBOL_GPL(vhost_dev_init);
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000514}
Asias He6ac1afb2013-05-06 16:38:21 +0800515EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000516
Jason Wanga9709d62016-06-23 02:04:31 -0400517static void *vhost_kvzalloc(unsigned long size)
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000547}
Asias He6ac1afb2013-05-06 16:38:21 +0800548EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000549
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000550void vhost_dev_stop(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000551{
552 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530553
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000621 }
Jason Wange0e9b402010-09-14 23:53:05 +0800622 vhost_dev_free_iovecs(dev);
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000644}
Asias He6ac1afb2013-05-06 16:38:21 +0800645EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000696 int log_all)
697{
698 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530699
Michael S. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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. Tsirkin3a4d5c94e2010-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)
852 mutex_lock(&d->vqs[i]->mutex);
853}
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 &&
909 msg->iova + msg->size - 1 > vq_msg->iova &&
910 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
942 vhost_dev_lock_vqs(dev);
943 switch (msg->type) {
944 case VHOST_IOTLB_UPDATE:
945 if (!dev->iotlb) {
946 ret = -EFAULT;
947 break;
948 }
949 if (umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
950 ret = -EFAULT;
951 break;
952 }
953 if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
954 msg->iova + msg->size - 1,
955 msg->uaddr, msg->perm)) {
956 ret = -ENOMEM;
957 break;
958 }
959 vhost_iotlb_notify_vq(dev, msg);
960 break;
961 case VHOST_IOTLB_INVALIDATE:
962 vhost_del_umem_range(dev->iotlb, msg->iova,
963 msg->iova + msg->size - 1);
964 break;
965 default:
966 ret = -EINVAL;
967 break;
968 }
969
970 vhost_dev_unlock_vqs(dev);
971 return ret;
972}
973ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
974 struct iov_iter *from)
975{
976 struct vhost_msg_node node;
977 unsigned size = sizeof(struct vhost_msg);
978 size_t ret;
979 int err;
980
981 if (iov_iter_count(from) < size)
982 return 0;
983 ret = copy_from_iter(&node.msg, size, from);
984 if (ret != size)
985 goto done;
986
987 switch (node.msg.type) {
988 case VHOST_IOTLB_MSG:
989 err = vhost_process_iotlb_msg(dev, &node.msg.iotlb);
990 if (err)
991 ret = err;
992 break;
993 default:
994 ret = -EINVAL;
995 break;
996 }
997
998done:
999 return ret;
1000}
1001EXPORT_SYMBOL(vhost_chr_write_iter);
1002
1003unsigned int vhost_chr_poll(struct file *file, struct vhost_dev *dev,
1004 poll_table *wait)
1005{
1006 unsigned int mask = 0;
1007
1008 poll_wait(file, &dev->wait, wait);
1009
1010 if (!list_empty(&dev->read_list))
1011 mask |= POLLIN | POLLRDNORM;
1012
1013 return mask;
1014}
1015EXPORT_SYMBOL(vhost_chr_poll);
1016
1017ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1018 int noblock)
1019{
1020 DEFINE_WAIT(wait);
1021 struct vhost_msg_node *node;
1022 ssize_t ret = 0;
1023 unsigned size = sizeof(struct vhost_msg);
1024
1025 if (iov_iter_count(to) < size)
1026 return 0;
1027
1028 while (1) {
1029 if (!noblock)
1030 prepare_to_wait(&dev->wait, &wait,
1031 TASK_INTERRUPTIBLE);
1032
1033 node = vhost_dequeue_msg(dev, &dev->read_list);
1034 if (node)
1035 break;
1036 if (noblock) {
1037 ret = -EAGAIN;
1038 break;
1039 }
1040 if (signal_pending(current)) {
1041 ret = -ERESTARTSYS;
1042 break;
1043 }
1044 if (!dev->iotlb) {
1045 ret = -EBADFD;
1046 break;
1047 }
1048
1049 schedule();
1050 }
1051
1052 if (!noblock)
1053 finish_wait(&dev->wait, &wait);
1054
1055 if (node) {
1056 ret = copy_to_iter(&node->msg, size, to);
1057
1058 if (ret != size || node->msg.type != VHOST_IOTLB_MISS) {
1059 kfree(node);
1060 return ret;
1061 }
1062
1063 vhost_enqueue_msg(dev, &dev->pending_list, node);
1064 }
1065
1066 return ret;
1067}
1068EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1069
1070static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1071{
1072 struct vhost_dev *dev = vq->dev;
1073 struct vhost_msg_node *node;
1074 struct vhost_iotlb_msg *msg;
1075
1076 node = vhost_new_msg(vq, VHOST_IOTLB_MISS);
1077 if (!node)
1078 return -ENOMEM;
1079
1080 msg = &node->msg.iotlb;
1081 msg->type = VHOST_IOTLB_MISS;
1082 msg->iova = iova;
1083 msg->perm = access;
1084
1085 vhost_enqueue_msg(dev, &dev->read_list, node);
1086
1087 return 0;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001088}
1089
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001090static int vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001091 struct vring_desc __user *desc,
1092 struct vring_avail __user *avail,
1093 struct vring_used __user *used)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001094
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001095{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001096 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001097
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001098 return access_ok(VERIFY_READ, desc, num * sizeof *desc) &&
1099 access_ok(VERIFY_READ, avail,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001100 sizeof *avail + num * sizeof *avail->ring + s) &&
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001101 access_ok(VERIFY_WRITE, used,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001102 sizeof *used + num * sizeof *used->ring + s);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001103}
1104
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001105static int iotlb_access_ok(struct vhost_virtqueue *vq,
1106 int access, u64 addr, u64 len)
1107{
1108 const struct vhost_umem_node *node;
1109 struct vhost_umem *umem = vq->iotlb;
1110 u64 s = 0, size;
1111
1112 while (len > s) {
1113 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1114 addr,
1115 addr + len - 1);
1116 if (node == NULL || node->start > addr) {
1117 vhost_iotlb_miss(vq, addr, access);
1118 return false;
1119 } else if (!(node->perm & access)) {
1120 /* Report the possible access violation by
1121 * request another translation from userspace.
1122 */
1123 return false;
1124 }
1125
1126 size = node->size - addr + node->start;
1127 s += size;
1128 addr += size;
1129 }
1130
1131 return true;
1132}
1133
1134int vq_iotlb_prefetch(struct vhost_virtqueue *vq)
1135{
1136 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1137 unsigned int num = vq->num;
1138
1139 if (!vq->iotlb)
1140 return 1;
1141
1142 return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
1143 num * sizeof *vq->desc) &&
1144 iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1145 sizeof *vq->avail +
1146 num * sizeof *vq->avail->ring + s) &&
1147 iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1148 sizeof *vq->used +
1149 num * sizeof *vq->used->ring + s);
1150}
1151EXPORT_SYMBOL_GPL(vq_iotlb_prefetch);
1152
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001153/* Can we log writes? */
1154/* Caller should have device mutex but not vq mutex */
1155int vhost_log_access_ok(struct vhost_dev *dev)
1156{
Jason Wanga9709d62016-06-23 02:04:31 -04001157 return memory_access_ok(dev, dev->umem, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001158}
Asias He6ac1afb2013-05-06 16:38:21 +08001159EXPORT_SYMBOL_GPL(vhost_log_access_ok);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001160
1161/* Verify access for write logging. */
1162/* Caller should have vq mutex and device mutex */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001163static int vq_log_access_ok(struct vhost_virtqueue *vq,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001164 void __user *log_base)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001165{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001166 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Arnd Bergmann28457ee2010-03-09 19:24:45 +01001167
Jason Wanga9709d62016-06-23 02:04:31 -04001168 return vq_memory_access_ok(log_base, vq->umem,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001169 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001170 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
1171 sizeof *vq->used +
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001172 vq->num * sizeof *vq->used->ring + s));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001173}
1174
1175/* Can we start vq? */
1176/* Caller should have vq mutex and device mutex */
1177int vhost_vq_access_ok(struct vhost_virtqueue *vq)
1178{
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001179 if (vq->iotlb) {
1180 /* When device IOTLB was used, the access validation
1181 * will be validated during prefetching.
1182 */
1183 return 1;
1184 }
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001185 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used) &&
1186 vq_log_access_ok(vq, vq->log_base);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001187}
Asias He6ac1afb2013-05-06 16:38:21 +08001188EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001189
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001190static struct vhost_umem *vhost_umem_alloc(void)
1191{
1192 struct vhost_umem *umem = vhost_kvzalloc(sizeof(*umem));
1193
1194 if (!umem)
1195 return NULL;
1196
1197 umem->umem_tree = RB_ROOT;
1198 umem->numem = 0;
1199 INIT_LIST_HEAD(&umem->umem_list);
1200
1201 return umem;
1202}
1203
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001204static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1205{
Jason Wanga9709d62016-06-23 02:04:31 -04001206 struct vhost_memory mem, *newmem;
1207 struct vhost_memory_region *region;
Jason Wanga9709d62016-06-23 02:04:31 -04001208 struct vhost_umem *newumem, *oldumem;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001209 unsigned long size = offsetof(struct vhost_memory, regions);
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001210 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +05301211
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001212 if (copy_from_user(&mem, m, size))
1213 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001214 if (mem.padding)
1215 return -EOPNOTSUPP;
Igor Mammedovc9ce42f2015-07-02 15:08:11 +02001216 if (mem.nregions > max_mem_regions)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001217 return -E2BIG;
Igor Mammedov4de72552015-07-01 11:07:09 +02001218 newmem = vhost_kvzalloc(size + mem.nregions * sizeof(*m->regions));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001219 if (!newmem)
1220 return -ENOMEM;
1221
1222 memcpy(newmem, &mem, size);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001223 if (copy_from_user(newmem->regions, m->regions,
1224 mem.nregions * sizeof *m->regions)) {
Igor Mammedovbcfeaca2015-06-16 18:33:35 +02001225 kvfree(newmem);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001226 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001227 }
1228
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001229 newumem = vhost_umem_alloc();
Jason Wanga9709d62016-06-23 02:04:31 -04001230 if (!newumem) {
Igor Mammedov4de72552015-07-01 11:07:09 +02001231 kvfree(newmem);
Jason Wanga9709d62016-06-23 02:04:31 -04001232 return -ENOMEM;
Takuya Yoshikawaa02c3782010-05-27 19:03:56 +09001233 }
Jason Wanga9709d62016-06-23 02:04:31 -04001234
Jason Wanga9709d62016-06-23 02:04:31 -04001235 for (region = newmem->regions;
1236 region < newmem->regions + mem.nregions;
1237 region++) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001238 if (vhost_new_umem_range(newumem,
1239 region->guest_phys_addr,
1240 region->memory_size,
1241 region->guest_phys_addr +
1242 region->memory_size - 1,
1243 region->userspace_addr,
1244 VHOST_ACCESS_RW))
Jason Wanga9709d62016-06-23 02:04:31 -04001245 goto err;
Jason Wanga9709d62016-06-23 02:04:31 -04001246 }
1247
1248 if (!memory_access_ok(d, newumem, 0))
1249 goto err;
1250
1251 oldumem = d->umem;
1252 d->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001253
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001254 /* All memory accesses are done under some VQ mutex. */
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001255 for (i = 0; i < d->nvqs; ++i) {
1256 mutex_lock(&d->vqs[i]->mutex);
Jason Wanga9709d62016-06-23 02:04:31 -04001257 d->vqs[i]->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001258 mutex_unlock(&d->vqs[i]->mutex);
1259 }
Jason Wanga9709d62016-06-23 02:04:31 -04001260
1261 kvfree(newmem);
1262 vhost_umem_clean(oldumem);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001263 return 0;
Jason Wanga9709d62016-06-23 02:04:31 -04001264
1265err:
1266 vhost_umem_clean(newumem);
1267 kvfree(newmem);
1268 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001269}
1270
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001271long vhost_vring_ioctl(struct vhost_dev *d, int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001272{
Al Virocecb46f2012-08-27 14:21:39 -04001273 struct file *eventfp, *filep = NULL;
1274 bool pollstart = false, pollstop = false;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001275 struct eventfd_ctx *ctx = NULL;
1276 u32 __user *idxp = argp;
1277 struct vhost_virtqueue *vq;
1278 struct vhost_vring_state s;
1279 struct vhost_vring_file f;
1280 struct vhost_vring_addr a;
1281 u32 idx;
1282 long r;
1283
1284 r = get_user(idx, idxp);
1285 if (r < 0)
1286 return r;
Krishna Kumar0f3d9a12010-05-25 11:10:36 +05301287 if (idx >= d->nvqs)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001288 return -ENOBUFS;
1289
Asias He3ab2e422013-04-27 11:16:48 +08001290 vq = d->vqs[idx];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001291
1292 mutex_lock(&vq->mutex);
1293
1294 switch (ioctl) {
1295 case VHOST_SET_VRING_NUM:
1296 /* Resizing ring with an active backend?
1297 * You don't want to do that. */
1298 if (vq->private_data) {
1299 r = -EBUSY;
1300 break;
1301 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001302 if (copy_from_user(&s, argp, sizeof s)) {
1303 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001304 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001305 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001306 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) {
1307 r = -EINVAL;
1308 break;
1309 }
1310 vq->num = s.num;
1311 break;
1312 case VHOST_SET_VRING_BASE:
1313 /* Moving base with an active backend?
1314 * You don't want to do that. */
1315 if (vq->private_data) {
1316 r = -EBUSY;
1317 break;
1318 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001319 if (copy_from_user(&s, argp, sizeof s)) {
1320 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001321 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001322 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001323 if (s.num > 0xffff) {
1324 r = -EINVAL;
1325 break;
1326 }
1327 vq->last_avail_idx = s.num;
1328 /* Forget the cached index value. */
1329 vq->avail_idx = vq->last_avail_idx;
1330 break;
1331 case VHOST_GET_VRING_BASE:
1332 s.index = idx;
1333 s.num = vq->last_avail_idx;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001334 if (copy_to_user(argp, &s, sizeof s))
1335 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001336 break;
1337 case VHOST_SET_VRING_ADDR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001338 if (copy_from_user(&a, argp, sizeof a)) {
1339 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001340 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001341 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001342 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) {
1343 r = -EOPNOTSUPP;
1344 break;
1345 }
1346 /* For 32bit, verify that the top 32bits of the user
1347 data are set to zero. */
1348 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1349 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1350 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) {
1351 r = -EFAULT;
1352 break;
1353 }
Michael S. Tsirkin5d9a07b2014-12-21 01:00:23 +02001354
1355 /* Make sure it's safe to cast pointers to vring types. */
1356 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1357 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1358 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1359 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
Michael S. Tsirkind5424832015-11-16 16:57:08 +02001360 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001361 r = -EINVAL;
1362 break;
1363 }
1364
1365 /* We only verify access here if backend is configured.
1366 * If it is not, we don't as size might not have been setup.
1367 * We will verify when backend is configured. */
1368 if (vq->private_data) {
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001369 if (!vq_access_ok(vq, vq->num,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001370 (void __user *)(unsigned long)a.desc_user_addr,
1371 (void __user *)(unsigned long)a.avail_user_addr,
1372 (void __user *)(unsigned long)a.used_user_addr)) {
1373 r = -EINVAL;
1374 break;
1375 }
1376
1377 /* Also validate log access for used ring if enabled. */
1378 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1379 !log_access_ok(vq->log_base, a.log_guest_addr,
1380 sizeof *vq->used +
1381 vq->num * sizeof *vq->used->ring)) {
1382 r = -EINVAL;
1383 break;
1384 }
1385 }
1386
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001387 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1388 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1389 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1390 vq->log_addr = a.log_guest_addr;
1391 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1392 break;
1393 case VHOST_SET_VRING_KICK:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001394 if (copy_from_user(&f, argp, sizeof f)) {
1395 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001396 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001397 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001398 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001399 if (IS_ERR(eventfp)) {
1400 r = PTR_ERR(eventfp);
1401 break;
1402 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001403 if (eventfp != vq->kick) {
Al Virocecb46f2012-08-27 14:21:39 -04001404 pollstop = (filep = vq->kick) != NULL;
1405 pollstart = (vq->kick = eventfp) != NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001406 } else
1407 filep = eventfp;
1408 break;
1409 case VHOST_SET_VRING_CALL:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001410 if (copy_from_user(&f, argp, sizeof f)) {
1411 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001412 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001413 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001414 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001415 if (IS_ERR(eventfp)) {
1416 r = PTR_ERR(eventfp);
1417 break;
1418 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001419 if (eventfp != vq->call) {
1420 filep = vq->call;
1421 ctx = vq->call_ctx;
1422 vq->call = eventfp;
1423 vq->call_ctx = eventfp ?
1424 eventfd_ctx_fileget(eventfp) : NULL;
1425 } else
1426 filep = eventfp;
1427 break;
1428 case VHOST_SET_VRING_ERR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001429 if (copy_from_user(&f, argp, sizeof f)) {
1430 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001431 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001432 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001433 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001434 if (IS_ERR(eventfp)) {
1435 r = PTR_ERR(eventfp);
1436 break;
1437 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001438 if (eventfp != vq->error) {
1439 filep = vq->error;
1440 vq->error = eventfp;
1441 ctx = vq->error_ctx;
1442 vq->error_ctx = eventfp ?
1443 eventfd_ctx_fileget(eventfp) : NULL;
1444 } else
1445 filep = eventfp;
1446 break;
Greg Kurz2751c982015-04-24 14:27:24 +02001447 case VHOST_SET_VRING_ENDIAN:
1448 r = vhost_set_vring_endian(vq, argp);
1449 break;
1450 case VHOST_GET_VRING_ENDIAN:
1451 r = vhost_get_vring_endian(vq, idx, argp);
1452 break;
Jason Wang03088132016-03-04 06:24:53 -05001453 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1454 if (copy_from_user(&s, argp, sizeof(s))) {
1455 r = -EFAULT;
1456 break;
1457 }
1458 vq->busyloop_timeout = s.num;
1459 break;
1460 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1461 s.index = idx;
1462 s.num = vq->busyloop_timeout;
1463 if (copy_to_user(argp, &s, sizeof(s)))
1464 r = -EFAULT;
1465 break;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001466 default:
1467 r = -ENOIOCTLCMD;
1468 }
1469
1470 if (pollstop && vq->handle_kick)
1471 vhost_poll_stop(&vq->poll);
1472
1473 if (ctx)
1474 eventfd_ctx_put(ctx);
1475 if (filep)
1476 fput(filep);
1477
1478 if (pollstart && vq->handle_kick)
Jason Wang2b8b3282013-01-28 01:05:18 +00001479 r = vhost_poll_start(&vq->poll, vq->kick);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001480
1481 mutex_unlock(&vq->mutex);
1482
1483 if (pollstop && vq->handle_kick)
1484 vhost_poll_flush(&vq->poll);
1485 return r;
1486}
Asias He6ac1afb2013-05-06 16:38:21 +08001487EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001488
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001489int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1490{
1491 struct vhost_umem *niotlb, *oiotlb;
1492 int i;
1493
1494 niotlb = vhost_umem_alloc();
1495 if (!niotlb)
1496 return -ENOMEM;
1497
1498 oiotlb = d->iotlb;
1499 d->iotlb = niotlb;
1500
1501 for (i = 0; i < d->nvqs; ++i) {
1502 mutex_lock(&d->vqs[i]->mutex);
1503 d->vqs[i]->iotlb = niotlb;
1504 mutex_unlock(&d->vqs[i]->mutex);
1505 }
1506
1507 vhost_umem_clean(oiotlb);
1508
1509 return 0;
1510}
1511EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1512
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001513/* Caller must have device mutex */
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001514long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001515{
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001516 struct file *eventfp, *filep = NULL;
1517 struct eventfd_ctx *ctx = NULL;
1518 u64 p;
1519 long r;
1520 int i, fd;
1521
1522 /* If you are not the owner, you can become one */
1523 if (ioctl == VHOST_SET_OWNER) {
1524 r = vhost_dev_set_owner(d);
1525 goto done;
1526 }
1527
1528 /* You must be the owner to do anything else */
1529 r = vhost_dev_check_owner(d);
1530 if (r)
1531 goto done;
1532
1533 switch (ioctl) {
1534 case VHOST_SET_MEM_TABLE:
1535 r = vhost_set_memory(d, argp);
1536 break;
1537 case VHOST_SET_LOG_BASE:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001538 if (copy_from_user(&p, argp, sizeof p)) {
1539 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001540 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001541 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001542 if ((u64)(unsigned long)p != p) {
1543 r = -EFAULT;
1544 break;
1545 }
1546 for (i = 0; i < d->nvqs; ++i) {
1547 struct vhost_virtqueue *vq;
1548 void __user *base = (void __user *)(unsigned long)p;
Asias He3ab2e422013-04-27 11:16:48 +08001549 vq = d->vqs[i];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001550 mutex_lock(&vq->mutex);
1551 /* If ring is inactive, will check when it's enabled. */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001552 if (vq->private_data && !vq_log_access_ok(vq, base))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001553 r = -EFAULT;
1554 else
1555 vq->log_base = base;
1556 mutex_unlock(&vq->mutex);
1557 }
1558 break;
1559 case VHOST_SET_LOG_FD:
1560 r = get_user(fd, (int __user *)argp);
1561 if (r < 0)
1562 break;
1563 eventfp = fd == -1 ? NULL : eventfd_fget(fd);
1564 if (IS_ERR(eventfp)) {
1565 r = PTR_ERR(eventfp);
1566 break;
1567 }
1568 if (eventfp != d->log_file) {
1569 filep = d->log_file;
Marc-André Lureau7932c0b2015-07-17 15:32:03 +02001570 d->log_file = eventfp;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001571 ctx = d->log_ctx;
1572 d->log_ctx = eventfp ?
1573 eventfd_ctx_fileget(eventfp) : NULL;
1574 } else
1575 filep = eventfp;
1576 for (i = 0; i < d->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001577 mutex_lock(&d->vqs[i]->mutex);
1578 d->vqs[i]->log_ctx = d->log_ctx;
1579 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001580 }
1581 if (ctx)
1582 eventfd_ctx_put(ctx);
1583 if (filep)
1584 fput(filep);
1585 break;
1586 default:
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001587 r = -ENOIOCTLCMD;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001588 break;
1589 }
1590done:
1591 return r;
1592}
Asias He6ac1afb2013-05-06 16:38:21 +08001593EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001594
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001595/* TODO: This is really inefficient. We need something like get_user()
1596 * (instruction directly accesses the data, with an exception table entry
1597 * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1598 */
1599static int set_bit_to_user(int nr, void __user *addr)
1600{
1601 unsigned long log = (unsigned long)addr;
1602 struct page *page;
1603 void *base;
1604 int bit = nr + (log % PAGE_SIZE) * 8;
1605 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301606
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001607 r = get_user_pages_fast(log, 1, 1, &page);
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001608 if (r < 0)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001609 return r;
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001610 BUG_ON(r != 1);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001611 base = kmap_atomic(page);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001612 set_bit(bit, base);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001613 kunmap_atomic(base);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001614 set_page_dirty_lock(page);
1615 put_page(page);
1616 return 0;
1617}
1618
1619static int log_write(void __user *log_base,
1620 u64 write_address, u64 write_length)
1621{
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001622 u64 write_page = write_address / VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001623 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301624
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001625 if (!write_length)
1626 return 0;
Michael S. Tsirkin3bf9be42010-11-29 10:19:07 +02001627 write_length += write_address % VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001628 for (;;) {
1629 u64 base = (u64)(unsigned long)log_base;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001630 u64 log = base + write_page / 8;
1631 int bit = write_page % 8;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001632 if ((u64)(unsigned long)log != log)
1633 return -EFAULT;
1634 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1635 if (r < 0)
1636 return r;
1637 if (write_length <= VHOST_PAGE_SIZE)
1638 break;
1639 write_length -= VHOST_PAGE_SIZE;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001640 write_page += 1;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001641 }
1642 return r;
1643}
1644
1645int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
1646 unsigned int log_num, u64 len)
1647{
1648 int i, r;
1649
1650 /* Make sure data written is seen before log. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001651 smp_wmb();
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001652 for (i = 0; i < log_num; ++i) {
1653 u64 l = min(log[i].len, len);
1654 r = log_write(vq->log_base, log[i].addr, l);
1655 if (r < 0)
1656 return r;
1657 len -= l;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001658 if (!len) {
1659 if (vq->log_ctx)
1660 eventfd_signal(vq->log_ctx, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001661 return 0;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001662 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001663 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001664 /* Length written exceeds what we have stored. This is a bug. */
1665 BUG();
1666 return 0;
1667}
Asias He6ac1afb2013-05-06 16:38:21 +08001668EXPORT_SYMBOL_GPL(vhost_log_write);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001669
Jason Wang2723fea2011-06-21 18:04:38 +08001670static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1671{
1672 void __user *used;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001673 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
1674 &vq->used->flags) < 0)
Jason Wang2723fea2011-06-21 18:04:38 +08001675 return -EFAULT;
1676 if (unlikely(vq->log_used)) {
1677 /* Make sure the flag is seen before log. */
1678 smp_wmb();
1679 /* Log used flag write. */
1680 used = &vq->used->flags;
1681 log_write(vq->log_base, vq->log_addr +
1682 (used - (void __user *)vq->used),
1683 sizeof vq->used->flags);
1684 if (vq->log_ctx)
1685 eventfd_signal(vq->log_ctx, 1);
1686 }
1687 return 0;
1688}
1689
1690static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1691{
Jason Wangbfe2bc52016-06-23 02:04:30 -04001692 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
1693 vhost_avail_event(vq)))
Jason Wang2723fea2011-06-21 18:04:38 +08001694 return -EFAULT;
1695 if (unlikely(vq->log_used)) {
1696 void __user *used;
1697 /* Make sure the event is seen before log. */
1698 smp_wmb();
1699 /* Log avail event write */
1700 used = vhost_avail_event(vq);
1701 log_write(vq->log_base, vq->log_addr +
1702 (used - (void __user *)vq->used),
1703 sizeof *vhost_avail_event(vq));
1704 if (vq->log_ctx)
1705 eventfd_signal(vq->log_ctx, 1);
1706 }
1707 return 0;
1708}
1709
Greg Kurz80f7d032016-02-16 15:59:44 +01001710int vhost_vq_init_access(struct vhost_virtqueue *vq)
Jason Wang2723fea2011-06-21 18:04:38 +08001711{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001712 __virtio16 last_used_idx;
Jason Wang2723fea2011-06-21 18:04:38 +08001713 int r;
Greg Kurze1f33be2016-02-16 15:54:28 +01001714 bool is_le = vq->is_le;
1715
Greg Kurz2751c982015-04-24 14:27:24 +02001716 if (!vq->private_data) {
Greg Kurzc5072032016-02-16 15:59:34 +01001717 vhost_reset_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08001718 return 0;
Greg Kurz2751c982015-04-24 14:27:24 +02001719 }
1720
1721 vhost_init_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08001722
1723 r = vhost_update_used_flags(vq);
1724 if (r)
Greg Kurze1f33be2016-02-16 15:54:28 +01001725 goto err;
Jason Wang2723fea2011-06-21 18:04:38 +08001726 vq->signalled_used_valid = false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001727 if (!vq->iotlb &&
1728 !access_ok(VERIFY_READ, &vq->used->idx, sizeof vq->used->idx)) {
Greg Kurze1f33be2016-02-16 15:54:28 +01001729 r = -EFAULT;
1730 goto err;
1731 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04001732 r = vhost_get_user(vq, last_used_idx, &vq->used->idx);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001733 if (r) {
1734 vq_err(vq, "Can't access used idx at %p\n",
1735 &vq->used->idx);
Greg Kurze1f33be2016-02-16 15:54:28 +01001736 goto err;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001737 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001738 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
Michael S. Tsirkin64f7f052014-12-01 17:39:39 +02001739 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001740
Greg Kurze1f33be2016-02-16 15:54:28 +01001741err:
1742 vq->is_le = is_le;
1743 return r;
Jason Wang2723fea2011-06-21 18:04:38 +08001744}
Greg Kurz80f7d032016-02-16 15:59:44 +01001745EXPORT_SYMBOL_GPL(vhost_vq_init_access);
Jason Wang2723fea2011-06-21 18:04:38 +08001746
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001747static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001748 struct iovec iov[], int iov_size, int access)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001749{
Jason Wanga9709d62016-06-23 02:04:31 -04001750 const struct vhost_umem_node *node;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001751 struct vhost_dev *dev = vq->dev;
1752 struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001753 struct iovec *_iov;
1754 u64 s = 0;
1755 int ret = 0;
1756
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001757 while ((u64)len > s) {
1758 u64 size;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001759 if (unlikely(ret >= iov_size)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001760 ret = -ENOBUFS;
1761 break;
1762 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001763
Jason Wanga9709d62016-06-23 02:04:31 -04001764 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1765 addr, addr + len - 1);
1766 if (node == NULL || node->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001767 if (umem != dev->iotlb) {
1768 ret = -EFAULT;
1769 break;
1770 }
1771 ret = -EAGAIN;
1772 break;
1773 } else if (!(node->perm & access)) {
1774 ret = -EPERM;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001775 break;
1776 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001777
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001778 _iov = iov + ret;
Jason Wanga9709d62016-06-23 02:04:31 -04001779 size = node->size - addr + node->start;
Michael S. Tsirkinbd971202012-11-26 05:57:27 +00001780 _iov->iov_len = min((u64)len - s, size);
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001781 _iov->iov_base = (void __user *)(unsigned long)
Jason Wanga9709d62016-06-23 02:04:31 -04001782 (node->userspace_addr + addr - node->start);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001783 s += size;
1784 addr += size;
1785 ++ret;
1786 }
1787
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001788 if (ret == -EAGAIN)
1789 vhost_iotlb_miss(vq, addr, access);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001790 return ret;
1791}
1792
1793/* Each buffer in the virtqueues is actually a chain of descriptors. This
1794 * function returns the next descriptor in the chain,
1795 * or -1U if we're at the end. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001796static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001797{
1798 unsigned int next;
1799
1800 /* If this descriptor says it doesn't chain, we're done. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001801 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001802 return -1U;
1803
1804 /* Check they're not leading us off end of descriptors. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001805 next = vhost16_to_cpu(vq, desc->next);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001806 /* Make sure compiler knows to grab that: we don't want it changing! */
1807 /* We will use the result as an index in an array, so most
1808 * architectures only need a compiler barrier here. */
1809 read_barrier_depends();
1810
1811 return next;
1812}
1813
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001814static int get_indirect(struct vhost_virtqueue *vq,
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001815 struct iovec iov[], unsigned int iov_size,
1816 unsigned int *out_num, unsigned int *in_num,
1817 struct vhost_log *log, unsigned int *log_num,
1818 struct vring_desc *indirect)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001819{
1820 struct vring_desc desc;
1821 unsigned int i = 0, count, found = 0;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001822 u32 len = vhost32_to_cpu(vq, indirect->len);
Al Viroaad9a1c2014-12-10 14:49:01 -05001823 struct iov_iter from;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001824 int ret, access;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001825
1826 /* Sanity check */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001827 if (unlikely(len % sizeof desc)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001828 vq_err(vq, "Invalid length in indirect descriptor: "
1829 "len 0x%llx not multiple of 0x%zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001830 (unsigned long long)len,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001831 sizeof desc);
1832 return -EINVAL;
1833 }
1834
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001835 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001836 UIO_MAXIOV, VHOST_ACCESS_RO);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001837 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001838 if (ret != -EAGAIN)
1839 vq_err(vq, "Translation failure %d in indirect.\n", ret);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001840 return ret;
1841 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001842 iov_iter_init(&from, READ, vq->indirect, ret, len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001843
1844 /* We will use the result as an address to read from, so most
1845 * architectures only need a compiler barrier here. */
1846 read_barrier_depends();
1847
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001848 count = len / sizeof desc;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001849 /* Buffers are chained via a 16 bit next field, so
1850 * we can have at most 2^16 of these. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001851 if (unlikely(count > USHRT_MAX + 1)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001852 vq_err(vq, "Indirect buffer length too big: %d\n",
1853 indirect->len);
1854 return -E2BIG;
1855 }
1856
1857 do {
1858 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001859 if (unlikely(++found > count)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001860 vq_err(vq, "Loop detected: last one at %u "
1861 "indirect size %u\n",
1862 i, count);
1863 return -EINVAL;
1864 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001865 if (unlikely(copy_from_iter(&desc, sizeof(desc), &from) !=
1866 sizeof(desc))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001867 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001868 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001869 return -EINVAL;
1870 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001871 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001872 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001873 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001874 return -EINVAL;
1875 }
1876
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001877 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
1878 access = VHOST_ACCESS_WO;
1879 else
1880 access = VHOST_ACCESS_RO;
1881
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001882 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
1883 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001884 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001885 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001886 if (ret != -EAGAIN)
1887 vq_err(vq, "Translation failure %d indirect idx %d\n",
1888 ret, i);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001889 return ret;
1890 }
1891 /* If this is an input descriptor, increment that count. */
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001892 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001893 *in_num += ret;
1894 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001895 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
1896 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001897 ++*log_num;
1898 }
1899 } else {
1900 /* If it's an output descriptor, they're all supposed
1901 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001902 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001903 vq_err(vq, "Indirect descriptor "
1904 "has out after in: idx %d\n", i);
1905 return -EINVAL;
1906 }
1907 *out_num += ret;
1908 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001909 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001910 return 0;
1911}
1912
1913/* This looks in the virtqueue and for the first available buffer, and converts
1914 * it to an iovec for convenient access. Since descriptors consist of some
1915 * number of output then some number of input descriptors, it's actually two
1916 * iovecs, but we pack them into one and note how many of each there were.
1917 *
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001918 * This function returns the descriptor number found, or vq->num (which is
1919 * never a valid descriptor number) if none was found. A negative code is
1920 * returned on error. */
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001921int vhost_get_vq_desc(struct vhost_virtqueue *vq,
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001922 struct iovec iov[], unsigned int iov_size,
1923 unsigned int *out_num, unsigned int *in_num,
1924 struct vhost_log *log, unsigned int *log_num)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001925{
1926 struct vring_desc desc;
1927 unsigned int i, head, found = 0;
1928 u16 last_avail_idx;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001929 __virtio16 avail_idx;
1930 __virtio16 ring_head;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001931 int ret, access;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001932
1933 /* Check it isn't doing very strange things with descriptor numbers. */
1934 last_avail_idx = vq->last_avail_idx;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001935 if (unlikely(vhost_get_user(vq, avail_idx, &vq->avail->idx))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001936 vq_err(vq, "Failed to access avail idx at %p\n",
1937 &vq->avail->idx);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001938 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001939 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001940 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001941
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001942 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001943 vq_err(vq, "Guest moved used index from %u to %u",
1944 last_avail_idx, vq->avail_idx);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001945 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001946 }
1947
1948 /* If there's nothing new since last we looked, return invalid. */
1949 if (vq->avail_idx == last_avail_idx)
1950 return vq->num;
1951
1952 /* Only get avail ring entries after they have been exposed by guest. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001953 smp_rmb();
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001954
1955 /* Grab the next descriptor number they're advertising, and increment
1956 * the index we've seen. */
Jason Wangbfe2bc52016-06-23 02:04:30 -04001957 if (unlikely(vhost_get_user(vq, ring_head,
1958 &vq->avail->ring[last_avail_idx & (vq->num - 1)]))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001959 vq_err(vq, "Failed to read head: idx %d address %p\n",
1960 last_avail_idx,
1961 &vq->avail->ring[last_avail_idx % vq->num]);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001962 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001963 }
1964
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001965 head = vhost16_to_cpu(vq, ring_head);
1966
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001967 /* If their number is silly, that's an error. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001968 if (unlikely(head >= vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001969 vq_err(vq, "Guest says index %u > %u is available",
1970 head, vq->num);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001971 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001972 }
1973
1974 /* When we start there are none of either input nor output. */
1975 *out_num = *in_num = 0;
1976 if (unlikely(log))
1977 *log_num = 0;
1978
1979 i = head;
1980 do {
1981 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001982 if (unlikely(i >= vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001983 vq_err(vq, "Desc index is %u > %u, head = %u",
1984 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001985 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001986 }
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001987 if (unlikely(++found > vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001988 vq_err(vq, "Loop detected: last one at %u "
1989 "vq size %u head %u\n",
1990 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001991 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001992 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04001993 ret = vhost_copy_from_user(vq, &desc, vq->desc + i,
1994 sizeof desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001995 if (unlikely(ret)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001996 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
1997 i, vq->desc + i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001998 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001999 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002000 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002001 ret = get_indirect(vq, iov, iov_size,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002002 out_num, in_num,
2003 log, log_num, &desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002004 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002005 if (ret != -EAGAIN)
2006 vq_err(vq, "Failure detected "
2007 "in indirect descriptor at idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002008 return ret;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002009 }
2010 continue;
2011 }
2012
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002013 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2014 access = VHOST_ACCESS_WO;
2015 else
2016 access = VHOST_ACCESS_RO;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002017 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2018 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002019 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002020 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002021 if (ret != -EAGAIN)
2022 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2023 ret, i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002024 return ret;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002025 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002026 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002027 /* If this is an input descriptor,
2028 * increment that count. */
2029 *in_num += ret;
2030 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002031 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2032 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002033 ++*log_num;
2034 }
2035 } else {
2036 /* If it's an output descriptor, they're all supposed
2037 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002038 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002039 vq_err(vq, "Descriptor has out after in: "
2040 "idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002041 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002042 }
2043 *out_num += ret;
2044 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002045 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002046
2047 /* On success, increment avail index. */
2048 vq->last_avail_idx++;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002049
2050 /* Assume notifications from guest are disabled at this point,
2051 * if they aren't we would need to update avail_event index. */
2052 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002053 return head;
2054}
Asias He6ac1afb2013-05-06 16:38:21 +08002055EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002056
2057/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
David Stevens8dd014a2010-07-27 18:52:21 +03002058void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002059{
David Stevens8dd014a2010-07-27 18:52:21 +03002060 vq->last_avail_idx -= n;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002061}
Asias He6ac1afb2013-05-06 16:38:21 +08002062EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002063
2064/* After we've used one of their buffers, we tell them about it. We'll then
2065 * want to notify the guest, using eventfd. */
2066int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2067{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002068 struct vring_used_elem heads = {
2069 cpu_to_vhost32(vq, head),
2070 cpu_to_vhost32(vq, len)
2071 };
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002072
Jason Wangc49e4e52013-09-02 16:40:58 +08002073 return vhost_add_used_n(vq, &heads, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002074}
Asias He6ac1afb2013-05-06 16:38:21 +08002075EXPORT_SYMBOL_GPL(vhost_add_used);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002076
David Stevens8dd014a2010-07-27 18:52:21 +03002077static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2078 struct vring_used_elem *heads,
2079 unsigned count)
2080{
2081 struct vring_used_elem __user *used;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002082 u16 old, new;
David Stevens8dd014a2010-07-27 18:52:21 +03002083 int start;
2084
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002085 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002086 used = vq->used->ring + start;
Jason Wangc49e4e52013-09-02 16:40:58 +08002087 if (count == 1) {
Jason Wangbfe2bc52016-06-23 02:04:30 -04002088 if (vhost_put_user(vq, heads[0].id, &used->id)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002089 vq_err(vq, "Failed to write used id");
2090 return -EFAULT;
2091 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002092 if (vhost_put_user(vq, heads[0].len, &used->len)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002093 vq_err(vq, "Failed to write used len");
2094 return -EFAULT;
2095 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002096 } else if (vhost_copy_to_user(vq, used, heads, count * sizeof *used)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002097 vq_err(vq, "Failed to write used");
2098 return -EFAULT;
2099 }
2100 if (unlikely(vq->log_used)) {
2101 /* Make sure data is seen before log. */
2102 smp_wmb();
2103 /* Log used ring entry write. */
2104 log_write(vq->log_base,
2105 vq->log_addr +
2106 ((void __user *)used - (void __user *)vq->used),
2107 count * sizeof *used);
2108 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002109 old = vq->last_used_idx;
2110 new = (vq->last_used_idx += count);
2111 /* If the driver never bothers to signal in a very long while,
2112 * used index might wrap around. If that happens, invalidate
2113 * signalled_used index we stored. TODO: make sure driver
2114 * signals at least once in 2^16 and remove this. */
2115 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2116 vq->signalled_used_valid = false;
David Stevens8dd014a2010-07-27 18:52:21 +03002117 return 0;
2118}
2119
2120/* After we've used one of their buffers, we tell them about it. We'll then
2121 * want to notify the guest, using eventfd. */
2122int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2123 unsigned count)
2124{
2125 int start, n, r;
2126
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002127 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002128 n = vq->num - start;
2129 if (n < count) {
2130 r = __vhost_add_used_n(vq, heads, n);
2131 if (r < 0)
2132 return r;
2133 heads += n;
2134 count -= n;
2135 }
2136 r = __vhost_add_used_n(vq, heads, count);
2137
2138 /* Make sure buffer is written before we update index. */
2139 smp_wmb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002140 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
2141 &vq->used->idx)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002142 vq_err(vq, "Failed to increment used idx");
2143 return -EFAULT;
2144 }
2145 if (unlikely(vq->log_used)) {
2146 /* Log used index update. */
2147 log_write(vq->log_base,
2148 vq->log_addr + offsetof(struct vring_used, idx),
2149 sizeof vq->used->idx);
2150 if (vq->log_ctx)
2151 eventfd_signal(vq->log_ctx, 1);
2152 }
2153 return r;
2154}
Asias He6ac1afb2013-05-06 16:38:21 +08002155EXPORT_SYMBOL_GPL(vhost_add_used_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002156
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002157static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002158{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002159 __u16 old, new;
2160 __virtio16 event;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002161 bool v;
Michael S. Tsirkin0d499352010-05-11 19:44:17 +03002162 /* Flush out used index updates. This is paired
2163 * with the barrier that the Guest executes when enabling
2164 * interrupts. */
2165 smp_mb();
2166
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002167 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002168 unlikely(vq->avail_idx == vq->last_avail_idx))
2169 return true;
2170
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002171 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002172 __virtio16 flags;
Jason Wangbfe2bc52016-06-23 02:04:30 -04002173 if (vhost_get_user(vq, flags, &vq->avail->flags)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002174 vq_err(vq, "Failed to get flags");
2175 return true;
2176 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002177 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002178 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002179 old = vq->signalled_used;
2180 v = vq->signalled_used_valid;
2181 new = vq->signalled_used = vq->last_used_idx;
2182 vq->signalled_used_valid = true;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002183
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002184 if (unlikely(!v))
2185 return true;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002186
Jason Wangbfe2bc52016-06-23 02:04:30 -04002187 if (vhost_get_user(vq, event, vhost_used_event(vq))) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002188 vq_err(vq, "Failed to get used event idx");
2189 return true;
2190 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002191 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002192}
2193
2194/* This actually signals the guest, using eventfd. */
2195void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2196{
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002197 /* Signal the Guest tell them we used something up. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002198 if (vq->call_ctx && vhost_notify(dev, vq))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002199 eventfd_signal(vq->call_ctx, 1);
2200}
Asias He6ac1afb2013-05-06 16:38:21 +08002201EXPORT_SYMBOL_GPL(vhost_signal);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002202
2203/* And here's the combo meal deal. Supersize me! */
2204void vhost_add_used_and_signal(struct vhost_dev *dev,
2205 struct vhost_virtqueue *vq,
2206 unsigned int head, int len)
2207{
2208 vhost_add_used(vq, head, len);
2209 vhost_signal(dev, vq);
2210}
Asias He6ac1afb2013-05-06 16:38:21 +08002211EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002212
David Stevens8dd014a2010-07-27 18:52:21 +03002213/* multi-buffer version of vhost_add_used_and_signal */
2214void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2215 struct vhost_virtqueue *vq,
2216 struct vring_used_elem *heads, unsigned count)
2217{
2218 vhost_add_used_n(vq, heads, count);
2219 vhost_signal(dev, vq);
2220}
Asias He6ac1afb2013-05-06 16:38:21 +08002221EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002222
Jason Wangd4a60602016-03-04 06:24:52 -05002223/* return true if we're sure that avaiable ring is empty */
2224bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2225{
2226 __virtio16 avail_idx;
2227 int r;
2228
Jason Wangbfe2bc52016-06-23 02:04:30 -04002229 r = vhost_get_user(vq, avail_idx, &vq->avail->idx);
Jason Wangd4a60602016-03-04 06:24:52 -05002230 if (r)
2231 return false;
2232
2233 return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx;
2234}
2235EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2236
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002237/* OK, now we need to know about added descriptors. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002238bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002239{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002240 __virtio16 avail_idx;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002241 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302242
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002243 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2244 return false;
2245 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002246 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002247 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002248 if (r) {
2249 vq_err(vq, "Failed to enable notification at %p: %d\n",
2250 &vq->used->flags, r);
2251 return false;
2252 }
2253 } else {
Jason Wang2723fea2011-06-21 18:04:38 +08002254 r = vhost_update_avail_event(vq, vq->avail_idx);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002255 if (r) {
2256 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2257 vhost_avail_event(vq), r);
2258 return false;
2259 }
2260 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002261 /* They could have slipped one in as we were doing that: make
2262 * sure it's written, then check again. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00002263 smp_mb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002264 r = vhost_get_user(vq, avail_idx, &vq->avail->idx);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002265 if (r) {
2266 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2267 &vq->avail->idx, r);
2268 return false;
2269 }
2270
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002271 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002272}
Asias He6ac1afb2013-05-06 16:38:21 +08002273EXPORT_SYMBOL_GPL(vhost_enable_notify);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002274
2275/* We don't need to be notified again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002276void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002277{
2278 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302279
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002280 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2281 return;
2282 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002283 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002284 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002285 if (r)
2286 vq_err(vq, "Failed to enable notification at %p: %d\n",
2287 &vq->used->flags, r);
2288 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002289}
Asias He6ac1afb2013-05-06 16:38:21 +08002290EXPORT_SYMBOL_GPL(vhost_disable_notify);
2291
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002292/* Create a new message. */
2293struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2294{
2295 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2296 if (!node)
2297 return NULL;
2298 node->vq = vq;
2299 node->msg.type = type;
2300 return node;
2301}
2302EXPORT_SYMBOL_GPL(vhost_new_msg);
2303
2304void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2305 struct vhost_msg_node *node)
2306{
2307 spin_lock(&dev->iotlb_lock);
2308 list_add_tail(&node->node, head);
2309 spin_unlock(&dev->iotlb_lock);
2310
2311 wake_up_interruptible_poll(&dev->wait, POLLIN | POLLRDNORM);
2312}
2313EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2314
2315struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2316 struct list_head *head)
2317{
2318 struct vhost_msg_node *node = NULL;
2319
2320 spin_lock(&dev->iotlb_lock);
2321 if (!list_empty(head)) {
2322 node = list_first_entry(head, struct vhost_msg_node,
2323 node);
2324 list_del(&node->node);
2325 }
2326 spin_unlock(&dev->iotlb_lock);
2327
2328 return node;
2329}
2330EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2331
2332
Asias He6ac1afb2013-05-06 16:38:21 +08002333static int __init vhost_init(void)
2334{
2335 return 0;
2336}
2337
2338static void __exit vhost_exit(void)
2339{
2340}
2341
2342module_init(vhost_init);
2343module_exit(vhost_exit);
2344
2345MODULE_VERSION("0.0.1");
2346MODULE_LICENSE("GPL v2");
2347MODULE_AUTHOR("Michael S. Tsirkin");
2348MODULE_DESCRIPTION("Host kernel accelerator for virtio");