net.c 41.2 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
/*
 * 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.
 */
M
Mark McLoughlin 已提交
24
#include "net.h"
25

B
blueswir1 已提交
26 27
#include "config-host.h"

28
#include "net/tap.h"
29
#include "net/socket.h"
30
#include "net/dump.h"
31
#include "net/slirp.h"
32
#include "net/vde.h"
33
#include "net/util.h"
34
#include "monitor.h"
M
Mark McLoughlin 已提交
35
#include "qemu-common.h"
36
#include "qemu_socket.h"
L
Luiz Capitulino 已提交
37
#include "qmp-commands.h"
38
#include "hw/qdev.h"
B
Benjamin Poirier 已提交
39
#include "iov.h"
40

41 42 43 44 45
/* Net bridge is currently not supported for W32. */
#if !defined(_WIN32)
# define CONFIG_NET_BRIDGE
#endif

46
static QTAILQ_HEAD(, VLANState) vlans;
47
static QTAILQ_HEAD(, VLANClientState) non_vlan_clients;
48

G
Gerd Hoffmann 已提交
49 50
int default_net = 1;

51 52 53
/***********************************************************/
/* network device redirectors */

54
#if defined(DEBUG_NET)
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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
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 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_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 {
116
        if (qemu_isdigit(buf[0])) {
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
            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;
}

132 133 134
void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
{
    snprintf(vc->info_str, sizeof(vc->info_str),
135 136
             "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
             vc->model,
137 138 139 140
             macaddr[0], macaddr[1], macaddr[2],
             macaddr[3], macaddr[4], macaddr[5]);
}

G
Gerd Hoffmann 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
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++;
}

156 157 158
static char *assign_name(VLANClientState *vc1, const char *model)
{
    VLANState *vlan;
159
    VLANClientState *vc;
160 161 162
    char buf[256];
    int id = 0;

163 164 165
    QTAILQ_FOREACH(vlan, &vlans, next) {
        QTAILQ_FOREACH(vc, &vlan->clients, next) {
            if (vc != vc1 && strcmp(vc->model, model) == 0) {
166
                id++;
167 168
            }
        }
169 170
    }

171 172 173 174 175 176
    QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
        if (vc != vc1 && strcmp(vc->model, model) == 0) {
            id++;
        }
    }

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

179
    return g_strdup(buf);
180 181
}

182
static ssize_t qemu_deliver_packet(VLANClientState *sender,
183
                                   unsigned flags,
184 185 186 187
                                   const uint8_t *data,
                                   size_t size,
                                   void *opaque);
static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
188
                                       unsigned flags,
189 190 191 192
                                       const struct iovec *iov,
                                       int iovcnt,
                                       void *opaque);

193 194 195 196 197
VLANClientState *qemu_new_net_client(NetClientInfo *info,
                                     VLANState *vlan,
                                     VLANClientState *peer,
                                     const char *model,
                                     const char *name)
198
{
199 200
    VLANClientState *vc;

201 202
    assert(info->size >= sizeof(VLANClientState));

203
    vc = g_malloc0(info->size);
204

205
    vc->info = info;
206
    vc->model = g_strdup(model);
207
    if (name) {
208
        vc->name = g_strdup(name);
209
    } else {
210
        vc->name = assign_name(vc, model);
211
    }
212

213
    if (vlan) {
214
        assert(!peer);
215 216
        vc->vlan = vlan;
        QTAILQ_INSERT_TAIL(&vc->vlan->clients, vc, next);
217
    } else {
218
        if (peer) {
219
            assert(!peer->peer);
220 221 222
            vc->peer = peer;
            peer->peer = vc;
        }
223
        QTAILQ_INSERT_TAIL(&non_vlan_clients, vc, next);
224 225 226 227

        vc->send_queue = qemu_new_net_queue(qemu_deliver_packet,
                                            qemu_deliver_packet_iov,
                                            vc);
228
    }
229 230 231 232

    return vc;
}

233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
NICState *qemu_new_nic(NetClientInfo *info,
                       NICConf *conf,
                       const char *model,
                       const char *name,
                       void *opaque)
{
    VLANClientState *nc;
    NICState *nic;

    assert(info->type == NET_CLIENT_TYPE_NIC);
    assert(info->size >= sizeof(NICState));

    nc = qemu_new_net_client(info, conf->vlan, conf->peer, model, name);

    nic = DO_UPCAST(NICState, nc, nc);
    nic->conf = conf;
    nic->opaque = opaque;

    return nic;
}

254
static void qemu_cleanup_vlan_client(VLANClientState *vc)
255
{
256 257
    if (vc->vlan) {
        QTAILQ_REMOVE(&vc->vlan->clients, vc, next);
258 259
    } else {
        QTAILQ_REMOVE(&non_vlan_clients, vc, next);
260
    }
261

262 263
    if (vc->info->cleanup) {
        vc->info->cleanup(vc);
264
    }
265
}
266

