node_device_udev.c 44.3 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
    if (str && virStrToLong_i(str, NULL, base, value) < 0) {
108 109
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to convert '%s' to int"), str);
110
        return -1;
111
    }
112
    return 0;
113 114 115 116 117 118 119 120
}


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

123
    str = udevGetDeviceProperty(udev_device, property_key);
124

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


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

139
    ret = udev_device_get_sysattr_value(udev_device, attr_name);
140 141

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


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

156
    virStringStripControlChars(*value);
157

158 159
    if (*value != NULL && (STREQ(*value, "")))
        VIR_FREE(*value);
160

161
    return 0;
162 163 164 165 166 167 168 169
}


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

172
    str = udevGetDeviceSysfsAttr(udev_device, attr_name);
173

174
    if (str && virStrToLong_i(str, NULL, base, value) < 0) {
175 176
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to convert '%s' to int"), str);
177
        return -1;
178 179
    }

180
    return 0;
181 182 183 184 185 186 187 188
}


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

191
    str = udevGetDeviceSysfsAttr(udev_device, attr_name);
192

193
    if (str && virStrToLong_ui(str, NULL, base, value) < 0) {
194 195
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to convert '%s' to unsigned int"), str);
196
        return -1;
197 198
    }

199
    return 0;
200 201 202 203 204 205 206
}


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

209
    str = udevGetDeviceSysfsAttr(udev_device, attr_name);
210

211
    if (str && virStrToLong_ull(str, NULL, 0, value) < 0) {
212 213
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to convert '%s' to unsigned long long"), str);
J
Ján Tomko 已提交
214
        return -1;
215 216
    }

J
Ján Tomko 已提交
217
    return 0;
218 219 220 221 222 223 224
}


static int udevGenerateDeviceName(struct udev_device *device,
                                  virNodeDeviceDefPtr def,
                                  const char *s)
{
225 226
    int ret = 0;
    size_t i;
227 228
    virBuffer buf = VIR_BUFFER_INITIALIZER;

229
    virBufferAsprintf(&buf, "%s_%s",
230 231 232
                      udev_device_get_subsystem(device),
                      udev_device_get_sysname(device));

233
    if (s != NULL)
234
        virBufferAsprintf(&buf, "_%s", s);
235

236 237
    if (virBufferCheckError(&buf) < 0)
        return -1;
238 239 240

    def->name = virBufferContentAndReset(&buf);

241
    for (i = 0; i < strlen(def->name); i++) {
242
        if (!(c_isalnum(*(def->name + i))))
243 244 245 246 247 248
            *(def->name + i) = '_';
    }

    return ret;
}

249
#if HAVE_UDEV_LOGGING
J
Ján Tomko 已提交
250 251 252 253 254 255 256 257 258
typedef void (*udevLogFunctionPtr)(struct udev *udev,
                                   int priority,
                                   const char *file,
                                   int line,
                                   const char *fn,
                                   const char *format,
                                   va_list args);

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

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

    format = virBufferContentAndReset(&buf);

276
    virLogVMessage(&virLogSelf,
J
Ján Tomko 已提交
277 278 279 280
                   virLogPriorityFromSyslog(priority),
                   file, line, fn, NULL, format ? format : fmt, args);

    VIR_FREE(format);
281
}
282
#endif
283 284


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

309 310 311
    if (VIR_STRDUP(*vendor_string, vendor_name) < 0||
        VIR_STRDUP(*product_string, device_name) < 0)
        goto out;
312 313 314

    ret = 0;

315
 out:
316 317 318 319
    return ret;
}


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

331
    syspath = udev_device_get_syspath(device);
332

333
    if (udevGetUintProperty(device, "PCI_CLASS", &data->pci_dev.class, 16) < 0)
334 335
        goto out;

336 337 338 339 340 341 342 343
    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);
344 345 346
        goto out;
    }

347
    if (udevGetUintSysfsAttr(device, "vendor", &data->pci_dev.vendor, 16) < 0)
348 349
        goto out;

350
    if (udevGetUintSysfsAttr(device, "device", &data->pci_dev.product, 16) < 0)
351 352
        goto out;

353 354 355 356 357 358
    if (udevTranslatePCIIds(data->pci_dev.vendor,
                            data->pci_dev.product,
                            &data->pci_dev.vendor_name,
                            &data->pci_dev.product_name) != 0) {
        goto out;
    }
359

360
    if (udevGenerateDeviceName(device, def, NULL) != 0)
361 362
        goto out;

363 364 365 366 367
    /* The default value is -1, because it can't be 0
     * as zero is valid node number. */
    data->pci_dev.numa_node = -1;
    if (udevGetIntSysfsAttr(device, "numa_node",
                            &data->pci_dev.numa_node, 10) < 0)
368 369
        goto out;

