Add vhost-backend and VhostBackendType
Use vhost_set_backend_type to initialise a proper vhost_ops structure. In vhost_net_init and vhost_net_start_one call conditionally TAP related initialisation depending on the vhost backend type. Signed-off-by: Antonios Motakis <a.motakis@virtualopensystems.com> Signed-off-by: Nikolay Nikolaev <n.nikolaev@virtualopensystems.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
24d1eb33eb
commit
1a1bfac9ee
@ -96,6 +96,7 @@ static int vhost_net_get_fd(NetClientState *backend)
|
|||||||
struct vhost_net *vhost_net_init(VhostNetOptions *options)
|
struct vhost_net *vhost_net_init(VhostNetOptions *options)
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
|
bool backend_kernel = options->backend_type == VHOST_BACKEND_TYPE_KERNEL;
|
||||||
struct vhost_net *net = g_malloc(sizeof *net);
|
struct vhost_net *net = g_malloc(sizeof *net);
|
||||||
|
|
||||||
if (!options->net_backend) {
|
if (!options->net_backend) {
|
||||||
@ -103,20 +104,25 @@ struct vhost_net *vhost_net_init(VhostNetOptions *options)
|
|||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
r = vhost_net_get_fd(options->net_backend);
|
if (backend_kernel) {
|
||||||
if (r < 0) {
|
r = vhost_net_get_fd(options->net_backend);
|
||||||
goto fail;
|
if (r < 0) {
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
net->dev.backend_features = qemu_has_vnet_hdr(options->net_backend)
|
||||||
|
? 0 : (1 << VHOST_NET_F_VIRTIO_NET_HDR);
|
||||||
|
net->backend = r;
|
||||||
|
} else {
|
||||||
|
net->dev.backend_features = 0;
|
||||||
|
net->backend = -1;
|
||||||
}
|
}
|
||||||
net->nc = options->net_backend;
|
net->nc = options->net_backend;
|
||||||
net->dev.backend_features = qemu_has_vnet_hdr(options->net_backend) ? 0 :
|
|
||||||
(1 << VHOST_NET_F_VIRTIO_NET_HDR);
|
|
||||||
net->backend = r;
|
|
||||||
|
|
||||||
net->dev.nvqs = 2;
|
net->dev.nvqs = 2;
|
||||||
net->dev.vqs = net->vqs;
|
net->dev.vqs = net->vqs;
|
||||||
|
|
||||||
r = vhost_dev_init(&net->dev, options->opaque,
|
r = vhost_dev_init(&net->dev, options->opaque,
|
||||||
options->force);
|
options->backend_type, options->force);
|
||||||
if (r < 0) {
|
if (r < 0) {
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
@ -124,13 +130,15 @@ struct vhost_net *vhost_net_init(VhostNetOptions *options)
|
|||||||
sizeof(struct virtio_net_hdr_mrg_rxbuf))) {
|
sizeof(struct virtio_net_hdr_mrg_rxbuf))) {
|
||||||
net->dev.features &= ~(1 << VIRTIO_NET_F_MRG_RXBUF);
|
net->dev.features &= ~(1 << VIRTIO_NET_F_MRG_RXBUF);
|
||||||
}
|
}
|
||||||
if (~net->dev.features & net->dev.backend_features) {
|
if (backend_kernel) {
|
||||||
fprintf(stderr, "vhost lacks feature mask %" PRIu64 " for backend\n",
|
if (~net->dev.features & net->dev.backend_features) {
|
||||||
(uint64_t)(~net->dev.features & net->dev.backend_features));
|
fprintf(stderr, "vhost lacks feature mask %" PRIu64
|
||||||
vhost_dev_cleanup(&net->dev);
|
" for backend\n",
|
||||||
goto fail;
|
(uint64_t)(~net->dev.features & net->dev.backend_features));
|
||||||
|
vhost_dev_cleanup(&net->dev);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set sane init value. Override when guest acks. */
|
/* Set sane init value. Override when guest acks. */
|
||||||
vhost_net_ack_features(net, 0);
|
vhost_net_ack_features(net, 0);
|
||||||
return net;
|
return net;
|
||||||
@ -173,23 +181,29 @@ static int vhost_net_start_one(struct vhost_net *net,
|
|||||||
net->nc->info->poll(net->nc, false);
|
net->nc->info->poll(net->nc, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
qemu_set_fd_handler(net->backend, NULL, NULL, NULL);
|
if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
|
||||||
file.fd = net->backend;
|
qemu_set_fd_handler(net->backend, NULL, NULL, NULL);
|
||||||
for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
|
file.fd = net->backend;
|
||||||
const VhostOps *vhost_ops = net->dev.vhost_ops;
|
for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
|
||||||
r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND, &file);
|
const VhostOps *vhost_ops = net->dev.vhost_ops;
|
||||||
if (r < 0) {
|
r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
|
||||||
r = -errno;
|
&file);
|
||||||
goto fail;
|
if (r < 0) {
|
||||||
|
r = -errno;
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
fail:
|
fail:
|
||||||
file.fd = -1;
|
file.fd = -1;
|
||||||
while (file.index-- > 0) {
|
if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
|
||||||
const VhostOps *vhost_ops = net->dev.vhost_ops;
|
while (file.index-- > 0) {
|
||||||
int r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND, &file);
|
const VhostOps *vhost_ops = net->dev.vhost_ops;
|
||||||
assert(r >= 0);
|
int r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
|
||||||
|
&file);
|
||||||
|
assert(r >= 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (net->nc->info->poll) {
|
if (net->nc->info->poll) {
|
||||||
net->nc->info->poll(net->nc, true);
|
net->nc->info->poll(net->nc, true);
|
||||||
@ -210,10 +224,13 @@ static void vhost_net_stop_one(struct vhost_net *net,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
|
if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
|
||||||
const VhostOps *vhost_ops = net->dev.vhost_ops;
|
for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
|
||||||
int r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND, &file);
|
const VhostOps *vhost_ops = net->dev.vhost_ops;
|
||||||
assert(r >= 0);
|
int r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
|
||||||
|
&file);
|
||||||
|
assert(r >= 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (net->nc->info->poll) {
|
if (net->nc->info->poll) {
|
||||||
net->nc->info->poll(net->nc, true);
|
net->nc->info->poll(net->nc, true);
|
||||||
|
@ -234,7 +234,7 @@ static void vhost_scsi_realize(DeviceState *dev, Error **errp)
|
|||||||
s->dev.vq_index = 0;
|
s->dev.vq_index = 0;
|
||||||
|
|
||||||
ret = vhost_dev_init(&s->dev, (void *)(uintptr_t)vhostfd,
|
ret = vhost_dev_init(&s->dev, (void *)(uintptr_t)vhostfd,
|
||||||
true);
|
VHOST_BACKEND_TYPE_KERNEL, true);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
error_setg(errp, "vhost-scsi: vhost initialization failed: %s",
|
error_setg(errp, "vhost-scsi: vhost initialization failed: %s",
|
||||||
strerror(-ret));
|
strerror(-ret));
|
||||||
|
@ -5,4 +5,4 @@ common-obj-y += virtio-mmio.o
|
|||||||
common-obj-$(CONFIG_VIRTIO_BLK_DATA_PLANE) += dataplane/
|
common-obj-$(CONFIG_VIRTIO_BLK_DATA_PLANE) += dataplane/
|
||||||
|
|
||||||
obj-y += virtio.o virtio-balloon.o
|
obj-y += virtio.o virtio-balloon.o
|
||||||
obj-$(CONFIG_LINUX) += vhost.o
|
obj-$(CONFIG_LINUX) += vhost.o vhost-backend.o
|
||||||
|
66
hw/virtio/vhost-backend.c
Normal file
66
hw/virtio/vhost-backend.c
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
/*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "hw/virtio/vhost.h"
|
||||||
|
#include "hw/virtio/vhost-backend.h"
|
||||||
|
#include "qemu/error-report.h"
|
||||||
|
|
||||||
|
#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);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const VhostOps kernel_ops = {
|
||||||
|
.backend_type = VHOST_BACKEND_TYPE_KERNEL,
|
||||||
|
.vhost_call = vhost_kernel_call,
|
||||||
|
.vhost_backend_init = vhost_kernel_init,
|
||||||
|
.vhost_backend_cleanup = vhost_kernel_cleanup
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
default:
|
||||||
|
error_report("Unknown vhost backend type\n");
|
||||||
|
r = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return r;
|
||||||
|
}
|
@ -808,11 +808,15 @@ static void vhost_virtqueue_cleanup(struct vhost_virtqueue *vq)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
|
int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
|
||||||
bool force)
|
VhostBackendType backend_type, bool force)
|
||||||
{
|
{
|
||||||
uint64_t features;
|
uint64_t features;
|
||||||
int i, r;
|
int i, r;
|
||||||
|
|
||||||
|
if (vhost_set_backend_type(hdev, backend_type) < 0) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (hdev->vhost_ops->vhost_backend_init(hdev, opaque) < 0) {
|
if (hdev->vhost_ops->vhost_backend_init(hdev, opaque) < 0) {
|
||||||
return -errno;
|
return -errno;
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,13 @@
|
|||||||
#ifndef VHOST_BACKEND_H_
|
#ifndef VHOST_BACKEND_H_
|
||||||
#define VHOST_BACKEND_H_
|
#define VHOST_BACKEND_H_
|
||||||
|
|
||||||
|
typedef enum VhostBackendType {
|
||||||
|
VHOST_BACKEND_TYPE_NONE = 0,
|
||||||
|
VHOST_BACKEND_TYPE_KERNEL = 1,
|
||||||
|
VHOST_BACKEND_TYPE_USER = 2,
|
||||||
|
VHOST_BACKEND_TYPE_MAX = 3,
|
||||||
|
} VhostBackendType;
|
||||||
|
|
||||||
struct vhost_dev;
|
struct vhost_dev;
|
||||||
|
|
||||||
typedef int (*vhost_call)(struct vhost_dev *dev, unsigned long int request,
|
typedef int (*vhost_call)(struct vhost_dev *dev, unsigned long int request,
|
||||||
@ -19,9 +26,13 @@ typedef int (*vhost_backend_init)(struct vhost_dev *dev, void *opaque);
|
|||||||
typedef int (*vhost_backend_cleanup)(struct vhost_dev *dev);
|
typedef int (*vhost_backend_cleanup)(struct vhost_dev *dev);
|
||||||
|
|
||||||
typedef struct VhostOps {
|
typedef struct VhostOps {
|
||||||
|
VhostBackendType backend_type;
|
||||||
vhost_call vhost_call;
|
vhost_call vhost_call;
|
||||||
vhost_backend_init vhost_backend_init;
|
vhost_backend_init vhost_backend_init;
|
||||||
vhost_backend_cleanup vhost_backend_cleanup;
|
vhost_backend_cleanup vhost_backend_cleanup;
|
||||||
} VhostOps;
|
} VhostOps;
|
||||||
|
|
||||||
|
int vhost_set_backend_type(struct vhost_dev *dev,
|
||||||
|
VhostBackendType backend_type);
|
||||||
|
|
||||||
#endif /* VHOST_BACKEND_H_ */
|
#endif /* VHOST_BACKEND_H_ */
|
||||||
|
@ -31,7 +31,6 @@ typedef unsigned long vhost_log_chunk_t;
|
|||||||
struct vhost_memory;
|
struct vhost_memory;
|
||||||
struct vhost_dev {
|
struct vhost_dev {
|
||||||
MemoryListener memory_listener;
|
MemoryListener memory_listener;
|
||||||
int control;
|
|
||||||
struct vhost_memory *mem;
|
struct vhost_memory *mem;
|
||||||
int n_mem_sections;
|
int n_mem_sections;
|
||||||
MemoryRegionSection *mem_sections;
|
MemoryRegionSection *mem_sections;
|
||||||
@ -51,10 +50,11 @@ struct vhost_dev {
|
|||||||
hwaddr mem_changed_start_addr;
|
hwaddr mem_changed_start_addr;
|
||||||
hwaddr mem_changed_end_addr;
|
hwaddr mem_changed_end_addr;
|
||||||
const VhostOps *vhost_ops;
|
const VhostOps *vhost_ops;
|
||||||
|
void *opaque;
|
||||||
};
|
};
|
||||||
|
|
||||||
int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
|
int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
|
||||||
bool force);
|
VhostBackendType backend_type, bool force);
|
||||||
void vhost_dev_cleanup(struct vhost_dev *hdev);
|
void vhost_dev_cleanup(struct vhost_dev *hdev);
|
||||||
bool vhost_dev_query(struct vhost_dev *hdev, VirtIODevice *vdev);
|
bool vhost_dev_query(struct vhost_dev *hdev, VirtIODevice *vdev);
|
||||||
int vhost_dev_start(struct vhost_dev *hdev, VirtIODevice *vdev);
|
int vhost_dev_start(struct vhost_dev *hdev, VirtIODevice *vdev);
|
||||||
|
@ -2,11 +2,13 @@
|
|||||||
#define VHOST_NET_H
|
#define VHOST_NET_H
|
||||||
|
|
||||||
#include "net/net.h"
|
#include "net/net.h"
|
||||||
|
#include "hw/virtio/vhost-backend.h"
|
||||||
|
|
||||||
struct vhost_net;
|
struct vhost_net;
|
||||||
typedef struct vhost_net VHostNetState;
|
typedef struct vhost_net VHostNetState;
|
||||||
|
|
||||||
typedef struct VhostNetOptions {
|
typedef struct VhostNetOptions {
|
||||||
|
VhostBackendType backend_type;
|
||||||
NetClientState *net_backend;
|
NetClientState *net_backend;
|
||||||
void *opaque;
|
void *opaque;
|
||||||
bool force;
|
bool force;
|
||||||
|
@ -627,6 +627,7 @@ static int net_init_tap_one(const NetdevTapOptions *tap, NetClientState *peer,
|
|||||||
vhostfdname || (tap->has_vhostforce && tap->vhostforce)) {
|
vhostfdname || (tap->has_vhostforce && tap->vhostforce)) {
|
||||||
VhostNetOptions options;
|
VhostNetOptions options;
|
||||||
|
|
||||||
|
options.backend_type = VHOST_BACKEND_TYPE_KERNEL;
|
||||||
options.net_backend = &s->nc;
|
options.net_backend = &s->nc;
|
||||||
options.force = tap->has_vhostforce && tap->vhostforce;
|
options.force = tap->has_vhostforce && tap->vhostforce;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user