267 268 269 270 271 272 273 274 275 276
static void qemu_free_vlan_client(VLANClientState *vc)
{
    if (!vc->vlan) {
        if (vc->send_queue) {
            qemu_del_net_queue(vc->send_queue);
        }
        if (vc->peer) {
            vc->peer->peer = NULL;
        }
    }
277 278 279
    g_free(vc->name);
    g_free(vc->model);
    g_free(vc);
280 281
}

282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
void qemu_del_vlan_client(VLANClientState *vc)
{
    /* If there is a peer NIC, delete and cleanup client, but do not free. */
    if (!vc->vlan && vc->peer && vc->peer->info->type == NET_CLIENT_TYPE_NIC) {
        NICState *nic = DO_UPCAST(NICState, nc, vc->peer);
        if (nic->peer_deleted) {
            return;
        }
        nic->peer_deleted = true;
        /* Let NIC know peer is gone. */
        vc->peer->link_down = true;
        if (vc->peer->info->link_status_changed) {
            vc->peer->info->link_status_changed(vc->peer);
        }
        qemu_cleanup_vlan_client(vc);
        return;
    }

    /* If this is a peer NIC and peer has already been deleted, free it now. */
    if (!vc->vlan && vc->peer && vc->info->type == NET_CLIENT_TYPE_NIC) {
        NICState *nic = DO_UPCAST(NICState, nc, vc);
        if (nic->peer_deleted) {
            qemu_free_vlan_client(vc->peer);
        }
    }

    qemu_cleanup_vlan_client(vc);
    qemu_free_vlan_client(vc);
}

312
VLANClientState *
313 314 315 316 317 318 319 320 321 322 323 324
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;
    }

325
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
326 327 328 329 330 331 332 333 334 335 336 337
        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;
}

M
Mark McLoughlin 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
{
    VLANClientState *nc;
    VLANState *vlan;

    QTAILQ_FOREACH(nc, &non_vlan_clients, next) {
        if (nc->info->type == NET_CLIENT_TYPE_NIC) {
            func(DO_UPCAST(NICState, nc, nc), opaque);
        }
    }

    QTAILQ_FOREACH(vlan, &vlans, next) {
        QTAILQ_FOREACH(nc, &vlan->clients, next) {
            if (nc->info->type == NET_CLIENT_TYPE_NIC) {
                func(DO_UPCAST(NICState, nc, nc), opaque);
            }
        }
    }
}

358
int qemu_can_send_packet(VLANClientState *sender)
359
{
360
    VLANState *vlan = sender->vlan;
361 362
    VLANClientState *vc;

363
    if (sender->peer) {
364 365
        if (sender->peer->receive_disabled) {
            return 0;
366 367
        } else if (sender->peer->info->can_receive &&
                   !sender->peer->info->can_receive(sender->peer)) {
368
            return 0;
369 370
        } else {
            return 1;
371 372 373
        }
    }

374 375 376 377
    if (!sender->vlan) {
        return 1;
    }

378
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
379 380 381 382
        if (vc == sender) {
            continue;
        }

383
        /* no can_receive() handler, they can always receive */
384 385
        if (vc->info->can_receive && !vc->info->can_receive(vc)) {
            return 0;
386 387
        }
    }
388
    return 1;
389 390
}

391
static ssize_t qemu_deliver_packet(VLANClientState *sender,
392
                                   unsigned flags,
393 394 395 396 397
                                   const uint8_t *data,
                                   size_t size,
                                   void *opaque)
{
    VLANClientState *vc = opaque;
398
    ssize_t ret;
399 400 401 402 403

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

404 405 406 407
    if (vc->receive_disabled) {
        return 0;
    }

408 409
    if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->info->receive_raw) {
        ret = vc->info->receive_raw(vc, data, size);
410
    } else {
411
        ret = vc->info->receive(vc, data, size);
412 413 414 415 416 417 418
    }

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

    return ret;
419 420
}

421
static ssize_t qemu_vlan_deliver_packet(VLANClientState *sender,
422
                                        unsigned flags,
423 424 425
                                        const uint8_t *buf,
                                        size_t size,
                                        void *opaque)
426
{
427
    VLANState *vlan = opaque;
428
    VLANClientState *vc;
429
    ssize_t ret = -1;
430

431
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
432 433 434 435
        ssize_t len;

        if (vc == sender) {
            continue;
436
        }
437 438 439 440 441 442

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

443 444 445 446 447
        if (vc->receive_disabled) {
            ret = 0;
            continue;
        }

448 449
        if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->info->receive_raw) {
            len = vc->info->receive_raw(vc, buf, size);
450
        } else {
451
            len = vc->info->receive(vc, buf, size);
452 453 454 455 456
        }

        if (len == 0) {
            vc->receive_disabled = 1;
        }
457 458

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

460
    }
461 462

    return ret;
463 464
}

465 466
void qemu_purge_queued_packets(VLANClientState *vc)
{
467 468 469
    NetQueue *queue;

    if (!vc->peer && !vc->vlan) {
470
        return;
471
    }
472

473 474 475 476 477 478 479
    if (vc->peer) {
        queue = vc->peer->send_queue;
    } else {
        queue = vc->vlan->send_queue;
    }

    qemu_net_queue_purge(queue, vc);
480 481
}

