net.c 36.0 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 35
#include "monitor.h"
#include "sysemu.h"
M
Mark McLoughlin 已提交
36
#include "qemu-common.h"
37
#include "qemu_socket.h"
38
#include "hw/qdev.h"
39

40
static QTAILQ_HEAD(, VLANState) vlans;
41
static QTAILQ_HEAD(, VLANClientState) non_vlan_clients;
42

G
Gerd Hoffmann 已提交
43 44
int default_net = 1;

45 46 47
/***********************************************************/
/* network device redirectors */

48
#if defined(DEBUG_NET)
49 50 51 52 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 89 90 91 92 93 94 95 96 97 98 99
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_src_port(struct sockaddr_in *haddr,
                        struct sockaddr_in *saddr,
                        const char *input_str)
{
100
    char *str = qemu_strdup(input_str);
101 102 103 104 105 106 107 108 109 110 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
    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 {
151
        if (qemu_isdigit(buf[0])) {
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
            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;
}

167 168 169
void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
{
    snprintf(vc->info_str, sizeof(vc->info_str),
170 171
             "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
             vc->model,
172 173 174 175
             macaddr[0], macaddr[1], macaddr[2],
             macaddr[3], macaddr[4], macaddr[5]);
}

G
Gerd Hoffmann 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
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++;
}

191 192 193 194 195 196
static char *assign_name(VLANClientState *vc1, const char *model)
{
    VLANState *vlan;
    char buf[256];
    int id = 0;

197
    QTAILQ_FOREACH(vlan, &vlans, next) {
198 199
        VLANClientState *vc;

200 201
        QTAILQ_FOREACH(vc, &vlan->clients, next) {
            if (vc != vc1 && strcmp(vc->model, model) == 0) {
202
                id++;
203 204
            }
        }
205 206 207 208
    }

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

209
    return qemu_strdup(buf);
210 211
}

212
static ssize_t qemu_deliver_packet(VLANClientState *sender,
213
                                   unsigned flags,
214 215 216 217
                                   const uint8_t *data,
                                   size_t size,
                                   void *opaque);
static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
218
                                       unsigned flags,
219 220 221 222
                                       const struct iovec *iov,
                                       int iovcnt,
                                       void *opaque);

223 224 225 226 227
VLANClientState *qemu_new_net_client(NetClientInfo *info,
                                     VLANState *vlan,
                                     VLANClientState *peer,
                                     const char *model,
                                     const char *name)
228
{
229 230
    VLANClientState *vc;

231 232 233
    assert(info->size >= sizeof(VLANClientState));

    vc = qemu_mallocz(info->size);
234

235
    vc->info = info;
236
    vc->model = qemu_strdup(model);
237
    if (name) {
238
        vc->name = qemu_strdup(name);
239
    } else {
240
        vc->name = assign_name(vc, model);
241
    }
242

243
    if (vlan) {
244
        assert(!peer);
245 246
        vc->vlan = vlan;
        QTAILQ_INSERT_TAIL(&vc->vlan->clients, vc, next);
247
    } else {
248 249 250 251
        if (peer) {
            vc->peer = peer;
            peer->peer = vc;
        }
252
        QTAILQ_INSERT_TAIL(&non_vlan_clients, vc, next);
253 254 255 256

        vc->send_queue = qemu_new_net_queue(qemu_deliver_packet,
                                            qemu_deliver_packet_iov,
                                            vc);
257
    }
258 259 260 261

    return vc;
}

262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
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;
}

283 284
void qemu_del_vlan_client(VLANClientState *vc)
{
285 286
    if (vc->vlan) {
        QTAILQ_REMOVE(&vc->vlan->clients, vc, next);
287
    } else {
288 289 290
        if (vc->send_queue) {
            qemu_del_net_queue(vc->send_queue);
        }
291
        QTAILQ_REMOVE(&non_vlan_clients, vc, next);
292 293 294
        if (vc->peer) {
            vc->peer->peer = NULL;
        }
295
    }
296

297 298
    if (vc->info->cleanup) {
        vc->info->cleanup(vc);
299 300 301 302 303
    }

    qemu_free(vc->name);
    qemu_free(vc->model);
    qemu_free(vc);
304 305
}

