blob: bac939af8dbb149e4998f18a35f80a12455a52f9 [file] [log] [blame]
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001/* Copyright (C) 2009 Red Hat, Inc.
2 * Copyright (C) 2006 Rusty Russell IBM Corporation
3 *
4 * Author: Michael S. Tsirkin <mst@redhat.com>
5 *
6 * Inspiration, some code, and most witty comments come from
Rob Landley61516582011-05-06 09:27:36 -07007 * Documentation/virtual/lguest/lguest.c, by Rusty Russell
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008 *
9 * This work is licensed under the terms of the GNU GPL, version 2.
10 *
11 * Generic code for virtio server in host kernel.
12 */
13
14#include <linux/eventfd.h>
15#include <linux/vhost.h>
Asias He35596b22013-08-19 09:23:19 +080016#include <linux/uio.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000017#include <linux/mm.h>
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +020018#include <linux/mmu_context.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000019#include <linux/miscdevice.h>
20#include <linux/mutex.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000021#include <linux/poll.h>
22#include <linux/file.h>
23#include <linux/highmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Igor Mammedov4de72552015-07-01 11:07:09 +020025#include <linux/vmalloc.h>
Tejun Heoc23f34452010-06-02 20:40:00 +020026#include <linux/kthread.h>
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +030027#include <linux/cgroup.h>
Asias He6ac1afb2013-05-06 16:38:21 +080028#include <linux/module.h>
Igor Mammedovbcfeaca2015-06-16 18:33:35 +020029#include <linux/sort.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010030#include <linux/sched/mm.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010031#include <linux/sched/signal.h>
Jason Wanga9709d62016-06-23 02:04:31 -040032#include <linux/interval_tree_generic.h>
Jason Wangff002262018-10-30 14:10:49 +080033#include <linux/nospec.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000034
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000035#include "vhost.h"
36
Igor Mammedovc9ce42f2015-07-02 15:08:11 +020037static ushort max_mem_regions = 64;
38module_param(max_mem_regions, ushort, 0444);
39MODULE_PARM_DESC(max_mem_regions,
40 "Maximum number of memory regions in memory map. (default: 64)");
Jason Wang6b1e6cc2016-06-23 02:04:32 -040041static int max_iotlb_entries = 2048;
42module_param(max_iotlb_entries, int, 0444);
43MODULE_PARM_DESC(max_iotlb_entries,
44 "Maximum number of iotlb entries. (default: 2048)");
Igor Mammedovc9ce42f2015-07-02 15:08:11 +020045
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000046enum {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000047 VHOST_MEMORY_F_LOG = 0x1,
48};
49
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +030050#define vhost_used_event(vq) ((__virtio16 __user *)&vq->avail->ring[vq->num])
51#define vhost_avail_event(vq) ((__virtio16 __user *)&vq->used->ring[vq->num])
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +030052
Jason Wanga9709d62016-06-23 02:04:31 -040053INTERVAL_TREE_DEFINE(struct vhost_umem_node,
54 rb, __u64, __subtree_last,
Michael S. Tsirkin2f952c02016-12-06 05:57:54 +020055 START, LAST, static inline, vhost_umem_interval_tree);
Jason Wanga9709d62016-06-23 02:04:31 -040056
Greg Kurz2751c982015-04-24 14:27:24 +020057#ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
Greg Kurzc5072032016-02-16 15:59:34 +010058static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
Greg Kurz2751c982015-04-24 14:27:24 +020059{
60 vq->user_be = !virtio_legacy_is_little_endian();
61}
62
Greg Kurzc5072032016-02-16 15:59:34 +010063static void vhost_enable_cross_endian_big(struct vhost_virtqueue *vq)
64{
65 vq->user_be = true;
66}
67
68static void vhost_enable_cross_endian_little(struct vhost_virtqueue *vq)
69{
70 vq->user_be = false;
71}
72
Greg Kurz2751c982015-04-24 14:27:24 +020073static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
74{
75 struct vhost_vring_state s;
76
77 if (vq->private_data)
78 return -EBUSY;
79
80 if (copy_from_user(&s, argp, sizeof(s)))
81 return -EFAULT;
82
83 if (s.num != VHOST_VRING_LITTLE_ENDIAN &&
84 s.num != VHOST_VRING_BIG_ENDIAN)
85 return -EINVAL;
86
Greg Kurzc5072032016-02-16 15:59:34 +010087 if (s.num == VHOST_VRING_BIG_ENDIAN)
88 vhost_enable_cross_endian_big(vq);
89 else
90 vhost_enable_cross_endian_little(vq);
Greg Kurz2751c982015-04-24 14:27:24 +020091
92 return 0;
93}
94
95static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
96 int __user *argp)
97{
98 struct vhost_vring_state s = {
99 .index = idx,
100 .num = vq->user_be
101 };
102
103 if (copy_to_user(argp, &s, sizeof(s)))
104 return -EFAULT;
105
106 return 0;
107}
108
109static void vhost_init_is_le(struct vhost_virtqueue *vq)
110{
111 /* Note for legacy virtio: user_be is initialized at reset time
112 * according to the host endianness. If userspace does not set an
113 * explicit endianness, the default behavior is native endian, as
114 * expected by legacy virtio.
115 */
116 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1) || !vq->user_be;
117}
118#else
Greg Kurzc5072032016-02-16 15:59:34 +0100119static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
Greg Kurz2751c982015-04-24 14:27:24 +0200120{
121}
122
123static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
124{
125 return -ENOIOCTLCMD;
126}
127
128static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
129 int __user *argp)
130{
131 return -ENOIOCTLCMD;
132}
133
134static void vhost_init_is_le(struct vhost_virtqueue *vq)
135{
Halil Pasiccda8bba2017-01-30 11:09:36 +0100136 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1)
137 || virtio_legacy_is_little_endian();
Greg Kurz2751c982015-04-24 14:27:24 +0200138}
139#endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */
140
Greg Kurzc5072032016-02-16 15:59:34 +0100141static void vhost_reset_is_le(struct vhost_virtqueue *vq)
142{
Halil Pasiccda8bba2017-01-30 11:09:36 +0100143 vhost_init_is_le(vq);
Greg Kurzc5072032016-02-16 15:59:34 +0100144}
145
Jason Wang7235acd2016-04-25 22:14:32 -0400146struct vhost_flush_struct {
147 struct vhost_work work;
148 struct completion wait_event;
149};
150
151static void vhost_flush_work(struct vhost_work *work)
152{
153 struct vhost_flush_struct *s;
154
155 s = container_of(work, struct vhost_flush_struct, work);
156 complete(&s->wait_event);
157}
158
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000159static void vhost_poll_func(struct file *file, wait_queue_head_t *wqh,
160 poll_table *pt)
161{
162 struct vhost_poll *poll;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000163
Krishna Kumard47effe2011-03-01 17:06:37 +0530164 poll = container_of(pt, struct vhost_poll, table);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000165 poll->wqh = wqh;
166 add_wait_queue(wqh, &poll->wait);
167}
168
Ingo Molnarac6424b2017-06-20 12:06:13 +0200169static int vhost_poll_wakeup(wait_queue_entry_t *wait, unsigned mode, int sync,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000170 void *key)
171{
Tejun Heoc23f34452010-06-02 20:40:00 +0200172 struct vhost_poll *poll = container_of(wait, struct vhost_poll, wait);
173
Al Viro3ad6f932017-07-03 20:14:56 -0400174 if (!(key_to_poll(key) & poll->mask))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000175 return 0;
176
Tejun Heoc23f34452010-06-02 20:40:00 +0200177 vhost_poll_queue(poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000178 return 0;
179}
180
Stefan Hajnoczi163049a2012-07-21 06:55:37 +0000181void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000182{
Jason Wang04b96e52016-04-25 22:14:33 -0400183 clear_bit(VHOST_WORK_QUEUED, &work->flags);
Tejun Heoc23f34452010-06-02 20:40:00 +0200184 work->fn = fn;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000185}
Asias He6ac1afb2013-05-06 16:38:21 +0800186EXPORT_SYMBOL_GPL(vhost_work_init);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000187
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300188/* Init poll structure */
189void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
Al Viro58e3b602017-07-03 23:50:40 -0400190 __poll_t mask, struct vhost_dev *dev)
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300191{
192 init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup);
193 init_poll_funcptr(&poll->table, vhost_poll_func);
194 poll->mask = mask;
195 poll->dev = dev;
Jason Wang2b8b3282013-01-28 01:05:18 +0000196 poll->wqh = NULL;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300197
198 vhost_work_init(&poll->work, fn);
199}
Asias He6ac1afb2013-05-06 16:38:21 +0800200EXPORT_SYMBOL_GPL(vhost_poll_init);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300201
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000202/* Start polling a file. We add ourselves to file's wait queue. The caller must
203 * keep a reference to a file until after vhost_poll_stop is called. */
Jason Wang2b8b3282013-01-28 01:05:18 +0000204int vhost_poll_start(struct vhost_poll *poll, struct file *file)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000205{
Al Viroe6c8adc2017-07-03 22:25:56 -0400206 __poll_t mask;
Jason Wang2b8b3282013-01-28 01:05:18 +0000207 int ret = 0;
Krishna Kumard47effe2011-03-01 17:06:37 +0530208
Jason Wang70181d512013-04-10 20:50:48 +0000209 if (poll->wqh)
210 return 0;
211
Christoph Hellwig9965ed172018-03-05 07:26:05 -0800212 mask = vfs_poll(file, &poll->table);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000213 if (mask)
Al Viro3ad6f932017-07-03 20:14:56 -0400214 vhost_poll_wakeup(&poll->wait, 0, 0, poll_to_key(mask));
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800215 if (mask & EPOLLERR) {
Jason Wangdc6455a2018-03-27 20:50:52 +0800216 vhost_poll_stop(poll);
Jason Wang2b8b3282013-01-28 01:05:18 +0000217 ret = -EINVAL;
218 }
219
220 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000221}
Asias He6ac1afb2013-05-06 16:38:21 +0800222EXPORT_SYMBOL_GPL(vhost_poll_start);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000223
224/* Stop polling a file. After this function returns, it becomes safe to drop the
225 * file reference. You must also flush afterwards. */
226void vhost_poll_stop(struct vhost_poll *poll)
227{
Jason Wang2b8b3282013-01-28 01:05:18 +0000228 if (poll->wqh) {
229 remove_wait_queue(poll->wqh, &poll->wait);
230 poll->wqh = NULL;
231 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000232}
Asias He6ac1afb2013-05-06 16:38:21 +0800233EXPORT_SYMBOL_GPL(vhost_poll_stop);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000234
Asias He6ac1afb2013-05-06 16:38:21 +0800235void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000236{
Jason Wang7235acd2016-04-25 22:14:32 -0400237 struct vhost_flush_struct flush;
Tejun Heoc23f34452010-06-02 20:40:00 +0200238
Jason Wang7235acd2016-04-25 22:14:32 -0400239 if (dev->worker) {
240 init_completion(&flush.wait_event);
241 vhost_work_init(&flush.work, vhost_flush_work);
242
243 vhost_work_queue(dev, &flush.work);
244 wait_for_completion(&flush.wait_event);
245 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000246}
Asias He6ac1afb2013-05-06 16:38:21 +0800247EXPORT_SYMBOL_GPL(vhost_work_flush);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000248
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300249/* Flush any work that has been scheduled. When calling this, don't hold any
250 * locks that are also used by the callback. */
251void vhost_poll_flush(struct vhost_poll *poll)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000252{
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300253 vhost_work_flush(poll->dev, &poll->work);
254}
Asias He6ac1afb2013-05-06 16:38:21 +0800255EXPORT_SYMBOL_GPL(vhost_poll_flush);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300256
Stefan Hajnoczi163049a2012-07-21 06:55:37 +0000257void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work)
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300258{
Jason Wang04b96e52016-04-25 22:14:33 -0400259 if (!dev->worker)
260 return;
Tejun Heoc23f34452010-06-02 20:40:00 +0200261
Jason Wang04b96e52016-04-25 22:14:33 -0400262 if (!test_and_set_bit(VHOST_WORK_QUEUED, &work->flags)) {
263 /* We can only add the work to the list after we're
264 * sure it was not in the list.
Peng Tao635abf02016-12-07 17:52:19 +0800265 * test_and_set_bit() implies a memory barrier.
Jason Wang04b96e52016-04-25 22:14:33 -0400266 */
Jason Wang04b96e52016-04-25 22:14:33 -0400267 llist_add(&work->node, &dev->work_list);
Tejun Heoc23f34452010-06-02 20:40:00 +0200268 wake_up_process(dev->worker);
269 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000270}
Asias He6ac1afb2013-05-06 16:38:21 +0800271EXPORT_SYMBOL_GPL(vhost_work_queue);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000272
Jason Wang526d3e72016-03-04 06:24:51 -0500273/* A lockless hint for busy polling code to exit the loop */
274bool vhost_has_work(struct vhost_dev *dev)
275{
Jason Wang04b96e52016-04-25 22:14:33 -0400276 return !llist_empty(&dev->work_list);
Jason Wang526d3e72016-03-04 06:24:51 -0500277}
278EXPORT_SYMBOL_GPL(vhost_has_work);
279
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300280void vhost_poll_queue(struct vhost_poll *poll)
281{
282 vhost_work_queue(poll->dev, &poll->work);
283}
Asias He6ac1afb2013-05-06 16:38:21 +0800284EXPORT_SYMBOL_GPL(vhost_poll_queue);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300285
Jason Wangf8894912017-02-28 17:56:02 +0800286static void __vhost_vq_meta_reset(struct vhost_virtqueue *vq)
287{
288 int j;
289
290 for (j = 0; j < VHOST_NUM_ADDRS; j++)
291 vq->meta_iotlb[j] = NULL;
292}
293
294static void vhost_vq_meta_reset(struct vhost_dev *d)
295{
296 int i;
297
Jason Wang86a07da2018-12-13 10:53:39 +0800298 for (i = 0; i < d->nvqs; ++i)
Jason Wangf8894912017-02-28 17:56:02 +0800299 __vhost_vq_meta_reset(d->vqs[i]);
300}
301
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000302static void vhost_vq_reset(struct vhost_dev *dev,
303 struct vhost_virtqueue *vq)
304{
305 vq->num = 1;
306 vq->desc = NULL;
307 vq->avail = NULL;
308 vq->used = NULL;
309 vq->last_avail_idx = 0;
310 vq->avail_idx = 0;
311 vq->last_used_idx = 0;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300312 vq->signalled_used = 0;
313 vq->signalled_used_valid = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000314 vq->used_flags = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000315 vq->log_used = false;
316 vq->log_addr = -1ull;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000317 vq->private_data = NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300318 vq->acked_features = 0;
Jason Wang429711a2018-08-06 11:17:47 +0800319 vq->acked_backend_features = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000320 vq->log_base = NULL;
321 vq->error_ctx = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000322 vq->kick = NULL;
323 vq->call_ctx = NULL;
Michael S. Tsirkin73a99f02010-02-23 11:23:45 +0200324 vq->log_ctx = NULL;
Greg Kurzc5072032016-02-16 15:59:34 +0100325 vhost_reset_is_le(vq);
326 vhost_disable_cross_endian(vq);
Jason Wang03088132016-03-04 06:24:53 -0500327 vq->busyloop_timeout = 0;
Jason Wanga9709d62016-06-23 02:04:31 -0400328 vq->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400329 vq->iotlb = NULL;
Jason Wangf8894912017-02-28 17:56:02 +0800330 __vhost_vq_meta_reset(vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000331}
332
Tejun Heoc23f34452010-06-02 20:40:00 +0200333static int vhost_worker(void *data)
334{
335 struct vhost_dev *dev = data;
Jason Wang04b96e52016-04-25 22:14:33 -0400336 struct vhost_work *work, *work_next;
337 struct llist_node *node;
Jens Freimannd7ffde32012-06-26 00:59:58 +0000338 mm_segment_t oldfs = get_fs();
Tejun Heoc23f34452010-06-02 20:40:00 +0200339
Jens Freimannd7ffde32012-06-26 00:59:58 +0000340 set_fs(USER_DS);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200341 use_mm(dev->mm);
342
Tejun Heoc23f34452010-06-02 20:40:00 +0200343 for (;;) {
344 /* mb paired w/ kthread_stop */
345 set_current_state(TASK_INTERRUPTIBLE);
346
Tejun Heoc23f34452010-06-02 20:40:00 +0200347 if (kthread_should_stop()) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200348 __set_current_state(TASK_RUNNING);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200349 break;
Tejun Heoc23f34452010-06-02 20:40:00 +0200350 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200351
Jason Wang04b96e52016-04-25 22:14:33 -0400352 node = llist_del_all(&dev->work_list);
353 if (!node)
354 schedule();
355
356 node = llist_reverse_order(node);
357 /* make sure flag is seen after deletion */
358 smp_wmb();
359 llist_for_each_entry_safe(work, work_next, node, node) {
360 clear_bit(VHOST_WORK_QUEUED, &work->flags);
Tejun Heoc23f34452010-06-02 20:40:00 +0200361 __set_current_state(TASK_RUNNING);
362 work->fn(work);
Nadav Har'Eld550dda2012-02-27 15:07:29 +0200363 if (need_resched())
364 schedule();
Jason Wang04b96e52016-04-25 22:14:33 -0400365 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200366 }
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200367 unuse_mm(dev->mm);
Jens Freimannd7ffde32012-06-26 00:59:58 +0000368 set_fs(oldfs);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200369 return 0;
Tejun Heoc23f34452010-06-02 20:40:00 +0200370}
371
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000372static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq)
373{
374 kfree(vq->indirect);
375 vq->indirect = NULL;
376 kfree(vq->log);
377 vq->log = NULL;
378 kfree(vq->heads);
379 vq->heads = NULL;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000380}
381
Jason Wange0e9b402010-09-14 23:53:05 +0800382/* Helper to allocate iovec buffers for all vqs. */
383static long vhost_dev_alloc_iovecs(struct vhost_dev *dev)
384{
Asias He6d5e6aa2013-05-06 16:38:23 +0800385 struct vhost_virtqueue *vq;
Jason Wange0e9b402010-09-14 23:53:05 +0800386 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530387
Jason Wange0e9b402010-09-14 23:53:05 +0800388 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800389 vq = dev->vqs[i];
Kees Cook6da2ec52018-06-12 13:55:00 -0700390 vq->indirect = kmalloc_array(UIO_MAXIOV,
391 sizeof(*vq->indirect),
392 GFP_KERNEL);
393 vq->log = kmalloc_array(UIO_MAXIOV, sizeof(*vq->log),
394 GFP_KERNEL);
395 vq->heads = kmalloc_array(UIO_MAXIOV, sizeof(*vq->heads),
396 GFP_KERNEL);
Asias He6d5e6aa2013-05-06 16:38:23 +0800397 if (!vq->indirect || !vq->log || !vq->heads)
Jason Wange0e9b402010-09-14 23:53:05 +0800398 goto err_nomem;
399 }
400 return 0;
Krishna Kumard47effe2011-03-01 17:06:37 +0530401
Jason Wange0e9b402010-09-14 23:53:05 +0800402err_nomem:
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000403 for (; i >= 0; --i)
Asias He3ab2e422013-04-27 11:16:48 +0800404 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800405 return -ENOMEM;
406}
407
408static void vhost_dev_free_iovecs(struct vhost_dev *dev)
409{
410 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530411
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000412 for (i = 0; i < dev->nvqs; ++i)
Asias He3ab2e422013-04-27 11:16:48 +0800413 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800414}
415
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800416void vhost_dev_init(struct vhost_dev *dev,
Asias He3ab2e422013-04-27 11:16:48 +0800417 struct vhost_virtqueue **vqs, int nvqs)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000418{
Asias He6d5e6aa2013-05-06 16:38:23 +0800419 struct vhost_virtqueue *vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000420 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200421
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000422 dev->vqs = vqs;
423 dev->nvqs = nvqs;
424 mutex_init(&dev->mutex);
425 dev->log_ctx = NULL;
Jason Wanga9709d62016-06-23 02:04:31 -0400426 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400427 dev->iotlb = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000428 dev->mm = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200429 dev->worker = NULL;
Jason Wang04b96e52016-04-25 22:14:33 -0400430 init_llist_head(&dev->work_list);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400431 init_waitqueue_head(&dev->wait);
432 INIT_LIST_HEAD(&dev->read_list);
433 INIT_LIST_HEAD(&dev->pending_list);
434 spin_lock_init(&dev->iotlb_lock);
Jason Wang04b96e52016-04-25 22:14:33 -0400435
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000436
437 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800438 vq = dev->vqs[i];
439 vq->log = NULL;
440 vq->indirect = NULL;
441 vq->heads = NULL;
442 vq->dev = dev;
443 mutex_init(&vq->mutex);
444 vhost_vq_reset(dev, vq);
445 if (vq->handle_kick)
446 vhost_poll_init(&vq->poll, vq->handle_kick,
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800447 EPOLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000448 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000449}
Asias He6ac1afb2013-05-06 16:38:21 +0800450EXPORT_SYMBOL_GPL(vhost_dev_init);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000451
452/* Caller should have device mutex */
453long vhost_dev_check_owner(struct vhost_dev *dev)
454{
455 /* Are you the owner? If not, I don't think you mean to do that */
456 return dev->mm == current->mm ? 0 : -EPERM;
457}
Asias He6ac1afb2013-05-06 16:38:21 +0800458EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000459
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300460struct vhost_attach_cgroups_struct {
Krishna Kumard47effe2011-03-01 17:06:37 +0530461 struct vhost_work work;
462 struct task_struct *owner;
463 int ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300464};
465
466static void vhost_attach_cgroups_work(struct vhost_work *work)
467{
Krishna Kumard47effe2011-03-01 17:06:37 +0530468 struct vhost_attach_cgroups_struct *s;
469
470 s = container_of(work, struct vhost_attach_cgroups_struct, work);
471 s->ret = cgroup_attach_task_all(s->owner, current);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300472}
473
474static int vhost_attach_cgroups(struct vhost_dev *dev)
475{
Krishna Kumard47effe2011-03-01 17:06:37 +0530476 struct vhost_attach_cgroups_struct attach;
477
478 attach.owner = current;
479 vhost_work_init(&attach.work, vhost_attach_cgroups_work);
480 vhost_work_queue(dev, &attach.work);
481 vhost_work_flush(dev, &attach.work);
482 return attach.ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300483}
484
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000485/* Caller should have device mutex */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300486bool vhost_dev_has_owner(struct vhost_dev *dev)
487{
488 return dev->mm;
489}
Asias He6ac1afb2013-05-06 16:38:21 +0800490EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300491
492/* Caller should have device mutex */
Asias He54db63c2013-05-06 11:15:59 +0800493long vhost_dev_set_owner(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000494{
Tejun Heoc23f34452010-06-02 20:40:00 +0200495 struct task_struct *worker;
496 int err;
Krishna Kumard47effe2011-03-01 17:06:37 +0530497
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000498 /* Is there an owner already? */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300499 if (vhost_dev_has_owner(dev)) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200500 err = -EBUSY;
501 goto err_mm;
502 }
Krishna Kumard47effe2011-03-01 17:06:37 +0530503
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000504 /* No owner, become one */
505 dev->mm = get_task_mm(current);
Tejun Heoc23f34452010-06-02 20:40:00 +0200506 worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
507 if (IS_ERR(worker)) {
508 err = PTR_ERR(worker);
509 goto err_worker;
510 }
511
512 dev->worker = worker;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300513 wake_up_process(worker); /* avoid contributing to loadavg */
514
515 err = vhost_attach_cgroups(dev);
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300516 if (err)
517 goto err_cgroup;
Tejun Heoc23f34452010-06-02 20:40:00 +0200518
Jason Wange0e9b402010-09-14 23:53:05 +0800519 err = vhost_dev_alloc_iovecs(dev);
520 if (err)
521 goto err_cgroup;
522
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000523 return 0;
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300524err_cgroup:
525 kthread_stop(worker);
Michael S. Tsirkin615cc222010-09-02 14:16:36 +0300526 dev->worker = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200527err_worker:
528 if (dev->mm)
529 mmput(dev->mm);
530 dev->mm = NULL;
531err_mm:
532 return err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000533}
Asias He6ac1afb2013-05-06 16:38:21 +0800534EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000535
Jason Wanga9709d62016-06-23 02:04:31 -0400536struct vhost_umem *vhost_dev_reset_owner_prepare(void)
537{
Michal Hocko6c5ab652017-05-08 15:57:15 -0700538 return kvzalloc(sizeof(struct vhost_umem), GFP_KERNEL);
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300539}
Asias He6ac1afb2013-05-06 16:38:21 +0800540EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000541
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300542/* Caller should have device mutex */
Jason Wanga9709d62016-06-23 02:04:31 -0400543void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_umem *umem)
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300544{
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300545 int i;
546
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800547 vhost_dev_cleanup(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000548
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300549 /* Restore memory to default empty mapping. */
Jason Wanga9709d62016-06-23 02:04:31 -0400550 INIT_LIST_HEAD(&umem->umem_list);
551 dev->umem = umem;
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300552 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
553 * VQs aren't running.
554 */
555 for (i = 0; i < dev->nvqs; ++i)
Jason Wanga9709d62016-06-23 02:04:31 -0400556 dev->vqs[i]->umem = umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000557}
Asias He6ac1afb2013-05-06 16:38:21 +0800558EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000559
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000560void vhost_dev_stop(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000561{
562 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530563
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000564 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800565 if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
566 vhost_poll_stop(&dev->vqs[i]->poll);
567 vhost_poll_flush(&dev->vqs[i]->poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000568 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000569 }
570}
Asias He6ac1afb2013-05-06 16:38:21 +0800571EXPORT_SYMBOL_GPL(vhost_dev_stop);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000572
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400573static void vhost_umem_free(struct vhost_umem *umem,
574 struct vhost_umem_node *node)
575{
576 vhost_umem_interval_tree_remove(node, &umem->umem_tree);
577 list_del(&node->link);
578 kfree(node);
579 umem->numem--;
580}
581
Jason Wanga9709d62016-06-23 02:04:31 -0400582static void vhost_umem_clean(struct vhost_umem *umem)
583{
584 struct vhost_umem_node *node, *tmp;
585
586 if (!umem)
587 return;
588
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400589 list_for_each_entry_safe(node, tmp, &umem->umem_list, link)
590 vhost_umem_free(umem, node);
591
Jason Wanga9709d62016-06-23 02:04:31 -0400592 kvfree(umem);
593}
594
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400595static void vhost_clear_msg(struct vhost_dev *dev)
596{
597 struct vhost_msg_node *node, *n;
598
599 spin_lock(&dev->iotlb_lock);
600
601 list_for_each_entry_safe(node, n, &dev->read_list, node) {
602 list_del(&node->node);
603 kfree(node);
604 }
605
606 list_for_each_entry_safe(node, n, &dev->pending_list, node) {
607 list_del(&node->node);
608 kfree(node);
609 }
610
611 spin_unlock(&dev->iotlb_lock);
612}
613
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800614void vhost_dev_cleanup(struct vhost_dev *dev)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000615{
616 int i;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000617
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000618 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800619 if (dev->vqs[i]->error_ctx)
620 eventfd_ctx_put(dev->vqs[i]->error_ctx);
Asias He3ab2e422013-04-27 11:16:48 +0800621 if (dev->vqs[i]->kick)
622 fput(dev->vqs[i]->kick);
623 if (dev->vqs[i]->call_ctx)
624 eventfd_ctx_put(dev->vqs[i]->call_ctx);
Asias He3ab2e422013-04-27 11:16:48 +0800625 vhost_vq_reset(dev, dev->vqs[i]);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000626 }
Jason Wange0e9b402010-09-14 23:53:05 +0800627 vhost_dev_free_iovecs(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000628 if (dev->log_ctx)
629 eventfd_ctx_put(dev->log_ctx);
630 dev->log_ctx = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000631 /* No one will access memory at this point */
Jason Wanga9709d62016-06-23 02:04:31 -0400632 vhost_umem_clean(dev->umem);
633 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400634 vhost_umem_clean(dev->iotlb);
635 dev->iotlb = NULL;
636 vhost_clear_msg(dev);
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800637 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
Jason Wang04b96e52016-04-25 22:14:33 -0400638 WARN_ON(!llist_empty(&dev->work_list));
Eric Dumazet78b620c2010-08-31 02:05:57 +0000639 if (dev->worker) {
640 kthread_stop(dev->worker);
641 dev->worker = NULL;
642 }
Michael S. Tsirkin533a19b2010-10-06 15:34:38 +0200643 if (dev->mm)
644 mmput(dev->mm);
645 dev->mm = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000646}
Asias He6ac1afb2013-05-06 16:38:21 +0800647EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000648
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800649static bool log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000650{
651 u64 a = addr / VHOST_PAGE_SIZE / 8;
Krishna Kumard47effe2011-03-01 17:06:37 +0530652
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000653 /* Make sure 64 bit math will not overflow. */
654 if (a > ULONG_MAX - (unsigned long)log_base ||
655 a + (unsigned long)log_base > ULONG_MAX)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800656 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000657
Linus Torvalds96d4f262019-01-03 18:57:57 -0800658 return access_ok(log_base + a,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000659 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
660}
661
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300662static bool vhost_overflow(u64 uaddr, u64 size)
663{
664 /* Make sure 64 bit math will not overflow. */
665 return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
666}
667
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000668/* Caller should have vq mutex and device mutex. */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800669static bool vq_memory_access_ok(void __user *log_base, struct vhost_umem *umem,
670 int log_all)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000671{
Jason Wanga9709d62016-06-23 02:04:31 -0400672 struct vhost_umem_node *node;
Jeff Dike179b2842010-04-07 09:59:10 -0400673
Jason Wanga9709d62016-06-23 02:04:31 -0400674 if (!umem)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800675 return false;
Jeff Dike179b2842010-04-07 09:59:10 -0400676
Jason Wanga9709d62016-06-23 02:04:31 -0400677 list_for_each_entry(node, &umem->umem_list, link) {
678 unsigned long a = node->userspace_addr;
679
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300680 if (vhost_overflow(node->userspace_addr, node->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800681 return false;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300682
683
Linus Torvalds96d4f262019-01-03 18:57:57 -0800684 if (!access_ok((void __user *)a,
Jason Wanga9709d62016-06-23 02:04:31 -0400685 node->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800686 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000687 else if (log_all && !log_access_ok(log_base,
Jason Wanga9709d62016-06-23 02:04:31 -0400688 node->start,
689 node->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800690 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000691 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800692 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000693}
694
Jason Wangf8894912017-02-28 17:56:02 +0800695static inline void __user *vhost_vq_meta_fetch(struct vhost_virtqueue *vq,
696 u64 addr, unsigned int size,
697 int type)
698{
699 const struct vhost_umem_node *node = vq->meta_iotlb[type];
700
701 if (!node)
702 return NULL;
703
704 return (void *)(uintptr_t)(node->userspace_addr + addr - node->start);
705}
706
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000707/* Can we switch to this memory table? */
708/* Caller should have device mutex but not vq mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800709static bool memory_access_ok(struct vhost_dev *d, struct vhost_umem *umem,
710 int log_all)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000711{
712 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530713
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000714 for (i = 0; i < d->nvqs; ++i) {
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800715 bool ok;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300716 bool log;
717
Asias He3ab2e422013-04-27 11:16:48 +0800718 mutex_lock(&d->vqs[i]->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300719 log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000720 /* If ring is inactive, will check when it's enabled. */
Asias He3ab2e422013-04-27 11:16:48 +0800721 if (d->vqs[i]->private_data)
Jason Wanga9709d62016-06-23 02:04:31 -0400722 ok = vq_memory_access_ok(d->vqs[i]->log_base,
723 umem, log);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000724 else
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800725 ok = true;
Asias He3ab2e422013-04-27 11:16:48 +0800726 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000727 if (!ok)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800728 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000729 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800730 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000731}
732
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400733static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
734 struct iovec iov[], int iov_size, int access);
Jason Wangbfe2bc52016-06-23 02:04:30 -0400735
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200736static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
Jason Wangbfe2bc52016-06-23 02:04:30 -0400737 const void *from, unsigned size)
738{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400739 int ret;
Jason Wangbfe2bc52016-06-23 02:04:30 -0400740
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400741 if (!vq->iotlb)
742 return __copy_to_user(to, from, size);
743 else {
744 /* This function should be called after iotlb
745 * prefetch, which means we're sure that all vq
746 * could be access through iotlb. So -EAGAIN should
747 * not happen in this case.
748 */
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400749 struct iov_iter t;
Jason Wangf8894912017-02-28 17:56:02 +0800750 void __user *uaddr = vhost_vq_meta_fetch(vq,
751 (u64)(uintptr_t)to, size,
Eric Auger7ced6c92018-04-11 15:30:38 +0200752 VHOST_ADDR_USED);
Jason Wangf8894912017-02-28 17:56:02 +0800753
754 if (uaddr)
755 return __copy_to_user(uaddr, from, size);
756
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400757 ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
758 ARRAY_SIZE(vq->iotlb_iov),
759 VHOST_ACCESS_WO);
760 if (ret < 0)
761 goto out;
762 iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
763 ret = copy_to_iter(from, size, &t);
764 if (ret == size)
765 ret = 0;
766 }
767out:
768 return ret;
769}
Jason Wangbfe2bc52016-06-23 02:04:30 -0400770
771static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200772 void __user *from, unsigned size)
Jason Wangbfe2bc52016-06-23 02:04:30 -0400773{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400774 int ret;
775
776 if (!vq->iotlb)
777 return __copy_from_user(to, from, size);
778 else {
779 /* This function should be called after iotlb
780 * prefetch, which means we're sure that vq
781 * could be access through iotlb. So -EAGAIN should
782 * not happen in this case.
783 */
Jason Wangf8894912017-02-28 17:56:02 +0800784 void __user *uaddr = vhost_vq_meta_fetch(vq,
785 (u64)(uintptr_t)from, size,
786 VHOST_ADDR_DESC);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400787 struct iov_iter f;
Jason Wangf8894912017-02-28 17:56:02 +0800788
789 if (uaddr)
790 return __copy_from_user(to, uaddr, size);
791
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400792 ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
793 ARRAY_SIZE(vq->iotlb_iov),
794 VHOST_ACCESS_RO);
795 if (ret < 0) {
796 vq_err(vq, "IOTLB translation failure: uaddr "
797 "%p size 0x%llx\n", from,
798 (unsigned long long) size);
799 goto out;
800 }
801 iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
802 ret = copy_from_iter(to, size, &f);
803 if (ret == size)
804 ret = 0;
805 }
806
807out:
808 return ret;
809}
810
Jason Wangf8894912017-02-28 17:56:02 +0800811static void __user *__vhost_get_user_slow(struct vhost_virtqueue *vq,
812 void __user *addr, unsigned int size,
813 int type)
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400814{
815 int ret;
816
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400817 ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
818 ARRAY_SIZE(vq->iotlb_iov),
819 VHOST_ACCESS_RO);
820 if (ret < 0) {
821 vq_err(vq, "IOTLB translation failure: uaddr "
822 "%p size 0x%llx\n", addr,
823 (unsigned long long) size);
824 return NULL;
825 }
826
827 if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
828 vq_err(vq, "Non atomic userspace memory access: uaddr "
829 "%p size 0x%llx\n", addr,
830 (unsigned long long) size);
831 return NULL;
832 }
833
834 return vq->iotlb_iov[0].iov_base;
835}
836
Jason Wangf8894912017-02-28 17:56:02 +0800837/* This function should be called after iotlb
838 * prefetch, which means we're sure that vq
839 * could be access through iotlb. So -EAGAIN should
840 * not happen in this case.
841 */
842static inline void __user *__vhost_get_user(struct vhost_virtqueue *vq,
843 void *addr, unsigned int size,
844 int type)
845{
846 void __user *uaddr = vhost_vq_meta_fetch(vq,
847 (u64)(uintptr_t)addr, size, type);
848 if (uaddr)
849 return uaddr;
850
851 return __vhost_get_user_slow(vq, addr, size, type);
852}
853
854#define vhost_put_user(vq, x, ptr) \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400855({ \
856 int ret = -EFAULT; \
857 if (!vq->iotlb) { \
858 ret = __put_user(x, ptr); \
859 } else { \
860 __typeof__(ptr) to = \
Jason Wangf8894912017-02-28 17:56:02 +0800861 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
862 sizeof(*ptr), VHOST_ADDR_USED); \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400863 if (to != NULL) \
864 ret = __put_user(x, to); \
865 else \
866 ret = -EFAULT; \
867 } \
868 ret; \
869})
870
Jason Wangf8894912017-02-28 17:56:02 +0800871#define vhost_get_user(vq, x, ptr, type) \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400872({ \
873 int ret; \
874 if (!vq->iotlb) { \
875 ret = __get_user(x, ptr); \
876 } else { \
877 __typeof__(ptr) from = \
Jason Wangf8894912017-02-28 17:56:02 +0800878 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
879 sizeof(*ptr), \
880 type); \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400881 if (from != NULL) \
882 ret = __get_user(x, from); \
883 else \
884 ret = -EFAULT; \
885 } \
886 ret; \
887})
888
Jason Wangf8894912017-02-28 17:56:02 +0800889#define vhost_get_avail(vq, x, ptr) \
890 vhost_get_user(vq, x, ptr, VHOST_ADDR_AVAIL)
891
892#define vhost_get_used(vq, x, ptr) \
893 vhost_get_user(vq, x, ptr, VHOST_ADDR_USED)
894
Jason Wang86a07da2018-12-13 10:53:39 +0800895static void vhost_dev_lock_vqs(struct vhost_dev *d)
896{
897 int i = 0;
898 for (i = 0; i < d->nvqs; ++i)
899 mutex_lock_nested(&d->vqs[i]->mutex, i);
900}
901
902static void vhost_dev_unlock_vqs(struct vhost_dev *d)
903{
904 int i = 0;
905 for (i = 0; i < d->nvqs; ++i)
906 mutex_unlock(&d->vqs[i]->mutex);
907}
908
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400909static int vhost_new_umem_range(struct vhost_umem *umem,
910 u64 start, u64 size, u64 end,
911 u64 userspace_addr, int perm)
912{
913 struct vhost_umem_node *tmp, *node = kmalloc(sizeof(*node), GFP_ATOMIC);
914
915 if (!node)
916 return -ENOMEM;
917
918 if (umem->numem == max_iotlb_entries) {
919 tmp = list_first_entry(&umem->umem_list, typeof(*tmp), link);
920 vhost_umem_free(umem, tmp);
921 }
922
923 node->start = start;
924 node->size = size;
925 node->last = end;
926 node->userspace_addr = userspace_addr;
927 node->perm = perm;
928 INIT_LIST_HEAD(&node->link);
929 list_add_tail(&node->link, &umem->umem_list);
930 vhost_umem_interval_tree_insert(node, &umem->umem_tree);
931 umem->numem++;
932
933 return 0;
934}
935
936static void vhost_del_umem_range(struct vhost_umem *umem,
937 u64 start, u64 end)
938{
939 struct vhost_umem_node *node;
940
941 while ((node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
942 start, end)))
943 vhost_umem_free(umem, node);
944}
945
946static void vhost_iotlb_notify_vq(struct vhost_dev *d,
947 struct vhost_iotlb_msg *msg)
948{
949 struct vhost_msg_node *node, *n;
950
951 spin_lock(&d->iotlb_lock);
952
953 list_for_each_entry_safe(node, n, &d->pending_list, node) {
954 struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
955 if (msg->iova <= vq_msg->iova &&
Jason Wang2d66f992018-08-24 16:53:13 +0800956 msg->iova + msg->size - 1 >= vq_msg->iova &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400957 vq_msg->type == VHOST_IOTLB_MISS) {
958 vhost_poll_queue(&node->vq->poll);
959 list_del(&node->node);
960 kfree(node);
961 }
962 }
963
964 spin_unlock(&d->iotlb_lock);
965}
966
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800967static bool umem_access_ok(u64 uaddr, u64 size, int access)
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400968{
969 unsigned long a = uaddr;
970
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300971 /* Make sure 64 bit math will not overflow. */
972 if (vhost_overflow(uaddr, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800973 return false;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300974
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400975 if ((access & VHOST_ACCESS_RO) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -0800976 !access_ok((void __user *)a, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800977 return false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400978 if ((access & VHOST_ACCESS_WO) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -0800979 !access_ok((void __user *)a, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800980 return false;
981 return true;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400982}
983
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200984static int vhost_process_iotlb_msg(struct vhost_dev *dev,
985 struct vhost_iotlb_msg *msg)
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400986{
987 int ret = 0;
988
Jason Wang1b15ad62018-05-22 19:58:57 +0800989 mutex_lock(&dev->mutex);
Jason Wang86a07da2018-12-13 10:53:39 +0800990 vhost_dev_lock_vqs(dev);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400991 switch (msg->type) {
992 case VHOST_IOTLB_UPDATE:
993 if (!dev->iotlb) {
994 ret = -EFAULT;
995 break;
996 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800997 if (!umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400998 ret = -EFAULT;
999 break;
1000 }
Jason Wangf8894912017-02-28 17:56:02 +08001001 vhost_vq_meta_reset(dev);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001002 if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
1003 msg->iova + msg->size - 1,
1004 msg->uaddr, msg->perm)) {
1005 ret = -ENOMEM;
1006 break;
1007 }
1008 vhost_iotlb_notify_vq(dev, msg);
1009 break;
1010 case VHOST_IOTLB_INVALIDATE:
Jason Wang6f3180a2018-01-23 17:27:26 +08001011 if (!dev->iotlb) {
1012 ret = -EFAULT;
1013 break;
1014 }
Jason Wangf8894912017-02-28 17:56:02 +08001015 vhost_vq_meta_reset(dev);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001016 vhost_del_umem_range(dev->iotlb, msg->iova,
1017 msg->iova + msg->size - 1);
1018 break;
1019 default:
1020 ret = -EINVAL;
1021 break;
1022 }
1023
Jason Wang86a07da2018-12-13 10:53:39 +08001024 vhost_dev_unlock_vqs(dev);
Jason Wang1b15ad62018-05-22 19:58:57 +08001025 mutex_unlock(&dev->mutex);
1026
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001027 return ret;
1028}
1029ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
1030 struct iov_iter *from)
1031{
Jason Wang429711a2018-08-06 11:17:47 +08001032 struct vhost_iotlb_msg msg;
1033 size_t offset;
1034 int type, ret;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001035
Jason Wang429711a2018-08-06 11:17:47 +08001036 ret = copy_from_iter(&type, sizeof(type), from);
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001037 if (ret != sizeof(type)) {
1038 ret = -EINVAL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001039 goto done;
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001040 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001041
Jason Wang429711a2018-08-06 11:17:47 +08001042 switch (type) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001043 case VHOST_IOTLB_MSG:
Jason Wang429711a2018-08-06 11:17:47 +08001044 /* There maybe a hole after type for V1 message type,
1045 * so skip it here.
1046 */
1047 offset = offsetof(struct vhost_msg, iotlb) - sizeof(int);
1048 break;
1049 case VHOST_IOTLB_MSG_V2:
1050 offset = sizeof(__u32);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001051 break;
1052 default:
1053 ret = -EINVAL;
Jason Wang429711a2018-08-06 11:17:47 +08001054 goto done;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001055 }
1056
Jason Wang429711a2018-08-06 11:17:47 +08001057 iov_iter_advance(from, offset);
1058 ret = copy_from_iter(&msg, sizeof(msg), from);
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001059 if (ret != sizeof(msg)) {
1060 ret = -EINVAL;
Jason Wang429711a2018-08-06 11:17:47 +08001061 goto done;
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001062 }
Jason Wang429711a2018-08-06 11:17:47 +08001063 if (vhost_process_iotlb_msg(dev, &msg)) {
1064 ret = -EFAULT;
1065 goto done;
1066 }
1067
1068 ret = (type == VHOST_IOTLB_MSG) ? sizeof(struct vhost_msg) :
1069 sizeof(struct vhost_msg_v2);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001070done:
1071 return ret;
1072}
1073EXPORT_SYMBOL(vhost_chr_write_iter);
1074
Al Viroafc9a422017-07-03 06:39:46 -04001075__poll_t vhost_chr_poll(struct file *file, struct vhost_dev *dev,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001076 poll_table *wait)
1077{
Al Viroafc9a422017-07-03 06:39:46 -04001078 __poll_t mask = 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001079
1080 poll_wait(file, &dev->wait, wait);
1081
1082 if (!list_empty(&dev->read_list))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001083 mask |= EPOLLIN | EPOLLRDNORM;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001084
1085 return mask;
1086}
1087EXPORT_SYMBOL(vhost_chr_poll);
1088
1089ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1090 int noblock)
1091{
1092 DEFINE_WAIT(wait);
1093 struct vhost_msg_node *node;
1094 ssize_t ret = 0;
1095 unsigned size = sizeof(struct vhost_msg);
1096
1097 if (iov_iter_count(to) < size)
1098 return 0;
1099
1100 while (1) {
1101 if (!noblock)
1102 prepare_to_wait(&dev->wait, &wait,
1103 TASK_INTERRUPTIBLE);
1104
1105 node = vhost_dequeue_msg(dev, &dev->read_list);
1106 if (node)
1107 break;
1108 if (noblock) {
1109 ret = -EAGAIN;
1110 break;
1111 }
1112 if (signal_pending(current)) {
1113 ret = -ERESTARTSYS;
1114 break;
1115 }
1116 if (!dev->iotlb) {
1117 ret = -EBADFD;
1118 break;
1119 }
1120
1121 schedule();
1122 }
1123
1124 if (!noblock)
1125 finish_wait(&dev->wait, &wait);
1126
1127 if (node) {
Jason Wang429711a2018-08-06 11:17:47 +08001128 struct vhost_iotlb_msg *msg;
1129 void *start = &node->msg;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001130
Jason Wang429711a2018-08-06 11:17:47 +08001131 switch (node->msg.type) {
1132 case VHOST_IOTLB_MSG:
1133 size = sizeof(node->msg);
1134 msg = &node->msg.iotlb;
1135 break;
1136 case VHOST_IOTLB_MSG_V2:
1137 size = sizeof(node->msg_v2);
1138 msg = &node->msg_v2.iotlb;
1139 break;
1140 default:
1141 BUG();
1142 break;
1143 }
1144
1145 ret = copy_to_iter(start, size, to);
1146 if (ret != size || msg->type != VHOST_IOTLB_MISS) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001147 kfree(node);
1148 return ret;
1149 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001150 vhost_enqueue_msg(dev, &dev->pending_list, node);
1151 }
1152
1153 return ret;
1154}
1155EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1156
1157static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1158{
1159 struct vhost_dev *dev = vq->dev;
1160 struct vhost_msg_node *node;
1161 struct vhost_iotlb_msg *msg;
Jason Wang429711a2018-08-06 11:17:47 +08001162 bool v2 = vhost_backend_has_feature(vq, VHOST_BACKEND_F_IOTLB_MSG_V2);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001163
Jason Wang429711a2018-08-06 11:17:47 +08001164 node = vhost_new_msg(vq, v2 ? VHOST_IOTLB_MSG_V2 : VHOST_IOTLB_MSG);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001165 if (!node)
1166 return -ENOMEM;
1167
Jason Wang429711a2018-08-06 11:17:47 +08001168 if (v2) {
1169 node->msg_v2.type = VHOST_IOTLB_MSG_V2;
1170 msg = &node->msg_v2.iotlb;
1171 } else {
1172 msg = &node->msg.iotlb;
1173 }
1174
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001175 msg->type = VHOST_IOTLB_MISS;
1176 msg->iova = iova;
1177 msg->perm = access;
1178
1179 vhost_enqueue_msg(dev, &dev->read_list, node);
1180
1181 return 0;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001182}
1183
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001184static bool vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
1185 struct vring_desc __user *desc,
1186 struct vring_avail __user *avail,
1187 struct vring_used __user *used)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001188
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001189{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001190 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001191
Linus Torvalds96d4f262019-01-03 18:57:57 -08001192 return access_ok(desc, num * sizeof *desc) &&
1193 access_ok(avail,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001194 sizeof *avail + num * sizeof *avail->ring + s) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001195 access_ok(used,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001196 sizeof *used + num * sizeof *used->ring + s);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001197}
1198
Jason Wangf8894912017-02-28 17:56:02 +08001199static void vhost_vq_meta_update(struct vhost_virtqueue *vq,
1200 const struct vhost_umem_node *node,
1201 int type)
1202{
1203 int access = (type == VHOST_ADDR_USED) ?
1204 VHOST_ACCESS_WO : VHOST_ACCESS_RO;
1205
1206 if (likely(node->perm & access))
1207 vq->meta_iotlb[type] = node;
1208}
1209
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001210static bool iotlb_access_ok(struct vhost_virtqueue *vq,
1211 int access, u64 addr, u64 len, int type)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001212{
1213 const struct vhost_umem_node *node;
1214 struct vhost_umem *umem = vq->iotlb;
Michael S. Tsirkinca2c5b32017-08-21 22:33:33 +03001215 u64 s = 0, size, orig_addr = addr, last = addr + len - 1;
Jason Wangf8894912017-02-28 17:56:02 +08001216
1217 if (vhost_vq_meta_fetch(vq, addr, len, type))
1218 return true;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001219
1220 while (len > s) {
1221 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1222 addr,
Michael S. Tsirkinca2c5b32017-08-21 22:33:33 +03001223 last);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001224 if (node == NULL || node->start > addr) {
1225 vhost_iotlb_miss(vq, addr, access);
1226 return false;
1227 } else if (!(node->perm & access)) {
1228 /* Report the possible access violation by
1229 * request another translation from userspace.
1230 */
1231 return false;
1232 }
1233
1234 size = node->size - addr + node->start;
Jason Wangf8894912017-02-28 17:56:02 +08001235
1236 if (orig_addr == addr && size >= len)
1237 vhost_vq_meta_update(vq, node, type);
1238
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001239 s += size;
1240 addr += size;
1241 }
1242
1243 return true;
1244}
1245
1246int vq_iotlb_prefetch(struct vhost_virtqueue *vq)
1247{
1248 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1249 unsigned int num = vq->num;
1250
1251 if (!vq->iotlb)
1252 return 1;
1253
1254 return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
Jason Wangf8894912017-02-28 17:56:02 +08001255 num * sizeof(*vq->desc), VHOST_ADDR_DESC) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001256 iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1257 sizeof *vq->avail +
Jason Wangf8894912017-02-28 17:56:02 +08001258 num * sizeof(*vq->avail->ring) + s,
1259 VHOST_ADDR_AVAIL) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001260 iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1261 sizeof *vq->used +
Jason Wangf8894912017-02-28 17:56:02 +08001262 num * sizeof(*vq->used->ring) + s,
1263 VHOST_ADDR_USED);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001264}
1265EXPORT_SYMBOL_GPL(vq_iotlb_prefetch);
1266
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001267/* Can we log writes? */
1268/* Caller should have device mutex but not vq mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001269bool vhost_log_access_ok(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001270{
Jason Wanga9709d62016-06-23 02:04:31 -04001271 return memory_access_ok(dev, dev->umem, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001272}
Asias He6ac1afb2013-05-06 16:38:21 +08001273EXPORT_SYMBOL_GPL(vhost_log_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001274
1275/* Verify access for write logging. */
1276/* Caller should have vq mutex and device mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001277static bool vq_log_access_ok(struct vhost_virtqueue *vq,
1278 void __user *log_base)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001279{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001280 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Arnd Bergmann28457ee2010-03-09 19:24:45 +01001281
Jason Wanga9709d62016-06-23 02:04:31 -04001282 return vq_memory_access_ok(log_base, vq->umem,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001283 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001284 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
1285 sizeof *vq->used +
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001286 vq->num * sizeof *vq->used->ring + s));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001287}
1288
1289/* Can we start vq? */
1290/* Caller should have vq mutex and device mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001291bool vhost_vq_access_ok(struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001292{
Stefan Hajnoczid14d2b72018-04-11 10:35:40 +08001293 if (!vq_log_access_ok(vq, vq->log_base))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001294 return false;
Jason Wangd65026c2018-03-29 16:00:04 +08001295
Stefan Hajnoczid14d2b72018-04-11 10:35:40 +08001296 /* Access validation occurs at prefetch time with IOTLB */
1297 if (vq->iotlb)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001298 return true;
Jason Wangd65026c2018-03-29 16:00:04 +08001299
1300 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001301}
Asias He6ac1afb2013-05-06 16:38:21 +08001302EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001303
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001304static struct vhost_umem *vhost_umem_alloc(void)
1305{
Michal Hocko6c5ab652017-05-08 15:57:15 -07001306 struct vhost_umem *umem = kvzalloc(sizeof(*umem), GFP_KERNEL);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001307
1308 if (!umem)
1309 return NULL;
1310
Davidlohr Buesof808c132017-09-08 16:15:08 -07001311 umem->umem_tree = RB_ROOT_CACHED;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001312 umem->numem = 0;
1313 INIT_LIST_HEAD(&umem->umem_list);
1314
1315 return umem;
1316}
1317
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001318static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1319{
Jason Wanga9709d62016-06-23 02:04:31 -04001320 struct vhost_memory mem, *newmem;
1321 struct vhost_memory_region *region;
Jason Wanga9709d62016-06-23 02:04:31 -04001322 struct vhost_umem *newumem, *oldumem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001323 unsigned long size = offsetof(struct vhost_memory, regions);
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001324 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +05301325
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001326 if (copy_from_user(&mem, m, size))
1327 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001328 if (mem.padding)
1329 return -EOPNOTSUPP;
Igor Mammedovc9ce42f2015-07-02 15:08:11 +02001330 if (mem.nregions > max_mem_regions)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001331 return -E2BIG;
Matthew Wilcoxb2303d72018-06-07 07:57:18 -07001332 newmem = kvzalloc(struct_size(newmem, regions, mem.nregions),
1333 GFP_KERNEL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001334 if (!newmem)
1335 return -ENOMEM;
1336
1337 memcpy(newmem, &mem, size);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001338 if (copy_from_user(newmem->regions, m->regions,
1339 mem.nregions * sizeof *m->regions)) {
Igor Mammedovbcfeaca2015-06-16 18:33:35 +02001340 kvfree(newmem);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001341 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001342 }
1343
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001344 newumem = vhost_umem_alloc();
Jason Wanga9709d62016-06-23 02:04:31 -04001345 if (!newumem) {
Igor Mammedov4de72552015-07-01 11:07:09 +02001346 kvfree(newmem);
Jason Wanga9709d62016-06-23 02:04:31 -04001347 return -ENOMEM;
Takuya Yoshikawaa02c3782010-05-27 19:03:56 +09001348 }
Jason Wanga9709d62016-06-23 02:04:31 -04001349
Jason Wanga9709d62016-06-23 02:04:31 -04001350 for (region = newmem->regions;
1351 region < newmem->regions + mem.nregions;
1352 region++) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001353 if (vhost_new_umem_range(newumem,
1354 region->guest_phys_addr,
1355 region->memory_size,
1356 region->guest_phys_addr +
1357 region->memory_size - 1,
1358 region->userspace_addr,
1359 VHOST_ACCESS_RW))
Jason Wanga9709d62016-06-23 02:04:31 -04001360 goto err;
Jason Wanga9709d62016-06-23 02:04:31 -04001361 }
1362
1363 if (!memory_access_ok(d, newumem, 0))
1364 goto err;
1365
1366 oldumem = d->umem;
1367 d->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001368
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001369 /* All memory accesses are done under some VQ mutex. */
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001370 for (i = 0; i < d->nvqs; ++i) {
1371 mutex_lock(&d->vqs[i]->mutex);
Jason Wanga9709d62016-06-23 02:04:31 -04001372 d->vqs[i]->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001373 mutex_unlock(&d->vqs[i]->mutex);
1374 }
Jason Wanga9709d62016-06-23 02:04:31 -04001375
1376 kvfree(newmem);
1377 vhost_umem_clean(oldumem);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001378 return 0;
Jason Wanga9709d62016-06-23 02:04:31 -04001379
1380err:
1381 vhost_umem_clean(newumem);
1382 kvfree(newmem);
1383 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001384}
1385
Sonny Rao26b36602018-03-14 10:05:06 -07001386long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001387{
Al Virocecb46f2012-08-27 14:21:39 -04001388 struct file *eventfp, *filep = NULL;
1389 bool pollstart = false, pollstop = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001390 struct eventfd_ctx *ctx = NULL;
1391 u32 __user *idxp = argp;
1392 struct vhost_virtqueue *vq;
1393 struct vhost_vring_state s;
1394 struct vhost_vring_file f;
1395 struct vhost_vring_addr a;
1396 u32 idx;
1397 long r;
1398
1399 r = get_user(idx, idxp);
1400 if (r < 0)
1401 return r;
Krishna Kumar0f3d9a12010-05-25 11:10:36 +05301402 if (idx >= d->nvqs)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001403 return -ENOBUFS;
1404
Jason Wangff002262018-10-30 14:10:49 +08001405 idx = array_index_nospec(idx, d->nvqs);
Asias He3ab2e422013-04-27 11:16:48 +08001406 vq = d->vqs[idx];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001407
1408 mutex_lock(&vq->mutex);
1409
1410 switch (ioctl) {
1411 case VHOST_SET_VRING_NUM:
1412 /* Resizing ring with an active backend?
1413 * You don't want to do that. */
1414 if (vq->private_data) {
1415 r = -EBUSY;
1416 break;
1417 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001418 if (copy_from_user(&s, argp, sizeof s)) {
1419 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001420 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001421 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001422 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) {
1423 r = -EINVAL;
1424 break;
1425 }
1426 vq->num = s.num;
1427 break;
1428 case VHOST_SET_VRING_BASE:
1429 /* Moving base with an active backend?
1430 * You don't want to do that. */
1431 if (vq->private_data) {
1432 r = -EBUSY;
1433 break;
1434 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001435 if (copy_from_user(&s, argp, sizeof s)) {
1436 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001437 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001438 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001439 if (s.num > 0xffff) {
1440 r = -EINVAL;
1441 break;
1442 }
Jason Wang8d658432017-07-27 11:22:05 +08001443 vq->last_avail_idx = s.num;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001444 /* Forget the cached index value. */
1445 vq->avail_idx = vq->last_avail_idx;
1446 break;
1447 case VHOST_GET_VRING_BASE:
1448 s.index = idx;
1449 s.num = vq->last_avail_idx;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001450 if (copy_to_user(argp, &s, sizeof s))
1451 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001452 break;
1453 case VHOST_SET_VRING_ADDR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001454 if (copy_from_user(&a, argp, sizeof a)) {
1455 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001456 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001457 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001458 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) {
1459 r = -EOPNOTSUPP;
1460 break;
1461 }
1462 /* For 32bit, verify that the top 32bits of the user
1463 data are set to zero. */
1464 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1465 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1466 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) {
1467 r = -EFAULT;
1468 break;
1469 }
Michael S. Tsirkin5d9a07b2014-12-21 01:00:23 +02001470
1471 /* Make sure it's safe to cast pointers to vring types. */
1472 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1473 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1474 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1475 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
Michael S. Tsirkind5424832015-11-16 16:57:08 +02001476 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001477 r = -EINVAL;
1478 break;
1479 }
1480
1481 /* We only verify access here if backend is configured.
1482 * If it is not, we don't as size might not have been setup.
1483 * We will verify when backend is configured. */
1484 if (vq->private_data) {
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001485 if (!vq_access_ok(vq, vq->num,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001486 (void __user *)(unsigned long)a.desc_user_addr,
1487 (void __user *)(unsigned long)a.avail_user_addr,
1488 (void __user *)(unsigned long)a.used_user_addr)) {
1489 r = -EINVAL;
1490 break;
1491 }
1492
1493 /* Also validate log access for used ring if enabled. */
1494 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1495 !log_access_ok(vq->log_base, a.log_guest_addr,
1496 sizeof *vq->used +
1497 vq->num * sizeof *vq->used->ring)) {
1498 r = -EINVAL;
1499 break;
1500 }
1501 }
1502
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001503 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1504 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1505 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1506 vq->log_addr = a.log_guest_addr;
1507 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1508 break;
1509 case VHOST_SET_VRING_KICK:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001510 if (copy_from_user(&f, argp, sizeof f)) {
1511 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001512 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001513 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001514 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001515 if (IS_ERR(eventfp)) {
1516 r = PTR_ERR(eventfp);
1517 break;
1518 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001519 if (eventfp != vq->kick) {
Al Virocecb46f2012-08-27 14:21:39 -04001520 pollstop = (filep = vq->kick) != NULL;
1521 pollstart = (vq->kick = eventfp) != NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001522 } else
1523 filep = eventfp;
1524 break;
1525 case VHOST_SET_VRING_CALL:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001526 if (copy_from_user(&f, argp, sizeof f)) {
1527 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001528 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001529 }
Eric Biggerse050c7d2018-01-06 14:52:19 -08001530 ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd);
1531 if (IS_ERR(ctx)) {
1532 r = PTR_ERR(ctx);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001533 break;
1534 }
Eric Biggerse050c7d2018-01-06 14:52:19 -08001535 swap(ctx, vq->call_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001536 break;
1537 case VHOST_SET_VRING_ERR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001538 if (copy_from_user(&f, argp, sizeof f)) {
1539 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001540 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001541 }
Eric Biggers09f332a2018-01-06 14:52:20 -08001542 ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd);
1543 if (IS_ERR(ctx)) {
1544 r = PTR_ERR(ctx);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001545 break;
1546 }
Eric Biggers09f332a2018-01-06 14:52:20 -08001547 swap(ctx, vq->error_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001548 break;
Greg Kurz2751c982015-04-24 14:27:24 +02001549 case VHOST_SET_VRING_ENDIAN:
1550 r = vhost_set_vring_endian(vq, argp);
1551 break;
1552 case VHOST_GET_VRING_ENDIAN:
1553 r = vhost_get_vring_endian(vq, idx, argp);
1554 break;
Jason Wang03088132016-03-04 06:24:53 -05001555 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1556 if (copy_from_user(&s, argp, sizeof(s))) {
1557 r = -EFAULT;
1558 break;
1559 }
1560 vq->busyloop_timeout = s.num;
1561 break;
1562 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1563 s.index = idx;
1564 s.num = vq->busyloop_timeout;
1565 if (copy_to_user(argp, &s, sizeof(s)))
1566 r = -EFAULT;
1567 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001568 default:
1569 r = -ENOIOCTLCMD;
1570 }
1571
1572 if (pollstop && vq->handle_kick)
1573 vhost_poll_stop(&vq->poll);
1574
Eric Biggerse050c7d2018-01-06 14:52:19 -08001575 if (!IS_ERR_OR_NULL(ctx))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001576 eventfd_ctx_put(ctx);
1577 if (filep)
1578 fput(filep);
1579
1580 if (pollstart && vq->handle_kick)
Jason Wang2b8b3282013-01-28 01:05:18 +00001581 r = vhost_poll_start(&vq->poll, vq->kick);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001582
1583 mutex_unlock(&vq->mutex);
1584
1585 if (pollstop && vq->handle_kick)
1586 vhost_poll_flush(&vq->poll);
1587 return r;
1588}
Asias He6ac1afb2013-05-06 16:38:21 +08001589EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001590
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001591int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1592{
1593 struct vhost_umem *niotlb, *oiotlb;
1594 int i;
1595
1596 niotlb = vhost_umem_alloc();
1597 if (!niotlb)
1598 return -ENOMEM;
1599
1600 oiotlb = d->iotlb;
1601 d->iotlb = niotlb;
1602
1603 for (i = 0; i < d->nvqs; ++i) {
Jason Wangb13f9c62018-08-08 11:43:04 +08001604 struct vhost_virtqueue *vq = d->vqs[i];
1605
1606 mutex_lock(&vq->mutex);
1607 vq->iotlb = niotlb;
1608 __vhost_vq_meta_reset(vq);
1609 mutex_unlock(&vq->mutex);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001610 }
1611
1612 vhost_umem_clean(oiotlb);
1613
1614 return 0;
1615}
1616EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1617
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001618/* Caller must have device mutex */
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001619long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001620{
Eric Biggersd25cc432018-01-06 14:52:21 -08001621 struct eventfd_ctx *ctx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001622 u64 p;
1623 long r;
1624 int i, fd;
1625
1626 /* If you are not the owner, you can become one */
1627 if (ioctl == VHOST_SET_OWNER) {
1628 r = vhost_dev_set_owner(d);
1629 goto done;
1630 }
1631
1632 /* You must be the owner to do anything else */
1633 r = vhost_dev_check_owner(d);
1634 if (r)
1635 goto done;
1636
1637 switch (ioctl) {
1638 case VHOST_SET_MEM_TABLE:
1639 r = vhost_set_memory(d, argp);
1640 break;
1641 case VHOST_SET_LOG_BASE:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001642 if (copy_from_user(&p, argp, sizeof p)) {
1643 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001644 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001645 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001646 if ((u64)(unsigned long)p != p) {
1647 r = -EFAULT;
1648 break;
1649 }
1650 for (i = 0; i < d->nvqs; ++i) {
1651 struct vhost_virtqueue *vq;
1652 void __user *base = (void __user *)(unsigned long)p;
Asias He3ab2e422013-04-27 11:16:48 +08001653 vq = d->vqs[i];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001654 mutex_lock(&vq->mutex);
1655 /* If ring is inactive, will check when it's enabled. */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001656 if (vq->private_data && !vq_log_access_ok(vq, base))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001657 r = -EFAULT;
1658 else
1659 vq->log_base = base;
1660 mutex_unlock(&vq->mutex);
1661 }
1662 break;
1663 case VHOST_SET_LOG_FD:
1664 r = get_user(fd, (int __user *)argp);
1665 if (r < 0)
1666 break;
Eric Biggersd25cc432018-01-06 14:52:21 -08001667 ctx = fd == -1 ? NULL : eventfd_ctx_fdget(fd);
1668 if (IS_ERR(ctx)) {
1669 r = PTR_ERR(ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001670 break;
1671 }
Eric Biggersd25cc432018-01-06 14:52:21 -08001672 swap(ctx, d->log_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001673 for (i = 0; i < d->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001674 mutex_lock(&d->vqs[i]->mutex);
1675 d->vqs[i]->log_ctx = d->log_ctx;
1676 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001677 }
1678 if (ctx)
1679 eventfd_ctx_put(ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001680 break;
1681 default:
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001682 r = -ENOIOCTLCMD;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001683 break;
1684 }
1685done:
1686 return r;
1687}
Asias He6ac1afb2013-05-06 16:38:21 +08001688EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001689
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001690/* TODO: This is really inefficient. We need something like get_user()
1691 * (instruction directly accesses the data, with an exception table entry
1692 * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1693 */
1694static int set_bit_to_user(int nr, void __user *addr)
1695{
1696 unsigned long log = (unsigned long)addr;
1697 struct page *page;
1698 void *base;
1699 int bit = nr + (log % PAGE_SIZE) * 8;
1700 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301701
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001702 r = get_user_pages_fast(log, 1, 1, &page);
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001703 if (r < 0)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001704 return r;
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001705 BUG_ON(r != 1);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001706 base = kmap_atomic(page);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001707 set_bit(bit, base);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001708 kunmap_atomic(base);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001709 set_page_dirty_lock(page);
1710 put_page(page);
1711 return 0;
1712}
1713
1714static int log_write(void __user *log_base,
1715 u64 write_address, u64 write_length)
1716{
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001717 u64 write_page = write_address / VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001718 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301719
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001720 if (!write_length)
1721 return 0;
Michael S. Tsirkin3bf9be42010-11-29 10:19:07 +02001722 write_length += write_address % VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001723 for (;;) {
1724 u64 base = (u64)(unsigned long)log_base;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001725 u64 log = base + write_page / 8;
1726 int bit = write_page % 8;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001727 if ((u64)(unsigned long)log != log)
1728 return -EFAULT;
1729 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1730 if (r < 0)
1731 return r;
1732 if (write_length <= VHOST_PAGE_SIZE)
1733 break;
1734 write_length -= VHOST_PAGE_SIZE;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001735 write_page += 1;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001736 }
1737 return r;
1738}
1739
1740int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
1741 unsigned int log_num, u64 len)
1742{
1743 int i, r;
1744
1745 /* Make sure data written is seen before log. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001746 smp_wmb();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001747 for (i = 0; i < log_num; ++i) {
1748 u64 l = min(log[i].len, len);
1749 r = log_write(vq->log_base, log[i].addr, l);
1750 if (r < 0)
1751 return r;
1752 len -= l;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001753 if (!len) {
1754 if (vq->log_ctx)
1755 eventfd_signal(vq->log_ctx, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001756 return 0;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001757 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001758 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001759 /* Length written exceeds what we have stored. This is a bug. */
1760 BUG();
1761 return 0;
1762}
Asias He6ac1afb2013-05-06 16:38:21 +08001763EXPORT_SYMBOL_GPL(vhost_log_write);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001764
Jason Wang2723fea2011-06-21 18:04:38 +08001765static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1766{
1767 void __user *used;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001768 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
1769 &vq->used->flags) < 0)
Jason Wang2723fea2011-06-21 18:04:38 +08001770 return -EFAULT;
1771 if (unlikely(vq->log_used)) {
1772 /* Make sure the flag is seen before log. */
1773 smp_wmb();
1774 /* Log used flag write. */
1775 used = &vq->used->flags;
1776 log_write(vq->log_base, vq->log_addr +
1777 (used - (void __user *)vq->used),
1778 sizeof vq->used->flags);
1779 if (vq->log_ctx)
1780 eventfd_signal(vq->log_ctx, 1);
1781 }
1782 return 0;
1783}
1784
1785static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1786{
Jason Wangbfe2bc52016-06-23 02:04:30 -04001787 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
1788 vhost_avail_event(vq)))
Jason Wang2723fea2011-06-21 18:04:38 +08001789 return -EFAULT;
1790 if (unlikely(vq->log_used)) {
1791 void __user *used;
1792 /* Make sure the event is seen before log. */
1793 smp_wmb();
1794 /* Log avail event write */
1795 used = vhost_avail_event(vq);
1796 log_write(vq->log_base, vq->log_addr +
1797 (used - (void __user *)vq->used),
1798 sizeof *vhost_avail_event(vq));
1799 if (vq->log_ctx)
1800 eventfd_signal(vq->log_ctx, 1);
1801 }
1802 return 0;
1803}
1804
Greg Kurz80f7d032016-02-16 15:59:44 +01001805int vhost_vq_init_access(struct vhost_virtqueue *vq)
Jason Wang2723fea2011-06-21 18:04:38 +08001806{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001807 __virtio16 last_used_idx;
Jason Wang2723fea2011-06-21 18:04:38 +08001808 int r;
Greg Kurze1f33be2016-02-16 15:54:28 +01001809 bool is_le = vq->is_le;
1810
Halil Pasiccda8bba2017-01-30 11:09:36 +01001811 if (!vq->private_data)
Jason Wang2723fea2011-06-21 18:04:38 +08001812 return 0;
Greg Kurz2751c982015-04-24 14:27:24 +02001813
1814 vhost_init_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08001815
1816 r = vhost_update_used_flags(vq);
1817 if (r)
Greg Kurze1f33be2016-02-16 15:54:28 +01001818 goto err;
Jason Wang2723fea2011-06-21 18:04:38 +08001819 vq->signalled_used_valid = false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001820 if (!vq->iotlb &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001821 !access_ok(&vq->used->idx, sizeof vq->used->idx)) {
Greg Kurze1f33be2016-02-16 15:54:28 +01001822 r = -EFAULT;
1823 goto err;
1824 }
Jason Wangf8894912017-02-28 17:56:02 +08001825 r = vhost_get_used(vq, last_used_idx, &vq->used->idx);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001826 if (r) {
1827 vq_err(vq, "Can't access used idx at %p\n",
1828 &vq->used->idx);
Greg Kurze1f33be2016-02-16 15:54:28 +01001829 goto err;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001830 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001831 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
Michael S. Tsirkin64f7f052014-12-01 17:39:39 +02001832 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001833
Greg Kurze1f33be2016-02-16 15:54:28 +01001834err:
1835 vq->is_le = is_le;
1836 return r;
Jason Wang2723fea2011-06-21 18:04:38 +08001837}
Greg Kurz80f7d032016-02-16 15:59:44 +01001838EXPORT_SYMBOL_GPL(vhost_vq_init_access);
Jason Wang2723fea2011-06-21 18:04:38 +08001839
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001840static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001841 struct iovec iov[], int iov_size, int access)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001842{
Jason Wanga9709d62016-06-23 02:04:31 -04001843 const struct vhost_umem_node *node;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001844 struct vhost_dev *dev = vq->dev;
1845 struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001846 struct iovec *_iov;
1847 u64 s = 0;
1848 int ret = 0;
1849
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001850 while ((u64)len > s) {
1851 u64 size;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001852 if (unlikely(ret >= iov_size)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001853 ret = -ENOBUFS;
1854 break;
1855 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001856
Jason Wanga9709d62016-06-23 02:04:31 -04001857 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1858 addr, addr + len - 1);
1859 if (node == NULL || node->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001860 if (umem != dev->iotlb) {
1861 ret = -EFAULT;
1862 break;
1863 }
1864 ret = -EAGAIN;
1865 break;
1866 } else if (!(node->perm & access)) {
1867 ret = -EPERM;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001868 break;
1869 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001870
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001871 _iov = iov + ret;
Jason Wanga9709d62016-06-23 02:04:31 -04001872 size = node->size - addr + node->start;
Michael S. Tsirkinbd971202012-11-26 05:57:27 +00001873 _iov->iov_len = min((u64)len - s, size);
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001874 _iov->iov_base = (void __user *)(unsigned long)
Jason Wanga9709d62016-06-23 02:04:31 -04001875 (node->userspace_addr + addr - node->start);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001876 s += size;
1877 addr += size;
1878 ++ret;
1879 }
1880
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001881 if (ret == -EAGAIN)
1882 vhost_iotlb_miss(vq, addr, access);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001883 return ret;
1884}
1885
1886/* Each buffer in the virtqueues is actually a chain of descriptors. This
1887 * function returns the next descriptor in the chain,
1888 * or -1U if we're at the end. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001889static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001890{
1891 unsigned int next;
1892
1893 /* If this descriptor says it doesn't chain, we're done. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001894 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001895 return -1U;
1896
1897 /* Check they're not leading us off end of descriptors. */
Paul E. McKenney3a5db0b2017-11-27 09:45:10 -08001898 next = vhost16_to_cpu(vq, READ_ONCE(desc->next));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001899 return next;
1900}
1901
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001902static int get_indirect(struct vhost_virtqueue *vq,
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001903 struct iovec iov[], unsigned int iov_size,
1904 unsigned int *out_num, unsigned int *in_num,
1905 struct vhost_log *log, unsigned int *log_num,
1906 struct vring_desc *indirect)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001907{
1908 struct vring_desc desc;
1909 unsigned int i = 0, count, found = 0;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001910 u32 len = vhost32_to_cpu(vq, indirect->len);
Al Viroaad9a1c2014-12-10 14:49:01 -05001911 struct iov_iter from;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001912 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001913
1914 /* Sanity check */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001915 if (unlikely(len % sizeof desc)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001916 vq_err(vq, "Invalid length in indirect descriptor: "
1917 "len 0x%llx not multiple of 0x%zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001918 (unsigned long long)len,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001919 sizeof desc);
1920 return -EINVAL;
1921 }
1922
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001923 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001924 UIO_MAXIOV, VHOST_ACCESS_RO);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001925 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001926 if (ret != -EAGAIN)
1927 vq_err(vq, "Translation failure %d in indirect.\n", ret);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001928 return ret;
1929 }
Al Viroaad9a1c2014-12-10 14:49:01 -05001930 iov_iter_init(&from, READ, vq->indirect, ret, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001931
1932 /* We will use the result as an address to read from, so most
1933 * architectures only need a compiler barrier here. */
1934 read_barrier_depends();
1935
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001936 count = len / sizeof desc;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001937 /* Buffers are chained via a 16 bit next field, so
1938 * we can have at most 2^16 of these. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001939 if (unlikely(count > USHRT_MAX + 1)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001940 vq_err(vq, "Indirect buffer length too big: %d\n",
1941 indirect->len);
1942 return -E2BIG;
1943 }
1944
1945 do {
1946 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001947 if (unlikely(++found > count)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001948 vq_err(vq, "Loop detected: last one at %u "
1949 "indirect size %u\n",
1950 i, count);
1951 return -EINVAL;
1952 }
Al Virocbbd26b2016-11-01 22:09:04 -04001953 if (unlikely(!copy_from_iter_full(&desc, sizeof(desc), &from))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001954 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001955 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001956 return -EINVAL;
1957 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001958 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001959 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001960 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001961 return -EINVAL;
1962 }
1963
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001964 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
1965 access = VHOST_ACCESS_WO;
1966 else
1967 access = VHOST_ACCESS_RO;
1968
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001969 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
1970 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001971 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001972 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001973 if (ret != -EAGAIN)
1974 vq_err(vq, "Translation failure %d indirect idx %d\n",
1975 ret, i);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001976 return ret;
1977 }
1978 /* If this is an input descriptor, increment that count. */
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001979 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001980 *in_num += ret;
1981 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001982 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
1983 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001984 ++*log_num;
1985 }
1986 } else {
1987 /* If it's an output descriptor, they're all supposed
1988 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001989 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001990 vq_err(vq, "Indirect descriptor "
1991 "has out after in: idx %d\n", i);
1992 return -EINVAL;
1993 }
1994 *out_num += ret;
1995 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001996 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001997 return 0;
1998}
1999
2000/* This looks in the virtqueue and for the first available buffer, and converts
2001 * it to an iovec for convenient access. Since descriptors consist of some
2002 * number of output then some number of input descriptors, it's actually two
2003 * iovecs, but we pack them into one and note how many of each there were.
2004 *
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002005 * This function returns the descriptor number found, or vq->num (which is
2006 * never a valid descriptor number) if none was found. A negative code is
2007 * returned on error. */
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002008int vhost_get_vq_desc(struct vhost_virtqueue *vq,
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002009 struct iovec iov[], unsigned int iov_size,
2010 unsigned int *out_num, unsigned int *in_num,
2011 struct vhost_log *log, unsigned int *log_num)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002012{
2013 struct vring_desc desc;
2014 unsigned int i, head, found = 0;
2015 u16 last_avail_idx;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002016 __virtio16 avail_idx;
2017 __virtio16 ring_head;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002018 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002019
2020 /* Check it isn't doing very strange things with descriptor numbers. */
2021 last_avail_idx = vq->last_avail_idx;
Jason Wange3b56cd2017-02-07 15:49:50 +08002022
2023 if (vq->avail_idx == vq->last_avail_idx) {
Jason Wangf8894912017-02-28 17:56:02 +08002024 if (unlikely(vhost_get_avail(vq, avail_idx, &vq->avail->idx))) {
Jason Wange3b56cd2017-02-07 15:49:50 +08002025 vq_err(vq, "Failed to access avail idx at %p\n",
2026 &vq->avail->idx);
2027 return -EFAULT;
2028 }
2029 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2030
2031 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
2032 vq_err(vq, "Guest moved used index from %u to %u",
2033 last_avail_idx, vq->avail_idx);
2034 return -EFAULT;
2035 }
2036
2037 /* If there's nothing new since last we looked, return
2038 * invalid.
2039 */
2040 if (vq->avail_idx == last_avail_idx)
2041 return vq->num;
2042
2043 /* Only get avail ring entries after they have been
2044 * exposed by guest.
2045 */
2046 smp_rmb();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002047 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002048
2049 /* Grab the next descriptor number they're advertising, and increment
2050 * the index we've seen. */
Jason Wangf8894912017-02-28 17:56:02 +08002051 if (unlikely(vhost_get_avail(vq, ring_head,
Jason Wangbfe2bc52016-06-23 02:04:30 -04002052 &vq->avail->ring[last_avail_idx & (vq->num - 1)]))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002053 vq_err(vq, "Failed to read head: idx %d address %p\n",
2054 last_avail_idx,
2055 &vq->avail->ring[last_avail_idx % vq->num]);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002056 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002057 }
2058
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002059 head = vhost16_to_cpu(vq, ring_head);
2060
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002061 /* If their number is silly, that's an error. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002062 if (unlikely(head >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002063 vq_err(vq, "Guest says index %u > %u is available",
2064 head, vq->num);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002065 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002066 }
2067
2068 /* When we start there are none of either input nor output. */
2069 *out_num = *in_num = 0;
2070 if (unlikely(log))
2071 *log_num = 0;
2072
2073 i = head;
2074 do {
2075 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002076 if (unlikely(i >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002077 vq_err(vq, "Desc index is %u > %u, head = %u",
2078 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002079 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002080 }
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002081 if (unlikely(++found > vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002082 vq_err(vq, "Loop detected: last one at %u "
2083 "vq size %u head %u\n",
2084 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002085 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002086 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002087 ret = vhost_copy_from_user(vq, &desc, vq->desc + i,
2088 sizeof desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002089 if (unlikely(ret)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002090 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
2091 i, vq->desc + i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002092 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002093 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002094 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002095 ret = get_indirect(vq, iov, iov_size,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002096 out_num, in_num,
2097 log, log_num, &desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002098 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002099 if (ret != -EAGAIN)
2100 vq_err(vq, "Failure detected "
2101 "in indirect descriptor at idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002102 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002103 }
2104 continue;
2105 }
2106
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002107 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2108 access = VHOST_ACCESS_WO;
2109 else
2110 access = VHOST_ACCESS_RO;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002111 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2112 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002113 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002114 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002115 if (ret != -EAGAIN)
2116 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2117 ret, i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002118 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002119 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002120 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002121 /* If this is an input descriptor,
2122 * increment that count. */
2123 *in_num += ret;
2124 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002125 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2126 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002127 ++*log_num;
2128 }
2129 } else {
2130 /* If it's an output descriptor, they're all supposed
2131 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002132 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002133 vq_err(vq, "Descriptor has out after in: "
2134 "idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002135 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002136 }
2137 *out_num += ret;
2138 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002139 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002140
2141 /* On success, increment avail index. */
2142 vq->last_avail_idx++;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002143
2144 /* Assume notifications from guest are disabled at this point,
2145 * if they aren't we would need to update avail_event index. */
2146 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002147 return head;
2148}
Asias He6ac1afb2013-05-06 16:38:21 +08002149EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002150
2151/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
David Stevens8dd014a2010-07-27 18:52:21 +03002152void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002153{
David Stevens8dd014a2010-07-27 18:52:21 +03002154 vq->last_avail_idx -= n;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002155}
Asias He6ac1afb2013-05-06 16:38:21 +08002156EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002157
2158/* After we've used one of their buffers, we tell them about it. We'll then
2159 * want to notify the guest, using eventfd. */
2160int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2161{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002162 struct vring_used_elem heads = {
2163 cpu_to_vhost32(vq, head),
2164 cpu_to_vhost32(vq, len)
2165 };
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002166
Jason Wangc49e4e52013-09-02 16:40:58 +08002167 return vhost_add_used_n(vq, &heads, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002168}
Asias He6ac1afb2013-05-06 16:38:21 +08002169EXPORT_SYMBOL_GPL(vhost_add_used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002170
David Stevens8dd014a2010-07-27 18:52:21 +03002171static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2172 struct vring_used_elem *heads,
2173 unsigned count)
2174{
2175 struct vring_used_elem __user *used;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002176 u16 old, new;
David Stevens8dd014a2010-07-27 18:52:21 +03002177 int start;
2178
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002179 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002180 used = vq->used->ring + start;
Jason Wangc49e4e52013-09-02 16:40:58 +08002181 if (count == 1) {
Jason Wangbfe2bc52016-06-23 02:04:30 -04002182 if (vhost_put_user(vq, heads[0].id, &used->id)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002183 vq_err(vq, "Failed to write used id");
2184 return -EFAULT;
2185 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002186 if (vhost_put_user(vq, heads[0].len, &used->len)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002187 vq_err(vq, "Failed to write used len");
2188 return -EFAULT;
2189 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002190 } else if (vhost_copy_to_user(vq, used, heads, count * sizeof *used)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002191 vq_err(vq, "Failed to write used");
2192 return -EFAULT;
2193 }
2194 if (unlikely(vq->log_used)) {
2195 /* Make sure data is seen before log. */
2196 smp_wmb();
2197 /* Log used ring entry write. */
2198 log_write(vq->log_base,
2199 vq->log_addr +
2200 ((void __user *)used - (void __user *)vq->used),
2201 count * sizeof *used);
2202 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002203 old = vq->last_used_idx;
2204 new = (vq->last_used_idx += count);
2205 /* If the driver never bothers to signal in a very long while,
2206 * used index might wrap around. If that happens, invalidate
2207 * signalled_used index we stored. TODO: make sure driver
2208 * signals at least once in 2^16 and remove this. */
2209 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2210 vq->signalled_used_valid = false;
David Stevens8dd014a2010-07-27 18:52:21 +03002211 return 0;
2212}
2213
2214/* After we've used one of their buffers, we tell them about it. We'll then
2215 * want to notify the guest, using eventfd. */
2216int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2217 unsigned count)
2218{
2219 int start, n, r;
2220
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002221 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002222 n = vq->num - start;
2223 if (n < count) {
2224 r = __vhost_add_used_n(vq, heads, n);
2225 if (r < 0)
2226 return r;
2227 heads += n;
2228 count -= n;
2229 }
2230 r = __vhost_add_used_n(vq, heads, count);
2231
2232 /* Make sure buffer is written before we update index. */
2233 smp_wmb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002234 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
2235 &vq->used->idx)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002236 vq_err(vq, "Failed to increment used idx");
2237 return -EFAULT;
2238 }
2239 if (unlikely(vq->log_used)) {
Jason Wang841df922018-12-13 10:53:37 +08002240 /* Make sure used idx is seen before log. */
2241 smp_wmb();
David Stevens8dd014a2010-07-27 18:52:21 +03002242 /* Log used index update. */
2243 log_write(vq->log_base,
2244 vq->log_addr + offsetof(struct vring_used, idx),
2245 sizeof vq->used->idx);
2246 if (vq->log_ctx)
2247 eventfd_signal(vq->log_ctx, 1);
2248 }
2249 return r;
2250}
Asias He6ac1afb2013-05-06 16:38:21 +08002251EXPORT_SYMBOL_GPL(vhost_add_used_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002252
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002253static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002254{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002255 __u16 old, new;
2256 __virtio16 event;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002257 bool v;
Jason Wang8d658432017-07-27 11:22:05 +08002258 /* Flush out used index updates. This is paired
2259 * with the barrier that the Guest executes when enabling
2260 * interrupts. */
2261 smp_mb();
Michael S. Tsirkin0d499352010-05-11 19:44:17 +03002262
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002263 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002264 unlikely(vq->avail_idx == vq->last_avail_idx))
2265 return true;
2266
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002267 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002268 __virtio16 flags;
Jason Wangf8894912017-02-28 17:56:02 +08002269 if (vhost_get_avail(vq, flags, &vq->avail->flags)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002270 vq_err(vq, "Failed to get flags");
2271 return true;
2272 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002273 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002274 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002275 old = vq->signalled_used;
2276 v = vq->signalled_used_valid;
2277 new = vq->signalled_used = vq->last_used_idx;
2278 vq->signalled_used_valid = true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002279
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002280 if (unlikely(!v))
2281 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002282
Jason Wangf8894912017-02-28 17:56:02 +08002283 if (vhost_get_avail(vq, event, vhost_used_event(vq))) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002284 vq_err(vq, "Failed to get used event idx");
2285 return true;
2286 }
Jason Wang8d658432017-07-27 11:22:05 +08002287 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002288}
2289
2290/* This actually signals the guest, using eventfd. */
2291void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2292{
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002293 /* Signal the Guest tell them we used something up. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002294 if (vq->call_ctx && vhost_notify(dev, vq))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002295 eventfd_signal(vq->call_ctx, 1);
2296}
Asias He6ac1afb2013-05-06 16:38:21 +08002297EXPORT_SYMBOL_GPL(vhost_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002298
2299/* And here's the combo meal deal. Supersize me! */
2300void vhost_add_used_and_signal(struct vhost_dev *dev,
2301 struct vhost_virtqueue *vq,
2302 unsigned int head, int len)
2303{
2304 vhost_add_used(vq, head, len);
2305 vhost_signal(dev, vq);
2306}
Asias He6ac1afb2013-05-06 16:38:21 +08002307EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002308
David Stevens8dd014a2010-07-27 18:52:21 +03002309/* multi-buffer version of vhost_add_used_and_signal */
2310void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2311 struct vhost_virtqueue *vq,
2312 struct vring_used_elem *heads, unsigned count)
2313{
2314 vhost_add_used_n(vq, heads, count);
2315 vhost_signal(dev, vq);
2316}
Asias He6ac1afb2013-05-06 16:38:21 +08002317EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002318
Jason Wangd4a60602016-03-04 06:24:52 -05002319/* return true if we're sure that avaiable ring is empty */
2320bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2321{
2322 __virtio16 avail_idx;
2323 int r;
2324
Jason Wang275bf962017-01-18 15:02:01 +08002325 if (vq->avail_idx != vq->last_avail_idx)
Jason Wangd4a60602016-03-04 06:24:52 -05002326 return false;
2327
Linus Torvalds54d79892017-03-02 13:53:13 -08002328 r = vhost_get_avail(vq, avail_idx, &vq->avail->idx);
Jason Wang275bf962017-01-18 15:02:01 +08002329 if (unlikely(r))
2330 return false;
2331 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2332
2333 return vq->avail_idx == vq->last_avail_idx;
Jason Wangd4a60602016-03-04 06:24:52 -05002334}
2335EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2336
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002337/* OK, now we need to know about added descriptors. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002338bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002339{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002340 __virtio16 avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002341 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302342
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002343 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2344 return false;
2345 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002346 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002347 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002348 if (r) {
2349 vq_err(vq, "Failed to enable notification at %p: %d\n",
2350 &vq->used->flags, r);
2351 return false;
2352 }
2353 } else {
Jason Wang2723fea2011-06-21 18:04:38 +08002354 r = vhost_update_avail_event(vq, vq->avail_idx);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002355 if (r) {
2356 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2357 vhost_avail_event(vq), r);
2358 return false;
2359 }
2360 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002361 /* They could have slipped one in as we were doing that: make
2362 * sure it's written, then check again. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00002363 smp_mb();
Jason Wangf8894912017-02-28 17:56:02 +08002364 r = vhost_get_avail(vq, avail_idx, &vq->avail->idx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002365 if (r) {
2366 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2367 &vq->avail->idx, r);
2368 return false;
2369 }
2370
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002371 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002372}
Asias He6ac1afb2013-05-06 16:38:21 +08002373EXPORT_SYMBOL_GPL(vhost_enable_notify);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002374
2375/* We don't need to be notified again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002376void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002377{
2378 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302379
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002380 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2381 return;
2382 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002383 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002384 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002385 if (r)
2386 vq_err(vq, "Failed to enable notification at %p: %d\n",
2387 &vq->used->flags, r);
2388 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002389}
Asias He6ac1afb2013-05-06 16:38:21 +08002390EXPORT_SYMBOL_GPL(vhost_disable_notify);
2391
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002392/* Create a new message. */
2393struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2394{
2395 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2396 if (!node)
2397 return NULL;
Michael S. Tsirkin670ae9c2018-05-12 00:33:10 +03002398
2399 /* Make sure all padding within the structure is initialized. */
2400 memset(&node->msg, 0, sizeof node->msg);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002401 node->vq = vq;
2402 node->msg.type = type;
2403 return node;
2404}
2405EXPORT_SYMBOL_GPL(vhost_new_msg);
2406
2407void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2408 struct vhost_msg_node *node)
2409{
2410 spin_lock(&dev->iotlb_lock);
2411 list_add_tail(&node->node, head);
2412 spin_unlock(&dev->iotlb_lock);
2413
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002414 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002415}
2416EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2417
2418struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2419 struct list_head *head)
2420{
2421 struct vhost_msg_node *node = NULL;
2422
2423 spin_lock(&dev->iotlb_lock);
2424 if (!list_empty(head)) {
2425 node = list_first_entry(head, struct vhost_msg_node,
2426 node);
2427 list_del(&node->node);
2428 }
2429 spin_unlock(&dev->iotlb_lock);
2430
2431 return node;
2432}
2433EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2434
2435
Asias He6ac1afb2013-05-06 16:38:21 +08002436static int __init vhost_init(void)
2437{
2438 return 0;
2439}
2440
2441static void __exit vhost_exit(void)
2442{
2443}
2444
2445module_init(vhost_init);
2446module_exit(vhost_exit);
2447
2448MODULE_VERSION("0.0.1");
2449MODULE_LICENSE("GPL v2");
2450MODULE_AUTHOR("Michael S. Tsirkin");
2451MODULE_DESCRIPTION("Host kernel accelerator for virtio");