vhost_net.c 8.4 KB
Newer Older
M
Michael S. Tsirkin 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * vhost-net support
 *
 * Copyright Red Hat, Inc. 2010
 *
 * Authors:
 *  Michael S. Tsirkin <mst@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
11 12 13
 *
 * Contributions after 2012-01-13 are licensed under the terms of the
 * GNU GPL, version 2 or (at your option) any later version.
M
Michael S. Tsirkin 已提交
14 15
 */

P
Paolo Bonzini 已提交
16
#include "net/net.h"
M
Michael S. Tsirkin 已提交
17 18
#include "net/tap.h"

P
Paolo Bonzini 已提交
19 20
#include "hw/virtio/virtio-net.h"
#include "net/vhost_net.h"
21
#include "qemu/error-report.h"
M
Michael S. Tsirkin 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

#include "config.h"

#ifdef CONFIG_VHOST_NET
#include <linux/vhost.h>
#include <sys/socket.h>
#include <linux/kvm.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <linux/virtio_ring.h>
#include <netpacket/packet.h>
#include <net/ethernet.h>
#include <net/if.h>
#include <netinet/in.h>

#include <stdio.h>

P
Paolo Bonzini 已提交
39
#include "hw/virtio/vhost.h"
K
KONRAD Frederic 已提交
40
#include "hw/virtio/virtio-bus.h"
M
Michael S. Tsirkin 已提交
41 42 43 44 45

struct vhost_net {
    struct vhost_dev dev;
    struct vhost_virtqueue vqs[2];
    int backend;
46
    NetClientState *nc;
M
Michael S. Tsirkin 已提交
47 48 49 50 51 52 53 54 55 56 57
};

unsigned vhost_net_get_features(struct vhost_net *net, unsigned features)
{
    /* Clear features not supported by host kernel. */
    if (!(net->dev.features & (1 << VIRTIO_F_NOTIFY_ON_EMPTY))) {
        features &= ~(1 << VIRTIO_F_NOTIFY_ON_EMPTY);
    }
    if (!(net->dev.features & (1 << VIRTIO_RING_F_INDIRECT_DESC))) {
        features &= ~(1 << VIRTIO_RING_F_INDIRECT_DESC);
    }
M
Michael S. Tsirkin 已提交
58 59 60
    if (!(net->dev.features & (1 << VIRTIO_RING_F_EVENT_IDX))) {
        features &= ~(1 << VIRTIO_RING_F_EVENT_IDX);
    }
61 62 63
    if (!(net->dev.features & (1 << VIRTIO_NET_F_MRG_RXBUF))) {
        features &= ~(1 << VIRTIO_NET_F_MRG_RXBUF);
    }
M
Michael S. Tsirkin 已提交
64 65 66 67 68 69 70 71 72 73 74 75
    return features;
}

void vhost_net_ack_features(struct vhost_net *net, unsigned features)
{
    net->dev.acked_features = net->dev.backend_features;
    if (features & (1 << VIRTIO_F_NOTIFY_ON_EMPTY)) {
        net->dev.acked_features |= (1 << VIRTIO_F_NOTIFY_ON_EMPTY);
    }
    if (features & (1 << VIRTIO_RING_F_INDIRECT_DESC)) {
        net->dev.acked_features |= (1 << VIRTIO_RING_F_INDIRECT_DESC);
    }
M
Michael S. Tsirkin 已提交
76 77 78
    if (features & (1 << VIRTIO_RING_F_EVENT_IDX)) {
        net->dev.acked_features |= (1 << VIRTIO_RING_F_EVENT_IDX);
    }
79 80 81
    if (features & (1 << VIRTIO_NET_F_MRG_RXBUF)) {
        net->dev.acked_features |= (1 << VIRTIO_NET_F_MRG_RXBUF);
    }
M
Michael S. Tsirkin 已提交
82 83
}

84
static int vhost_net_get_fd(NetClientState *backend)
M
Michael S. Tsirkin 已提交
85 86
{
    switch (backend->info->type) {
87
    case NET_CLIENT_OPTIONS_KIND_TAP:
M
Michael S. Tsirkin 已提交
88 89 90 91 92 93 94
        return tap_get_fd(backend);
    default:
        fprintf(stderr, "vhost-net requires tap backend\n");
        return -EBADFD;
    }
}

95
struct vhost_net *vhost_net_init(NetClientState *backend, int devfd,
96
                                 bool force)
