net.c 30.1 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.
 */
B
blueswir1 已提交
24 25
#include "config-host.h"

P
Paolo Bonzini 已提交
26
#include "net/net.h"
P
Paolo Bonzini 已提交
27 28
#include "clients.h"
#include "hub.h"
P
Paolo Bonzini 已提交
29
#include "net/slirp.h"
P
Paolo Bonzini 已提交
30
#include "util.h"
31

32
#include "monitor/monitor.h"
M
Mark McLoughlin 已提交
33
#include "qemu-common.h"
34 35
#include "qemu/sockets.h"
#include "qemu/config-file.h"
L
Luiz Capitulino 已提交
36
#include "qmp-commands.h"
37
#include "hw/qdev.h"
38
#include "qemu/iov.h"
39 40
#include "qapi-visit.h"
#include "qapi/opts-visitor.h"
41
#include "qapi/dealloc-visitor.h"
42

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

48
static QTAILQ_HEAD(, NetClientState) net_clients;
49

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

52 53 54
/***********************************************************/
/* network device redirectors */

55
#if defined(DEBUG_NET)
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 116
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 {
117
        if (qemu_isdigit(buf[0])) {
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
            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;
}

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

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

157 158 159 160 161 162
/**
 * Generate a name for net client
 *
 * Only net clients created with the legacy -net option need this.  Naming is
 * mandatory for net clients created with -netdev.
 */
163
static char *assign_name(NetClientState *nc1, const char *model)
164
{
165
    NetClientState *nc;
166 167 168
    char buf[256];
    int id = 0;

169 170
    QTAILQ_FOREACH(nc, &net_clients, next) {
        if (nc == nc1) {
171
            continue;
172
        }
173
        /* For compatibility only bump id for net clients on a vlan */
174 175
        if (strcmp(nc->model, model) == 0 &&
            net_hub_id_for_client(nc, NULL) == 0) {
176 177 178 179
            id++;
        }
    }

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

182
    return g_strdup(buf);
183 184
}

185 186 187 188 189
static void qemu_net_client_destructor(NetClientState *nc)
{
    g_free(nc);
}

190 191 192 193
static void qemu_net_client_setup(NetClientState *nc,
                                  NetClientInfo *info,
                                  NetClientState *peer,
                                  const char *model,
194 195
                                  const char *name,
                                  NetClientDestructor *destructor)
196
{
197 198
    nc->info = info;
    nc->model = g_strdup(model);
199
    if (name) {
200
        nc->name = g_strdup(name);
201
    } else {
202
        nc->name = assign_name(nc, model);
203
    }
204

205 206
    if (peer) {
        assert(!peer->peer);
207 208
        nc->peer = peer;
        peer->peer = nc;
209
    }
210
    QTAILQ_INSERT_TAIL(&net_clients, nc, next);
211

212
    nc->send_queue = qemu_new_net_queue(nc);
213
    nc->destructor = destructor;
214 215 216 217 218 219 220 221 222 223 224 225
}

NetClientState *qemu_new_net_client(NetClientInfo *info,
                                    NetClientState *peer,
                                    const char *model,
                                    const char *name)
{
    NetClientState *nc;

    assert(info->size >= sizeof(NetClientState));

    nc = g_malloc0(info->size);
226 227
    qemu_net_client_setup(nc, info, peer, model, name,
                          qemu_net_client_destructor);
228

229
    return nc;
230 231
}

232 233 234 235 236 237
NICState *qemu_new_nic(NetClientInfo *info,
                       NICConf *conf,
                       const char *model,
                       const char *name,
                       void *opaque)
{
238
    NetClientState *nc;
J
Jason Wang 已提交
239
    NetClientState **peers = conf->peers.ncs;
240
    NICState *nic;
J
Jason Wang 已提交
241
    int i;
242

243
    assert(info->type == NET_CLIENT_OPTIONS_KIND_NIC);
244 245
    assert(info->size >= sizeof(NICState));

J
Jason Wang 已提交
246 247
    nc = qemu_new_net_client(info, peers[0], model, name);
    nc->queue_index = 0;
248

J
Jason Wang 已提交
249
    nic = qemu_get_nic(nc);
250 251 252
    nic->conf = conf;
    nic->opaque = opaque;

J
Jason Wang 已提交
253 254 255 256 257 258
    for (i = 1; i < conf->queues; i++) {
        qemu_net_client_setup(&nic->ncs[i], info, peers[i], model, nc->name,
                              NULL);
        nic->ncs[i].queue_index = i;
    }

259 260 261
    return nic;
}

J
Jason Wang 已提交
262 263 264 265 266
NetClientState *qemu_get_subqueue(NICState *nic, int queue_index)
{
    return &nic->ncs[queue_index];
}

J
Jason Wang 已提交
267 268
NetClientState *qemu_get_queue(NICState *nic)
{
J
Jason Wang 已提交
269
    return qemu_get_subqueue(nic, 0);
J
Jason Wang 已提交
270 271
}

J
Jason Wang 已提交
272 273
NICState *qemu_get_nic(NetClientState *nc)
{
J
Jason Wang 已提交
274 275 276
    NetClientState *nc0 = nc - nc->queue_index;

    return DO_UPCAST(NICState, ncs[0], nc0);
J
Jason Wang 已提交
277 278 279 280 281 282 283 284 285
}

void *qemu_get_nic_opaque(NetClientState *nc)
{
    NICState *nic = qemu_get_nic(nc);

    return nic->opaque;
}

286
static void qemu_cleanup_net_client(NetClientState *nc)
287
{
288
    QTAILQ_REMOVE(&net_clients, nc, next);
289

290 291 292
    if (nc->info->cleanup) {
        nc->info->cleanup(nc);
    }
293
}
294

295
static void qemu_free_net_client(NetClientState *nc)
296
{
297 298
    if (nc->send_queue) {
        qemu_del_net_queue(nc->send_queue);
S
Stefan Hajnoczi 已提交
299
    }
300 301
    if (nc->peer) {
        nc->peer->peer = NULL;
302
    }
303 304
    g_free(nc->name);
    g_free(nc->model);
305 306 307
    if (nc->destructor) {
        nc->destructor(nc);
    }
308 309
}

310
void qemu_del_net_client(NetClientState *nc)
311
{
J
Jason Wang 已提交
312 313 314 315 316 317 318 319 320 321 322
    NetClientState *ncs[MAX_QUEUE_NUM];
    int queues, i;

    /* If the NetClientState belongs to a multiqueue backend, we will change all
     * other NetClientStates also.
     */
    queues = qemu_find_net_clients_except(nc->name, ncs,
                                          NET_CLIENT_OPTIONS_KIND_NIC,
                                          MAX_QUEUE_NUM);
    assert(queues != 0);

323
    /* If there is a peer NIC, delete and cleanup client, but do not free. */
324
    if (nc->peer && nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
J
Jason Wang 已提交
325
        NICState *nic = qemu_get_nic(nc->peer);
326 327 328 329
        if (nic->peer_deleted) {
            return;
        }
        nic->peer_deleted = true;
J
Jason Wang 已提交
330 331 332 333 334

        for (i = 0; i < queues; i++) {
            ncs[i]->peer->link_down = true;
        }

335 336
        if (nc->peer->info->link_status_changed) {
            nc->peer->info->link_status_changed(nc->peer);
337
        }
J
Jason Wang 已提交
338 339 340 341 342

        for (i = 0; i < queues; i++) {
            qemu_cleanup_net_client(ncs[i]);
        }

343 344 345
        return;
    }

J
Jason Wang 已提交
346 347
    assert(nc->info->type != NET_CLIENT_OPTIONS_KIND_NIC);

J
Jason Wang 已提交
348 349 350 351
    for (i = 0; i < queues; i++) {
        qemu_cleanup_net_client(ncs[i]);
        qemu_free_net_client(ncs[i]);
    }
J
Jason Wang 已提交
352 353 354 355
}

void qemu_del_nic(NICState *nic)
{
M
Michael Roth 已提交
356
    int i, queues = MAX(nic->conf->queues, 1);
J
Jason Wang 已提交
357

358
    /* If this is a peer NIC and peer has already been deleted, free it now. */
J
Jason Wang 已提交
359 360 361
    if (nic->peer_deleted) {
        for (i = 0; i < queues; i++) {
            qemu_free_net_client(qemu_get_subqueue(nic, i)->peer);
362 363 364
        }
    }

J
Jason Wang 已提交
365 366 367 368 369 370
    for (i = queues - 1; i >= 0; i--) {
        NetClientState *nc = qemu_get_subqueue(nic, i);

        qemu_cleanup_net_client(nc);
        qemu_free_net_client(nc);
    }
371 372
}

M
Mark McLoughlin 已提交
373 374
void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
{
375
    NetClientState *nc;
M
Mark McLoughlin 已提交
376

377
    QTAILQ_FOREACH(nc, &net_clients, next) {
378
        if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
J
Jason Wang 已提交
379 380 381
            if (nc->queue_index == 0) {
                func(qemu_get_nic(nc), opaque);
            }
M
Mark McLoughlin 已提交
382 383 384 385
        }
    }
}