370
    if (nodeDeviceSysfsGetPCIRelatedDevCaps(syspath, data) < 0)
371 372
        goto out;

373 374 375 376 377 378
    if (!(pciDev = virPCIDeviceNew(data->pci_dev.domain,
                                   data->pci_dev.bus,
                                   data->pci_dev.slot,
                                   data->pci_dev.function)))
        goto out;

379
    /* We need to be root to read PCI device configs */
380
    if (priv->privileged) {
381 382 383
        if (virPCIGetHeaderType(pciDev, &data->pci_dev.hdrType) < 0)
            goto out;

384 385
        if (virPCIDeviceIsPCIExpress(pciDev) > 0) {
            if (VIR_ALLOC(pci_express) < 0)
386 387
                goto out;

388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
            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;
406 407 408
        }
    }

409 410
    ret = 0;

411
 out:
412
    virPCIDeviceFree(pciDev);
413
    virPCIEDeviceInfoFree(pci_express);
414 415 416 417 418 419 420
    return ret;
}


static int udevProcessUSBDevice(struct udev_device *device,
                                virNodeDeviceDefPtr def)
{
421
    virNodeDevCapDataPtr data = &def->caps->data;
422 423
    int ret = -1;

424
    if (udevGetUintProperty(device, "BUSNUM", &data->usb_dev.bus, 10) < 0)
425
        goto out;
426
    if (udevGetUintProperty(device, "DEVNUM", &data->usb_dev.device, 10) < 0)
427
        goto out;
428
    if (udevGetUintProperty(device, "ID_VENDOR_ID", &data->usb_dev.vendor, 16) < 0)
429 430
        goto out;

431 432 433 434 435 436
    if (udevGetStringProperty(device,
                              "ID_VENDOR_FROM_DATABASE",
                              &data->usb_dev.vendor_name) < 0)
        goto out;

    if (!data->usb_dev.vendor_name &&
437 438
        udevGetStringSysfsAttr(device, "manufacturer",
                               &data->usb_dev.vendor_name) < 0)
439 440
        goto out;

441
    if (udevGetUintProperty(device, "ID_MODEL_ID", &data->usb_dev.product, 16) < 0)
442 443
        goto out;

444 445 446 447 448 449
    if (udevGetStringProperty(device,
                              "ID_MODEL_FROM_DATABASE",
                              &data->usb_dev.product_name) < 0)
        goto out;

    if (!data->usb_dev.product_name &&
450 451
        udevGetStringSysfsAttr(device, "product",
                               &data->usb_dev.product_name) < 0)
452 453
        goto out;

454
    if (udevGenerateDeviceName(device, def, NULL) != 0)
455 456 457 458
        goto out;

    ret = 0;

459
 out:
460 461 462 463 464 465 466 467
    return ret;
}


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

470 471
    if (udevGetUintSysfsAttr(device, "bInterfaceNumber",
                             &data->usb_if.number, 16) < 0)
472 473
        goto out;

474 475
    if (udevGetUintSysfsAttr(device, "bInterfaceClass",
                             &data->usb_if._class, 16) < 0)
476 477
        goto out;

478 479
    if (udevGetUintSysfsAttr(device, "bInterfaceSubClass",
                             &data->usb_if.subclass, 16) < 0)
480 481
        goto out;

482 483
    if (udevGetUintSysfsAttr(device, "bInterfaceProtocol",
                             &data->usb_if.protocol, 16) < 0)
484 485
        goto out;

486
    if (udevGenerateDeviceName(device, def, NULL) != 0)
487 488 489 490
        goto out;

    ret = 0;

491
 out:
492 493 494 495 496 497 498 499
    return ret;
}


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

D
David Allan 已提交
503 504 505 506 507 508
    if (devtype && STREQ(devtype, "wlan")) {
        data->net.subtype = VIR_NODE_DEV_CAP_NET_80211;
    } else {
        data->net.subtype = VIR_NODE_DEV_CAP_NET_80203;
    }

509 510
    if (udevGetStringProperty(device,
                              "INTERFACE",
511
                              &data->net.ifname) < 0)
512 513
        goto out;

514 515
    if (udevGetStringSysfsAttr(device, "address",
                               &data->net.address) < 0)
516 517
        goto out;

518
    if (udevGetUintSysfsAttr(device, "addr_len", &data->net.address_len, 0) < 0)
519 520
        goto out;

521
    if (udevGenerateDeviceName(device, def, data->net.address) != 0)
522 523
        goto out;

524 525 526
    if (virNetDevGetLinkInfo(data->net.ifname, &data->net.lnk) < 0)
        goto out;

527 528 529
    if (virNetDevGetFeatures(data->net.ifname, &data->net.features) < 0)
        goto out;

530 531
    ret = 0;

532
 out:
533 534 535 536 537 538 539 540
    return ret;
}


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

545
    filename = last_component(def->sysfs_path);
546

547 548 549 550 551
    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);
552 553 554
        goto out;
    }

555
    nodeDeviceSysfsGetSCSIHostCaps(&def->caps->data);
556

557
    if (udevGenerateDeviceName(device, def, NULL) != 0)
558 559 560 561
        goto out;

    ret = 0;

562
 out:
563 564 565 566
    return ret;
}


D
David Allan 已提交
567 568 569 570 571
static int udevProcessSCSITarget(struct udev_device *device ATTRIBUTE_UNUSED,
                                 virNodeDeviceDefPtr def)
{
    int ret = -1;
    const char *sysname = NULL;
572
    virNodeDevCapDataPtr data = &def->caps->data;
D
David Allan 已提交
573 574 575

    sysname = udev_device_get_sysname(device);

576
    if (VIR_STRDUP(data->scsi_target.name, sysname) < 0)
D
David Allan 已提交
577 578
        goto out;

579
    if (udevGenerateDeviceName(device, def, NULL) != 0)
D
David Allan 已提交
580 581 582 583
        goto out;

    ret = 0;

584
 out:
D
David Allan 已提交
585 586 587 588
    return ret;
}


589
static int udevGetSCSIType(virNodeDeviceDefPtr def ATTRIBUTE_UNUSED,
590
                           unsigned int type, char **typestring)
591 592 593 594 595 596 597 598
{
    int ret = 0;
    int foundtype = 1;

    *typestring = NULL;

    switch (type) {
    case TYPE_DISK:
599
        ignore_value(VIR_STRDUP(*typestring, "disk"));
600 601
        break;
    case TYPE_TAPE:
602
        ignore_value(VIR_STRDUP(*typestring, "tape"));
603 604
        break;
    case TYPE_PROCESSOR:
605
        ignore_value(VIR_STRDUP(*typestring, "processor"));
606 607
        break;
    case TYPE_WORM:
608
        ignore_value(VIR_STRDUP(*typestring, "worm"));
609 610
        break;
    case TYPE_ROM:
611
        ignore_value(VIR_STRDUP(*typestring, "cdrom"));
612 613
        break;
    case TYPE_SCANNER:
614
        ignore_value(VIR_STRDUP(*typestring, "scanner"));
615 616
        break;
    case TYPE_MOD:
617
        ignore_value(VIR_STRDUP(*typestring, "mod"));
618 619
        break;
    case TYPE_MEDIUM_CHANGER:
620
        ignore_value(VIR_STRDUP(*typestring, "changer"));
621 622
        break;
    case TYPE_ENCLOSURE:
623
        ignore_value(VIR_STRDUP(*typestring, "enclosure"));
624
        break;
625
    case TYPE_RAID:
626
        ignore_value(VIR_STRDUP(*typestring, "raid"));
627
        break;
628 629 630 631 632 633 634 635 636 637
    case TYPE_NO_LUN:
    default:
        foundtype = 0;
        break;
    }

    if (*typestring == NULL) {
        if (foundtype == 1) {
            ret = -1;
        } else {
638 639
            VIR_DEBUG("Failed to find SCSI device type %d for %s",
                      type, def->sysfs_path);
640 641 642 643 644 645 646 647 648 649 650 651
        }
    }

    return ret;
}


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

655
    filename = last_component(def->sysfs_path);
656

657 658 659 660 661 662 663 664
    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;
665 666
    }

667 668 669 670 671
    if (udev_device_get_sysattr_value(device, "type")) {
        if (udevGetUintSysfsAttr(device, "type", &tmp, 0) < 0)
            goto out;

        if (udevGetSCSIType(def, tmp, &data->scsi.type) < 0)
672 673 674
            goto out;
    }

675
    if (udevGenerateDeviceName(device, def, NULL) != 0)
676 677 678 679
        goto out;

    ret = 0;

680
 out:
681
    if (ret != 0) {
682 683 684
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to process SCSI device with sysfs path '%s'"),
                       def->sysfs_path);
685 686 687 688 689 690 691 692
    }
    return ret;
}


static int udevProcessDisk(struct udev_device *device,
                           virNodeDeviceDefPtr def)
{
693
    virNodeDevCapDataPtr data = &def->caps->data;
694 695
    int ret = 0;

J
Ján Tomko 已提交
696
    if (udevGetUint64SysfsAttr(device, "size", &data->storage.num_blocks) < 0)
697 698
        goto out;

J
Ján Tomko 已提交
699 700
    if (udevGetUint64SysfsAttr(device, "queue/logical_block_size",
                               &data->storage.logical_block_size) < 0)
701 702 703 704 705
        goto out;

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

706
 out:
707 708 709 710
    return ret;
}