M
Michael S. Tsirkin 已提交
97 98
{
    int r;
99
    struct vhost_net *net = g_malloc(sizeof *net);
M
Michael S. Tsirkin 已提交
100 101 102 103 104 105 106 107
    if (!backend) {
        fprintf(stderr, "vhost-net requires backend to be setup\n");
        goto fail;
    }
    r = vhost_net_get_fd(backend);
    if (r < 0) {
        goto fail;
    }
108
    net->nc = backend;
109
    net->dev.backend_features = qemu_has_vnet_hdr(backend) ? 0 :
M
Michael S. Tsirkin 已提交
110 111 112
        (1 << VHOST_NET_F_VIRTIO_NET_HDR);
    net->backend = r;

113 114 115
    net->dev.nvqs = 2;
    net->dev.vqs = net->vqs;

116
    r = vhost_dev_init(&net->dev, devfd, "/dev/vhost-net", force);
M
Michael S. Tsirkin 已提交
117 118 119
    if (r < 0) {
        goto fail;
    }
120 121
    if (!qemu_has_vnet_hdr_len(backend,
                               sizeof(struct virtio_net_hdr_mrg_rxbuf))) {
122 123
        net->dev.features &= ~(1 << VIRTIO_NET_F_MRG_RXBUF);
    }
M
Michael S. Tsirkin 已提交
124
    if (~net->dev.features & net->dev.backend_features) {
B
Blue Swirl 已提交
125
        fprintf(stderr, "vhost lacks feature mask %" PRIu64 " for backend\n",
126
                (uint64_t)(~net->dev.features & net->dev.backend_features));
M
Michael S. Tsirkin 已提交
127 128 129 130 131 132 133 134
        vhost_dev_cleanup(&net->dev);
        goto fail;
    }

    /* Set sane init value. Override when guest acks. */
    vhost_net_ack_features(net, 0);
    return net;
fail:
135
    g_free(net);
M
Michael S. Tsirkin 已提交
136 137 138
    return NULL;
}

139 140 141 142 143
bool vhost_net_query(VHostNetState *net, VirtIODevice *dev)
{
    return vhost_dev_query(&net->dev, dev);
}

J
Jason Wang 已提交
144 145 146
static int vhost_net_start_one(struct vhost_net *net,
                               VirtIODevice *dev,
                               int vq_index)
M
Michael S. Tsirkin 已提交
147 148 149
{
    struct vhost_vring_file file = { };
    int r;
150

J
Jason Wang 已提交
151 152 153 154 155 156 157 158
    if (net->dev.started) {
        return 0;
    }

    net->dev.nvqs = 2;
    net->dev.vqs = net->vqs;
    net->dev.vq_index = vq_index;

159 160 161 162
    r = vhost_dev_enable_notifiers(&net->dev, dev);
    if (r < 0) {
        goto fail_notifiers;
    }
M
Michael S. Tsirkin 已提交
163 164 165

    r = vhost_dev_start(&net->dev, dev);
    if (r < 0) {
166
        goto fail_start;
M
Michael S. Tsirkin 已提交
167 168
    }

169
    net->nc->info->poll(net->nc, false);
M
Michael S. Tsirkin 已提交
170 171 172 173 174 175 176 177 178 179 180 181
    qemu_set_fd_handler(net->backend, NULL, NULL, NULL);
    file.fd = net->backend;
    for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
        r = ioctl(net->dev.control, VHOST_NET_SET_BACKEND, &file);
        if (r < 0) {
            r = -errno;
            goto fail;
        }
    }
    return 0;
fail:
    file.fd = -1;
182
    while (file.index-- > 0) {
M
Michael S. Tsirkin 已提交
183 184 185
        int r = ioctl(net->dev.control, VHOST_NET_SET_BACKEND, &file);
        assert(r >= 0);
    }
186
    net->nc->info->poll(net->nc, true);
M
Michael S. Tsirkin 已提交
187
    vhost_dev_stop(&net->dev, dev);
188 189 190
fail_start:
    vhost_dev_disable_notifiers(&net->dev, dev);
fail_notifiers:
M
Michael S. Tsirkin 已提交
191 192 193
    return r;
}

J
Jason Wang 已提交
194 195
static void vhost_net_stop_one(struct vhost_net *net,
                               VirtIODevice *dev)
M
Michael S. Tsirkin 已提交
196 197 198
{
    struct vhost_vring_file file = { .fd = -1 };

J
Jason Wang 已提交
199 200 201 202
    if (!net->dev.started) {
        return;
    }

M
Michael S. Tsirkin 已提交
203 204 205 206
    for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
        int r = ioctl(net->dev.control, VHOST_NET_SET_BACKEND, &file);
        assert(r >= 0);
    }
207
    net->nc->info->poll(net->nc, true);
M
Michael S. Tsirkin 已提交
208
    vhost_dev_stop(&net->dev, dev);
209
    vhost_dev_disable_notifiers(&net->dev, dev);
