interface_backend_netcf.c 35.8 KB
Newer Older
1
/*
2 3
 * interface_backend_netcf.c: backend driver methods to handle physical
 *                            interface configuration using the netcf library.
4
 *
5
 * Copyright (C) 2006-2015 Red Hat, Inc.
6 7 8 9 10 11 12 13 14 15 16 17
 *
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26 27
 *
 * Author: Laine Stump <laine@redhat.com>
 */

#include <config.h>

#include <netcf.h>

28
#include "virerror.h"
29
#include "datatypes.h"
30
#include "interface_driver.h"
31
#include "interface_conf.h"
32
#include "viralloc.h"
33
#include "virlog.h"
34 35
#include "virstring.h"
#include "viraccessapicheck.h"
J
John Ferlan 已提交
36
#include "virinterfaceobj.h"
37 38 39

#define VIR_FROM_THIS VIR_FROM_INTERFACE

40 41
VIR_LOG_INIT("interface.interface_backend_netcf");

42 43
#define INTERFACE_DRIVER_NAME "netcf"

44
/* Main driver state */
45
typedef struct
46
{
47
    virObjectLockable parent;
48
    struct netcf *netcf;
49
    bool privileged;
50
} virNetcfDriverState, *virNetcfDriverStatePtr;
51

52 53
static virClassPtr virNetcfDriverStateClass;
static void virNetcfDriverStateDispose(void *obj);
54

55 56 57 58 59 60 61 62 63 64 65 66 67
static int
virNetcfDriverStateOnceInit(void)
{
    if (!(virNetcfDriverStateClass = virClassNew(virClassForObjectLockable(),
                                       "virNetcfDriverState",
                                       sizeof(virNetcfDriverState),
                                       virNetcfDriverStateDispose)))
        return -1;
    return 0;
}

VIR_ONCE_GLOBAL_INIT(virNetcfDriverState)

68
static virNetcfDriverStatePtr driver;
69 70 71 72


static void
virNetcfDriverStateDispose(void *obj)
73
{
74
    virNetcfDriverStatePtr _driver = obj;
75

76 77
    if (_driver->netcf)
        ncf_close(_driver->netcf);
78 79 80 81
}


static int
82
netcfStateInitialize(bool privileged,
83 84 85 86 87 88
                     virStateInhibitCallback callback ATTRIBUTE_UNUSED,
                     void *opaque ATTRIBUTE_UNUSED)
{
    if (virNetcfDriverStateInitialize() < 0)
        return -1;

89
    if (!(driver = virObjectLockableNew(virNetcfDriverStateClass)))
90 91
        return -1;

92 93
    driver->privileged = privileged;

94
    /* open netcf */
95
    if (ncf_init(&driver->netcf, NULL) != 0) {
96 97
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to initialize netcf"));
98 99
        virObjectUnref(driver);
        driver = NULL;
100 101 102
        return -1;
    }
    return 0;
103 104
}

105 106 107

static int
netcfStateCleanup(void)
108
{
109
    if (!driver)
110 111
        return -1;

112
    if (virObjectUnref(driver)) {
113 114 115 116 117
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Attempt to close netcf state driver "
                         "with open connections"));
        return -1;
    }
118
    driver = NULL;
119
    return 0;
120 121
}

122 123 124 125 126 127

static int
netcfStateReload(void)
{
    int ret = -1;

128
    if (!driver)
129 130
        return 0;

131 132 133
    virObjectLock(driver);
    ncf_close(driver->netcf);
    if (ncf_init(&driver->netcf, NULL) != 0) {
134 135 136 137 138 139 140 141
        /* this isn't a good situation, because we can't shut down the
         * driver as there may still be connections to it. If we set
         * the netcf handle to NULL, any subsequent calls to netcf
         * will just fail rather than causing a crash. Not ideal, but
         * livable (since this should never happen).
         */
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to re-init netcf"));
142
        driver->netcf = NULL;
143 144 145 146
        goto cleanup;
    }

    ret = 0;
147
 cleanup:
148
    virObjectUnlock(driver);
149 150 151 152 153

    return ret;
}


154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
static virDrvOpenStatus
netcfConnectOpen(virConnectPtr conn,
                 virConnectAuthPtr auth ATTRIBUTE_UNUSED,
                 virConfPtr conf ATTRIBUTE_UNUSED,
                 unsigned int flags)
{
    virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);

    /* Verify uri was specified */
    if (conn->uri == NULL) {
        /* Only hypervisor drivers are permitted to auto-open on NULL uri */
        return VIR_DRV_OPEN_DECLINED;
    } else {
        if (STRNEQ_NULLABLE(conn->uri->scheme, "interface"))
            return VIR_DRV_OPEN_DECLINED;

        /* Leave for remote driver */
        if (conn->uri->server != NULL)
            return VIR_DRV_OPEN_DECLINED;

        if (driver == NULL) {
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("interface state driver is not active"));
            return VIR_DRV_OPEN_ERROR;
        }

        if (driver->privileged) {
            if (STRNEQ(conn->uri->path, "/system")) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unexpected interface URI path '%s', try interface:///system"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
        } else {
            if (STRNEQ(conn->uri->path, "/session")) {
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("unexpected interface URI path '%s', try interface:///session"),
                               conn->uri->path);
                return VIR_DRV_OPEN_ERROR;
            }
        }
    }

    if (virConnectOpenEnsureACL(conn) < 0)
        return VIR_DRV_OPEN_ERROR;

    return VIR_DRV_OPEN_SUCCESS;
}

