node_device_udev.c 45.0 KB
Newer Older
1 2 3
/*
 * node_device_udev.c: node device enumeration - libudev implementation
 *
4
 * Copyright (C) 2009-2015 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 31
#include "node_device_conf.h"
#include "node_device_driver.h"
32 33 34
#include "node_device_linux_sysfs.h"
#include "node_device_udev.h"
#include "virerror.h"
35 36
#include "driver.h"
#include "datatypes.h"
37
#include "virlog.h"
38
#include "viralloc.h"
39
#include "viruuid.h"
40
#include "virbuffer.h"
41
#include "virfile.h"
42
#include "virpci.h"
43
#include "virstring.h"
44
#include "virnetdev.h"
45 46 47

#define VIR_FROM_THIS VIR_FROM_NODEDEV

48 49
VIR_LOG_INIT("node_device.node_device_udev");

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

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

60

J
Ján Tomko 已提交
61 62 63 64 65 66 67 68 69 70 71
static bool
udevHasDeviceProperty(struct udev_device *dev,
                      const char *key)
{
    if (udev_device_get_property_value(dev, key))
        return true;

    return false;
}


72 73
static const char *udevGetDeviceProperty(struct udev_device *udev_device,
                                         const char *property_key)
74
{
75
    const char *ret = NULL;
76

77
    ret = udev_device_get_property_value(udev_device, property_key);
78

79 80
    VIR_DEBUG("Found property key '%s' value '%s' for device with sysname '%s'",
              property_key, NULLSTR(ret), udev_device_get_sysname(udev_device));
81 82 83 84 85 86 87 88 89

    return ret;
}


static int udevGetStringProperty(struct udev_device *udev_device,
                                 const char *property_key,
                                 char **value)
{
90 91
    if (VIR_STRDUP(*value,
                   udevGetDeviceProperty(udev_device, property_key)) < 0)
92
        return -1;
93

94
    return 0;
95 96 97 98 99 100 101 102
}


static int udevGetIntProperty(struct udev_device *udev_device,
                              const char *property_key,
                              int *value,
                              int base)
{
103
    const char *str = NULL;
104

105
    str = udevGetDeviceProperty(udev_device, property_key);
106

107 108
    if (str && virStrToLong_i(str, NULL, base, value) < 0) {
        VIR_ERROR(_("Failed to convert '%s' to int"), str);
109
        return -1;
110
    }
111
    return 0;
112 113 114 115 116 117 118 119
}


static int udevGetUintProperty(struct udev_device *udev_device,
                               const char *property_key,
                               unsigned int *value,
                               int base)
{
120
    const char *str = NULL;
121

122
    str = udevGetDeviceProperty(udev_device, property_key);
123

124 125
    if (str && virStrToLong_ui(str, NULL, base, value) < 0) {
        VIR_ERROR(_("Failed to convert '%s' to int"), str);
126
        return -1;
127
    }
128
    return 0;
129 130 131
}


132 133
static const char *udevGetDeviceSysfsAttr(struct udev_device *udev_device,
                                          const char *attr_name)
134
{
135
    const char *ret = NULL;
136

137
    ret = udev_device_get_sysattr_value(udev_device, attr_name);
138 139

    VIR_DEBUG("Found sysfs attribute '%s' value '%s' "
140
              "for device with sysname '%s'",
141
              attr_name, NULLSTR(ret),
142 143 144 145 146 147 148 149 150
              udev_device_get_sysname(udev_device));
    return ret;
}


static int udevGetStringSysfsAttr(struct udev_device *udev_device,
                                  const char *attr_name,
                                  char **value)
{
151
    if (VIR_STRDUP(*value, udevGetDeviceSysfsAttr(udev_device, attr_name)) < 0)
152
        return -1;
153

154
    virStringStripControlChars(*value);
155

156 157
    if (*value != NULL && (STREQ(*value, "")))
        VIR_FREE(*value);
158

159
    return 0;
160 161 162 163 164 165 166 167
}


static int udevGetIntSysfsAttr(struct udev_device *udev_device,
                               const char *attr_name,
                               int *value,
                               int base)
{
168
    const char *str = NULL;
169

170
    str = udevGetDeviceSysfsAttr(udev_device, attr_name);
171

172 173 174
    if (str && virStrToLong_i(str, NULL, base, value) < 0) {
        VIR_ERROR(_("Failed to convert '%s' to int"), str);
        return PROPERTY_ERROR;
175 176
    }

177
    return str == NULL ? PROPERTY_MISSING : PROPERTY_FOUND;
178 179 180 181 182 183 184 185
}


static int udevGetUintSysfsAttr(struct udev_device *udev_device,
                                const char *attr_name,
                                unsigned int *value,
                                int base)
{
186
    const char *str = NULL;
187

188
    str = udevGetDeviceSysfsAttr(udev_device, attr_name);
189

190 191 192
    if (str && virStrToLong_ui(str, NULL, base, value) < 0) {
        VIR_ERROR(_("Failed to convert '%s' to unsigned int"), str);
        return PROPERTY_ERROR;
193 194
    }

195
    return str == NULL ? PROPERTY_MISSING : PROPERTY_FOUND;
196 197 198 199 200 201 202
}


static int udevGetUint64SysfsAttr(struct udev_device *udev_device,
                                  const char *attr_name,
                                  unsigned long long *value)
{
203
    const char *str = NULL;
204

205
    str = udevGetDeviceSysfsAttr(udev_device, attr_name);
206

207 208 209
    if (str && virStrToLong_ull(str, NULL, 0, value) < 0) {
        VIR_ERROR(_("Failed to convert '%s' to unsigned long long"), str);
        return PROPERTY_ERROR;
210 211
    }

212
    return str == NULL ? PROPERTY_MISSING : PROPERTY_FOUND;
213 214 215 216 217 218 219
}


static int udevGenerateDeviceName(struct udev_device *device,
                                  virNodeDeviceDefPtr def,
                                  const char *s)
{
220 221
    int ret = 0;
    size_t i;
222 223
    virBuffer buf = VIR_BUFFER_INITIALIZER;

224
    virBufferAsprintf(&buf, "%s_%s",
225 226 227
                      udev_device_get_subsystem(device),
                      udev_device_get_sysname(device));

228
    if (s != NULL)
229
        virBufferAsprintf(&buf, "_%s", s);
230

231 232
    if (virBufferCheckError(&buf) < 0)
        return -1;
233 234 235

    def->name = virBufferContentAndReset(&buf);

236
    for (i = 0; i < strlen(def->name); i++) {
237
        if (!(c_isalnum(*(def->name + i))))
238 239 240 241 242 243
            *(def->name + i) = '_';
    }

    return ret;
}

244
#if HAVE_UDEV_LOGGING
J
Ján Tomko 已提交
245 246 247 248 249 250 251 252 253
typedef void (*udevLogFunctionPtr)(struct udev *udev,
                                   int priority,
                                   const char *file,
                                   int line,
                                   const char *fn,
                                   const char *format,
                                   va_list args);

static void
254
ATTRIBUTE_FMT_PRINTF(6, 0)
J
Ján Tomko 已提交
255 256 257 258 259 260 261
udevLogFunction(struct udev *udev ATTRIBUTE_UNUSED,
                int priority,
                const char *file,
                int line,
                const char *fn,
                const char *fmt,
                va_list args)
262
{
J
Ján Tomko 已提交
263
    virBuffer buf = VIR_BUFFER_INITIALIZER;
264
    char *format = NULL;
J
Ján Tomko 已提交
265 266 267 268 269 270

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

    format = virBufferContentAndReset(&buf);

271
    virLogVMessage(&virLogSelf,
J
Ján Tomko 已提交
272 273 274 275
                   virLogPriorityFromSyslog(priority),
                   file, line, fn, NULL, format ? format : fmt, args);

    VIR_FREE(format);
276
}
277
#endif
278 279


280 281 282 283 284
static int udevTranslatePCIIds(unsigned int vendor,
                               unsigned int product,
                               char **vendor_string,
                               char **product_string)
{
285
    int ret = -1;
286 287 288 289 290 291 292 293 294 295 296 297 298 299
    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,
300
                    &vendor_name,
301 302 303
                    NULL,
                    NULL);

304 305 306
    if (VIR_STRDUP(*vendor_string, vendor_name) < 0||
        VIR_STRDUP(*product_string, device_name) < 0)
        goto out;
307 308 309

    ret = 0;

310
 out:
311 312 313 314
    return ret;
}


315 316 317
static int udevProcessPCI(struct udev_device *device,
                          virNodeDeviceDefPtr def)
{
318
    const char *syspath = NULL;
319
    virNodeDevCapDataPtr data = &def->caps->data;
320 321
    virPCIEDeviceInfoPtr pci_express = NULL;
    virPCIDevicePtr pciDev = NULL;
322
    udevPrivate *priv = driver->privateData;
323
    int ret = -1;
324
    char *p;
325
    int rc;
326

327
    syspath = udev_device_get_syspath(device);
328

329
    if (udevGetUintProperty(device, "PCI_CLASS", &data->pci_dev.class, 16) < 0)
330 331
        goto out;

332 333 334 335 336 337 338 339
    if ((p = strrchr(syspath, '/')) == NULL ||
        virStrToLong_ui(p + 1, &p, 16, &data->pci_dev.domain) < 0 || p == NULL ||
        virStrToLong_ui(p + 1, &p, 16, &data->pci_dev.bus) < 0 || p == NULL ||
        virStrToLong_ui(p + 1, &p, 16, &data->pci_dev.slot) < 0 || p == NULL ||
        virStrToLong_ui(p + 1, &p, 16, &data->pci_dev.function) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to parse the PCI address from sysfs path: '%s'"),
                       syspath);
340 341 342 343 344 345
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "vendor",
                             &data->pci_dev.vendor,
346
                             16) == PROPERTY_ERROR) {
347 348 349 350 351 352
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "device",
                             &data->pci_dev.product,
353
                             16) == PROPERTY_ERROR) {
354 355 356
        goto out;
    }

357 358 359 360 361 362
    if (udevTranslatePCIIds(data->pci_dev.vendor,
                            data->pci_dev.product,
                            &data->pci_dev.vendor_name,
                            &data->pci_dev.product_name) != 0) {
        goto out;
    }
363

364
    if (udevGenerateDeviceName(device, def, NULL) != 0)
365 366
        goto out;

367 368 369 370 371 372 373 374 375 376 377 378
    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;
    }

379
    if (nodeDeviceSysfsGetPCIRelatedDevCaps(syspath, data) < 0)
380 381
        goto out;

382 383 384 385 386 387
    if (!(pciDev = virPCIDeviceNew(data->pci_dev.domain,
                                   data->pci_dev.bus,
                                   data->pci_dev.slot,
                                   data->pci_dev.function)))
        goto out;

388
    /* We need to be root to read PCI device configs */
