vhost_net.c 12.7 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
Peter Maydell 已提交
16
#include "qemu/osdep.h"
P
Paolo Bonzini 已提交
17
#include "net/net.h"
M
Michael S. Tsirkin 已提交
18
#include "net/tap.h"
19
#include "net/vhost-user.h"
M
Michael S. Tsirkin 已提交
20

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


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


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

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

47 48 49 50 51 52
/* 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,
53
    VIRTIO_F_VERSION_1,
54 55 56
    VHOST_INVALID_FEATURE_BIT
};

57
/* Features supported by others. */
58
static const int user_feature_bits[] = {
59 60 61 62 63
    VIRTIO_F_NOTIFY_ON_EMPTY,
    VIRTIO_RING_F_INDIRECT_DESC,
    VIRTIO_RING_F_EVENT_IDX,

    VIRTIO_F_ANY_LAYOUT,
64
    VIRTIO_F_VERSION_1,
65 66 67 68 69 70 71 72 73 74 75 76 77
    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,

78
    /* This bit implies RARP isn't sent by QEMU out of band */
79 80
    VIRTIO_NET_F_GUEST_ANNOUNCE,

81 82 83 84 85
    VIRTIO_NET_F_MQ,

    VHOST_INVALID_FEATURE_BIT
};

86
static const int *vhost_net_get_feature_bits(struct vhost_net *net)
M
Michael S. Tsirkin 已提交
87
{
88 89 90
    const int *feature_bits = 0;

    switch (net->nc->info->type) {
91
    case NET_CLIENT_DRIVER_TAP:
92 93
        feature_bits = kernel_feature_bits;
        break;
94
    case NET_CLIENT_DRIVER_VHOST_USER:
95 96
        feature_bits = user_feature_bits;
        break;
97 98 99 100
    default:
        error_report("Feature bits not defined for this type: %d",
                net->nc->info->type);
        break;
101
    }
102 103 104 105

    return feature_bits;
}

C
Cornelia Huck 已提交
106
uint64_t vhost_net_get_features(struct vhost_net *net, uint64_t features)
107 108 109
{
    return vhost_get_features(&net->dev, vhost_net_get_feature_bits(net),
            features);
M
Michael S. Tsirkin 已提交
110 111
}

C
Cornelia Huck 已提交
112
void vhost_net_ack_features(struct vhost_net *net, uint64_t features)
M
Michael S. Tsirkin 已提交
113
{
114
    net->dev.acked_features = net->dev.backend_features;
115
    vhost_ack_features(&net->dev, vhost_net_get_feature_bits(net), features);
M
Michael S. Tsirkin 已提交
116 117
}

118 119 120 121 122
uint64_t vhost_net_get_max_queues(VHostNetState *net)
{
    return net->dev.max_queues;
}

123 124 125 126 127
uint64_t vhost_net_get_acked_features(VHostNetState *net)
{
    return net->dev.acked_features;
}

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

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

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

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

156 157 158 159 160 161
    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 已提交
162
            ? 0 : (1ULL << VHOST_NET_F_VIRTIO_NET_HDR);
163
        net->backend = r;
164
        net->dev.protocol_features = 0;
165 166
    } else {
        net->dev.backend_features = 0;
167
        net->dev.protocol_features = 0;
168
        net->backend = -1;
M
Michael S. Tsirkin 已提交
169

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

174
    r = vhost_dev_init(&net->dev, options->opaque,
J
Jason Wang 已提交
175
                       options->backend_type, options->busyloop_timeout);
M
Michael S. Tsirkin 已提交
176 177 178
    if (r < 0) {
        goto fail;
    }
179
    if (backend_kernel) {
180 181
        if (!qemu_has_vnet_hdr_len(options->net_backend,
                               sizeof(struct virtio_net_hdr_mrg_rxbuf))) {
C
Cornelia Huck 已提交
182
            net->dev.features &= ~(1ULL << VIRTIO_NET_F_MRG_RXBUF);
183
        }
184 185 186 187 188 189 190
        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 已提交
191
    }
192

M
Michael S. Tsirkin 已提交
193
    /* Set sane init value. Override when guest acks. */
194
    if (net->nc->info->type == NET_CLIENT_DRIVER_VHOST_USER) {
195 196 197 198 199 200 201 202 203 204 205 206
        features = vhost_user_get_acked_features(net->nc);
        if (~net->dev.features & features) {
            fprintf(stderr, "vhost lacks feature mask %" PRIu64
                    " for backend\n",
                    (uint64_t)(~net->dev.features & features));
            vhost_dev_cleanup(&net->dev);
            goto fail;
        }
    }

    vhost_net_ack_features(net, features);

M
Michael S. Tsirkin 已提交
207 208
    return net;
fail:
209
    g_free(net);
M
Michael S. Tsirkin 已提交
210 211 212
    return NULL;
}

213 214 215 216 217
static void vhost_net_set_vq_index(struct vhost_net *net, int vq_index)
{
    net->dev.vq_index = vq_index;
}