306
VLANClientState *
307 308 309 310 311 312 313 314 315 316 317 318
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;
    }

319
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
320 321 322 323 324 325 326 327 328 329 330 331
        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 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
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);
            }
        }
    }
}

352
int qemu_can_send_packet(VLANClientState *sender)
353
{
354
    VLANState *vlan = sender->vlan;
355 356
    VLANClientState *vc;

357
    if (sender->peer) {
358 359
        if (sender->peer->receive_disabled) {
            return 0;
360 361
        } else if (sender->peer->info->can_receive &&
                   !sender->peer->info->can_receive(sender->peer)) {
362
            return 0;
363 364
        } else {
            return 1;
365 366 367
        }
    }

368 369 370 371
    if (!sender->vlan) {
        return 1;
    }

372
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
373 374 375 376
        if (vc == sender) {
            continue;
        }

377
        /* no can_receive() handler, they can always receive */
378
        if (!vc->info->can_receive || vc->info->can_receive(vc)) {
379
            return 1;
380 381 382 383 384
        }
    }
    return 0;
}

385
static ssize_t qemu_deliver_packet(VLANClientState *sender,
386
                                   unsigned flags,
387 388 389 390 391
                                   const uint8_t *data,
                                   size_t size,
                                   void *opaque)
{
    VLANClientState *vc = opaque;
392
    ssize_t ret;
393 394 395 396 397

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

398 399 400 401
    if (vc->receive_disabled) {
        return 0;
    }

402 403
    if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->info->receive_raw) {
        ret = vc->info->receive_raw(vc, data, size);
404
    } else {
405
        ret = vc->info->receive(vc, data, size);
406 407 408 409 410 411 412
    }

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

    return ret;
413 414
}

415
static ssize_t qemu_vlan_deliver_packet(VLANClientState *sender,
416
                                        unsigned flags,
417 418 419
                                        const uint8_t *buf,
                                        size_t size,
                                        void *opaque)
420
{
421
    VLANState *vlan = opaque;
422
    VLANClientState *vc;
423
    ssize_t ret = -1;
424

425
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
426 427 428 429
        ssize_t len;

        if (vc == sender) {
            continue;
430
        }
431 432 433 434 435 436

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

437 438 439 440 441
        if (vc->receive_disabled) {
            ret = 0;
            continue;
        }

442 443
        if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->info->receive_raw) {
            len = vc->info->receive_raw(vc, buf, size);
444
        } else {
445
            len = vc->info->receive(vc, buf, size);
446 447 448 449 450
        }

        if (len == 0) {
            vc->receive_disabled = 1;
        }
451 452

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

454
    }
455 456

    return ret;
457 458
}

459 460
void qemu_purge_queued_packets(VLANClientState *vc)
{
461 462 463
    NetQueue *queue;

    if (!vc->peer && !vc->vlan) {
464
        return;
465
    }
466

467 468 469 470 471 472 473
    if (vc->peer) {
        queue = vc->peer->send_queue;
    } else {
        queue = vc->vlan->send_queue;
    }

    qemu_net_queue_purge(queue, vc);
474 475
}

476
void qemu_flush_queued_packets(VLANClientState *vc)
477
{
478 479
    NetQueue *queue;

480 481
    vc->receive_disabled = 0;

482 483 484 485 486
    if (vc->vlan) {
        queue = vc->vlan->send_queue;
    } else {
        queue = vc->send_queue;
    }
487

488
    qemu_net_queue_flush(queue);
489 490
}

491 492 493 494
static ssize_t qemu_send_packet_async_with_flags(VLANClientState *sender,
                                                 unsigned flags,
                                                 const uint8_t *buf, int size,
                                                 NetPacketSent *sent_cb)
