interface_backend_udev.c 35.7 KB
Newer Older
1 2 3
/*
 * interface_backend_udev.c: udev backend for virInterface
 *
4
 * Copyright (C) 2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * Copyright (C) 2012 Doug Goldstein <cardoe@cardoe.com>
 *
 * 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
 * License along with this library;  If not, see
 * <http://www.gnu.org/licenses/>.
 */
#include <config.h>

23 24
#include <errno.h>
#include <dirent.h>
25 26
#include <libudev.h>

27
#include "virerror.h"
28
#include "virfile.h"
29
#include "c-ctype.h"
30
#include "datatypes.h"
31
#include "domain_conf.h"
32 33
#include "interface_driver.h"
#include "interface_conf.h"
34
#include "viralloc.h"
35
#include "virstring.h"
36
#include "viraccessapicheck.h"
J
John Ferlan 已提交
37
#include "virinterfaceobj.h"
38
#include "virnetdev.h"
39 40 41 42 43 44 45 46 47 48 49

#define VIR_FROM_THIS VIR_FROM_INTERFACE

struct udev_iface_driver {
    struct udev *udev;
};

typedef enum {
    VIR_UDEV_IFACE_ACTIVE,
    VIR_UDEV_IFACE_INACTIVE,
    VIR_UDEV_IFACE_ALL
50
} virUdevStatus;
51

52 53
static struct udev_iface_driver *driver;

54
static virInterfaceDef *udevGetIfaceDef(struct udev *udev, const char *name);
55

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
static const char *
virUdevStatusString(virUdevStatus status)
{
    switch (status) {
        case VIR_UDEV_IFACE_ACTIVE:
            return "active";
        case VIR_UDEV_IFACE_INACTIVE:
            return "inactive";
        case VIR_UDEV_IFACE_ALL:
            return "all";
    }

    return "";
}

71 72 73
/*
 * Get a minimal virInterfaceDef containing enough metadata
 * for access control checks to be performed. Currently
N
Nehal J Wani 已提交
74
 * this implies existence of name and mac address attributes
75 76 77 78 79 80 81
 */
static virInterfaceDef * ATTRIBUTE_NONNULL(1)
udevGetMinimalDefForDevice(struct udev_device *dev)
{
    virInterfaceDef *def;

    /* Allocate our interface definition structure */
82
    if (VIR_ALLOC(def) < 0)
83 84 85 86 87 88 89 90 91 92
        return NULL;

    if (VIR_STRDUP(def->name, udev_device_get_sysname(dev)) < 0)
        goto cleanup;

    if (VIR_STRDUP(def->mac, udev_device_get_sysattr_value(dev, "address")) < 0)
        goto cleanup;

    return def;

93
 cleanup:
94 95 96 97 98
    virInterfaceDefFree(def);
    return NULL;
}


99
static struct udev_enumerate * ATTRIBUTE_NONNULL(1)
100
udevGetDevices(struct udev *udev, virUdevStatus status)
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
{
    struct udev_enumerate *enumerate;

    /* Create a new enumeration to create a list */
    enumerate = udev_enumerate_new(udev);

    if (!enumerate)
        return NULL;

    /* Enumerate all network subsystem devices */
    udev_enumerate_add_match_subsystem(enumerate, "net");

    /* Ignore devices that are part of a bridge */
    udev_enumerate_add_nomatch_sysattr(enumerate, "brport/state", NULL);

    /* State of the device */
    switch (status) {
        case VIR_UDEV_IFACE_ACTIVE:
            udev_enumerate_add_match_sysattr(enumerate, "operstate", "up");
            break;

        case VIR_UDEV_IFACE_INACTIVE:
            udev_enumerate_add_match_sysattr(enumerate, "operstate", "down");
            break;

        case VIR_UDEV_IFACE_ALL:
            break;
    }

    /* We don't want to see the TUN devices that QEMU creates for other guests
     * running on this machine. By saying nomatch NULL, we just are getting
     * devices without the tun_flags sysattr.
     */
    udev_enumerate_add_nomatch_sysattr(enumerate, "tun_flags", NULL);

    return enumerate;
}

static int
140 141
udevNumOfInterfacesByStatus(virConnectPtr conn, virUdevStatus status,
                            virInterfaceObjListFilter filter)
142
{
143
    struct udev *udev = udev_ref(driver->udev);
144 145 146 147 148
    struct udev_enumerate *enumerate = NULL;
    struct udev_list_entry *devices;
    struct udev_list_entry *dev_entry;
    int count = 0;

149
    enumerate = udevGetDevices(udev, status);
150 151 152 153 154 155

    if (!enumerate) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to get number of %s interfaces on host"),
                       virUdevStatusString(status));
        count = -1;
156
        goto cleanup;
157 158 159 160 161 162 163 164 165 166
    }

    /* Do the scan to load up the enumeration */
    udev_enumerate_scan_devices(enumerate);

    /* Get a list we can walk */
    devices = udev_enumerate_get_list_entry(enumerate);

    /* For each item so we can count */
    udev_list_entry_foreach(dev_entry, devices) {
167 168 169 170 171 172 173 174 175 176 177 178
        struct udev_device *dev;
        const char *path;
        virInterfaceDefPtr def;

        path = udev_list_entry_get_name(dev_entry);
        dev = udev_device_new_from_syspath(udev, path);

        def = udevGetMinimalDefForDevice(dev);
        if (filter(conn, def))
            count++;
        udev_device_unref(dev);
        virInterfaceDefFree(def);
179 180
    }