482
void qemu_flush_queued_packets(VLANClientState *vc)
483
{
484 485
    NetQueue *queue;

486 487
    vc->receive_disabled = 0;

488 489 490 491 492
    if (vc->vlan) {
        queue = vc->vlan->send_queue;
    } else {
        queue = vc->send_queue;
    }
493

494
    qemu_net_queue_flush(queue);
495 496
}

497 498 499 500
static ssize_t qemu_send_packet_async_with_flags(VLANClientState *sender,
                                                 unsigned flags,
                                                 const uint8_t *buf, int size,
                                                 NetPacketSent *sent_cb)
501
{
502
    NetQueue *queue;
503

504
#ifdef DEBUG_NET
505
    printf("qemu_send_packet_async:\n");
506 507
    hex_dump(stdout, buf, size);
#endif
508

509 510 511 512 513 514 515 516 517 518
    if (sender->link_down || (!sender->peer && !sender->vlan)) {
        return size;
    }

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

519 520 521 522 523 524 525 526 527
    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);
528 529 530 531 532
}

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

535 536 537 538 539 540
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 已提交
541 542 543 544
static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
                               int iovcnt)
{
    uint8_t buffer[4096];
B
Benjamin Poirier 已提交
545
    size_t offset;
A
aliguori 已提交
546

B
Benjamin Poirier 已提交
547
    offset = iov_to_buf(iov, iovcnt, buffer, 0, sizeof(buffer));
A
aliguori 已提交
548

549
    return vc->info->receive(vc, buffer, offset);
A
aliguori 已提交
550 551
}

552
static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
553
                                       unsigned flags,
554 555 556 557 558 559 560
                                       const struct iovec *iov,
                                       int iovcnt,
                                       void *opaque)
{
    VLANClientState *vc = opaque;

    if (vc->link_down) {
B
Benjamin Poirier 已提交
561
        return iov_size(iov, iovcnt);
562 563
    }

564 565
    if (vc->info->receive_iov) {
        return vc->info->receive_iov(vc, iov, iovcnt);
566 567 568 569 570
    } else {
        return vc_sendv_compat(vc, iov, iovcnt);
    }
}

571
static ssize_t qemu_vlan_deliver_packet_iov(VLANClientState *sender,
572
                                            unsigned flags,
573 574 575
                                            const struct iovec *iov,
                                            int iovcnt,
                                            void *opaque)
A
aliguori 已提交
576
{
577
    VLANState *vlan = opaque;
A
aliguori 已提交
578
    VLANClientState *vc;
579
    ssize_t ret = -1;
580

581
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
582 583 584 585 586 587 588
        ssize_t len;

        if (vc == sender) {
            continue;
        }

        if (vc->link_down) {
B
Benjamin Poirier 已提交
589
            ret = iov_size(iov, iovcnt);
590 591 592
            continue;
        }

593 594
        assert(!(flags & QEMU_NET_PACKET_FLAG_RAW));

595 596
        if (vc->info->receive_iov) {
            len = vc->info->receive_iov(vc, iov, iovcnt);
597 598 599 600 601 602 603 604 605 606
        } else {
            len = vc_sendv_compat(vc, iov, iovcnt);
        }

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

    return ret;
}

607 608 609
ssize_t qemu_sendv_packet_async(VLANClientState *sender,
                                const struct iovec *iov, int iovcnt,
                                NetPacketSent *sent_cb)
610
{
611 612 613
    NetQueue *queue;

    if (sender->link_down || (!sender->peer && !sender->vlan)) {
B
Benjamin Poirier 已提交
614
        return iov_size(iov, iovcnt);
615 616
    }

617 618 619 620 621 622
    if (sender->peer) {
        queue = sender->peer->send_queue;
    } else {
        queue = sender->vlan->send_queue;
    }

623 624 625
    return qemu_net_queue_send_iov(queue, sender,
                                   QEMU_NET_PACKET_FLAG_NONE,
                                   iov, iovcnt, sent_cb);
A
aliguori 已提交
626 627
}

628 629 630 631 632 633
ssize_t
qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
{
    return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
}

634
/* find or alloc a new VLAN */
635
VLANState *qemu_find_vlan(int id, int allocate)
636
{
637 638 639 640
    VLANState *vlan;

    QTAILQ_FOREACH(vlan, &vlans, next) {
        if (vlan->id == id) {
641
            return vlan;
642
        }
643
    }
644

645 646 647
    if (!allocate) {
        return NULL;
    }
648

649
    vlan = g_malloc0(sizeof(VLANState));
650
    vlan->id = id;
651
    QTAILQ_INIT(&vlan->clients);
652 653 654 655

    vlan->send_queue = qemu_new_net_queue(qemu_vlan_deliver_packet,
                                          qemu_vlan_deliver_packet_iov,
                                          vlan);
656 657 658

    QTAILQ_INSERT_TAIL(&vlans, vlan, next);

659 660 661
    return vlan;
}

