node_device_udev.c 51.6 KB
Newer Older
1 2 3
/*
 * node_device_udev.c: node device enumeration - libudev implementation
 *
4
 * Copyright (C) 2009-2014 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
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
19 20 21 22 23 24
 *
 * Author: Dave Allan <dallan@redhat.com>
 */

#include <config.h>
#include <libudev.h>
25
#include <pciaccess.h>
26 27 28
#include <scsi/scsi.h>
#include <c-ctype.h>

29
#include "dirname.h"
30
#include "node_device_udev.h"
31
#include "virerror.h"
32 33 34 35
#include "node_device_conf.h"
#include "node_device_driver.h"
#include "driver.h"
#include "datatypes.h"
36
#include "virlog.h"
37
#include "viralloc.h"
38
#include "viruuid.h"
39
#include "virbuffer.h"
40
#include "virfile.h"
41
#include "virpci.h"
42
#include "virstring.h"
43
#include "virnetdev.h"
44 45 46

#define VIR_FROM_THIS VIR_FROM_NODEDEV

47 48
VIR_LOG_INIT("node_device.node_device_udev");

49 50 51 52
#ifndef TYPE_RAID
# define TYPE_RAID 12
#endif

53 54 55
struct _udevPrivate {
    struct udev_monitor *udev_monitor;
    int watch;
56
    bool privileged;
57 58
};

59 60 61 62 63 64 65 66 67
static int udevStrToLong_ull(char const *s,
                             char **end_ptr,
                             int base,
                             unsigned long long *result)
{
    int ret = 0;

    ret = virStrToLong_ull(s, end_ptr, base, result);
    if (ret != 0) {
68
        VIR_ERROR(_("Failed to convert '%s' to unsigned long long"), s);
69
    } else {
70
        VIR_DEBUG("Converted '%s' to unsigned long %llu", s, *result);
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    }

    return ret;
}


static int udevStrToLong_ui(char const *s,
                            char **end_ptr,
                            int base,
                            unsigned int *result)
{
    int ret = 0;

    ret = virStrToLong_ui(s, end_ptr, base, result);
    if (ret != 0) {
86
        VIR_ERROR(_("Failed to convert '%s' to unsigned int"), s);
87
    } else {
88
        VIR_DEBUG("Converted '%s' to unsigned int %u", s, *result);
89 90 91 92 93 94 95 96 97 98 99 100 101 102
    }

    return ret;
}

static int udevStrToLong_i(char const *s,
                           char **end_ptr,
                           int base,
                           int *result)
{
    int ret = 0;

    ret = virStrToLong_i(s, end_ptr, base, result);
    if (ret != 0) {
103
        VIR_ERROR(_("Failed to convert '%s' to int"), s);
104
    } else {
105
        VIR_DEBUG("Converted '%s' to int %u", s, *result);
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
    }

    return ret;
}

/* This function allocates memory from the heap for the property
 * value.  That memory must be later freed by some other code. */
static int udevGetDeviceProperty(struct udev_device *udev_device,
                                 const char *property_key,
                                 char **property_value)
{
    const char *udev_value = NULL;
    int ret = PROPERTY_FOUND;

    udev_value = udev_device_get_property_value(udev_device, property_key);
    if (udev_value == NULL) {
122 123
        VIR_DEBUG("udev reports device '%s' does not have property '%s'",
                  udev_device_get_sysname(udev_device), property_key);
124 125 126 127 128 129
        ret = PROPERTY_MISSING;
        goto out;
    }

    /* If this allocation is changed, the comment at the beginning
     * of the function must also be changed. */
130
    if (VIR_STRDUP(*property_value, udev_value) < 0) {
131 132 133 134 135
        ret = PROPERTY_ERROR;
        goto out;
    }

    VIR_DEBUG("Found property key '%s' value '%s' "
136
              "for device with sysname '%s'",
137 138 139
              property_key, *property_value,
              udev_device_get_sysname(udev_device));

140
 out:
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
    return ret;
}


static int udevGetStringProperty(struct udev_device *udev_device,
                                 const char *property_key,
                                 char **value)
{
    return udevGetDeviceProperty(udev_device, property_key, value);
}


static int udevGetIntProperty(struct udev_device *udev_device,
                              const char *property_key,
                              int *value,
                              int base)
{
    char *udev_value = NULL;
    int ret = PROPERTY_FOUND;

    ret = udevGetDeviceProperty(udev_device, property_key, &udev_value);

    if (ret == PROPERTY_FOUND) {
164
        if (udevStrToLong_i(udev_value, NULL, base, value) != 0)
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
            ret = PROPERTY_ERROR;
    }

    VIR_FREE(udev_value);
    return ret;
}


static int udevGetUintProperty(struct udev_device *udev_device,
                               const char *property_key,
                               unsigned int *value,
                               int base)
{
    char *udev_value = NULL;
    int ret = PROPERTY_FOUND;

    ret = udevGetDeviceProperty(udev_device, property_key, &udev_value);

    if (ret == PROPERTY_FOUND) {
184
        if (udevStrToLong_ui(udev_value, NULL, base, value) != 0)
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
            ret = PROPERTY_ERROR;
    }

    VIR_FREE(udev_value);
    return ret;
}


/* This function allocates memory from the heap for the property
 * value.  That memory must be later freed by some other code. */
static int udevGetDeviceSysfsAttr(struct udev_device *udev_device,
                                  const char *attr_name,
                                  char **attr_value)
{
    const char *udev_value = NULL;
    int ret = PROPERTY_FOUND;

    udev_value = udev_device_get_sysattr_value(udev_device, attr_name);
    if (udev_value == NULL) {
204 205
        VIR_DEBUG("udev reports device '%s' does not have sysfs attr '%s'",
                  udev_device_get_sysname(udev_device), attr_name);
206 207 208 209 210 211
        ret = PROPERTY_MISSING;
        goto out;
    }

    /* If this allocation is changed, the comment at the beginning
     * of the function must also be changed. */
212
    if (VIR_STRDUP(*attr_value, udev_value) < 0) {
213 214 215 216 217
        ret = PROPERTY_ERROR;
        goto out;
    }

    VIR_DEBUG("Found sysfs attribute '%s' value '%s' "
218
              "for device with sysname '%s'",
219 220 221
              attr_name, *attr_value,
              udev_device_get_sysname(udev_device));

222
 out:
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
    return ret;
}


static int udevGetStringSysfsAttr(struct udev_device *udev_device,
                                  const char *attr_name,
                                  char **value)
{
    char *tmp = NULL;
    int ret = PROPERTY_MISSING;

    ret = udevGetDeviceSysfsAttr(udev_device, attr_name, &tmp);

    if (tmp != NULL && (STREQ(tmp, ""))) {
        VIR_FREE(tmp);
        tmp = NULL;
        ret = PROPERTY_MISSING;
    }

    *value = tmp;

    return ret;
}


static int udevGetIntSysfsAttr(struct udev_device *udev_device,
                               const char *attr_name,
                               int *value,
                               int base)
{
    char *udev_value = NULL;
    int ret = PROPERTY_FOUND;

    ret = udevGetDeviceSysfsAttr(udev_device, attr_name, &udev_value);

    if (ret == PROPERTY_FOUND) {
259
        if (udevStrToLong_i(udev_value, NULL, base, value) != 0)
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
            ret = PROPERTY_ERROR;
    }

    VIR_FREE(udev_value);
    return ret;
}


