net.c 39.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * QEMU System Emulator
 *
 * Copyright (c) 2003-2008 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <time.h>
#include <errno.h>
#include <sys/time.h>
#include <zlib.h>

J
Juan Quintela 已提交
32
/* Needed early for CONFIG_BSD etc. */
B
blueswir1 已提交
33 34
#include "config-host.h"

35 36 37 38 39 40
#ifndef _WIN32
#include <sys/times.h>
#include <sys/wait.h>
#include <termios.h>
#include <sys/mman.h>
#include <sys/ioctl.h>
B
blueswir1 已提交
41
#include <sys/resource.h>
42
#include <sys/socket.h>
B
blueswir1 已提交
43
#include <net/if.h>
44 45 46
#include <dirent.h>
#include <netdb.h>
#include <sys/select.h>
J
Juan Quintela 已提交
47
#ifdef CONFIG_BSD
48
#include <sys/stat.h>
A
Aurelien Jarno 已提交
49
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
50
#include <libutil.h>
B
blueswir1 已提交
51 52
#else
#include <util.h>
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
#endif
#ifdef __linux__
#include <pty.h>
#include <malloc.h>
#include <linux/rtc.h>

/* For the benefit of older linux systems which don't supply it,
   we use a local copy of hpet.h. */
/* #include <linux/hpet.h> */
#include "hpet.h"

#include <linux/ppdev.h>
#include <linux/parport.h>
#endif
#ifdef __sun__
#include <sys/stat.h>
#include <sys/ethernet.h>
#include <sys/sockio.h>
#include <netinet/arp.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h> // must come after ip.h
#include <netinet/udp.h>
#include <netinet/tcp.h>
#include <net/if.h>
#include <syslog.h>
#include <stropts.h>
#endif
#endif
#endif

#if defined(__OpenBSD__)
#include <util.h>
#endif

89 90
#include "qemu-common.h"
#include "net.h"
91
#include "net/tap.h"
92
#include "net/socket.h"
93
#include "net/slirp.h"
94
#include "net/vde.h"
95 96 97 98 99 100
#include "monitor.h"
#include "sysemu.h"
#include "qemu-timer.h"
#include "qemu-char.h"
#include "audio/audio.h"
#include "qemu_socket.h"
101
#include "qemu-log.h"
102
#include "qemu-config.h"
103

104
static QTAILQ_HEAD(, VLANState) vlans;
105
static QTAILQ_HEAD(, VLANClientState) non_vlan_clients;
106 107 108 109

/***********************************************************/
/* network device redirectors */

110
#if defined(DEBUG_NET)
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
static void hex_dump(FILE *f, const uint8_t *buf, int size)
{
    int len, i, j, c;

    for(i=0;i<size;i+=16) {
        len = size - i;
        if (len > 16)
            len = 16;
        fprintf(f, "%08x ", i);
        for(j=0;j<16;j++) {
            if (j < len)
                fprintf(f, " %02x", buf[i+j]);
            else
                fprintf(f, "   ");
        }
        fprintf(f, " ");
        for(j=0;j<len;j++) {
            c = buf[i+j];
            if (c < ' ' || c > '~')
                c = '.';
            fprintf(f, "%c", c);
        }
        fprintf(f, "\n");
    }
}
#endif

static int parse_macaddr(uint8_t *macaddr, const char *p)
{
    int i;
    char *last_char;
    long int offset;

    errno = 0;
    offset = strtol(p, &last_char, 0);    
    if (0 == errno && '\0' == *last_char &&
            offset >= 0 && offset <= 0xFFFFFF) {
        macaddr[3] = (offset & 0xFF0000) >> 16;
        macaddr[4] = (offset & 0xFF00) >> 8;
        macaddr[5] = offset & 0xFF;
        return 0;
    } else {
        for(i = 0; i < 6; i++) {
            macaddr[i] = strtol(p, (char **)&p, 16);
            if (i == 5) {
                if (*p != '\0')
                    return -1;
            } else {
                if (*p != ':' && *p != '-')
                    return -1;
                p++;
            }
        }
        return 0;    
    }

    return -1;
}

static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
{
    const char *p, *p1;
    int len;
    p = *pp;
    p1 = strchr(p, sep);
    if (!p1)
        return -1;
    len = p1 - p;
    p1++;
    if (buf_size > 0) {
        if (len > buf_size - 1)
            len = buf_size - 1;
        memcpy(buf, p, len);
        buf[len] = '\0';
    }
    *pp = p1;
    return 0;
}

int parse_host_src_port(struct sockaddr_in *haddr,
                        struct sockaddr_in *saddr,
                        const char *input_str)
{
    char *str = strdup(input_str);
    char *host_str = str;
    char *src_str;
    const char *src_str2;
    char *ptr;

    /*
     * Chop off any extra arguments at the end of the string which
     * would start with a comma, then fill in the src port information
     * if it was provided else use the "any address" and "any port".
     */
    if ((ptr = strchr(str,',')))
        *ptr = '\0';

    if ((src_str = strchr(input_str,'@'))) {
        *src_str = '\0';
        src_str++;
    }

    if (parse_host_port(haddr, host_str) < 0)
        goto fail;

    src_str2 = src_str;
    if (!src_str || *src_str == '\0')
        src_str2 = ":0";

    if (parse_host_port(saddr, src_str2) < 0)
        goto fail;

    free(str);
    return(0);

fail:
    free(str);
    return -1;
}

int parse_host_port(struct sockaddr_in *saddr, const char *str)
{
    char buf[512];
    struct hostent *he;
    const char *p, *r;
    int port;

    p = str;
    if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
        return -1;
    saddr->sin_family = AF_INET;
    if (buf[0] == '\0') {
        saddr->sin_addr.s_addr = 0;
    } else {
245
        if (qemu_isdigit(buf[0])) {
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
            if (!inet_aton(buf, &saddr->sin_addr))
                return -1;
        } else {
            if ((he = gethostbyname(buf)) == NULL)
                return - 1;
            saddr->sin_addr = *(struct in_addr *)he->h_addr;
        }
    }
    port = strtol(p, (char **)&r, 0);
    if (r == p)
        return -1;
    saddr->sin_port = htons(port);
    return 0;
}

