[libvirt] [PATCH 2/2] src: remove HAL node device driver

Pavel Hrdina phrdina at redhat.com
Thu May 9 15:16:16 UTC 2019


The HAL driver is not used by any supported Linux, the only possible
user could be FreeBSD, but the official libvirt port disables HAL
driver unconditionally which means probably nobody is using it there.

Signed-off-by: Pavel Hrdina <phrdina at redhat.com>
---

HAL was deprecated on FreeBSD as well and the current supported device
manager is *devd*.  If there will be need to implement node device
support on FreeBSD we can add a new DEVD driver or we can use
libudev-devd project to support UDEV driver on FreeBSD.

 configure.ac                         |   3 +-
 docs/drvnodedev.html.in              |   3 +-
 docs/hvsupport.pl                    |   2 +-
 libvirt.spec.in                      |   1 -
 m4/virt-hal.m4                       |  10 +-
 po/POTFILES                          |   1 -
 src/node_device/Makefile.inc.am      |  12 -
 src/node_device/node_device_driver.c |  10 +-
 src/node_device/node_device_driver.h |   5 -
 src/node_device/node_device_hal.c    | 804 ---------------------------
 src/node_device/node_device_hal.h    |  22 -
 11 files changed, 9 insertions(+), 864 deletions(-)
 delete mode 100644 src/node_device/node_device_hal.c
 delete mode 100644 src/node_device/node_device_hal.h

diff --git a/configure.ac b/configure.ac
index fabec815db..cbec6b9e14 100644
--- a/configure.ac
+++ b/configure.ac
@@ -794,7 +794,7 @@ AC_SUBST([LV_LIBTOOL_OBJDIR])
 
 
 with_nodedev=no;
-if test "$with_hal" = "yes" || test "$with_udev" = "yes";
+if test "$with_udev" = "yes";
 then
   with_nodedev=yes
   AC_DEFINE_UNQUOTED([WITH_NODE_DEVICES], 1, [with node device driver])
@@ -995,7 +995,6 @@ LIBVIRT_RESULT_FIREWALLD_ZONE
 LIBVIRT_RESULT_FUSE
 LIBVIRT_RESULT_GLUSTER
 LIBVIRT_RESULT_GNUTLS
-LIBVIRT_RESULT_HAL
 LIBVIRT_RESULT_LIBISCSI
 LIBVIRT_RESULT_LIBNL
 LIBVIRT_RESULT_LIBPCAP
diff --git a/docs/drvnodedev.html.in b/docs/drvnodedev.html.in
index 71a8a57b0c..8582f18655 100644
--- a/docs/drvnodedev.html.in
+++ b/docs/drvnodedev.html.in
@@ -23,8 +23,7 @@
       (<a href="http://wiki.libvirt.org/page/NPIV_in_libvirt">more info about NPIV)</a>).
       Devices on the host system are arranged in a tree-like hierarchy, with
       the root node being called <code>computer</code>. The node device driver
-      supports two backends to manage the devices, HAL and udev, with the former
-      being deprecated in favour of the latter.
+      supports one backend to manage the devices, udev.
     </p>
 
     <p>
