vhost_net.c 12.3 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
#include "net/tap.h"
18
#include "net/vhost-user.h"
M
Michael S. Tsirkin 已提交
19

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

#include "config.h"

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

#include <stdio.h>

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

struct vhost_net {
    struct vhost_dev dev;
    struct vhost_virtqueue vqs[2];
    int backend;
47
    NetClientState *nc;
M
Michael S. Tsirkin 已提交
48 49
};

50 51 52 53 54 55
/* Features supported by host kernel. */
static const int kernel_feature_bits[] = {
    VIRTIO_F_NOTIFY_ON_EMPTY,
    VIRTIO_RING_F_INDIRECT_DESC,
    VIRTIO_RING_F_EVENT_IDX,
    VIRTIO_NET_F_MRG_RXBUF,
56
    VIRTIO_F_VERSION_1,
57 58 59
    VHOST_INVALID_FEATURE_BIT
};

60
/* Features supported by others. */
61
static const int user_feature_bits[] = {
62 63 64 65 66
    VIRTIO_F_NOTIFY_ON_EMPTY,
    VIRTIO_RING_F_INDIRECT_DESC,
    VIRTIO_RING_F_EVENT_IDX,

    VIRTIO_F_ANY_LAYOUT,
67
    VIRTIO_F_VERSION_1,
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    VIRTIO_NET_F_CSUM,
    VIRTIO_NET_F_GUEST_CSUM,
    VIRTIO_NET_F_GSO,
    VIRTIO_NET_F_GUEST_TSO4,
    VIRTIO_NET_F_GUEST_TSO6,
    VIRTIO_NET_F_GUEST_ECN,
    VIRTIO_NET_F_GUEST_UFO,
    VIRTIO_NET_F_HOST_TSO4,
    VIRTIO_NET_F_HOST_TSO6,
    VIRTIO_NET_F_HOST_ECN,
    VIRTIO_NET_F_HOST_UFO,
    VIRTIO_NET_F_MRG_RXBUF,
    VIRTIO_NET_F_STATUS,
    VIRTIO_NET_F_CTRL_VQ,
    VIRTIO_NET_F_CTRL_RX,
    VIRTIO_NET_F_CTRL_VLAN,
    VIRTIO_NET_F_CTRL_RX_EXTRA,
    VIRTIO_NET_F_CTRL_MAC_ADDR,
    VIRTIO_NET_F_CTRL_GUEST_OFFLOADS,

    VIRTIO_NET_F_MQ,

    VHOST_INVALID_FEATURE_BIT
};

93
static const int *vhost_net_get_feature_bits(struct vhost_net *net)
M
Michael S. Tsirkin 已提交
94
{
95 96 97 98 99 100
    const int *feature_bits = 0;

    switch (net->nc->info->type) {
    case NET_CLIENT_OPTIONS_KIND_TAP:
        feature_bits = kernel_feature_bits;
        break;
101 102 103
    case NET_CLIENT_OPTIONS_KIND_VHOST_USER:
        feature_bits = user_feature_bits;
        break;
104 105 106 107
    default:
        error_report("Feature bits not defined for this type: %d",
                net->nc->info->type);
        break;
108
    }
109 110 111 112

    return feature_bits;
}

C
Cornelia Huck 已提交
113
uint64_t vhost_net_get_features(struct vhost_net *net, uint64_t features)
114 115 116
{
    return vhost_get_features(&net->dev, vhost_net_get_feature_bits(net),
            features);
M
Michael S. Tsirkin 已提交
117 118
}

C
Cornelia Huck 已提交
119
void vhost_net_ack_features(struct vhost_net *net, uint64_t features)
M
Michael S. Tsirkin 已提交
120
{
121
    net->dev.acked_features = net->dev.backend_features;
122
    vhost_ack_features(&net->dev, vhost_net_get_feature_bits(net), features);
M
Michael S. Tsirkin 已提交
123 124
}

125 126 127 128 129
uint64_t vhost_net_get_max_queues(VHostNetState *net)
{
    return net->dev.max_queues;
}

130
static int vhost_net_get_fd(NetClientState *backend)
M
Michael S. Tsirkin 已提交
131 132
{
    switch (backend->info->type) {
133
    case NET_CLIENT_OPTIONS_KIND_TAP:
M
Michael S. Tsirkin 已提交
134 135 136 137 138 139 140
        return tap_get_fd(backend);
    default:
        fprintf(stderr, "vhost-net requires tap backend\n");
        return -EBADFD;
    }
}

