virsh-interface.c 36.2 KB
Newer Older
1 2 3
/*
 * virsh-interface.c: Commands to manage host interface
 *
4
 * Copyright (C) 2005, 2007-2016 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library.  If not, see
18 19 20 21 22 23 24 25
 * <http://www.gnu.org/licenses/>.
 *
 *  Daniel Veillard <veillard@redhat.com>
 *  Karel Zak <kzak@redhat.com>
 *  Daniel P. Berrange <berrange@redhat.com>
 *
 */

26 27 28 29 30 31 32
#define VIRSH_COMMON_OPT_INTERFACE                     \
    {.name = "interface",                              \
     .type = VSH_OT_DATA,                              \
     .flags = VSH_OFLAG_REQ,                           \
     .help = N_("interface name or MAC address")       \
    }                                                  \

E
Eric Blake 已提交
33 34
#include <config.h>
#include "virsh-interface.h"
35

E
Eric Blake 已提交
36 37 38 39 40 41
#include <libxml/parser.h>
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/xmlsave.h>

#include "internal.h"
42
#include "virbuffer.h"
43
#include "viralloc.h"
44
#include "virfile.h"
45
#include "virmacaddr.h"
46
#include "virutil.h"
47
#include "virxml.h"
48
#include "virstring.h"
E
Eric Blake 已提交
49 50

virInterfacePtr
51 52 53
virshCommandOptInterfaceBy(vshControl *ctl, const vshCmd *cmd,
                           const char *optname,
                           const char **name, unsigned int flags)
54 55 56
{
    virInterfacePtr iface = NULL;
    const char *n = NULL;
57 58
    bool is_mac = false;
    virMacAddr dummy;
59 60
    virCheckFlags(VIRSH_BYNAME | VIRSH_BYMAC, NULL);
    virshControlPtr priv = ctl->privData;
61 62 63 64

    if (!optname)
       optname = "interface";

65
    if (vshCommandOptStringReq(ctl, cmd, optname, &n) < 0)
66 67 68 69 70 71 72 73
        return NULL;

    vshDebug(ctl, VSH_ERR_INFO, "%s: found option <%s>: %s\n",
             cmd->def->name, optname, n);

    if (name)
        *name = n;

74 75 76
    if (virMacAddrParse(n, &dummy) == 0)
        is_mac = true;

77
    /* try it by NAME */
78
    if (!is_mac && (flags & VIRSH_BYNAME)) {
79 80
        vshDebug(ctl, VSH_ERR_DEBUG, "%s: <%s> trying as interface NAME\n",
                 cmd->def->name, optname);
81
        iface = virInterfaceLookupByName(priv->conn, n);
82

83
    /* try it by MAC */
84
    } else if (is_mac && (flags & VIRSH_BYMAC)) {
85 86
        vshDebug(ctl, VSH_ERR_DEBUG, "%s: <%s> trying as interface MAC\n",
                 cmd->def->name, optname);
87
        iface = virInterfaceLookupByMACString(priv->conn, n);
88 89 90 91 92 93 94 95 96 97 98 99
    }

    if (!iface)
        vshError(ctl, _("failed to get interface '%s'"), n);

    return iface;
}

/*
 * "iface-edit" command
 */
static const vshCmdInfo info_interface_edit[] = {
100 101 102 103 104 105 106
    {.name = "help",
     .data = N_("edit XML configuration for a physical host interface")
    },
    {.name = "desc",
     .data = N_("Edit the XML configuration for a physical host interface.")
    },
    {.name = NULL}
107 108 109
};

static const vshCmdOptDef opts_interface_edit[] = {
110
    VIRSH_COMMON_OPT_INTERFACE,
111
    {.name = NULL}
112 113 114 115 116 117 118 119 120
};

static bool
cmdInterfaceEdit(vshControl *ctl, const vshCmd *cmd)
{
    bool ret = false;
    virInterfacePtr iface = NULL;
    virInterfacePtr iface_edited = NULL;
    unsigned int flags = VIR_INTERFACE_XML_INACTIVE;
121
    virshControlPtr priv = ctl->privData;
122

123
    iface = virshCommandOptInterface(ctl, cmd, NULL);
124 125 126 127
    if (iface == NULL)
        goto cleanup;

#define EDIT_GET_XML virInterfaceGetXMLDesc(iface, flags)
128 129 130 131 132 133
#define EDIT_NOT_CHANGED                                                       \
    do {                                                                       \
        vshPrintExtra(ctl, _("Interface %s XML configuration not changed.\n"), \
                 virInterfaceGetName(iface));                                  \
        ret = true;                                                            \
        goto edit_cleanup;                                                     \
134
    } while (0)
135
#define EDIT_DEFINE \
136
    (iface_edited = virInterfaceDefineXML(priv->conn, doc_edited, 0))
137 138
#include "virsh-edit.c"

139 140
    vshPrintExtra(ctl, _("Interface %s XML configuration edited.\n"),
                  virInterfaceGetName(iface_edited));
141 142 143

    ret = true;

144
 cleanup:
145 146 147 148 149 150 151 152
    if (iface)
        virInterfaceFree(iface);
    if (iface_edited)
        virInterfaceFree(iface_edited);

    return ret;
}

153
static int
154
virshInterfaceSorter(const void *a, const void *b)
155 156 157 158 159 160 161 162 163 164 165 166 167 168
{
    virInterfacePtr *ia = (virInterfacePtr *) a;
    virInterfacePtr *ib = (virInterfacePtr *) b;

    if (*ia && !*ib)
        return -1;

    if (!*ia)
        return *ib != NULL;

    return vshStrcasecmp(virInterfaceGetName(*ia),
                      virInterfaceGetName(*ib));
}