389
    if (priv->privileged) {
390 391 392
        if (virPCIGetHeaderType(pciDev, &data->pci_dev.hdrType) < 0)
            goto out;

393 394
        if (virPCIDeviceIsPCIExpress(pciDev) > 0) {
            if (VIR_ALLOC(pci_express) < 0)
395 396
                goto out;

397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
            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;
415 416 417
        }
    }

418 419
    ret = 0;

420
 out:
421
    virPCIDeviceFree(pciDev);
422
    virPCIEDeviceInfoFree(pci_express);
423 424 425 426 427 428 429
    return ret;
}


static int udevProcessUSBDevice(struct udev_device *device,
                                virNodeDeviceDefPtr def)
{
430
    virNodeDevCapDataPtr data = &def->caps->data;
431 432
    int ret = -1;

433
    if (udevGetUintProperty(device, "BUSNUM", &data->usb_dev.bus, 10) < 0)
434
        goto out;
435
    if (udevGetUintProperty(device, "DEVNUM", &data->usb_dev.device, 10) < 0)
436
        goto out;
437
    if (udevGetUintProperty(device, "ID_VENDOR_ID", &data->usb_dev.vendor, 16) < 0)
438 439
        goto out;

440 441 442 443 444 445
    if (udevGetStringProperty(device,
                              "ID_VENDOR_FROM_DATABASE",
                              &data->usb_dev.vendor_name) < 0)
        goto out;

    if (!data->usb_dev.vendor_name &&
446 447
        udevGetStringSysfsAttr(device, "manufacturer",
                               &data->usb_dev.vendor_name) < 0)
448 449
        goto out;

450
    if (udevGetUintProperty(device, "ID_MODEL_ID", &data->usb_dev.product, 16) < 0)
451 452
        goto out;

453 454 455 456 457 458
    if (udevGetStringProperty(device,
                              "ID_MODEL_FROM_DATABASE",
                              &data->usb_dev.product_name) < 0)
        goto out;

    if (!data->usb_dev.product_name &&
459 460
        udevGetStringSysfsAttr(device, "product",
                               &data->usb_dev.product_name) < 0)
461 462
        goto out;

463
    if (udevGenerateDeviceName(device, def, NULL) != 0)
464 465 466 467
        goto out;

    ret = 0;

468
 out:
469 470 471 472 473 474 475 476
    return ret;
}