386
int qemu_can_send_packet(NetClientState *sender)
387
{
S
Stefan Hajnoczi 已提交
388
    if (!sender->peer) {
389 390 391
        return 1;
    }

S
Stefan Hajnoczi 已提交
392 393 394 395 396
    if (sender->peer->receive_disabled) {
        return 0;
    } else if (sender->peer->info->can_receive &&
               !sender->peer->info->can_receive(sender->peer)) {
        return 0;
397
    }
398
    return 1;
399 400
}

401 402 403 404 405
ssize_t qemu_deliver_packet(NetClientState *sender,
                            unsigned flags,
                            const uint8_t *data,
                            size_t size,
                            void *opaque)
406
{
407
    NetClientState *nc = opaque;
408
    ssize_t ret;
409

410
    if (nc->link_down) {
411 412 413
        return size;
    }

414
    if (nc->receive_disabled) {
415 416 417
        return 0;
    }

418 419
    if (flags & QEMU_NET_PACKET_FLAG_RAW && nc->info->receive_raw) {
        ret = nc->info->receive_raw(nc, data, size);
420
    } else {
421
        ret = nc->info->receive(nc, data, size);
422 423 424
    }

    if (ret == 0) {
425
        nc->receive_disabled = 1;
426 427 428
    };

    return ret;
429 430
}