G
Gerd Hoffmann 已提交
662
VLANClientState *qemu_find_netdev(const char *id)
M
Mark McLoughlin 已提交
663 664 665 666
{
    VLANClientState *vc;

    QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
667 668
        if (vc->info->type == NET_CLIENT_TYPE_NIC)
            continue;
M
Mark McLoughlin 已提交
669 670 671 672 673 674 675 676
        if (!strcmp(vc->name, id)) {
            return vc;
        }
    }

    return NULL;
}

677 678 679 680 681 682 683 684 685 686
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;
}

687 688 689 690 691 692 693 694 695 696 697 698 699
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;
}

700 701 702 703 704 705 706
void qemu_check_nic_model(NICInfo *nd, const char *model)
{
    const char *models[2];

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

707 708 709 710
    if (qemu_show_nic_models(nd->model, models))
        exit(0);
    if (qemu_find_nic_model(nd, models, model) < 0)
        exit(1);
711 712
}

713 714
int qemu_find_nic_model(NICInfo *nd, const char * const *models,
                        const char *default_model)
715
{
716
    int i;
717 718

    if (!nd->model)
719
        nd->model = g_strdup(default_model);
720

721 722 723
    for (i = 0 ; models[i]; i++) {
        if (strcmp(nd->model, models[i]) == 0)
            return i;
724 725
    }

726
    error_report("Unsupported NIC model: %s", nd->model);
727
    return -1;
728 729
}

730
int net_handle_fd_param(Monitor *mon, const char *param)
731
{
732 733 734
    int fd;

    if (!qemu_isdigit(param[0]) && mon) {
735 736 737

        fd = monitor_get_fd(mon, param);
        if (fd == -1) {
738
            error_report("No file descriptor named %s found", param);
739 740 741
            return -1;
        }
    } else {
742
        fd = qemu_parse_fd(param);
743
    }
744 745

    return fd;
746 747
}

748
static int net_init_nic(QemuOpts *opts, const char *name, VLANState *vlan)
749 750 751
{
    int idx;
    NICInfo *nd;
M
Mark McLoughlin 已提交
752
    const char *netdev;
753 754 755

    idx = nic_get_free_idx();
    if (idx == -1 || nb_nics >= MAX_NICS) {
756
        error_report("Too Many NICs");
757 758 759 760 761 762 763
        return -1;
    }

    nd = &nd_table[idx];

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

M
Mark McLoughlin 已提交
764 765 766
    if ((netdev = qemu_opt_get(opts, "netdev"))) {
        nd->netdev = qemu_find_netdev(netdev);
        if (!nd->netdev) {
767
            error_report("netdev '%s' not found", netdev);
M
Mark McLoughlin 已提交
768 769 770 771 772 773
            return -1;
        }
    } else {
        assert(vlan);
        nd->vlan = vlan;
    }
774
    if (name) {
775
        nd->name = g_strdup(name);
776
    }
777
    if (qemu_opt_get(opts, "model")) {
778
        nd->model = g_strdup(qemu_opt_get(opts, "model"));
779 780
    }
    if (qemu_opt_get(opts, "addr")) {
781
        nd->devaddr = g_strdup(qemu_opt_get(opts, "addr"));
782 783 784
    }

    if (qemu_opt_get(opts, "macaddr") &&
785
        net_parse_macaddr(nd->macaddr.a, qemu_opt_get(opts, "macaddr")) < 0) {
786
        error_report("invalid syntax for ethernet address");
787 788
        return -1;
    }
789
    qemu_macaddr_default_if_unset(&nd->macaddr);
790

791 792 793
    nd->nvectors = qemu_opt_get_number(opts, "vectors",
                                       DEV_NVECTORS_UNSPECIFIED);
    if (nd->nvectors != DEV_NVECTORS_UNSPECIFIED &&
794
        (nd->nvectors < 0 || nd->nvectors > 0x7ffffff)) {
795
        error_report("invalid # of vectors: %d", nd->nvectors);
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
        return -1;
    }

    nd->used = 1;
    nb_nics++;

    return idx;
}

#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", \
     }

820
typedef int (*net_client_init_func)(QemuOpts *opts,
M
Mark McLoughlin 已提交
821 822
                                    const char *name,
                                    VLANState *vlan);
823 824 825 826

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

B
Blue Swirl 已提交
827
static const struct {
828 829 830
    const char *type;
    net_client_init_func init;
    QemuOptDesc desc[NET_MAX_DESC];
J
Jan Kiszka 已提交
831 832
} net_client_types[NET_CLIENT_TYPE_MAX] = {
    [NET_CLIENT_TYPE_NONE] = {
833 834 835 836 837
        .type = "none",
        .desc = {
            NET_COMMON_PARAMS_DESC,
            { /* end of list */ }
        },
J
Jan Kiszka 已提交
838 839
    },
    [NET_CLIENT_TYPE_NIC] = {
840 841 842 843
        .type = "nic",
        .init = net_init_nic,
        .desc = {
            NET_COMMON_PARAMS_DESC,
M
Mark McLoughlin 已提交
844 845 846 847 848
            {
                .name = "netdev",
                .type = QEMU_OPT_STRING,
                .help = "id of -netdev to connect to",
            },
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
            {
                .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 */ }
        },
J
Jan Kiszka 已提交
868
    },
M
Mark McLoughlin 已提交
869
#ifdef CONFIG_SLIRP
J
Jan Kiszka 已提交
870
    [NET_CLIENT_TYPE_USER] = {
M
Mark McLoughlin 已提交
871 872 873 874 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 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
        .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 */ }
        },
