virtio-net.c 25.3 KB
Newer Older
A
aliguori 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Virtio Network Device
 *
 * Copyright IBM, Corp. 2007
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

#include "virtio.h"
#include "net.h"
16
#include "net/checksum.h"
17
#include "net/tap.h"
A
aliguori 已提交
18 19 20
#include "qemu-timer.h"
#include "virtio-net.h"

21
#define VIRTIO_NET_VM_VERSION    11
22

23
#define MAC_TABLE_ENTRIES    64
24
#define MAX_VLAN    (1 << 12)   /* Per 802.1Q definition */
25

A
aliguori 已提交
26 27 28
typedef struct VirtIONet
{
    VirtIODevice vdev;
29
    uint8_t mac[ETH_ALEN];
30
    uint16_t status;
A
aliguori 已提交
31 32
    VirtQueue *rx_vq;
    VirtQueue *tx_vq;
33
    VirtQueue *ctrl_vq;
A
aliguori 已提交
34 35 36
    VLANClientState *vc;
    QEMUTimer *tx_timer;
    int tx_timer_active;
M
Mark McLoughlin 已提交
37
    uint32_t has_vnet_hdr;
38
    uint8_t has_ufo;
39 40 41 42
    struct {
        VirtQueueElement elem;
        ssize_t len;
    } async_tx;
A
aliguori 已提交
43
    int mergeable_rx_bufs;
44 45
    uint8_t promisc;
    uint8_t allmulti;
46 47 48 49
    uint8_t alluni;
    uint8_t nomulti;
    uint8_t nouni;
    uint8_t nobcast;
50 51
    struct {
        int in_use;
52
        int first_multi;
53 54
        uint8_t multi_overflow;
        uint8_t uni_overflow;
55 56
        uint8_t *macs;
    } mac_table;
57
    uint32_t *vlans;
A
aliguori 已提交
58 59 60 61 62 63 64 65 66 67 68
} VirtIONet;

/* TODO
 * - we could suppress RX interrupt if we were so inclined.
 */

static VirtIONet *to_virtio_net(VirtIODevice *vdev)
{
    return (VirtIONet *)vdev;
}

69
static void virtio_net_get_config(VirtIODevice *vdev, uint8_t *config)
A
aliguori 已提交
70 71 72 73
{
    VirtIONet *n = to_virtio_net(vdev);
    struct virtio_net_config netcfg;

74
    netcfg.status = n->status;
75
    memcpy(netcfg.mac, n->mac, ETH_ALEN);
A
aliguori 已提交
76 77 78
    memcpy(config, &netcfg, sizeof(netcfg));
}

79 80 81 82 83 84 85
static void virtio_net_set_config(VirtIODevice *vdev, const uint8_t *config)
{
    VirtIONet *n = to_virtio_net(vdev);
    struct virtio_net_config netcfg;

    memcpy(&netcfg, config, sizeof(netcfg));

86 87
    if (memcmp(netcfg.mac, n->mac, ETH_ALEN)) {
        memcpy(n->mac, netcfg.mac, ETH_ALEN);
88 89 90 91
        qemu_format_nic_info_str(n->vc, n->mac);
    }
}

92 93 94 95 96 97 98 99 100 101 102 103 104 105
static void virtio_net_set_link_status(VLANClientState *vc)
{
    VirtIONet *n = vc->opaque;
    uint16_t old_status = n->status;

    if (vc->link_down)
        n->status &= ~VIRTIO_NET_S_LINK_UP;
    else
        n->status |= VIRTIO_NET_S_LINK_UP;

    if (n->status != old_status)
        virtio_notify_config(&n->vdev);
}

106 107 108 109 110 111 112
static void virtio_net_reset(VirtIODevice *vdev)
{
    VirtIONet *n = to_virtio_net(vdev);

    /* Reset back to compatibility mode */
    n->promisc = 1;
    n->allmulti = 0;
113 114 115 116
    n->alluni = 0;
    n->nomulti = 0;
    n->nouni = 0;
    n->nobcast = 0;
117

118
    /* Flush any MAC and VLAN filter table state */
119
    n->mac_table.in_use = 0;
120
    n->mac_table.first_multi = 0;
121 122
    n->mac_table.multi_overflow = 0;
    n->mac_table.uni_overflow = 0;
123
    memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);
124
    memset(n->vlans, 0, MAX_VLAN >> 3);
125 126
}