static int udevProcessUSBInterface(struct udev_device *device,
                                   virNodeDeviceDefPtr def)
{
    int ret = -1;
477
    virNodeDevCapDataPtr data = &def->caps->data;
478 479 480 481

    if (udevGetUintSysfsAttr(device,
                             "bInterfaceNumber",
                             &data->usb_if.number,
482
                             16) == PROPERTY_ERROR) {
483 484 485 486 487 488
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "bInterfaceClass",
                             &data->usb_if._class,
489
                             16) == PROPERTY_ERROR) {
490 491 492 493 494 495
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "bInterfaceSubClass",
                             &data->usb_if.subclass,
496
                             16) == PROPERTY_ERROR) {
497 498 499 500 501 502
        goto out;
    }

    if (udevGetUintSysfsAttr(device,
                             "bInterfaceProtocol",
                             &data->usb_if.protocol,
503
                             16) == PROPERTY_ERROR) {
504 505 506
        goto out;
    }

507
    if (udevGenerateDeviceName(device, def, NULL) != 0)
508 509 510 511
        goto out;

    ret = 0;

512
 out:
513 514 515 516 517 518 519 520
    return ret;
}


static int udevProcessNetworkInterface(struct udev_device *device,
                                       virNodeDeviceDefPtr def)
{
    int ret = -1;
D
David Allan 已提交
521
    const char *devtype = udev_device_get_devtype(device);
522
    virNodeDevCapDataPtr data = &def->caps->data;
523

D
David Allan 已提交
524 525 526 527 528 529
    if (devtype && STREQ(devtype, "wlan")) {
        data->net.subtype = VIR_NODE_DEV_CAP_NET_80211;
    } else {
        data->net.subtype = VIR_NODE_DEV_CAP_NET_80203;
    }

530 531
    if (udevGetStringProperty(device,
                              "INTERFACE",
532
                              &data->net.ifname) < 0)
533 534
        goto out;

535 536
    if (udevGetStringSysfsAttr(device, "address",
                               &data->net.address) < 0)
537 538 539 540 541 542 543 544 545
        goto out;

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

546
    if (udevGenerateDeviceName(device, def, data->net.address) != 0)
547 548
        goto out;

549 550 551
    if (virNetDevGetLinkInfo(data->net.ifname, &data->net.lnk) < 0)
        goto out;

552 553 554
    if (virNetDevGetFeatures(data->net.ifname, &data->net.features) < 0)
        goto out;

555 556
    ret = 0;

557
 out:
558 559 560 561 562 563 564 565
    return ret;
}


static int udevProcessSCSIHost(struct udev_device *device ATTRIBUTE_UNUSED,
                               virNodeDeviceDefPtr def)
{
    int ret = -1;
566
    virNodeDevCapDataPtr data = &def->caps->data;
567
    char *filename = NULL;
J
Ján Tomko 已提交
568
    char *str;
569

570
    filename = last_component(def->sysfs_path);
571

572 573 574 575 576
    if (!(str = STRSKIP(filename, "host")) ||
        virStrToLong_ui(str, NULL, 0, &data->scsi_host.host) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to parse SCSI host '%s'"),
                       filename);
577 578 579
        goto out;
    }

580
    nodeDeviceSysfsGetSCSIHostCaps(&def->caps->data);
581

582
    if (udevGenerateDeviceName(device, def, NULL) != 0)
583 584 585 586
        goto out;

    ret = 0;

587
 out:
588 589 590 591
    return ret;
}