J
Jan Kiszka 已提交
930
    },
M
Mark McLoughlin 已提交
931
#endif
J
Jan Kiszka 已提交
932
    [NET_CLIENT_TYPE_TAP] = {
M
Mark McLoughlin 已提交
933
        .type = "tap",
934
        .init = net_init_tap,
M
Mark McLoughlin 已提交
935 936 937 938 939 940 941
        .desc = {
            NET_COMMON_PARAMS_DESC,
            {
                .name = "ifname",
                .type = QEMU_OPT_STRING,
                .help = "interface name",
            },
942
#ifndef _WIN32
M
Mark McLoughlin 已提交
943 944 945 946 947 948 949 950 951 952 953 954
            {
                .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",
C
Corey Bryant 已提交
955
            }, {
956
#ifdef CONFIG_NET_BRIDGE
C
Corey Bryant 已提交
957 958 959
                .name = "helper",
                .type = QEMU_OPT_STRING,
                .help = "command to execute to configure bridge",
M
Mark McLoughlin 已提交
960
            }, {
961
#endif
M
Mark McLoughlin 已提交
962 963 964
                .name = "sndbuf",
                .type = QEMU_OPT_SIZE,
                .help = "send buffer limit"
965 966 967 968
            }, {
                .name = "vnet_hdr",
                .type = QEMU_OPT_BOOL,
                .help = "enable the IFF_VNET_HDR flag on the tap interface"
969 970 971 972 973 974 975 976
            }, {
                .name = "vhost",
                .type = QEMU_OPT_BOOL,
                .help = "enable vhost-net network accelerator",
            }, {
                .name = "vhostfd",
                .type = QEMU_OPT_STRING,
                .help = "file descriptor of an already opened vhost net device",
977 978 979 980 981
            }, {
                .name = "vhostforce",
                .type = QEMU_OPT_BOOL,
                .help = "force vhost on for non-MSIX virtio guests",
        },
982
#endif /* _WIN32 */
M
Mark McLoughlin 已提交
983 984
            { /* end of list */ }
        },
J
Jan Kiszka 已提交
985 986
    },
    [NET_CLIENT_TYPE_SOCKET] = {
M
Mark McLoughlin 已提交
987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
        .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",
1007 1008 1009
            }, {
                .name = "localaddr",
                .type = QEMU_OPT_STRING,
1010 1011 1012 1013 1014
                .help = "source address and port for multicast and udp packets",
            }, {
                .name = "udp",
                .type = QEMU_OPT_STRING,
                .help = "UDP unicast address and port number",
M
Mark McLoughlin 已提交
1015 1016 1017
            },
            { /* end of list */ }
        },
J
Jan Kiszka 已提交
1018
    },
M
Mark McLoughlin 已提交
1019
#ifdef CONFIG_VDE
J
Jan Kiszka 已提交
1020
    [NET_CLIENT_TYPE_VDE] = {
M
Mark McLoughlin 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
        .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 */ }
        },
J
Jan Kiszka 已提交
1044
    },
M
Mark McLoughlin 已提交
1045
#endif
J
Jan Kiszka 已提交
1046
    [NET_CLIENT_TYPE_DUMP] = {
M
Mark McLoughlin 已提交
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
        .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 */ }
        },
1062
    },
1063
#ifdef CONFIG_NET_BRIDGE
C
Corey Bryant 已提交
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
    [NET_CLIENT_TYPE_BRIDGE] = {
        .type = "bridge",
        .init = net_init_bridge,
        .desc = {
            NET_COMMON_PARAMS_DESC,
            {
                .name = "br",
                .type = QEMU_OPT_STRING,
                .help = "bridge name",
            }, {
                .name = "helper",
                .type = QEMU_OPT_STRING,
                .help = "command to execute to configure bridge",
            },
            { /* end of list */ }
        },
    },
1081
#endif /* CONFIG_NET_BRIDGE */
1082 1083
};