M
Mark McLoughlin 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139
static int peer_has_vnet_hdr(VirtIONet *n)
{
    if (!n->vc->peer)
        return 0;

    if (n->vc->peer->type != NET_CLIENT_TYPE_TAP)
        return 0;

    n->has_vnet_hdr = tap_has_vnet_hdr(n->vc->peer);

    return n->has_vnet_hdr;
}

140 141 142 143 144 145 146 147 148 149
static int peer_has_ufo(VirtIONet *n)
{
    if (!peer_has_vnet_hdr(n))
        return 0;

    n->has_ufo = tap_has_ufo(n->vc->peer);

    return n->has_ufo;
}

A
aliguori 已提交
150 151
static uint32_t virtio_net_get_features(VirtIODevice *vdev)
{
M
Mark McLoughlin 已提交
152
    VirtIONet *n = to_virtio_net(vdev);
153
    uint32_t features = (1 << VIRTIO_NET_F_MAC) |
154
                        (1 << VIRTIO_NET_F_MRG_RXBUF) |
155
                        (1 << VIRTIO_NET_F_STATUS) |
156
                        (1 << VIRTIO_NET_F_CTRL_VQ) |
157
                        (1 << VIRTIO_NET_F_CTRL_RX) |
158 159
                        (1 << VIRTIO_NET_F_CTRL_VLAN) |
                        (1 << VIRTIO_NET_F_CTRL_RX_EXTRA);
A
aliguori 已提交
160

M
Mark McLoughlin 已提交
161 162 163 164 165 166 167
    if (peer_has_vnet_hdr(n)) {
        tap_using_vnet_hdr(n->vc->peer, 1);

        features |= (1 << VIRTIO_NET_F_CSUM);
        features |= (1 << VIRTIO_NET_F_HOST_TSO4);
        features |= (1 << VIRTIO_NET_F_HOST_TSO6);
        features |= (1 << VIRTIO_NET_F_HOST_ECN);
168 169 170 171 172

        features |= (1 << VIRTIO_NET_F_GUEST_CSUM);
        features |= (1 << VIRTIO_NET_F_GUEST_TSO4);
        features |= (1 << VIRTIO_NET_F_GUEST_TSO6);
        features |= (1 << VIRTIO_NET_F_GUEST_ECN);
173

174
        if (peer_has_ufo(n)) {
175 176 177
            features |= (1 << VIRTIO_NET_F_GUEST_UFO);
            features |= (1 << VIRTIO_NET_F_HOST_UFO);
        }
M
Mark McLoughlin 已提交
178 179
    }

A
aliguori 已提交
180 181 182
    return features;
}

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
static uint32_t virtio_net_bad_features(VirtIODevice *vdev)
{
    uint32_t features = 0;

    /* Linux kernel 2.6.25.  It understood MAC (as everyone must),
     * but also these: */
    features |= (1 << VIRTIO_NET_F_MAC);
    features |= (1 << VIRTIO_NET_F_GUEST_CSUM);
    features |= (1 << VIRTIO_NET_F_GUEST_TSO4);
    features |= (1 << VIRTIO_NET_F_GUEST_TSO6);
    features |= (1 << VIRTIO_NET_F_GUEST_ECN);

    return features & virtio_net_get_features(vdev);
}

A
aliguori 已提交
198 199 200 201 202
static void virtio_net_set_features(VirtIODevice *vdev, uint32_t features)
{
    VirtIONet *n = to_virtio_net(vdev);

    n->mergeable_rx_bufs = !!(features & (1 << VIRTIO_NET_F_MRG_RXBUF));
203 204 205 206 207 208

    if (n->has_vnet_hdr) {
        tap_set_offload(n->vc->peer,
                        (features >> VIRTIO_NET_F_GUEST_CSUM) & 1,
                        (features >> VIRTIO_NET_F_GUEST_TSO4) & 1,
                        (features >> VIRTIO_NET_F_GUEST_TSO6) & 1,
209 210
                        (features >> VIRTIO_NET_F_GUEST_ECN)  & 1,
                        (features >> VIRTIO_NET_F_GUEST_UFO)  & 1);
211
    }
A
aliguori 已提交
212 213
}

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
static int virtio_net_handle_rx_mode(VirtIONet *n, uint8_t cmd,
                                     VirtQueueElement *elem)
{
    uint8_t on;

    if (elem->out_num != 2 || elem->out_sg[1].iov_len != sizeof(on)) {
        fprintf(stderr, "virtio-net ctrl invalid rx mode command\n");
        exit(1);
    }

    on = ldub_p(elem->out_sg[1].iov_base);

    if (cmd == VIRTIO_NET_CTRL_RX_MODE_PROMISC)
        n->promisc = on;
    else if (cmd == VIRTIO_NET_CTRL_RX_MODE_ALLMULTI)
        n->allmulti = on;
230 231 232 233 234 235 236 237
    else if (cmd == VIRTIO_NET_CTRL_RX_MODE_ALLUNI)
        n->alluni = on;
    else if (cmd == VIRTIO_NET_CTRL_RX_MODE_NOMULTI)
        n->nomulti = on;
    else if (cmd == VIRTIO_NET_CTRL_RX_MODE_NOUNI)
        n->nouni = on;
    else if (cmd == VIRTIO_NET_CTRL_RX_MODE_NOBCAST)
        n->nobcast = on;
238 239 240 241 242 243
    else
        return VIRTIO_NET_ERR;

    return VIRTIO_NET_OK;
}