D
David Allan 已提交
592 593 594 595 596
static int udevProcessSCSITarget(struct udev_device *device ATTRIBUTE_UNUSED,
                                 virNodeDeviceDefPtr def)
{
    int ret = -1;
    const char *sysname = NULL;
597
    virNodeDevCapDataPtr data = &def->caps->data;
D
David Allan 已提交
598 599 600

    sysname = udev_device_get_sysname(device);

601
    if (VIR_STRDUP(data->scsi_target.name, sysname) < 0)
D
David Allan 已提交
602 603
        goto out;

604
    if (udevGenerateDeviceName(device, def, NULL) != 0)
D
David Allan 已提交
605 606 607 608
        goto out;

    ret = 0;

609
 out:
D
David Allan 已提交
610 611 612 613
    return ret;
}


614
static int udevGetSCSIType(virNodeDeviceDefPtr def ATTRIBUTE_UNUSED,
615
                           unsigned int type, char **typestring)
616 617 618 619 620 621 622 623
{
    int ret = 0;
    int foundtype = 1;

    *typestring = NULL;

    switch (type) {
    case TYPE_DISK:
624
        ignore_value(VIR_STRDUP(*typestring, "disk"));
625 626
        break;
    case TYPE_TAPE:
627
        ignore_value(VIR_STRDUP(*typestring, "tape"));
628 629
        break;
    case TYPE_PROCESSOR:
630
        ignore_value(VIR_STRDUP(*typestring, "processor"));
631 632
        break;
    case TYPE_WORM:
633
        ignore_value(VIR_STRDUP(*typestring, "worm"));
634 635
        break;
    case TYPE_ROM:
636
        ignore_value(VIR_STRDUP(*typestring, "cdrom"));
637 638
        break;
    case TYPE_SCANNER:
639
        ignore_value(VIR_STRDUP(*typestring, "scanner"));
640 641
        break;
    case TYPE_MOD:
642
        ignore_value(VIR_STRDUP(*typestring, "mod"));
643 644
        break;
    case TYPE_MEDIUM_CHANGER:
645
        ignore_value(VIR_STRDUP(*typestring, "changer"));
646 647
        break;
    case TYPE_ENCLOSURE:
648
        ignore_value(VIR_STRDUP(*typestring, "enclosure"));
649
        break;
650
    case TYPE_RAID:
651
        ignore_value(VIR_STRDUP(*typestring, "raid"));
652
        break;
653 654 655 656 657 658 659 660 661 662
    case TYPE_NO_LUN:
    default:
        foundtype = 0;
        break;
    }

    if (*typestring == NULL) {
        if (foundtype == 1) {
            ret = -1;
        } else {
663 664
            VIR_DEBUG("Failed to find SCSI device type %d for %s",
                      type, def->sysfs_path);
665 666 667 668 669 670 671 672 673 674 675 676
        }
    }

    return ret;
}


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

680
    filename = last_component(def->sysfs_path);
681

682 683 684 685 686 687 688 689
    if (virStrToLong_ui(filename, &p, 10, &data->scsi.host) < 0 || p == NULL ||
        virStrToLong_ui(p + 1, &p, 10, &data->scsi.bus) < 0 || p == NULL ||
        virStrToLong_ui(p + 1, &p, 10, &data->scsi.target) < 0 || p == NULL ||
        virStrToLong_ui(p + 1, &p, 10, &data->scsi.lun) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to parse the SCSI address from filename: '%s'"),
                       filename);
        return -1;
690 691 692 693
    }

    switch (udevGetUintSysfsAttr(device, "type", &tmp, 0)) {
    case PROPERTY_FOUND:
694
        if (udevGetSCSIType(def, tmp, &data->scsi.type) == -1)
695 696 697 698 699 700 701 702 703 704
            goto out;
        break;
    case PROPERTY_MISSING:
        break; /* No type is not an error */
    case PROPERTY_ERROR:
    default:
        goto out;
        break;
    }

705
    if (udevGenerateDeviceName(device, def, NULL) != 0)
706 707 708 709
        goto out;

    ret = 0;

710
 out:
711
    if (ret != 0) {
712
        VIR_ERROR(_("Failed to process SCSI device with sysfs path '%s'"),
713 714 715 716 717 718 719 720 721
                  def->sysfs_path);
    }
    return ret;
}


static int udevProcessDisk(struct udev_device *device,
                           virNodeDeviceDefPtr def)
{
722
    virNodeDevCapDataPtr data = &def->caps->data;
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
    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;

741
 out:
742 743 744 745
    return ret;
}


746 747 748
static int udevProcessRemoveableMedia(struct udev_device *device,
                                      virNodeDeviceDefPtr def,
                                      int has_media)
749
{
750
    virNodeDevCapDataPtr data = &def->caps->data;
751 752 753 754 755 756 757
    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;
    }

758
    if (has_media) {
759 760 761 762

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

763
        if (udevGetStringProperty(device, "ID_FS_LABEL",
764
                                  &data->storage.media_label) < 0)
765 766
            goto out;

767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
        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;
    }

788
 out:
789 790 791
    return ret;
}

792 793 794 795 796 797 798 799 800 801 802
static int udevProcessCDROM(struct udev_device *device,
                            virNodeDeviceDefPtr def)
{
    int ret = -1;
    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);
803
    if (VIR_STRDUP(def->caps->data.storage.drive_type, "cdrom") < 0)
804 805
        goto out;

806 807 808
    if (udevHasDeviceProperty(device, "ID_CDROM_MEDIA") &&
        udevGetIntProperty(device, "ID_CDROM_MEDIA", &has_media, 0) < 0)
        goto out;
809 810

    ret = udevProcessRemoveableMedia(device, def, has_media);
811
 out:
812 813 814 815 816 817 818 819
    return ret;
}

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

820
    if (udevHasDeviceProperty(device, "ID_CDROM_MEDIA")) {
821
        /* USB floppy */
822 823
        if (udevGetIntProperty(device, "DKD_MEDIA_AVAILABLE", &has_media, 0) < 0)
            return -1;
824
    } else if (udevHasDeviceProperty(device, "ID_FS_LABEL")) {
825 826 827 828 829 830
        /* Legacy floppy */
        has_media = 1;
    }

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

832 833 834 835

static int udevProcessSD(struct udev_device *device,
                         virNodeDeviceDefPtr def)
{
836
    virNodeDevCapDataPtr data = &def->caps->data;
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
    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;

855
 out:
856 857 858 859 860
    return ret;
}



861 862 863 864 865 866
/* 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)
{
867 868 869
    VIR_DEBUG("Could not find definitive storage type for device "
              "with sysfs path '%s', trying to guess it",
              def->sysfs_path);
870

871 872 873
    /* virtio disk */
    if (STRPREFIX(def->caps->data.storage.block, "/dev/vd") &&
        VIR_STRDUP(def->caps->data.storage.drive_type, "disk") > 0) {
874
        VIR_DEBUG("Found storage type '%s' for device "
875
                  "with sysfs path '%s'",
876 877
                  def->caps->data.storage.drive_type,
                  def->sysfs_path);
878
        return 0;
879
    }
880 881 882
    VIR_DEBUG("Could not determine storage type "
              "for device with sysfs path '%s'", def->sysfs_path);
    return -1;
883 884 885 886 887
}


static void udevStripSpaces(char *s)
{
888
    if (s == NULL)
889 890 891 892 893 894 895 896 897 898 899 900 901 902
        return;

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

    return;
}


static int udevProcessStorage(struct udev_device *device,
                              virNodeDeviceDefPtr def)
{
903
    virNodeDevCapDataPtr data = &def->caps->data;
904
    int ret = -1;
905
    const char* devnode;
906

907
    devnode = udev_device_get_devnode(device);
908
    if (!devnode) {
909
        VIR_DEBUG("No devnode for '%s'", udev_device_get_devpath(device));
910 911
        goto out;
    }
912 913 914

    if (VIR_STRDUP(data->storage.block, devnode) < 0)
        goto out;
915

916
    if (udevGetStringProperty(device, "ID_BUS", &data->storage.bus) < 0)
917
        goto out;
918
    if (udevGetStringProperty(device, "ID_SERIAL", &data->storage.serial) < 0)
919
        goto out;
920

921
    if (udevGetStringSysfsAttr(device, "device/vendor", &data->storage.vendor) < 0)
922 923
        goto out;
    udevStripSpaces(def->caps->data.storage.vendor);
924
    if (udevGetStringSysfsAttr(device, "device/model", &data->storage.model) < 0)
925 926 927 928 929 930 931
        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. */

932 933 934 935
    if (udevGetStringProperty(device, "ID_TYPE", &data->storage.drive_type) < 0)
        goto out;

    if (!data->storage.drive_type ||
936
        STREQ(def->caps->data.storage.drive_type, "generic")) {
937 938
        int val = 0;
        const char *str = NULL;
939 940 941

        /* All floppy drives have the ID_DRIVE_FLOPPY prop. This is
         * needed since legacy floppies don't have a drive_type */
942
        if (udevGetIntProperty(device, "ID_DRIVE_FLOPPY", &val, 0) < 0)
943 944 945
            goto out;
        else if (val == 1)
            str = "floppy";
946

947
        if (!str) {
948
            if (udevGetIntProperty(device, "ID_CDROM", &val, 0) < 0)
949
                goto out;
950 951 952
            else if (val == 1)
                str = "cd";
        }
953

954
        if (!str) {
955
            if (udevGetIntProperty(device, "ID_DRIVE_FLASH_SD", &val, 0) < 0)
956
                goto out;
957 958 959
            if (val == 1)
                str = "sd";
        }
960

961 962
        if (str) {
            if (VIR_STRDUP(data->storage.drive_type, str) < 0)
963
                goto out;
964 965
        } else {
            /* If udev doesn't have it, perhaps we can guess it. */
966
            if (udevKludgeStorageType(def) != 0)
967
                goto out;
968 969 970 971 972 973 974
        }
    }

    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);
975 976
    } else if (STREQ(def->caps->data.storage.drive_type, "floppy")) {
        ret = udevProcessFloppy(device, def);
977 978
    } else if (STREQ(def->caps->data.storage.drive_type, "sd")) {
        ret = udevProcessSD(device, def);
979
    } else {
980 981
        VIR_DEBUG("Unsupported storage type '%s'",
                  def->caps->data.storage.drive_type);
982 983 984
        goto out;
    }

985
    if (udevGenerateDeviceName(device, def, data->storage.serial) != 0)
986 987
        goto out;

988
 out:
989
    VIR_DEBUG("Storage ret=%d", ret);
990 991 992
    return ret;
}

993
static int
994
udevProcessSCSIGeneric(struct udev_device *dev,
995 996
                       virNodeDeviceDefPtr def)
{
997 998
    if (udevGetStringProperty(dev, "DEVNAME", &def->caps->data.sg.path) < 0 ||
        !def->caps->data.sg.path)
999 1000 1001 1002 1003 1004 1005 1006
        return -1;

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

    return 0;
}

1007 1008
static int
udevGetDeviceType(struct udev_device *device,
1009
                  virNodeDevCapType *type)