static int udevGetUintSysfsAttr(struct udev_device *udev_device,
                                const char *attr_name,
                                unsigned int *value,
                                int base)
{
    char *udev_value = NULL;
    int ret = PROPERTY_FOUND;

    ret = udevGetDeviceSysfsAttr(udev_device, attr_name, &udev_value);

    if (ret == PROPERTY_FOUND) {
279
        if (udevStrToLong_ui(udev_value, NULL, base, value) != 0)
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
            ret = PROPERTY_ERROR;
    }

    VIR_FREE(udev_value);
    return ret;
}


static int udevGetUint64SysfsAttr(struct udev_device *udev_device,
                                  const char *attr_name,
                                  unsigned long long *value)
{
    char *udev_value = NULL;
    int ret = PROPERTY_FOUND;

    ret = udevGetDeviceSysfsAttr(udev_device, attr_name, &udev_value);

    if (ret == PROPERTY_FOUND) {
298
        if (udevStrToLong_ull(udev_value, NULL, 0, value) != 0)
299 300 301 302 303 304 305 306 307 308 309 310
            ret = PROPERTY_ERROR;
    }

    VIR_FREE(udev_value);
    return ret;
}


static int udevGenerateDeviceName(struct udev_device *device,
                                  virNodeDeviceDefPtr def,
                                  const char *s)
{
311 312
    int ret = 0;
    size_t i;
313 314
    virBuffer buf = VIR_BUFFER_INITIALIZER;

315
    virBufferAsprintf(&buf, "%s_%s",
316 317 318
                      udev_device_get_subsystem(device),
                      udev_device_get_sysname(device));

319
    if (s != NULL)
320
        virBufferAsprintf(&buf, "_%s", s);
321

322 323
    if (virBufferCheckError(&buf) < 0)
        return -1;
324 325 326

    def->name = virBufferContentAndReset(&buf);

327
    for (i = 0; i < strlen(def->name); i++) {
328
        if (!(c_isalnum(*(def->name + i))))
329 330 331 332 333 334
            *(def->name + i) = '_';
    }

    return ret;
}

335
#if HAVE_UDEV_LOGGING
J
Ján Tomko 已提交
336 337 338 339 340 341 342 343 344
typedef void (*udevLogFunctionPtr)(struct udev *udev,
                                   int priority,
                                   const char *file,
                                   int line,
                                   const char *fn,
                                   const char *format,
                                   va_list args);

static void
345
ATTRIBUTE_FMT_PRINTF(6, 0)
J
Ján Tomko 已提交
346 347 348 349 350 351 352
udevLogFunction(struct udev *udev ATTRIBUTE_UNUSED,
                int priority,
                const char *file,
                int line,
                const char *fn,
                const char *fmt,
                va_list args)
353
{
J
Ján Tomko 已提交
354
    virBuffer buf = VIR_BUFFER_INITIALIZER;
355
    char *format = NULL;
J
Ján Tomko 已提交
356 357 358 359 360 361

    virBufferAdd(&buf, fmt, -1);
    virBufferTrim(&buf, "\n", -1);

    format = virBufferContentAndReset(&buf);

362
    virLogVMessage(&virLogSelf,
J
Ján Tomko 已提交
363 364 365 366
                   virLogPriorityFromSyslog(priority),
                   file, line, fn, NULL, format ? format : fmt, args);

    VIR_FREE(format);
367
}
368
#endif
369 370


371 372 373 374 375
static int udevTranslatePCIIds(unsigned int vendor,
                               unsigned int product,
                               char **vendor_string,
                               char **product_string)
{
376
    int ret = -1;
377 378 379 380 381 382 383 384 385 386 387 388 389 390
    struct pci_id_match m;
    const char *vendor_name = NULL, *device_name = NULL;

    m.vendor_id = vendor;
    m.device_id = product;
    m.subvendor_id = PCI_MATCH_ANY;
    m.subdevice_id = PCI_MATCH_ANY;
    m.device_class = 0;
    m.device_class_mask = 0;
    m.match_data = 0;

    /* pci_get_strings returns void */
    pci_get_strings(&m,
                    &device_name,
391
                    &vendor_name,
392 393 394
                    NULL,
                    NULL);

395 396 397
    if (VIR_STRDUP(*vendor_string, vendor_name) < 0||
        VIR_STRDUP(*product_string, device_name) < 0)
        goto out;
398 399 400

    ret = 0;

401
 out:
402 403 404 405
    return ret;
}


406 407 408
static int udevProcessPCI(struct udev_device *device,
                          virNodeDeviceDefPtr def)
{
409
    const char *syspath = NULL;
410
    union _virNodeDevCapData *data = &def->caps->data;
411
    virPCIDeviceAddress addr;
412 413
    virPCIEDeviceInfoPtr pci_express = NULL;
    virPCIDevicePtr pciDev = NULL;
414
    udevPrivate *priv = driver->privateData;
415
    int tmpGroup, ret = -1;
416
    char *p;
417
    int rc;
418

419
    syspath = udev_device_get_syspath(device);
420 421 422 423 424 425 426 427

    if (udevGetUintProperty(device,
                            "PCI_CLASS",
                            &data->pci_dev.class,
                            16) == PROPERTY_ERROR) {
        goto out;
    }

428
    p = strrchr(syspath, '/');
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460

    if ((p == NULL) || (udevStrToLong_ui(p+1,
                                         &p,
                                         16,
                                         &data->pci_dev.domain) == -1)) {
        goto out;
    }

    if ((p == NULL) || (udevStrToLong_ui(p+1,
                                         &p,
                                         16,
                                         &data->pci_dev.bus) == -1)) {
        goto out;
    }

    if ((p == NULL) || (udevStrToLong_ui(p+1,
                                         &p,
                                         16,
                                         &data->pci_dev.slot) == -1)) {
        goto out;
    }

    if ((p == NULL) || (udevStrToLong_ui(p+1,
                                         &p,
                                         16,
                                         &data->pci_dev.function) == -1)) {
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "vendor",
                             &data->pci_dev.vendor,
461
                             16) == PROPERTY_ERROR) {
462 463 464 465 466 467
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "device",
                             &data->pci_dev.product,
468
                             16) == PROPERTY_ERROR) {
469 470 471
        goto out;
    }

472 473 474 475 476 477
    if (udevTranslatePCIIds(data->pci_dev.vendor,
                            data->pci_dev.product,
                            &data->pci_dev.vendor_name,
                            &data->pci_dev.product_name) != 0) {
        goto out;
    }
478

479
    if (udevGenerateDeviceName(device, def, NULL) != 0)
480 481
        goto out;

482 483 484 485 486 487 488 489 490 491 492 493
    rc = udevGetIntSysfsAttr(device,
                            "numa_node",
                            &data->pci_dev.numa_node,
                            10);
    if (rc == PROPERTY_ERROR) {
        goto out;
    } else if (rc == PROPERTY_MISSING) {
        /* The default value is -1, because it can't be 0
         * as zero is valid node number. */
        data->pci_dev.numa_node = -1;
    }

494
    if (!virPCIGetPhysicalFunction(syspath, &data->pci_dev.physical_function))
495 496
        data->pci_dev.flags |= VIR_NODE_DEV_CAP_FLAG_PCI_PHYSICAL_FUNCTION;

497 498 499 500 501 502 503
    rc = virPCIGetVirtualFunctions(syspath,
                                   &data->pci_dev.virtual_functions,
                                   &data->pci_dev.num_virtual_functions);
    /* Out of memory */
    if (rc < 0)
        goto out;
    else if (!rc && (data->pci_dev.num_virtual_functions > 0))
504
        data->pci_dev.flags |= VIR_NODE_DEV_CAP_FLAG_PCI_VIRTUAL_FUNCTION;
505