244 245 246 247 248 249 250 251 252 253 254
static int virtio_net_handle_mac(VirtIONet *n, uint8_t cmd,
                                 VirtQueueElement *elem)
{
    struct virtio_net_ctrl_mac mac_data;

    if (cmd != VIRTIO_NET_CTRL_MAC_TABLE_SET || elem->out_num != 3 ||
        elem->out_sg[1].iov_len < sizeof(mac_data) ||
        elem->out_sg[2].iov_len < sizeof(mac_data))
        return VIRTIO_NET_ERR;

    n->mac_table.in_use = 0;
255
    n->mac_table.first_multi = 0;
256 257
    n->mac_table.uni_overflow = 0;
    n->mac_table.multi_overflow = 0;
258 259 260 261 262 263 264 265 266 267 268 269 270
    memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);

    mac_data.entries = ldl_le_p(elem->out_sg[1].iov_base);

    if (sizeof(mac_data.entries) +
        (mac_data.entries * ETH_ALEN) > elem->out_sg[1].iov_len)
        return VIRTIO_NET_ERR;

    if (mac_data.entries <= MAC_TABLE_ENTRIES) {
        memcpy(n->mac_table.macs, elem->out_sg[1].iov_base + sizeof(mac_data),
               mac_data.entries * ETH_ALEN);
        n->mac_table.in_use += mac_data.entries;
    } else {
271
        n->mac_table.uni_overflow = 1;
272 273
    }

274 275
    n->mac_table.first_multi = n->mac_table.in_use;

276 277 278 279 280 281 282 283 284 285 286 287
    mac_data.entries = ldl_le_p(elem->out_sg[2].iov_base);

    if (sizeof(mac_data.entries) +
        (mac_data.entries * ETH_ALEN) > elem->out_sg[2].iov_len)
        return VIRTIO_NET_ERR;

    if (mac_data.entries) {
        if (n->mac_table.in_use + mac_data.entries <= MAC_TABLE_ENTRIES) {
            memcpy(n->mac_table.macs + (n->mac_table.in_use * ETH_ALEN),
                   elem->out_sg[2].iov_base + sizeof(mac_data),
                   mac_data.entries * ETH_ALEN);
            n->mac_table.in_use += mac_data.entries;
288 289 290
        } else {
            n->mac_table.multi_overflow = 1;
        }
291 292 293 294 295
    }

    return VIRTIO_NET_OK;
}

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
static int virtio_net_handle_vlan_table(VirtIONet *n, uint8_t cmd,
                                        VirtQueueElement *elem)
{
    uint16_t vid;

    if (elem->out_num != 2 || elem->out_sg[1].iov_len != sizeof(vid)) {
        fprintf(stderr, "virtio-net ctrl invalid vlan command\n");
        return VIRTIO_NET_ERR;
    }

    vid = lduw_le_p(elem->out_sg[1].iov_base);

    if (vid >= MAX_VLAN)
        return VIRTIO_NET_ERR;

    if (cmd == VIRTIO_NET_CTRL_VLAN_ADD)
        n->vlans[vid >> 5] |= (1U << (vid & 0x1f));
    else if (cmd == VIRTIO_NET_CTRL_VLAN_DEL)
        n->vlans[vid >> 5] &= ~(1U << (vid & 0x1f));
    else
        return VIRTIO_NET_ERR;

    return VIRTIO_NET_OK;
}