1010 1011
{
    const char *devtype = NULL;
1012
    char *subsystem = NULL;
1013
    int ret = -1;
D
David Allan 已提交
1014

1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
    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. */
1035
        if (udevHasDeviceProperty(device, "PCI_CLASS"))
1036
            *type = VIR_NODE_DEV_CAP_PCI_DEV;
1037

1038 1039 1040 1041
        /* 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. */
1042
        if (udevHasDeviceProperty(device, "INTERFACE"))
1043
            *type = VIR_NODE_DEV_CAP_NET;
1044 1045

        /* SCSI generic device doesn't set DEVTYPE property */
1046 1047 1048 1049
        if (udevGetStringProperty(device, "SUBSYSTEM", &subsystem) < 0)
            return -1;

        if (STREQ_NULLABLE(subsystem, "scsi_generic"))
1050 1051
            *type = VIR_NODE_DEV_CAP_SCSI_GENERIC;
        VIR_FREE(subsystem);
1052 1053
    }

1054 1055 1056 1057 1058 1059
    if (!*type)
        VIR_DEBUG("Could not determine device type for device "
                  "with sysfs name '%s'",
                  udev_device_get_sysname(device));
    else
        ret = 0;
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069

    return ret;
}


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

1070
    switch (def->caps->data.type) {
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
    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 已提交
1089 1090 1091
    case VIR_NODE_DEV_CAP_SCSI_TARGET:
        ret = udevProcessSCSITarget(device, def);
        break;
1092 1093 1094 1095 1096 1097
    case VIR_NODE_DEV_CAP_SCSI:
        ret = udevProcessSCSIDevice(device, def);
        break;
    case VIR_NODE_DEV_CAP_STORAGE:
        ret = udevProcessStorage(device, def);
        break;
1098
    case VIR_NODE_DEV_CAP_SCSI_GENERIC:
1099
        ret = udevProcessSCSIGeneric(device, def);
1100
        break;
1101
    default:
1102
        VIR_ERROR(_("Unknown device type %d"), def->caps->data.type);
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
        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);
1118
    dev = virNodeDeviceFindBySysfsPath(&driver->devs, name);
1119

1120
    if (dev != NULL) {
1121
        VIR_DEBUG("Removing device '%s' with sysfs path '%s'",
1122
                  dev->def->name, name);
1123
        virNodeDeviceObjRemove(&driver->devs, dev);
1124
    } else {
1125 1126
        VIR_DEBUG("Failed to find device to remove that has udev name '%s'",
                  name);
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
        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;

1142 1143
    parent_device = device;
    do {
1144

1145
        parent_device = udev_device_get_parent(parent_device);
1146
        if (parent_device == NULL)
1147
            break;
1148

1149 1150
        parent_sysfs_path = udev_device_get_syspath(parent_device);
        if (parent_sysfs_path == NULL) {
1151 1152 1153
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not get syspath for parent of '%s'"),
                           udev_device_get_syspath(parent_device));
1154
            goto out;
1155 1156
        }

1157
        dev = virNodeDeviceFindBySysfsPath(&driver->devs,
1158 1159
                                           parent_sysfs_path);
        if (dev != NULL) {
1160 1161
            if (VIR_STRDUP(def->parent, dev->def->name) < 0) {
                virNodeDeviceObjUnlock(dev);
1162 1163
                goto out;
            }
1164
            virNodeDeviceObjUnlock(dev);
1165

1166
            if (VIR_STRDUP(def->parent_sysfs_path, parent_sysfs_path) < 0)
1167 1168 1169 1170 1171
                goto out;
        }

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

1172
    if (!def->parent && VIR_STRDUP(def->parent, "computer") < 0)
1173 1174 1175 1176
        goto out;

    ret = 0;

1177
 out:
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
    return ret;
}


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

1188
    if (VIR_ALLOC(def) != 0)
1189 1190
        goto out;

1191 1192 1193
    if (VIR_STRDUP(def->sysfs_path, udev_device_get_syspath(device)) < 0)
        goto out;

1194
    if (udevGetStringProperty(device, "DRIVER", &def->driver) < 0)
1195 1196
        goto out;

1197
    if (VIR_ALLOC(def->caps) != 0)
1198 1199
        goto out;

1200
    if (udevGetDeviceType(device, &def->caps->data.type) != 0)
1201 1202
        goto out;

1203
    if (udevGetDeviceDetails(device, def) != 0)
1204 1205
        goto out;

1206
    if (udevSetParent(device, def) != 0)
1207 1208
        goto out;

1209 1210
    /* If this is a device change, the old definition will be freed
     * and the current definition will take its place. */
1211
    dev = virNodeDeviceAssignDef(&driver->devs, def);
1212
    if (dev == NULL)
1213 1214 1215 1216 1217 1218
        goto out;

    virNodeDeviceObjUnlock(dev);

    ret = 0;

1219
 out:
1220
    if (ret != 0) {
1221
        VIR_DEBUG("Discarding device %d %p %s", ret, def,
1222
                  def ? NULLSTR(def->sysfs_path) : "");
1223 1224 1225
        virNodeDeviceDefFree(def);
    }

1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
    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);
1240

1241 1242
    if (device != NULL) {
        if (udevAddOneDevice(device) != 0) {
1243 1244
            VIR_DEBUG("Failed to create node device for udev device '%s'",
                      name);
1245 1246 1247 1248
        }
        ret = 0;
    }

1249 1250
    udev_device_unref(device);

1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
    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) {
1265
        VIR_ERROR(_("udev scan devices returned %d"), ret);
1266 1267 1268 1269 1270 1271 1272 1273 1274
        goto out;
    }

    udev_list_entry_foreach(list_entry,
                            udev_enumerate_get_list_entry(udev_enumerate)) {

        udevProcessDeviceListEntry(udev, list_entry);
    }