431
void qemu_purge_queued_packets(NetClientState *nc)
432
{
433
    if (!nc->peer) {
434
        return;
435
    }
436

437
    qemu_net_queue_purge(nc->peer->send_queue, nc);
438 439
}

440
void qemu_flush_queued_packets(NetClientState *nc)
441
{
442
    nc->receive_disabled = 0;
443

444 445 446 447 448 449
    if (nc->peer && nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_HUBPORT) {
        if (net_hub_flush(nc->peer)) {
            qemu_notify_event();
        }
        return;
    }
450 451 452 453 454 455
    if (qemu_net_queue_flush(nc->send_queue)) {
        /* We emptied the queue successfully, signal to the IO thread to repoll
         * the file descriptor (for tap, for example).
         */
        qemu_notify_event();
    }
456 457
}

458
static ssize_t qemu_send_packet_async_with_flags(NetClientState *sender,
459 460 461
                                                 unsigned flags,
                                                 const uint8_t *buf, int size,
                                                 NetPacketSent *sent_cb)
462
{
463
    NetQueue *queue;
464

465
#ifdef DEBUG_NET
466
    printf("qemu_send_packet_async:\n");
467 468
    hex_dump(stdout, buf, size);
#endif
469

S
Stefan Hajnoczi 已提交
470
    if (sender->link_down || !sender->peer) {
471 472 473
        return size;
    }

S
Stefan Hajnoczi 已提交
474
    queue = sender->peer->send_queue;
475

476 477 478
    return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
}

479
ssize_t qemu_send_packet_async(NetClientState *sender,
480 481 482 483 484
                               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);
485 486
}

487
void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size)
488
{
489
    qemu_send_packet_async(nc, buf, size, NULL);
490 491
}

492
ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size)
493
{
494
    return qemu_send_packet_async_with_flags(nc, QEMU_NET_PACKET_FLAG_RAW,
495 496 497
                                             buf, size, NULL);
}

498
static ssize_t nc_sendv_compat(NetClientState *nc, const struct iovec *iov,
A
aliguori 已提交
499 500 501
                               int iovcnt)
{
    uint8_t buffer[4096];
B
Benjamin Poirier 已提交
502
    size_t offset;
A
aliguori 已提交
503

504
    offset = iov_to_buf(iov, iovcnt, 0, buffer, sizeof(buffer));
A
aliguori 已提交
505

506
    return nc->info->receive(nc, buffer, offset);
A
aliguori 已提交
507 508
}