321 322
static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
{
323
    VirtIONet *n = to_virtio_net(vdev);
324 325 326 327 328 329 330 331 332 333 334
    struct virtio_net_ctrl_hdr ctrl;
    virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
    VirtQueueElement elem;

    while (virtqueue_pop(vq, &elem)) {
        if ((elem.in_num < 1) || (elem.out_num < 1)) {
            fprintf(stderr, "virtio-net ctrl missing headers\n");
            exit(1);
        }

        if (elem.out_sg[0].iov_len < sizeof(ctrl) ||
335
            elem.in_sg[elem.in_num - 1].iov_len < sizeof(status)) {
336 337 338 339 340 341 342
            fprintf(stderr, "virtio-net ctrl header not in correct element\n");
            exit(1);
        }

        ctrl.class = ldub_p(elem.out_sg[0].iov_base);
        ctrl.cmd = ldub_p(elem.out_sg[0].iov_base + sizeof(ctrl.class));

343 344
        if (ctrl.class == VIRTIO_NET_CTRL_RX_MODE)
            status = virtio_net_handle_rx_mode(n, ctrl.cmd, &elem);
345 346
        else if (ctrl.class == VIRTIO_NET_CTRL_MAC)
            status = virtio_net_handle_mac(n, ctrl.cmd, &elem);
347 348
        else if (ctrl.class == VIRTIO_NET_CTRL_VLAN)
            status = virtio_net_handle_vlan_table(n, ctrl.cmd, &elem);
349

350 351 352 353 354 355 356
        stb_p(elem.in_sg[elem.in_num - 1].iov_base, status);

        virtqueue_push(vq, &elem, sizeof(status));
        virtio_notify(vdev, vq);
    }
}

A
aliguori 已提交
357 358 359 360
/* RX */

static void virtio_net_handle_rx(VirtIODevice *vdev, VirtQueue *vq)
{
361 362 363
    VirtIONet *n = to_virtio_net(vdev);

    qemu_flush_queued_packets(n->vc);
364 365 366 367

    /* We now have RX buffers, signal to the IO thread to break out of the
     * select to re-poll the tap file descriptor */
    qemu_notify_event();
A
aliguori 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
}

static int do_virtio_net_can_receive(VirtIONet *n, int bufsize)
{
    if (!virtio_queue_ready(n->rx_vq) ||
        !(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK))
        return 0;

    if (virtio_queue_empty(n->rx_vq) ||
        (n->mergeable_rx_bufs &&
         !virtqueue_avail_bytes(n->rx_vq, bufsize, 0))) {
        virtio_queue_set_notification(n->rx_vq, 1);
        return 0;
    }

    virtio_queue_set_notification(n->rx_vq, 0);
    return 1;
}

387
static int virtio_net_can_receive(VLANClientState *vc)
A
aliguori 已提交
388
{
389
    VirtIONet *n = vc->opaque;
A
aliguori 已提交
390 391 392 393

    return do_virtio_net_can_receive(n, VIRTIO_NET_MAX_BUFSIZE);
}

A
Anthony Liguori 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
/* dhclient uses AF_PACKET but doesn't pass auxdata to the kernel so
 * it never finds out that the packets don't have valid checksums.  This
 * causes dhclient to get upset.  Fedora's carried a patch for ages to
 * fix this with Xen but it hasn't appeared in an upstream release of
 * dhclient yet.
 *
 * To avoid breaking existing guests, we catch udp packets and add
 * checksums.  This is terrible but it's better than hacking the guest
 * kernels.
 *
 * N.B. if we introduce a zero-copy API, this operation is no longer free so
 * we should provide a mechanism to disable it to avoid polluting the host
 * cache.
 */
static void work_around_broken_dhclient(struct virtio_net_hdr *hdr,
                                        const uint8_t *buf, size_t size)
{
    if ((hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) && /* missing csum */
        (size > 27 && size < 1500) && /* normal sized MTU */
        (buf[12] == 0x08 && buf[13] == 0x00) && /* ethertype == IPv4 */
        (buf[23] == 17) && /* ip.protocol == UDP */
        (buf[34] == 0 && buf[35] == 67)) { /* udp.srcport == bootps */
        /* FIXME this cast is evil */
        net_checksum_calculate((uint8_t *)buf, size);
        hdr->flags &= ~VIRTIO_NET_HDR_F_NEEDS_CSUM;
    }
}

A
aliguori 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
static int iov_fill(struct iovec *iov, int iovcnt, const void *buf, int count)
{
    int offset, i;

    offset = i = 0;
    while (offset < count && i < iovcnt) {
        int len = MIN(iov[i].iov_len, count - offset);
        memcpy(iov[i].iov_base, buf + offset, len);
        offset += len;
        i++;
    }

    return offset;
}

static int receive_header(VirtIONet *n, struct iovec *iov, int iovcnt,
A
aliguori 已提交
438
                          const void *buf, size_t size, size_t hdr_len)