1084
int net_client_init(QemuOpts *opts, int is_netdev, Error **errp)
1085
{
1086
    const char *name;
1087 1088 1089 1090
    const char *type;
    int i;

    type = qemu_opt_get(opts, "type");
1091
    if (!type) {
1092
        error_set(errp, QERR_MISSING_PARAMETER, "type");
1093 1094
        return -1;
    }
1095

1096
    if (is_netdev) {
M
Mark McLoughlin 已提交
1097
        if (strcmp(type, "tap") != 0 &&
1098 1099 1100
#ifdef CONFIG_NET_BRIDGE
            strcmp(type, "bridge") != 0 &&
#endif
M
Mark McLoughlin 已提交
1101 1102 1103 1104 1105 1106
#ifdef CONFIG_SLIRP
            strcmp(type, "user") != 0 &&
#endif
#ifdef CONFIG_VDE
            strcmp(type, "vde") != 0 &&
#endif
1107
            strcmp(type, "socket") != 0) {
1108 1109
            error_set(errp, QERR_INVALID_PARAMETER_VALUE, "type",
                      "a netdev backend type");
M
Mark McLoughlin 已提交
1110 1111 1112 1113
            return -1;
        }

        if (qemu_opt_get(opts, "vlan")) {
1114
            error_set(errp, QERR_INVALID_PARAMETER, "vlan");
M
Mark McLoughlin 已提交
1115 1116 1117
            return -1;
        }
        if (qemu_opt_get(opts, "name")) {
1118
            error_set(errp, QERR_INVALID_PARAMETER, "name");
M
Mark McLoughlin 已提交
1119 1120 1121
            return -1;
        }
        if (!qemu_opts_id(opts)) {
1122
            error_set(errp, QERR_MISSING_PARAMETER, "id");
M
Mark McLoughlin 已提交
1123 1124 1125 1126
            return -1;
        }
    }

1127 1128 1129 1130 1131
    name = qemu_opts_id(opts);
    if (!name) {
        name = qemu_opt_get(opts, "name");
    }

J
Jan Kiszka 已提交
1132 1133 1134
    for (i = 0; i < NET_CLIENT_TYPE_MAX; i++) {
        if (net_client_types[i].type != NULL &&
            !strcmp(net_client_types[i].type, type)) {
1135
            Error *local_err = NULL;
M
Mark McLoughlin 已提交
1136
            VLANState *vlan = NULL;
A
Amit Shah 已提交
1137
            int ret;
M
Mark McLoughlin 已提交
1138

1139 1140
            qemu_opts_validate(opts, &net_client_types[i].desc[0], &local_err);
            if (error_is_set(&local_err)) {
1141
                error_propagate(errp, local_err);
1142 1143 1144
                return -1;
            }

M
Mark McLoughlin 已提交
1145 1146 1147 1148
            /* 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 已提交
1149 1150 1151
                vlan = qemu_find_vlan(qemu_opt_get_number(opts, "vlan", 0), 1);
            }

A
Amit Shah 已提交
1152
            ret = 0;
1153
            if (net_client_types[i].init) {
1154
                ret = net_client_types[i].init(opts, name, vlan);
A
Amit Shah 已提交
1155
                if (ret < 0) {
1156
                    /* TODO push error reporting into init() methods */
1157
                    error_set(errp, QERR_DEVICE_INIT_FAILED, type);
1158 1159
                    return -1;
                }
1160
            }
A
Amit Shah 已提交
1161
            return ret;
1162 1163 1164
        }
    }

1165 1166
    error_set(errp, QERR_INVALID_PARAMETER_VALUE, "type",
              "a network client type");
1167 1168 1169
    return -1;
}

1170 1171 1172
static int net_host_check_device(const char *device)
{
    int i;
1173
    const char *valid_param_list[] = { "tap", "socket", "dump"
1174 1175 1176
#ifdef CONFIG_NET_BRIDGE
                                       , "bridge"
#endif
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
#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;
}

1193
void net_host_device_add(Monitor *mon, const QDict *qdict)
1194
{
1195
    const char *device = qdict_get_str(qdict, "device");
1196
    const char *opts_str = qdict_get_try_str(qdict, "opts");
1197
    Error *local_err = NULL;
1198
    QemuOpts *opts;
1199

1200
    if (!net_host_check_device(device)) {
A
aliguori 已提交
1201
        monitor_printf(mon, "invalid host network device %s\n", device);
1202 1203
        return;
    }
1204

1205
    opts = qemu_opts_parse(qemu_find_opts("net"), opts_str ? opts_str : "", 0);
1206 1207 1208 1209 1210 1211
    if (!opts) {
        return;
    }

    qemu_opt_set(opts, "type", device);

1212 1213 1214 1215
    net_client_init(opts, 0, &local_err);
    if (error_is_set(&local_err)) {
        qerror_report_err(local_err);
        error_free(local_err);
1216 1217
        monitor_printf(mon, "adding host network device %s failed\n", device);
    }
1218 1219
}

1220
void net_host_device_remove(Monitor *mon, const QDict *qdict)
1221 1222
{
    VLANClientState *vc;
1223 1224
    int vlan_id = qdict_get_int(qdict, "vlan_id");
    const char *device = qdict_get_str(qdict, "device");
1225

1226
    vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
1227 1228 1229
    if (!vc) {
        return;
    }
1230 1231 1232 1233
    if (!net_host_check_device(vc->model)) {
        monitor_printf(mon, "invalid host network device %s\n", device);
        return;
    }
1234 1235 1236
    qemu_del_vlan_client(vc);
}

L
Luiz Capitulino 已提交
1237 1238 1239 1240 1241 1242
void netdev_add(QemuOpts *opts, Error **errp)
{
    net_client_init(opts, 1, errp);
}

int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret)
1243
{
1244
    Error *local_err = NULL;
L
Luiz Capitulino 已提交
1245
    QemuOptsList *opts_list;
1246 1247
    QemuOpts *opts;

L
Luiz Capitulino 已提交
1248 1249 1250
    opts_list = qemu_find_opts_err("netdev", &local_err);
    if (error_is_set(&local_err)) {
        goto exit_err;
1251 1252
    }

L
Luiz Capitulino 已提交
1253 1254 1255 1256 1257 1258 1259
    opts = qemu_opts_from_qdict(opts_list, qdict, &local_err);
    if (error_is_set(&local_err)) {
        goto exit_err;
    }

    netdev_add(opts, &local_err);
    if (error_is_set(&local_err)) {
1260
        qemu_opts_del(opts);
L
Luiz Capitulino 已提交
1261
        goto exit_err;
1262 1263
    }

L
Luiz Capitulino 已提交
1264 1265 1266 1267 1268 1269
    return 0;

exit_err:
    qerror_report_err(local_err);
    error_free(local_err);
    return -1;
1270 1271 1272 1273 1274 1275 1276 1277
}