261 262 263
void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
{
    snprintf(vc->info_str, sizeof(vc->info_str),
264 265
             "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
             vc->model,
266 267 268 269
             macaddr[0], macaddr[1], macaddr[2],
             macaddr[3], macaddr[4], macaddr[5]);
}

G
Gerd Hoffmann 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
void qemu_macaddr_default_if_unset(MACAddr *macaddr)
{
    static int index = 0;
    static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };

    if (memcmp(macaddr, &zero, sizeof(zero)) != 0)
        return;
    macaddr->a[0] = 0x52;
    macaddr->a[1] = 0x54;
    macaddr->a[2] = 0x00;
    macaddr->a[3] = 0x12;
    macaddr->a[4] = 0x34;
    macaddr->a[5] = 0x56 + index++;
}

285 286 287 288 289 290
static char *assign_name(VLANClientState *vc1, const char *model)
{
    VLANState *vlan;
    char buf[256];
    int id = 0;

291
    QTAILQ_FOREACH(vlan, &vlans, next) {
292 293
        VLANClientState *vc;

294 295
        QTAILQ_FOREACH(vc, &vlan->clients, next) {
            if (vc != vc1 && strcmp(vc->model, model) == 0) {
296
                id++;
297 298
            }
        }
299 300 301 302
    }

    snprintf(buf, sizeof(buf), "%s.%d", model, id);

303
    return qemu_strdup(buf);
304 305
}

306
static ssize_t qemu_deliver_packet(VLANClientState *sender,
307
                                   unsigned flags,
308 309 310 311
                                   const uint8_t *data,
                                   size_t size,
                                   void *opaque);
static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
312
                                       unsigned flags,
313 314 315 316
                                       const struct iovec *iov,
                                       int iovcnt,
                                       void *opaque);

M
Mark McLoughlin 已提交
317 318
VLANClientState *qemu_new_vlan_client(net_client_type type,
                                      VLANState *vlan,
319
                                      VLANClientState *peer,
320
                                      const char *model,
321
                                      const char *name,
322 323
                                      NetCanReceive *can_receive,
                                      NetReceive *receive,
324
                                      NetReceive *receive_raw,
325
                                      NetReceiveIOV *receive_iov,
326
                                      NetCleanup *cleanup,
327 328
                                      void *opaque)
{
329 330
    VLANClientState *vc;

331
    vc = qemu_mallocz(sizeof(VLANClientState));
332

M
Mark McLoughlin 已提交
333
    vc->type = type;
334
    vc->model = qemu_strdup(model);
335
    if (name)
336
        vc->name = qemu_strdup(name);
337 338
    else
        vc->name = assign_name(vc, model);
339 340
    vc->can_receive = can_receive;
    vc->receive = receive;
341
    vc->receive_raw = receive_raw;
342
    vc->receive_iov = receive_iov;
343
    vc->cleanup = cleanup;
344
    vc->opaque = opaque;
345

346
    if (vlan) {
347
        assert(!peer);
348 349
        vc->vlan = vlan;
        QTAILQ_INSERT_TAIL(&vc->vlan->clients, vc, next);
350
    } else {
351 352 353 354
        if (peer) {
            vc->peer = peer;
            peer->peer = vc;
        }
355
        QTAILQ_INSERT_TAIL(&non_vlan_clients, vc, next);
356 357 358 359

        vc->send_queue = qemu_new_net_queue(qemu_deliver_packet,
                                            qemu_deliver_packet_iov,
                                            vc);
360
    }
361 362 363 364 365 366

    return vc;
}

void qemu_del_vlan_client(VLANClientState *vc)
{
367 368
    if (vc->vlan) {
        QTAILQ_REMOVE(&vc->vlan->clients, vc, next);
369
    } else {
370 371 372
        if (vc->send_queue) {
            qemu_del_net_queue(vc->send_queue);
        }
373
        QTAILQ_REMOVE(&non_vlan_clients, vc, next);
374 375 376
        if (vc->peer) {
            vc->peer->peer = NULL;
        }
377
    }
378

379 380 381 382 383 384 385
    if (vc->cleanup) {
        vc->cleanup(vc);
    }

    qemu_free(vc->name);
    qemu_free(vc->model);
    qemu_free(vc);
386 387
}

388 389
VLANClientState *qemu_find_vlan_client(VLANState *vlan, void *opaque)
{
390
    VLANClientState *vc;
391

392 393 394 395 396
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
        if (vc->opaque == opaque) {
            return vc;
        }
    }
397 398 399 400

    return NULL;
}

401
VLANClientState *
402 403 404 405 406 407 408 409 410 411 412 413
qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
                              const char *client_str)
{
    VLANState *vlan;
    VLANClientState *vc;

    vlan = qemu_find_vlan(vlan_id, 0);
    if (!vlan) {
        monitor_printf(mon, "unknown VLAN %d\n", vlan_id);
        return NULL;
    }

414
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
415 416 417 418 419 420 421 422 423 424 425 426
        if (!strcmp(vc->name, client_str)) {
            break;
        }
    }
    if (!vc) {
        monitor_printf(mon, "can't find device %s on VLAN %d\n",
                       client_str, vlan_id);
    }

    return vc;
}