141
struct vhost_net *vhost_net_init(VhostNetOptions *options)
M
Michael S. Tsirkin 已提交
142 143
{
    int r;
144
    bool backend_kernel = options->backend_type == VHOST_BACKEND_TYPE_KERNEL;
145
    struct vhost_net *net = g_malloc(sizeof *net);
146 147 148

    if (!options->net_backend) {
        fprintf(stderr, "vhost-net requires net backend to be setup\n");
M
Michael S. Tsirkin 已提交
149 150
        goto fail;
    }
151
    net->nc = options->net_backend;
152

153
    net->dev.max_queues = 1;
154 155
    net->dev.nvqs = 2;
    net->dev.vqs = net->vqs;
156

157 158 159 160 161 162
    if (backend_kernel) {
        r = vhost_net_get_fd(options->net_backend);
        if (r < 0) {
            goto fail;
        }
        net->dev.backend_features = qemu_has_vnet_hdr(options->net_backend)
C
Cornelia Huck 已提交
163
            ? 0 : (1ULL << VHOST_NET_F_VIRTIO_NET_HDR);
164
        net->backend = r;
165
        net->dev.protocol_features = 0;
166 167
    } else {
        net->dev.backend_features = 0;
168
        net->dev.protocol_features = 0;
169
        net->backend = -1;
M
Michael S. Tsirkin 已提交
170

171 172 173
        /* vhost-user needs vq_index to initiate a specific queue pair */
        net->dev.vq_index = net->nc->queue_index * net->dev.nvqs;
    }
174

175
    r = vhost_dev_init(&net->dev, options->opaque,
176
                       options->backend_type);
M
Michael S. Tsirkin 已提交
177 178 179
    if (r < 0) {
        goto fail;
    }
180
    if (backend_kernel) {
181 182
        if (!qemu_has_vnet_hdr_len(options->net_backend,
                               sizeof(struct virtio_net_hdr_mrg_rxbuf))) {
C
Cornelia Huck 已提交
183
            net->dev.features &= ~(1ULL << VIRTIO_NET_F_MRG_RXBUF);
184
        }
185 186 187 188 189 190 191
        if (~net->dev.features & net->dev.backend_features) {
            fprintf(stderr, "vhost lacks feature mask %" PRIu64
                   " for backend\n",
                   (uint64_t)(~net->dev.features & net->dev.backend_features));
            vhost_dev_cleanup(&net->dev);
            goto fail;
        }
M
Michael S. Tsirkin 已提交
192 193 194 195 196
    }
    /* Set sane init value. Override when guest acks. */
    vhost_net_ack_features(net, 0);
    return net;
fail:
197
    g_free(net);
M
Michael S. Tsirkin 已提交
198 199 200
    return NULL;
}

201 202 203 204 205
static void vhost_net_set_vq_index(struct vhost_net *net, int vq_index)
{
    net->dev.vq_index = vq_index;
}

206 207 208 209 210
static int vhost_net_set_vnet_endian(VirtIODevice *dev, NetClientState *peer,
                                     bool set)
{
    int r = 0;

211
    if (virtio_vdev_has_feature(dev, VIRTIO_F_VERSION_1) ||
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
        (virtio_legacy_is_cross_endian(dev) && !virtio_is_big_endian(dev))) {
        r = qemu_set_vnet_le(peer, set);
        if (r) {
            error_report("backend does not support LE vnet headers");
        }
    } else if (virtio_legacy_is_cross_endian(dev)) {
        r = qemu_set_vnet_be(peer, set);
        if (r) {
            error_report("backend does not support BE vnet headers");
        }
    }

    return r;
}

J
Jason Wang 已提交
227
static int vhost_net_start_one(struct vhost_net *net,
228
                               VirtIODevice *dev)