711 712 713
static int udevProcessRemoveableMedia(struct udev_device *device,
                                      virNodeDeviceDefPtr def,
                                      int has_media)
714
{
715
    virNodeDevCapDataPtr data = &def->caps->data;
716
    int is_removable = 0, ret = 0;
717

718 719 720
    if (udevGetIntSysfsAttr(device, "removable", &is_removable, 0) < 0)
        return -1;
    if (is_removable == 1)
721 722
        def->caps->data.storage.flags |= VIR_NODE_DEV_CAP_STORAGE_REMOVABLE;

723
    if (has_media) {
724 725 726 727

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

728
        if (udevGetStringProperty(device, "ID_FS_LABEL",
729
                                  &data->storage.media_label) < 0)
730 731
            goto out;

J
Ján Tomko 已提交
732 733
        if (udevGetUint64SysfsAttr(device, "size",
                                   &data->storage.num_blocks) < 0)
734 735
            goto out;

J
Ján Tomko 已提交
736 737
        if (udevGetUint64SysfsAttr(device, "queue/logical_block_size",
                                   &data->storage.logical_block_size) < 0)
738 739 740 741 742 743 744 745 746 747 748
            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;
    }

749
 out:
750 751 752
    return ret;
}

753 754 755 756 757 758 759 760 761 762 763
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);
764
    if (VIR_STRDUP(def->caps->data.storage.drive_type, "cdrom") < 0)
765 766
        goto out;

767 768 769
    if (udevHasDeviceProperty(device, "ID_CDROM_MEDIA") &&
        udevGetIntProperty(device, "ID_CDROM_MEDIA", &has_media, 0) < 0)
        goto out;
770 771

    ret = udevProcessRemoveableMedia(device, def, has_media);
772
 out:
773 774 775 776 777 778 779 780
    return ret;
}

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

781
    if (udevHasDeviceProperty(device, "ID_CDROM_MEDIA")) {
782
        /* USB floppy */
783 784
        if (udevGetIntProperty(device, "DKD_MEDIA_AVAILABLE", &has_media, 0) < 0)
            return -1;
785
    } else if (udevHasDeviceProperty(device, "ID_FS_LABEL")) {
786 787 788 789 790 791
        /* Legacy floppy */
        has_media = 1;
    }

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

793 794 795 796

static int udevProcessSD(struct udev_device *device,
                         virNodeDeviceDefPtr def)
{
797
    virNodeDevCapDataPtr data = &def->caps->data;
798 799
    int ret = 0;

J
Ján Tomko 已提交
800 801
    if (udevGetUint64SysfsAttr(device, "size",
                               &data->storage.num_blocks) < 0)
802 803
        goto out;

J
Ján Tomko 已提交
804 805
    if (udevGetUint64SysfsAttr(device, "queue/logical_block_size",
                               &data->storage.logical_block_size) < 0)
806 807 808 809 810
        goto out;

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

811
 out:
812 813 814 815 816
    return ret;
}



817 818 819 820 821 822
/* 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)
{
823 824 825
    VIR_DEBUG("Could not find definitive storage type for device "
              "with sysfs path '%s', trying to guess it",
              def->sysfs_path);
826

827 828 829
    /* virtio disk */
    if (STRPREFIX(def->caps->data.storage.block, "/dev/vd") &&
        VIR_STRDUP(def->caps->data.storage.drive_type, "disk") > 0) {
830
        VIR_DEBUG("Found storage type '%s' for device "
831
                  "with sysfs path '%s'",
832 833
                  def->caps->data.storage.drive_type,
                  def->sysfs_path);
834
        return 0;
835
    }
836 837 838
    VIR_DEBUG("Could not determine storage type "
              "for device with sysfs path '%s'", def->sysfs_path);
    return -1;
839 840 841 842 843
}


static void udevStripSpaces(char *s)
{
844
    if (s == NULL)
845 846 847 848 849 850 851 852 853 854 855 856 857 858
        return;

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

    return;
}