static int netcfConnectClose(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return 0;
}


static int netcfConnectIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* Trivially secure, since always inside the daemon */
    return 1;
}


static int netcfConnectIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    /* Not encrypted, but remote driver takes care of that */
    return 0;
}


static int netcfConnectIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
{
    return 1;
}


229 230 231
/*
 * Get a minimal virInterfaceDef containing enough metadata
 * for access control checks to be performed. Currently
N
Nehal J Wani 已提交
232
 * this implies existence of name and mac address attributes
233 234 235 236 237 238 239
 */
static virInterfaceDef * ATTRIBUTE_NONNULL(1)
netcfGetMinimalDefForDevice(struct netcf_if *iface)
{
    virInterfaceDef *def;

    /* Allocate our interface definition structure */
240
    if (VIR_ALLOC(def) < 0)
241 242 243 244 245 246 247 248 249 250
        return NULL;

    if (VIR_STRDUP(def->name, ncf_if_name(iface)) < 0)
        goto cleanup;

    if (VIR_STRDUP(def->mac, ncf_if_mac_string(iface)) < 0)
        goto cleanup;

    return def;

251
 cleanup:
252 253 254 255 256
    virInterfaceDefFree(def);
    return NULL;
}


257 258
static int netcf_to_vir_err(int netcf_errcode)
{
E
Eric Blake 已提交
259
    switch (netcf_errcode) {
260 261 262 263 264 265 266 267 268 269
        case NETCF_NOERROR:
            /* no error, everything ok */
            return VIR_ERR_OK;
        case NETCF_EINTERNAL:
            /* internal error, aka bug */
            return VIR_ERR_INTERNAL_ERROR;
        case NETCF_EOTHER:
            /* other error, copout for being more specific */
            return VIR_ERR_INTERNAL_ERROR;
        case NETCF_ENOMEM:
270 271 272 273
            /*
             * allocation failed return VIR ERR NO MEMORY
             * though it should not be used now.
             */
274
            return 2;
275 276 277 278 279 280 281 282 283 284 285 286
        case NETCF_EXMLPARSER:
            /* XML parser choked */
            return VIR_ERR_XML_ERROR;
        case NETCF_EXMLINVALID:
            /* XML invalid in some form */
            return VIR_ERR_XML_ERROR;
        case NETCF_ENOENT:
            /* Required entry in a tree is missing */
            return VIR_ERR_INTERNAL_ERROR;
        case NETCF_EEXEC:
            /* external program execution failed or returned non-0 */
            return VIR_ERR_INTERNAL_ERROR;
287 288 289 290 291
#ifdef NETCF_EINVALIDOP
        case NETCF_EINVALIDOP:
            /* attempted operation is invalid while the system is in the current state. */
            return VIR_ERR_OPERATION_INVALID;
#endif
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
        default:
            return VIR_ERR_INTERNAL_ERROR;
    }
}

static struct netcf_if *interfaceDriverGetNetcfIF(struct netcf *ncf, virInterfacePtr ifinfo)
{
    /* 1) caller already has lock,
     * 2) caller cleans up iface on return
     */
    struct netcf_if *iface = ncf_lookup_by_name(ncf, ifinfo->name);
    if (!iface) {
        const char *errmsg, *details;
        int errcode = ncf_error(ncf, &errmsg, &details);
        if (errcode != NETCF_NOERROR) {
307 308 309 310
            virReportError(netcf_to_vir_err(errcode),
                           _("couldn't find interface named '%s': %s%s%s"),
                           ifinfo->name, errmsg, details ? " - " : "",
                           details ? details : "");
311
        } else {
312 313 314
            virReportError(VIR_ERR_NO_INTERFACE,
                           _("couldn't find interface named '%s'"),
                           ifinfo->name);
315 316 317 318 319
        }
    }
    return iface;
}

320 321 322 323 324 325 326
static int
netcfInterfaceObjIsActive(struct netcf_if *iface,
                          bool *active)
{
    int ret = -1;
    unsigned int flags = 0;

327
    virObjectRef(driver);
328 329
    if (ncf_if_status(iface, &flags) < 0) {
        const char *errmsg, *details;
330
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
331 332 333 334 335 336 337 338 339 340
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to get status of interface %s: %s%s%s"),
                       ncf_if_name(iface), errmsg, details ? " - " : "",
                       details ? details : "");
        goto cleanup;
    }

    *active = flags & NETCF_IFACE_ACTIVE;
    ret = 0;

341
 cleanup:
342
    virObjectUnref(driver);
343 344 345
    return ret;
}

