]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
udev: hwdb - properly handle a missing database
authorKay Sievers <kay@vrfy.org>
Thu, 15 Nov 2012 16:30:03 +0000 (17:30 +0100)
committerKay Sievers <kay@vrfy.org>
Thu, 15 Nov 2012 16:30:03 +0000 (17:30 +0100)
On Thu, Nov 15, 2012 at 5:05 PM, Zbigniew JÄ™drzejewski-Szmek <zbyszek@in.waw.pl> wrote:
> Something like this appeared with latest git:
>
> Nov 15 16:55:46 fedora-15 systemd-udevd[334]: worker [364] terminated by signal 11 (Segmentation fault)
> Nov 15 16:55:46 fedora-15 [387]: Process 364 (systemd-udevd) dumped core.
> Nov 15 16:55:46 fedora-15 systemd-udevd[334]: worker [364] failed while handling '/devices/virtual/net/lo'
> Nov 15 16:55:46 fedora-15 systemd-udevd[334]: worker [360] terminated by signal 11 (Segmentation fault)
> Nov 15 16:55:46 fedora-15 systemd-udevd[334]: worker [360] failed while handling '/devices/pci0000:00/0000:00:03.0/virtio0/net
> Nov 15 16:55:46 fedora-15 [389]: Process 360 (systemd-udevd) dumped core.
>
> Core was generated by usr/lib/systemd/systemd-udevd'.
> Program terminated with signal 11, Segmentation fault.
> #0  0x0000000000423c87 in udev_hwdb_get_properties_list_entry (hwdb=0x0, modalias=0x7fffbcd155f0

src/libudev/libudev-hwdb.c
src/udev/udev-builtin-hwdb.c

index 751b34209e6853a4f300d34ed9ee4dd6b9ef5b46..6779e45b4e5302e675c29b711be17b7fbb33769c 100644 (file)
@@ -377,7 +377,7 @@ bool udev_hwdb_validate(struct udev_hwdb *hwdb) {
 _public_ struct udev_list_entry *udev_hwdb_get_properties_list_entry(struct udev_hwdb *hwdb, const char *modalias, unsigned int flags) {
         int err;
 
-        if (!hwdb->f) {
+        if (!hwdb || !hwdb->f) {
                 errno = EINVAL;
                 return NULL;
         }
index 234448cdf1126712f15e8e73c548cfffc3f28f3f..0b35d799fee7e2144a6821cde15a0c4fe94d7af0 100644 (file)
@@ -33,6 +33,9 @@ int udev_builtin_hwdb_lookup(struct udev_device *dev, const char *modalias, bool
         struct udev_list_entry *entry;
         int n = 0;
 
+        if (!hwdb)
+                return -ENOENT;
+
         udev_list_entry_foreach(entry, udev_hwdb_get_properties_list_entry(hwdb, modalias, 0)) {
                 if (udev_builtin_add_property(dev, test,
                                               udev_list_entry_get_name(entry),