A
aliguori 已提交
439
{
440
    struct virtio_net_hdr *hdr = (struct virtio_net_hdr *)iov[0].iov_base;
A
aliguori 已提交
441 442 443 444 445
    int offset = 0;

    hdr->flags = 0;
    hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;

M
Mark McLoughlin 已提交
446 447 448
    if (n->has_vnet_hdr) {
        memcpy(hdr, buf, sizeof(*hdr));
        offset = sizeof(*hdr);
A
Anthony Liguori 已提交
449
        work_around_broken_dhclient(hdr, buf + offset, size - offset);
M
Mark McLoughlin 已提交
450 451
    }

A
aliguori 已提交
452 453 454 455 456 457 458 459 460
    /* We only ever receive a struct virtio_net_hdr from the tapfd,
     * but we may be passing along a larger header to the guest.
     */
    iov[0].iov_base += hdr_len;
    iov[0].iov_len  -= hdr_len;

    return offset;
}

461 462 463
static int receive_filter(VirtIONet *n, const uint8_t *buf, int size)
{
    static const uint8_t bcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
464
    static const uint8_t vlan[] = {0x81, 0x00};
465
    uint8_t *ptr = (uint8_t *)buf;
466
    int i;
467 468 469 470

    if (n->promisc)
        return 1;

M
Mark McLoughlin 已提交
471 472 473 474
    if (n->has_vnet_hdr) {
        ptr += sizeof(struct virtio_net_hdr);
    }

475 476 477 478 479 480
    if (!memcmp(&ptr[12], vlan, sizeof(vlan))) {
        int vid = be16_to_cpup((uint16_t *)(ptr + 14)) & 0xfff;
        if (!(n->vlans[vid >> 5] & (1U << (vid & 0x1f))))
            return 0;
    }

481 482
    if (ptr[0] & 1) { // multicast
        if (!memcmp(ptr, bcast, sizeof(bcast))) {
483 484 485
            return !n->nobcast;
        } else if (n->nomulti) {
            return 0;
486
        } else if (n->allmulti || n->mac_table.multi_overflow) {
487 488
            return 1;
        }
489 490 491 492 493 494

        for (i = n->mac_table.first_multi; i < n->mac_table.in_use; i++) {
            if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
                return 1;
            }
        }
495
    } else { // unicast
496 497 498
        if (n->nouni) {
            return 0;
        } else if (n->alluni || n->mac_table.uni_overflow) {
499 500
            return 1;
        } else if (!memcmp(ptr, n->mac, ETH_ALEN)) {
501 502
            return 1;
        }
503

504 505 506 507 508
        for (i = 0; i < n->mac_table.first_multi; i++) {
            if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
                return 1;
            }
        }
509 510
    }

511 512 513
    return 0;
}

514
static ssize_t virtio_net_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
A
aliguori 已提交
515
{
516
    VirtIONet *n = vc->opaque;
A
aliguori 已提交
517
    struct virtio_net_hdr_mrg_rxbuf *mhdr = NULL;
A
aliguori 已提交
518
    size_t hdr_len, offset, i;
A
aliguori 已提交
519 520

    if (!do_virtio_net_can_receive(n, size))
521
        return 0;
A
aliguori 已提交
522

523
    if (!receive_filter(n, buf, size))
524
        return size;
525

A
aliguori 已提交
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
    /* hdr_len refers to the header we supply to the guest */
    hdr_len = n->mergeable_rx_bufs ?
        sizeof(struct virtio_net_hdr_mrg_rxbuf) : sizeof(struct virtio_net_hdr);

    offset = i = 0;

    while (offset < size) {
        VirtQueueElement elem;
        int len, total;
        struct iovec sg[VIRTQUEUE_MAX_SIZE];

        len = total = 0;

        if ((i != 0 && !n->mergeable_rx_bufs) ||
            virtqueue_pop(n->rx_vq, &elem) == 0) {
            if (i == 0)
542
                return -1;
A
aliguori 已提交
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
            fprintf(stderr, "virtio-net truncating packet\n");
            exit(1);
        }

        if (elem.in_num < 1) {
            fprintf(stderr, "virtio-net receive queue contains no in buffers\n");
            exit(1);
        }

        if (!n->mergeable_rx_bufs && elem.in_sg[0].iov_len != hdr_len) {
            fprintf(stderr, "virtio-net header not in first element\n");
            exit(1);
        }

        memcpy(&sg, &elem.in_sg[0], sizeof(sg[0]) * elem.in_num);

        if (i == 0) {
            if (n->mergeable_rx_bufs)
                mhdr = (struct virtio_net_hdr_mrg_rxbuf *)sg[0].iov_base;

            offset += receive_header(n, sg, elem.in_num,
                                     buf + offset, size - offset, hdr_len);
            total += hdr_len;
        }

        /* copy in packet.  ugh */
        len = iov_fill(sg, elem.in_num,
                       buf + offset, size - offset);
        total += len;

        /* signal other side */
        virtqueue_fill(n->rx_vq, &elem, total, i++);

        offset += len;
    }

    if (mhdr)
        mhdr->num_buffers = i;

    virtqueue_flush(n->rx_vq, i);
    virtio_notify(&n->vdev, n->rx_vq);
584 585

    return size;
A
aliguori 已提交
586 587
}