1275
 out:
1276 1277 1278 1279 1280
    udev_enumerate_unref(udev_enumerate);
    return ret;
}


1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
static void udevPCITranslateDeinit(void)
{
#if defined __s390__ || defined __s390x_
    /* Nothing was initialized, nothing needs to be cleaned up */
#else
    /* pci_system_cleanup returns void */
    pci_system_cleanup();
#endif
    return;
}


1293
static int nodeStateCleanup(void)
1294
{
1295
    udevPrivate *priv = NULL;
1296 1297 1298
    struct udev_monitor *udev_monitor = NULL;
    struct udev *udev = NULL;

J
Ján Tomko 已提交
1299 1300
    if (!driver)
        return -1;
1301

J
Ján Tomko 已提交
1302
    nodeDeviceLock();
1303

J
Ján Tomko 已提交
1304
    priv = driver->privateData;
1305

1306 1307 1308
    if (priv) {
        if (priv->watch != -1)
            virEventRemoveHandle(priv->watch);
1309

1310
        udev_monitor = DRV_STATE_UDEV_MONITOR(driver);
1311

1312 1313 1314 1315
        if (udev_monitor != NULL) {
            udev = udev_monitor_get_udev(udev_monitor);
            udev_monitor_unref(udev_monitor);
        }
J
Ján Tomko 已提交
1316
    }
1317

J
Ján Tomko 已提交
1318 1319
    if (udev != NULL)
        udev_unref(udev);
1320

J
Ján Tomko 已提交
1321 1322 1323 1324 1325
    virNodeDeviceObjListFree(&driver->devs);
    nodeDeviceUnlock();
    virMutexDestroy(&driver->lock);
    VIR_FREE(driver);
    VIR_FREE(priv);
1326

J
Ján Tomko 已提交
1327 1328
    udevPCITranslateDeinit();
    return 0;
1329 1330 1331 1332 1333 1334 1335 1336 1337
}


static void udevEventHandleCallback(int watch ATTRIBUTE_UNUSED,
                                    int fd,
                                    int events ATTRIBUTE_UNUSED,
                                    void *data ATTRIBUTE_UNUSED)
{
    struct udev_device *device = NULL;
1338
    struct udev_monitor *udev_monitor = DRV_STATE_UDEV_MONITOR(driver);
1339 1340 1341
    const char *action = NULL;
    int udev_fd = -1;

1342
    nodeDeviceLock();
1343 1344
    udev_fd = udev_monitor_get_fd(udev_monitor);
    if (fd != udev_fd) {
1345 1346
        VIR_ERROR(_("File descriptor returned by udev %d does not "
                    "match node device file descriptor %d"), fd, udev_fd);
1347 1348 1349 1350 1351
        goto out;
    }

    device = udev_monitor_receive_device(udev_monitor);
    if (device == NULL) {
1352
        VIR_ERROR(_("udev_monitor_receive_device returned NULL"));
1353 1354 1355 1356
        goto out;
    }

    action = udev_device_get_action(device);
1357
    VIR_DEBUG("udev action: '%s'", action);
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368

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

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

1369
 out:
1370
    udev_device_unref(device);
1371
    nodeDeviceUnlock();
1372 1373 1374 1375
    return;
}


1376 1377
/* DMI is intel-compatible specific */
#if defined(__x86_64__) || defined(__i386__) || defined(__amd64__)
1378
static void
1379
udevGetDMIData(virNodeDevCapDataPtr data)
1380 1381 1382 1383
{
    struct udev *udev = NULL;
    struct udev_device *device = NULL;

1384
    udev = udev_monitor_get_udev(DRV_STATE_UDEV_MONITOR(driver));
1385

1386 1387
    device = udev_device_new_from_syspath(udev, DMI_DEVPATH);
    if (device == NULL) {
1388 1389
        device = udev_device_new_from_syspath(udev, DMI_DEVPATH_FALLBACK);
        if (device == NULL) {
1390
            VIR_ERROR(_("Failed to get udev device for syspath '%s' or '%s'"),
1391
                      DMI_DEVPATH, DMI_DEVPATH_FALLBACK);
1392 1393
            goto out;
        }
1394 1395
    }

1396 1397
    if (udevGetStringSysfsAttr(device, "product_name",
                               &data->system.product_name) < 0)
1398
        goto out;
1399 1400
    if (udevGetStringSysfsAttr(device, "sys_vendor",
                               &data->system.hardware.vendor_name) < 0)
1401
        goto out;
1402 1403
    if (udevGetStringSysfsAttr(device, "product_version",
                               &data->system.hardware.version) < 0)
1404
        goto out;
1405 1406
    if (udevGetStringSysfsAttr(device, "product_serial",
                               &data->system.hardware.serial) < 0)
1407 1408
        goto out;

1409
    if (virGetHostUUID(data->system.hardware.uuid))
1410 1411
        goto out;

1412 1413
    if (udevGetStringSysfsAttr(device, "bios_vendor",
                               &data->system.firmware.vendor_name) < 0)
1414
        goto out;
1415 1416
    if (udevGetStringSysfsAttr(device, "bios_version",
                               &data->system.firmware.version) < 0)
1417
        goto out;
1418 1419
    if (udevGetStringSysfsAttr(device, "bios_date",
                               &data->system.firmware.release_date) < 0)
1420 1421
        goto out;

1422
 out:
1423
    if (device != NULL)
1424 1425 1426
        udev_device_unref(device);
    return;
}
1427
#endif
1428 1429 1430 1431 1432 1433 1434 1435


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

1436
    if (VIR_ALLOC(def) != 0)