427
int qemu_can_send_packet(VLANClientState *sender)
428
{
429
    VLANState *vlan = sender->vlan;
430 431
    VLANClientState *vc;

432
    if (sender->peer) {
433 434 435 436
        if (sender->peer->receive_disabled) {
            return 0;
        } else if (sender->peer->can_receive &&
                   !sender->peer->can_receive(sender->peer)) {
437
            return 0;
438 439
        } else {
            return 1;
440 441 442
        }
    }

443 444 445 446
    if (!sender->vlan) {
        return 1;
    }

447
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
448 449 450 451
        if (vc == sender) {
            continue;
        }

452
        /* no can_receive() handler, they can always receive */
453
        if (!vc->can_receive || vc->can_receive(vc)) {
454
            return 1;
455 456 457 458 459
        }
    }
    return 0;
}

460
static ssize_t qemu_deliver_packet(VLANClientState *sender,
461
                                   unsigned flags,
462 463 464 465 466
                                   const uint8_t *data,
                                   size_t size,
                                   void *opaque)
{
    VLANClientState *vc = opaque;
467
    ssize_t ret;
468 469 470 471 472

    if (vc->link_down) {
        return size;
    }

473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
    if (vc->receive_disabled) {
        return 0;
    }

    if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->receive_raw) {
        ret = vc->receive_raw(vc, data, size);
    } else {
        ret = vc->receive(vc, data, size);
    }

    if (ret == 0) {
        vc->receive_disabled = 1;
    };

    return ret;
488 489
}

490
static ssize_t qemu_vlan_deliver_packet(VLANClientState *sender,
491
                                        unsigned flags,
492 493 494
                                        const uint8_t *buf,
                                        size_t size,
                                        void *opaque)
495
{
496
    VLANState *vlan = opaque;
497
    VLANClientState *vc;
498
    ssize_t ret = -1;
499

500
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
501 502 503 504
        ssize_t len;

        if (vc == sender) {
            continue;
505
        }
506 507 508 509 510 511

        if (vc->link_down) {
            ret = size;
            continue;
        }

512 513 514 515 516 517
        if (vc->receive_disabled) {
            ret = 0;
            continue;
        }

        if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->receive_raw) {
518
            len = vc->receive_raw(vc, buf, size);
519
        } else {
520
            len = vc->receive(vc, buf, size);
521 522 523 524 525
        }

        if (len == 0) {
            vc->receive_disabled = 1;
        }
526 527

        ret = (ret >= 0) ? ret : len;
528

529
    }
530 531

    return ret;
532 533
}

534 535
void qemu_purge_queued_packets(VLANClientState *vc)
{
536 537 538
    NetQueue *queue;

    if (!vc->peer && !vc->vlan) {
539
        return;
540
    }
541

542 543 544 545 546 547 548
    if (vc->peer) {
        queue = vc->peer->send_queue;
    } else {
        queue = vc->vlan->send_queue;
    }

    qemu_net_queue_purge(queue, vc);
549 550
}

551
void qemu_flush_queued_packets(VLANClientState *vc)
552
{
553 554
    NetQueue *queue;

555 556
    vc->receive_disabled = 0;

557 558 559 560 561
    if (vc->vlan) {
        queue = vc->vlan->send_queue;
    } else {
        queue = vc->send_queue;
    }
562

563
    qemu_net_queue_flush(queue);
564 565
}

566 567 568 569
static ssize_t qemu_send_packet_async_with_flags(VLANClientState *sender,
                                                 unsigned flags,
                                                 const uint8_t *buf, int size,
                                                 NetPacketSent *sent_cb)
570
{
571
    NetQueue *queue;
572

573
#ifdef DEBUG_NET
574
    printf("qemu_send_packet_async:\n");
575 576
    hex_dump(stdout, buf, size);
#endif
577

578 579 580 581 582 583 584 585 586 587
    if (sender->link_down || (!sender->peer && !sender->vlan)) {
        return size;
    }

    if (sender->peer) {
        queue = sender->peer->send_queue;
    } else {
        queue = sender->vlan->send_queue;
    }

588 589 590 591 592 593 594 595 596
    return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
}

ssize_t qemu_send_packet_async(VLANClientState *sender,
                               const uint8_t *buf, int size,
                               NetPacketSent *sent_cb)
{
    return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE,
                                             buf, size, sent_cb);
597 598 599 600 601
}

void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
{
    qemu_send_packet_async(vc, buf, size, NULL);
602 603
}

604 605 606 607 608 609
ssize_t qemu_send_packet_raw(VLANClientState *vc, const uint8_t *buf, int size)
{
    return qemu_send_packet_async_with_flags(vc, QEMU_NET_PACKET_FLAG_RAW,
                                             buf, size, NULL);
}

A
aliguori 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
                               int iovcnt)
{
    uint8_t buffer[4096];
    size_t offset = 0;
    int i;

    for (i = 0; i < iovcnt; i++) {
        size_t len;

        len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
        memcpy(buffer + offset, iov[i].iov_base, len);
        offset += len;
    }

625
    return vc->receive(vc, buffer, offset);
A
aliguori 已提交
626 627
}

628 629 630 631 632 633 634 635 636 637
static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
{
    size_t offset = 0;
    int i;

    for (i = 0; i < iovcnt; i++)
        offset += iov[i].iov_len;
    return offset;
}

638
static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
639
                                       unsigned flags,
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
                                       const struct iovec *iov,
                                       int iovcnt,
                                       void *opaque)
{
    VLANClientState *vc = opaque;

    if (vc->link_down) {
        return calc_iov_length(iov, iovcnt);
    }

    if (vc->receive_iov) {
        return vc->receive_iov(vc, iov, iovcnt);
    } else {
        return vc_sendv_compat(vc, iov, iovcnt);
    }
}

657
static ssize_t qemu_vlan_deliver_packet_iov(VLANClientState *sender,
658
                                            unsigned flags,
659 660 661
                                            const struct iovec *iov,
                                            int iovcnt,
                                            void *opaque)