169
struct virshInterfaceList {
170 171 172
    virInterfacePtr *ifaces;
    size_t nifaces;
};
173
typedef struct virshInterfaceList *virshInterfaceListPtr;
174 175

static void
176
virshInterfaceListFree(virshInterfaceListPtr list)
177
{
178
    size_t i;
179

180
    if (list && list->ifaces) {
181 182 183 184 185 186 187 188 189
        for (i = 0; i < list->nifaces; i++) {
            if (list->ifaces[i])
                virInterfaceFree(list->ifaces[i]);
        }
        VIR_FREE(list->ifaces);
    }
    VIR_FREE(list);
}

190 191 192
static virshInterfaceListPtr
virshInterfaceListCollect(vshControl *ctl,
                          unsigned int flags)
193
{
194
    virshInterfaceListPtr list = vshMalloc(ctl, sizeof(*list));
195
    size_t i;
196 197 198 199 200 201 202 203 204
    int ret;
    char **activeNames = NULL;
    char **inactiveNames = NULL;
    virInterfacePtr iface;
    bool success = false;
    size_t deleted = 0;
    int nActiveIfaces = 0;
    int nInactiveIfaces = 0;
    int nAllIfaces = 0;
205
    virshControlPtr priv = ctl->privData;
206 207

    /* try the list with flags support (0.10.2 and later) */
208
    if ((ret = virConnectListAllInterfaces(priv->conn,
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
                                           &list->ifaces,
                                           flags)) >= 0) {
        list->nifaces = ret;
        goto finished;
    }

    /* check if the command is actually supported */
    if (last_error && last_error->code == VIR_ERR_NO_SUPPORT)
        goto fallback;

    /* there was an error during the first or second call */
    vshError(ctl, "%s", _("Failed to list interfaces"));
    goto cleanup;


224
 fallback:
225 226 227 228
    /* fall back to old method (0.10.1 and older) */
    vshResetLibvirtError();

    if (flags & VIR_CONNECT_LIST_INTERFACES_ACTIVE) {
229
        nActiveIfaces = virConnectNumOfInterfaces(priv->conn);
230 231 232 233 234 235 236
        if (nActiveIfaces < 0) {
            vshError(ctl, "%s", _("Failed to list active interfaces"));
            goto cleanup;
        }
        if (nActiveIfaces) {
            activeNames = vshMalloc(ctl, sizeof(char *) * nActiveIfaces);

237
            if ((nActiveIfaces = virConnectListInterfaces(priv->conn, activeNames,
238 239 240 241 242 243 244 245
                                                          nActiveIfaces)) < 0) {
                vshError(ctl, "%s", _("Failed to list active interfaces"));
                goto cleanup;
            }
        }
    }

    if (flags & VIR_CONNECT_LIST_INTERFACES_INACTIVE) {
246
        nInactiveIfaces = virConnectNumOfDefinedInterfaces(priv->conn);
247 248 249 250 251 252 253 254
        if (nInactiveIfaces < 0) {
            vshError(ctl, "%s", _("Failed to list inactive interfaces"));
            goto cleanup;
        }
        if (nInactiveIfaces) {
            inactiveNames = vshMalloc(ctl, sizeof(char *) * nInactiveIfaces);

            if ((nInactiveIfaces =
255
                     virConnectListDefinedInterfaces(priv->conn, inactiveNames,
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
                                                     nInactiveIfaces)) < 0) {
                vshError(ctl, "%s", _("Failed to list inactive interfaces"));
                goto cleanup;
            }
        }
    }

    nAllIfaces = nActiveIfaces + nInactiveIfaces;
    if (nAllIfaces == 0) {
        VIR_FREE(activeNames);
        VIR_FREE(inactiveNames);
        return list;
    }

    list->ifaces = vshMalloc(ctl, sizeof(virInterfacePtr) * (nAllIfaces));
    list->nifaces = 0;

    /* get active interfaces */
    for (i = 0; i < nActiveIfaces; i++) {
275
        if (!(iface = virInterfaceLookupByName(priv->conn, activeNames[i]))) {
276 277 278 279 280 281 282 283
            vshResetLibvirtError();
            continue;
        }
        list->ifaces[list->nifaces++] = iface;
    }

    /* get inactive interfaces */
    for (i = 0; i < nInactiveIfaces; i++) {
284
        if (!(iface = virInterfaceLookupByName(priv->conn, inactiveNames[i]))) {
285 286 287 288 289 290 291 292 293
            vshResetLibvirtError();
            continue;
        }
        list->ifaces[list->nifaces++] = iface;
    }

    /* truncate interfaces that weren't found */
    deleted = nAllIfaces - list->nifaces;

294
 finished:
295 296 297
    /* sort the list */
    if (list->ifaces && list->nifaces)
        qsort(list->ifaces, list->nifaces,
298
              sizeof(*list->ifaces), virshInterfaceSorter);
299 300 301 302 303 304 305

    /* truncate the list if filter simulation deleted entries */
    if (deleted)
        VIR_SHRINK_N(list->ifaces, list->nifaces, deleted);

    success = true;

306
 cleanup:
307
    for (i = 0; nActiveIfaces != -1 && i < nActiveIfaces; i++)
308 309
        VIR_FREE(activeNames[i]);

310
    for (i = 0; nInactiveIfaces != -1 && i < nInactiveIfaces; i++)
311 312 313 314 315 316
        VIR_FREE(inactiveNames[i]);

    VIR_FREE(activeNames);
    VIR_FREE(inactiveNames);

    if (!success) {
317
        virshInterfaceListFree(list);
318 319 320 321 322 323
        list = NULL;
    }

    return list;
}