181
 cleanup:
182 183 184 185 186 187 188 189
    if (enumerate)
        udev_enumerate_unref(enumerate);
    udev_unref(udev);

    return count;
}

static int
190 191 192
udevListInterfacesByStatus(virConnectPtr conn,
                           char **const names,
                           int names_len,
193 194
                           virUdevStatus status,
                           virInterfaceObjListFilter filter)
195
{
196
    struct udev *udev = udev_ref(driver->udev);
197 198 199 200 201
    struct udev_enumerate *enumerate = NULL;
    struct udev_list_entry *devices;
    struct udev_list_entry *dev_entry;
    int count = 0;

202
    enumerate = udevGetDevices(udev, status);
203 204 205 206 207

    if (!enumerate) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to get list of %s interfaces on host"),
                       virUdevStatusString(status));
208
        goto error;
209 210 211 212 213 214 215 216 217 218 219 220
    }

    /* Do the scan to load up the enumeration */
    udev_enumerate_scan_devices(enumerate);

    /* Get a list we can walk */
    devices = udev_enumerate_get_list_entry(enumerate);

    /* For each item so we can count */
    udev_list_entry_foreach(dev_entry, devices) {
        struct udev_device *dev;
        const char *path;
221
        virInterfaceDefPtr def;
222 223 224 225 226 227 228

        /* Ensure we won't exceed the size of our array */
        if (count > names_len)
            break;

        path = udev_list_entry_get_name(dev_entry);
        dev = udev_device_new_from_syspath(udev, path);
229 230 231 232 233 234 235 236 237

        def = udevGetMinimalDefForDevice(dev);
        if (filter(conn, def)) {
            if (VIR_STRDUP(names[count], udev_device_get_sysname(dev)) < 0) {
                udev_device_unref(dev);
                virInterfaceDefFree(def);
                goto error;
            }
            count++;
238
        }
239
        udev_device_unref(dev);
240
        virInterfaceDefFree(def);
241 242 243 244 245 246 247
    }

    udev_enumerate_unref(enumerate);
    udev_unref(udev);

    return count;

248
 error:
249 250 251 252 253 254 255 256 257 258 259
    if (enumerate)
        udev_enumerate_unref(enumerate);
    udev_unref(udev);

    for (names_len = 0; names_len < count; names_len++)
        VIR_FREE(names[names_len]);

    return -1;
}

static int
260
udevConnectNumOfInterfaces(virConnectPtr conn)
261
{
262 263 264
    if (virConnectNumOfInterfacesEnsureACL(conn) < 0)
        return -1;

265 266
    return udevNumOfInterfacesByStatus(conn, VIR_UDEV_IFACE_ACTIVE,
                                       virConnectNumOfInterfacesCheckACL);
267 268 269
}

static int
270 271 272
udevConnectListInterfaces(virConnectPtr conn,
                          char **const names,
                          int names_len)
273
{
274 275 276
    if (virConnectListInterfacesEnsureACL(conn) < 0)
        return -1;

277
    return udevListInterfacesByStatus(conn, names, names_len,
278 279
                                      VIR_UDEV_IFACE_ACTIVE,
                                      virConnectListInterfacesCheckACL);
280 281 282
}

static int
283
udevConnectNumOfDefinedInterfaces(virConnectPtr conn)
284
{
285 286 287
    if (virConnectNumOfDefinedInterfacesEnsureACL(conn) < 0)
        return -1;

288 289
    return udevNumOfInterfacesByStatus(conn, VIR_UDEV_IFACE_INACTIVE,
                                       virConnectNumOfDefinedInterfacesCheckACL);
290 291 292
}

static int
293 294 295
udevConnectListDefinedInterfaces(virConnectPtr conn,
                                 char **const names,
                                 int names_len)
296
{
297 298 299
    if (virConnectListDefinedInterfacesEnsureACL(conn) < 0)
        return -1;

300
    return udevListInterfacesByStatus(conn, names, names_len,
301 302
                                      VIR_UDEV_IFACE_INACTIVE,
                                      virConnectListDefinedInterfacesCheckACL);
303 304
}

305
#define MATCH(FLAG) (flags & (FLAG))
306
static int
307 308 309
udevConnectListAllInterfaces(virConnectPtr conn,
                             virInterfacePtr **ifaces,
                             unsigned int flags)
310 311 312 313 314
{
    struct udev *udev;
    struct udev_enumerate *enumerate = NULL;
    struct udev_list_entry *devices;
    struct udev_list_entry *dev_entry;
315
    virInterfacePtr *ifaces_list = NULL;
316 317 318 319 320 321
    virInterfacePtr iface_obj;
    int tmp_count;
    int count = 0;
    int status = 0;
    int ret;

322
    virCheckFlags(VIR_CONNECT_LIST_INTERFACES_FILTERS_ACTIVE, -1);
323

324 325 326
    if (virConnectListAllInterfacesEnsureACL(conn) < 0)
        return -1;

327
    /* Grab a udev reference */
328
    udev = udev_ref(driver->udev);
329 330

    /* List all interfaces in case we support more filter flags in the future */
331
    enumerate = udevGetDevices(udev, VIR_UDEV_IFACE_ALL);
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358

    if (!enumerate) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to get list of %s interfaces on host"),
                       virUdevStatusString(status));
        ret = -1;
        goto cleanup;
    }

    /* Do the scan to load up the enumeration */
    udev_enumerate_scan_devices(enumerate);

    /* Get a list we can walk */
    devices = udev_enumerate_get_list_entry(enumerate);

    /* For each item so we can count */
    udev_list_entry_foreach(dev_entry, devices) {
        count++;
    }

    /* If we've got nothing, exit out */
    if (count == 0) {
        ret = 0;
        goto cleanup;
    }

    /* If we're asked for the ifaces then alloc up memory */