346 347 348
static int netcfConnectNumOfInterfacesImpl(virConnectPtr conn,
                                           int status,
                                           virInterfaceObjListFilter filter)
349
{
350 351 352
    int count;
    int want = 0;
    int ret = -1;
353
    size_t i;
354
    char **names = NULL;
355

356 357 358 359
    /* List all interfaces, in case we might support new filter flags
     * beyond active|inactive in future.
     */
    count = ncf_num_of_interfaces(driver->netcf, status);
360 361 362
    if (count < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
363
        virReportError(netcf_to_vir_err(errcode),
364 365 366 367
                       _("failed to get number of host interfaces: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
        goto cleanup;
368 369
    }

370 371 372 373 374
    if (count == 0) {
        ret = 0;
        goto cleanup;
    }

375
    if (VIR_ALLOC_N(names, count) < 0)
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
        goto cleanup;

    if ((count = ncf_list_interfaces(driver->netcf, count, names, status)) < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to list host interfaces: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
        goto cleanup;
    }

    for (i = 0; i < count; i++) {
        virInterfaceDefPtr def;
        struct netcf_if *iface;

        iface = ncf_lookup_by_name(driver->netcf, names[i]);
        if (!iface) {
            const char *errmsg, *details;
            int errcode = ncf_error(driver->netcf, &errmsg, &details);
            if (errcode != NETCF_NOERROR) {
                virReportError(netcf_to_vir_err(errcode),
                               _("couldn't find interface named '%s': %s%s%s"),
                               names[i], errmsg,
                               details ? " - " : "", details ? details : "");
                goto cleanup;
            } else {
                /* Ignore the NETCF_NOERROR, as the interface is very likely
                 * deleted by other management apps (e.g. virt-manager).
                 */
                VIR_WARN("couldn't find interface named '%s', might be "
                         "deleted by other process", names[i]);
                continue;
            }
        }

        if (!(def = netcfGetMinimalDefForDevice(iface))) {
            ncf_if_free(iface);
            goto cleanup;
        }
        ncf_if_free(iface);

        if (!filter(conn, def)) {
            virInterfaceDefFree(def);
            continue;
        }
        virInterfaceDefFree(def);

        want++;
    }

    ret = want;

429
 cleanup:
430
    if (names && count > 0)
431 432 433 434
        for (i = 0; i < count; i++)
            VIR_FREE(names[i]);
    VIR_FREE(names);
    return ret;
435 436
}

437 438 439 440 441

static int netcfConnectListInterfacesImpl(virConnectPtr conn,
                                          int status,
                                          char **const names, int nnames,
                                          virInterfaceObjListFilter filter)
442
{
443 444 445
    int count = 0;
    int want = 0;
    int ret = -1;
446
    size_t i;
447
    char **allnames = NULL;
448

449 450 451 452 453 454 455 456 457 458
    count = ncf_num_of_interfaces(driver->netcf, status);
    if (count < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to get number of host interfaces: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
        goto cleanup;
    }
459

460 461 462 463
    if (count == 0) {
        ret = 0;
        goto cleanup;
    }
464

465
    if (VIR_ALLOC_N(allnames, count) < 0)
466 467 468
        goto cleanup;

    if ((count = ncf_list_interfaces(driver->netcf, count, allnames, status)) < 0) {
469 470
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
471 472 473 474
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to list host interfaces: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
475
        goto cleanup;
476 477
    }

478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
    if (count == 0) {
        ret = 0;
        goto cleanup;
    }

    for (i = 0; i < count && want < nnames; i++) {
        virInterfaceDefPtr def;
        struct netcf_if *iface;

        iface = ncf_lookup_by_name(driver->netcf, allnames[i]);
        if (!iface) {
            const char *errmsg, *details;
            int errcode = ncf_error(driver->netcf, &errmsg, &details);
            if (errcode != NETCF_NOERROR) {
                virReportError(netcf_to_vir_err(errcode),
                               _("couldn't find interface named '%s': %s%s%s"),
                               allnames[i], errmsg,
                               details ? " - " : "", details ? details : "");
                goto cleanup;
            } else {
                /* Ignore the NETCF_NOERROR, as the interface is very likely
                 * deleted by other management apps (e.g. virt-manager).
                 */
                VIR_WARN("couldn't find interface named '%s', might be "
                         "deleted by other process", allnames[i]);
                continue;
            }
        }

        if (!(def = netcfGetMinimalDefForDevice(iface))) {
            ncf_if_free(iface);
            goto cleanup;
        }
        ncf_if_free(iface);

        if (!filter(conn, def)) {
            virInterfaceDefFree(def);
            continue;
        }
        virInterfaceDefFree(def);

        names[want++] = allnames[i];
        allnames[i] = NULL;
    }

    ret = want;

525
 cleanup:
526
    if (allnames && count > 0)
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
        for (i = 0; i < count; i++)
            VIR_FREE(allnames[i]);
    VIR_FREE(allnames);
    if (ret < 0) {
        for (i = 0; i < nnames; i++)
            VIR_FREE(names[i]);
    }
    return ret;
}


static int netcfConnectNumOfInterfaces(virConnectPtr conn)
{
    int count;

    if (virConnectNumOfInterfacesEnsureACL(conn) < 0)
        return -1;

545
    virObjectLock(driver);
546 547 548
    count = netcfConnectNumOfInterfacesImpl(conn,
                                            NETCF_IFACE_ACTIVE,
                                            virConnectNumOfInterfacesCheckACL);
549
    virObjectUnlock(driver);
550 551 552 553 554 555 556 557 558 559
    return count;
}

static int netcfConnectListInterfaces(virConnectPtr conn, char **const names, int nnames)
{
    int count;

    if (virConnectListInterfacesEnsureACL(conn) < 0)
        return -1;

560
    virObjectLock(driver);
561 562 563 564
    count = netcfConnectListInterfacesImpl(conn,
                                           NETCF_IFACE_ACTIVE,
                                           names, nnames,
                                           virConnectListInterfacesCheckACL);
565
    virObjectUnlock(driver);
566 567 568 569
    return count;

}

570
static int netcfConnectNumOfDefinedInterfaces(virConnectPtr conn)
571 572 573
{
    int count;

574 575 576
    if (virConnectNumOfDefinedInterfacesEnsureACL(conn) < 0)
        return -1;

577
    virObjectLock(driver);
578 579 580
    count = netcfConnectNumOfInterfacesImpl(conn,
                                            NETCF_IFACE_INACTIVE,
                                            virConnectNumOfDefinedInterfacesCheckACL);
581
    virObjectUnlock(driver);
582 583 584
    return count;
}

585
static int netcfConnectListDefinedInterfaces(virConnectPtr conn, char **const names, int nnames)
586 587 588
{
    int count;

589 590 591
    if (virConnectListDefinedInterfacesEnsureACL(conn) < 0)
        return -1;

592
    virObjectLock(driver);
593 594 595 596
    count = netcfConnectListInterfacesImpl(conn,
                                           NETCF_IFACE_INACTIVE,
                                           names, nnames,
                                           virConnectListDefinedInterfacesCheckACL);
597
    virObjectUnlock(driver);
598 599 600 601
    return count;

}

602
#define MATCH(FLAG) (flags & (FLAG))
O
Osier Yang 已提交
603
static int
604 605 606
netcfConnectListAllInterfaces(virConnectPtr conn,
                              virInterfacePtr **ifaces,
                              unsigned int flags)
O
Osier Yang 已提交
607 608
{
    int count;
609
    size_t i;
610
    unsigned int ncf_flags = 0;
O
Osier Yang 已提交
611 612 613 614 615 616 617
    struct netcf_if *iface = NULL;
    virInterfacePtr *tmp_iface_objs = NULL;
    virInterfacePtr iface_obj = NULL;
    int niface_objs = 0;
    int ret = -1;
    char **names = NULL;

618
    virCheckFlags(VIR_CONNECT_LIST_INTERFACES_FILTERS_ACTIVE, -1);
O
Osier Yang 已提交
619

620 621 622
    if (virConnectListAllInterfacesEnsureACL(conn) < 0)
        return -1;

623
    virObjectLock(driver);
O
Osier Yang 已提交
624

625 626 627 628 629 630 631 632 633 634 635
    /* let netcf pre-filter for this flag to save time */
    if (MATCH(VIR_CONNECT_LIST_INTERFACES_FILTERS_ACTIVE)) {
        if (MATCH(VIR_CONNECT_LIST_INTERFACES_ACTIVE))
            ncf_flags |= NETCF_IFACE_ACTIVE;
        if (MATCH(VIR_CONNECT_LIST_INTERFACES_INACTIVE))
            ncf_flags |= NETCF_IFACE_INACTIVE;
    } else {
        ncf_flags = NETCF_IFACE_ACTIVE | NETCF_IFACE_INACTIVE;
    }

    if ((count = ncf_num_of_interfaces(driver->netcf, ncf_flags)) < 0) {
O
Osier Yang 已提交
636 637
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
638

O
Osier Yang 已提交
639 640 641 642 643 644 645 646 647 648 649 650
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to get number of host interfaces: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
        goto cleanup;
    }

    if (count == 0) {
        ret = 0;
        goto cleanup;
    }

651
    if (VIR_ALLOC_N(names, count) < 0)
O
Osier Yang 已提交
652 653
        goto cleanup;

654 655
    if ((count = ncf_list_interfaces(driver->netcf, count,
                                     names, ncf_flags)) < 0) {
O
Osier Yang 已提交
656 657
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
658

O
Osier Yang 已提交
659 660 661 662 663 664 665
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to list host interfaces: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
        goto cleanup;
    }

666 667
    if (ifaces && VIR_ALLOC_N(tmp_iface_objs, count + 1) < 0)
        goto cleanup;
O
Osier Yang 已提交
668 669

    for (i = 0; i < count; i++) {
670
        virInterfaceDefPtr def;
671

O
Osier Yang 已提交
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
        iface = ncf_lookup_by_name(driver->netcf, names[i]);
        if (!iface) {
            const char *errmsg, *details;
            int errcode = ncf_error(driver->netcf, &errmsg, &details);
            if (errcode != NETCF_NOERROR) {
                virReportError(netcf_to_vir_err(errcode),
                               _("couldn't find interface named '%s': %s%s%s"),
                               names[i], errmsg,
                               details ? " - " : "", details ? details : "");
                goto cleanup;
            } else {
                /* Ignore the NETCF_NOERROR, as the interface is very likely
                 * deleted by other management apps (e.g. virt-manager).
                 */
                VIR_WARN("couldn't find interface named '%s', might be "
                         "deleted by other process", names[i]);
                continue;
            }
        }

692 693 694 695 696 697 698 699 700
        if (!(def = netcfGetMinimalDefForDevice(iface)))
            goto cleanup;

        if (!virConnectListAllInterfacesCheckACL(conn, def)) {
            ncf_if_free(iface);
            iface = NULL;
            virInterfaceDefFree(def);
            continue;
        }
701 702

        if (ifaces) {
703 704
            if (!(iface_obj = virGetInterface(conn, def->name, def->mac))) {
                virInterfaceDefFree(def);
705
                goto cleanup;
706
            }
707
            tmp_iface_objs[niface_objs] = iface_obj;
O
Osier Yang 已提交
708
        }
709
        niface_objs++;
O
Osier Yang 已提交
710

711
        virInterfaceDefFree(def);
O
Osier Yang 已提交
712 713 714 715 716 717 718 719 720 721 722 723 724
        ncf_if_free(iface);
        iface = NULL;
    }

    if (tmp_iface_objs) {
        /* trim the array to the final size */
        ignore_value(VIR_REALLOC_N(tmp_iface_objs, niface_objs + 1));
        *ifaces = tmp_iface_objs;
        tmp_iface_objs = NULL;
    }

    ret = niface_objs;

725
 cleanup:
O
Osier Yang 已提交
726 727
    ncf_if_free(iface);

728
    if (names && count > 0)
O
Osier Yang 已提交
729 730 731 732 733
        for (i = 0; i < count; i++)
            VIR_FREE(names[i]);
    VIR_FREE(names);

    if (tmp_iface_objs) {
734 735
        for (i = 0; i < niface_objs; i++)
            virObjectUnref(tmp_iface_objs[i]);
736
        VIR_FREE(tmp_iface_objs);
O
Osier Yang 已提交
737 738
    }

739
    virObjectUnlock(driver);
O
Osier Yang 已提交
740 741 742 743
    return ret;
}


744 745
static virInterfacePtr netcfInterfaceLookupByName(virConnectPtr conn,
                                                  const char *name)
746 747 748
{
    struct netcf_if *iface;
    virInterfacePtr ret = NULL;
749
    virInterfaceDefPtr def = NULL;
750

751
    virObjectLock(driver);
752 753 754 755 756
    iface = ncf_lookup_by_name(driver->netcf, name);
    if (!iface) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
        if (errcode != NETCF_NOERROR) {
757 758 759 760
            virReportError(netcf_to_vir_err(errcode),
                           _("couldn't find interface named '%s': %s%s%s"),
                           name, errmsg,
                           details ? " - " : "", details ? details : "");
761
        } else {
762 763
            virReportError(VIR_ERR_NO_INTERFACE,
                           _("couldn't find interface named '%s'"), name);
764 765 766 767
        }
        goto cleanup;
    }

768 769 770 771 772 773
    if (!(def = netcfGetMinimalDefForDevice(iface)))
        goto cleanup;

    if (virInterfaceLookupByNameEnsureACL(conn, def) < 0)
       goto cleanup;

774
    ret = virGetInterface(conn, def->name, def->mac);
775

776
 cleanup:
777
    ncf_if_free(iface);
778
    virInterfaceDefFree(def);
779
    virObjectUnlock(driver);
780 781 782
    return ret;
}

783 784
static virInterfacePtr netcfInterfaceLookupByMACString(virConnectPtr conn,
                                                       const char *macstr)
785 786 787 788
{
    struct netcf_if *iface;
    int niface;
    virInterfacePtr ret = NULL;
789
    virInterfaceDefPtr def = NULL;
790

791
    virObjectLock(driver);
792 793 794 795 796
    niface = ncf_lookup_by_mac_string(driver->netcf, macstr, 1, &iface);

    if (niface < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
797 798 799 800
        virReportError(netcf_to_vir_err(errcode),
                       _("couldn't find interface with MAC address '%s': %s%s%s"),
                       macstr, errmsg, details ? " - " : "",
                       details ? details : "");
801 802 803
        goto cleanup;
    }
    if (niface == 0) {
804 805 806
        virReportError(VIR_ERR_NO_INTERFACE,
                       _("couldn't find interface with MAC address '%s'"),
                       macstr);
807 808 809
        goto cleanup;
    }
    if (niface > 1) {
810 811
        virReportError(VIR_ERR_MULTIPLE_INTERFACES,
                       "%s", _("multiple interfaces with matching MAC address"));
812 813 814
        goto cleanup;
    }

815 816 817 818 819 820 821

    if (!(def = netcfGetMinimalDefForDevice(iface)))
        goto cleanup;

    if (virInterfaceLookupByMACStringEnsureACL(conn, def) < 0)
       goto cleanup;

822
    ret = virGetInterface(conn, def->name, def->mac);
823

824
 cleanup:
825
    ncf_if_free(iface);
826
    virInterfaceDefFree(def);
827
    virObjectUnlock(driver);
828 829 830
    return ret;
}

831 832
static char *netcfInterfaceGetXMLDesc(virInterfacePtr ifinfo,
                                      unsigned int flags)
833 834 835 836 837
{
    struct netcf_if *iface = NULL;
    char *xmlstr = NULL;
    virInterfaceDefPtr ifacedef = NULL;
    char *ret = NULL;
838
    bool active;
839

840 841
    virCheckFlags(VIR_INTERFACE_XML_INACTIVE, NULL);

842
    virObjectLock(driver);
843 844 845 846 847 848 849

    iface = interfaceDriverGetNetcfIF(driver->netcf, ifinfo);
    if (!iface) {
        /* helper already reported error */
        goto cleanup;
    }

850 851 852 853
    if (netcfInterfaceObjIsActive(iface, &active) < 0)
       goto cleanup;

    if ((flags & VIR_INTERFACE_XML_INACTIVE) || !active) {
854 855 856 857
        xmlstr = ncf_if_xml_desc(iface);
    } else {
        xmlstr = ncf_if_xml_state(iface);
    }
858 859 860
    if (!xmlstr) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
861 862 863 864
        virReportError(netcf_to_vir_err(errcode),
                       _("could not get interface XML description: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
865 866 867
        goto cleanup;
    }

868
    ifacedef = virInterfaceDefParseString(xmlstr);
869 870 871 872 873
    if (!ifacedef) {
        /* error was already reported */
        goto cleanup;
    }

874 875 876
    if (virInterfaceGetXMLDescEnsureACL(ifinfo->conn, ifacedef) < 0)
        goto cleanup;

877
    ret = virInterfaceDefFormat(ifacedef);
878 879 880 881 882
    if (!ret) {
        /* error was already reported */
        goto cleanup;
    }

883
 cleanup:
884 885 886
    ncf_if_free(iface);
    VIR_FREE(xmlstr);
    virInterfaceDefFree(ifacedef);
887
    virObjectUnlock(driver);
888 889 890
    return ret;
}

891 892 893
static virInterfacePtr netcfInterfaceDefineXML(virConnectPtr conn,
                                               const char *xml,
                                               unsigned int flags)
894 895 896 897 898 899
{
    struct netcf_if *iface = NULL;
    char *xmlstr = NULL;
    virInterfaceDefPtr ifacedef = NULL;
    virInterfacePtr ret = NULL;

900 901
    virCheckFlags(0, NULL);

902
    virObjectLock(driver);
903

904
    ifacedef = virInterfaceDefParseString(xml);
905 906 907 908 909
    if (!ifacedef) {
        /* error was already reported */
        goto cleanup;
    }

910 911 912
    if (virInterfaceDefineXMLEnsureACL(conn, ifacedef) < 0)
        goto cleanup;

913
    xmlstr = virInterfaceDefFormat(ifacedef);
914 915 916 917 918 919 920 921 922
    if (!xmlstr) {
        /* error was already reported */
        goto cleanup;
    }

    iface = ncf_define(driver->netcf, xmlstr);
    if (!iface) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
923 924 925 926
        virReportError(netcf_to_vir_err(errcode),
                       _("could not get interface XML description: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
927 928 929 930 931
        goto cleanup;
    }

    ret = virGetInterface(conn, ncf_if_name(iface), ncf_if_mac_string(iface));

932
 cleanup:
933 934 935
    ncf_if_free(iface);
    VIR_FREE(xmlstr);
    virInterfaceDefFree(ifacedef);
936
    virObjectUnlock(driver);
937 938 939
    return ret;
}

940 941
static int netcfInterfaceUndefine(virInterfacePtr ifinfo)
{
942
    struct netcf_if *iface = NULL;
943
    virInterfaceDefPtr def = NULL;
944 945
    int ret = -1;

946
    virObjectLock(driver);
947 948 949 950 951 952 953

    iface = interfaceDriverGetNetcfIF(driver->netcf, ifinfo);
    if (!iface) {
        /* helper already reported error */
        goto cleanup;
    }

954 955 956 957 958 959 960

    if (!(def = netcfGetMinimalDefForDevice(iface)))
        goto cleanup;

    if (virInterfaceUndefineEnsureACL(ifinfo->conn, def) < 0)
       goto cleanup;

961 962 963 964
    ret = ncf_if_undefine(iface);
    if (ret < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
965 966 967 968
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to undefine interface %s: %s%s%s"),
                       ifinfo->name, errmsg, details ? " - " : "",
                       details ? details : "");
969 970 971
        goto cleanup;
    }

972
 cleanup:
973
    ncf_if_free(iface);
974
    virInterfaceDefFree(def);
975
    virObjectUnlock(driver);
976 977 978
    return ret;
}

979 980
static int netcfInterfaceCreate(virInterfacePtr ifinfo,
                                unsigned int flags)
981 982
{
    struct netcf_if *iface = NULL;
983
    virInterfaceDefPtr def = NULL;
984
    int ret = -1;
985
    bool active;
986

987 988
    virCheckFlags(0, -1);

989
    virObjectLock(driver);
990 991 992 993 994 995 996

    iface = interfaceDriverGetNetcfIF(driver->netcf, ifinfo);
    if (!iface) {
        /* helper already reported error */
        goto cleanup;
    }

997 998 999 1000 1001 1002 1003

    if (!(def = netcfGetMinimalDefForDevice(iface)))
        goto cleanup;

    if (virInterfaceCreateEnsureACL(ifinfo->conn, def) < 0)
       goto cleanup;

1004 1005 1006 1007 1008 1009 1010 1011 1012
    if (netcfInterfaceObjIsActive(iface, &active) < 0)
        goto cleanup;

    if (active) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("interface is already running"));
        goto cleanup;
    }

1013 1014 1015 1016
    ret = ncf_if_up(iface);
    if (ret < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
1017 1018 1019 1020
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to create (start) interface %s: %s%s%s"),
                       ifinfo->name, errmsg, details ? " - " : "",
                       details ? details : "");
1021 1022 1023
        goto cleanup;
    }