324 325 326 327
/*
 * "iface-list" command
 */
static const vshCmdInfo info_interface_list[] = {
328 329 330 331 332 333 334
    {.name = "help",
     .data = N_("list physical host interfaces")
    },
    {.name = "desc",
     .data = N_("Returns list of physical host interfaces.")
    },
    {.name = NULL}
335 336 337
};

static const vshCmdOptDef opts_interface_list[] = {
338 339 340 341 342 343 344 345 346
    {.name = "inactive",
     .type = VSH_OT_BOOL,
     .help = N_("list inactive interfaces")
    },
    {.name = "all",
     .type = VSH_OT_BOOL,
     .help = N_("list inactive & active interfaces")
    },
    {.name = NULL}
347
};
348

349 350 351 352 353
static bool
cmdInterfaceList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
    bool inactive = vshCommandOptBool(cmd, "inactive");
    bool all = vshCommandOptBool(cmd, "all");
354
    unsigned int flags = VIR_CONNECT_LIST_INTERFACES_ACTIVE;
355
    virshInterfaceListPtr list = NULL;
356
    size_t i;
357

358 359 360 361 362
    if (inactive)
        flags = VIR_CONNECT_LIST_INTERFACES_INACTIVE;
    if (all)
        flags = VIR_CONNECT_LIST_INTERFACES_INACTIVE |
                VIR_CONNECT_LIST_INTERFACES_ACTIVE;
363

364
    if (!(list = virshInterfaceListCollect(ctl, flags)))
365
        return false;
366

367
    vshPrintExtra(ctl, " %-20s %-10s %s\n", _("Name"), _("State"),
368
                  _("MAC Address"));
369
    vshPrintExtra(ctl, "---------------------------------------------------\n");
370

371 372
    for (i = 0; i < list->nifaces; i++) {
        virInterfacePtr iface = list->ifaces[i];
373

374
        vshPrint(ctl, " %-20s %-10s %s\n",
375
                 virInterfaceGetName(iface),
376
                 virInterfaceIsActive(iface) ? _("active") : _("inactive"),
377 378 379
                 virInterfaceGetMACString(iface));
    }

380
    virshInterfaceListFree(list);
381 382 383 384 385 386 387
    return true;
}

/*
 * "iface-name" command
 */
static const vshCmdInfo info_interface_name[] = {
388 389 390 391 392 393 394
    {.name = "help",
     .data = N_("convert an interface MAC address to interface name")
    },
    {.name = "desc",
     .data = ""
    },
    {.name = NULL}
395 396 397
};

static const vshCmdOptDef opts_interface_name[] = {
398 399 400 401 402 403
    {.name = "interface",
     .type = VSH_OT_DATA,
     .flags = VSH_OFLAG_REQ,
     .help = N_("interface mac")
    },
    {.name = NULL}
404 405 406 407 408 409 410
};

static bool
cmdInterfaceName(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;

411 412
    if (!(iface = virshCommandOptInterfaceBy(ctl, cmd, NULL, NULL,
                                             VIRSH_BYMAC)))
413 414 415 416 417 418 419 420 421 422 423
        return false;

    vshPrint(ctl, "%s\n", virInterfaceGetName(iface));
    virInterfaceFree(iface);
    return true;
}

/*
 * "iface-mac" command
 */
static const vshCmdInfo info_interface_mac[] = {
424 425 426 427 428 429 430
    {.name = "help",
     .data = N_("convert an interface name to interface MAC address")
    },
    {.name = "desc",
     .data = ""
    },
    {.name = NULL}
431 432 433
};

static const vshCmdOptDef opts_interface_mac[] = {
434 435 436 437 438 439
    {.name = "interface",
     .type = VSH_OT_DATA,
     .flags = VSH_OFLAG_REQ,
     .help = N_("interface name")
    },
    {.name = NULL}
440 441 442 443 444 445 446
};

static bool
cmdInterfaceMAC(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;

447 448
    if (!(iface = virshCommandOptInterfaceBy(ctl, cmd, NULL, NULL,
                                             VIRSH_BYNAME)))
449 450 451 452 453 454 455 456 457 458 459
        return false;

    vshPrint(ctl, "%s\n", virInterfaceGetMACString(iface));
    virInterfaceFree(iface);
    return true;
}

/*
 * "iface-dumpxml" command
 */
static const vshCmdInfo info_interface_dumpxml[] = {
460 461 462 463 464 465 466
    {.name = "help",
     .data = N_("interface information in XML")
    },
    {.name = "desc",
     .data = N_("Output the physical host interface information as an XML dump to stdout.")
    },
    {.name = NULL}
467 468 469
};

static const vshCmdOptDef opts_interface_dumpxml[] = {
470
    VIRSH_COMMON_OPT_INTERFACE,
471 472 473 474 475
    {.name = "inactive",
     .type = VSH_OT_BOOL,
     .help = N_("show inactive defined XML")
    },
    {.name = NULL}
476 477 478 479 480 481 482 483 484 485 486 487 488 489
};

