blob: c81bc4efe1a6a29488d33e17a63c9fbfbdc84e62 [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
Jason Wangf8332092018-05-22 19:58:57 +0800941 mutex_lock(&dev->mutex);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400942 vhost_dev_lock_vqs(dev);
943 switch (msg->type) {
944 case VHOST_IOTLB_UPDATE:
945 if (!dev->iotlb) {
946 ret = -EFAULT;
947 break;
948 }
949 if (umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
950 ret = -EFAULT;
951 break;
952 }
953 if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
954 msg->iova + msg->size - 1,
955 msg->uaddr, msg->perm)) {
956 ret = -ENOMEM;
957 break;
958 }
959 vhost_iotlb_notify_vq(dev, msg);
960 break;
961 case VHOST_IOTLB_INVALIDATE:
962 vhost_del_umem_range(dev->iotlb, msg->iova,
963 msg->iova + msg->size - 1);
964 break;
965 default:
966 ret = -EINVAL;
967 break;
968 }
969
970 vhost_dev_unlock_vqs(dev);
Jason Wangf8332092018-05-22 19:58:57 +0800971 mutex_unlock(&dev->mutex);
972
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400973 return ret;
974}
975ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
976 struct iov_iter *from)
977{
978 struct vhost_msg_node node;
979 unsigned size = sizeof(struct vhost_msg);
980 size_t ret;
981 int err;
982
983 if (iov_iter_count(from) < size)
984 return 0;
985 ret = copy_from_iter(&node.msg, size, from);
986 if (ret != size)
987 goto done;
988
989 switch (node.msg.type) {
990 case VHOST_IOTLB_MSG:
991 err = vhost_process_iotlb_msg(dev, &node.msg.iotlb);
992 if (err)
993 ret = err;
994 break;
995 default:
996 ret = -EINVAL;
997 break;
998 }
999
1000done:
1001 return ret;
1002}
1003EXPORT_SYMBOL(vhost_chr_write_iter);
1004
1005unsigned int vhost_chr_poll(struct file *file, struct vhost_dev *dev,
1006 poll_table *wait)
1007{
1008 unsigned int mask = 0;
1009
1010 poll_wait(file, &dev->wait, wait);
1011
1012 if (!list_empty(&dev->read_list))
1013 mask |= POLLIN | POLLRDNORM;
1014
1015 return mask;
1016}
1017EXPORT_SYMBOL(vhost_chr_poll);
1018
1019ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1020 int noblock)
1021{
1022 DEFINE_WAIT(wait);
1023 struct vhost_msg_node *node;
1024 ssize_t ret = 0;
1025 unsigned size = sizeof(struct vhost_msg);
1026
1027 if (iov_iter_count(to) < size)
1028 return 0;
1029
1030 while (1) {
1031 if (!noblock)
1032 prepare_to_wait(&dev->wait, &wait,
1033 TASK_INTERRUPTIBLE);
1034
1035 node = vhost_dequeue_msg(dev, &dev->read_list);
1036 if (node)
1037 break;
1038 if (noblock) {
1039 ret = -EAGAIN;
1040 break;
1041 }
1042 if (signal_pending(current)) {
1043 ret = -ERESTARTSYS;
1044 break;
1045 }
1046 if (!dev->iotlb) {
1047 ret = -EBADFD;
1048 break;
1049 }
1050
1051 schedule();
1052 }
1053
1054 if (!noblock)
1055 finish_wait(&dev->wait, &wait);
1056
1057 if (node) {
1058 ret = copy_to_iter(&node->msg, size, to);
1059
1060 if (ret != size || node->msg.type != VHOST_IOTLB_MISS) {
1061 kfree(node);
1062 return ret;
1063 }
1064
1065 vhost_enqueue_msg(dev, &dev->pending_list, node);
1066 }
1067
1068 return ret;
1069}
1070EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1071
1072static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1073{
1074 struct vhost_dev *dev = vq->dev;
1075 struct vhost_msg_node *node;
1076 struct vhost_iotlb_msg *msg;
1077
1078 node = vhost_new_msg(vq, VHOST_IOTLB_MISS);
1079 if (!node)
1080 return -ENOMEM;
1081
1082 msg = &node->msg.iotlb;
1083 msg->type = VHOST_IOTLB_MISS;
1084 msg->iova = iova;
1085 msg->perm = access;
1086
1087 vhost_enqueue_msg(dev, &dev->read_list, node);
1088
1089 return 0;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001090}
1091
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001092static int vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001093 struct vring_desc __user *desc,
1094 struct vring_avail __user *avail,
1095 struct vring_used __user *used)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001096
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001097{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001098 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001099
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001100 return access_ok(VERIFY_READ, desc, num * sizeof *desc) &&
1101 access_ok(VERIFY_READ, avail,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001102 sizeof *avail + num * sizeof *avail->ring + s) &&
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001103 access_ok(VERIFY_WRITE, used,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001104 sizeof *used + num * sizeof *used->ring + s);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001105}
1106
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001107static int iotlb_access_ok(struct vhost_virtqueue *vq,
1108 int access, u64 addr, u64 len)
1109{
1110 const struct vhost_umem_node *node;
1111 struct vhost_umem *umem = vq->iotlb;
1112 u64 s = 0, size;
1113
1114 while (len > s) {
1115 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1116 addr,
1117 addr + len - 1);
1118 if (node == NULL || node->start > addr) {
1119 vhost_iotlb_miss(vq, addr, access);
1120 return false;
1121 } else if (!(node->perm & access)) {
1122 /* Report the possible access violation by
1123 * request another translation from userspace.
1124 */
1125 return false;
1126 }
1127
1128 size = node->size - addr + node->start;
1129 s += size;
1130 addr += size;
1131 }
1132
1133 return true;
1134}
1135
1136int vq_iotlb_prefetch(struct vhost_virtqueue *vq)
1137{
1138 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1139 unsigned int num = vq->num;
1140
1141 if (!vq->iotlb)
1142 return 1;
1143
1144 return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
1145 num * sizeof *vq->desc) &&
1146 iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1147 sizeof *vq->avail +
1148 num * sizeof *vq->avail->ring + s) &&
1149 iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1150 sizeof *vq->used +
1151 num * sizeof *vq->used->ring + s);
1152}
1153EXPORT_SYMBOL_GPL(vq_iotlb_prefetch);
1154
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001155/* Can we log writes? */
1156/* Caller should have device mutex but not vq mutex */
1157int vhost_log_access_ok(struct vhost_dev *dev)
1158{
Jason Wanga9709d62016-06-23 02:04:31 -04001159 return memory_access_ok(dev, dev->umem, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001160}
Asias He6ac1afb2013-05-06 16:38:21 +08001161EXPORT_SYMBOL_GPL(vhost_log_access_ok);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001162
1163/* Verify access for write logging. */
1164/* Caller should have vq mutex and device mutex */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001165static int vq_log_access_ok(struct vhost_virtqueue *vq,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001166 void __user *log_base)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001167{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001168 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Arnd Bergmann28457ee2010-03-09 19:24:45 +01001169
Jason Wanga9709d62016-06-23 02:04:31 -04001170 return vq_memory_access_ok(log_base, vq->umem,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001171 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001172 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
1173 sizeof *vq->used +
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001174 vq->num * sizeof *vq->used->ring + s));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001175}
1176
1177/* Can we start vq? */
1178/* Caller should have vq mutex and device mutex */
1179int vhost_vq_access_ok(struct vhost_virtqueue *vq)
1180{
Stefan Hajnoczi72de9892018-04-11 10:35:40 +08001181 if (!vq_log_access_ok(vq, vq->log_base))
1182 return 0;
Jason Wang992dbb12018-03-29 16:00:04 +08001183
Stefan Hajnoczi72de9892018-04-11 10:35:40 +08001184 /* Access validation occurs at prefetch time with IOTLB */
1185 if (vq->iotlb)
1186 return 1;
Jason Wang992dbb12018-03-29 16:00:04 +08001187
1188 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001189}
Asias He6ac1afb2013-05-06 16:38:21 +08001190EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001191
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001192static struct vhost_umem *vhost_umem_alloc(void)
1193{
1194 struct vhost_umem *umem = vhost_kvzalloc(sizeof(*umem));
1195
1196 if (!umem)
1197 return NULL;
1198
1199 umem->umem_tree = RB_ROOT;
1200 umem->numem = 0;
1201 INIT_LIST_HEAD(&umem->umem_list);
1202
1203 return umem;
1204}
1205
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001206static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1207{
Jason Wanga9709d62016-06-23 02:04:31 -04001208 struct vhost_memory mem, *newmem;
1209 struct vhost_memory_region *region;
Jason Wanga9709d62016-06-23 02:04:31 -04001210 struct vhost_umem *newumem, *oldumem;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001211 unsigned long size = offsetof(struct vhost_memory, regions);
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001212 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +05301213
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001214 if (copy_from_user(&mem, m, size))
1215 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001216 if (mem.padding)
1217 return -EOPNOTSUPP;
Igor Mammedovc9ce42f2015-07-02 15:08:11 +02001218 if (mem.nregions > max_mem_regions)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001219 return -E2BIG;
Igor Mammedov4de72552015-07-01 11:07:09 +02001220 newmem = vhost_kvzalloc(size + mem.nregions * sizeof(*m->regions));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001221 if (!newmem)
1222 return -ENOMEM;
1223
1224 memcpy(newmem, &mem, size);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001225 if (copy_from_user(newmem->regions, m->regions,
1226 mem.nregions * sizeof *m->regions)) {
Igor Mammedovbcfeaca2015-06-16 18:33:35 +02001227 kvfree(newmem);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001228 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001229 }
1230
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001231 newumem = vhost_umem_alloc();
Jason Wanga9709d62016-06-23 02:04:31 -04001232 if (!newumem) {
Igor Mammedov4de72552015-07-01 11:07:09 +02001233 kvfree(newmem);
Jason Wanga9709d62016-06-23 02:04:31 -04001234 return -ENOMEM;
Takuya Yoshikawaa02c3782010-05-27 19:03:56 +09001235 }
Jason Wanga9709d62016-06-23 02:04:31 -04001236
Jason Wanga9709d62016-06-23 02:04:31 -04001237 for (region = newmem->regions;
1238 region < newmem->regions + mem.nregions;
1239 region++) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001240 if (vhost_new_umem_range(newumem,
1241 region->guest_phys_addr,
1242 region->memory_size,
1243 region->guest_phys_addr +
1244 region->memory_size - 1,
1245 region->userspace_addr,
1246 VHOST_ACCESS_RW))
Jason Wanga9709d62016-06-23 02:04:31 -04001247 goto err;
Jason Wanga9709d62016-06-23 02:04:31 -04001248 }
1249
1250 if (!memory_access_ok(d, newumem, 0))
1251 goto err;
1252
1253 oldumem = d->umem;
1254 d->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001255
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001256 /* All memory accesses are done under some VQ mutex. */
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001257 for (i = 0; i < d->nvqs; ++i) {
1258 mutex_lock(&d->vqs[i]->mutex);
Jason Wanga9709d62016-06-23 02:04:31 -04001259 d->vqs[i]->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001260 mutex_unlock(&d->vqs[i]->mutex);
1261 }
Jason Wanga9709d62016-06-23 02:04:31 -04001262
1263 kvfree(newmem);
1264 vhost_umem_clean(oldumem);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001265 return 0;
Jason Wanga9709d62016-06-23 02:04:31 -04001266
1267err:
1268 vhost_umem_clean(newumem);
1269 kvfree(newmem);
1270 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001271}
1272
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001273long vhost_vring_ioctl(struct vhost_dev *d, int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001274{
Al Virocecb46f2012-08-27 14:21:39 -04001275 struct file *eventfp, *filep = NULL;
1276 bool pollstart = false, pollstop = false;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001277 struct eventfd_ctx *ctx = NULL;
1278 u32 __user *idxp = argp;
1279 struct vhost_virtqueue *vq;
1280 struct vhost_vring_state s;
1281 struct vhost_vring_file f;
1282 struct vhost_vring_addr a;
1283 u32 idx;
1284 long r;
1285
1286 r = get_user(idx, idxp);
1287 if (r < 0)
1288 return r;
Krishna Kumar0f3d9a12010-05-25 11:10:36 +05301289 if (idx >= d->nvqs)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001290 return -ENOBUFS;
1291
Asias He3ab2e422013-04-27 11:16:48 +08001292 vq = d->vqs[idx];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001293
1294 mutex_lock(&vq->mutex);
1295
1296 switch (ioctl) {
1297 case VHOST_SET_VRING_NUM:
1298 /* Resizing ring with an active backend?
1299 * You don't want to do that. */
1300 if (vq->private_data) {
1301 r = -EBUSY;
1302 break;
1303 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001304 if (copy_from_user(&s, argp, sizeof s)) {
1305 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001306 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001307 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001308 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) {
1309 r = -EINVAL;
1310 break;
1311 }
1312 vq->num = s.num;
1313 break;
1314 case VHOST_SET_VRING_BASE:
1315 /* Moving base with an active backend?
1316 * You don't want to do that. */
1317 if (vq->private_data) {
1318 r = -EBUSY;
1319 break;
1320 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001321 if (copy_from_user(&s, argp, sizeof s)) {
1322 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001323 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001324 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001325 if (s.num > 0xffff) {
1326 r = -EINVAL;
1327 break;
1328 }
1329 vq->last_avail_idx = s.num;
1330 /* Forget the cached index value. */
1331 vq->avail_idx = vq->last_avail_idx;
1332 break;
1333 case VHOST_GET_VRING_BASE:
1334 s.index = idx;
1335 s.num = vq->last_avail_idx;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001336 if (copy_to_user(argp, &s, sizeof s))
1337 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001338 break;
1339 case VHOST_SET_VRING_ADDR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001340 if (copy_from_user(&a, argp, sizeof a)) {
1341 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001342 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001343 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001344 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) {
1345 r = -EOPNOTSUPP;
1346 break;
1347 }
1348 /* For 32bit, verify that the top 32bits of the user
1349 data are set to zero. */
1350 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1351 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1352 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) {
1353 r = -EFAULT;
1354 break;
1355 }
Michael S. Tsirkin5d9a07b2014-12-21 01:00:23 +02001356
1357 /* Make sure it's safe to cast pointers to vring types. */
1358 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1359 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1360 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1361 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
Michael S. Tsirkind5424832015-11-16 16:57:08 +02001362 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001363 r = -EINVAL;
1364 break;
1365 }
1366
1367 /* We only verify access here if backend is configured.
1368 * If it is not, we don't as size might not have been setup.
1369 * We will verify when backend is configured. */
1370 if (vq->private_data) {
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001371 if (!vq_access_ok(vq, vq->num,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001372 (void __user *)(unsigned long)a.desc_user_addr,
1373 (void __user *)(unsigned long)a.avail_user_addr,
1374 (void __user *)(unsigned long)a.used_user_addr)) {
1375 r = -EINVAL;
1376 break;
1377 }
1378
1379 /* Also validate log access for used ring if enabled. */
1380 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1381 !log_access_ok(vq->log_base, a.log_guest_addr,
1382 sizeof *vq->used +
1383 vq->num * sizeof *vq->used->ring)) {
1384 r = -EINVAL;
1385 break;
1386 }
1387 }
1388
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001389 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1390 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1391 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1392 vq->log_addr = a.log_guest_addr;
1393 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1394 break;
1395 case VHOST_SET_VRING_KICK:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001396 if (copy_from_user(&f, argp, sizeof f)) {
1397 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001398 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001399 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001400 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001401 if (IS_ERR(eventfp)) {
1402 r = PTR_ERR(eventfp);
1403 break;
1404 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001405 if (eventfp != vq->kick) {
Al Virocecb46f2012-08-27 14:21:39 -04001406 pollstop = (filep = vq->kick) != NULL;
1407 pollstart = (vq->kick = eventfp) != NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001408 } else
1409 filep = eventfp;
1410 break;
1411 case VHOST_SET_VRING_CALL:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001412 if (copy_from_user(&f, argp, sizeof f)) {
1413 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001414 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001415 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001416 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001417 if (IS_ERR(eventfp)) {
1418 r = PTR_ERR(eventfp);
1419 break;
1420 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001421 if (eventfp != vq->call) {
1422 filep = vq->call;
1423 ctx = vq->call_ctx;
1424 vq->call = eventfp;
1425 vq->call_ctx = eventfp ?
1426 eventfd_ctx_fileget(eventfp) : NULL;
1427 } else
1428 filep = eventfp;
1429 break;
1430 case VHOST_SET_VRING_ERR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001431 if (copy_from_user(&f, argp, sizeof f)) {
1432 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001433 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001434 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001435 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001436 if (IS_ERR(eventfp)) {
1437 r = PTR_ERR(eventfp);
1438 break;
1439 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001440 if (eventfp != vq->error) {
1441 filep = vq->error;
1442 vq->error = eventfp;
1443 ctx = vq->error_ctx;
1444 vq->error_ctx = eventfp ?
1445 eventfd_ctx_fileget(eventfp) : NULL;
1446 } else
1447 filep = eventfp;
1448 break;
Greg Kurz2751c982015-04-24 14:27:24 +02001449 case VHOST_SET_VRING_ENDIAN:
1450 r = vhost_set_vring_endian(vq, argp);
1451 break;
1452 case VHOST_GET_VRING_ENDIAN:
1453 r = vhost_get_vring_endian(vq, idx, argp);
1454 break;
Jason Wang03088132016-03-04 06:24:53 -05001455 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1456 if (copy_from_user(&s, argp, sizeof(s))) {
1457 r = -EFAULT;
1458 break;
1459 }
1460 vq->busyloop_timeout = s.num;
1461 break;
1462 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1463 s.index = idx;
1464 s.num = vq->busyloop_timeout;
1465 if (copy_to_user(argp, &s, sizeof(s)))
1466 r = -EFAULT;
1467 break;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001468 default:
1469 r = -ENOIOCTLCMD;
1470 }
1471
1472 if (pollstop && vq->handle_kick)
1473 vhost_poll_stop(&vq->poll);
1474
1475 if (ctx)
1476 eventfd_ctx_put(ctx);
1477 if (filep)
1478 fput(filep);
1479
1480 if (pollstart && vq->handle_kick)
Jason Wang2b8b3282013-01-28 01:05:18 +00001481 r = vhost_poll_start(&vq->poll, vq->kick);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001482
1483 mutex_unlock(&vq->mutex);
1484
1485 if (pollstop && vq->handle_kick)
1486 vhost_poll_flush(&vq->poll);
1487 return r;
1488}
Asias He6ac1afb2013-05-06 16:38:21 +08001489EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001490
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001491int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1492{
1493 struct vhost_umem *niotlb, *oiotlb;
1494 int i;
1495
1496 niotlb = vhost_umem_alloc();
1497 if (!niotlb)
1498 return -ENOMEM;
1499
1500 oiotlb = d->iotlb;
1501 d->iotlb = niotlb;
1502
1503 for (i = 0; i < d->nvqs; ++i) {
1504 mutex_lock(&d->vqs[i]->mutex);
1505 d->vqs[i]->iotlb = niotlb;
1506 mutex_unlock(&d->vqs[i]->mutex);
1507 }
1508
1509 vhost_umem_clean(oiotlb);
1510
1511 return 0;
1512}
1513EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1514
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001515/* Caller must have device mutex */
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001516long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001517{
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001518 struct file *eventfp, *filep = NULL;
1519 struct eventfd_ctx *ctx = NULL;
1520 u64 p;
1521 long r;
1522 int i, fd;
1523
1524 /* If you are not the owner, you can become one */
1525 if (ioctl == VHOST_SET_OWNER) {
1526 r = vhost_dev_set_owner(d);
1527 goto done;
1528 }
1529
1530 /* You must be the owner to do anything else */
1531 r = vhost_dev_check_owner(d);
1532 if (r)
1533 goto done;
1534
1535 switch (ioctl) {
1536 case VHOST_SET_MEM_TABLE:
1537 r = vhost_set_memory(d, argp);
1538 break;
1539 case VHOST_SET_LOG_BASE:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001540 if (copy_from_user(&p, argp, sizeof p)) {
1541 r = -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001542 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001543 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001544 if ((u64)(unsigned long)p != p) {
1545 r = -EFAULT;
1546 break;
1547 }
1548 for (i = 0; i < d->nvqs; ++i) {
1549 struct vhost_virtqueue *vq;
1550 void __user *base = (void __user *)(unsigned long)p;
Asias He3ab2e422013-04-27 11:16:48 +08001551 vq = d->vqs[i];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001552 mutex_lock(&vq->mutex);
1553 /* If ring is inactive, will check when it's enabled. */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001554 if (vq->private_data && !vq_log_access_ok(vq, base))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001555 r = -EFAULT;
1556 else
1557 vq->log_base = base;
1558 mutex_unlock(&vq->mutex);
1559 }
1560 break;
1561 case VHOST_SET_LOG_FD:
1562 r = get_user(fd, (int __user *)argp);
1563 if (r < 0)
1564 break;
1565 eventfp = fd == -1 ? NULL : eventfd_fget(fd);
1566 if (IS_ERR(eventfp)) {
1567 r = PTR_ERR(eventfp);
1568 break;
1569 }
1570 if (eventfp != d->log_file) {
1571 filep = d->log_file;
Marc-André Lureau7932c0b2015-07-17 15:32:03 +02001572 d->log_file = eventfp;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001573 ctx = d->log_ctx;
1574 d->log_ctx = eventfp ?
1575 eventfd_ctx_fileget(eventfp) : NULL;
1576 } else
1577 filep = eventfp;
1578 for (i = 0; i < d->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001579 mutex_lock(&d->vqs[i]->mutex);
1580 d->vqs[i]->log_ctx = d->log_ctx;
1581 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001582 }
1583 if (ctx)
1584 eventfd_ctx_put(ctx);
1585 if (filep)
1586 fput(filep);
1587 break;
1588 default:
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001589 r = -ENOIOCTLCMD;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001590 break;
1591 }
1592done:
1593 return r;
1594}
Asias He6ac1afb2013-05-06 16:38:21 +08001595EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001596
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001597/* TODO: This is really inefficient. We need something like get_user()
1598 * (instruction directly accesses the data, with an exception table entry
1599 * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1600 */
1601static int set_bit_to_user(int nr, void __user *addr)
1602{
1603 unsigned long log = (unsigned long)addr;
1604 struct page *page;
1605 void *base;
1606 int bit = nr + (log % PAGE_SIZE) * 8;
1607 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301608
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001609 r = get_user_pages_fast(log, 1, 1, &page);
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001610 if (r < 0)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001611 return r;
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001612 BUG_ON(r != 1);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001613 base = kmap_atomic(page);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001614 set_bit(bit, base);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001615 kunmap_atomic(base);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001616 set_page_dirty_lock(page);
1617 put_page(page);
1618 return 0;
1619}
1620
1621static int log_write(void __user *log_base,
1622 u64 write_address, u64 write_length)
1623{
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001624 u64 write_page = write_address / VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001625 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301626
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001627 if (!write_length)
1628 return 0;
Michael S. Tsirkin3bf9be42010-11-29 10:19:07 +02001629 write_length += write_address % VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001630 for (;;) {
1631 u64 base = (u64)(unsigned long)log_base;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001632 u64 log = base + write_page / 8;
1633 int bit = write_page % 8;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001634 if ((u64)(unsigned long)log != log)
1635 return -EFAULT;
1636 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1637 if (r < 0)
1638 return r;
1639 if (write_length <= VHOST_PAGE_SIZE)
1640 break;
1641 write_length -= VHOST_PAGE_SIZE;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001642 write_page += 1;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001643 }
1644 return r;
1645}
1646
1647int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
1648 unsigned int log_num, u64 len)
1649{
1650 int i, r;
1651
1652 /* Make sure data written is seen before log. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001653 smp_wmb();
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001654 for (i = 0; i < log_num; ++i) {
1655 u64 l = min(log[i].len, len);
1656 r = log_write(vq->log_base, log[i].addr, l);
1657 if (r < 0)
1658 return r;
1659 len -= l;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001660 if (!len) {
1661 if (vq->log_ctx)
1662 eventfd_signal(vq->log_ctx, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001663 return 0;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001664 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001665 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001666 /* Length written exceeds what we have stored. This is a bug. */
1667 BUG();
1668 return 0;
1669}
Asias He6ac1afb2013-05-06 16:38:21 +08001670EXPORT_SYMBOL_GPL(vhost_log_write);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001671
Jason Wang2723fea2011-06-21 18:04:38 +08001672static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1673{
1674 void __user *used;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001675 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
1676 &vq->used->flags) < 0)
Jason Wang2723fea2011-06-21 18:04:38 +08001677 return -EFAULT;
1678 if (unlikely(vq->log_used)) {
1679 /* Make sure the flag is seen before log. */
1680 smp_wmb();
1681 /* Log used flag write. */
1682 used = &vq->used->flags;
1683 log_write(vq->log_base, vq->log_addr +
1684 (used - (void __user *)vq->used),
1685 sizeof vq->used->flags);
1686 if (vq->log_ctx)
1687 eventfd_signal(vq->log_ctx, 1);
1688 }
1689 return 0;
1690}
1691
1692static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1693{
Jason Wangbfe2bc52016-06-23 02:04:30 -04001694 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
1695 vhost_avail_event(vq)))
Jason Wang2723fea2011-06-21 18:04:38 +08001696 return -EFAULT;
1697 if (unlikely(vq->log_used)) {
1698 void __user *used;
1699 /* Make sure the event is seen before log. */
1700 smp_wmb();
1701 /* Log avail event write */
1702 used = vhost_avail_event(vq);
1703 log_write(vq->log_base, vq->log_addr +
1704 (used - (void __user *)vq->used),
1705 sizeof *vhost_avail_event(vq));
1706 if (vq->log_ctx)
1707 eventfd_signal(vq->log_ctx, 1);
1708 }
1709 return 0;
1710}
1711
Greg Kurz80f7d032016-02-16 15:59:44 +01001712int vhost_vq_init_access(struct vhost_virtqueue *vq)
Jason Wang2723fea2011-06-21 18:04:38 +08001713{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001714 __virtio16 last_used_idx;
Jason Wang2723fea2011-06-21 18:04:38 +08001715 int r;
Greg Kurze1f33be2016-02-16 15:54:28 +01001716 bool is_le = vq->is_le;
1717
Halil Pasic1594edd2017-01-30 11:09:36 +01001718 if (!vq->private_data)
Jason Wang2723fea2011-06-21 18:04:38 +08001719 return 0;
Greg Kurz2751c982015-04-24 14:27:24 +02001720
1721 vhost_init_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08001722
1723 r = vhost_update_used_flags(vq);
1724 if (r)
Greg Kurze1f33be2016-02-16 15:54:28 +01001725 goto err;
Jason Wang2723fea2011-06-21 18:04:38 +08001726 vq->signalled_used_valid = false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001727 if (!vq->iotlb &&
1728 !access_ok(VERIFY_READ, &vq->used->idx, sizeof vq->used->idx)) {
Greg Kurze1f33be2016-02-16 15:54:28 +01001729 r = -EFAULT;
1730 goto err;
1731 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04001732 r = vhost_get_user(vq, last_used_idx, &vq->used->idx);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001733 if (r) {
1734 vq_err(vq, "Can't access used idx at %p\n",
1735 &vq->used->idx);
Greg Kurze1f33be2016-02-16 15:54:28 +01001736 goto err;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001737 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001738 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
Michael S. Tsirkin64f7f052014-12-01 17:39:39 +02001739 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001740
Greg Kurze1f33be2016-02-16 15:54:28 +01001741err:
1742 vq->is_le = is_le;
1743 return r;
Jason Wang2723fea2011-06-21 18:04:38 +08001744}
Greg Kurz80f7d032016-02-16 15:59:44 +01001745EXPORT_SYMBOL_GPL(vhost_vq_init_access);
Jason Wang2723fea2011-06-21 18:04:38 +08001746
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001747static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001748 struct iovec iov[], int iov_size, int access)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001749{
Jason Wanga9709d62016-06-23 02:04:31 -04001750 const struct vhost_umem_node *node;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001751 struct vhost_dev *dev = vq->dev;
1752 struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001753 struct iovec *_iov;
1754 u64 s = 0;
1755 int ret = 0;
1756
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001757 while ((u64)len > s) {
1758 u64 size;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001759 if (unlikely(ret >= iov_size)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001760 ret = -ENOBUFS;
1761 break;
1762 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001763
Jason Wanga9709d62016-06-23 02:04:31 -04001764 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1765 addr, addr + len - 1);
1766 if (node == NULL || node->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001767 if (umem != dev->iotlb) {
1768 ret = -EFAULT;
1769 break;
1770 }
1771 ret = -EAGAIN;
1772 break;
1773 } else if (!(node->perm & access)) {
1774 ret = -EPERM;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001775 break;
1776 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001777
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001778 _iov = iov + ret;
Jason Wanga9709d62016-06-23 02:04:31 -04001779 size = node->size - addr + node->start;
Michael S. Tsirkinbd971202012-11-26 05:57:27 +00001780 _iov->iov_len = min((u64)len - s, size);
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001781 _iov->iov_base = (void __user *)(unsigned long)
Jason Wanga9709d62016-06-23 02:04:31 -04001782 (node->userspace_addr + addr - node->start);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001783 s += size;
1784 addr += size;
1785 ++ret;
1786 }
1787
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001788 if (ret == -EAGAIN)
1789 vhost_iotlb_miss(vq, addr, access);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001790 return ret;
1791}
1792
1793/* Each buffer in the virtqueues is actually a chain of descriptors. This
1794 * function returns the next descriptor in the chain,
1795 * or -1U if we're at the end. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001796static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001797{
1798 unsigned int next;
1799
1800 /* If this descriptor says it doesn't chain, we're done. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001801 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001802 return -1U;
1803
1804 /* Check they're not leading us off end of descriptors. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001805 next = vhost16_to_cpu(vq, desc->next);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001806 /* Make sure compiler knows to grab that: we don't want it changing! */
1807 /* We will use the result as an index in an array, so most
1808 * architectures only need a compiler barrier here. */
1809 read_barrier_depends();
1810
1811 return next;
1812}
1813
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001814static int get_indirect(struct vhost_virtqueue *vq,
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001815 struct iovec iov[], unsigned int iov_size,
1816 unsigned int *out_num, unsigned int *in_num,
1817 struct vhost_log *log, unsigned int *log_num,
1818 struct vring_desc *indirect)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001819{
1820 struct vring_desc desc;
1821 unsigned int i = 0, count, found = 0;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001822 u32 len = vhost32_to_cpu(vq, indirect->len);
Al Viroaad9a1c2014-12-10 14:49:01 -05001823 struct iov_iter from;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001824 int ret, access;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001825
1826 /* Sanity check */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001827 if (unlikely(len % sizeof desc)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001828 vq_err(vq, "Invalid length in indirect descriptor: "
1829 "len 0x%llx not multiple of 0x%zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001830 (unsigned long long)len,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001831 sizeof desc);
1832 return -EINVAL;
1833 }
1834
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001835 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001836 UIO_MAXIOV, VHOST_ACCESS_RO);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001837 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001838 if (ret != -EAGAIN)
1839 vq_err(vq, "Translation failure %d in indirect.\n", ret);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001840 return ret;
1841 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001842 iov_iter_init(&from, READ, vq->indirect, ret, len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001843
1844 /* We will use the result as an address to read from, so most
1845 * architectures only need a compiler barrier here. */
1846 read_barrier_depends();
1847
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001848 count = len / sizeof desc;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001849 /* Buffers are chained via a 16 bit next field, so
1850 * we can have at most 2^16 of these. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001851 if (unlikely(count > USHRT_MAX + 1)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001852 vq_err(vq, "Indirect buffer length too big: %d\n",
1853 indirect->len);
1854 return -E2BIG;
1855 }
1856
1857 do {
1858 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001859 if (unlikely(++found > count)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001860 vq_err(vq, "Loop detected: last one at %u "
1861 "indirect size %u\n",
1862 i, count);
1863 return -EINVAL;
1864 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001865 if (unlikely(copy_from_iter(&desc, sizeof(desc), &from) !=
1866 sizeof(desc))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001867 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001868 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001869 return -EINVAL;
1870 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001871 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001872 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001873 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001874 return -EINVAL;
1875 }
1876
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001877 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
1878 access = VHOST_ACCESS_WO;
1879 else
1880 access = VHOST_ACCESS_RO;
1881
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001882 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
1883 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001884 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001885 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001886 if (ret != -EAGAIN)
1887 vq_err(vq, "Translation failure %d indirect idx %d\n",
1888 ret, i);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001889 return ret;
1890 }
1891 /* If this is an input descriptor, increment that count. */
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001892 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001893 *in_num += ret;
1894 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001895 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
1896 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001897 ++*log_num;
1898 }
1899 } else {
1900 /* If it's an output descriptor, they're all supposed
1901 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001902 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001903 vq_err(vq, "Indirect descriptor "
1904 "has out after in: idx %d\n", i);
1905 return -EINVAL;
1906 }
1907 *out_num += ret;
1908 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001909 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001910 return 0;
1911}
1912
1913/* This looks in the virtqueue and for the first available buffer, and converts
1914 * it to an iovec for convenient access. Since descriptors consist of some
1915 * number of output then some number of input descriptors, it's actually two
1916 * iovecs, but we pack them into one and note how many of each there were.
1917 *
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001918 * This function returns the descriptor number found, or vq->num (which is
1919 * never a valid descriptor number) if none was found. A negative code is
1920 * returned on error. */
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001921int vhost_get_vq_desc(struct vhost_virtqueue *vq,
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001922 struct iovec iov[], unsigned int iov_size,
1923 unsigned int *out_num, unsigned int *in_num,
1924 struct vhost_log *log, unsigned int *log_num)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001925{
1926 struct vring_desc desc;
1927 unsigned int i, head, found = 0;
1928 u16 last_avail_idx;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001929 __virtio16 avail_idx;
1930 __virtio16 ring_head;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001931 int ret, access;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001932
1933 /* Check it isn't doing very strange things with descriptor numbers. */
1934 last_avail_idx = vq->last_avail_idx;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001935 if (unlikely(vhost_get_user(vq, avail_idx, &vq->avail->idx))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001936 vq_err(vq, "Failed to access avail idx at %p\n",
1937 &vq->avail->idx);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001938 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001939 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001940 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001941
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001942 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001943 vq_err(vq, "Guest moved used index from %u to %u",
1944 last_avail_idx, vq->avail_idx);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001945 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001946 }
1947
1948 /* If there's nothing new since last we looked, return invalid. */
1949 if (vq->avail_idx == last_avail_idx)
1950 return vq->num;
1951
1952 /* Only get avail ring entries after they have been exposed by guest. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001953 smp_rmb();
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001954
1955 /* Grab the next descriptor number they're advertising, and increment
1956 * the index we've seen. */
Jason Wangbfe2bc52016-06-23 02:04:30 -04001957 if (unlikely(vhost_get_user(vq, ring_head,
1958 &vq->avail->ring[last_avail_idx & (vq->num - 1)]))) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001959 vq_err(vq, "Failed to read head: idx %d address %p\n",
1960 last_avail_idx,
1961 &vq->avail->ring[last_avail_idx % vq->num]);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001962 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001963 }
1964
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001965 head = vhost16_to_cpu(vq, ring_head);
1966
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001967 /* If their number is silly, that's an error. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001968 if (unlikely(head >= vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001969 vq_err(vq, "Guest says index %u > %u is available",
1970 head, vq->num);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001971 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001972 }
1973
1974 /* When we start there are none of either input nor output. */
1975 *out_num = *in_num = 0;
1976 if (unlikely(log))
1977 *log_num = 0;
1978
1979 i = head;
1980 do {
1981 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001982 if (unlikely(i >= vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001983 vq_err(vq, "Desc index is %u > %u, head = %u",
1984 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001985 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001986 }
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001987 if (unlikely(++found > vq->num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001988 vq_err(vq, "Loop detected: last one at %u "
1989 "vq size %u head %u\n",
1990 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001991 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001992 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04001993 ret = vhost_copy_from_user(vq, &desc, vq->desc + i,
1994 sizeof desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001995 if (unlikely(ret)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001996 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
1997 i, vq->desc + i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03001998 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001999 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002000 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002001 ret = get_indirect(vq, iov, iov_size,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002002 out_num, in_num,
2003 log, log_num, &desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002004 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002005 if (ret != -EAGAIN)
2006 vq_err(vq, "Failure detected "
2007 "in indirect descriptor at idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002008 return ret;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002009 }
2010 continue;
2011 }
2012
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002013 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2014 access = VHOST_ACCESS_WO;
2015 else
2016 access = VHOST_ACCESS_RO;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002017 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2018 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002019 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002020 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002021 if (ret != -EAGAIN)
2022 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2023 ret, i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002024 return ret;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002025 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002026 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002027 /* If this is an input descriptor,
2028 * increment that count. */
2029 *in_num += ret;
2030 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002031 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2032 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002033 ++*log_num;
2034 }
2035 } else {
2036 /* If it's an output descriptor, they're all supposed
2037 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002038 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002039 vq_err(vq, "Descriptor has out after in: "
2040 "idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002041 return -EINVAL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002042 }
2043 *out_num += ret;
2044 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002045 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002046
2047 /* On success, increment avail index. */
2048 vq->last_avail_idx++;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002049
2050 /* Assume notifications from guest are disabled at this point,
2051 * if they aren't we would need to update avail_event index. */
2052 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002053 return head;
2054}
Asias He6ac1afb2013-05-06 16:38:21 +08002055EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002056
2057/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
David Stevens8dd014a2010-07-27 18:52:21 +03002058void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002059{
David Stevens8dd014a2010-07-27 18:52:21 +03002060 vq->last_avail_idx -= n;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002061}
Asias He6ac1afb2013-05-06 16:38:21 +08002062EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002063
2064/* After we've used one of their buffers, we tell them about it. We'll then
2065 * want to notify the guest, using eventfd. */
2066int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2067{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002068 struct vring_used_elem heads = {
2069 cpu_to_vhost32(vq, head),
2070 cpu_to_vhost32(vq, len)
2071 };
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002072
Jason Wangc49e4e52013-09-02 16:40:58 +08002073 return vhost_add_used_n(vq, &heads, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002074}
Asias He6ac1afb2013-05-06 16:38:21 +08002075EXPORT_SYMBOL_GPL(vhost_add_used);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002076
David Stevens8dd014a2010-07-27 18:52:21 +03002077static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2078 struct vring_used_elem *heads,
2079 unsigned count)
2080{
2081 struct vring_used_elem __user *used;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002082 u16 old, new;
David Stevens8dd014a2010-07-27 18:52:21 +03002083 int start;
2084
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002085 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002086 used = vq->used->ring + start;
Jason Wangc49e4e52013-09-02 16:40:58 +08002087 if (count == 1) {
Jason Wangbfe2bc52016-06-23 02:04:30 -04002088 if (vhost_put_user(vq, heads[0].id, &used->id)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002089 vq_err(vq, "Failed to write used id");
2090 return -EFAULT;
2091 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002092 if (vhost_put_user(vq, heads[0].len, &used->len)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002093 vq_err(vq, "Failed to write used len");
2094 return -EFAULT;
2095 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002096 } else if (vhost_copy_to_user(vq, used, heads, count * sizeof *used)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002097 vq_err(vq, "Failed to write used");
2098 return -EFAULT;
2099 }
2100 if (unlikely(vq->log_used)) {
2101 /* Make sure data is seen before log. */
2102 smp_wmb();
2103 /* Log used ring entry write. */
2104 log_write(vq->log_base,
2105 vq->log_addr +
2106 ((void __user *)used - (void __user *)vq->used),
2107 count * sizeof *used);
2108 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002109 old = vq->last_used_idx;
2110 new = (vq->last_used_idx += count);
2111 /* If the driver never bothers to signal in a very long while,
2112 * used index might wrap around. If that happens, invalidate
2113 * signalled_used index we stored. TODO: make sure driver
2114 * signals at least once in 2^16 and remove this. */
2115 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2116 vq->signalled_used_valid = false;
David Stevens8dd014a2010-07-27 18:52:21 +03002117 return 0;
2118}
2119
2120/* After we've used one of their buffers, we tell them about it. We'll then
2121 * want to notify the guest, using eventfd. */
2122int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2123 unsigned count)
2124{
2125 int start, n, r;
2126
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002127 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002128 n = vq->num - start;
2129 if (n < count) {
2130 r = __vhost_add_used_n(vq, heads, n);
2131 if (r < 0)
2132 return r;
2133 heads += n;
2134 count -= n;
2135 }
2136 r = __vhost_add_used_n(vq, heads, count);
2137
2138 /* Make sure buffer is written before we update index. */
2139 smp_wmb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002140 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
2141 &vq->used->idx)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002142 vq_err(vq, "Failed to increment used idx");
2143 return -EFAULT;
2144 }
2145 if (unlikely(vq->log_used)) {
2146 /* Log used index update. */
2147 log_write(vq->log_base,
2148 vq->log_addr + offsetof(struct vring_used, idx),
2149 sizeof vq->used->idx);
2150 if (vq->log_ctx)
2151 eventfd_signal(vq->log_ctx, 1);
2152 }
2153 return r;
2154}
Asias He6ac1afb2013-05-06 16:38:21 +08002155EXPORT_SYMBOL_GPL(vhost_add_used_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002156
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002157static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002158{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002159 __u16 old, new;
2160 __virtio16 event;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002161 bool v;
Michael S. Tsirkin0d499352010-05-11 19:44:17 +03002162 /* Flush out used index updates. This is paired
2163 * with the barrier that the Guest executes when enabling
2164 * interrupts. */
2165 smp_mb();
2166
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002167 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002168 unlikely(vq->avail_idx == vq->last_avail_idx))
2169 return true;
2170
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002171 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002172 __virtio16 flags;
Jason Wangbfe2bc52016-06-23 02:04:30 -04002173 if (vhost_get_user(vq, flags, &vq->avail->flags)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002174 vq_err(vq, "Failed to get flags");
2175 return true;
2176 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002177 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002178 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002179 old = vq->signalled_used;
2180 v = vq->signalled_used_valid;
2181 new = vq->signalled_used = vq->last_used_idx;
2182 vq->signalled_used_valid = true;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002183
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002184 if (unlikely(!v))
2185 return true;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002186
Jason Wangbfe2bc52016-06-23 02:04:30 -04002187 if (vhost_get_user(vq, event, vhost_used_event(vq))) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002188 vq_err(vq, "Failed to get used event idx");
2189 return true;
2190 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002191 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002192}
2193
2194/* This actually signals the guest, using eventfd. */
2195void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2196{
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002197 /* Signal the Guest tell them we used something up. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002198 if (vq->call_ctx && vhost_notify(dev, vq))
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002199 eventfd_signal(vq->call_ctx, 1);
2200}
Asias He6ac1afb2013-05-06 16:38:21 +08002201EXPORT_SYMBOL_GPL(vhost_signal);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002202
2203/* And here's the combo meal deal. Supersize me! */
2204void vhost_add_used_and_signal(struct vhost_dev *dev,
2205 struct vhost_virtqueue *vq,
2206 unsigned int head, int len)
2207{
2208 vhost_add_used(vq, head, len);
2209 vhost_signal(dev, vq);
2210}
Asias He6ac1afb2013-05-06 16:38:21 +08002211EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002212
David Stevens8dd014a2010-07-27 18:52:21 +03002213/* multi-buffer version of vhost_add_used_and_signal */
2214void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2215 struct vhost_virtqueue *vq,
2216 struct vring_used_elem *heads, unsigned count)
2217{
2218 vhost_add_used_n(vq, heads, count);
2219 vhost_signal(dev, vq);
2220}
Asias He6ac1afb2013-05-06 16:38:21 +08002221EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002222
Jason Wangd4a60602016-03-04 06:24:52 -05002223/* return true if we're sure that avaiable ring is empty */
2224bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2225{
2226 __virtio16 avail_idx;
2227 int r;
2228
Jason Wangbfe2bc52016-06-23 02:04:30 -04002229 r = vhost_get_user(vq, avail_idx, &vq->avail->idx);
Jason Wangd4a60602016-03-04 06:24:52 -05002230 if (r)
2231 return false;
2232
2233 return vhost16_to_cpu(vq, avail_idx) == vq->avail_idx;
2234}
2235EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2236
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002237/* OK, now we need to know about added descriptors. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002238bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002239{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002240 __virtio16 avail_idx;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002241 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302242
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002243 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2244 return false;
2245 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002246 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002247 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002248 if (r) {
2249 vq_err(vq, "Failed to enable notification at %p: %d\n",
2250 &vq->used->flags, r);
2251 return false;
2252 }
2253 } else {
Jason Wang2723fea2011-06-21 18:04:38 +08002254 r = vhost_update_avail_event(vq, vq->avail_idx);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002255 if (r) {
2256 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2257 vhost_avail_event(vq), r);
2258 return false;
2259 }
2260 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002261 /* They could have slipped one in as we were doing that: make
2262 * sure it's written, then check again. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00002263 smp_mb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002264 r = vhost_get_user(vq, avail_idx, &vq->avail->idx);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002265 if (r) {
2266 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2267 &vq->avail->idx, r);
2268 return false;
2269 }
2270
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002271 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002272}
Asias He6ac1afb2013-05-06 16:38:21 +08002273EXPORT_SYMBOL_GPL(vhost_enable_notify);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002274
2275/* We don't need to be notified again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002276void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002277{
2278 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302279
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002280 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2281 return;
2282 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002283 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002284 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002285 if (r)
2286 vq_err(vq, "Failed to enable notification at %p: %d\n",
2287 &vq->used->flags, r);
2288 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00002289}
Asias He6ac1afb2013-05-06 16:38:21 +08002290EXPORT_SYMBOL_GPL(vhost_disable_notify);
2291
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002292/* Create a new message. */
2293struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2294{
2295 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2296 if (!node)
2297 return NULL;
2298 node->vq = vq;
2299 node->msg.type = type;
2300 return node;
2301}
2302EXPORT_SYMBOL_GPL(vhost_new_msg);
2303
2304void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2305 struct vhost_msg_node *node)
2306{
2307 spin_lock(&dev->iotlb_lock);
2308 list_add_tail(&node->node, head);
2309 spin_unlock(&dev->iotlb_lock);
2310
2311 wake_up_interruptible_poll(&dev->wait, POLLIN | POLLRDNORM);
2312}
2313EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2314
2315struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2316 struct list_head *head)
2317{
2318 struct vhost_msg_node *node = NULL;
2319
2320 spin_lock(&dev->iotlb_lock);
2321 if (!list_empty(head)) {
2322 node = list_first_entry(head, struct vhost_msg_node,
2323 node);
2324 list_del(&node->node);
2325 }
2326 spin_unlock(&dev->iotlb_lock);
2327
2328 return node;
2329}
2330EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2331
2332
Asias He6ac1afb2013-05-06 16:38:21 +08002333static int __init vhost_init(void)
2334{
2335 return 0;
2336}
2337
2338static void __exit vhost_exit(void)
2339{
2340}
2341
2342module_init(vhost_init);
2343module_exit(vhost_exit);
2344
2345MODULE_VERSION("0.0.1");
2346MODULE_LICENSE("GPL v2");
2347MODULE_AUTHOR("Michael S. Tsirkin");
2348MODULE_DESCRIPTION("Host kernel accelerator for virtio");