509 510 511 512 513
ssize_t qemu_deliver_packet_iov(NetClientState *sender,
                                unsigned flags,
                                const struct iovec *iov,
                                int iovcnt,
                                void *opaque)
514
{
515
    NetClientState *nc = opaque;
516
    int ret;
517

518
    if (nc->link_down) {
B
Benjamin Poirier 已提交
519
        return iov_size(iov, iovcnt);
520 521
    }

522 523 524 525
    if (nc->receive_disabled) {
        return 0;
    }

526
    if (nc->info->receive_iov) {
527
        ret = nc->info->receive_iov(nc, iov, iovcnt);
528
    } else {
529 530 531 532 533
        ret = nc_sendv_compat(nc, iov, iovcnt);
    }

    if (ret == 0) {
        nc->receive_disabled = 1;
534
    }
535 536

    return ret;
537 538
}

539
ssize_t qemu_sendv_packet_async(NetClientState *sender,
540 541
                                const struct iovec *iov, int iovcnt,
                                NetPacketSent *sent_cb)
542
{
543 544
    NetQueue *queue;

S
Stefan Hajnoczi 已提交
545
    if (sender->link_down || !sender->peer) {
B
Benjamin Poirier 已提交
546
        return iov_size(iov, iovcnt);
547 548
    }

S
Stefan Hajnoczi 已提交
549
    queue = sender->peer->send_queue;
550

551 552 553
    return qemu_net_queue_send_iov(queue, sender,
                                   QEMU_NET_PACKET_FLAG_NONE,
                                   iov, iovcnt, sent_cb);
A
aliguori 已提交
554 555
}

556
ssize_t
557
qemu_sendv_packet(NetClientState *nc, const struct iovec *iov, int iovcnt)
558
{
559
    return qemu_sendv_packet_async(nc, iov, iovcnt, NULL);
560 561
}

562
NetClientState *qemu_find_netdev(const char *id)
M
Mark McLoughlin 已提交
563
{
564
    NetClientState *nc;
M
Mark McLoughlin 已提交
565

566 567
    QTAILQ_FOREACH(nc, &net_clients, next) {
        if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC)
568
            continue;
569 570
        if (!strcmp(nc->name, id)) {
            return nc;
M
Mark McLoughlin 已提交
571 572 573 574 575 576
        }
    }

    return NULL;
}

577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
int qemu_find_net_clients_except(const char *id, NetClientState **ncs,
                                 NetClientOptionsKind type, int max)
{
    NetClientState *nc;
    int ret = 0;

    QTAILQ_FOREACH(nc, &net_clients, next) {
        if (nc->info->type == type) {
            continue;
        }
        if (!strcmp(nc->name, id)) {
            if (ret < max) {
                ncs[ret] = nc;
            }
            ret++;
        }
    }

    return ret;
}

598 599 600 601 602 603 604 605 606 607
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;
}