static bool
cmdInterfaceDumpXML(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    bool ret = true;
    char *dump;
    unsigned int flags = 0;
    bool inactive = vshCommandOptBool(cmd, "inactive");

    if (inactive)
        flags |= VIR_INTERFACE_XML_INACTIVE;

490
    if (!(iface = virshCommandOptInterface(ctl, cmd, NULL)))
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
        return false;

    dump = virInterfaceGetXMLDesc(iface, flags);
    if (dump != NULL) {
        vshPrint(ctl, "%s", dump);
        VIR_FREE(dump);
    } else {
        ret = false;
    }

    virInterfaceFree(iface);
    return ret;
}

/*
 * "iface-define" command
 */
static const vshCmdInfo info_interface_define[] = {
509
    {.name = "help",
510 511
     .data = N_("define an inactive persistent physical host interface or "
                "modify an existing persistent one from an XML file")
512 513
    },
    {.name = "desc",
514
     .data = N_("Define or modify a persistent physical host interface.")
515 516
    },
    {.name = NULL}
517 518 519
};

static const vshCmdOptDef opts_interface_define[] = {
520
    VIRSH_COMMON_OPT_FILE(N_("file containing an XML interface description")),
521
    {.name = NULL}
522 523 524 525 526 527 528 529 530
};

static bool
cmdInterfaceDefine(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    const char *from = NULL;
    bool ret = true;
    char *buffer;
531
    virshControlPtr priv = ctl->privData;
532

533
    if (vshCommandOptStringReq(ctl, cmd, "file", &from) < 0)
534 535
        return false;

E
Eric Blake 已提交
536
    if (virFileReadAll(from, VSH_MAX_XML_FILE, &buffer) < 0)
537 538
        return false;

539
    iface = virInterfaceDefineXML(priv->conn, buffer, 0);
540 541 542
    VIR_FREE(buffer);

    if (iface != NULL) {
P
Pino Toscano 已提交
543 544
        vshPrintExtra(ctl, _("Interface %s defined from %s\n"),
                      virInterfaceGetName(iface), from);
545 546 547 548 549 550 551 552 553 554 555 556
        virInterfaceFree(iface);
    } else {
        vshError(ctl, _("Failed to define interface from %s"), from);
        ret = false;
    }
    return ret;
}

/*
 * "iface-undefine" command
 */
static const vshCmdInfo info_interface_undefine[] = {
557 558 559 560 561 562 563
    {.name = "help",
     .data = N_("undefine a physical host interface (remove it from configuration)")
    },
    {.name = "desc",
     .data = N_("undefine an interface.")
    },
    {.name = NULL}
564 565 566
};

static const vshCmdOptDef opts_interface_undefine[] = {
567
    VIRSH_COMMON_OPT_INTERFACE,
568
    {.name = NULL}
569 570 571 572 573 574 575 576 577
};

static bool
cmdInterfaceUndefine(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    bool ret = true;
    const char *name;

578
    if (!(iface = virshCommandOptInterface(ctl, cmd, &name)))
579 580 581
        return false;

    if (virInterfaceUndefine(iface) == 0) {
P
Pino Toscano 已提交
582
        vshPrintExtra(ctl, _("Interface %s undefined\n"), name);
583 584 585 586 587 588 589 590 591 592 593 594 595
    } else {
        vshError(ctl, _("Failed to undefine interface %s"), name);
        ret = false;
    }

    virInterfaceFree(iface);
    return ret;
}

/*
 * "iface-start" command
 */
static const vshCmdInfo info_interface_start[] = {
596 597 598 599 600 601 602
    {.name = "help",
     .data = N_("start a physical host interface (enable it / \"if-up\")")
    },
    {.name = "desc",
     .data = N_("start a physical host interface.")
    },
    {.name = NULL}
603 604 605
};

static const vshCmdOptDef opts_interface_start[] = {
606
    VIRSH_COMMON_OPT_INTERFACE,
607
    {.name = NULL}
608 609 610 611 612 613 614 615 616
};

static bool
cmdInterfaceStart(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    bool ret = true;
    const char *name;

617
    if (!(iface = virshCommandOptInterface(ctl, cmd, &name)))
618 619 620
        return false;

    if (virInterfaceCreate(iface, 0) == 0) {
P
Pino Toscano 已提交
621
        vshPrintExtra(ctl, _("Interface %s started\n"), name);
622 623 624 625 626 627 628 629 630 631 632 633 634
    } else {
        vshError(ctl, _("Failed to start interface %s"), name);
        ret = false;
    }

    virInterfaceFree(iface);
    return ret;
}

/*
 * "iface-destroy" command
 */
static const vshCmdInfo info_interface_destroy[] = {
635 636 637 638 639 640 641
    {.name = "help",
     .data = N_("destroy a physical host interface (disable it / \"if-down\")")
    },
    {.name = "desc",
     .data = N_("forcefully stop a physical host interface.")
    },
    {.name = NULL}
642 643 644
};

static const vshCmdOptDef opts_interface_destroy[] = {
645
    VIRSH_COMMON_OPT_INTERFACE,
646
    {.name = NULL}
647 648 649 650 651 652 653 654 655
};

static bool
cmdInterfaceDestroy(vshControl *ctl, const vshCmd *cmd)
{
    virInterfacePtr iface;
    bool ret = true;
    const char *name;

656
    if (!(iface = virshCommandOptInterface(ctl, cmd, &name)))
657 658 659
        return false;

    if (virInterfaceDestroy(iface, 0) == 0) {
P
Pino Toscano 已提交
660
        vshPrintExtra(ctl, _("Interface %s destroyed\n"), name);
661 662 663 664 665 666 667 668 669 670 671 672 673
    } else {
        vshError(ctl, _("Failed to destroy interface %s"), name);
        ret = false;
    }

    virInterfaceFree(iface);
    return ret;
}

