Michael S. Tsirkin | 3a4d5c94e | 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 | 3a4d5c94e | 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 | 3a4d5c94e | 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 | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 19 | #include <linux/miscdevice.h> |
| 20 | #include <linux/mutex.h> |
Michael S. Tsirkin | 3a4d5c94e | 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> |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 30 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 31 | #include "vhost.h" |
| 32 | |
Igor Mammedov | c9ce42f | 2015-07-02 15:08:11 +0200 | [diff] [blame] | 33 | static ushort max_mem_regions = 64; |
| 34 | module_param(max_mem_regions, ushort, 0444); |
| 35 | MODULE_PARM_DESC(max_mem_regions, |
| 36 | "Maximum number of memory regions in memory map. (default: 64)"); |
| 37 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 38 | enum { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 39 | VHOST_MEMORY_F_LOG = 0x1, |
| 40 | }; |
| 41 | |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 42 | #define vhost_used_event(vq) ((__virtio16 __user *)&vq->avail->ring[vq->num]) |
| 43 | #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] | 44 | |
Greg Kurz | 2751c98 | 2015-04-24 14:27:24 +0200 | [diff] [blame] | 45 | #ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY |
| 46 | static void vhost_vq_reset_user_be(struct vhost_virtqueue *vq) |
| 47 | { |
| 48 | vq->user_be = !virtio_legacy_is_little_endian(); |
| 49 | } |
| 50 | |
| 51 | static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp) |
| 52 | { |
| 53 | struct vhost_vring_state s; |
| 54 | |
| 55 | if (vq->private_data) |
| 56 | return -EBUSY; |
| 57 | |
| 58 | if (copy_from_user(&s, argp, sizeof(s))) |
| 59 | return -EFAULT; |
| 60 | |
| 61 | if (s.num != VHOST_VRING_LITTLE_ENDIAN && |
| 62 | s.num != VHOST_VRING_BIG_ENDIAN) |
| 63 | return -EINVAL; |
| 64 | |
| 65 | vq->user_be = s.num; |
| 66 | |
| 67 | return 0; |
| 68 | } |
| 69 | |
| 70 | static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx, |
| 71 | int __user *argp) |
| 72 | { |
| 73 | struct vhost_vring_state s = { |
| 74 | .index = idx, |
| 75 | .num = vq->user_be |
| 76 | }; |
| 77 | |
| 78 | if (copy_to_user(argp, &s, sizeof(s))) |
| 79 | return -EFAULT; |
| 80 | |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | static void vhost_init_is_le(struct vhost_virtqueue *vq) |
| 85 | { |
| 86 | /* Note for legacy virtio: user_be is initialized at reset time |
| 87 | * according to the host endianness. If userspace does not set an |
| 88 | * explicit endianness, the default behavior is native endian, as |
| 89 | * expected by legacy virtio. |
| 90 | */ |
| 91 | vq->is_le = vhost_has_feature(vq, VIRTIO_F_VERSION_1) || !vq->user_be; |
| 92 | } |
| 93 | #else |
| 94 | static void vhost_vq_reset_user_be(struct vhost_virtqueue *vq) |
| 95 | { |
| 96 | } |
| 97 | |
| 98 | static long vhost_set_vring_endian(struct vhost_virtqueue *vq, int __user *argp) |
| 99 | { |
| 100 | return -ENOIOCTLCMD; |
| 101 | } |
| 102 | |
| 103 | static long vhost_get_vring_endian(struct vhost_virtqueue *vq, u32 idx, |
| 104 | int __user *argp) |
| 105 | { |
| 106 | return -ENOIOCTLCMD; |
| 107 | } |
| 108 | |
| 109 | static void vhost_init_is_le(struct vhost_virtqueue *vq) |
| 110 | { |
| 111 | if (vhost_has_feature(vq, VIRTIO_F_VERSION_1)) |
| 112 | vq->is_le = true; |
| 113 | } |
| 114 | #endif /* CONFIG_VHOST_CROSS_ENDIAN_LEGACY */ |
| 115 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 116 | static void vhost_poll_func(struct file *file, wait_queue_head_t *wqh, |
| 117 | poll_table *pt) |
| 118 | { |
| 119 | struct vhost_poll *poll; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 120 | |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 121 | poll = container_of(pt, struct vhost_poll, table); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 122 | poll->wqh = wqh; |
| 123 | add_wait_queue(wqh, &poll->wait); |
| 124 | } |
| 125 | |
| 126 | static int vhost_poll_wakeup(wait_queue_t *wait, unsigned mode, int sync, |
| 127 | void *key) |
| 128 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 129 | struct vhost_poll *poll = container_of(wait, struct vhost_poll, wait); |
| 130 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 131 | if (!((unsigned long)key & poll->mask)) |
| 132 | return 0; |
| 133 | |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 134 | vhost_poll_queue(poll); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 135 | return 0; |
| 136 | } |
| 137 | |
Stefan Hajnoczi | 163049a | 2012-07-21 06:55:37 +0000 | [diff] [blame] | 138 | void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 139 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 140 | INIT_LIST_HEAD(&work->node); |
| 141 | work->fn = fn; |
| 142 | init_waitqueue_head(&work->done); |
| 143 | work->flushing = 0; |
| 144 | work->queue_seq = work->done_seq = 0; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 145 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 146 | EXPORT_SYMBOL_GPL(vhost_work_init); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 147 | |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 148 | /* Init poll structure */ |
| 149 | void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn, |
| 150 | unsigned long mask, struct vhost_dev *dev) |
| 151 | { |
| 152 | init_waitqueue_func_entry(&poll->wait, vhost_poll_wakeup); |
| 153 | init_poll_funcptr(&poll->table, vhost_poll_func); |
| 154 | poll->mask = mask; |
| 155 | poll->dev = dev; |
Jason Wang | 2b8b328 | 2013-01-28 01:05:18 +0000 | [diff] [blame] | 156 | poll->wqh = NULL; |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 157 | |
| 158 | vhost_work_init(&poll->work, fn); |
| 159 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 160 | EXPORT_SYMBOL_GPL(vhost_poll_init); |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 161 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 162 | /* Start polling a file. We add ourselves to file's wait queue. The caller must |
| 163 | * 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] | 164 | int vhost_poll_start(struct vhost_poll *poll, struct file *file) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 165 | { |
| 166 | unsigned long mask; |
Jason Wang | 2b8b328 | 2013-01-28 01:05:18 +0000 | [diff] [blame] | 167 | int ret = 0; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 168 | |
Jason Wang | 70181d51 | 2013-04-10 20:50:48 +0000 | [diff] [blame] | 169 | if (poll->wqh) |
| 170 | return 0; |
| 171 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 172 | mask = file->f_op->poll(file, &poll->table); |
| 173 | if (mask) |
| 174 | vhost_poll_wakeup(&poll->wait, 0, 0, (void *)mask); |
Jason Wang | 2b8b328 | 2013-01-28 01:05:18 +0000 | [diff] [blame] | 175 | if (mask & POLLERR) { |
| 176 | if (poll->wqh) |
| 177 | remove_wait_queue(poll->wqh, &poll->wait); |
| 178 | ret = -EINVAL; |
| 179 | } |
| 180 | |
| 181 | return ret; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 182 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 183 | EXPORT_SYMBOL_GPL(vhost_poll_start); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 184 | |
| 185 | /* Stop polling a file. After this function returns, it becomes safe to drop the |
| 186 | * file reference. You must also flush afterwards. */ |
| 187 | void vhost_poll_stop(struct vhost_poll *poll) |
| 188 | { |
Jason Wang | 2b8b328 | 2013-01-28 01:05:18 +0000 | [diff] [blame] | 189 | if (poll->wqh) { |
| 190 | remove_wait_queue(poll->wqh, &poll->wait); |
| 191 | poll->wqh = NULL; |
| 192 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 193 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 194 | EXPORT_SYMBOL_GPL(vhost_poll_stop); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 195 | |
Michael S. Tsirkin | 0174b0c | 2011-01-10 10:03:20 +0200 | [diff] [blame] | 196 | static bool vhost_work_seq_done(struct vhost_dev *dev, struct vhost_work *work, |
| 197 | unsigned seq) |
| 198 | { |
| 199 | int left; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 200 | |
Michael S. Tsirkin | 0174b0c | 2011-01-10 10:03:20 +0200 | [diff] [blame] | 201 | spin_lock_irq(&dev->work_lock); |
| 202 | left = seq - work->done_seq; |
| 203 | spin_unlock_irq(&dev->work_lock); |
| 204 | return left <= 0; |
| 205 | } |
| 206 | |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 207 | void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 208 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 209 | unsigned seq; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 210 | int flushing; |
| 211 | |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 212 | spin_lock_irq(&dev->work_lock); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 213 | seq = work->queue_seq; |
| 214 | work->flushing++; |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 215 | spin_unlock_irq(&dev->work_lock); |
Michael S. Tsirkin | 0174b0c | 2011-01-10 10:03:20 +0200 | [diff] [blame] | 216 | wait_event(work->done, vhost_work_seq_done(dev, work, seq)); |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 217 | spin_lock_irq(&dev->work_lock); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 218 | flushing = --work->flushing; |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 219 | spin_unlock_irq(&dev->work_lock); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 220 | BUG_ON(flushing < 0); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 221 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 222 | EXPORT_SYMBOL_GPL(vhost_work_flush); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 223 | |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 224 | /* Flush any work that has been scheduled. When calling this, don't hold any |
| 225 | * locks that are also used by the callback. */ |
| 226 | void vhost_poll_flush(struct vhost_poll *poll) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 227 | { |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 228 | vhost_work_flush(poll->dev, &poll->work); |
| 229 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 230 | EXPORT_SYMBOL_GPL(vhost_poll_flush); |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 231 | |
Stefan Hajnoczi | 163049a | 2012-07-21 06:55:37 +0000 | [diff] [blame] | 232 | 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] | 233 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 234 | unsigned long flags; |
| 235 | |
| 236 | spin_lock_irqsave(&dev->work_lock, flags); |
| 237 | if (list_empty(&work->node)) { |
| 238 | list_add_tail(&work->node, &dev->work_list); |
| 239 | work->queue_seq++; |
Qin Chuanyu | ac9fde2 | 2013-06-07 21:50:16 +0800 | [diff] [blame] | 240 | spin_unlock_irqrestore(&dev->work_lock, flags); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 241 | wake_up_process(dev->worker); |
Qin Chuanyu | ac9fde2 | 2013-06-07 21:50:16 +0800 | [diff] [blame] | 242 | } else { |
| 243 | spin_unlock_irqrestore(&dev->work_lock, flags); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 244 | } |
Michael S. Tsirkin | 3a4d5c94e | 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_queue); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 247 | |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 248 | void vhost_poll_queue(struct vhost_poll *poll) |
| 249 | { |
| 250 | vhost_work_queue(poll->dev, &poll->work); |
| 251 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 252 | EXPORT_SYMBOL_GPL(vhost_poll_queue); |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 253 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 254 | static void vhost_vq_reset(struct vhost_dev *dev, |
| 255 | struct vhost_virtqueue *vq) |
| 256 | { |
| 257 | vq->num = 1; |
| 258 | vq->desc = NULL; |
| 259 | vq->avail = NULL; |
| 260 | vq->used = NULL; |
| 261 | vq->last_avail_idx = 0; |
| 262 | vq->avail_idx = 0; |
| 263 | vq->last_used_idx = 0; |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 264 | vq->signalled_used = 0; |
| 265 | vq->signalled_used_valid = false; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 266 | vq->used_flags = 0; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 267 | vq->log_used = false; |
| 268 | vq->log_addr = -1ull; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 269 | vq->private_data = NULL; |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 270 | vq->acked_features = 0; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 271 | vq->log_base = NULL; |
| 272 | vq->error_ctx = NULL; |
| 273 | vq->error = NULL; |
| 274 | vq->kick = NULL; |
| 275 | vq->call_ctx = NULL; |
| 276 | vq->call = NULL; |
Michael S. Tsirkin | 73a99f0 | 2010-02-23 11:23:45 +0200 | [diff] [blame] | 277 | vq->log_ctx = NULL; |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 278 | vq->memory = NULL; |
Greg Kurz | 2751c98 | 2015-04-24 14:27:24 +0200 | [diff] [blame] | 279 | vq->is_le = virtio_legacy_is_little_endian(); |
| 280 | vhost_vq_reset_user_be(vq); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 283 | static int vhost_worker(void *data) |
| 284 | { |
| 285 | struct vhost_dev *dev = data; |
| 286 | struct vhost_work *work = NULL; |
| 287 | unsigned uninitialized_var(seq); |
Jens Freimann | d7ffde3 | 2012-06-26 00:59:58 +0000 | [diff] [blame] | 288 | mm_segment_t oldfs = get_fs(); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 289 | |
Jens Freimann | d7ffde3 | 2012-06-26 00:59:58 +0000 | [diff] [blame] | 290 | set_fs(USER_DS); |
Michael S. Tsirkin | 64e1c80 | 2010-10-06 15:34:45 +0200 | [diff] [blame] | 291 | use_mm(dev->mm); |
| 292 | |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 293 | for (;;) { |
| 294 | /* mb paired w/ kthread_stop */ |
| 295 | set_current_state(TASK_INTERRUPTIBLE); |
| 296 | |
| 297 | spin_lock_irq(&dev->work_lock); |
| 298 | if (work) { |
| 299 | work->done_seq = seq; |
| 300 | if (work->flushing) |
| 301 | wake_up_all(&work->done); |
| 302 | } |
| 303 | |
| 304 | if (kthread_should_stop()) { |
| 305 | spin_unlock_irq(&dev->work_lock); |
| 306 | __set_current_state(TASK_RUNNING); |
Michael S. Tsirkin | 64e1c80 | 2010-10-06 15:34:45 +0200 | [diff] [blame] | 307 | break; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 308 | } |
| 309 | if (!list_empty(&dev->work_list)) { |
| 310 | work = list_first_entry(&dev->work_list, |
| 311 | struct vhost_work, node); |
| 312 | list_del_init(&work->node); |
| 313 | seq = work->queue_seq; |
| 314 | } else |
| 315 | work = NULL; |
| 316 | spin_unlock_irq(&dev->work_lock); |
| 317 | |
| 318 | if (work) { |
| 319 | __set_current_state(TASK_RUNNING); |
| 320 | work->fn(work); |
Nadav Har'El | d550dda | 2012-02-27 15:07:29 +0200 | [diff] [blame] | 321 | if (need_resched()) |
| 322 | schedule(); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 323 | } else |
| 324 | schedule(); |
| 325 | |
| 326 | } |
Michael S. Tsirkin | 64e1c80 | 2010-10-06 15:34:45 +0200 | [diff] [blame] | 327 | unuse_mm(dev->mm); |
Jens Freimann | d7ffde3 | 2012-06-26 00:59:58 +0000 | [diff] [blame] | 328 | set_fs(oldfs); |
Michael S. Tsirkin | 64e1c80 | 2010-10-06 15:34:45 +0200 | [diff] [blame] | 329 | return 0; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 330 | } |
| 331 | |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 332 | static void vhost_vq_free_iovecs(struct vhost_virtqueue *vq) |
| 333 | { |
| 334 | kfree(vq->indirect); |
| 335 | vq->indirect = NULL; |
| 336 | kfree(vq->log); |
| 337 | vq->log = NULL; |
| 338 | kfree(vq->heads); |
| 339 | vq->heads = NULL; |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 342 | /* Helper to allocate iovec buffers for all vqs. */ |
| 343 | static long vhost_dev_alloc_iovecs(struct vhost_dev *dev) |
| 344 | { |
Asias He | 6d5e6aa | 2013-05-06 16:38:23 +0800 | [diff] [blame] | 345 | struct vhost_virtqueue *vq; |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 346 | int i; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 347 | |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 348 | for (i = 0; i < dev->nvqs; ++i) { |
Asias He | 6d5e6aa | 2013-05-06 16:38:23 +0800 | [diff] [blame] | 349 | vq = dev->vqs[i]; |
| 350 | vq->indirect = kmalloc(sizeof *vq->indirect * UIO_MAXIOV, |
| 351 | GFP_KERNEL); |
| 352 | vq->log = kmalloc(sizeof *vq->log * UIO_MAXIOV, GFP_KERNEL); |
| 353 | vq->heads = kmalloc(sizeof *vq->heads * UIO_MAXIOV, GFP_KERNEL); |
| 354 | if (!vq->indirect || !vq->log || !vq->heads) |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 355 | goto err_nomem; |
| 356 | } |
| 357 | return 0; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 358 | |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 359 | err_nomem: |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 360 | for (; i >= 0; --i) |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 361 | vhost_vq_free_iovecs(dev->vqs[i]); |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 362 | return -ENOMEM; |
| 363 | } |
| 364 | |
| 365 | static void vhost_dev_free_iovecs(struct vhost_dev *dev) |
| 366 | { |
| 367 | int i; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 368 | |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 369 | for (i = 0; i < dev->nvqs; ++i) |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 370 | vhost_vq_free_iovecs(dev->vqs[i]); |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 371 | } |
| 372 | |
Zhi Yong Wu | 59566b6e | 2013-12-07 04:13:03 +0800 | [diff] [blame] | 373 | void vhost_dev_init(struct vhost_dev *dev, |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 374 | struct vhost_virtqueue **vqs, int nvqs) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 375 | { |
Asias He | 6d5e6aa | 2013-05-06 16:38:23 +0800 | [diff] [blame] | 376 | struct vhost_virtqueue *vq; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 377 | int i; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 378 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 379 | dev->vqs = vqs; |
| 380 | dev->nvqs = nvqs; |
| 381 | mutex_init(&dev->mutex); |
| 382 | dev->log_ctx = NULL; |
| 383 | dev->log_file = NULL; |
| 384 | dev->memory = NULL; |
| 385 | dev->mm = NULL; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 386 | spin_lock_init(&dev->work_lock); |
| 387 | INIT_LIST_HEAD(&dev->work_list); |
| 388 | dev->worker = NULL; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 389 | |
| 390 | for (i = 0; i < dev->nvqs; ++i) { |
Asias He | 6d5e6aa | 2013-05-06 16:38:23 +0800 | [diff] [blame] | 391 | vq = dev->vqs[i]; |
| 392 | vq->log = NULL; |
| 393 | vq->indirect = NULL; |
| 394 | vq->heads = NULL; |
| 395 | vq->dev = dev; |
| 396 | mutex_init(&vq->mutex); |
| 397 | vhost_vq_reset(dev, vq); |
| 398 | if (vq->handle_kick) |
| 399 | vhost_poll_init(&vq->poll, vq->handle_kick, |
| 400 | POLLIN, dev); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 401 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 402 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 403 | EXPORT_SYMBOL_GPL(vhost_dev_init); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 404 | |
| 405 | /* Caller should have device mutex */ |
| 406 | long vhost_dev_check_owner(struct vhost_dev *dev) |
| 407 | { |
| 408 | /* Are you the owner? If not, I don't think you mean to do that */ |
| 409 | return dev->mm == current->mm ? 0 : -EPERM; |
| 410 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 411 | EXPORT_SYMBOL_GPL(vhost_dev_check_owner); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 412 | |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 413 | struct vhost_attach_cgroups_struct { |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 414 | struct vhost_work work; |
| 415 | struct task_struct *owner; |
| 416 | int ret; |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 417 | }; |
| 418 | |
| 419 | static void vhost_attach_cgroups_work(struct vhost_work *work) |
| 420 | { |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 421 | struct vhost_attach_cgroups_struct *s; |
| 422 | |
| 423 | s = container_of(work, struct vhost_attach_cgroups_struct, work); |
| 424 | s->ret = cgroup_attach_task_all(s->owner, current); |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | static int vhost_attach_cgroups(struct vhost_dev *dev) |
| 428 | { |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 429 | struct vhost_attach_cgroups_struct attach; |
| 430 | |
| 431 | attach.owner = current; |
| 432 | vhost_work_init(&attach.work, vhost_attach_cgroups_work); |
| 433 | vhost_work_queue(dev, &attach.work); |
| 434 | vhost_work_flush(dev, &attach.work); |
| 435 | return attach.ret; |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 436 | } |
| 437 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 438 | /* Caller should have device mutex */ |
Michael S. Tsirkin | 05c0535 | 2013-06-06 15:20:39 +0300 | [diff] [blame] | 439 | bool vhost_dev_has_owner(struct vhost_dev *dev) |
| 440 | { |
| 441 | return dev->mm; |
| 442 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 443 | EXPORT_SYMBOL_GPL(vhost_dev_has_owner); |
Michael S. Tsirkin | 05c0535 | 2013-06-06 15:20:39 +0300 | [diff] [blame] | 444 | |
| 445 | /* Caller should have device mutex */ |
Asias He | 54db63c | 2013-05-06 11:15:59 +0800 | [diff] [blame] | 446 | long vhost_dev_set_owner(struct vhost_dev *dev) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 447 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 448 | struct task_struct *worker; |
| 449 | int err; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 450 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 451 | /* Is there an owner already? */ |
Michael S. Tsirkin | 05c0535 | 2013-06-06 15:20:39 +0300 | [diff] [blame] | 452 | if (vhost_dev_has_owner(dev)) { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 453 | err = -EBUSY; |
| 454 | goto err_mm; |
| 455 | } |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 456 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 457 | /* No owner, become one */ |
| 458 | dev->mm = get_task_mm(current); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 459 | worker = kthread_create(vhost_worker, dev, "vhost-%d", current->pid); |
| 460 | if (IS_ERR(worker)) { |
| 461 | err = PTR_ERR(worker); |
| 462 | goto err_worker; |
| 463 | } |
| 464 | |
| 465 | dev->worker = worker; |
Michael S. Tsirkin | 87d6a41 | 2010-09-02 14:05:30 +0300 | [diff] [blame] | 466 | wake_up_process(worker); /* avoid contributing to loadavg */ |
| 467 | |
| 468 | err = vhost_attach_cgroups(dev); |
Michael S. Tsirkin | 9e3d195 | 2010-07-27 22:56:50 +0300 | [diff] [blame] | 469 | if (err) |
| 470 | goto err_cgroup; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 471 | |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 472 | err = vhost_dev_alloc_iovecs(dev); |
| 473 | if (err) |
| 474 | goto err_cgroup; |
| 475 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 476 | return 0; |
Michael S. Tsirkin | 9e3d195 | 2010-07-27 22:56:50 +0300 | [diff] [blame] | 477 | err_cgroup: |
| 478 | kthread_stop(worker); |
Michael S. Tsirkin | 615cc22 | 2010-09-02 14:16:36 +0300 | [diff] [blame] | 479 | dev->worker = NULL; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 480 | err_worker: |
| 481 | if (dev->mm) |
| 482 | mmput(dev->mm); |
| 483 | dev->mm = NULL; |
| 484 | err_mm: |
| 485 | return err; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 486 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 487 | EXPORT_SYMBOL_GPL(vhost_dev_set_owner); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 488 | |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 489 | struct vhost_memory *vhost_dev_reset_owner_prepare(void) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 490 | { |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 491 | return kmalloc(offsetof(struct vhost_memory, regions), GFP_KERNEL); |
| 492 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 493 | EXPORT_SYMBOL_GPL(vhost_dev_reset_owner_prepare); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 494 | |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 495 | /* Caller should have device mutex */ |
| 496 | void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_memory *memory) |
| 497 | { |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 498 | int i; |
| 499 | |
Michael S. Tsirkin | ea5d404 | 2011-11-27 19:05:58 +0200 | [diff] [blame] | 500 | vhost_dev_cleanup(dev, true); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 501 | |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 502 | /* Restore memory to default empty mapping. */ |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 503 | memory->nregions = 0; |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 504 | dev->memory = memory; |
| 505 | /* We don't need VQ locks below since vhost_dev_cleanup makes sure |
| 506 | * VQs aren't running. |
| 507 | */ |
| 508 | for (i = 0; i < dev->nvqs; ++i) |
| 509 | dev->vqs[i]->memory = memory; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 510 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 511 | EXPORT_SYMBOL_GPL(vhost_dev_reset_owner); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 512 | |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 513 | void vhost_dev_stop(struct vhost_dev *dev) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 514 | { |
| 515 | int i; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 516 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 517 | for (i = 0; i < dev->nvqs; ++i) { |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 518 | if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) { |
| 519 | vhost_poll_stop(&dev->vqs[i]->poll); |
| 520 | vhost_poll_flush(&dev->vqs[i]->poll); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 521 | } |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 522 | } |
| 523 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 524 | EXPORT_SYMBOL_GPL(vhost_dev_stop); |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 525 | |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 526 | /* Caller should have device mutex if and only if locked is set */ |
| 527 | void vhost_dev_cleanup(struct vhost_dev *dev, bool locked) |
| 528 | { |
| 529 | int i; |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 530 | |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 531 | for (i = 0; i < dev->nvqs; ++i) { |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 532 | if (dev->vqs[i]->error_ctx) |
| 533 | eventfd_ctx_put(dev->vqs[i]->error_ctx); |
| 534 | if (dev->vqs[i]->error) |
| 535 | fput(dev->vqs[i]->error); |
| 536 | if (dev->vqs[i]->kick) |
| 537 | fput(dev->vqs[i]->kick); |
| 538 | if (dev->vqs[i]->call_ctx) |
| 539 | eventfd_ctx_put(dev->vqs[i]->call_ctx); |
| 540 | if (dev->vqs[i]->call) |
| 541 | fput(dev->vqs[i]->call); |
| 542 | vhost_vq_reset(dev, dev->vqs[i]); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 543 | } |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 544 | vhost_dev_free_iovecs(dev); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 545 | if (dev->log_ctx) |
| 546 | eventfd_ctx_put(dev->log_ctx); |
| 547 | dev->log_ctx = NULL; |
| 548 | if (dev->log_file) |
| 549 | fput(dev->log_file); |
| 550 | dev->log_file = NULL; |
| 551 | /* No one will access memory at this point */ |
Igor Mammedov | 4de7255 | 2015-07-01 11:07:09 +0200 | [diff] [blame] | 552 | kvfree(dev->memory); |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 553 | dev->memory = NULL; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 554 | WARN_ON(!list_empty(&dev->work_list)); |
Eric Dumazet | 78b620c | 2010-08-31 02:05:57 +0000 | [diff] [blame] | 555 | if (dev->worker) { |
| 556 | kthread_stop(dev->worker); |
| 557 | dev->worker = NULL; |
| 558 | } |
Michael S. Tsirkin | 533a19b | 2010-10-06 15:34:38 +0200 | [diff] [blame] | 559 | if (dev->mm) |
| 560 | mmput(dev->mm); |
| 561 | dev->mm = NULL; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 562 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 563 | EXPORT_SYMBOL_GPL(vhost_dev_cleanup); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 564 | |
| 565 | static int log_access_ok(void __user *log_base, u64 addr, unsigned long sz) |
| 566 | { |
| 567 | u64 a = addr / VHOST_PAGE_SIZE / 8; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 568 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 569 | /* Make sure 64 bit math will not overflow. */ |
| 570 | if (a > ULONG_MAX - (unsigned long)log_base || |
| 571 | a + (unsigned long)log_base > ULONG_MAX) |
Dan Carpenter | 6d97e55 | 2010-10-11 19:24:19 +0200 | [diff] [blame] | 572 | return 0; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 573 | |
| 574 | return access_ok(VERIFY_WRITE, log_base + a, |
| 575 | (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8); |
| 576 | } |
| 577 | |
| 578 | /* Caller should have vq mutex and device mutex. */ |
| 579 | static int vq_memory_access_ok(void __user *log_base, struct vhost_memory *mem, |
| 580 | int log_all) |
| 581 | { |
| 582 | int i; |
Jeff Dike | 179b284 | 2010-04-07 09:59:10 -0400 | [diff] [blame] | 583 | |
Michael S. Tsirkin | f8322fb | 2010-05-27 12:28:03 +0300 | [diff] [blame] | 584 | if (!mem) |
| 585 | return 0; |
Jeff Dike | 179b284 | 2010-04-07 09:59:10 -0400 | [diff] [blame] | 586 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 587 | for (i = 0; i < mem->nregions; ++i) { |
| 588 | struct vhost_memory_region *m = mem->regions + i; |
| 589 | unsigned long a = m->userspace_addr; |
| 590 | if (m->memory_size > ULONG_MAX) |
| 591 | return 0; |
| 592 | else if (!access_ok(VERIFY_WRITE, (void __user *)a, |
| 593 | m->memory_size)) |
| 594 | return 0; |
| 595 | else if (log_all && !log_access_ok(log_base, |
| 596 | m->guest_phys_addr, |
| 597 | m->memory_size)) |
| 598 | return 0; |
| 599 | } |
| 600 | return 1; |
| 601 | } |
| 602 | |
| 603 | /* Can we switch to this memory table? */ |
| 604 | /* Caller should have device mutex but not vq mutex */ |
| 605 | static int memory_access_ok(struct vhost_dev *d, struct vhost_memory *mem, |
| 606 | int log_all) |
| 607 | { |
| 608 | int i; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 609 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 610 | for (i = 0; i < d->nvqs; ++i) { |
| 611 | int ok; |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 612 | bool log; |
| 613 | |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 614 | mutex_lock(&d->vqs[i]->mutex); |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 615 | log = log_all || vhost_has_feature(d->vqs[i], VHOST_F_LOG_ALL); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 616 | /* If ring is inactive, will check when it's enabled. */ |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 617 | if (d->vqs[i]->private_data) |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 618 | ok = vq_memory_access_ok(d->vqs[i]->log_base, mem, log); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 619 | else |
| 620 | ok = 1; |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 621 | mutex_unlock(&d->vqs[i]->mutex); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 622 | if (!ok) |
| 623 | return 0; |
| 624 | } |
| 625 | return 1; |
| 626 | } |
| 627 | |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 628 | static int vq_access_ok(struct vhost_virtqueue *vq, unsigned int num, |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 629 | struct vring_desc __user *desc, |
| 630 | struct vring_avail __user *avail, |
| 631 | struct vring_used __user *used) |
| 632 | { |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 633 | size_t s = vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX) ? 2 : 0; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 634 | return access_ok(VERIFY_READ, desc, num * sizeof *desc) && |
| 635 | access_ok(VERIFY_READ, avail, |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 636 | sizeof *avail + num * sizeof *avail->ring + s) && |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 637 | access_ok(VERIFY_WRITE, used, |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 638 | sizeof *used + num * sizeof *used->ring + s); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | /* Can we log writes? */ |
| 642 | /* Caller should have device mutex but not vq mutex */ |
| 643 | int vhost_log_access_ok(struct vhost_dev *dev) |
| 644 | { |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 645 | return memory_access_ok(dev, dev->memory, 1); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 646 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 647 | EXPORT_SYMBOL_GPL(vhost_log_access_ok); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 648 | |
| 649 | /* Verify access for write logging. */ |
| 650 | /* Caller should have vq mutex and device mutex */ |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 651 | static int vq_log_access_ok(struct vhost_virtqueue *vq, |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 652 | void __user *log_base) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 653 | { |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 654 | 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] | 655 | |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 656 | return vq_memory_access_ok(log_base, vq->memory, |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 657 | vhost_has_feature(vq, VHOST_F_LOG_ALL)) && |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 658 | (!vq->log_used || log_access_ok(log_base, vq->log_addr, |
| 659 | sizeof *vq->used + |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 660 | vq->num * sizeof *vq->used->ring + s)); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | /* Can we start vq? */ |
| 664 | /* Caller should have vq mutex and device mutex */ |
| 665 | int vhost_vq_access_ok(struct vhost_virtqueue *vq) |
| 666 | { |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 667 | return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used) && |
| 668 | vq_log_access_ok(vq, vq->log_base); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 669 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 670 | EXPORT_SYMBOL_GPL(vhost_vq_access_ok); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 671 | |
Igor Mammedov | bcfeaca | 2015-06-16 18:33:35 +0200 | [diff] [blame] | 672 | static int vhost_memory_reg_sort_cmp(const void *p1, const void *p2) |
| 673 | { |
| 674 | const struct vhost_memory_region *r1 = p1, *r2 = p2; |
| 675 | if (r1->guest_phys_addr < r2->guest_phys_addr) |
| 676 | return 1; |
| 677 | if (r1->guest_phys_addr > r2->guest_phys_addr) |
| 678 | return -1; |
| 679 | return 0; |
| 680 | } |
| 681 | |
Igor Mammedov | 4de7255 | 2015-07-01 11:07:09 +0200 | [diff] [blame] | 682 | static void *vhost_kvzalloc(unsigned long size) |
| 683 | { |
| 684 | void *n = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT); |
| 685 | |
Igor Mammedov | 1e09947 | 2015-07-15 16:48:50 +0200 | [diff] [blame] | 686 | if (!n) |
Igor Mammedov | 4de7255 | 2015-07-01 11:07:09 +0200 | [diff] [blame] | 687 | n = vzalloc(size); |
Igor Mammedov | 4de7255 | 2015-07-01 11:07:09 +0200 | [diff] [blame] | 688 | return n; |
| 689 | } |
| 690 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 691 | static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m) |
| 692 | { |
| 693 | struct vhost_memory mem, *newmem, *oldmem; |
| 694 | unsigned long size = offsetof(struct vhost_memory, regions); |
Michael S. Tsirkin | 98f9ca0 | 2014-05-28 17:07:02 +0300 | [diff] [blame] | 695 | int i; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 696 | |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 697 | if (copy_from_user(&mem, m, size)) |
| 698 | return -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 699 | if (mem.padding) |
| 700 | return -EOPNOTSUPP; |
Igor Mammedov | c9ce42f | 2015-07-02 15:08:11 +0200 | [diff] [blame] | 701 | if (mem.nregions > max_mem_regions) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 702 | return -E2BIG; |
Igor Mammedov | 4de7255 | 2015-07-01 11:07:09 +0200 | [diff] [blame] | 703 | newmem = vhost_kvzalloc(size + mem.nregions * sizeof(*m->regions)); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 704 | if (!newmem) |
| 705 | return -ENOMEM; |
| 706 | |
| 707 | memcpy(newmem, &mem, size); |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 708 | if (copy_from_user(newmem->regions, m->regions, |
| 709 | mem.nregions * sizeof *m->regions)) { |
Igor Mammedov | bcfeaca | 2015-06-16 18:33:35 +0200 | [diff] [blame] | 710 | kvfree(newmem); |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 711 | return -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 712 | } |
Igor Mammedov | bcfeaca | 2015-06-16 18:33:35 +0200 | [diff] [blame] | 713 | sort(newmem->regions, newmem->nregions, sizeof(*newmem->regions), |
| 714 | vhost_memory_reg_sort_cmp, NULL); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 715 | |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 716 | if (!memory_access_ok(d, newmem, 0)) { |
Igor Mammedov | 4de7255 | 2015-07-01 11:07:09 +0200 | [diff] [blame] | 717 | kvfree(newmem); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 718 | return -EFAULT; |
Takuya Yoshikawa | a02c378 | 2010-05-27 19:03:56 +0900 | [diff] [blame] | 719 | } |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 720 | oldmem = d->memory; |
| 721 | d->memory = newmem; |
Michael S. Tsirkin | 98f9ca0 | 2014-05-28 17:07:02 +0300 | [diff] [blame] | 722 | |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 723 | /* All memory accesses are done under some VQ mutex. */ |
Michael S. Tsirkin | 98f9ca0 | 2014-05-28 17:07:02 +0300 | [diff] [blame] | 724 | for (i = 0; i < d->nvqs; ++i) { |
| 725 | mutex_lock(&d->vqs[i]->mutex); |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 726 | d->vqs[i]->memory = newmem; |
Michael S. Tsirkin | 98f9ca0 | 2014-05-28 17:07:02 +0300 | [diff] [blame] | 727 | mutex_unlock(&d->vqs[i]->mutex); |
| 728 | } |
Igor Mammedov | 4de7255 | 2015-07-01 11:07:09 +0200 | [diff] [blame] | 729 | kvfree(oldmem); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 730 | return 0; |
| 731 | } |
| 732 | |
Michael S. Tsirkin | 935cdee | 2012-12-06 14:03:34 +0200 | [diff] [blame] | 733 | long vhost_vring_ioctl(struct vhost_dev *d, int ioctl, void __user *argp) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 734 | { |
Al Viro | cecb46f | 2012-08-27 14:21:39 -0400 | [diff] [blame] | 735 | struct file *eventfp, *filep = NULL; |
| 736 | bool pollstart = false, pollstop = false; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 737 | struct eventfd_ctx *ctx = NULL; |
| 738 | u32 __user *idxp = argp; |
| 739 | struct vhost_virtqueue *vq; |
| 740 | struct vhost_vring_state s; |
| 741 | struct vhost_vring_file f; |
| 742 | struct vhost_vring_addr a; |
| 743 | u32 idx; |
| 744 | long r; |
| 745 | |
| 746 | r = get_user(idx, idxp); |
| 747 | if (r < 0) |
| 748 | return r; |
Krishna Kumar | 0f3d9a1 | 2010-05-25 11:10:36 +0530 | [diff] [blame] | 749 | if (idx >= d->nvqs) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 750 | return -ENOBUFS; |
| 751 | |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 752 | vq = d->vqs[idx]; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 753 | |
| 754 | mutex_lock(&vq->mutex); |
| 755 | |
| 756 | switch (ioctl) { |
| 757 | case VHOST_SET_VRING_NUM: |
| 758 | /* Resizing ring with an active backend? |
| 759 | * You don't want to do that. */ |
| 760 | if (vq->private_data) { |
| 761 | r = -EBUSY; |
| 762 | break; |
| 763 | } |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 764 | if (copy_from_user(&s, argp, sizeof s)) { |
| 765 | r = -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 766 | break; |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 767 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 768 | if (!s.num || s.num > 0xffff || (s.num & (s.num - 1))) { |
| 769 | r = -EINVAL; |
| 770 | break; |
| 771 | } |
| 772 | vq->num = s.num; |
| 773 | break; |
| 774 | case VHOST_SET_VRING_BASE: |
| 775 | /* Moving base with an active backend? |
| 776 | * You don't want to do that. */ |
| 777 | if (vq->private_data) { |
| 778 | r = -EBUSY; |
| 779 | break; |
| 780 | } |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 781 | if (copy_from_user(&s, argp, sizeof s)) { |
| 782 | r = -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 783 | break; |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 784 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 785 | if (s.num > 0xffff) { |
| 786 | r = -EINVAL; |
| 787 | break; |
| 788 | } |
| 789 | vq->last_avail_idx = s.num; |
| 790 | /* Forget the cached index value. */ |
| 791 | vq->avail_idx = vq->last_avail_idx; |
| 792 | break; |
| 793 | case VHOST_GET_VRING_BASE: |
| 794 | s.index = idx; |
| 795 | s.num = vq->last_avail_idx; |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 796 | if (copy_to_user(argp, &s, sizeof s)) |
| 797 | r = -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 798 | break; |
| 799 | case VHOST_SET_VRING_ADDR: |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 800 | if (copy_from_user(&a, argp, sizeof a)) { |
| 801 | r = -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 802 | break; |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 803 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 804 | if (a.flags & ~(0x1 << VHOST_VRING_F_LOG)) { |
| 805 | r = -EOPNOTSUPP; |
| 806 | break; |
| 807 | } |
| 808 | /* For 32bit, verify that the top 32bits of the user |
| 809 | data are set to zero. */ |
| 810 | if ((u64)(unsigned long)a.desc_user_addr != a.desc_user_addr || |
| 811 | (u64)(unsigned long)a.used_user_addr != a.used_user_addr || |
| 812 | (u64)(unsigned long)a.avail_user_addr != a.avail_user_addr) { |
| 813 | r = -EFAULT; |
| 814 | break; |
| 815 | } |
Michael S. Tsirkin | 5d9a07b | 2014-12-21 01:00:23 +0200 | [diff] [blame] | 816 | |
| 817 | /* Make sure it's safe to cast pointers to vring types. */ |
| 818 | BUILD_BUG_ON(__alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE); |
| 819 | BUILD_BUG_ON(__alignof__ *vq->used > VRING_USED_ALIGN_SIZE); |
| 820 | if ((a.avail_user_addr & (VRING_AVAIL_ALIGN_SIZE - 1)) || |
| 821 | (a.used_user_addr & (VRING_USED_ALIGN_SIZE - 1)) || |
| 822 | (a.log_guest_addr & (sizeof(u64) - 1))) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 823 | r = -EINVAL; |
| 824 | break; |
| 825 | } |
| 826 | |
| 827 | /* We only verify access here if backend is configured. |
| 828 | * If it is not, we don't as size might not have been setup. |
| 829 | * We will verify when backend is configured. */ |
| 830 | if (vq->private_data) { |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 831 | if (!vq_access_ok(vq, vq->num, |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 832 | (void __user *)(unsigned long)a.desc_user_addr, |
| 833 | (void __user *)(unsigned long)a.avail_user_addr, |
| 834 | (void __user *)(unsigned long)a.used_user_addr)) { |
| 835 | r = -EINVAL; |
| 836 | break; |
| 837 | } |
| 838 | |
| 839 | /* Also validate log access for used ring if enabled. */ |
| 840 | if ((a.flags & (0x1 << VHOST_VRING_F_LOG)) && |
| 841 | !log_access_ok(vq->log_base, a.log_guest_addr, |
| 842 | sizeof *vq->used + |
| 843 | vq->num * sizeof *vq->used->ring)) { |
| 844 | r = -EINVAL; |
| 845 | break; |
| 846 | } |
| 847 | } |
| 848 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 849 | vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG)); |
| 850 | vq->desc = (void __user *)(unsigned long)a.desc_user_addr; |
| 851 | vq->avail = (void __user *)(unsigned long)a.avail_user_addr; |
| 852 | vq->log_addr = a.log_guest_addr; |
| 853 | vq->used = (void __user *)(unsigned long)a.used_user_addr; |
| 854 | break; |
| 855 | case VHOST_SET_VRING_KICK: |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 856 | if (copy_from_user(&f, argp, sizeof f)) { |
| 857 | r = -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 858 | break; |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 859 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 860 | eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd); |
Michael S. Tsirkin | 535297a | 2010-03-17 16:06:11 +0200 | [diff] [blame] | 861 | if (IS_ERR(eventfp)) { |
| 862 | r = PTR_ERR(eventfp); |
| 863 | break; |
| 864 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 865 | if (eventfp != vq->kick) { |
Al Viro | cecb46f | 2012-08-27 14:21:39 -0400 | [diff] [blame] | 866 | pollstop = (filep = vq->kick) != NULL; |
| 867 | pollstart = (vq->kick = eventfp) != NULL; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 868 | } else |
| 869 | filep = eventfp; |
| 870 | break; |
| 871 | case VHOST_SET_VRING_CALL: |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 872 | if (copy_from_user(&f, argp, sizeof f)) { |
| 873 | r = -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 874 | break; |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 875 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 876 | eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd); |
Michael S. Tsirkin | 535297a | 2010-03-17 16:06:11 +0200 | [diff] [blame] | 877 | if (IS_ERR(eventfp)) { |
| 878 | r = PTR_ERR(eventfp); |
| 879 | break; |
| 880 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 881 | if (eventfp != vq->call) { |
| 882 | filep = vq->call; |
| 883 | ctx = vq->call_ctx; |
| 884 | vq->call = eventfp; |
| 885 | vq->call_ctx = eventfp ? |
| 886 | eventfd_ctx_fileget(eventfp) : NULL; |
| 887 | } else |
| 888 | filep = eventfp; |
| 889 | break; |
| 890 | case VHOST_SET_VRING_ERR: |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 891 | if (copy_from_user(&f, argp, sizeof f)) { |
| 892 | r = -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 893 | break; |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 894 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 895 | eventfp = f.fd == -1 ? NULL : eventfd_fget(f.fd); |
Michael S. Tsirkin | 535297a | 2010-03-17 16:06:11 +0200 | [diff] [blame] | 896 | if (IS_ERR(eventfp)) { |
| 897 | r = PTR_ERR(eventfp); |
| 898 | break; |
| 899 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 900 | if (eventfp != vq->error) { |
| 901 | filep = vq->error; |
| 902 | vq->error = eventfp; |
| 903 | ctx = vq->error_ctx; |
| 904 | vq->error_ctx = eventfp ? |
| 905 | eventfd_ctx_fileget(eventfp) : NULL; |
| 906 | } else |
| 907 | filep = eventfp; |
| 908 | break; |
Greg Kurz | 2751c98 | 2015-04-24 14:27:24 +0200 | [diff] [blame] | 909 | case VHOST_SET_VRING_ENDIAN: |
| 910 | r = vhost_set_vring_endian(vq, argp); |
| 911 | break; |
| 912 | case VHOST_GET_VRING_ENDIAN: |
| 913 | r = vhost_get_vring_endian(vq, idx, argp); |
| 914 | break; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 915 | default: |
| 916 | r = -ENOIOCTLCMD; |
| 917 | } |
| 918 | |
| 919 | if (pollstop && vq->handle_kick) |
| 920 | vhost_poll_stop(&vq->poll); |
| 921 | |
| 922 | if (ctx) |
| 923 | eventfd_ctx_put(ctx); |
| 924 | if (filep) |
| 925 | fput(filep); |
| 926 | |
| 927 | if (pollstart && vq->handle_kick) |
Jason Wang | 2b8b328 | 2013-01-28 01:05:18 +0000 | [diff] [blame] | 928 | r = vhost_poll_start(&vq->poll, vq->kick); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 929 | |
| 930 | mutex_unlock(&vq->mutex); |
| 931 | |
| 932 | if (pollstop && vq->handle_kick) |
| 933 | vhost_poll_flush(&vq->poll); |
| 934 | return r; |
| 935 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 936 | EXPORT_SYMBOL_GPL(vhost_vring_ioctl); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 937 | |
| 938 | /* Caller must have device mutex */ |
Michael S. Tsirkin | 935cdee | 2012-12-06 14:03:34 +0200 | [diff] [blame] | 939 | long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 940 | { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 941 | struct file *eventfp, *filep = NULL; |
| 942 | struct eventfd_ctx *ctx = NULL; |
| 943 | u64 p; |
| 944 | long r; |
| 945 | int i, fd; |
| 946 | |
| 947 | /* If you are not the owner, you can become one */ |
| 948 | if (ioctl == VHOST_SET_OWNER) { |
| 949 | r = vhost_dev_set_owner(d); |
| 950 | goto done; |
| 951 | } |
| 952 | |
| 953 | /* You must be the owner to do anything else */ |
| 954 | r = vhost_dev_check_owner(d); |
| 955 | if (r) |
| 956 | goto done; |
| 957 | |
| 958 | switch (ioctl) { |
| 959 | case VHOST_SET_MEM_TABLE: |
| 960 | r = vhost_set_memory(d, argp); |
| 961 | break; |
| 962 | case VHOST_SET_LOG_BASE: |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 963 | if (copy_from_user(&p, argp, sizeof p)) { |
| 964 | r = -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 965 | break; |
Takuya Yoshikawa | 7ad9c9d | 2010-05-27 18:58:03 +0900 | [diff] [blame] | 966 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 967 | if ((u64)(unsigned long)p != p) { |
| 968 | r = -EFAULT; |
| 969 | break; |
| 970 | } |
| 971 | for (i = 0; i < d->nvqs; ++i) { |
| 972 | struct vhost_virtqueue *vq; |
| 973 | void __user *base = (void __user *)(unsigned long)p; |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 974 | vq = d->vqs[i]; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 975 | mutex_lock(&vq->mutex); |
| 976 | /* If ring is inactive, will check when it's enabled. */ |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 977 | if (vq->private_data && !vq_log_access_ok(vq, base)) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 978 | r = -EFAULT; |
| 979 | else |
| 980 | vq->log_base = base; |
| 981 | mutex_unlock(&vq->mutex); |
| 982 | } |
| 983 | break; |
| 984 | case VHOST_SET_LOG_FD: |
| 985 | r = get_user(fd, (int __user *)argp); |
| 986 | if (r < 0) |
| 987 | break; |
| 988 | eventfp = fd == -1 ? NULL : eventfd_fget(fd); |
| 989 | if (IS_ERR(eventfp)) { |
| 990 | r = PTR_ERR(eventfp); |
| 991 | break; |
| 992 | } |
| 993 | if (eventfp != d->log_file) { |
| 994 | filep = d->log_file; |
Marc-André Lureau | 7932c0b | 2015-07-17 15:32:03 +0200 | [diff] [blame] | 995 | d->log_file = eventfp; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 996 | ctx = d->log_ctx; |
| 997 | d->log_ctx = eventfp ? |
| 998 | eventfd_ctx_fileget(eventfp) : NULL; |
| 999 | } else |
| 1000 | filep = eventfp; |
| 1001 | for (i = 0; i < d->nvqs; ++i) { |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1002 | mutex_lock(&d->vqs[i]->mutex); |
| 1003 | d->vqs[i]->log_ctx = d->log_ctx; |
| 1004 | mutex_unlock(&d->vqs[i]->mutex); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1005 | } |
| 1006 | if (ctx) |
| 1007 | eventfd_ctx_put(ctx); |
| 1008 | if (filep) |
| 1009 | fput(filep); |
| 1010 | break; |
| 1011 | default: |
Michael S. Tsirkin | 935cdee | 2012-12-06 14:03:34 +0200 | [diff] [blame] | 1012 | r = -ENOIOCTLCMD; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1013 | break; |
| 1014 | } |
| 1015 | done: |
| 1016 | return r; |
| 1017 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1018 | EXPORT_SYMBOL_GPL(vhost_dev_ioctl); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1019 | |
| 1020 | static const struct vhost_memory_region *find_region(struct vhost_memory *mem, |
| 1021 | __u64 addr, __u32 len) |
| 1022 | { |
Igor Mammedov | bcfeaca | 2015-06-16 18:33:35 +0200 | [diff] [blame] | 1023 | const struct vhost_memory_region *reg; |
| 1024 | int start = 0, end = mem->nregions; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1025 | |
Igor Mammedov | bcfeaca | 2015-06-16 18:33:35 +0200 | [diff] [blame] | 1026 | while (start < end) { |
| 1027 | int slot = start + (end - start) / 2; |
| 1028 | reg = mem->regions + slot; |
| 1029 | if (addr >= reg->guest_phys_addr) |
| 1030 | end = slot; |
| 1031 | else |
| 1032 | start = slot + 1; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1033 | } |
Igor Mammedov | bcfeaca | 2015-06-16 18:33:35 +0200 | [diff] [blame] | 1034 | |
| 1035 | reg = mem->regions + start; |
| 1036 | if (addr >= reg->guest_phys_addr && |
| 1037 | reg->guest_phys_addr + reg->memory_size > addr) |
| 1038 | return reg; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1039 | return NULL; |
| 1040 | } |
| 1041 | |
| 1042 | /* TODO: This is really inefficient. We need something like get_user() |
| 1043 | * (instruction directly accesses the data, with an exception table entry |
| 1044 | * returning -EFAULT). See Documentation/x86/exception-tables.txt. |
| 1045 | */ |
| 1046 | static int set_bit_to_user(int nr, void __user *addr) |
| 1047 | { |
| 1048 | unsigned long log = (unsigned long)addr; |
| 1049 | struct page *page; |
| 1050 | void *base; |
| 1051 | int bit = nr + (log % PAGE_SIZE) * 8; |
| 1052 | int r; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1053 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1054 | r = get_user_pages_fast(log, 1, 1, &page); |
Michael S. Tsirkin | d6db3f5 | 2010-02-23 11:25:23 +0200 | [diff] [blame] | 1055 | if (r < 0) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1056 | return r; |
Michael S. Tsirkin | d6db3f5 | 2010-02-23 11:25:23 +0200 | [diff] [blame] | 1057 | BUG_ON(r != 1); |
Cong Wang | c6daa7f | 2011-11-25 23:14:26 +0800 | [diff] [blame] | 1058 | base = kmap_atomic(page); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1059 | set_bit(bit, base); |
Cong Wang | c6daa7f | 2011-11-25 23:14:26 +0800 | [diff] [blame] | 1060 | kunmap_atomic(base); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1061 | set_page_dirty_lock(page); |
| 1062 | put_page(page); |
| 1063 | return 0; |
| 1064 | } |
| 1065 | |
| 1066 | static int log_write(void __user *log_base, |
| 1067 | u64 write_address, u64 write_length) |
| 1068 | { |
Michael S. Tsirkin | 28831ee | 2010-11-29 10:22:10 +0200 | [diff] [blame] | 1069 | u64 write_page = write_address / VHOST_PAGE_SIZE; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1070 | int r; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1071 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1072 | if (!write_length) |
| 1073 | return 0; |
Michael S. Tsirkin | 3bf9be4 | 2010-11-29 10:19:07 +0200 | [diff] [blame] | 1074 | write_length += write_address % VHOST_PAGE_SIZE; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1075 | for (;;) { |
| 1076 | u64 base = (u64)(unsigned long)log_base; |
Michael S. Tsirkin | 28831ee | 2010-11-29 10:22:10 +0200 | [diff] [blame] | 1077 | u64 log = base + write_page / 8; |
| 1078 | int bit = write_page % 8; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1079 | if ((u64)(unsigned long)log != log) |
| 1080 | return -EFAULT; |
| 1081 | r = set_bit_to_user(bit, (void __user *)(unsigned long)log); |
| 1082 | if (r < 0) |
| 1083 | return r; |
| 1084 | if (write_length <= VHOST_PAGE_SIZE) |
| 1085 | break; |
| 1086 | write_length -= VHOST_PAGE_SIZE; |
Michael S. Tsirkin | 28831ee | 2010-11-29 10:22:10 +0200 | [diff] [blame] | 1087 | write_page += 1; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1088 | } |
| 1089 | return r; |
| 1090 | } |
| 1091 | |
| 1092 | int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log, |
| 1093 | unsigned int log_num, u64 len) |
| 1094 | { |
| 1095 | int i, r; |
| 1096 | |
| 1097 | /* Make sure data written is seen before log. */ |
Michael S. Tsirkin | 5659338 | 2010-02-01 07:21:02 +0000 | [diff] [blame] | 1098 | smp_wmb(); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1099 | for (i = 0; i < log_num; ++i) { |
| 1100 | u64 l = min(log[i].len, len); |
| 1101 | r = log_write(vq->log_base, log[i].addr, l); |
| 1102 | if (r < 0) |
| 1103 | return r; |
| 1104 | len -= l; |
Michael S. Tsirkin | 5786aee | 2010-09-22 12:31:53 +0200 | [diff] [blame] | 1105 | if (!len) { |
| 1106 | if (vq->log_ctx) |
| 1107 | eventfd_signal(vq->log_ctx, 1); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1108 | return 0; |
Michael S. Tsirkin | 5786aee | 2010-09-22 12:31:53 +0200 | [diff] [blame] | 1109 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1110 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1111 | /* Length written exceeds what we have stored. This is a bug. */ |
| 1112 | BUG(); |
| 1113 | return 0; |
| 1114 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1115 | EXPORT_SYMBOL_GPL(vhost_log_write); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1116 | |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1117 | static int vhost_update_used_flags(struct vhost_virtqueue *vq) |
| 1118 | { |
| 1119 | void __user *used; |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1120 | if (__put_user(cpu_to_vhost16(vq, vq->used_flags), &vq->used->flags) < 0) |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1121 | return -EFAULT; |
| 1122 | if (unlikely(vq->log_used)) { |
| 1123 | /* Make sure the flag is seen before log. */ |
| 1124 | smp_wmb(); |
| 1125 | /* Log used flag write. */ |
| 1126 | used = &vq->used->flags; |
| 1127 | log_write(vq->log_base, vq->log_addr + |
| 1128 | (used - (void __user *)vq->used), |
| 1129 | sizeof vq->used->flags); |
| 1130 | if (vq->log_ctx) |
| 1131 | eventfd_signal(vq->log_ctx, 1); |
| 1132 | } |
| 1133 | return 0; |
| 1134 | } |
| 1135 | |
| 1136 | static int vhost_update_avail_event(struct vhost_virtqueue *vq, u16 avail_event) |
| 1137 | { |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1138 | if (__put_user(cpu_to_vhost16(vq, vq->avail_idx), vhost_avail_event(vq))) |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1139 | return -EFAULT; |
| 1140 | if (unlikely(vq->log_used)) { |
| 1141 | void __user *used; |
| 1142 | /* Make sure the event is seen before log. */ |
| 1143 | smp_wmb(); |
| 1144 | /* Log avail event write */ |
| 1145 | used = vhost_avail_event(vq); |
| 1146 | log_write(vq->log_base, vq->log_addr + |
| 1147 | (used - (void __user *)vq->used), |
| 1148 | sizeof *vhost_avail_event(vq)); |
| 1149 | if (vq->log_ctx) |
| 1150 | eventfd_signal(vq->log_ctx, 1); |
| 1151 | } |
| 1152 | return 0; |
| 1153 | } |
| 1154 | |
| 1155 | int vhost_init_used(struct vhost_virtqueue *vq) |
| 1156 | { |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1157 | __virtio16 last_used_idx; |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1158 | int r; |
Greg Kurz | 2751c98 | 2015-04-24 14:27:24 +0200 | [diff] [blame] | 1159 | if (!vq->private_data) { |
| 1160 | vq->is_le = virtio_legacy_is_little_endian(); |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1161 | return 0; |
Greg Kurz | 2751c98 | 2015-04-24 14:27:24 +0200 | [diff] [blame] | 1162 | } |
| 1163 | |
| 1164 | vhost_init_is_le(vq); |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1165 | |
| 1166 | r = vhost_update_used_flags(vq); |
| 1167 | if (r) |
| 1168 | return r; |
| 1169 | vq->signalled_used_valid = false; |
Michael S. Tsirkin | 64f7f05 | 2014-12-01 17:39:39 +0200 | [diff] [blame] | 1170 | if (!access_ok(VERIFY_READ, &vq->used->idx, sizeof vq->used->idx)) |
| 1171 | return -EFAULT; |
| 1172 | r = __get_user(last_used_idx, &vq->used->idx); |
| 1173 | if (r) |
| 1174 | return r; |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1175 | vq->last_used_idx = vhost16_to_cpu(vq, last_used_idx); |
Michael S. Tsirkin | 64f7f05 | 2014-12-01 17:39:39 +0200 | [diff] [blame] | 1176 | return 0; |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1177 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1178 | EXPORT_SYMBOL_GPL(vhost_init_used); |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1179 | |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 1180 | static int translate_desc(struct vhost_virtqueue *vq, u64 addr, u32 len, |
Christoph Hellwig | a8d3782 | 2010-04-13 14:11:25 -0400 | [diff] [blame] | 1181 | struct iovec iov[], int iov_size) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1182 | { |
| 1183 | const struct vhost_memory_region *reg; |
| 1184 | struct vhost_memory *mem; |
| 1185 | struct iovec *_iov; |
| 1186 | u64 s = 0; |
| 1187 | int ret = 0; |
| 1188 | |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 1189 | mem = vq->memory; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1190 | while ((u64)len > s) { |
| 1191 | u64 size; |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1192 | if (unlikely(ret >= iov_size)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1193 | ret = -ENOBUFS; |
| 1194 | break; |
| 1195 | } |
| 1196 | reg = find_region(mem, addr, len); |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1197 | if (unlikely(!reg)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1198 | ret = -EFAULT; |
| 1199 | break; |
| 1200 | } |
| 1201 | _iov = iov + ret; |
| 1202 | size = reg->memory_size - addr + reg->guest_phys_addr; |
Michael S. Tsirkin | bd97120 | 2012-11-26 05:57:27 +0000 | [diff] [blame] | 1203 | _iov->iov_len = min((u64)len - s, size); |
Christoph Hellwig | a8d3782 | 2010-04-13 14:11:25 -0400 | [diff] [blame] | 1204 | _iov->iov_base = (void __user *)(unsigned long) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1205 | (reg->userspace_addr + addr - reg->guest_phys_addr); |
| 1206 | s += size; |
| 1207 | addr += size; |
| 1208 | ++ret; |
| 1209 | } |
| 1210 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1211 | return ret; |
| 1212 | } |
| 1213 | |
| 1214 | /* Each buffer in the virtqueues is actually a chain of descriptors. This |
| 1215 | * function returns the next descriptor in the chain, |
| 1216 | * or -1U if we're at the end. */ |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1217 | static unsigned next_desc(struct vhost_virtqueue *vq, struct vring_desc *desc) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1218 | { |
| 1219 | unsigned int next; |
| 1220 | |
| 1221 | /* If this descriptor says it doesn't chain, we're done. */ |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1222 | if (!(desc->flags & cpu_to_vhost16(vq, VRING_DESC_F_NEXT))) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1223 | return -1U; |
| 1224 | |
| 1225 | /* Check they're not leading us off end of descriptors. */ |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1226 | next = vhost16_to_cpu(vq, desc->next); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1227 | /* Make sure compiler knows to grab that: we don't want it changing! */ |
| 1228 | /* We will use the result as an index in an array, so most |
| 1229 | * architectures only need a compiler barrier here. */ |
| 1230 | read_barrier_depends(); |
| 1231 | |
| 1232 | return next; |
| 1233 | } |
| 1234 | |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 1235 | static int get_indirect(struct vhost_virtqueue *vq, |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1236 | struct iovec iov[], unsigned int iov_size, |
| 1237 | unsigned int *out_num, unsigned int *in_num, |
| 1238 | struct vhost_log *log, unsigned int *log_num, |
| 1239 | struct vring_desc *indirect) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1240 | { |
| 1241 | struct vring_desc desc; |
| 1242 | unsigned int i = 0, count, found = 0; |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1243 | u32 len = vhost32_to_cpu(vq, indirect->len); |
Al Viro | aad9a1c | 2014-12-10 14:49:01 -0500 | [diff] [blame] | 1244 | struct iov_iter from; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1245 | int ret; |
| 1246 | |
| 1247 | /* Sanity check */ |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1248 | if (unlikely(len % sizeof desc)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1249 | vq_err(vq, "Invalid length in indirect descriptor: " |
| 1250 | "len 0x%llx not multiple of 0x%zx\n", |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1251 | (unsigned long long)len, |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1252 | sizeof desc); |
| 1253 | return -EINVAL; |
| 1254 | } |
| 1255 | |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1256 | ret = translate_desc(vq, vhost64_to_cpu(vq, indirect->addr), len, vq->indirect, |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 1257 | UIO_MAXIOV); |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1258 | if (unlikely(ret < 0)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1259 | vq_err(vq, "Translation failure %d in indirect.\n", ret); |
| 1260 | return ret; |
| 1261 | } |
Al Viro | aad9a1c | 2014-12-10 14:49:01 -0500 | [diff] [blame] | 1262 | iov_iter_init(&from, READ, vq->indirect, ret, len); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1263 | |
| 1264 | /* We will use the result as an address to read from, so most |
| 1265 | * architectures only need a compiler barrier here. */ |
| 1266 | read_barrier_depends(); |
| 1267 | |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1268 | count = len / sizeof desc; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1269 | /* Buffers are chained via a 16 bit next field, so |
| 1270 | * we can have at most 2^16 of these. */ |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1271 | if (unlikely(count > USHRT_MAX + 1)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1272 | vq_err(vq, "Indirect buffer length too big: %d\n", |
| 1273 | indirect->len); |
| 1274 | return -E2BIG; |
| 1275 | } |
| 1276 | |
| 1277 | do { |
| 1278 | unsigned iov_count = *in_num + *out_num; |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1279 | if (unlikely(++found > count)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1280 | vq_err(vq, "Loop detected: last one at %u " |
| 1281 | "indirect size %u\n", |
| 1282 | i, count); |
| 1283 | return -EINVAL; |
| 1284 | } |
Al Viro | aad9a1c | 2014-12-10 14:49:01 -0500 | [diff] [blame] | 1285 | if (unlikely(copy_from_iter(&desc, sizeof(desc), &from) != |
| 1286 | sizeof(desc))) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1287 | vq_err(vq, "Failed indirect descriptor: idx %d, %zx\n", |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1288 | i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1289 | return -EINVAL; |
| 1290 | } |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1291 | if (unlikely(desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT))) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1292 | vq_err(vq, "Nested indirect descriptor: idx %d, %zx\n", |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1293 | i, (size_t)vhost64_to_cpu(vq, indirect->addr) + i * sizeof desc); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1294 | return -EINVAL; |
| 1295 | } |
| 1296 | |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1297 | ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr), |
| 1298 | vhost32_to_cpu(vq, desc.len), iov + iov_count, |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1299 | iov_size - iov_count); |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1300 | if (unlikely(ret < 0)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1301 | vq_err(vq, "Translation failure %d indirect idx %d\n", |
| 1302 | ret, i); |
| 1303 | return ret; |
| 1304 | } |
| 1305 | /* If this is an input descriptor, increment that count. */ |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1306 | if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1307 | *in_num += ret; |
| 1308 | if (unlikely(log)) { |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1309 | log[*log_num].addr = vhost64_to_cpu(vq, desc.addr); |
| 1310 | log[*log_num].len = vhost32_to_cpu(vq, desc.len); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1311 | ++*log_num; |
| 1312 | } |
| 1313 | } else { |
| 1314 | /* If it's an output descriptor, they're all supposed |
| 1315 | * to come before any input descriptors. */ |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1316 | if (unlikely(*in_num)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1317 | vq_err(vq, "Indirect descriptor " |
| 1318 | "has out after in: idx %d\n", i); |
| 1319 | return -EINVAL; |
| 1320 | } |
| 1321 | *out_num += ret; |
| 1322 | } |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1323 | } while ((i = next_desc(vq, &desc)) != -1); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1324 | return 0; |
| 1325 | } |
| 1326 | |
| 1327 | /* This looks in the virtqueue and for the first available buffer, and converts |
| 1328 | * it to an iovec for convenient access. Since descriptors consist of some |
| 1329 | * number of output then some number of input descriptors, it's actually two |
| 1330 | * iovecs, but we pack them into one and note how many of each there were. |
| 1331 | * |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1332 | * This function returns the descriptor number found, or vq->num (which is |
| 1333 | * never a valid descriptor number) if none was found. A negative code is |
| 1334 | * returned on error. */ |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 1335 | int vhost_get_vq_desc(struct vhost_virtqueue *vq, |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1336 | struct iovec iov[], unsigned int iov_size, |
| 1337 | unsigned int *out_num, unsigned int *in_num, |
| 1338 | struct vhost_log *log, unsigned int *log_num) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1339 | { |
| 1340 | struct vring_desc desc; |
| 1341 | unsigned int i, head, found = 0; |
| 1342 | u16 last_avail_idx; |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1343 | __virtio16 avail_idx; |
| 1344 | __virtio16 ring_head; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1345 | int ret; |
| 1346 | |
| 1347 | /* Check it isn't doing very strange things with descriptor numbers. */ |
| 1348 | last_avail_idx = vq->last_avail_idx; |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1349 | if (unlikely(__get_user(avail_idx, &vq->avail->idx))) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1350 | vq_err(vq, "Failed to access avail idx at %p\n", |
| 1351 | &vq->avail->idx); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1352 | return -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1353 | } |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1354 | vq->avail_idx = vhost16_to_cpu(vq, avail_idx); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1355 | |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1356 | if (unlikely((u16)(vq->avail_idx - last_avail_idx) > vq->num)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1357 | vq_err(vq, "Guest moved used index from %u to %u", |
| 1358 | last_avail_idx, vq->avail_idx); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1359 | return -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
| 1362 | /* If there's nothing new since last we looked, return invalid. */ |
| 1363 | if (vq->avail_idx == last_avail_idx) |
| 1364 | return vq->num; |
| 1365 | |
| 1366 | /* 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] | 1367 | smp_rmb(); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1368 | |
| 1369 | /* Grab the next descriptor number they're advertising, and increment |
| 1370 | * the index we've seen. */ |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1371 | if (unlikely(__get_user(ring_head, |
Michael S. Tsirkin | 8b7347a | 2010-09-19 15:56:30 +0200 | [diff] [blame] | 1372 | &vq->avail->ring[last_avail_idx % vq->num]))) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1373 | vq_err(vq, "Failed to read head: idx %d address %p\n", |
| 1374 | last_avail_idx, |
| 1375 | &vq->avail->ring[last_avail_idx % vq->num]); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1376 | return -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1377 | } |
| 1378 | |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1379 | head = vhost16_to_cpu(vq, ring_head); |
| 1380 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1381 | /* If their number is silly, that's an error. */ |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1382 | if (unlikely(head >= vq->num)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1383 | vq_err(vq, "Guest says index %u > %u is available", |
| 1384 | head, vq->num); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1385 | return -EINVAL; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1386 | } |
| 1387 | |
| 1388 | /* When we start there are none of either input nor output. */ |
| 1389 | *out_num = *in_num = 0; |
| 1390 | if (unlikely(log)) |
| 1391 | *log_num = 0; |
| 1392 | |
| 1393 | i = head; |
| 1394 | do { |
| 1395 | unsigned iov_count = *in_num + *out_num; |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1396 | if (unlikely(i >= vq->num)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1397 | vq_err(vq, "Desc index is %u > %u, head = %u", |
| 1398 | i, vq->num, head); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1399 | return -EINVAL; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1400 | } |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1401 | if (unlikely(++found > vq->num)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1402 | vq_err(vq, "Loop detected: last one at %u " |
| 1403 | "vq size %u head %u\n", |
| 1404 | i, vq->num, head); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1405 | return -EINVAL; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1406 | } |
Michael S. Tsirkin | fcc042a | 2011-03-06 13:33:49 +0200 | [diff] [blame] | 1407 | ret = __copy_from_user(&desc, vq->desc + i, sizeof desc); |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1408 | if (unlikely(ret)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1409 | vq_err(vq, "Failed to get descriptor: idx %d addr %p\n", |
| 1410 | i, vq->desc + i); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1411 | return -EFAULT; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1412 | } |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1413 | if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_INDIRECT)) { |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 1414 | ret = get_indirect(vq, iov, iov_size, |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1415 | out_num, in_num, |
| 1416 | log, log_num, &desc); |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1417 | if (unlikely(ret < 0)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1418 | vq_err(vq, "Failure detected " |
| 1419 | "in indirect descriptor at idx %d\n", i); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1420 | return ret; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1421 | } |
| 1422 | continue; |
| 1423 | } |
| 1424 | |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1425 | ret = translate_desc(vq, vhost64_to_cpu(vq, desc.addr), |
| 1426 | vhost32_to_cpu(vq, desc.len), iov + iov_count, |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1427 | iov_size - iov_count); |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1428 | if (unlikely(ret < 0)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1429 | vq_err(vq, "Translation failure %d descriptor idx %d\n", |
| 1430 | ret, i); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1431 | return ret; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1432 | } |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1433 | if (desc.flags & cpu_to_vhost16(vq, VRING_DESC_F_WRITE)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1434 | /* If this is an input descriptor, |
| 1435 | * increment that count. */ |
| 1436 | *in_num += ret; |
| 1437 | if (unlikely(log)) { |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1438 | log[*log_num].addr = vhost64_to_cpu(vq, desc.addr); |
| 1439 | log[*log_num].len = vhost32_to_cpu(vq, desc.len); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1440 | ++*log_num; |
| 1441 | } |
| 1442 | } else { |
| 1443 | /* If it's an output descriptor, they're all supposed |
| 1444 | * to come before any input descriptors. */ |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 1445 | if (unlikely(*in_num)) { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1446 | vq_err(vq, "Descriptor has out after in: " |
| 1447 | "idx %d\n", i); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 1448 | return -EINVAL; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1449 | } |
| 1450 | *out_num += ret; |
| 1451 | } |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1452 | } while ((i = next_desc(vq, &desc)) != -1); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1453 | |
| 1454 | /* On success, increment avail index. */ |
| 1455 | vq->last_avail_idx++; |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1456 | |
| 1457 | /* Assume notifications from guest are disabled at this point, |
| 1458 | * if they aren't we would need to update avail_event index. */ |
| 1459 | BUG_ON(!(vq->used_flags & VRING_USED_F_NO_NOTIFY)); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1460 | return head; |
| 1461 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1462 | EXPORT_SYMBOL_GPL(vhost_get_vq_desc); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1463 | |
| 1464 | /* Reverse the effect of vhost_get_vq_desc. Useful for error handling. */ |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1465 | void vhost_discard_vq_desc(struct vhost_virtqueue *vq, int n) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1466 | { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1467 | vq->last_avail_idx -= n; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1468 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1469 | EXPORT_SYMBOL_GPL(vhost_discard_vq_desc); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1470 | |
| 1471 | /* After we've used one of their buffers, we tell them about it. We'll then |
| 1472 | * want to notify the guest, using eventfd. */ |
| 1473 | int vhost_add_used(struct vhost_virtqueue *vq, unsigned int head, int len) |
| 1474 | { |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1475 | struct vring_used_elem heads = { |
| 1476 | cpu_to_vhost32(vq, head), |
| 1477 | cpu_to_vhost32(vq, len) |
| 1478 | }; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1479 | |
Jason Wang | c49e4e5 | 2013-09-02 16:40:58 +0800 | [diff] [blame] | 1480 | return vhost_add_used_n(vq, &heads, 1); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1481 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1482 | EXPORT_SYMBOL_GPL(vhost_add_used); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1483 | |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1484 | static int __vhost_add_used_n(struct vhost_virtqueue *vq, |
| 1485 | struct vring_used_elem *heads, |
| 1486 | unsigned count) |
| 1487 | { |
| 1488 | struct vring_used_elem __user *used; |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1489 | u16 old, new; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1490 | int start; |
| 1491 | |
| 1492 | start = vq->last_used_idx % vq->num; |
| 1493 | used = vq->used->ring + start; |
Jason Wang | c49e4e5 | 2013-09-02 16:40:58 +0800 | [diff] [blame] | 1494 | if (count == 1) { |
| 1495 | if (__put_user(heads[0].id, &used->id)) { |
| 1496 | vq_err(vq, "Failed to write used id"); |
| 1497 | return -EFAULT; |
| 1498 | } |
| 1499 | if (__put_user(heads[0].len, &used->len)) { |
| 1500 | vq_err(vq, "Failed to write used len"); |
| 1501 | return -EFAULT; |
| 1502 | } |
| 1503 | } else if (__copy_to_user(used, heads, count * sizeof *used)) { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1504 | vq_err(vq, "Failed to write used"); |
| 1505 | return -EFAULT; |
| 1506 | } |
| 1507 | if (unlikely(vq->log_used)) { |
| 1508 | /* Make sure data is seen before log. */ |
| 1509 | smp_wmb(); |
| 1510 | /* Log used ring entry write. */ |
| 1511 | log_write(vq->log_base, |
| 1512 | vq->log_addr + |
| 1513 | ((void __user *)used - (void __user *)vq->used), |
| 1514 | count * sizeof *used); |
| 1515 | } |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1516 | old = vq->last_used_idx; |
| 1517 | new = (vq->last_used_idx += count); |
| 1518 | /* If the driver never bothers to signal in a very long while, |
| 1519 | * used index might wrap around. If that happens, invalidate |
| 1520 | * signalled_used index we stored. TODO: make sure driver |
| 1521 | * signals at least once in 2^16 and remove this. */ |
| 1522 | if (unlikely((u16)(new - vq->signalled_used) < (u16)(new - old))) |
| 1523 | vq->signalled_used_valid = false; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1524 | return 0; |
| 1525 | } |
| 1526 | |
| 1527 | /* After we've used one of their buffers, we tell them about it. We'll then |
| 1528 | * want to notify the guest, using eventfd. */ |
| 1529 | int vhost_add_used_n(struct vhost_virtqueue *vq, struct vring_used_elem *heads, |
| 1530 | unsigned count) |
| 1531 | { |
| 1532 | int start, n, r; |
| 1533 | |
| 1534 | start = vq->last_used_idx % vq->num; |
| 1535 | n = vq->num - start; |
| 1536 | if (n < count) { |
| 1537 | r = __vhost_add_used_n(vq, heads, n); |
| 1538 | if (r < 0) |
| 1539 | return r; |
| 1540 | heads += n; |
| 1541 | count -= n; |
| 1542 | } |
| 1543 | r = __vhost_add_used_n(vq, heads, count); |
| 1544 | |
| 1545 | /* Make sure buffer is written before we update index. */ |
| 1546 | smp_wmb(); |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1547 | if (__put_user(cpu_to_vhost16(vq, vq->last_used_idx), &vq->used->idx)) { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1548 | vq_err(vq, "Failed to increment used idx"); |
| 1549 | return -EFAULT; |
| 1550 | } |
| 1551 | if (unlikely(vq->log_used)) { |
| 1552 | /* Log used index update. */ |
| 1553 | log_write(vq->log_base, |
| 1554 | vq->log_addr + offsetof(struct vring_used, idx), |
| 1555 | sizeof vq->used->idx); |
| 1556 | if (vq->log_ctx) |
| 1557 | eventfd_signal(vq->log_ctx, 1); |
| 1558 | } |
| 1559 | return r; |
| 1560 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1561 | EXPORT_SYMBOL_GPL(vhost_add_used_n); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1562 | |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1563 | static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1564 | { |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1565 | __u16 old, new; |
| 1566 | __virtio16 event; |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1567 | bool v; |
Michael S. Tsirkin | 0d49935 | 2010-05-11 19:44:17 +0300 | [diff] [blame] | 1568 | /* Flush out used index updates. This is paired |
| 1569 | * with the barrier that the Guest executes when enabling |
| 1570 | * interrupts. */ |
| 1571 | smp_mb(); |
| 1572 | |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 1573 | if (vhost_has_feature(vq, VIRTIO_F_NOTIFY_ON_EMPTY) && |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1574 | unlikely(vq->avail_idx == vq->last_avail_idx)) |
| 1575 | return true; |
| 1576 | |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 1577 | if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1578 | __virtio16 flags; |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1579 | if (__get_user(flags, &vq->avail->flags)) { |
| 1580 | vq_err(vq, "Failed to get flags"); |
| 1581 | return true; |
| 1582 | } |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1583 | return !(flags & cpu_to_vhost16(vq, VRING_AVAIL_F_NO_INTERRUPT)); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1584 | } |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1585 | old = vq->signalled_used; |
| 1586 | v = vq->signalled_used_valid; |
| 1587 | new = vq->signalled_used = vq->last_used_idx; |
| 1588 | vq->signalled_used_valid = true; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1589 | |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1590 | if (unlikely(!v)) |
| 1591 | return true; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1592 | |
Michael S. Tsirkin | 64f7f05 | 2014-12-01 17:39:39 +0200 | [diff] [blame] | 1593 | if (__get_user(event, vhost_used_event(vq))) { |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1594 | vq_err(vq, "Failed to get used event idx"); |
| 1595 | return true; |
| 1596 | } |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1597 | return vring_need_event(vhost16_to_cpu(vq, event), new, old); |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1598 | } |
| 1599 | |
| 1600 | /* This actually signals the guest, using eventfd. */ |
| 1601 | void vhost_signal(struct vhost_dev *dev, struct vhost_virtqueue *vq) |
| 1602 | { |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1603 | /* Signal the Guest tell them we used something up. */ |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1604 | if (vq->call_ctx && vhost_notify(dev, vq)) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1605 | eventfd_signal(vq->call_ctx, 1); |
| 1606 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1607 | EXPORT_SYMBOL_GPL(vhost_signal); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1608 | |
| 1609 | /* And here's the combo meal deal. Supersize me! */ |
| 1610 | void vhost_add_used_and_signal(struct vhost_dev *dev, |
| 1611 | struct vhost_virtqueue *vq, |
| 1612 | unsigned int head, int len) |
| 1613 | { |
| 1614 | vhost_add_used(vq, head, len); |
| 1615 | vhost_signal(dev, vq); |
| 1616 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1617 | EXPORT_SYMBOL_GPL(vhost_add_used_and_signal); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1618 | |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1619 | /* multi-buffer version of vhost_add_used_and_signal */ |
| 1620 | void vhost_add_used_and_signal_n(struct vhost_dev *dev, |
| 1621 | struct vhost_virtqueue *vq, |
| 1622 | struct vring_used_elem *heads, unsigned count) |
| 1623 | { |
| 1624 | vhost_add_used_n(vq, heads, count); |
| 1625 | vhost_signal(dev, vq); |
| 1626 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1627 | EXPORT_SYMBOL_GPL(vhost_add_used_and_signal_n); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1628 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1629 | /* OK, now we need to know about added descriptors. */ |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1630 | bool vhost_enable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1631 | { |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1632 | __virtio16 avail_idx; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1633 | int r; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1634 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1635 | if (!(vq->used_flags & VRING_USED_F_NO_NOTIFY)) |
| 1636 | return false; |
| 1637 | vq->used_flags &= ~VRING_USED_F_NO_NOTIFY; |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 1638 | if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1639 | r = vhost_update_used_flags(vq); |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1640 | if (r) { |
| 1641 | vq_err(vq, "Failed to enable notification at %p: %d\n", |
| 1642 | &vq->used->flags, r); |
| 1643 | return false; |
| 1644 | } |
| 1645 | } else { |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1646 | r = vhost_update_avail_event(vq, vq->avail_idx); |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1647 | if (r) { |
| 1648 | vq_err(vq, "Failed to update avail event index at %p: %d\n", |
| 1649 | vhost_avail_event(vq), r); |
| 1650 | return false; |
| 1651 | } |
| 1652 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1653 | /* They could have slipped one in as we were doing that: make |
| 1654 | * sure it's written, then check again. */ |
Michael S. Tsirkin | 5659338 | 2010-02-01 07:21:02 +0000 | [diff] [blame] | 1655 | smp_mb(); |
Michael S. Tsirkin | 8b7347a | 2010-09-19 15:56:30 +0200 | [diff] [blame] | 1656 | r = __get_user(avail_idx, &vq->avail->idx); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1657 | if (r) { |
| 1658 | vq_err(vq, "Failed to check avail idx at %p: %d\n", |
| 1659 | &vq->avail->idx, r); |
| 1660 | return false; |
| 1661 | } |
| 1662 | |
Michael S. Tsirkin | 3b1bbe8 | 2014-10-24 14:04:47 +0300 | [diff] [blame] | 1663 | return vhost16_to_cpu(vq, avail_idx) != vq->avail_idx; |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1664 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1665 | EXPORT_SYMBOL_GPL(vhost_enable_notify); |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1666 | |
| 1667 | /* We don't need to be notified again. */ |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1668 | void vhost_disable_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq) |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1669 | { |
| 1670 | int r; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1671 | |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1672 | if (vq->used_flags & VRING_USED_F_NO_NOTIFY) |
| 1673 | return; |
| 1674 | vq->used_flags |= VRING_USED_F_NO_NOTIFY; |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 1675 | if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { |
Jason Wang | 2723fea | 2011-06-21 18:04:38 +0800 | [diff] [blame] | 1676 | r = vhost_update_used_flags(vq); |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 1677 | if (r) |
| 1678 | vq_err(vq, "Failed to enable notification at %p: %d\n", |
| 1679 | &vq->used->flags, r); |
| 1680 | } |
Michael S. Tsirkin | 3a4d5c94e | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1681 | } |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 1682 | EXPORT_SYMBOL_GPL(vhost_disable_notify); |
| 1683 | |
| 1684 | static int __init vhost_init(void) |
| 1685 | { |
| 1686 | return 0; |
| 1687 | } |
| 1688 | |
| 1689 | static void __exit vhost_exit(void) |
| 1690 | { |
| 1691 | } |
| 1692 | |
| 1693 | module_init(vhost_init); |
| 1694 | module_exit(vhost_exit); |
| 1695 | |
| 1696 | MODULE_VERSION("0.0.1"); |
| 1697 | MODULE_LICENSE("GPL v2"); |
| 1698 | MODULE_AUTHOR("Michael S. Tsirkin"); |
| 1699 | MODULE_DESCRIPTION("Host kernel accelerator for virtio"); |