506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
    /* iommu group */
    addr.domain = data->pci_dev.domain;
    addr.bus = data->pci_dev.bus;
    addr.slot = data->pci_dev.slot;
    addr.function = data->pci_dev.function;
    tmpGroup = virPCIDeviceAddressGetIOMMUGroupNum(&addr);
    if (tmpGroup == -1) {
        /* error was already reported */
        goto out;
        /* -2 return means there is no iommu_group data */
    } else if (tmpGroup >= 0) {
        if (virPCIDeviceAddressGetIOMMUGroupAddresses(&addr, &data->pci_dev.iommuGroupDevices,
                                                      &data->pci_dev.nIommuGroupDevices) < 0)
            goto out;
        data->pci_dev.iommuGroupNumber = tmpGroup;
    }

523 524 525 526 527 528
    if (!(pciDev = virPCIDeviceNew(data->pci_dev.domain,
                                   data->pci_dev.bus,
                                   data->pci_dev.slot,
                                   data->pci_dev.function)))
        goto out;

529 530
    /* We need to be root to read PCI device configs */
    if (priv->privileged && virPCIDeviceIsPCIExpress(pciDev) > 0) {
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
        if (VIR_ALLOC(pci_express) < 0)
            goto out;

        if (virPCIDeviceHasPCIExpressLink(pciDev) > 0) {
            if (VIR_ALLOC(pci_express->link_cap) < 0 ||
                VIR_ALLOC(pci_express->link_sta) < 0)
                goto out;

            if (virPCIDeviceGetLinkCapSta(pciDev,
                                          &pci_express->link_cap->port,
                                          &pci_express->link_cap->speed,
                                          &pci_express->link_cap->width,
                                          &pci_express->link_sta->speed,
                                          &pci_express->link_sta->width) < 0)
                goto out;

            pci_express->link_sta->port = -1; /* PCIe can't negotiate port. Yet :) */
        }
        data->pci_dev.flags |= VIR_NODE_DEV_CAP_FLAG_PCIE;
        data->pci_dev.pci_express = pci_express;
        pci_express = NULL;
    }

554 555
    ret = 0;

556
 out:
557
    virPCIDeviceFree(pciDev);
558
    virPCIEDeviceInfoFree(pci_express);
559 560 561 562 563 564 565 566 567
    return ret;
}


static int udevProcessUSBDevice(struct udev_device *device,
                                virNodeDeviceDefPtr def)
{
    union _virNodeDevCapData *data = &def->caps->data;
    int ret = -1;
568
    int err;
569 570 571 572

    if (udevGetUintProperty(device,
                            "BUSNUM",
                            &data->usb_dev.bus,
573
                            10) == PROPERTY_ERROR) {
574 575 576 577 578 579
        goto out;
    }

    if (udevGetUintProperty(device,
                            "DEVNUM",
                            &data->usb_dev.device,
580
                            10) == PROPERTY_ERROR) {
581 582 583 584 585 586 587 588 589 590
        goto out;
    }

    if (udevGetUintProperty(device,
                            "ID_VENDOR_ID",
                            &data->usb_dev.vendor,
                            16) == PROPERTY_ERROR) {
        goto out;
    }

591 592 593 594
    err = udevGetStringProperty(device,
                                "ID_VENDOR_FROM_DATABASE",
                                &data->usb_dev.vendor_name);
    if (err == PROPERTY_ERROR)
595
        goto out;
596 597 598 599 600 601
    if (err == PROPERTY_MISSING) {
        if (udevGetStringSysfsAttr(device,
                                  "manufacturer",
                                  &data->usb_dev.vendor_name) == PROPERTY_ERROR) {
            goto out;
        }
602 603 604 605 606
    }

    if (udevGetUintProperty(device,
                            "ID_MODEL_ID",
                            &data->usb_dev.product,
607
                            16) == PROPERTY_ERROR) {
608 609 610
        goto out;
    }

611 612 613 614
    err = udevGetStringProperty(device,
                                "ID_MODEL_FROM_DATABASE",
                                &data->usb_dev.product_name);
    if (err == PROPERTY_ERROR)
615
        goto out;
616 617 618 619 620 621
    if (err == PROPERTY_MISSING) {
        if (udevGetStringSysfsAttr(device,
                                  "product",
                                  &data->usb_dev.product_name) == PROPERTY_ERROR) {
            goto out;
        }
622 623
    }

624
    if (udevGenerateDeviceName(device, def, NULL) != 0)
625 626 627 628
        goto out;

    ret = 0;

629
 out:
630 631 632 633 634 635 636 637 638 639 640 641 642
    return ret;
}


static int udevProcessUSBInterface(struct udev_device *device,
                                   virNodeDeviceDefPtr def)
{
    int ret = -1;
    union _virNodeDevCapData *data = &def->caps->data;

    if (udevGetUintSysfsAttr(device,
                             "bInterfaceNumber",
                             &data->usb_if.number,
643
                             16) == PROPERTY_ERROR) {
644 645 646 647 648 649
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "bInterfaceClass",
                             &data->usb_if._class,
650
                             16) == PROPERTY_ERROR) {
651 652 653 654 655 656
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "bInterfaceSubClass",
                             &data->usb_if.subclass,
657
                             16) == PROPERTY_ERROR) {
658 659 660 661 662 663
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "bInterfaceProtocol",
                             &data->usb_if.protocol,
664
                             16) == PROPERTY_ERROR) {
665 666 667
        goto out;
    }

668
    if (udevGenerateDeviceName(device, def, NULL) != 0)
669 670 671 672
        goto out;

    ret = 0;

673
 out:
674 675 676 677 678 679 680 681
    return ret;
}


static int udevProcessNetworkInterface(struct udev_device *device,
                                       virNodeDeviceDefPtr def)
{
    int ret = -1;
D
David Allan 已提交
682
    const char *devtype = udev_device_get_devtype(device);
683 684
    union _virNodeDevCapData *data = &def->caps->data;

D
David Allan 已提交
685 686 687 688 689 690
    if (devtype && STREQ(devtype, "wlan")) {
        data->net.subtype = VIR_NODE_DEV_CAP_NET_80211;
    } else {
        data->net.subtype = VIR_NODE_DEV_CAP_NET_80203;
    }

691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
    if (udevGetStringProperty(device,
                              "INTERFACE",
                              &data->net.ifname) == PROPERTY_ERROR) {
        goto out;
    }

    if (udevGetStringSysfsAttr(device,
                               "address",
                               &data->net.address) == PROPERTY_ERROR) {
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "addr_len",
                             &data->net.address_len,
                             0) == PROPERTY_ERROR) {
        goto out;
    }

710
    if (udevGenerateDeviceName(device, def, data->net.address) != 0)
711 712
        goto out;

713 714 715
    if (virNetDevGetLinkInfo(data->net.ifname, &data->net.lnk) < 0)
        goto out;

716 717 718
    if (virNetDevGetFeatures(data->net.ifname, &data->net.features) < 0)
        goto out;

719 720
    ret = 0;

721
 out:
722 723 724 725 726 727 728 729 730 731 732
    return ret;
}


static int udevProcessSCSIHost(struct udev_device *device ATTRIBUTE_UNUSED,
                               virNodeDeviceDefPtr def)
{
    int ret = -1;
    union _virNodeDevCapData *data = &def->caps->data;
    char *filename = NULL;

733
    filename = last_component(def->sysfs_path);
734 735

    if (!STRPREFIX(filename, "host")) {
736 737
        VIR_ERROR(_("SCSI host found, but its udev name '%s' does "
                    "not begin with 'host'"), filename);
738 739 740 741 742 743 744 745 746 747
        goto out;
    }

    if (udevStrToLong_ui(filename + strlen("host"),
                         NULL,
                         0,
                         &data->scsi_host.host) == -1) {
        goto out;
    }

O
Osier Yang 已提交
748
    detect_scsi_host_caps(&def->caps->data);
749

750
    if (udevGenerateDeviceName(device, def, NULL) != 0)
751 752 753 754
        goto out;

    ret = 0;

755
 out:
756 757 758 759
    return ret;
}