static int udevProcessStorage(struct udev_device *device,
                              virNodeDeviceDefPtr def)
{
859
    virNodeDevCapDataPtr data = &def->caps->data;
860
    int ret = -1;
861
    const char* devnode;
862

863
    devnode = udev_device_get_devnode(device);
864
    if (!devnode) {
865
        VIR_DEBUG("No devnode for '%s'", udev_device_get_devpath(device));
866 867
        goto out;
    }
868 869 870

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

872
    if (udevGetStringProperty(device, "ID_BUS", &data->storage.bus) < 0)
873
        goto out;
874
    if (udevGetStringProperty(device, "ID_SERIAL", &data->storage.serial) < 0)
875
        goto out;
876

877
    if (udevGetStringSysfsAttr(device, "device/vendor", &data->storage.vendor) < 0)
878 879
        goto out;
    udevStripSpaces(def->caps->data.storage.vendor);
880
    if (udevGetStringSysfsAttr(device, "device/model", &data->storage.model) < 0)
881 882 883 884 885 886 887
        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. */

888 889 890 891
    if (udevGetStringProperty(device, "ID_TYPE", &data->storage.drive_type) < 0)
        goto out;

    if (!data->storage.drive_type ||
892
        STREQ(def->caps->data.storage.drive_type, "generic")) {
893 894
        int val = 0;
        const char *str = NULL;
895 896 897

        /* All floppy drives have the ID_DRIVE_FLOPPY prop. This is
         * needed since legacy floppies don't have a drive_type */
898
        if (udevGetIntProperty(device, "ID_DRIVE_FLOPPY", &val, 0) < 0)
899 900 901
            goto out;
        else if (val == 1)
            str = "floppy";
902

903
        if (!str) {
904
            if (udevGetIntProperty(device, "ID_CDROM", &val, 0) < 0)
905
                goto out;
906 907 908
            else if (val == 1)
                str = "cd";
        }
909

910
        if (!str) {
911
            if (udevGetIntProperty(device, "ID_DRIVE_FLASH_SD", &val, 0) < 0)
912
                goto out;
913 914 915
            if (val == 1)
                str = "sd";
        }
916

917 918
        if (str) {
            if (VIR_STRDUP(data->storage.drive_type, str) < 0)
919
                goto out;
920 921
        } else {
            /* If udev doesn't have it, perhaps we can guess it. */
922
            if (udevKludgeStorageType(def) != 0)
923
                goto out;
924 925 926 927 928 929 930
        }
    }

    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);
931 932
    } else if (STREQ(def->caps->data.storage.drive_type, "floppy")) {
        ret = udevProcessFloppy(device, def);
933 934
    } else if (STREQ(def->caps->data.storage.drive_type, "sd")) {
        ret = udevProcessSD(device, def);
935
    } else {
936 937
        VIR_DEBUG("Unsupported storage type '%s'",
                  def->caps->data.storage.drive_type);
938 939 940
        goto out;
    }

941
    if (udevGenerateDeviceName(device, def, data->storage.serial) != 0)
942 943
        goto out;

944
 out:
945
    VIR_DEBUG("Storage ret=%d", ret);
946 947 948
    return ret;
}

949
static int
950
udevProcessSCSIGeneric(struct udev_device *dev,
951 952
                       virNodeDeviceDefPtr def)
{
953 954
    if (udevGetStringProperty(dev, "DEVNAME", &def->caps->data.sg.path) < 0 ||
        !def->caps->data.sg.path)
955 956 957 958 959 960 961 962
        return -1;

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

    return 0;
}

963 964
static int
udevGetDeviceType(struct udev_device *device,
965
                  virNodeDevCapType *type)
966 967
{
    const char *devtype = NULL;
968
    char *subsystem = NULL;
969
    int ret = -1;
D
David Allan 已提交
970

971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990
    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. */
991
        if (udevHasDeviceProperty(device, "PCI_CLASS"))
992
            *type = VIR_NODE_DEV_CAP_PCI_DEV;
993

994 995 996 997
        /* 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. */
998
        if (udevHasDeviceProperty(device, "INTERFACE"))
999
            *type = VIR_NODE_DEV_CAP_NET;
1000 1001

        /* SCSI generic device doesn't set DEVTYPE property */
1002 1003 1004 1005
        if (udevGetStringProperty(device, "SUBSYSTEM", &subsystem) < 0)
            return -1;

        if (STREQ_NULLABLE(subsystem, "scsi_generic"))
1006 1007
            *type = VIR_NODE_DEV_CAP_SCSI_GENERIC;
        VIR_FREE(subsystem);
1008 1009
    }

1010 1011 1012 1013 1014 1015
    if (!*type)
        VIR_DEBUG("Could not determine device type for device "
                  "with sysfs name '%s'",
                  udev_device_get_sysname(device));
    else
        ret = 0;
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025

    return ret;
}


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

1026
    switch (def->caps->data.type) {
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
    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 已提交
1045 1046 1047
    case VIR_NODE_DEV_CAP_SCSI_TARGET:
        ret = udevProcessSCSITarget(device, def);
        break;
1048 1049 1050 1051 1052 1053
    case VIR_NODE_DEV_CAP_SCSI:
        ret = udevProcessSCSIDevice(device, def);
        break;
    case VIR_NODE_DEV_CAP_STORAGE:
        ret = udevProcessStorage(device, def);
        break;
1054
    case VIR_NODE_DEV_CAP_SCSI_GENERIC:
1055
        ret = udevProcessSCSIGeneric(device, def);
1056
        break;
1057
    default:
1058 1059
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unknown device type %d"), def->caps->data.type);
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
        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);