359 360 361
    if (ifaces && VIR_ALLOC_N(ifaces_list, count + 1) < 0) {
        ret = -1;
        goto cleanup;
362 363 364 365 366 367 368 369 370 371 372 373 374 375
    }

    /* Get a list we can walk */
    devices = udev_enumerate_get_list_entry(enumerate);

    /* reset our iterator */
    count = 0;

    /* Walk through each device */
    udev_list_entry_foreach(dev_entry, devices) {
        struct udev_device *dev;
        const char *path;
        const char *name;
        const char *macaddr;
376
        virInterfaceDefPtr def;
377 378 379 380 381 382 383

        path = udev_list_entry_get_name(dev_entry);
        dev = udev_device_new_from_syspath(udev, path);
        name = udev_device_get_sysname(dev);
        macaddr = udev_device_get_sysattr_value(dev, "address");
        status = STREQ(udev_device_get_sysattr_value(dev, "operstate"), "up");

384 385 386 387 388 389 390 391
        def = udevGetMinimalDefForDevice(dev);
        if (!virConnectListAllInterfacesCheckACL(conn, def)) {
            udev_device_unref(dev);
            virInterfaceDefFree(def);
            continue;
        }
        virInterfaceDefFree(def);

392
        /* Filter the results */
393 394 395 396 397 398
        if (MATCH(VIR_CONNECT_LIST_INTERFACES_FILTERS_ACTIVE) &&
            !((MATCH(VIR_CONNECT_LIST_INTERFACES_ACTIVE) && status) ||
              (MATCH(VIR_CONNECT_LIST_INTERFACES_INACTIVE) && !status))) {
            udev_device_unref(dev);
            continue;
        }
399 400

        /* If we matched a filter, then add it */
401 402 403
        if (ifaces) {
            iface_obj = virGetInterface(conn, name, macaddr);
            ifaces_list[count++] = iface_obj;
404
        }
405
        udev_device_unref(dev);
406 407 408 409 410 411 412 413 414 415
    }

    /* Drop our refcounts */
    udev_enumerate_unref(enumerate);
    udev_unref(udev);

    /* Trim the array to its final size */
    if (ifaces) {
        ignore_value(VIR_REALLOC_N(ifaces_list, count + 1));
        *ifaces = ifaces_list;
416
        ifaces_list = NULL;
417 418 419 420
    }

    return count;

421
 cleanup:
422 423 424 425 426 427
    if (enumerate)
        udev_enumerate_unref(enumerate);
    udev_unref(udev);

    if (ifaces) {
        for (tmp_count = 0; tmp_count < count; tmp_count++)
428
            virObjectUnref(ifaces_list[tmp_count]);
429 430 431 432 433 434 435 436 437
    }

    VIR_FREE(ifaces_list);

    return ret;

}

static virInterfacePtr
438
udevInterfaceLookupByName(virConnectPtr conn, const char *name)
439
{
440
    struct udev *udev = udev_ref(driver->udev);
441 442
    struct udev_device *dev;
    virInterfacePtr ret = NULL;
443
    virInterfaceDefPtr def = NULL;
444 445 446 447 448 449 450

    /* get a device reference based on the device name */
    dev = udev_device_new_from_subsystem_sysname(udev, "net", name);
    if (!dev) {
        virReportError(VIR_ERR_NO_INTERFACE,
                       _("couldn't find interface named '%s'"),
                       name);
451
        goto cleanup;
452 453
    }

454 455 456 457 458 459 460
    if (!(def = udevGetMinimalDefForDevice(dev)))
        goto cleanup;

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

    ret = virGetInterface(conn, def->name, def->mac);
461 462
    udev_device_unref(dev);

463
 cleanup:
464
    udev_unref(udev);
465
    virInterfaceDefFree(def);
466 467 468 469 470

    return ret;
}

static virInterfacePtr
471
udevInterfaceLookupByMACString(virConnectPtr conn, const char *macstr)
472
{
473
    struct udev *udev = udev_ref(driver->udev);
474 475 476
    struct udev_enumerate *enumerate = NULL;
    struct udev_list_entry *dev_entry;
    struct udev_device *dev;
477
    virInterfaceDefPtr def = NULL;
478 479
    virInterfacePtr ret = NULL;

480
    enumerate = udevGetDevices(udev, VIR_UDEV_IFACE_ALL);
481 482 483 484 485

    if (!enumerate) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to lookup interface with MAC address '%s'"),
                       macstr);
