Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 1 | /* Copyright (C) 2009 Red Hat, Inc. |
| 2 | * Author: Michael S. Tsirkin <mst@redhat.com> |
| 3 | * |
| 4 | * This work is licensed under the terms of the GNU GPL, version 2. |
| 5 | * |
| 6 | * test virtio server in host kernel. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/compat.h> |
| 10 | #include <linux/eventfd.h> |
| 11 | #include <linux/vhost.h> |
| 12 | #include <linux/miscdevice.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/mutex.h> |
| 15 | #include <linux/workqueue.h> |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 16 | #include <linux/file.h> |
| 17 | #include <linux/slab.h> |
| 18 | |
| 19 | #include "test.h" |
Asias He | 6ac1afb | 2013-05-06 16:38:21 +0800 | [diff] [blame] | 20 | #include "vhost.h" |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 21 | |
| 22 | /* Max number of bytes transferred before requeueing the job. |
| 23 | * Using this limit prevents one virtqueue from starving others. */ |
| 24 | #define VHOST_TEST_WEIGHT 0x80000 |
| 25 | |
Tiwei Bie | aac633e | 2019-08-28 13:37:00 +0800 | [diff] [blame] | 26 | /* Max number of packets transferred before requeueing the job. |
| 27 | * Using this limit prevents one virtqueue from starving others with |
| 28 | * pkts. |
| 29 | */ |
| 30 | #define VHOST_TEST_PKT_WEIGHT 256 |
| 31 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 32 | enum { |
| 33 | VHOST_TEST_VQ = 0, |
| 34 | VHOST_TEST_VQ_MAX = 1, |
| 35 | }; |
| 36 | |
| 37 | struct vhost_test { |
| 38 | struct vhost_dev dev; |
| 39 | struct vhost_virtqueue vqs[VHOST_TEST_VQ_MAX]; |
| 40 | }; |
| 41 | |
| 42 | /* Expects to be always run from workqueue - which acts as |
| 43 | * read-size critical section for our kind of RCU. */ |
| 44 | static void handle_vq(struct vhost_test *n) |
| 45 | { |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 46 | struct vhost_virtqueue *vq = &n->vqs[VHOST_TEST_VQ]; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 47 | unsigned out, in; |
| 48 | int head; |
| 49 | size_t len, total_len = 0; |
| 50 | void *private; |
| 51 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 52 | mutex_lock(&vq->mutex); |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 53 | private = vq->private_data; |
| 54 | if (!private) { |
| 55 | mutex_unlock(&vq->mutex); |
| 56 | return; |
| 57 | } |
| 58 | |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 59 | vhost_disable_notify(&n->dev, vq); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 60 | |
| 61 | for (;;) { |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 62 | head = vhost_get_vq_desc(vq, vq->iov, |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 63 | ARRAY_SIZE(vq->iov), |
| 64 | &out, &in, |
| 65 | NULL, NULL); |
| 66 | /* On error, stop handling until the next kick. */ |
| 67 | if (unlikely(head < 0)) |
| 68 | break; |
| 69 | /* Nothing new? Wait for eventfd to tell us they refilled. */ |
| 70 | if (head == vq->num) { |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 71 | if (unlikely(vhost_enable_notify(&n->dev, vq))) { |
| 72 | vhost_disable_notify(&n->dev, vq); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 73 | continue; |
| 74 | } |
| 75 | break; |
| 76 | } |
| 77 | if (in) { |
| 78 | vq_err(vq, "Unexpected descriptor format for TX: " |
| 79 | "out %d, int %d\n", out, in); |
| 80 | break; |
| 81 | } |
| 82 | len = iov_length(vq->iov, out); |
| 83 | /* Sanity check */ |
| 84 | if (!len) { |
| 85 | vq_err(vq, "Unexpected 0 len for TX\n"); |
| 86 | break; |
| 87 | } |
| 88 | vhost_add_used_and_signal(&n->dev, vq, head, 0); |
| 89 | total_len += len; |
Tiwei Bie | aac633e | 2019-08-28 13:37:00 +0800 | [diff] [blame] | 90 | if (unlikely(vhost_exceeds_weight(vq, 0, total_len))) |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 91 | break; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | mutex_unlock(&vq->mutex); |
| 95 | } |
| 96 | |
| 97 | static void handle_vq_kick(struct vhost_work *work) |
| 98 | { |
| 99 | struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue, |
| 100 | poll.work); |
| 101 | struct vhost_test *n = container_of(vq->dev, struct vhost_test, dev); |
| 102 | |
| 103 | handle_vq(n); |
| 104 | } |
| 105 | |
| 106 | static int vhost_test_open(struct inode *inode, struct file *f) |
| 107 | { |
| 108 | struct vhost_test *n = kmalloc(sizeof *n, GFP_KERNEL); |
| 109 | struct vhost_dev *dev; |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 110 | struct vhost_virtqueue **vqs; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 111 | |
| 112 | if (!n) |
| 113 | return -ENOMEM; |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 114 | vqs = kmalloc(VHOST_TEST_VQ_MAX * sizeof(*vqs), GFP_KERNEL); |
| 115 | if (!vqs) { |
| 116 | kfree(n); |
| 117 | return -ENOMEM; |
| 118 | } |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 119 | |
| 120 | dev = &n->dev; |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 121 | vqs[VHOST_TEST_VQ] = &n->vqs[VHOST_TEST_VQ]; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 122 | n->vqs[VHOST_TEST_VQ].handle_kick = handle_vq_kick; |
Tiwei Bie | aac633e | 2019-08-28 13:37:00 +0800 | [diff] [blame] | 123 | vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX, |
| 124 | VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 125 | |
| 126 | f->private_data = n; |
| 127 | |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | static void *vhost_test_stop_vq(struct vhost_test *n, |
| 132 | struct vhost_virtqueue *vq) |
| 133 | { |
| 134 | void *private; |
| 135 | |
| 136 | mutex_lock(&vq->mutex); |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 137 | private = vq->private_data; |
| 138 | vq->private_data = NULL; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 139 | mutex_unlock(&vq->mutex); |
| 140 | return private; |
| 141 | } |
| 142 | |
| 143 | static void vhost_test_stop(struct vhost_test *n, void **privatep) |
| 144 | { |
| 145 | *privatep = vhost_test_stop_vq(n, n->vqs + VHOST_TEST_VQ); |
| 146 | } |
| 147 | |
| 148 | static void vhost_test_flush_vq(struct vhost_test *n, int index) |
| 149 | { |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 150 | vhost_poll_flush(&n->vqs[index].poll); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | static void vhost_test_flush(struct vhost_test *n) |
| 154 | { |
| 155 | vhost_test_flush_vq(n, VHOST_TEST_VQ); |
| 156 | } |
| 157 | |
| 158 | static int vhost_test_release(struct inode *inode, struct file *f) |
| 159 | { |
| 160 | struct vhost_test *n = f->private_data; |
| 161 | void *private; |
| 162 | |
| 163 | vhost_test_stop(n, &private); |
| 164 | vhost_test_flush(n); |
Zhi Yong Wu | 5e7045b0 | 2012-04-09 10:42:13 +0300 | [diff] [blame] | 165 | vhost_dev_cleanup(&n->dev, false); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 166 | /* We do an extra flush before freeing memory, |
| 167 | * since jobs can re-queue themselves. */ |
| 168 | vhost_test_flush(n); |
| 169 | kfree(n); |
| 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | static long vhost_test_run(struct vhost_test *n, int test) |
| 174 | { |
| 175 | void *priv, *oldpriv; |
| 176 | struct vhost_virtqueue *vq; |
| 177 | int r, index; |
| 178 | |
| 179 | if (test < 0 || test > 1) |
| 180 | return -EINVAL; |
| 181 | |
| 182 | mutex_lock(&n->dev.mutex); |
| 183 | r = vhost_dev_check_owner(&n->dev); |
| 184 | if (r) |
| 185 | goto err; |
| 186 | |
| 187 | for (index = 0; index < n->dev.nvqs; ++index) { |
| 188 | /* Verify that ring has been setup correctly. */ |
| 189 | if (!vhost_vq_access_ok(&n->vqs[index])) { |
| 190 | r = -EFAULT; |
| 191 | goto err; |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | for (index = 0; index < n->dev.nvqs; ++index) { |
| 196 | vq = n->vqs + index; |
| 197 | mutex_lock(&vq->mutex); |
| 198 | priv = test ? n : NULL; |
| 199 | |
| 200 | /* start polling new socket */ |
Asias He | 22fa90c | 2013-05-07 14:54:36 +0800 | [diff] [blame] | 201 | oldpriv = vq->private_data; |
| 202 | vq->private_data = priv; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 203 | |
Greg Kurz | 80f7d03 | 2016-02-16 15:59:44 +0100 | [diff] [blame] | 204 | r = vhost_vq_init_access(&n->vqs[index]); |
Jason Wang | f59281d | 2011-06-21 18:04:27 +0800 | [diff] [blame] | 205 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 206 | mutex_unlock(&vq->mutex); |
| 207 | |
Jason Wang | f59281d | 2011-06-21 18:04:27 +0800 | [diff] [blame] | 208 | if (r) |
| 209 | goto err; |
| 210 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 211 | if (oldpriv) { |
| 212 | vhost_test_flush_vq(n, index); |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | mutex_unlock(&n->dev.mutex); |
| 217 | return 0; |
| 218 | |
| 219 | err: |
| 220 | mutex_unlock(&n->dev.mutex); |
| 221 | return r; |
| 222 | } |
| 223 | |
| 224 | static long vhost_test_reset_owner(struct vhost_test *n) |
| 225 | { |
| 226 | void *priv = NULL; |
| 227 | long err; |
Michael S. Tsirkin | 446374d | 2016-08-15 04:28:12 +0300 | [diff] [blame] | 228 | struct vhost_umem *umem; |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 229 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 230 | mutex_lock(&n->dev.mutex); |
| 231 | err = vhost_dev_check_owner(&n->dev); |
| 232 | if (err) |
| 233 | goto done; |
Michael S. Tsirkin | 446374d | 2016-08-15 04:28:12 +0300 | [diff] [blame] | 234 | umem = vhost_dev_reset_owner_prepare(); |
| 235 | if (!umem) { |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 236 | err = -ENOMEM; |
| 237 | goto done; |
| 238 | } |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 239 | vhost_test_stop(n, &priv); |
| 240 | vhost_test_flush(n); |
Michael S. Tsirkin | 446374d | 2016-08-15 04:28:12 +0300 | [diff] [blame] | 241 | vhost_dev_reset_owner(&n->dev, umem); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 242 | done: |
| 243 | mutex_unlock(&n->dev.mutex); |
| 244 | return err; |
| 245 | } |
| 246 | |
| 247 | static int vhost_test_set_features(struct vhost_test *n, u64 features) |
| 248 | { |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 249 | struct vhost_virtqueue *vq; |
| 250 | |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 251 | mutex_lock(&n->dev.mutex); |
| 252 | if ((features & (1 << VHOST_F_LOG_ALL)) && |
| 253 | !vhost_log_access_ok(&n->dev)) { |
| 254 | mutex_unlock(&n->dev.mutex); |
| 255 | return -EFAULT; |
| 256 | } |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 257 | vq = &n->vqs[VHOST_TEST_VQ]; |
| 258 | mutex_lock(&vq->mutex); |
| 259 | vq->acked_features = features; |
| 260 | mutex_unlock(&vq->mutex); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 261 | mutex_unlock(&n->dev.mutex); |
| 262 | return 0; |
| 263 | } |
| 264 | |
| 265 | static long vhost_test_ioctl(struct file *f, unsigned int ioctl, |
| 266 | unsigned long arg) |
| 267 | { |
| 268 | struct vhost_test *n = f->private_data; |
| 269 | void __user *argp = (void __user *)arg; |
| 270 | u64 __user *featurep = argp; |
| 271 | int test; |
| 272 | u64 features; |
| 273 | int r; |
| 274 | switch (ioctl) { |
| 275 | case VHOST_TEST_RUN: |
| 276 | if (copy_from_user(&test, argp, sizeof test)) |
| 277 | return -EFAULT; |
| 278 | return vhost_test_run(n, test); |
| 279 | case VHOST_GET_FEATURES: |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 280 | features = VHOST_FEATURES; |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 281 | if (copy_to_user(featurep, &features, sizeof features)) |
| 282 | return -EFAULT; |
| 283 | return 0; |
| 284 | case VHOST_SET_FEATURES: |
Michael S. Tsirkin | 4e9fa50 | 2015-09-09 22:24:56 +0300 | [diff] [blame] | 285 | printk(KERN_ERR "1\n"); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 286 | if (copy_from_user(&features, featurep, sizeof features)) |
| 287 | return -EFAULT; |
Michael S. Tsirkin | 4e9fa50 | 2015-09-09 22:24:56 +0300 | [diff] [blame] | 288 | printk(KERN_ERR "2\n"); |
Michael S. Tsirkin | 09a34c8 | 2013-07-07 17:12:36 +0300 | [diff] [blame] | 289 | if (features & ~VHOST_FEATURES) |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 290 | return -EOPNOTSUPP; |
Michael S. Tsirkin | 4e9fa50 | 2015-09-09 22:24:56 +0300 | [diff] [blame] | 291 | printk(KERN_ERR "3\n"); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 292 | return vhost_test_set_features(n, features); |
| 293 | case VHOST_RESET_OWNER: |
| 294 | return vhost_test_reset_owner(n); |
| 295 | default: |
| 296 | mutex_lock(&n->dev.mutex); |
Michael S. Tsirkin | 73640c9 | 2013-03-18 13:22:18 +1030 | [diff] [blame] | 297 | r = vhost_dev_ioctl(&n->dev, ioctl, argp); |
| 298 | if (r == -ENOIOCTLCMD) |
| 299 | r = vhost_vring_ioctl(&n->dev, ioctl, argp); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 300 | vhost_test_flush(n); |
| 301 | mutex_unlock(&n->dev.mutex); |
| 302 | return r; |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | #ifdef CONFIG_COMPAT |
| 307 | static long vhost_test_compat_ioctl(struct file *f, unsigned int ioctl, |
| 308 | unsigned long arg) |
| 309 | { |
| 310 | return vhost_test_ioctl(f, ioctl, (unsigned long)compat_ptr(arg)); |
| 311 | } |
| 312 | #endif |
| 313 | |
| 314 | static const struct file_operations vhost_test_fops = { |
| 315 | .owner = THIS_MODULE, |
| 316 | .release = vhost_test_release, |
| 317 | .unlocked_ioctl = vhost_test_ioctl, |
| 318 | #ifdef CONFIG_COMPAT |
| 319 | .compat_ioctl = vhost_test_compat_ioctl, |
| 320 | #endif |
| 321 | .open = vhost_test_open, |
| 322 | .llseek = noop_llseek, |
| 323 | }; |
| 324 | |
| 325 | static struct miscdevice vhost_test_misc = { |
| 326 | MISC_DYNAMIC_MINOR, |
| 327 | "vhost-test", |
| 328 | &vhost_test_fops, |
| 329 | }; |
PrasannaKumar Muralidharan | ca75d60 | 2016-08-25 22:30:49 +0530 | [diff] [blame] | 330 | module_misc_device(vhost_test_misc); |
Michael S. Tsirkin | 71ccc21 | 2010-11-29 19:09:01 +0200 | [diff] [blame] | 331 | |
| 332 | MODULE_VERSION("0.0.1"); |
| 333 | MODULE_LICENSE("GPL v2"); |
| 334 | MODULE_AUTHOR("Michael S. Tsirkin"); |
| 335 | MODULE_DESCRIPTION("Host kernel side for virtio simulator"); |