1437 1438
        goto out;

1439
    if (VIR_STRDUP(def->name, "computer") < 0)
1440 1441
        goto out;

1442
    if (VIR_ALLOC(def->caps) != 0)
1443 1444
        goto out;

1445
#if defined(__x86_64__) || defined(__i386__) || defined(__amd64__)
1446
    udevGetDMIData(&def->caps->data);
1447
#endif
1448

1449
    dev = virNodeDeviceAssignDef(&driver->devs, def);
1450
    if (dev == NULL)
1451 1452 1453 1454 1455 1456
        goto out;

    virNodeDeviceObjUnlock(dev);

    ret = 0;

1457
 out:
1458
    if (ret == -1)
1459 1460
        virNodeDeviceDefFree(def);

1461 1462 1463
    return ret;
}

1464
static int udevPCITranslateInit(bool privileged ATTRIBUTE_UNUSED)
1465
{
1466 1467 1468 1469
#if defined __s390__ || defined __s390x_
    /* On s390(x) system there is no PCI bus.
     * Therefore there is nothing to initialize here. */
#else
1470 1471 1472
    int pciret;

    if ((pciret = pci_system_init()) != 0) {
1473 1474 1475
        /* 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.  */
1476
        if (errno != ENOENT && (privileged  || errno != EACCES)) {
1477 1478
            char ebuf[256];
            VIR_ERROR(_("Failed to initialize libpciaccess: %s"),
1479
                      virStrerror(pciret, ebuf, sizeof(ebuf)));
1480
            return -1;
1481
        }
1482
    }
1483
#endif
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
    return 0;
}

static int nodeStateInitialize(bool privileged,
                               virStateInhibitCallback callback ATTRIBUTE_UNUSED,
                               void *opaque ATTRIBUTE_UNUSED)
{
    udevPrivate *priv = NULL;
    struct udev *udev = NULL;
    int ret = -1;

1495
    if (VIR_ALLOC(priv) < 0)
1496
        return -1;
1497 1498

    priv->watch = -1;
1499
    priv->privileged = privileged;
1500

1501
    if (VIR_ALLOC(driver) < 0) {
1502
        VIR_FREE(priv);
1503
        return -1;
1504 1505
    }

1506 1507
    if (virMutexInit(&driver->lock) < 0) {
        VIR_ERROR(_("Failed to initialize mutex for driver"));
1508
        VIR_FREE(priv);
1509
        VIR_FREE(driver);
1510
        return -1;
1511 1512
    }

1513
    driver->privateData = priv;
1514
    nodeDeviceLock();
1515

1516
    if (udevPCITranslateInit(privileged) < 0)
1517 1518
        goto out_unlock;

1519 1520 1521 1522 1523 1524 1525
    /*
     * 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();
1526
#if HAVE_UDEV_LOGGING
J
Ján Tomko 已提交
1527 1528
    /* cast to get rid of missing-format-attribute warning */
    udev_set_log_fn(udev, (udevLogFunctionPtr) udevLogFunction);
1529
#endif
1530

1531 1532
    priv->udev_monitor = udev_monitor_new_from_netlink(udev, "udev");
    if (priv->udev_monitor == NULL) {
1533
        VIR_ERROR(_("udev_monitor_new_from_netlink returned NULL"));
1534
        goto out_unlock;
1535 1536
    }

1537
    udev_monitor_enable_receiving(priv->udev_monitor);
1538 1539 1540 1541 1542 1543 1544 1545 1546

    /* 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.  */
1547 1548 1549
    priv->watch = virEventAddHandle(udev_monitor_get_fd(priv->udev_monitor),
                                    VIR_EVENT_HANDLE_READABLE,
                                    udevEventHandleCallback, NULL, NULL);
1550
    if (priv->watch == -1)
1551
        goto out_unlock;
1552 1553

    /* Create a fictional 'computer' device to root the device tree. */
1554
    if (udevSetupSystemDev() != 0)
1555
        goto out_unlock;
1556 1557 1558

    /* Populate with known devices */

1559
    if (udevEnumerateDevices(udev) != 0)
1560
        goto out_unlock;
1561 1562

    ret = 0;
1563

1564
 out_unlock:
1565
    nodeDeviceUnlock();
1566

1567
    if (ret == -1)
1568
        nodeStateCleanup();
1569 1570 1571 1572
    return ret;
}


1573
static int nodeStateReload(void)
1574 1575 1576 1577 1578
{
    return 0;
}


1579
static virNodeDeviceDriver udevNodeDeviceDriver = {
1580
    .name = "udev",
1581 1582
    .nodeNumOfDevices = nodeNumOfDevices, /* 0.7.3 */
    .nodeListDevices = nodeListDevices, /* 0.7.3 */
1583
    .connectListAllNodeDevices = nodeConnectListAllNodeDevices, /* 0.10.2 */
1584 1585 1586 1587 1588 1589 1590 1591
    .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 */
1592 1593 1594
};

static virStateDriver udevStateDriver = {
M
Matthias Bolte 已提交
1595
    .name = "udev",
1596 1597 1598
    .stateInitialize = nodeStateInitialize, /* 0.7.3 */
    .stateCleanup = nodeStateCleanup, /* 0.7.3 */
    .stateReload = nodeStateReload, /* 0.7.3 */
1599 1600 1601 1602
};

int udevNodeRegister(void)
{
1603
    VIR_DEBUG("Registering udev node device backend");
1604

1605
    if (virSetSharedNodeDeviceDriver(&udevNodeDeviceDriver) < 0)
1606 1607 1608 1609
        return -1;

    return virRegisterStateDriver(&udevStateDriver);
}