495
{
496
    NetQueue *queue;
497

498
#ifdef DEBUG_NET
499
    printf("qemu_send_packet_async:\n");
500 501
    hex_dump(stdout, buf, size);
#endif
502

503 504 505 506 507 508 509 510 511 512
    if (sender->link_down || (!sender->peer && !sender->vlan)) {
        return size;
    }

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

513 514 515 516 517 518 519 520 521
    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);
522 523 524 525 526
}

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

529 530 531 532 533 534
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 已提交
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
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;
    }

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

553 554 555 556 557 558 559 560 561 562
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;
}

563
static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
564
                                       unsigned flags,
565 566 567 568 569 570 571 572 573 574
                                       const struct iovec *iov,
                                       int iovcnt,
                                       void *opaque)
{
    VLANClientState *vc = opaque;

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

575 576
    if (vc->info->receive_iov) {
        return vc->info->receive_iov(vc, iov, iovcnt);
577 578 579 580 581
    } else {
        return vc_sendv_compat(vc, iov, iovcnt);
    }
}

582
static ssize_t qemu_vlan_deliver_packet_iov(VLANClientState *sender,
583
                                            unsigned flags,
584 585 586
                                            const struct iovec *iov,
                                            int iovcnt,
                                            void *opaque)
A
aliguori 已提交
587
{
588
    VLANState *vlan = opaque;
A
aliguori 已提交
589
    VLANClientState *vc;
590
    ssize_t ret = -1;
591

592
    QTAILQ_FOREACH(vc, &vlan->clients, next) {
593 594 595 596 597 598 599 600 601 602 603
        ssize_t len;

        if (vc == sender) {
            continue;
        }

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

604 605
        assert(!(flags & QEMU_NET_PACKET_FLAG_RAW));

606 607
        if (vc->info->receive_iov) {
            len = vc->info->receive_iov(vc, iov, iovcnt);
608 609 610 611 612 613 614 615 616 617
        } else {
            len = vc_sendv_compat(vc, iov, iovcnt);
        }

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

    return ret;
}

618 619 620
ssize_t qemu_sendv_packet_async(VLANClientState *sender,
                                const struct iovec *iov, int iovcnt,
                                NetPacketSent *sent_cb)
621
{
622 623 624
    NetQueue *queue;

    if (sender->link_down || (!sender->peer && !sender->vlan)) {
625 626 627
        return calc_iov_length(iov, iovcnt);
    }

628 629 630 631 632 633
    if (sender->peer) {
        queue = sender->peer->send_queue;
    } else {
        queue = sender->vlan->send_queue;
    }

634 635 636
    return qemu_net_queue_send_iov(queue, sender,
                                   QEMU_NET_PACKET_FLAG_NONE,
                                   iov, iovcnt, sent_cb);
A
aliguori 已提交
637 638
}

639 640 641 642 643 644
ssize_t
qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
{
    return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
}

645
/* find or alloc a new VLAN */
646
VLANState *qemu_find_vlan(int id, int allocate)
647
{
648 649 650 651
    VLANState *vlan;

    QTAILQ_FOREACH(vlan, &vlans, next) {
        if (vlan->id == id) {
652
            return vlan;
653
        }
654
    }
655

656 657 658
    if (!allocate) {
        return NULL;
    }
659

660 661
    vlan = qemu_mallocz(sizeof(VLANState));
    vlan->id = id;
662
    QTAILQ_INIT(&vlan->clients);
663 664 665 666

    vlan->send_queue = qemu_new_net_queue(qemu_vlan_deliver_packet,
                                          qemu_vlan_deliver_packet_iov,
                                          vlan);
667 668 669

    QTAILQ_INSERT_TAIL(&vlans, vlan, next);

670 671 672
    return vlan;
}

G
Gerd Hoffmann 已提交
673
VLANClientState *qemu_find_netdev(const char *id)
M
Mark McLoughlin 已提交
674 675 676 677 678 679 680 681 682 683 684 685
{
    VLANClientState *vc;

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

    return NULL;
}

686 687 688 689 690 691 692 693 694 695
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;
}

696 697 698 699 700 701 702 703 704 705 706 707 708
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;
}