608 609 610 611
int qemu_show_nic_models(const char *arg, const char *const *models)
{
    int i;

612
    if (!arg || !is_help_option(arg)) {
613
        return 0;
614
    }
615 616 617 618 619 620 621

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

622 623 624 625 626 627 628
void qemu_check_nic_model(NICInfo *nd, const char *model)
{
    const char *models[2];

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

629 630 631 632
    if (qemu_show_nic_models(nd->model, models))
        exit(0);
    if (qemu_find_nic_model(nd, models, model) < 0)
        exit(1);
633 634
}

635 636
int qemu_find_nic_model(NICInfo *nd, const char * const *models,
                        const char *default_model)
637
{
638
    int i;
639 640

    if (!nd->model)
641
        nd->model = g_strdup(default_model);
642

643 644 645
    for (i = 0 ; models[i]; i++) {
        if (strcmp(nd->model, models[i]) == 0)
            return i;
646 647
    }

648
    error_report("Unsupported NIC model: %s", nd->model);
649
    return -1;
650 651
}

652
static int net_init_nic(const NetClientOptions *opts, const char *name,
653
                        NetClientState *peer)
654 655 656
{
    int idx;
    NICInfo *nd;
657 658 659 660
    const NetLegacyNicOptions *nic;

    assert(opts->kind == NET_CLIENT_OPTIONS_KIND_NIC);
    nic = opts->nic;
661 662 663

    idx = nic_get_free_idx();
    if (idx == -1 || nb_nics >= MAX_NICS) {
664
        error_report("Too Many NICs");
665 666 667 668 669 670 671
        return -1;
    }

    nd = &nd_table[idx];

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

672 673
    if (nic->has_netdev) {
        nd->netdev = qemu_find_netdev(nic->netdev);
M
Mark McLoughlin 已提交
674
        if (!nd->netdev) {
675
            error_report("netdev '%s' not found", nic->netdev);
M
Mark McLoughlin 已提交
676 677 678
            return -1;
        }
    } else {
679 680
        assert(peer);
        nd->netdev = peer;
M
Mark McLoughlin 已提交
681
    }
682
    nd->name = g_strdup(name);
683 684
    if (nic->has_model) {
        nd->model = g_strdup(nic->model);
685
    }
686 687
    if (nic->has_addr) {
        nd->devaddr = g_strdup(nic->addr);
688 689
    }

690 691
    if (nic->has_macaddr &&
        net_parse_macaddr(nd->macaddr.a, nic->macaddr) < 0) {
692
        error_report("invalid syntax for ethernet address");
693 694
        return -1;
    }
695
    qemu_macaddr_default_if_unset(&nd->macaddr);
696

697 698 699 700 701 702 703 704
    if (nic->has_vectors) {
        if (nic->vectors > 0x7ffffff) {
            error_report("invalid # of vectors: %"PRIu32, nic->vectors);
            return -1;
        }
        nd->nvectors = nic->vectors;
    } else {
        nd->nvectors = DEV_NVECTORS_UNSPECIFIED;
705 706 707 708 709 710 711 712
    }

    nd->used = 1;
    nb_nics++;

    return idx;
}

713 714

static int (* const net_client_init_fun[NET_CLIENT_OPTIONS_KIND_MAX])(
715
    const NetClientOptions *opts,
716
    const char *name,
717
    NetClientState *peer) = {
S
Stefan Hajnoczi 已提交
718
        [NET_CLIENT_OPTIONS_KIND_NIC]       = net_init_nic,
M
Mark McLoughlin 已提交
719
#ifdef CONFIG_SLIRP
S
Stefan Hajnoczi 已提交
720
        [NET_CLIENT_OPTIONS_KIND_USER]      = net_init_slirp,
721
#endif
S
Stefan Hajnoczi 已提交
722 723
        [NET_CLIENT_OPTIONS_KIND_TAP]       = net_init_tap,
        [NET_CLIENT_OPTIONS_KIND_SOCKET]    = net_init_socket,
M
Mark McLoughlin 已提交
724
#ifdef CONFIG_VDE
S
Stefan Hajnoczi 已提交
725
        [NET_CLIENT_OPTIONS_KIND_VDE]       = net_init_vde,
M
Mark McLoughlin 已提交
726
#endif
S
Stefan Hajnoczi 已提交
727
        [NET_CLIENT_OPTIONS_KIND_DUMP]      = net_init_dump,
728
#ifdef CONFIG_NET_BRIDGE
S
Stefan Hajnoczi 已提交
729
        [NET_CLIENT_OPTIONS_KIND_BRIDGE]    = net_init_bridge,
730
#endif
S
Stefan Hajnoczi 已提交
731
        [NET_CLIENT_OPTIONS_KIND_HUBPORT]   = net_init_hubport,
732 733
};

734

735
static int net_client_init1(const void *object, int is_netdev, Error **errp)
736
{
737 738 739 740 741
    union {
        const Netdev    *netdev;
        const NetLegacy *net;
    } u;
    const NetClientOptions *opts;
742
    const char *name;
743

744
    if (is_netdev) {
745 746 747 748 749
        u.netdev = object;
        opts = u.netdev->opts;
        name = u.netdev->id;

        switch (opts->kind) {
M
Mark McLoughlin 已提交
750
#ifdef CONFIG_SLIRP
751
        case NET_CLIENT_OPTIONS_KIND_USER:
M
Mark McLoughlin 已提交
752
#endif
753 754
        case NET_CLIENT_OPTIONS_KIND_TAP:
        case NET_CLIENT_OPTIONS_KIND_SOCKET:
M
Mark McLoughlin 已提交
755
#ifdef CONFIG_VDE
756 757 758 759
        case NET_CLIENT_OPTIONS_KIND_VDE:
#endif
#ifdef CONFIG_NET_BRIDGE
        case NET_CLIENT_OPTIONS_KIND_BRIDGE:
M
Mark McLoughlin 已提交
760
#endif
S
Stefan Hajnoczi 已提交
761
        case NET_CLIENT_OPTIONS_KIND_HUBPORT:
762 763 764
            break;

        default:
765 766
            error_set(errp, QERR_INVALID_PARAMETER_VALUE, "type",
                      "a netdev backend type");
M
Mark McLoughlin 已提交
767 768
            return -1;
        }
769 770 771 772 773 774
    } else {
        u.net = object;
        opts = u.net->opts;
        /* missing optional values have been initialized to "all bits zero" */
        name = u.net->has_id ? u.net->id : u.net->name;
    }
M
Mark McLoughlin 已提交
775

776
    if (net_client_init_fun[opts->kind]) {
777
        NetClientState *peer = NULL;
778 779 780 781 782 783

        /* Do not add to a vlan if it's a -netdev or a nic with a netdev=
         * parameter. */
        if (!is_netdev &&
            (opts->kind != NET_CLIENT_OPTIONS_KIND_NIC ||
             !opts->nic->has_netdev)) {
784
            peer = net_hub_add_port(u.net->has_vlan ? u.net->vlan : 0, NULL);
M
Mark McLoughlin 已提交
785
        }
786

787
        if (net_client_init_fun[opts->kind](opts, name, peer) < 0) {
788 789 790
            /* TODO push error reporting into init() methods */
            error_set(errp, QERR_DEVICE_INIT_FAILED,
                      NetClientOptionsKind_lookup[opts->kind]);
M
Mark McLoughlin 已提交
791 792 793
            return -1;
        }
    }
794 795 796
    return 0;
}

M
Mark McLoughlin 已提交
797

798 799 800 801 802 803
static void net_visit(Visitor *v, int is_netdev, void **object, Error **errp)
{
    if (is_netdev) {
        visit_type_Netdev(v, (Netdev **)object, NULL, errp);
    } else {
        visit_type_NetLegacy(v, (NetLegacy **)object, NULL, errp);
804
    }
805
}
806

M
Mark McLoughlin 已提交
807

808 809 810 811 812
int net_client_init(QemuOpts *opts, int is_netdev, Error **errp)
{
    void *object = NULL;
    Error *err = NULL;
    int ret = -1;
813

814 815
    {
        OptsVisitor *ov = opts_visitor_new(opts);
M
Mark McLoughlin 已提交
816

817 818
        net_visit(opts_get_visitor(ov), is_netdev, &object, &err);
        opts_visitor_cleanup(ov);
819 820
    }

821
    if (!err) {
822
        ret = net_client_init1(object, is_netdev, &err);
823 824 825 826 827 828 829 830 831 832 833
    }

    if (object) {
        QapiDeallocVisitor *dv = qapi_dealloc_visitor_new();

        net_visit(qapi_dealloc_get_visitor(dv), is_netdev, &object, NULL);
        qapi_dealloc_visitor_cleanup(dv);
    }

    error_propagate(errp, err);
    return ret;
834 835
}

836

837 838 839
static int net_host_check_device(const char *device)
{
    int i;
840
    const char *valid_param_list[] = { "tap", "socket", "dump"
841 842 843
#ifdef CONFIG_NET_BRIDGE
                                       , "bridge"
#endif
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
#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;
}

860
void net_host_device_add(Monitor *mon, const QDict *qdict)
861
{
862
    const char *device = qdict_get_str(qdict, "device");
863
    const char *opts_str = qdict_get_try_str(qdict, "opts");
864
    Error *local_err = NULL;
865
    QemuOpts *opts;
866

867
    if (!net_host_check_device(device)) {
A
aliguori 已提交
868
        monitor_printf(mon, "invalid host network device %s\n", device);
869 870
        return;
    }
871

872
    opts = qemu_opts_parse(qemu_find_opts("net"), opts_str ? opts_str : "", 0);
873 874 875 876 877 878
    if (!opts) {
        return;
    }

    qemu_opt_set(opts, "type", device);

879 880 881 882
    net_client_init(opts, 0, &local_err);
    if (error_is_set(&local_err)) {
        qerror_report_err(local_err);
        error_free(local_err);
883 884
        monitor_printf(mon, "adding host network device %s failed\n", device);
    }
885 886
}

887
void net_host_device_remove(Monitor *mon, const QDict *qdict)
888
{
889
    NetClientState *nc;
890 891
    int vlan_id = qdict_get_int(qdict, "vlan_id");
    const char *device = qdict_get_str(qdict, "device");
892

893 894
    nc = net_hub_find_client_by_name(vlan_id, device);
    if (!nc) {
895 896
        return;
    }
897
    if (!net_host_check_device(nc->model)) {
898 899 900
        monitor_printf(mon, "invalid host network device %s\n", device);
        return;
    }
901
    qemu_del_net_client(nc);
902 903
}

L
Luiz Capitulino 已提交
904 905 906 907 908 909
void netdev_add(QemuOpts *opts, Error **errp)
{
    net_client_init(opts, 1, errp);
}

int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret)
910
{
911
    Error *local_err = NULL;
L
Luiz Capitulino 已提交
912
    QemuOptsList *opts_list;
913 914
    QemuOpts *opts;

L
Luiz Capitulino 已提交
915 916 917
    opts_list = qemu_find_opts_err("netdev", &local_err);
    if (error_is_set(&local_err)) {
        goto exit_err;
918 919
    }

L
Luiz Capitulino 已提交
920 921 922 923 924 925 926
    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)) {
927
        qemu_opts_del(opts);
L
Luiz Capitulino 已提交
928
        goto exit_err;
929 930
    }

