virtio-net.c 28.9 KB
Newer Older
A
aliguori 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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.
 *
 */

14
#include "iov.h"
A
aliguori 已提交
15 16
#include "virtio.h"
#include "net.h"
17
#include "net/checksum.h"
18
#include "net/tap.h"
19
#include "qemu-error.h"
A
aliguori 已提交
20 21
#include "qemu-timer.h"
#include "virtio-net.h"
22
#include "vhost_net.h"
A
aliguori 已提交
23

24
#define VIRTIO_NET_VM_VERSION    11
25

26
#define MAC_TABLE_ENTRIES    64
27
#define MAX_VLAN    (1 << 12)   /* Per 802.1Q definition */
28

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

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

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

77
static void virtio_net_get_config(VirtIODevice *vdev, uint8_t *config)
A
aliguori 已提交
78 79 80 81
{
    VirtIONet *n = to_virtio_net(vdev);
    struct virtio_net_config netcfg;

82
    netcfg.status = n->status;
83
    memcpy(netcfg.mac, n->mac, ETH_ALEN);
A
aliguori 已提交
84 85 86
    memcpy(config, &netcfg, sizeof(netcfg));
}

87 88 89 90 91 92 93
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));

94 95
    if (memcmp(netcfg.mac, n->mac, ETH_ALEN)) {
        memcpy(n->mac, netcfg.mac, ETH_ALEN);
M
Mark McLoughlin 已提交
96
        qemu_format_nic_info_str(&n->nic->nc, n->mac);
97 98 99
    }
}

M
Mark McLoughlin 已提交
100
static void virtio_net_set_link_status(VLANClientState *nc)
101
{
M
Mark McLoughlin 已提交
102
    VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
103 104
    uint16_t old_status = n->status;

M
Mark McLoughlin 已提交
105
    if (nc->link_down)
106 107 108 109 110 111 112 113
        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);
}

114 115 116 117 118 119 120
static void virtio_net_reset(VirtIODevice *vdev)
{
    VirtIONet *n = to_virtio_net(vdev);

    /* Reset back to compatibility mode */
    n->promisc = 1;
    n->allmulti = 0;
121 122 123 124
    n->alluni = 0;
    n->nomulti = 0;
    n->nouni = 0;
    n->nobcast = 0;
125 126 127 128
    if (n->vhost_started) {
        vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), vdev);
        n->vhost_started = 0;
    }
129

130
    /* Flush any MAC and VLAN filter table state */
131
    n->mac_table.in_use = 0;
132
    n->mac_table.first_multi = 0;
133 134
    n->mac_table.multi_overflow = 0;
    n->mac_table.uni_overflow = 0;
135
    memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);
136
    memset(n->vlans, 0, MAX_VLAN >> 3);
137 138
}

M
Mark McLoughlin 已提交
139 140
static int peer_has_vnet_hdr(VirtIONet *n)
{
M
Mark McLoughlin 已提交
141
    if (!n->nic->nc.peer)
M
Mark McLoughlin 已提交
142 143
        return 0;

144
    if (n->nic->nc.peer->info->type != NET_CLIENT_TYPE_TAP)
M
Mark McLoughlin 已提交
145 146
        return 0;

M
Mark McLoughlin 已提交
147
    n->has_vnet_hdr = tap_has_vnet_hdr(n->nic->nc.peer);
M
Mark McLoughlin 已提交
148 149 150 151

    return n->has_vnet_hdr;
}

152 153 154 155 156
static int peer_has_ufo(VirtIONet *n)
{
    if (!peer_has_vnet_hdr(n))
        return 0;

M
Mark McLoughlin 已提交
157
    n->has_ufo = tap_has_ufo(n->nic->nc.peer);
158 159 160 161

    return n->has_ufo;
}