1075
    dev = virNodeDeviceFindBySysfsPath(&driver->devs, name);
1076

1077
    if (dev != NULL) {
1078
        VIR_DEBUG("Removing device '%s' with sysfs path '%s'",
1079
                  dev->def->name, name);
1080
        virNodeDeviceObjRemove(&driver->devs, dev);
1081
    } else {
1082 1083
        VIR_DEBUG("Failed to find device to remove that has udev name '%s'",
                  name);
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
        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;

1099 1100
    parent_device = device;
    do {
1101

1102
        parent_device = udev_device_get_parent(parent_device);
1103
        if (parent_device == NULL)
1104
            break;
1105

1106 1107
        parent_sysfs_path = udev_device_get_syspath(parent_device);
        if (parent_sysfs_path == NULL) {
1108 1109 1110
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Could not get syspath for parent of '%s'"),
                           udev_device_get_syspath(parent_device));
1111
            goto out;
1112 1113
        }

1114
        dev = virNodeDeviceFindBySysfsPath(&driver->devs,
1115 1116
                                           parent_sysfs_path);
        if (dev != NULL) {
1117 1118
            if (VIR_STRDUP(def->parent, dev->def->name) < 0) {
                virNodeDeviceObjUnlock(dev);
1119 1120
                goto out;
            }
1121
            virNodeDeviceObjUnlock(dev);
1122

1123
            if (VIR_STRDUP(def->parent_sysfs_path, parent_sysfs_path) < 0)
1124 1125 1126 1127 1128
                goto out;
        }

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

1129
    if (!def->parent && VIR_STRDUP(def->parent, "computer") < 0)
1130 1131 1132 1133
        goto out;

    ret = 0;

1134
 out:
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
    return ret;
}


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

1145
    if (VIR_ALLOC(def) != 0)
1146 1147
        goto out;

1148 1149 1150
    if (VIR_STRDUP(def->sysfs_path, udev_device_get_syspath(device)) < 0)
        goto out;

1151
    if (udevGetStringProperty(device, "DRIVER", &def->driver) < 0)
1152 1153
        goto out;

1154
    if (VIR_ALLOC(def->caps) != 0)
1155 1156
        goto out;

1157
    if (udevGetDeviceType(device, &def->caps->data.type) != 0)
1158 1159
        goto out;

1160
    if (udevGetDeviceDetails(device, def) != 0)
1161 1162
        goto out;

1163
    if (udevSetParent(device, def) != 0)
1164 1165
        goto out;

1166 1167
    /* If this is a device change, the old definition will be freed
     * and the current definition will take its place. */
1168
    dev = virNodeDeviceAssignDef(&driver->devs, def);
1169
    if (dev == NULL)
1170 1171 1172 1173 1174 1175
        goto out;

    virNodeDeviceObjUnlock(dev);

    ret = 0;

1176
 out:
1177
    if (ret != 0) {
1178
        VIR_DEBUG("Discarding device %d %p %s", ret, def,
1179
                  def ? NULLSTR(def->sysfs_path) : "");
1180 1181 1182
        virNodeDeviceDefFree(def);
    }

1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
    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);
1197

1198 1199
    if (device != NULL) {
        if (udevAddOneDevice(device) != 0) {
1200 1201
            VIR_DEBUG("Failed to create node device for udev device '%s'",
                      name);
1202 1203 1204 1205
        }
        ret = 0;
    }

1206 1207
    udev_device_unref(device);

1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
    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) {
1222 1223 1224
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("udev scan devices returned %d"),
                       ret);
1225 1226 1227 1228 1229 1230 1231 1232 1233
        goto out;
    }

    udev_list_entry_foreach(list_entry,
                            udev_enumerate_get_list_entry(udev_enumerate)) {

        udevProcessDeviceListEntry(udev, list_entry);
    }

1234
 out:
1235 1236 1237 1238 1239
    udev_enumerate_unref(udev_enumerate);
    return ret;
}


1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
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;
}


