blob: 5ccb0705beae172c4c8acef4a42b06286573aa92 [file] [log] [blame]
Thomas Gleixner7a338472019-06-04 10:11:15 +02001// SPDX-License-Identifier: GPL-2.0-only
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002/* Copyright (C) 2009 Red Hat, Inc.
3 * Copyright (C) 2006 Rusty Russell IBM Corporation
4 *
5 * Author: Michael S. Tsirkin <mst@redhat.com>
6 *
7 * Inspiration, some code, and most witty comments come from
Rob Landley61516582011-05-06 09:27:36 -07008 * Documentation/virtual/lguest/lguest.c, by Rusty Russell
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00009 *
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000010 * Generic code for virtio server in host kernel.
11 */
12
13#include <linux/eventfd.h>
14#include <linux/vhost.h>
Asias He35596b22013-08-19 09:23:19 +080015#include <linux/uio.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000016#include <linux/mm.h>
17#include <linux/miscdevice.h>
18#include <linux/mutex.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000019#include <linux/poll.h>
20#include <linux/file.h>
21#include <linux/highmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Igor Mammedov4de72552015-07-01 11:07:09 +020023#include <linux/vmalloc.h>
Tejun Heoc23f34452010-06-02 20:40:00 +020024#include <linux/kthread.h>
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +030025#include <linux/cgroup.h>
Asias He6ac1afb2013-05-06 16:38:21 +080026#include <linux/module.h>
Igor Mammedovbcfeaca2015-06-16 18:33:35 +020027#include <linux/sort.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010028#include <linux/sched/mm.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010029#include <linux/sched/signal.h>
Jason Wanga9709d62016-06-23 02:04:31 -040030#include <linux/interval_tree_generic.h>
Jason Wangff002262018-10-30 14:10:49 +080031#include <linux/nospec.h>
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -080032#include <linux/kcov.h>
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000033
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000034#include "vhost.h"
35
Igor Mammedovc9ce42f2015-07-02 15:08:11 +020036static ushort max_mem_regions = 64;
37module_param(max_mem_regions, ushort, 0444);
38MODULE_PARM_DESC(max_mem_regions,
39 "Maximum number of memory regions in memory map. (default: 64)");
Jason Wang6b1e6cc2016-06-23 02:04:32 -040040static int max_iotlb_entries = 2048;
41module_param(max_iotlb_entries, int, 0444);
42MODULE_PARM_DESC(max_iotlb_entries,
43 "Maximum number of iotlb entries. (default: 2048)");
Igor Mammedovc9ce42f2015-07-02 15:08:11 +020044
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000045enum {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +000046 VHOST_MEMORY_F_LOG = 0x1,
47};
48
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +030049#define vhost_used_event(vq) ((__virtio16 __user *)&vq->avail->ring[vq->num])
50#define vhost_avail_event(vq) ((__virtio16 __user *)&vq->used->ring[vq->num])
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +030051
Greg Kurz2751c982015-04-24 14:27:24 +020052#ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
Greg Kurzc5072032016-02-16 15:59:34 +010053static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
Greg Kurz2751c982015-04-24 14:27:24 +020054{
55 vq->user_be = !virtio_legacy_is_little_endian();
56}
57
Greg Kurzc5072032016-02-16 15:59:34 +010058static void vhost_enable_cross_endian_big(struct vhost_virtqueue *vq)
59{
60 vq->user_be = true;
61}
62
63static void vhost_enable_cross_endian_little(struct vhost_virtqueue *vq)
64{
65 vq->user_be = false;
66}
67
Greg Kurz2751c982015-04-24 14:27:24 +020068static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
69{
70 struct vhost_vring_state s;
71
72 if (vq->private_data)
73 return -EBUSY;
74
75 if (copy_from_user(&s, argp, sizeof(s)))
76 return -EFAULT;
77
78 if (s.num != VHOST_VRING_LITTLE_ENDIAN &&
79 s.num != VHOST_VRING_BIG_ENDIAN)
80 return -EINVAL;
81
Greg Kurzc5072032016-02-16 15:59:34 +010082 if (s.num == VHOST_VRING_BIG_ENDIAN)
83 vhost_enable_cross_endian_big(vq);
84 else
85 vhost_enable_cross_endian_little(vq);
Greg Kurz2751c982015-04-24 14:27:24 +020086
87 return 0;
88}
89
90static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
91 int __user *argp)
92{
93 struct vhost_vring_state s = {
94 .index = idx,
95 .num = vq->user_be
96 };
97
98 if (copy_to_user(argp, &s, sizeof(s)))
99 return -EFAULT;
100
101 return 0;
102}
103
104static void vhost_init_is_le(struct vhost_virtqueue *vq)
105{
106 /* Note for legacy virtio: user_be is initialized at reset time
107 * according to the host endianness. If userspace does not set an
108 * explicit endianness, the default behavior is native endian, as
109 * expected by legacy virtio.
110 */
111 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1) || !vq->user_be;
112}
113#else
Greg Kurzc5072032016-02-16 15:59:34 +0100114static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
Greg Kurz2751c982015-04-24 14:27:24 +0200115{
116}
117
118static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
119{
120 return -ENOIOCTLCMD;
121}
122
123static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
124 int __user *argp)
125{
126 return -ENOIOCTLCMD;
127}
128
129static void vhost_init_is_le(struct vhost_virtqueue *vq)
130{
Halil Pasiccda8bba2017-01-30 11:09:36 +0100131 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1)
132 || virtio_legacy_is_little_endian();
Greg Kurz2751c982015-04-24 14:27:24 +0200133}
134#endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */
135
Greg Kurzc5072032016-02-16 15:59:34 +0100136static void vhost_reset_is_le(struct vhost_virtqueue *vq)
137{
Halil Pasiccda8bba2017-01-30 11:09:36 +0100138 vhost_init_is_le(vq);
Greg Kurzc5072032016-02-16 15:59:34 +0100139}
140
Jason Wang7235acd2016-04-25 22:14:32 -0400141struct vhost_flush_struct {
142 struct vhost_work work;
143 struct completion wait_event;
144};
145
146static void vhost_flush_work(struct vhost_work *work)
147{
148 struct vhost_flush_struct *s;
149
150 s = container_of(work, struct vhost_flush_struct, work);
151 complete(&s->wait_event);
152}
153
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000154static void vhost_poll_func(struct file *file, wait_queue_head_t *wqh,
155 poll_table *pt)
156{
157 struct vhost_poll *poll;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000158
Krishna Kumard47effe2011-03-01 17:06:37 +0530159 poll = container_of(pt, struct vhost_poll, table);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000160 poll->wqh = wqh;
161 add_wait_queue(wqh, &poll->wait);
162}
163
Ingo Molnarac6424b2017-06-20 12:06:13 +0200164static int vhost_poll_wakeup(wait_queue_entry_t *wait, unsigned mode, int sync,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000165 void *key)
166{
Tejun Heoc23f34452010-06-02 20:40:00 +0200167 struct vhost_poll *poll = container_of(wait, struct vhost_poll, wait);
Jason Wang01fcb1c2020-05-29 16:02:58 +0800168 struct vhost_work *work = &poll->work;
Tejun Heoc23f34452010-06-02 20:40:00 +0200169
Al Viro3ad6f932017-07-03 20:14:56 -0400170 if (!(key_to_poll(key) & poll->mask))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000171 return 0;
172
Jason Wang01fcb1c2020-05-29 16:02:58 +0800173 if (!poll->dev->use_worker)
174 work->fn(work);
175 else
176 vhost_poll_queue(poll);
177
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;
Krishna Kumard47effe2011-03-01 17:06:37 +0530207
Jason Wang70181d512013-04-10 20:50:48 +0000208 if (poll->wqh)
209 return 0;
210
Christoph Hellwig9965ed172018-03-05 07:26:05 -0800211 mask = vfs_poll(file, &poll->table);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000212 if (mask)
Al Viro3ad6f932017-07-03 20:14:56 -0400213 vhost_poll_wakeup(&poll->wait, 0, 0, poll_to_key(mask));
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800214 if (mask & EPOLLERR) {
Jason Wangdc6455a2018-03-27 20:50:52 +0800215 vhost_poll_stop(poll);
Yunsheng Lin896fc242019-08-20 20:36:32 +0800216 return -EINVAL;
Jason Wang2b8b3282013-01-28 01:05:18 +0000217 }
218
Yunsheng Lin896fc242019-08-20 20:36:32 +0800219 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000220}
Asias He6ac1afb2013-05-06 16:38:21 +0800221EXPORT_SYMBOL_GPL(vhost_poll_start);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000222
223/* Stop polling a file. After this function returns, it becomes safe to drop the
224 * file reference. You must also flush afterwards. */
225void vhost_poll_stop(struct vhost_poll *poll)
226{
Jason Wang2b8b3282013-01-28 01:05:18 +0000227 if (poll->wqh) {
228 remove_wait_queue(poll->wqh, &poll->wait);
229 poll->wqh = NULL;
230 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000231}
Asias He6ac1afb2013-05-06 16:38:21 +0800232EXPORT_SYMBOL_GPL(vhost_poll_stop);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000233
Asias He6ac1afb2013-05-06 16:38:21 +0800234void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000235{
Jason Wang7235acd2016-04-25 22:14:32 -0400236 struct vhost_flush_struct flush;
Tejun Heoc23f34452010-06-02 20:40:00 +0200237
Jason Wang7235acd2016-04-25 22:14:32 -0400238 if (dev->worker) {
239 init_completion(&flush.wait_event);
240 vhost_work_init(&flush.work, vhost_flush_work);
241
242 vhost_work_queue(dev, &flush.work);
243 wait_for_completion(&flush.wait_event);
244 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000245}
Asias He6ac1afb2013-05-06 16:38:21 +0800246EXPORT_SYMBOL_GPL(vhost_work_flush);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000247
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300248/* Flush any work that has been scheduled. When calling this, don't hold any
249 * locks that are also used by the callback. */
250void vhost_poll_flush(struct vhost_poll *poll)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000251{
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300252 vhost_work_flush(poll->dev, &poll->work);
253}
Asias He6ac1afb2013-05-06 16:38:21 +0800254EXPORT_SYMBOL_GPL(vhost_poll_flush);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300255
Stefan Hajnoczi163049a2012-07-21 06:55:37 +0000256void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work)
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300257{
Jason Wang04b96e52016-04-25 22:14:33 -0400258 if (!dev->worker)
259 return;
Tejun Heoc23f34452010-06-02 20:40:00 +0200260
Jason Wang04b96e52016-04-25 22:14:33 -0400261 if (!test_and_set_bit(VHOST_WORK_QUEUED, &work->flags)) {
262 /* We can only add the work to the list after we're
263 * sure it was not in the list.
Peng Tao635abf02016-12-07 17:52:19 +0800264 * test_and_set_bit() implies a memory barrier.
Jason Wang04b96e52016-04-25 22:14:33 -0400265 */
Jason Wang04b96e52016-04-25 22:14:33 -0400266 llist_add(&work->node, &dev->work_list);
Tejun Heoc23f34452010-06-02 20:40:00 +0200267 wake_up_process(dev->worker);
268 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000269}
Asias He6ac1afb2013-05-06 16:38:21 +0800270EXPORT_SYMBOL_GPL(vhost_work_queue);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000271
Jason Wang526d3e72016-03-04 06:24:51 -0500272/* A lockless hint for busy polling code to exit the loop */
273bool vhost_has_work(struct vhost_dev *dev)
274{
Jason Wang04b96e52016-04-25 22:14:33 -0400275 return !llist_empty(&dev->work_list);
Jason Wang526d3e72016-03-04 06:24:51 -0500276}
277EXPORT_SYMBOL_GPL(vhost_has_work);
278
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300279void vhost_poll_queue(struct vhost_poll *poll)
280{
281 vhost_work_queue(poll->dev, &poll->work);
282}
Asias He6ac1afb2013-05-06 16:38:21 +0800283EXPORT_SYMBOL_GPL(vhost_poll_queue);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300284
Jason Wangf8894912017-02-28 17:56:02 +0800285static void __vhost_vq_meta_reset(struct vhost_virtqueue *vq)
286{
287 int j;
288
289 for (j = 0; j < VHOST_NUM_ADDRS; j++)
290 vq->meta_iotlb[j] = NULL;
291}
292
293static void vhost_vq_meta_reset(struct vhost_dev *d)
294{
295 int i;
296
Jason Wang86a07da2018-12-13 10:53:39 +0800297 for (i = 0; i < d->nvqs; ++i)
Jason Wangf8894912017-02-28 17:56:02 +0800298 __vhost_vq_meta_reset(d->vqs[i]);
299}
300
Zhu Lingshan265a0ad2020-07-31 14:55:28 +0800301static void vhost_vring_call_reset(struct vhost_vring_call *call_ctx)
302{
303 call_ctx->ctx = NULL;
304 memset(&call_ctx->producer, 0x0, sizeof(struct irq_bypass_producer));
Zhu Lingshan265a0ad2020-07-31 14:55:28 +0800305}
306
Mike Christie6bcf3422020-11-09 23:33:19 -0600307bool vhost_vq_is_setup(struct vhost_virtqueue *vq)
308{
309 return vq->avail && vq->desc && vq->used && vhost_vq_access_ok(vq);
310}
311EXPORT_SYMBOL_GPL(vhost_vq_is_setup);
312
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000313static void vhost_vq_reset(struct vhost_dev *dev,
314 struct vhost_virtqueue *vq)
315{
316 vq->num = 1;
317 vq->desc = NULL;
318 vq->avail = NULL;
319 vq->used = NULL;
320 vq->last_avail_idx = 0;
321 vq->avail_idx = 0;
322 vq->last_used_idx = 0;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300323 vq->signalled_used = 0;
324 vq->signalled_used_valid = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000325 vq->used_flags = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000326 vq->log_used = false;
327 vq->log_addr = -1ull;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000328 vq->private_data = NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300329 vq->acked_features = 0;
Jason Wang429711a2018-08-06 11:17:47 +0800330 vq->acked_backend_features = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000331 vq->log_base = NULL;
332 vq->error_ctx = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000333 vq->kick = NULL;
Michael S. Tsirkin73a99f02010-02-23 11:23:45 +0200334 vq->log_ctx = NULL;
Greg Kurzc5072032016-02-16 15:59:34 +0100335 vhost_disable_cross_endian(vq);
Laurent Vivierbeb691e2021-03-12 15:09:13 +0100336 vhost_reset_is_le(vq);
Jason Wang03088132016-03-04 06:24:53 -0500337 vq->busyloop_timeout = 0;
Jason Wanga9709d62016-06-23 02:04:31 -0400338 vq->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400339 vq->iotlb = NULL;
Zhu Lingshan265a0ad2020-07-31 14:55:28 +0800340 vhost_vring_call_reset(&vq->call_ctx);
Jason Wangf8894912017-02-28 17:56:02 +0800341 __vhost_vq_meta_reset(vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000342}
343
Tejun Heoc23f34452010-06-02 20:40:00 +0200344static int vhost_worker(void *data)
345{
346 struct vhost_dev *dev = data;
Jason Wang04b96e52016-04-25 22:14:33 -0400347 struct vhost_work *work, *work_next;
348 struct llist_node *node;
Tejun Heoc23f34452010-06-02 20:40:00 +0200349
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700350 kthread_use_mm(dev->mm);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200351
Tejun Heoc23f34452010-06-02 20:40:00 +0200352 for (;;) {
353 /* mb paired w/ kthread_stop */
354 set_current_state(TASK_INTERRUPTIBLE);
355
Tejun Heoc23f34452010-06-02 20:40:00 +0200356 if (kthread_should_stop()) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200357 __set_current_state(TASK_RUNNING);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200358 break;
Tejun Heoc23f34452010-06-02 20:40:00 +0200359 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200360
Jason Wang04b96e52016-04-25 22:14:33 -0400361 node = llist_del_all(&dev->work_list);
362 if (!node)
363 schedule();
364
365 node = llist_reverse_order(node);
366 /* make sure flag is seen after deletion */
367 smp_wmb();
368 llist_for_each_entry_safe(work, work_next, node, node) {
369 clear_bit(VHOST_WORK_QUEUED, &work->flags);
Tejun Heoc23f34452010-06-02 20:40:00 +0200370 __set_current_state(TASK_RUNNING);
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800371 kcov_remote_start_common(dev->kcov_handle);
Tejun Heoc23f34452010-06-02 20:40:00 +0200372 work->fn(work);
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800373 kcov_remote_stop();
Nadav Har'Eld550dda2012-02-27 15:07:29 +0200374 if (need_resched())
375 schedule();
Jason Wang04b96e52016-04-25 22:14:33 -0400376 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200377 }
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700378 kthread_unuse_mm(dev->mm);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200379 return 0;
Tejun Heoc23f34452010-06-02 20:40:00 +0200380}
381
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000382static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq)
383{
384 kfree(vq->indirect);
385 vq->indirect = NULL;
386 kfree(vq->log);
387 vq->log = NULL;
388 kfree(vq->heads);
389 vq->heads = NULL;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000390}
391
Jason Wange0e9b402010-09-14 23:53:05 +0800392/* Helper to allocate iovec buffers for all vqs. */
393static long vhost_dev_alloc_iovecs(struct vhost_dev *dev)
394{
Asias He6d5e6aa2013-05-06 16:38:23 +0800395 struct vhost_virtqueue *vq;
Jason Wange0e9b402010-09-14 23:53:05 +0800396 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530397
Jason Wange0e9b402010-09-14 23:53:05 +0800398 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800399 vq = dev->vqs[i];
Kees Cook6da2ec52018-06-12 13:55:00 -0700400 vq->indirect = kmalloc_array(UIO_MAXIOV,
401 sizeof(*vq->indirect),
402 GFP_KERNEL);
Jason Wangb46a0bf2019-01-28 15:05:05 +0800403 vq->log = kmalloc_array(dev->iov_limit, sizeof(*vq->log),
Kees Cook6da2ec52018-06-12 13:55:00 -0700404 GFP_KERNEL);
Jason Wangb46a0bf2019-01-28 15:05:05 +0800405 vq->heads = kmalloc_array(dev->iov_limit, sizeof(*vq->heads),
Kees Cook6da2ec52018-06-12 13:55:00 -0700406 GFP_KERNEL);
Asias He6d5e6aa2013-05-06 16:38:23 +0800407 if (!vq->indirect || !vq->log || !vq->heads)
Jason Wange0e9b402010-09-14 23:53:05 +0800408 goto err_nomem;
409 }
410 return 0;
Krishna Kumard47effe2011-03-01 17:06:37 +0530411
Jason Wange0e9b402010-09-14 23:53:05 +0800412err_nomem:
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000413 for (; i >= 0; --i)
Asias He3ab2e422013-04-27 11:16:48 +0800414 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800415 return -ENOMEM;
416}
417
418static void vhost_dev_free_iovecs(struct vhost_dev *dev)
419{
420 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530421
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000422 for (i = 0; i < dev->nvqs; ++i)
Asias He3ab2e422013-04-27 11:16:48 +0800423 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800424}
425
Jason Wange82b9b02019-05-17 00:29:49 -0400426bool vhost_exceeds_weight(struct vhost_virtqueue *vq,
427 int pkts, int total_len)
428{
429 struct vhost_dev *dev = vq->dev;
430
431 if ((dev->byte_weight && total_len >= dev->byte_weight) ||
432 pkts >= dev->weight) {
433 vhost_poll_queue(&vq->poll);
434 return true;
435 }
436
437 return false;
438}
439EXPORT_SYMBOL_GPL(vhost_exceeds_weight);
440
Jason Wang4942e822019-05-24 04:12:16 -0400441static size_t vhost_get_avail_size(struct vhost_virtqueue *vq,
442 unsigned int num)
443{
444 size_t event __maybe_unused =
445 vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
446
447 return sizeof(*vq->avail) +
448 sizeof(*vq->avail->ring) * num + event;
449}
450
451static size_t vhost_get_used_size(struct vhost_virtqueue *vq,
452 unsigned int num)
453{
454 size_t event __maybe_unused =
455 vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
456
457 return sizeof(*vq->used) +
458 sizeof(*vq->used->ring) * num + event;
459}
460
461static size_t vhost_get_desc_size(struct vhost_virtqueue *vq,
462 unsigned int num)
463{
464 return sizeof(*vq->desc) * num;
465}
466
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800467void vhost_dev_init(struct vhost_dev *dev,
Jason Wange82b9b02019-05-17 00:29:49 -0400468 struct vhost_virtqueue **vqs, int nvqs,
Jason Wang792a4f22020-03-26 22:01:18 +0800469 int iov_limit, int weight, int byte_weight,
Jason Wang01fcb1c2020-05-29 16:02:58 +0800470 bool use_worker,
Jason Wang792a4f22020-03-26 22:01:18 +0800471 int (*msg_handler)(struct vhost_dev *dev,
472 struct vhost_iotlb_msg *msg))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000473{
Asias He6d5e6aa2013-05-06 16:38:23 +0800474 struct vhost_virtqueue *vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000475 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200476
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000477 dev->vqs = vqs;
478 dev->nvqs = nvqs;
479 mutex_init(&dev->mutex);
480 dev->log_ctx = NULL;
Jason Wanga9709d62016-06-23 02:04:31 -0400481 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400482 dev->iotlb = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000483 dev->mm = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200484 dev->worker = NULL;
Jason Wangb46a0bf2019-01-28 15:05:05 +0800485 dev->iov_limit = iov_limit;
Jason Wange82b9b02019-05-17 00:29:49 -0400486 dev->weight = weight;
487 dev->byte_weight = byte_weight;
Jason Wang01fcb1c2020-05-29 16:02:58 +0800488 dev->use_worker = use_worker;
Jason Wang792a4f22020-03-26 22:01:18 +0800489 dev->msg_handler = msg_handler;
Jason Wang04b96e52016-04-25 22:14:33 -0400490 init_llist_head(&dev->work_list);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400491 init_waitqueue_head(&dev->wait);
492 INIT_LIST_HEAD(&dev->read_list);
493 INIT_LIST_HEAD(&dev->pending_list);
494 spin_lock_init(&dev->iotlb_lock);
Michael S. Tsirkin3d2c7d32019-08-10 13:53:21 -0400495
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000496
497 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800498 vq = dev->vqs[i];
499 vq->log = NULL;
500 vq->indirect = NULL;
501 vq->heads = NULL;
502 vq->dev = dev;
503 mutex_init(&vq->mutex);
504 vhost_vq_reset(dev, vq);
505 if (vq->handle_kick)
506 vhost_poll_init(&vq->poll, vq->handle_kick,
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800507 EPOLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000508 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000509}
Asias He6ac1afb2013-05-06 16:38:21 +0800510EXPORT_SYMBOL_GPL(vhost_dev_init);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000511
512/* Caller should have device mutex */
513long vhost_dev_check_owner(struct vhost_dev *dev)
514{
515 /* Are you the owner? If not, I don't think you mean to do that */
516 return dev->mm == current->mm ? 0 : -EPERM;
517}
Asias He6ac1afb2013-05-06 16:38:21 +0800518EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000519
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300520struct vhost_attach_cgroups_struct {
Krishna Kumard47effe2011-03-01 17:06:37 +0530521 struct vhost_work work;
522 struct task_struct *owner;
523 int ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300524};
525
526static void vhost_attach_cgroups_work(struct vhost_work *work)
527{
Krishna Kumard47effe2011-03-01 17:06:37 +0530528 struct vhost_attach_cgroups_struct *s;
529
530 s = container_of(work, struct vhost_attach_cgroups_struct, work);
531 s->ret = cgroup_attach_task_all(s->owner, current);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300532}
533
534static int vhost_attach_cgroups(struct vhost_dev *dev)
535{
Krishna Kumard47effe2011-03-01 17:06:37 +0530536 struct vhost_attach_cgroups_struct attach;
537
538 attach.owner = current;
539 vhost_work_init(&attach.work, vhost_attach_cgroups_work);
540 vhost_work_queue(dev, &attach.work);
541 vhost_work_flush(dev, &attach.work);
542 return attach.ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300543}
544
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000545/* Caller should have device mutex */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300546bool vhost_dev_has_owner(struct vhost_dev *dev)
547{
548 return dev->mm;
549}
Asias He6ac1afb2013-05-06 16:38:21 +0800550EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300551
Jason Wang5ce995f2020-05-29 16:02:59 +0800552static void vhost_attach_mm(struct vhost_dev *dev)
553{
554 /* No owner, become one */
555 if (dev->use_worker) {
556 dev->mm = get_task_mm(current);
557 } else {
558 /* vDPA device does not use worker thead, so there's
559 * no need to hold the address space for mm. This help
560 * to avoid deadlock in the case of mmap() which may
561 * held the refcnt of the file and depends on release
562 * method to remove vma.
563 */
564 dev->mm = current->mm;
565 mmgrab(dev->mm);
566 }
567}
568
569static void vhost_detach_mm(struct vhost_dev *dev)
570{
571 if (!dev->mm)
572 return;
573
574 if (dev->use_worker)
575 mmput(dev->mm);
576 else
577 mmdrop(dev->mm);
578
579 dev->mm = NULL;
580}
581
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300582/* Caller should have device mutex */
Asias He54db63c2013-05-06 11:15:59 +0800583long vhost_dev_set_owner(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000584{
Tejun Heoc23f34452010-06-02 20:40:00 +0200585 struct task_struct *worker;
586 int err;
Krishna Kumard47effe2011-03-01 17:06:37 +0530587
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000588 /* Is there an owner already? */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300589 if (vhost_dev_has_owner(dev)) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200590 err = -EBUSY;
591 goto err_mm;
592 }
Krishna Kumard47effe2011-03-01 17:06:37 +0530593
Jason Wang5ce995f2020-05-29 16:02:59 +0800594 vhost_attach_mm(dev);
595
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800596 dev->kcov_handle = kcov_common_handle();
Jason Wang01fcb1c2020-05-29 16:02:58 +0800597 if (dev->use_worker) {
598 worker = kthread_create(vhost_worker, dev,
599 "vhost-%d", current->pid);
600 if (IS_ERR(worker)) {
601 err = PTR_ERR(worker);
602 goto err_worker;
603 }
604
605 dev->worker = worker;
606 wake_up_process(worker); /* avoid contributing to loadavg */
607
608 err = vhost_attach_cgroups(dev);
609 if (err)
610 goto err_cgroup;
Tejun Heoc23f34452010-06-02 20:40:00 +0200611 }
612
Jason Wange0e9b402010-09-14 23:53:05 +0800613 err = vhost_dev_alloc_iovecs(dev);
614 if (err)
615 goto err_cgroup;
616
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000617 return 0;
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300618err_cgroup:
Jason Wang01fcb1c2020-05-29 16:02:58 +0800619 if (dev->worker) {
620 kthread_stop(dev->worker);
621 dev->worker = NULL;
622 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200623err_worker:
Jason Wang5ce995f2020-05-29 16:02:59 +0800624 vhost_detach_mm(dev);
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800625 dev->kcov_handle = 0;
Tejun Heoc23f34452010-06-02 20:40:00 +0200626err_mm:
627 return err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000628}
Asias He6ac1afb2013-05-06 16:38:21 +0800629EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000630
Jason Wang0bbe3062020-03-26 22:01:19 +0800631static struct vhost_iotlb *iotlb_alloc(void)
Jason Wanga9709d62016-06-23 02:04:31 -0400632{
Jason Wang0bbe3062020-03-26 22:01:19 +0800633 return vhost_iotlb_alloc(max_iotlb_entries,
634 VHOST_IOTLB_FLAG_RETIRE);
635}
636
637struct vhost_iotlb *vhost_dev_reset_owner_prepare(void)
638{
639 return iotlb_alloc();
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300640}
Asias He6ac1afb2013-05-06 16:38:21 +0800641EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000642
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300643/* Caller should have device mutex */
Jason Wang0bbe3062020-03-26 22:01:19 +0800644void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_iotlb *umem)
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300645{
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300646 int i;
647
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800648 vhost_dev_cleanup(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000649
Jason Wanga9709d62016-06-23 02:04:31 -0400650 dev->umem = umem;
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300651 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
652 * VQs aren't running.
653 */
654 for (i = 0; i < dev->nvqs; ++i)
Jason Wanga9709d62016-06-23 02:04:31 -0400655 dev->vqs[i]->umem = umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000656}
Asias He6ac1afb2013-05-06 16:38:21 +0800657EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000658
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000659void vhost_dev_stop(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000660{
661 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530662
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000663 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800664 if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
665 vhost_poll_stop(&dev->vqs[i]->poll);
666 vhost_poll_flush(&dev->vqs[i]->poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000667 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000668 }
669}
Asias He6ac1afb2013-05-06 16:38:21 +0800670EXPORT_SYMBOL_GPL(vhost_dev_stop);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000671
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400672static void vhost_clear_msg(struct vhost_dev *dev)
673{
674 struct vhost_msg_node *node, *n;
675
676 spin_lock(&dev->iotlb_lock);
677
678 list_for_each_entry_safe(node, n, &dev->read_list, node) {
679 list_del(&node->node);
680 kfree(node);
681 }
682
683 list_for_each_entry_safe(node, n, &dev->pending_list, node) {
684 list_del(&node->node);
685 kfree(node);
686 }
687
688 spin_unlock(&dev->iotlb_lock);
689}
690
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800691void vhost_dev_cleanup(struct vhost_dev *dev)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000692{
693 int i;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000694
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000695 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800696 if (dev->vqs[i]->error_ctx)
697 eventfd_ctx_put(dev->vqs[i]->error_ctx);
Asias He3ab2e422013-04-27 11:16:48 +0800698 if (dev->vqs[i]->kick)
699 fput(dev->vqs[i]->kick);
Zhu Lingshan265a0ad2020-07-31 14:55:28 +0800700 if (dev->vqs[i]->call_ctx.ctx)
701 eventfd_ctx_put(dev->vqs[i]->call_ctx.ctx);
Asias He3ab2e422013-04-27 11:16:48 +0800702 vhost_vq_reset(dev, dev->vqs[i]);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000703 }
Jason Wange0e9b402010-09-14 23:53:05 +0800704 vhost_dev_free_iovecs(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000705 if (dev->log_ctx)
706 eventfd_ctx_put(dev->log_ctx);
707 dev->log_ctx = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000708 /* No one will access memory at this point */
Jason Wang0bbe3062020-03-26 22:01:19 +0800709 vhost_iotlb_free(dev->umem);
Jason Wanga9709d62016-06-23 02:04:31 -0400710 dev->umem = NULL;
Jason Wang0bbe3062020-03-26 22:01:19 +0800711 vhost_iotlb_free(dev->iotlb);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400712 dev->iotlb = NULL;
713 vhost_clear_msg(dev);
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800714 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
Jason Wang04b96e52016-04-25 22:14:33 -0400715 WARN_ON(!llist_empty(&dev->work_list));
Eric Dumazet78b620c2010-08-31 02:05:57 +0000716 if (dev->worker) {
717 kthread_stop(dev->worker);
718 dev->worker = NULL;
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800719 dev->kcov_handle = 0;
Eric Dumazet78b620c2010-08-31 02:05:57 +0000720 }
Jason Wang5ce995f2020-05-29 16:02:59 +0800721 vhost_detach_mm(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000722}
Asias He6ac1afb2013-05-06 16:38:21 +0800723EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000724
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800725static bool log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000726{
727 u64 a = addr / VHOST_PAGE_SIZE / 8;
Krishna Kumard47effe2011-03-01 17:06:37 +0530728
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000729 /* Make sure 64 bit math will not overflow. */
730 if (a > ULONG_MAX - (unsigned long)log_base ||
731 a + (unsigned long)log_base > ULONG_MAX)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800732 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000733
Linus Torvalds96d4f262019-01-03 18:57:57 -0800734 return access_ok(log_base + a,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000735 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
736}
737
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300738static bool vhost_overflow(u64 uaddr, u64 size)
739{
740 /* Make sure 64 bit math will not overflow. */
741 return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
742}
743
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000744/* Caller should have vq mutex and device mutex. */
Jason Wang0bbe3062020-03-26 22:01:19 +0800745static bool vq_memory_access_ok(void __user *log_base, struct vhost_iotlb *umem,
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800746 int log_all)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000747{
Jason Wang0bbe3062020-03-26 22:01:19 +0800748 struct vhost_iotlb_map *map;
Jeff Dike179b2842010-04-07 09:59:10 -0400749
Jason Wanga9709d62016-06-23 02:04:31 -0400750 if (!umem)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800751 return false;
Jeff Dike179b2842010-04-07 09:59:10 -0400752
Jason Wang0bbe3062020-03-26 22:01:19 +0800753 list_for_each_entry(map, &umem->list, link) {
754 unsigned long a = map->addr;
Jason Wanga9709d62016-06-23 02:04:31 -0400755
Jason Wang0bbe3062020-03-26 22:01:19 +0800756 if (vhost_overflow(map->addr, map->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800757 return false;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300758
759
Jason Wang0bbe3062020-03-26 22:01:19 +0800760 if (!access_ok((void __user *)a, map->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800761 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000762 else if (log_all && !log_access_ok(log_base,
Jason Wang0bbe3062020-03-26 22:01:19 +0800763 map->start,
764 map->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800765 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000766 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800767 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000768}
769
Jason Wangf8894912017-02-28 17:56:02 +0800770static inline void __user *vhost_vq_meta_fetch(struct vhost_virtqueue *vq,
771 u64 addr, unsigned int size,
772 int type)
773{
Jason Wang0bbe3062020-03-26 22:01:19 +0800774 const struct vhost_iotlb_map *map = vq->meta_iotlb[type];
Jason Wangf8894912017-02-28 17:56:02 +0800775
Jason Wang0bbe3062020-03-26 22:01:19 +0800776 if (!map)
Jason Wangf8894912017-02-28 17:56:02 +0800777 return NULL;
778
Michael S. Tsirkin1b0be992020-05-15 11:29:53 -0400779 return (void __user *)(uintptr_t)(map->addr + addr - map->start);
Jason Wangf8894912017-02-28 17:56:02 +0800780}
781
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000782/* Can we switch to this memory table? */
783/* Caller should have device mutex but not vq mutex */
Jason Wang0bbe3062020-03-26 22:01:19 +0800784static bool memory_access_ok(struct vhost_dev *d, struct vhost_iotlb *umem,
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800785 int log_all)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000786{
787 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530788
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000789 for (i = 0; i < d->nvqs; ++i) {
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800790 bool ok;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300791 bool log;
792
Asias He3ab2e422013-04-27 11:16:48 +0800793 mutex_lock(&d->vqs[i]->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300794 log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000795 /* If ring is inactive, will check when it's enabled. */
Asias He3ab2e422013-04-27 11:16:48 +0800796 if (d->vqs[i]->private_data)
Jason Wanga9709d62016-06-23 02:04:31 -0400797 ok = vq_memory_access_ok(d->vqs[i]->log_base,
798 umem, log);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000799 else
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800800 ok = true;
Asias He3ab2e422013-04-27 11:16:48 +0800801 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000802 if (!ok)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800803 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000804 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800805 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000806}
807
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400808static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
809 struct iovec iov[], int iov_size, int access);
Jason Wangbfe2bc52016-06-23 02:04:30 -0400810
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200811static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
Jason Wangbfe2bc52016-06-23 02:04:30 -0400812 const void *from, unsigned size)
813{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400814 int ret;
Jason Wangbfe2bc52016-06-23 02:04:30 -0400815
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400816 if (!vq->iotlb)
817 return __copy_to_user(to, from, size);
818 else {
819 /* This function should be called after iotlb
820 * prefetch, which means we're sure that all vq
821 * could be access through iotlb. So -EAGAIN should
822 * not happen in this case.
823 */
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400824 struct iov_iter t;
Jason Wangf8894912017-02-28 17:56:02 +0800825 void __user *uaddr = vhost_vq_meta_fetch(vq,
826 (u64)(uintptr_t)to, size,
Eric Auger7ced6c92018-04-11 15:30:38 +0200827 VHOST_ADDR_USED);
Jason Wangf8894912017-02-28 17:56:02 +0800828
829 if (uaddr)
830 return __copy_to_user(uaddr, from, size);
831
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400832 ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
833 ARRAY_SIZE(vq->iotlb_iov),
834 VHOST_ACCESS_WO);
835 if (ret < 0)
836 goto out;
837 iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
838 ret = copy_to_iter(from, size, &t);
839 if (ret == size)
840 ret = 0;
841 }
842out:
843 return ret;
844}
Jason Wangbfe2bc52016-06-23 02:04:30 -0400845
846static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200847 void __user *from, unsigned size)
Jason Wangbfe2bc52016-06-23 02:04:30 -0400848{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400849 int ret;
850
851 if (!vq->iotlb)
852 return __copy_from_user(to, from, size);
853 else {
854 /* This function should be called after iotlb
855 * prefetch, which means we're sure that vq
856 * could be access through iotlb. So -EAGAIN should
857 * not happen in this case.
858 */
Jason Wangf8894912017-02-28 17:56:02 +0800859 void __user *uaddr = vhost_vq_meta_fetch(vq,
860 (u64)(uintptr_t)from, size,
861 VHOST_ADDR_DESC);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400862 struct iov_iter f;
Jason Wangf8894912017-02-28 17:56:02 +0800863
864 if (uaddr)
865 return __copy_from_user(to, uaddr, size);
866
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400867 ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
868 ARRAY_SIZE(vq->iotlb_iov),
869 VHOST_ACCESS_RO);
870 if (ret < 0) {
871 vq_err(vq, "IOTLB translation failure: uaddr "
872 "%p size 0x%llx\n", from,
873 (unsigned long long) size);
874 goto out;
875 }
876 iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
877 ret = copy_from_iter(to, size, &f);
878 if (ret == size)
879 ret = 0;
880 }
881
882out:
883 return ret;
884}
885
Jason Wangf8894912017-02-28 17:56:02 +0800886static void __user *__vhost_get_user_slow(struct vhost_virtqueue *vq,
887 void __user *addr, unsigned int size,
888 int type)
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400889{
890 int ret;
891
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400892 ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
893 ARRAY_SIZE(vq->iotlb_iov),
894 VHOST_ACCESS_RO);
895 if (ret < 0) {
896 vq_err(vq, "IOTLB translation failure: uaddr "
897 "%p size 0x%llx\n", addr,
898 (unsigned long long) size);
899 return NULL;
900 }
901
902 if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
903 vq_err(vq, "Non atomic userspace memory access: uaddr "
904 "%p size 0x%llx\n", addr,
905 (unsigned long long) size);
906 return NULL;
907 }
908
909 return vq->iotlb_iov[0].iov_base;
910}
911
Jason Wangf8894912017-02-28 17:56:02 +0800912/* This function should be called after iotlb
913 * prefetch, which means we're sure that vq
914 * could be access through iotlb. So -EAGAIN should
915 * not happen in this case.
916 */
917static inline void __user *__vhost_get_user(struct vhost_virtqueue *vq,
Michael S. Tsirkin1b0be992020-05-15 11:29:53 -0400918 void __user *addr, unsigned int size,
Jason Wangf8894912017-02-28 17:56:02 +0800919 int type)
920{
921 void __user *uaddr = vhost_vq_meta_fetch(vq,
922 (u64)(uintptr_t)addr, size, type);
923 if (uaddr)
924 return uaddr;
925
926 return __vhost_get_user_slow(vq, addr, size, type);
927}
928
929#define vhost_put_user(vq, x, ptr) \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400930({ \
Guennadi Liakhovetski002ef182020-05-27 20:05:38 +0200931 int ret; \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400932 if (!vq->iotlb) { \
933 ret = __put_user(x, ptr); \
934 } else { \
935 __typeof__(ptr) to = \
Jason Wangf8894912017-02-28 17:56:02 +0800936 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
937 sizeof(*ptr), VHOST_ADDR_USED); \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400938 if (to != NULL) \
939 ret = __put_user(x, to); \
940 else \
941 ret = -EFAULT; \
942 } \
943 ret; \
944})
945
Jason Wang7b5d7532019-05-24 04:12:14 -0400946static inline int vhost_put_avail_event(struct vhost_virtqueue *vq)
947{
948 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
949 vhost_avail_event(vq));
950}
951
952static inline int vhost_put_used(struct vhost_virtqueue *vq,
953 struct vring_used_elem *head, int idx,
954 int count)
955{
956 return vhost_copy_to_user(vq, vq->used->ring + idx, head,
957 count * sizeof(*head));
958}
959
960static inline int vhost_put_used_flags(struct vhost_virtqueue *vq)
961
962{
963 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
964 &vq->used->flags);
965}
966
967static inline int vhost_put_used_idx(struct vhost_virtqueue *vq)
968
969{
970 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
971 &vq->used->idx);
972}
973
Jason Wangf8894912017-02-28 17:56:02 +0800974#define vhost_get_user(vq, x, ptr, type) \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400975({ \
976 int ret; \
977 if (!vq->iotlb) { \
978 ret = __get_user(x, ptr); \
979 } else { \
980 __typeof__(ptr) from = \
Jason Wangf8894912017-02-28 17:56:02 +0800981 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
982 sizeof(*ptr), \
983 type); \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400984 if (from != NULL) \
985 ret = __get_user(x, from); \
986 else \
987 ret = -EFAULT; \
988 } \
989 ret; \
990})
991
Jason Wangf8894912017-02-28 17:56:02 +0800992#define vhost_get_avail(vq, x, ptr) \
993 vhost_get_user(vq, x, ptr, VHOST_ADDR_AVAIL)
994
995#define vhost_get_used(vq, x, ptr) \
996 vhost_get_user(vq, x, ptr, VHOST_ADDR_USED)
997
Jason Wang86a07da2018-12-13 10:53:39 +0800998static void vhost_dev_lock_vqs(struct vhost_dev *d)
999{
1000 int i = 0;
1001 for (i = 0; i < d->nvqs; ++i)
1002 mutex_lock_nested(&d->vqs[i]->mutex, i);
1003}
1004
1005static void vhost_dev_unlock_vqs(struct vhost_dev *d)
1006{
1007 int i = 0;
1008 for (i = 0; i < d->nvqs; ++i)
1009 mutex_unlock(&d->vqs[i]->mutex);
1010}
1011
Jason Wang7b5d7532019-05-24 04:12:14 -04001012static inline int vhost_get_avail_idx(struct vhost_virtqueue *vq,
1013 __virtio16 *idx)
1014{
1015 return vhost_get_avail(vq, *idx, &vq->avail->idx);
1016}
1017
1018static inline int vhost_get_avail_head(struct vhost_virtqueue *vq,
1019 __virtio16 *head, int idx)
1020{
1021 return vhost_get_avail(vq, *head,
1022 &vq->avail->ring[idx & (vq->num - 1)]);
1023}
1024
1025static inline int vhost_get_avail_flags(struct vhost_virtqueue *vq,
1026 __virtio16 *flags)
1027{
1028 return vhost_get_avail(vq, *flags, &vq->avail->flags);
1029}
1030
1031static inline int vhost_get_used_event(struct vhost_virtqueue *vq,
1032 __virtio16 *event)
1033{
1034 return vhost_get_avail(vq, *event, vhost_used_event(vq));
1035}
1036
1037static inline int vhost_get_used_idx(struct vhost_virtqueue *vq,
1038 __virtio16 *idx)
1039{
1040 return vhost_get_used(vq, *idx, &vq->used->idx);
1041}
1042
1043static inline int vhost_get_desc(struct vhost_virtqueue *vq,
1044 struct vring_desc *desc, int idx)
1045{
1046 return vhost_copy_from_user(vq, desc, vq->desc + idx, sizeof(*desc));
1047}
1048
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001049static void vhost_iotlb_notify_vq(struct vhost_dev *d,
1050 struct vhost_iotlb_msg *msg)
1051{
1052 struct vhost_msg_node *node, *n;
1053
1054 spin_lock(&d->iotlb_lock);
1055
1056 list_for_each_entry_safe(node, n, &d->pending_list, node) {
1057 struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
1058 if (msg->iova <= vq_msg->iova &&
Jason Wang2d66f992018-08-24 16:53:13 +08001059 msg->iova + msg->size - 1 >= vq_msg->iova &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001060 vq_msg->type == VHOST_IOTLB_MISS) {
1061 vhost_poll_queue(&node->vq->poll);
1062 list_del(&node->node);
1063 kfree(node);
1064 }
1065 }
1066
1067 spin_unlock(&d->iotlb_lock);
1068}
1069
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001070static bool umem_access_ok(u64 uaddr, u64 size, int access)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001071{
1072 unsigned long a = uaddr;
1073
Michael S. Tsirkinec33d032016-08-01 23:20:53 +03001074 /* Make sure 64 bit math will not overflow. */
1075 if (vhost_overflow(uaddr, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001076 return false;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +03001077
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001078 if ((access & VHOST_ACCESS_RO) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001079 !access_ok((void __user *)a, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001080 return false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001081 if ((access & VHOST_ACCESS_WO) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001082 !access_ok((void __user *)a, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001083 return false;
1084 return true;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001085}
1086
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +02001087static int vhost_process_iotlb_msg(struct vhost_dev *dev,
1088 struct vhost_iotlb_msg *msg)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001089{
1090 int ret = 0;
1091
Jason Wang1b15ad62018-05-22 19:58:57 +08001092 mutex_lock(&dev->mutex);
Jason Wang86a07da2018-12-13 10:53:39 +08001093 vhost_dev_lock_vqs(dev);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001094 switch (msg->type) {
1095 case VHOST_IOTLB_UPDATE:
1096 if (!dev->iotlb) {
1097 ret = -EFAULT;
1098 break;
1099 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001100 if (!umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001101 ret = -EFAULT;
1102 break;
1103 }
Jason Wangf8894912017-02-28 17:56:02 +08001104 vhost_vq_meta_reset(dev);
Jason Wang0bbe3062020-03-26 22:01:19 +08001105 if (vhost_iotlb_add_range(dev->iotlb, msg->iova,
1106 msg->iova + msg->size - 1,
1107 msg->uaddr, msg->perm)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001108 ret = -ENOMEM;
1109 break;
1110 }
1111 vhost_iotlb_notify_vq(dev, msg);
1112 break;
1113 case VHOST_IOTLB_INVALIDATE:
Jason Wang6f3180a2018-01-23 17:27:26 +08001114 if (!dev->iotlb) {
1115 ret = -EFAULT;
1116 break;
1117 }
Jason Wangf8894912017-02-28 17:56:02 +08001118 vhost_vq_meta_reset(dev);
Jason Wang0bbe3062020-03-26 22:01:19 +08001119 vhost_iotlb_del_range(dev->iotlb, msg->iova,
1120 msg->iova + msg->size - 1);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001121 break;
1122 default:
1123 ret = -EINVAL;
1124 break;
1125 }
1126
Jason Wang86a07da2018-12-13 10:53:39 +08001127 vhost_dev_unlock_vqs(dev);
Jason Wang1b15ad62018-05-22 19:58:57 +08001128 mutex_unlock(&dev->mutex);
1129
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001130 return ret;
1131}
1132ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
1133 struct iov_iter *from)
1134{
Jason Wang429711a2018-08-06 11:17:47 +08001135 struct vhost_iotlb_msg msg;
1136 size_t offset;
1137 int type, ret;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001138
Jason Wang429711a2018-08-06 11:17:47 +08001139 ret = copy_from_iter(&type, sizeof(type), from);
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001140 if (ret != sizeof(type)) {
1141 ret = -EINVAL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001142 goto done;
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001143 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001144
Jason Wang429711a2018-08-06 11:17:47 +08001145 switch (type) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001146 case VHOST_IOTLB_MSG:
Jason Wang429711a2018-08-06 11:17:47 +08001147 /* There maybe a hole after type for V1 message type,
1148 * so skip it here.
1149 */
1150 offset = offsetof(struct vhost_msg, iotlb) - sizeof(int);
1151 break;
1152 case VHOST_IOTLB_MSG_V2:
1153 offset = sizeof(__u32);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001154 break;
1155 default:
1156 ret = -EINVAL;
Jason Wang429711a2018-08-06 11:17:47 +08001157 goto done;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001158 }
1159
Jason Wang429711a2018-08-06 11:17:47 +08001160 iov_iter_advance(from, offset);
1161 ret = copy_from_iter(&msg, sizeof(msg), from);
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001162 if (ret != sizeof(msg)) {
1163 ret = -EINVAL;
Jason Wang429711a2018-08-06 11:17:47 +08001164 goto done;
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001165 }
Jason Wang792a4f22020-03-26 22:01:18 +08001166
1167 if (dev->msg_handler)
1168 ret = dev->msg_handler(dev, &msg);
1169 else
1170 ret = vhost_process_iotlb_msg(dev, &msg);
1171 if (ret) {
Jason Wang429711a2018-08-06 11:17:47 +08001172 ret = -EFAULT;
1173 goto done;
1174 }
1175
1176 ret = (type == VHOST_IOTLB_MSG) ? sizeof(struct vhost_msg) :
1177 sizeof(struct vhost_msg_v2);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001178done:
1179 return ret;
1180}
1181EXPORT_SYMBOL(vhost_chr_write_iter);
1182
Al Viroafc9a422017-07-03 06:39:46 -04001183__poll_t vhost_chr_poll(struct file *file, struct vhost_dev *dev,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001184 poll_table *wait)
1185{
Al Viroafc9a422017-07-03 06:39:46 -04001186 __poll_t mask = 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001187
1188 poll_wait(file, &dev->wait, wait);
1189
1190 if (!list_empty(&dev->read_list))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001191 mask |= EPOLLIN | EPOLLRDNORM;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001192
1193 return mask;
1194}
1195EXPORT_SYMBOL(vhost_chr_poll);
1196
1197ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1198 int noblock)
1199{
1200 DEFINE_WAIT(wait);
1201 struct vhost_msg_node *node;
1202 ssize_t ret = 0;
1203 unsigned size = sizeof(struct vhost_msg);
1204
1205 if (iov_iter_count(to) < size)
1206 return 0;
1207
1208 while (1) {
1209 if (!noblock)
1210 prepare_to_wait(&dev->wait, &wait,
1211 TASK_INTERRUPTIBLE);
1212
1213 node = vhost_dequeue_msg(dev, &dev->read_list);
1214 if (node)
1215 break;
1216 if (noblock) {
1217 ret = -EAGAIN;
1218 break;
1219 }
1220 if (signal_pending(current)) {
1221 ret = -ERESTARTSYS;
1222 break;
1223 }
1224 if (!dev->iotlb) {
1225 ret = -EBADFD;
1226 break;
1227 }
1228
1229 schedule();
1230 }
1231
1232 if (!noblock)
1233 finish_wait(&dev->wait, &wait);
1234
1235 if (node) {
Jason Wang429711a2018-08-06 11:17:47 +08001236 struct vhost_iotlb_msg *msg;
1237 void *start = &node->msg;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001238
Jason Wang429711a2018-08-06 11:17:47 +08001239 switch (node->msg.type) {
1240 case VHOST_IOTLB_MSG:
1241 size = sizeof(node->msg);
1242 msg = &node->msg.iotlb;
1243 break;
1244 case VHOST_IOTLB_MSG_V2:
1245 size = sizeof(node->msg_v2);
1246 msg = &node->msg_v2.iotlb;
1247 break;
1248 default:
1249 BUG();
1250 break;
1251 }
1252
1253 ret = copy_to_iter(start, size, to);
1254 if (ret != size || msg->type != VHOST_IOTLB_MISS) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001255 kfree(node);
1256 return ret;
1257 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001258 vhost_enqueue_msg(dev, &dev->pending_list, node);
1259 }
1260
1261 return ret;
1262}
1263EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1264
1265static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1266{
1267 struct vhost_dev *dev = vq->dev;
1268 struct vhost_msg_node *node;
1269 struct vhost_iotlb_msg *msg;
Jason Wang429711a2018-08-06 11:17:47 +08001270 bool v2 = vhost_backend_has_feature(vq, VHOST_BACKEND_F_IOTLB_MSG_V2);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001271
Jason Wang429711a2018-08-06 11:17:47 +08001272 node = vhost_new_msg(vq, v2 ? VHOST_IOTLB_MSG_V2 : VHOST_IOTLB_MSG);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001273 if (!node)
1274 return -ENOMEM;
1275
Jason Wang429711a2018-08-06 11:17:47 +08001276 if (v2) {
1277 node->msg_v2.type = VHOST_IOTLB_MSG_V2;
1278 msg = &node->msg_v2.iotlb;
1279 } else {
1280 msg = &node->msg.iotlb;
1281 }
1282
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001283 msg->type = VHOST_IOTLB_MISS;
1284 msg->iova = iova;
1285 msg->perm = access;
1286
1287 vhost_enqueue_msg(dev, &dev->read_list, node);
1288
1289 return 0;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001290}
1291
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001292static bool vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
Michael S. Tsirkina865e422020-04-06 08:42:55 -04001293 vring_desc_t __user *desc,
1294 vring_avail_t __user *avail,
1295 vring_used_t __user *used)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001296
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001297{
Greg Kurz0210a8d2020-10-03 12:01:52 +02001298 /* If an IOTLB device is present, the vring addresses are
1299 * GIOVAs. Access validation occurs at prefetch time. */
1300 if (vq->iotlb)
1301 return true;
1302
Jason Wang4942e822019-05-24 04:12:16 -04001303 return access_ok(desc, vhost_get_desc_size(vq, num)) &&
1304 access_ok(avail, vhost_get_avail_size(vq, num)) &&
1305 access_ok(used, vhost_get_used_size(vq, num));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001306}
1307
Jason Wangf8894912017-02-28 17:56:02 +08001308static void vhost_vq_meta_update(struct vhost_virtqueue *vq,
Jason Wang0bbe3062020-03-26 22:01:19 +08001309 const struct vhost_iotlb_map *map,
Jason Wangf8894912017-02-28 17:56:02 +08001310 int type)
1311{
1312 int access = (type == VHOST_ADDR_USED) ?
1313 VHOST_ACCESS_WO : VHOST_ACCESS_RO;
1314
Jason Wang0bbe3062020-03-26 22:01:19 +08001315 if (likely(map->perm & access))
1316 vq->meta_iotlb[type] = map;
Jason Wangf8894912017-02-28 17:56:02 +08001317}
1318
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001319static bool iotlb_access_ok(struct vhost_virtqueue *vq,
1320 int access, u64 addr, u64 len, int type)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001321{
Jason Wang0bbe3062020-03-26 22:01:19 +08001322 const struct vhost_iotlb_map *map;
1323 struct vhost_iotlb *umem = vq->iotlb;
Michael S. Tsirkinca2c5b32017-08-21 22:33:33 +03001324 u64 s = 0, size, orig_addr = addr, last = addr + len - 1;
Jason Wangf8894912017-02-28 17:56:02 +08001325
1326 if (vhost_vq_meta_fetch(vq, addr, len, type))
1327 return true;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001328
1329 while (len > s) {
Jason Wang0bbe3062020-03-26 22:01:19 +08001330 map = vhost_iotlb_itree_first(umem, addr, last);
1331 if (map == NULL || map->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001332 vhost_iotlb_miss(vq, addr, access);
1333 return false;
Jason Wang0bbe3062020-03-26 22:01:19 +08001334 } else if (!(map->perm & access)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001335 /* Report the possible access violation by
1336 * request another translation from userspace.
1337 */
1338 return false;
1339 }
1340
Jason Wang0bbe3062020-03-26 22:01:19 +08001341 size = map->size - addr + map->start;
Jason Wangf8894912017-02-28 17:56:02 +08001342
1343 if (orig_addr == addr && size >= len)
Jason Wang0bbe3062020-03-26 22:01:19 +08001344 vhost_vq_meta_update(vq, map, type);
Jason Wangf8894912017-02-28 17:56:02 +08001345
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001346 s += size;
1347 addr += size;
1348 }
1349
1350 return true;
1351}
1352
Jason Wang9b5e8302019-05-24 04:12:15 -04001353int vq_meta_prefetch(struct vhost_virtqueue *vq)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001354{
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001355 unsigned int num = vq->num;
1356
Michael S. Tsirkin3d2c7d32019-08-10 13:53:21 -04001357 if (!vq->iotlb)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001358 return 1;
1359
Jason Wang0bbe3062020-03-26 22:01:19 +08001360 return iotlb_access_ok(vq, VHOST_MAP_RO, (u64)(uintptr_t)vq->desc,
Jason Wang4942e822019-05-24 04:12:16 -04001361 vhost_get_desc_size(vq, num), VHOST_ADDR_DESC) &&
Jason Wang0bbe3062020-03-26 22:01:19 +08001362 iotlb_access_ok(vq, VHOST_MAP_RO, (u64)(uintptr_t)vq->avail,
Jason Wang4942e822019-05-24 04:12:16 -04001363 vhost_get_avail_size(vq, num),
Jason Wangf8894912017-02-28 17:56:02 +08001364 VHOST_ADDR_AVAIL) &&
Jason Wang0bbe3062020-03-26 22:01:19 +08001365 iotlb_access_ok(vq, VHOST_MAP_WO, (u64)(uintptr_t)vq->used,
Jason Wang4942e822019-05-24 04:12:16 -04001366 vhost_get_used_size(vq, num), VHOST_ADDR_USED);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001367}
Jason Wang9b5e8302019-05-24 04:12:15 -04001368EXPORT_SYMBOL_GPL(vq_meta_prefetch);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001369
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001370/* Can we log writes? */
1371/* Caller should have device mutex but not vq mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001372bool vhost_log_access_ok(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001373{
Jason Wanga9709d62016-06-23 02:04:31 -04001374 return memory_access_ok(dev, dev->umem, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001375}
Asias He6ac1afb2013-05-06 16:38:21 +08001376EXPORT_SYMBOL_GPL(vhost_log_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001377
Greg Kurzab512252020-10-03 12:02:13 +02001378static bool vq_log_used_access_ok(struct vhost_virtqueue *vq,
1379 void __user *log_base,
1380 bool log_used,
1381 u64 log_addr)
1382{
1383 /* If an IOTLB device is present, log_addr is a GIOVA that
1384 * will never be logged by log_used(). */
1385 if (vq->iotlb)
1386 return true;
1387
1388 return !log_used || log_access_ok(log_base, log_addr,
1389 vhost_get_used_size(vq, vq->num));
1390}
1391
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001392/* Verify access for write logging. */
1393/* Caller should have vq mutex and device mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001394static bool vq_log_access_ok(struct vhost_virtqueue *vq,
1395 void __user *log_base)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001396{
Jason Wanga9709d62016-06-23 02:04:31 -04001397 return vq_memory_access_ok(log_base, vq->umem,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001398 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
Greg Kurzab512252020-10-03 12:02:13 +02001399 vq_log_used_access_ok(vq, log_base, vq->log_used, vq->log_addr);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001400}
1401
1402/* Can we start vq? */
1403/* Caller should have vq mutex and device mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001404bool vhost_vq_access_ok(struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001405{
Stefan Hajnoczid14d2b72018-04-11 10:35:40 +08001406 if (!vq_log_access_ok(vq, vq->log_base))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001407 return false;
Jason Wangd65026c2018-03-29 16:00:04 +08001408
Jason Wangd65026c2018-03-29 16:00:04 +08001409 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001410}
Asias He6ac1afb2013-05-06 16:38:21 +08001411EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001412
1413static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1414{
Jason Wanga9709d62016-06-23 02:04:31 -04001415 struct vhost_memory mem, *newmem;
1416 struct vhost_memory_region *region;
Jason Wang0bbe3062020-03-26 22:01:19 +08001417 struct vhost_iotlb *newumem, *oldumem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001418 unsigned long size = offsetof(struct vhost_memory, regions);
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001419 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +05301420
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001421 if (copy_from_user(&mem, m, size))
1422 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001423 if (mem.padding)
1424 return -EOPNOTSUPP;
Igor Mammedovc9ce42f2015-07-02 15:08:11 +02001425 if (mem.nregions > max_mem_regions)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001426 return -E2BIG;
Matthew Wilcoxb2303d72018-06-07 07:57:18 -07001427 newmem = kvzalloc(struct_size(newmem, regions, mem.nregions),
1428 GFP_KERNEL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001429 if (!newmem)
1430 return -ENOMEM;
1431
1432 memcpy(newmem, &mem, size);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001433 if (copy_from_user(newmem->regions, m->regions,
Gustavo A. R. Silvabf11d712020-07-31 08:09:56 -05001434 flex_array_size(newmem, regions, mem.nregions))) {
Igor Mammedovbcfeaca2015-06-16 18:33:35 +02001435 kvfree(newmem);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001436 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001437 }
1438
Jason Wang0bbe3062020-03-26 22:01:19 +08001439 newumem = iotlb_alloc();
Jason Wanga9709d62016-06-23 02:04:31 -04001440 if (!newumem) {
Igor Mammedov4de72552015-07-01 11:07:09 +02001441 kvfree(newmem);
Jason Wanga9709d62016-06-23 02:04:31 -04001442 return -ENOMEM;
Takuya Yoshikawaa02c3782010-05-27 19:03:56 +09001443 }
Jason Wanga9709d62016-06-23 02:04:31 -04001444
Jason Wanga9709d62016-06-23 02:04:31 -04001445 for (region = newmem->regions;
1446 region < newmem->regions + mem.nregions;
1447 region++) {
Jason Wang0bbe3062020-03-26 22:01:19 +08001448 if (vhost_iotlb_add_range(newumem,
1449 region->guest_phys_addr,
1450 region->guest_phys_addr +
1451 region->memory_size - 1,
1452 region->userspace_addr,
1453 VHOST_MAP_RW))
Jason Wanga9709d62016-06-23 02:04:31 -04001454 goto err;
Jason Wanga9709d62016-06-23 02:04:31 -04001455 }
1456
1457 if (!memory_access_ok(d, newumem, 0))
1458 goto err;
1459
1460 oldumem = d->umem;
1461 d->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001462
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001463 /* All memory accesses are done under some VQ mutex. */
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001464 for (i = 0; i < d->nvqs; ++i) {
1465 mutex_lock(&d->vqs[i]->mutex);
Jason Wanga9709d62016-06-23 02:04:31 -04001466 d->vqs[i]->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001467 mutex_unlock(&d->vqs[i]->mutex);
1468 }
Jason Wanga9709d62016-06-23 02:04:31 -04001469
1470 kvfree(newmem);
Jason Wang0bbe3062020-03-26 22:01:19 +08001471 vhost_iotlb_free(oldumem);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001472 return 0;
Jason Wanga9709d62016-06-23 02:04:31 -04001473
1474err:
Jason Wang0bbe3062020-03-26 22:01:19 +08001475 vhost_iotlb_free(newumem);
Jason Wanga9709d62016-06-23 02:04:31 -04001476 kvfree(newmem);
1477 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001478}
1479
Jason Wangfeebcae2019-05-24 04:12:17 -04001480static long vhost_vring_set_num(struct vhost_dev *d,
1481 struct vhost_virtqueue *vq,
1482 void __user *argp)
1483{
1484 struct vhost_vring_state s;
1485
1486 /* Resizing ring with an active backend?
1487 * You don't want to do that. */
1488 if (vq->private_data)
1489 return -EBUSY;
1490
1491 if (copy_from_user(&s, argp, sizeof s))
1492 return -EFAULT;
1493
1494 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1)))
1495 return -EINVAL;
1496 vq->num = s.num;
1497
1498 return 0;
1499}
1500
1501static long vhost_vring_set_addr(struct vhost_dev *d,
1502 struct vhost_virtqueue *vq,
1503 void __user *argp)
1504{
1505 struct vhost_vring_addr a;
1506
1507 if (copy_from_user(&a, argp, sizeof a))
1508 return -EFAULT;
1509 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG))
1510 return -EOPNOTSUPP;
1511
1512 /* For 32bit, verify that the top 32bits of the user
1513 data are set to zero. */
1514 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1515 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1516 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr)
1517 return -EFAULT;
1518
1519 /* Make sure it's safe to cast pointers to vring types. */
1520 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1521 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1522 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1523 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
1524 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1)))
1525 return -EINVAL;
1526
1527 /* We only verify access here if backend is configured.
1528 * If it is not, we don't as size might not have been setup.
1529 * We will verify when backend is configured. */
1530 if (vq->private_data) {
1531 if (!vq_access_ok(vq, vq->num,
1532 (void __user *)(unsigned long)a.desc_user_addr,
1533 (void __user *)(unsigned long)a.avail_user_addr,
1534 (void __user *)(unsigned long)a.used_user_addr))
1535 return -EINVAL;
1536
1537 /* Also validate log access for used ring if enabled. */
Greg Kurzab512252020-10-03 12:02:13 +02001538 if (!vq_log_used_access_ok(vq, vq->log_base,
1539 a.flags & (0x1 << VHOST_VRING_F_LOG),
1540 a.log_guest_addr))
Jason Wangfeebcae2019-05-24 04:12:17 -04001541 return -EINVAL;
1542 }
1543
1544 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1545 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1546 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1547 vq->log_addr = a.log_guest_addr;
1548 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1549
1550 return 0;
1551}
1552
1553static long vhost_vring_set_num_addr(struct vhost_dev *d,
1554 struct vhost_virtqueue *vq,
1555 unsigned int ioctl,
1556 void __user *argp)
1557{
1558 long r;
1559
1560 mutex_lock(&vq->mutex);
1561
1562 switch (ioctl) {
1563 case VHOST_SET_VRING_NUM:
1564 r = vhost_vring_set_num(d, vq, argp);
1565 break;
1566 case VHOST_SET_VRING_ADDR:
1567 r = vhost_vring_set_addr(d, vq, argp);
1568 break;
1569 default:
1570 BUG();
1571 }
1572
1573 mutex_unlock(&vq->mutex);
1574
1575 return r;
1576}
Sonny Rao26b36602018-03-14 10:05:06 -07001577long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001578{
Al Virocecb46f2012-08-27 14:21:39 -04001579 struct file *eventfp, *filep = NULL;
1580 bool pollstart = false, pollstop = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001581 struct eventfd_ctx *ctx = NULL;
1582 u32 __user *idxp = argp;
1583 struct vhost_virtqueue *vq;
1584 struct vhost_vring_state s;
1585 struct vhost_vring_file f;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001586 u32 idx;
1587 long r;
1588
1589 r = get_user(idx, idxp);
1590 if (r < 0)
1591 return r;
Krishna Kumar0f3d9a12010-05-25 11:10:36 +05301592 if (idx >= d->nvqs)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001593 return -ENOBUFS;
1594
Jason Wangff002262018-10-30 14:10:49 +08001595 idx = array_index_nospec(idx, d->nvqs);
Asias He3ab2e422013-04-27 11:16:48 +08001596 vq = d->vqs[idx];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001597
Jason Wangfeebcae2019-05-24 04:12:17 -04001598 if (ioctl == VHOST_SET_VRING_NUM ||
1599 ioctl == VHOST_SET_VRING_ADDR) {
1600 return vhost_vring_set_num_addr(d, vq, ioctl, argp);
1601 }
1602
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001603 mutex_lock(&vq->mutex);
1604
1605 switch (ioctl) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001606 case VHOST_SET_VRING_BASE:
1607 /* Moving base with an active backend?
1608 * You don't want to do that. */
1609 if (vq->private_data) {
1610 r = -EBUSY;
1611 break;
1612 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001613 if (copy_from_user(&s, argp, sizeof s)) {
1614 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001615 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001616 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001617 if (s.num > 0xffff) {
1618 r = -EINVAL;
1619 break;
1620 }
Jason Wang8d658432017-07-27 11:22:05 +08001621 vq->last_avail_idx = s.num;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001622 /* Forget the cached index value. */
1623 vq->avail_idx = vq->last_avail_idx;
1624 break;
1625 case VHOST_GET_VRING_BASE:
1626 s.index = idx;
1627 s.num = vq->last_avail_idx;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001628 if (copy_to_user(argp, &s, sizeof s))
1629 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001630 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001631 case VHOST_SET_VRING_KICK:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001632 if (copy_from_user(&f, argp, sizeof f)) {
1633 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001634 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001635 }
Zhu Lingshane0136c12020-06-05 18:27:14 +08001636 eventfp = f.fd == VHOST_FILE_UNBIND ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001637 if (IS_ERR(eventfp)) {
1638 r = PTR_ERR(eventfp);
1639 break;
1640 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001641 if (eventfp != vq->kick) {
Al Virocecb46f2012-08-27 14:21:39 -04001642 pollstop = (filep = vq->kick) != NULL;
1643 pollstart = (vq->kick = eventfp) != NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001644 } else
1645 filep = eventfp;
1646 break;
1647 case VHOST_SET_VRING_CALL:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001648 if (copy_from_user(&f, argp, sizeof f)) {
1649 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001650 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001651 }
Zhu Lingshane0136c12020-06-05 18:27:14 +08001652 ctx = f.fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(f.fd);
Eric Biggerse050c7d2018-01-06 14:52:19 -08001653 if (IS_ERR(ctx)) {
1654 r = PTR_ERR(ctx);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001655 break;
1656 }
Zhu Lingshan265a0ad2020-07-31 14:55:28 +08001657
Zhu Lingshan265a0ad2020-07-31 14:55:28 +08001658 swap(ctx, vq->call_ctx.ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001659 break;
1660 case VHOST_SET_VRING_ERR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001661 if (copy_from_user(&f, argp, sizeof f)) {
1662 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001663 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001664 }
Zhu Lingshane0136c12020-06-05 18:27:14 +08001665 ctx = f.fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(f.fd);
Eric Biggers09f332a2018-01-06 14:52:20 -08001666 if (IS_ERR(ctx)) {
1667 r = PTR_ERR(ctx);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001668 break;
1669 }
Eric Biggers09f332a2018-01-06 14:52:20 -08001670 swap(ctx, vq->error_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001671 break;
Greg Kurz2751c982015-04-24 14:27:24 +02001672 case VHOST_SET_VRING_ENDIAN:
1673 r = vhost_set_vring_endian(vq, argp);
1674 break;
1675 case VHOST_GET_VRING_ENDIAN:
1676 r = vhost_get_vring_endian(vq, idx, argp);
1677 break;
Jason Wang03088132016-03-04 06:24:53 -05001678 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1679 if (copy_from_user(&s, argp, sizeof(s))) {
1680 r = -EFAULT;
1681 break;
1682 }
1683 vq->busyloop_timeout = s.num;
1684 break;
1685 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1686 s.index = idx;
1687 s.num = vq->busyloop_timeout;
1688 if (copy_to_user(argp, &s, sizeof(s)))
1689 r = -EFAULT;
1690 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001691 default:
1692 r = -ENOIOCTLCMD;
1693 }
1694
1695 if (pollstop && vq->handle_kick)
1696 vhost_poll_stop(&vq->poll);
1697
Eric Biggerse050c7d2018-01-06 14:52:19 -08001698 if (!IS_ERR_OR_NULL(ctx))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001699 eventfd_ctx_put(ctx);
1700 if (filep)
1701 fput(filep);
1702
1703 if (pollstart && vq->handle_kick)
Jason Wang2b8b3282013-01-28 01:05:18 +00001704 r = vhost_poll_start(&vq->poll, vq->kick);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001705
1706 mutex_unlock(&vq->mutex);
1707
1708 if (pollstop && vq->handle_kick)
1709 vhost_poll_flush(&vq->poll);
1710 return r;
1711}
Asias He6ac1afb2013-05-06 16:38:21 +08001712EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001713
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001714int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1715{
Jason Wang0bbe3062020-03-26 22:01:19 +08001716 struct vhost_iotlb *niotlb, *oiotlb;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001717 int i;
1718
Jason Wang0bbe3062020-03-26 22:01:19 +08001719 niotlb = iotlb_alloc();
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001720 if (!niotlb)
1721 return -ENOMEM;
1722
1723 oiotlb = d->iotlb;
1724 d->iotlb = niotlb;
1725
1726 for (i = 0; i < d->nvqs; ++i) {
Jason Wangb13f9c62018-08-08 11:43:04 +08001727 struct vhost_virtqueue *vq = d->vqs[i];
1728
1729 mutex_lock(&vq->mutex);
1730 vq->iotlb = niotlb;
1731 __vhost_vq_meta_reset(vq);
1732 mutex_unlock(&vq->mutex);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001733 }
1734
Jason Wang0bbe3062020-03-26 22:01:19 +08001735 vhost_iotlb_free(oiotlb);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001736
1737 return 0;
1738}
1739EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1740
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001741/* Caller must have device mutex */
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001742long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001743{
Eric Biggersd25cc432018-01-06 14:52:21 -08001744 struct eventfd_ctx *ctx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001745 u64 p;
1746 long r;
1747 int i, fd;
1748
1749 /* If you are not the owner, you can become one */
1750 if (ioctl == VHOST_SET_OWNER) {
1751 r = vhost_dev_set_owner(d);
1752 goto done;
1753 }
1754
1755 /* You must be the owner to do anything else */
1756 r = vhost_dev_check_owner(d);
1757 if (r)
1758 goto done;
1759
1760 switch (ioctl) {
1761 case VHOST_SET_MEM_TABLE:
1762 r = vhost_set_memory(d, argp);
1763 break;
1764 case VHOST_SET_LOG_BASE:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001765 if (copy_from_user(&p, argp, sizeof p)) {
1766 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001767 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001768 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001769 if ((u64)(unsigned long)p != p) {
1770 r = -EFAULT;
1771 break;
1772 }
1773 for (i = 0; i < d->nvqs; ++i) {
1774 struct vhost_virtqueue *vq;
1775 void __user *base = (void __user *)(unsigned long)p;
Asias He3ab2e422013-04-27 11:16:48 +08001776 vq = d->vqs[i];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001777 mutex_lock(&vq->mutex);
1778 /* If ring is inactive, will check when it's enabled. */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001779 if (vq->private_data && !vq_log_access_ok(vq, base))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001780 r = -EFAULT;
1781 else
1782 vq->log_base = base;
1783 mutex_unlock(&vq->mutex);
1784 }
1785 break;
1786 case VHOST_SET_LOG_FD:
1787 r = get_user(fd, (int __user *)argp);
1788 if (r < 0)
1789 break;
Zhu Lingshane0136c12020-06-05 18:27:14 +08001790 ctx = fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(fd);
Eric Biggersd25cc432018-01-06 14:52:21 -08001791 if (IS_ERR(ctx)) {
1792 r = PTR_ERR(ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001793 break;
1794 }
Eric Biggersd25cc432018-01-06 14:52:21 -08001795 swap(ctx, d->log_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001796 for (i = 0; i < d->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001797 mutex_lock(&d->vqs[i]->mutex);
1798 d->vqs[i]->log_ctx = d->log_ctx;
1799 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001800 }
1801 if (ctx)
1802 eventfd_ctx_put(ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001803 break;
1804 default:
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001805 r = -ENOIOCTLCMD;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001806 break;
1807 }
1808done:
1809 return r;
1810}
Asias He6ac1afb2013-05-06 16:38:21 +08001811EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001812
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001813/* TODO: This is really inefficient. We need something like get_user()
1814 * (instruction directly accesses the data, with an exception table entry
Mauro Carvalho Chehabcb1aaeb2019-06-07 15:54:32 -03001815 * returning -EFAULT). See Documentation/x86/exception-tables.rst.
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001816 */
1817static int set_bit_to_user(int nr, void __user *addr)
1818{
1819 unsigned long log = (unsigned long)addr;
1820 struct page *page;
1821 void *base;
1822 int bit = nr + (log % PAGE_SIZE) * 8;
1823 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301824
John Hubbard690623e2020-06-07 21:41:15 -07001825 r = pin_user_pages_fast(log, 1, FOLL_WRITE, &page);
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001826 if (r < 0)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001827 return r;
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001828 BUG_ON(r != 1);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001829 base = kmap_atomic(page);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001830 set_bit(bit, base);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001831 kunmap_atomic(base);
John Hubbard690623e2020-06-07 21:41:15 -07001832 unpin_user_pages_dirty_lock(&page, 1, true);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001833 return 0;
1834}
1835
1836static int log_write(void __user *log_base,
1837 u64 write_address, u64 write_length)
1838{
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001839 u64 write_page = write_address / VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001840 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301841
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001842 if (!write_length)
1843 return 0;
Michael S. Tsirkin3bf9be42010-11-29 10:19:07 +02001844 write_length += write_address % VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001845 for (;;) {
1846 u64 base = (u64)(unsigned long)log_base;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001847 u64 log = base + write_page / 8;
1848 int bit = write_page % 8;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001849 if ((u64)(unsigned long)log != log)
1850 return -EFAULT;
1851 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1852 if (r < 0)
1853 return r;
1854 if (write_length <= VHOST_PAGE_SIZE)
1855 break;
1856 write_length -= VHOST_PAGE_SIZE;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001857 write_page += 1;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001858 }
1859 return r;
1860}
1861
Jason Wangcc5e7102019-01-16 16:54:42 +08001862static int log_write_hva(struct vhost_virtqueue *vq, u64 hva, u64 len)
1863{
Jason Wang0bbe3062020-03-26 22:01:19 +08001864 struct vhost_iotlb *umem = vq->umem;
1865 struct vhost_iotlb_map *u;
Jason Wangcc5e7102019-01-16 16:54:42 +08001866 u64 start, end, l, min;
1867 int r;
1868 bool hit = false;
1869
1870 while (len) {
1871 min = len;
1872 /* More than one GPAs can be mapped into a single HVA. So
1873 * iterate all possible umems here to be safe.
1874 */
Jason Wang0bbe3062020-03-26 22:01:19 +08001875 list_for_each_entry(u, &umem->list, link) {
1876 if (u->addr > hva - 1 + len ||
1877 u->addr - 1 + u->size < hva)
Jason Wangcc5e7102019-01-16 16:54:42 +08001878 continue;
Jason Wang0bbe3062020-03-26 22:01:19 +08001879 start = max(u->addr, hva);
1880 end = min(u->addr - 1 + u->size, hva - 1 + len);
Jason Wangcc5e7102019-01-16 16:54:42 +08001881 l = end - start + 1;
1882 r = log_write(vq->log_base,
Jason Wang0bbe3062020-03-26 22:01:19 +08001883 u->start + start - u->addr,
Jason Wangcc5e7102019-01-16 16:54:42 +08001884 l);
1885 if (r < 0)
1886 return r;
1887 hit = true;
1888 min = min(l, min);
1889 }
1890
1891 if (!hit)
1892 return -EFAULT;
1893
1894 len -= min;
1895 hva += min;
1896 }
1897
1898 return 0;
1899}
1900
1901static int log_used(struct vhost_virtqueue *vq, u64 used_offset, u64 len)
1902{
Li Wang5e5e8732020-09-15 02:08:09 +08001903 struct iovec *iov = vq->log_iov;
Jason Wangcc5e7102019-01-16 16:54:42 +08001904 int i, ret;
1905
1906 if (!vq->iotlb)
1907 return log_write(vq->log_base, vq->log_addr + used_offset, len);
1908
1909 ret = translate_desc(vq, (uintptr_t)vq->used + used_offset,
1910 len, iov, 64, VHOST_ACCESS_WO);
Jason Wang816db762019-02-19 14:53:44 +08001911 if (ret < 0)
Jason Wangcc5e7102019-01-16 16:54:42 +08001912 return ret;
1913
1914 for (i = 0; i < ret; i++) {
1915 ret = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1916 iov[i].iov_len);
1917 if (ret)
1918 return ret;
1919 }
1920
1921 return 0;
1922}
1923
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001924int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
Jason Wangcc5e7102019-01-16 16:54:42 +08001925 unsigned int log_num, u64 len, struct iovec *iov, int count)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001926{
1927 int i, r;
1928
1929 /* Make sure data written is seen before log. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001930 smp_wmb();
Jason Wangcc5e7102019-01-16 16:54:42 +08001931
1932 if (vq->iotlb) {
1933 for (i = 0; i < count; i++) {
1934 r = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1935 iov[i].iov_len);
1936 if (r < 0)
1937 return r;
1938 }
1939 return 0;
1940 }
1941
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001942 for (i = 0; i < log_num; ++i) {
1943 u64 l = min(log[i].len, len);
1944 r = log_write(vq->log_base, log[i].addr, l);
1945 if (r < 0)
1946 return r;
1947 len -= l;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001948 if (!len) {
1949 if (vq->log_ctx)
1950 eventfd_signal(vq->log_ctx, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001951 return 0;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001952 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001953 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001954 /* Length written exceeds what we have stored. This is a bug. */
1955 BUG();
1956 return 0;
1957}
Asias He6ac1afb2013-05-06 16:38:21 +08001958EXPORT_SYMBOL_GPL(vhost_log_write);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001959
Jason Wang2723fea2011-06-21 18:04:38 +08001960static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1961{
1962 void __user *used;
Jason Wang7b5d7532019-05-24 04:12:14 -04001963 if (vhost_put_used_flags(vq))
Jason Wang2723fea2011-06-21 18:04:38 +08001964 return -EFAULT;
1965 if (unlikely(vq->log_used)) {
1966 /* Make sure the flag is seen before log. */
1967 smp_wmb();
1968 /* Log used flag write. */
1969 used = &vq->used->flags;
Jason Wangcc5e7102019-01-16 16:54:42 +08001970 log_used(vq, (used - (void __user *)vq->used),
1971 sizeof vq->used->flags);
Jason Wang2723fea2011-06-21 18:04:38 +08001972 if (vq->log_ctx)
1973 eventfd_signal(vq->log_ctx, 1);
1974 }
1975 return 0;
1976}
1977
1978static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1979{
Jason Wang7b5d7532019-05-24 04:12:14 -04001980 if (vhost_put_avail_event(vq))
Jason Wang2723fea2011-06-21 18:04:38 +08001981 return -EFAULT;
1982 if (unlikely(vq->log_used)) {
1983 void __user *used;
1984 /* Make sure the event is seen before log. */
1985 smp_wmb();
1986 /* Log avail event write */
1987 used = vhost_avail_event(vq);
Jason Wangcc5e7102019-01-16 16:54:42 +08001988 log_used(vq, (used - (void __user *)vq->used),
1989 sizeof *vhost_avail_event(vq));
Jason Wang2723fea2011-06-21 18:04:38 +08001990 if (vq->log_ctx)
1991 eventfd_signal(vq->log_ctx, 1);
1992 }
1993 return 0;
1994}
1995
Greg Kurz80f7d032016-02-16 15:59:44 +01001996int vhost_vq_init_access(struct vhost_virtqueue *vq)
Jason Wang2723fea2011-06-21 18:04:38 +08001997{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001998 __virtio16 last_used_idx;
Jason Wang2723fea2011-06-21 18:04:38 +08001999 int r;
Greg Kurze1f33be2016-02-16 15:54:28 +01002000 bool is_le = vq->is_le;
2001
Halil Pasiccda8bba2017-01-30 11:09:36 +01002002 if (!vq->private_data)
Jason Wang2723fea2011-06-21 18:04:38 +08002003 return 0;
Greg Kurz2751c982015-04-24 14:27:24 +02002004
2005 vhost_init_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08002006
2007 r = vhost_update_used_flags(vq);
2008 if (r)
Greg Kurze1f33be2016-02-16 15:54:28 +01002009 goto err;
Jason Wang2723fea2011-06-21 18:04:38 +08002010 vq->signalled_used_valid = false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002011 if (!vq->iotlb &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08002012 !access_ok(&vq->used->idx, sizeof vq->used->idx)) {
Greg Kurze1f33be2016-02-16 15:54:28 +01002013 r = -EFAULT;
2014 goto err;
2015 }
Jason Wang7b5d7532019-05-24 04:12:14 -04002016 r = vhost_get_used_idx(vq, &last_used_idx);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002017 if (r) {
2018 vq_err(vq, "Can't access used idx at %p\n",
2019 &vq->used->idx);
Greg Kurze1f33be2016-02-16 15:54:28 +01002020 goto err;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002021 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002022 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
Michael S. Tsirkin64f7f052014-12-01 17:39:39 +02002023 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002024
Greg Kurze1f33be2016-02-16 15:54:28 +01002025err:
2026 vq->is_le = is_le;
2027 return r;
Jason Wang2723fea2011-06-21 18:04:38 +08002028}
Greg Kurz80f7d032016-02-16 15:59:44 +01002029EXPORT_SYMBOL_GPL(vhost_vq_init_access);
Jason Wang2723fea2011-06-21 18:04:38 +08002030
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002031static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002032 struct iovec iov[], int iov_size, int access)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002033{
Jason Wang0bbe3062020-03-26 22:01:19 +08002034 const struct vhost_iotlb_map *map;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002035 struct vhost_dev *dev = vq->dev;
Jason Wang0bbe3062020-03-26 22:01:19 +08002036 struct vhost_iotlb *umem = dev->iotlb ? dev->iotlb : dev->umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002037 struct iovec *_iov;
2038 u64 s = 0;
2039 int ret = 0;
2040
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002041 while ((u64)len > s) {
2042 u64 size;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002043 if (unlikely(ret >= iov_size)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002044 ret = -ENOBUFS;
2045 break;
2046 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002047
Jason Wang0bbe3062020-03-26 22:01:19 +08002048 map = vhost_iotlb_itree_first(umem, addr, addr + len - 1);
2049 if (map == NULL || map->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002050 if (umem != dev->iotlb) {
2051 ret = -EFAULT;
2052 break;
2053 }
2054 ret = -EAGAIN;
2055 break;
Jason Wang0bbe3062020-03-26 22:01:19 +08002056 } else if (!(map->perm & access)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002057 ret = -EPERM;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002058 break;
2059 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002060
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002061 _iov = iov + ret;
Jason Wang0bbe3062020-03-26 22:01:19 +08002062 size = map->size - addr + map->start;
Michael S. Tsirkinbd971202012-11-26 05:57:27 +00002063 _iov->iov_len = min((u64)len - s, size);
Michael S. Tsirkin0d4a3f22019-09-14 15:21:51 -04002064 _iov->iov_base = (void __user *)(unsigned long)
Jason Wang0bbe3062020-03-26 22:01:19 +08002065 (map->addr + addr - map->start);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002066 s += size;
2067 addr += size;
2068 ++ret;
2069 }
2070
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002071 if (ret == -EAGAIN)
2072 vhost_iotlb_miss(vq, addr, access);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002073 return ret;
2074}
2075
2076/* Each buffer in the virtqueues is actually a chain of descriptors. This
2077 * function returns the next descriptor in the chain,
2078 * or -1U if we're at the end. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002079static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002080{
2081 unsigned int next;
2082
2083 /* If this descriptor says it doesn't chain, we're done. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002084 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002085 return -1U;
2086
2087 /* Check they're not leading us off end of descriptors. */
Paul E. McKenney3a5db0b2017-11-27 09:45:10 -08002088 next = vhost16_to_cpu(vq, READ_ONCE(desc->next));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002089 return next;
2090}
2091
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002092static int get_indirect(struct vhost_virtqueue *vq,
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002093 struct iovec iov[], unsigned int iov_size,
2094 unsigned int *out_num, unsigned int *in_num,
2095 struct vhost_log *log, unsigned int *log_num,
2096 struct vring_desc *indirect)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002097{
2098 struct vring_desc desc;
2099 unsigned int i = 0, count, found = 0;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002100 u32 len = vhost32_to_cpu(vq, indirect->len);
Al Viroaad9a1c2014-12-10 14:49:01 -05002101 struct iov_iter from;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002102 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002103
2104 /* Sanity check */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002105 if (unlikely(len % sizeof desc)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002106 vq_err(vq, "Invalid length in indirect descriptor: "
2107 "len 0x%llx not multiple of 0x%zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002108 (unsigned long long)len,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002109 sizeof desc);
2110 return -EINVAL;
2111 }
2112
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002113 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002114 UIO_MAXIOV, VHOST_ACCESS_RO);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002115 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002116 if (ret != -EAGAIN)
2117 vq_err(vq, "Translation failure %d in indirect.\n", ret);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002118 return ret;
2119 }
Al Viroaad9a1c2014-12-10 14:49:01 -05002120 iov_iter_init(&from, READ, vq->indirect, ret, len);
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002121 count = len / sizeof desc;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002122 /* Buffers are chained via a 16 bit next field, so
2123 * we can have at most 2^16 of these. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002124 if (unlikely(count > USHRT_MAX + 1)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002125 vq_err(vq, "Indirect buffer length too big: %d\n",
2126 indirect->len);
2127 return -E2BIG;
2128 }
2129
2130 do {
2131 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002132 if (unlikely(++found > count)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002133 vq_err(vq, "Loop detected: last one at %u "
2134 "indirect size %u\n",
2135 i, count);
2136 return -EINVAL;
2137 }
Al Virocbbd26b2016-11-01 22:09:04 -04002138 if (unlikely(!copy_from_iter_full(&desc, sizeof(desc), &from))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002139 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002140 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002141 return -EINVAL;
2142 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002143 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002144 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002145 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002146 return -EINVAL;
2147 }
2148
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002149 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2150 access = VHOST_ACCESS_WO;
2151 else
2152 access = VHOST_ACCESS_RO;
2153
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002154 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2155 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002156 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002157 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002158 if (ret != -EAGAIN)
2159 vq_err(vq, "Translation failure %d indirect idx %d\n",
2160 ret, i);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002161 return ret;
2162 }
2163 /* If this is an input descriptor, increment that count. */
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002164 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002165 *in_num += ret;
yongduan060423b2019-09-11 17:44:24 +08002166 if (unlikely(log && ret)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002167 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2168 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002169 ++*log_num;
2170 }
2171 } else {
2172 /* If it's an output descriptor, they're all supposed
2173 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002174 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002175 vq_err(vq, "Indirect descriptor "
2176 "has out after in: idx %d\n", i);
2177 return -EINVAL;
2178 }
2179 *out_num += ret;
2180 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002181 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002182 return 0;
2183}
2184
2185/* This looks in the virtqueue and for the first available buffer, and converts
2186 * it to an iovec for convenient access. Since descriptors consist of some
2187 * number of output then some number of input descriptors, it's actually two
2188 * iovecs, but we pack them into one and note how many of each there were.
2189 *
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002190 * This function returns the descriptor number found, or vq->num (which is
2191 * never a valid descriptor number) if none was found. A negative code is
2192 * returned on error. */
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002193int vhost_get_vq_desc(struct vhost_virtqueue *vq,
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002194 struct iovec iov[], unsigned int iov_size,
2195 unsigned int *out_num, unsigned int *in_num,
2196 struct vhost_log *log, unsigned int *log_num)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002197{
2198 struct vring_desc desc;
2199 unsigned int i, head, found = 0;
2200 u16 last_avail_idx;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002201 __virtio16 avail_idx;
2202 __virtio16 ring_head;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002203 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002204
2205 /* Check it isn't doing very strange things with descriptor numbers. */
2206 last_avail_idx = vq->last_avail_idx;
Jason Wange3b56cd2017-02-07 15:49:50 +08002207
2208 if (vq->avail_idx == vq->last_avail_idx) {
Jason Wang7b5d7532019-05-24 04:12:14 -04002209 if (unlikely(vhost_get_avail_idx(vq, &avail_idx))) {
Jason Wange3b56cd2017-02-07 15:49:50 +08002210 vq_err(vq, "Failed to access avail idx at %p\n",
2211 &vq->avail->idx);
2212 return -EFAULT;
2213 }
2214 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2215
2216 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
2217 vq_err(vq, "Guest moved used index from %u to %u",
2218 last_avail_idx, vq->avail_idx);
2219 return -EFAULT;
2220 }
2221
2222 /* If there's nothing new since last we looked, return
2223 * invalid.
2224 */
2225 if (vq->avail_idx == last_avail_idx)
2226 return vq->num;
2227
2228 /* Only get avail ring entries after they have been
2229 * exposed by guest.
2230 */
2231 smp_rmb();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002232 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002233
2234 /* Grab the next descriptor number they're advertising, and increment
2235 * the index we've seen. */
Jason Wang7b5d7532019-05-24 04:12:14 -04002236 if (unlikely(vhost_get_avail_head(vq, &ring_head, last_avail_idx))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002237 vq_err(vq, "Failed to read head: idx %d address %p\n",
2238 last_avail_idx,
2239 &vq->avail->ring[last_avail_idx % vq->num]);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002240 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002241 }
2242
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002243 head = vhost16_to_cpu(vq, ring_head);
2244
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002245 /* If their number is silly, that's an error. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002246 if (unlikely(head >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002247 vq_err(vq, "Guest says index %u > %u is available",
2248 head, vq->num);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002249 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002250 }
2251
2252 /* When we start there are none of either input nor output. */
2253 *out_num = *in_num = 0;
2254 if (unlikely(log))
2255 *log_num = 0;
2256
2257 i = head;
2258 do {
2259 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002260 if (unlikely(i >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002261 vq_err(vq, "Desc index is %u > %u, head = %u",
2262 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002263 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002264 }
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002265 if (unlikely(++found > vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002266 vq_err(vq, "Loop detected: last one at %u "
2267 "vq size %u head %u\n",
2268 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002269 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002270 }
Jason Wang7b5d7532019-05-24 04:12:14 -04002271 ret = vhost_get_desc(vq, &desc, i);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002272 if (unlikely(ret)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002273 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
2274 i, vq->desc + i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002275 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002276 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002277 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002278 ret = get_indirect(vq, iov, iov_size,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002279 out_num, in_num,
2280 log, log_num, &desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002281 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002282 if (ret != -EAGAIN)
2283 vq_err(vq, "Failure detected "
2284 "in indirect descriptor at idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002285 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002286 }
2287 continue;
2288 }
2289
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002290 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2291 access = VHOST_ACCESS_WO;
2292 else
2293 access = VHOST_ACCESS_RO;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002294 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2295 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002296 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002297 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002298 if (ret != -EAGAIN)
2299 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2300 ret, i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002301 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002302 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002303 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002304 /* If this is an input descriptor,
2305 * increment that count. */
2306 *in_num += ret;
yongduan060423b2019-09-11 17:44:24 +08002307 if (unlikely(log && ret)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002308 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2309 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002310 ++*log_num;
2311 }
2312 } else {
2313 /* If it's an output descriptor, they're all supposed
2314 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002315 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002316 vq_err(vq, "Descriptor has out after in: "
2317 "idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002318 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002319 }
2320 *out_num += ret;
2321 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002322 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002323
2324 /* On success, increment avail index. */
2325 vq->last_avail_idx++;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002326
2327 /* Assume notifications from guest are disabled at this point,
2328 * if they aren't we would need to update avail_event index. */
2329 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002330 return head;
2331}
Asias He6ac1afb2013-05-06 16:38:21 +08002332EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002333
2334/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
David Stevens8dd014a2010-07-27 18:52:21 +03002335void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002336{
David Stevens8dd014a2010-07-27 18:52:21 +03002337 vq->last_avail_idx -= n;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002338}
Asias He6ac1afb2013-05-06 16:38:21 +08002339EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002340
2341/* After we've used one of their buffers, we tell them about it. We'll then
2342 * want to notify the guest, using eventfd. */
2343int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2344{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002345 struct vring_used_elem heads = {
2346 cpu_to_vhost32(vq, head),
2347 cpu_to_vhost32(vq, len)
2348 };
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002349
Jason Wangc49e4e52013-09-02 16:40:58 +08002350 return vhost_add_used_n(vq, &heads, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002351}
Asias He6ac1afb2013-05-06 16:38:21 +08002352EXPORT_SYMBOL_GPL(vhost_add_used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002353
David Stevens8dd014a2010-07-27 18:52:21 +03002354static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2355 struct vring_used_elem *heads,
2356 unsigned count)
2357{
Michael S. Tsirkina865e422020-04-06 08:42:55 -04002358 vring_used_elem_t __user *used;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002359 u16 old, new;
David Stevens8dd014a2010-07-27 18:52:21 +03002360 int start;
2361
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002362 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002363 used = vq->used->ring + start;
Jason Wang7b5d7532019-05-24 04:12:14 -04002364 if (vhost_put_used(vq, heads, start, count)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002365 vq_err(vq, "Failed to write used");
2366 return -EFAULT;
2367 }
2368 if (unlikely(vq->log_used)) {
2369 /* Make sure data is seen before log. */
2370 smp_wmb();
2371 /* Log used ring entry write. */
Jason Wangcc5e7102019-01-16 16:54:42 +08002372 log_used(vq, ((void __user *)used - (void __user *)vq->used),
2373 count * sizeof *used);
David Stevens8dd014a2010-07-27 18:52:21 +03002374 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002375 old = vq->last_used_idx;
2376 new = (vq->last_used_idx += count);
2377 /* If the driver never bothers to signal in a very long while,
2378 * used index might wrap around. If that happens, invalidate
2379 * signalled_used index we stored. TODO: make sure driver
2380 * signals at least once in 2^16 and remove this. */
2381 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2382 vq->signalled_used_valid = false;
David Stevens8dd014a2010-07-27 18:52:21 +03002383 return 0;
2384}
2385
2386/* After we've used one of their buffers, we tell them about it. We'll then
2387 * want to notify the guest, using eventfd. */
2388int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2389 unsigned count)
2390{
2391 int start, n, r;
2392
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002393 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002394 n = vq->num - start;
2395 if (n < count) {
2396 r = __vhost_add_used_n(vq, heads, n);
2397 if (r < 0)
2398 return r;
2399 heads += n;
2400 count -= n;
2401 }
2402 r = __vhost_add_used_n(vq, heads, count);
2403
2404 /* Make sure buffer is written before we update index. */
2405 smp_wmb();
Jason Wang7b5d7532019-05-24 04:12:14 -04002406 if (vhost_put_used_idx(vq)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002407 vq_err(vq, "Failed to increment used idx");
2408 return -EFAULT;
2409 }
2410 if (unlikely(vq->log_used)) {
Jason Wang841df922018-12-13 10:53:37 +08002411 /* Make sure used idx is seen before log. */
2412 smp_wmb();
David Stevens8dd014a2010-07-27 18:52:21 +03002413 /* Log used index update. */
Jason Wangcc5e7102019-01-16 16:54:42 +08002414 log_used(vq, offsetof(struct vring_used, idx),
2415 sizeof vq->used->idx);
David Stevens8dd014a2010-07-27 18:52:21 +03002416 if (vq->log_ctx)
2417 eventfd_signal(vq->log_ctx, 1);
2418 }
2419 return r;
2420}
Asias He6ac1afb2013-05-06 16:38:21 +08002421EXPORT_SYMBOL_GPL(vhost_add_used_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002422
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002423static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002424{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002425 __u16 old, new;
2426 __virtio16 event;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002427 bool v;
Jason Wang8d658432017-07-27 11:22:05 +08002428 /* Flush out used index updates. This is paired
2429 * with the barrier that the Guest executes when enabling
2430 * interrupts. */
2431 smp_mb();
Michael S. Tsirkin0d499352010-05-11 19:44:17 +03002432
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002433 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002434 unlikely(vq->avail_idx == vq->last_avail_idx))
2435 return true;
2436
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002437 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002438 __virtio16 flags;
Jason Wang7b5d7532019-05-24 04:12:14 -04002439 if (vhost_get_avail_flags(vq, &flags)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002440 vq_err(vq, "Failed to get flags");
2441 return true;
2442 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002443 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002444 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002445 old = vq->signalled_used;
2446 v = vq->signalled_used_valid;
2447 new = vq->signalled_used = vq->last_used_idx;
2448 vq->signalled_used_valid = true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002449
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002450 if (unlikely(!v))
2451 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002452
Jason Wang7b5d7532019-05-24 04:12:14 -04002453 if (vhost_get_used_event(vq, &event)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002454 vq_err(vq, "Failed to get used event idx");
2455 return true;
2456 }
Jason Wang8d658432017-07-27 11:22:05 +08002457 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002458}
2459
2460/* This actually signals the guest, using eventfd. */
2461void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2462{
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002463 /* Signal the Guest tell them we used something up. */
Zhu Lingshan265a0ad2020-07-31 14:55:28 +08002464 if (vq->call_ctx.ctx && vhost_notify(dev, vq))
2465 eventfd_signal(vq->call_ctx.ctx, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002466}
Asias He6ac1afb2013-05-06 16:38:21 +08002467EXPORT_SYMBOL_GPL(vhost_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002468
2469/* And here's the combo meal deal. Supersize me! */
2470void vhost_add_used_and_signal(struct vhost_dev *dev,
2471 struct vhost_virtqueue *vq,
2472 unsigned int head, int len)
2473{
2474 vhost_add_used(vq, head, len);
2475 vhost_signal(dev, vq);
2476}
Asias He6ac1afb2013-05-06 16:38:21 +08002477EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002478
David Stevens8dd014a2010-07-27 18:52:21 +03002479/* multi-buffer version of vhost_add_used_and_signal */
2480void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2481 struct vhost_virtqueue *vq,
2482 struct vring_used_elem *heads, unsigned count)
2483{
2484 vhost_add_used_n(vq, heads, count);
2485 vhost_signal(dev, vq);
2486}
Asias He6ac1afb2013-05-06 16:38:21 +08002487EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002488
Jason Wangd4a60602016-03-04 06:24:52 -05002489/* return true if we're sure that avaiable ring is empty */
2490bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2491{
2492 __virtio16 avail_idx;
2493 int r;
2494
Jason Wang275bf962017-01-18 15:02:01 +08002495 if (vq->avail_idx != vq->last_avail_idx)
Jason Wangd4a60602016-03-04 06:24:52 -05002496 return false;
2497
Jason Wang7b5d7532019-05-24 04:12:14 -04002498 r = vhost_get_avail_idx(vq, &avail_idx);
Jason Wang275bf962017-01-18 15:02:01 +08002499 if (unlikely(r))
2500 return false;
2501 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2502
2503 return vq->avail_idx == vq->last_avail_idx;
Jason Wangd4a60602016-03-04 06:24:52 -05002504}
2505EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2506
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002507/* OK, now we need to know about added descriptors. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002508bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002509{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002510 __virtio16 avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002511 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302512
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002513 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2514 return false;
2515 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002516 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002517 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002518 if (r) {
2519 vq_err(vq, "Failed to enable notification at %p: %d\n",
2520 &vq->used->flags, r);
2521 return false;
2522 }
2523 } else {
Jason Wang2723fea2011-06-21 18:04:38 +08002524 r = vhost_update_avail_event(vq, vq->avail_idx);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002525 if (r) {
2526 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2527 vhost_avail_event(vq), r);
2528 return false;
2529 }
2530 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002531 /* They could have slipped one in as we were doing that: make
2532 * sure it's written, then check again. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00002533 smp_mb();
Jason Wang7b5d7532019-05-24 04:12:14 -04002534 r = vhost_get_avail_idx(vq, &avail_idx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002535 if (r) {
2536 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2537 &vq->avail->idx, r);
2538 return false;
2539 }
2540
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002541 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002542}
Asias He6ac1afb2013-05-06 16:38:21 +08002543EXPORT_SYMBOL_GPL(vhost_enable_notify);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002544
2545/* We don't need to be notified again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002546void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002547{
2548 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302549
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002550 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2551 return;
2552 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002553 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002554 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002555 if (r)
Yunsheng Linae6961d2020-09-01 10:39:09 +08002556 vq_err(vq, "Failed to disable notification at %p: %d\n",
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002557 &vq->used->flags, r);
2558 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002559}
Asias He6ac1afb2013-05-06 16:38:21 +08002560EXPORT_SYMBOL_GPL(vhost_disable_notify);
2561
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002562/* Create a new message. */
2563struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2564{
2565 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2566 if (!node)
2567 return NULL;
Michael S. Tsirkin670ae9c2018-05-12 00:33:10 +03002568
2569 /* Make sure all padding within the structure is initialized. */
2570 memset(&node->msg, 0, sizeof node->msg);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002571 node->vq = vq;
2572 node->msg.type = type;
2573 return node;
2574}
2575EXPORT_SYMBOL_GPL(vhost_new_msg);
2576
2577void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2578 struct vhost_msg_node *node)
2579{
2580 spin_lock(&dev->iotlb_lock);
2581 list_add_tail(&node->node, head);
2582 spin_unlock(&dev->iotlb_lock);
2583
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002584 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002585}
2586EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2587
2588struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2589 struct list_head *head)
2590{
2591 struct vhost_msg_node *node = NULL;
2592
2593 spin_lock(&dev->iotlb_lock);
2594 if (!list_empty(head)) {
2595 node = list_first_entry(head, struct vhost_msg_node,
2596 node);
2597 list_del(&node->node);
2598 }
2599 spin_unlock(&dev->iotlb_lock);
2600
2601 return node;
2602}
2603EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2604
Jason Wang460f7ce2020-08-04 19:20:38 +03002605void vhost_set_backend_features(struct vhost_dev *dev, u64 features)
2606{
2607 struct vhost_virtqueue *vq;
2608 int i;
2609
2610 mutex_lock(&dev->mutex);
2611 for (i = 0; i < dev->nvqs; ++i) {
2612 vq = dev->vqs[i];
2613 mutex_lock(&vq->mutex);
2614 vq->acked_backend_features = features;
2615 mutex_unlock(&vq->mutex);
2616 }
2617 mutex_unlock(&dev->mutex);
2618}
2619EXPORT_SYMBOL_GPL(vhost_set_backend_features);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002620
Asias He6ac1afb2013-05-06 16:38:21 +08002621static int __init vhost_init(void)
2622{
2623 return 0;
2624}
2625
2626static void __exit vhost_exit(void)
2627{
2628}
2629
2630module_init(vhost_init);
2631module_exit(vhost_exit);
2632
2633MODULE_VERSION("0.0.1");
2634MODULE_LICENSE("GPL v2");
2635MODULE_AUTHOR("Michael S. Tsirkin");
2636MODULE_DESCRIPTION("Host kernel accelerator for virtio");