L
Luiz Capitulino 已提交
931 932 933 934 935 936
    return 0;

exit_err:
    qerror_report_err(local_err);
    error_free(local_err);
    return -1;
937 938
}

L
Luiz Capitulino 已提交
939
void qmp_netdev_del(const char *id, Error **errp)
940
{
941
    NetClientState *nc;
942
    QemuOpts *opts;
943

944 945
    nc = qemu_find_netdev(id);
    if (!nc) {
L
Luiz Capitulino 已提交
946 947
        error_set(errp, QERR_DEVICE_NOT_FOUND, id);
        return;
948
    }
L
Luiz Capitulino 已提交
949

950 951 952 953 954 955
    opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), id);
    if (!opts) {
        error_setg(errp, "Device '%s' is not a netdev", id);
        return;
    }

956
    qemu_del_net_client(nc);
957
    qemu_opts_del(opts);
958 959
}

960
void print_net_client(Monitor *mon, NetClientState *nc)
961
{
J
Jason Wang 已提交
962 963 964 965
    monitor_printf(mon, "%s: index=%d,type=%s,%s\n", nc->name,
                   nc->queue_index,
                   NetClientOptionsKind_lookup[nc->info->type],
                   nc->info_str);
966 967
}

968
void do_info_network(Monitor *mon, const QDict *qdict)
969
{
970
    NetClientState *nc, *peer;
971
    NetClientOptionsKind type;
972

973 974
    net_hub_info(mon);

975 976 977
    QTAILQ_FOREACH(nc, &net_clients, next) {
        peer = nc->peer;
        type = nc->info->type;
978

979 980 981
        /* Skip if already printed in hub info */
        if (net_hub_id_for_client(nc, NULL) == 0) {
            continue;
982
        }
983

984
        if (!peer || type == NET_CLIENT_OPTIONS_KIND_NIC) {
985
            print_net_client(mon, nc);
986
        } /* else it's a netdev connected to a NIC, printed with the NIC */
987
        if (peer && type == NET_CLIENT_OPTIONS_KIND_NIC) {
988
            monitor_printf(mon, " \\ ");
989
            print_net_client(mon, peer);
990 991
        }
    }
992 993
}