709 710 711 712 713 714 715
void qemu_check_nic_model(NICInfo *nd, const char *model)
{
    const char *models[2];

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

716 717 718 719
    if (qemu_show_nic_models(nd->model, models))
        exit(0);
    if (qemu_find_nic_model(nd, models, model) < 0)
        exit(1);
720 721
}

722 723
int qemu_find_nic_model(NICInfo *nd, const char * const *models,
                        const char *default_model)
724
{
725
    int i;
726 727

    if (!nd->model)
728
        nd->model = qemu_strdup(default_model);
729

730 731 732
    for (i = 0 ; models[i]; i++) {
        if (strcmp(nd->model, models[i]) == 0)
            return i;
733 734
    }

735 736
    qemu_error("qemu: Unsupported NIC model: %s\n", nd->model);
    return -1;
737 738
}

739
int net_handle_fd_param(Monitor *mon, const char *param)
740 741 742 743 744 745
{
    if (!qemu_isdigit(param[0])) {
        int fd;

        fd = monitor_get_fd(mon, param);
        if (fd == -1) {
746
            qemu_error("No file descriptor named %s found", param);
747 748 749 750 751 752 753 754 755
            return -1;
        }

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

M
Mark McLoughlin 已提交
756 757 758 759
static int net_init_nic(QemuOpts *opts,
                        Monitor *mon,
                        const char *name,
                        VLANState *vlan)
760 761 762
{
    int idx;
    NICInfo *nd;
M
Mark McLoughlin 已提交
763
    const char *netdev;
764 765 766 767 768 769 770 771 772 773 774

    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 已提交
775 776 777 778 779 780 781 782 783 784
    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;
    }
785 786 787
    if (name) {
        nd->name = qemu_strdup(name);
    }
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802
    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") &&
803
        net_parse_macaddr(nd->macaddr, qemu_opt_get(opts, "macaddr")) < 0) {
804 805 806 807
        qemu_error("invalid syntax for ethernet address\n");
        return -1;
    }

808 809 810
    nd->nvectors = qemu_opt_get_number(opts, "vectors",
                                       DEV_NVECTORS_UNSPECIFIED);
    if (nd->nvectors != DEV_NVECTORS_UNSPECIFIED &&
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
        (nd->nvectors < 0 || nd->nvectors > 0x7ffffff)) {
        qemu_error("invalid # of vectors: %d\n", nd->nvectors);
        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", \
     }

837 838
typedef int (*net_client_init_func)(QemuOpts *opts,
                                    Monitor *mon,
M
Mark McLoughlin 已提交
839 840
                                    const char *name,
                                    VLANState *vlan);
841 842 843 844

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

B
Blue Swirl 已提交
845
static const struct {
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
    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 已提交
861 862 863 864 865
            {
                .name = "netdev",
                .type = QEMU_OPT_STRING,
                .help = "id of -netdev to connect to",
            },
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
            {
                .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 已提交
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 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
#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 已提交
946 947 948
#endif
    }, {
        .type = "tap",
949
        .init = net_init_tap,
M
Mark McLoughlin 已提交
950 951 952 953 954 955 956
        .desc = {
            NET_COMMON_PARAMS_DESC,
            {
                .name = "ifname",
                .type = QEMU_OPT_STRING,
                .help = "interface name",
            },
957
#ifndef _WIN32
M
Mark McLoughlin 已提交
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
            {
                .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"
974 975 976 977
            }, {
                .name = "vnet_hdr",
                .type = QEMU_OPT_BOOL,
                .help = "enable the IFF_VNET_HDR flag on the tap interface"
M
Mark McLoughlin 已提交
978
            },
979
#endif /* _WIN32 */
M
Mark McLoughlin 已提交
980 981
            { /* end of list */ }
        },
M
Mark McLoughlin 已提交
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
    }, {
        .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 已提交
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
#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 已提交
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
    }, {
        .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 */ }
        },
1048 1049 1050 1051
    },
    { /* end of list */ }
};