162
static uint32_t virtio_net_get_features(VirtIODevice *vdev, uint32_t features)
A
aliguori 已提交
163
{
M
Mark McLoughlin 已提交
164
    VirtIONet *n = to_virtio_net(vdev);
A
aliguori 已提交
165

166 167
    features |= (1 << VIRTIO_NET_F_MAC);

M
Mark McLoughlin 已提交
168
    if (peer_has_vnet_hdr(n)) {
M
Mark McLoughlin 已提交
169
        tap_using_vnet_hdr(n->nic->nc.peer, 1);
170 171 172 173 174 175 176 177 178 179 180
    } else {
        features &= ~(0x1 << VIRTIO_NET_F_CSUM);
        features &= ~(0x1 << VIRTIO_NET_F_HOST_TSO4);
        features &= ~(0x1 << VIRTIO_NET_F_HOST_TSO6);
        features &= ~(0x1 << VIRTIO_NET_F_HOST_ECN);

        features &= ~(0x1 << VIRTIO_NET_F_GUEST_CSUM);
        features &= ~(0x1 << VIRTIO_NET_F_GUEST_TSO4);
        features &= ~(0x1 << VIRTIO_NET_F_GUEST_TSO6);
        features &= ~(0x1 << VIRTIO_NET_F_GUEST_ECN);
    }
M
Mark McLoughlin 已提交
181

182 183 184
    if (!peer_has_vnet_hdr(n) || !peer_has_ufo(n)) {
        features &= ~(0x1 << VIRTIO_NET_F_GUEST_UFO);
        features &= ~(0x1 << VIRTIO_NET_F_HOST_UFO);
M
Mark McLoughlin 已提交
185 186
    }

187 188 189 190 191 192 193 194
    if (!n->nic->nc.peer ||
        n->nic->nc.peer->info->type != NET_CLIENT_TYPE_TAP) {
        return features;
    }
    if (!tap_get_vhost_net(n->nic->nc.peer)) {
        return features;
    }
    return vhost_net_get_features(tap_get_vhost_net(n->nic->nc.peer), features);
A
aliguori 已提交
195 196
}

197 198 199 200 201 202 203
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);
204 205 206 207
    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);
208

209
    return features;
210 211
}

A
aliguori 已提交
212 213 214 215 216
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));
217 218

    if (n->has_vnet_hdr) {
M
Mark McLoughlin 已提交
219
        tap_set_offload(n->nic->nc.peer,
220 221 222
                        (features >> VIRTIO_NET_F_GUEST_CSUM) & 1,
                        (features >> VIRTIO_NET_F_GUEST_TSO4) & 1,
                        (features >> VIRTIO_NET_F_GUEST_TSO6) & 1,
223 224
                        (features >> VIRTIO_NET_F_GUEST_ECN)  & 1,
                        (features >> VIRTIO_NET_F_GUEST_UFO)  & 1);
225
    }
D
David L Stevens 已提交
226 227 228 229 230 231 232
    if (!n->nic->nc.peer ||
        n->nic->nc.peer->info->type != NET_CLIENT_TYPE_TAP) {
        return;
    }
    if (!tap_get_vhost_net(n->nic->nc.peer)) {
        return;
    }
233
    vhost_net_ack_features(tap_get_vhost_net(n->nic->nc.peer), features);
A
aliguori 已提交
234 235
}

236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
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;
252 253 254 255 256 257 258 259
    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;
260 261 262 263 264 265
    else
        return VIRTIO_NET_ERR;

    return VIRTIO_NET_OK;
}

266 267 268 269 270 271 272 273 274 275 276
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;
277
    n->mac_table.first_multi = 0;
278 279
    n->mac_table.uni_overflow = 0;
    n->mac_table.multi_overflow = 0;
280 281 282 283 284 285 286 287 288 289 290 291 292
    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 {
293
        n->mac_table.uni_overflow = 1;
294 295
    }

296 297
    n->mac_table.first_multi = n->mac_table.in_use;

298 299 300 301 302 303 304 305 306 307 308 309
    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;
310 311 312
        } else {
            n->mac_table.multi_overflow = 1;
        }