D
David Allan 已提交
760 761 762 763 764 765 766 767 768
static int udevProcessSCSITarget(struct udev_device *device ATTRIBUTE_UNUSED,
                                 virNodeDeviceDefPtr def)
{
    int ret = -1;
    const char *sysname = NULL;
    union _virNodeDevCapData *data = &def->caps->data;

    sysname = udev_device_get_sysname(device);

769
    if (VIR_STRDUP(data->scsi_target.name, sysname) < 0)
D
David Allan 已提交
770 771
        goto out;

772
    if (udevGenerateDeviceName(device, def, NULL) != 0)
D
David Allan 已提交
773 774 775 776
        goto out;

    ret = 0;

777
 out:
D
David Allan 已提交
778 779 780 781
    return ret;
}


782
static int udevGetSCSIType(virNodeDeviceDefPtr def ATTRIBUTE_UNUSED,
783
                           unsigned int type, char **typestring)
784 785 786 787 788 789 790 791
{
    int ret = 0;
    int foundtype = 1;

    *typestring = NULL;

    switch (type) {
    case TYPE_DISK:
792
        ignore_value(VIR_STRDUP(*typestring, "disk"));
793 794
        break;
    case TYPE_TAPE:
795
        ignore_value(VIR_STRDUP(*typestring, "tape"));
796 797
        break;
    case TYPE_PROCESSOR:
798
        ignore_value(VIR_STRDUP(*typestring, "processor"));
799 800
        break;
    case TYPE_WORM:
801
        ignore_value(VIR_STRDUP(*typestring, "worm"));
802 803
        break;
    case TYPE_ROM:
804
        ignore_value(VIR_STRDUP(*typestring, "cdrom"));
805 806
        break;
    case TYPE_SCANNER:
807
        ignore_value(VIR_STRDUP(*typestring, "scanner"));
808 809
        break;
    case TYPE_MOD:
810
        ignore_value(VIR_STRDUP(*typestring, "mod"));
811 812
        break;
    case TYPE_MEDIUM_CHANGER:
813
        ignore_value(VIR_STRDUP(*typestring, "changer"));
814 815
        break;
    case TYPE_ENCLOSURE:
816
        ignore_value(VIR_STRDUP(*typestring, "enclosure"));
817
        break;
818
    case TYPE_RAID:
819
        ignore_value(VIR_STRDUP(*typestring, "raid"));
820
        break;
821 822 823 824 825 826 827 828 829 830
    case TYPE_NO_LUN:
    default:
        foundtype = 0;
        break;
    }

    if (*typestring == NULL) {
        if (foundtype == 1) {
            ret = -1;
        } else {
831 832
            VIR_DEBUG("Failed to find SCSI device type %d for %s",
                      type, def->sysfs_path);
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
        }
    }

    return ret;
}


static int udevProcessSCSIDevice(struct udev_device *device ATTRIBUTE_UNUSED,
                                 virNodeDeviceDefPtr def)
{
    int ret = -1;
    unsigned int tmp = 0;
    union _virNodeDevCapData *data = &def->caps->data;
    char *filename = NULL, *p = NULL;

848
    filename = last_component(def->sysfs_path);
849

850
    if (udevStrToLong_ui(filename, &p, 10, &data->scsi.host) == -1)
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
        goto out;

    if ((p == NULL) || (udevStrToLong_ui(p+1,
                                         &p,
                                         10,
                                         &data->scsi.bus) == -1)) {
        goto out;
    }

    if ((p == NULL) || (udevStrToLong_ui(p+1,
                                         &p,
                                         10,
                                         &data->scsi.target) == -1)) {
        goto out;
    }

    if ((p == NULL) || (udevStrToLong_ui(p+1,
                                         &p,
                                         10,
                                         &data->scsi.lun) == -1)) {
        goto out;
    }

    switch (udevGetUintSysfsAttr(device, "type", &tmp, 0)) {
    case PROPERTY_FOUND:
876
        if (udevGetSCSIType(def, tmp, &data->scsi.type) == -1)
877 878 879 880 881 882 883 884 885 886
            goto out;
        break;
    case PROPERTY_MISSING:
        break; /* No type is not an error */
    case PROPERTY_ERROR:
    default:
        goto out;
        break;
    }

887
    if (udevGenerateDeviceName(device, def, NULL) != 0)
888 889 890 891
        goto out;

    ret = 0;

892
 out:
893
    if (ret != 0) {
894
        VIR_ERROR(_("Failed to process SCSI device with sysfs path '%s'"),
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922
                  def->sysfs_path);
    }
    return ret;
}


static int udevProcessDisk(struct udev_device *device,
                           virNodeDeviceDefPtr def)
{
    union _virNodeDevCapData *data = &def->caps->data;
    int ret = 0;

    if (udevGetUint64SysfsAttr(device,
                               "size",
                               &data->storage.num_blocks) == PROPERTY_ERROR) {
        goto out;
    }

    if (udevGetUint64SysfsAttr(device,
                               "queue/logical_block_size",
                               &data->storage.logical_block_size)
        == PROPERTY_ERROR) {
        goto out;
    }

    data->storage.size = data->storage.num_blocks *
        data->storage.logical_block_size;

923
 out:
924 925 926 927
    return ret;
}


928 929 930
static int udevProcessRemoveableMedia(struct udev_device *device,
                                      virNodeDeviceDefPtr def,
                                      int has_media)
931 932 933 934 935 936 937 938 939
{
    union _virNodeDevCapData *data = &def->caps->data;
    int tmp_int = 0, ret = 0;

    if ((udevGetIntSysfsAttr(device, "removable", &tmp_int, 0) == PROPERTY_FOUND) &&
        (tmp_int == 1)) {
        def->caps->data.storage.flags |= VIR_NODE_DEV_CAP_STORAGE_REMOVABLE;
    }

940
    if (has_media) {
941 942 943 944

        def->caps->data.storage.flags |=
            VIR_NODE_DEV_CAP_STORAGE_REMOVABLE_MEDIA_AVAILABLE;

945 946 947 948 949
        if (udevGetStringProperty(device, "ID_FS_LABEL",
                                  &data->storage.media_label) == PROPERTY_ERROR) {
            goto out;
        }

950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970
        if (udevGetUint64SysfsAttr(device,
                                   "size",
                                   &data->storage.num_blocks) == PROPERTY_ERROR) {
            goto out;
        }

        if (udevGetUint64SysfsAttr(device,
                                   "queue/logical_block_size",
                                   &data->storage.logical_block_size) == PROPERTY_ERROR) {
            goto out;
        }

        /* XXX This calculation is wrong for the qemu virtual cdrom
         * which reports the size in 512 byte blocks, but the logical
         * block size as 2048.  I don't have a physical cdrom on a
         * devel system to see how they behave. */
        def->caps->data.storage.removable_media_size =
            def->caps->data.storage.num_blocks *
            def->caps->data.storage.logical_block_size;
    }

971
 out:
972 973 974
    return ret;
}

