blob: fce49ebc575dd143eb69129c314f8458ad3eca3b [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{
Halil Pasic1594edd2017-01-30 11:09:36 +0100133 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1)
134 || virtio_legacy_is_little_endian();
Greg Kurz2751c982015-04-24 14:27:24 +0200135}
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{
Halil Pasic1594edd2017-01-30 11:09:36 +0100140 vhost_init_is_le(vq);
Greg Kurzc5072032016-02-16 15:59:34 +0100141}
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) {
Jason Wang827148d2018-03-27 20:50:52 +0800214 vhost_poll_stop(poll);
Jason Wang2b8b3282013-01-28 01:05:18 +0000215 ret = -EINVAL;
216 }
217
218 return ret;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000219}
Asias He6ac1afb2013-05-06 16:38:21 +0800220EXPORT_SYMBOL_GPL(vhost_poll_start);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000221
222/* Stop polling a file. After this function returns, it becomes safe to drop the
223 * file reference. You must also flush afterwards. */
224void vhost_poll_stop(struct vhost_poll *poll)
225{
Jason Wang2b8b3282013-01-28 01:05:18 +0000226 if (poll->wqh) {
227 remove_wait_queue(poll->wqh, &poll->wait);
228 poll->wqh = NULL;
229 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000230}
Asias He6ac1afb2013-05-06 16:38:21 +0800231EXPORT_SYMBOL_GPL(vhost_poll_stop);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000232
Asias He6ac1afb2013-05-06 16:38:21 +0800233void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000234{
Jason Wang7235acd2016-04-25 22:14:32 -0400235 struct vhost_flush_struct flush;
Tejun Heoc23f34452010-06-02 20:40:00 +0200236
Jason Wang7235acd2016-04-25 22:14:32 -0400237 if (dev->worker) {
238 init_completion(&flush.wait_event);
239 vhost_work_init(&flush.work, vhost_flush_work);
240
241 vhost_work_queue(dev, &flush.work);
242 wait_for_completion(&flush.wait_event);
243 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000244}
Asias He6ac1afb2013-05-06 16:38:21 +0800245EXPORT_SYMBOL_GPL(vhost_work_flush);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000246
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300247/* Flush any work that has been scheduled. When calling this, don't hold any
248 * locks that are also used by the callback. */
249void vhost_poll_flush(struct vhost_poll *poll)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000250{
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300251 vhost_work_flush(poll->dev, &poll->work);
252}
Asias He6ac1afb2013-05-06 16:38:21 +0800253EXPORT_SYMBOL_GPL(vhost_poll_flush);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300254
Stefan Hajnoczi163049a2012-07-21 06:55:37 +0000255void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work)
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300256{
Jason Wang04b96e52016-04-25 22:14:33 -0400257 if (!dev->worker)
258 return;
Tejun Heoc23f34452010-06-02 20:40:00 +0200259
Jason Wang04b96e52016-04-25 22:14:33 -0400260 if (!test_and_set_bit(VHOST_WORK_QUEUED, &work->flags)) {
261 /* We can only add the work to the list after we're
262 * sure it was not in the list.
263 */
264 smp_mb();
265 llist_add(&work->node, &dev->work_list);
Tejun Heoc23f34452010-06-02 20:40:00 +0200266 wake_up_process(dev->worker);
267 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000268}
Asias He6ac1afb2013-05-06 16:38:21 +0800269EXPORT_SYMBOL_GPL(vhost_work_queue);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000270
Jason Wang526d3e72016-03-04 06:24:51 -0500271/* A lockless hint for busy polling code to exit the loop */
272bool vhost_has_work(struct vhost_dev *dev)
273{
Jason Wang04b96e52016-04-25 22:14:33 -0400274 return !llist_empty(&dev->work_list);
Jason Wang526d3e72016-03-04 06:24:51 -0500275}
276EXPORT_SYMBOL_GPL(vhost_has_work);
277
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300278void vhost_poll_queue(struct vhost_poll *poll)
279{
280 vhost_work_queue(poll->dev, &poll->work);
281}
Asias He6ac1afb2013-05-06 16:38:21 +0800282EXPORT_SYMBOL_GPL(vhost_poll_queue);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300283
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000284static void vhost_vq_reset(struct vhost_dev *dev,
285 struct vhost_virtqueue *vq)
286{
287 vq->num = 1;
288 vq->desc = NULL;
289 vq->avail = NULL;
290 vq->used = NULL;
291 vq->last_avail_idx = 0;
292 vq->avail_idx = 0;
293 vq->last_used_idx = 0;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300294 vq->signalled_used = 0;
295 vq->signalled_used_valid = false;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000296 vq->used_flags = 0;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000297 vq->log_used = false;
298 vq->log_addr = -1ull;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000299 vq->private_data = NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300300 vq->acked_features = 0;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000301 vq->log_base = NULL;
302 vq->error_ctx = NULL;
303 vq->error = NULL;
304 vq->kick = NULL;
305 vq->call_ctx = NULL;
306 vq->call = NULL;
Michael S. Tsirkin73a99f02010-02-23 11:23:45 +0200307 vq->log_ctx = NULL;
Greg Kurzc5072032016-02-16 15:59:34 +0100308 vhost_reset_is_le(vq);
309 vhost_disable_cross_endian(vq);
Jason Wang03088132016-03-04 06:24:53 -0500310 vq->busyloop_timeout = 0;
Jason Wanga9709d62016-06-23 02:04:31 -0400311 vq->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400312 vq->iotlb = NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000313}
314
Tejun Heoc23f34452010-06-02 20:40:00 +0200315static int vhost_worker(void *data)
316{
317 struct vhost_dev *dev = data;
Jason Wang04b96e52016-04-25 22:14:33 -0400318 struct vhost_work *work, *work_next;
319 struct llist_node *node;
Jens Freimannd7ffde32012-06-26 00:59:58 +0000320 mm_segment_t oldfs = get_fs();
Tejun Heoc23f34452010-06-02 20:40:00 +0200321
Jens Freimannd7ffde32012-06-26 00:59:58 +0000322 set_fs(USER_DS);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200323 use_mm(dev->mm);
324
Tejun Heoc23f34452010-06-02 20:40:00 +0200325 for (;;) {
326 /* mb paired w/ kthread_stop */
327 set_current_state(TASK_INTERRUPTIBLE);
328
Tejun Heoc23f34452010-06-02 20:40:00 +0200329 if (kthread_should_stop()) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200330 __set_current_state(TASK_RUNNING);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200331 break;
Tejun Heoc23f34452010-06-02 20:40:00 +0200332 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200333
Jason Wang04b96e52016-04-25 22:14:33 -0400334 node = llist_del_all(&dev->work_list);
335 if (!node)
336 schedule();
337
338 node = llist_reverse_order(node);
339 /* make sure flag is seen after deletion */
340 smp_wmb();
341 llist_for_each_entry_safe(work, work_next, node, node) {
342 clear_bit(VHOST_WORK_QUEUED, &work->flags);
Tejun Heoc23f34452010-06-02 20:40:00 +0200343 __set_current_state(TASK_RUNNING);
344 work->fn(work);
Nadav Har'Eld550dda2012-02-27 15:07:29 +0200345 if (need_resched())
346 schedule();
Jason Wang04b96e52016-04-25 22:14:33 -0400347 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200348 }
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200349 unuse_mm(dev->mm);
Jens Freimannd7ffde32012-06-26 00:59:58 +0000350 set_fs(oldfs);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200351 return 0;
Tejun Heoc23f34452010-06-02 20:40:00 +0200352}
353
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000354static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq)
355{
356 kfree(vq->indirect);
357 vq->indirect = NULL;
358 kfree(vq->log);
359 vq->log = NULL;
360 kfree(vq->heads);
361 vq->heads = NULL;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000362}
363
Jason Wange0e9b402010-09-14 23:53:05 +0800364/* Helper to allocate iovec buffers for all vqs. */
365static long vhost_dev_alloc_iovecs(struct vhost_dev *dev)
366{
Asias He6d5e6aa2013-05-06 16:38:23 +0800367 struct vhost_virtqueue *vq;
Jason Wange0e9b402010-09-14 23:53:05 +0800368 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530369
Jason Wange0e9b402010-09-14 23:53:05 +0800370 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800371 vq = dev->vqs[i];
372 vq->indirect = kmalloc(sizeof *vq->indirect * UIO_MAXIOV,
373 GFP_KERNEL);
374 vq->log = kmalloc(sizeof *vq->log * UIO_MAXIOV, GFP_KERNEL);
375 vq->heads = kmalloc(sizeof *vq->heads * UIO_MAXIOV, GFP_KERNEL);
376 if (!vq->indirect || !vq->log || !vq->heads)
Jason Wange0e9b402010-09-14 23:53:05 +0800377 goto err_nomem;
378 }
379 return 0;
Krishna Kumard47effe2011-03-01 17:06:37 +0530380
Jason Wange0e9b402010-09-14 23:53:05 +0800381err_nomem:
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000382 for (; i >= 0; --i)
Asias He3ab2e422013-04-27 11:16:48 +0800383 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800384 return -ENOMEM;
385}
386
387static void vhost_dev_free_iovecs(struct vhost_dev *dev)
388{
389 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530390
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000391 for (i = 0; i < dev->nvqs; ++i)
Asias He3ab2e422013-04-27 11:16:48 +0800392 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800393}
394
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800395void vhost_dev_init(struct vhost_dev *dev,
Asias He3ab2e422013-04-27 11:16:48 +0800396 struct vhost_virtqueue **vqs, int nvqs)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000397{
Asias He6d5e6aa2013-05-06 16:38:23 +0800398 struct vhost_virtqueue *vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000399 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200400
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000401 dev->vqs = vqs;
402 dev->nvqs = nvqs;
403 mutex_init(&dev->mutex);
404 dev->log_ctx = NULL;
405 dev->log_file = NULL;
Jason Wanga9709d62016-06-23 02:04:31 -0400406 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400407 dev->iotlb = NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000408 dev->mm = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200409 dev->worker = NULL;
Jason Wang04b96e52016-04-25 22:14:33 -0400410 init_llist_head(&dev->work_list);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400411 init_waitqueue_head(&dev->wait);
412 INIT_LIST_HEAD(&dev->read_list);
413 INIT_LIST_HEAD(&dev->pending_list);
414 spin_lock_init(&dev->iotlb_lock);
Jason Wang04b96e52016-04-25 22:14:33 -0400415
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000416
417 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800418 vq = dev->vqs[i];
419 vq->log = NULL;
420 vq->indirect = NULL;
421 vq->heads = NULL;
422 vq->dev = dev;
423 mutex_init(&vq->mutex);
424 vhost_vq_reset(dev, vq);
425 if (vq->handle_kick)
426 vhost_poll_init(&vq->poll, vq->handle_kick,
427 POLLIN, dev);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000428 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000429}
Asias He6ac1afb2013-05-06 16:38:21 +0800430EXPORT_SYMBOL_GPL(vhost_dev_init);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000431
432/* Caller should have device mutex */
433long vhost_dev_check_owner(struct vhost_dev *dev)
434{
435 /* Are you the owner? If not, I don't think you mean to do that */
436 return dev->mm == current->mm ? 0 : -EPERM;
437}
Asias He6ac1afb2013-05-06 16:38:21 +0800438EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000439
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300440struct vhost_attach_cgroups_struct {
Krishna Kumard47effe2011-03-01 17:06:37 +0530441 struct vhost_work work;
442 struct task_struct *owner;
443 int ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300444};
445
446static void vhost_attach_cgroups_work(struct vhost_work *work)
447{
Krishna Kumard47effe2011-03-01 17:06:37 +0530448 struct vhost_attach_cgroups_struct *s;
449
450 s = container_of(work, struct vhost_attach_cgroups_struct, work);
451 s->ret = cgroup_attach_task_all(s->owner, current);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300452}
453
454static int vhost_attach_cgroups(struct vhost_dev *dev)
455{
Krishna Kumard47effe2011-03-01 17:06:37 +0530456 struct vhost_attach_cgroups_struct attach;
457
458 attach.owner = current;
459 vhost_work_init(&attach.work, vhost_attach_cgroups_work);
460 vhost_work_queue(dev, &attach.work);
461 vhost_work_flush(dev, &attach.work);
462 return attach.ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300463}
464
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000465/* Caller should have device mutex */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300466bool vhost_dev_has_owner(struct vhost_dev *dev)
467{
468 return dev->mm;
469}
Asias He6ac1afb2013-05-06 16:38:21 +0800470EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300471
472/* Caller should have device mutex */
Asias He54db63c2013-05-06 11:15:59 +0800473long vhost_dev_set_owner(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000474{
Tejun Heoc23f34452010-06-02 20:40:00 +0200475 struct task_struct *worker;
476 int err;
Krishna Kumard47effe2011-03-01 17:06:37 +0530477
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000478 /* Is there an owner already? */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300479 if (vhost_dev_has_owner(dev)) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200480 err = -EBUSY;
481 goto err_mm;
482 }
Krishna Kumard47effe2011-03-01 17:06:37 +0530483
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000484 /* No owner, become one */
485 dev->mm = get_task_mm(current);
Tejun Heoc23f34452010-06-02 20:40:00 +0200486 worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
487 if (IS_ERR(worker)) {
488 err = PTR_ERR(worker);
489 goto err_worker;
490 }
491
492 dev->worker = worker;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300493 wake_up_process(worker); /* avoid contributing to loadavg */
494
495 err = vhost_attach_cgroups(dev);
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300496 if (err)
497 goto err_cgroup;
Tejun Heoc23f34452010-06-02 20:40:00 +0200498
Jason Wange0e9b402010-09-14 23:53:05 +0800499 err = vhost_dev_alloc_iovecs(dev);
500 if (err)
501 goto err_cgroup;
502
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000503 return 0;
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300504err_cgroup:
505 kthread_stop(worker);
Michael S. Tsirkin615cc222010-09-02 14:16:36 +0300506 dev->worker = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200507err_worker:
508 if (dev->mm)
509 mmput(dev->mm);
510 dev->mm = NULL;
511err_mm:
512 return err;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000513}
Asias He6ac1afb2013-05-06 16:38:21 +0800514EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000515
Jason Wanga9709d62016-06-23 02:04:31 -0400516static void *vhost_kvzalloc(unsigned long size)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000517{
Jason Wanga9709d62016-06-23 02:04:31 -0400518 void *n = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
519
520 if (!n)
521 n = vzalloc(size);
522 return n;
523}
524
525struct vhost_umem *vhost_dev_reset_owner_prepare(void)
526{
527 return vhost_kvzalloc(sizeof(struct vhost_umem));
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300528}
Asias He6ac1afb2013-05-06 16:38:21 +0800529EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000530
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300531/* Caller should have device mutex */
Jason Wanga9709d62016-06-23 02:04:31 -0400532void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_umem *umem)
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300533{
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300534 int i;
535
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200536 vhost_dev_cleanup(dev, true);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000537
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300538 /* Restore memory to default empty mapping. */
Jason Wanga9709d62016-06-23 02:04:31 -0400539 INIT_LIST_HEAD(&umem->umem_list);
540 dev->umem = umem;
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300541 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
542 * VQs aren't running.
543 */
544 for (i = 0; i < dev->nvqs; ++i)
Jason Wanga9709d62016-06-23 02:04:31 -0400545 dev->vqs[i]->umem = umem;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000546}
Asias He6ac1afb2013-05-06 16:38:21 +0800547EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000548
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000549void vhost_dev_stop(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000550{
551 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530552
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000553 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800554 if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
555 vhost_poll_stop(&dev->vqs[i]->poll);
556 vhost_poll_flush(&dev->vqs[i]->poll);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000557 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000558 }
559}
Asias He6ac1afb2013-05-06 16:38:21 +0800560EXPORT_SYMBOL_GPL(vhost_dev_stop);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000561
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400562static void vhost_umem_free(struct vhost_umem *umem,
563 struct vhost_umem_node *node)
564{
565 vhost_umem_interval_tree_remove(node, &umem->umem_tree);
566 list_del(&node->link);
567 kfree(node);
568 umem->numem--;
569}
570
Jason Wanga9709d62016-06-23 02:04:31 -0400571static void vhost_umem_clean(struct vhost_umem *umem)
572{
573 struct vhost_umem_node *node, *tmp;
574
575 if (!umem)
576 return;
577
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400578 list_for_each_entry_safe(node, tmp, &umem->umem_list, link)
579 vhost_umem_free(umem, node);
580
Jason Wanga9709d62016-06-23 02:04:31 -0400581 kvfree(umem);
582}
583
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400584static void vhost_clear_msg(struct vhost_dev *dev)
585{
586 struct vhost_msg_node *node, *n;
587
588 spin_lock(&dev->iotlb_lock);
589
590 list_for_each_entry_safe(node, n, &dev->read_list, node) {
591 list_del(&node->node);
592 kfree(node);
593 }
594
595 list_for_each_entry_safe(node, n, &dev->pending_list, node) {
596 list_del(&node->node);
597 kfree(node);
598 }
599
600 spin_unlock(&dev->iotlb_lock);
601}
602
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000603/* Caller should have device mutex if and only if locked is set */
604void vhost_dev_cleanup(struct vhost_dev *dev, bool locked)
605{
606 int i;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000607
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000608 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800609 if (dev->vqs[i]->error_ctx)
610 eventfd_ctx_put(dev->vqs[i]->error_ctx);
611 if (dev->vqs[i]->error)
612 fput(dev->vqs[i]->error);
613 if (dev->vqs[i]->kick)
614 fput(dev->vqs[i]->kick);
615 if (dev->vqs[i]->call_ctx)
616 eventfd_ctx_put(dev->vqs[i]->call_ctx);
617 if (dev->vqs[i]->call)
618 fput(dev->vqs[i]->call);
619 vhost_vq_reset(dev, dev->vqs[i]);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000620 }
Jason Wange0e9b402010-09-14 23:53:05 +0800621 vhost_dev_free_iovecs(dev);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000622 if (dev->log_ctx)
623 eventfd_ctx_put(dev->log_ctx);
624 dev->log_ctx = NULL;
625 if (dev->log_file)
626 fput(dev->log_file);
627 dev->log_file = NULL;
628 /* No one will access memory at this point */
Jason Wanga9709d62016-06-23 02:04:31 -0400629 vhost_umem_clean(dev->umem);
630 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400631 vhost_umem_clean(dev->iotlb);
632 dev->iotlb = NULL;
633 vhost_clear_msg(dev);
634 wake_up_interruptible_poll(&dev->wait, POLLIN | POLLRDNORM);
Jason Wang04b96e52016-04-25 22:14:33 -0400635 WARN_ON(!llist_empty(&dev->work_list));
Eric Dumazet78b620c2010-08-31 02:05:57 +0000636 if (dev->worker) {
637 kthread_stop(dev->worker);
638 dev->worker = NULL;
639 }
Michael S. Tsirkin533a19b2010-10-06 15:34:38 +0200640 if (dev->mm)
641 mmput(dev->mm);
642 dev->mm = NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000643}
Asias He6ac1afb2013-05-06 16:38:21 +0800644EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000645
646static int log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
647{
648 u64 a = addr / VHOST_PAGE_SIZE / 8;
Krishna Kumard47effe2011-03-01 17:06:37 +0530649
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000650 /* Make sure 64 bit math will not overflow. */
651 if (a > ULONG_MAX - (unsigned long)log_base ||
652 a + (unsigned long)log_base > ULONG_MAX)
Dan Carpenter6d97e552010-10-11 19:24:19 +0200653 return 0;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000654
655 return access_ok(VERIFY_WRITE, log_base + a,
656 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
657}
658
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300659static bool vhost_overflow(u64 uaddr, u64 size)
660{
661 /* Make sure 64 bit math will not overflow. */
662 return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
663}
664
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000665/* Caller should have vq mutex and device mutex. */
Jason Wanga9709d62016-06-23 02:04:31 -0400666static int vq_memory_access_ok(void __user *log_base, struct vhost_umem *umem,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000667 int log_all)
668{
Jason Wanga9709d62016-06-23 02:04:31 -0400669 struct vhost_umem_node *node;
Jeff Dike179b2842010-04-07 09:59:10 -0400670
Jason Wanga9709d62016-06-23 02:04:31 -0400671 if (!umem)
Michael S. Tsirkinf8322fb2010-05-27 12:28:03 +0300672 return 0;
Jeff Dike179b2842010-04-07 09:59:10 -0400673
Jason Wanga9709d62016-06-23 02:04:31 -0400674 list_for_each_entry(node, &umem->umem_list, link) {
675 unsigned long a = node->userspace_addr;
676
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300677 if (vhost_overflow(node->userspace_addr, node->size))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000678 return 0;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300679
680
681 if (!access_ok(VERIFY_WRITE, (void __user *)a,
Jason Wanga9709d62016-06-23 02:04:31 -0400682 node->size))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000683 return 0;
684 else if (log_all && !log_access_ok(log_base,
Jason Wanga9709d62016-06-23 02:04:31 -0400685 node->start,
686 node->size))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000687 return 0;
688 }
689 return 1;
690}
691
692/* Can we switch to this memory table? */
693/* Caller should have device mutex but not vq mutex */
Jason Wanga9709d62016-06-23 02:04:31 -0400694static int memory_access_ok(struct vhost_dev *d, struct vhost_umem *umem,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000695 int log_all)
696{
697 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530698
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000699 for (i = 0; i < d->nvqs; ++i) {
700 int ok;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300701 bool log;
702
Asias He3ab2e422013-04-27 11:16:48 +0800703 mutex_lock(&d->vqs[i]->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300704 log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000705 /* If ring is inactive, will check when it's enabled. */
Asias He3ab2e422013-04-27 11:16:48 +0800706 if (d->vqs[i]->private_data)
Jason Wanga9709d62016-06-23 02:04:31 -0400707 ok = vq_memory_access_ok(d->vqs[i]->log_base,
708 umem, log);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000709 else
710 ok = 1;
Asias He3ab2e422013-04-27 11:16:48 +0800711 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000712 if (!ok)
713 return 0;
714 }
715 return 1;
716}
717
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400718static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
719 struct iovec iov[], int iov_size, int access);
Jason Wangbfe2bc52016-06-23 02:04:30 -0400720
721static int vhost_copy_to_user(struct vhost_virtqueue *vq, void *to,
722 const void *from, unsigned size)
723{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400724 int ret;
Jason Wangbfe2bc52016-06-23 02:04:30 -0400725
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400726 if (!vq->iotlb)
727 return __copy_to_user(to, from, size);
728 else {
729 /* This function should be called after iotlb
730 * prefetch, which means we're sure that all vq
731 * could be access through iotlb. So -EAGAIN should
732 * not happen in this case.
733 */
734 /* TODO: more fast path */
735 struct iov_iter t;
736 ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
737 ARRAY_SIZE(vq->iotlb_iov),
738 VHOST_ACCESS_WO);
739 if (ret < 0)
740 goto out;
741 iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
742 ret = copy_to_iter(from, size, &t);
743 if (ret == size)
744 ret = 0;
745 }
746out:
747 return ret;
748}
Jason Wangbfe2bc52016-06-23 02:04:30 -0400749
750static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
751 void *from, unsigned size)
752{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400753 int ret;
754
755 if (!vq->iotlb)
756 return __copy_from_user(to, from, size);
757 else {
758 /* This function should be called after iotlb
759 * prefetch, which means we're sure that vq
760 * could be access through iotlb. So -EAGAIN should
761 * not happen in this case.
762 */
763 /* TODO: more fast path */
764 struct iov_iter f;
765 ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
766 ARRAY_SIZE(vq->iotlb_iov),
767 VHOST_ACCESS_RO);
768 if (ret < 0) {
769 vq_err(vq, "IOTLB translation failure: uaddr "
770 "%p size 0x%llx\n", from,
771 (unsigned long long) size);
772 goto out;
773 }
774 iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
775 ret = copy_from_iter(to, size, &f);
776 if (ret == size)
777 ret = 0;
778 }
779
780out:
781 return ret;
782}
783
784static void __user *__vhost_get_user(struct vhost_virtqueue *vq,
785 void *addr, unsigned size)
786{
787 int ret;
788
789 /* This function should be called after iotlb
790 * prefetch, which means we're sure that vq
791 * could be access through iotlb. So -EAGAIN should
792 * not happen in this case.
793 */
794 /* TODO: more fast path */
795 ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
796 ARRAY_SIZE(vq->iotlb_iov),
797 VHOST_ACCESS_RO);
798 if (ret < 0) {
799 vq_err(vq, "IOTLB translation failure: uaddr "
800 "%p size 0x%llx\n", addr,
801 (unsigned long long) size);
802 return NULL;
803 }
804
805 if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
806 vq_err(vq, "Non atomic userspace memory access: uaddr "
807 "%p size 0x%llx\n", addr,
808 (unsigned long long) size);
809 return NULL;
810 }
811
812 return vq->iotlb_iov[0].iov_base;
813}
814
815#define vhost_put_user(vq, x, ptr) \
816({ \
817 int ret = -EFAULT; \
818 if (!vq->iotlb) { \
819 ret = __put_user(x, ptr); \
820 } else { \
821 __typeof__(ptr) to = \
822 (__typeof__(ptr)) __vhost_get_user(vq, ptr, sizeof(*ptr)); \
823 if (to != NULL) \
824 ret = __put_user(x, to); \
825 else \
826 ret = -EFAULT; \
827 } \
828 ret; \
829})
830
831#define vhost_get_user(vq, x, ptr) \
832({ \
833 int ret; \
834 if (!vq->iotlb) { \
835 ret = __get_user(x, ptr); \
836 } else { \
837 __typeof__(ptr) from = \
838 (__typeof__(ptr)) __vhost_get_user(vq, ptr, sizeof(*ptr)); \
839 if (from != NULL) \
840 ret = __get_user(x, from); \
841 else \
842 ret = -EFAULT; \
843 } \
844 ret; \
845})
846
847static void vhost_dev_lock_vqs(struct vhost_dev *d)
848{
849 int i = 0;
850 for (i = 0; i < d->nvqs; ++i)
Jason Wangbd3ccdc2018-01-23 17:27:25 +0800851 mutex_lock_nested(&d->vqs[i]->mutex, i);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400852}
853
854static void vhost_dev_unlock_vqs(struct vhost_dev *d)
855{
856 int i = 0;
857 for (i = 0; i < d->nvqs; ++i)
858 mutex_unlock(&d->vqs[i]->mutex);
859}
860
861static int vhost_new_umem_range(struct vhost_umem *umem,
862 u64 start, u64 size, u64 end,
863 u64 userspace_addr, int perm)
864{
865 struct vhost_umem_node *tmp, *node = kmalloc(sizeof(*node), GFP_ATOMIC);
866
867 if (!node)
868 return -ENOMEM;
869
870 if (umem->numem == max_iotlb_entries) {
871 tmp = list_first_entry(&umem->umem_list, typeof(*tmp), link);
872 vhost_umem_free(umem, tmp);
873 }
874
875 node->start = start;
876 node->size = size;
877 node->last = end;
878 node->userspace_addr = userspace_addr;
879 node->perm = perm;
880 INIT_LIST_HEAD(&node->link);
881 list_add_tail(&node->link, &umem->umem_list);
882 vhost_umem_interval_tree_insert(node, &umem->umem_tree);
883 umem->numem++;
884
885 return 0;
886}
887
888static void vhost_del_umem_range(struct vhost_umem *umem,
889 u64 start, u64 end)
890{
891 struct vhost_umem_node *node;
892
893 while ((node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
894 start, end)))
895 vhost_umem_free(umem, node);
896}
897
898static void vhost_iotlb_notify_vq(struct vhost_dev *d,
899 struct vhost_iotlb_msg *msg)
900{
901 struct vhost_msg_node *node, *n;
902
903 spin_lock(&d->iotlb_lock);
904
905 list_for_each_entry_safe(node, n, &d->pending_list, node) {
906 struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
907 if (msg->iova <= vq_msg->iova &&
908 msg->iova + msg->size - 1 > vq_msg->iova &&
909 vq_msg->type == VHOST_IOTLB_MISS) {
910 vhost_poll_queue(&node->vq->poll);
911 list_del(&node->node);
912 kfree(node);
913 }
914 }
915
916 spin_unlock(&d->iotlb_lock);
917}
918
919static int umem_access_ok(u64 uaddr, u64 size, int access)
920{
921 unsigned long a = uaddr;
922
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300923 /* Make sure 64 bit math will not overflow. */
924 if (vhost_overflow(uaddr, size))
925 return -EFAULT;
926
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400927 if ((access & VHOST_ACCESS_RO) &&
928 !access_ok(VERIFY_READ, (void __user *)a, size))
929 return -EFAULT;
930 if ((access & VHOST_ACCESS_WO) &&
931 !access_ok(VERIFY_WRITE, (void __user *)a, size))
932 return -EFAULT;
933 return 0;
934}
935
936int vhost_process_iotlb_msg(struct vhost_dev *dev,
937 struct vhost_iotlb_msg *msg)
938{
939 int ret = 0;
940
941 vhost_dev_lock_vqs(dev);
942 switch (msg->type) {
943 case VHOST_IOTLB_UPDATE:
944 if (!dev->iotlb) {
945 ret = -EFAULT;
946 break;
947 }
948 if (umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
949 ret = -EFAULT;
950 break;
951 }
952 if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
953 msg->iova + msg->size - 1,
954 msg->uaddr, msg->perm)) {
955 ret = -ENOMEM;
956 break;
957 }
958 vhost_iotlb_notify_vq(dev, msg);
959 break;
960 case VHOST_IOTLB_INVALIDATE:
961 vhost_del_umem_range(dev->iotlb, msg->iova,
962 msg->iova + msg->size - 1);
963 break;
964 default:
965 ret = -EINVAL;
966 break;
967 }
968
969 vhost_dev_unlock_vqs(dev);
970 return ret;
971}
972ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
973 struct iov_iter *from)
974{
975 struct vhost_msg_node node;
976 unsigned size = sizeof(struct vhost_msg);
977 size_t ret;
978 int err;
979
980 if (iov_iter_count(from) < size)
981 return 0;
982 ret = copy_from_iter(&node.msg, size, from);
983 if (ret != size)
984 goto done;
985
986 switch (node.msg.type) {
987 case VHOST_IOTLB_MSG:
988 err = vhost_process_iotlb_msg(dev, &node.msg.iotlb);
989 if (err)
990 ret = err;
991 break;
992 default:
993 ret = -EINVAL;
994 break;
995 }
996
997done:
998 return ret;
999}
1000EXPORT_SYMBOL(vhost_chr_write_iter);
1001
1002unsigned int vhost_chr_poll(struct file *file, struct vhost_dev *dev,
1003 poll_table *wait)
1004{
1005 unsigned int mask = 0;
1006
1007 poll_wait(file, &dev->wait, wait);
1008
1009 if (!list_empty(&dev->read_list))
1010 mask |= POLLIN | POLLRDNORM;
1011
1012 return mask;
1013}
1014EXPORT_SYMBOL(vhost_chr_poll);
1015
1016ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1017 int noblock)
1018{
1019 DEFINE_WAIT(wait);
1020 struct vhost_msg_node *node;
1021 ssize_t ret = 0;
1022 unsigned size = sizeof(struct vhost_msg);
1023
1024 if (iov_iter_count(to) < size)
1025 return 0;
1026
1027 while (1) {
1028 if (!noblock)
1029 prepare_to_wait(&dev->wait, &wait,
1030 TASK_INTERRUPTIBLE);
1031
1032 node = vhost_dequeue_msg(dev, &dev->read_list);
1033 if (node)
1034 break;
1035 if (noblock) {
1036 ret = -EAGAIN;
1037 break;
1038 }
1039 if (signal_pending(current)) {
1040 ret = -ERESTARTSYS;
1041 break;
1042 }
1043 if (!dev->iotlb) {
1044 ret = -EBADFD;
1045 break;
1046 }
1047
1048 schedule();
1049 }
1050
1051 if (!noblock)
1052 finish_wait(&dev->wait, &wait);
1053
1054 if (node) {
1055 ret = copy_to_iter(&node->msg, size, to);
1056
1057 if (ret != size || node->msg.type != VHOST_IOTLB_MISS) {
1058 kfree(node);
1059 return ret;
1060 }
1061
1062 vhost_enqueue_msg(dev, &dev->pending_list, node);
1063 }
1064
1065 return ret;
1066}
1067EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1068
1069static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1070{
1071 struct vhost_dev *dev = vq->dev;
1072 struct vhost_msg_node *node;
1073 struct vhost_iotlb_msg *msg;
1074
1075 node = vhost_new_msg(vq, VHOST_IOTLB_MISS);
1076 if (!node)
1077 return -ENOMEM;
1078
1079 msg = &node->msg.iotlb;
1080 msg->type = VHOST_IOTLB_MISS;
1081 msg->iova = iova;
1082 msg->perm = access;
1083
1084 vhost_enqueue_msg(dev, &dev->read_list, node);
1085
1086 return 0;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001087}
1088
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001089static int vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001090 struct vring_desc __user *desc,
1091 struct vring_avail __user *avail,
1092 struct vring_used __user *used)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001093
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001094{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001095 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001096
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001097 return access_ok(VERIFY_READ, desc, num * sizeof *desc) &&
1098 access_ok(VERIFY_READ, avail,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001099 sizeof *avail + num * sizeof *avail->ring + s) &&
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001100 access_ok(VERIFY_WRITE, used,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001101 sizeof *used + num * sizeof *used->ring + s);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001102}
1103
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001104static int iotlb_access_ok(struct vhost_virtqueue *vq,
1105 int access, u64 addr, u64 len)
1106{
1107 const struct vhost_umem_node *node;
1108 struct vhost_umem *umem = vq->iotlb;
1109 u64 s = 0, size;
1110
1111 while (len > s) {
1112 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1113 addr,
1114 addr + len - 1);
1115 if (node == NULL || node->start > addr) {
1116 vhost_iotlb_miss(vq, addr, access);
1117 return false;
1118 } else if (!(node->perm & access)) {
1119 /* Report the possible access violation by
1120 * request another translation from userspace.
1121 */
1122 return false;
1123 }
1124
1125 size = node->size - addr + node->start;
1126 s += size;
1127 addr += size;
1128 }
1129
1130 return true;
1131}
1132
1133int vq_iotlb_prefetch(struct vhost_virtqueue *vq)
1134{
1135 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1136 unsigned int num = vq->num;
1137
1138 if (!vq->iotlb)
1139 return 1;
1140
1141 return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
1142 num * sizeof *vq->desc) &&
1143 iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1144 sizeof *vq->avail +
1145 num * sizeof *vq->avail->ring + s) &&
1146 iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1147 sizeof *vq->used +
1148 num * sizeof *vq->used->ring + s);
1149}
1150EXPORT_SYMBOL_GPL(vq_iotlb_prefetch);
1151
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001152/* Can we log writes? */
1153/* Caller should have device mutex but not vq mutex */
1154int vhost_log_access_ok(struct vhost_dev *dev)
1155{
Jason Wanga9709d62016-06-23 02:04:31 -04001156 return memory_access_ok(dev, dev->umem, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001157}
Asias He6ac1afb2013-05-06 16:38:21 +08001158EXPORT_SYMBOL_GPL(vhost_log_access_ok);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001159
1160/* Verify access for write logging. */
1161/* Caller should have vq mutex and device mutex */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001162static int vq_log_access_ok(struct vhost_virtqueue *vq,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001163 void __user *log_base)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001164{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001165 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Arnd Bergmann28457ee2010-03-09 19:24:45 +01001166
Jason Wanga9709d62016-06-23 02:04:31 -04001167 return vq_memory_access_ok(log_base, vq->umem,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001168 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001169 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
1170 sizeof *vq->used +
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001171 vq->num * sizeof *vq->used->ring + s));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001172}
1173
1174/* Can we start vq? */
1175/* Caller should have vq mutex and device mutex */
1176int vhost_vq_access_ok(struct vhost_virtqueue *vq)
1177{
Stefan Hajnoczi72de9892018-04-11 10:35:40 +08001178 if (!vq_log_access_ok(vq, vq->log_base))
1179 return 0;
Jason Wang992dbb12018-03-29 16:00:04 +08001180
Stefan Hajnoczi72de9892018-04-11 10:35:40 +08001181 /* Access validation occurs at prefetch time with IOTLB */
1182 if (vq->iotlb)
1183 return 1;
Jason Wang992dbb12018-03-29 16:00:04 +08001184
1185 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001186}
Asias He6ac1afb2013-05-06 16:38:21 +08001187EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001188
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001189static struct vhost_umem *vhost_umem_alloc(void)
1190{
1191 struct vhost_umem *umem = vhost_kvzalloc(sizeof(*umem));
1192
1193 if (!umem)
1194 return NULL;
1195
1196 umem->umem_tree = RB_ROOT;
1197 umem->numem = 0;
1198 INIT_LIST_HEAD(&umem->umem_list);
1199
1200 return umem;
1201}
1202
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001203static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1204{
Jason Wanga9709d62016-06-23 02:04:31 -04001205 struct vhost_memory mem, *newmem;
1206 struct vhost_memory_region *region;
Jason Wanga9709d62016-06-23 02:04:31 -04001207 struct vhost_umem *newumem, *oldumem;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001208 unsigned long size = offsetof(struct vhost_memory, regions);
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001209 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +05301210
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001211 if (copy_from_user(&mem, m, size))
1212 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001213 if (mem.padding)
1214 return -EOPNOTSUPP;
Igor Mammedovc9ce42f2015-07-02 15:08:11 +02001215 if (mem.nregions > max_mem_regions)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001216 return -E2BIG;
Igor Mammedov4de72552015-07-01 11:07:09 +02001217 newmem = vhost_kvzalloc(size + mem.nregions * sizeof(*m->regions));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001218 if (!newmem)
1219 return -ENOMEM;
1220
1221 memcpy(newmem, &mem, size);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001222 if (copy_from_user(newmem->regions, m->regions,
1223 mem.nregions * sizeof *m->regions)) {
Igor Mammedovbcfeaca2015-06-16 18:33:35 +02001224 kvfree(newmem);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001225 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001226 }
1227
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001228 newumem = vhost_umem_alloc();
Jason Wanga9709d62016-06-23 02:04:31 -04001229 if (!newumem) {
Igor Mammedov4de72552015-07-01 11:07:09 +02001230 kvfree(newmem);
Jason Wanga9709d62016-06-23 02:04:31 -04001231 return -ENOMEM;
Takuya Yoshikawaa02c3782010-05-27 19:03:56 +09001232 }
Jason Wanga9709d62016-06-23 02:04:31 -04001233
Jason Wanga9709d62016-06-23 02:04:31 -04001234 for (region = newmem->regions;
1235 region < newmem->regions + mem.nregions;
1236 region++) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001237 if (vhost_new_umem_range(newumem,
1238 region->guest_phys_addr,
1239 region->memory_size,
1240 region->guest_phys_addr +
1241 region->memory_size - 1,
1242 region->userspace_addr,
1243 VHOST_ACCESS_RW))
Jason Wanga9709d62016-06-23 02:04:31 -04001244 goto err;
Jason Wanga9709d62016-06-23 02:04:31 -04001245 }
1246
1247 if (!memory_access_ok(d, newumem, 0))
1248 goto err;
1249
1250 oldumem = d->umem;
1251 d->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001252
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001253 /* All memory accesses are done under some VQ mutex. */
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001254 for (i = 0; i < d->nvqs; ++i) {
1255 mutex_lock(&d->vqs[i]->mutex);
Jason Wanga9709d62016-06-23 02:04:31 -04001256 d->vqs[i]->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001257 mutex_unlock(&d->vqs[i]->mutex);
1258 }
Jason Wanga9709d62016-06-23 02:04:31 -04001259
1260 kvfree(newmem);
1261 vhost_umem_clean(oldumem);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001262 return 0;
Jason Wanga9709d62016-06-23 02:04:31 -04001263
1264err:
1265 vhost_umem_clean(newumem);
1266 kvfree(newmem);
1267 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001268}
1269
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001270long vhost_vring_ioctl(struct vhost_dev *d, int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001271{
Al Virocecb46f2012-08-27 14:21:39 -04001272 struct file *eventfp, *filep = NULL;
1273 bool pollstart = false, pollstop = false;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001274 struct eventfd_ctx *ctx = NULL;
1275 u32 __user *idxp = argp;
1276 struct vhost_virtqueue *vq;
1277 struct vhost_vring_state s;
1278 struct vhost_vring_file f;
1279 struct vhost_vring_addr a;
1280 u32 idx;
1281 long r;
1282
1283 r = get_user(idx, idxp);
1284 if (r < 0)
1285 return r;
Krishna Kumar0f3d9a12010-05-25 11:10:36 +05301286 if (idx >= d->nvqs)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001287 return -ENOBUFS;
1288
Asias He3ab2e422013-04-27 11:16:48 +08001289 vq = d->vqs[idx];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001290
1291 mutex_lock(&vq->mutex);
1292
1293 switch (ioctl) {
1294 case VHOST_SET_VRING_NUM:
1295 /* Resizing ring with an active backend?
1296 * You don't want to do that. */
1297 if (vq->private_data) {
1298 r = -EBUSY;
1299 break;
1300 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001301 if (copy_from_user(&s, argp, sizeof s)) {
1302 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001303 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001304 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001305 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) {
1306 r = -EINVAL;
1307 break;
1308 }
1309 vq->num = s.num;
1310 break;
1311 case VHOST_SET_VRING_BASE:
1312 /* Moving base with an active backend?
1313 * You don't want to do that. */
1314 if (vq->private_data) {
1315 r = -EBUSY;
1316 break;
1317 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001318 if (copy_from_user(&s, argp, sizeof s)) {
1319 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001320 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001321 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001322 if (s.num > 0xffff) {
1323 r = -EINVAL;
1324 break;
1325 }
1326 vq->last_avail_idx = s.num;
1327 /* Forget the cached index value. */
1328 vq->avail_idx = vq->last_avail_idx;
1329 break;
1330 case VHOST_GET_VRING_BASE:
1331 s.index = idx;
1332 s.num = vq->last_avail_idx;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001333 if (copy_to_user(argp, &s, sizeof s))
1334 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001335 break;
1336 case VHOST_SET_VRING_ADDR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001337 if (copy_from_user(&a, argp, sizeof a)) {
1338 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001339 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001340 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001341 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) {
1342 r = -EOPNOTSUPP;
1343 break;
1344 }
1345 /* For 32bit, verify that the top 32bits of the user
1346 data are set to zero. */
1347 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1348 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1349 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) {
1350 r = -EFAULT;
1351 break;
1352 }
Michael S. Tsirkin5d9a07b2014-12-21 01:00:23 +02001353
1354 /* Make sure it's safe to cast pointers to vring types. */
1355 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1356 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1357 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1358 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
Michael S. Tsirkind5424832015-11-16 16:57:08 +02001359 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001360 r = -EINVAL;
1361 break;
1362 }
1363
1364 /* We only verify access here if backend is configured.
1365 * If it is not, we don't as size might not have been setup.
1366 * We will verify when backend is configured. */
1367 if (vq->private_data) {
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001368 if (!vq_access_ok(vq, vq->num,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001369 (void __user *)(unsigned long)a.desc_user_addr,
1370 (void __user *)(unsigned long)a.avail_user_addr,
1371 (void __user *)(unsigned long)a.used_user_addr)) {
1372 r = -EINVAL;
1373 break;
1374 }
1375
1376 /* Also validate log access for used ring if enabled. */
1377 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1378 !log_access_ok(vq->log_base, a.log_guest_addr,
1379 sizeof *vq->used +
1380 vq->num * sizeof *vq->used->ring)) {
1381 r = -EINVAL;
1382 break;
1383 }
1384 }
1385
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001386 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1387 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1388 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1389 vq->log_addr = a.log_guest_addr;
1390 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1391 break;
1392 case VHOST_SET_VRING_KICK:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001393 if (copy_from_user(&f, argp, sizeof f)) {
1394 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001395 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001396 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001397 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001398 if (IS_ERR(eventfp)) {
1399 r = PTR_ERR(eventfp);
1400 break;
1401 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001402 if (eventfp != vq->kick) {
Al Virocecb46f2012-08-27 14:21:39 -04001403 pollstop = (filep = vq->kick) != NULL;
1404 pollstart = (vq->kick = eventfp) != NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001405 } else
1406 filep = eventfp;
1407 break;
1408 case VHOST_SET_VRING_CALL:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001409 if (copy_from_user(&f, argp, sizeof f)) {
1410 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001411 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001412 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001413 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001414 if (IS_ERR(eventfp)) {
1415 r = PTR_ERR(eventfp);
1416 break;
1417 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001418 if (eventfp != vq->call) {
1419 filep = vq->call;
1420 ctx = vq->call_ctx;
1421 vq->call = eventfp;
1422 vq->call_ctx = eventfp ?
1423 eventfd_ctx_fileget(eventfp) : NULL;
1424 } else
1425 filep = eventfp;
1426 break;
1427 case VHOST_SET_VRING_ERR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001428 if (copy_from_user(&f, argp, sizeof f)) {
1429 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001430 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001431 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001432 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001433 if (IS_ERR(eventfp)) {
1434 r = PTR_ERR(eventfp);
1435 break;
1436 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001437 if (eventfp != vq->error) {
1438 filep = vq->error;
1439 vq->error = eventfp;
1440 ctx = vq->error_ctx;
1441 vq->error_ctx = eventfp ?
1442 eventfd_ctx_fileget(eventfp) : NULL;
1443 } else
1444 filep = eventfp;
1445 break;
Greg Kurz2751c982015-04-24 14:27:24 +02001446 case VHOST_SET_VRING_ENDIAN:
1447 r = vhost_set_vring_endian(vq, argp);
1448 break;
1449 case VHOST_GET_VRING_ENDIAN:
1450 r = vhost_get_vring_endian(vq, idx, argp);
1451 break;
Jason Wang03088132016-03-04 06:24:53 -05001452 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1453 if (copy_from_user(&s, argp, sizeof(s))) {
1454 r = -EFAULT;
1455 break;
1456 }
1457 vq->busyloop_timeout = s.num;
1458 break;
1459 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1460 s.index = idx;
1461 s.num = vq->busyloop_timeout;
1462 if (copy_to_user(argp, &s, sizeof(s)))
1463 r = -EFAULT;
1464 break;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001465 default:
1466 r = -ENOIOCTLCMD;
1467 }
1468
1469 if (pollstop && vq->handle_kick)
1470 vhost_poll_stop(&vq->poll);
1471
1472 if (ctx)
1473 eventfd_ctx_put(ctx);
1474 if (filep)
1475 fput(filep);
1476
1477 if (pollstart && vq->handle_kick)
Jason Wang2b8b3282013-01-28 01:05:18 +00001478 r = vhost_poll_start(&vq->poll, vq->kick);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001479
1480 mutex_unlock(&vq->mutex);
1481
1482 if (pollstop && vq->handle_kick)
1483 vhost_poll_flush(&vq->poll);
1484 return r;
1485}
Asias He6ac1afb2013-05-06 16:38:21 +08001486EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001487
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001488int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1489{
1490 struct vhost_umem *niotlb, *oiotlb;
1491 int i;
1492
1493 niotlb = vhost_umem_alloc();
1494 if (!niotlb)
1495 return -ENOMEM;
1496
1497 oiotlb = d->iotlb;
1498 d->iotlb = niotlb;
1499
1500 for (i = 0; i < d->nvqs; ++i) {
1501 mutex_lock(&d->vqs[i]->mutex);
1502 d->vqs[i]->iotlb = niotlb;
1503 mutex_unlock(&d->vqs[i]->mutex);
1504 }
1505
1506 vhost_umem_clean(oiotlb);
1507
1508 return 0;
1509}
1510EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1511
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001512/* Caller must have device mutex */
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001513long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001514{
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001515 struct file *eventfp, *filep = NULL;
1516 struct eventfd_ctx *ctx = NULL;
1517 u64 p;
1518 long r;
1519 int i, fd;
1520
1521 /* If you are not the owner, you can become one */
1522 if (ioctl == VHOST_SET_OWNER) {
1523 r = vhost_dev_set_owner(d);
1524 goto done;
1525 }
1526
1527 /* You must be the owner to do anything else */
1528 r = vhost_dev_check_owner(d);
1529 if (r)
1530 goto done;
1531
1532 switch (ioctl) {
1533 case VHOST_SET_MEM_TABLE:
1534 r = vhost_set_memory(d, argp);
1535 break;
1536 case VHOST_SET_LOG_BASE:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001537 if (copy_from_user(&p, argp, sizeof p)) {
1538 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001539 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001540 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001541 if ((u64)(unsigned long)p != p) {
1542 r = -EFAULT;
1543 break;
1544 }
1545 for (i = 0; i < d->nvqs; ++i) {
1546 struct vhost_virtqueue *vq;
1547 void __user *base = (void __user *)(unsigned long)p;
Asias He3ab2e422013-04-27 11:16:48 +08001548 vq = d->vqs[i];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001549 mutex_lock(&vq->mutex);
1550 /* If ring is inactive, will check when it's enabled. */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001551 if (vq->private_data && !vq_log_access_ok(vq, base))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001552 r = -EFAULT;
1553 else
1554 vq->log_base = base;
1555 mutex_unlock(&vq->mutex);
1556 }
1557 break;
1558 case VHOST_SET_LOG_FD:
1559 r = get_user(fd, (int __user *)argp);
1560 if (r < 0)
1561 break;
1562 eventfp = fd == -1 ? NULL : eventfd_fget(fd);
1563 if (IS_ERR(eventfp)) {
1564 r = PTR_ERR(eventfp);
1565 break;
1566 }
1567 if (eventfp != d->log_file) {
1568 filep = d->log_file;
Marc-André Lureau7932c0b2015-07-17 15:32:03 +02001569 d->log_file = eventfp;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001570 ctx = d->log_ctx;
1571 d->log_ctx = eventfp ?
1572 eventfd_ctx_fileget(eventfp) : NULL;
1573 } else
1574 filep = eventfp;
1575 for (i = 0; i < d->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001576 mutex_lock(&d->vqs[i]->mutex);
1577 d->vqs[i]->log_ctx = d->log_ctx;
1578 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001579 }
1580 if (ctx)
1581 eventfd_ctx_put(ctx);
1582 if (filep)
1583 fput(filep);
1584 break;
1585 default:
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001586 r = -ENOIOCTLCMD;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001587 break;
1588 }
1589done:
1590 return r;
1591}
Asias He6ac1afb2013-05-06 16:38:21 +08001592EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001593
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001594/* TODO: This is really inefficient. We need something like get_user()
1595 * (instruction directly accesses the data, with an exception table entry
1596 * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1597 */
1598static int set_bit_to_user(int nr, void __user *addr)
1599{
1600 unsigned long log = (unsigned long)addr;
1601 struct page *page;
1602 void *base;
1603 int bit = nr + (log % PAGE_SIZE) * 8;
1604 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301605
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001606 r = get_user_pages_fast(log, 1, 1, &page);
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001607 if (r < 0)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001608 return r;
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001609 BUG_ON(r != 1);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001610 base = kmap_atomic(page);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001611 set_bit(bit, base);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001612 kunmap_atomic(base);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001613 set_page_dirty_lock(page);
1614 put_page(page);
1615 return 0;
1616}
1617
1618static int log_write(void __user *log_base,
1619 u64 write_address, u64 write_length)
1620{
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001621 u64 write_page = write_address / VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001622 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301623
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001624 if (!write_length)
1625 return 0;
Michael S. Tsirkin3bf9be42010-11-29 10:19:07 +02001626 write_length += write_address % VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001627 for (;;) {
1628 u64 base = (u64)(unsigned long)log_base;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001629 u64 log = base + write_page / 8;
1630 int bit = write_page % 8;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001631 if ((u64)(unsigned long)log != log)
1632 return -EFAULT;
1633 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1634 if (r < 0)
1635 return r;
1636 if (write_length <= VHOST_PAGE_SIZE)
1637 break;
1638 write_length -= VHOST_PAGE_SIZE;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001639 write_page += 1;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001640 }
1641 return r;
1642}
1643
1644int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
1645 unsigned int log_num, u64 len)
1646{
1647 int i, r;
1648
1649 /* Make sure data written is seen before log. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001650 smp_wmb();
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001651 for (i = 0; i < log_num; ++i) {
1652 u64 l = min(log[i].len, len);
1653 r = log_write(vq->log_base, log[i].addr, l);
1654 if (r < 0)
1655 return r;
1656 len -= l;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001657 if (!len) {
1658 if (vq->log_ctx)
1659 eventfd_signal(vq->log_ctx, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001660 return 0;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001661 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001662 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001663 /* Length written exceeds what we have stored. This is a bug. */
1664 BUG();
1665 return 0;
1666}
Asias He6ac1afb2013-05-06 16:38:21 +08001667EXPORT_SYMBOL_GPL(vhost_log_write);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001668
Jason Wang2723fea2011-06-21 18:04:38 +08001669static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1670{
1671 void __user *used;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001672 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
1673 &vq->used->flags) < 0)
Jason Wang2723fea2011-06-21 18:04:38 +08001674 return -EFAULT;
1675 if (unlikely(vq->log_used)) {
1676 /* Make sure the flag is seen before log. */
1677 smp_wmb();
1678 /* Log used flag write. */
1679 used = &vq->used->flags;
1680 log_write(vq->log_base, vq->log_addr +
1681 (used - (void __user *)vq->used),
1682 sizeof vq->used->flags);
1683 if (vq->log_ctx)
1684 eventfd_signal(vq->log_ctx, 1);
1685 }
1686 return 0;
1687}
1688
1689static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1690{
Jason Wangbfe2bc52016-06-23 02:04:30 -04001691 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
1692 vhost_avail_event(vq)))
Jason Wang2723fea2011-06-21 18:04:38 +08001693 return -EFAULT;
1694 if (unlikely(vq->log_used)) {
1695 void __user *used;
1696 /* Make sure the event is seen before log. */
1697 smp_wmb();
1698 /* Log avail event write */
1699 used = vhost_avail_event(vq);
1700 log_write(vq->log_base, vq->log_addr +
1701 (used - (void __user *)vq->used),
1702 sizeof *vhost_avail_event(vq));
1703 if (vq->log_ctx)
1704 eventfd_signal(vq->log_ctx, 1);
1705 }
1706 return 0;
1707}
1708
Greg Kurz80f7d032016-02-16 15:59:44 +01001709int vhost_vq_init_access(struct vhost_virtqueue *vq)
Jason Wang2723fea2011-06-21 18:04:38 +08001710{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001711 __virtio16 last_used_idx;
Jason Wang2723fea2011-06-21 18:04:38 +08001712 int r;
Greg Kurze1f33be2016-02-16 15:54:28 +01001713 bool is_le = vq->is_le;
1714
Halil Pasic1594edd2017-01-30 11:09:36 +01001715 if (!vq->private_data)
Jason Wang2723fea2011-06-21 18:04:38 +08001716 return 0;
Greg Kurz2751c982015-04-24 14:27:24 +02001717
1718 vhost_init_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08001719
1720 r = vhost_update_used_flags(vq);
1721 if (r)
Greg Kurze1f33be2016-02-16 15:54:28 +01001722 goto err;
Jason Wang2723fea2011-06-21 18:04:38 +08001723 vq->signalled_used_valid = false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001724 if (!vq->iotlb &&
1725 !access_ok(VERIFY_READ, &vq->used->idx, sizeof vq->used->idx)) {
Greg Kurze1f33be2016-02-16 15:54:28 +01001726 r = -EFAULT;
1727 goto err;
1728 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04001729 r = vhost_get_user(vq, last_used_idx, &vq->used->idx);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001730 if (r) {
1731 vq_err(vq, "Can't access used idx at %p\n",
1732 &vq->used->idx);
Greg Kurze1f33be2016-02-16 15:54:28 +01001733 goto err;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001734 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001735 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
Michael S. Tsirkin64f7f052014-12-01 17:39:39 +02001736 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001737
Greg Kurze1f33be2016-02-16 15:54:28 +01001738err:
1739 vq->is_le = is_le;
1740 return r;
Jason Wang2723fea2011-06-21 18:04:38 +08001741}
Greg Kurz80f7d032016-02-16 15:59:44 +01001742EXPORT_SYMBOL_GPL(vhost_vq_init_access);
Jason Wang2723fea2011-06-21 18:04:38 +08001743
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001744static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001745 struct iovec iov[], int iov_size, int access)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001746{
Jason Wanga9709d62016-06-23 02:04:31 -04001747 const struct vhost_umem_node *node;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001748 struct vhost_dev *dev = vq->dev;
1749 struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001750 struct iovec *_iov;
1751 u64 s = 0;
1752 int ret = 0;
1753
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001754 while ((u64)len > s) {
1755 u64 size;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001756 if (unlikely(ret >= iov_size)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001757 ret = -ENOBUFS;
1758 break;
1759 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001760
Jason Wanga9709d62016-06-23 02:04:31 -04001761 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1762 addr, addr + len - 1);
1763 if (node == NULL || node->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001764 if (umem != dev->iotlb) {
1765 ret = -EFAULT;
1766 break;
1767 }
1768 ret = -EAGAIN;
1769 break;
1770 } else if (!(node->perm & access)) {
1771 ret = -EPERM;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001772 break;
1773 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001774
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001775 _iov = iov + ret;
Jason Wanga9709d62016-06-23 02:04:31 -04001776 size = node->size - addr + node->start;
Michael S. Tsirkinbd971202012-11-26 05:57:27 +00001777 _iov->iov_len = min((u64)len - s, size);
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001778 _iov->iov_base = (void __user *)(unsigned long)
Jason Wanga9709d62016-06-23 02:04:31 -04001779 (node->userspace_addr + addr - node->start);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001780 s += size;
1781 addr += size;
1782 ++ret;
1783 }
1784
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001785 if (ret == -EAGAIN)
1786 vhost_iotlb_miss(vq, addr, access);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001787 return ret;
1788}
1789
1790/* Each buffer in the virtqueues is actually a chain of descriptors. This
1791 * function returns the next descriptor in the chain,
1792 * or -1U if we're at the end. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001793static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001794{
1795 unsigned int next;
1796
1797 /* If this descriptor says it doesn't chain, we're done. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001798 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001799 return -1U;
1800
1801 /* Check they're not leading us off end of descriptors. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001802 next = vhost16_to_cpu(vq, desc->next);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001803 /* Make sure compiler knows to grab that: we don't want it changing! */
1804 /* We will use the result as an index in an array, so most
1805 * architectures only need a compiler barrier here. */
1806 read_barrier_depends();
1807
1808 return next;
1809}
1810
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001811static int get_indirect(struct vhost_virtqueue *vq,
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001812 struct iovec iov[], unsigned int iov_size,
1813 unsigned int *out_num, unsigned int *in_num,
1814 struct vhost_log *log, unsigned int *log_num,
1815 struct vring_desc *indirect)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001816{
1817 struct vring_desc desc;
1818 unsigned int i = 0, count, found = 0;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001819 u32 len = vhost32_to_cpu(vq, indirect->len);
Al Viroaad9a1c2014-12-10 14:49:01 -05001820 struct iov_iter from;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001821 int ret, access;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001822
1823 /* Sanity check */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001824 if (unlikely(len % sizeof desc)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001825 vq_err(vq, "Invalid length in indirect descriptor: "
1826 "len 0x%llx not multiple of 0x%zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001827 (unsigned long long)len,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001828 sizeof desc);
1829 return -EINVAL;
1830 }
1831
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001832 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001833 UIO_MAXIOV, VHOST_ACCESS_RO);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001834 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001835 if (ret != -EAGAIN)
1836 vq_err(vq, "Translation failure %d in indirect.\n", ret);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001837 return ret;
1838 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001839 iov_iter_init(&from, READ, vq->indirect, ret, len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001840
1841 /* We will use the result as an address to read from, so most
1842 * architectures only need a compiler barrier here. */
1843 read_barrier_depends();
1844
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001845 count = len / sizeof desc;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001846 /* Buffers are chained via a 16 bit next field, so
1847 * we can have at most 2^16 of these. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001848 if (unlikely(count > USHRT_MAX + 1)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001849 vq_err(vq, "Indirect buffer length too big: %d\n",
1850 indirect->len);
1851 return -E2BIG;
1852 }
1853
1854 do {
1855 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001856 if (unlikely(++found > count)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001857 vq_err(vq, "Loop detected: last one at %u "
1858 "indirect size %u\n",
1859 i, count);
1860 return -EINVAL;
1861 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001862 if (unlikely(copy_from_iter(&desc, sizeof(desc), &from) !=
1863 sizeof(desc))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001864 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001865 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001866 return -EINVAL;
1867 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001868 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001869 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001870 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001871 return -EINVAL;
1872 }
1873
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001874 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
1875 access = VHOST_ACCESS_WO;
1876 else
1877 access = VHOST_ACCESS_RO;
1878
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001879 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
1880 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001881 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001882 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001883 if (ret != -EAGAIN)
1884 vq_err(vq, "Translation failure %d indirect idx %d\n",
1885 ret, i);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001886 return ret;
1887 }
1888 /* If this is an input descriptor, increment that count. */
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001889 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001890 *in_num += ret;
1891 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001892 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
1893 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001894 ++*log_num;
1895 }
1896 } else {
1897 /* If it's an output descriptor, they're all supposed
1898 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001899 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001900 vq_err(vq, "Indirect descriptor "
1901 "has out after in: idx %d\n", i);
1902 return -EINVAL;
1903 }
1904 *out_num += ret;
1905 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001906 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001907 return 0;
1908}
1909
1910/* This looks in the virtqueue and for the first available buffer, and converts
1911 * it to an iovec for convenient access. Since descriptors consist of some
1912 * number of output then some number of input descriptors, it's actually two
1913 * iovecs, but we pack them into one and note how many of each there were.
1914 *
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001915 * This function returns the descriptor number found, or vq->num (which is
1916 * never a valid descriptor number) if none was found. A negative code is
1917 * returned on error. */
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001918int vhost_get_vq_desc(struct vhost_virtqueue *vq,
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001919 struct iovec iov[], unsigned int iov_size,
1920 unsigned int *out_num, unsigned int *in_num,
1921 struct vhost_log *log, unsigned int *log_num)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001922{
1923 struct vring_desc desc;
1924 unsigned int i, head, found = 0;
1925 u16 last_avail_idx;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001926 __virtio16 avail_idx;
1927 __virtio16 ring_head;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001928 int ret, access;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001929
1930 /* Check it isn't doing very strange things with descriptor numbers. */
1931 last_avail_idx = vq->last_avail_idx;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001932 if (unlikely(vhost_get_user(vq, avail_idx, &vq->avail->idx))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001933 vq_err(vq, "Failed to access avail idx at %p\n",
1934 &vq->avail->idx);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001935 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001936 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001937 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001938
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001939 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001940 vq_err(vq, "Guest moved used index from %u to %u",
1941 last_avail_idx, vq->avail_idx);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001942 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001943 }
1944
1945 /* If there's nothing new since last we looked, return invalid. */
1946 if (vq->avail_idx == last_avail_idx)
1947 return vq->num;
1948
1949 /* Only get avail ring entries after they have been exposed by guest. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001950 smp_rmb();
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001951
1952 /* Grab the next descriptor number they're advertising, and increment
1953 * the index we've seen. */
Jason Wangbfe2bc52016-06-23 02:04:30 -04001954 if (unlikely(vhost_get_user(vq, ring_head,
1955 &vq->avail->ring[last_avail_idx & (vq->num - 1)]))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001956 vq_err(vq, "Failed to read head: idx %d address %p\n",
1957 last_avail_idx,
1958 &vq->avail->ring[last_avail_idx % vq->num]);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001959 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001960 }
1961
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001962 head = vhost16_to_cpu(vq, ring_head);
1963
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001964 /* If their number is silly, that's an error. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001965 if (unlikely(head >= vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001966 vq_err(vq, "Guest says index %u > %u is available",
1967 head, vq->num);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001968 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001969 }
1970
1971 /* When we start there are none of either input nor output. */
1972 *out_num = *in_num = 0;
1973 if (unlikely(log))
1974 *log_num = 0;
1975
1976 i = head;
1977 do {
1978 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001979 if (unlikely(i >= vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001980 vq_err(vq, "Desc index is %u > %u, head = %u",
1981 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001982 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001983 }
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001984 if (unlikely(++found > vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001985 vq_err(vq, "Loop detected: last one at %u "
1986 "vq size %u head %u\n",
1987 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001988 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001989 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04001990 ret = vhost_copy_from_user(vq, &desc, vq->desc + i,
1991 sizeof desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001992 if (unlikely(ret)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001993 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
1994 i, vq->desc + i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001995 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001996 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001997 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001998 ret = get_indirect(vq, iov, iov_size,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001999 out_num, in_num,
2000 log, log_num, &desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002001 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002002 if (ret != -EAGAIN)
2003 vq_err(vq, "Failure detected "
2004 "in indirect descriptor at idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002005 return ret;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002006 }
2007 continue;
2008 }
2009
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002010 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2011 access = VHOST_ACCESS_WO;
2012 else
2013 access = VHOST_ACCESS_RO;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002014 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2015 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002016 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002017 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002018 if (ret != -EAGAIN)
2019 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2020 ret, i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002021 return ret;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002022 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002023 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002024 /* If this is an input descriptor,
2025 * increment that count. */
2026 *in_num += ret;
2027 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002028 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2029 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002030 ++*log_num;
2031 }
2032 } else {
2033 /* If it's an output descriptor, they're all supposed
2034 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002035 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002036 vq_err(vq, "Descriptor has out after in: "
2037 "idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002038 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002039 }
2040 *out_num += ret;
2041 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002042 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002043
2044 /* On success, increment avail index. */
2045 vq->last_avail_idx++;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002046
2047 /* Assume notifications from guest are disabled at this point,
2048 * if they aren't we would need to update avail_event index. */
2049 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002050 return head;
2051}
Asias He6ac1afb2013-05-06 16:38:21 +08002052EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002053
2054/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
David Stevens8dd014a2010-07-27 18:52:21 +03002055void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002056{
David Stevens8dd014a2010-07-27 18:52:21 +03002057 vq->last_avail_idx -= n;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002058}
Asias He6ac1afb2013-05-06 16:38:21 +08002059EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002060
2061/* After we've used one of their buffers, we tell them about it. We'll then
2062 * want to notify the guest, using eventfd. */
2063int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2064{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002065 struct vring_used_elem heads = {
2066 cpu_to_vhost32(vq, head),
2067 cpu_to_vhost32(vq, len)
2068 };
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002069
Jason Wangc49e4e52013-09-02 16:40:58 +08002070 return vhost_add_used_n(vq, &heads, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002071}
Asias He6ac1afb2013-05-06 16:38:21 +08002072EXPORT_SYMBOL_GPL(vhost_add_used);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002073
David Stevens8dd014a2010-07-27 18:52:21 +03002074static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2075 struct vring_used_elem *heads,
2076 unsigned count)
2077{
2078 struct vring_used_elem __user *used;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002079 u16 old, new;
David Stevens8dd014a2010-07-27 18:52:21 +03002080 int start;
2081
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002082 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002083 used = vq->used->ring + start;
Jason Wangc49e4e52013-09-02 16:40:58 +08002084 if (count == 1) {
Jason Wangbfe2bc52016-06-23 02:04:30 -04002085 if (vhost_put_user(vq, heads[0].id, &used->id)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002086 vq_err(vq, "Failed to write used id");
2087 return -EFAULT;
2088 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002089 if (vhost_put_user(vq, heads[0].len, &used->len)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002090 vq_err(vq, "Failed to write used len");
2091 return -EFAULT;
2092 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002093 } else if (vhost_copy_to_user(vq, used, heads, count * sizeof *used)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002094 vq_err(vq, "Failed to write used");
2095 return -EFAULT;
2096 }
2097 if (unlikely(vq->log_used)) {
2098 /* Make sure data is seen before log. */
2099 smp_wmb();
2100 /* Log used ring entry write. */
2101 log_write(vq->log_base,
2102 vq->log_addr +
2103 ((void __user *)used - (void __user *)vq->used),
2104 count * sizeof *used);
2105 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002106 old = vq->last_used_idx;
2107 new = (vq->last_used_idx += count);
2108 /* If the driver never bothers to signal in a very long while,
2109 * used index might wrap around. If that happens, invalidate
2110 * signalled_used index we stored. TODO: make sure driver
2111 * signals at least once in 2^16 and remove this. */
2112 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2113 vq->signalled_used_valid = false;
David Stevens8dd014a2010-07-27 18:52:21 +03002114 return 0;
2115}
2116
2117/* After we've used one of their buffers, we tell them about it. We'll then
2118 * want to notify the guest, using eventfd. */
2119int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2120 unsigned count)
2121{
2122 int start, n, r;
2123
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002124 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002125 n = vq->num - start;
2126 if (n < count) {
2127 r = __vhost_add_used_n(vq, heads, n);
2128 if (r < 0)
2129 return r;
2130 heads += n;
2131 count -= n;
2132 }
2133 r = __vhost_add_used_n(vq, heads, count);
2134
2135 /* Make sure buffer is written before we update index. */
2136 smp_wmb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002137 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
2138 &vq->used->idx)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002139 vq_err(vq, "Failed to increment used idx");
2140 return -EFAULT;
2141 }
2142 if (unlikely(vq->log_used)) {
2143 /* Log used index update. */
2144 log_write(vq->log_base,
2145 vq->log_addr + offsetof(struct vring_used, idx),
2146 sizeof vq->used->idx);
2147 if (vq->log_ctx)
2148 eventfd_signal(vq->log_ctx, 1);
2149 }
2150 return r;
2151}
Asias He6ac1afb2013-05-06 16:38:21 +08002152EXPORT_SYMBOL_GPL(vhost_add_used_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002153
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002154static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002155{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002156 __u16 old, new;
2157 __virtio16 event;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002158 bool v;
Michael S. Tsirkin0d499352010-05-11 19:44:17 +03002159 /* Flush out used index updates. This is paired
2160 * with the barrier that the Guest executes when enabling
2161 * interrupts. */
2162 smp_mb();
2163
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002164 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002165 unlikely(vq->avail_idx == vq->last_avail_idx))
2166 return true;
2167
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002168 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002169 __virtio16 flags;
Jason Wangbfe2bc52016-06-23 02:04:30 -04002170 if (vhost_get_user(vq, flags, &vq->avail->flags)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002171 vq_err(vq, "Failed to get flags");
2172 return true;
2173 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002174 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002175 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002176 old = vq->signalled_used;
2177 v = vq->signalled_used_valid;
2178 new = vq->signalled_used = vq->last_used_idx;
2179 vq->signalled_used_valid = true;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002180
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002181 if (unlikely(!v))
2182 return true;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002183
Jason Wangbfe2bc52016-06-23 02:04:30 -04002184 if (vhost_get_user(vq, event, vhost_used_event(vq))) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002185 vq_err(vq, "Failed to get used event idx");
2186 return true;
2187 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002188 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002189}
2190
2191/* This actually signals the guest, using eventfd. */
2192void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2193{
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002194 /* Signal the Guest tell them we used something up. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002195 if (vq->call_ctx && vhost_notify(dev, vq))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002196 eventfd_signal(vq->call_ctx, 1);
2197}
Asias He6ac1afb2013-05-06 16:38:21 +08002198EXPORT_SYMBOL_GPL(vhost_signal);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002199
2200/* And here's the combo meal deal. Supersize me! */
2201void vhost_add_used_and_signal(struct vhost_dev *dev,
2202 struct vhost_virtqueue *vq,
2203 unsigned int head, int len)
2204{
2205 vhost_add_used(vq, head, len);
2206 vhost_signal(dev, vq);
2207}
Asias He6ac1afb2013-05-06 16:38:21 +08002208EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002209
David Stevens8dd014a2010-07-27 18:52:21 +03002210/* multi-buffer version of vhost_add_used_and_signal */
2211void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2212 struct vhost_virtqueue *vq,
2213 struct vring_used_elem *heads, unsigned count)
2214{
2215 vhost_add_used_n(vq, heads, count);
2216 vhost_signal(dev, vq);
2217}
Asias He6ac1afb2013-05-06 16:38:21 +08002218EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002219
Jason Wangd4a60602016-03-04 06:24:52 -05002220/* return true if we're sure that avaiable ring is empty */
2221bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2222{
2223 __virtio16 avail_idx;
2224 int r;
2225
Jason Wangbfe2bc52016-06-23 02:04:30 -04002226 r = vhost_get_user(vq, avail_idx, &vq->avail->idx);
Jason Wangd4a60602016-03-04 06:24:52 -05002227 if (r)
2228 return false;
2229
2230 return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx;
2231}
2232EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2233
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002234/* OK, now we need to know about added descriptors. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002235bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002236{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002237 __virtio16 avail_idx;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002238 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302239
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002240 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2241 return false;
2242 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002243 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002244 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002245 if (r) {
2246 vq_err(vq, "Failed to enable notification at %p: %d\n",
2247 &vq->used->flags, r);
2248 return false;
2249 }
2250 } else {
Jason Wang2723fea2011-06-21 18:04:38 +08002251 r = vhost_update_avail_event(vq, vq->avail_idx);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002252 if (r) {
2253 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2254 vhost_avail_event(vq), r);
2255 return false;
2256 }
2257 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002258 /* They could have slipped one in as we were doing that: make
2259 * sure it's written, then check again. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00002260 smp_mb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002261 r = vhost_get_user(vq, avail_idx, &vq->avail->idx);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002262 if (r) {
2263 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2264 &vq->avail->idx, r);
2265 return false;
2266 }
2267
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002268 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002269}
Asias He6ac1afb2013-05-06 16:38:21 +08002270EXPORT_SYMBOL_GPL(vhost_enable_notify);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002271
2272/* We don't need to be notified again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002273void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002274{
2275 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302276
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002277 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2278 return;
2279 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002280 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002281 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002282 if (r)
2283 vq_err(vq, "Failed to enable notification at %p: %d\n",
2284 &vq->used->flags, r);
2285 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002286}
Asias He6ac1afb2013-05-06 16:38:21 +08002287EXPORT_SYMBOL_GPL(vhost_disable_notify);
2288
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002289/* Create a new message. */
2290struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2291{
2292 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2293 if (!node)
2294 return NULL;
2295 node->vq = vq;
2296 node->msg.type = type;
2297 return node;
2298}
2299EXPORT_SYMBOL_GPL(vhost_new_msg);
2300
2301void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2302 struct vhost_msg_node *node)
2303{
2304 spin_lock(&dev->iotlb_lock);
2305 list_add_tail(&node->node, head);
2306 spin_unlock(&dev->iotlb_lock);
2307
2308 wake_up_interruptible_poll(&dev->wait, POLLIN | POLLRDNORM);
2309}
2310EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2311
2312struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2313 struct list_head *head)
2314{
2315 struct vhost_msg_node *node = NULL;
2316
2317 spin_lock(&dev->iotlb_lock);
2318 if (!list_empty(head)) {
2319 node = list_first_entry(head, struct vhost_msg_node,
2320 node);
2321 list_del(&node->node);
2322 }
2323 spin_unlock(&dev->iotlb_lock);
2324
2325 return node;
2326}
2327EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2328
2329
Asias He6ac1afb2013-05-06 16:38:21 +08002330static int __init vhost_init(void)
2331{
2332 return 0;
2333}
2334
2335static void __exit vhost_exit(void)
2336{
2337}
2338
2339module_init(vhost_init);
2340module_exit(vhost_exit);
2341
2342MODULE_VERSION("0.0.1");
2343MODULE_LICENSE("GPL v2");
2344MODULE_AUTHOR("Michael S. Tsirkin");
2345MODULE_DESCRIPTION("Host kernel accelerator for virtio");