313 314 315 316 317
    }

    return VIRTIO_NET_OK;
}

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
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;
}

343 344
static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
{
345
    VirtIONet *n = to_virtio_net(vdev);
346 347 348 349 350 351 352 353 354 355 356
    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) ||
357
            elem.in_sg[elem.in_num - 1].iov_len < sizeof(status)) {
358 359 360 361 362 363 364
            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));

365 366
        if (ctrl.class == VIRTIO_NET_CTRL_RX_MODE)
            status = virtio_net_handle_rx_mode(n, ctrl.cmd, &elem);
367 368
        else if (ctrl.class == VIRTIO_NET_CTRL_MAC)
            status = virtio_net_handle_mac(n, ctrl.cmd, &elem);
369 370
        else if (ctrl.class == VIRTIO_NET_CTRL_VLAN)
            status = virtio_net_handle_vlan_table(n, ctrl.cmd, &elem);
371

372 373 374 375 376 377 378
        stb_p(elem.in_sg[elem.in_num - 1].iov_base, status);

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

A
aliguori 已提交
379 380 381 382
/* RX */

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

M
Mark McLoughlin 已提交
385
    qemu_flush_queued_packets(&n->nic->nc);
386 387 388 389

    /* 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 已提交
390 391
}

M
Mark McLoughlin 已提交
392
static int virtio_net_can_receive(VLANClientState *nc)
A
aliguori 已提交
393
{
M
Mark McLoughlin 已提交
394
    VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
395

A
aliguori 已提交
396 397 398 399
    if (!virtio_queue_ready(n->rx_vq) ||
        !(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK))
        return 0;

400 401 402 403 404
    return 1;
}

static int virtio_net_has_buffers(VirtIONet *n, int bufsize)
{
A
aliguori 已提交
405 406 407 408
    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);
409 410 411 412 413 414 415 416 417

        /* To avoid a race condition where the guest has made some buffers
         * available after the above check but before notification was
         * enabled, check for available buffers again.
         */
        if (virtio_queue_empty(n->rx_vq) ||
            (n->mergeable_rx_bufs &&
             !virtqueue_avail_bytes(n->rx_vq, bufsize, 0)))
            return 0;
A
aliguori 已提交
418 419 420 421 422 423
    }

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

A
Anthony Liguori 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
/* 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 已提交
452
static int receive_header(VirtIONet *n, struct iovec *iov, int iovcnt,
A
aliguori 已提交
453
                          const void *buf, size_t size, size_t hdr_len)
A
aliguori 已提交
454
{
455
    struct virtio_net_hdr *hdr = (struct virtio_net_hdr *)iov[0].iov_base;
A
aliguori 已提交
456 457 458 459 460
    int offset = 0;

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

M
Mark McLoughlin 已提交
461 462 463
    if (n->has_vnet_hdr) {
        memcpy(hdr, buf, sizeof(*hdr));
        offset = sizeof(*hdr);
A
Anthony Liguori 已提交
464
        work_around_broken_dhclient(hdr, buf + offset, size - offset);
M
Mark McLoughlin 已提交
465 466
    }

A
aliguori 已提交
467 468 469 470 471 472 473 474 475
    /* 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;
}

476 477 478
static int receive_filter(VirtIONet *n, const uint8_t *buf, int size)
{
    static const uint8_t bcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
479
    static const uint8_t vlan[] = {0x81, 0x00};
480
    uint8_t *ptr = (uint8_t *)buf;
481
    int i;
482 483 484 485

    if (n->promisc)
        return 1;

M
Mark McLoughlin 已提交
486 487 488 489
    if (n->has_vnet_hdr) {
        ptr += sizeof(struct virtio_net_hdr);
    }

490 491 492 493 494 495
    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;
    }

496 497
    if (ptr[0] & 1) { // multicast
        if (!memcmp(ptr, bcast, sizeof(bcast))) {
498 499 500
            return !n->nobcast;
        } else if (n->nomulti) {
            return 0;
501
        } else if (n->allmulti || n->mac_table.multi_overflow) {
502 503
            return 1;
        }
504 505 506 507 508 509

        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;
            }
        }
510
    } else { // unicast
511 512 513
        if (n->nouni) {
            return 0;
        } else if (n->alluni || n->mac_table.uni_overflow) {
514 515
            return 1;
        } else if (!memcmp(ptr, n->mac, ETH_ALEN)) {
516 517
            return 1;
        }
518

519 520 521 522 523
        for (i = 0; i < n->mac_table.first_multi; i++) {
            if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
                return 1;
            }
        }
524 525
    }

526 527 528
    return 0;
}

M
Mark McLoughlin 已提交
529
static ssize_t virtio_net_receive(VLANClientState *nc, const uint8_t *buf, size_t size)
A
aliguori 已提交
530
{
M
Mark McLoughlin 已提交
531
    VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
A
aliguori 已提交
532
    struct virtio_net_hdr_mrg_rxbuf *mhdr = NULL;
533
    size_t guest_hdr_len, offset, i, host_hdr_len;
A
aliguori 已提交
534

M
Mark McLoughlin 已提交
535
    if (!virtio_net_can_receive(&n->nic->nc))
536 537
        return -1;

538
    /* hdr_len refers to the header we supply to the guest */
