From: Mike Frysinger Date: Sun, 10 May 2009 20:57:31 +0000 (-0400) Subject: losetup: handle symlinks in /dev/loop/ X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83277bc95a84f325d5f3dab3babf2998dc8b4555;p=util-linux losetup: handle symlinks in /dev/loop/ The loop_scandir() expects all the files in /dev/loop/ to be actual devices and not symlinks to devices. However, udev by default sets up symlinks in /dev/loop/ thereby breaking the fallback scan logic when looking for devices more than the default number of 8. Simple way to reproduce is: - - cd /dev/loop - rm -f [2-7] - losetup 0 autogen.sh - mv 1 8 - for n in {1..7} ; do ln -s 0 $n ; done - losetup -f [kay.sievers@vrfy.org: just a note, udev does not do that by default. It is devfs-nonsense, which the "default" never did.] Signed-off-by: Mike Frysinger Reported-by: Mario Bachmann --- diff --git a/mount/lomount.c b/mount/lomount.c index d62198ef..c173409e 100644 --- a/mount/lomount.c +++ b/mount/lomount.c @@ -256,7 +256,7 @@ loop_scandir(const char *dirname, int **ary, int hasprefix) *ary = NULL; while((d = readdir(dir))) { - if (d->d_type != DT_BLK && d->d_type != DT_UNKNOWN) + if (d->d_type != DT_BLK && d->d_type != DT_UNKNOWN && d->d_type != DT_LNK) continue; n = name2minor(hasprefix, d->d_name); if (n == -1 || n < NLOOPS_DEFAULT)