J
Jason Wang 已提交
218
static int vhost_net_start_one(struct vhost_net *net,
219
                               VirtIODevice *dev)
M
Michael S. Tsirkin 已提交
220 221 222
{
    struct vhost_vring_file file = { };
    int r;
223

J
Jason Wang 已提交
224 225 226
    net->dev.nvqs = 2;
    net->dev.vqs = net->vqs;

227 228 229 230
    r = vhost_dev_enable_notifiers(&net->dev, dev);
    if (r < 0) {
        goto fail_notifiers;
    }
M
Michael S. Tsirkin 已提交
231 232 233

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

237 238 239 240
    if (net->nc->info->poll) {
        net->nc->info->poll(net->nc, false);
    }

241
    if (net->nc->info->type == NET_CLIENT_DRIVER_TAP) {
242 243 244 245
        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;
246
            r = vhost_ops->vhost_net_set_backend(&net->dev, &file);
247 248 249 250
            if (r < 0) {
                r = -errno;
                goto fail;
            }
M
Michael S. Tsirkin 已提交
251 252 253 254 255
        }
    }
    return 0;
fail:
    file.fd = -1;
256
    if (net->nc->info->type == NET_CLIENT_DRIVER_TAP) {
257 258
        while (file.index-- > 0) {
            const VhostOps *vhost_ops = net->dev.vhost_ops;
259
            int r = vhost_ops->vhost_net_set_backend(&net->dev, &file);
260 261
            assert(r >= 0);
        }
M
Michael S. Tsirkin 已提交
262
    }
263 264 265
    if (net->nc->info->poll) {
        net->nc->info->poll(net->nc, true);
    }
M
Michael S. Tsirkin 已提交
266
    vhost_dev_stop(&net->dev, dev);
267 268 269
fail_start:
    vhost_dev_disable_notifiers(&net->dev, dev);
fail_notifiers:
M
Michael S. Tsirkin 已提交
270 271 272
    return r;
}

J
Jason Wang 已提交
273 274
static void vhost_net_stop_one(struct vhost_net *net,
                               VirtIODevice *dev)
M
Michael S. Tsirkin 已提交
275 276 277
{
    struct vhost_vring_file file = { .fd = -1 };

278
    if (net->nc->info->type == NET_CLIENT_DRIVER_TAP) {
279 280
        for (file.index = 0; file.index < net->dev.nvqs; ++file.index) {
            const VhostOps *vhost_ops = net->dev.vhost_ops;
281
            int r = vhost_ops->vhost_net_set_backend(&net->dev, &file);
282 283
            assert(r >= 0);
        }
M
Michael S. Tsirkin 已提交
284
    }
285 286 287
    if (net->nc->info->poll) {
        net->nc->info->poll(net->nc, true);
    }
M
Michael S. Tsirkin 已提交
288
    vhost_dev_stop(&net->dev, dev);
289
    vhost_dev_disable_notifiers(&net->dev, dev);
M
Michael S. Tsirkin 已提交
290 291
}

J
Jason Wang 已提交
292 293 294
int vhost_net_start(VirtIODevice *dev, NetClientState *ncs,
                    int total_queues)
{
K
KONRAD Frederic 已提交
295 296 297
    BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(dev)));
    VirtioBusState *vbus = VIRTIO_BUS(qbus);
    VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
298
    int r, e, i;
J
Jason Wang 已提交
299

K
KONRAD Frederic 已提交
300
    if (!k->set_guest_notifiers) {
301
        error_report("binding does not support guest notifiers");
302
        return -ENOSYS;
J
Jason Wang 已提交
303 304
    }

305
    for (i = 0; i < total_queues; i++) {
306 307 308 309 310 311 312 313 314
        struct vhost_net *net;

        net = get_vhost_net(ncs[i].peer);
        vhost_net_set_vq_index(net, i * 2);

        /* Suppress the masking guest notifiers on vhost user
         * because vhost user doesn't interrupt masking/unmasking
         * properly.
         */
315
        if (net->nc->info->type == NET_CLIENT_DRIVER_VHOST_USER) {
M
Marc-André Lureau 已提交
316
            dev->use_guest_notifier_mask = false;
317 318
        }
     }
J
Jason Wang 已提交
319

K
KONRAD Frederic 已提交
320
    r = k->set_guest_notifiers(qbus->parent, total_queues * 2, true);
J
Jason Wang 已提交
321
    if (r < 0) {
322
        error_report("Error binding guest notifier: %d", -r);
323
        goto err;
J
Jason Wang 已提交
324 325
    }

326 327 328 329 330 331
    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;
        }
332 333 334 335 336 337 338 339 340

        if (ncs[i].peer->vring_enable) {
            /* restore vring enable state */
            r = vhost_set_vring_enable(ncs[i].peer, ncs[i].peer->vring_enable);

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

J
Jason Wang 已提交
343 344
    return 0;

345
err_start:
J
Jason Wang 已提交
346
    while (--i >= 0) {
347
        vhost_net_stop_one(get_vhost_net(ncs[i].peer), dev);
J
Jason Wang 已提交
348
    }
349 350 351 352 353
    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);
    }