539
    guest_hdr_len = n->mergeable_rx_bufs ?
540 541 542
        sizeof(struct virtio_net_hdr_mrg_rxbuf) : sizeof(struct virtio_net_hdr);


543 544
    host_hdr_len = n->has_vnet_hdr ? sizeof(struct virtio_net_hdr) : 0;
    if (!virtio_net_has_buffers(n, size + guest_hdr_len - host_hdr_len))
545
        return 0;
A
aliguori 已提交
546

547
    if (!receive_filter(n, buf, size))
548
        return size;
549

A
aliguori 已提交
550 551 552 553 554 555 556
    offset = i = 0;

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

A
Amit Shah 已提交
557
        total = 0;
A
aliguori 已提交
558

559
        if (virtqueue_pop(n->rx_vq, &elem) == 0) {
A
aliguori 已提交
560
            if (i == 0)
561
                return -1;
562 563 564 565 566
            fprintf(stderr, "virtio-net unexpected empty queue: "
                    "i %zd mergeable %d offset %zd, size %zd, "
                    "guest hdr len %zd, host hdr len %zd guest features 0x%x\n",
                    i, n->mergeable_rx_bufs, offset, size,
                    guest_hdr_len, host_hdr_len, n->vdev.guest_features);
A
aliguori 已提交
567 568 569 570 571 572 573 574
            exit(1);
        }

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

575
        if (!n->mergeable_rx_bufs && elem.in_sg[0].iov_len != guest_hdr_len) {
A
aliguori 已提交
576 577 578 579 580 581 582 583 584 585 586
            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,
587 588
                                     buf + offset, size - offset, guest_hdr_len);
            total += guest_hdr_len;
A
aliguori 已提交
589 590 591
        }

        /* copy in packet.  ugh */
592 593
        len = iov_from_buf(sg, elem.in_num,
                           buf + offset, size - offset);
A
aliguori 已提交
594
        total += len;
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
        offset += len;
        /* If buffers can't be merged, at this point we
         * must have consumed the complete packet.
         * Otherwise, drop it. */
        if (!n->mergeable_rx_bufs && offset < size) {
#if 0
            fprintf(stderr, "virtio-net truncated non-mergeable packet: "

                    "i %zd mergeable %d offset %zd, size %zd, "
                    "guest hdr len %zd, host hdr len %zd\n",
                    i, n->mergeable_rx_bufs,
                    offset, size, guest_hdr_len, host_hdr_len);
#endif
            return size;
        }
A
aliguori 已提交
610 611 612 613 614 615 616 617 618 619

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

    if (mhdr)
        mhdr->num_buffers = i;

    virtqueue_flush(n->rx_vq, i);
    virtio_notify(&n->vdev, n->rx_vq);