A
aliguori 已提交
662
{
663
    VLANState *vlan = opaque;
A
aliguori 已提交
664
    VLANClientState *vc;
665
    ssize_t ret = -1;
666

667
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
668 669 670 671 672 673 674 675 676 677 678
        ssize_t len;

        if (vc == sender) {
            continue;
        }

        if (vc->link_down) {
            ret = calc_iov_length(iov, iovcnt);
            continue;
        }

679 680
        assert(!(flags & QEMU_NET_PACKET_FLAG_RAW));

681 682 683 684 685 686 687 688 689 690 691 692
        if (vc->receive_iov) {
            len = vc->receive_iov(vc, iov, iovcnt);
        } else {
            len = vc_sendv_compat(vc, iov, iovcnt);
        }

        ret = (ret >= 0) ? ret : len;
    }

    return ret;
}

693 694 695
ssize_t qemu_sendv_packet_async(VLANClientState *sender,
                                const struct iovec *iov, int iovcnt,
                                NetPacketSent *sent_cb)
696
{
697 698 699
    NetQueue *queue;

    if (sender->link_down || (!sender->peer && !sender->vlan)) {
700 701 702
        return calc_iov_length(iov, iovcnt);
    }

703 704 705 706 707 708
    if (sender->peer) {
        queue = sender->peer->send_queue;
    } else {
        queue = sender->vlan->send_queue;
    }

709 710 711
    return qemu_net_queue_send_iov(queue, sender,
                                   QEMU_NET_PACKET_FLAG_NONE,
                                   iov, iovcnt, sent_cb);
A
aliguori 已提交
712 713
}

714 715 716 717 718 719
ssize_t
qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
{
    return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
}

720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
typedef struct DumpState {
    VLANClientState *pcap_vc;
    int fd;
    int pcap_caplen;
} DumpState;

#define PCAP_MAGIC 0xa1b2c3d4

struct pcap_file_hdr {
    uint32_t magic;
    uint16_t version_major;
    uint16_t version_minor;
    int32_t thiszone;
    uint32_t sigfigs;
    uint32_t snaplen;
    uint32_t linktype;
};

struct pcap_sf_pkthdr {
    struct {
        int32_t tv_sec;
        int32_t tv_usec;
    } ts;
    uint32_t caplen;
    uint32_t len;
};

747
static ssize_t dump_receive(VLANClientState *vc, const uint8_t *buf, size_t size)
748
{
749
    DumpState *s = vc->opaque;
750 751 752 753 754 755
    struct pcap_sf_pkthdr hdr;
    int64_t ts;
    int caplen;

    /* Early return in case of previous error. */
    if (s->fd < 0) {
756
        return size;
757 758
    }

759
    ts = muldiv64(qemu_get_clock(vm_clock), 1000000, get_ticks_per_sec());
760 761
    caplen = size > s->pcap_caplen ? s->pcap_caplen : size;

J
Jan Kiszka 已提交
762
    hdr.ts.tv_sec = ts / 1000000;
763 764 765 766 767 768 769 770 771
    hdr.ts.tv_usec = ts % 1000000;
    hdr.caplen = caplen;
    hdr.len = size;
    if (write(s->fd, &hdr, sizeof(hdr)) != sizeof(hdr) ||
        write(s->fd, buf, caplen) != caplen) {
        qemu_log("-net dump write error - stop dump\n");
        close(s->fd);
        s->fd = -1;
    }
772 773

    return size;
774 775 776 777 778 779 780 781 782 783
}

static void net_dump_cleanup(VLANClientState *vc)
{
    DumpState *s = vc->opaque;

    close(s->fd);
    qemu_free(s);
}

784
static int net_dump_init(VLANState *vlan, const char *device,
785 786 787 788 789 790 791
                         const char *name, const char *filename, int len)
{
    struct pcap_file_hdr hdr;
    DumpState *s;

    s = qemu_malloc(sizeof(DumpState));

792
    s->fd = open(filename, O_CREAT | O_WRONLY | O_BINARY, 0644);
793
    if (s->fd < 0) {
794
        qemu_error("-net dump: can't open %s\n", filename);
795 796 797 798 799 800 801 802 803 804 805 806 807 808
        return -1;
    }

    s->pcap_caplen = len;

    hdr.magic = PCAP_MAGIC;
    hdr.version_major = 2;
    hdr.version_minor = 4;
    hdr.thiszone = 0;
    hdr.sigfigs = 0;
    hdr.snaplen = s->pcap_caplen;
    hdr.linktype = 1;

    if (write(s->fd, &hdr, sizeof(hdr)) < sizeof(hdr)) {
809
        qemu_error("-net dump write error: %s\n", strerror(errno));
810 811 812 813 814
        close(s->fd);
        qemu_free(s);
        return -1;
    }

M
Mark McLoughlin 已提交
815 816
    s->pcap_vc = qemu_new_vlan_client(NET_CLIENT_TYPE_DUMP,
                                      vlan, NULL, device, name, NULL,
817
                                      dump_receive, NULL, NULL,
818 819 820 821 822 823
                                      net_dump_cleanup, s);
    snprintf(s->pcap_vc->info_str, sizeof(s->pcap_vc->info_str),
             "dump to %s (len=%d)", filename, len);
    return 0;
}

824
/* find or alloc a new VLAN */
825
VLANState *qemu_find_vlan(int id, int allocate)
826
{
827 828 829 830
    VLANState *vlan;

    QTAILQ_FOREACH(vlan, &vlans, next) {
        if (vlan->id == id) {
831
            return vlan;
832
        }
833
    }
834

835 836 837
    if (!allocate) {
        return NULL;
    }
838

839 840
    vlan = qemu_mallocz(sizeof(VLANState));
    vlan->id = id;
841
    QTAILQ_INIT(&vlan->clients);
842 843 844 845

    vlan->send_queue = qemu_new_net_queue(qemu_vlan_deliver_packet,
                                          qemu_vlan_deliver_packet_iov,
                                          vlan);
846 847 848

    QTAILQ_INSERT_TAIL(&vlans, vlan, next);

849 850 851
    return vlan;
}

