blob: 3f3eac4bcc585b60d2d577a1fe90ffc304c4170b [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);
Jason Wangb46a0bf2019-01-28 15:05:05 +0800393 vq->log = kmalloc_array(dev->iov_limit, sizeof(*vq->log),
Kees Cook6da2ec52018-06-12 13:55:00 -0700394 GFP_KERNEL);
Jason Wangb46a0bf2019-01-28 15:05:05 +0800395 vq->heads = kmalloc_array(dev->iov_limit, sizeof(*vq->heads),
Kees Cook6da2ec52018-06-12 13:55:00 -0700396 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
Jason Wange82b9b02019-05-17 00:29:49 -0400416bool vhost_exceeds_weight(struct vhost_virtqueue *vq,
417 int pkts, int total_len)
418{
419 struct vhost_dev *dev = vq->dev;
420
421 if ((dev->byte_weight && total_len >= dev->byte_weight) ||
422 pkts >= dev->weight) {
423 vhost_poll_queue(&vq->poll);
424 return true;
425 }
426
427 return false;
428}
429EXPORT_SYMBOL_GPL(vhost_exceeds_weight);
430
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800431void vhost_dev_init(struct vhost_dev *dev,
Jason Wange82b9b02019-05-17 00:29:49 -0400432 struct vhost_virtqueue **vqs, int nvqs,
433 int iov_limit, int weight, int byte_weight)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000434{
Asias He6d5e6aa2013-05-06 16:38:23 +0800435 struct vhost_virtqueue *vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000436 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200437
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000438 dev->vqs = vqs;
439 dev->nvqs = nvqs;
440 mutex_init(&dev->mutex);
441 dev->log_ctx = NULL;
Jason Wanga9709d62016-06-23 02:04:31 -0400442 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400443 dev->iotlb = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000444 dev->mm = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200445 dev->worker = NULL;
Jason Wangb46a0bf2019-01-28 15:05:05 +0800446 dev->iov_limit = iov_limit;
Jason Wange82b9b02019-05-17 00:29:49 -0400447 dev->weight = weight;
448 dev->byte_weight = byte_weight;
Jason Wang04b96e52016-04-25 22:14:33 -0400449 init_llist_head(&dev->work_list);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400450 init_waitqueue_head(&dev->wait);
451 INIT_LIST_HEAD(&dev->read_list);
452 INIT_LIST_HEAD(&dev->pending_list);
453 spin_lock_init(&dev->iotlb_lock);
Jason Wang04b96e52016-04-25 22:14:33 -0400454
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000455
456 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800457 vq = dev->vqs[i];
458 vq->log = NULL;
459 vq->indirect = NULL;
460 vq->heads = NULL;
461 vq->dev = dev;
462 mutex_init(&vq->mutex);
463 vhost_vq_reset(dev, vq);
464 if (vq->handle_kick)
465 vhost_poll_init(&vq->poll, vq->handle_kick,
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800466 EPOLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000467 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000468}
Asias He6ac1afb2013-05-06 16:38:21 +0800469EXPORT_SYMBOL_GPL(vhost_dev_init);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000470
471/* Caller should have device mutex */
472long vhost_dev_check_owner(struct vhost_dev *dev)
473{
474 /* Are you the owner? If not, I don't think you mean to do that */
475 return dev->mm == current->mm ? 0 : -EPERM;
476}
Asias He6ac1afb2013-05-06 16:38:21 +0800477EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000478
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300479struct vhost_attach_cgroups_struct {
Krishna Kumard47effe2011-03-01 17:06:37 +0530480 struct vhost_work work;
481 struct task_struct *owner;
482 int ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300483};
484
485static void vhost_attach_cgroups_work(struct vhost_work *work)
486{
Krishna Kumard47effe2011-03-01 17:06:37 +0530487 struct vhost_attach_cgroups_struct *s;
488
489 s = container_of(work, struct vhost_attach_cgroups_struct, work);
490 s->ret = cgroup_attach_task_all(s->owner, current);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300491}
492
493static int vhost_attach_cgroups(struct vhost_dev *dev)
494{
Krishna Kumard47effe2011-03-01 17:06:37 +0530495 struct vhost_attach_cgroups_struct attach;
496
497 attach.owner = current;
498 vhost_work_init(&attach.work, vhost_attach_cgroups_work);
499 vhost_work_queue(dev, &attach.work);
500 vhost_work_flush(dev, &attach.work);
501 return attach.ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300502}
503
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000504/* Caller should have device mutex */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300505bool vhost_dev_has_owner(struct vhost_dev *dev)
506{
507 return dev->mm;
508}
Asias He6ac1afb2013-05-06 16:38:21 +0800509EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300510
511/* Caller should have device mutex */
Asias He54db63c2013-05-06 11:15:59 +0800512long vhost_dev_set_owner(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000513{
Tejun Heoc23f34452010-06-02 20:40:00 +0200514 struct task_struct *worker;
515 int err;
Krishna Kumard47effe2011-03-01 17:06:37 +0530516
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000517 /* Is there an owner already? */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300518 if (vhost_dev_has_owner(dev)) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200519 err = -EBUSY;
520 goto err_mm;
521 }
Krishna Kumard47effe2011-03-01 17:06:37 +0530522
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000523 /* No owner, become one */
524 dev->mm = get_task_mm(current);
Tejun Heoc23f34452010-06-02 20:40:00 +0200525 worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
526 if (IS_ERR(worker)) {
527 err = PTR_ERR(worker);
528 goto err_worker;
529 }
530
531 dev->worker = worker;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300532 wake_up_process(worker); /* avoid contributing to loadavg */
533
534 err = vhost_attach_cgroups(dev);
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300535 if (err)
536 goto err_cgroup;
Tejun Heoc23f34452010-06-02 20:40:00 +0200537
Jason Wange0e9b402010-09-14 23:53:05 +0800538 err = vhost_dev_alloc_iovecs(dev);
539 if (err)
540 goto err_cgroup;
541
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000542 return 0;
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300543err_cgroup:
544 kthread_stop(worker);
Michael S. Tsirkin615cc222010-09-02 14:16:36 +0300545 dev->worker = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200546err_worker:
547 if (dev->mm)
548 mmput(dev->mm);
549 dev->mm = NULL;
550err_mm:
551 return err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000552}
Asias He6ac1afb2013-05-06 16:38:21 +0800553EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000554
Jason Wanga9709d62016-06-23 02:04:31 -0400555struct vhost_umem *vhost_dev_reset_owner_prepare(void)
556{
Michal Hocko6c5ab652017-05-08 15:57:15 -0700557 return kvzalloc(sizeof(struct vhost_umem), GFP_KERNEL);
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300558}
Asias He6ac1afb2013-05-06 16:38:21 +0800559EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000560
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300561/* Caller should have device mutex */
Jason Wanga9709d62016-06-23 02:04:31 -0400562void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_umem *umem)
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300563{
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300564 int i;
565
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800566 vhost_dev_cleanup(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000567
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300568 /* Restore memory to default empty mapping. */
Jason Wanga9709d62016-06-23 02:04:31 -0400569 INIT_LIST_HEAD(&umem->umem_list);
570 dev->umem = umem;
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300571 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
572 * VQs aren't running.
573 */
574 for (i = 0; i < dev->nvqs; ++i)
Jason Wanga9709d62016-06-23 02:04:31 -0400575 dev->vqs[i]->umem = umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000576}
Asias He6ac1afb2013-05-06 16:38:21 +0800577EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000578
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000579void vhost_dev_stop(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000580{
581 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530582
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000583 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800584 if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
585 vhost_poll_stop(&dev->vqs[i]->poll);
586 vhost_poll_flush(&dev->vqs[i]->poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000587 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000588 }
589}
Asias He6ac1afb2013-05-06 16:38:21 +0800590EXPORT_SYMBOL_GPL(vhost_dev_stop);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000591
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400592static void vhost_umem_free(struct vhost_umem *umem,
593 struct vhost_umem_node *node)
594{
595 vhost_umem_interval_tree_remove(node, &umem->umem_tree);
596 list_del(&node->link);
597 kfree(node);
598 umem->numem--;
599}
600
Jason Wanga9709d62016-06-23 02:04:31 -0400601static void vhost_umem_clean(struct vhost_umem *umem)
602{
603 struct vhost_umem_node *node, *tmp;
604
605 if (!umem)
606 return;
607
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400608 list_for_each_entry_safe(node, tmp, &umem->umem_list, link)
609 vhost_umem_free(umem, node);
610
Jason Wanga9709d62016-06-23 02:04:31 -0400611 kvfree(umem);
612}
613
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400614static void vhost_clear_msg(struct vhost_dev *dev)
615{
616 struct vhost_msg_node *node, *n;
617
618 spin_lock(&dev->iotlb_lock);
619
620 list_for_each_entry_safe(node, n, &dev->read_list, node) {
621 list_del(&node->node);
622 kfree(node);
623 }
624
625 list_for_each_entry_safe(node, n, &dev->pending_list, node) {
626 list_del(&node->node);
627 kfree(node);
628 }
629
630 spin_unlock(&dev->iotlb_lock);
631}
632
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800633void vhost_dev_cleanup(struct vhost_dev *dev)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000634{
635 int i;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000636
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000637 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800638 if (dev->vqs[i]->error_ctx)
639 eventfd_ctx_put(dev->vqs[i]->error_ctx);
Asias He3ab2e422013-04-27 11:16:48 +0800640 if (dev->vqs[i]->kick)
641 fput(dev->vqs[i]->kick);
642 if (dev->vqs[i]->call_ctx)
643 eventfd_ctx_put(dev->vqs[i]->call_ctx);
Asias He3ab2e422013-04-27 11:16:48 +0800644 vhost_vq_reset(dev, dev->vqs[i]);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000645 }
Jason Wange0e9b402010-09-14 23:53:05 +0800646 vhost_dev_free_iovecs(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000647 if (dev->log_ctx)
648 eventfd_ctx_put(dev->log_ctx);
649 dev->log_ctx = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000650 /* No one will access memory at this point */
Jason Wanga9709d62016-06-23 02:04:31 -0400651 vhost_umem_clean(dev->umem);
652 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400653 vhost_umem_clean(dev->iotlb);
654 dev->iotlb = NULL;
655 vhost_clear_msg(dev);
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800656 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
Jason Wang04b96e52016-04-25 22:14:33 -0400657 WARN_ON(!llist_empty(&dev->work_list));
Eric Dumazet78b620c2010-08-31 02:05:57 +0000658 if (dev->worker) {
659 kthread_stop(dev->worker);
660 dev->worker = NULL;
661 }
Michael S. Tsirkin533a19b2010-10-06 15:34:38 +0200662 if (dev->mm)
663 mmput(dev->mm);
664 dev->mm = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000665}
Asias He6ac1afb2013-05-06 16:38:21 +0800666EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000667
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800668static bool log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000669{
670 u64 a = addr / VHOST_PAGE_SIZE / 8;
Krishna Kumard47effe2011-03-01 17:06:37 +0530671
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000672 /* Make sure 64 bit math will not overflow. */
673 if (a > ULONG_MAX - (unsigned long)log_base ||
674 a + (unsigned long)log_base > ULONG_MAX)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800675 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000676
Linus Torvalds96d4f262019-01-03 18:57:57 -0800677 return access_ok(log_base + a,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000678 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
679}
680
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300681static bool vhost_overflow(u64 uaddr, u64 size)
682{
683 /* Make sure 64 bit math will not overflow. */
684 return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
685}
686
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000687/* Caller should have vq mutex and device mutex. */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800688static bool vq_memory_access_ok(void __user *log_base, struct vhost_umem *umem,
689 int log_all)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000690{
Jason Wanga9709d62016-06-23 02:04:31 -0400691 struct vhost_umem_node *node;
Jeff Dike179b2842010-04-07 09:59:10 -0400692
Jason Wanga9709d62016-06-23 02:04:31 -0400693 if (!umem)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800694 return false;
Jeff Dike179b2842010-04-07 09:59:10 -0400695
Jason Wanga9709d62016-06-23 02:04:31 -0400696 list_for_each_entry(node, &umem->umem_list, link) {
697 unsigned long a = node->userspace_addr;
698
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300699 if (vhost_overflow(node->userspace_addr, node->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800700 return false;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300701
702
Linus Torvalds96d4f262019-01-03 18:57:57 -0800703 if (!access_ok((void __user *)a,
Jason Wanga9709d62016-06-23 02:04:31 -0400704 node->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800705 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000706 else if (log_all && !log_access_ok(log_base,
Jason Wanga9709d62016-06-23 02:04:31 -0400707 node->start,
708 node->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800709 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000710 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800711 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000712}
713
Jason Wangf8894912017-02-28 17:56:02 +0800714static inline void __user *vhost_vq_meta_fetch(struct vhost_virtqueue *vq,
715 u64 addr, unsigned int size,
716 int type)
717{
718 const struct vhost_umem_node *node = vq->meta_iotlb[type];
719
720 if (!node)
721 return NULL;
722
723 return (void *)(uintptr_t)(node->userspace_addr + addr - node->start);
724}
725
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000726/* Can we switch to this memory table? */
727/* Caller should have device mutex but not vq mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800728static bool memory_access_ok(struct vhost_dev *d, struct vhost_umem *umem,
729 int log_all)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000730{
731 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530732
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000733 for (i = 0; i < d->nvqs; ++i) {
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800734 bool ok;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300735 bool log;
736
Asias He3ab2e422013-04-27 11:16:48 +0800737 mutex_lock(&d->vqs[i]->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300738 log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000739 /* If ring is inactive, will check when it's enabled. */
Asias He3ab2e422013-04-27 11:16:48 +0800740 if (d->vqs[i]->private_data)
Jason Wanga9709d62016-06-23 02:04:31 -0400741 ok = vq_memory_access_ok(d->vqs[i]->log_base,
742 umem, log);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000743 else
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800744 ok = true;
Asias He3ab2e422013-04-27 11:16:48 +0800745 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000746 if (!ok)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800747 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000748 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800749 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000750}
751
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400752static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
753 struct iovec iov[], int iov_size, int access);
Jason Wangbfe2bc52016-06-23 02:04:30 -0400754
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200755static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
Jason Wangbfe2bc52016-06-23 02:04:30 -0400756 const void *from, unsigned size)
757{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400758 int ret;
Jason Wangbfe2bc52016-06-23 02:04:30 -0400759
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400760 if (!vq->iotlb)
761 return __copy_to_user(to, from, size);
762 else {
763 /* This function should be called after iotlb
764 * prefetch, which means we're sure that all vq
765 * could be access through iotlb. So -EAGAIN should
766 * not happen in this case.
767 */
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400768 struct iov_iter t;
Jason Wangf8894912017-02-28 17:56:02 +0800769 void __user *uaddr = vhost_vq_meta_fetch(vq,
770 (u64)(uintptr_t)to, size,
Eric Auger7ced6c92018-04-11 15:30:38 +0200771 VHOST_ADDR_USED);
Jason Wangf8894912017-02-28 17:56:02 +0800772
773 if (uaddr)
774 return __copy_to_user(uaddr, from, size);
775
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400776 ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
777 ARRAY_SIZE(vq->iotlb_iov),
778 VHOST_ACCESS_WO);
779 if (ret < 0)
780 goto out;
781 iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
782 ret = copy_to_iter(from, size, &t);
783 if (ret == size)
784 ret = 0;
785 }
786out:
787 return ret;
788}
Jason Wangbfe2bc52016-06-23 02:04:30 -0400789
790static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200791 void __user *from, unsigned size)
Jason Wangbfe2bc52016-06-23 02:04:30 -0400792{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400793 int ret;
794
795 if (!vq->iotlb)
796 return __copy_from_user(to, from, size);
797 else {
798 /* This function should be called after iotlb
799 * prefetch, which means we're sure that vq
800 * could be access through iotlb. So -EAGAIN should
801 * not happen in this case.
802 */
Jason Wangf8894912017-02-28 17:56:02 +0800803 void __user *uaddr = vhost_vq_meta_fetch(vq,
804 (u64)(uintptr_t)from, size,
805 VHOST_ADDR_DESC);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400806 struct iov_iter f;
Jason Wangf8894912017-02-28 17:56:02 +0800807
808 if (uaddr)
809 return __copy_from_user(to, uaddr, size);
810
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400811 ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
812 ARRAY_SIZE(vq->iotlb_iov),
813 VHOST_ACCESS_RO);
814 if (ret < 0) {
815 vq_err(vq, "IOTLB translation failure: uaddr "
816 "%p size 0x%llx\n", from,
817 (unsigned long long) size);
818 goto out;
819 }
820 iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
821 ret = copy_from_iter(to, size, &f);
822 if (ret == size)
823 ret = 0;
824 }
825
826out:
827 return ret;
828}
829
Jason Wangf8894912017-02-28 17:56:02 +0800830static void __user *__vhost_get_user_slow(struct vhost_virtqueue *vq,
831 void __user *addr, unsigned int size,
832 int type)
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400833{
834 int ret;
835
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400836 ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
837 ARRAY_SIZE(vq->iotlb_iov),
838 VHOST_ACCESS_RO);
839 if (ret < 0) {
840 vq_err(vq, "IOTLB translation failure: uaddr "
841 "%p size 0x%llx\n", addr,
842 (unsigned long long) size);
843 return NULL;
844 }
845
846 if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
847 vq_err(vq, "Non atomic userspace memory access: uaddr "
848 "%p size 0x%llx\n", addr,
849 (unsigned long long) size);
850 return NULL;
851 }
852
853 return vq->iotlb_iov[0].iov_base;
854}
855
Jason Wangf8894912017-02-28 17:56:02 +0800856/* This function should be called after iotlb
857 * prefetch, which means we're sure that vq
858 * could be access through iotlb. So -EAGAIN should
859 * not happen in this case.
860 */
861static inline void __user *__vhost_get_user(struct vhost_virtqueue *vq,
862 void *addr, unsigned int size,
863 int type)
864{
865 void __user *uaddr = vhost_vq_meta_fetch(vq,
866 (u64)(uintptr_t)addr, size, type);
867 if (uaddr)
868 return uaddr;
869
870 return __vhost_get_user_slow(vq, addr, size, type);
871}
872
873#define vhost_put_user(vq, x, ptr) \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400874({ \
875 int ret = -EFAULT; \
876 if (!vq->iotlb) { \
877 ret = __put_user(x, ptr); \
878 } else { \
879 __typeof__(ptr) to = \
Jason Wangf8894912017-02-28 17:56:02 +0800880 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
881 sizeof(*ptr), VHOST_ADDR_USED); \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400882 if (to != NULL) \
883 ret = __put_user(x, to); \
884 else \
885 ret = -EFAULT; \
886 } \
887 ret; \
888})
889
Jason Wangf8894912017-02-28 17:56:02 +0800890#define vhost_get_user(vq, x, ptr, type) \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400891({ \
892 int ret; \
893 if (!vq->iotlb) { \
894 ret = __get_user(x, ptr); \
895 } else { \
896 __typeof__(ptr) from = \
Jason Wangf8894912017-02-28 17:56:02 +0800897 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
898 sizeof(*ptr), \
899 type); \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400900 if (from != NULL) \
901 ret = __get_user(x, from); \
902 else \
903 ret = -EFAULT; \
904 } \
905 ret; \
906})
907
Jason Wangf8894912017-02-28 17:56:02 +0800908#define vhost_get_avail(vq, x, ptr) \
909 vhost_get_user(vq, x, ptr, VHOST_ADDR_AVAIL)
910
911#define vhost_get_used(vq, x, ptr) \
912 vhost_get_user(vq, x, ptr, VHOST_ADDR_USED)
913
Jason Wang86a07da2018-12-13 10:53:39 +0800914static void vhost_dev_lock_vqs(struct vhost_dev *d)
915{
916 int i = 0;
917 for (i = 0; i < d->nvqs; ++i)
918 mutex_lock_nested(&d->vqs[i]->mutex, i);
919}
920
921static void vhost_dev_unlock_vqs(struct vhost_dev *d)
922{
923 int i = 0;
924 for (i = 0; i < d->nvqs; ++i)
925 mutex_unlock(&d->vqs[i]->mutex);
926}
927
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400928static int vhost_new_umem_range(struct vhost_umem *umem,
929 u64 start, u64 size, u64 end,
930 u64 userspace_addr, int perm)
931{
Jason Wang813dbeb2019-04-09 12:10:25 +0800932 struct vhost_umem_node *tmp, *node;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400933
Jason Wang813dbeb2019-04-09 12:10:25 +0800934 if (!size)
935 return -EFAULT;
936
937 node = kmalloc(sizeof(*node), GFP_ATOMIC);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400938 if (!node)
939 return -ENOMEM;
940
941 if (umem->numem == max_iotlb_entries) {
942 tmp = list_first_entry(&umem->umem_list, typeof(*tmp), link);
943 vhost_umem_free(umem, tmp);
944 }
945
946 node->start = start;
947 node->size = size;
948 node->last = end;
949 node->userspace_addr = userspace_addr;
950 node->perm = perm;
951 INIT_LIST_HEAD(&node->link);
952 list_add_tail(&node->link, &umem->umem_list);
953 vhost_umem_interval_tree_insert(node, &umem->umem_tree);
954 umem->numem++;
955
956 return 0;
957}
958
959static void vhost_del_umem_range(struct vhost_umem *umem,
960 u64 start, u64 end)
961{
962 struct vhost_umem_node *node;
963
964 while ((node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
965 start, end)))
966 vhost_umem_free(umem, node);
967}
968
969static void vhost_iotlb_notify_vq(struct vhost_dev *d,
970 struct vhost_iotlb_msg *msg)
971{
972 struct vhost_msg_node *node, *n;
973
974 spin_lock(&d->iotlb_lock);
975
976 list_for_each_entry_safe(node, n, &d->pending_list, node) {
977 struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
978 if (msg->iova <= vq_msg->iova &&
Jason Wang2d66f992018-08-24 16:53:13 +0800979 msg->iova + msg->size - 1 >= vq_msg->iova &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400980 vq_msg->type == VHOST_IOTLB_MISS) {
981 vhost_poll_queue(&node->vq->poll);
982 list_del(&node->node);
983 kfree(node);
984 }
985 }
986
987 spin_unlock(&d->iotlb_lock);
988}
989
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800990static bool umem_access_ok(u64 uaddr, u64 size, int access)
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400991{
992 unsigned long a = uaddr;
993
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300994 /* Make sure 64 bit math will not overflow. */
995 if (vhost_overflow(uaddr, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800996 return false;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300997
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400998 if ((access & VHOST_ACCESS_RO) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -0800999 !access_ok((void __user *)a, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001000 return false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001001 if ((access & VHOST_ACCESS_WO) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001002 !access_ok((void __user *)a, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001003 return false;
1004 return true;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001005}
1006
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +02001007static int vhost_process_iotlb_msg(struct vhost_dev *dev,
1008 struct vhost_iotlb_msg *msg)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001009{
1010 int ret = 0;
1011
Jason Wang1b15ad62018-05-22 19:58:57 +08001012 mutex_lock(&dev->mutex);
Jason Wang86a07da2018-12-13 10:53:39 +08001013 vhost_dev_lock_vqs(dev);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001014 switch (msg->type) {
1015 case VHOST_IOTLB_UPDATE:
1016 if (!dev->iotlb) {
1017 ret = -EFAULT;
1018 break;
1019 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001020 if (!umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001021 ret = -EFAULT;
1022 break;
1023 }
Jason Wangf8894912017-02-28 17:56:02 +08001024 vhost_vq_meta_reset(dev);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001025 if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
1026 msg->iova + msg->size - 1,
1027 msg->uaddr, msg->perm)) {
1028 ret = -ENOMEM;
1029 break;
1030 }
1031 vhost_iotlb_notify_vq(dev, msg);
1032 break;
1033 case VHOST_IOTLB_INVALIDATE:
Jason Wang6f3180a2018-01-23 17:27:26 +08001034 if (!dev->iotlb) {
1035 ret = -EFAULT;
1036 break;
1037 }
Jason Wangf8894912017-02-28 17:56:02 +08001038 vhost_vq_meta_reset(dev);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001039 vhost_del_umem_range(dev->iotlb, msg->iova,
1040 msg->iova + msg->size - 1);
1041 break;
1042 default:
1043 ret = -EINVAL;
1044 break;
1045 }
1046
Jason Wang86a07da2018-12-13 10:53:39 +08001047 vhost_dev_unlock_vqs(dev);
Jason Wang1b15ad62018-05-22 19:58:57 +08001048 mutex_unlock(&dev->mutex);
1049
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001050 return ret;
1051}
1052ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
1053 struct iov_iter *from)
1054{
Jason Wang429711a2018-08-06 11:17:47 +08001055 struct vhost_iotlb_msg msg;
1056 size_t offset;
1057 int type, ret;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001058
Jason Wang429711a2018-08-06 11:17:47 +08001059 ret = copy_from_iter(&type, sizeof(type), from);
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001060 if (ret != sizeof(type)) {
1061 ret = -EINVAL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001062 goto done;
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001063 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001064
Jason Wang429711a2018-08-06 11:17:47 +08001065 switch (type) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001066 case VHOST_IOTLB_MSG:
Jason Wang429711a2018-08-06 11:17:47 +08001067 /* There maybe a hole after type for V1 message type,
1068 * so skip it here.
1069 */
1070 offset = offsetof(struct vhost_msg, iotlb) - sizeof(int);
1071 break;
1072 case VHOST_IOTLB_MSG_V2:
1073 offset = sizeof(__u32);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001074 break;
1075 default:
1076 ret = -EINVAL;
Jason Wang429711a2018-08-06 11:17:47 +08001077 goto done;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001078 }
1079
Jason Wang429711a2018-08-06 11:17:47 +08001080 iov_iter_advance(from, offset);
1081 ret = copy_from_iter(&msg, sizeof(msg), from);
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001082 if (ret != sizeof(msg)) {
1083 ret = -EINVAL;
Jason Wang429711a2018-08-06 11:17:47 +08001084 goto done;
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001085 }
Jason Wang429711a2018-08-06 11:17:47 +08001086 if (vhost_process_iotlb_msg(dev, &msg)) {
1087 ret = -EFAULT;
1088 goto done;
1089 }
1090
1091 ret = (type == VHOST_IOTLB_MSG) ? sizeof(struct vhost_msg) :
1092 sizeof(struct vhost_msg_v2);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001093done:
1094 return ret;
1095}
1096EXPORT_SYMBOL(vhost_chr_write_iter);
1097
Al Viroafc9a422017-07-03 06:39:46 -04001098__poll_t vhost_chr_poll(struct file *file, struct vhost_dev *dev,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001099 poll_table *wait)
1100{
Al Viroafc9a422017-07-03 06:39:46 -04001101 __poll_t mask = 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001102
1103 poll_wait(file, &dev->wait, wait);
1104
1105 if (!list_empty(&dev->read_list))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001106 mask |= EPOLLIN | EPOLLRDNORM;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001107
1108 return mask;
1109}
1110EXPORT_SYMBOL(vhost_chr_poll);
1111
1112ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1113 int noblock)
1114{
1115 DEFINE_WAIT(wait);
1116 struct vhost_msg_node *node;
1117 ssize_t ret = 0;
1118 unsigned size = sizeof(struct vhost_msg);
1119
1120 if (iov_iter_count(to) < size)
1121 return 0;
1122
1123 while (1) {
1124 if (!noblock)
1125 prepare_to_wait(&dev->wait, &wait,
1126 TASK_INTERRUPTIBLE);
1127
1128 node = vhost_dequeue_msg(dev, &dev->read_list);
1129 if (node)
1130 break;
1131 if (noblock) {
1132 ret = -EAGAIN;
1133 break;
1134 }
1135 if (signal_pending(current)) {
1136 ret = -ERESTARTSYS;
1137 break;
1138 }
1139 if (!dev->iotlb) {
1140 ret = -EBADFD;
1141 break;
1142 }
1143
1144 schedule();
1145 }
1146
1147 if (!noblock)
1148 finish_wait(&dev->wait, &wait);
1149
1150 if (node) {
Jason Wang429711a2018-08-06 11:17:47 +08001151 struct vhost_iotlb_msg *msg;
1152 void *start = &node->msg;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001153
Jason Wang429711a2018-08-06 11:17:47 +08001154 switch (node->msg.type) {
1155 case VHOST_IOTLB_MSG:
1156 size = sizeof(node->msg);
1157 msg = &node->msg.iotlb;
1158 break;
1159 case VHOST_IOTLB_MSG_V2:
1160 size = sizeof(node->msg_v2);
1161 msg = &node->msg_v2.iotlb;
1162 break;
1163 default:
1164 BUG();
1165 break;
1166 }
1167
1168 ret = copy_to_iter(start, size, to);
1169 if (ret != size || msg->type != VHOST_IOTLB_MISS) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001170 kfree(node);
1171 return ret;
1172 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001173 vhost_enqueue_msg(dev, &dev->pending_list, node);
1174 }
1175
1176 return ret;
1177}
1178EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1179
1180static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1181{
1182 struct vhost_dev *dev = vq->dev;
1183 struct vhost_msg_node *node;
1184 struct vhost_iotlb_msg *msg;
Jason Wang429711a2018-08-06 11:17:47 +08001185 bool v2 = vhost_backend_has_feature(vq, VHOST_BACKEND_F_IOTLB_MSG_V2);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001186
Jason Wang429711a2018-08-06 11:17:47 +08001187 node = vhost_new_msg(vq, v2 ? VHOST_IOTLB_MSG_V2 : VHOST_IOTLB_MSG);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001188 if (!node)
1189 return -ENOMEM;
1190
Jason Wang429711a2018-08-06 11:17:47 +08001191 if (v2) {
1192 node->msg_v2.type = VHOST_IOTLB_MSG_V2;
1193 msg = &node->msg_v2.iotlb;
1194 } else {
1195 msg = &node->msg.iotlb;
1196 }
1197
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001198 msg->type = VHOST_IOTLB_MISS;
1199 msg->iova = iova;
1200 msg->perm = access;
1201
1202 vhost_enqueue_msg(dev, &dev->read_list, node);
1203
1204 return 0;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001205}
1206
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001207static bool vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
1208 struct vring_desc __user *desc,
1209 struct vring_avail __user *avail,
1210 struct vring_used __user *used)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001211
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001212{
Arnd Bergmanncfdbb4ed2019-03-06 12:05:49 +01001213 size_t s __maybe_unused = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001214
Linus Torvalds96d4f262019-01-03 18:57:57 -08001215 return access_ok(desc, num * sizeof *desc) &&
1216 access_ok(avail,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001217 sizeof *avail + num * sizeof *avail->ring + s) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001218 access_ok(used,
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001219 sizeof *used + num * sizeof *used->ring + s);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001220}
1221
Jason Wangf8894912017-02-28 17:56:02 +08001222static void vhost_vq_meta_update(struct vhost_virtqueue *vq,
1223 const struct vhost_umem_node *node,
1224 int type)
1225{
1226 int access = (type == VHOST_ADDR_USED) ?
1227 VHOST_ACCESS_WO : VHOST_ACCESS_RO;
1228
1229 if (likely(node->perm & access))
1230 vq->meta_iotlb[type] = node;
1231}
1232
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001233static bool iotlb_access_ok(struct vhost_virtqueue *vq,
1234 int access, u64 addr, u64 len, int type)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001235{
1236 const struct vhost_umem_node *node;
1237 struct vhost_umem *umem = vq->iotlb;
Michael S. Tsirkinca2c5b32017-08-21 22:33:33 +03001238 u64 s = 0, size, orig_addr = addr, last = addr + len - 1;
Jason Wangf8894912017-02-28 17:56:02 +08001239
1240 if (vhost_vq_meta_fetch(vq, addr, len, type))
1241 return true;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001242
1243 while (len > s) {
1244 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1245 addr,
Michael S. Tsirkinca2c5b32017-08-21 22:33:33 +03001246 last);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001247 if (node == NULL || node->start > addr) {
1248 vhost_iotlb_miss(vq, addr, access);
1249 return false;
1250 } else if (!(node->perm & access)) {
1251 /* Report the possible access violation by
1252 * request another translation from userspace.
1253 */
1254 return false;
1255 }
1256
1257 size = node->size - addr + node->start;
Jason Wangf8894912017-02-28 17:56:02 +08001258
1259 if (orig_addr == addr && size >= len)
1260 vhost_vq_meta_update(vq, node, type);
1261
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001262 s += size;
1263 addr += size;
1264 }
1265
1266 return true;
1267}
1268
1269int vq_iotlb_prefetch(struct vhost_virtqueue *vq)
1270{
1271 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1272 unsigned int num = vq->num;
1273
1274 if (!vq->iotlb)
1275 return 1;
1276
1277 return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
Jason Wangf8894912017-02-28 17:56:02 +08001278 num * sizeof(*vq->desc), VHOST_ADDR_DESC) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001279 iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1280 sizeof *vq->avail +
Jason Wangf8894912017-02-28 17:56:02 +08001281 num * sizeof(*vq->avail->ring) + s,
1282 VHOST_ADDR_AVAIL) &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001283 iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1284 sizeof *vq->used +
Jason Wangf8894912017-02-28 17:56:02 +08001285 num * sizeof(*vq->used->ring) + s,
1286 VHOST_ADDR_USED);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001287}
1288EXPORT_SYMBOL_GPL(vq_iotlb_prefetch);
1289
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001290/* Can we log writes? */
1291/* Caller should have device mutex but not vq mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001292bool vhost_log_access_ok(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001293{
Jason Wanga9709d62016-06-23 02:04:31 -04001294 return memory_access_ok(dev, dev->umem, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001295}
Asias He6ac1afb2013-05-06 16:38:21 +08001296EXPORT_SYMBOL_GPL(vhost_log_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001297
1298/* Verify access for write logging. */
1299/* Caller should have vq mutex and device mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001300static bool vq_log_access_ok(struct vhost_virtqueue *vq,
1301 void __user *log_base)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001302{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001303 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
Arnd Bergmann28457ee2010-03-09 19:24:45 +01001304
Jason Wanga9709d62016-06-23 02:04:31 -04001305 return vq_memory_access_ok(log_base, vq->umem,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001306 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001307 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
1308 sizeof *vq->used +
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03001309 vq->num * sizeof *vq->used->ring + s));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001310}
1311
1312/* Can we start vq? */
1313/* Caller should have vq mutex and device mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001314bool vhost_vq_access_ok(struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001315{
Stefan Hajnoczid14d2b72018-04-11 10:35:40 +08001316 if (!vq_log_access_ok(vq, vq->log_base))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001317 return false;
Jason Wangd65026c2018-03-29 16:00:04 +08001318
Stefan Hajnoczid14d2b72018-04-11 10:35:40 +08001319 /* Access validation occurs at prefetch time with IOTLB */
1320 if (vq->iotlb)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001321 return true;
Jason Wangd65026c2018-03-29 16:00:04 +08001322
1323 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001324}
Asias He6ac1afb2013-05-06 16:38:21 +08001325EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001326
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001327static struct vhost_umem *vhost_umem_alloc(void)
1328{
Michal Hocko6c5ab652017-05-08 15:57:15 -07001329 struct vhost_umem *umem = kvzalloc(sizeof(*umem), GFP_KERNEL);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001330
1331 if (!umem)
1332 return NULL;
1333
Davidlohr Buesof808c132017-09-08 16:15:08 -07001334 umem->umem_tree = RB_ROOT_CACHED;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001335 umem->numem = 0;
1336 INIT_LIST_HEAD(&umem->umem_list);
1337
1338 return umem;
1339}
1340
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001341static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1342{
Jason Wanga9709d62016-06-23 02:04:31 -04001343 struct vhost_memory mem, *newmem;
1344 struct vhost_memory_region *region;
Jason Wanga9709d62016-06-23 02:04:31 -04001345 struct vhost_umem *newumem, *oldumem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001346 unsigned long size = offsetof(struct vhost_memory, regions);
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001347 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +05301348
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001349 if (copy_from_user(&mem, m, size))
1350 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001351 if (mem.padding)
1352 return -EOPNOTSUPP;
Igor Mammedovc9ce42f2015-07-02 15:08:11 +02001353 if (mem.nregions > max_mem_regions)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001354 return -E2BIG;
Matthew Wilcoxb2303d72018-06-07 07:57:18 -07001355 newmem = kvzalloc(struct_size(newmem, regions, mem.nregions),
1356 GFP_KERNEL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001357 if (!newmem)
1358 return -ENOMEM;
1359
1360 memcpy(newmem, &mem, size);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001361 if (copy_from_user(newmem->regions, m->regions,
1362 mem.nregions * sizeof *m->regions)) {
Igor Mammedovbcfeaca2015-06-16 18:33:35 +02001363 kvfree(newmem);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001364 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001365 }
1366
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001367 newumem = vhost_umem_alloc();
Jason Wanga9709d62016-06-23 02:04:31 -04001368 if (!newumem) {
Igor Mammedov4de72552015-07-01 11:07:09 +02001369 kvfree(newmem);
Jason Wanga9709d62016-06-23 02:04:31 -04001370 return -ENOMEM;
Takuya Yoshikawaa02c3782010-05-27 19:03:56 +09001371 }
Jason Wanga9709d62016-06-23 02:04:31 -04001372
Jason Wanga9709d62016-06-23 02:04:31 -04001373 for (region = newmem->regions;
1374 region < newmem->regions + mem.nregions;
1375 region++) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001376 if (vhost_new_umem_range(newumem,
1377 region->guest_phys_addr,
1378 region->memory_size,
1379 region->guest_phys_addr +
1380 region->memory_size - 1,
1381 region->userspace_addr,
1382 VHOST_ACCESS_RW))
Jason Wanga9709d62016-06-23 02:04:31 -04001383 goto err;
Jason Wanga9709d62016-06-23 02:04:31 -04001384 }
1385
1386 if (!memory_access_ok(d, newumem, 0))
1387 goto err;
1388
1389 oldumem = d->umem;
1390 d->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001391
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001392 /* All memory accesses are done under some VQ mutex. */
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001393 for (i = 0; i < d->nvqs; ++i) {
1394 mutex_lock(&d->vqs[i]->mutex);
Jason Wanga9709d62016-06-23 02:04:31 -04001395 d->vqs[i]->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001396 mutex_unlock(&d->vqs[i]->mutex);
1397 }
Jason Wanga9709d62016-06-23 02:04:31 -04001398
1399 kvfree(newmem);
1400 vhost_umem_clean(oldumem);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001401 return 0;
Jason Wanga9709d62016-06-23 02:04:31 -04001402
1403err:
1404 vhost_umem_clean(newumem);
1405 kvfree(newmem);
1406 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001407}
1408
Sonny Rao26b36602018-03-14 10:05:06 -07001409long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001410{
Al Virocecb46f2012-08-27 14:21:39 -04001411 struct file *eventfp, *filep = NULL;
1412 bool pollstart = false, pollstop = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001413 struct eventfd_ctx *ctx = NULL;
1414 u32 __user *idxp = argp;
1415 struct vhost_virtqueue *vq;
1416 struct vhost_vring_state s;
1417 struct vhost_vring_file f;
1418 struct vhost_vring_addr a;
1419 u32 idx;
1420 long r;
1421
1422 r = get_user(idx, idxp);
1423 if (r < 0)
1424 return r;
Krishna Kumar0f3d9a12010-05-25 11:10:36 +05301425 if (idx >= d->nvqs)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001426 return -ENOBUFS;
1427
Jason Wangff002262018-10-30 14:10:49 +08001428 idx = array_index_nospec(idx, d->nvqs);
Asias He3ab2e422013-04-27 11:16:48 +08001429 vq = d->vqs[idx];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001430
1431 mutex_lock(&vq->mutex);
1432
1433 switch (ioctl) {
1434 case VHOST_SET_VRING_NUM:
1435 /* Resizing ring with an active backend?
1436 * You don't want to do that. */
1437 if (vq->private_data) {
1438 r = -EBUSY;
1439 break;
1440 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001441 if (copy_from_user(&s, argp, sizeof s)) {
1442 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001443 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001444 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001445 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) {
1446 r = -EINVAL;
1447 break;
1448 }
1449 vq->num = s.num;
1450 break;
1451 case VHOST_SET_VRING_BASE:
1452 /* Moving base with an active backend?
1453 * You don't want to do that. */
1454 if (vq->private_data) {
1455 r = -EBUSY;
1456 break;
1457 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001458 if (copy_from_user(&s, argp, sizeof s)) {
1459 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001460 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001461 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001462 if (s.num > 0xffff) {
1463 r = -EINVAL;
1464 break;
1465 }
Jason Wang8d658432017-07-27 11:22:05 +08001466 vq->last_avail_idx = s.num;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001467 /* Forget the cached index value. */
1468 vq->avail_idx = vq->last_avail_idx;
1469 break;
1470 case VHOST_GET_VRING_BASE:
1471 s.index = idx;
1472 s.num = vq->last_avail_idx;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001473 if (copy_to_user(argp, &s, sizeof s))
1474 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001475 break;
1476 case VHOST_SET_VRING_ADDR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001477 if (copy_from_user(&a, argp, sizeof a)) {
1478 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001479 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001480 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001481 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) {
1482 r = -EOPNOTSUPP;
1483 break;
1484 }
1485 /* For 32bit, verify that the top 32bits of the user
1486 data are set to zero. */
1487 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1488 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1489 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) {
1490 r = -EFAULT;
1491 break;
1492 }
Michael S. Tsirkin5d9a07b2014-12-21 01:00:23 +02001493
1494 /* Make sure it's safe to cast pointers to vring types. */
1495 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1496 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1497 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1498 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
Michael S. Tsirkind5424832015-11-16 16:57:08 +02001499 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001500 r = -EINVAL;
1501 break;
1502 }
1503
1504 /* We only verify access here if backend is configured.
1505 * If it is not, we don't as size might not have been setup.
1506 * We will verify when backend is configured. */
1507 if (vq->private_data) {
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001508 if (!vq_access_ok(vq, vq->num,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001509 (void __user *)(unsigned long)a.desc_user_addr,
1510 (void __user *)(unsigned long)a.avail_user_addr,
1511 (void __user *)(unsigned long)a.used_user_addr)) {
1512 r = -EINVAL;
1513 break;
1514 }
1515
1516 /* Also validate log access for used ring if enabled. */
1517 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1518 !log_access_ok(vq->log_base, a.log_guest_addr,
1519 sizeof *vq->used +
1520 vq->num * sizeof *vq->used->ring)) {
1521 r = -EINVAL;
1522 break;
1523 }
1524 }
1525
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001526 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1527 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1528 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1529 vq->log_addr = a.log_guest_addr;
1530 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1531 break;
1532 case VHOST_SET_VRING_KICK:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001533 if (copy_from_user(&f, argp, sizeof f)) {
1534 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001535 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001536 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001537 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001538 if (IS_ERR(eventfp)) {
1539 r = PTR_ERR(eventfp);
1540 break;
1541 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001542 if (eventfp != vq->kick) {
Al Virocecb46f2012-08-27 14:21:39 -04001543 pollstop = (filep = vq->kick) != NULL;
1544 pollstart = (vq->kick = eventfp) != NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001545 } else
1546 filep = eventfp;
1547 break;
1548 case VHOST_SET_VRING_CALL:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001549 if (copy_from_user(&f, argp, sizeof f)) {
1550 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001551 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001552 }
Eric Biggerse050c7d2018-01-06 14:52:19 -08001553 ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd);
1554 if (IS_ERR(ctx)) {
1555 r = PTR_ERR(ctx);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001556 break;
1557 }
Eric Biggerse050c7d2018-01-06 14:52:19 -08001558 swap(ctx, vq->call_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001559 break;
1560 case VHOST_SET_VRING_ERR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001561 if (copy_from_user(&f, argp, sizeof f)) {
1562 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001563 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001564 }
Eric Biggers09f332a2018-01-06 14:52:20 -08001565 ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd);
1566 if (IS_ERR(ctx)) {
1567 r = PTR_ERR(ctx);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001568 break;
1569 }
Eric Biggers09f332a2018-01-06 14:52:20 -08001570 swap(ctx, vq->error_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001571 break;
Greg Kurz2751c982015-04-24 14:27:24 +02001572 case VHOST_SET_VRING_ENDIAN:
1573 r = vhost_set_vring_endian(vq, argp);
1574 break;
1575 case VHOST_GET_VRING_ENDIAN:
1576 r = vhost_get_vring_endian(vq, idx, argp);
1577 break;
Jason Wang03088132016-03-04 06:24:53 -05001578 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1579 if (copy_from_user(&s, argp, sizeof(s))) {
1580 r = -EFAULT;
1581 break;
1582 }
1583 vq->busyloop_timeout = s.num;
1584 break;
1585 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1586 s.index = idx;
1587 s.num = vq->busyloop_timeout;
1588 if (copy_to_user(argp, &s, sizeof(s)))
1589 r = -EFAULT;
1590 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001591 default:
1592 r = -ENOIOCTLCMD;
1593 }
1594
1595 if (pollstop && vq->handle_kick)
1596 vhost_poll_stop(&vq->poll);
1597
Eric Biggerse050c7d2018-01-06 14:52:19 -08001598 if (!IS_ERR_OR_NULL(ctx))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001599 eventfd_ctx_put(ctx);
1600 if (filep)
1601 fput(filep);
1602
1603 if (pollstart && vq->handle_kick)
Jason Wang2b8b3282013-01-28 01:05:18 +00001604 r = vhost_poll_start(&vq->poll, vq->kick);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001605
1606 mutex_unlock(&vq->mutex);
1607
1608 if (pollstop && vq->handle_kick)
1609 vhost_poll_flush(&vq->poll);
1610 return r;
1611}
Asias He6ac1afb2013-05-06 16:38:21 +08001612EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001613
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001614int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1615{
1616 struct vhost_umem *niotlb, *oiotlb;
1617 int i;
1618
1619 niotlb = vhost_umem_alloc();
1620 if (!niotlb)
1621 return -ENOMEM;
1622
1623 oiotlb = d->iotlb;
1624 d->iotlb = niotlb;
1625
1626 for (i = 0; i < d->nvqs; ++i) {
Jason Wangb13f9c62018-08-08 11:43:04 +08001627 struct vhost_virtqueue *vq = d->vqs[i];
1628
1629 mutex_lock(&vq->mutex);
1630 vq->iotlb = niotlb;
1631 __vhost_vq_meta_reset(vq);
1632 mutex_unlock(&vq->mutex);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001633 }
1634
1635 vhost_umem_clean(oiotlb);
1636
1637 return 0;
1638}
1639EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1640
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001641/* Caller must have device mutex */
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001642long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001643{
Eric Biggersd25cc432018-01-06 14:52:21 -08001644 struct eventfd_ctx *ctx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001645 u64 p;
1646 long r;
1647 int i, fd;
1648
1649 /* If you are not the owner, you can become one */
1650 if (ioctl == VHOST_SET_OWNER) {
1651 r = vhost_dev_set_owner(d);
1652 goto done;
1653 }
1654
1655 /* You must be the owner to do anything else */
1656 r = vhost_dev_check_owner(d);
1657 if (r)
1658 goto done;
1659
1660 switch (ioctl) {
1661 case VHOST_SET_MEM_TABLE:
1662 r = vhost_set_memory(d, argp);
1663 break;
1664 case VHOST_SET_LOG_BASE:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001665 if (copy_from_user(&p, argp, sizeof p)) {
1666 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001667 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001668 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001669 if ((u64)(unsigned long)p != p) {
1670 r = -EFAULT;
1671 break;
1672 }
1673 for (i = 0; i < d->nvqs; ++i) {
1674 struct vhost_virtqueue *vq;
1675 void __user *base = (void __user *)(unsigned long)p;
Asias He3ab2e422013-04-27 11:16:48 +08001676 vq = d->vqs[i];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001677 mutex_lock(&vq->mutex);
1678 /* If ring is inactive, will check when it's enabled. */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001679 if (vq->private_data && !vq_log_access_ok(vq, base))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001680 r = -EFAULT;
1681 else
1682 vq->log_base = base;
1683 mutex_unlock(&vq->mutex);
1684 }
1685 break;
1686 case VHOST_SET_LOG_FD:
1687 r = get_user(fd, (int __user *)argp);
1688 if (r < 0)
1689 break;
Eric Biggersd25cc432018-01-06 14:52:21 -08001690 ctx = fd == -1 ? NULL : eventfd_ctx_fdget(fd);
1691 if (IS_ERR(ctx)) {
1692 r = PTR_ERR(ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001693 break;
1694 }
Eric Biggersd25cc432018-01-06 14:52:21 -08001695 swap(ctx, d->log_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001696 for (i = 0; i < d->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001697 mutex_lock(&d->vqs[i]->mutex);
1698 d->vqs[i]->log_ctx = d->log_ctx;
1699 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001700 }
1701 if (ctx)
1702 eventfd_ctx_put(ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001703 break;
1704 default:
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001705 r = -ENOIOCTLCMD;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001706 break;
1707 }
1708done:
1709 return r;
1710}
Asias He6ac1afb2013-05-06 16:38:21 +08001711EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001712
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001713/* TODO: This is really inefficient. We need something like get_user()
1714 * (instruction directly accesses the data, with an exception table entry
1715 * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1716 */
1717static int set_bit_to_user(int nr, void __user *addr)
1718{
1719 unsigned long log = (unsigned long)addr;
1720 struct page *page;
1721 void *base;
1722 int bit = nr + (log % PAGE_SIZE) * 8;
1723 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301724
Ira Weiny73b01402019-05-13 17:17:11 -07001725 r = get_user_pages_fast(log, 1, FOLL_WRITE, &page);
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001726 if (r < 0)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001727 return r;
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001728 BUG_ON(r != 1);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001729 base = kmap_atomic(page);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001730 set_bit(bit, base);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001731 kunmap_atomic(base);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001732 set_page_dirty_lock(page);
1733 put_page(page);
1734 return 0;
1735}
1736
1737static int log_write(void __user *log_base,
1738 u64 write_address, u64 write_length)
1739{
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001740 u64 write_page = write_address / VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001741 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301742
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001743 if (!write_length)
1744 return 0;
Michael S. Tsirkin3bf9be42010-11-29 10:19:07 +02001745 write_length += write_address % VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001746 for (;;) {
1747 u64 base = (u64)(unsigned long)log_base;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001748 u64 log = base + write_page / 8;
1749 int bit = write_page % 8;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001750 if ((u64)(unsigned long)log != log)
1751 return -EFAULT;
1752 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1753 if (r < 0)
1754 return r;
1755 if (write_length <= VHOST_PAGE_SIZE)
1756 break;
1757 write_length -= VHOST_PAGE_SIZE;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001758 write_page += 1;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001759 }
1760 return r;
1761}
1762
Jason Wangcc5e7102019-01-16 16:54:42 +08001763static int log_write_hva(struct vhost_virtqueue *vq, u64 hva, u64 len)
1764{
1765 struct vhost_umem *umem = vq->umem;
1766 struct vhost_umem_node *u;
1767 u64 start, end, l, min;
1768 int r;
1769 bool hit = false;
1770
1771 while (len) {
1772 min = len;
1773 /* More than one GPAs can be mapped into a single HVA. So
1774 * iterate all possible umems here to be safe.
1775 */
1776 list_for_each_entry(u, &umem->umem_list, link) {
1777 if (u->userspace_addr > hva - 1 + len ||
1778 u->userspace_addr - 1 + u->size < hva)
1779 continue;
1780 start = max(u->userspace_addr, hva);
1781 end = min(u->userspace_addr - 1 + u->size,
1782 hva - 1 + len);
1783 l = end - start + 1;
1784 r = log_write(vq->log_base,
1785 u->start + start - u->userspace_addr,
1786 l);
1787 if (r < 0)
1788 return r;
1789 hit = true;
1790 min = min(l, min);
1791 }
1792
1793 if (!hit)
1794 return -EFAULT;
1795
1796 len -= min;
1797 hva += min;
1798 }
1799
1800 return 0;
1801}
1802
1803static int log_used(struct vhost_virtqueue *vq, u64 used_offset, u64 len)
1804{
1805 struct iovec iov[64];
1806 int i, ret;
1807
1808 if (!vq->iotlb)
1809 return log_write(vq->log_base, vq->log_addr + used_offset, len);
1810
1811 ret = translate_desc(vq, (uintptr_t)vq->used + used_offset,
1812 len, iov, 64, VHOST_ACCESS_WO);
Jason Wang816db762019-02-19 14:53:44 +08001813 if (ret < 0)
Jason Wangcc5e7102019-01-16 16:54:42 +08001814 return ret;
1815
1816 for (i = 0; i < ret; i++) {
1817 ret = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1818 iov[i].iov_len);
1819 if (ret)
1820 return ret;
1821 }
1822
1823 return 0;
1824}
1825
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001826int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
Jason Wangcc5e7102019-01-16 16:54:42 +08001827 unsigned int log_num, u64 len, struct iovec *iov, int count)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001828{
1829 int i, r;
1830
1831 /* Make sure data written is seen before log. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001832 smp_wmb();
Jason Wangcc5e7102019-01-16 16:54:42 +08001833
1834 if (vq->iotlb) {
1835 for (i = 0; i < count; i++) {
1836 r = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1837 iov[i].iov_len);
1838 if (r < 0)
1839 return r;
1840 }
1841 return 0;
1842 }
1843
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001844 for (i = 0; i < log_num; ++i) {
1845 u64 l = min(log[i].len, len);
1846 r = log_write(vq->log_base, log[i].addr, l);
1847 if (r < 0)
1848 return r;
1849 len -= l;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001850 if (!len) {
1851 if (vq->log_ctx)
1852 eventfd_signal(vq->log_ctx, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001853 return 0;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001854 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001855 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001856 /* Length written exceeds what we have stored. This is a bug. */
1857 BUG();
1858 return 0;
1859}
Asias He6ac1afb2013-05-06 16:38:21 +08001860EXPORT_SYMBOL_GPL(vhost_log_write);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001861
Jason Wang2723fea2011-06-21 18:04:38 +08001862static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1863{
1864 void __user *used;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001865 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
1866 &vq->used->flags) < 0)
Jason Wang2723fea2011-06-21 18:04:38 +08001867 return -EFAULT;
1868 if (unlikely(vq->log_used)) {
1869 /* Make sure the flag is seen before log. */
1870 smp_wmb();
1871 /* Log used flag write. */
1872 used = &vq->used->flags;
Jason Wangcc5e7102019-01-16 16:54:42 +08001873 log_used(vq, (used - (void __user *)vq->used),
1874 sizeof vq->used->flags);
Jason Wang2723fea2011-06-21 18:04:38 +08001875 if (vq->log_ctx)
1876 eventfd_signal(vq->log_ctx, 1);
1877 }
1878 return 0;
1879}
1880
1881static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1882{
Jason Wangbfe2bc52016-06-23 02:04:30 -04001883 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
1884 vhost_avail_event(vq)))
Jason Wang2723fea2011-06-21 18:04:38 +08001885 return -EFAULT;
1886 if (unlikely(vq->log_used)) {
1887 void __user *used;
1888 /* Make sure the event is seen before log. */
1889 smp_wmb();
1890 /* Log avail event write */
1891 used = vhost_avail_event(vq);
Jason Wangcc5e7102019-01-16 16:54:42 +08001892 log_used(vq, (used - (void __user *)vq->used),
1893 sizeof *vhost_avail_event(vq));
Jason Wang2723fea2011-06-21 18:04:38 +08001894 if (vq->log_ctx)
1895 eventfd_signal(vq->log_ctx, 1);
1896 }
1897 return 0;
1898}
1899
Greg Kurz80f7d032016-02-16 15:59:44 +01001900int vhost_vq_init_access(struct vhost_virtqueue *vq)
Jason Wang2723fea2011-06-21 18:04:38 +08001901{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001902 __virtio16 last_used_idx;
Jason Wang2723fea2011-06-21 18:04:38 +08001903 int r;
Greg Kurze1f33be2016-02-16 15:54:28 +01001904 bool is_le = vq->is_le;
1905
Halil Pasiccda8bba2017-01-30 11:09:36 +01001906 if (!vq->private_data)
Jason Wang2723fea2011-06-21 18:04:38 +08001907 return 0;
Greg Kurz2751c982015-04-24 14:27:24 +02001908
1909 vhost_init_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08001910
1911 r = vhost_update_used_flags(vq);
1912 if (r)
Greg Kurze1f33be2016-02-16 15:54:28 +01001913 goto err;
Jason Wang2723fea2011-06-21 18:04:38 +08001914 vq->signalled_used_valid = false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001915 if (!vq->iotlb &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001916 !access_ok(&vq->used->idx, sizeof vq->used->idx)) {
Greg Kurze1f33be2016-02-16 15:54:28 +01001917 r = -EFAULT;
1918 goto err;
1919 }
Jason Wangf8894912017-02-28 17:56:02 +08001920 r = vhost_get_used(vq, last_used_idx, &vq->used->idx);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001921 if (r) {
1922 vq_err(vq, "Can't access used idx at %p\n",
1923 &vq->used->idx);
Greg Kurze1f33be2016-02-16 15:54:28 +01001924 goto err;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001925 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001926 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
Michael S. Tsirkin64f7f052014-12-01 17:39:39 +02001927 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001928
Greg Kurze1f33be2016-02-16 15:54:28 +01001929err:
1930 vq->is_le = is_le;
1931 return r;
Jason Wang2723fea2011-06-21 18:04:38 +08001932}
Greg Kurz80f7d032016-02-16 15:59:44 +01001933EXPORT_SYMBOL_GPL(vhost_vq_init_access);
Jason Wang2723fea2011-06-21 18:04:38 +08001934
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001935static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001936 struct iovec iov[], int iov_size, int access)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001937{
Jason Wanga9709d62016-06-23 02:04:31 -04001938 const struct vhost_umem_node *node;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001939 struct vhost_dev *dev = vq->dev;
1940 struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001941 struct iovec *_iov;
1942 u64 s = 0;
1943 int ret = 0;
1944
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001945 while ((u64)len > s) {
1946 u64 size;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001947 if (unlikely(ret >= iov_size)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001948 ret = -ENOBUFS;
1949 break;
1950 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001951
Jason Wanga9709d62016-06-23 02:04:31 -04001952 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1953 addr, addr + len - 1);
1954 if (node == NULL || node->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001955 if (umem != dev->iotlb) {
1956 ret = -EFAULT;
1957 break;
1958 }
1959 ret = -EAGAIN;
1960 break;
1961 } else if (!(node->perm & access)) {
1962 ret = -EPERM;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001963 break;
1964 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001965
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001966 _iov = iov + ret;
Jason Wanga9709d62016-06-23 02:04:31 -04001967 size = node->size - addr + node->start;
Michael S. Tsirkinbd971202012-11-26 05:57:27 +00001968 _iov->iov_len = min((u64)len - s, size);
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001969 _iov->iov_base = (void __user *)(unsigned long)
Jason Wanga9709d62016-06-23 02:04:31 -04001970 (node->userspace_addr + addr - node->start);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001971 s += size;
1972 addr += size;
1973 ++ret;
1974 }
1975
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001976 if (ret == -EAGAIN)
1977 vhost_iotlb_miss(vq, addr, access);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001978 return ret;
1979}
1980
1981/* Each buffer in the virtqueues is actually a chain of descriptors. This
1982 * function returns the next descriptor in the chain,
1983 * or -1U if we're at the end. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001984static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001985{
1986 unsigned int next;
1987
1988 /* If this descriptor says it doesn't chain, we're done. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001989 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001990 return -1U;
1991
1992 /* Check they're not leading us off end of descriptors. */
Paul E. McKenney3a5db0b2017-11-27 09:45:10 -08001993 next = vhost16_to_cpu(vq, READ_ONCE(desc->next));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001994 return next;
1995}
1996
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001997static int get_indirect(struct vhost_virtqueue *vq,
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03001998 struct iovec iov[], unsigned int iov_size,
1999 unsigned int *out_num, unsigned int *in_num,
2000 struct vhost_log *log, unsigned int *log_num,
2001 struct vring_desc *indirect)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002002{
2003 struct vring_desc desc;
2004 unsigned int i = 0, count, found = 0;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002005 u32 len = vhost32_to_cpu(vq, indirect->len);
Al Viroaad9a1c2014-12-10 14:49:01 -05002006 struct iov_iter from;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002007 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002008
2009 /* Sanity check */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002010 if (unlikely(len % sizeof desc)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002011 vq_err(vq, "Invalid length in indirect descriptor: "
2012 "len 0x%llx not multiple of 0x%zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002013 (unsigned long long)len,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002014 sizeof desc);
2015 return -EINVAL;
2016 }
2017
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002018 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002019 UIO_MAXIOV, VHOST_ACCESS_RO);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002020 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002021 if (ret != -EAGAIN)
2022 vq_err(vq, "Translation failure %d in indirect.\n", ret);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002023 return ret;
2024 }
Al Viroaad9a1c2014-12-10 14:49:01 -05002025 iov_iter_init(&from, READ, vq->indirect, ret, len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002026
2027 /* We will use the result as an address to read from, so most
2028 * architectures only need a compiler barrier here. */
2029 read_barrier_depends();
2030
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002031 count = len / sizeof desc;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002032 /* Buffers are chained via a 16 bit next field, so
2033 * we can have at most 2^16 of these. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002034 if (unlikely(count > USHRT_MAX + 1)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002035 vq_err(vq, "Indirect buffer length too big: %d\n",
2036 indirect->len);
2037 return -E2BIG;
2038 }
2039
2040 do {
2041 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002042 if (unlikely(++found > count)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002043 vq_err(vq, "Loop detected: last one at %u "
2044 "indirect size %u\n",
2045 i, count);
2046 return -EINVAL;
2047 }
Al Virocbbd26b2016-11-01 22:09:04 -04002048 if (unlikely(!copy_from_iter_full(&desc, sizeof(desc), &from))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002049 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002050 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002051 return -EINVAL;
2052 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002053 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002054 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002055 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002056 return -EINVAL;
2057 }
2058
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002059 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2060 access = VHOST_ACCESS_WO;
2061 else
2062 access = VHOST_ACCESS_RO;
2063
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002064 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2065 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002066 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002067 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002068 if (ret != -EAGAIN)
2069 vq_err(vq, "Translation failure %d indirect idx %d\n",
2070 ret, i);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002071 return ret;
2072 }
2073 /* If this is an input descriptor, increment that count. */
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002074 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002075 *in_num += ret;
2076 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002077 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2078 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002079 ++*log_num;
2080 }
2081 } else {
2082 /* If it's an output descriptor, they're all supposed
2083 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002084 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002085 vq_err(vq, "Indirect descriptor "
2086 "has out after in: idx %d\n", i);
2087 return -EINVAL;
2088 }
2089 *out_num += ret;
2090 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002091 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002092 return 0;
2093}
2094
2095/* This looks in the virtqueue and for the first available buffer, and converts
2096 * it to an iovec for convenient access. Since descriptors consist of some
2097 * number of output then some number of input descriptors, it's actually two
2098 * iovecs, but we pack them into one and note how many of each there were.
2099 *
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002100 * This function returns the descriptor number found, or vq->num (which is
2101 * never a valid descriptor number) if none was found. A negative code is
2102 * returned on error. */
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002103int vhost_get_vq_desc(struct vhost_virtqueue *vq,
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002104 struct iovec iov[], unsigned int iov_size,
2105 unsigned int *out_num, unsigned int *in_num,
2106 struct vhost_log *log, unsigned int *log_num)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002107{
2108 struct vring_desc desc;
2109 unsigned int i, head, found = 0;
2110 u16 last_avail_idx;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002111 __virtio16 avail_idx;
2112 __virtio16 ring_head;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002113 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002114
2115 /* Check it isn't doing very strange things with descriptor numbers. */
2116 last_avail_idx = vq->last_avail_idx;
Jason Wange3b56cd2017-02-07 15:49:50 +08002117
2118 if (vq->avail_idx == vq->last_avail_idx) {
Jason Wangf8894912017-02-28 17:56:02 +08002119 if (unlikely(vhost_get_avail(vq, avail_idx, &vq->avail->idx))) {
Jason Wange3b56cd2017-02-07 15:49:50 +08002120 vq_err(vq, "Failed to access avail idx at %p\n",
2121 &vq->avail->idx);
2122 return -EFAULT;
2123 }
2124 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2125
2126 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
2127 vq_err(vq, "Guest moved used index from %u to %u",
2128 last_avail_idx, vq->avail_idx);
2129 return -EFAULT;
2130 }
2131
2132 /* If there's nothing new since last we looked, return
2133 * invalid.
2134 */
2135 if (vq->avail_idx == last_avail_idx)
2136 return vq->num;
2137
2138 /* Only get avail ring entries after they have been
2139 * exposed by guest.
2140 */
2141 smp_rmb();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002142 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002143
2144 /* Grab the next descriptor number they're advertising, and increment
2145 * the index we've seen. */
Jason Wangf8894912017-02-28 17:56:02 +08002146 if (unlikely(vhost_get_avail(vq, ring_head,
Jason Wangbfe2bc52016-06-23 02:04:30 -04002147 &vq->avail->ring[last_avail_idx & (vq->num - 1)]))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002148 vq_err(vq, "Failed to read head: idx %d address %p\n",
2149 last_avail_idx,
2150 &vq->avail->ring[last_avail_idx % vq->num]);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002151 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002152 }
2153
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002154 head = vhost16_to_cpu(vq, ring_head);
2155
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002156 /* If their number is silly, that's an error. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002157 if (unlikely(head >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002158 vq_err(vq, "Guest says index %u > %u is available",
2159 head, vq->num);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002160 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002161 }
2162
2163 /* When we start there are none of either input nor output. */
2164 *out_num = *in_num = 0;
2165 if (unlikely(log))
2166 *log_num = 0;
2167
2168 i = head;
2169 do {
2170 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002171 if (unlikely(i >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002172 vq_err(vq, "Desc index is %u > %u, head = %u",
2173 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002174 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002175 }
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002176 if (unlikely(++found > vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002177 vq_err(vq, "Loop detected: last one at %u "
2178 "vq size %u head %u\n",
2179 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002180 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002181 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002182 ret = vhost_copy_from_user(vq, &desc, vq->desc + i,
2183 sizeof desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002184 if (unlikely(ret)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002185 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
2186 i, vq->desc + i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002187 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002188 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002189 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002190 ret = get_indirect(vq, iov, iov_size,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002191 out_num, in_num,
2192 log, log_num, &desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002193 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002194 if (ret != -EAGAIN)
2195 vq_err(vq, "Failure detected "
2196 "in indirect descriptor at idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002197 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002198 }
2199 continue;
2200 }
2201
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002202 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2203 access = VHOST_ACCESS_WO;
2204 else
2205 access = VHOST_ACCESS_RO;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002206 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2207 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002208 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002209 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002210 if (ret != -EAGAIN)
2211 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2212 ret, i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002213 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002214 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002215 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002216 /* If this is an input descriptor,
2217 * increment that count. */
2218 *in_num += ret;
2219 if (unlikely(log)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002220 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2221 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002222 ++*log_num;
2223 }
2224 } else {
2225 /* If it's an output descriptor, they're all supposed
2226 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002227 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002228 vq_err(vq, "Descriptor has out after in: "
2229 "idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002230 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002231 }
2232 *out_num += ret;
2233 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002234 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002235
2236 /* On success, increment avail index. */
2237 vq->last_avail_idx++;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002238
2239 /* Assume notifications from guest are disabled at this point,
2240 * if they aren't we would need to update avail_event index. */
2241 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002242 return head;
2243}
Asias He6ac1afb2013-05-06 16:38:21 +08002244EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002245
2246/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
David Stevens8dd014a2010-07-27 18:52:21 +03002247void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002248{
David Stevens8dd014a2010-07-27 18:52:21 +03002249 vq->last_avail_idx -= n;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002250}
Asias He6ac1afb2013-05-06 16:38:21 +08002251EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002252
2253/* After we've used one of their buffers, we tell them about it. We'll then
2254 * want to notify the guest, using eventfd. */
2255int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2256{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002257 struct vring_used_elem heads = {
2258 cpu_to_vhost32(vq, head),
2259 cpu_to_vhost32(vq, len)
2260 };
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002261
Jason Wangc49e4e52013-09-02 16:40:58 +08002262 return vhost_add_used_n(vq, &heads, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002263}
Asias He6ac1afb2013-05-06 16:38:21 +08002264EXPORT_SYMBOL_GPL(vhost_add_used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002265
David Stevens8dd014a2010-07-27 18:52:21 +03002266static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2267 struct vring_used_elem *heads,
2268 unsigned count)
2269{
2270 struct vring_used_elem __user *used;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002271 u16 old, new;
David Stevens8dd014a2010-07-27 18:52:21 +03002272 int start;
2273
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002274 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002275 used = vq->used->ring + start;
Jason Wangc49e4e52013-09-02 16:40:58 +08002276 if (count == 1) {
Jason Wangbfe2bc52016-06-23 02:04:30 -04002277 if (vhost_put_user(vq, heads[0].id, &used->id)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002278 vq_err(vq, "Failed to write used id");
2279 return -EFAULT;
2280 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002281 if (vhost_put_user(vq, heads[0].len, &used->len)) {
Jason Wangc49e4e52013-09-02 16:40:58 +08002282 vq_err(vq, "Failed to write used len");
2283 return -EFAULT;
2284 }
Jason Wangbfe2bc52016-06-23 02:04:30 -04002285 } else if (vhost_copy_to_user(vq, used, heads, count * sizeof *used)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002286 vq_err(vq, "Failed to write used");
2287 return -EFAULT;
2288 }
2289 if (unlikely(vq->log_used)) {
2290 /* Make sure data is seen before log. */
2291 smp_wmb();
2292 /* Log used ring entry write. */
Jason Wangcc5e7102019-01-16 16:54:42 +08002293 log_used(vq, ((void __user *)used - (void __user *)vq->used),
2294 count * sizeof *used);
David Stevens8dd014a2010-07-27 18:52:21 +03002295 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002296 old = vq->last_used_idx;
2297 new = (vq->last_used_idx += count);
2298 /* If the driver never bothers to signal in a very long while,
2299 * used index might wrap around. If that happens, invalidate
2300 * signalled_used index we stored. TODO: make sure driver
2301 * signals at least once in 2^16 and remove this. */
2302 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2303 vq->signalled_used_valid = false;
David Stevens8dd014a2010-07-27 18:52:21 +03002304 return 0;
2305}
2306
2307/* After we've used one of their buffers, we tell them about it. We'll then
2308 * want to notify the guest, using eventfd. */
2309int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2310 unsigned count)
2311{
2312 int start, n, r;
2313
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002314 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002315 n = vq->num - start;
2316 if (n < count) {
2317 r = __vhost_add_used_n(vq, heads, n);
2318 if (r < 0)
2319 return r;
2320 heads += n;
2321 count -= n;
2322 }
2323 r = __vhost_add_used_n(vq, heads, count);
2324
2325 /* Make sure buffer is written before we update index. */
2326 smp_wmb();
Jason Wangbfe2bc52016-06-23 02:04:30 -04002327 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
2328 &vq->used->idx)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002329 vq_err(vq, "Failed to increment used idx");
2330 return -EFAULT;
2331 }
2332 if (unlikely(vq->log_used)) {
Jason Wang841df922018-12-13 10:53:37 +08002333 /* Make sure used idx is seen before log. */
2334 smp_wmb();
David Stevens8dd014a2010-07-27 18:52:21 +03002335 /* Log used index update. */
Jason Wangcc5e7102019-01-16 16:54:42 +08002336 log_used(vq, offsetof(struct vring_used, idx),
2337 sizeof vq->used->idx);
David Stevens8dd014a2010-07-27 18:52:21 +03002338 if (vq->log_ctx)
2339 eventfd_signal(vq->log_ctx, 1);
2340 }
2341 return r;
2342}
Asias He6ac1afb2013-05-06 16:38:21 +08002343EXPORT_SYMBOL_GPL(vhost_add_used_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002344
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002345static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002346{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002347 __u16 old, new;
2348 __virtio16 event;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002349 bool v;
Jason Wang8d658432017-07-27 11:22:05 +08002350 /* Flush out used index updates. This is paired
2351 * with the barrier that the Guest executes when enabling
2352 * interrupts. */
2353 smp_mb();
Michael S. Tsirkin0d499352010-05-11 19:44:17 +03002354
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002355 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002356 unlikely(vq->avail_idx == vq->last_avail_idx))
2357 return true;
2358
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002359 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002360 __virtio16 flags;
Jason Wangf8894912017-02-28 17:56:02 +08002361 if (vhost_get_avail(vq, flags, &vq->avail->flags)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002362 vq_err(vq, "Failed to get flags");
2363 return true;
2364 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002365 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002366 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002367 old = vq->signalled_used;
2368 v = vq->signalled_used_valid;
2369 new = vq->signalled_used = vq->last_used_idx;
2370 vq->signalled_used_valid = true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002371
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002372 if (unlikely(!v))
2373 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002374
Jason Wangf8894912017-02-28 17:56:02 +08002375 if (vhost_get_avail(vq, event, vhost_used_event(vq))) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002376 vq_err(vq, "Failed to get used event idx");
2377 return true;
2378 }
Jason Wang8d658432017-07-27 11:22:05 +08002379 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002380}
2381
2382/* This actually signals the guest, using eventfd. */
2383void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2384{
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002385 /* Signal the Guest tell them we used something up. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002386 if (vq->call_ctx && vhost_notify(dev, vq))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002387 eventfd_signal(vq->call_ctx, 1);
2388}
Asias He6ac1afb2013-05-06 16:38:21 +08002389EXPORT_SYMBOL_GPL(vhost_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002390
2391/* And here's the combo meal deal. Supersize me! */
2392void vhost_add_used_and_signal(struct vhost_dev *dev,
2393 struct vhost_virtqueue *vq,
2394 unsigned int head, int len)
2395{
2396 vhost_add_used(vq, head, len);
2397 vhost_signal(dev, vq);
2398}
Asias He6ac1afb2013-05-06 16:38:21 +08002399EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002400
David Stevens8dd014a2010-07-27 18:52:21 +03002401/* multi-buffer version of vhost_add_used_and_signal */
2402void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2403 struct vhost_virtqueue *vq,
2404 struct vring_used_elem *heads, unsigned count)
2405{
2406 vhost_add_used_n(vq, heads, count);
2407 vhost_signal(dev, vq);
2408}
Asias He6ac1afb2013-05-06 16:38:21 +08002409EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002410
Jason Wangd4a60602016-03-04 06:24:52 -05002411/* return true if we're sure that avaiable ring is empty */
2412bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2413{
2414 __virtio16 avail_idx;
2415 int r;
2416
Jason Wang275bf962017-01-18 15:02:01 +08002417 if (vq->avail_idx != vq->last_avail_idx)
Jason Wangd4a60602016-03-04 06:24:52 -05002418 return false;
2419
Linus Torvalds54d79892017-03-02 13:53:13 -08002420 r = vhost_get_avail(vq, avail_idx, &vq->avail->idx);
Jason Wang275bf962017-01-18 15:02:01 +08002421 if (unlikely(r))
2422 return false;
2423 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2424
2425 return vq->avail_idx == vq->last_avail_idx;
Jason Wangd4a60602016-03-04 06:24:52 -05002426}
2427EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2428
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002429/* OK, now we need to know about added descriptors. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002430bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002431{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002432 __virtio16 avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002433 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302434
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002435 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2436 return false;
2437 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002438 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002439 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002440 if (r) {
2441 vq_err(vq, "Failed to enable notification at %p: %d\n",
2442 &vq->used->flags, r);
2443 return false;
2444 }
2445 } else {
Jason Wang2723fea2011-06-21 18:04:38 +08002446 r = vhost_update_avail_event(vq, vq->avail_idx);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002447 if (r) {
2448 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2449 vhost_avail_event(vq), r);
2450 return false;
2451 }
2452 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002453 /* They could have slipped one in as we were doing that: make
2454 * sure it's written, then check again. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00002455 smp_mb();
Jason Wangf8894912017-02-28 17:56:02 +08002456 r = vhost_get_avail(vq, avail_idx, &vq->avail->idx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002457 if (r) {
2458 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2459 &vq->avail->idx, r);
2460 return false;
2461 }
2462
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002463 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002464}
Asias He6ac1afb2013-05-06 16:38:21 +08002465EXPORT_SYMBOL_GPL(vhost_enable_notify);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002466
2467/* We don't need to be notified again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002468void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002469{
2470 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302471
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002472 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2473 return;
2474 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002475 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002476 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002477 if (r)
2478 vq_err(vq, "Failed to enable notification at %p: %d\n",
2479 &vq->used->flags, r);
2480 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002481}
Asias He6ac1afb2013-05-06 16:38:21 +08002482EXPORT_SYMBOL_GPL(vhost_disable_notify);
2483
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002484/* Create a new message. */
2485struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2486{
2487 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2488 if (!node)
2489 return NULL;
Michael S. Tsirkin670ae9c2018-05-12 00:33:10 +03002490
2491 /* Make sure all padding within the structure is initialized. */
2492 memset(&node->msg, 0, sizeof node->msg);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002493 node->vq = vq;
2494 node->msg.type = type;
2495 return node;
2496}
2497EXPORT_SYMBOL_GPL(vhost_new_msg);
2498
2499void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2500 struct vhost_msg_node *node)
2501{
2502 spin_lock(&dev->iotlb_lock);
2503 list_add_tail(&node->node, head);
2504 spin_unlock(&dev->iotlb_lock);
2505
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002506 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002507}
2508EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2509
2510struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2511 struct list_head *head)
2512{
2513 struct vhost_msg_node *node = NULL;
2514
2515 spin_lock(&dev->iotlb_lock);
2516 if (!list_empty(head)) {
2517 node = list_first_entry(head, struct vhost_msg_node,
2518 node);
2519 list_del(&node->node);
2520 }
2521 spin_unlock(&dev->iotlb_lock);
2522
2523 return node;
2524}
2525EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2526
2527
Asias He6ac1afb2013-05-06 16:38:21 +08002528static int __init vhost_init(void)
2529{
2530 return 0;
2531}
2532
2533static void __exit vhost_exit(void)
2534{
2535}
2536
2537module_init(vhost_init);
2538module_exit(vhost_exit);
2539
2540MODULE_VERSION("0.0.1");
2541MODULE_LICENSE("GPL v2");
2542MODULE_AUTHOR("Michael S. Tsirkin");
2543MODULE_DESCRIPTION("Host kernel accelerator for virtio");