620 621

    return size;
A
aliguori 已提交
622 623
}

624
static int32_t virtio_net_flush_tx(VirtIONet *n, VirtQueue *vq);
625

M
Mark McLoughlin 已提交
626
static void virtio_net_tx_complete(VLANClientState *nc, ssize_t len)
627
{
M
Mark McLoughlin 已提交
628
    VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
629 630 631 632 633 634 635 636 637 638

    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 已提交
639
/* TX */
640
static int32_t virtio_net_flush_tx(VirtIONet *n, VirtQueue *vq)
A
aliguori 已提交
641 642
{
    VirtQueueElement elem;
643
    int32_t num_packets = 0;
A
aliguori 已提交
644

645 646 647
    if (!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK)) {
        return num_packets;
    }
A
aliguori 已提交
648

649 650
    if (n->async_tx.elem.out_num) {
        virtio_queue_set_notification(n->tx_vq, 0);
651
        return num_packets;
652 653
    }

A
aliguori 已提交
654
    while (virtqueue_pop(vq, &elem)) {
655
        ssize_t ret, len = 0;
A
aliguori 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
        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 已提交
671
        if (!n->has_vnet_hdr) {
A
aliguori 已提交
672 673 674 675 676 677 678 679 680 681
            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;
        }

M
Mark McLoughlin 已提交
682
        ret = qemu_sendv_packet_async(&n->nic->nc, out_sg, out_num,
683 684 685 686 687
                                      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;
688
            return -EBUSY;
689 690 691
        }

        len += ret;
A
aliguori 已提交
692 693 694

        virtqueue_push(vq, &elem, len);
        virtio_notify(&n->vdev, vq);
695 696 697 698

        if (++num_packets >= n->tx_burst) {
            break;
        }
A
aliguori 已提交
699
    }
700
    return num_packets;
A
aliguori 已提交
701 702 703 704 705 706 707 708 709 710 711 712 713
}

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,
714
                       qemu_get_clock(vm_clock) + n->tx_timeout);
A
aliguori 已提交
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
        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;

738 739 740 741 742 743
    if (n->vhost_started) {
        /* TODO: should we really stop the backend?
         * If we don't, it might keep writing to memory. */
        vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), &n->vdev);
        n->vhost_started = 0;
    }
A
aliguori 已提交
744 745
    virtio_save(&n->vdev, f);

746
    qemu_put_buffer(f, n->mac, ETH_ALEN);
A
aliguori 已提交
747
    qemu_put_be32(f, n->tx_timer_active);
748
    qemu_put_be32(f, n->mergeable_rx_bufs);
749
    qemu_put_be16(f, n->status);
750 751
    qemu_put_byte(f, n->promisc);
    qemu_put_byte(f, n->allmulti);
752 753
    qemu_put_be32(f, n->mac_table.in_use);
    qemu_put_buffer(f, n->mac_table.macs, n->mac_table.in_use * ETH_ALEN);
754
    qemu_put_buffer(f, (uint8_t *)n->vlans, MAX_VLAN >> 3);
M
Mark McLoughlin 已提交
755
    qemu_put_be32(f, n->has_vnet_hdr);
756 757
    qemu_put_byte(f, n->mac_table.multi_overflow);
    qemu_put_byte(f, n->mac_table.uni_overflow);
758 759 760 761
    qemu_put_byte(f, n->alluni);
    qemu_put_byte(f, n->nomulti);
    qemu_put_byte(f, n->nouni);
    qemu_put_byte(f, n->nobcast);
762
    qemu_put_byte(f, n->has_ufo);
A
aliguori 已提交
763 764 765 766 767
}

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

770
    if (version_id < 2 || version_id > VIRTIO_NET_VM_VERSION)
A
aliguori 已提交
771 772 773 774
        return -EINVAL;

    virtio_load(&n->vdev, f);

775
    qemu_get_buffer(f, n->mac, ETH_ALEN);