486
        goto cleanup;
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
    }

    /* Match on MAC */
    udev_enumerate_add_match_sysattr(enumerate, "address", macstr);

    /* Do the scan to load up the enumeration */
    udev_enumerate_scan_devices(enumerate);

    /* Get a list we can walk */
    dev_entry = udev_enumerate_get_list_entry(enumerate);

    /* Check that we got something back */
    if (!dev_entry) {
        virReportError(VIR_ERR_NO_INTERFACE,
                       _("couldn't find interface with MAC address '%s'"),
                       macstr);
503
        goto cleanup;
504 505 506 507 508 509 510
    }

    /* Check that we didn't get multiple items back */
    if (udev_list_entry_get_next(dev_entry)) {
        virReportError(VIR_ERR_MULTIPLE_INTERFACES,
                       _("the MAC address '%s' matches multiple interfaces"),
                       macstr);
511
        goto cleanup;
512 513 514
    }

    dev = udev_device_new_from_syspath(udev, udev_list_entry_get_name(dev_entry));
515 516 517 518 519 520 521 522

    if (!(def = udevGetMinimalDefForDevice(dev)))
        goto cleanup;

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

    ret = virGetInterface(conn, def->name, def->mac);
523 524
    udev_device_unref(dev);

525
 cleanup:
526 527 528
    if (enumerate)
        udev_enumerate_unref(enumerate);
    udev_unref(udev);
529
    virInterfaceDefFree(def);
530 531 532 533

    return ret;
}

534 535 536 537 538 539 540 541
/**
 * Helper function for finding bond slaves using scandir()
 *
 * @param entry - directory entry passed by scandir()
 *
 * @return 1 if we want to add it to scandir's list, 0 if not.
 */
static int
542
udevBondScanDirFilter(const struct dirent *entry)
543 544 545 546 547 548 549 550 551 552 553 554
{
    /* This is ugly so if anyone has a better suggestion, please improve
     * this. Unfortunately the kernel stores everything in the top level
     * interface sysfs entry and references the slaves as slave_eth0 for
     * example.
     */
    if (STRPREFIX(entry->d_name, "slave_"))
        return 1;

    return 0;
}

555
/**
556
 * Helper function for finding bridge members using scandir()
557 558 559 560 561 562
 *
 * @param entry - directory entry passed by scandir()
 *
 * @return 1 if we want to add it to scandir's list, 0 if not.
 */
static int
563
udevBridgeScanDirFilter(const struct dirent *entry)
564 565 566 567
{
    if (STREQ(entry->d_name, ".") || STREQ(entry->d_name, ".."))
        return 0;

568 569 570 571 572
    /* Omit the domain interfaces from the list of bridge attached
     * devices. All we can do is check for the device name matching
     * vnet%d. Improvements to this check are welcome.
     */
    if (strlen(entry->d_name) >= 5) {
573
        if (STRPREFIX(entry->d_name, VIR_NET_GENERATED_TAP_PREFIX) &&
574 575 576 577
            c_isdigit(entry->d_name[4]))
            return 0;
    }

578 579 580 581
    return 1;
}


582 583 584
static int
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
ATTRIBUTE_NONNULL(4) ATTRIBUTE_RETURN_CHECK
585 586 587 588
udevGetIfaceDefBond(struct udev *udev,
                    struct udev_device *dev,
                    const char *name,
                    virInterfaceDef *ifacedef)
589 590 591
{
    struct dirent **slave_list = NULL;
    int slave_count = 0;
592
    size_t i;
593 594 595 596 597 598 599 600 601 602 603 604 605
    const char *tmp_str;
    int tmp_int;

    /* Initial defaults */
    ifacedef->data.bond.target = NULL;
    ifacedef->data.bond.nbItf = 0;
    ifacedef->data.bond.itf = NULL;

    /* Set the bond specifics */
    tmp_str = udev_device_get_sysattr_value(dev, "bonding/downdelay");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bonding/downdelay' for '%s'"), name);
606
        goto error;
607 608 609 610 611
    }
    if (virStrToLong_i(tmp_str, NULL, 10, &tmp_int) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse 'bonding/downdelay' '%s' for '%s'"),
                tmp_str, name);
612
        goto error;
613 614 615 616 617 618 619
    }
    ifacedef->data.bond.downdelay = tmp_int;

    tmp_str = udev_device_get_sysattr_value(dev, "bonding/updelay");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bonding/updelay' for '%s'"), name);
620
        goto error;
621 622 623 624 625
    }
    if (virStrToLong_i(tmp_str, NULL, 10, &tmp_int) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse 'bonding/updelay' '%s' for '%s'"),
                tmp_str, name);
626
        goto error;
627 628 629 630 631 632 633
    }
    ifacedef->data.bond.updelay = tmp_int;

    tmp_str = udev_device_get_sysattr_value(dev, "bonding/miimon");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bonding/miimon' for '%s'"), name);
634
        goto error;
635 636 637 638 639
    }
    if (virStrToLong_i(tmp_str, NULL, 10, &tmp_int) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse 'bonding/miimon' '%s' for '%s'"),
                tmp_str, name);
640
        goto error;
641 642 643 644 645 646 647
    }
    ifacedef->data.bond.frequency = tmp_int;

    tmp_str = udev_device_get_sysattr_value(dev, "bonding/arp_interval");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bonding/arp_interval' for '%s'"), name);
648
        goto error;