diff --git a/docs/hvsupport.pl b/docs/hvsupport.pl
index a2b980c502..1554e9985e 100755
--- a/docs/hvsupport.pl
+++ b/docs/hvsupport.pl
@@ -38,7 +38,7 @@ my %groupheaders = (
 my @srcs;
 find({
     wanted => sub {
-        if (m!$srcdir/.*/\w+_(driver|common|tmpl|monitor|hal|udev)\.c$!) {
+        if (m!$srcdir/.*/\w+_(driver|common|tmpl|monitor|udev)\.c$!) {
             push @srcs, $_ if $_ !~ /vbox_driver\.c/;
         }
     }, no_chdir => 1}, $srcdir);
diff --git a/libvirt.spec.in b/libvirt.spec.in
index e07041c0b9..c90c1a0f2c 100644
--- a/libvirt.spec.in
+++ b/libvirt.spec.in
@@ -1198,7 +1198,6 @@ rm -f po/stamp-po
            --with-selinux \
            %{?arg_selinux_mount} \
            --without-apparmor \
-           --without-hal \
            --with-udev \
            --with-yajl \
            %{?arg_sanlock} \
diff --git a/m4/virt-hal.m4 b/m4/virt-hal.m4
index e37bbf979b..35391f0d2b 100644
--- a/m4/virt-hal.m4
+++ b/m4/virt-hal.m4
@@ -18,13 +18,11 @@ dnl <http://www.gnu.org/licenses/>.
 dnl
 
 AC_DEFUN([LIBVIRT_ARG_HAL],[
-  LIBVIRT_ARG_WITH_FEATURE([HAL], [hal], [check], [0.5.0])
+  LIBVIRT_ARG_WITH([HAL], [hal was removed], [no])
 ])
 
 AC_DEFUN([LIBVIRT_CHECK_HAL],[
-  LIBVIRT_CHECK_PKG([HAL], [hal], [0.5.0])
-])
-
-AC_DEFUN([LIBVIRT_RESULT_HAL],[
-  LIBVIRT_RESULT_LIB([HAL])
+  if test "$with_hal" != "no" ; then
+    AC_MSG_ERROR([HAL node device driver was removed from libvirt])
+  fi
 ])
diff --git a/po/POTFILES b/po/POTFILES
index 9dd4ee7d99..aff1ecfee2 100644
--- a/po/POTFILES
+++ b/po/POTFILES
@@ -110,7 +110,6 @@ src/network/bridge_driver.c
 src/network/bridge_driver_linux.c
 src/network/leaseshelper.c
 src/node_device/node_device_driver.c
-src/node_device/node_device_hal.c
 src/node_device/node_device_udev.c
 src/nwfilter/nwfilter_dhcpsnoop.c
 src/nwfilter/nwfilter_driver.c
diff --git a/src/node_device/Makefile.inc.am b/src/node_device/Makefile.inc.am
index 3e04651e8c..9163ab53cf 100644
--- a/src/node_device/Makefile.inc.am
+++ b/src/node_device/Makefile.inc.am
@@ -5,11 +5,6 @@ NODE_DEVICE_DRIVER_SOURCES = \
 	node_device/node_device_driver.h \
 	$(NULL)
 
-NODE_DEVICE_DRIVER_HAL_SOURCES = \
-	node_device/node_device_hal.c \
-	node_device/node_device_hal.h \
-	$(NULL)
-
 NODE_DEVICE_DRIVER_UDEV_SOURCES = \
 	node_device/node_device_udev.c \
 	node_device/node_device_udev.h \
@@ -17,7 +12,6 @@ NODE_DEVICE_DRIVER_UDEV_SOURCES = \
 
 DRIVER_SOURCE_FILES += \
 	$(NODE_DEVICE_DRIVER_SOURCES) \
-	$(NODE_DEVICE_DRIVER_HAL_SOURCES) \
 	$(NODE_DEVICE_DRIVER_UDEV_SOURCES) \
 	$(NULL)
 
@@ -27,7 +21,6 @@ STATEFUL_DRIVER_SOURCE_FILES += \
 
 EXTRA_DIST += \
 	$(NODE_DEVICE_DRIVER_SOURCES) \
-	$(NODE_DEVICE_DRIVER_HAL_SOURCES) \
 	$(NODE_DEVICE_DRIVER_UDEV_SOURCES) \
 	$(NULL)
 
@@ -46,11 +39,6 @@ libvirt_driver_nodedev_la_CFLAGS = \
 libvirt_driver_nodedev_la_LDFLAGS = $(AM_LDFLAGS_MOD_NOUNDEF)
 libvirt_driver_nodedev_la_LIBADD = libvirt.la
 
-if WITH_HAL
-libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_HAL_SOURCES)
-libvirt_driver_nodedev_la_CFLAGS += $(HAL_CFLAGS)
-libvirt_driver_nodedev_la_LIBADD += $(HAL_LIBS)
-endif WITH_HAL
 if WITH_UDEV
 libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_UDEV_SOURCES)
 libvirt_driver_nodedev_la_CFLAGS += \