M
Michael S. Tsirkin 已提交
229 230 231
{
    struct vhost_vring_file file = { };
    int r;
232

J
Jason Wang 已提交
233 234 235
    net->dev.nvqs = 2;
    net->dev.vqs = net->vqs;

236 237 238 239
    r = vhost_dev_enable_notifiers(&net->dev, dev);
    if (r < 0) {
        goto fail_notifiers;
    }
M
Michael S. Tsirkin 已提交
240 241 242

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

246 247 248 249
    if (net->nc->info->poll) {
        net->nc->info->poll(net->nc, false);
    }

250 251 252 253 254 255 256 257 258 259 260
    if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
        qemu_set_fd_handler(net->backend, NULL, NULL, NULL);
        file.fd = net->backend;
        for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
            const VhostOps *vhost_ops = net->dev.vhost_ops;
            r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
                                      &file);
            if (r < 0) {
                r = -errno;
                goto fail;
            }
M
Michael S. Tsirkin 已提交
261 262 263 264 265
        }
    }
    return 0;
fail:
    file.fd = -1;
266 267 268 269 270 271 272
    if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
        while (file.index-- > 0) {
            const VhostOps *vhost_ops = net->dev.vhost_ops;
            int r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
                                          &file);
            assert(r >= 0);
        }
M
Michael S. Tsirkin 已提交
273
    }
274 275 276
    if (net->nc->info->poll) {
        net->nc->info->poll(net->nc, true);
    }
M
Michael S. Tsirkin 已提交
277
    vhost_dev_stop(&net->dev, dev);
278 279 280
fail_start:
    vhost_dev_disable_notifiers(&net->dev, dev);
fail_notifiers:
M
Michael S. Tsirkin 已提交
281 282 283
    return r;
}

J
Jason Wang 已提交
284 285
static void vhost_net_stop_one(struct vhost_net *net,
                               VirtIODevice *dev)
M
Michael S. Tsirkin 已提交
286 287 288
{
    struct vhost_vring_file file = { .fd = -1 };

289 290 291 292 293 294 295
    if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_TAP) {
        for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
            const VhostOps *vhost_ops = net->dev.vhost_ops;
            int r = vhost_ops->vhost_call(&net->dev, VHOST_NET_SET_BACKEND,
                                          &file);
            assert(r >= 0);
        }
296 297 298
    } else if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_VHOST_USER) {
        for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
            const VhostOps *vhost_ops = net->dev.vhost_ops;
299
            int r = vhost_ops->vhost_call(&net->dev, VHOST_RESET_DEVICE,
300
                                          NULL);
301 302
            assert(r >= 0);
        }
M
Michael S. Tsirkin 已提交
303
    }
304 305 306
    if (net->nc->info->poll) {
        net->nc->info->poll(net->nc, true);
    }
M
Michael S. Tsirkin 已提交
307
    vhost_dev_stop(&net->dev, dev);
308
    vhost_dev_disable_notifiers(&net->dev, dev);
M
Michael S. Tsirkin 已提交
309 310
}

J
Jason Wang 已提交
311 312 313
int vhost_net_start(VirtIODevice *dev, NetClientState *ncs,
                    int total_queues)
{
K
KONRAD Frederic 已提交
314 315 316
    BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(dev)));
    VirtioBusState *vbus = VIRTIO_BUS(qbus);
    VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
317
    int r, e, i;
J
Jason Wang 已提交
318

K
KONRAD Frederic 已提交
319
    if (!k->set_guest_notifiers) {
320
        error_report("binding does not support guest notifiers");
J
Jason Wang 已提交
321 322 323 324
        r = -ENOSYS;
        goto err;
    }

325 326 327 328 329
    r = vhost_net_set_vnet_endian(dev, ncs[0].peer, true);
    if (r < 0) {
        goto err;
    }

J
Jason Wang 已提交
330
    for (i = 0; i < total_queues; i++) {
331
        vhost_net_set_vq_index(get_vhost_net(ncs[i].peer), i * 2);
J
Jason Wang 已提交
332 333
    }

K
KONRAD Frederic 已提交
334
    r = k->set_guest_notifiers(qbus->parent, total_queues * 2, true);
J
Jason Wang 已提交
335
    if (r < 0) {
336
        error_report("Error binding guest notifier: %d", -r);
337
        goto err_endian;
J
Jason Wang 已提交
338 339
    }