649 650 651 652 653
    }
    if (virStrToLong_i(tmp_str, NULL, 10, &tmp_int) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse 'bonding/arp_interval' '%s' for '%s'"),
                tmp_str, name);
654
        goto error;
655 656 657 658 659 660 661 662 663 664 665 666
    }
    ifacedef->data.bond.interval = tmp_int;

    /* bonding/mode is in the format: "balance-rr 0" so we find the
     * space and increment the pointer to get the number and convert
     * it to an interger. libvirt uses 1 through 7 while the raw
     * number is 0 through 6 so increment it by 1.
     */
    tmp_str = udev_device_get_sysattr_value(dev, "bonding/mode");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bonding/mode' for '%s'"), name);
667
        goto error;
668 669 670 671 672
    }
    tmp_str = strchr(tmp_str, ' ');
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Invalid format for 'bonding/mode' for '%s'"), name);
673
        goto error;
674 675 676 677 678
    }
    if (strlen(tmp_str) < 2) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Unable to find correct value in 'bonding/mode' for '%s'"),
                name);
679
        goto error;
680 681 682 683 684
    }
    if (virStrToLong_i(tmp_str + 1, NULL, 10, &tmp_int) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse 'bonding/mode' '%s' for '%s'"),
                tmp_str, name);
685
        goto error;
686 687 688 689 690 691 692 693 694 695 696
    }
    ifacedef->data.bond.mode = tmp_int + 1;

    /* bonding/arp_validate is in the format: "none 0" so we find the
     * space and increment the pointer to get the number and convert
     * it to an interger.
     */
    tmp_str = udev_device_get_sysattr_value(dev, "bonding/arp_validate");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bonding/arp_validate' for '%s'"), name);
697
        goto error;
698 699 700 701 702
    }
    tmp_str = strchr(tmp_str, ' ');
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Invalid format for 'bonding/arp_validate' for '%s'"), name);
703
        goto error;
704 705 706 707 708
    }
    if (strlen(tmp_str) < 2) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Unable to find correct value in 'bonding/arp_validate' "
                "for '%s'"), name);
709
        goto error;
710 711 712 713 714
    }
    if (virStrToLong_i(tmp_str + 1, NULL, 10, &tmp_int) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse 'bonding/arp_validate' '%s' for '%s'"),
                tmp_str, name);
715
        goto error;
716 717 718 719 720 721 722 723
    }
    ifacedef->data.bond.validate = tmp_int;

    /* bonding/use_carrier is 0 or 1 and libvirt stores it as 1 or 2. */
    tmp_str = udev_device_get_sysattr_value(dev, "bonding/use_carrier");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bonding/use_carrier' for '%s'"), name);
724
        goto error;
725 726 727 728 729
    }
    if (virStrToLong_i(tmp_str, NULL, 10, &tmp_int) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse 'bonding/use_carrier' '%s' for '%s'"),
                tmp_str, name);
730
        goto error;
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
    }
    ifacedef->data.bond.carrier = tmp_int + 1;

    /* MII or ARP Monitoring is based on arp_interval and miimon.
     * if arp_interval > 0 then ARP monitoring is in play, if
     * miimon > 0 then MII monitoring is in play.
     */
    if (ifacedef->data.bond.interval > 0)
        ifacedef->data.bond.monit = VIR_INTERFACE_BOND_MONIT_ARP;
    else if (ifacedef->data.bond.frequency > 0)
        ifacedef->data.bond.monit = VIR_INTERFACE_BOND_MONIT_MII;
    else
        ifacedef->data.bond.monit = VIR_INTERFACE_BOND_MONIT_NONE;

    tmp_str = udev_device_get_sysattr_value(dev, "bonding/arp_ip_target");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bonding/arp_ip_target' for '%s'"), name);
749
        goto error;
750
    }
751
    if (VIR_STRDUP(ifacedef->data.bond.target, tmp_str) < 0)
752
        goto error;
753 754 755 756

    /* Slaves of the bond */
    /* Get each slave in the bond */
    slave_count = scandir(udev_device_get_syspath(dev), &slave_list,
757
            udevBondScanDirFilter, alphasort);
758 759 760 761

    if (slave_count < 0) {
        virReportSystemError(errno,
                _("Could not get slaves of bond '%s'"), name);
762
        goto error;
763 764 765
    }

    /* Allocate our list of slave devices */
766
    if (VIR_ALLOC_N(ifacedef->data.bond.itf, slave_count) < 0)
767
        goto error;
768 769 770 771 772 773 774
    ifacedef->data.bond.nbItf = slave_count;

    for (i = 0; i < slave_count; i++) {
        /* Names are slave_interface. e.g. slave_eth0
         * so we use the part after the _
         */
        tmp_str = strchr(slave_list[i]->d_name, '_');
775 776 777 778
        if (!tmp_str || strlen(tmp_str) < 2) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid enslaved interface name '%s' seen for "
                             "bond '%s'"), slave_list[i]->d_name, name);
779
            goto error;
780 781
        }
        /* go past the _ */
782 783 784
        tmp_str++;

        ifacedef->data.bond.itf[i] =
785
            udevGetIfaceDef(udev, tmp_str);
786 787 788 789
        if (!ifacedef->data.bond.itf[i]) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not get interface information for '%s', which is "
                  "a enslaved in bond '%s'"), slave_list[i]->d_name, name);