A
aliguori 已提交
776
    n->tx_timer_active = qemu_get_be32(f);
777
    n->mergeable_rx_bufs = qemu_get_be32(f);
A
aliguori 已提交
778

779 780 781
    if (version_id >= 3)
        n->status = qemu_get_be16(f);

782
    if (version_id >= 4) {
783 784 785 786 787 788 789
        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);
        }
790 791
    }

792 793 794 795 796 797 798 799
    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);
800
            n->mac_table.multi_overflow = n->mac_table.uni_overflow = 1;
801 802 803 804
            n->mac_table.in_use = 0;
        }
    }
 
805 806 807
    if (version_id >= 6)
        qemu_get_buffer(f, (uint8_t *)n->vlans, MAX_VLAN >> 3);

M
Mark McLoughlin 已提交
808 809
    if (version_id >= 7) {
        if (qemu_get_be32(f) && !peer_has_vnet_hdr(n)) {
810
            error_report("virtio-net: saved image requires vnet_hdr=on");
M
Mark McLoughlin 已提交
811 812 813 814
            return -1;
        }

        if (n->has_vnet_hdr) {
M
Mark McLoughlin 已提交
815 816
            tap_using_vnet_hdr(n->nic->nc.peer, 1);
            tap_set_offload(n->nic->nc.peer,
817 818 819 820 821
                    (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_CSUM) & 1,
                    (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_TSO4) & 1,
                    (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_TSO6) & 1,
                    (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_ECN)  & 1,
                    (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_UFO)  & 1);
M
Mark McLoughlin 已提交
822
        }
823 824
    }

825 826 827 828 829
    if (version_id >= 9) {
        n->mac_table.multi_overflow = qemu_get_byte(f);
        n->mac_table.uni_overflow = qemu_get_byte(f);
    }

830 831 832 833 834 835 836
    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);
    }

837 838
    if (version_id >= 11) {
        if (qemu_get_byte(f) && !peer_has_ufo(n)) {
839
            error_report("virtio-net: saved image requires TUN_F_UFO support");
840 841 842 843
            return -1;
        }
    }

844 845 846 847 848 849 850 851
    /* 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 已提交
852 853
    if (n->tx_timer_active) {
        qemu_mod_timer(n->tx_timer,
854
                       qemu_get_clock(vm_clock) + n->tx_timeout);
A
aliguori 已提交
855 856 857 858
    }
    return 0;
}

M
Mark McLoughlin 已提交
859
static void virtio_net_cleanup(VLANClientState *nc)
860
{
M
Mark McLoughlin 已提交
861
    VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
862

M
Mark McLoughlin 已提交
863
    n->nic = NULL;
864 865
}

M
Mark McLoughlin 已提交
866 867 868 869 870 871 872 873 874
static NetClientInfo net_virtio_info = {
    .type = NET_CLIENT_TYPE_NIC,
    .size = sizeof(NICState),
    .can_receive = virtio_net_can_receive,
    .receive = virtio_net_receive,
        .cleanup = virtio_net_cleanup,
    .link_status_changed = virtio_net_set_link_status,
};

875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
static void virtio_net_set_status(struct VirtIODevice *vdev, uint8_t status)
{
    VirtIONet *n = to_virtio_net(vdev);
    if (!n->nic->nc.peer) {
        return;
    }
    if (n->nic->nc.peer->info->type != NET_CLIENT_TYPE_TAP) {
        return;
    }

    if (!tap_get_vhost_net(n->nic->nc.peer)) {
        return;
    }
    if (!!n->vhost_started == !!(status & VIRTIO_CONFIG_S_DRIVER_OK)) {
        return;
    }
    if (status & VIRTIO_CONFIG_S_DRIVER_OK) {
        int r = vhost_net_start(tap_get_vhost_net(n->nic->nc.peer), vdev);
        if (r < 0) {
            fprintf(stderr, "unable to start vhost net: %d: "
                    "falling back on userspace virtio\n", -r);
        } else {
            n->vhost_started = 1;
        }
    } else {
        vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), vdev);
        n->vhost_started = 0;
    }
}

static void virtio_net_vmstate_change(void *opaque, int running, int reason)
{
    VirtIONet *n = opaque;
908 909 910 911 912
    uint8_t status = running ? VIRTIO_CONFIG_S_DRIVER_OK : 0;
    /* This is called when vm is started/stopped,
     * it will start/stop vhost backend if * appropriate
     * e.g. after migration. */
    virtio_net_set_status(&n->vdev, n->vdev.status & status);