1024
 cleanup:
1025
    ncf_if_free(iface);
1026
    virInterfaceDefFree(def);
1027
    virObjectUnlock(driver);
1028 1029 1030
    return ret;
}

1031 1032
static int netcfInterfaceDestroy(virInterfacePtr ifinfo,
                                 unsigned int flags)
1033 1034
{
    struct netcf_if *iface = NULL;
1035
    virInterfaceDefPtr def = NULL;
1036
    int ret = -1;
1037
    bool active;
1038

1039 1040
    virCheckFlags(0, -1);

1041
    virObjectLock(driver);
1042 1043 1044 1045 1046 1047 1048

    iface = interfaceDriverGetNetcfIF(driver->netcf, ifinfo);
    if (!iface) {
        /* helper already reported error */
        goto cleanup;
    }

1049 1050 1051 1052 1053 1054 1055

    if (!(def = netcfGetMinimalDefForDevice(iface)))
        goto cleanup;

    if (virInterfaceDestroyEnsureACL(ifinfo->conn, def) < 0)
       goto cleanup;

1056 1057 1058 1059 1060 1061 1062 1063 1064
    if (netcfInterfaceObjIsActive(iface, &active) < 0)
        goto cleanup;

    if (!active) {
        virReportError(VIR_ERR_OPERATION_INVALID, "%s",
                       _("interface is not running"));
        goto cleanup;
    }

1065 1066 1067 1068
    ret = ncf_if_down(iface);
    if (ret < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
1069 1070 1071 1072
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to destroy (stop) interface %s: %s%s%s"),
                       ifinfo->name, errmsg, details ? " - " : "",
                       details ? details : "");
1073 1074 1075
        goto cleanup;
    }