975 976 977 978 979 980 981 982 983 984 985 986
static int udevProcessCDROM(struct udev_device *device,
                            virNodeDeviceDefPtr def)
{
    int ret = -1;
    int tmp_int = 0;
    int has_media = 0;

    /* NB: the drive_type string provided by udev is different from
     * that provided by HAL; now it's "cd" instead of "cdrom" We
     * change it to cdrom to preserve compatibility with earlier
     * versions of libvirt.  */
    VIR_FREE(def->caps->data.storage.drive_type);
987
    if (VIR_STRDUP(def->caps->data.storage.drive_type, "cdrom") < 0)
988 989 990 991 992 993 994
        goto out;

    if ((udevGetIntProperty(device, "ID_CDROM_MEDIA",
                            &tmp_int, 0) == PROPERTY_FOUND))
        has_media = tmp_int;

    ret = udevProcessRemoveableMedia(device, def, has_media);
995
 out:
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
    return ret;
}

static int udevProcessFloppy(struct udev_device *device,
                             virNodeDeviceDefPtr def)
{
    int tmp_int = 0;
    int has_media = 0;
    char *tmp_str = NULL;

    if ((udevGetIntProperty(device, "DKD_MEDIA_AVAILABLE",
                            &tmp_int, 0) == PROPERTY_FOUND))
        /* USB floppy */
        has_media = tmp_int;
    else if (udevGetStringProperty(device, "ID_FS_LABEL",
                                   &tmp_str) == PROPERTY_FOUND) {
        /* Legacy floppy */
        has_media = 1;
        VIR_FREE(tmp_str);
    }

    return udevProcessRemoveableMedia(device, def, has_media);
}
1019

1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042

static int udevProcessSD(struct udev_device *device,
                         virNodeDeviceDefPtr def)
{
    union _virNodeDevCapData *data = &def->caps->data;
    int ret = 0;

    if (udevGetUint64SysfsAttr(device,
                               "size",
                               &data->storage.num_blocks) == PROPERTY_ERROR) {
        goto out;
    }

    if (udevGetUint64SysfsAttr(device,
                               "queue/logical_block_size",
                               &data->storage.logical_block_size)
        == PROPERTY_ERROR) {
        goto out;
    }

    data->storage.size = data->storage.num_blocks *
        data->storage.logical_block_size;

1043
 out:
1044 1045 1046 1047 1048
    return ret;
}



1049 1050 1051 1052 1053 1054 1055 1056
/* This function exists to deal with the case in which a driver does
 * not provide a device type in the usual place, but udev told us it's
 * a storage device, and we can make a good guess at what kind of
 * storage device it is from other information that is provided. */
static int udevKludgeStorageType(virNodeDeviceDefPtr def)
{
    int ret = -1;

1057 1058 1059
    VIR_DEBUG("Could not find definitive storage type for device "
              "with sysfs path '%s', trying to guess it",
              def->sysfs_path);
1060 1061 1062

    if (STRPREFIX(def->caps->data.storage.block, "/dev/vd")) {
        /* virtio disk */
1063
        ret = VIR_STRDUP(def->caps->data.storage.drive_type, "disk");
1064 1065 1066
    }

    if (ret != 0) {
1067 1068
        VIR_DEBUG("Could not determine storage type for device "
                  "with sysfs path '%s'", def->sysfs_path);
1069 1070
    } else {
        VIR_DEBUG("Found storage type '%s' for device "
1071
                  "with sysfs path '%s'",
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
                  def->caps->data.storage.drive_type,
                  def->sysfs_path);
    }

    return ret;
}


static void udevStripSpaces(char *s)
{
1082
    if (s == NULL)
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
        return;

    while (virFileStripSuffix(s, " ")) {
        /* do nothing */
        ;
    }

    return;
}


static int udevProcessStorage(struct udev_device *device,
                              virNodeDeviceDefPtr def)
{
    union _virNodeDevCapData *data = &def->caps->data;
    int ret = -1;
1099
    const char* devnode;
1100

1101
    devnode = udev_device_get_devnode(device);
1102
    if (!devnode) {
1103
        VIR_DEBUG("No devnode for '%s'", udev_device_get_devpath(device));
1104 1105
        goto out;
    }
1106 1107 1108

    if (VIR_STRDUP(data->storage.block, devnode) < 0)
        goto out;
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
    if (udevGetStringProperty(device,
                              "ID_BUS",
                              &data->storage.bus) == PROPERTY_ERROR) {
        goto out;
    }
    if (udevGetStringProperty(device,
                              "ID_SERIAL",
                              &data->storage.serial) == PROPERTY_ERROR) {
        goto out;
    }
    if (udevGetStringSysfsAttr(device,
                               "device/vendor",
                               &data->storage.vendor) == PROPERTY_ERROR) {
        goto out;
    }
    udevStripSpaces(def->caps->data.storage.vendor);
    if (udevGetStringSysfsAttr(device,
                               "device/model",
                               &data->storage.model) == PROPERTY_ERROR) {
        goto out;
    }
    udevStripSpaces(def->caps->data.storage.model);
    /* There is no equivalent of the hotpluggable property in libudev,
     * but storage is going toward a world in which hotpluggable is
     * expected, so I don't see a problem with not having a property
     * for it. */

    if (udevGetStringProperty(device,
                              "ID_TYPE",
1139 1140
                              &data->storage.drive_type) != PROPERTY_FOUND ||
        STREQ(def->caps->data.storage.drive_type, "generic")) {
1141 1142 1143 1144
        int tmp_int = 0;

        /* All floppy drives have the ID_DRIVE_FLOPPY prop. This is
         * needed since legacy floppies don't have a drive_type */
1145 1146 1147
        if (udevGetIntProperty(device, "ID_DRIVE_FLOPPY",
                               &tmp_int, 0) == PROPERTY_FOUND &&
            tmp_int == 1) {
1148

1149
            if (VIR_STRDUP(data->storage.drive_type, "floppy") < 0)
1150
                goto out;
1151 1152 1153 1154 1155 1156 1157 1158 1159
        } else if (udevGetIntProperty(device, "ID_CDROM",
                                      &tmp_int, 0) == PROPERTY_FOUND &&
                   tmp_int == 1) {

            if (VIR_STRDUP(data->storage.drive_type, "cd") < 0)
                goto out;
        } else if (udevGetIntProperty(device, "ID_DRIVE_FLASH_SD",
                                      &tmp_int, 0) == PROPERTY_FOUND &&
                   tmp_int == 1) {
1160

1161
            if (VIR_STRDUP(data->storage.drive_type, "sd") < 0)
1162
                goto out;
1163 1164 1165
        } else {

            /* If udev doesn't have it, perhaps we can guess it. */
1166
            if (udevKludgeStorageType(def) != 0)
1167
                goto out;
1168 1169 1170 1171 1172 1173 1174
        }
    }

    if (STREQ(def->caps->data.storage.drive_type, "cd")) {
        ret = udevProcessCDROM(device, def);
    } else if (STREQ(def->caps->data.storage.drive_type, "disk")) {
        ret = udevProcessDisk(device, def);
1175 1176
    } else if (STREQ(def->caps->data.storage.drive_type, "floppy")) {
        ret = udevProcessFloppy(device, def);
1177 1178
    } else if (STREQ(def->caps->data.storage.drive_type, "sd")) {
        ret = udevProcessSD(device, def);
1179
    } else {
1180 1181
        VIR_DEBUG("Unsupported storage type '%s'",
                  def->caps->data.storage.drive_type);
1182 1183 1184
        goto out;
    }

1185
    if (udevGenerateDeviceName(device, def, data->storage.serial) != 0)
1186 1187
        goto out;

1188
 out:
1189
    VIR_DEBUG("Storage ret=%d", ret);
1190 1191 1192
    return ret;
}

1193
static int
1194
udevProcessSCSIGeneric(struct udev_device *dev,
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
                       virNodeDeviceDefPtr def)
{
    if (udevGetStringProperty(dev,
                              "DEVNAME",
                              &def->caps->data.sg.path) != PROPERTY_FOUND)
        return -1;

    if (udevGenerateDeviceName(dev, def, NULL) != 0)
        return -1;

    return 0;
}

