]> sourceware.org Git - lvm2.git/commitdiff
dev-cache: handle situation where device is referenced in sysfs, but the node is...
authorPeter Rajnoha <prajnoha@redhat.com>
Wed, 30 Mar 2016 08:29:35 +0000 (10:29 +0200)
committerPeter Rajnoha <prajnoha@redhat.com>
Wed, 30 Mar 2016 08:56:46 +0000 (10:56 +0200)
It's possible that while a device is already referenced in sysfs, the node
is not yet in /dev directory.

This may happen in some rare cases right after LVs get created - we sync
with udev (or alternatively we create /dev content ourselves) while VG
lock is held. However, dev scan is done without VG lock so devices may
already be in sysfs, but /dev may not be updated yet if we call LVM command
right after LV creation (so the fact that fs_unlock is done within VG
lock is not usable here much). This is not a problem with devtmpfs as
there's at least kernel name for device in /dev as soon as the sysfs
item exists, but we still support environments without devtmpfs or
where different directory for dev nodes is used (e.g. our test suite).

This patch covers these situations by tracking such devices in
_cache.sysfs_only_names helper hash for the vgid/lvid check to work still.

This also resolves commit 6129d2e64d14047169048775dc7081135c0fcc50
which was then reverted by commit 109b7e2095a7bc5603bf79db0224b8399463af7c
due to performance issues it may have brought (...and it didn't resolve
the problem fully anyway).

WHATS_NEW
lib/device/dev-cache.c

index 3e4152f9328e039eebc75b6f3be38805baeeb835..ca6077b525533a5f7990d782f95b81fdabe5b926 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.149 - 
 ==================================
+  Fix holder device not being found in /dev while sysfs has it during dev scan.
 
 Version 2.02.148 - 26th March 2016
 ==================================
index c0267a98471dda2a41c9bce25b38e2180cfe0836..b3d45b3699d753731209fc914cfb06d0d1a77c71 100644 (file)
@@ -40,6 +40,7 @@ struct dir_list {
 static struct {
        struct dm_pool *mem;
        struct dm_hash_table *names;
+       struct dm_hash_table *sysfs_only_names; /* see comments in _get_device_for_sysfs_dev_name_using_devno */
        struct dm_hash_table *vgid_index;
        struct dm_hash_table *lvid_index;
        struct btree *devices;
@@ -433,6 +434,8 @@ static struct device *_get_device_for_sysfs_dev_name_using_devno(const char *dev
        char path[PATH_MAX];
        char buf[PATH_MAX];
        int major, minor;
+       dev_t devno;
+       struct device *dev;
 
        if (dm_snprintf(path, sizeof(path), "%sblock/%s/dev", dm_sysfs_dir(), devname) < 0) {
                log_error("_get_device_for_non_dm_dev: %s: dm_snprintf failed", devname);
@@ -447,7 +450,37 @@ static struct device *_get_device_for_sysfs_dev_name_using_devno(const char *dev
                return NULL;
        }
 
-       return (struct device *) btree_lookup(_cache.devices, (uint32_t) MKDEV(major, minor));
+       devno = MKDEV(major, minor);
+       if (!(dev = (struct device *) btree_lookup(_cache.devices, (uint32_t) devno))) {
+               /*
+                * If we get here, it means the device is referenced in sysfs, but it's not yet in /dev.
+                * This may happen in some rare cases right after LVs get created - we sync with udev
+                * (or alternatively we create /dev content ourselves) while VG lock is held. However,
+                * dev scan is done without VG lock so devices may already be in sysfs, but /dev may
+                * not be updated yet if we call LVM command right after LV creation. This is not a
+                * problem with devtmpfs as there's at least kernel name for device in /dev as soon
+                * as the sysfs item exists, but we still support environments without devtmpfs or
+                * where different directory for dev nodes is used (e.g. our test suite). So track
+                * such devices in _cache.sysfs_only_names hash for the vgid/lvid check to work still.
+                */
+               if (!_cache.sysfs_only_names) {
+                       if (!(_cache.sysfs_only_names = dm_hash_create(32))) {
+                               log_error("Failed to create hash in dev cache for sysfs-only devices.");
+                               return NULL;
+                       }
+               }
+
+               if (!(dev = (struct device *) dm_hash_lookup(_cache.sysfs_only_names, devname))) {
+                       if (!(dev = _dev_create(devno)))
+                               return_NULL;
+                       if (!dm_hash_insert(_cache.sysfs_only_names, devname, dev)) {
+                               log_error("Couldn't add device to sysfs-only hash in dev cache.");
+                               return NULL;
+                       }
+               }
+       }
+
+       return dev;
 }
 
 #define NOT_LVM_UUID "-"
@@ -1092,6 +1125,9 @@ int dev_cache_exit(void)
        if (_cache.names)
                dm_hash_destroy(_cache.names);
 
+       if (_cache.sysfs_only_names)
+               dm_hash_destroy(_cache.sysfs_only_names);
+
        if (_cache.vgid_index)
                dm_hash_destroy(_cache.vgid_index);
 
This page took 0.087185 seconds and 5 git commands to generate.