1076
 cleanup:
1077
    ncf_if_free(iface);
1078
    virInterfaceDefFree(def);
1079
    virObjectUnlock(driver);
1080 1081 1082
    return ret;
}

1083
static int netcfInterfaceIsActive(virInterfacePtr ifinfo)
1084 1085
{
    struct netcf_if *iface = NULL;
1086
    virInterfaceDefPtr def = NULL;
1087
    int ret = -1;
1088
    bool active;
1089

1090
    virObjectLock(driver);
1091 1092 1093 1094 1095 1096 1097

    iface = interfaceDriverGetNetcfIF(driver->netcf, ifinfo);
    if (!iface) {
        /* helper already reported error */
        goto cleanup;
    }

1098 1099 1100 1101 1102 1103
    if (!(def = netcfGetMinimalDefForDevice(iface)))
        goto cleanup;

    if (virInterfaceIsActiveEnsureACL(ifinfo->conn, def) < 0)
       goto cleanup;

1104
    if (netcfInterfaceObjIsActive(iface, &active) < 0)
1105 1106
        goto cleanup;

1107
    ret = active ? 1 : 0;
1108

1109
 cleanup:
1110
    ncf_if_free(iface);
1111
    virInterfaceDefFree(def);
1112
    virObjectUnlock(driver);
1113 1114 1115
    return ret;
}