1208
static bool
1209
udevHasDeviceProperty(struct udev_device *dev,
1210
                      const char *key)
1211
{
1212 1213
    if (udev_device_get_property_value(dev, key))
        return true;
1214

1215
    return false;
1216
}
1217

1218 1219
static int
udevGetDeviceType(struct udev_device *device,
1220
                  virNodeDevCapType *type)
1221 1222
{
    const char *devtype = NULL;
1223
    char *subsystem = NULL;
1224
    int ret = -1;
D
David Allan 已提交
1225

1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
    devtype = udev_device_get_devtype(device);
    *type = 0;

    if (devtype) {
        if (STREQ(devtype, "usb_device"))
            *type = VIR_NODE_DEV_CAP_USB_DEV;
        else if (STREQ(devtype, "usb_interface"))
            *type = VIR_NODE_DEV_CAP_USB_INTERFACE;
        else if (STREQ(devtype, "scsi_host"))
            *type = VIR_NODE_DEV_CAP_SCSI_HOST;
        else if (STREQ(devtype, "scsi_target"))
            *type = VIR_NODE_DEV_CAP_SCSI_TARGET;
        else if (STREQ(devtype, "scsi_device"))
            *type = VIR_NODE_DEV_CAP_SCSI;
        else if (STREQ(devtype, "disk"))
            *type = VIR_NODE_DEV_CAP_STORAGE;
        else if (STREQ(devtype, "wlan"))
            *type = VIR_NODE_DEV_CAP_NET;
    } else {
        /* PCI devices don't set the DEVTYPE property. */
1246
        if (udevHasDeviceProperty(device, "PCI_CLASS"))
1247
            *type = VIR_NODE_DEV_CAP_PCI_DEV;
1248

1249 1250 1251 1252
        /* Wired network interfaces don't set the DEVTYPE property,
         * USB devices also have an INTERFACE property, but they do
         * set DEVTYPE, so if devtype is NULL and the INTERFACE
         * property exists, we have a network device. */
1253
        if (udevHasDeviceProperty(device, "INTERFACE"))
1254
            *type = VIR_NODE_DEV_CAP_NET;
1255 1256 1257 1258 1259 1260 1261

        /* SCSI generic device doesn't set DEVTYPE property */
        if (udevGetStringProperty(device, "SUBSYSTEM", &subsystem) ==
            PROPERTY_FOUND &&
            STREQ(subsystem, "scsi_generic"))
            *type = VIR_NODE_DEV_CAP_SCSI_GENERIC;
        VIR_FREE(subsystem);
1262 1263
    }

1264 1265 1266 1267 1268 1269
    if (!*type)
        VIR_DEBUG("Could not determine device type for device "
                  "with sysfs name '%s'",
                  udev_device_get_sysname(device));
    else
        ret = 0;
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298

    return ret;
}


static int udevGetDeviceDetails(struct udev_device *device,
                                virNodeDeviceDefPtr def)
{
    int ret = 0;

    switch (def->caps->type) {
    case VIR_NODE_DEV_CAP_SYSTEM:
        /* There's no libudev equivalent of system, so ignore it. */
        break;
    case VIR_NODE_DEV_CAP_PCI_DEV:
        ret = udevProcessPCI(device, def);
        break;
    case VIR_NODE_DEV_CAP_USB_DEV:
        ret = udevProcessUSBDevice(device, def);
        break;
    case VIR_NODE_DEV_CAP_USB_INTERFACE:
        ret = udevProcessUSBInterface(device, def);
        break;
    case VIR_NODE_DEV_CAP_NET:
        ret = udevProcessNetworkInterface(device, def);
        break;
    case VIR_NODE_DEV_CAP_SCSI_HOST:
        ret = udevProcessSCSIHost(device, def);
        break;
D
David Allan 已提交
1299 1300 1301
    case VIR_NODE_DEV_CAP_SCSI_TARGET:
        ret = udevProcessSCSITarget(device, def);
        break;
1302 1303 1304 1305 1306 1307
    case VIR_NODE_DEV_CAP_SCSI:
        ret = udevProcessSCSIDevice(device, def);
        break;
    case VIR_NODE_DEV_CAP_STORAGE:
        ret = udevProcessStorage(device, def);
        break;
1308
    case VIR_NODE_DEV_CAP_SCSI_GENERIC:
1309
        ret = udevProcessSCSIGeneric(device, def);
1310
        break;
1311
    default:
1312
        VIR_ERROR(_("Unknown device type %d"), def->caps->type);
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
        ret = -1;
        break;
    }

    return ret;
}


static int udevRemoveOneDevice(struct udev_device *device)
{
    virNodeDeviceObjPtr dev = NULL;
    const char *name = NULL;
    int ret = 0;

    name = udev_device_get_syspath(device);
1328
    dev = virNodeDeviceFindBySysfsPath(&driver->devs, name);
1329

1330
    if (dev != NULL) {
1331
        VIR_DEBUG("Removing device '%s' with sysfs path '%s'",
1332
                  dev->def->name, name);
1333
        virNodeDeviceObjRemove(&driver->devs, dev);
1334
    } else {
1335 1336
        VIR_DEBUG("Failed to find device to remove that has udev name '%s'",
                  name);
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351
        ret = -1;
    }

    return ret;
}


static int udevSetParent(struct udev_device *device,
                         virNodeDeviceDefPtr def)
{
    struct udev_device *parent_device = NULL;
    const char *parent_sysfs_path = NULL;
    virNodeDeviceObjPtr dev = NULL;
    int ret = -1;

1352 1353
    parent_device = device;
    do {
1354

1355
        parent_device = udev_device_get_parent(parent_device);
1356
        if (parent_device == NULL)
1357
            break;
1358

1359 1360
        parent_sysfs_path = udev_device_get_syspath(parent_device);
        if (parent_sysfs_path == NULL) {
1361 1362 1363
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not get syspath for parent of '%s'"),
                           udev_device_get_syspath(parent_device));
1364
            goto out;
1365 1366
        }

1367
        dev = virNodeDeviceFindBySysfsPath(&driver->devs,
1368 1369
                                           parent_sysfs_path);
        if (dev != NULL) {
1370 1371
            if (VIR_STRDUP(def->parent, dev->def->name) < 0) {
                virNodeDeviceObjUnlock(dev);
1372 1373
                goto out;
            }
1374
            virNodeDeviceObjUnlock(dev);
1375

1376
            if (VIR_STRDUP(def->parent_sysfs_path, parent_sysfs_path) < 0)
1377 1378 1379 1380 1381
                goto out;
        }

    } while (def->parent == NULL && parent_device != NULL);

1382
    if (!def->parent && VIR_STRDUP(def->parent, "computer") < 0)
1383 1384 1385 1386
        goto out;

    ret = 0;

1387
 out:
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
    return ret;
}


