2008-11-21 12:27:11 +00:00
|
|
|
/*
|
|
|
|
* node_device_hal.c: node device enumeration - HAL-based implementation
|
|
|
|
*
|
2011-07-06 20:40:19 +00:00
|
|
|
* Copyright (C) 2011 Red Hat, Inc.
|
2008-11-21 12:27:11 +00:00
|
|
|
* Copyright (C) 2008 Virtual Iron Software, Inc.
|
|
|
|
* Copyright (C) 2008 David F. Lively
|
|
|
|
*
|
|
|
|
* 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
|
2012-07-21 10:06:23 +00:00
|
|
|
* License along with this library; If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
2008-11-21 12:27:11 +00:00
|
|
|
*
|
|
|
|
* Author: David F. Lively <dlively@virtualiron.com>
|
|
|
|
*/
|
|
|
|
|
2008-12-21 18:49:11 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <libhal.h>
|
|
|
|
|
|
|
|
#include "node_device_conf.h"
|
2009-06-02 15:12:53 +00:00
|
|
|
#include "node_device_hal.h"
|
2008-11-21 12:27:11 +00:00
|
|
|
#include "virterror_internal.h"
|
|
|
|
#include "driver.h"
|
|
|
|
#include "datatypes.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "uuid.h"
|
2011-08-16 04:28:43 +00:00
|
|
|
#include "pci.h"
|
2008-11-21 12:27:11 +00:00
|
|
|
#include "logging.h"
|
2009-09-15 17:30:17 +00:00
|
|
|
#include "node_device_driver.h"
|
2012-04-19 14:34:35 +00:00
|
|
|
#include "virdbus.h"
|
2008-11-21 12:27:11 +00:00
|
|
|
|
2009-06-02 15:12:53 +00:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_NODEDEV
|
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
/*
|
|
|
|
* Host device enumeration (HAL implementation)
|
|
|
|
*/
|
|
|
|
|
|
|
|
static virDeviceMonitorStatePtr driverState;
|
|
|
|
|
|
|
|
#define CONN_DRV_STATE(conn) \
|
|
|
|
((virDeviceMonitorStatePtr)((conn)->devMonPrivateData))
|
|
|
|
#define DRV_STATE_HAL_CTX(ds) ((LibHalContext *)((ds)->privateData))
|
|
|
|
#define CONN_HAL_CTX(conn) DRV_STATE_HAL_CTX(CONN_DRV_STATE(conn))
|
|
|
|
|
|
|
|
#define NODE_DEV_UDI(obj) ((const char *)((obj)->privateData)
|
|
|
|
|
|
|
|
|
|
|
|
static const char *hal_name(const char *udi)
|
|
|
|
{
|
|
|
|
const char *name = strrchr(udi, '/');
|
|
|
|
if (name)
|
|
|
|
return name+1;
|
|
|
|
return udi;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int get_str_prop(LibHalContext *ctxt, const char *udi,
|
|
|
|
const char *prop, char **val_p)
|
|
|
|
{
|
|
|
|
char *val = libhal_device_get_property_string(ctxt, udi, prop, NULL);
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
if (*val) {
|
|
|
|
*val_p = val;
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
/* Treat empty strings as NULL values */
|
|
|
|
VIR_FREE(val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_int_prop(LibHalContext *ctxt, const char *udi,
|
|
|
|
const char *prop, int *val_p)
|
|
|
|
{
|
|
|
|
DBusError err;
|
|
|
|
int val;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
dbus_error_init(&err);
|
|
|
|
val = libhal_device_get_property_int(ctxt, udi, prop, &err);
|
|
|
|
rv = dbus_error_is_set(&err);
|
|
|
|
dbus_error_free(&err);
|
|
|
|
if (rv == 0)
|
|
|
|
*val_p = val;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_bool_prop(LibHalContext *ctxt, const char *udi,
|
|
|
|
const char *prop, int *val_p)
|
|
|
|
{
|
|
|
|
DBusError err;
|
|
|
|
int val;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
dbus_error_init(&err);
|
|
|
|
val = libhal_device_get_property_bool(ctxt, udi, prop, &err);
|
|
|
|
rv = dbus_error_is_set(&err);
|
|
|
|
dbus_error_free(&err);
|
|
|
|
if (rv == 0)
|
|
|
|
*val_p = val;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_uint64_prop(LibHalContext *ctxt, const char *udi,
|
|
|
|
const char *prop, unsigned long long *val_p)
|
|
|
|
{
|
|
|
|
DBusError err;
|
|
|
|
unsigned long long val;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
dbus_error_init(&err);
|
|
|
|
val = libhal_device_get_property_uint64(ctxt, udi, prop, &err);
|
|
|
|
rv = dbus_error_is_set(&err);
|
|
|
|
dbus_error_free(&err);
|
|
|
|
if (rv == 0)
|
|
|
|
*val_p = val;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gather_pci_cap(LibHalContext *ctx, const char *udi,
|
|
|
|
union _virNodeDevCapData *d)
|
|
|
|
{
|
|
|
|
char *sysfs_path;
|
|
|
|
|
|
|
|
if (get_str_prop(ctx, udi, "pci.linux.sysfs_path", &sysfs_path) == 0) {
|
|
|
|
char *p = strrchr(sysfs_path, '/');
|
|
|
|
if (p) {
|
|
|
|
(void)virStrToLong_ui(p+1, &p, 16, &d->pci_dev.domain);
|
|
|
|
(void)virStrToLong_ui(p+1, &p, 16, &d->pci_dev.bus);
|
|
|
|
(void)virStrToLong_ui(p+1, &p, 16, &d->pci_dev.slot);
|
|
|
|
(void)virStrToLong_ui(p+1, &p, 16, &d->pci_dev.function);
|
|
|
|
}
|
2009-12-14 13:44:12 +00:00
|
|
|
|
2011-08-16 04:28:43 +00:00
|
|
|
if (!pciGetPhysicalFunction(sysfs_path, &d->pci_dev.physical_function))
|
|
|
|
d->pci_dev.flags |= VIR_NODE_DEV_CAP_FLAG_PCI_PHYSICAL_FUNCTION;
|
|
|
|
|
|
|
|
if (!pciGetVirtualFunctions(sysfs_path, &d->pci_dev.virtual_functions,
|
|
|
|
&d->pci_dev.num_virtual_functions) ||
|
|
|
|
d->pci_dev.num_virtual_functions > 0)
|
|
|
|
d->pci_dev.flags |= VIR_NODE_DEV_CAP_FLAG_PCI_VIRTUAL_FUNCTION;
|
2009-12-14 13:44:12 +00:00
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
VIR_FREE(sysfs_path);
|
|
|
|
}
|
2009-12-14 13:44:12 +00:00
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
(void)get_int_prop(ctx, udi, "pci.vendor_id", (int *)&d->pci_dev.vendor);
|
|
|
|
if (get_str_prop(ctx, udi, "pci.vendor", &d->pci_dev.vendor_name) != 0)
|
|
|
|
(void)get_str_prop(ctx, udi, "info.vendor", &d->pci_dev.vendor_name);
|
|
|
|
(void)get_int_prop(ctx, udi, "pci.product_id", (int *)&d->pci_dev.product);
|
|
|
|
if (get_str_prop(ctx, udi, "pci.product", &d->pci_dev.product_name) != 0)
|
|
|
|
(void)get_str_prop(ctx, udi, "info.product", &d->pci_dev.product_name);
|
2009-12-14 13:44:12 +00:00
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_usb_cap(LibHalContext *ctx, const char *udi,
|
|
|
|
union _virNodeDevCapData *d)
|
|
|
|
{
|
|
|
|
(void)get_int_prop(ctx, udi, "usb.interface.number",
|
|
|
|
(int *)&d->usb_if.number);
|
|
|
|
(void)get_int_prop(ctx, udi, "usb.interface.class",
|
|
|
|
(int *)&d->usb_if._class);
|
|
|
|
(void)get_int_prop(ctx, udi, "usb.interface.subclass",
|
|
|
|
(int *)&d->usb_if.subclass);
|
|
|
|
(void)get_int_prop(ctx, udi, "usb.interface.protocol",
|
|
|
|
(int *)&d->usb_if.protocol);
|
|
|
|
(void)get_str_prop(ctx, udi, "usb.interface.description",
|
|
|
|
&d->usb_if.description);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_usb_device_cap(LibHalContext *ctx, const char *udi,
|
|
|
|
union _virNodeDevCapData *d)
|
|
|
|
{
|
|
|
|
(void)get_int_prop(ctx, udi, "usb_device.bus_number",
|
|
|
|
(int *)&d->usb_dev.bus);
|
|
|
|
(void)get_int_prop(ctx, udi, "usb_device.linux.device_number",
|
|
|
|
(int *)&d->usb_dev.device);
|
|
|
|
(void)get_int_prop(ctx, udi, "usb_device.vendor_id",
|
|
|
|
(int *)&d->usb_dev.vendor);
|
|
|
|
if (get_str_prop(ctx, udi, "usb_device.vendor",
|
|
|
|
&d->usb_dev.vendor_name) != 0)
|
|
|
|
(void)get_str_prop(ctx, udi, "info.vendor", &d->usb_dev.vendor_name);
|
|
|
|
(void)get_int_prop(ctx, udi, "usb_device.product_id",
|
|
|
|
(int *)&d->usb_dev.product);
|
|
|
|
if (get_str_prop(ctx, udi, "usb_device.product",
|
|
|
|
&d->usb_dev.product_name) != 0)
|
|
|
|
(void)get_str_prop(ctx, udi, "info.product", &d->usb_dev.product_name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_net_cap(LibHalContext *ctx, const char *udi,
|
|
|
|
union _virNodeDevCapData *d)
|
|
|
|
{
|
|
|
|
unsigned long long dummy;
|
2008-11-25 10:37:02 +00:00
|
|
|
(void)get_str_prop(ctx, udi, "net.interface", &d->net.ifname);
|
2008-11-21 12:27:11 +00:00
|
|
|
(void)get_str_prop(ctx, udi, "net.address", &d->net.address);
|
|
|
|
if (get_uint64_prop(ctx, udi, "net.80203.mac_address",
|
|
|
|
&dummy) == 0)
|
|
|
|
d->net.subtype = VIR_NODE_DEV_CAP_NET_80203;
|
|
|
|
else if (get_uint64_prop(ctx, udi, "net.80211.mac_address",
|
|
|
|
&dummy) == 0)
|
|
|
|
d->net.subtype = VIR_NODE_DEV_CAP_NET_80211;
|
|
|
|
else
|
|
|
|
d->net.subtype = VIR_NODE_DEV_CAP_NET_LAST;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_scsi_host_cap(LibHalContext *ctx, const char *udi,
|
|
|
|
union _virNodeDevCapData *d)
|
|
|
|
{
|
2009-06-02 15:12:53 +00:00
|
|
|
int retval = 0;
|
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
(void)get_int_prop(ctx, udi, "scsi_host.host", (int *)&d->scsi_host.host);
|
2009-06-02 15:12:53 +00:00
|
|
|
|
|
|
|
retval = check_fc_host(d);
|
|
|
|
|
|
|
|
if (retval == -1) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = check_vport_capable(d);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return retval;
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_scsi_cap(LibHalContext *ctx, const char *udi,
|
|
|
|
union _virNodeDevCapData *d)
|
|
|
|
{
|
|
|
|
(void)get_int_prop(ctx, udi, "scsi.host", (int *)&d->scsi.host);
|
|
|
|
(void)get_int_prop(ctx, udi, "scsi.bus", (int *)&d->scsi.bus);
|
|
|
|
(void)get_int_prop(ctx, udi, "scsi.target", (int *)&d->scsi.target);
|
|
|
|
(void)get_int_prop(ctx, udi, "scsi.lun", (int *)&d->scsi.lun);
|
|
|
|
(void)get_str_prop(ctx, udi, "scsi.type", &d->scsi.type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_storage_cap(LibHalContext *ctx, const char *udi,
|
|
|
|
union _virNodeDevCapData *d)
|
|
|
|
{
|
|
|
|
int val;
|
2008-11-21 12:46:39 +00:00
|
|
|
(void)get_str_prop(ctx, udi, "block.device", &d->storage.block);
|
2008-11-21 12:27:11 +00:00
|
|
|
(void)get_str_prop(ctx, udi, "storage.bus", &d->storage.bus);
|
|
|
|
(void)get_str_prop(ctx, udi, "storage.drive_type", &d->storage.drive_type);
|
|
|
|
(void)get_str_prop(ctx, udi, "storage.model", &d->storage.model);
|
|
|
|
(void)get_str_prop(ctx, udi, "storage.vendor", &d->storage.vendor);
|
2009-06-11 14:25:19 +00:00
|
|
|
(void)get_str_prop(ctx, udi, "storage.serial", &d->storage.serial);
|
2008-11-21 12:27:11 +00:00
|
|
|
if (get_bool_prop(ctx, udi, "storage.removable", &val) == 0 && val) {
|
|
|
|
d->storage.flags |= VIR_NODE_DEV_CAP_STORAGE_REMOVABLE;
|
2009-03-02 17:41:13 +00:00
|
|
|
if (get_bool_prop(ctx, udi, "storage.removable.media_available",
|
|
|
|
&val) == 0 && val) {
|
2008-11-21 12:27:11 +00:00
|
|
|
d->storage.flags |=
|
|
|
|
VIR_NODE_DEV_CAP_STORAGE_REMOVABLE_MEDIA_AVAILABLE;
|
|
|
|
(void)get_uint64_prop(ctx, udi, "storage.removable.media_size",
|
|
|
|
&d->storage.removable_media_size);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
(void)get_uint64_prop(ctx, udi, "storage.size", &d->storage.size);
|
|
|
|
}
|
|
|
|
if (get_bool_prop(ctx, udi, "storage.hotpluggable", &val) == 0 && val)
|
|
|
|
d->storage.flags |= VIR_NODE_DEV_CAP_STORAGE_HOTPLUGGABLE;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_system_cap(LibHalContext *ctx, const char *udi,
|
|
|
|
union _virNodeDevCapData *d)
|
|
|
|
{
|
|
|
|
char *uuidstr;
|
|
|
|
|
|
|
|
(void)get_str_prop(ctx, udi, "system.product", &d->system.product_name);
|
|
|
|
(void)get_str_prop(ctx, udi, "system.hardware.vendor",
|
|
|
|
&d->system.hardware.vendor_name);
|
|
|
|
(void)get_str_prop(ctx, udi, "system.hardware.version",
|
|
|
|
&d->system.hardware.version);
|
|
|
|
(void)get_str_prop(ctx, udi, "system.hardware.serial",
|
|
|
|
&d->system.hardware.serial);
|
|
|
|
if (get_str_prop(ctx, udi, "system.hardware.uuid", &uuidstr) == 0) {
|
2011-10-12 23:24:52 +00:00
|
|
|
ignore_value(virUUIDParse(uuidstr, d->system.hardware.uuid));
|
2008-11-21 12:27:11 +00:00
|
|
|
VIR_FREE(uuidstr);
|
|
|
|
}
|
|
|
|
(void)get_str_prop(ctx, udi, "system.firmware.vendor",
|
|
|
|
&d->system.firmware.vendor_name);
|
|
|
|
(void)get_str_prop(ctx, udi, "system.firmware.version",
|
|
|
|
&d->system.firmware.version);
|
|
|
|
(void)get_str_prop(ctx, udi, "system.firmware.release_date",
|
|
|
|
&d->system.firmware.release_date);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct _caps_tbl_entry {
|
|
|
|
const char *cap_name;
|
|
|
|
enum virNodeDevCapType type;
|
|
|
|
int (*gather_fn)(LibHalContext *ctx,
|
|
|
|
const char *udi,
|
|
|
|
union _virNodeDevCapData *data);
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _caps_tbl_entry caps_tbl_entry;
|
|
|
|
|
|
|
|
static caps_tbl_entry caps_tbl[] = {
|
|
|
|
{ "system", VIR_NODE_DEV_CAP_SYSTEM, gather_system_cap },
|
|
|
|
{ "pci", VIR_NODE_DEV_CAP_PCI_DEV, gather_pci_cap },
|
|
|
|
{ "usb", VIR_NODE_DEV_CAP_USB_INTERFACE, gather_usb_cap },
|
|
|
|
{ "usb_device", VIR_NODE_DEV_CAP_USB_DEV, gather_usb_device_cap },
|
|
|
|
{ "net", VIR_NODE_DEV_CAP_NET, gather_net_cap },
|
|
|
|
{ "scsi_host", VIR_NODE_DEV_CAP_SCSI_HOST, gather_scsi_host_cap },
|
|
|
|
{ "scsi", VIR_NODE_DEV_CAP_SCSI, gather_scsi_cap },
|
|
|
|
{ "storage", VIR_NODE_DEV_CAP_STORAGE, gather_storage_cap },
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* qsort/bsearch string comparator */
|
|
|
|
static int cmpstringp(const void *p1, const void *p2)
|
|
|
|
{
|
|
|
|
/* from man 3 qsort */
|
|
|
|
return strcmp(* (char * const *) p1, * (char * const *) p2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_capability(LibHalContext *ctx, const char *udi,
|
|
|
|
const char *cap_name,
|
|
|
|
virNodeDevCapsDefPtr *caps_p)
|
|
|
|
{
|
|
|
|
caps_tbl_entry *entry;
|
|
|
|
|
|
|
|
entry = bsearch(&cap_name, caps_tbl, ARRAY_CARDINALITY(caps_tbl),
|
|
|
|
sizeof(caps_tbl[0]), cmpstringp);
|
|
|
|
|
|
|
|
if (entry) {
|
|
|
|
virNodeDevCapsDefPtr caps;
|
|
|
|
if (VIR_ALLOC(caps) < 0)
|
|
|
|
return ENOMEM;
|
|
|
|
caps->type = entry->type;
|
|
|
|
if (entry->gather_fn) {
|
|
|
|
int rv = (*entry->gather_fn)(ctx, udi, &caps->data);
|
|
|
|
if (rv != 0) {
|
|
|
|
virNodeDevCapsDefFree(caps);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
caps->next = *caps_p;
|
|
|
|
*caps_p = caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int gather_capabilities(LibHalContext *ctx, const char *udi,
|
|
|
|
virNodeDevCapsDefPtr *caps_p)
|
|
|
|
{
|
|
|
|
char *bus_name = NULL;
|
|
|
|
virNodeDevCapsDefPtr caps = NULL;
|
2009-11-10 11:56:11 +00:00
|
|
|
char **hal_cap_names = NULL;
|
2008-11-21 12:27:11 +00:00
|
|
|
int rv, i;
|
|
|
|
|
|
|
|
if (STREQ(udi, "/org/freedesktop/Hal/devices/computer")) {
|
|
|
|
rv = gather_capability(ctx, udi, "system", &caps);
|
|
|
|
if (rv != 0)
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2009-03-16 10:56:01 +00:00
|
|
|
if (get_str_prop(ctx, udi, "info.subsystem", &bus_name) == 0 ||
|
|
|
|
get_str_prop(ctx, udi, "linux.subsystem", &bus_name) == 0) {
|
2008-11-21 12:27:11 +00:00
|
|
|
rv = gather_capability(ctx, udi, bus_name, &caps);
|
|
|
|
if (rv != 0)
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
hal_cap_names = libhal_device_get_property_strlist(ctx, udi,
|
|
|
|
"info.capabilities",
|
|
|
|
NULL);
|
|
|
|
if (hal_cap_names) {
|
|
|
|
for (i = 0; hal_cap_names[i]; i++) {
|
|
|
|
if (! (bus_name && STREQ(hal_cap_names[i], bus_name))) {
|
|
|
|
rv = gather_capability(ctx, udi, hal_cap_names[i], &caps);
|
|
|
|
if (rv != 0)
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; hal_cap_names[i]; i++)
|
|
|
|
VIR_FREE(hal_cap_names[i]);
|
|
|
|
VIR_FREE(hal_cap_names);
|
|
|
|
}
|
|
|
|
VIR_FREE(bus_name);
|
|
|
|
|
|
|
|
*caps_p = caps;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
failure:
|
|
|
|
VIR_FREE(bus_name);
|
|
|
|
if (hal_cap_names) {
|
|
|
|
for (i = 0; hal_cap_names[i]; i++)
|
|
|
|
VIR_FREE(hal_cap_names[i]);
|
|
|
|
VIR_FREE(hal_cap_names);
|
|
|
|
}
|
|
|
|
while (caps) {
|
|
|
|
virNodeDevCapsDefPtr next = caps->next;
|
|
|
|
virNodeDevCapsDefFree(caps);
|
|
|
|
caps = next;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void free_udi(void *udi)
|
|
|
|
{
|
|
|
|
VIR_FREE(udi);
|
|
|
|
}
|
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
static void dev_create(const char *udi)
|
2008-11-21 12:27:11 +00:00
|
|
|
{
|
2008-12-04 21:48:31 +00:00
|
|
|
LibHalContext *ctx;
|
2008-11-21 12:27:11 +00:00
|
|
|
char *parent_key = NULL;
|
2008-12-04 21:48:31 +00:00
|
|
|
virNodeDeviceObjPtr dev = NULL;
|
|
|
|
virNodeDeviceDefPtr def = NULL;
|
2008-11-21 12:27:11 +00:00
|
|
|
const char *name = hal_name(udi);
|
|
|
|
int rv;
|
2008-12-04 21:48:31 +00:00
|
|
|
char *privData = strdup(udi);
|
2009-06-12 13:12:55 +00:00
|
|
|
char *devicePath = NULL;
|
2008-11-21 12:27:11 +00:00
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
if (!privData)
|
|
|
|
return;
|
2008-11-21 12:27:11 +00:00
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
nodeDeviceLock(driverState);
|
|
|
|
ctx = DRV_STATE_HAL_CTX(driverState);
|
|
|
|
|
|
|
|
if (VIR_ALLOC(def) < 0)
|
|
|
|
goto failure;
|
2008-11-21 12:27:11 +00:00
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
if ((def->name = strdup(name)) == NULL)
|
2008-11-21 12:27:11 +00:00
|
|
|
goto failure;
|
|
|
|
|
|
|
|
if (get_str_prop(ctx, udi, "info.parent", &parent_key) == 0) {
|
2008-12-04 21:48:31 +00:00
|
|
|
def->parent = strdup(hal_name(parent_key));
|
2008-11-21 12:27:11 +00:00
|
|
|
VIR_FREE(parent_key);
|
2008-12-04 21:48:31 +00:00
|
|
|
if (def->parent == NULL)
|
2008-11-21 12:27:11 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
rv = gather_capabilities(ctx, udi, &def->caps);
|
2008-11-21 12:27:11 +00:00
|
|
|
if (rv != 0) goto failure;
|
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
if (def->caps == NULL)
|
|
|
|
goto cleanup;
|
2008-11-21 12:46:39 +00:00
|
|
|
|
2009-06-12 13:12:55 +00:00
|
|
|
/* Some devices don't have a path in sysfs, so ignore failure */
|
2010-03-02 14:51:57 +00:00
|
|
|
(void)get_str_prop(ctx, udi, "linux.sysfs_path", &devicePath);
|
2009-06-12 13:12:55 +00:00
|
|
|
|
2010-02-10 10:40:18 +00:00
|
|
|
dev = virNodeDeviceAssignDef(&driverState->devs,
|
2008-12-04 21:48:31 +00:00
|
|
|
def);
|
|
|
|
|
2009-06-12 13:12:55 +00:00
|
|
|
if (!dev) {
|
|
|
|
VIR_FREE(devicePath);
|
2008-11-21 12:27:11 +00:00
|
|
|
goto failure;
|
2009-06-12 13:12:55 +00:00
|
|
|
}
|
2008-11-21 12:27:11 +00:00
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
dev->privateData = privData;
|
|
|
|
dev->privateFree = free_udi;
|
2009-11-19 15:02:18 +00:00
|
|
|
dev->def->sysfs_path = devicePath;
|
2009-06-12 13:12:55 +00:00
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
virNodeDeviceObjUnlock(dev);
|
2008-11-21 12:27:11 +00:00
|
|
|
|
2008-12-04 21:48:31 +00:00
|
|
|
nodeDeviceUnlock(driverState);
|
2008-11-21 12:27:11 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
failure:
|
2011-02-16 23:37:57 +00:00
|
|
|
VIR_DEBUG("FAILED TO ADD dev %s", name);
|
2008-12-04 21:48:31 +00:00
|
|
|
cleanup:
|
|
|
|
VIR_FREE(privData);
|
2010-05-17 20:38:59 +00:00
|
|
|
virNodeDeviceDefFree(def);
|
2008-12-04 21:48:31 +00:00
|
|
|
nodeDeviceUnlock(driverState);
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
2009-05-19 13:26:14 +00:00
|
|
|
static void dev_refresh(const char *udi)
|
|
|
|
{
|
|
|
|
const char *name = hal_name(udi);
|
|
|
|
virNodeDeviceObjPtr dev;
|
|
|
|
|
|
|
|
nodeDeviceLock(driverState);
|
|
|
|
dev = virNodeDeviceFindByName(&driverState->devs, name);
|
|
|
|
if (dev) {
|
|
|
|
/* Simply "rediscover" device -- incrementally handling changes
|
|
|
|
* to sub-capabilities (like net.80203) is nasty ... so avoid it.
|
|
|
|
*/
|
|
|
|
virNodeDeviceObjRemove(&driverState->devs, dev);
|
|
|
|
} else
|
2011-02-16 23:37:57 +00:00
|
|
|
VIR_DEBUG("no device named %s", name);
|
2009-05-19 13:26:14 +00:00
|
|
|
nodeDeviceUnlock(driverState);
|
|
|
|
|
|
|
|
if (dev) {
|
|
|
|
dev_create(udi);
|
|
|
|
}
|
|
|
|
}
|
2008-11-21 12:27:11 +00:00
|
|
|
|
|
|
|
static void device_added(LibHalContext *ctx ATTRIBUTE_UNUSED,
|
|
|
|
const char *udi)
|
|
|
|
{
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_DEBUG("%s", hal_name(udi));
|
2008-12-04 21:48:31 +00:00
|
|
|
dev_create(udi);
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void device_removed(LibHalContext *ctx ATTRIBUTE_UNUSED,
|
|
|
|
const char *udi)
|
|
|
|
{
|
|
|
|
const char *name = hal_name(udi);
|
2008-12-04 21:48:31 +00:00
|
|
|
virNodeDeviceObjPtr dev;
|
|
|
|
|
|
|
|
nodeDeviceLock(driverState);
|
|
|
|
dev = virNodeDeviceFindByName(&driverState->devs,name);
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_DEBUG("%s", name);
|
2008-11-21 12:27:11 +00:00
|
|
|
if (dev)
|
|
|
|
virNodeDeviceObjRemove(&driverState->devs, dev);
|
|
|
|
else
|
2011-02-16 23:37:57 +00:00
|
|
|
VIR_DEBUG("no device named %s", name);
|
2008-12-04 21:48:31 +00:00
|
|
|
nodeDeviceUnlock(driverState);
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void device_cap_added(LibHalContext *ctx,
|
|
|
|
const char *udi, const char *cap)
|
|
|
|
{
|
|
|
|
const char *name = hal_name(udi);
|
2008-12-04 21:48:31 +00:00
|
|
|
virNodeDeviceObjPtr dev;
|
|
|
|
|
|
|
|
nodeDeviceLock(driverState);
|
|
|
|
dev = virNodeDeviceFindByName(&driverState->devs,name);
|
|
|
|
nodeDeviceUnlock(driverState);
|
2011-02-16 23:37:57 +00:00
|
|
|
VIR_DEBUG("%s %s", cap, name);
|
2008-12-04 21:48:31 +00:00
|
|
|
if (dev) {
|
2008-11-21 12:27:11 +00:00
|
|
|
(void)gather_capability(ctx, udi, cap, &dev->def->caps);
|
2008-12-04 21:48:31 +00:00
|
|
|
virNodeDeviceObjUnlock(dev);
|
|
|
|
} else {
|
2011-02-16 23:37:57 +00:00
|
|
|
VIR_DEBUG("no device named %s", name);
|
2008-12-04 21:48:31 +00:00
|
|
|
}
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void device_cap_lost(LibHalContext *ctx ATTRIBUTE_UNUSED,
|
|
|
|
const char *udi,
|
|
|
|
const char *cap)
|
|
|
|
{
|
|
|
|
const char *name = hal_name(udi);
|
2011-02-16 23:37:57 +00:00
|
|
|
VIR_DEBUG("%s %s", cap, name);
|
2009-05-19 13:26:14 +00:00
|
|
|
|
|
|
|
dev_refresh(udi);
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void device_prop_modified(LibHalContext *ctx ATTRIBUTE_UNUSED,
|
|
|
|
const char *udi,
|
|
|
|
const char *key,
|
|
|
|
dbus_bool_t is_removed ATTRIBUTE_UNUSED,
|
|
|
|
dbus_bool_t is_added ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
const char *name = hal_name(udi);
|
2011-02-16 23:37:57 +00:00
|
|
|
VIR_DEBUG("%s %s", name, key);
|
2008-12-04 21:48:31 +00:00
|
|
|
|
2009-05-19 13:26:14 +00:00
|
|
|
dev_refresh(udi);
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-06-12 13:20:13 +00:00
|
|
|
static int halDeviceMonitorStartup(int privileged ATTRIBUTE_UNUSED)
|
2008-11-21 12:27:11 +00:00
|
|
|
{
|
|
|
|
LibHalContext *hal_ctx = NULL;
|
|
|
|
char **udi = NULL;
|
|
|
|
int num_devs, i;
|
2009-11-13 10:36:01 +00:00
|
|
|
int ret = -1;
|
2012-04-19 14:34:35 +00:00
|
|
|
DBusConnection *sysbus;
|
|
|
|
DBusError err;
|
2008-11-21 12:27:11 +00:00
|
|
|
|
|
|
|
/* Ensure caps_tbl is sorted by capability name */
|
|
|
|
qsort(caps_tbl, ARRAY_CARDINALITY(caps_tbl), sizeof(caps_tbl[0]),
|
|
|
|
cmpstringp);
|
|
|
|
|
|
|
|
if (VIR_ALLOC(driverState) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2009-01-15 19:56:05 +00:00
|
|
|
if (virMutexInit(&driverState->lock) < 0) {
|
|
|
|
VIR_FREE(driverState);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-12-04 21:48:31 +00:00
|
|
|
nodeDeviceLock(driverState);
|
|
|
|
|
2012-04-19 14:34:35 +00:00
|
|
|
if (!(sysbus = virDBusGetSystemBus())) {
|
|
|
|
virErrorPtr verr = virGetLastError();
|
|
|
|
VIR_ERROR(_("DBus not available, disabling HAL driver: %s"),
|
|
|
|
verr->message);
|
|
|
|
ret = 0;
|
|
|
|
goto failure;
|
|
|
|
}
|
2009-03-02 11:13:37 +00:00
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
dbus_error_init(&err);
|
|
|
|
hal_ctx = libhal_ctx_new();
|
|
|
|
if (hal_ctx == NULL) {
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_ERROR(_("libhal_ctx_new returned NULL"));
|
2008-11-21 12:27:11 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
2009-03-02 11:13:37 +00:00
|
|
|
|
2012-04-19 14:34:35 +00:00
|
|
|
if (!libhal_ctx_set_dbus_connection(hal_ctx, sysbus)) {
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_ERROR(_("libhal_ctx_set_dbus_connection failed"));
|
2008-11-21 12:27:11 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
if (!libhal_ctx_init(hal_ctx, &err)) {
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_ERROR(_("libhal_ctx_init failed, haldaemon is probably not running"));
|
2009-11-13 10:36:01 +00:00
|
|
|
/* We don't want to show a fatal error here,
|
|
|
|
otherwise entire libvirtd shuts down when
|
|
|
|
hald isn't running */
|
|
|
|
ret = 0;
|
2008-11-21 12:27:11 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2009-11-12 14:10:45 +00:00
|
|
|
/* Populate with known devices */
|
|
|
|
driverState->privateData = hal_ctx;
|
|
|
|
|
|
|
|
/* We need to unlock state now, since setting these callbacks cause
|
|
|
|
* a dbus RPC call, and while this call is waiting for the reply,
|
|
|
|
* a signal may already arrive, triggering the callback and thus
|
|
|
|
* requiring the lock !
|
|
|
|
*/
|
|
|
|
nodeDeviceUnlock(driverState);
|
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
/* Register HAL event callbacks */
|
|
|
|
if (!libhal_ctx_set_device_added(hal_ctx, device_added) ||
|
|
|
|
!libhal_ctx_set_device_removed(hal_ctx, device_removed) ||
|
|
|
|
!libhal_ctx_set_device_new_capability(hal_ctx, device_cap_added) ||
|
|
|
|
!libhal_ctx_set_device_lost_capability(hal_ctx, device_cap_lost) ||
|
2009-05-19 13:35:57 +00:00
|
|
|
!libhal_ctx_set_device_property_modified(hal_ctx, device_prop_modified) ||
|
2009-05-20 13:37:30 +00:00
|
|
|
!libhal_device_property_watch_all(hal_ctx, &err)) {
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_ERROR(_("setting up HAL callbacks failed"));
|
2008-11-21 12:27:11 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
udi = libhal_get_all_devices(hal_ctx, &num_devs, &err);
|
|
|
|
if (udi == NULL) {
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_ERROR(_("libhal_get_all_devices failed"));
|
2008-11-21 12:27:11 +00:00
|
|
|
goto failure;
|
|
|
|
}
|
2008-12-04 21:48:31 +00:00
|
|
|
for (i = 0; i < num_devs; i++) {
|
2008-11-21 12:27:11 +00:00
|
|
|
dev_create(udi[i]);
|
2008-12-04 21:48:31 +00:00
|
|
|
VIR_FREE(udi[i]);
|
|
|
|
}
|
|
|
|
VIR_FREE(udi);
|
2008-11-21 12:27:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
failure:
|
|
|
|
if (dbus_error_is_set(&err)) {
|
2010-05-20 06:15:46 +00:00
|
|
|
VIR_ERROR(_("%s: %s"), err.name, err.message);
|
2008-11-21 12:27:11 +00:00
|
|
|
dbus_error_free(&err);
|
|
|
|
}
|
|
|
|
virNodeDeviceObjListFree(&driverState->devs);
|
|
|
|
if (hal_ctx)
|
|
|
|
(void)libhal_ctx_free(hal_ctx);
|
2008-12-04 21:48:31 +00:00
|
|
|
nodeDeviceUnlock(driverState);
|
2008-11-21 12:27:11 +00:00
|
|
|
VIR_FREE(driverState);
|
|
|
|
|
2009-11-13 10:36:01 +00:00
|
|
|
return ret;
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int halDeviceMonitorShutdown(void)
|
|
|
|
{
|
|
|
|
if (driverState) {
|
2008-12-04 21:48:31 +00:00
|
|
|
nodeDeviceLock(driverState);
|
2008-11-21 12:27:11 +00:00
|
|
|
LibHalContext *hal_ctx = DRV_STATE_HAL_CTX(driverState);
|
|
|
|
virNodeDeviceObjListFree(&driverState->devs);
|
|
|
|
(void)libhal_ctx_shutdown(hal_ctx, NULL);
|
|
|
|
(void)libhal_ctx_free(hal_ctx);
|
2008-12-04 21:48:31 +00:00
|
|
|
nodeDeviceUnlock(driverState);
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutexDestroy(&driverState->lock);
|
2008-11-21 12:27:11 +00:00
|
|
|
VIR_FREE(driverState);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int halDeviceMonitorReload(void)
|
|
|
|
{
|
2009-06-03 11:24:21 +00:00
|
|
|
DBusError err;
|
|
|
|
char **udi = NULL;
|
|
|
|
int num_devs, i;
|
|
|
|
LibHalContext *hal_ctx;
|
|
|
|
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_INFO("Reloading HAL device state");
|
2009-06-03 11:24:21 +00:00
|
|
|
nodeDeviceLock(driverState);
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_INFO("Removing existing objects");
|
2009-06-03 11:24:21 +00:00
|
|
|
virNodeDeviceObjListFree(&driverState->devs);
|
|
|
|
nodeDeviceUnlock(driverState);
|
|
|
|
|
|
|
|
hal_ctx = DRV_STATE_HAL_CTX(driverState);
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_INFO("Creating new objects");
|
2009-06-03 11:24:21 +00:00
|
|
|
dbus_error_init(&err);
|
|
|
|
udi = libhal_get_all_devices(hal_ctx, &num_devs, &err);
|
|
|
|
if (udi == NULL) {
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_ERROR(_("libhal_get_all_devices failed"));
|
2009-06-03 11:24:21 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
for (i = 0; i < num_devs; i++) {
|
|
|
|
dev_create(udi[i]);
|
|
|
|
VIR_FREE(udi[i]);
|
|
|
|
}
|
|
|
|
VIR_FREE(udi);
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_INFO("HAL device reload complete");
|
2009-06-03 11:24:21 +00:00
|
|
|
|
|
|
|
return 0;
|
2008-11-21 12:27:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int halDeviceMonitorActive(void)
|
|
|
|
{
|
|
|
|
/* Always ready to deal with a shutdown */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static virDrvOpenStatus halNodeDrvOpen(virConnectPtr conn,
|
|
|
|
virConnectAuthPtr auth ATTRIBUTE_UNUSED,
|
2011-07-06 22:21:23 +00:00
|
|
|
unsigned int flags)
|
2008-11-21 12:27:11 +00:00
|
|
|
{
|
2011-07-06 22:21:23 +00:00
|
|
|
virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);
|
|
|
|
|
2008-11-21 12:27:11 +00:00
|
|
|
if (driverState == NULL)
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
|
|
|
|
conn->devMonPrivateData = driverState;
|
|
|
|
|
|
|
|
return VIR_DRV_OPEN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int halNodeDrvClose(virConnectPtr conn ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
conn->devMonPrivateData = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static virDeviceMonitor halDeviceMonitor = {
|
|
|
|
.name = "halDeviceMonitor",
|
2011-06-04 21:24:54 +00:00
|
|
|
.open = halNodeDrvOpen, /* 0.5.0 */
|
|
|
|
.close = halNodeDrvClose, /* 0.5.0 */
|
|
|
|
.numOfDevices = nodeNumOfDevices, /* 0.5.0 */
|
|
|
|
.listDevices = nodeListDevices, /* 0.5.0 */
|
2012-09-05 05:34:10 +00:00
|
|
|
.listAllNodeDevices = nodeListAllNodeDevices, /* 0.10.2 */
|
2011-06-04 21:24:54 +00:00
|
|
|
.deviceLookupByName = nodeDeviceLookupByName, /* 0.5.0 */
|
|
|
|
.deviceGetXMLDesc = nodeDeviceGetXMLDesc, /* 0.5.0 */
|
|
|
|
.deviceGetParent = nodeDeviceGetParent, /* 0.5.0 */
|
|
|
|
.deviceNumOfCaps = nodeDeviceNumOfCaps, /* 0.5.0 */
|
|
|
|
.deviceListCaps = nodeDeviceListCaps, /* 0.5.0 */
|
|
|
|
.deviceCreateXML = nodeDeviceCreateXML, /* 0.6.5 */
|
|
|
|
.deviceDestroy = nodeDeviceDestroy, /* 0.6.5 */
|
2008-11-21 12:27:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static virStateDriver halStateDriver = {
|
Fix return value in virStateInitialize impl for LXC
The LXC driver was mistakenly returning -1 for lxcStartup()
in scenarios that are not an error. This caused the libvirtd
to quit for unprivileged users. This fixes the return code
of LXC driver, and also adds a "name" field to the virStateDriver
struct and logging to make it easier to find these problems
in the future
* src/driver.h: Add a 'name' field to state driver to allow
easy identification during failures
* src/libvirt.c: Log name of failed driver for virStateInit
failures
* src/lxc/lxc_driver.c: Don't return a failure code for
lxcStartup() if LXC is not available on this host, simply
disable the driver.
* src/network/bridge_driver.c, src/node_device/node_device_devkit.c,
src/node_device/node_device_hal.c, src/opennebula/one_driver.c,
src/qemu/qemu_driver.c, src/remote/remote_driver.c,
src/secret/secret_driver.c, src/storage/storage_driver.c,
src/uml/uml_driver.c, src/xen/xen_driver.c: Fill in name
field in virStateDriver struct
2009-11-02 23:18:19 +00:00
|
|
|
.name = "HAL",
|
2011-06-04 21:24:54 +00:00
|
|
|
.initialize = halDeviceMonitorStartup, /* 0.5.0 */
|
|
|
|
.cleanup = halDeviceMonitorShutdown, /* 0.5.0 */
|
|
|
|
.reload = halDeviceMonitorReload, /* 0.5.0 */
|
|
|
|
.active = halDeviceMonitorActive, /* 0.5.0 */
|
2008-11-21 12:27:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int halNodeRegister(void)
|
|
|
|
{
|
|
|
|
if (virRegisterDeviceMonitor(&halDeviceMonitor) < 0)
|
|
|
|
return -1;
|
|
|
|
return virRegisterStateDriver(&halStateDriver);
|
|
|
|
}
|