1252
static int nodeStateCleanup(void)
1253
{
1254
    udevPrivate *priv = NULL;
1255 1256 1257
    struct udev_monitor *udev_monitor = NULL;
    struct udev *udev = NULL;

J
Ján Tomko 已提交
1258 1259
    if (!driver)
        return -1;
1260

J
Ján Tomko 已提交
1261
    nodeDeviceLock();
1262

J
Ján Tomko 已提交
1263
    priv = driver->privateData;
1264

1265 1266 1267
    if (priv) {
        if (priv->watch != -1)
            virEventRemoveHandle(priv->watch);
1268

1269
        udev_monitor = DRV_STATE_UDEV_MONITOR(driver);
1270

1271 1272 1273 1274
        if (udev_monitor != NULL) {
            udev = udev_monitor_get_udev(udev_monitor);
            udev_monitor_unref(udev_monitor);
        }
J
Ján Tomko 已提交
1275
    }
1276

J
Ján Tomko 已提交
1277 1278
    if (udev != NULL)
        udev_unref(udev);
1279

J
Ján Tomko 已提交
1280 1281 1282 1283 1284
    virNodeDeviceObjListFree(&driver->devs);
    nodeDeviceUnlock();
    virMutexDestroy(&driver->lock);
    VIR_FREE(driver);
    VIR_FREE(priv);
1285

J
Ján Tomko 已提交
1286 1287
    udevPCITranslateDeinit();
    return 0;
1288 1289 1290 1291 1292 1293 1294 1295 1296
}


static void udevEventHandleCallback(int watch ATTRIBUTE_UNUSED,
                                    int fd,
                                    int events ATTRIBUTE_UNUSED,
                                    void *data ATTRIBUTE_UNUSED)
{
    struct udev_device *device = NULL;
1297
    struct udev_monitor *udev_monitor = DRV_STATE_UDEV_MONITOR(driver);
1298 1299 1300
    const char *action = NULL;
    int udev_fd = -1;

1301
    nodeDeviceLock();
1302 1303
    udev_fd = udev_monitor_get_fd(udev_monitor);
    if (fd != udev_fd) {
1304 1305 1306 1307
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("File descriptor returned by udev %d does not "
                         "match node device file descriptor %d"),
                       fd, udev_fd);
1308 1309 1310 1311 1312
        goto out;
    }

    device = udev_monitor_receive_device(udev_monitor);
    if (device == NULL) {
1313 1314
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("udev_monitor_receive_device returned NULL"));
1315 1316 1317 1318
        goto out;
    }

    action = udev_device_get_action(device);
1319
    VIR_DEBUG("udev action: '%s'", action);
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330

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

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

1331
 out:
1332
    udev_device_unref(device);
1333
    nodeDeviceUnlock();
1334 1335 1336 1337
    return;
}


1338 1339
/* DMI is intel-compatible specific */
#if defined(__x86_64__) || defined(__i386__) || defined(__amd64__)
1340
static void
1341
udevGetDMIData(virNodeDevCapDataPtr data)
1342 1343 1344 1345
{
    struct udev *udev = NULL;
    struct udev_device *device = NULL;

1346
    udev = udev_monitor_get_udev(DRV_STATE_UDEV_MONITOR(driver));
1347

1348 1349
    device = udev_device_new_from_syspath(udev, DMI_DEVPATH);
    if (device == NULL) {
1350 1351
        device = udev_device_new_from_syspath(udev, DMI_DEVPATH_FALLBACK);
        if (device == NULL) {
1352 1353 1354
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Failed to get udev device for syspath '%s' or '%s'"),
                           DMI_DEVPATH, DMI_DEVPATH_FALLBACK);
1355 1356
            goto out;
        }
1357 1358
    }

1359 1360
    if (udevGetStringSysfsAttr(device, "product_name",
                               &data->system.product_name) < 0)
1361
        goto out;
1362 1363
    if (udevGetStringSysfsAttr(device, "sys_vendor",
                               &data->system.hardware.vendor_name) < 0)
1364
        goto out;
1365 1366
    if (udevGetStringSysfsAttr(device, "product_version",
                               &data->system.hardware.version) < 0)
1367
        goto out;
1368 1369
    if (udevGetStringSysfsAttr(device, "product_serial",
                               &data->system.hardware.serial) < 0)
1370 1371
        goto out;

1372
    if (virGetHostUUID(data->system.hardware.uuid))
1373 1374
        goto out;

1375 1376
    if (udevGetStringSysfsAttr(device, "bios_vendor",
                               &data->system.firmware.vendor_name) < 0)
1377
        goto out;
1378 1379
    if (udevGetStringSysfsAttr(device, "bios_version",
                               &data->system.firmware.version) < 0)
1380
        goto out;
1381 1382
    if (udevGetStringSysfsAttr(device, "bios_date",
                               &data->system.firmware.release_date) < 0)
1383 1384
        goto out;

1385
 out:
1386
    if (device != NULL)
1387 1388 1389
        udev_device_unref(device);
    return;
}
1390
#endif
1391 1392 1393 1394 1395 1396 1397 1398


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

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

1402
    if (VIR_STRDUP(def->name, "computer") < 0)
1403 1404
        goto out;

1405
    if (VIR_ALLOC(def->caps) != 0)
1406 1407
        goto out;

1408
#if defined(__x86_64__) || defined(__i386__) || defined(__amd64__)
1409
    udevGetDMIData(&def->caps->data);
1410
#endif
1411

1412
    dev = virNodeDeviceAssignDef(&driver->devs, def);