M
Mark McLoughlin 已提交
1052
int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
1053
{
1054
    const char *name;
1055 1056 1057 1058 1059
    const char *type;
    int i;

    type = qemu_opt_get(opts, "type");

1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
    if (!is_netdev) {
        if (!type) {
            qemu_error("No type specified for -net\n");
            return -1;
        }
    } else {
        if (!type) {
            qemu_error("No type specified for -netdev\n");
            return -1;
        }

M
Mark McLoughlin 已提交
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
        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;
        }
    }

1098 1099 1100 1101 1102
    name = qemu_opts_id(opts);
    if (!name) {
        name = qemu_opt_get(opts, "name");
    }

1103 1104
    for (i = 0; net_client_types[i].type != NULL; i++) {
        if (!strcmp(net_client_types[i].type, type)) {
M
Mark McLoughlin 已提交
1105 1106
            VLANState *vlan = NULL;

1107 1108 1109 1110
            if (qemu_opts_validate(opts, &net_client_types[i].desc[0]) == -1) {
                return -1;
            }

M
Mark McLoughlin 已提交
1111 1112 1113 1114
            /* 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 已提交
1115 1116 1117
                vlan = qemu_find_vlan(qemu_opt_get_number(opts, "vlan", 0), 1);
            }

1118
            if (net_client_types[i].init) {
M
Mark McLoughlin 已提交
1119
                return net_client_types[i].init(opts, mon, name, vlan);
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
            } else {
                return 0;
            }
        }
    }

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

1130 1131 1132
static int net_host_check_device(const char *device)
{
    int i;
1133
    const char *valid_param_list[] = { "tap", "socket", "dump"
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
#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;
}

1150
void net_host_device_add(Monitor *mon, const QDict *qdict)
1151
{
1152
    const char *device = qdict_get_str(qdict, "device");
1153 1154
    const char *opts_str = qdict_get_try_str(qdict, "opts");
    QemuOpts *opts;
1155

1156
    if (!net_host_check_device(device)) {
A
aliguori 已提交
1157
        monitor_printf(mon, "invalid host network device %s\n", device);
1158 1159
        return;
    }
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169

    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 已提交
1170
    if (net_client_init(mon, opts, 0) < 0) {
1171 1172
        monitor_printf(mon, "adding host network device %s failed\n", device);
    }
1173 1174
}

1175
void net_host_device_remove(Monitor *mon, const QDict *qdict)
1176 1177
{
    VLANClientState *vc;
1178 1179
    int vlan_id = qdict_get_int(qdict, "vlan_id");
    const char *device = qdict_get_str(qdict, "device");
1180

1181
    vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
1182 1183 1184
    if (!vc) {
        return;
    }
1185 1186 1187 1188
    if (!net_host_check_device(vc->model)) {
        monitor_printf(mon, "invalid host network device %s\n", device);
        return;
    }
1189 1190 1191
    qemu_del_vlan_client(vc);
}

1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
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 已提交
1212
void do_info_network(Monitor *mon)
1213 1214
{
    VLANState *vlan;
1215
    VLANClientState *vc;
1216

1217
    QTAILQ_FOREACH(vlan, &vlans, next) {
A
aliguori 已提交
1218
        monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
1219 1220

        QTAILQ_FOREACH(vc, &vlan->clients, next) {
A
aliguori 已提交
1221
            monitor_printf(mon, "  %s: %s\n", vc->name, vc->info_str);
1222
        }
1223
    }
1224 1225 1226 1227 1228 1229 1230 1231
    monitor_printf(mon, "Devices not on any VLAN:\n");
    QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
        monitor_printf(mon, "  %s: %s", vc->name, vc->info_str);
        if (vc->peer) {
            monitor_printf(mon, " peer=%s", vc->peer->name);
        }
        monitor_printf(mon, "\n");
    }
1232 1233
}

1234
void do_set_link(Monitor *mon, const QDict *qdict)
1235 1236 1237
{
    VLANState *vlan;
    VLANClientState *vc = NULL;
1238 1239
    const char *name = qdict_get_str(qdict, "name");
    const char *up_or_down = qdict_get_str(qdict, "up_or_down");
1240

1241 1242 1243
    QTAILQ_FOREACH(vlan, &vlans, next) {
        QTAILQ_FOREACH(vc, &vlan->clients, next) {
            if (strcmp(vc->name, name) == 0) {
1244
                goto done;
1245 1246 1247
            }
        }
    }
1248
    vc = qemu_find_netdev(name);
1249
done:
1250 1251

    if (!vc) {
1252
        monitor_printf(mon, "could not find network device '%s'\n", name);
1253
        return;
1254 1255 1256 1257 1258 1259 1260
    }

    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 已提交
1261 1262
        monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
                       "valid\n", up_or_down);
1263

1264 1265 1266
    if (vc->info->link_status_changed) {
        vc->info->link_status_changed(vc);
    }
1267 1268
}

1269 1270 1271
void net_cleanup(void)
{
    VLANState *vlan;
1272
    VLANClientState *vc, *next_vc;
1273

1274 1275
    QTAILQ_FOREACH(vlan, &vlans, next) {
        QTAILQ_FOREACH_SAFE(vc, &vlan->clients, next, next_vc) {
1276
            qemu_del_vlan_client(vc);
1277 1278
        }
    }
1279 1280 1281 1282

    QTAILQ_FOREACH_SAFE(vc, &non_vlan_clients, next, next_vc) {
        qemu_del_vlan_client(vc);
    }
1283 1284
}

1285
void net_check_clients(void)
1286 1287
{
    VLANState *vlan;
1288
    VLANClientState *vc;
B
Blue Swirl 已提交
1289
    int has_nic = 0, has_host_dev = 0;
1290

1291
    QTAILQ_FOREACH(vlan, &vlans, next) {
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
        QTAILQ_FOREACH(vc, &vlan->clients, next) {
            switch (vc->info->type) {
            case NET_CLIENT_TYPE_NIC:
                has_nic = 1;
                break;
            case NET_CLIENT_TYPE_SLIRP:
            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)
1307
            fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1308
        if (has_nic && !has_host_dev)
1309 1310 1311 1312
            fprintf(stderr,
                    "Warning: vlan %d is not connected to host network\n",
                    vlan->id);
    }
1313 1314 1315 1316 1317 1318 1319
    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);
        }
    }
1320
}
1321 1322 1323

static int net_init_client(QemuOpts *opts, void *dummy)
{
1324 1325 1326
    if (net_client_init(NULL, opts, 0) < 0)
        return -1;
    return 0;
M
Mark McLoughlin 已提交
1327 1328 1329 1330 1331
}

static int net_init_netdev(QemuOpts *opts, void *dummy)
{
    return net_client_init(NULL, opts, 1);
1332 1333 1334 1335
}

int net_init_clients(void)
{
G
Gerd Hoffmann 已提交
1336
    if (default_net) {
1337 1338 1339 1340 1341 1342 1343
        /* 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
    }

1344
    QTAILQ_INIT(&vlans);
1345
    QTAILQ_INIT(&non_vlan_clients);
1346

M
Mark McLoughlin 已提交
1347 1348 1349
    if (qemu_opts_foreach(&qemu_netdev_opts, net_init_netdev, NULL, 1) == -1)
        return -1;

1350 1351 1352 1353 1354 1355 1356
    if (qemu_opts_foreach(&qemu_net_opts, net_init_client, NULL, 1) == -1) {
        return -1;
    }

    return 0;
}

1357
int net_client_parse(QemuOptsList *opts_list, const char *optarg)
1358
{
1359
#if defined(CONFIG_SLIRP)
1360 1361
    int ret;
    if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
1362 1363
        return ret;
    }
1364
#endif
1365

1366
    if (!qemu_opts_parse(opts_list, optarg, "type")) {
1367 1368 1369
        return -1;
    }

G
Gerd Hoffmann 已提交
1370
    default_net = 0;
1371 1372
    return 0;
}