int do_netdev_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
{
    const char *id = qdict_get_str(qdict, "id");
    VLANClientState *vc;

    vc = qemu_find_netdev(id);
1278
    if (!vc) {
1279 1280 1281 1282
        qerror_report(QERR_DEVICE_NOT_FOUND, id);
        return -1;
    }
    qemu_del_vlan_client(vc);
1283
    qemu_opts_del(qemu_opts_find(qemu_find_opts("netdev"), id));
1284 1285 1286
    return 0;
}

1287 1288 1289 1290 1291 1292
static void print_net_client(Monitor *mon, VLANClientState *vc)
{
    monitor_printf(mon, "%s: type=%s,%s\n", vc->name,
                   net_client_types[vc->info->type].type, vc->info_str);
}

A
aliguori 已提交
1293
void do_info_network(Monitor *mon)
1294 1295
{
    VLANState *vlan;
1296 1297
    VLANClientState *vc, *peer;
    net_client_type type;
1298

1299
    QTAILQ_FOREACH(vlan, &vlans, next) {
A
aliguori 已提交
1300
        monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
1301 1302

        QTAILQ_FOREACH(vc, &vlan->clients, next) {
1303 1304
            monitor_printf(mon, "  ");
            print_net_client(mon, vc);
1305
        }
1306
    }
1307 1308
    monitor_printf(mon, "Devices not on any VLAN:\n");
    QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
1309 1310 1311
        peer = vc->peer;
        type = vc->info->type;
        if (!peer || type == NET_CLIENT_TYPE_NIC) {
1312 1313
            monitor_printf(mon, "  ");
            print_net_client(mon, vc);
1314 1315
        } /* else it's a netdev connected to a NIC, printed with the NIC */
        if (peer && type == NET_CLIENT_TYPE_NIC) {
1316 1317
            monitor_printf(mon, "   \\ ");
            print_net_client(mon, peer);
1318 1319
        }
    }
1320 1321
}

L
Luiz Capitulino 已提交
1322
void qmp_set_link(const char *name, bool up, Error **errp)
1323 1324 1325 1326
{
    VLANState *vlan;
    VLANClientState *vc = NULL;

1327 1328 1329
    QTAILQ_FOREACH(vlan, &vlans, next) {
        QTAILQ_FOREACH(vc, &vlan->clients, next) {
            if (strcmp(vc->name, name) == 0) {
1330
                goto done;
1331 1332 1333
            }
        }
    }
1334 1335 1336 1337 1338
    QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
        if (!strcmp(vc->name, name)) {
            goto done;
        }
    }
1339
done:
1340 1341

    if (!vc) {
L
Luiz Capitulino 已提交
1342 1343
        error_set(errp, QERR_DEVICE_NOT_FOUND, name);
        return;
1344 1345
    }

1346
    vc->link_down = !up;
1347

1348 1349 1350
    if (vc->info->link_status_changed) {
        vc->info->link_status_changed(vc);
    }
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361

    /* Notify peer. Don't update peer link status: this makes it possible to
     * disconnect from host network without notifying the guest.
     * FIXME: is disconnected link status change operation useful?
     *
     * Current behaviour is compatible with qemu vlans where there could be
     * multiple clients that can still communicate with each other in
     * disconnected mode. For now maintain this compatibility. */
    if (vc->peer && vc->peer->info->link_status_changed) {
        vc->peer->info->link_status_changed(vc->peer);
    }
1362 1363
}

1364 1365 1366
void net_cleanup(void)
{
    VLANState *vlan;
1367
    VLANClientState *vc, *next_vc;
1368

1369 1370
    QTAILQ_FOREACH(vlan, &vlans, next) {
        QTAILQ_FOREACH_SAFE(vc, &vlan->clients, next, next_vc) {
1371
            qemu_del_vlan_client(vc);
1372 1373
        }
    }
1374 1375 1376 1377

    QTAILQ_FOREACH_SAFE(vc, &non_vlan_clients, next, next_vc) {
        qemu_del_vlan_client(vc);
    }
1378 1379
}