340 341 342 343 344 345 346 347
    for (i = 0; i < total_queues; i++) {
        r = vhost_net_start_one(get_vhost_net(ncs[i].peer), dev);

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

J
Jason Wang 已提交
348 349
    return 0;

350
err_start:
J
Jason Wang 已提交
351
    while (--i >= 0) {
352
        vhost_net_stop_one(get_vhost_net(ncs[i].peer), dev);
J
Jason Wang 已提交
353
    }
354 355 356 357 358
    e = k->set_guest_notifiers(qbus->parent, total_queues * 2, false);
    if (e < 0) {
        fprintf(stderr, "vhost guest notifier cleanup failed: %d\n", e);
        fflush(stderr);
    }
359 360
err_endian:
    vhost_net_set_vnet_endian(dev, ncs[0].peer, false);
361
err:
J
Jason Wang 已提交
362 363 364 365 366 367
    return r;
}

void vhost_net_stop(VirtIODevice *dev, NetClientState *ncs,
                    int total_queues)
{
K
KONRAD Frederic 已提交
368 369 370
    BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(dev)));
    VirtioBusState *vbus = VIRTIO_BUS(qbus);
    VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
J
Jason Wang 已提交
371 372
    int i, r;

373 374 375 376
    for (i = 0; i < total_queues; i++) {
        vhost_net_stop_one(get_vhost_net(ncs[i].peer), dev);
    }

K
KONRAD Frederic 已提交
377
    r = k->set_guest_notifiers(qbus->parent, total_queues * 2, false);
J
Jason Wang 已提交
378 379 380 381 382
    if (r < 0) {
        fprintf(stderr, "vhost guest notifier cleanup failed: %d\n", r);
        fflush(stderr);
    }
    assert(r >= 0);
383 384

    assert(vhost_net_set_vnet_endian(dev, ncs[0].peer, false) >= 0);
J
Jason Wang 已提交
385 386
}

M
Michael S. Tsirkin 已提交
387 388 389
void vhost_net_cleanup(struct vhost_net *net)
{
    vhost_dev_cleanup(&net->dev);
390
    g_free(net);
M
Michael S. Tsirkin 已提交
391
}
392 393 394 395 396 397 398 399 400 401 402

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);
}
403 404 405 406 407 408 409 410 411 412 413 414 415

VHostNetState *get_vhost_net(NetClientState *nc)
{
    VHostNetState *vhost_net = 0;

    if (!nc) {
        return 0;
    }

    switch (nc->info->type) {
    case NET_CLIENT_OPTIONS_KIND_TAP:
        vhost_net = tap_get_vhost_net(nc);
        break;
416 417 418
    case NET_CLIENT_OPTIONS_KIND_VHOST_USER:
        vhost_net = vhost_user_get_vhost_net(nc);
        break;
419 420 421 422 423 424
    default:
        break;
    }

    return vhost_net;
}
M
Michael S. Tsirkin 已提交
425
#else
426 427 428 429 430
uint64_t vhost_net_get_max_queues(VHostNetState *net)
{
    return 1;
}

431
struct vhost_net *vhost_net_init(VhostNetOptions *options)
432
{
433
    error_report("vhost-net support is not compiled in");
434 435 436
    return NULL;
}

J
Jason Wang 已提交
437 438 439
int vhost_net_start(VirtIODevice *dev,
                    NetClientState *ncs,
                    int total_queues)
M
Michael S. Tsirkin 已提交
440
{
441
    return -ENOSYS;
M
Michael S. Tsirkin 已提交
442
}
J
Jason Wang 已提交
443 444 445
void vhost_net_stop(VirtIODevice *dev,
                    NetClientState *ncs,
                    int total_queues)
M
Michael S. Tsirkin 已提交
446 447 448 449 450 451 452
{
}

void vhost_net_cleanup(struct vhost_net *net)
{
}

C
Cornelia Huck 已提交
453
uint64_t vhost_net_get_features(struct vhost_net *net, uint64_t features)
M
Michael S. Tsirkin 已提交
454
{
455
    return features;
M
Michael S. Tsirkin 已提交
456
}
C
Cornelia Huck 已提交
457
void vhost_net_ack_features(struct vhost_net *net, uint64_t features)
M
Michael S. Tsirkin 已提交
458 459
{
}
460 461 462

bool vhost_net_virtqueue_pending(VHostNetState *net, int idx)
{
463
    return false;
464 465 466 467 468 469
}

void vhost_net_virtqueue_mask(VHostNetState *net, VirtIODevice *dev,
                              int idx, bool mask)
{
}
470 471 472 473 474

VHostNetState *get_vhost_net(NetClientState *nc)
{
    return 0;
}
M
Michael S. Tsirkin 已提交
475
#endif