static int udevAddOneDevice(struct udev_device *device)
{
    virNodeDeviceDefPtr def = NULL;
    virNodeDeviceObjPtr dev = NULL;
    int ret = -1;

1398
    if (VIR_ALLOC(def) != 0)
1399 1400
        goto out;

1401 1402 1403
    if (VIR_STRDUP(def->sysfs_path, udev_device_get_syspath(device)) < 0)
        goto out;

1404 1405 1406 1407 1408 1409
    if (udevGetStringProperty(device,
                              "DRIVER",
                              &def->driver) == PROPERTY_ERROR) {
        goto out;
    }

1410
    if (VIR_ALLOC(def->caps) != 0)
1411 1412
        goto out;

1413
    if (udevGetDeviceType(device, &def->caps->type) != 0)
1414 1415
        goto out;

1416
    if (udevGetDeviceDetails(device, def) != 0)
1417 1418
        goto out;

1419
    if (udevSetParent(device, def) != 0)
1420 1421
        goto out;

1422 1423
    /* If this is a device change, the old definition will be freed
     * and the current definition will take its place. */
1424
    dev = virNodeDeviceAssignDef(&driver->devs, def);
1425
    if (dev == NULL)
1426 1427 1428 1429 1430 1431
        goto out;

    virNodeDeviceObjUnlock(dev);

    ret = 0;

1432
 out:
1433
    if (ret != 0) {
1434
        VIR_DEBUG("Discarding device %d %p %s", ret, def,
1435
                  def ? NULLSTR(def->sysfs_path) : "");
1436 1437 1438
        virNodeDeviceDefFree(def);
    }

1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
    return ret;
}


static int udevProcessDeviceListEntry(struct udev *udev,
                                      struct udev_list_entry *list_entry)
{
    struct udev_device *device;
    const char *name = NULL;
    int ret = -1;

    name = udev_list_entry_get_name(list_entry);

    device = udev_device_new_from_syspath(udev, name);
1453

1454 1455
    if (device != NULL) {
        if (udevAddOneDevice(device) != 0) {
1456 1457
            VIR_DEBUG("Failed to create node device for udev device '%s'",
                      name);
1458 1459 1460 1461
        }
        ret = 0;
    }

1462 1463
    udev_device_unref(device);

1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
    return ret;
}


static int udevEnumerateDevices(struct udev *udev)
{
    struct udev_enumerate *udev_enumerate = NULL;
    struct udev_list_entry *list_entry = NULL;
    int ret = 0;

    udev_enumerate = udev_enumerate_new(udev);

    ret = udev_enumerate_scan_devices(udev_enumerate);
    if (0 != ret) {
1478
        VIR_ERROR(_("udev scan devices returned %d"), ret);
1479 1480 1481 1482 1483 1484 1485 1486 1487
        goto out;
    }

    udev_list_entry_foreach(list_entry,
                            udev_enumerate_get_list_entry(udev_enumerate)) {

        udevProcessDeviceListEntry(udev, list_entry);
    }

1488
 out:
1489 1490 1491 1492 1493
    udev_enumerate_unref(udev_enumerate);
    return ret;
}


1494
static int nodeStateCleanup(void)
1495 1496 1497
{
    int ret = 0;

1498
    udevPrivate *priv = NULL;
1499 1500 1501
    struct udev_monitor *udev_monitor = NULL;
    struct udev *udev = NULL;

1502 1503
    if (driver) {
        nodeDeviceLock();
1504

1505
        priv = driver->privateData;
1506 1507 1508 1509

        if (priv->watch != -1)
            virEventRemoveHandle(priv->watch);

1510
        udev_monitor = DRV_STATE_UDEV_MONITOR(driver);
1511 1512 1513 1514 1515 1516

        if (udev_monitor != NULL) {
            udev = udev_monitor_get_udev(udev_monitor);
            udev_monitor_unref(udev_monitor);
        }

1517
        if (udev != NULL)
1518 1519
            udev_unref(udev);

1520 1521 1522 1523
        virNodeDeviceObjListFree(&driver->devs);
        nodeDeviceUnlock();
        virMutexDestroy(&driver->lock);
        VIR_FREE(driver);
1524
        VIR_FREE(priv);
1525 1526 1527 1528
    } else {
        ret = -1;
    }

1529 1530 1531
#if defined __s390__ || defined __s390x_
    /* Nothing was initialized, nothing needs to be cleaned up */
#else
1532 1533
    /* pci_system_cleanup returns void */
    pci_system_cleanup();
1534
#endif
1535

1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
    return ret;
}


static void udevEventHandleCallback(int watch ATTRIBUTE_UNUSED,
                                    int fd,
                                    int events ATTRIBUTE_UNUSED,
                                    void *data ATTRIBUTE_UNUSED)
{
    struct udev_device *device = NULL;
1546
    struct udev_monitor *udev_monitor = DRV_STATE_UDEV_MONITOR(driver);
1547 1548 1549
    const char *action = NULL;
    int udev_fd = -1;

1550
    nodeDeviceLock();
1551 1552
    udev_fd = udev_monitor_get_fd(udev_monitor);
    if (fd != udev_fd) {
1553 1554
        VIR_ERROR(_("File descriptor returned by udev %d does not "
                    "match node device file descriptor %d"), fd, udev_fd);
1555 1556 1557 1558 1559
        goto out;
    }

    device = udev_monitor_receive_device(udev_monitor);
    if (device == NULL) {
1560
        VIR_ERROR(_("udev_monitor_receive_device returned NULL"));
1561 1562 1563 1564
        goto out;
    }

    action = udev_device_get_action(device);
1565
    VIR_DEBUG("udev action: '%s'", action);
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576

    if (STREQ(action, "add") || STREQ(action, "change")) {
        udevAddOneDevice(device);
        goto out;
    }

    if (STREQ(action, "remove")) {
        udevRemoveOneDevice(device);
        goto out;
    }

1577
 out:
1578
    udev_device_unref(device);
1579
    nodeDeviceUnlock();
1580 1581 1582 1583
    return;
}


1584 1585
/* DMI is intel-compatible specific */
#if defined(__x86_64__) || defined(__i386__) || defined(__amd64__)
1586 1587
static void
udevGetDMIData(union _virNodeDevCapData *data)
1588 1589 1590 1591 1592
{
    struct udev *udev = NULL;
    struct udev_device *device = NULL;
    char *tmp = NULL;

1593
    udev = udev_monitor_get_udev(DRV_STATE_UDEV_MONITOR(driver));
1594

1595 1596
    device = udev_device_new_from_syspath(udev, DMI_DEVPATH);
    if (device == NULL) {
1597 1598
        device = udev_device_new_from_syspath(udev, DMI_DEVPATH_FALLBACK);
        if (device == NULL) {
1599
            VIR_ERROR(_("Failed to get udev device for syspath '%s' or '%s'"),
1600
                      DMI_DEVPATH, DMI_DEVPATH_FALLBACK);
1601 1602
            goto out;
        }
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
    }

    if (udevGetStringSysfsAttr(device,
                               "product_name",
                               &data->system.product_name) == PROPERTY_ERROR) {
        goto out;
    }
    if (udevGetStringSysfsAttr(device,
                               "sys_vendor",
                               &data->system.hardware.vendor_name)
        == PROPERTY_ERROR) {
        goto out;
    }
    if (udevGetStringSysfsAttr(device,
                               "product_version",
                               &data->system.hardware.version)
        == PROPERTY_ERROR) {
        goto out;
    }
    if (udevGetStringSysfsAttr(device,
                               "product_serial",
                               &data->system.hardware.serial)
        == PROPERTY_ERROR) {
        goto out;
    }

1629
    if (virGetHostUUID(data->system.hardware.uuid))
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650
        goto out;

    if (udevGetStringSysfsAttr(device,
                               "bios_vendor",
                               &data->system.firmware.vendor_name)
        == PROPERTY_ERROR) {
        goto out;
    }
    if (udevGetStringSysfsAttr(device,
                               "bios_version",
                               &data->system.firmware.version)
        == PROPERTY_ERROR) {
        goto out;
    }
    if (udevGetStringSysfsAttr(device,
                               "bios_date",
                               &data->system.firmware.release_date)
        == PROPERTY_ERROR) {
        goto out;
    }

1651
 out:
1652
    VIR_FREE(tmp);
1653
    if (device != NULL)
1654 1655 1656
        udev_device_unref(device);
    return;
}
1657
#endif
1658 1659 1660 1661 1662 1663 1664 1665