790
            goto error;
791 792 793 794 795 796 797 798
        }
        VIR_FREE(slave_list[i]);
    }

    VIR_FREE(slave_list);

    return 0;

799
 error:
800
    for (i = 0; slave_count != -1 && i < slave_count; i++)
801 802 803 804 805 806
        VIR_FREE(slave_list[i]);
    VIR_FREE(slave_list);

    return -1;
}

807 808 809
static int
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
ATTRIBUTE_NONNULL(4) ATTRIBUTE_RETURN_CHECK
810 811 812 813
udevGetIfaceDefBridge(struct udev *udev,
                      struct udev_device *dev,
                      const char *name,
                      virInterfaceDef *ifacedef)
814 815 816 817
{
    struct dirent **member_list = NULL;
    int member_count = 0;
    char *member_path;
818
    const char *tmp_str;
819
    int stp;
820
    size_t i;
821 822 823 824

    /* Set our type to Bridge  */
    ifacedef->type = VIR_INTERFACE_TYPE_BRIDGE;

825 826 827 828 829 830 831 832
    /* Retrieve the forward delay */
    tmp_str = udev_device_get_sysattr_value(dev, "bridge/forward_delay");
    if (!tmp_str) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not retrieve 'bridge/forward_delay' for '%s'"), name);
        goto error;
    }

833
    if (VIR_STRDUP(ifacedef->data.bridge.delay, tmp_str) < 0)
834
        goto error;
835

836 837 838
    /* Retrieve Spanning Tree State. Valid values = -1, 0, 1 */
    tmp_str = udev_device_get_sysattr_value(dev, "bridge/stp_state");
    if (!tmp_str) {
839
        virReportError(VIR_ERR_INTERNAL_ERROR,
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
            _("Could not retrieve 'bridge/stp_state' for '%s'"), name);
        goto error;
    }

    if (virStrToLong_i(tmp_str, NULL, 10, &stp) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse 'bridge/stp_state' '%s' for '%s'"),
                tmp_str, name);
        goto error;
    }

    switch (stp) {
    case -1:
    case 0:
    case 1:
        ifacedef->data.bridge.stp = stp;
        break;
    default:
        virReportError(VIR_ERR_INTERNAL_ERROR,
            _("Invalid STP state value %d received for '%s'. Must be "
              "-1, 0, or 1."), stp, name);
        goto error;
862 863 864 865
    }

    /* Members of the bridge */
    if (virAsprintf(&member_path, "%s/%s",
866
                udev_device_get_syspath(dev), "brif") < 0)
867
        goto error;
868 869 870

    /* Get each member of the bridge */
    member_count = scandir(member_path, &member_list,
871
            udevBridgeScanDirFilter, alphasort);
872 873 874 875 876 877 878 879

    /* Don't need the path anymore */
    VIR_FREE(member_path);

    if (member_count < 0) {
        virReportSystemError(errno,
                _("Could not get members of bridge '%s'"),
                name);
880
        goto error;
881 882 883
    }

    /* Allocate our list of member devices */
884
    if (VIR_ALLOC_N(ifacedef->data.bridge.itf, member_count) < 0)
885
        goto error;
886 887
    ifacedef->data.bridge.nbItf = member_count;

N
Nitesh Konkar 已提交
888
    /* Get the interface definitions for each member of the bridge */
889 890
    for (i = 0; i < member_count; i++) {
        ifacedef->data.bridge.itf[i] =
891
            udevGetIfaceDef(udev, member_list[i]->d_name);
892 893 894 895 896 897
        if (!ifacedef->data.bridge.itf[i]) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not get interface information for '%s', which is "
                  "a member of bridge '%s'"), member_list[i]->d_name, name);
            goto error;
        }
898 899 900 901 902 903 904
        VIR_FREE(member_list[i]);
    }

    VIR_FREE(member_list);

    return 0;

905
 error:
906
    for (i = 0; member_count != -1 && i < member_count; i++)
907 908 909 910 911
        VIR_FREE(member_list[i]);
    VIR_FREE(member_list);

    return -1;
}
912

913 914 915
static int
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
ATTRIBUTE_NONNULL(4) ATTRIBUTE_RETURN_CHECK
916 917 918 919
udevGetIfaceDefVlan(struct udev *udev ATTRIBUTE_UNUSED,
                    struct udev_device *dev ATTRIBUTE_UNUSED,
                    const char *name,
                    virInterfaceDef *ifacedef)
920
{
921 922 923 924 925 926 927 928 929 930 931 932 933
    char *procpath = NULL;
    char *buf = NULL;
    char *vid_pos, *dev_pos;
    size_t vid_len, dev_len;
    const char *vid_prefix = "VID: ";
    const char *dev_prefix = "\nDevice: ";
    int ret = -1;

    if (virAsprintf(&procpath, "/proc/net/vlan/%s", name) < 0)
        goto cleanup;

    if (virFileReadAll(procpath, BUFSIZ, &buf) < 0)
        goto cleanup;
934

935
    if ((vid_pos = strstr(buf, vid_prefix)) == NULL) {
936
        virReportError(VIR_ERR_INTERNAL_ERROR,
937 938
                       _("failed to find the VID for the VLAN device '%s'"),
                       name);
939
        goto cleanup;
940
    }
941
    vid_pos += strlen(vid_prefix);
942

943 944 945 946 947 948 949
    if ((vid_len = strspn(vid_pos, "0123456789")) == 0 ||
        !c_isspace(vid_pos[vid_len])) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to find the VID for the VLAN device '%s'"),
                       name);
        goto cleanup;
    }