G
Gerd Hoffmann 已提交
852
VLANClientState *qemu_find_netdev(const char *id)
M
Mark McLoughlin 已提交
853 854 855 856 857 858 859 860 861 862 863 864
{
    VLANClientState *vc;

    QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
        if (!strcmp(vc->name, id)) {
            return vc;
        }
    }

    return NULL;
}

865 866 867 868 869 870 871 872 873 874
static int nic_get_free_idx(void)
{
    int index;

    for (index = 0; index < MAX_NICS; index++)
        if (!nd_table[index].used)
            return index;
    return -1;
}

875 876 877 878 879 880 881 882 883 884 885 886 887
int qemu_show_nic_models(const char *arg, const char *const *models)
{
    int i;

    if (!arg || strcmp(arg, "?"))
        return 0;

    fprintf(stderr, "qemu: Supported NIC models: ");
    for (i = 0 ; models[i]; i++)
        fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
    return 1;
}

888 889 890 891 892 893 894
void qemu_check_nic_model(NICInfo *nd, const char *model)
{
    const char *models[2];

    models[0] = model;
    models[1] = NULL;

895 896 897 898
    if (qemu_show_nic_models(nd->model, models))
        exit(0);
    if (qemu_find_nic_model(nd, models, model) < 0)
        exit(1);
899 900
}

901 902
int qemu_find_nic_model(NICInfo *nd, const char * const *models,
                        const char *default_model)
903
{
904
    int i;
905 906

    if (!nd->model)
907
        nd->model = qemu_strdup(default_model);
908

909 910 911
    for (i = 0 ; models[i]; i++) {
        if (strcmp(nd->model, models[i]) == 0)
            return i;
912 913
    }

914 915
    qemu_error("qemu: Unsupported NIC model: %s\n", nd->model);
    return -1;
916 917
}

918
int net_handle_fd_param(Monitor *mon, const char *param)
919 920 921 922 923 924
{
    if (!qemu_isdigit(param[0])) {
        int fd;

        fd = monitor_get_fd(mon, param);
        if (fd == -1) {
925
            qemu_error("No file descriptor named %s found", param);
926 927 928 929 930 931 932 933 934
            return -1;
        }

        return fd;
    } else {
        return strtol(param, NULL, 0);
    }
}

M
Mark McLoughlin 已提交
935 936 937 938
static int net_init_nic(QemuOpts *opts,
                        Monitor *mon,
                        const char *name,
                        VLANState *vlan)
939 940 941
{
    int idx;
    NICInfo *nd;
M
Mark McLoughlin 已提交
942
    const char *netdev;
943 944 945 946 947 948 949 950 951 952 953

    idx = nic_get_free_idx();
    if (idx == -1 || nb_nics >= MAX_NICS) {
        qemu_error("Too Many NICs\n");
        return -1;
    }

    nd = &nd_table[idx];

    memset(nd, 0, sizeof(*nd));

M
Mark McLoughlin 已提交
954 955 956 957 958 959 960 961 962 963
    if ((netdev = qemu_opt_get(opts, "netdev"))) {
        nd->netdev = qemu_find_netdev(netdev);
        if (!nd->netdev) {
            qemu_error("netdev '%s' not found\n", netdev);
            return -1;
        }
    } else {
        assert(vlan);
        nd->vlan = vlan;
    }
964 965 966
    if (name) {
        nd->name = qemu_strdup(name);
    }
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
    if (qemu_opt_get(opts, "model")) {
        nd->model = qemu_strdup(qemu_opt_get(opts, "model"));
    }
    if (qemu_opt_get(opts, "addr")) {
        nd->devaddr = qemu_strdup(qemu_opt_get(opts, "addr"));
    }

    nd->macaddr[0] = 0x52;
    nd->macaddr[1] = 0x54;
    nd->macaddr[2] = 0x00;
    nd->macaddr[3] = 0x12;
    nd->macaddr[4] = 0x34;
    nd->macaddr[5] = 0x56 + idx;

    if (qemu_opt_get(opts, "macaddr") &&
        parse_macaddr(nd->macaddr, qemu_opt_get(opts, "macaddr")) < 0) {
        qemu_error("invalid syntax for ethernet address\n");
        return -1;
    }

    nd->nvectors = qemu_opt_get_number(opts, "vectors", NIC_NVECTORS_UNSPECIFIED);
    if (nd->nvectors != NIC_NVECTORS_UNSPECIFIED &&
        (nd->nvectors < 0 || nd->nvectors > 0x7ffffff)) {
        qemu_error("invalid # of vectors: %d\n", nd->nvectors);
        return -1;
    }

    nd->used = 1;
M
Mark McLoughlin 已提交
995 996 997
    if (vlan) {
        nd->vlan->nb_guest_devs++;
    }
998 999 1000 1001 1002
    nb_nics++;

    return idx;
}

M
Mark McLoughlin 已提交
1003 1004 1005 1006
static int net_init_dump(QemuOpts *opts,
                         Monitor *mon,
                         const char *name,
                         VLANState *vlan)
M
Mark McLoughlin 已提交
1007 1008 1009 1010 1011
{
    int len;
    const char *file;
    char def_file[128];

M
Mark McLoughlin 已提交
1012
    assert(vlan);
M
Mark McLoughlin 已提交
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024

    file = qemu_opt_get(opts, "file");
    if (!file) {
        snprintf(def_file, sizeof(def_file), "qemu-vlan%d.pcap", vlan->id);
        file = def_file;
    }

    len = qemu_opt_get_size(opts, "len", 65536);

    return net_dump_init(vlan, "dump", name, file, len);
}