588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
static void virtio_net_flush_tx(VirtIONet *n, VirtQueue *vq);

static void virtio_net_tx_complete(VLANClientState *vc, ssize_t len)
{
    VirtIONet *n = vc->opaque;

    virtqueue_push(n->tx_vq, &n->async_tx.elem, n->async_tx.len);
    virtio_notify(&n->vdev, n->tx_vq);

    n->async_tx.elem.out_num = n->async_tx.len = 0;

    virtio_queue_set_notification(n->tx_vq, 1);
    virtio_net_flush_tx(n, n->tx_vq);
}

A
aliguori 已提交
603 604 605 606 607 608 609 610
/* TX */
static void virtio_net_flush_tx(VirtIONet *n, VirtQueue *vq)
{
    VirtQueueElement elem;

    if (!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK))
        return;

611 612 613 614 615
    if (n->async_tx.elem.out_num) {
        virtio_queue_set_notification(n->tx_vq, 0);
        return;
    }

A
aliguori 已提交
616
    while (virtqueue_pop(vq, &elem)) {
617
        ssize_t ret, len = 0;
A
aliguori 已提交
618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
        unsigned int out_num = elem.out_num;
        struct iovec *out_sg = &elem.out_sg[0];
        unsigned hdr_len;

        /* hdr_len refers to the header received from the guest */
        hdr_len = n->mergeable_rx_bufs ?
            sizeof(struct virtio_net_hdr_mrg_rxbuf) :
            sizeof(struct virtio_net_hdr);

        if (out_num < 1 || out_sg->iov_len != hdr_len) {
            fprintf(stderr, "virtio-net header not in first element\n");
            exit(1);
        }

        /* ignore the header if GSO is not supported */
M
Mark McLoughlin 已提交
633
        if (!n->has_vnet_hdr) {
A
aliguori 已提交
634 635 636 637 638 639 640 641 642 643
            out_num--;
            out_sg++;
            len += hdr_len;
        } else if (n->mergeable_rx_bufs) {
            /* tapfd expects a struct virtio_net_hdr */
            hdr_len -= sizeof(struct virtio_net_hdr);
            out_sg->iov_len -= hdr_len;
            len += hdr_len;
        }

644 645 646 647 648 649 650 651 652 653
        ret = qemu_sendv_packet_async(n->vc, out_sg, out_num,
                                      virtio_net_tx_complete);
        if (ret == 0) {
            virtio_queue_set_notification(n->tx_vq, 0);
            n->async_tx.elem = elem;
            n->async_tx.len  = len;
            return;
        }

        len += ret;
A
aliguori 已提交
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696

        virtqueue_push(vq, &elem, len);
        virtio_notify(&n->vdev, vq);
    }
}

static void virtio_net_handle_tx(VirtIODevice *vdev, VirtQueue *vq)
{
    VirtIONet *n = to_virtio_net(vdev);

    if (n->tx_timer_active) {
        virtio_queue_set_notification(vq, 1);
        qemu_del_timer(n->tx_timer);
        n->tx_timer_active = 0;
        virtio_net_flush_tx(n, vq);
    } else {
        qemu_mod_timer(n->tx_timer,
                       qemu_get_clock(vm_clock) + TX_TIMER_INTERVAL);
        n->tx_timer_active = 1;
        virtio_queue_set_notification(vq, 0);
    }
}

static void virtio_net_tx_timer(void *opaque)
{
    VirtIONet *n = opaque;

    n->tx_timer_active = 0;

    /* Just in case the driver is not ready on more */
    if (!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK))
        return;

    virtio_queue_set_notification(n->tx_vq, 1);
    virtio_net_flush_tx(n, n->tx_vq);
}