950

951 952 953 954 955 956 957
    if ((dev_pos = strstr(vid_pos + vid_len, dev_prefix)) == NULL) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to find the real device for the VLAN device '%s'"),
                       name);
        goto cleanup;
    }
    dev_pos += strlen(dev_prefix);
958

959 960 961 962 963 964
    if ((dev_len = strcspn(dev_pos, "\n")) == 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to find the real device for the VLAN device '%s'"),
                       name);
        goto cleanup;
    }
965

966 967
    if (VIR_STRNDUP(ifacedef->data.vlan.tag, vid_pos, vid_len) < 0)
        goto cleanup;
968
    if (VIR_STRNDUP(ifacedef->data.vlan.dev_name, dev_pos, dev_len) < 0) {
969 970 971 972 973 974 975 976 977 978
        VIR_FREE(ifacedef->data.vlan.tag);
        goto cleanup;
    }

    ret = 0;

 cleanup:
    VIR_FREE(procpath);
    VIR_FREE(buf);
    return ret;
979 980
}

981
static virInterfaceDef * ATTRIBUTE_NONNULL(1)
982
udevGetIfaceDef(struct udev *udev, const char *name)
983 984 985 986 987 988
{
    struct udev_device *dev = NULL;
    virInterfaceDef *ifacedef;
    unsigned int mtu;
    const char *mtu_str;
    char *vlan_parent_dev = NULL;
989
    const char *devtype;
990 991

    /* Allocate our interface definition structure */
992
    if (VIR_ALLOC(ifacedef) < 0)
993 994 995 996
        return NULL;

    /* Clear our structure and set safe defaults */
    ifacedef->startmode = VIR_INTERFACE_START_UNSPECIFIED;
997
    if (VIR_STRDUP(ifacedef->name, name) < 0)
998
        goto error;
999 1000 1001 1002 1003 1004

    /* Lookup the device we've been asked about */
    dev = udev_device_new_from_subsystem_sysname(udev, "net", name);
    if (!dev) {
        virReportError(VIR_ERR_NO_INTERFACE,
                       _("couldn't find interface named '%s'"), name);
1005
        goto error;
1006 1007 1008
    }

    /* MAC address */
1009 1010
    if (VIR_STRDUP(ifacedef->mac,
                   udev_device_get_sysattr_value(dev, "address")) < 0)
1011
        goto error;
1012

1013 1014 1015 1016
    /* Link state and speed */
    if (virNetDevGetLinkInfo(ifacedef->name, &ifacedef->lnk) < 0)
        goto error;

1017 1018 1019 1020 1021
    /* MTU */
    mtu_str = udev_device_get_sysattr_value(dev, "mtu");
    if (virStrToLong_ui(mtu_str, NULL, 10, &mtu) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                _("Could not parse MTU value '%s'"), mtu_str);
1022
        goto error;
1023 1024 1025 1026 1027 1028 1029 1030
    }
    ifacedef->mtu = mtu;

    /* Number of IP protocols this interface has assigned */
    /* XXX: Do we want a netlink query or a call out to ip or leave it? */
    ifacedef->nprotos = 0;
    ifacedef->protos = NULL;

1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
    /* Check the type of device we are working with based on the devtype */
    devtype = udev_device_get_devtype(dev);

    /* Set our type to ethernet as the default case */
    ifacedef->type = VIR_INTERFACE_TYPE_ETHERNET;

    if (STREQ_NULLABLE(devtype, "vlan")) {
        /* This only works on modern kernels (3.7 and newer)
         * e949b09b71d975a82f13ac88ce4ad338fed213da
         */
        ifacedef->type = VIR_INTERFACE_TYPE_VLAN;
    } else if (STREQ_NULLABLE(devtype, "bridge")) {
        ifacedef->type = VIR_INTERFACE_TYPE_BRIDGE;
1044 1045 1046
    } else if (STREQ_NULLABLE(devtype, "bond")) {
        /* This only works on modern kernels (3.9 and newer) */
        ifacedef->type = VIR_INTERFACE_TYPE_BOND;
1047 1048 1049 1050 1051 1052 1053 1054
    }

    /* Fallback checks if the devtype check didn't work. */
    if (ifacedef->type == VIR_INTERFACE_TYPE_ETHERNET) {
        /* First check if its a VLAN based on the name containing a dot,
         * to prevent false positives
         */
        vlan_parent_dev = strrchr(name, '.');
1055
        if (vlan_parent_dev)
1056
            ifacedef->type = VIR_INTERFACE_TYPE_VLAN;
1057 1058

        /* Fallback check to see if this is a bond device */
1059
        if (udev_device_get_sysattr_value(dev, "bonding/mode"))
1060
            ifacedef->type = VIR_INTERFACE_TYPE_BOND;
1061 1062 1063 1064
    }

    switch (ifacedef->type) {
    case VIR_INTERFACE_TYPE_VLAN:
1065
        if (udevGetIfaceDefVlan(udev, dev, name, ifacedef) < 0)
1066
            goto error;
1067 1068
        break;
    case VIR_INTERFACE_TYPE_BRIDGE:
1069
        if (udevGetIfaceDefBridge(udev, dev, name, ifacedef) < 0)
1070
            goto error;
1071
        break;
1072
    case VIR_INTERFACE_TYPE_BOND:
1073
        if (udevGetIfaceDefBond(udev, dev, name, ifacedef) < 0)
1074
            goto error;
1075
        break;
1076 1077
    case VIR_INTERFACE_TYPE_ETHERNET:
        break;
1078 1079 1080 1081 1082 1083
    }

    udev_device_unref(dev);

    return ifacedef;