1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
#define NET_COMMON_PARAMS_DESC                     \
    {                                              \
        .name = "type",                            \
        .type = QEMU_OPT_STRING,                   \
        .help = "net client type (nic, tap etc.)", \
     }, {                                          \
        .name = "vlan",                            \
        .type = QEMU_OPT_NUMBER,                   \
        .help = "vlan number",                     \
     }, {                                          \
        .name = "name",                            \
        .type = QEMU_OPT_STRING,                   \
        .help = "identifier for monitor commands", \
     }

1040 1041
typedef int (*net_client_init_func)(QemuOpts *opts,
                                    Monitor *mon,
M
Mark McLoughlin 已提交
1042 1043
                                    const char *name,
                                    VLANState *vlan);
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063

/* magic number, but compiler will warn if too small */
#define NET_MAX_DESC 20

static struct {
    const char *type;
    net_client_init_func init;
    QemuOptDesc desc[NET_MAX_DESC];
} net_client_types[] = {
    {
        .type = "none",
        .desc = {
            NET_COMMON_PARAMS_DESC,
            { /* end of list */ }
        },
    }, {
        .type = "nic",
        .init = net_init_nic,
        .desc = {
            NET_COMMON_PARAMS_DESC,
M
Mark McLoughlin 已提交
1064 1065 1066 1067 1068
            {
                .name = "netdev",
                .type = QEMU_OPT_STRING,
                .help = "id of -netdev to connect to",
            },
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
            {
                .name = "macaddr",
                .type = QEMU_OPT_STRING,
                .help = "MAC address",
            }, {
                .name = "model",
                .type = QEMU_OPT_STRING,
                .help = "device model (e1000, rtl8139, virtio etc.)",
            }, {
                .name = "addr",
                .type = QEMU_OPT_STRING,
                .help = "PCI device address",
            }, {
                .name = "vectors",
                .type = QEMU_OPT_NUMBER,
                .help = "number of MSI-x vectors, 0 to disable MSI-X",
            },
            { /* end of list */ }
        },
M
Mark McLoughlin 已提交
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148
#ifdef CONFIG_SLIRP
    }, {
        .type = "user",
        .init = net_init_slirp,
        .desc = {
            NET_COMMON_PARAMS_DESC,
            {
                .name = "hostname",
                .type = QEMU_OPT_STRING,
                .help = "client hostname reported by the builtin DHCP server",
            }, {
                .name = "restrict",
                .type = QEMU_OPT_STRING,
                .help = "isolate the guest from the host (y|yes|n|no)",
            }, {
                .name = "ip",
                .type = QEMU_OPT_STRING,
                .help = "legacy parameter, use net= instead",
            }, {
                .name = "net",
                .type = QEMU_OPT_STRING,
                .help = "IP address and optional netmask",
            }, {
                .name = "host",
                .type = QEMU_OPT_STRING,
                .help = "guest-visible address of the host",
            }, {
                .name = "tftp",
                .type = QEMU_OPT_STRING,
                .help = "root directory of the built-in TFTP server",
            }, {
                .name = "bootfile",
                .type = QEMU_OPT_STRING,
                .help = "BOOTP filename, for use with tftp=",
            }, {
                .name = "dhcpstart",
                .type = QEMU_OPT_STRING,
                .help = "the first of the 16 IPs the built-in DHCP server can assign",
            }, {
                .name = "dns",
                .type = QEMU_OPT_STRING,
                .help = "guest-visible address of the virtual nameserver",
            }, {
                .name = "smb",
                .type = QEMU_OPT_STRING,
                .help = "root directory of the built-in SMB server",
            }, {
                .name = "smbserver",
                .type = QEMU_OPT_STRING,
                .help = "IP address of the built-in SMB server",
            }, {
                .name = "hostfwd",
                .type = QEMU_OPT_STRING,
                .help = "guest port number to forward incoming TCP or UDP connections",
            }, {
                .name = "guestfwd",
                .type = QEMU_OPT_STRING,
                .help = "IP address and port to forward guest TCP connections",
            },
            { /* end of list */ }
        },
M
Mark McLoughlin 已提交
1149 1150 1151
#endif
    }, {
        .type = "tap",
1152
        .init = net_init_tap,
M
Mark McLoughlin 已提交
1153 1154 1155 1156 1157 1158 1159
        .desc = {
            NET_COMMON_PARAMS_DESC,
            {
                .name = "ifname",
                .type = QEMU_OPT_STRING,
                .help = "interface name",
            },
1160
#ifndef _WIN32
M
Mark McLoughlin 已提交
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
            {
                .name = "fd",
                .type = QEMU_OPT_STRING,
                .help = "file descriptor of an already opened tap",
            }, {
                .name = "script",
                .type = QEMU_OPT_STRING,
                .help = "script to initialize the interface",
            }, {
                .name = "downscript",
                .type = QEMU_OPT_STRING,
                .help = "script to shut down the interface",
            }, {
                .name = "sndbuf",
                .type = QEMU_OPT_SIZE,
                .help = "send buffer limit"
1177 1178 1179 1180
            }, {
                .name = "vnet_hdr",
                .type = QEMU_OPT_BOOL,
                .help = "enable the IFF_VNET_HDR flag on the tap interface"
M
Mark McLoughlin 已提交
1181
            },
1182
#endif /* _WIN32 */
M
Mark McLoughlin 已提交
1183 1184
            { /* end of list */ }
        },
M
Mark McLoughlin 已提交
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
    }, {
        .type = "socket",
        .init = net_init_socket,
        .desc = {
            NET_COMMON_PARAMS_DESC,
            {
                .name = "fd",
                .type = QEMU_OPT_STRING,
                .help = "file descriptor of an already opened socket",
            }, {
                .name = "listen",
                .type = QEMU_OPT_STRING,
                .help = "port number, and optional hostname, to listen on",
            }, {
                .name = "connect",
                .type = QEMU_OPT_STRING,
                .help = "port number, and optional hostname, to connect to",
            }, {
                .name = "mcast",
                .type = QEMU_OPT_STRING,
                .help = "UDP multicast address and port number",
            },
            { /* end of list */ }
        },
M
Mark McLoughlin 已提交
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
#ifdef CONFIG_VDE
    }, {
        .type = "vde",
        .init = net_init_vde,
        .desc = {
            NET_COMMON_PARAMS_DESC,
            {
                .name = "sock",
                .type = QEMU_OPT_STRING,
                .help = "socket path",
            }, {
                .name = "port",
                .type = QEMU_OPT_NUMBER,
                .help = "port number",
            }, {
                .name = "group",
                .type = QEMU_OPT_STRING,
                .help = "group owner of socket",
            }, {
                .name = "mode",
                .type = QEMU_OPT_NUMBER,
                .help = "permissions for socket",
            },
            { /* end of list */ }
        },
#endif
M
Mark McLoughlin 已提交
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
    }, {
        .type = "dump",
        .init = net_init_dump,
        .desc = {
            NET_COMMON_PARAMS_DESC,
            {
                .name = "len",
                .type = QEMU_OPT_SIZE,
                .help = "per-packet size limit (64k default)",
            }, {
                .name = "file",
                .type = QEMU_OPT_STRING,
                .help = "dump file path (default is qemu-vlan0.pcap)",
            },
            { /* end of list */ }
        },
1251 1252 1253 1254
    },
    { /* end of list */ }
};

