]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
90crypt: Fixed crypttab_contains() to also work with device path in /etc/crypttab 244/head
authorJulian Wolf <juwolf@suse.de>
Tue, 19 Aug 2014 14:23:59 +0000 (16:23 +0200)
committerDaniel Molkentin <dmolkentin@suse.com>
Tue, 27 Jun 2017 14:43:47 +0000 (16:43 +0200)
blkid is not available when this function is called, so block_uuid.map is put into
the initrd, mapping block devices from /etc/crypttab to UUIDs.

This fixes a bug where udev rules were created by mistake as crypttab_contains()
returned false for devices specified by path in /etc/crypttab which resulted in
error messages during boot.

Signed-off-by: Julian Wolf <juwolf@suse.de>
modules.d/90crypt/crypt-lib.sh
modules.d/90crypt/module-setup.sh

index cb8197e7b124fe22b7fe9aaa65be4cfe65932726..9a5a3e30007c02a6ee0b3cc5502f747db42dc617 100755 (executable)
@@ -16,6 +16,14 @@ crypttab_contains() {
                     [ "$dev" -ef "$_dev" ] && return 0
                 done
             fi
+            if [ -e /usr/lib/dracut/modules.d/90crypt/block_uuid.map ]; then
+                # search for line starting with $d
+                _line=$(sed -n "\,^$d .*$,{p}" /usr/lib/dracut/modules.d/90crypt/block_uuid.map)
+                [ -z "$_line" ] && continue
+                # get second column with uuid
+                _uuid="$(echo $_line | sed 's,^.* \(.*$\),\1,')"
+               strstr "$_uuid" "${luks##luks-}" && return 0
+            fi
         done < /etc/crypttab
     fi
     return 1
index 814ab7afaafa3d60ca0ff1f23360262bff71f870..9c1be998463491e4c7a505edcb27da07cc4a0297 100755 (executable)
@@ -75,6 +75,8 @@ install() {
             [[ $_dev == UUID=* ]] && \
                 _dev="/dev/disk/by-uuid/${_dev#UUID=}"
 
+            echo "$_dev $(blkid $_dev -s UUID -o value)" > /usr/lib/dracut/modules.d/90crypt/block_uuid.map
+
             for _hdev in "${!host_fs_types[@]}"; do
                 [[ ${host_fs_types[$_hdev]} == "crypto_LUKS" ]] || continue
                 if [[ $_hdev -ef $_dev ]] || [[ /dev/block/$_hdev -ef $_dev ]]; then