static void virtio_net_save(QEMUFile *f, void *opaque)
{
    VirtIONet *n = opaque;

    virtio_save(&n->vdev, f);

697
    qemu_put_buffer(f, n->mac, ETH_ALEN);
A
aliguori 已提交
698
    qemu_put_be32(f, n->tx_timer_active);
699
    qemu_put_be32(f, n->mergeable_rx_bufs);
700
    qemu_put_be16(f, n->status);
701 702
    qemu_put_byte(f, n->promisc);
    qemu_put_byte(f, n->allmulti);
703 704
    qemu_put_be32(f, n->mac_table.in_use);
    qemu_put_buffer(f, n->mac_table.macs, n->mac_table.in_use * ETH_ALEN);
705
    qemu_put_buffer(f, (uint8_t *)n->vlans, MAX_VLAN >> 3);
M
Mark McLoughlin 已提交
706
    qemu_put_be32(f, n->has_vnet_hdr);
707 708
    qemu_put_byte(f, n->mac_table.multi_overflow);
    qemu_put_byte(f, n->mac_table.uni_overflow);
709 710 711 712
    qemu_put_byte(f, n->alluni);
    qemu_put_byte(f, n->nomulti);
    qemu_put_byte(f, n->nouni);
    qemu_put_byte(f, n->nobcast);
713
    qemu_put_byte(f, n->has_ufo);
A
aliguori 已提交
714 715 716 717 718
}

static int virtio_net_load(QEMUFile *f, void *opaque, int version_id)
{
    VirtIONet *n = opaque;
719
    int i;
A
aliguori 已提交
720

721
    if (version_id < 2 || version_id > VIRTIO_NET_VM_VERSION)
A
aliguori 已提交
722 723 724 725
        return -EINVAL;

    virtio_load(&n->vdev, f);

726
    qemu_get_buffer(f, n->mac, ETH_ALEN);
A
aliguori 已提交
727
    n->tx_timer_active = qemu_get_be32(f);
728
    n->mergeable_rx_bufs = qemu_get_be32(f);
A
aliguori 已提交
729

730 731 732
    if (version_id >= 3)
        n->status = qemu_get_be16(f);

733
    if (version_id >= 4) {
734 735 736 737 738 739 740
        if (version_id < 8) {
            n->promisc = qemu_get_be32(f);
            n->allmulti = qemu_get_be32(f);
        } else {
            n->promisc = qemu_get_byte(f);
            n->allmulti = qemu_get_byte(f);
        }
741 742
    }

743 744 745 746 747 748 749 750
    if (version_id >= 5) {
        n->mac_table.in_use = qemu_get_be32(f);
        /* MAC_TABLE_ENTRIES may be different from the saved image */
        if (n->mac_table.in_use <= MAC_TABLE_ENTRIES) {
            qemu_get_buffer(f, n->mac_table.macs,
                            n->mac_table.in_use * ETH_ALEN);
        } else if (n->mac_table.in_use) {
            qemu_fseek(f, n->mac_table.in_use * ETH_ALEN, SEEK_CUR);
751
            n->mac_table.multi_overflow = n->mac_table.uni_overflow = 1;
752 753 754 755
            n->mac_table.in_use = 0;
        }
    }
 
756 757 758
    if (version_id >= 6)
        qemu_get_buffer(f, (uint8_t *)n->vlans, MAX_VLAN >> 3);

M
Mark McLoughlin 已提交
759 760 761 762 763 764 765 766
    if (version_id >= 7) {
        if (qemu_get_be32(f) && !peer_has_vnet_hdr(n)) {
            qemu_error("virtio-net: saved image requires vnet_hdr=on\n");
            return -1;
        }

        if (n->has_vnet_hdr) {
            tap_using_vnet_hdr(n->vc->peer, 1);
767 768 769 770
            tap_set_offload(n->vc->peer,
                            (n->vdev.features >> VIRTIO_NET_F_GUEST_CSUM) & 1,
                            (n->vdev.features >> VIRTIO_NET_F_GUEST_TSO4) & 1,
                            (n->vdev.features >> VIRTIO_NET_F_GUEST_TSO6) & 1,
771 772
                            (n->vdev.features >> VIRTIO_NET_F_GUEST_ECN)  & 1,
                            (n->vdev.features >> VIRTIO_NET_F_GUEST_UFO)  & 1);
M
Mark McLoughlin 已提交
773
        }
774 775
    }

776 777 778 779 780
    if (version_id >= 9) {
        n->mac_table.multi_overflow = qemu_get_byte(f);
        n->mac_table.uni_overflow = qemu_get_byte(f);
    }

781 782 783 784 785 786 787
    if (version_id >= 10) {
        n->alluni = qemu_get_byte(f);
        n->nomulti = qemu_get_byte(f);
        n->nouni = qemu_get_byte(f);
        n->nobcast = qemu_get_byte(f);
    }

788 789 790 791 792 793 794
    if (version_id >= 11) {
        if (qemu_get_byte(f) && !peer_has_ufo(n)) {
            qemu_error("virtio-net: saved image requires TUN_F_UFO support\n");
            return -1;
        }
    }

795 796 797 798 799 800 801 802
    /* Find the first multicast entry in the saved MAC filter */
    for (i = 0; i < n->mac_table.in_use; i++) {
        if (n->mac_table.macs[i * ETH_ALEN] & 1) {
            break;
        }
    }
    n->mac_table.first_multi = i;

A
aliguori 已提交
803 804 805 806 807 808 809 810
    if (n->tx_timer_active) {
        qemu_mod_timer(n->tx_timer,
                       qemu_get_clock(vm_clock) + TX_TIMER_INTERVAL);
    }

    return 0;
}