M
Mark McLoughlin 已提交
1255
int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
1256
{
1257
    const char *name;
1258 1259 1260 1261 1262 1263 1264 1265 1266
    const char *type;
    int i;

    type = qemu_opt_get(opts, "type");
    if (!type) {
        qemu_error("No type specified for -net\n");
        return -1;
    }

M
Mark McLoughlin 已提交
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
    if (is_netdev) {
        if (strcmp(type, "tap") != 0 &&
#ifdef CONFIG_SLIRP
            strcmp(type, "user") != 0 &&
#endif
#ifdef CONFIG_VDE
            strcmp(type, "vde") != 0 &&
#endif
            strcmp(type, "socket") != 0) {
            qemu_error("The '%s' network backend type is not valid with -netdev\n",
                       type);
            return -1;
        }

        if (qemu_opt_get(opts, "vlan")) {
            qemu_error("The 'vlan' parameter is not valid with -netdev\n");
            return -1;
        }
        if (qemu_opt_get(opts, "name")) {
            qemu_error("The 'name' parameter is not valid with -netdev\n");
            return -1;
        }
        if (!qemu_opts_id(opts)) {
            qemu_error("The id= parameter is required with -netdev\n");
            return -1;
        }
    }

1295 1296 1297 1298 1299
    name = qemu_opts_id(opts);
    if (!name) {
        name = qemu_opt_get(opts, "name");
    }

1300 1301
    for (i = 0; net_client_types[i].type != NULL; i++) {
        if (!strcmp(net_client_types[i].type, type)) {
M
Mark McLoughlin 已提交
1302 1303
            VLANState *vlan = NULL;

1304 1305 1306 1307
            if (qemu_opts_validate(opts, &net_client_types[i].desc[0]) == -1) {
                return -1;
            }

M
Mark McLoughlin 已提交
1308 1309 1310 1311
            /* Do not add to a vlan if it's a -netdev or a nic with a
             * netdev= parameter. */
            if (!(is_netdev ||
                  (strcmp(type, "nic") == 0 && qemu_opt_get(opts, "netdev")))) {
M
Mark McLoughlin 已提交
1312 1313 1314
                vlan = qemu_find_vlan(qemu_opt_get_number(opts, "vlan", 0), 1);
            }

1315
            if (net_client_types[i].init) {
M
Mark McLoughlin 已提交
1316
                return net_client_types[i].init(opts, mon, name, vlan);
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
            } else {
                return 0;
            }
        }
    }

    qemu_error("Invalid -net type '%s'\n", type);
    return -1;
}

1327 1328
void net_client_uninit(NICInfo *nd)
{
1329 1330 1331
    if (nd->vlan) {
        nd->vlan->nb_guest_devs--;
    }
1332
    nb_nics--;
G
Glauber Costa 已提交
1333

1334 1335 1336
    qemu_free(nd->model);
    qemu_free(nd->name);
    qemu_free(nd->devaddr);
G
Glauber Costa 已提交
1337

1338
    nd->used = 0;
1339 1340
}

1341 1342 1343
static int net_host_check_device(const char *device)
{
    int i;
1344
    const char *valid_param_list[] = { "tap", "socket", "dump"
1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
#ifdef CONFIG_SLIRP
                                       ,"user"
#endif
#ifdef CONFIG_VDE
                                       ,"vde"
#endif
    };
    for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
        if (!strncmp(valid_param_list[i], device,
                     strlen(valid_param_list[i])))
            return 1;
    }

    return 0;
}

1361
void net_host_device_add(Monitor *mon, const QDict *qdict)
1362
{
1363
    const char *device = qdict_get_str(qdict, "device");
1364 1365
    const char *opts_str = qdict_get_try_str(qdict, "opts");
    QemuOpts *opts;
1366

1367
    if (!net_host_check_device(device)) {
A
aliguori 已提交
1368
        monitor_printf(mon, "invalid host network device %s\n", device);
1369 1370
        return;
    }
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380

    opts = qemu_opts_parse(&qemu_net_opts, opts_str ? opts_str : "", NULL);
    if (!opts) {
        monitor_printf(mon, "parsing network options '%s' failed\n",
                       opts_str ? opts_str : "");
        return;
    }

    qemu_opt_set(opts, "type", device);

M
Mark McLoughlin 已提交
1381
    if (net_client_init(mon, opts, 0) < 0) {
1382 1383
        monitor_printf(mon, "adding host network device %s failed\n", device);
    }
1384 1385
}