1116
#ifdef HAVE_NETCF_TRANSACTIONS
1117
static int netcfInterfaceChangeBegin(virConnectPtr conn, unsigned int flags)
1118 1119 1120 1121 1122
{
    int ret;

    virCheckFlags(0, -1); /* currently flags must be 0 */

1123 1124 1125
    if (virInterfaceChangeBeginEnsureACL(conn) < 0)
        return -1;

1126
    virObjectLock(driver);
1127 1128 1129 1130 1131

    ret = ncf_change_begin(driver->netcf, 0);
    if (ret < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
1132 1133 1134 1135
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to begin transaction: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
1136 1137
    }

1138
    virObjectUnlock(driver);
1139 1140 1141
    return ret;
}

1142
static int netcfInterfaceChangeCommit(virConnectPtr conn, unsigned int flags)
1143 1144 1145 1146 1147
{
    int ret;

    virCheckFlags(0, -1); /* currently flags must be 0 */

1148 1149 1150
    if (virInterfaceChangeCommitEnsureACL(conn) < 0)
        return -1;

1151
    virObjectLock(driver);
1152 1153 1154 1155 1156

    ret = ncf_change_commit(driver->netcf, 0);
    if (ret < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
1157 1158 1159 1160
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to commit transaction: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
1161 1162
    }

1163
    virObjectUnlock(driver);
1164 1165 1166
    return ret;
}