static int udevSetupSystemDev(void)
{
    virNodeDeviceDefPtr def = NULL;
    virNodeDeviceObjPtr dev = NULL;
    int ret = -1;

1666
    if (VIR_ALLOC(def) != 0)
1667 1668
        goto out;

1669
    if (VIR_STRDUP(def->name, "computer") < 0)
1670 1671
        goto out;

1672
    if (VIR_ALLOC(def->caps) != 0)
1673 1674
        goto out;

1675
#if defined(__x86_64__) || defined(__i386__) || defined(__amd64__)
1676
    udevGetDMIData(&def->caps->data);
1677
#endif
1678

1679
    dev = virNodeDeviceAssignDef(&driver->devs, def);
1680
    if (dev == NULL)
1681 1682 1683 1684 1685 1686
        goto out;

    virNodeDeviceObjUnlock(dev);

    ret = 0;

1687
 out:
1688
    if (ret == -1)
1689 1690
        virNodeDeviceDefFree(def);

1691 1692 1693
    return ret;
}

1694
static int nodeStateInitialize(bool privileged,
1695 1696
                               virStateInhibitCallback callback ATTRIBUTE_UNUSED,
                               void *opaque ATTRIBUTE_UNUSED)
1697
{
1698
    udevPrivate *priv = NULL;
1699 1700
    struct udev *udev = NULL;
    int ret = 0;
1701 1702 1703 1704 1705

#if defined __s390__ || defined __s390x_
    /* On s390(x) system there is no PCI bus.
     * Therefore there is nothing to initialize here. */
#else
1706 1707 1708
    int pciret;

    if ((pciret = pci_system_init()) != 0) {
1709 1710 1711
        /* Ignore failure as non-root; udev is not as helpful in that
         * situation, but a non-privileged user won't benefit much
         * from udev in the first place.  */
1712
        if (errno != ENOENT && (privileged  || errno != EACCES)) {
1713 1714
            char ebuf[256];
            VIR_ERROR(_("Failed to initialize libpciaccess: %s"),
1715
                      virStrerror(pciret, ebuf, sizeof(ebuf)));
1716 1717 1718
            ret = -1;
            goto out;
        }
1719
    }
1720
#endif
1721

1722 1723 1724 1725 1726 1727
    if (VIR_ALLOC(priv) < 0) {
        ret = -1;
        goto out;
    }

    priv->watch = -1;
1728
    priv->privileged = privileged;
1729

1730
    if (VIR_ALLOC(driver) < 0) {
1731
        VIR_FREE(priv);
1732 1733 1734 1735
        ret = -1;
        goto out;
    }

1736 1737
    if (virMutexInit(&driver->lock) < 0) {
        VIR_ERROR(_("Failed to initialize mutex for driver"));
1738
        VIR_FREE(priv);
1739
        VIR_FREE(driver);
1740 1741 1742 1743
        ret = -1;
        goto out;
    }

1744
    nodeDeviceLock();
1745 1746 1747 1748 1749 1750 1751 1752

    /*
     * http://www.kernel.org/pub/linux/utils/kernel/hotplug/libudev/libudev-udev.html#udev-new
     *
     * indicates no return value other than success, so we don't check
     * its return value.
     */
    udev = udev_new();
1753
#if HAVE_UDEV_LOGGING
J
Ján Tomko 已提交
1754 1755
    /* cast to get rid of missing-format-attribute warning */
    udev_set_log_fn(udev, (udevLogFunctionPtr) udevLogFunction);
1756
#endif
1757

1758 1759 1760
    priv->udev_monitor = udev_monitor_new_from_netlink(udev, "udev");
    if (priv->udev_monitor == NULL) {
        VIR_FREE(priv);
1761
        VIR_ERROR(_("udev_monitor_new_from_netlink returned NULL"));
1762
        ret = -1;
1763
        goto out_unlock;
1764 1765
    }

1766
    udev_monitor_enable_receiving(priv->udev_monitor);
1767 1768

    /* udev can be retrieved from udev_monitor */
1769
    driver->privateData = priv;
1770 1771 1772 1773 1774 1775 1776 1777 1778

    /* We register the monitor with the event callback so we are
     * notified by udev of device changes before we enumerate existing
     * devices because libvirt will simply recreate the device if we
     * try to register it twice, i.e., if the device appears between
     * the time we register the callback and the time we begin
     * enumeration.  The alternative is to register the callback after
     * we enumerate, in which case we will fail to create any devices
     * that appear while the enumeration is taking place.  */
1779 1780 1781 1782
    priv->watch = virEventAddHandle(udev_monitor_get_fd(priv->udev_monitor),
                                    VIR_EVENT_HANDLE_READABLE,
                                    udevEventHandleCallback, NULL, NULL);
    if (priv->watch == -1) {
1783
        ret = -1;
1784
        goto out_unlock;
1785 1786 1787 1788 1789
    }

    /* Create a fictional 'computer' device to root the device tree. */
    if (udevSetupSystemDev() != 0) {
        ret = -1;
1790
        goto out_unlock;
1791 1792 1793 1794 1795 1796
    }

    /* Populate with known devices */

    if (udevEnumerateDevices(udev) != 0) {
        ret = -1;
1797
        goto out_unlock;
1798 1799
    }

1800
 out_unlock:
1801
    nodeDeviceUnlock();
1802

1803
 out:
1804
    if (ret == -1)
1805
        nodeStateCleanup();
1806 1807 1808 1809
    return ret;
}


1810
static int nodeStateReload(void)
1811 1812 1813 1814 1815
{
    return 0;
}


1816
static virNodeDeviceDriver udevNodeDeviceDriver = {
1817
    .name = "udev",
1818 1819
    .nodeNumOfDevices = nodeNumOfDevices, /* 0.7.3 */
    .nodeListDevices = nodeListDevices, /* 0.7.3 */
1820
    .connectListAllNodeDevices = nodeConnectListAllNodeDevices, /* 0.10.2 */
1821 1822 1823 1824 1825 1826 1827 1828
    .nodeDeviceLookupByName = nodeDeviceLookupByName, /* 0.7.3 */
    .nodeDeviceLookupSCSIHostByWWN = nodeDeviceLookupSCSIHostByWWN, /* 1.0.2 */
    .nodeDeviceGetXMLDesc = nodeDeviceGetXMLDesc, /* 0.7.3 */
    .nodeDeviceGetParent = nodeDeviceGetParent, /* 0.7.3 */
    .nodeDeviceNumOfCaps = nodeDeviceNumOfCaps, /* 0.7.3 */
    .nodeDeviceListCaps = nodeDeviceListCaps, /* 0.7.3 */
    .nodeDeviceCreateXML = nodeDeviceCreateXML, /* 0.7.3 */
    .nodeDeviceDestroy = nodeDeviceDestroy, /* 0.7.3 */
1829 1830 1831
};

static virStateDriver udevStateDriver = {
M
Matthias Bolte 已提交
1832
    .name = "udev",
1833 1834 1835
    .stateInitialize = nodeStateInitialize, /* 0.7.3 */
    .stateCleanup = nodeStateCleanup, /* 0.7.3 */
    .stateReload = nodeStateReload, /* 0.7.3 */
1836 1837 1838 1839
};

int udevNodeRegister(void)
{
1840
    VIR_DEBUG("Registering udev node device backend");
1841

1842
    if (virSetSharedNodeDeviceDriver(&udevNodeDeviceDriver) < 0)
1843 1844 1845 1846
        return -1;

    return virRegisterStateDriver(&udevStateDriver);
}