L
Luiz Capitulino 已提交
994
void qmp_set_link(const char *name, bool up, Error **errp)
995
{
J
Jason Wang 已提交
996 997 998
    NetClientState *ncs[MAX_QUEUE_NUM];
    NetClientState *nc;
    int queues, i;
999

J
Jason Wang 已提交
1000 1001 1002 1003 1004
    queues = qemu_find_net_clients_except(name, ncs,
                                          NET_CLIENT_OPTIONS_KIND_MAX,
                                          MAX_QUEUE_NUM);

    if (queues == 0) {
L
Luiz Capitulino 已提交
1005 1006
        error_set(errp, QERR_DEVICE_NOT_FOUND, name);
        return;
1007
    }
J
Jason Wang 已提交
1008
    nc = ncs[0];
1009

J
Jason Wang 已提交
1010 1011 1012
    for (i = 0; i < queues; i++) {
        ncs[i]->link_down = !up;
    }
1013

1014 1015
    if (nc->info->link_status_changed) {
        nc->info->link_status_changed(nc);
1016
    }
1017 1018 1019 1020 1021 1022 1023 1024

    /* 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. */
1025 1026
    if (nc->peer && nc->peer->info->link_status_changed) {
        nc->peer->info->link_status_changed(nc->peer);
1027
    }
1028 1029
}