1167
static int netcfInterfaceChangeRollback(virConnectPtr conn, unsigned int flags)
1168 1169 1170 1171 1172
{
    int ret;

    virCheckFlags(0, -1); /* currently flags must be 0 */

1173 1174 1175
    if (virInterfaceChangeRollbackEnsureACL(conn) < 0)
        return -1;

1176
    virObjectLock(driver);
1177 1178 1179 1180 1181

    ret = ncf_change_rollback(driver->netcf, 0);
    if (ret < 0) {
        const char *errmsg, *details;
        int errcode = ncf_error(driver->netcf, &errmsg, &details);
1182 1183 1184 1185
        virReportError(netcf_to_vir_err(errcode),
                       _("failed to rollback transaction: %s%s%s"),
                       errmsg, details ? " - " : "",
                       details ? details : "");
1186 1187
    }

1188
    virObjectUnlock(driver);
1189 1190 1191 1192
    return ret;
}
#endif /* HAVE_NETCF_TRANSACTIONS */

1193
static virInterfaceDriver interfaceDriver = {
1194
    .name = INTERFACE_DRIVER_NAME,
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
    .connectNumOfInterfaces = netcfConnectNumOfInterfaces, /* 0.7.0 */
    .connectListInterfaces = netcfConnectListInterfaces, /* 0.7.0 */
    .connectNumOfDefinedInterfaces = netcfConnectNumOfDefinedInterfaces, /* 0.7.0 */
    .connectListDefinedInterfaces = netcfConnectListDefinedInterfaces, /* 0.7.0 */
    .connectListAllInterfaces = netcfConnectListAllInterfaces, /* 0.10.2 */
    .interfaceLookupByName = netcfInterfaceLookupByName, /* 0.7.0 */
    .interfaceLookupByMACString = netcfInterfaceLookupByMACString, /* 0.7.0 */
    .interfaceGetXMLDesc = netcfInterfaceGetXMLDesc, /* 0.7.0 */
    .interfaceDefineXML = netcfInterfaceDefineXML, /* 0.7.0 */
    .interfaceUndefine = netcfInterfaceUndefine, /* 0.7.0 */
    .interfaceCreate = netcfInterfaceCreate, /* 0.7.0 */
    .interfaceDestroy = netcfInterfaceDestroy, /* 0.7.0 */
    .interfaceIsActive = netcfInterfaceIsActive, /* 0.7.3 */
1208
#ifdef HAVE_NETCF_TRANSACTIONS
1209 1210 1211
    .interfaceChangeBegin = netcfInterfaceChangeBegin, /* 0.9.2 */
    .interfaceChangeCommit = netcfInterfaceChangeCommit, /* 0.9.2 */
    .interfaceChangeRollback = netcfInterfaceChangeRollback, /* 0.9.2 */
1212
#endif /* HAVE_NETCF_TRANSACTIONS */
1213 1214
};