1413
    if (dev == NULL)
1414 1415 1416 1417 1418 1419
        goto out;

    virNodeDeviceObjUnlock(dev);

    ret = 0;

1420
 out:
1421
    if (ret == -1)
1422 1423
        virNodeDeviceDefFree(def);

1424 1425 1426
    return ret;
}

1427
static int udevPCITranslateInit(bool privileged ATTRIBUTE_UNUSED)
1428
{
1429 1430 1431 1432
#if defined __s390__ || defined __s390x_
    /* On s390(x) system there is no PCI bus.
     * Therefore there is nothing to initialize here. */
#else
1433
    int rc;
1434

1435
    if ((rc = pci_system_init()) != 0) {
1436 1437 1438
        /* 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.  */
1439
        if (errno != ENOENT && (privileged  || errno != EACCES)) {
1440 1441
            virReportSystemError(rc, "%s",
                                 _("Failed to initialize libpciaccess"));
1442
            return -1;
1443
        }
1444
    }
1445
#endif
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
    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;

1457
    if (VIR_ALLOC(priv) < 0)
1458
        return -1;
1459 1460

    priv->watch = -1;
1461
    priv->privileged = privileged;
1462

1463
    if (VIR_ALLOC(driver) < 0) {
1464
        VIR_FREE(priv);
1465
        return -1;
1466 1467
    }

1468
    if (virMutexInit(&driver->lock) < 0) {
1469 1470
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Unable to initialize mutex"));
1471
        VIR_FREE(priv);
1472
        VIR_FREE(driver);
1473
        return -1;
1474 1475
    }

1476
    driver->privateData = priv;
1477
    nodeDeviceLock();
1478

1479
    if (udevPCITranslateInit(privileged) < 0)
1480 1481
        goto out_unlock;

1482 1483 1484 1485 1486 1487 1488
    /*
     * 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();
1489
#if HAVE_UDEV_LOGGING
J
Ján Tomko 已提交
1490 1491
    /* cast to get rid of missing-format-attribute warning */
    udev_set_log_fn(udev, (udevLogFunctionPtr) udevLogFunction);
1492
#endif
1493

1494 1495
    priv->udev_monitor = udev_monitor_new_from_netlink(udev, "udev");
    if (priv->udev_monitor == NULL) {
1496 1497
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("udev_monitor_new_from_netlink returned NULL"));
1498
        goto out_unlock;
1499 1500
    }

1501
    udev_monitor_enable_receiving(priv->udev_monitor);
1502 1503 1504 1505 1506 1507 1508 1509 1510

    /* 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.  */
1511 1512 1513
    priv->watch = virEventAddHandle(udev_monitor_get_fd(priv->udev_monitor),
                                    VIR_EVENT_HANDLE_READABLE,
                                    udevEventHandleCallback, NULL, NULL);
1514
    if (priv->watch == -1)
1515
        goto out_unlock;
1516 1517

    /* Create a fictional 'computer' device to root the device tree. */
1518
    if (udevSetupSystemDev() != 0)
1519
        goto out_unlock;
1520 1521 1522

    /* Populate with known devices */

1523
    if (udevEnumerateDevices(udev) != 0)
1524
        goto out_unlock;
1525 1526

    ret = 0;
1527

1528
 out_unlock:
1529
    nodeDeviceUnlock();
1530

1531
    if (ret == -1)
1532
        nodeStateCleanup();
1533 1534 1535 1536
    return ret;
}


1537
static int nodeStateReload(void)
1538 1539 1540 1541 1542
{
    return 0;
}


1543
static virNodeDeviceDriver udevNodeDeviceDriver = {
1544
    .name = "udev",
1545 1546
    .nodeNumOfDevices = nodeNumOfDevices, /* 0.7.3 */
    .nodeListDevices = nodeListDevices, /* 0.7.3 */
1547
    .connectListAllNodeDevices = nodeConnectListAllNodeDevices, /* 0.10.2 */
1548 1549 1550 1551 1552 1553 1554 1555
    .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 */
1556 1557 1558
};

static virStateDriver udevStateDriver = {
M
Matthias Bolte 已提交
1559
    .name = "udev",
1560 1561 1562
    .stateInitialize = nodeStateInitialize, /* 0.7.3 */
    .stateCleanup = nodeStateCleanup, /* 0.7.3 */
    .stateReload = nodeStateReload, /* 0.7.3 */
1563 1564 1565 1566
};

int udevNodeRegister(void)
{
1567
    VIR_DEBUG("Registering udev node device backend");
1568

1569
    if (virSetSharedNodeDeviceDriver(&udevNodeDeviceDriver) < 0)
1570 1571 1572 1573
        return -1;

    return virRegisterStateDriver(&udevStateDriver);
}