1030 1031
void net_cleanup(void)
{
J
Jason Wang 已提交
1032
    NetClientState *nc;
1033

J
Jason Wang 已提交
1034 1035 1036 1037 1038
    /* We may del multiple entries during qemu_del_net_client(),
     * so QTAILQ_FOREACH_SAFE() is also not safe here.
     */
    while (!QTAILQ_EMPTY(&net_clients)) {
        nc = QTAILQ_FIRST(&net_clients);
J
Jason Wang 已提交
1039 1040 1041 1042 1043
        if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
            qemu_del_nic(qemu_get_nic(nc));
        } else {
            qemu_del_net_client(nc);
        }
1044
    }
1045 1046
}

1047
void net_check_clients(void)
1048
{
1049
    NetClientState *nc;
1050
    int i;
1051

1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
    /* 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;
    }

1064
    net_hub_check_clients();
1065

1066 1067
    QTAILQ_FOREACH(nc, &net_clients, next) {
        if (!nc->peer) {
1068
            fprintf(stderr, "Warning: %s %s has no peer\n",
1069 1070
                    nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC ?
                    "nic" : "netdev", nc->name);
1071 1072
        }
    }
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086

    /* 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");
        }
    }
1087
}
1088 1089 1090

static int net_init_client(QemuOpts *opts, void *dummy)
{
1091 1092 1093 1094 1095 1096
    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);
1097
        return -1;
1098 1099
    }

1100
    return 0;
M
Mark McLoughlin 已提交
1101 1102 1103 1104
}

static int net_init_netdev(QemuOpts *opts, void *dummy)
{
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
    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;
1116 1117 1118 1119
}

int net_init_clients(void)
{
1120 1121
    QemuOptsList *net = qemu_find_opts("net");

G
Gerd Hoffmann 已提交
1122
    if (default_net) {
1123
        /* if no clients, we use a default config */
1124
        qemu_opts_set(net, NULL, "type", "nic");
1125
#ifdef CONFIG_SLIRP
1126
        qemu_opts_set(net, NULL, "type", "user");
1127 1128 1129
#endif
    }

1130
    QTAILQ_INIT(&net_clients);
1131

1132
    if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev, NULL, 1) == -1)
M
Mark McLoughlin 已提交
1133 1134
        return -1;

1135
    if (qemu_opts_foreach(net, net_init_client, NULL, 1) == -1) {
1136 1137 1138 1139 1140 1141
        return -1;
    }

    return 0;
}

1142
int net_client_parse(QemuOptsList *opts_list, const char *optarg)
1143
{
1144
#if defined(CONFIG_SLIRP)
1145 1146
    int ret;
    if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
1147 1148
        return ret;
    }
1149
#endif
1150

1151
    if (!qemu_opts_parse(opts_list, optarg, 1)) {
1152 1153 1154
        return -1;
    }

G
Gerd Hoffmann 已提交
1155
    default_net = 0;
1156 1157
    return 0;
}
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180

/* 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;
}
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206

QemuOptsList qemu_netdev_opts = {
    .name = "netdev",
    .implied_opt_name = "type",
    .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
    .desc = {
        /*
         * no elements => accept any params
         * validation will happen later
         */
        { /* end of list */ }
    },
};

QemuOptsList qemu_net_opts = {
    .name = "net",
    .implied_opt_name = "type",
    .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
    .desc = {
        /*
         * no elements => accept any params
         * validation will happen later
         */
        { /* end of list */ }
    },
};