1380
void net_check_clients(void)
1381 1382
{
    VLANState *vlan;
1383
    VLANClientState *vc;
1384
    int i;
1385

1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
    /* Don't warn about the default network setup that you get if
     * no command line -net or -netdev options are specified. There
     * are two cases that we would otherwise complain about:
     * (1) board doesn't support a NIC but the implicit "-net nic"
     * requested one
     * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
     * sets up a nic that isn't connected to anything.
     */
    if (default_net) {
        return;
    }

1398
    QTAILQ_FOREACH(vlan, &vlans, next) {
1399 1400
        int has_nic = 0, has_host_dev = 0;

1401 1402 1403 1404 1405
        QTAILQ_FOREACH(vc, &vlan->clients, next) {
            switch (vc->info->type) {
            case NET_CLIENT_TYPE_NIC:
                has_nic = 1;
                break;
J
Jan Kiszka 已提交
1406
            case NET_CLIENT_TYPE_USER:
1407 1408 1409 1410 1411 1412 1413 1414 1415
            case NET_CLIENT_TYPE_TAP:
            case NET_CLIENT_TYPE_SOCKET:
            case NET_CLIENT_TYPE_VDE:
                has_host_dev = 1;
                break;
            default: ;
            }
        }
        if (has_host_dev && !has_nic)
1416
            fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1417
        if (has_nic && !has_host_dev)
1418 1419 1420 1421
            fprintf(stderr,
                    "Warning: vlan %d is not connected to host network\n",
                    vlan->id);
    }
1422 1423 1424 1425 1426 1427 1428
    QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
        if (!vc->peer) {
            fprintf(stderr, "Warning: %s %s has no peer\n",
                    vc->info->type == NET_CLIENT_TYPE_NIC ? "nic" : "netdev",
                    vc->name);
        }
    }
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442

    /* Check that all NICs requested via -net nic actually got created.
     * NICs created via -device don't need to be checked here because
     * they are always instantiated.
     */
    for (i = 0; i < MAX_NICS; i++) {
        NICInfo *nd = &nd_table[i];
        if (nd->used && !nd->instantiated) {
            fprintf(stderr, "Warning: requested NIC (%s, model %s) "
                    "was not created (not supported by this machine?)\n",
                    nd->name ? nd->name : "anonymous",
                    nd->model ? nd->model : "unspecified");
        }
    }
1443
}
1444 1445 1446

static int net_init_client(QemuOpts *opts, void *dummy)
{
1447 1448 1449 1450 1451 1452
    Error *local_err = NULL;

    net_client_init(opts, 0, &local_err);
    if (error_is_set(&local_err)) {
        qerror_report_err(local_err);
        error_free(local_err);
1453
        return -1;
1454 1455
    }

1456
    return 0;
M
Mark McLoughlin 已提交
1457 1458 1459 1460
}

static int net_init_netdev(QemuOpts *opts, void *dummy)
{
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
    Error *local_err = NULL;
    int ret;

    ret = net_client_init(opts, 1, &local_err);
    if (error_is_set(&local_err)) {
        qerror_report_err(local_err);
        error_free(local_err);
        return -1;
    }

    return ret;
1472 1473 1474 1475
}

int net_init_clients(void)
{
1476 1477
    QemuOptsList *net = qemu_find_opts("net");

G
Gerd Hoffmann 已提交
1478
    if (default_net) {
1479
        /* if no clients, we use a default config */
1480
        qemu_opts_set(net, NULL, "type", "nic");
1481
#ifdef CONFIG_SLIRP
1482
        qemu_opts_set(net, NULL, "type", "user");
1483 1484 1485
#endif
    }

1486
    QTAILQ_INIT(&vlans);
1487
    QTAILQ_INIT(&non_vlan_clients);
1488

1489
    if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev, NULL, 1) == -1)
M
Mark McLoughlin 已提交
1490 1491
        return -1;

1492
    if (qemu_opts_foreach(net, net_init_client, NULL, 1) == -1) {
1493 1494 1495 1496 1497 1498
        return -1;
    }

    return 0;
}

1499
int net_client_parse(QemuOptsList *opts_list, const char *optarg)
1500
{
1501
#if defined(CONFIG_SLIRP)
1502 1503
    int ret;
    if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
1504 1505
        return ret;
    }
1506
#endif
1507

1508
    if (!qemu_opts_parse(opts_list, optarg, 1)) {
1509 1510 1511
        return -1;
    }

G
Gerd Hoffmann 已提交
1512
    default_net = 0;
1513 1514
    return 0;
}
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537

/* From FreeBSD */
/* XXX: optimize */
unsigned compute_mcast_idx(const uint8_t *ep)
{
    uint32_t crc;
    int carry, i, j;
    uint8_t b;

    crc = 0xffffffff;
    for (i = 0; i < 6; i++) {
        b = *ep++;
        for (j = 0; j < 8; j++) {
            carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
            crc <<= 1;
            b >>= 1;
            if (carry) {
                crc = ((crc ^ POLYNOMIAL) | carry);
            }
        }
    }
    return crc >> 26;
}