diff --git a/src/node_device/node_device_driver.c b/src/node_device/node_device_driver.c
index 8fb00d0c86..8608d6ade0 100644
--- a/src/node_device/node_device_driver.c
+++ b/src/node_device/node_device_driver.c
@@ -34,7 +34,6 @@
 #include "node_device_conf.h"
 #include "node_device_event.h"
 #include "node_device_driver.h"
-#include "node_device_hal.h"
 #include "node_device_util.h"
 #include "virvhba.h"
 #include "viraccessapicheck.h"
@@ -105,14 +104,13 @@ int nodeConnectIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
     return 1;
 }
 
-#if defined (__linux__) && ( defined (WITH_HAL) || defined(WITH_UDEV))
+#if defined (__linux__) && defined(WITH_UDEV)
 /* NB: It was previously believed that changes in driver name were
  * relayed to libvirt as "change" events by udev, and the udev event
  * notification is setup to recognize such events and effectively
  * recreate the device entry in the cache. However, neither the kernel
  * nor udev sends such an event, so it is necessary to manually update
- * the driver name for a device each time its entry is used, both for
- * udev *and* HAL backends.
+ * the driver name for a device each time its entry is used.
  */
 static int
 nodeDeviceUpdateDriverName(virNodeDeviceDefPtr def)
@@ -632,9 +630,5 @@ nodedevRegister(void)
 {
 #ifdef WITH_UDEV
     return udevNodeRegister();
-#else
-# ifdef WITH_HAL
-    return halNodeRegister();
-# endif
 #endif
 }
diff --git a/src/node_device/node_device_driver.h b/src/node_device/node_device_driver.h
index eae5e2cb17..bd5da485e4 100644
--- a/src/node_device/node_device_driver.h
+++ b/src/node_device/node_device_driver.h
@@ -27,11 +27,6 @@
 
 #define LINUX_NEW_DEVICE_WAIT_TIME 60
 
-#ifdef WITH_HAL
-int
-halNodeRegister(void);
-#endif
-
 #ifdef WITH_UDEV
 int
 udevNodeRegister(void);