913 914
}

915 916
VirtIODevice *virtio_net_init(DeviceState *dev, NICConf *conf,
                              virtio_net_conf *net)
A
aliguori 已提交
917 918 919
{
    VirtIONet *n;

P
Paul Brook 已提交
920 921 922
    n = (VirtIONet *)virtio_common_init("virtio-net", VIRTIO_ID_NET,
                                        sizeof(struct virtio_net_config),
                                        sizeof(VirtIONet));
A
aliguori 已提交
923

924 925
    n->vdev.get_config = virtio_net_get_config;
    n->vdev.set_config = virtio_net_set_config;
A
aliguori 已提交
926 927
    n->vdev.get_features = virtio_net_get_features;
    n->vdev.set_features = virtio_net_set_features;
928
    n->vdev.bad_features = virtio_net_bad_features;
929
    n->vdev.reset = virtio_net_reset;
930
    n->vdev.set_status = virtio_net_set_status;
A
aliguori 已提交
931 932
    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);
933
    n->ctrl_vq = virtio_add_queue(&n->vdev, 64, virtio_net_handle_ctrl);
934
    qemu_macaddr_default_if_unset(&conf->macaddr);
935
    memcpy(&n->mac[0], &conf->macaddr, sizeof(n->mac));
936
    n->status = VIRTIO_NET_S_LINK_UP;
A
aliguori 已提交
937

M
Mark McLoughlin 已提交
938 939 940
    n->nic = qemu_new_nic(&net_virtio_info, conf, dev->info->name, dev->id, n);

    qemu_format_nic_info_str(&n->nic->nc, conf->macaddr.a);
941

A
aliguori 已提交
942 943
    n->tx_timer = qemu_new_timer(vm_clock, virtio_net_tx_timer, n);
    n->tx_timer_active = 0;
944
    n->tx_timeout = net->txtimer;
945
    n->tx_burst = net->txburst;
A
aliguori 已提交
946
    n->mergeable_rx_bufs = 0;
947
    n->promisc = 1; /* for compatibility */
A
aliguori 已提交
948

949 950
    n->mac_table.macs = qemu_mallocz(MAC_TABLE_ENTRIES * ETH_ALEN);

951 952
    n->vlans = qemu_mallocz(MAX_VLAN >> 3);

953 954
    n->qdev = dev;
    register_savevm(dev, "virtio-net", -1, VIRTIO_NET_VM_VERSION,
A
aliguori 已提交
955
                    virtio_net_save, virtio_net_load, n);
956
    n->vmstate = qemu_add_vm_change_state_handler(virtio_net_vmstate_change, n);
P
Paul Brook 已提交
957

P
Paul Brook 已提交
958
    return &n->vdev;
P
Paul Brook 已提交
959
}
960 961 962 963

void virtio_net_exit(VirtIODevice *vdev)
{
    VirtIONet *n = DO_UPCAST(VirtIONet, vdev, vdev);
964 965 966 967 968
    qemu_del_vm_change_state_handler(n->vmstate);

    if (n->vhost_started) {
        vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), vdev);
    }
969

M
Mark McLoughlin 已提交
970
    qemu_purge_queued_packets(&n->nic->nc);
971

972
    unregister_savevm(n->qdev, "virtio-net", n);
973 974 975 976 977 978 979 980

    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);
M
Mark McLoughlin 已提交
981
    qemu_del_vlan_client(&n->nic->nc);
982
}