1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231

static virHypervisorDriver interfaceHypervisorDriver = {
    .name = "interface",
    .connectOpen = netcfConnectOpen, /* 4.1.0 */
    .connectClose = netcfConnectClose, /* 4.1.0 */
    .connectIsEncrypted = netcfConnectIsEncrypted, /* 4.1.0 */
    .connectIsSecure = netcfConnectIsSecure, /* 4.1.0 */
    .connectIsAlive = netcfConnectIsAlive, /* 4.1.0 */
};


static virConnectDriver interfaceConnectDriver = {
    .hypervisorDriver = &interfaceHypervisorDriver,
    .interfaceDriver = &interfaceDriver,
};


1232 1233 1234 1235 1236 1237 1238
static virStateDriver interfaceStateDriver = {
    .name = INTERFACE_DRIVER_NAME,
    .stateInitialize = netcfStateInitialize,
    .stateCleanup = netcfStateCleanup,
    .stateReload = netcfStateReload,
};

1239 1240
int netcfIfaceRegister(void)
{
1241 1242
    if (virRegisterConnectDriver(&interfaceConnectDriver, false) < 0)
        return -1;
1243
    if (virSetSharedInterfaceDriver(&interfaceDriver) < 0)
1244
        return -1;
1245 1246
    if (virRegisterStateDriver(&interfaceStateDriver) < 0)
        return -1;
1247 1248
    return 0;
}