/*
 * "iface-begin" command
 */
static const vshCmdInfo info_interface_begin[] = {
674 675
    {.name = "help",
     .data = N_("create a snapshot of current interfaces settings, "
676
                "which can be later committed (iface-commit) or "
677 678 679 680 681 682
                "restored (iface-rollback)")
    },
    {.name = "desc",
     .data = N_("Create a restore point for interfaces settings")
    },
    {.name = NULL}
683 684 685
};

static const vshCmdOptDef opts_interface_begin[] = {
686
    {.name = NULL}
687 688 689 690 691
};

static bool
cmdInterfaceBegin(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
692 693 694
    virshControlPtr priv = ctl->privData;

    if (virInterfaceChangeBegin(priv->conn, 0) < 0) {
695 696 697 698
        vshError(ctl, "%s", _("Failed to begin network config change transaction"));
        return false;
    }

P
Pino Toscano 已提交
699
    vshPrintExtra(ctl, "%s", _("Network config change transaction started\n"));
700 701 702 703 704 705 706
    return true;
}

/*
 * "iface-commit" command
 */
static const vshCmdInfo info_interface_commit[] = {
707 708 709 710 711 712 713
    {.name = "help",
     .data = N_("commit changes made since iface-begin and free restore point")
    },
    {.name = "desc",
     .data = N_("commit changes and free restore point")
    },
    {.name = NULL}
714 715 716
};

static const vshCmdOptDef opts_interface_commit[] = {
717
    {.name = NULL}
718 719 720 721 722
};

static bool
cmdInterfaceCommit(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
723 724 725
    virshControlPtr priv = ctl->privData;

    if (virInterfaceChangeCommit(priv->conn, 0) < 0) {
726 727 728 729
        vshError(ctl, "%s", _("Failed to commit network config change transaction"));
        return false;
    }

P
Pino Toscano 已提交
730
    vshPrintExtra(ctl, "%s", _("Network config change transaction committed\n"));
731 732 733 734 735 736 737
    return true;
}

/*
 * "iface-rollback" command
 */
static const vshCmdInfo info_interface_rollback[] = {
738 739 740 741 742 743 744
    {.name = "help",
     .data = N_("rollback to previous saved configuration created via iface-begin")
    },
    {.name = "desc",
     .data = N_("rollback to previous restore point")
    },
    {.name = NULL}
745 746 747
};

static const vshCmdOptDef opts_interface_rollback[] = {
748
    {.name = NULL}
749 750 751 752 753
};