diff --git a/src/node_device/node_device_hal.c b/src/node_device/node_device_hal.c
deleted file mode 100644
index d1eb6c7851..0000000000
--- a/src/node_device/node_device_hal.c
+++ /dev/null
@@ -1,804 +0,0 @@
-/*
- * node_device_hal.c: node device enumeration - HAL-based implementation
- *
- * Copyright (C) 2011-2015 Red Hat, Inc.
- * 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
- * License along with this library.  If not, see
- * <http://www.gnu.org/licenses/>.
- */
-
-#include <config.h>
-
-#include <libhal.h>
-
-#include "node_device_conf.h"
-#include "node_device_driver.h"
-#include "node_device_hal.h"
-#include "virerror.h"
-#include "driver.h"
-#include "datatypes.h"
-#include "viralloc.h"
-#include "viruuid.h"
-#include "virpci.h"
-#include "virlog.h"
-#include "virdbus.h"
-#include "virstring.h"
-
-#define VIR_FROM_THIS VIR_FROM_NODEDEV
-
-VIR_LOG_INIT("node_device.node_device_hal");
-
-/*
- * Host device enumeration (HAL implementation)
- */
-
-#define DRV_STATE_HAL_CTX(ds) ((LibHalContext *)((ds)->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,
-               virNodeDevCapDataPtr d)
-{
-    char *sysfs_path;
-
-    if (get_str_prop(ctx, udi, "pci.linux.sysfs_path", &sysfs_path) == 0) {
-        char *p = strrchr(sysfs_path, '/');
-        if (p) {
-            ignore_value(virStrToLong_ui(p+1, &p, 16, &d->pci_dev.domain));
-            ignore_value(virStrToLong_ui(p+1, &p, 16, &d->pci_dev.bus));
-            ignore_value(virStrToLong_ui(p+1, &p, 16, &d->pci_dev.slot));
-            ignore_value(virStrToLong_ui(p+1, &p, 16, &d->pci_dev.function));
-        }
-
-        if (virNodeDeviceGetPCIDynamicCaps(sysfs_path, &d->pci_dev) < 0) {
-            VIR_FREE(sysfs_path);
-            return -1;
-        }
-        VIR_FREE(sysfs_path);
-    }
-
-    (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);
-
-    return 0;
-}
-
-
-static int
-gather_usb_cap(LibHalContext *ctx, const char *udi,
-               virNodeDevCapDataPtr 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.klass);
-    (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,
-                      virNodeDevCapDataPtr 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,
-               virNodeDevCapDataPtr d)
-{
-    unsigned long long dummy;
-    (void)get_str_prop(ctx, udi, "net.interface", &d->net.ifname);
-    (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,
-                     virNodeDevCapDataPtr d)
-{
-    int retval = 0;
-
-    (void)get_int_prop(ctx, udi, "scsi_host.host", (int *)&d->scsi_host.host);
-
-    retval = virNodeDeviceGetSCSIHostCaps(&d->scsi_host);
-
-    if (retval == -1)
-        goto out;
-
- out:
-    return retval;
-}
-
-
-static int
-gather_scsi_cap(LibHalContext *ctx, const char *udi,
-                virNodeDevCapDataPtr 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,
-                   virNodeDevCapDataPtr d)
-{
-    int val;
-    (void)get_str_prop(ctx, udi, "block.device", &d->storage.block);
-    (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);
-    (void)get_str_prop(ctx, udi, "storage.serial", &d->storage.serial);
-    if (get_bool_prop(ctx, udi, "storage.removable", &val) == 0 && val) {
-        d->storage.flags |= VIR_NODE_DEV_CAP_STORAGE_REMOVABLE;
-        if (get_bool_prop(ctx, udi, "storage.removable.media_available",
-                          &val) == 0 && val) {
-            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_scsi_generic_cap(LibHalContext *ctx, const char *udi,
-                        virNodeDevCapDataPtr d)
-{
-    (void)get_str_prop(ctx, udi, "scsi_generic.device", &d->sg.path);
-    return 0;
-}
-
-
-static int
-gather_system_cap(LibHalContext *ctx, const char *udi,
-                  virNodeDevCapDataPtr 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) {
-        ignore_value(virUUIDParse(uuidstr, d->system.hardware.uuid));
-        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;
-    virNodeDevCapType type;
-    int (*gather_fn)(LibHalContext *ctx,
-                     const char *udi,
-                     virNodeDevCapDataPtr 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 },
-    { "scsi_generic", VIR_NODE_DEV_CAP_SCSI_GENERIC, gather_scsi_generic_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->data.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;
-    char **hal_cap_names = NULL;
-    int rv;
-    size_t i;
-
-    if (STREQ(udi, "/org/freedesktop/Hal/devices/computer")) {
-        rv = gather_capability(ctx, udi, "system", &caps);
-        if (rv != 0)
-            goto failure;
-    }
-
-    if (get_str_prop(ctx, udi, "info.subsystem", &bus_name) == 0 ||
-        get_str_prop(ctx, udi, "linux.subsystem", &bus_name) == 0) {
-        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
-dev_create(const char *udi)
-{
-    LibHalContext *ctx;
-    char *parent_key = NULL;
-    virNodeDeviceObjPtr obj = NULL;
-    virNodeDeviceDefPtr def = NULL;
-    virNodeDeviceDefPtr objdef;
-    const char *name = hal_name(udi);
-    int rv;
-    char *devicePath = NULL;
-
-    nodeDeviceLock();
-    ctx = DRV_STATE_HAL_CTX(driver);
-
-    if (VIR_ALLOC(def) < 0)
-        goto failure;
-
-    if (VIR_STRDUP(def->name, name) < 0)
-        goto failure;
-
-    if (get_str_prop(ctx, udi, "info.parent", &parent_key) == 0) {
-        if (VIR_STRDUP(def->parent, hal_name(parent_key)) < 0) {
-            VIR_FREE(parent_key);
-            goto failure;
-        }
-        VIR_FREE(parent_key);
-    }
-
-    rv = gather_capabilities(ctx, udi, &def->caps);
-    if (rv != 0) goto failure;
-
-    if (def->caps == NULL)
-        goto cleanup;
-
-    /* Some devices don't have a path in sysfs, so ignore failure */
-    (void)get_str_prop(ctx, udi, "linux.sysfs_path", &devicePath);
-
-    if (!(obj = virNodeDeviceObjListAssignDef(driver->devs, def))) {
-        VIR_FREE(devicePath);
-        goto failure;
-    }
-    objdef = virNodeDeviceObjGetDef(obj);
-
-    objdef->sysfs_path = devicePath;
-
-    virNodeDeviceObjEndAPI(&obj);
-
-    nodeDeviceUnlock();
-    return;
-
- failure:
-    VIR_DEBUG("FAILED TO ADD dev %s", name);
- cleanup:
-    virNodeDeviceDefFree(def);
-    nodeDeviceUnlock();
-}
-
-static void
-dev_refresh(const char *udi)
-{
-    const char *name = hal_name(udi);
-    virNodeDeviceObjPtr obj;
-
-    if ((obj = virNodeDeviceObjListFindByName(driver->devs, name))) {
-        /* Simply "rediscover" device -- incrementally handling changes
-         * to sub-capabilities (like net.80203) is nasty ... so avoid it.
-         */
-        virNodeDeviceObjListRemove(driver->devs, obj);
-        virObjectUnref(obj);
-        dev_create(udi);
-    } else {
-        VIR_DEBUG("no device named %s", name);
-    }
-}
-
-static void
-device_added(LibHalContext *ctx ATTRIBUTE_UNUSED,
-             const char *udi)
-{
-    VIR_DEBUG("%s", hal_name(udi));
-    dev_create(udi);
-}
-
-
-static void
-device_removed(LibHalContext *ctx ATTRIBUTE_UNUSED,
-               const char *udi)
-{
-    const char *name = hal_name(udi);
-    virNodeDeviceObjPtr obj;
-
-    obj = virNodeDeviceObjListFindByName(driver->devs, name);
-    VIR_DEBUG("%s", name);
-    if (obj)
-        virNodeDeviceObjListRemove(driver->devs, obj);
-    else
-        VIR_DEBUG("no device named %s", name);
-    virObjectUnref(obj);
-}
-
-
-static void
-device_cap_added(LibHalContext *ctx,
-                 const char *udi, const char *cap)
-{
-    const char *name = hal_name(udi);
-    virNodeDeviceObjPtr obj;
-    virNodeDeviceDefPtr def;
-
-    VIR_DEBUG("%s %s", cap, name);
-    if ((obj = virNodeDeviceObjListFindByName(driver->devs, name))) {
-        def = virNodeDeviceObjGetDef(obj);
-        (void)gather_capability(ctx, udi, cap, &def->caps);
-        virNodeDeviceObjEndAPI(&obj);
-    } else {
-        VIR_DEBUG("no device named %s", name);
-    }
-}
-
-
-static void
-device_cap_lost(LibHalContext *ctx ATTRIBUTE_UNUSED,
-                const char *udi,
-                const char *cap)
-{
-    const char *name = hal_name(udi);
-    VIR_DEBUG("%s %s", cap, name);
-
-    dev_refresh(udi);
-}
-
-
-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);
-    VIR_DEBUG("%s %s", name, key);
-
-    dev_refresh(udi);
-}
-
-
-static int
-nodeStateInitialize(bool privileged ATTRIBUTE_UNUSED,
-                    virStateInhibitCallback callback ATTRIBUTE_UNUSED,
-                    void *opaque ATTRIBUTE_UNUSED)
-{
-    LibHalContext *hal_ctx = NULL;
-    char **udi = NULL;
-    int num_devs;
-    size_t i;
-    int ret = -1;
-    DBusConnection *sysbus;
-    DBusError err;
-
-    /* Ensure caps_tbl is sorted by capability name */
-    qsort(caps_tbl, ARRAY_CARDINALITY(caps_tbl), sizeof(caps_tbl[0]),
-          cmpstringp);
-
-    if (VIR_ALLOC(driver) < 0)
-        return -1;
-
-    if (virMutexInit(&driver->lock) < 0) {
-        VIR_FREE(driver);
-        return -1;
-    }
-    nodeDeviceLock();
-
-    if (!(driver->devs = virNodeDeviceObjListNew()))
-        goto failure;
-
-    dbus_error_init(&err);
-    if (!(sysbus = virDBusGetSystemBus())) {
-        virReportError(VIR_ERR_INTERNAL_ERROR,
-                       _("DBus not available, disabling HAL driver: %s"),
-                       virGetLastErrorMessage());
-        ret = 0;
-        goto failure;
-    }
-
-    hal_ctx = libhal_ctx_new();
-    if (hal_ctx == NULL) {
-        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("libhal_ctx_new returned NULL"));
-        goto failure;
-    }
-
-    if (!libhal_ctx_set_dbus_connection(hal_ctx, sysbus)) {
-        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("libhal_ctx_set_dbus_connection failed"));
-        goto failure;
-    }
-    if (!libhal_ctx_init(hal_ctx, &err)) {
-        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("libhal_ctx_init failed, haldaemon is probably "
-                         "not running"));
-        /* We don't want to show a fatal error here,
-           otherwise entire libvirtd shuts down when
-           hald isn't running */
-        ret = 0;
-        goto failure;
-    }
-
-    /* Populate with known devices */
-    driver->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();
-
-    /* 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) ||
-        !libhal_ctx_set_device_property_modified(hal_ctx, device_prop_modified) ||
-        !libhal_device_property_watch_all(hal_ctx, &err)) {
-        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("setting up HAL callbacks failed"));
-        goto failure;
-    }
-
-    udi = libhal_get_all_devices(hal_ctx, &num_devs, &err);
-    if (udi == NULL) {
-        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("libhal_get_all_devices failed"));
-        goto failure;
-    }
-    for (i = 0; i < num_devs; i++) {
-        dev_create(udi[i]);
-        VIR_FREE(udi[i]);
-    }
-    VIR_FREE(udi);
-
-    return 0;
-
- failure:
-    if (dbus_error_is_set(&err)) {
-        virReportError(VIR_ERR_INTERNAL_ERROR,
-                       _("%s: %s"), err.name, err.message);
-        dbus_error_free(&err);
-    }
-    virNodeDeviceObjListFree(driver->devs);
-    if (hal_ctx)
-        (void)libhal_ctx_free(hal_ctx);
-    nodeDeviceUnlock();
-    VIR_FREE(driver);
-
-    return ret;
-}
-
-
-static int
-nodeStateCleanup(void)
-{
-    if (driver) {
-        nodeDeviceLock();
-        LibHalContext *hal_ctx = DRV_STATE_HAL_CTX(driver);
-        virNodeDeviceObjListFree(driver->devs);
-        (void)libhal_ctx_shutdown(hal_ctx, NULL);
-        (void)libhal_ctx_free(hal_ctx);
-        nodeDeviceUnlock();
-        virMutexDestroy(&driver->lock);
-        VIR_FREE(driver);
-        return 0;
-    }
-    return -1;
-}
-
-
-static int
-nodeStateReload(void)
-{
-    DBusError err;
-    char **udi = NULL;
-    int num_devs;
-    size_t i;
-    LibHalContext *hal_ctx;
-
-    VIR_INFO("Reloading HAL device state");
-    nodeDeviceLock();
-    VIR_INFO("Removing existing objects");
-    virNodeDeviceObjListFree(driver->devs);
-    nodeDeviceUnlock();
-
-    hal_ctx = DRV_STATE_HAL_CTX(driver);
-    VIR_INFO("Creating new objects");
-    dbus_error_init(&err);
-    udi = libhal_get_all_devices(hal_ctx, &num_devs, &err);
-    if (udi == NULL) {
-        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                       _("libhal_get_all_devices failed"));
-        return -1;
-    }
-    for (i = 0; i < num_devs; i++) {
-        dev_create(udi[i]);
-        VIR_FREE(udi[i]);
-    }
-    VIR_FREE(udi);
-    VIR_INFO("HAL device reload complete");
-
-    return 0;
-}
-
-
-static virNodeDeviceDriver halNodeDeviceDriver = {
-    .name = "HAL",
-    .nodeNumOfDevices = nodeNumOfDevices, /* 0.5.0 */
-    .nodeListDevices = nodeListDevices, /* 0.5.0 */
-    .connectListAllNodeDevices = nodeConnectListAllNodeDevices, /* 0.10.2 */
-    .nodeDeviceLookupByName = nodeDeviceLookupByName, /* 0.5.0 */
-    .nodeDeviceLookupSCSIHostByWWN = nodeDeviceLookupSCSIHostByWWN, /* 1.0.2 */
-    .nodeDeviceGetXMLDesc = nodeDeviceGetXMLDesc, /* 0.5.0 */
-    .nodeDeviceGetParent = nodeDeviceGetParent, /* 0.5.0 */
-    .nodeDeviceNumOfCaps = nodeDeviceNumOfCaps, /* 0.5.0 */
-    .nodeDeviceListCaps = nodeDeviceListCaps, /* 0.5.0 */
-    .nodeDeviceCreateXML = nodeDeviceCreateXML, /* 0.6.5 */
-    .nodeDeviceDestroy = nodeDeviceDestroy, /* 0.6.5 */
-};
-
-
-static virHypervisorDriver halHypervisorDriver = {
-    .name = "nodedev",
-    .connectOpen = nodeConnectOpen, /* 4.1.0 */
-    .connectClose = nodeConnectClose, /* 4.1.0 */
-    .connectIsEncrypted = nodeConnectIsEncrypted, /* 4.1.0 */
-    .connectIsSecure = nodeConnectIsSecure, /* 4.1.0 */
-    .connectIsAlive = nodeConnectIsAlive, /* 4.1.0 */
-};
-
-
-static virConnectDriver halConnectDriver = {
-    .localOnly = true,
-    .uriSchemes = (const char *[]){ "nodedev", NULL },
-    .hypervisorDriver = &halHypervisorDriver,
-    .nodeDeviceDriver = &halNodeDeviceDriver,
-};
-
-
-static virStateDriver halStateDriver = {
-    .name = "HAL",
-    .stateInitialize = nodeStateInitialize, /* 0.5.0 */
-    .stateCleanup = nodeStateCleanup, /* 0.5.0 */
-    .stateReload = nodeStateReload, /* 0.5.0 */
-};
-
-int
-halNodeRegister(void)
-{
-    if (virRegisterConnectDriver(&halConnectDriver, false) < 0)
-        return -1;
-    if (virSetSharedNodeDeviceDriver(&halNodeDeviceDriver) < 0)
-        return -1;
-    return virRegisterStateDriver(&halStateDriver);
-}
diff --git a/src/node_device/node_device_hal.h b/src/node_device/node_device_hal.h
deleted file mode 100644
index 5e9c25ae34..0000000000
--- a/src/node_device/node_device_hal.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * node_device_hal.h: node device enumeration - HAL-based implementation
- *
- * Copyright (C) 2009 Red Hat, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library.  If not, see
- * <http://www.gnu.org/licenses/>.
- *
- */
-
-#pragma once
-- 
2.21.0




More information about the libvir-list mailing list