M
Michael S. Tsirkin 已提交
210 211
}

J
Jason Wang 已提交
212 213 214
int vhost_net_start(VirtIODevice *dev, NetClientState *ncs,
                    int total_queues)
{
K
KONRAD Frederic 已提交
215 216 217
    BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(dev)));
    VirtioBusState *vbus = VIRTIO_BUS(qbus);
    VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
J
Jason Wang 已提交
218 219
    int r, i = 0;

K
KONRAD Frederic 已提交
220
    if (!k->set_guest_notifiers) {
221
        error_report("binding does not support guest notifiers");
J
Jason Wang 已提交
222 223 224 225 226 227 228 229 230 231 232 233
        r = -ENOSYS;
        goto err;
    }

    for (i = 0; i < total_queues; i++) {
        r = vhost_net_start_one(tap_get_vhost_net(ncs[i].peer), dev, i * 2);

        if (r < 0) {
            goto err;
        }
    }

K
KONRAD Frederic 已提交
234
    r = k->set_guest_notifiers(qbus->parent, total_queues * 2, true);
J
Jason Wang 已提交
235
    if (r < 0) {
236
        error_report("Error binding guest notifier: %d", -r);
J
Jason Wang 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
        goto err;
    }

    return 0;

err:
    while (--i >= 0) {
        vhost_net_stop_one(tap_get_vhost_net(ncs[i].peer), dev);
    }
    return r;
}

void vhost_net_stop(VirtIODevice *dev, NetClientState *ncs,
                    int total_queues)
{
K
KONRAD Frederic 已提交
252 253 254
    BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(dev)));
    VirtioBusState *vbus = VIRTIO_BUS(qbus);
    VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
J
Jason Wang 已提交
255 256
    int i, r;

K
KONRAD Frederic 已提交
257
    r = k->set_guest_notifiers(qbus->parent, total_queues * 2, false);
J
Jason Wang 已提交
258 259 260 261 262 263 264 265 266 267 268
    if (r < 0) {
        fprintf(stderr, "vhost guest notifier cleanup failed: %d\n", r);
        fflush(stderr);
    }
    assert(r >= 0);

    for (i = 0; i < total_queues; i++) {
        vhost_net_stop_one(tap_get_vhost_net(ncs[i].peer), dev);
    }
}

M
Michael S. Tsirkin 已提交
269 270 271
void vhost_net_cleanup(struct vhost_net *net)
{
    vhost_dev_cleanup(&net->dev);
272
    g_free(net);
M
Michael S. Tsirkin 已提交
273
}
274 275 276 277 278 279 280 281 282 283 284

bool vhost_net_virtqueue_pending(VHostNetState *net, int idx)
{
    return vhost_virtqueue_pending(&net->dev, idx);
}

void vhost_net_virtqueue_mask(VHostNetState *net, VirtIODevice *dev,
                              int idx, bool mask)
{
    vhost_virtqueue_mask(&net->dev, dev, idx, mask);
}
M
Michael S. Tsirkin 已提交
285
#else
286
struct vhost_net *vhost_net_init(NetClientState *backend, int devfd,
287 288
                                 bool force)
{
289
    error_report("vhost-net support is not compiled in");
290 291 292 293
    return NULL;
}

bool vhost_net_query(VHostNetState *net, VirtIODevice *dev)
M
Michael S. Tsirkin 已提交
294
{
295
    return false;
M
Michael S. Tsirkin 已提交
296 297
}

J
Jason Wang 已提交
298 299 300
int vhost_net_start(VirtIODevice *dev,
                    NetClientState *ncs,
                    int total_queues)
M
Michael S. Tsirkin 已提交
301
{
302
    return -ENOSYS;
M
Michael S. Tsirkin 已提交
303
}
J
Jason Wang 已提交
304 305 306
void vhost_net_stop(VirtIODevice *dev,
                    NetClientState *ncs,
                    int total_queues)
M
Michael S. Tsirkin 已提交
307 308 309 310 311 312 313 314 315
{
}

void vhost_net_cleanup(struct vhost_net *net)
{
}

unsigned vhost_net_get_features(struct vhost_net *net, unsigned features)
{
316
    return features;
M
Michael S. Tsirkin 已提交
317 318 319 320
}
void vhost_net_ack_features(struct vhost_net *net, unsigned features)
{
}
321 322 323

bool vhost_net_virtqueue_pending(VHostNetState *net, int idx)
{
324
    return false;
325 326 327 328 329 330
}

void vhost_net_virtqueue_mask(VHostNetState *net, VirtIODevice *dev,
                              int idx, bool mask)
{
}
M
Michael S. Tsirkin 已提交
331
#endif