static bool
cmdInterfaceRollback(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
{
754 755 756
    virshControlPtr priv = ctl->privData;

    if (virInterfaceChangeRollback(priv->conn, 0) < 0) {
757 758 759 760
        vshError(ctl, "%s", _("Failed to rollback network config change transaction"));
        return false;
    }

P
Pino Toscano 已提交
761
    vshPrintExtra(ctl, "%s", _("Network config change transaction rolled back\n"));
762 763 764 765 766 767 768
    return true;
}

/*
 * "iface-bridge" command
 */
static const vshCmdInfo info_interface_bridge[] = {
769 770 771 772 773 774 775
    {.name = "help",
     .data = N_("create a bridge device and attach an existing network device to it")
    },
    {.name = "desc",
     .data = N_("bridge an existing network device")
    },
    {.name = NULL}
776 777 778
};

static const vshCmdOptDef opts_interface_bridge[] = {
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
    {.name = "interface",
     .type = VSH_OT_DATA,
     .flags = VSH_OFLAG_REQ,
     .help = N_("existing interface name")
    },
    {.name = "bridge",
     .type = VSH_OT_DATA,
     .flags = VSH_OFLAG_REQ,
     .help = N_("new bridge device name")
    },
    {.name = "no-stp",
     .type = VSH_OT_BOOL,
     .help = N_("do not enable STP for this bridge")
    },
    {.name = "delay",
     .type = VSH_OT_INT,
     .help = N_("number of seconds to squelch traffic on newly connected ports")
    },
    {.name = "no-start",
     .type = VSH_OT_BOOL,
     .help = N_("don't start the bridge immediately")
    },
    {.name = NULL}
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
};

static bool
cmdInterfaceBridge(vshControl *ctl, const vshCmd *cmd)
{
    bool ret = false;
    virInterfacePtr if_handle = NULL, br_handle = NULL;
    const char *if_name, *br_name;
    char *if_type = NULL, *if2_name = NULL, *delay_str = NULL;
    bool stp = false, nostart = false;
    unsigned int delay = 0;
    char *if_xml = NULL;
    xmlChar *br_xml = NULL;
    int br_xml_size;
    xmlDocPtr xml_doc = NULL;
    xmlXPathContextPtr ctxt = NULL;
    xmlNodePtr top_node, br_node, if_node, cur;
819
    virshControlPtr priv = ctl->privData;
820 821

    /* Get a handle to the original device */
822 823
    if (!(if_handle = virshCommandOptInterfaceBy(ctl, cmd, "interface",
                                                 &if_name, VIRSH_BYNAME))) {
824 825 826 827
        goto cleanup;
    }

    /* Name for new bridge device */
828
    if (vshCommandOptStringReq(ctl, cmd, "bridge", &br_name) < 0)
829 830 831
        goto cleanup;

    /* make sure "new" device doesn't already exist */
832
    if ((br_handle = virInterfaceLookupByName(priv->conn, br_name))) {
833 834 835 836 837 838 839
        vshError(ctl, _("Network device %s already exists"), br_name);
        goto cleanup;
    }

    /* use "no-stp" because we want "stp" to default true */
    stp = !vshCommandOptBool(cmd, "no-stp");

840
    if (vshCommandOptUInt(ctl, cmd, "delay", &delay) < 0)
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
        goto cleanup;

    nostart = vshCommandOptBool(cmd, "no-start");

    /* Get the original interface into an xmlDoc */
    if (!(if_xml = virInterfaceGetXMLDesc(if_handle, VIR_INTERFACE_XML_INACTIVE)))
        goto cleanup;
    if (!(xml_doc = virXMLParseStringCtxt(if_xml,
                                          _("(interface definition)"), &ctxt))) {
        vshError(ctl, _("Failed to parse configuration of %s"), if_name);
        goto cleanup;
    }
    top_node = ctxt->node;

    /* Verify that the original device isn't already a bridge. */
    if (!(if_type = virXMLPropString(top_node, "type"))) {
        vshError(ctl, _("Existing device %s has no type"), if_name);
        goto cleanup;
    }

    if (STREQ(if_type, "bridge")) {
        vshError(ctl, _("Existing device %s is already a bridge"), if_name);
        goto cleanup;
    }

    /* verify the name in the XML matches the device name */
    if (!(if2_name = virXMLPropString(top_node, "name")) ||
        STRNEQ(if2_name, if_name)) {
        vshError(ctl, _("Interface name from config %s doesn't match given supplied name %s"),
                 if2_name, if_name);
        goto cleanup;
    }

    /* Create a <bridge> node under <interface>. */
    if (!(br_node = xmlNewChild(top_node, NULL, BAD_CAST "bridge", NULL))) {
        vshError(ctl, "%s", _("Failed to create bridge node in xml document"));
        goto cleanup;
    }

    /* Set stp and delay attributes in <bridge> according to the
     * commandline options.
     */
883
    if (!xmlSetProp(br_node, BAD_CAST "stp", BAD_CAST(stp ? "on" : "off"))) {
884 885 886 887
        vshError(ctl, "%s", _("Failed to set stp attribute in xml document"));
        goto cleanup;
    }

888
    if (stp &&
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
        ((virAsprintf(&delay_str, "%d", delay) < 0) ||
         !xmlSetProp(br_node, BAD_CAST "delay", BAD_CAST delay_str))) {
        vshError(ctl, _("Failed to set bridge delay %d in xml document"), delay);
        goto cleanup;
    }

    /* Change the type of the outer/master interface to "bridge" and the
     * name to the provided bridge name.
     */
    if (!xmlSetProp(top_node, BAD_CAST "type", BAD_CAST "bridge")) {
        vshError(ctl, "%s", _("Failed to set bridge interface type to 'bridge' in xml document"));
        goto cleanup;
    }

    if (!xmlSetProp(top_node, BAD_CAST "name", BAD_CAST br_name)) {
        vshError(ctl, _("Failed to set master bridge interface name to '%s' in xml document"),
            br_name);
        goto cleanup;
    }

    /* Create an <interface> node under <bridge> that uses the
     * original interface's type and name.
     */
    if (!(if_node = xmlNewChild(br_node, NULL, BAD_CAST "interface", NULL))) {
        vshError(ctl, "%s", _("Failed to create interface node under bridge node in xml document"));
        goto cleanup;
    }

    /* set the type of the inner/slave interface to the original
     * if_type, and the name to the original if_name.
     */
    if (!xmlSetProp(if_node, BAD_CAST "type", BAD_CAST if_type)) {
        vshError(ctl, _("Failed to set new slave interface type to '%s' in xml document"),
922
                 if_type);
923 924 925 926 927
        goto cleanup;
    }

    if (!xmlSetProp(if_node, BAD_CAST "name", BAD_CAST if_name)) {
        vshError(ctl, _("Failed to set new slave interface name to '%s' in xml document"),
928
                 if_name);
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965
        goto cleanup;
    }

    /* Cycle through all the nodes under the original <interface>,
     * moving all <mac>, <bond> and <vlan> nodes down into the new
     * lower level <interface>.
     */
    cur = top_node->children;
    while (cur) {
        xmlNodePtr old = cur;

        cur = cur->next;
        if ((old->type == XML_ELEMENT_NODE) &&
            (xmlStrEqual(old->name, BAD_CAST "mac") ||  /* ethernet stuff to move down */
             xmlStrEqual(old->name, BAD_CAST "bond") || /* bond stuff to move down */
             xmlStrEqual(old->name, BAD_CAST "vlan"))) { /* vlan stuff to move down */
            xmlUnlinkNode(old);
            if (!xmlAddChild(if_node, old)) {
                vshError(ctl, _("Failed to move '%s' element in xml document"), old->name);
                xmlFreeNode(old);
                goto cleanup;
            }
        }
    }

    /* The document should now be fully converted; write it out to a string. */
    xmlDocDumpMemory(xml_doc, &br_xml, &br_xml_size);

    if (!br_xml || br_xml_size <= 0) {
        vshError(ctl, _("Failed to format new xml document for bridge %s"), br_name);
        goto cleanup;
    }


    /* br_xml is the new interface to define. It will automatically undefine the
     * independent original interface.
     */
966
    if (!(br_handle = virInterfaceDefineXML(priv->conn, (char *) br_xml, 0))) {
967 968 969 970 971
        vshError(ctl, _("Failed to define new bridge interface %s"),
                 br_name);
        goto cleanup;
    }

972 973
    vshPrintExtra(ctl, _("Created bridge %s with attached device %s\n"),
                  br_name, if_name);
974 975 976 977 978 979 980

    /* start it up unless requested not to */
    if (!nostart) {
        if (virInterfaceCreate(br_handle, 0) < 0) {
            vshError(ctl, _("Failed to start bridge interface %s"), br_name);
            goto cleanup;
        }
981
        vshPrintExtra(ctl, _("Bridge interface %s started\n"), br_name);
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
    }

    ret = true;
 cleanup:
    if (if_handle)
       virInterfaceFree(if_handle);
    if (br_handle)
       virInterfaceFree(br_handle);
    VIR_FREE(if_xml);
    VIR_FREE(br_xml);
    VIR_FREE(if_type);
    VIR_FREE(if2_name);
    VIR_FREE(delay_str);
    xmlXPathFreeContext(ctxt);
    xmlFreeDoc(xml_doc);
    return ret;
}

/*
 * "iface-unbridge" command
 */
static const vshCmdInfo info_interface_unbridge[] = {
1004 1005 1006 1007 1008 1009 1010
    {.name = "help",
     .data = N_("undefine a bridge device after detaching its slave device")
    },
    {.name = "desc",
     .data = N_("unbridge a network device")
    },
    {.name = NULL}
1011 1012 1013
};

static const vshCmdOptDef opts_interface_unbridge[] = {
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
    {.name = "bridge",
     .type = VSH_OT_DATA,
     .flags = VSH_OFLAG_REQ,
     .help = N_("current bridge device name")
    },
    {.name = "no-start",
     .type = VSH_OT_BOOL,
     .help = N_("don't start the un-slaved interface immediately (not recommended)")
    },
    {.name = NULL}
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
};

static bool
cmdInterfaceUnbridge(vshControl *ctl, const vshCmd *cmd)
{
    bool ret = false;
    virInterfacePtr if_handle = NULL, br_handle = NULL;
    const char *br_name;
    char *if_type = NULL, *if_name = NULL;
    bool nostart = false;
    char *br_xml = NULL;
    xmlChar *if_xml = NULL;
    int if_xml_size;
    xmlDocPtr xml_doc = NULL;
    xmlXPathContextPtr ctxt = NULL;
1039
    xmlNodePtr top_node, if_node, cur;
1040
    virshControlPtr priv = ctl->privData;
1041 1042

    /* Get a handle to the original device */
1043 1044
    if (!(br_handle = virshCommandOptInterfaceBy(ctl, cmd, "bridge",
                                                 &br_name, VIRSH_BYNAME))) {
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
        goto cleanup;
    }

    nostart = vshCommandOptBool(cmd, "no-start");

    /* Get the bridge xml into an xmlDoc */
    if (!(br_xml = virInterfaceGetXMLDesc(br_handle, VIR_INTERFACE_XML_INACTIVE)))
        goto cleanup;
    if (!(xml_doc = virXMLParseStringCtxt(br_xml,
                                          _("(bridge interface definition)"),
                                          &ctxt))) {
        vshError(ctl, _("Failed to parse configuration of %s"), br_name);
        goto cleanup;
    }
    top_node = ctxt->node;

    /* Verify that the device really is a bridge. */
    if (!(if_type = virXMLPropString(top_node, "type"))) {
        vshError(ctl, _("Existing device %s has no type"), br_name);
        goto cleanup;
    }

    if (STRNEQ(if_type, "bridge")) {
        vshError(ctl, _("Device %s is not a bridge"), br_name);
        goto cleanup;
    }
    VIR_FREE(if_type);

    /* verify the name in the XML matches the device name */
    if (!(if_name = virXMLPropString(top_node, "name")) ||
        STRNEQ(if_name, br_name)) {
        vshError(ctl, _("Interface name from config %s doesn't match given supplied name %s"),
                 if_name, br_name);
        goto cleanup;
    }
    VIR_FREE(if_name);

    /* Find the <bridge> node under <interface>. */
1083
    if (virXPathNode("./bridge", ctxt) == NULL) {
1084 1085 1086 1087
        vshError(ctl, "%s", _("No bridge node in xml document"));
        goto cleanup;
    }

1088
    if (virXPathNode("./bridge/interface[2]", ctxt) != NULL) {
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
        vshError(ctl, "%s", _("Multiple interfaces attached to bridge"));
        goto cleanup;
    }

    if (!(if_node = virXPathNode("./bridge/interface", ctxt))) {
        vshError(ctl, "%s", _("No interface attached to bridge"));
        goto cleanup;
    }

    /* Change the type and name of the outer/master interface to
     * the type/name of the attached slave interface.
     */
    if (!(if_name = virXMLPropString(if_node, "name"))) {
        vshError(ctl, _("Device attached to bridge %s has no name"), br_name);
        goto cleanup;
    }

    if (!(if_type = virXMLPropString(if_node, "type"))) {
        vshError(ctl, _("Attached device %s has no type"), if_name);
        goto cleanup;
    }

    if (!xmlSetProp(top_node, BAD_CAST "type", BAD_CAST if_type)) {
        vshError(ctl, _("Failed to set interface type to '%s' in xml document"),
                 if_type);
        goto cleanup;
    }

    if (!xmlSetProp(top_node, BAD_CAST "name", BAD_CAST if_name)) {
        vshError(ctl, _("Failed to set interface name to '%s' in xml document"),
                 if_name);
        goto cleanup;
    }

    /* Cycle through all the nodes under the attached <interface>,
     * moving all <mac>, <bond> and <vlan> nodes up into the toplevel
     * <interface>.
     */
    cur = if_node->children;
    while (cur) {
        xmlNodePtr old = cur;

        cur = cur->next;
        if ((old->type == XML_ELEMENT_NODE) &&
            (xmlStrEqual(old->name, BAD_CAST "mac") ||  /* ethernet stuff to move down */
             xmlStrEqual(old->name, BAD_CAST "bond") || /* bond stuff to move down */
             xmlStrEqual(old->name, BAD_CAST "vlan"))) { /* vlan stuff to move down */
            xmlUnlinkNode(old);
            if (!xmlAddChild(top_node, old)) {
                vshError(ctl, _("Failed to move '%s' element in xml document"), old->name);
                xmlFreeNode(old);
                goto cleanup;
            }
        }
    }

    /* The document should now be fully converted; write it out to a string. */
    xmlDocDumpMemory(xml_doc, &if_xml, &if_xml_size);

    if (!if_xml || if_xml_size <= 0) {
        vshError(ctl, _("Failed to format new xml document for un-enslaved interface %s"),
                 if_name);
        goto cleanup;
    }

    /* Destroy and Undefine the bridge device, since we otherwise
     * can't safely define the unattached device.
     */
    if (virInterfaceDestroy(br_handle, 0) < 0) {
        vshError(ctl, _("Failed to destroy bridge interface %s"), br_name);
        goto cleanup;
    }
    if (virInterfaceUndefine(br_handle) < 0) {
        vshError(ctl, _("Failed to undefine bridge interface %s"), br_name);
        goto cleanup;
    }

    /* if_xml is the new interface to define.
     */
1168
    if (!(if_handle = virInterfaceDefineXML(priv->conn, (char *) if_xml, 0))) {
1169 1170 1171 1172
        vshError(ctl, _("Failed to define new interface %s"), if_name);
        goto cleanup;
    }

1173 1174
    vshPrintExtra(ctl, _("Device %s un-attached from bridge %s\n"),
                  if_name, br_name);
1175 1176 1177 1178 1179 1180 1181

    /* unless requested otherwise, undefine the bridge device */
    if (!nostart) {
        if (virInterfaceCreate(if_handle, 0) < 0) {
            vshError(ctl, _("Failed to start interface %s"), if_name);
            goto cleanup;
        }
1182
        vshPrintExtra(ctl, _("Interface %s started\n"), if_name);
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
    }

    ret = true;
 cleanup:
    if (if_handle)
       virInterfaceFree(if_handle);
    if (br_handle)
       virInterfaceFree(br_handle);
    VIR_FREE(if_xml);
    VIR_FREE(br_xml);
    VIR_FREE(if_type);
    VIR_FREE(if_name);
    xmlXPathFreeContext(ctxt);
    xmlFreeDoc(xml_doc);
    return ret;
}
1199

E
Eric Blake 已提交
1200
const vshCmdDef ifaceCmds[] = {
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
    {.name = "iface-begin",
     .handler = cmdInterfaceBegin,
     .opts = opts_interface_begin,
     .info = info_interface_begin,
     .flags = 0
    },
    {.name = "iface-bridge",
     .handler = cmdInterfaceBridge,
     .opts = opts_interface_bridge,
     .info = info_interface_bridge,
     .flags = 0
    },
    {.name = "iface-commit",
     .handler = cmdInterfaceCommit,
     .opts = opts_interface_commit,
     .info = info_interface_commit,
     .flags = 0
    },
    {.name = "iface-define",
     .handler = cmdInterfaceDefine,
     .opts = opts_interface_define,
     .info = info_interface_define,
     .flags = 0
    },
    {.name = "iface-destroy",
     .handler = cmdInterfaceDestroy,
     .opts = opts_interface_destroy,
     .info = info_interface_destroy,
     .flags = 0
    },
    {.name = "iface-dumpxml",
     .handler = cmdInterfaceDumpXML,
     .opts = opts_interface_dumpxml,
     .info = info_interface_dumpxml,
     .flags = 0
    },
    {.name = "iface-edit",
     .handler = cmdInterfaceEdit,
     .opts = opts_interface_edit,
     .info = info_interface_edit,
     .flags = 0
    },
    {.name = "iface-list",
     .handler = cmdInterfaceList,
     .opts = opts_interface_list,
     .info = info_interface_list,
     .flags = 0
    },
    {.name = "iface-mac",
     .handler = cmdInterfaceMAC,
     .opts = opts_interface_mac,
     .info = info_interface_mac,
     .flags = 0
    },
    {.name = "iface-name",
     .handler = cmdInterfaceName,
     .opts = opts_interface_name,
     .info = info_interface_name,
     .flags = 0
    },
    {.name = "iface-rollback",
     .handler = cmdInterfaceRollback,
     .opts = opts_interface_rollback,
     .info = info_interface_rollback,
     .flags = 0
    },
    {.name = "iface-start",
     .handler = cmdInterfaceStart,
     .opts = opts_interface_start,
     .info = info_interface_start,
     .flags = 0
    },
    {.name = "iface-unbridge",
     .handler = cmdInterfaceUnbridge,
     .opts = opts_interface_unbridge,
     .info = info_interface_unbridge,
     .flags = 0
    },
    {.name = "iface-undefine",
     .handler = cmdInterfaceUndefine,
     .opts = opts_interface_undefine,
     .info = info_interface_undefine,
     .flags = 0
    },
    {.name = NULL}
1286
};