]> git.ipfire.org Git - people/ms/linux.git/blame - drivers/vhost/vhost.c
vfs: do bulk POLL* -> EPOLL* replacement
[people/ms/linux.git] / drivers / vhost / vhost.c
CommitLineData
3a4d5c94
MT
1/* Copyright (C) 2009 Red Hat, Inc.
2 * Copyright (C) 2006 Rusty Russell IBM Corporation
3 *
4 * Author: Michael S. Tsirkin <mst@redhat.com>
5 *
6 * Inspiration, some code, and most witty comments come from
61516587 7 * Documentation/virtual/lguest/lguest.c, by Rusty Russell
3a4d5c94
MT
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2.
10 *
11 * Generic code for virtio server in host kernel.
12 */
13
14#include <linux/eventfd.h>
15#include <linux/vhost.h>
35596b27 16#include <linux/uio.h>
3a4d5c94 17#include <linux/mm.h>
64e1c807 18#include <linux/mmu_context.h>
3a4d5c94
MT
19#include <linux/miscdevice.h>
20#include <linux/mutex.h>
3a4d5c94
MT
21#include <linux/poll.h>
22#include <linux/file.h>
23#include <linux/highmem.h>
5a0e3ad6 24#include <linux/slab.h>
4de7255f 25#include <linux/vmalloc.h>
c23f3445 26#include <linux/kthread.h>
9e3d1957 27#include <linux/cgroup.h>
6ac1afbf 28#include <linux/module.h>
bcfeacab 29#include <linux/sort.h>
6e84f315 30#include <linux/sched/mm.h>
174cd4b1 31#include <linux/sched/signal.h>
a9709d68 32#include <linux/interval_tree_generic.h>
3a4d5c94 33
3a4d5c94
MT
34#include "vhost.h"
35
c9ce42f7
IM
36static 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)");
6b1e6cc7
JW
40static 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)");
c9ce42f7 44
3a4d5c94 45enum {
3a4d5c94
MT
46 VHOST_MEMORY_F_LOG = 0x1,
47};
48
3b1bbe89
MT
49#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])
8ea8cf89 51
a9709d68
JW
52INTERVAL_TREE_DEFINE(struct vhost_umem_node,
53 rb, __u64, __subtree_last,
2f952c01 54 START, LAST, static inline, vhost_umem_interval_tree);
a9709d68 55
2751c988 56#ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
c5072037 57static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
2751c988
GK
58{
59 vq->user_be = !virtio_legacy_is_little_endian();
60}
61
c5072037
GK
62static void vhost_enable_cross_endian_big(struct vhost_virtqueue *vq)
63{
64 vq->user_be = true;
65}
66
67static void vhost_enable_cross_endian_little(struct vhost_virtqueue *vq)
68{
69 vq->user_be = false;
70}
71
2751c988
GK
72static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
73{
74 struct vhost_vring_state s;
75
76 if (vq->private_data)
77 return -EBUSY;
78
79 if (copy_from_user(&s, argp, sizeof(s)))
80 return -EFAULT;
81
82 if (s.num != VHOST_VRING_LITTLE_ENDIAN &&
83 s.num != VHOST_VRING_BIG_ENDIAN)
84 return -EINVAL;
85
c5072037
GK
86 if (s.num == VHOST_VRING_BIG_ENDIAN)
87 vhost_enable_cross_endian_big(vq);
88 else
89 vhost_enable_cross_endian_little(vq);
2751c988
GK
90
91 return 0;
92}
93
94static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
95 int __user *argp)
96{
97 struct vhost_vring_state s = {
98 .index = idx,
99 .num = vq->user_be
100 };
101
102 if (copy_to_user(argp, &s, sizeof(s)))
103 return -EFAULT;
104
105 return 0;
106}
107
108static void vhost_init_is_le(struct vhost_virtqueue *vq)
109{
110 /* Note for legacy virtio: user_be is initialized at reset time
111 * according to the host endianness. If userspace does not set an
112 * explicit endianness, the default behavior is native endian, as
113 * expected by legacy virtio.
114 */
115 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1) || !vq->user_be;
116}
117#else
c5072037 118static void vhost_disable_cross_endian(struct vhost_virtqueue *vq)
2751c988
GK
119{
120}
121
122static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp)
123{
124 return -ENOIOCTLCMD;
125}
126
127static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx,
128 int __user *argp)
129{
130 return -ENOIOCTLCMD;
131}
132
133static void vhost_init_is_le(struct vhost_virtqueue *vq)
134{
cda8bba0
HP
135 vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1)
136 || virtio_legacy_is_little_endian();
2751c988
GK
137}
138#endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */
139
c5072037
GK
140static void vhost_reset_is_le(struct vhost_virtqueue *vq)
141{
cda8bba0 142 vhost_init_is_le(vq);
c5072037
GK
143}
144
7235acdb
JW
145struct vhost_flush_struct {
146 struct vhost_work work;
147 struct completion wait_event;
148};
149
150static void vhost_flush_work(struct vhost_work *work)
151{
152 struct vhost_flush_struct *s;
153
154 s = container_of(work, struct vhost_flush_struct, work);
155 complete(&s->wait_event);
156}
157
3a4d5c94
MT
158static void vhost_poll_func(struct file *file, wait_queue_head_t *wqh,
159 poll_table *pt)
160{
161 struct vhost_poll *poll;
3a4d5c94 162
d47effe1 163 poll = container_of(pt, struct vhost_poll, table);
3a4d5c94
MT
164 poll->wqh = wqh;
165 add_wait_queue(wqh, &poll->wait);
166}
167
ac6424b9 168static int vhost_poll_wakeup(wait_queue_entry_t *wait, unsigned mode, int sync,
3a4d5c94
MT
169 void *key)
170{
c23f3445
TH
171 struct vhost_poll *poll = container_of(wait, struct vhost_poll, wait);
172
3ad6f93e 173 if (!(key_to_poll(key) & poll->mask))
3a4d5c94
MT
174 return 0;
175
c23f3445 176 vhost_poll_queue(poll);
3a4d5c94
MT
177 return 0;
178}
179
163049ae 180void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn)
87d6a412 181{
04b96e55 182 clear_bit(VHOST_WORK_QUEUED, &work->flags);
87d6a412 183 work->fn = fn;
87d6a412 184}
6ac1afbf 185EXPORT_SYMBOL_GPL(vhost_work_init);
87d6a412 186
3a4d5c94 187/* Init poll structure */
c23f3445 188void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
58e3b602 189 __poll_t mask, struct vhost_dev *dev)
3a4d5c94 190{
3a4d5c94
MT
191 init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup);
192 init_poll_funcptr(&poll->table, vhost_poll_func);
193 poll->mask = mask;
c23f3445 194 poll->dev = dev;
2b8b328b 195 poll->wqh = NULL;
c23f3445 196
87d6a412 197 vhost_work_init(&poll->work, fn);
3a4d5c94 198}
6ac1afbf 199EXPORT_SYMBOL_GPL(vhost_poll_init);
3a4d5c94
MT
200
201/* Start polling a file. We add ourselves to file's wait queue. The caller must
202 * keep a reference to a file until after vhost_poll_stop is called. */
2b8b328b 203int vhost_poll_start(struct vhost_poll *poll, struct file *file)
3a4d5c94 204{
e6c8adca 205 __poll_t mask;
2b8b328b 206 int ret = 0;
d47effe1 207
70181d51
JW
208 if (poll->wqh)
209 return 0;
210
3a4d5c94
MT
211 mask = file->f_op->poll(file, &poll->table);
212 if (mask)
3ad6f93e 213 vhost_poll_wakeup(&poll->wait, 0, 0, poll_to_key(mask));
a9a08845 214 if (mask & EPOLLERR) {
2b8b328b
JW
215 if (poll->wqh)
216 remove_wait_queue(poll->wqh, &poll->wait);
217 ret = -EINVAL;
218 }
219
220 return ret;
3a4d5c94 221}
6ac1afbf 222EXPORT_SYMBOL_GPL(vhost_poll_start);
3a4d5c94
MT
223
224/* Stop polling a file. After this function returns, it becomes safe to drop the
225 * file reference. You must also flush afterwards. */
226void vhost_poll_stop(struct vhost_poll *poll)
227{
2b8b328b
JW
228 if (poll->wqh) {
229 remove_wait_queue(poll->wqh, &poll->wait);
230 poll->wqh = NULL;
231 }
3a4d5c94 232}
6ac1afbf 233EXPORT_SYMBOL_GPL(vhost_poll_stop);
3a4d5c94 234
7235acdb 235void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work)
0174b0c3 236{
7235acdb 237 struct vhost_flush_struct flush;
d47effe1 238
7235acdb
JW
239 if (dev->worker) {
240 init_completion(&flush.wait_event);
241 vhost_work_init(&flush.work, vhost_flush_work);
0174b0c3 242
7235acdb
JW
243 vhost_work_queue(dev, &flush.work);
244 wait_for_completion(&flush.wait_event);
245 }
3a4d5c94 246}
6ac1afbf 247EXPORT_SYMBOL_GPL(vhost_work_flush);
3a4d5c94 248
87d6a412
MT
249/* Flush any work that has been scheduled. When calling this, don't hold any
250 * locks that are also used by the callback. */
251void vhost_poll_flush(struct vhost_poll *poll)
252{
253 vhost_work_flush(poll->dev, &poll->work);
254}
6ac1afbf 255EXPORT_SYMBOL_GPL(vhost_poll_flush);
87d6a412 256
163049ae 257void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work)
3a4d5c94 258{
04b96e55
JW
259 if (!dev->worker)
260 return;
c23f3445 261
04b96e55
JW
262 if (!test_and_set_bit(VHOST_WORK_QUEUED, &work->flags)) {
263 /* We can only add the work to the list after we're
264 * sure it was not in the list.
635abf01 265 * test_and_set_bit() implies a memory barrier.
04b96e55 266 */
04b96e55 267 llist_add(&work->node, &dev->work_list);
c23f3445
TH
268 wake_up_process(dev->worker);
269 }
3a4d5c94 270}
6ac1afbf 271EXPORT_SYMBOL_GPL(vhost_work_queue);
3a4d5c94 272
526d3e7f
JW
273/* A lockless hint for busy polling code to exit the loop */
274bool vhost_has_work(struct vhost_dev *dev)
275{
04b96e55 276 return !llist_empty(&dev->work_list);
526d3e7f
JW
277}
278EXPORT_SYMBOL_GPL(vhost_has_work);
279
87d6a412
MT
280void vhost_poll_queue(struct vhost_poll *poll)
281{
282 vhost_work_queue(poll->dev, &poll->work);
283}
6ac1afbf 284EXPORT_SYMBOL_GPL(vhost_poll_queue);
87d6a412 285
f8894913
JW
286static void __vhost_vq_meta_reset(struct vhost_virtqueue *vq)
287{
288 int j;
289
290 for (j = 0; j < VHOST_NUM_ADDRS; j++)
291 vq->meta_iotlb[j] = NULL;
292}
293
294static void vhost_vq_meta_reset(struct vhost_dev *d)
295{
296 int i;
297
298 for (i = 0; i < d->nvqs; ++i)
299 __vhost_vq_meta_reset(d->vqs[i]);
300}
301
3a4d5c94
MT
302static void vhost_vq_reset(struct vhost_dev *dev,
303 struct vhost_virtqueue *vq)
304{
305 vq->num = 1;
306 vq->desc = NULL;
307 vq->avail = NULL;
308 vq->used = NULL;
309 vq->last_avail_idx = 0;
310 vq->avail_idx = 0;
311 vq->last_used_idx = 0;
8ea8cf89
MT
312 vq->signalled_used = 0;
313 vq->signalled_used_valid = false;
3a4d5c94 314 vq->used_flags = 0;
3a4d5c94
MT
315 vq->log_used = false;
316 vq->log_addr = -1ull;
3a4d5c94 317 vq->private_data = NULL;
ea16c514 318 vq->acked_features = 0;
3a4d5c94
MT
319 vq->log_base = NULL;
320 vq->error_ctx = NULL;
3a4d5c94
MT
321 vq->kick = NULL;
322 vq->call_ctx = NULL;
73a99f08 323 vq->log_ctx = NULL;
c5072037
GK
324 vhost_reset_is_le(vq);
325 vhost_disable_cross_endian(vq);
03088137 326 vq->busyloop_timeout = 0;
a9709d68 327 vq->umem = NULL;
6b1e6cc7 328 vq->iotlb = NULL;
f8894913 329 __vhost_vq_meta_reset(vq);
3a4d5c94
MT
330}
331
c23f3445
TH
332static int vhost_worker(void *data)
333{
334 struct vhost_dev *dev = data;
04b96e55
JW
335 struct vhost_work *work, *work_next;
336 struct llist_node *node;
d7ffde35 337 mm_segment_t oldfs = get_fs();
c23f3445 338
d7ffde35 339 set_fs(USER_DS);
64e1c807
MT
340 use_mm(dev->mm);
341
c23f3445
TH
342 for (;;) {
343 /* mb paired w/ kthread_stop */
344 set_current_state(TASK_INTERRUPTIBLE);
345
c23f3445 346 if (kthread_should_stop()) {
c23f3445 347 __set_current_state(TASK_RUNNING);
64e1c807 348 break;
c23f3445 349 }
04b96e55
JW
350
351 node = llist_del_all(&dev->work_list);
352 if (!node)
353 schedule();
354
355 node = llist_reverse_order(node);
356 /* make sure flag is seen after deletion */
357 smp_wmb();
358 llist_for_each_entry_safe(work, work_next, node, node) {
359 clear_bit(VHOST_WORK_QUEUED, &work->flags);
c23f3445
TH
360 __set_current_state(TASK_RUNNING);
361 work->fn(work);
d550dda1
NHE
362 if (need_resched())
363 schedule();
04b96e55 364 }
c23f3445 365 }
64e1c807 366 unuse_mm(dev->mm);
d7ffde35 367 set_fs(oldfs);
64e1c807 368 return 0;
c23f3445
TH
369}
370
bab632d6
MT
371static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq)
372{
373 kfree(vq->indirect);
374 vq->indirect = NULL;
375 kfree(vq->log);
376 vq->log = NULL;
377 kfree(vq->heads);
378 vq->heads = NULL;
bab632d6
MT
379}
380
e0e9b406
JW
381/* Helper to allocate iovec buffers for all vqs. */
382static long vhost_dev_alloc_iovecs(struct vhost_dev *dev)
383{
6d5e6aa8 384 struct vhost_virtqueue *vq;
e0e9b406 385 int i;
d47effe1 386
e0e9b406 387 for (i = 0; i < dev->nvqs; ++i) {
6d5e6aa8
AH
388 vq = dev->vqs[i];
389 vq->indirect = kmalloc(sizeof *vq->indirect * UIO_MAXIOV,
390 GFP_KERNEL);
391 vq->log = kmalloc(sizeof *vq->log * UIO_MAXIOV, GFP_KERNEL);
392 vq->heads = kmalloc(sizeof *vq->heads * UIO_MAXIOV, GFP_KERNEL);
393 if (!vq->indirect || !vq->log || !vq->heads)
e0e9b406
JW
394 goto err_nomem;
395 }
396 return 0;
d47effe1 397
e0e9b406 398err_nomem:
bab632d6 399 for (; i >= 0; --i)
3ab2e420 400 vhost_vq_free_iovecs(dev->vqs[i]);
e0e9b406
JW
401 return -ENOMEM;
402}
403
404static void vhost_dev_free_iovecs(struct vhost_dev *dev)
405{
406 int i;
d47effe1 407
bab632d6 408 for (i = 0; i < dev->nvqs; ++i)
3ab2e420 409 vhost_vq_free_iovecs(dev->vqs[i]);
e0e9b406
JW
410}
411
59566b6e 412void vhost_dev_init(struct vhost_dev *dev,
3ab2e420 413 struct vhost_virtqueue **vqs, int nvqs)
3a4d5c94 414{
6d5e6aa8 415 struct vhost_virtqueue *vq;
3a4d5c94 416 int i;
c23f3445 417
3a4d5c94
MT
418 dev->vqs = vqs;
419 dev->nvqs = nvqs;
420 mutex_init(&dev->mutex);
421 dev->log_ctx = NULL;
a9709d68 422 dev->umem = NULL;
6b1e6cc7 423 dev->iotlb = NULL;
3a4d5c94 424 dev->mm = NULL;
c23f3445 425 dev->worker = NULL;
04b96e55 426 init_llist_head(&dev->work_list);
6b1e6cc7
JW
427 init_waitqueue_head(&dev->wait);
428 INIT_LIST_HEAD(&dev->read_list);
429 INIT_LIST_HEAD(&dev->pending_list);
430 spin_lock_init(&dev->iotlb_lock);
04b96e55 431
3a4d5c94
MT
432
433 for (i = 0; i < dev->nvqs; ++i) {
6d5e6aa8
AH
434 vq = dev->vqs[i];
435 vq->log = NULL;
436 vq->indirect = NULL;
437 vq->heads = NULL;
438 vq->dev = dev;
439 mutex_init(&vq->mutex);
440 vhost_vq_reset(dev, vq);
441 if (vq->handle_kick)
442 vhost_poll_init(&vq->poll, vq->handle_kick,
a9a08845 443 EPOLLIN, dev);
3a4d5c94 444 }
3a4d5c94 445}
6ac1afbf 446EXPORT_SYMBOL_GPL(vhost_dev_init);
3a4d5c94
MT
447
448/* Caller should have device mutex */
449long vhost_dev_check_owner(struct vhost_dev *dev)
450{
451 /* Are you the owner? If not, I don't think you mean to do that */
452 return dev->mm == current->mm ? 0 : -EPERM;
453}
6ac1afbf 454EXPORT_SYMBOL_GPL(vhost_dev_check_owner);
3a4d5c94 455
87d6a412 456struct vhost_attach_cgroups_struct {
d47effe1
KK
457 struct vhost_work work;
458 struct task_struct *owner;
459 int ret;
87d6a412
MT
460};
461
462static void vhost_attach_cgroups_work(struct vhost_work *work)
463{
d47effe1
KK
464 struct vhost_attach_cgroups_struct *s;
465
466 s = container_of(work, struct vhost_attach_cgroups_struct, work);
467 s->ret = cgroup_attach_task_all(s->owner, current);
87d6a412
MT
468}
469
470static int vhost_attach_cgroups(struct vhost_dev *dev)
471{
d47effe1
KK
472 struct vhost_attach_cgroups_struct attach;
473
474 attach.owner = current;
475 vhost_work_init(&attach.work, vhost_attach_cgroups_work);
476 vhost_work_queue(dev, &attach.work);
477 vhost_work_flush(dev, &attach.work);
478 return attach.ret;
87d6a412
MT
479}
480
05c05351
MT
481/* Caller should have device mutex */
482bool vhost_dev_has_owner(struct vhost_dev *dev)
483{
484 return dev->mm;
485}
6ac1afbf 486EXPORT_SYMBOL_GPL(vhost_dev_has_owner);
05c05351 487
3a4d5c94 488/* Caller should have device mutex */
54db63c2 489long vhost_dev_set_owner(struct vhost_dev *dev)
3a4d5c94 490{
c23f3445
TH
491 struct task_struct *worker;
492 int err;
d47effe1 493
3a4d5c94 494 /* Is there an owner already? */
05c05351 495 if (vhost_dev_has_owner(dev)) {
c23f3445
TH
496 err = -EBUSY;
497 goto err_mm;
498 }
d47effe1 499
3a4d5c94
MT
500 /* No owner, become one */
501 dev->mm = get_task_mm(current);
c23f3445
TH
502 worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid);
503 if (IS_ERR(worker)) {
504 err = PTR_ERR(worker);
505 goto err_worker;
506 }
507
508 dev->worker = worker;
87d6a412
MT
509 wake_up_process(worker); /* avoid contributing to loadavg */
510
511 err = vhost_attach_cgroups(dev);
9e3d1957
MT
512 if (err)
513 goto err_cgroup;
c23f3445 514
e0e9b406
JW
515 err = vhost_dev_alloc_iovecs(dev);
516 if (err)
517 goto err_cgroup;
518
3a4d5c94 519 return 0;
9e3d1957
MT
520err_cgroup:
521 kthread_stop(worker);
615cc221 522 dev->worker = NULL;
c23f3445
TH
523err_worker:
524 if (dev->mm)
525 mmput(dev->mm);
526 dev->mm = NULL;
527err_mm:
528 return err;
3a4d5c94 529}
6ac1afbf 530EXPORT_SYMBOL_GPL(vhost_dev_set_owner);
3a4d5c94 531
a9709d68
JW
532struct vhost_umem *vhost_dev_reset_owner_prepare(void)
533{
6c5ab651 534 return kvzalloc(sizeof(struct vhost_umem), GFP_KERNEL);
150b9e51 535}
6ac1afbf 536EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare);
3a4d5c94 537
150b9e51 538/* Caller should have device mutex */
a9709d68 539void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_umem *umem)
150b9e51 540{
47283bef
MT
541 int i;
542
f6f93f75 543 vhost_dev_cleanup(dev);
3a4d5c94 544
150b9e51 545 /* Restore memory to default empty mapping. */
a9709d68
JW
546 INIT_LIST_HEAD(&umem->umem_list);
547 dev->umem = umem;
47283bef
MT
548 /* We don't need VQ locks below since vhost_dev_cleanup makes sure
549 * VQs aren't running.
550 */
551 for (i = 0; i < dev->nvqs; ++i)
a9709d68 552 dev->vqs[i]->umem = umem;
3a4d5c94 553}
6ac1afbf 554EXPORT_SYMBOL_GPL(vhost_dev_reset_owner);
3a4d5c94 555
b211616d 556void vhost_dev_stop(struct vhost_dev *dev)
bab632d6
MT
557{
558 int i;
b211616d
MT
559
560 for (i = 0; i < dev->nvqs; ++i) {
3ab2e420
AH
561 if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
562 vhost_poll_stop(&dev->vqs[i]->poll);
563 vhost_poll_flush(&dev->vqs[i]->poll);
b211616d 564 }
bab632d6 565 }
bab632d6 566}
6ac1afbf 567EXPORT_SYMBOL_GPL(vhost_dev_stop);
bab632d6 568
6b1e6cc7
JW
569static void vhost_umem_free(struct vhost_umem *umem,
570 struct vhost_umem_node *node)
571{
572 vhost_umem_interval_tree_remove(node, &umem->umem_tree);
573 list_del(&node->link);
574 kfree(node);
575 umem->numem--;
576}
577
a9709d68
JW
578static void vhost_umem_clean(struct vhost_umem *umem)
579{
580 struct vhost_umem_node *node, *tmp;
581
582 if (!umem)
583 return;
584
6b1e6cc7
JW
585 list_for_each_entry_safe(node, tmp, &umem->umem_list, link)
586 vhost_umem_free(umem, node);
587
a9709d68
JW
588 kvfree(umem);
589}
590
6b1e6cc7
JW
591static void vhost_clear_msg(struct vhost_dev *dev)
592{
593 struct vhost_msg_node *node, *n;
594
595 spin_lock(&dev->iotlb_lock);
596
597 list_for_each_entry_safe(node, n, &dev->read_list, node) {
598 list_del(&node->node);
599 kfree(node);
600 }
601
602 list_for_each_entry_safe(node, n, &dev->pending_list, node) {
603 list_del(&node->node);
604 kfree(node);
605 }
606
607 spin_unlock(&dev->iotlb_lock);
608}
609
f6f93f75 610void vhost_dev_cleanup(struct vhost_dev *dev)
3a4d5c94
MT
611{
612 int i;
d47effe1 613
3a4d5c94 614 for (i = 0; i < dev->nvqs; ++i) {
3ab2e420
AH
615 if (dev->vqs[i]->error_ctx)
616 eventfd_ctx_put(dev->vqs[i]->error_ctx);
3ab2e420
AH
617 if (dev->vqs[i]->kick)
618 fput(dev->vqs[i]->kick);
619 if (dev->vqs[i]->call_ctx)
620 eventfd_ctx_put(dev->vqs[i]->call_ctx);
3ab2e420 621 vhost_vq_reset(dev, dev->vqs[i]);
3a4d5c94 622 }
e0e9b406 623 vhost_dev_free_iovecs(dev);
3a4d5c94
MT
624 if (dev->log_ctx)
625 eventfd_ctx_put(dev->log_ctx);
626 dev->log_ctx = NULL;
3a4d5c94 627 /* No one will access memory at this point */
a9709d68
JW
628 vhost_umem_clean(dev->umem);
629 dev->umem = NULL;
6b1e6cc7
JW
630 vhost_umem_clean(dev->iotlb);
631 dev->iotlb = NULL;
632 vhost_clear_msg(dev);
a9a08845 633 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
04b96e55 634 WARN_ON(!llist_empty(&dev->work_list));
78b620ce
ED
635 if (dev->worker) {
636 kthread_stop(dev->worker);
637 dev->worker = NULL;
638 }
533a19b4
MT
639 if (dev->mm)
640 mmput(dev->mm);
641 dev->mm = NULL;
3a4d5c94 642}
6ac1afbf 643EXPORT_SYMBOL_GPL(vhost_dev_cleanup);
3a4d5c94
MT
644
645static int log_access_ok(void __user *log_base, u64 addr, unsigned long sz)
646{
647 u64 a = addr / VHOST_PAGE_SIZE / 8;
d47effe1 648
3a4d5c94
MT
649 /* Make sure 64 bit math will not overflow. */
650 if (a > ULONG_MAX - (unsigned long)log_base ||
651 a + (unsigned long)log_base > ULONG_MAX)
6d97e55f 652 return 0;
3a4d5c94
MT
653
654 return access_ok(VERIFY_WRITE, log_base + a,
655 (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8);
656}
657
ec33d031
MT
658static bool vhost_overflow(u64 uaddr, u64 size)
659{
660 /* Make sure 64 bit math will not overflow. */
661 return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size;
662}
663
3a4d5c94 664/* Caller should have vq mutex and device mutex. */
a9709d68 665static int vq_memory_access_ok(void __user *log_base, struct vhost_umem *umem,
3a4d5c94
MT
666 int log_all)
667{
a9709d68 668 struct vhost_umem_node *node;
179b284e 669
a9709d68 670 if (!umem)
f8322fbe 671 return 0;
179b284e 672
a9709d68
JW
673 list_for_each_entry(node, &umem->umem_list, link) {
674 unsigned long a = node->userspace_addr;
675
ec33d031 676 if (vhost_overflow(node->userspace_addr, node->size))
3a4d5c94 677 return 0;
ec33d031
MT
678
679
680 if (!access_ok(VERIFY_WRITE, (void __user *)a,
a9709d68 681 node->size))
3a4d5c94
MT
682 return 0;
683 else if (log_all && !log_access_ok(log_base,
a9709d68
JW
684 node->start,
685 node->size))
3a4d5c94
MT
686 return 0;
687 }
688 return 1;
689}
690
f8894913
JW
691static inline void __user *vhost_vq_meta_fetch(struct vhost_virtqueue *vq,
692 u64 addr, unsigned int size,
693 int type)
694{
695 const struct vhost_umem_node *node = vq->meta_iotlb[type];
696
697 if (!node)
698 return NULL;
699
700 return (void *)(uintptr_t)(node->userspace_addr + addr - node->start);
701}
702
3a4d5c94
MT
703/* Can we switch to this memory table? */
704/* Caller should have device mutex but not vq mutex */
a9709d68 705static int memory_access_ok(struct vhost_dev *d, struct vhost_umem *umem,
3a4d5c94
MT
706 int log_all)
707{
708 int i;
d47effe1 709
3a4d5c94
MT
710 for (i = 0; i < d->nvqs; ++i) {
711 int ok;
ea16c514
MT
712 bool log;
713
3ab2e420 714 mutex_lock(&d->vqs[i]->mutex);
ea16c514 715 log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL);
3a4d5c94 716 /* If ring is inactive, will check when it's enabled. */
3ab2e420 717 if (d->vqs[i]->private_data)
a9709d68
JW
718 ok = vq_memory_access_ok(d->vqs[i]->log_base,
719 umem, log);
3a4d5c94
MT
720 else
721 ok = 1;
3ab2e420 722 mutex_unlock(&d->vqs[i]->mutex);
3a4d5c94
MT
723 if (!ok)
724 return 0;
725 }
726 return 1;
727}
728
6b1e6cc7
JW
729static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
730 struct iovec iov[], int iov_size, int access);
bfe2bc51 731
72952cc0 732static int vhost_copy_to_user(struct vhost_virtqueue *vq, void __user *to,
bfe2bc51
JW
733 const void *from, unsigned size)
734{
6b1e6cc7 735 int ret;
bfe2bc51 736
6b1e6cc7
JW
737 if (!vq->iotlb)
738 return __copy_to_user(to, from, size);
739 else {
740 /* This function should be called after iotlb
741 * prefetch, which means we're sure that all vq
742 * could be access through iotlb. So -EAGAIN should
743 * not happen in this case.
744 */
6b1e6cc7 745 struct iov_iter t;
f8894913
JW
746 void __user *uaddr = vhost_vq_meta_fetch(vq,
747 (u64)(uintptr_t)to, size,
748 VHOST_ADDR_DESC);
749
750 if (uaddr)
751 return __copy_to_user(uaddr, from, size);
752
6b1e6cc7
JW
753 ret = translate_desc(vq, (u64)(uintptr_t)to, size, vq->iotlb_iov,
754 ARRAY_SIZE(vq->iotlb_iov),
755 VHOST_ACCESS_WO);
756 if (ret < 0)
757 goto out;
758 iov_iter_init(&t, WRITE, vq->iotlb_iov, ret, size);
759 ret = copy_to_iter(from, size, &t);
760 if (ret == size)
761 ret = 0;
762 }
763out:
764 return ret;
765}
bfe2bc51
JW
766
767static int vhost_copy_from_user(struct vhost_virtqueue *vq, void *to,
72952cc0 768 void __user *from, unsigned size)
bfe2bc51 769{
6b1e6cc7
JW
770 int ret;
771
772 if (!vq->iotlb)
773 return __copy_from_user(to, from, size);
774 else {
775 /* This function should be called after iotlb
776 * prefetch, which means we're sure that vq
777 * could be access through iotlb. So -EAGAIN should
778 * not happen in this case.
779 */
f8894913
JW
780 void __user *uaddr = vhost_vq_meta_fetch(vq,
781 (u64)(uintptr_t)from, size,
782 VHOST_ADDR_DESC);
6b1e6cc7 783 struct iov_iter f;
f8894913
JW
784
785 if (uaddr)
786 return __copy_from_user(to, uaddr, size);
787
6b1e6cc7
JW
788 ret = translate_desc(vq, (u64)(uintptr_t)from, size, vq->iotlb_iov,
789 ARRAY_SIZE(vq->iotlb_iov),
790 VHOST_ACCESS_RO);
791 if (ret < 0) {
792 vq_err(vq, "IOTLB translation failure: uaddr "
793 "%p size 0x%llx\n", from,
794 (unsigned long long) size);
795 goto out;
796 }
797 iov_iter_init(&f, READ, vq->iotlb_iov, ret, size);
798 ret = copy_from_iter(to, size, &f);
799 if (ret == size)
800 ret = 0;
801 }
802
803out:
804 return ret;
805}
806
f8894913
JW
807static void __user *__vhost_get_user_slow(struct vhost_virtqueue *vq,
808 void __user *addr, unsigned int size,
809 int type)
6b1e6cc7
JW
810{
811 int ret;
812
6b1e6cc7
JW
813 ret = translate_desc(vq, (u64)(uintptr_t)addr, size, vq->iotlb_iov,
814 ARRAY_SIZE(vq->iotlb_iov),
815 VHOST_ACCESS_RO);
816 if (ret < 0) {
817 vq_err(vq, "IOTLB translation failure: uaddr "
818 "%p size 0x%llx\n", addr,
819 (unsigned long long) size);
820 return NULL;
821 }
822
823 if (ret != 1 || vq->iotlb_iov[0].iov_len != size) {
824 vq_err(vq, "Non atomic userspace memory access: uaddr "
825 "%p size 0x%llx\n", addr,
826 (unsigned long long) size);
827 return NULL;
828 }
829
830 return vq->iotlb_iov[0].iov_base;
831}
832
f8894913
JW
833/* This function should be called after iotlb
834 * prefetch, which means we're sure that vq
835 * could be access through iotlb. So -EAGAIN should
836 * not happen in this case.
837 */
838static inline void __user *__vhost_get_user(struct vhost_virtqueue *vq,
839 void *addr, unsigned int size,
840 int type)
841{
842 void __user *uaddr = vhost_vq_meta_fetch(vq,
843 (u64)(uintptr_t)addr, size, type);
844 if (uaddr)
845 return uaddr;
846
847 return __vhost_get_user_slow(vq, addr, size, type);
848}
849
850#define vhost_put_user(vq, x, ptr) \
6b1e6cc7
JW
851({ \
852 int ret = -EFAULT; \
853 if (!vq->iotlb) { \
854 ret = __put_user(x, ptr); \
855 } else { \
856 __typeof__(ptr) to = \
f8894913
JW
857 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
858 sizeof(*ptr), VHOST_ADDR_USED); \
6b1e6cc7
JW
859 if (to != NULL) \
860 ret = __put_user(x, to); \
861 else \
862 ret = -EFAULT; \
863 } \
864 ret; \
865})
866
f8894913 867#define vhost_get_user(vq, x, ptr, type) \
6b1e6cc7
JW
868({ \
869 int ret; \
870 if (!vq->iotlb) { \
871 ret = __get_user(x, ptr); \
872 } else { \
873 __typeof__(ptr) from = \
f8894913
JW
874 (__typeof__(ptr)) __vhost_get_user(vq, ptr, \
875 sizeof(*ptr), \
876 type); \
6b1e6cc7
JW
877 if (from != NULL) \
878 ret = __get_user(x, from); \
879 else \
880 ret = -EFAULT; \
881 } \
882 ret; \
883})
884
f8894913
JW
885#define vhost_get_avail(vq, x, ptr) \
886 vhost_get_user(vq, x, ptr, VHOST_ADDR_AVAIL)
887
888#define vhost_get_used(vq, x, ptr) \
889 vhost_get_user(vq, x, ptr, VHOST_ADDR_USED)
890
6b1e6cc7
JW
891static void vhost_dev_lock_vqs(struct vhost_dev *d)
892{
893 int i = 0;
894 for (i = 0; i < d->nvqs; ++i)
e9cb4239 895 mutex_lock_nested(&d->vqs[i]->mutex, i);
6b1e6cc7
JW
896}
897
898static void vhost_dev_unlock_vqs(struct vhost_dev *d)
899{
900 int i = 0;
901 for (i = 0; i < d->nvqs; ++i)
902 mutex_unlock(&d->vqs[i]->mutex);
903}
904
905static int vhost_new_umem_range(struct vhost_umem *umem,
906 u64 start, u64 size, u64 end,
907 u64 userspace_addr, int perm)
908{
909 struct vhost_umem_node *tmp, *node = kmalloc(sizeof(*node), GFP_ATOMIC);
910
911 if (!node)
912 return -ENOMEM;
913
914 if (umem->numem == max_iotlb_entries) {
915 tmp = list_first_entry(&umem->umem_list, typeof(*tmp), link);
916 vhost_umem_free(umem, tmp);
917 }
918
919 node->start = start;
920 node->size = size;
921 node->last = end;
922 node->userspace_addr = userspace_addr;
923 node->perm = perm;
924 INIT_LIST_HEAD(&node->link);
925 list_add_tail(&node->link, &umem->umem_list);
926 vhost_umem_interval_tree_insert(node, &umem->umem_tree);
927 umem->numem++;
928
929 return 0;
930}
931
932static void vhost_del_umem_range(struct vhost_umem *umem,
933 u64 start, u64 end)
934{
935 struct vhost_umem_node *node;
936
937 while ((node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
938 start, end)))
939 vhost_umem_free(umem, node);
940}
941
942static void vhost_iotlb_notify_vq(struct vhost_dev *d,
943 struct vhost_iotlb_msg *msg)
944{
945 struct vhost_msg_node *node, *n;
946
947 spin_lock(&d->iotlb_lock);
948
949 list_for_each_entry_safe(node, n, &d->pending_list, node) {
950 struct vhost_iotlb_msg *vq_msg = &node->msg.iotlb;
951 if (msg->iova <= vq_msg->iova &&
952 msg->iova + msg->size - 1 > vq_msg->iova &&
953 vq_msg->type == VHOST_IOTLB_MISS) {
954 vhost_poll_queue(&node->vq->poll);
955 list_del(&node->node);
956 kfree(node);
957 }
958 }
959
960 spin_unlock(&d->iotlb_lock);
961}
962
963static int umem_access_ok(u64 uaddr, u64 size, int access)
964{
965 unsigned long a = uaddr;
966
ec33d031
MT
967 /* Make sure 64 bit math will not overflow. */
968 if (vhost_overflow(uaddr, size))
969 return -EFAULT;
970
6b1e6cc7
JW
971 if ((access & VHOST_ACCESS_RO) &&
972 !access_ok(VERIFY_READ, (void __user *)a, size))
973 return -EFAULT;
974 if ((access & VHOST_ACCESS_WO) &&
975 !access_ok(VERIFY_WRITE, (void __user *)a, size))
976 return -EFAULT;
977 return 0;
978}
979
72952cc0
MT
980static int vhost_process_iotlb_msg(struct vhost_dev *dev,
981 struct vhost_iotlb_msg *msg)
6b1e6cc7
JW
982{
983 int ret = 0;
984
985 vhost_dev_lock_vqs(dev);
986 switch (msg->type) {
987 case VHOST_IOTLB_UPDATE:
988 if (!dev->iotlb) {
989 ret = -EFAULT;
990 break;
991 }
992 if (umem_access_ok(msg->uaddr, msg->size, msg->perm)) {
993 ret = -EFAULT;
994 break;
995 }
f8894913 996 vhost_vq_meta_reset(dev);
6b1e6cc7
JW
997 if (vhost_new_umem_range(dev->iotlb, msg->iova, msg->size,
998 msg->iova + msg->size - 1,
999 msg->uaddr, msg->perm)) {
1000 ret = -ENOMEM;
1001 break;
1002 }
1003 vhost_iotlb_notify_vq(dev, msg);
1004 break;
1005 case VHOST_IOTLB_INVALIDATE:
6f3180af
JW
1006 if (!dev->iotlb) {
1007 ret = -EFAULT;
1008 break;
1009 }
f8894913 1010 vhost_vq_meta_reset(dev);
6b1e6cc7
JW
1011 vhost_del_umem_range(dev->iotlb, msg->iova,
1012 msg->iova + msg->size - 1);
1013 break;
1014 default:
1015 ret = -EINVAL;
1016 break;
1017 }
1018
1019 vhost_dev_unlock_vqs(dev);
1020 return ret;
1021}
1022ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
1023 struct iov_iter *from)
1024{
1025 struct vhost_msg_node node;
1026 unsigned size = sizeof(struct vhost_msg);
1027 size_t ret;
1028 int err;
1029
1030 if (iov_iter_count(from) < size)
1031 return 0;
1032 ret = copy_from_iter(&node.msg, size, from);
1033 if (ret != size)
1034 goto done;
1035
1036 switch (node.msg.type) {
1037 case VHOST_IOTLB_MSG:
1038 err = vhost_process_iotlb_msg(dev, &node.msg.iotlb);
1039 if (err)
1040 ret = err;
1041 break;
1042 default:
1043 ret = -EINVAL;
1044 break;
1045 }
1046
1047done:
1048 return ret;
1049}
1050EXPORT_SYMBOL(vhost_chr_write_iter);
1051
afc9a42b 1052__poll_t vhost_chr_poll(struct file *file, struct vhost_dev *dev,
6b1e6cc7
JW
1053 poll_table *wait)
1054{
afc9a42b 1055 __poll_t mask = 0;
6b1e6cc7
JW
1056
1057 poll_wait(file, &dev->wait, wait);
1058
1059 if (!list_empty(&dev->read_list))
a9a08845 1060 mask |= EPOLLIN | EPOLLRDNORM;
6b1e6cc7
JW
1061
1062 return mask;
1063}
1064EXPORT_SYMBOL(vhost_chr_poll);
1065
1066ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
1067 int noblock)
1068{
1069 DEFINE_WAIT(wait);
1070 struct vhost_msg_node *node;
1071 ssize_t ret = 0;
1072 unsigned size = sizeof(struct vhost_msg);
1073
1074 if (iov_iter_count(to) < size)
1075 return 0;
1076
1077 while (1) {
1078 if (!noblock)
1079 prepare_to_wait(&dev->wait, &wait,
1080 TASK_INTERRUPTIBLE);
1081
1082 node = vhost_dequeue_msg(dev, &dev->read_list);
1083 if (node)
1084 break;
1085 if (noblock) {
1086 ret = -EAGAIN;
1087 break;
1088 }
1089 if (signal_pending(current)) {
1090 ret = -ERESTARTSYS;
1091 break;
1092 }
1093 if (!dev->iotlb) {
1094 ret = -EBADFD;
1095 break;
1096 }
1097
1098 schedule();
1099 }
1100
1101 if (!noblock)
1102 finish_wait(&dev->wait, &wait);
1103
1104 if (node) {
1105 ret = copy_to_iter(&node->msg, size, to);
1106
1107 if (ret != size || node->msg.type != VHOST_IOTLB_MISS) {
1108 kfree(node);
1109 return ret;
1110 }
1111
1112 vhost_enqueue_msg(dev, &dev->pending_list, node);
1113 }
1114
1115 return ret;
1116}
1117EXPORT_SYMBOL_GPL(vhost_chr_read_iter);
1118
1119static int vhost_iotlb_miss(struct vhost_virtqueue *vq, u64 iova, int access)
1120{
1121 struct vhost_dev *dev = vq->dev;
1122 struct vhost_msg_node *node;
1123 struct vhost_iotlb_msg *msg;
1124
1125 node = vhost_new_msg(vq, VHOST_IOTLB_MISS);
1126 if (!node)
1127 return -ENOMEM;
1128
1129 msg = &node->msg.iotlb;
1130 msg->type = VHOST_IOTLB_MISS;
1131 msg->iova = iova;
1132 msg->perm = access;
1133
1134 vhost_enqueue_msg(dev, &dev->read_list, node);
1135
1136 return 0;
bfe2bc51
JW
1137}
1138
ea16c514 1139static int vq_access_ok(struct vhost_virtqueue *vq, unsigned int num,
3a4d5c94
MT
1140 struct vring_desc __user *desc,
1141 struct vring_avail __user *avail,
1142 struct vring_used __user *used)
6b1e6cc7 1143
3a4d5c94 1144{
ea16c514 1145 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
6b1e6cc7 1146
3a4d5c94
MT
1147 return access_ok(VERIFY_READ, desc, num * sizeof *desc) &&
1148 access_ok(VERIFY_READ, avail,
8ea8cf89 1149 sizeof *avail + num * sizeof *avail->ring + s) &&
3a4d5c94 1150 access_ok(VERIFY_WRITE, used,
8ea8cf89 1151 sizeof *used + num * sizeof *used->ring + s);
3a4d5c94
MT
1152}
1153
f8894913
JW
1154static void vhost_vq_meta_update(struct vhost_virtqueue *vq,
1155 const struct vhost_umem_node *node,
1156 int type)
1157{
1158 int access = (type == VHOST_ADDR_USED) ?
1159 VHOST_ACCESS_WO : VHOST_ACCESS_RO;
1160
1161 if (likely(node->perm & access))
1162 vq->meta_iotlb[type] = node;
1163}
1164
6b1e6cc7 1165static int iotlb_access_ok(struct vhost_virtqueue *vq,
f8894913 1166 int access, u64 addr, u64 len, int type)
6b1e6cc7
JW
1167{
1168 const struct vhost_umem_node *node;
1169 struct vhost_umem *umem = vq->iotlb;
ca2c5b33 1170 u64 s = 0, size, orig_addr = addr, last = addr + len - 1;
f8894913
JW
1171
1172 if (vhost_vq_meta_fetch(vq, addr, len, type))
1173 return true;
6b1e6cc7
JW
1174
1175 while (len > s) {
1176 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1177 addr,
ca2c5b33 1178 last);
6b1e6cc7
JW
1179 if (node == NULL || node->start > addr) {
1180 vhost_iotlb_miss(vq, addr, access);
1181 return false;
1182 } else if (!(node->perm & access)) {
1183 /* Report the possible access violation by
1184 * request another translation from userspace.
1185 */
1186 return false;
1187 }
1188
1189 size = node->size - addr + node->start;
f8894913
JW
1190
1191 if (orig_addr == addr && size >= len)
1192 vhost_vq_meta_update(vq, node, type);
1193
6b1e6cc7
JW
1194 s += size;
1195 addr += size;
1196 }
1197
1198 return true;
1199}
1200
1201int vq_iotlb_prefetch(struct vhost_virtqueue *vq)
1202{
1203 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
1204 unsigned int num = vq->num;
1205
1206 if (!vq->iotlb)
1207 return 1;
1208
1209 return iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->desc,
f8894913 1210 num * sizeof(*vq->desc), VHOST_ADDR_DESC) &&
6b1e6cc7
JW
1211 iotlb_access_ok(vq, VHOST_ACCESS_RO, (u64)(uintptr_t)vq->avail,
1212 sizeof *vq->avail +
f8894913
JW
1213 num * sizeof(*vq->avail->ring) + s,
1214 VHOST_ADDR_AVAIL) &&
6b1e6cc7
JW
1215 iotlb_access_ok(vq, VHOST_ACCESS_WO, (u64)(uintptr_t)vq->used,
1216 sizeof *vq->used +
f8894913
JW
1217 num * sizeof(*vq->used->ring) + s,
1218 VHOST_ADDR_USED);
6b1e6cc7
JW
1219}
1220EXPORT_SYMBOL_GPL(vq_iotlb_prefetch);
1221
3a4d5c94
MT
1222/* Can we log writes? */
1223/* Caller should have device mutex but not vq mutex */
1224int vhost_log_access_ok(struct vhost_dev *dev)
1225{
a9709d68 1226 return memory_access_ok(dev, dev->umem, 1);
3a4d5c94 1227}
6ac1afbf 1228EXPORT_SYMBOL_GPL(vhost_log_access_ok);
3a4d5c94
MT
1229
1230/* Verify access for write logging. */
1231/* Caller should have vq mutex and device mutex */
ea16c514 1232static int vq_log_access_ok(struct vhost_virtqueue *vq,
8ea8cf89 1233 void __user *log_base)
3a4d5c94 1234{
ea16c514 1235 size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0;
28457ee6 1236
a9709d68 1237 return vq_memory_access_ok(log_base, vq->umem,
ea16c514 1238 vhost_has_feature(vq, VHOST_F_LOG_ALL)) &&
3a4d5c94
MT
1239 (!vq->log_used || log_access_ok(log_base, vq->log_addr,
1240 sizeof *vq->used +
8ea8cf89 1241 vq->num * sizeof *vq->used->ring + s));
3a4d5c94
MT
1242}
1243
1244/* Can we start vq? */
1245/* Caller should have vq mutex and device mutex */
1246int vhost_vq_access_ok(struct vhost_virtqueue *vq)
1247{
6b1e6cc7
JW
1248 if (vq->iotlb) {
1249 /* When device IOTLB was used, the access validation
1250 * will be validated during prefetching.
1251 */
1252 return 1;
1253 }
ea16c514
MT
1254 return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used) &&
1255 vq_log_access_ok(vq, vq->log_base);
3a4d5c94 1256}
6ac1afbf 1257EXPORT_SYMBOL_GPL(vhost_vq_access_ok);
3a4d5c94 1258
6b1e6cc7
JW
1259static struct vhost_umem *vhost_umem_alloc(void)
1260{
6c5ab651 1261 struct vhost_umem *umem = kvzalloc(sizeof(*umem), GFP_KERNEL);
6b1e6cc7
JW
1262
1263 if (!umem)
1264 return NULL;
1265
f808c13f 1266 umem->umem_tree = RB_ROOT_CACHED;
6b1e6cc7
JW
1267 umem->numem = 0;
1268 INIT_LIST_HEAD(&umem->umem_list);
1269
1270 return umem;
1271}
1272
3a4d5c94
MT
1273static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
1274{
a9709d68
JW
1275 struct vhost_memory mem, *newmem;
1276 struct vhost_memory_region *region;
a9709d68 1277 struct vhost_umem *newumem, *oldumem;
3a4d5c94 1278 unsigned long size = offsetof(struct vhost_memory, regions);
98f9ca0a 1279 int i;
d47effe1 1280
7ad9c9d2
TY
1281 if (copy_from_user(&mem, m, size))
1282 return -EFAULT;
3a4d5c94
MT
1283 if (mem.padding)
1284 return -EOPNOTSUPP;
c9ce42f7 1285 if (mem.nregions > max_mem_regions)
3a4d5c94 1286 return -E2BIG;
6c5ab651 1287 newmem = kvzalloc(size + mem.nregions * sizeof(*m->regions), GFP_KERNEL);
3a4d5c94
MT
1288 if (!newmem)
1289 return -ENOMEM;
1290
1291 memcpy(newmem, &mem, size);
7ad9c9d2
TY
1292 if (copy_from_user(newmem->regions, m->regions,
1293 mem.nregions * sizeof *m->regions)) {
bcfeacab 1294 kvfree(newmem);
7ad9c9d2 1295 return -EFAULT;
3a4d5c94
MT
1296 }
1297
6b1e6cc7 1298 newumem = vhost_umem_alloc();
a9709d68 1299 if (!newumem) {
4de7255f 1300 kvfree(newmem);
a9709d68
JW
1301 return -ENOMEM;
1302 }
1303
a9709d68
JW
1304 for (region = newmem->regions;
1305 region < newmem->regions + mem.nregions;
1306 region++) {
6b1e6cc7
JW
1307 if (vhost_new_umem_range(newumem,
1308 region->guest_phys_addr,
1309 region->memory_size,
1310 region->guest_phys_addr +
1311 region->memory_size - 1,
1312 region->userspace_addr,
1313 VHOST_ACCESS_RW))
a9709d68 1314 goto err;
a02c3789 1315 }
a9709d68
JW
1316
1317 if (!memory_access_ok(d, newumem, 0))
1318 goto err;
1319
1320 oldumem = d->umem;
1321 d->umem = newumem;
98f9ca0a 1322
47283bef 1323 /* All memory accesses are done under some VQ mutex. */
98f9ca0a
MT
1324 for (i = 0; i < d->nvqs; ++i) {
1325 mutex_lock(&d->vqs[i]->mutex);
a9709d68 1326 d->vqs[i]->umem = newumem;
98f9ca0a
MT
1327 mutex_unlock(&d->vqs[i]->mutex);
1328 }
a9709d68
JW
1329
1330 kvfree(newmem);
1331 vhost_umem_clean(oldumem);
3a4d5c94 1332 return 0;
a9709d68
JW
1333
1334err:
1335 vhost_umem_clean(newumem);
1336 kvfree(newmem);
1337 return -EFAULT;
3a4d5c94
MT
1338}
1339
935cdee7 1340long vhost_vring_ioctl(struct vhost_dev *d, int ioctl, void __user *argp)
3a4d5c94 1341{
cecb46f1
AV
1342 struct file *eventfp, *filep = NULL;
1343 bool pollstart = false, pollstop = false;
3a4d5c94
MT
1344 struct eventfd_ctx *ctx = NULL;
1345 u32 __user *idxp = argp;
1346 struct vhost_virtqueue *vq;
1347 struct vhost_vring_state s;
1348 struct vhost_vring_file f;
1349 struct vhost_vring_addr a;
1350 u32 idx;
1351 long r;
1352
1353 r = get_user(idx, idxp);
1354 if (r < 0)
1355 return r;
0f3d9a17 1356 if (idx >= d->nvqs)
3a4d5c94
MT
1357 return -ENOBUFS;
1358
3ab2e420 1359 vq = d->vqs[idx];
3a4d5c94
MT
1360
1361 mutex_lock(&vq->mutex);
1362
1363 switch (ioctl) {
1364 case VHOST_SET_VRING_NUM:
1365 /* Resizing ring with an active backend?
1366 * You don't want to do that. */
1367 if (vq->private_data) {
1368 r = -EBUSY;
1369 break;
1370 }
7ad9c9d2
TY
1371 if (copy_from_user(&s, argp, sizeof s)) {
1372 r = -EFAULT;
3a4d5c94 1373 break;
7ad9c9d2 1374 }
3a4d5c94
MT
1375 if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) {
1376 r = -EINVAL;
1377 break;
1378 }
1379 vq->num = s.num;
1380 break;
1381 case VHOST_SET_VRING_BASE:
1382 /* Moving base with an active backend?
1383 * You don't want to do that. */
1384 if (vq->private_data) {
1385 r = -EBUSY;
1386 break;
1387 }
7ad9c9d2
TY
1388 if (copy_from_user(&s, argp, sizeof s)) {
1389 r = -EFAULT;
3a4d5c94 1390 break;
7ad9c9d2 1391 }
3a4d5c94
MT
1392 if (s.num > 0xffff) {
1393 r = -EINVAL;
1394 break;
1395 }
8d65843c 1396 vq->last_avail_idx = s.num;
3a4d5c94
MT
1397 /* Forget the cached index value. */
1398 vq->avail_idx = vq->last_avail_idx;
1399 break;
1400 case VHOST_GET_VRING_BASE:
1401 s.index = idx;
1402 s.num = vq->last_avail_idx;
7ad9c9d2
TY
1403 if (copy_to_user(argp, &s, sizeof s))
1404 r = -EFAULT;
3a4d5c94
MT
1405 break;
1406 case VHOST_SET_VRING_ADDR:
7ad9c9d2
TY
1407 if (copy_from_user(&a, argp, sizeof a)) {
1408 r = -EFAULT;
3a4d5c94 1409 break;
7ad9c9d2 1410 }
3a4d5c94
MT
1411 if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) {
1412 r = -EOPNOTSUPP;
1413 break;
1414 }
1415 /* For 32bit, verify that the top 32bits of the user
1416 data are set to zero. */
1417 if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr ||
1418 (u64)(unsigned long)a.used_user_addr != a.used_user_addr ||
1419 (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) {
1420 r = -EFAULT;
1421 break;
1422 }
5d9a07b0
MT
1423
1424 /* Make sure it's safe to cast pointers to vring types. */
1425 BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE);
1426 BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE);
1427 if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) ||
1428 (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) ||
d5424838 1429 (a.log_guest_addr & (VRING_USED_ALIGN_SIZE - 1))) {
3a4d5c94
MT
1430 r = -EINVAL;
1431 break;
1432 }
1433
1434 /* We only verify access here if backend is configured.
1435 * If it is not, we don't as size might not have been setup.
1436 * We will verify when backend is configured. */
1437 if (vq->private_data) {
ea16c514 1438 if (!vq_access_ok(vq, vq->num,
3a4d5c94
MT
1439 (void __user *)(unsigned long)a.desc_user_addr,
1440 (void __user *)(unsigned long)a.avail_user_addr,
1441 (void __user *)(unsigned long)a.used_user_addr)) {
1442 r = -EINVAL;
1443 break;
1444 }
1445
1446 /* Also validate log access for used ring if enabled. */
1447 if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) &&
1448 !log_access_ok(vq->log_base, a.log_guest_addr,
1449 sizeof *vq->used +
1450 vq->num * sizeof *vq->used->ring)) {
1451 r = -EINVAL;
1452 break;
1453 }
1454 }
1455
3a4d5c94
MT
1456 vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
1457 vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
1458 vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
1459 vq->log_addr = a.log_guest_addr;
1460 vq->used = (void __user *)(unsigned long)a.used_user_addr;
1461 break;
1462 case VHOST_SET_VRING_KICK:
7ad9c9d2
TY
1463 if (copy_from_user(&f, argp, sizeof f)) {
1464 r = -EFAULT;
3a4d5c94 1465 break;
7ad9c9d2 1466 }
3a4d5c94 1467 eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd);
535297a6
MT
1468 if (IS_ERR(eventfp)) {
1469 r = PTR_ERR(eventfp);
1470 break;
1471 }
3a4d5c94 1472 if (eventfp != vq->kick) {
cecb46f1
AV
1473 pollstop = (filep = vq->kick) != NULL;
1474 pollstart = (vq->kick = eventfp) != NULL;
3a4d5c94
MT
1475 } else
1476 filep = eventfp;
1477 break;
1478 case VHOST_SET_VRING_CALL:
7ad9c9d2
TY
1479 if (copy_from_user(&f, argp, sizeof f)) {
1480 r = -EFAULT;
3a4d5c94 1481 break;
7ad9c9d2 1482 }
e050c7d9
EB
1483 ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd);
1484 if (IS_ERR(ctx)) {
1485 r = PTR_ERR(ctx);
535297a6
MT
1486 break;
1487 }
e050c7d9 1488 swap(ctx, vq->call_ctx);
3a4d5c94
MT
1489 break;
1490 case VHOST_SET_VRING_ERR:
7ad9c9d2
TY
1491 if (copy_from_user(&f, argp, sizeof f)) {
1492 r = -EFAULT;
3a4d5c94 1493 break;
7ad9c9d2 1494 }
09f332a5
EB
1495 ctx = f.fd == -1 ? NULL : eventfd_ctx_fdget(f.fd);
1496 if (IS_ERR(ctx)) {
1497 r = PTR_ERR(ctx);
535297a6
MT
1498 break;
1499 }
09f332a5 1500 swap(ctx, vq->error_ctx);
3a4d5c94 1501 break;
2751c988
GK
1502 case VHOST_SET_VRING_ENDIAN:
1503 r = vhost_set_vring_endian(vq, argp);
1504 break;
1505 case VHOST_GET_VRING_ENDIAN:
1506 r = vhost_get_vring_endian(vq, idx, argp);
1507 break;
03088137
JW
1508 case VHOST_SET_VRING_BUSYLOOP_TIMEOUT:
1509 if (copy_from_user(&s, argp, sizeof(s))) {
1510 r = -EFAULT;
1511 break;
1512 }
1513 vq->busyloop_timeout = s.num;
1514 break;
1515 case VHOST_GET_VRING_BUSYLOOP_TIMEOUT:
1516 s.index = idx;
1517 s.num = vq->busyloop_timeout;
1518 if (copy_to_user(argp, &s, sizeof(s)))
1519 r = -EFAULT;
1520 break;
3a4d5c94
MT
1521 default:
1522 r = -ENOIOCTLCMD;
1523 }
1524
1525 if (pollstop && vq->handle_kick)
1526 vhost_poll_stop(&vq->poll);
1527
e050c7d9 1528 if (!IS_ERR_OR_NULL(ctx))
3a4d5c94
MT
1529 eventfd_ctx_put(ctx);
1530 if (filep)
1531 fput(filep);
1532
1533 if (pollstart && vq->handle_kick)
2b8b328b 1534 r = vhost_poll_start(&vq->poll, vq->kick);
3a4d5c94
MT
1535
1536 mutex_unlock(&vq->mutex);
1537
1538 if (pollstop && vq->handle_kick)
1539 vhost_poll_flush(&vq->poll);
1540 return r;
1541}
6ac1afbf 1542EXPORT_SYMBOL_GPL(vhost_vring_ioctl);
3a4d5c94 1543
6b1e6cc7
JW
1544int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled)
1545{
1546 struct vhost_umem *niotlb, *oiotlb;
1547 int i;
1548
1549 niotlb = vhost_umem_alloc();
1550 if (!niotlb)
1551 return -ENOMEM;
1552
1553 oiotlb = d->iotlb;
1554 d->iotlb = niotlb;
1555
1556 for (i = 0; i < d->nvqs; ++i) {
1557 mutex_lock(&d->vqs[i]->mutex);
1558 d->vqs[i]->iotlb = niotlb;
1559 mutex_unlock(&d->vqs[i]->mutex);
1560 }
1561
1562 vhost_umem_clean(oiotlb);
1563
1564 return 0;
1565}
1566EXPORT_SYMBOL_GPL(vhost_init_device_iotlb);
1567
3a4d5c94 1568/* Caller must have device mutex */
935cdee7 1569long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
3a4d5c94 1570{
d25cc43c 1571 struct eventfd_ctx *ctx;
3a4d5c94
MT
1572 u64 p;
1573 long r;
1574 int i, fd;
1575
1576 /* If you are not the owner, you can become one */
1577 if (ioctl == VHOST_SET_OWNER) {
1578 r = vhost_dev_set_owner(d);
1579 goto done;
1580 }
1581
1582 /* You must be the owner to do anything else */
1583 r = vhost_dev_check_owner(d);
1584 if (r)
1585 goto done;
1586
1587 switch (ioctl) {
1588 case VHOST_SET_MEM_TABLE:
1589 r = vhost_set_memory(d, argp);
1590 break;
1591 case VHOST_SET_LOG_BASE:
7ad9c9d2
TY
1592 if (copy_from_user(&p, argp, sizeof p)) {
1593 r = -EFAULT;
3a4d5c94 1594 break;
7ad9c9d2 1595 }
3a4d5c94
MT
1596 if ((u64)(unsigned long)p != p) {
1597 r = -EFAULT;
1598 break;
1599 }
1600 for (i = 0; i < d->nvqs; ++i) {
1601 struct vhost_virtqueue *vq;
1602 void __user *base = (void __user *)(unsigned long)p;
3ab2e420 1603 vq = d->vqs[i];
3a4d5c94
MT
1604 mutex_lock(&vq->mutex);
1605 /* If ring is inactive, will check when it's enabled. */
ea16c514 1606 if (vq->private_data && !vq_log_access_ok(vq, base))
3a4d5c94
MT
1607 r = -EFAULT;
1608 else
1609 vq->log_base = base;
1610 mutex_unlock(&vq->mutex);
1611 }
1612 break;
1613 case VHOST_SET_LOG_FD:
1614 r = get_user(fd, (int __user *)argp);
1615 if (r < 0)
1616 break;
d25cc43c
EB
1617 ctx = fd == -1 ? NULL : eventfd_ctx_fdget(fd);
1618 if (IS_ERR(ctx)) {
1619 r = PTR_ERR(ctx);
3a4d5c94
MT
1620 break;
1621 }
d25cc43c 1622 swap(ctx, d->log_ctx);
3a4d5c94 1623 for (i = 0; i < d->nvqs; ++i) {
3ab2e420
AH
1624 mutex_lock(&d->vqs[i]->mutex);
1625 d->vqs[i]->log_ctx = d->log_ctx;
1626 mutex_unlock(&d->vqs[i]->mutex);
3a4d5c94
MT
1627 }
1628 if (ctx)
1629 eventfd_ctx_put(ctx);
3a4d5c94
MT
1630 break;
1631 default:
935cdee7 1632 r = -ENOIOCTLCMD;
3a4d5c94
MT
1633 break;
1634 }
1635done:
1636 return r;
1637}
6ac1afbf 1638EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
3a4d5c94 1639
3a4d5c94
MT
1640/* TODO: This is really inefficient. We need something like get_user()
1641 * (instruction directly accesses the data, with an exception table entry
1642 * returning -EFAULT). See Documentation/x86/exception-tables.txt.
1643 */
1644static int set_bit_to_user(int nr, void __user *addr)
1645{
1646 unsigned long log = (unsigned long)addr;
1647 struct page *page;
1648 void *base;
1649 int bit = nr + (log % PAGE_SIZE) * 8;
1650 int r;
d47effe1 1651
3a4d5c94 1652 r = get_user_pages_fast(log, 1, 1, &page);
d6db3f5c 1653 if (r < 0)
3a4d5c94 1654 return r;
d6db3f5c 1655 BUG_ON(r != 1);
c6daa7ff 1656 base = kmap_atomic(page);
3a4d5c94 1657 set_bit(bit, base);
c6daa7ff 1658 kunmap_atomic(base);
3a4d5c94
MT
1659 set_page_dirty_lock(page);
1660 put_page(page);
1661 return 0;
1662}
1663
1664static int log_write(void __user *log_base,
1665 u64 write_address, u64 write_length)
1666{
28831ee6 1667 u64 write_page = write_address / VHOST_PAGE_SIZE;
3a4d5c94 1668 int r;
d47effe1 1669
3a4d5c94
MT
1670 if (!write_length)
1671 return 0;
3bf9be40 1672 write_length += write_address % VHOST_PAGE_SIZE;
3a4d5c94
MT
1673 for (;;) {
1674 u64 base = (u64)(unsigned long)log_base;
28831ee6
MT
1675 u64 log = base + write_page / 8;
1676 int bit = write_page % 8;
3a4d5c94
MT
1677 if ((u64)(unsigned long)log != log)
1678 return -EFAULT;
1679 r = set_bit_to_user(bit, (void __user *)(unsigned long)log);
1680 if (r < 0)
1681 return r;
1682 if (write_length <= VHOST_PAGE_SIZE)
1683 break;
1684 write_length -= VHOST_PAGE_SIZE;
28831ee6 1685 write_page += 1;
3a4d5c94
MT
1686 }
1687 return r;
1688}
1689
1690int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
1691 unsigned int log_num, u64 len)
1692{
1693 int i, r;
1694
1695 /* Make sure data written is seen before log. */
5659338c 1696 smp_wmb();
3a4d5c94
MT
1697 for (i = 0; i < log_num; ++i) {
1698 u64 l = min(log[i].len, len);
1699 r = log_write(vq->log_base, log[i].addr, l);
1700 if (r < 0)
1701 return r;
1702 len -= l;
5786aee8
MT
1703 if (!len) {
1704 if (vq->log_ctx)
1705 eventfd_signal(vq->log_ctx, 1);
3a4d5c94 1706 return 0;
5786aee8 1707 }
3a4d5c94 1708 }
3a4d5c94
MT
1709 /* Length written exceeds what we have stored. This is a bug. */
1710 BUG();
1711 return 0;
1712}
6ac1afbf 1713EXPORT_SYMBOL_GPL(vhost_log_write);
3a4d5c94 1714
2723feaa
JW
1715static int vhost_update_used_flags(struct vhost_virtqueue *vq)
1716{
1717 void __user *used;
bfe2bc51
JW
1718 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->used_flags),
1719 &vq->used->flags) < 0)
2723feaa
JW
1720 return -EFAULT;
1721 if (unlikely(vq->log_used)) {
1722 /* Make sure the flag is seen before log. */
1723 smp_wmb();
1724 /* Log used flag write. */
1725 used = &vq->used->flags;
1726 log_write(vq->log_base, vq->log_addr +
1727 (used - (void __user *)vq->used),
1728 sizeof vq->used->flags);
1729 if (vq->log_ctx)
1730 eventfd_signal(vq->log_ctx, 1);
1731 }
1732 return 0;
1733}
1734
1735static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event)
1736{
bfe2bc51
JW
1737 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->avail_idx),
1738 vhost_avail_event(vq)))
2723feaa
JW
1739 return -EFAULT;
1740 if (unlikely(vq->log_used)) {
1741 void __user *used;
1742 /* Make sure the event is seen before log. */
1743 smp_wmb();
1744 /* Log avail event write */
1745 used = vhost_avail_event(vq);
1746 log_write(vq->log_base, vq->log_addr +
1747 (used - (void __user *)vq->used),
1748 sizeof *vhost_avail_event(vq));
1749 if (vq->log_ctx)
1750 eventfd_signal(vq->log_ctx, 1);
1751 }
1752 return 0;
1753}
1754
80f7d030 1755int vhost_vq_init_access(struct vhost_virtqueue *vq)
2723feaa 1756{
3b1bbe89 1757 __virtio16 last_used_idx;
2723feaa 1758 int r;
e1f33be9
GK
1759 bool is_le = vq->is_le;
1760
cda8bba0 1761 if (!vq->private_data)
2723feaa 1762 return 0;
2751c988
GK
1763
1764 vhost_init_is_le(vq);
2723feaa
JW
1765
1766 r = vhost_update_used_flags(vq);
1767 if (r)
e1f33be9 1768 goto err;
2723feaa 1769 vq->signalled_used_valid = false;
6b1e6cc7
JW
1770 if (!vq->iotlb &&
1771 !access_ok(VERIFY_READ, &vq->used->idx, sizeof vq->used->idx)) {
e1f33be9
GK
1772 r = -EFAULT;
1773 goto err;
1774 }
f8894913 1775 r = vhost_get_used(vq, last_used_idx, &vq->used->idx);
6b1e6cc7
JW
1776 if (r) {
1777 vq_err(vq, "Can't access used idx at %p\n",
1778 &vq->used->idx);
e1f33be9 1779 goto err;
6b1e6cc7 1780 }
3b1bbe89 1781 vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx);
64f7f051 1782 return 0;
6b1e6cc7 1783
e1f33be9
GK
1784err:
1785 vq->is_le = is_le;
1786 return r;
2723feaa 1787}
80f7d030 1788EXPORT_SYMBOL_GPL(vhost_vq_init_access);
2723feaa 1789
47283bef 1790static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len,
6b1e6cc7 1791 struct iovec iov[], int iov_size, int access)
3a4d5c94 1792{
a9709d68 1793 const struct vhost_umem_node *node;
6b1e6cc7
JW
1794 struct vhost_dev *dev = vq->dev;
1795 struct vhost_umem *umem = dev->iotlb ? dev->iotlb : dev->umem;
3a4d5c94
MT
1796 struct iovec *_iov;
1797 u64 s = 0;
1798 int ret = 0;
1799
3a4d5c94
MT
1800 while ((u64)len > s) {
1801 u64 size;
7b3384fc 1802 if (unlikely(ret >= iov_size)) {
3a4d5c94
MT
1803 ret = -ENOBUFS;
1804 break;
1805 }
6b1e6cc7 1806
a9709d68
JW
1807 node = vhost_umem_interval_tree_iter_first(&umem->umem_tree,
1808 addr, addr + len - 1);
1809 if (node == NULL || node->start > addr) {
6b1e6cc7
JW
1810 if (umem != dev->iotlb) {
1811 ret = -EFAULT;
1812 break;
1813 }
1814 ret = -EAGAIN;
1815 break;
1816 } else if (!(node->perm & access)) {
1817 ret = -EPERM;
3a4d5c94
MT
1818 break;
1819 }
6b1e6cc7 1820
3a4d5c94 1821 _iov = iov + ret;
a9709d68 1822 size = node->size - addr + node->start;
bd97120f 1823 _iov->iov_len = min((u64)len - s, size);
a8d3782f 1824 _iov->iov_base = (void __user *)(unsigned long)
a9709d68 1825 (node->userspace_addr + addr - node->start);
3a4d5c94
MT
1826 s += size;
1827 addr += size;
1828 ++ret;
1829 }
1830
6b1e6cc7
JW
1831 if (ret == -EAGAIN)
1832 vhost_iotlb_miss(vq, addr, access);
3a4d5c94
MT
1833 return ret;
1834}
1835
1836/* Each buffer in the virtqueues is actually a chain of descriptors. This
1837 * function returns the next descriptor in the chain,
1838 * or -1U if we're at the end. */
3b1bbe89 1839static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc)
3a4d5c94
MT
1840{
1841 unsigned int next;
1842
1843 /* If this descriptor says it doesn't chain, we're done. */
3b1bbe89 1844 if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT)))
3a4d5c94
MT
1845 return -1U;
1846
1847 /* Check they're not leading us off end of descriptors. */
3a5db0b1 1848 next = vhost16_to_cpu(vq, READ_ONCE(desc->next));
3a4d5c94
MT
1849 return next;
1850}
1851
47283bef 1852static int get_indirect(struct vhost_virtqueue *vq,
7b3384fc
MT
1853 struct iovec iov[], unsigned int iov_size,
1854 unsigned int *out_num, unsigned int *in_num,
1855 struct vhost_log *log, unsigned int *log_num,
1856 struct vring_desc *indirect)
3a4d5c94
MT
1857{
1858 struct vring_desc desc;
1859 unsigned int i = 0, count, found = 0;
3b1bbe89 1860 u32 len = vhost32_to_cpu(vq, indirect->len);
aad9a1ce 1861 struct iov_iter from;
6b1e6cc7 1862 int ret, access;
3a4d5c94
MT
1863
1864 /* Sanity check */
3b1bbe89 1865 if (unlikely(len % sizeof desc)) {
3a4d5c94
MT
1866 vq_err(vq, "Invalid length in indirect descriptor: "
1867 "len 0x%llx not multiple of 0x%zx\n",
3b1bbe89 1868 (unsigned long long)len,
3a4d5c94
MT
1869 sizeof desc);
1870 return -EINVAL;
1871 }
1872
3b1bbe89 1873 ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect,
6b1e6cc7 1874 UIO_MAXIOV, VHOST_ACCESS_RO);
7b3384fc 1875 if (unlikely(ret < 0)) {
6b1e6cc7
JW
1876 if (ret != -EAGAIN)
1877 vq_err(vq, "Translation failure %d in indirect.\n", ret);
3a4d5c94
MT
1878 return ret;
1879 }
aad9a1ce 1880 iov_iter_init(&from, READ, vq->indirect, ret, len);
3a4d5c94
MT
1881
1882 /* We will use the result as an address to read from, so most
1883 * architectures only need a compiler barrier here. */
1884 read_barrier_depends();
1885
3b1bbe89 1886 count = len / sizeof desc;
3a4d5c94
MT
1887 /* Buffers are chained via a 16 bit next field, so
1888 * we can have at most 2^16 of these. */
7b3384fc 1889 if (unlikely(count > USHRT_MAX + 1)) {
3a4d5c94
MT
1890 vq_err(vq, "Indirect buffer length too big: %d\n",
1891 indirect->len);
1892 return -E2BIG;
1893 }
1894
1895 do {
1896 unsigned iov_count = *in_num + *out_num;
7b3384fc 1897 if (unlikely(++found > count)) {
3a4d5c94
MT
1898 vq_err(vq, "Loop detected: last one at %u "
1899 "indirect size %u\n",
1900 i, count);
1901 return -EINVAL;
1902 }
cbbd26b8 1903 if (unlikely(!copy_from_iter_full(&desc, sizeof(desc), &from))) {
3a4d5c94 1904 vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n",
3b1bbe89 1905 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
3a4d5c94
MT
1906 return -EINVAL;
1907 }
3b1bbe89 1908 if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) {
3a4d5c94 1909 vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n",
3b1bbe89 1910 i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc);
3a4d5c94
MT
1911 return -EINVAL;
1912 }
1913
6b1e6cc7
JW
1914 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
1915 access = VHOST_ACCESS_WO;
1916 else
1917 access = VHOST_ACCESS_RO;
1918
3b1bbe89
MT
1919 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
1920 vhost32_to_cpu(vq, desc.len), iov + iov_count,
6b1e6cc7 1921 iov_size - iov_count, access);
7b3384fc 1922 if (unlikely(ret < 0)) {
6b1e6cc7
JW
1923 if (ret != -EAGAIN)
1924 vq_err(vq, "Translation failure %d indirect idx %d\n",
1925 ret, i);
3a4d5c94
MT
1926 return ret;
1927 }
1928 /* If this is an input descriptor, increment that count. */
6b1e6cc7 1929 if (access == VHOST_ACCESS_WO) {
3a4d5c94
MT
1930 *in_num += ret;
1931 if (unlikely(log)) {
3b1bbe89
MT
1932 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
1933 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
3a4d5c94
MT
1934 ++*log_num;
1935 }
1936 } else {
1937 /* If it's an output descriptor, they're all supposed
1938 * to come before any input descriptors. */
7b3384fc 1939 if (unlikely(*in_num)) {
3a4d5c94
MT
1940 vq_err(vq, "Indirect descriptor "
1941 "has out after in: idx %d\n", i);
1942 return -EINVAL;
1943 }
1944 *out_num += ret;
1945 }
3b1bbe89 1946 } while ((i = next_desc(vq, &desc)) != -1);
3a4d5c94
MT
1947 return 0;
1948}
1949
1950/* This looks in the virtqueue and for the first available buffer, and converts
1951 * it to an iovec for convenient access. Since descriptors consist of some
1952 * number of output then some number of input descriptors, it's actually two
1953 * iovecs, but we pack them into one and note how many of each there were.
1954 *
d5675bd2
MT
1955 * This function returns the descriptor number found, or vq->num (which is
1956 * never a valid descriptor number) if none was found. A negative code is
1957 * returned on error. */
47283bef 1958int vhost_get_vq_desc(struct vhost_virtqueue *vq,
d5675bd2
MT
1959 struct iovec iov[], unsigned int iov_size,
1960 unsigned int *out_num, unsigned int *in_num,
1961 struct vhost_log *log, unsigned int *log_num)
3a4d5c94
MT
1962{
1963 struct vring_desc desc;
1964 unsigned int i, head, found = 0;
1965 u16 last_avail_idx;
3b1bbe89
MT
1966 __virtio16 avail_idx;
1967 __virtio16 ring_head;
6b1e6cc7 1968 int ret, access;
3a4d5c94
MT
1969
1970 /* Check it isn't doing very strange things with descriptor numbers. */
1971 last_avail_idx = vq->last_avail_idx;
3a4d5c94 1972
e3b56cdd 1973 if (vq->avail_idx == vq->last_avail_idx) {
f8894913 1974 if (unlikely(vhost_get_avail(vq, avail_idx, &vq->avail->idx))) {
e3b56cdd
JW
1975 vq_err(vq, "Failed to access avail idx at %p\n",
1976 &vq->avail->idx);
1977 return -EFAULT;
1978 }
1979 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
3a4d5c94 1980
e3b56cdd
JW
1981 if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) {
1982 vq_err(vq, "Guest moved used index from %u to %u",
1983 last_avail_idx, vq->avail_idx);
1984 return -EFAULT;
1985 }
1986
1987 /* If there's nothing new since last we looked, return
1988 * invalid.
1989 */
1990 if (vq->avail_idx == last_avail_idx)
1991 return vq->num;
3a4d5c94 1992
e3b56cdd
JW
1993 /* Only get avail ring entries after they have been
1994 * exposed by guest.
1995 */
1996 smp_rmb();
1997 }
3a4d5c94
MT
1998
1999 /* Grab the next descriptor number they're advertising, and increment
2000 * the index we've seen. */
f8894913 2001 if (unlikely(vhost_get_avail(vq, ring_head,
bfe2bc51 2002 &vq->avail->ring[last_avail_idx & (vq->num - 1)]))) {
3a4d5c94
MT
2003 vq_err(vq, "Failed to read head: idx %d address %p\n",
2004 last_avail_idx,
2005 &vq->avail->ring[last_avail_idx % vq->num]);
d5675bd2 2006 return -EFAULT;
3a4d5c94
MT
2007 }
2008
3b1bbe89
MT
2009 head = vhost16_to_cpu(vq, ring_head);
2010
3a4d5c94 2011 /* If their number is silly, that's an error. */
7b3384fc 2012 if (unlikely(head >= vq->num)) {
3a4d5c94
MT
2013 vq_err(vq, "Guest says index %u > %u is available",
2014 head, vq->num);
d5675bd2 2015 return -EINVAL;
3a4d5c94
MT
2016 }
2017
2018 /* When we start there are none of either input nor output. */
2019 *out_num = *in_num = 0;
2020 if (unlikely(log))
2021 *log_num = 0;
2022
2023 i = head;
2024 do {
2025 unsigned iov_count = *in_num + *out_num;
7b3384fc 2026 if (unlikely(i >= vq->num)) {
3a4d5c94
MT
2027 vq_err(vq, "Desc index is %u > %u, head = %u",
2028 i, vq->num, head);
d5675bd2 2029 return -EINVAL;
3a4d5c94 2030 }
7b3384fc 2031 if (unlikely(++found > vq->num)) {
3a4d5c94
MT
2032 vq_err(vq, "Loop detected: last one at %u "
2033 "vq size %u head %u\n",
2034 i, vq->num, head);
d5675bd2 2035 return -EINVAL;
3a4d5c94 2036 }
bfe2bc51
JW
2037 ret = vhost_copy_from_user(vq, &desc, vq->desc + i,
2038 sizeof desc);
7b3384fc 2039 if (unlikely(ret)) {
3a4d5c94
MT
2040 vq_err(vq, "Failed to get descriptor: idx %d addr %p\n",
2041 i, vq->desc + i);
d5675bd2 2042 return -EFAULT;
3a4d5c94 2043 }
3b1bbe89 2044 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) {
47283bef 2045 ret = get_indirect(vq, iov, iov_size,
3a4d5c94
MT
2046 out_num, in_num,
2047 log, log_num, &desc);
7b3384fc 2048 if (unlikely(ret < 0)) {
6b1e6cc7
JW
2049 if (ret != -EAGAIN)
2050 vq_err(vq, "Failure detected "
2051 "in indirect descriptor at idx %d\n", i);
d5675bd2 2052 return ret;
3a4d5c94
MT
2053 }
2054 continue;
2055 }
2056
6b1e6cc7
JW
2057 if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE))
2058 access = VHOST_ACCESS_WO;
2059 else
2060 access = VHOST_ACCESS_RO;
3b1bbe89
MT
2061 ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr),
2062 vhost32_to_cpu(vq, desc.len), iov + iov_count,
6b1e6cc7 2063 iov_size - iov_count, access);
7b3384fc 2064 if (unlikely(ret < 0)) {
6b1e6cc7
JW
2065 if (ret != -EAGAIN)
2066 vq_err(vq, "Translation failure %d descriptor idx %d\n",
2067 ret, i);
d5675bd2 2068 return ret;
3a4d5c94 2069 }
6b1e6cc7 2070 if (access == VHOST_ACCESS_WO) {
3a4d5c94
MT
2071 /* If this is an input descriptor,
2072 * increment that count. */
2073 *in_num += ret;
2074 if (unlikely(log)) {
3b1bbe89
MT
2075 log[*log_num].addr = vhost64_to_cpu(vq, desc.addr);
2076 log[*log_num].len = vhost32_to_cpu(vq, desc.len);
3a4d5c94
MT
2077 ++*log_num;
2078 }
2079 } else {
2080 /* If it's an output descriptor, they're all supposed
2081 * to come before any input descriptors. */
7b3384fc 2082 if (unlikely(*in_num)) {
3a4d5c94
MT
2083 vq_err(vq, "Descriptor has out after in: "
2084 "idx %d\n", i);
d5675bd2 2085 return -EINVAL;
3a4d5c94
MT
2086 }
2087 *out_num += ret;
2088 }
3b1bbe89 2089 } while ((i = next_desc(vq, &desc)) != -1);
3a4d5c94
MT
2090
2091 /* On success, increment avail index. */
2092 vq->last_avail_idx++;
8ea8cf89
MT
2093
2094 /* Assume notifications from guest are disabled at this point,
2095 * if they aren't we would need to update avail_event index. */
2096 BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY));
3a4d5c94
MT
2097 return head;
2098}
6ac1afbf 2099EXPORT_SYMBOL_GPL(vhost_get_vq_desc);
3a4d5c94
MT
2100
2101/* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */
8dd014ad 2102void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n)
3a4d5c94 2103{
8dd014ad 2104 vq->last_avail_idx -= n;
3a4d5c94 2105}
6ac1afbf 2106EXPORT_SYMBOL_GPL(vhost_discard_vq_desc);
3a4d5c94
MT
2107
2108/* After we've used one of their buffers, we tell them about it. We'll then
2109 * want to notify the guest, using eventfd. */
2110int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len)
2111{
3b1bbe89
MT
2112 struct vring_used_elem heads = {
2113 cpu_to_vhost32(vq, head),
2114 cpu_to_vhost32(vq, len)
2115 };
3a4d5c94 2116
c49e4e57 2117 return vhost_add_used_n(vq, &heads, 1);
3a4d5c94 2118}
6ac1afbf 2119EXPORT_SYMBOL_GPL(vhost_add_used);
3a4d5c94 2120
8dd014ad
DS
2121static int __vhost_add_used_n(struct vhost_virtqueue *vq,
2122 struct vring_used_elem *heads,
2123 unsigned count)
2124{
2125 struct vring_used_elem __user *used;
8ea8cf89 2126 u16 old, new;
8dd014ad
DS
2127 int start;
2128
5fba13b5 2129 start = vq->last_used_idx & (vq->num - 1);
8dd014ad 2130 used = vq->used->ring + start;
c49e4e57 2131 if (count == 1) {
bfe2bc51 2132 if (vhost_put_user(vq, heads[0].id, &used->id)) {
c49e4e57
JW
2133 vq_err(vq, "Failed to write used id");
2134 return -EFAULT;
2135 }
bfe2bc51 2136 if (vhost_put_user(vq, heads[0].len, &used->len)) {
c49e4e57
JW
2137 vq_err(vq, "Failed to write used len");
2138 return -EFAULT;
2139 }
bfe2bc51 2140 } else if (vhost_copy_to_user(vq, used, heads, count * sizeof *used)) {
8dd014ad
DS
2141 vq_err(vq, "Failed to write used");
2142 return -EFAULT;
2143 }
2144 if (unlikely(vq->log_used)) {
2145 /* Make sure data is seen before log. */
2146 smp_wmb();
2147 /* Log used ring entry write. */
2148 log_write(vq->log_base,
2149 vq->log_addr +
2150 ((void __user *)used - (void __user *)vq->used),
2151 count * sizeof *used);
2152 }
8ea8cf89
MT
2153 old = vq->last_used_idx;
2154 new = (vq->last_used_idx += count);
2155 /* If the driver never bothers to signal in a very long while,
2156 * used index might wrap around. If that happens, invalidate
2157 * signalled_used index we stored. TODO: make sure driver
2158 * signals at least once in 2^16 and remove this. */
2159 if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old)))
2160 vq->signalled_used_valid = false;
8dd014ad
DS
2161 return 0;
2162}
2163
2164/* After we've used one of their buffers, we tell them about it. We'll then
2165 * want to notify the guest, using eventfd. */
2166int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads,
2167 unsigned count)
2168{
2169 int start, n, r;
2170
5fba13b5 2171 start = vq->last_used_idx & (vq->num - 1);
8dd014ad
DS
2172 n = vq->num - start;
2173 if (n < count) {
2174 r = __vhost_add_used_n(vq, heads, n);
2175 if (r < 0)
2176 return r;
2177 heads += n;
2178 count -= n;
2179 }
2180 r = __vhost_add_used_n(vq, heads, count);
2181
2182 /* Make sure buffer is written before we update index. */
2183 smp_wmb();
bfe2bc51
JW
2184 if (vhost_put_user(vq, cpu_to_vhost16(vq, vq->last_used_idx),
2185 &vq->used->idx)) {
8dd014ad
DS
2186 vq_err(vq, "Failed to increment used idx");
2187 return -EFAULT;
2188 }
2189 if (unlikely(vq->log_used)) {
2190 /* Log used index update. */
2191 log_write(vq->log_base,
2192 vq->log_addr + offsetof(struct vring_used, idx),
2193 sizeof vq->used->idx);
2194 if (vq->log_ctx)
2195 eventfd_signal(vq->log_ctx, 1);
2196 }
2197 return r;
2198}
6ac1afbf 2199EXPORT_SYMBOL_GPL(vhost_add_used_n);
8dd014ad 2200
8ea8cf89 2201static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
3a4d5c94 2202{
3b1bbe89
MT
2203 __u16 old, new;
2204 __virtio16 event;
8ea8cf89 2205 bool v;
8d65843c
JW
2206 /* Flush out used index updates. This is paired
2207 * with the barrier that the Guest executes when enabling
2208 * interrupts. */
2209 smp_mb();
0d499356 2210
ea16c514 2211 if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) &&
8ea8cf89
MT
2212 unlikely(vq->avail_idx == vq->last_avail_idx))
2213 return true;
2214
ea16c514 2215 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
3b1bbe89 2216 __virtio16 flags;
f8894913 2217 if (vhost_get_avail(vq, flags, &vq->avail->flags)) {
8ea8cf89
MT
2218 vq_err(vq, "Failed to get flags");
2219 return true;
2220 }
3b1bbe89 2221 return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT));
3a4d5c94 2222 }
8ea8cf89
MT
2223 old = vq->signalled_used;
2224 v = vq->signalled_used_valid;
2225 new = vq->signalled_used = vq->last_used_idx;
2226 vq->signalled_used_valid = true;
3a4d5c94 2227
8ea8cf89
MT
2228 if (unlikely(!v))
2229 return true;
3a4d5c94 2230
f8894913 2231 if (vhost_get_avail(vq, event, vhost_used_event(vq))) {
8ea8cf89
MT
2232 vq_err(vq, "Failed to get used event idx");
2233 return true;
2234 }
8d65843c 2235 return vring_need_event(vhost16_to_cpu(vq, event), new, old);
8ea8cf89
MT
2236}
2237
2238/* This actually signals the guest, using eventfd. */
2239void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2240{
3a4d5c94 2241 /* Signal the Guest tell them we used something up. */
8ea8cf89 2242 if (vq->call_ctx && vhost_notify(dev, vq))
3a4d5c94
MT
2243 eventfd_signal(vq->call_ctx, 1);
2244}
6ac1afbf 2245EXPORT_SYMBOL_GPL(vhost_signal);
3a4d5c94
MT
2246
2247/* And here's the combo meal deal. Supersize me! */
2248void vhost_add_used_and_signal(struct vhost_dev *dev,
2249 struct vhost_virtqueue *vq,
2250 unsigned int head, int len)
2251{
2252 vhost_add_used(vq, head, len);
2253 vhost_signal(dev, vq);
2254}
6ac1afbf 2255EXPORT_SYMBOL_GPL(vhost_add_used_and_signal);
3a4d5c94 2256
8dd014ad
DS
2257/* multi-buffer version of vhost_add_used_and_signal */
2258void vhost_add_used_and_signal_n(struct vhost_dev *dev,
2259 struct vhost_virtqueue *vq,
2260 struct vring_used_elem *heads, unsigned count)
2261{
2262 vhost_add_used_n(vq, heads, count);
2263 vhost_signal(dev, vq);
2264}
6ac1afbf 2265EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n);
8dd014ad 2266
d4a60603
JW
2267/* return true if we're sure that avaiable ring is empty */
2268bool vhost_vq_avail_empty(struct vhost_dev *dev, struct vhost_virtqueue *vq)
2269{
2270 __virtio16 avail_idx;
2271 int r;
2272
275bf960
JW
2273 if (vq->avail_idx != vq->last_avail_idx)
2274 return false;
2275
f8894913 2276 r = vhost_get_avail(vq, avail_idx, &vq->avail->idx);
275bf960 2277 if (unlikely(r))
d4a60603 2278 return false;
275bf960 2279 vq->avail_idx = vhost16_to_cpu(vq, avail_idx);
d4a60603 2280
275bf960 2281 return vq->avail_idx == vq->last_avail_idx;
d4a60603
JW
2282}
2283EXPORT_SYMBOL_GPL(vhost_vq_avail_empty);
2284
3a4d5c94 2285/* OK, now we need to know about added descriptors. */
8ea8cf89 2286bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
3a4d5c94 2287{
3b1bbe89 2288 __virtio16 avail_idx;
3a4d5c94 2289 int r;
d47effe1 2290
3a4d5c94
MT
2291 if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY))
2292 return false;
2293 vq->used_flags &= ~VRING_USED_F_NO_NOTIFY;
ea16c514 2294 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
2723feaa 2295 r = vhost_update_used_flags(vq);
8ea8cf89
MT
2296 if (r) {
2297 vq_err(vq, "Failed to enable notification at %p: %d\n",
2298 &vq->used->flags, r);
2299 return false;
2300 }
2301 } else {
2723feaa 2302 r = vhost_update_avail_event(vq, vq->avail_idx);
8ea8cf89
MT
2303 if (r) {
2304 vq_err(vq, "Failed to update avail event index at %p: %d\n",
2305 vhost_avail_event(vq), r);
2306 return false;
2307 }
2308 }
3a4d5c94
MT
2309 /* They could have slipped one in as we were doing that: make
2310 * sure it's written, then check again. */
5659338c 2311 smp_mb();
f8894913 2312 r = vhost_get_avail(vq, avail_idx, &vq->avail->idx);
3a4d5c94
MT
2313 if (r) {
2314 vq_err(vq, "Failed to check avail idx at %p: %d\n",
2315 &vq->avail->idx, r);
2316 return false;
2317 }
2318
3b1bbe89 2319 return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx;
3a4d5c94 2320}
6ac1afbf 2321EXPORT_SYMBOL_GPL(vhost_enable_notify);
3a4d5c94
MT
2322
2323/* We don't need to be notified again. */
8ea8cf89 2324void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq)
3a4d5c94
MT
2325{
2326 int r;
d47effe1 2327
3a4d5c94
MT
2328 if (vq->used_flags & VRING_USED_F_NO_NOTIFY)
2329 return;
2330 vq->used_flags |= VRING_USED_F_NO_NOTIFY;
ea16c514 2331 if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) {
2723feaa 2332 r = vhost_update_used_flags(vq);
8ea8cf89
MT
2333 if (r)
2334 vq_err(vq, "Failed to enable notification at %p: %d\n",
2335 &vq->used->flags, r);
2336 }
3a4d5c94 2337}
6ac1afbf
AH
2338EXPORT_SYMBOL_GPL(vhost_disable_notify);
2339
6b1e6cc7
JW
2340/* Create a new message. */
2341struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
2342{
2343 struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
2344 if (!node)
2345 return NULL;
2346 node->vq = vq;
2347 node->msg.type = type;
2348 return node;
2349}
2350EXPORT_SYMBOL_GPL(vhost_new_msg);
2351
2352void vhost_enqueue_msg(struct vhost_dev *dev, struct list_head *head,
2353 struct vhost_msg_node *node)
2354{
2355 spin_lock(&dev->iotlb_lock);
2356 list_add_tail(&node->node, head);
2357 spin_unlock(&dev->iotlb_lock);
2358
a9a08845 2359 wake_up_interruptible_poll(&dev->wait, EPOLLIN | EPOLLRDNORM);
6b1e6cc7
JW
2360}
2361EXPORT_SYMBOL_GPL(vhost_enqueue_msg);
2362
2363struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
2364 struct list_head *head)
2365{
2366 struct vhost_msg_node *node = NULL;
2367
2368 spin_lock(&dev->iotlb_lock);
2369 if (!list_empty(head)) {
2370 node = list_first_entry(head, struct vhost_msg_node,
2371 node);
2372 list_del(&node->node);
2373 }
2374 spin_unlock(&dev->iotlb_lock);
2375
2376 return node;
2377}
2378EXPORT_SYMBOL_GPL(vhost_dequeue_msg);
2379
2380
6ac1afbf
AH
2381static int __init vhost_init(void)
2382{
2383 return 0;
2384}
2385
2386static void __exit vhost_exit(void)
2387{
2388}
2389
2390module_init(vhost_init);
2391module_exit(vhost_exit);
2392
2393MODULE_VERSION("0.0.1");
2394MODULE_LICENSE("GPL v2");
2395MODULE_AUTHOR("Michael S. Tsirkin");
2396MODULE_DESCRIPTION("Host kernel accelerator for virtio");