1 /* Copyright (C) 2009 Red Hat, Inc.
2 * Author: Michael S. Tsirkin <mst@redhat.com>
4 * This work is licensed under the terms of the GNU GPL, version 2.
6 * test virtio server in host kernel.
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>
16 #include <linux/file.h>
17 #include <linux/slab.h>
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
28 VHOST_TEST_VQ_MAX
= 1,
33 struct vhost_virtqueue vqs
[VHOST_TEST_VQ_MAX
];
36 /* Expects to be always run from workqueue - which acts as
37 * read-size critical section for our kind of RCU. */
38 static void handle_vq(struct vhost_test
*n
)
40 struct vhost_virtqueue
*vq
= &n
->vqs
[VHOST_TEST_VQ
];
43 size_t len
, total_len
= 0;
46 mutex_lock(&vq
->mutex
);
47 private = vq
->private_data
;
49 mutex_unlock(&vq
->mutex
);
53 vhost_disable_notify(&n
->dev
, vq
);
56 head
= vhost_get_vq_desc(vq
, vq
->iov
,
60 /* On error, stop handling until the next kick. */
61 if (unlikely(head
< 0))
63 /* Nothing new? Wait for eventfd to tell us they refilled. */
64 if (head
== vq
->num
) {
65 if (unlikely(vhost_enable_notify(&n
->dev
, vq
))) {
66 vhost_disable_notify(&n
->dev
, vq
);
72 vq_err(vq
, "Unexpected descriptor format for TX: "
73 "out %d, int %d\n", out
, in
);
76 len
= iov_length(vq
->iov
, out
);
79 vq_err(vq
, "Unexpected 0 len for TX\n");
82 vhost_add_used_and_signal(&n
->dev
, vq
, head
, 0);
84 if (unlikely(total_len
>= VHOST_TEST_WEIGHT
)) {
85 vhost_poll_queue(&vq
->poll
);
90 mutex_unlock(&vq
->mutex
);
93 static void handle_vq_kick(struct vhost_work
*work
)
95 struct vhost_virtqueue
*vq
= container_of(work
, struct vhost_virtqueue
,
97 struct vhost_test
*n
= container_of(vq
->dev
, struct vhost_test
, dev
);
102 static int vhost_test_open(struct inode
*inode
, struct file
*f
)
104 struct vhost_test
*n
= kmalloc(sizeof *n
, GFP_KERNEL
);
105 struct vhost_dev
*dev
;
106 struct vhost_virtqueue
**vqs
;
110 vqs
= kmalloc(VHOST_TEST_VQ_MAX
* sizeof(*vqs
), GFP_KERNEL
);
117 vqs
[VHOST_TEST_VQ
] = &n
->vqs
[VHOST_TEST_VQ
];
118 n
->vqs
[VHOST_TEST_VQ
].handle_kick
= handle_vq_kick
;
119 vhost_dev_init(dev
, vqs
, VHOST_TEST_VQ_MAX
);
126 static void *vhost_test_stop_vq(struct vhost_test
*n
,
127 struct vhost_virtqueue
*vq
)
131 mutex_lock(&vq
->mutex
);
132 private = vq
->private_data
;
133 vq
->private_data
= NULL
;
134 mutex_unlock(&vq
->mutex
);
138 static void vhost_test_stop(struct vhost_test
*n
, void **privatep
)
140 *privatep
= vhost_test_stop_vq(n
, n
->vqs
+ VHOST_TEST_VQ
);
143 static void vhost_test_flush_vq(struct vhost_test
*n
, int index
)
145 vhost_poll_flush(&n
->vqs
[index
].poll
);
148 static void vhost_test_flush(struct vhost_test
*n
)
150 vhost_test_flush_vq(n
, VHOST_TEST_VQ
);
153 static int vhost_test_release(struct inode
*inode
, struct file
*f
)
155 struct vhost_test
*n
= f
->private_data
;
158 vhost_test_stop(n
, &private);
160 vhost_dev_cleanup(&n
->dev
, false);
161 /* We do an extra flush before freeing memory,
162 * since jobs can re-queue themselves. */
168 static long vhost_test_run(struct vhost_test
*n
, int test
)
170 void *priv
, *oldpriv
;
171 struct vhost_virtqueue
*vq
;
174 if (test
< 0 || test
> 1)
177 mutex_lock(&n
->dev
.mutex
);
178 r
= vhost_dev_check_owner(&n
->dev
);
182 for (index
= 0; index
< n
->dev
.nvqs
; ++index
) {
183 /* Verify that ring has been setup correctly. */
184 if (!vhost_vq_access_ok(&n
->vqs
[index
])) {
190 for (index
= 0; index
< n
->dev
.nvqs
; ++index
) {
192 mutex_lock(&vq
->mutex
);
193 priv
= test
? n
: NULL
;
195 /* start polling new socket */
196 oldpriv
= vq
->private_data
;
197 vq
->private_data
= priv
;
199 r
= vhost_init_used(&n
->vqs
[index
]);
201 mutex_unlock(&vq
->mutex
);
207 vhost_test_flush_vq(n
, index
);
211 mutex_unlock(&n
->dev
.mutex
);
215 mutex_unlock(&n
->dev
.mutex
);
219 static long vhost_test_reset_owner(struct vhost_test
*n
)
223 struct vhost_memory
*memory
;
225 mutex_lock(&n
->dev
.mutex
);
226 err
= vhost_dev_check_owner(&n
->dev
);
229 memory
= vhost_dev_reset_owner_prepare();
234 vhost_test_stop(n
, &priv
);
236 vhost_dev_reset_owner(&n
->dev
, memory
);
238 mutex_unlock(&n
->dev
.mutex
);
242 static int vhost_test_set_features(struct vhost_test
*n
, u64 features
)
244 struct vhost_virtqueue
*vq
;
246 mutex_lock(&n
->dev
.mutex
);
247 if ((features
& (1 << VHOST_F_LOG_ALL
)) &&
248 !vhost_log_access_ok(&n
->dev
)) {
249 mutex_unlock(&n
->dev
.mutex
);
252 vq
= &n
->vqs
[VHOST_TEST_VQ
];
253 mutex_lock(&vq
->mutex
);
254 vq
->acked_features
= features
;
255 mutex_unlock(&vq
->mutex
);
256 mutex_unlock(&n
->dev
.mutex
);
260 static long vhost_test_ioctl(struct file
*f
, unsigned int ioctl
,
263 struct vhost_test
*n
= f
->private_data
;
264 void __user
*argp
= (void __user
*)arg
;
265 u64 __user
*featurep
= argp
;
271 if (copy_from_user(&test
, argp
, sizeof test
))
273 return vhost_test_run(n
, test
);
274 case VHOST_GET_FEATURES
:
275 features
= VHOST_FEATURES
;
276 if (copy_to_user(featurep
, &features
, sizeof features
))
279 case VHOST_SET_FEATURES
:
280 if (copy_from_user(&features
, featurep
, sizeof features
))
282 if (features
& ~VHOST_FEATURES
)
284 return vhost_test_set_features(n
, features
);
285 case VHOST_RESET_OWNER
:
286 return vhost_test_reset_owner(n
);
288 mutex_lock(&n
->dev
.mutex
);
289 r
= vhost_dev_ioctl(&n
->dev
, ioctl
, argp
);
290 if (r
== -ENOIOCTLCMD
)
291 r
= vhost_vring_ioctl(&n
->dev
, ioctl
, argp
);
293 mutex_unlock(&n
->dev
.mutex
);
299 static long vhost_test_compat_ioctl(struct file
*f
, unsigned int ioctl
,
302 return vhost_test_ioctl(f
, ioctl
, (unsigned long)compat_ptr(arg
));
306 static const struct file_operations vhost_test_fops
= {
307 .owner
= THIS_MODULE
,
308 .release
= vhost_test_release
,
309 .unlocked_ioctl
= vhost_test_ioctl
,
311 .compat_ioctl
= vhost_test_compat_ioctl
,
313 .open
= vhost_test_open
,
314 .llseek
= noop_llseek
,
317 static struct miscdevice vhost_test_misc
= {
323 static int vhost_test_init(void)
325 return misc_register(&vhost_test_misc
);
327 module_init(vhost_test_init
);
329 static void vhost_test_exit(void)
331 misc_deregister(&vhost_test_misc
);
333 module_exit(vhost_test_exit
);
335 MODULE_VERSION("0.0.1");
336 MODULE_LICENSE("GPL v2");
337 MODULE_AUTHOR("Michael S. Tsirkin");
338 MODULE_DESCRIPTION("Host kernel side for virtio simulator");