811 812 813 814
static void virtio_net_cleanup(VLANClientState *vc)
{
    VirtIONet *n = vc->opaque;

815
    n->vc = NULL;
816 817
}

818
VirtIODevice *virtio_net_init(DeviceState *dev, NICConf *conf)
A
aliguori 已提交
819 820 821 822
{
    VirtIONet *n;
    static int virtio_net_id;

P
Paul Brook 已提交
823 824 825
    n = (VirtIONet *)virtio_common_init("virtio-net", VIRTIO_ID_NET,
                                        sizeof(struct virtio_net_config),
                                        sizeof(VirtIONet));
A
aliguori 已提交
826

827 828
    n->vdev.get_config = virtio_net_get_config;
    n->vdev.set_config = virtio_net_set_config;
A
aliguori 已提交
829 830
    n->vdev.get_features = virtio_net_get_features;
    n->vdev.set_features = virtio_net_set_features;
831
    n->vdev.bad_features = virtio_net_bad_features;
832
    n->vdev.reset = virtio_net_reset;
A
aliguori 已提交
833 834
    n->rx_vq = virtio_add_queue(&n->vdev, 256, virtio_net_handle_rx);
    n->tx_vq = virtio_add_queue(&n->vdev, 256, virtio_net_handle_tx);
835
    n->ctrl_vq = virtio_add_queue(&n->vdev, 64, virtio_net_handle_ctrl);
836
    qemu_macaddr_default_if_unset(&conf->macaddr);
837
    memcpy(&n->mac[0], &conf->macaddr, sizeof(n->mac));
838
    n->status = VIRTIO_NET_S_LINK_UP;
839 840
    n->vc = qemu_new_vlan_client(NET_CLIENT_TYPE_NIC, conf->vlan, conf->peer,
                                 dev->info->name, dev->id,
841
                                 virtio_net_can_receive,
842
                                 virtio_net_receive, NULL, NULL,
843
                                 virtio_net_cleanup, n);
844
    n->vc->link_status_changed = virtio_net_set_link_status;
A
aliguori 已提交
845

846
    qemu_format_nic_info_str(n->vc, conf->macaddr.a);
847

A
aliguori 已提交
848 849 850
    n->tx_timer = qemu_new_timer(vm_clock, virtio_net_tx_timer, n);
    n->tx_timer_active = 0;
    n->mergeable_rx_bufs = 0;
851
    n->promisc = 1; /* for compatibility */
A
aliguori 已提交
852

853 854
    n->mac_table.macs = qemu_mallocz(MAC_TABLE_ENTRIES * ETH_ALEN);

855 856
    n->vlans = qemu_mallocz(MAX_VLAN >> 3);

857
    register_savevm("virtio-net", virtio_net_id++, VIRTIO_NET_VM_VERSION,
A
aliguori 已提交
858
                    virtio_net_save, virtio_net_load, n);
P
Paul Brook 已提交
859

P
Paul Brook 已提交
860
    return &n->vdev;
P
Paul Brook 已提交
861
}
862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879

void virtio_net_exit(VirtIODevice *vdev)
{
    VirtIONet *n = DO_UPCAST(VirtIONet, vdev, vdev);

    qemu_purge_queued_packets(n->vc);

    unregister_savevm("virtio-net", n);

    qemu_free(n->mac_table.macs);
    qemu_free(n->vlans);

    qemu_del_timer(n->tx_timer);
    qemu_free_timer(n->tx_timer);

    virtio_cleanup(&n->vdev);
    qemu_del_vlan_client(n->vc);
}