1084
 error:
1085 1086
    udev_device_unref(dev);

1087
    virInterfaceDefFree(ifacedef);
1088 1089 1090 1091 1092

    return NULL;
}

static char *
1093 1094
udevInterfaceGetXMLDesc(virInterfacePtr ifinfo,
                        unsigned int flags)
1095
{
1096
    struct udev *udev = udev_ref(driver->udev);
1097 1098 1099 1100 1101 1102 1103 1104
    virInterfaceDef *ifacedef;
    char *xmlstr = NULL;

    virCheckFlags(VIR_INTERFACE_XML_INACTIVE, NULL);

    /* Recursively build up the interface XML based on the requested
     * interface name
     */
1105
    ifacedef = udevGetIfaceDef(udev, ifinfo->name);
1106 1107

    if (!ifacedef)
1108
        goto cleanup;
1109

1110 1111 1112
    if (virInterfaceGetXMLDescEnsureACL(ifinfo->conn, ifacedef) < 0)
        goto cleanup;

1113 1114
    xmlstr = virInterfaceDefFormat(ifacedef);

1115
    virInterfaceDefFree(ifacedef);
1116

1117
 cleanup:
1118 1119 1120 1121 1122 1123
    /* decrement our udev ptr */
    udev_unref(udev);

    return xmlstr;
}

1124
static int
1125
udevInterfaceIsActive(virInterfacePtr ifinfo)
1126
{
1127
    struct udev *udev = udev_ref(driver->udev);
1128
    struct udev_device *dev;
1129 1130
    virInterfaceDefPtr def = NULL;
    int status = -1;
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140

    dev = udev_device_new_from_subsystem_sysname(udev, "net",
                                                 ifinfo->name);
    if (!dev) {
        virReportError(VIR_ERR_NO_INTERFACE,
                       _("couldn't find interface named '%s'"),
                       ifinfo->name);
        goto cleanup;
    }

1141 1142 1143 1144 1145 1146
    if (!(def = udevGetMinimalDefForDevice(dev)))
        goto cleanup;

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

1147 1148 1149 1150 1151
    /* Check if it's active or not */
    status = STREQ(udev_device_get_sysattr_value(dev, "operstate"), "up");

    udev_device_unref(dev);

1152
 cleanup:
1153
    udev_unref(udev);
1154
    virInterfaceDefFree(def);
1155 1156 1157 1158

    return status;
}

1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195

static int
udevStateInitialize(bool privileged ATTRIBUTE_UNUSED,
                    virStateInhibitCallback callback ATTRIBUTE_UNUSED,
                    void *opaque ATTRIBUTE_UNUSED)
{
    int ret = -1;

    if (VIR_ALLOC(driver) < 0)
        goto cleanup;

    driver->udev = udev_new();
    if (!driver->udev) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to create udev context"));
        goto cleanup;
    }

    ret = 0;

 cleanup:
    return ret;
}

static int
udevStateCleanup(void)
{
    if (!driver)
        return -1;

    udev_unref(driver->udev);

    VIR_FREE(driver);
    return 0;
}


1196
static virInterfaceDriver udevIfaceDriver = {
1197
    .name = "udev",
1198 1199 1200 1201 1202 1203 1204 1205 1206
    .connectNumOfInterfaces = udevConnectNumOfInterfaces, /* 1.0.0 */
    .connectListInterfaces = udevConnectListInterfaces, /* 1.0.0 */
    .connectNumOfDefinedInterfaces = udevConnectNumOfDefinedInterfaces, /* 1.0.0 */
    .connectListDefinedInterfaces = udevConnectListDefinedInterfaces, /* 1.0.0 */
    .connectListAllInterfaces = udevConnectListAllInterfaces, /* 1.0.0 */
    .interfaceLookupByName = udevInterfaceLookupByName, /* 1.0.0 */
    .interfaceLookupByMACString = udevInterfaceLookupByMACString, /* 1.0.0 */
    .interfaceIsActive = udevInterfaceIsActive, /* 1.0.0 */
    .interfaceGetXMLDesc = udevInterfaceGetXMLDesc, /* 1.0.0 */
1207 1208
};

1209 1210 1211 1212 1213 1214
static virStateDriver interfaceStateDriver = {
    .name = "udev",
    .stateInitialize = udevStateInitialize,
    .stateCleanup = udevStateCleanup,
};

1215
int
1216 1217
udevIfaceRegister(void)
{
1218
    if (virSetSharedInterfaceDriver(&udevIfaceDriver) < 0) {
1219 1220 1221 1222
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to register udev interface driver"));
        return -1;
    }
1223 1224
    if (virRegisterStateDriver(&interfaceStateDriver) < 0)
        return -1;
1225 1226
    return 0;
}