2014-05-27 14:05:49 +02:00
|
|
|
/*
|
|
|
|
* vhost-backend
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013 Virtual Open Systems Sarl.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:07 +01:00
|
|
|
#include "qemu/osdep.h"
|
2014-05-27 14:05:49 +02:00
|
|
|
#include "hw/virtio/vhost.h"
|
|
|
|
#include "hw/virtio/vhost-backend.h"
|
|
|
|
#include "qemu/error-report.h"
|
2015-10-06 10:37:27 +02:00
|
|
|
#include "linux/vhost.h"
|
2014-05-27 14:05:49 +02:00
|
|
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
static int vhost_kernel_call(struct vhost_dev *dev, unsigned long int request,
|
|
|
|
void *arg)
|
|
|
|
{
|
|
|
|
int fd = (uintptr_t) dev->opaque;
|
|
|
|
|
|
|
|
assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_KERNEL);
|
|
|
|
|
|
|
|
return ioctl(fd, request, arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_init(struct vhost_dev *dev, void *opaque)
|
|
|
|
{
|
|
|
|
assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_KERNEL);
|
|
|
|
|
|
|
|
dev->opaque = opaque;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_cleanup(struct vhost_dev *dev)
|
|
|
|
{
|
|
|
|
int fd = (uintptr_t) dev->opaque;
|
|
|
|
|
|
|
|
assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_KERNEL);
|
|
|
|
|
|
|
|
return close(fd);
|
|
|
|
}
|
|
|
|
|
2015-10-06 10:37:27 +02:00
|
|
|
static int vhost_kernel_memslots_limit(struct vhost_dev *dev)
|
|
|
|
{
|
|
|
|
int limit = 64;
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (g_file_get_contents("/sys/module/vhost/parameters/max_mem_regions",
|
|
|
|
&s, NULL, NULL)) {
|
|
|
|
uint64_t val = g_ascii_strtoull(s, NULL, 10);
|
|
|
|
if (!((val == G_MAXUINT64 || !val) && errno)) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
error_report("ignoring invalid max_mem_regions value in vhost module:"
|
|
|
|
" %s", s);
|
|
|
|
}
|
|
|
|
return limit;
|
|
|
|
}
|
|
|
|
|
2015-10-09 17:17:28 +02:00
|
|
|
static int vhost_kernel_net_set_backend(struct vhost_dev *dev,
|
|
|
|
struct vhost_vring_file *file)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_NET_SET_BACKEND, file);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_scsi_set_endpoint(struct vhost_dev *dev,
|
|
|
|
struct vhost_scsi_target *target)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SCSI_SET_ENDPOINT, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_scsi_clear_endpoint(struct vhost_dev *dev,
|
|
|
|
struct vhost_scsi_target *target)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SCSI_CLEAR_ENDPOINT, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_scsi_get_abi_version(struct vhost_dev *dev, int *version)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SCSI_GET_ABI_VERSION, version);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_log_base(struct vhost_dev *dev, uint64_t base,
|
|
|
|
struct vhost_log *log)
|
2015-10-09 17:17:23 +02:00
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_LOG_BASE, &base);
|
|
|
|
}
|
|
|
|
|
2015-10-09 17:17:28 +02:00
|
|
|
static int vhost_kernel_set_mem_table(struct vhost_dev *dev,
|
|
|
|
struct vhost_memory *mem)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_MEM_TABLE, mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_vring_addr(struct vhost_dev *dev,
|
|
|
|
struct vhost_vring_addr *addr)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_VRING_ADDR, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_vring_endian(struct vhost_dev *dev,
|
|
|
|
struct vhost_vring_state *ring)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_VRING_ENDIAN, ring);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_vring_num(struct vhost_dev *dev,
|
|
|
|
struct vhost_vring_state *ring)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_VRING_NUM, ring);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_vring_base(struct vhost_dev *dev,
|
|
|
|
struct vhost_vring_state *ring)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_VRING_BASE, ring);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_get_vring_base(struct vhost_dev *dev,
|
|
|
|
struct vhost_vring_state *ring)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_GET_VRING_BASE, ring);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_vring_kick(struct vhost_dev *dev,
|
|
|
|
struct vhost_vring_file *file)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_VRING_KICK, file);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_vring_call(struct vhost_dev *dev,
|
|
|
|
struct vhost_vring_file *file)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_VRING_CALL, file);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_features(struct vhost_dev *dev,
|
|
|
|
uint64_t features)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_FEATURES, &features);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_get_features(struct vhost_dev *dev,
|
|
|
|
uint64_t *features)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_GET_FEATURES, features);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_set_owner(struct vhost_dev *dev)
|
|
|
|
{
|
|
|
|
return vhost_kernel_call(dev, VHOST_SET_OWNER, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_reset_device(struct vhost_dev *dev)
|
|
|
|
{
|
2015-11-11 14:24:37 +01:00
|
|
|
return vhost_kernel_call(dev, VHOST_RESET_OWNER, NULL);
|
2015-10-09 17:17:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int vhost_kernel_get_vq_index(struct vhost_dev *dev, int idx)
|
|
|
|
{
|
|
|
|
assert(idx >= dev->vq_index && idx < dev->vq_index + dev->nvqs);
|
|
|
|
|
|
|
|
return idx - dev->vq_index;
|
|
|
|
}
|
|
|
|
|
2014-05-27 14:05:49 +02:00
|
|
|
static const VhostOps kernel_ops = {
|
|
|
|
.backend_type = VHOST_BACKEND_TYPE_KERNEL,
|
|
|
|
.vhost_backend_init = vhost_kernel_init,
|
2015-09-23 06:19:59 +02:00
|
|
|
.vhost_backend_cleanup = vhost_kernel_cleanup,
|
2015-10-06 10:37:27 +02:00
|
|
|
.vhost_backend_memslots_limit = vhost_kernel_memslots_limit,
|
2015-10-09 17:17:28 +02:00
|
|
|
.vhost_net_set_backend = vhost_kernel_net_set_backend,
|
|
|
|
.vhost_scsi_set_endpoint = vhost_kernel_scsi_set_endpoint,
|
|
|
|
.vhost_scsi_clear_endpoint = vhost_kernel_scsi_clear_endpoint,
|
|
|
|
.vhost_scsi_get_abi_version = vhost_kernel_scsi_get_abi_version,
|
|
|
|
.vhost_set_log_base = vhost_kernel_set_log_base,
|
|
|
|
.vhost_set_mem_table = vhost_kernel_set_mem_table,
|
|
|
|
.vhost_set_vring_addr = vhost_kernel_set_vring_addr,
|
|
|
|
.vhost_set_vring_endian = vhost_kernel_set_vring_endian,
|
|
|
|
.vhost_set_vring_num = vhost_kernel_set_vring_num,
|
|
|
|
.vhost_set_vring_base = vhost_kernel_set_vring_base,
|
|
|
|
.vhost_get_vring_base = vhost_kernel_get_vring_base,
|
|
|
|
.vhost_set_vring_kick = vhost_kernel_set_vring_kick,
|
|
|
|
.vhost_set_vring_call = vhost_kernel_set_vring_call,
|
|
|
|
.vhost_set_features = vhost_kernel_set_features,
|
|
|
|
.vhost_get_features = vhost_kernel_get_features,
|
|
|
|
.vhost_set_owner = vhost_kernel_set_owner,
|
|
|
|
.vhost_reset_device = vhost_kernel_reset_device,
|
|
|
|
.vhost_get_vq_index = vhost_kernel_get_vq_index,
|
2014-05-27 14:05:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int vhost_set_backend_type(struct vhost_dev *dev, VhostBackendType backend_type)
|
|
|
|
{
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
switch (backend_type) {
|
|
|
|
case VHOST_BACKEND_TYPE_KERNEL:
|
|
|
|
dev->vhost_ops = &kernel_ops;
|
|
|
|
break;
|
2014-05-27 14:06:02 +02:00
|
|
|
case VHOST_BACKEND_TYPE_USER:
|
|
|
|
dev->vhost_ops = &user_ops;
|
|
|
|
break;
|
2014-05-27 14:05:49 +02:00
|
|
|
default:
|
2015-02-25 05:22:37 +01:00
|
|
|
error_report("Unknown vhost backend type");
|
2014-05-27 14:05:49 +02:00
|
|
|
r = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|