1386
void net_host_device_remove(Monitor *mon, const QDict *qdict)
1387 1388
{
    VLANClientState *vc;
1389 1390
    int vlan_id = qdict_get_int(qdict, "vlan_id");
    const char *device = qdict_get_str(qdict, "device");
1391

1392
    vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
1393 1394 1395
    if (!vc) {
        return;
    }
1396 1397 1398 1399
    if (!net_host_check_device(vc->model)) {
        monitor_printf(mon, "invalid host network device %s\n", device);
        return;
    }
1400 1401 1402
    qemu_del_vlan_client(vc);
}

1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
void net_set_boot_mask(int net_boot_mask)
{
    int i;

    /* Only the first four NICs may be bootable */
    net_boot_mask = net_boot_mask & 0xF;

    for (i = 0; i < nb_nics; i++) {
        if (net_boot_mask & (1 << i)) {
            nd_table[i].bootable = 1;
            net_boot_mask &= ~(1 << i);
        }
    }

    if (net_boot_mask) {
        fprintf(stderr, "Cannot boot from non-existent NIC\n");
        exit(1);
    }
}

A
aliguori 已提交
1423
void do_info_network(Monitor *mon)
1424 1425 1426
{
    VLANState *vlan;

1427 1428 1429
    QTAILQ_FOREACH(vlan, &vlans, next) {
        VLANClientState *vc;

A
aliguori 已提交
1430
        monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
1431 1432

        QTAILQ_FOREACH(vc, &vlan->clients, next) {
A
aliguori 已提交
1433
            monitor_printf(mon, "  %s: %s\n", vc->name, vc->info_str);
1434
        }
1435 1436 1437
    }
}

1438
void do_set_link(Monitor *mon, const QDict *qdict)
1439 1440 1441
{
    VLANState *vlan;
    VLANClientState *vc = NULL;
1442 1443
    const char *name = qdict_get_str(qdict, "name");
    const char *up_or_down = qdict_get_str(qdict, "up_or_down");
1444

1445 1446 1447
    QTAILQ_FOREACH(vlan, &vlans, next) {
        QTAILQ_FOREACH(vc, &vlan->clients, next) {
            if (strcmp(vc->name, name) == 0) {
1448
                goto done;
1449 1450 1451
            }
        }
    }
1452
done:
1453 1454

    if (!vc) {
1455
        monitor_printf(mon, "could not find network device '%s'\n", name);
1456
        return;
1457 1458 1459 1460 1461 1462 1463
    }

    if (strcmp(up_or_down, "up") == 0)
        vc->link_down = 0;
    else if (strcmp(up_or_down, "down") == 0)
        vc->link_down = 1;
    else
A
aliguori 已提交
1464 1465
        monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
                       "valid\n", up_or_down);
1466

1467 1468
    if (vc->link_status_changed)
        vc->link_status_changed(vc);
1469 1470
}

1471 1472 1473
void net_cleanup(void)
{
    VLANState *vlan;
1474
    VLANClientState *vc, *next_vc;
1475

1476 1477
    QTAILQ_FOREACH(vlan, &vlans, next) {
        QTAILQ_FOREACH_SAFE(vc, &vlan->clients, next, next_vc) {
1478
            qemu_del_vlan_client(vc);
1479 1480
        }
    }
1481 1482 1483 1484

    QTAILQ_FOREACH_SAFE(vc, &non_vlan_clients, next, next_vc) {
        qemu_del_vlan_client(vc);
    }
1485 1486
}

1487
static void net_check_clients(void)
1488 1489 1490
{
    VLANState *vlan;

1491
    QTAILQ_FOREACH(vlan, &vlans, next) {
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
        if (vlan->nb_guest_devs == 0 && vlan->nb_host_devs == 0)
            continue;
        if (vlan->nb_guest_devs == 0)
            fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
        if (vlan->nb_host_devs == 0)
            fprintf(stderr,
                    "Warning: vlan %d is not connected to host network\n",
                    vlan->id);
    }
}
1502 1503 1504

static int net_init_client(QemuOpts *opts, void *dummy)
{
1505 1506 1507
    if (net_client_init(NULL, opts, 0) < 0)
        return -1;
    return 0;
M
Mark McLoughlin 已提交
1508 1509 1510 1511 1512
}

static int net_init_netdev(QemuOpts *opts, void *dummy)
{
    return net_client_init(NULL, opts, 1);
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
}

int net_init_clients(void)
{
    if (QTAILQ_EMPTY(&qemu_net_opts.head)) {
        /* if no clients, we use a default config */
        qemu_opts_set(&qemu_net_opts, NULL, "type", "nic");
#ifdef CONFIG_SLIRP
        qemu_opts_set(&qemu_net_opts, NULL, "type", "user");
#endif
    }

1525
    QTAILQ_INIT(&vlans);
1526
    QTAILQ_INIT(&non_vlan_clients);
1527

M
Mark McLoughlin 已提交
1528 1529 1530
    if (qemu_opts_foreach(&qemu_netdev_opts, net_init_netdev, NULL, 1) == -1)
        return -1;

1531 1532 1533 1534 1535 1536 1537 1538 1539
    if (qemu_opts_foreach(&qemu_net_opts, net_init_client, NULL, 1) == -1) {
        return -1;
    }

    net_check_clients();

    return 0;
}

1540
int net_client_parse(QemuOptsList *opts_list, const char *optarg)
1541
{
1542
#if defined(CONFIG_SLIRP)
1543 1544
    int ret;
    if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
1545 1546
        return ret;
    }
1547
#endif
1548

1549
    if (!qemu_opts_parse(opts_list, optarg, "type")) {
1550 1551 1552 1553 1554
        return -1;
    }

    return 0;
}