blob: c3b49975dc2821bf636657083922ea466221bbf5 [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));
305 spin_lock_init(&call_ctx->ctx_lock);
306}
307
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000308static void vhost_vq_reset(struct vhost_dev *dev,
309 struct vhost_virtqueue *vq)
310{
311 vq->num = 1;
312 vq->desc = NULL;
313 vq->avail = NULL;
314 vq->used = NULL;
315 vq->last_avail_idx = 0;
316 vq->avail_idx = 0;
317 vq->last_used_idx = 0;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300318 vq->signalled_used = 0;
319 vq->signalled_used_valid = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000320 vq->used_flags = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000321 vq->log_used = false;
322 vq->log_addr = -1ull;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000323 vq->private_data = NULL;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300324 vq->acked_features = 0;
Jason Wang429711a2018-08-06 11:17:47 +0800325 vq->acked_backend_features = 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000326 vq->log_base = NULL;
327 vq->error_ctx = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000328 vq->kick = NULL;
Michael S. Tsirkin73a99f02010-02-23 11:23:45 +0200329 vq->log_ctx = NULL;
Greg Kurzc5072032016-02-16 15:59:34 +0100330 vhost_reset_is_le(vq);
331 vhost_disable_cross_endian(vq);
Jason Wang03088132016-03-04 06:24:53 -0500332 vq->busyloop_timeout = 0;
Jason Wanga9709d62016-06-23 02:04:31 -0400333 vq->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400334 vq->iotlb = NULL;
Zhu Lingshan265a0ad2020-07-31 14:55:28 +0800335 vhost_vring_call_reset(&vq->call_ctx);
Jason Wangf8894912017-02-28 17:56:02 +0800336 __vhost_vq_meta_reset(vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000337}
338
Tejun Heoc23f34452010-06-02 20:40:00 +0200339static int vhost_worker(void *data)
340{
341 struct vhost_dev *dev = data;
Jason Wang04b96e52016-04-25 22:14:33 -0400342 struct vhost_work *work, *work_next;
343 struct llist_node *node;
Tejun Heoc23f34452010-06-02 20:40:00 +0200344
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700345 kthread_use_mm(dev->mm);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200346
Tejun Heoc23f34452010-06-02 20:40:00 +0200347 for (;;) {
348 /* mb paired w/ kthread_stop */
349 set_current_state(TASK_INTERRUPTIBLE);
350
Tejun Heoc23f34452010-06-02 20:40:00 +0200351 if (kthread_should_stop()) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200352 __set_current_state(TASK_RUNNING);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200353 break;
Tejun Heoc23f34452010-06-02 20:40:00 +0200354 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200355
Jason Wang04b96e52016-04-25 22:14:33 -0400356 node = llist_del_all(&dev->work_list);
357 if (!node)
358 schedule();
359
360 node = llist_reverse_order(node);
361 /* make sure flag is seen after deletion */
362 smp_wmb();
363 llist_for_each_entry_safe(work, work_next, node, node) {
364 clear_bit(VHOST_WORK_QUEUED, &work->flags);
Tejun Heoc23f34452010-06-02 20:40:00 +0200365 __set_current_state(TASK_RUNNING);
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800366 kcov_remote_start_common(dev->kcov_handle);
Tejun Heoc23f34452010-06-02 20:40:00 +0200367 work->fn(work);
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800368 kcov_remote_stop();
Nadav Har'Eld550dda2012-02-27 15:07:29 +0200369 if (need_resched())
370 schedule();
Jason Wang04b96e52016-04-25 22:14:33 -0400371 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200372 }
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700373 kthread_unuse_mm(dev->mm);
Michael S. Tsirkin64e1c802010-10-06 15:34:45 +0200374 return 0;
Tejun Heoc23f34452010-06-02 20:40:00 +0200375}
376
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000377static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq)
378{
379 kfree(vq->indirect);
380 vq->indirect = NULL;
381 kfree(vq->log);
382 vq->log = NULL;
383 kfree(vq->heads);
384 vq->heads = NULL;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000385}
386
Jason Wange0e9b402010-09-14 23:53:05 +0800387/* Helper to allocate iovec buffers for all vqs. */
388static long vhost_dev_alloc_iovecs(struct vhost_dev *dev)
389{
Asias He6d5e6aa2013-05-06 16:38:23 +0800390 struct vhost_virtqueue *vq;
Jason Wange0e9b402010-09-14 23:53:05 +0800391 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530392
Jason Wange0e9b402010-09-14 23:53:05 +0800393 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800394 vq = dev->vqs[i];
Kees Cook6da2ec52018-06-12 13:55:00 -0700395 vq->indirect = kmalloc_array(UIO_MAXIOV,
396 sizeof(*vq->indirect),
397 GFP_KERNEL);
Jason Wangb46a0bf2019-01-28 15:05:05 +0800398 vq->log = kmalloc_array(dev->iov_limit, sizeof(*vq->log),
Kees Cook6da2ec52018-06-12 13:55:00 -0700399 GFP_KERNEL);
Jason Wangb46a0bf2019-01-28 15:05:05 +0800400 vq->heads = kmalloc_array(dev->iov_limit, sizeof(*vq->heads),
Kees Cook6da2ec52018-06-12 13:55:00 -0700401 GFP_KERNEL);
Asias He6d5e6aa2013-05-06 16:38:23 +0800402 if (!vq->indirect || !vq->log || !vq->heads)
Jason Wange0e9b402010-09-14 23:53:05 +0800403 goto err_nomem;
404 }
405 return 0;
Krishna Kumard47effe2011-03-01 17:06:37 +0530406
Jason Wange0e9b402010-09-14 23:53:05 +0800407err_nomem:
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000408 for (; i >= 0; --i)
Asias He3ab2e422013-04-27 11:16:48 +0800409 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800410 return -ENOMEM;
411}
412
413static void vhost_dev_free_iovecs(struct vhost_dev *dev)
414{
415 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530416
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000417 for (i = 0; i < dev->nvqs; ++i)
Asias He3ab2e422013-04-27 11:16:48 +0800418 vhost_vq_free_iovecs(dev->vqs[i]);
Jason Wange0e9b402010-09-14 23:53:05 +0800419}
420
Jason Wange82b9b02019-05-17 00:29:49 -0400421bool vhost_exceeds_weight(struct vhost_virtqueue *vq,
422 int pkts, int total_len)
423{
424 struct vhost_dev *dev = vq->dev;
425
426 if ((dev->byte_weight && total_len >= dev->byte_weight) ||
427 pkts >= dev->weight) {
428 vhost_poll_queue(&vq->poll);
429 return true;
430 }
431
432 return false;
433}
434EXPORT_SYMBOL_GPL(vhost_exceeds_weight);
435
Jason Wang4942e822019-05-24 04:12:16 -0400436static size_t vhost_get_avail_size(struct vhost_virtqueue *vq,
437 unsigned int num)
438{
439 size_t event __maybe_unused =
440 vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
441
442 return sizeof(*vq->avail) +
443 sizeof(*vq->avail->ring) * num + event;
444}
445
446static size_t vhost_get_used_size(struct vhost_virtqueue *vq,
447 unsigned int num)
448{
449 size_t event __maybe_unused =
450 vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
451
452 return sizeof(*vq->used) +
453 sizeof(*vq->used->ring) * num + event;
454}
455
456static size_t vhost_get_desc_size(struct vhost_virtqueue *vq,
457 unsigned int num)
458{
459 return sizeof(*vq->desc) * num;
460}
461
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +0800462void vhost_dev_init(struct vhost_dev *dev,
Jason Wange82b9b02019-05-17 00:29:49 -0400463 struct vhost_virtqueue **vqs, int nvqs,
Jason Wang792a4f22020-03-26 22:01:18 +0800464 int iov_limit, int weight, int byte_weight,
Jason Wang01fcb1c2020-05-29 16:02:58 +0800465 bool use_worker,
Jason Wang792a4f22020-03-26 22:01:18 +0800466 int (*msg_handler)(struct vhost_dev *dev,
467 struct vhost_iotlb_msg *msg))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000468{
Asias He6d5e6aa2013-05-06 16:38:23 +0800469 struct vhost_virtqueue *vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000470 int i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200471
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000472 dev->vqs = vqs;
473 dev->nvqs = nvqs;
474 mutex_init(&dev->mutex);
475 dev->log_ctx = NULL;
Jason Wanga9709d62016-06-23 02:04:31 -0400476 dev->umem = NULL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400477 dev->iotlb = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000478 dev->mm = NULL;
Tejun Heoc23f34452010-06-02 20:40:00 +0200479 dev->worker = NULL;
Jason Wangb46a0bf2019-01-28 15:05:05 +0800480 dev->iov_limit = iov_limit;
Jason Wange82b9b02019-05-17 00:29:49 -0400481 dev->weight = weight;
482 dev->byte_weight = byte_weight;
Jason Wang01fcb1c2020-05-29 16:02:58 +0800483 dev->use_worker = use_worker;
Jason Wang792a4f22020-03-26 22:01:18 +0800484 dev->msg_handler = msg_handler;
Jason Wang04b96e52016-04-25 22:14:33 -0400485 init_llist_head(&dev->work_list);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400486 init_waitqueue_head(&dev->wait);
487 INIT_LIST_HEAD(&dev->read_list);
488 INIT_LIST_HEAD(&dev->pending_list);
489 spin_lock_init(&dev->iotlb_lock);
Michael S. Tsirkin3d2c7d32019-08-10 13:53:21 -0400490
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000491
492 for (i = 0; i < dev->nvqs; ++i) {
Asias He6d5e6aa2013-05-06 16:38:23 +0800493 vq = dev->vqs[i];
494 vq->log = NULL;
495 vq->indirect = NULL;
496 vq->heads = NULL;
497 vq->dev = dev;
498 mutex_init(&vq->mutex);
499 vhost_vq_reset(dev, vq);
500 if (vq->handle_kick)
501 vhost_poll_init(&vq->poll, vq->handle_kick,
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800502 EPOLLIN, dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000503 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000504}
Asias He6ac1afb2013-05-06 16:38:21 +0800505EXPORT_SYMBOL_GPL(vhost_dev_init);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000506
507/* Caller should have device mutex */
508long vhost_dev_check_owner(struct vhost_dev *dev)
509{
510 /* Are you the owner? If not, I don't think you mean to do that */
511 return dev->mm == current->mm ? 0 : -EPERM;
512}
Asias He6ac1afb2013-05-06 16:38:21 +0800513EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000514
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300515struct vhost_attach_cgroups_struct {
Krishna Kumard47effe2011-03-01 17:06:37 +0530516 struct vhost_work work;
517 struct task_struct *owner;
518 int ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300519};
520
521static void vhost_attach_cgroups_work(struct vhost_work *work)
522{
Krishna Kumard47effe2011-03-01 17:06:37 +0530523 struct vhost_attach_cgroups_struct *s;
524
525 s = container_of(work, struct vhost_attach_cgroups_struct, work);
526 s->ret = cgroup_attach_task_all(s->owner, current);
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300527}
528
529static int vhost_attach_cgroups(struct vhost_dev *dev)
530{
Krishna Kumard47effe2011-03-01 17:06:37 +0530531 struct vhost_attach_cgroups_struct attach;
532
533 attach.owner = current;
534 vhost_work_init(&attach.work, vhost_attach_cgroups_work);
535 vhost_work_queue(dev, &attach.work);
536 vhost_work_flush(dev, &attach.work);
537 return attach.ret;
Michael S. Tsirkin87d6a412010-09-02 14:05:30 +0300538}
539
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000540/* Caller should have device mutex */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300541bool vhost_dev_has_owner(struct vhost_dev *dev)
542{
543 return dev->mm;
544}
Asias He6ac1afb2013-05-06 16:38:21 +0800545EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300546
Jason Wang5ce995f2020-05-29 16:02:59 +0800547static void vhost_attach_mm(struct vhost_dev *dev)
548{
549 /* No owner, become one */
550 if (dev->use_worker) {
551 dev->mm = get_task_mm(current);
552 } else {
553 /* vDPA device does not use worker thead, so there's
554 * no need to hold the address space for mm. This help
555 * to avoid deadlock in the case of mmap() which may
556 * held the refcnt of the file and depends on release
557 * method to remove vma.
558 */
559 dev->mm = current->mm;
560 mmgrab(dev->mm);
561 }
562}
563
564static void vhost_detach_mm(struct vhost_dev *dev)
565{
566 if (!dev->mm)
567 return;
568
569 if (dev->use_worker)
570 mmput(dev->mm);
571 else
572 mmdrop(dev->mm);
573
574 dev->mm = NULL;
575}
576
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300577/* Caller should have device mutex */
Asias He54db63c2013-05-06 11:15:59 +0800578long vhost_dev_set_owner(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000579{
Tejun Heoc23f34452010-06-02 20:40:00 +0200580 struct task_struct *worker;
581 int err;
Krishna Kumard47effe2011-03-01 17:06:37 +0530582
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000583 /* Is there an owner already? */
Michael S. Tsirkin05c05352013-06-06 15:20:39 +0300584 if (vhost_dev_has_owner(dev)) {
Tejun Heoc23f34452010-06-02 20:40:00 +0200585 err = -EBUSY;
586 goto err_mm;
587 }
Krishna Kumard47effe2011-03-01 17:06:37 +0530588
Jason Wang5ce995f2020-05-29 16:02:59 +0800589 vhost_attach_mm(dev);
590
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800591 dev->kcov_handle = kcov_common_handle();
Jason Wang01fcb1c2020-05-29 16:02:58 +0800592 if (dev->use_worker) {
593 worker = kthread_create(vhost_worker, dev,
594 "vhost-%d", current->pid);
595 if (IS_ERR(worker)) {
596 err = PTR_ERR(worker);
597 goto err_worker;
598 }
599
600 dev->worker = worker;
601 wake_up_process(worker); /* avoid contributing to loadavg */
602
603 err = vhost_attach_cgroups(dev);
604 if (err)
605 goto err_cgroup;
Tejun Heoc23f34452010-06-02 20:40:00 +0200606 }
607
Jason Wange0e9b402010-09-14 23:53:05 +0800608 err = vhost_dev_alloc_iovecs(dev);
609 if (err)
610 goto err_cgroup;
611
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000612 return 0;
Michael S. Tsirkin9e3d1952010-07-27 22:56:50 +0300613err_cgroup:
Jason Wang01fcb1c2020-05-29 16:02:58 +0800614 if (dev->worker) {
615 kthread_stop(dev->worker);
616 dev->worker = NULL;
617 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200618err_worker:
Jason Wang5ce995f2020-05-29 16:02:59 +0800619 vhost_detach_mm(dev);
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800620 dev->kcov_handle = 0;
Tejun Heoc23f34452010-06-02 20:40:00 +0200621err_mm:
622 return err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000623}
Asias He6ac1afb2013-05-06 16:38:21 +0800624EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000625
Jason Wang0bbe3062020-03-26 22:01:19 +0800626static struct vhost_iotlb *iotlb_alloc(void)
Jason Wanga9709d62016-06-23 02:04:31 -0400627{
Jason Wang0bbe3062020-03-26 22:01:19 +0800628 return vhost_iotlb_alloc(max_iotlb_entries,
629 VHOST_IOTLB_FLAG_RETIRE);
630}
631
632struct vhost_iotlb *vhost_dev_reset_owner_prepare(void)
633{
634 return iotlb_alloc();
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300635}
Asias He6ac1afb2013-05-06 16:38:21 +0800636EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000637
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300638/* Caller should have device mutex */
Jason Wang0bbe3062020-03-26 22:01:19 +0800639void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_iotlb *umem)
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300640{
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300641 int i;
642
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800643 vhost_dev_cleanup(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000644
Jason Wanga9709d62016-06-23 02:04:31 -0400645 dev->umem = umem;
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300646 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
647 * VQs aren't running.
648 */
649 for (i = 0; i < dev->nvqs; ++i)
Jason Wanga9709d62016-06-23 02:04:31 -0400650 dev->vqs[i]->umem = umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000651}
Asias He6ac1afb2013-05-06 16:38:21 +0800652EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000653
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000654void vhost_dev_stop(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000655{
656 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530657
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000658 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800659 if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
660 vhost_poll_stop(&dev->vqs[i]->poll);
661 vhost_poll_flush(&dev->vqs[i]->poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000662 }
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000663 }
664}
Asias He6ac1afb2013-05-06 16:38:21 +0800665EXPORT_SYMBOL_GPL(vhost_dev_stop);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000666
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400667static void vhost_clear_msg(struct vhost_dev *dev)
668{
669 struct vhost_msg_node *node, *n;
670
671 spin_lock(&dev->iotlb_lock);
672
673 list_for_each_entry_safe(node, n, &dev->read_list, node) {
674 list_del(&node->node);
675 kfree(node);
676 }
677
678 list_for_each_entry_safe(node, n, &dev->pending_list, node) {
679 list_del(&node->node);
680 kfree(node);
681 }
682
683 spin_unlock(&dev->iotlb_lock);
684}
685
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800686void vhost_dev_cleanup(struct vhost_dev *dev)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000687{
688 int i;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000689
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000690 for (i = 0; i < dev->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +0800691 if (dev->vqs[i]->error_ctx)
692 eventfd_ctx_put(dev->vqs[i]->error_ctx);
Asias He3ab2e422013-04-27 11:16:48 +0800693 if (dev->vqs[i]->kick)
694 fput(dev->vqs[i]->kick);
Zhu Lingshan265a0ad2020-07-31 14:55:28 +0800695 if (dev->vqs[i]->call_ctx.ctx)
696 eventfd_ctx_put(dev->vqs[i]->call_ctx.ctx);
Asias He3ab2e422013-04-27 11:16:48 +0800697 vhost_vq_reset(dev, dev->vqs[i]);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000698 }
Jason Wange0e9b402010-09-14 23:53:05 +0800699 vhost_dev_free_iovecs(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000700 if (dev->log_ctx)
701 eventfd_ctx_put(dev->log_ctx);
702 dev->log_ctx = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000703 /* No one will access memory at this point */
Jason Wang0bbe3062020-03-26 22:01:19 +0800704 vhost_iotlb_free(dev->umem);
Jason Wanga9709d62016-06-23 02:04:31 -0400705 dev->umem = NULL;
Jason Wang0bbe3062020-03-26 22:01:19 +0800706 vhost_iotlb_free(dev->iotlb);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400707 dev->iotlb = NULL;
708 vhost_clear_msg(dev);
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800709 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
Jason Wang04b96e52016-04-25 22:14:33 -0400710 WARN_ON(!llist_empty(&dev->work_list));
Eric Dumazet78b620c2010-08-31 02:05:57 +0000711 if (dev->worker) {
712 kthread_stop(dev->worker);
713 dev->worker = NULL;
Andrey Konovalov8f6a7f92019-12-04 16:52:50 -0800714 dev->kcov_handle = 0;
Eric Dumazet78b620c2010-08-31 02:05:57 +0000715 }
Jason Wang5ce995f2020-05-29 16:02:59 +0800716 vhost_detach_mm(dev);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000717}
Asias He6ac1afb2013-05-06 16:38:21 +0800718EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000719
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800720static bool log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000721{
722 u64 a = addr / VHOST_PAGE_SIZE / 8;
Krishna Kumard47effe2011-03-01 17:06:37 +0530723
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000724 /* Make sure 64 bit math will not overflow. */
725 if (a > ULONG_MAX - (unsigned long)log_base ||
726 a + (unsigned long)log_base > ULONG_MAX)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800727 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000728
Linus Torvalds96d4f262019-01-03 18:57:57 -0800729 return access_ok(log_base + a,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000730 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
731}
732
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300733static bool vhost_overflow(u64 uaddr, u64 size)
734{
735 /* Make sure 64 bit math will not overflow. */
736 return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
737}
738
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000739/* Caller should have vq mutex and device mutex. */
Jason Wang0bbe3062020-03-26 22:01:19 +0800740static bool vq_memory_access_ok(void __user *log_base, struct vhost_iotlb *umem,
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800741 int log_all)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000742{
Jason Wang0bbe3062020-03-26 22:01:19 +0800743 struct vhost_iotlb_map *map;
Jeff Dike179b2842010-04-07 09:59:10 -0400744
Jason Wanga9709d62016-06-23 02:04:31 -0400745 if (!umem)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800746 return false;
Jeff Dike179b2842010-04-07 09:59:10 -0400747
Jason Wang0bbe3062020-03-26 22:01:19 +0800748 list_for_each_entry(map, &umem->list, link) {
749 unsigned long a = map->addr;
Jason Wanga9709d62016-06-23 02:04:31 -0400750
Jason Wang0bbe3062020-03-26 22:01:19 +0800751 if (vhost_overflow(map->addr, map->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800752 return false;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +0300753
754
Jason Wang0bbe3062020-03-26 22:01:19 +0800755 if (!access_ok((void __user *)a, map->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800756 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000757 else if (log_all && !log_access_ok(log_base,
Jason Wang0bbe3062020-03-26 22:01:19 +0800758 map->start,
759 map->size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800760 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000761 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800762 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000763}
764
Jason Wangf8894912017-02-28 17:56:02 +0800765static inline void __user *vhost_vq_meta_fetch(struct vhost_virtqueue *vq,
766 u64 addr, unsigned int size,
767 int type)
768{
Jason Wang0bbe3062020-03-26 22:01:19 +0800769 const struct vhost_iotlb_map *map = vq->meta_iotlb[type];
Jason Wangf8894912017-02-28 17:56:02 +0800770
Jason Wang0bbe3062020-03-26 22:01:19 +0800771 if (!map)
Jason Wangf8894912017-02-28 17:56:02 +0800772 return NULL;
773
Michael S. Tsirkin1b0be992020-05-15 11:29:53 -0400774 return (void __user *)(uintptr_t)(map->addr + addr - map->start);
Jason Wangf8894912017-02-28 17:56:02 +0800775}
776
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000777/* Can we switch to this memory table? */
778/* Caller should have device mutex but not vq mutex */
Jason Wang0bbe3062020-03-26 22:01:19 +0800779static bool memory_access_ok(struct vhost_dev *d, struct vhost_iotlb *umem,
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800780 int log_all)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000781{
782 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +0530783
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000784 for (i = 0; i < d->nvqs; ++i) {
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800785 bool ok;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300786 bool log;
787
Asias He3ab2e422013-04-27 11:16:48 +0800788 mutex_lock(&d->vqs[i]->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +0300789 log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000790 /* If ring is inactive, will check when it's enabled. */
Asias He3ab2e422013-04-27 11:16:48 +0800791 if (d->vqs[i]->private_data)
Jason Wanga9709d62016-06-23 02:04:31 -0400792 ok = vq_memory_access_ok(d->vqs[i]->log_base,
793 umem, log);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000794 else
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800795 ok = true;
Asias He3ab2e422013-04-27 11:16:48 +0800796 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000797 if (!ok)
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800798 return false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000799 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +0800800 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000801}
802
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400803static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
804 struct iovec iov[], int iov_size, int access);
Jason Wangbfe2bc52016-06-23 02:04:30 -0400805
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200806static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
Jason Wangbfe2bc52016-06-23 02:04:30 -0400807 const void *from, unsigned size)
808{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400809 int ret;
Jason Wangbfe2bc52016-06-23 02:04:30 -0400810
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400811 if (!vq->iotlb)
812 return __copy_to_user(to, from, size);
813 else {
814 /* This function should be called after iotlb
815 * prefetch, which means we're sure that all vq
816 * could be access through iotlb. So -EAGAIN should
817 * not happen in this case.
818 */
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400819 struct iov_iter t;
Jason Wangf8894912017-02-28 17:56:02 +0800820 void __user *uaddr = vhost_vq_meta_fetch(vq,
821 (u64)(uintptr_t)to, size,
Eric Auger7ced6c92018-04-11 15:30:38 +0200822 VHOST_ADDR_USED);
Jason Wangf8894912017-02-28 17:56:02 +0800823
824 if (uaddr)
825 return __copy_to_user(uaddr, from, size);
826
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400827 ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
828 ARRAY_SIZE(vq->iotlb_iov),
829 VHOST_ACCESS_WO);
830 if (ret < 0)
831 goto out;
832 iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
833 ret = copy_to_iter(from, size, &t);
834 if (ret == size)
835 ret = 0;
836 }
837out:
838 return ret;
839}
Jason Wangbfe2bc52016-06-23 02:04:30 -0400840
841static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +0200842 void __user *from, unsigned size)
Jason Wangbfe2bc52016-06-23 02:04:30 -0400843{
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400844 int ret;
845
846 if (!vq->iotlb)
847 return __copy_from_user(to, from, size);
848 else {
849 /* This function should be called after iotlb
850 * prefetch, which means we're sure that vq
851 * could be access through iotlb. So -EAGAIN should
852 * not happen in this case.
853 */
Jason Wangf8894912017-02-28 17:56:02 +0800854 void __user *uaddr = vhost_vq_meta_fetch(vq,
855 (u64)(uintptr_t)from, size,
856 VHOST_ADDR_DESC);
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400857 struct iov_iter f;
Jason Wangf8894912017-02-28 17:56:02 +0800858
859 if (uaddr)
860 return __copy_from_user(to, uaddr, size);
861
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400862 ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
863 ARRAY_SIZE(vq->iotlb_iov),
864 VHOST_ACCESS_RO);
865 if (ret < 0) {
866 vq_err(vq, "IOTLB translation failure: uaddr "
867 "%p size 0x%llx\n", from,
868 (unsigned long long) size);
869 goto out;
870 }
871 iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
872 ret = copy_from_iter(to, size, &f);
873 if (ret == size)
874 ret = 0;
875 }
876
877out:
878 return ret;
879}
880
Jason Wangf8894912017-02-28 17:56:02 +0800881static void __user *__vhost_get_user_slow(struct vhost_virtqueue *vq,
882 void __user *addr, unsigned int size,
883 int type)
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400884{
885 int ret;
886
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400887 ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
888 ARRAY_SIZE(vq->iotlb_iov),
889 VHOST_ACCESS_RO);
890 if (ret < 0) {
891 vq_err(vq, "IOTLB translation failure: uaddr "
892 "%p size 0x%llx\n", addr,
893 (unsigned long long) size);
894 return NULL;
895 }
896
897 if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
898 vq_err(vq, "Non atomic userspace memory access: uaddr "
899 "%p size 0x%llx\n", addr,
900 (unsigned long long) size);
901 return NULL;
902 }
903
904 return vq->iotlb_iov[0].iov_base;
905}
906
Jason Wangf8894912017-02-28 17:56:02 +0800907/* This function should be called after iotlb
908 * prefetch, which means we're sure that vq
909 * could be access through iotlb. So -EAGAIN should
910 * not happen in this case.
911 */
912static inline void __user *__vhost_get_user(struct vhost_virtqueue *vq,
Michael S. Tsirkin1b0be992020-05-15 11:29:53 -0400913 void __user *addr, unsigned int size,
Jason Wangf8894912017-02-28 17:56:02 +0800914 int type)
915{
916 void __user *uaddr = vhost_vq_meta_fetch(vq,
917 (u64)(uintptr_t)addr, size, type);
918 if (uaddr)
919 return uaddr;
920
921 return __vhost_get_user_slow(vq, addr, size, type);
922}
923
924#define vhost_put_user(vq, x, ptr) \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400925({ \
Guennadi Liakhovetski002ef182020-05-27 20:05:38 +0200926 int ret; \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400927 if (!vq->iotlb) { \
928 ret = __put_user(x, ptr); \
929 } else { \
930 __typeof__(ptr) to = \
Jason Wangf8894912017-02-28 17:56:02 +0800931 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
932 sizeof(*ptr), VHOST_ADDR_USED); \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400933 if (to != NULL) \
934 ret = __put_user(x, to); \
935 else \
936 ret = -EFAULT; \
937 } \
938 ret; \
939})
940
Jason Wang7b5d7532019-05-24 04:12:14 -0400941static inline int vhost_put_avail_event(struct vhost_virtqueue *vq)
942{
943 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
944 vhost_avail_event(vq));
945}
946
947static inline int vhost_put_used(struct vhost_virtqueue *vq,
948 struct vring_used_elem *head, int idx,
949 int count)
950{
951 return vhost_copy_to_user(vq, vq->used->ring + idx, head,
952 count * sizeof(*head));
953}
954
955static inline int vhost_put_used_flags(struct vhost_virtqueue *vq)
956
957{
958 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
959 &vq->used->flags);
960}
961
962static inline int vhost_put_used_idx(struct vhost_virtqueue *vq)
963
964{
965 return vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
966 &vq->used->idx);
967}
968
Jason Wangf8894912017-02-28 17:56:02 +0800969#define vhost_get_user(vq, x, ptr, type) \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400970({ \
971 int ret; \
972 if (!vq->iotlb) { \
973 ret = __get_user(x, ptr); \
974 } else { \
975 __typeof__(ptr) from = \
Jason Wangf8894912017-02-28 17:56:02 +0800976 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
977 sizeof(*ptr), \
978 type); \
Jason Wang6b1e6cc2016-06-23 02:04:32 -0400979 if (from != NULL) \
980 ret = __get_user(x, from); \
981 else \
982 ret = -EFAULT; \
983 } \
984 ret; \
985})
986
Jason Wangf8894912017-02-28 17:56:02 +0800987#define vhost_get_avail(vq, x, ptr) \
988 vhost_get_user(vq, x, ptr, VHOST_ADDR_AVAIL)
989
990#define vhost_get_used(vq, x, ptr) \
991 vhost_get_user(vq, x, ptr, VHOST_ADDR_USED)
992
Jason Wang86a07da2018-12-13 10:53:39 +0800993static void vhost_dev_lock_vqs(struct vhost_dev *d)
994{
995 int i = 0;
996 for (i = 0; i < d->nvqs; ++i)
997 mutex_lock_nested(&d->vqs[i]->mutex, i);
998}
999
1000static void vhost_dev_unlock_vqs(struct vhost_dev *d)
1001{
1002 int i = 0;
1003 for (i = 0; i < d->nvqs; ++i)
1004 mutex_unlock(&d->vqs[i]->mutex);
1005}
1006
Jason Wang7b5d7532019-05-24 04:12:14 -04001007static inline int vhost_get_avail_idx(struct vhost_virtqueue *vq,
1008 __virtio16 *idx)
1009{
1010 return vhost_get_avail(vq, *idx, &vq->avail->idx);
1011}
1012
1013static inline int vhost_get_avail_head(struct vhost_virtqueue *vq,
1014 __virtio16 *head, int idx)
1015{
1016 return vhost_get_avail(vq, *head,
1017 &vq->avail->ring[idx & (vq->num - 1)]);
1018}
1019
1020static inline int vhost_get_avail_flags(struct vhost_virtqueue *vq,
1021 __virtio16 *flags)
1022{
1023 return vhost_get_avail(vq, *flags, &vq->avail->flags);
1024}
1025
1026static inline int vhost_get_used_event(struct vhost_virtqueue *vq,
1027 __virtio16 *event)
1028{
1029 return vhost_get_avail(vq, *event, vhost_used_event(vq));
1030}
1031
1032static inline int vhost_get_used_idx(struct vhost_virtqueue *vq,
1033 __virtio16 *idx)
1034{
1035 return vhost_get_used(vq, *idx, &vq->used->idx);
1036}
1037
1038static inline int vhost_get_desc(struct vhost_virtqueue *vq,
1039 struct vring_desc *desc, int idx)
1040{
1041 return vhost_copy_from_user(vq, desc, vq->desc + idx, sizeof(*desc));
1042}
1043
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001044static void vhost_iotlb_notify_vq(struct vhost_dev *d,
1045 struct vhost_iotlb_msg *msg)
1046{
1047 struct vhost_msg_node *node, *n;
1048
1049 spin_lock(&d->iotlb_lock);
1050
1051 list_for_each_entry_safe(node, n, &d->pending_list, node) {
1052 struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
1053 if (msg->iova <= vq_msg->iova &&
Jason Wang2d66f992018-08-24 16:53:13 +08001054 msg->iova + msg->size - 1 >= vq_msg->iova &&
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001055 vq_msg->type == VHOST_IOTLB_MISS) {
1056 vhost_poll_queue(&node->vq->poll);
1057 list_del(&node->node);
1058 kfree(node);
1059 }
1060 }
1061
1062 spin_unlock(&d->iotlb_lock);
1063}
1064
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001065static bool umem_access_ok(u64 uaddr, u64 size, int access)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001066{
1067 unsigned long a = uaddr;
1068
Michael S. Tsirkinec33d032016-08-01 23:20:53 +03001069 /* Make sure 64 bit math will not overflow. */
1070 if (vhost_overflow(uaddr, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001071 return false;
Michael S. Tsirkinec33d032016-08-01 23:20:53 +03001072
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001073 if ((access & VHOST_ACCESS_RO) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001074 !access_ok((void __user *)a, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001075 return false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001076 if ((access & VHOST_ACCESS_WO) &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001077 !access_ok((void __user *)a, size))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001078 return false;
1079 return true;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001080}
1081
Michael S. Tsirkin72952cc2016-12-06 06:01:41 +02001082static int vhost_process_iotlb_msg(struct vhost_dev *dev,
1083 struct vhost_iotlb_msg *msg)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001084{
1085 int ret = 0;
1086
Jason Wang1b15ad62018-05-22 19:58:57 +08001087 mutex_lock(&dev->mutex);
Jason Wang86a07da2018-12-13 10:53:39 +08001088 vhost_dev_lock_vqs(dev);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001089 switch (msg->type) {
1090 case VHOST_IOTLB_UPDATE:
1091 if (!dev->iotlb) {
1092 ret = -EFAULT;
1093 break;
1094 }
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001095 if (!umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001096 ret = -EFAULT;
1097 break;
1098 }
Jason Wangf8894912017-02-28 17:56:02 +08001099 vhost_vq_meta_reset(dev);
Jason Wang0bbe3062020-03-26 22:01:19 +08001100 if (vhost_iotlb_add_range(dev->iotlb, msg->iova,
1101 msg->iova + msg->size - 1,
1102 msg->uaddr, msg->perm)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001103 ret = -ENOMEM;
1104 break;
1105 }
1106 vhost_iotlb_notify_vq(dev, msg);
1107 break;
1108 case VHOST_IOTLB_INVALIDATE:
Jason Wang6f3180a2018-01-23 17:27:26 +08001109 if (!dev->iotlb) {
1110 ret = -EFAULT;
1111 break;
1112 }
Jason Wangf8894912017-02-28 17:56:02 +08001113 vhost_vq_meta_reset(dev);
Jason Wang0bbe3062020-03-26 22:01:19 +08001114 vhost_iotlb_del_range(dev->iotlb, msg->iova,
1115 msg->iova + msg->size - 1);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001116 break;
1117 default:
1118 ret = -EINVAL;
1119 break;
1120 }
1121
Jason Wang86a07da2018-12-13 10:53:39 +08001122 vhost_dev_unlock_vqs(dev);
Jason Wang1b15ad62018-05-22 19:58:57 +08001123 mutex_unlock(&dev->mutex);
1124
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001125 return ret;
1126}
1127ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
1128 struct iov_iter *from)
1129{
Jason Wang429711a2018-08-06 11:17:47 +08001130 struct vhost_iotlb_msg msg;
1131 size_t offset;
1132 int type, ret;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001133
Jason Wang429711a2018-08-06 11:17:47 +08001134 ret = copy_from_iter(&type, sizeof(type), from);
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001135 if (ret != sizeof(type)) {
1136 ret = -EINVAL;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001137 goto done;
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001138 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001139
Jason Wang429711a2018-08-06 11:17:47 +08001140 switch (type) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001141 case VHOST_IOTLB_MSG:
Jason Wang429711a2018-08-06 11:17:47 +08001142 /* There maybe a hole after type for V1 message type,
1143 * so skip it here.
1144 */
1145 offset = offsetof(struct vhost_msg, iotlb) - sizeof(int);
1146 break;
1147 case VHOST_IOTLB_MSG_V2:
1148 offset = sizeof(__u32);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001149 break;
1150 default:
1151 ret = -EINVAL;
Jason Wang429711a2018-08-06 11:17:47 +08001152 goto done;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001153 }
1154
Jason Wang429711a2018-08-06 11:17:47 +08001155 iov_iter_advance(from, offset);
1156 ret = copy_from_iter(&msg, sizeof(msg), from);
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001157 if (ret != sizeof(msg)) {
1158 ret = -EINVAL;
Jason Wang429711a2018-08-06 11:17:47 +08001159 goto done;
Pavel Tikhomirov74ad7412018-12-13 17:53:50 +03001160 }
Jason Wang792a4f22020-03-26 22:01:18 +08001161
1162 if (dev->msg_handler)
1163 ret = dev->msg_handler(dev, &msg);
1164 else
1165 ret = vhost_process_iotlb_msg(dev, &msg);
1166 if (ret) {
Jason Wang429711a2018-08-06 11:17:47 +08001167 ret = -EFAULT;
1168 goto done;
1169 }
1170
1171 ret = (type == VHOST_IOTLB_MSG) ? sizeof(struct vhost_msg) :
1172 sizeof(struct vhost_msg_v2);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001173done:
1174 return ret;
1175}
1176EXPORT_SYMBOL(vhost_chr_write_iter);
1177
Al Viroafc9a422017-07-03 06:39:46 -04001178__poll_t vhost_chr_poll(struct file *file, struct vhost_dev *dev,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001179 poll_table *wait)
1180{
Al Viroafc9a422017-07-03 06:39:46 -04001181 __poll_t mask = 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001182
1183 poll_wait(file, &dev->wait, wait);
1184
1185 if (!list_empty(&dev->read_list))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001186 mask |= EPOLLIN | EPOLLRDNORM;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001187
1188 return mask;
1189}
1190EXPORT_SYMBOL(vhost_chr_poll);
1191
1192ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1193 int noblock)
1194{
1195 DEFINE_WAIT(wait);
1196 struct vhost_msg_node *node;
1197 ssize_t ret = 0;
1198 unsigned size = sizeof(struct vhost_msg);
1199
1200 if (iov_iter_count(to) < size)
1201 return 0;
1202
1203 while (1) {
1204 if (!noblock)
1205 prepare_to_wait(&dev->wait, &wait,
1206 TASK_INTERRUPTIBLE);
1207
1208 node = vhost_dequeue_msg(dev, &dev->read_list);
1209 if (node)
1210 break;
1211 if (noblock) {
1212 ret = -EAGAIN;
1213 break;
1214 }
1215 if (signal_pending(current)) {
1216 ret = -ERESTARTSYS;
1217 break;
1218 }
1219 if (!dev->iotlb) {
1220 ret = -EBADFD;
1221 break;
1222 }
1223
1224 schedule();
1225 }
1226
1227 if (!noblock)
1228 finish_wait(&dev->wait, &wait);
1229
1230 if (node) {
Jason Wang429711a2018-08-06 11:17:47 +08001231 struct vhost_iotlb_msg *msg;
1232 void *start = &node->msg;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001233
Jason Wang429711a2018-08-06 11:17:47 +08001234 switch (node->msg.type) {
1235 case VHOST_IOTLB_MSG:
1236 size = sizeof(node->msg);
1237 msg = &node->msg.iotlb;
1238 break;
1239 case VHOST_IOTLB_MSG_V2:
1240 size = sizeof(node->msg_v2);
1241 msg = &node->msg_v2.iotlb;
1242 break;
1243 default:
1244 BUG();
1245 break;
1246 }
1247
1248 ret = copy_to_iter(start, size, to);
1249 if (ret != size || msg->type != VHOST_IOTLB_MISS) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001250 kfree(node);
1251 return ret;
1252 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001253 vhost_enqueue_msg(dev, &dev->pending_list, node);
1254 }
1255
1256 return ret;
1257}
1258EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1259
1260static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1261{
1262 struct vhost_dev *dev = vq->dev;
1263 struct vhost_msg_node *node;
1264 struct vhost_iotlb_msg *msg;
Jason Wang429711a2018-08-06 11:17:47 +08001265 bool v2 = vhost_backend_has_feature(vq, VHOST_BACKEND_F_IOTLB_MSG_V2);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001266
Jason Wang429711a2018-08-06 11:17:47 +08001267 node = vhost_new_msg(vq, v2 ? VHOST_IOTLB_MSG_V2 : VHOST_IOTLB_MSG);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001268 if (!node)
1269 return -ENOMEM;
1270
Jason Wang429711a2018-08-06 11:17:47 +08001271 if (v2) {
1272 node->msg_v2.type = VHOST_IOTLB_MSG_V2;
1273 msg = &node->msg_v2.iotlb;
1274 } else {
1275 msg = &node->msg.iotlb;
1276 }
1277
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001278 msg->type = VHOST_IOTLB_MISS;
1279 msg->iova = iova;
1280 msg->perm = access;
1281
1282 vhost_enqueue_msg(dev, &dev->read_list, node);
1283
1284 return 0;
Jason Wangbfe2bc52016-06-23 02:04:30 -04001285}
1286
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001287static bool vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
Michael S. Tsirkina865e422020-04-06 08:42:55 -04001288 vring_desc_t __user *desc,
1289 vring_avail_t __user *avail,
1290 vring_used_t __user *used)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001291
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001292{
Greg Kurz0210a8d2020-10-03 12:01:52 +02001293 /* If an IOTLB device is present, the vring addresses are
1294 * GIOVAs. Access validation occurs at prefetch time. */
1295 if (vq->iotlb)
1296 return true;
1297
Jason Wang4942e822019-05-24 04:12:16 -04001298 return access_ok(desc, vhost_get_desc_size(vq, num)) &&
1299 access_ok(avail, vhost_get_avail_size(vq, num)) &&
1300 access_ok(used, vhost_get_used_size(vq, num));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001301}
1302
Jason Wangf8894912017-02-28 17:56:02 +08001303static void vhost_vq_meta_update(struct vhost_virtqueue *vq,
Jason Wang0bbe3062020-03-26 22:01:19 +08001304 const struct vhost_iotlb_map *map,
Jason Wangf8894912017-02-28 17:56:02 +08001305 int type)
1306{
1307 int access = (type == VHOST_ADDR_USED) ?
1308 VHOST_ACCESS_WO : VHOST_ACCESS_RO;
1309
Jason Wang0bbe3062020-03-26 22:01:19 +08001310 if (likely(map->perm & access))
1311 vq->meta_iotlb[type] = map;
Jason Wangf8894912017-02-28 17:56:02 +08001312}
1313
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001314static bool iotlb_access_ok(struct vhost_virtqueue *vq,
1315 int access, u64 addr, u64 len, int type)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001316{
Jason Wang0bbe3062020-03-26 22:01:19 +08001317 const struct vhost_iotlb_map *map;
1318 struct vhost_iotlb *umem = vq->iotlb;
Michael S. Tsirkinca2c5b32017-08-21 22:33:33 +03001319 u64 s = 0, size, orig_addr = addr, last = addr + len - 1;
Jason Wangf8894912017-02-28 17:56:02 +08001320
1321 if (vhost_vq_meta_fetch(vq, addr, len, type))
1322 return true;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001323
1324 while (len > s) {
Jason Wang0bbe3062020-03-26 22:01:19 +08001325 map = vhost_iotlb_itree_first(umem, addr, last);
1326 if (map == NULL || map->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001327 vhost_iotlb_miss(vq, addr, access);
1328 return false;
Jason Wang0bbe3062020-03-26 22:01:19 +08001329 } else if (!(map->perm & access)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001330 /* Report the possible access violation by
1331 * request another translation from userspace.
1332 */
1333 return false;
1334 }
1335
Jason Wang0bbe3062020-03-26 22:01:19 +08001336 size = map->size - addr + map->start;
Jason Wangf8894912017-02-28 17:56:02 +08001337
1338 if (orig_addr == addr && size >= len)
Jason Wang0bbe3062020-03-26 22:01:19 +08001339 vhost_vq_meta_update(vq, map, type);
Jason Wangf8894912017-02-28 17:56:02 +08001340
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001341 s += size;
1342 addr += size;
1343 }
1344
1345 return true;
1346}
1347
Jason Wang9b5e8302019-05-24 04:12:15 -04001348int vq_meta_prefetch(struct vhost_virtqueue *vq)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001349{
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001350 unsigned int num = vq->num;
1351
Michael S. Tsirkin3d2c7d32019-08-10 13:53:21 -04001352 if (!vq->iotlb)
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001353 return 1;
1354
Jason Wang0bbe3062020-03-26 22:01:19 +08001355 return iotlb_access_ok(vq, VHOST_MAP_RO, (u64)(uintptr_t)vq->desc,
Jason Wang4942e822019-05-24 04:12:16 -04001356 vhost_get_desc_size(vq, num), VHOST_ADDR_DESC) &&
Jason Wang0bbe3062020-03-26 22:01:19 +08001357 iotlb_access_ok(vq, VHOST_MAP_RO, (u64)(uintptr_t)vq->avail,
Jason Wang4942e822019-05-24 04:12:16 -04001358 vhost_get_avail_size(vq, num),
Jason Wangf8894912017-02-28 17:56:02 +08001359 VHOST_ADDR_AVAIL) &&
Jason Wang0bbe3062020-03-26 22:01:19 +08001360 iotlb_access_ok(vq, VHOST_MAP_WO, (u64)(uintptr_t)vq->used,
Jason Wang4942e822019-05-24 04:12:16 -04001361 vhost_get_used_size(vq, num), VHOST_ADDR_USED);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001362}
Jason Wang9b5e8302019-05-24 04:12:15 -04001363EXPORT_SYMBOL_GPL(vq_meta_prefetch);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001364
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001365/* Can we log writes? */
1366/* Caller should have device mutex but not vq mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001367bool vhost_log_access_ok(struct vhost_dev *dev)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001368{
Jason Wanga9709d62016-06-23 02:04:31 -04001369 return memory_access_ok(dev, dev->umem, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001370}
Asias He6ac1afb2013-05-06 16:38:21 +08001371EXPORT_SYMBOL_GPL(vhost_log_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001372
1373/* Verify access for write logging. */
1374/* Caller should have vq mutex and device mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001375static bool vq_log_access_ok(struct vhost_virtqueue *vq,
1376 void __user *log_base)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001377{
Jason Wanga9709d62016-06-23 02:04:31 -04001378 return vq_memory_access_ok(log_base, vq->umem,
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001379 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001380 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
Jason Wang4942e822019-05-24 04:12:16 -04001381 vhost_get_used_size(vq, vq->num)));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001382}
1383
1384/* Can we start vq? */
1385/* Caller should have vq mutex and device mutex */
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001386bool vhost_vq_access_ok(struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001387{
Stefan Hajnoczid14d2b72018-04-11 10:35:40 +08001388 if (!vq_log_access_ok(vq, vq->log_base))
Stefan Hajnocziddd3d402018-04-11 10:35:41 +08001389 return false;
Jason Wangd65026c2018-03-29 16:00:04 +08001390
Jason Wangd65026c2018-03-29 16:00:04 +08001391 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001392}
Asias He6ac1afb2013-05-06 16:38:21 +08001393EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001394
1395static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1396{
Jason Wanga9709d62016-06-23 02:04:31 -04001397 struct vhost_memory mem, *newmem;
1398 struct vhost_memory_region *region;
Jason Wang0bbe3062020-03-26 22:01:19 +08001399 struct vhost_iotlb *newumem, *oldumem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001400 unsigned long size = offsetof(struct vhost_memory, regions);
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001401 int i;
Krishna Kumard47effe2011-03-01 17:06:37 +05301402
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001403 if (copy_from_user(&mem, m, size))
1404 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001405 if (mem.padding)
1406 return -EOPNOTSUPP;
Igor Mammedovc9ce42f2015-07-02 15:08:11 +02001407 if (mem.nregions > max_mem_regions)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001408 return -E2BIG;
Matthew Wilcoxb2303d72018-06-07 07:57:18 -07001409 newmem = kvzalloc(struct_size(newmem, regions, mem.nregions),
1410 GFP_KERNEL);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001411 if (!newmem)
1412 return -ENOMEM;
1413
1414 memcpy(newmem, &mem, size);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001415 if (copy_from_user(newmem->regions, m->regions,
Gustavo A. R. Silvabf11d712020-07-31 08:09:56 -05001416 flex_array_size(newmem, regions, mem.nregions))) {
Igor Mammedovbcfeaca2015-06-16 18:33:35 +02001417 kvfree(newmem);
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001418 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001419 }
1420
Jason Wang0bbe3062020-03-26 22:01:19 +08001421 newumem = iotlb_alloc();
Jason Wanga9709d62016-06-23 02:04:31 -04001422 if (!newumem) {
Igor Mammedov4de72552015-07-01 11:07:09 +02001423 kvfree(newmem);
Jason Wanga9709d62016-06-23 02:04:31 -04001424 return -ENOMEM;
Takuya Yoshikawaa02c3782010-05-27 19:03:56 +09001425 }
Jason Wanga9709d62016-06-23 02:04:31 -04001426
Jason Wanga9709d62016-06-23 02:04:31 -04001427 for (region = newmem->regions;
1428 region < newmem->regions + mem.nregions;
1429 region++) {
Jason Wang0bbe3062020-03-26 22:01:19 +08001430 if (vhost_iotlb_add_range(newumem,
1431 region->guest_phys_addr,
1432 region->guest_phys_addr +
1433 region->memory_size - 1,
1434 region->userspace_addr,
1435 VHOST_MAP_RW))
Jason Wanga9709d62016-06-23 02:04:31 -04001436 goto err;
Jason Wanga9709d62016-06-23 02:04:31 -04001437 }
1438
1439 if (!memory_access_ok(d, newumem, 0))
1440 goto err;
1441
1442 oldumem = d->umem;
1443 d->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001444
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001445 /* All memory accesses are done under some VQ mutex. */
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001446 for (i = 0; i < d->nvqs; ++i) {
1447 mutex_lock(&d->vqs[i]->mutex);
Jason Wanga9709d62016-06-23 02:04:31 -04001448 d->vqs[i]->umem = newumem;
Michael S. Tsirkin98f9ca02014-05-28 17:07:02 +03001449 mutex_unlock(&d->vqs[i]->mutex);
1450 }
Jason Wanga9709d62016-06-23 02:04:31 -04001451
1452 kvfree(newmem);
Jason Wang0bbe3062020-03-26 22:01:19 +08001453 vhost_iotlb_free(oldumem);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001454 return 0;
Jason Wanga9709d62016-06-23 02:04:31 -04001455
1456err:
Jason Wang0bbe3062020-03-26 22:01:19 +08001457 vhost_iotlb_free(newumem);
Jason Wanga9709d62016-06-23 02:04:31 -04001458 kvfree(newmem);
1459 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001460}
1461
Jason Wangfeebcae2019-05-24 04:12:17 -04001462static long vhost_vring_set_num(struct vhost_dev *d,
1463 struct vhost_virtqueue *vq,
1464 void __user *argp)
1465{
1466 struct vhost_vring_state s;
1467
1468 /* Resizing ring with an active backend?
1469 * You don't want to do that. */
1470 if (vq->private_data)
1471 return -EBUSY;
1472
1473 if (copy_from_user(&s, argp, sizeof s))
1474 return -EFAULT;
1475
1476 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1)))
1477 return -EINVAL;
1478 vq->num = s.num;
1479
1480 return 0;
1481}
1482
1483static long vhost_vring_set_addr(struct vhost_dev *d,
1484 struct vhost_virtqueue *vq,
1485 void __user *argp)
1486{
1487 struct vhost_vring_addr a;
1488
1489 if (copy_from_user(&a, argp, sizeof a))
1490 return -EFAULT;
1491 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG))
1492 return -EOPNOTSUPP;
1493
1494 /* For 32bit, verify that the top 32bits of the user
1495 data are set to zero. */
1496 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1497 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1498 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr)
1499 return -EFAULT;
1500
1501 /* Make sure it's safe to cast pointers to vring types. */
1502 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1503 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1504 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1505 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
1506 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1)))
1507 return -EINVAL;
1508
1509 /* We only verify access here if backend is configured.
1510 * If it is not, we don't as size might not have been setup.
1511 * We will verify when backend is configured. */
1512 if (vq->private_data) {
1513 if (!vq_access_ok(vq, vq->num,
1514 (void __user *)(unsigned long)a.desc_user_addr,
1515 (void __user *)(unsigned long)a.avail_user_addr,
1516 (void __user *)(unsigned long)a.used_user_addr))
1517 return -EINVAL;
1518
1519 /* Also validate log access for used ring if enabled. */
1520 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1521 !log_access_ok(vq->log_base, a.log_guest_addr,
1522 sizeof *vq->used +
1523 vq->num * sizeof *vq->used->ring))
1524 return -EINVAL;
1525 }
1526
1527 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1528 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1529 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1530 vq->log_addr = a.log_guest_addr;
1531 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1532
1533 return 0;
1534}
1535
1536static long vhost_vring_set_num_addr(struct vhost_dev *d,
1537 struct vhost_virtqueue *vq,
1538 unsigned int ioctl,
1539 void __user *argp)
1540{
1541 long r;
1542
1543 mutex_lock(&vq->mutex);
1544
1545 switch (ioctl) {
1546 case VHOST_SET_VRING_NUM:
1547 r = vhost_vring_set_num(d, vq, argp);
1548 break;
1549 case VHOST_SET_VRING_ADDR:
1550 r = vhost_vring_set_addr(d, vq, argp);
1551 break;
1552 default:
1553 BUG();
1554 }
1555
1556 mutex_unlock(&vq->mutex);
1557
1558 return r;
1559}
Sonny Rao26b36602018-03-14 10:05:06 -07001560long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001561{
Al Virocecb46f2012-08-27 14:21:39 -04001562 struct file *eventfp, *filep = NULL;
1563 bool pollstart = false, pollstop = false;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001564 struct eventfd_ctx *ctx = NULL;
1565 u32 __user *idxp = argp;
1566 struct vhost_virtqueue *vq;
1567 struct vhost_vring_state s;
1568 struct vhost_vring_file f;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001569 u32 idx;
1570 long r;
1571
1572 r = get_user(idx, idxp);
1573 if (r < 0)
1574 return r;
Krishna Kumar0f3d9a12010-05-25 11:10:36 +05301575 if (idx >= d->nvqs)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001576 return -ENOBUFS;
1577
Jason Wangff002262018-10-30 14:10:49 +08001578 idx = array_index_nospec(idx, d->nvqs);
Asias He3ab2e422013-04-27 11:16:48 +08001579 vq = d->vqs[idx];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001580
Jason Wangfeebcae2019-05-24 04:12:17 -04001581 if (ioctl == VHOST_SET_VRING_NUM ||
1582 ioctl == VHOST_SET_VRING_ADDR) {
1583 return vhost_vring_set_num_addr(d, vq, ioctl, argp);
1584 }
1585
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001586 mutex_lock(&vq->mutex);
1587
1588 switch (ioctl) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001589 case VHOST_SET_VRING_BASE:
1590 /* Moving base with an active backend?
1591 * You don't want to do that. */
1592 if (vq->private_data) {
1593 r = -EBUSY;
1594 break;
1595 }
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001596 if (copy_from_user(&s, argp, sizeof s)) {
1597 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001598 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001599 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001600 if (s.num > 0xffff) {
1601 r = -EINVAL;
1602 break;
1603 }
Jason Wang8d658432017-07-27 11:22:05 +08001604 vq->last_avail_idx = s.num;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001605 /* Forget the cached index value. */
1606 vq->avail_idx = vq->last_avail_idx;
1607 break;
1608 case VHOST_GET_VRING_BASE:
1609 s.index = idx;
1610 s.num = vq->last_avail_idx;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001611 if (copy_to_user(argp, &s, sizeof s))
1612 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001613 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001614 case VHOST_SET_VRING_KICK:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001615 if (copy_from_user(&f, argp, sizeof f)) {
1616 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001617 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001618 }
Zhu Lingshane0136c12020-06-05 18:27:14 +08001619 eventfp = f.fd == VHOST_FILE_UNBIND ? NULL : eventfd_fget(f.fd);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001620 if (IS_ERR(eventfp)) {
1621 r = PTR_ERR(eventfp);
1622 break;
1623 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001624 if (eventfp != vq->kick) {
Al Virocecb46f2012-08-27 14:21:39 -04001625 pollstop = (filep = vq->kick) != NULL;
1626 pollstart = (vq->kick = eventfp) != NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001627 } else
1628 filep = eventfp;
1629 break;
1630 case VHOST_SET_VRING_CALL:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001631 if (copy_from_user(&f, argp, sizeof f)) {
1632 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001633 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001634 }
Zhu Lingshane0136c12020-06-05 18:27:14 +08001635 ctx = f.fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(f.fd);
Eric Biggerse050c7d2018-01-06 14:52:19 -08001636 if (IS_ERR(ctx)) {
1637 r = PTR_ERR(ctx);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001638 break;
1639 }
Zhu Lingshan265a0ad2020-07-31 14:55:28 +08001640
1641 spin_lock(&vq->call_ctx.ctx_lock);
1642 swap(ctx, vq->call_ctx.ctx);
1643 spin_unlock(&vq->call_ctx.ctx_lock);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001644 break;
1645 case VHOST_SET_VRING_ERR:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001646 if (copy_from_user(&f, argp, sizeof f)) {
1647 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001648 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001649 }
Zhu Lingshane0136c12020-06-05 18:27:14 +08001650 ctx = f.fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(f.fd);
Eric Biggers09f332a2018-01-06 14:52:20 -08001651 if (IS_ERR(ctx)) {
1652 r = PTR_ERR(ctx);
Michael S. Tsirkin535297a2010-03-17 16:06:11 +02001653 break;
1654 }
Eric Biggers09f332a2018-01-06 14:52:20 -08001655 swap(ctx, vq->error_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001656 break;
Greg Kurz2751c982015-04-24 14:27:24 +02001657 case VHOST_SET_VRING_ENDIAN:
1658 r = vhost_set_vring_endian(vq, argp);
1659 break;
1660 case VHOST_GET_VRING_ENDIAN:
1661 r = vhost_get_vring_endian(vq, idx, argp);
1662 break;
Jason Wang03088132016-03-04 06:24:53 -05001663 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1664 if (copy_from_user(&s, argp, sizeof(s))) {
1665 r = -EFAULT;
1666 break;
1667 }
1668 vq->busyloop_timeout = s.num;
1669 break;
1670 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1671 s.index = idx;
1672 s.num = vq->busyloop_timeout;
1673 if (copy_to_user(argp, &s, sizeof(s)))
1674 r = -EFAULT;
1675 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001676 default:
1677 r = -ENOIOCTLCMD;
1678 }
1679
1680 if (pollstop && vq->handle_kick)
1681 vhost_poll_stop(&vq->poll);
1682
Eric Biggerse050c7d2018-01-06 14:52:19 -08001683 if (!IS_ERR_OR_NULL(ctx))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001684 eventfd_ctx_put(ctx);
1685 if (filep)
1686 fput(filep);
1687
1688 if (pollstart && vq->handle_kick)
Jason Wang2b8b3282013-01-28 01:05:18 +00001689 r = vhost_poll_start(&vq->poll, vq->kick);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001690
1691 mutex_unlock(&vq->mutex);
1692
1693 if (pollstop && vq->handle_kick)
1694 vhost_poll_flush(&vq->poll);
1695 return r;
1696}
Asias He6ac1afb2013-05-06 16:38:21 +08001697EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001698
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001699int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1700{
Jason Wang0bbe3062020-03-26 22:01:19 +08001701 struct vhost_iotlb *niotlb, *oiotlb;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001702 int i;
1703
Jason Wang0bbe3062020-03-26 22:01:19 +08001704 niotlb = iotlb_alloc();
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001705 if (!niotlb)
1706 return -ENOMEM;
1707
1708 oiotlb = d->iotlb;
1709 d->iotlb = niotlb;
1710
1711 for (i = 0; i < d->nvqs; ++i) {
Jason Wangb13f9c62018-08-08 11:43:04 +08001712 struct vhost_virtqueue *vq = d->vqs[i];
1713
1714 mutex_lock(&vq->mutex);
1715 vq->iotlb = niotlb;
1716 __vhost_vq_meta_reset(vq);
1717 mutex_unlock(&vq->mutex);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001718 }
1719
Jason Wang0bbe3062020-03-26 22:01:19 +08001720 vhost_iotlb_free(oiotlb);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001721
1722 return 0;
1723}
1724EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1725
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001726/* Caller must have device mutex */
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001727long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001728{
Eric Biggersd25cc432018-01-06 14:52:21 -08001729 struct eventfd_ctx *ctx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001730 u64 p;
1731 long r;
1732 int i, fd;
1733
1734 /* If you are not the owner, you can become one */
1735 if (ioctl == VHOST_SET_OWNER) {
1736 r = vhost_dev_set_owner(d);
1737 goto done;
1738 }
1739
1740 /* You must be the owner to do anything else */
1741 r = vhost_dev_check_owner(d);
1742 if (r)
1743 goto done;
1744
1745 switch (ioctl) {
1746 case VHOST_SET_MEM_TABLE:
1747 r = vhost_set_memory(d, argp);
1748 break;
1749 case VHOST_SET_LOG_BASE:
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001750 if (copy_from_user(&p, argp, sizeof p)) {
1751 r = -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001752 break;
Takuya Yoshikawa7ad9c9d2010-05-27 18:58:03 +09001753 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001754 if ((u64)(unsigned long)p != p) {
1755 r = -EFAULT;
1756 break;
1757 }
1758 for (i = 0; i < d->nvqs; ++i) {
1759 struct vhost_virtqueue *vq;
1760 void __user *base = (void __user *)(unsigned long)p;
Asias He3ab2e422013-04-27 11:16:48 +08001761 vq = d->vqs[i];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001762 mutex_lock(&vq->mutex);
1763 /* If ring is inactive, will check when it's enabled. */
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001764 if (vq->private_data && !vq_log_access_ok(vq, base))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001765 r = -EFAULT;
1766 else
1767 vq->log_base = base;
1768 mutex_unlock(&vq->mutex);
1769 }
1770 break;
1771 case VHOST_SET_LOG_FD:
1772 r = get_user(fd, (int __user *)argp);
1773 if (r < 0)
1774 break;
Zhu Lingshane0136c12020-06-05 18:27:14 +08001775 ctx = fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(fd);
Eric Biggersd25cc432018-01-06 14:52:21 -08001776 if (IS_ERR(ctx)) {
1777 r = PTR_ERR(ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001778 break;
1779 }
Eric Biggersd25cc432018-01-06 14:52:21 -08001780 swap(ctx, d->log_ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001781 for (i = 0; i < d->nvqs; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001782 mutex_lock(&d->vqs[i]->mutex);
1783 d->vqs[i]->log_ctx = d->log_ctx;
1784 mutex_unlock(&d->vqs[i]->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001785 }
1786 if (ctx)
1787 eventfd_ctx_put(ctx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001788 break;
1789 default:
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001790 r = -ENOIOCTLCMD;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001791 break;
1792 }
1793done:
1794 return r;
1795}
Asias He6ac1afb2013-05-06 16:38:21 +08001796EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001797
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001798/* TODO: This is really inefficient. We need something like get_user()
1799 * (instruction directly accesses the data, with an exception table entry
Mauro Carvalho Chehabcb1aaeb2019-06-07 15:54:32 -03001800 * returning -EFAULT). See Documentation/x86/exception-tables.rst.
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001801 */
1802static int set_bit_to_user(int nr, void __user *addr)
1803{
1804 unsigned long log = (unsigned long)addr;
1805 struct page *page;
1806 void *base;
1807 int bit = nr + (log % PAGE_SIZE) * 8;
1808 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301809
John Hubbard690623e2020-06-07 21:41:15 -07001810 r = pin_user_pages_fast(log, 1, FOLL_WRITE, &page);
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001811 if (r < 0)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001812 return r;
Michael S. Tsirkind6db3f52010-02-23 11:25:23 +02001813 BUG_ON(r != 1);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001814 base = kmap_atomic(page);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001815 set_bit(bit, base);
Cong Wangc6daa7f2011-11-25 23:14:26 +08001816 kunmap_atomic(base);
John Hubbard690623e2020-06-07 21:41:15 -07001817 unpin_user_pages_dirty_lock(&page, 1, true);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001818 return 0;
1819}
1820
1821static int log_write(void __user *log_base,
1822 u64 write_address, u64 write_length)
1823{
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001824 u64 write_page = write_address / VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001825 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301826
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001827 if (!write_length)
1828 return 0;
Michael S. Tsirkin3bf9be42010-11-29 10:19:07 +02001829 write_length += write_address % VHOST_PAGE_SIZE;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001830 for (;;) {
1831 u64 base = (u64)(unsigned long)log_base;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001832 u64 log = base + write_page / 8;
1833 int bit = write_page % 8;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001834 if ((u64)(unsigned long)log != log)
1835 return -EFAULT;
1836 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1837 if (r < 0)
1838 return r;
1839 if (write_length <= VHOST_PAGE_SIZE)
1840 break;
1841 write_length -= VHOST_PAGE_SIZE;
Michael S. Tsirkin28831ee2010-11-29 10:22:10 +02001842 write_page += 1;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001843 }
1844 return r;
1845}
1846
Jason Wangcc5e7102019-01-16 16:54:42 +08001847static int log_write_hva(struct vhost_virtqueue *vq, u64 hva, u64 len)
1848{
Jason Wang0bbe3062020-03-26 22:01:19 +08001849 struct vhost_iotlb *umem = vq->umem;
1850 struct vhost_iotlb_map *u;
Jason Wangcc5e7102019-01-16 16:54:42 +08001851 u64 start, end, l, min;
1852 int r;
1853 bool hit = false;
1854
1855 while (len) {
1856 min = len;
1857 /* More than one GPAs can be mapped into a single HVA. So
1858 * iterate all possible umems here to be safe.
1859 */
Jason Wang0bbe3062020-03-26 22:01:19 +08001860 list_for_each_entry(u, &umem->list, link) {
1861 if (u->addr > hva - 1 + len ||
1862 u->addr - 1 + u->size < hva)
Jason Wangcc5e7102019-01-16 16:54:42 +08001863 continue;
Jason Wang0bbe3062020-03-26 22:01:19 +08001864 start = max(u->addr, hva);
1865 end = min(u->addr - 1 + u->size, hva - 1 + len);
Jason Wangcc5e7102019-01-16 16:54:42 +08001866 l = end - start + 1;
1867 r = log_write(vq->log_base,
Jason Wang0bbe3062020-03-26 22:01:19 +08001868 u->start + start - u->addr,
Jason Wangcc5e7102019-01-16 16:54:42 +08001869 l);
1870 if (r < 0)
1871 return r;
1872 hit = true;
1873 min = min(l, min);
1874 }
1875
1876 if (!hit)
1877 return -EFAULT;
1878
1879 len -= min;
1880 hva += min;
1881 }
1882
1883 return 0;
1884}
1885
1886static int log_used(struct vhost_virtqueue *vq, u64 used_offset, u64 len)
1887{
1888 struct iovec iov[64];
1889 int i, ret;
1890
1891 if (!vq->iotlb)
1892 return log_write(vq->log_base, vq->log_addr + used_offset, len);
1893
1894 ret = translate_desc(vq, (uintptr_t)vq->used + used_offset,
1895 len, iov, 64, VHOST_ACCESS_WO);
Jason Wang816db762019-02-19 14:53:44 +08001896 if (ret < 0)
Jason Wangcc5e7102019-01-16 16:54:42 +08001897 return ret;
1898
1899 for (i = 0; i < ret; i++) {
1900 ret = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1901 iov[i].iov_len);
1902 if (ret)
1903 return ret;
1904 }
1905
1906 return 0;
1907}
1908
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001909int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
Jason Wangcc5e7102019-01-16 16:54:42 +08001910 unsigned int log_num, u64 len, struct iovec *iov, int count)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001911{
1912 int i, r;
1913
1914 /* Make sure data written is seen before log. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00001915 smp_wmb();
Jason Wangcc5e7102019-01-16 16:54:42 +08001916
1917 if (vq->iotlb) {
1918 for (i = 0; i < count; i++) {
1919 r = log_write_hva(vq, (uintptr_t)iov[i].iov_base,
1920 iov[i].iov_len);
1921 if (r < 0)
1922 return r;
1923 }
1924 return 0;
1925 }
1926
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001927 for (i = 0; i < log_num; ++i) {
1928 u64 l = min(log[i].len, len);
1929 r = log_write(vq->log_base, log[i].addr, l);
1930 if (r < 0)
1931 return r;
1932 len -= l;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001933 if (!len) {
1934 if (vq->log_ctx)
1935 eventfd_signal(vq->log_ctx, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001936 return 0;
Michael S. Tsirkin5786aee2010-09-22 12:31:53 +02001937 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001938 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001939 /* Length written exceeds what we have stored. This is a bug. */
1940 BUG();
1941 return 0;
1942}
Asias He6ac1afb2013-05-06 16:38:21 +08001943EXPORT_SYMBOL_GPL(vhost_log_write);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001944
Jason Wang2723fea2011-06-21 18:04:38 +08001945static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1946{
1947 void __user *used;
Jason Wang7b5d7532019-05-24 04:12:14 -04001948 if (vhost_put_used_flags(vq))
Jason Wang2723fea2011-06-21 18:04:38 +08001949 return -EFAULT;
1950 if (unlikely(vq->log_used)) {
1951 /* Make sure the flag is seen before log. */
1952 smp_wmb();
1953 /* Log used flag write. */
1954 used = &vq->used->flags;
Jason Wangcc5e7102019-01-16 16:54:42 +08001955 log_used(vq, (used - (void __user *)vq->used),
1956 sizeof vq->used->flags);
Jason Wang2723fea2011-06-21 18:04:38 +08001957 if (vq->log_ctx)
1958 eventfd_signal(vq->log_ctx, 1);
1959 }
1960 return 0;
1961}
1962
1963static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1964{
Jason Wang7b5d7532019-05-24 04:12:14 -04001965 if (vhost_put_avail_event(vq))
Jason Wang2723fea2011-06-21 18:04:38 +08001966 return -EFAULT;
1967 if (unlikely(vq->log_used)) {
1968 void __user *used;
1969 /* Make sure the event is seen before log. */
1970 smp_wmb();
1971 /* Log avail event write */
1972 used = vhost_avail_event(vq);
Jason Wangcc5e7102019-01-16 16:54:42 +08001973 log_used(vq, (used - (void __user *)vq->used),
1974 sizeof *vhost_avail_event(vq));
Jason Wang2723fea2011-06-21 18:04:38 +08001975 if (vq->log_ctx)
1976 eventfd_signal(vq->log_ctx, 1);
1977 }
1978 return 0;
1979}
1980
Greg Kurz80f7d032016-02-16 15:59:44 +01001981int vhost_vq_init_access(struct vhost_virtqueue *vq)
Jason Wang2723fea2011-06-21 18:04:38 +08001982{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03001983 __virtio16 last_used_idx;
Jason Wang2723fea2011-06-21 18:04:38 +08001984 int r;
Greg Kurze1f33be2016-02-16 15:54:28 +01001985 bool is_le = vq->is_le;
1986
Halil Pasiccda8bba2017-01-30 11:09:36 +01001987 if (!vq->private_data)
Jason Wang2723fea2011-06-21 18:04:38 +08001988 return 0;
Greg Kurz2751c982015-04-24 14:27:24 +02001989
1990 vhost_init_is_le(vq);
Jason Wang2723fea2011-06-21 18:04:38 +08001991
1992 r = vhost_update_used_flags(vq);
1993 if (r)
Greg Kurze1f33be2016-02-16 15:54:28 +01001994 goto err;
Jason Wang2723fea2011-06-21 18:04:38 +08001995 vq->signalled_used_valid = false;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04001996 if (!vq->iotlb &&
Linus Torvalds96d4f262019-01-03 18:57:57 -08001997 !access_ok(&vq->used->idx, sizeof vq->used->idx)) {
Greg Kurze1f33be2016-02-16 15:54:28 +01001998 r = -EFAULT;
1999 goto err;
2000 }
Jason Wang7b5d7532019-05-24 04:12:14 -04002001 r = vhost_get_used_idx(vq, &last_used_idx);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002002 if (r) {
2003 vq_err(vq, "Can't access used idx at %p\n",
2004 &vq->used->idx);
Greg Kurze1f33be2016-02-16 15:54:28 +01002005 goto err;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002006 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002007 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
Michael S. Tsirkin64f7f052014-12-01 17:39:39 +02002008 return 0;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002009
Greg Kurze1f33be2016-02-16 15:54:28 +01002010err:
2011 vq->is_le = is_le;
2012 return r;
Jason Wang2723fea2011-06-21 18:04:38 +08002013}
Greg Kurz80f7d032016-02-16 15:59:44 +01002014EXPORT_SYMBOL_GPL(vhost_vq_init_access);
Jason Wang2723fea2011-06-21 18:04:38 +08002015
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002016static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002017 struct iovec iov[], int iov_size, int access)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002018{
Jason Wang0bbe3062020-03-26 22:01:19 +08002019 const struct vhost_iotlb_map *map;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002020 struct vhost_dev *dev = vq->dev;
Jason Wang0bbe3062020-03-26 22:01:19 +08002021 struct vhost_iotlb *umem = dev->iotlb ? dev->iotlb : dev->umem;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002022 struct iovec *_iov;
2023 u64 s = 0;
2024 int ret = 0;
2025
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002026 while ((u64)len > s) {
2027 u64 size;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002028 if (unlikely(ret >= iov_size)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002029 ret = -ENOBUFS;
2030 break;
2031 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002032
Jason Wang0bbe3062020-03-26 22:01:19 +08002033 map = vhost_iotlb_itree_first(umem, addr, addr + len - 1);
2034 if (map == NULL || map->start > addr) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002035 if (umem != dev->iotlb) {
2036 ret = -EFAULT;
2037 break;
2038 }
2039 ret = -EAGAIN;
2040 break;
Jason Wang0bbe3062020-03-26 22:01:19 +08002041 } else if (!(map->perm & access)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002042 ret = -EPERM;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002043 break;
2044 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002045
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002046 _iov = iov + ret;
Jason Wang0bbe3062020-03-26 22:01:19 +08002047 size = map->size - addr + map->start;
Michael S. Tsirkinbd971202012-11-26 05:57:27 +00002048 _iov->iov_len = min((u64)len - s, size);
Michael S. Tsirkin0d4a3f22019-09-14 15:21:51 -04002049 _iov->iov_base = (void __user *)(unsigned long)
Jason Wang0bbe3062020-03-26 22:01:19 +08002050 (map->addr + addr - map->start);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002051 s += size;
2052 addr += size;
2053 ++ret;
2054 }
2055
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002056 if (ret == -EAGAIN)
2057 vhost_iotlb_miss(vq, addr, access);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002058 return ret;
2059}
2060
2061/* Each buffer in the virtqueues is actually a chain of descriptors. This
2062 * function returns the next descriptor in the chain,
2063 * or -1U if we're at the end. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002064static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002065{
2066 unsigned int next;
2067
2068 /* If this descriptor says it doesn't chain, we're done. */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002069 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002070 return -1U;
2071
2072 /* Check they're not leading us off end of descriptors. */
Paul E. McKenney3a5db0b2017-11-27 09:45:10 -08002073 next = vhost16_to_cpu(vq, READ_ONCE(desc->next));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002074 return next;
2075}
2076
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002077static int get_indirect(struct vhost_virtqueue *vq,
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002078 struct iovec iov[], unsigned int iov_size,
2079 unsigned int *out_num, unsigned int *in_num,
2080 struct vhost_log *log, unsigned int *log_num,
2081 struct vring_desc *indirect)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002082{
2083 struct vring_desc desc;
2084 unsigned int i = 0, count, found = 0;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002085 u32 len = vhost32_to_cpu(vq, indirect->len);
Al Viroaad9a1c2014-12-10 14:49:01 -05002086 struct iov_iter from;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002087 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002088
2089 /* Sanity check */
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002090 if (unlikely(len % sizeof desc)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002091 vq_err(vq, "Invalid length in indirect descriptor: "
2092 "len 0x%llx not multiple of 0x%zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002093 (unsigned long long)len,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002094 sizeof desc);
2095 return -EINVAL;
2096 }
2097
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002098 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002099 UIO_MAXIOV, VHOST_ACCESS_RO);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002100 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002101 if (ret != -EAGAIN)
2102 vq_err(vq, "Translation failure %d in indirect.\n", ret);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002103 return ret;
2104 }
Al Viroaad9a1c2014-12-10 14:49:01 -05002105 iov_iter_init(&from, READ, vq->indirect, ret, len);
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002106 count = len / sizeof desc;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002107 /* Buffers are chained via a 16 bit next field, so
2108 * we can have at most 2^16 of these. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002109 if (unlikely(count > USHRT_MAX + 1)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002110 vq_err(vq, "Indirect buffer length too big: %d\n",
2111 indirect->len);
2112 return -E2BIG;
2113 }
2114
2115 do {
2116 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002117 if (unlikely(++found > count)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002118 vq_err(vq, "Loop detected: last one at %u "
2119 "indirect size %u\n",
2120 i, count);
2121 return -EINVAL;
2122 }
Al Virocbbd26b2016-11-01 22:09:04 -04002123 if (unlikely(!copy_from_iter_full(&desc, sizeof(desc), &from))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002124 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002125 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002126 return -EINVAL;
2127 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002128 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002129 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002130 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002131 return -EINVAL;
2132 }
2133
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002134 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2135 access = VHOST_ACCESS_WO;
2136 else
2137 access = VHOST_ACCESS_RO;
2138
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002139 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2140 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002141 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002142 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002143 if (ret != -EAGAIN)
2144 vq_err(vq, "Translation failure %d indirect idx %d\n",
2145 ret, i);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002146 return ret;
2147 }
2148 /* If this is an input descriptor, increment that count. */
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002149 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002150 *in_num += ret;
yongduan060423b2019-09-11 17:44:24 +08002151 if (unlikely(log && ret)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002152 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2153 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002154 ++*log_num;
2155 }
2156 } else {
2157 /* If it's an output descriptor, they're all supposed
2158 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002159 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002160 vq_err(vq, "Indirect descriptor "
2161 "has out after in: idx %d\n", i);
2162 return -EINVAL;
2163 }
2164 *out_num += ret;
2165 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002166 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002167 return 0;
2168}
2169
2170/* This looks in the virtqueue and for the first available buffer, and converts
2171 * it to an iovec for convenient access. Since descriptors consist of some
2172 * number of output then some number of input descriptors, it's actually two
2173 * iovecs, but we pack them into one and note how many of each there were.
2174 *
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002175 * This function returns the descriptor number found, or vq->num (which is
2176 * never a valid descriptor number) if none was found. A negative code is
2177 * returned on error. */
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002178int vhost_get_vq_desc(struct vhost_virtqueue *vq,
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002179 struct iovec iov[], unsigned int iov_size,
2180 unsigned int *out_num, unsigned int *in_num,
2181 struct vhost_log *log, unsigned int *log_num)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002182{
2183 struct vring_desc desc;
2184 unsigned int i, head, found = 0;
2185 u16 last_avail_idx;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002186 __virtio16 avail_idx;
2187 __virtio16 ring_head;
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002188 int ret, access;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002189
2190 /* Check it isn't doing very strange things with descriptor numbers. */
2191 last_avail_idx = vq->last_avail_idx;
Jason Wange3b56cd2017-02-07 15:49:50 +08002192
2193 if (vq->avail_idx == vq->last_avail_idx) {
Jason Wang7b5d7532019-05-24 04:12:14 -04002194 if (unlikely(vhost_get_avail_idx(vq, &avail_idx))) {
Jason Wange3b56cd2017-02-07 15:49:50 +08002195 vq_err(vq, "Failed to access avail idx at %p\n",
2196 &vq->avail->idx);
2197 return -EFAULT;
2198 }
2199 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2200
2201 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
2202 vq_err(vq, "Guest moved used index from %u to %u",
2203 last_avail_idx, vq->avail_idx);
2204 return -EFAULT;
2205 }
2206
2207 /* If there's nothing new since last we looked, return
2208 * invalid.
2209 */
2210 if (vq->avail_idx == last_avail_idx)
2211 return vq->num;
2212
2213 /* Only get avail ring entries after they have been
2214 * exposed by guest.
2215 */
2216 smp_rmb();
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002217 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002218
2219 /* Grab the next descriptor number they're advertising, and increment
2220 * the index we've seen. */
Jason Wang7b5d7532019-05-24 04:12:14 -04002221 if (unlikely(vhost_get_avail_head(vq, &ring_head, last_avail_idx))) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002222 vq_err(vq, "Failed to read head: idx %d address %p\n",
2223 last_avail_idx,
2224 &vq->avail->ring[last_avail_idx % vq->num]);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002225 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002226 }
2227
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002228 head = vhost16_to_cpu(vq, ring_head);
2229
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002230 /* If their number is silly, that's an error. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002231 if (unlikely(head >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002232 vq_err(vq, "Guest says index %u > %u is available",
2233 head, vq->num);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002234 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002235 }
2236
2237 /* When we start there are none of either input nor output. */
2238 *out_num = *in_num = 0;
2239 if (unlikely(log))
2240 *log_num = 0;
2241
2242 i = head;
2243 do {
2244 unsigned iov_count = *in_num + *out_num;
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002245 if (unlikely(i >= vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002246 vq_err(vq, "Desc index is %u > %u, head = %u",
2247 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002248 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002249 }
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002250 if (unlikely(++found > vq->num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002251 vq_err(vq, "Loop detected: last one at %u "
2252 "vq size %u head %u\n",
2253 i, vq->num, head);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002254 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002255 }
Jason Wang7b5d7532019-05-24 04:12:14 -04002256 ret = vhost_get_desc(vq, &desc, i);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002257 if (unlikely(ret)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002258 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
2259 i, vq->desc + i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002260 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002261 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002262 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03002263 ret = get_indirect(vq, iov, iov_size,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002264 out_num, in_num,
2265 log, log_num, &desc);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002266 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002267 if (ret != -EAGAIN)
2268 vq_err(vq, "Failure detected "
2269 "in indirect descriptor at idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002270 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002271 }
2272 continue;
2273 }
2274
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002275 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2276 access = VHOST_ACCESS_WO;
2277 else
2278 access = VHOST_ACCESS_RO;
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002279 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2280 vhost32_to_cpu(vq, desc.len), iov + iov_count,
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002281 iov_size - iov_count, access);
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002282 if (unlikely(ret < 0)) {
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002283 if (ret != -EAGAIN)
2284 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2285 ret, i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002286 return ret;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002287 }
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002288 if (access == VHOST_ACCESS_WO) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002289 /* If this is an input descriptor,
2290 * increment that count. */
2291 *in_num += ret;
yongduan060423b2019-09-11 17:44:24 +08002292 if (unlikely(log && ret)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002293 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2294 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002295 ++*log_num;
2296 }
2297 } else {
2298 /* If it's an output descriptor, they're all supposed
2299 * to come before any input descriptors. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +03002300 if (unlikely(*in_num)) {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002301 vq_err(vq, "Descriptor has out after in: "
2302 "idx %d\n", i);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +03002303 return -EINVAL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002304 }
2305 *out_num += ret;
2306 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002307 } while ((i = next_desc(vq, &desc)) != -1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002308
2309 /* On success, increment avail index. */
2310 vq->last_avail_idx++;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002311
2312 /* Assume notifications from guest are disabled at this point,
2313 * if they aren't we would need to update avail_event index. */
2314 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002315 return head;
2316}
Asias He6ac1afb2013-05-06 16:38:21 +08002317EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002318
2319/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
David Stevens8dd014a2010-07-27 18:52:21 +03002320void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002321{
David Stevens8dd014a2010-07-27 18:52:21 +03002322 vq->last_avail_idx -= n;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002323}
Asias He6ac1afb2013-05-06 16:38:21 +08002324EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002325
2326/* After we've used one of their buffers, we tell them about it. We'll then
2327 * want to notify the guest, using eventfd. */
2328int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2329{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002330 struct vring_used_elem heads = {
2331 cpu_to_vhost32(vq, head),
2332 cpu_to_vhost32(vq, len)
2333 };
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002334
Jason Wangc49e4e52013-09-02 16:40:58 +08002335 return vhost_add_used_n(vq, &heads, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002336}
Asias He6ac1afb2013-05-06 16:38:21 +08002337EXPORT_SYMBOL_GPL(vhost_add_used);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002338
David Stevens8dd014a2010-07-27 18:52:21 +03002339static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2340 struct vring_used_elem *heads,
2341 unsigned count)
2342{
Michael S. Tsirkina865e422020-04-06 08:42:55 -04002343 vring_used_elem_t __user *used;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002344 u16 old, new;
David Stevens8dd014a2010-07-27 18:52:21 +03002345 int start;
2346
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002347 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002348 used = vq->used->ring + start;
Jason Wang7b5d7532019-05-24 04:12:14 -04002349 if (vhost_put_used(vq, heads, start, count)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002350 vq_err(vq, "Failed to write used");
2351 return -EFAULT;
2352 }
2353 if (unlikely(vq->log_used)) {
2354 /* Make sure data is seen before log. */
2355 smp_wmb();
2356 /* Log used ring entry write. */
Jason Wangcc5e7102019-01-16 16:54:42 +08002357 log_used(vq, ((void __user *)used - (void __user *)vq->used),
2358 count * sizeof *used);
David Stevens8dd014a2010-07-27 18:52:21 +03002359 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002360 old = vq->last_used_idx;
2361 new = (vq->last_used_idx += count);
2362 /* If the driver never bothers to signal in a very long while,
2363 * used index might wrap around. If that happens, invalidate
2364 * signalled_used index we stored. TODO: make sure driver
2365 * signals at least once in 2^16 and remove this. */
2366 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2367 vq->signalled_used_valid = false;
David Stevens8dd014a2010-07-27 18:52:21 +03002368 return 0;
2369}
2370
2371/* After we've used one of their buffers, we tell them about it. We'll then
2372 * want to notify the guest, using eventfd. */
2373int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2374 unsigned count)
2375{
2376 int start, n, r;
2377
Michael S. Tsirkin5fba13b2015-11-29 13:34:44 +02002378 start = vq->last_used_idx & (vq->num - 1);
David Stevens8dd014a2010-07-27 18:52:21 +03002379 n = vq->num - start;
2380 if (n < count) {
2381 r = __vhost_add_used_n(vq, heads, n);
2382 if (r < 0)
2383 return r;
2384 heads += n;
2385 count -= n;
2386 }
2387 r = __vhost_add_used_n(vq, heads, count);
2388
2389 /* Make sure buffer is written before we update index. */
2390 smp_wmb();
Jason Wang7b5d7532019-05-24 04:12:14 -04002391 if (vhost_put_used_idx(vq)) {
David Stevens8dd014a2010-07-27 18:52:21 +03002392 vq_err(vq, "Failed to increment used idx");
2393 return -EFAULT;
2394 }
2395 if (unlikely(vq->log_used)) {
Jason Wang841df922018-12-13 10:53:37 +08002396 /* Make sure used idx is seen before log. */
2397 smp_wmb();
David Stevens8dd014a2010-07-27 18:52:21 +03002398 /* Log used index update. */
Jason Wangcc5e7102019-01-16 16:54:42 +08002399 log_used(vq, offsetof(struct vring_used, idx),
2400 sizeof vq->used->idx);
David Stevens8dd014a2010-07-27 18:52:21 +03002401 if (vq->log_ctx)
2402 eventfd_signal(vq->log_ctx, 1);
2403 }
2404 return r;
2405}
Asias He6ac1afb2013-05-06 16:38:21 +08002406EXPORT_SYMBOL_GPL(vhost_add_used_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002407
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002408static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002409{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002410 __u16 old, new;
2411 __virtio16 event;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002412 bool v;
Jason Wang8d658432017-07-27 11:22:05 +08002413 /* Flush out used index updates. This is paired
2414 * with the barrier that the Guest executes when enabling
2415 * interrupts. */
2416 smp_mb();
Michael S. Tsirkin0d499352010-05-11 19:44:17 +03002417
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002418 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002419 unlikely(vq->avail_idx == vq->last_avail_idx))
2420 return true;
2421
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002422 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002423 __virtio16 flags;
Jason Wang7b5d7532019-05-24 04:12:14 -04002424 if (vhost_get_avail_flags(vq, &flags)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002425 vq_err(vq, "Failed to get flags");
2426 return true;
2427 }
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002428 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002429 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002430 old = vq->signalled_used;
2431 v = vq->signalled_used_valid;
2432 new = vq->signalled_used = vq->last_used_idx;
2433 vq->signalled_used_valid = true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002434
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002435 if (unlikely(!v))
2436 return true;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002437
Jason Wang7b5d7532019-05-24 04:12:14 -04002438 if (vhost_get_used_event(vq, &event)) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002439 vq_err(vq, "Failed to get used event idx");
2440 return true;
2441 }
Jason Wang8d658432017-07-27 11:22:05 +08002442 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002443}
2444
2445/* This actually signals the guest, using eventfd. */
2446void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2447{
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002448 /* Signal the Guest tell them we used something up. */
Zhu Lingshan265a0ad2020-07-31 14:55:28 +08002449 if (vq->call_ctx.ctx && vhost_notify(dev, vq))
2450 eventfd_signal(vq->call_ctx.ctx, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002451}
Asias He6ac1afb2013-05-06 16:38:21 +08002452EXPORT_SYMBOL_GPL(vhost_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002453
2454/* And here's the combo meal deal. Supersize me! */
2455void vhost_add_used_and_signal(struct vhost_dev *dev,
2456 struct vhost_virtqueue *vq,
2457 unsigned int head, int len)
2458{
2459 vhost_add_used(vq, head, len);
2460 vhost_signal(dev, vq);
2461}
Asias He6ac1afb2013-05-06 16:38:21 +08002462EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002463
David Stevens8dd014a2010-07-27 18:52:21 +03002464/* multi-buffer version of vhost_add_used_and_signal */
2465void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2466 struct vhost_virtqueue *vq,
2467 struct vring_used_elem *heads, unsigned count)
2468{
2469 vhost_add_used_n(vq, heads, count);
2470 vhost_signal(dev, vq);
2471}
Asias He6ac1afb2013-05-06 16:38:21 +08002472EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
David Stevens8dd014a2010-07-27 18:52:21 +03002473
Jason Wangd4a60602016-03-04 06:24:52 -05002474/* return true if we're sure that avaiable ring is empty */
2475bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2476{
2477 __virtio16 avail_idx;
2478 int r;
2479
Jason Wang275bf962017-01-18 15:02:01 +08002480 if (vq->avail_idx != vq->last_avail_idx)
Jason Wangd4a60602016-03-04 06:24:52 -05002481 return false;
2482
Jason Wang7b5d7532019-05-24 04:12:14 -04002483 r = vhost_get_avail_idx(vq, &avail_idx);
Jason Wang275bf962017-01-18 15:02:01 +08002484 if (unlikely(r))
2485 return false;
2486 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
2487
2488 return vq->avail_idx == vq->last_avail_idx;
Jason Wangd4a60602016-03-04 06:24:52 -05002489}
2490EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2491
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002492/* OK, now we need to know about added descriptors. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002493bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002494{
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002495 __virtio16 avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002496 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302497
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002498 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2499 return false;
2500 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002501 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002502 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002503 if (r) {
2504 vq_err(vq, "Failed to enable notification at %p: %d\n",
2505 &vq->used->flags, r);
2506 return false;
2507 }
2508 } else {
Jason Wang2723fea2011-06-21 18:04:38 +08002509 r = vhost_update_avail_event(vq, vq->avail_idx);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002510 if (r) {
2511 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2512 vhost_avail_event(vq), r);
2513 return false;
2514 }
2515 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002516 /* They could have slipped one in as we were doing that: make
2517 * sure it's written, then check again. */
Michael S. Tsirkin56593382010-02-01 07:21:02 +00002518 smp_mb();
Jason Wang7b5d7532019-05-24 04:12:14 -04002519 r = vhost_get_avail_idx(vq, &avail_idx);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002520 if (r) {
2521 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2522 &vq->avail->idx, r);
2523 return false;
2524 }
2525
Michael S. Tsirkin3b1bbe82014-10-24 14:04:47 +03002526 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002527}
Asias He6ac1afb2013-05-06 16:38:21 +08002528EXPORT_SYMBOL_GPL(vhost_enable_notify);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002529
2530/* We don't need to be notified again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002531void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002532{
2533 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05302534
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002535 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2536 return;
2537 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03002538 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
Jason Wang2723fea2011-06-21 18:04:38 +08002539 r = vhost_update_used_flags(vq);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002540 if (r)
Yunsheng Linae6961d2020-09-01 10:39:09 +08002541 vq_err(vq, "Failed to disable notification at %p: %d\n",
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +03002542 &vq->used->flags, r);
2543 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00002544}
Asias He6ac1afb2013-05-06 16:38:21 +08002545EXPORT_SYMBOL_GPL(vhost_disable_notify);
2546
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002547/* Create a new message. */
2548struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2549{
2550 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2551 if (!node)
2552 return NULL;
Michael S. Tsirkin670ae9c2018-05-12 00:33:10 +03002553
2554 /* Make sure all padding within the structure is initialized. */
2555 memset(&node->msg, 0, sizeof node->msg);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002556 node->vq = vq;
2557 node->msg.type = type;
2558 return node;
2559}
2560EXPORT_SYMBOL_GPL(vhost_new_msg);
2561
2562void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2563 struct vhost_msg_node *node)
2564{
2565 spin_lock(&dev->iotlb_lock);
2566 list_add_tail(&node->node, head);
2567 spin_unlock(&dev->iotlb_lock);
2568
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002569 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002570}
2571EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2572
2573struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2574 struct list_head *head)
2575{
2576 struct vhost_msg_node *node = NULL;
2577
2578 spin_lock(&dev->iotlb_lock);
2579 if (!list_empty(head)) {
2580 node = list_first_entry(head, struct vhost_msg_node,
2581 node);
2582 list_del(&node->node);
2583 }
2584 spin_unlock(&dev->iotlb_lock);
2585
2586 return node;
2587}
2588EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2589
Jason Wang460f7ce2020-08-04 19:20:38 +03002590void vhost_set_backend_features(struct vhost_dev *dev, u64 features)
2591{
2592 struct vhost_virtqueue *vq;
2593 int i;
2594
2595 mutex_lock(&dev->mutex);
2596 for (i = 0; i < dev->nvqs; ++i) {
2597 vq = dev->vqs[i];
2598 mutex_lock(&vq->mutex);
2599 vq->acked_backend_features = features;
2600 mutex_unlock(&vq->mutex);
2601 }
2602 mutex_unlock(&dev->mutex);
2603}
2604EXPORT_SYMBOL_GPL(vhost_set_backend_features);
Jason Wang6b1e6cc2016-06-23 02:04:32 -04002605
Asias He6ac1afb2013-05-06 16:38:21 +08002606static int __init vhost_init(void)
2607{
2608 return 0;
2609}
2610
2611static void __exit vhost_exit(void)
2612{
2613}
2614
2615module_init(vhost_init);
2616module_exit(vhost_exit);
2617
2618MODULE_VERSION("0.0.1");
2619MODULE_LICENSE("GPL v2");
2620MODULE_AUTHOR("Michael S. Tsirkin");
2621MODULE_DESCRIPTION("Host kernel accelerator for virtio");