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