354
err:
J
Jason Wang 已提交
355 356 357 358 359 360
    return r;
}

void vhost_net_stop(VirtIODevice *dev, NetClientState *ncs,
                    int total_queues)
{
K
KONRAD Frederic 已提交
361 362 363
    BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(dev)));
    VirtioBusState *vbus = VIRTIO_BUS(qbus);
    VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
J
Jason Wang 已提交
364 365
    int i, r;

366 367 368 369
    for (i = 0; i < total_queues; i++) {
        vhost_net_stop_one(get_vhost_net(ncs[i].peer), dev);
    }

K
KONRAD Frederic 已提交
370
    r = k->set_guest_notifiers(qbus->parent, total_queues * 2, false);
J
Jason Wang 已提交
371 372 373 374 375 376 377
    if (r < 0) {
        fprintf(stderr, "vhost guest notifier cleanup failed: %d\n", r);
        fflush(stderr);
    }
    assert(r >= 0);
}

M
Michael S. Tsirkin 已提交
378 379 380
void vhost_net_cleanup(struct vhost_net *net)
{
    vhost_dev_cleanup(&net->dev);
381
    g_free(net);
M
Michael S. Tsirkin 已提交
382
}
383

384 385 386 387 388 389 390 391 392 393 394 395
int vhost_net_notify_migration_done(struct vhost_net *net, char* mac_addr)
{
    const VhostOps *vhost_ops = net->dev.vhost_ops;
    int r = -1;

    if (vhost_ops->vhost_migration_done) {
        r = vhost_ops->vhost_migration_done(&net->dev, mac_addr);
    }

    return r;
}

396 397 398 399 400 401 402 403 404 405
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);
}
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) {
416
    case NET_CLIENT_DRIVER_TAP:
417 418
        vhost_net = tap_get_vhost_net(nc);
        break;
419
    case NET_CLIENT_DRIVER_VHOST_USER:
420 421
        vhost_net = vhost_user_get_vhost_net(nc);
        break;
422 423 424 425 426 427
    default:
        break;
    }

    return vhost_net;
}
428 429 430 431

int vhost_set_vring_enable(NetClientState *nc, int enable)
{
    VHostNetState *net = get_vhost_net(nc);
432 433
    const VhostOps *vhost_ops;

434 435
    nc->vring_enable = enable;

436 437 438
    if (!net) {
        return 0;
    }
439

440
    vhost_ops = net->dev.vhost_ops;
441 442
    if (vhost_ops->vhost_set_vring_enable) {
        return vhost_ops->vhost_set_vring_enable(&net->dev, enable);
443 444 445 446 447
    }

    return 0;
}

M
Michael S. Tsirkin 已提交
448
#else
449 450 451 452 453
uint64_t vhost_net_get_max_queues(VHostNetState *net)
{
    return 1;
}

454
struct vhost_net *vhost_net_init(VhostNetOptions *options)
455
{
456
    error_report("vhost-net support is not compiled in");
457 458 459
    return NULL;
}

J
Jason Wang 已提交
460 461 462
int vhost_net_start(VirtIODevice *dev,
                    NetClientState *ncs,
                    int total_queues)
M
Michael S. Tsirkin 已提交
463
{
464
    return -ENOSYS;
M
Michael S. Tsirkin 已提交
465
}
J
Jason Wang 已提交
466 467 468
void vhost_net_stop(VirtIODevice *dev,
                    NetClientState *ncs,
                    int total_queues)
M
Michael S. Tsirkin 已提交
469 470 471 472 473 474 475
{
}

void vhost_net_cleanup(struct vhost_net *net)
{
}

C
Cornelia Huck 已提交
476
uint64_t vhost_net_get_features(struct vhost_net *net, uint64_t features)
M
Michael S. Tsirkin 已提交
477
{
478
    return features;
M
Michael S. Tsirkin 已提交
479
}
480

C
Cornelia Huck 已提交
481
void vhost_net_ack_features(struct vhost_net *net, uint64_t features)
M
Michael S. Tsirkin 已提交
482 483
{
}
484

485 486 487 488 489
uint64_t vhost_net_get_acked_features(VHostNetState *net)
{
    return 0;
}

490 491
bool vhost_net_virtqueue_pending(VHostNetState *net, int idx)
{
492
    return false;
493 494 495 496 497 498
}

void vhost_net_virtqueue_mask(VHostNetState *net, VirtIODevice *dev,
                              int idx, bool mask)
{
}
499

500 501 502 503 504
int vhost_net_notify_migration_done(struct vhost_net *net, char* mac_addr)
{
    return -1;
}

505 506 507 508
VHostNetState *get_vhost_net(NetClientState *nc)
{
    return 0;
}
509 510 511 512 513

int vhost_set_vring_enable(NetClientState *nc, int enable)
{
    return 0;
}
M
Michael S. Tsirkin 已提交
514
#endif