From fa1abc314f0511b52e7f5b16850ac9491ec8a1e5 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Fri, 16 Mar 2007 03:13:28 +0000 Subject: [PATCH] The ufs_disk_fillout(3) can take special device name (with or without /dev/ prefix) as an argument and mount point path. At the end it has to find device name file system is stored on, which means when mount point path is given, it tries to look into /etc/fstab and find special device corresponding to the given mount point. This is not perfect, because it doesn't handle the case when file system is mounted by hand and mount point is given as an argument. I found this problem while trying to use snapinfo(8), which passes mount points to the ufs_disk_fillout(3) function, but I had file system mounted manually, so snapinfo(8) was exiting with the error below: ufs_disk_fillout: No such file or directory I modified libufs(3) to handle those arguments (the order is important): 1. special device with /dev/ prefix 2. special device without /dev/ prefix 3. mount point listed in /etc/fstab, directory exists 4. mount point listed in /etc/fstab, directory doesn't exist 5. mount point of a file system mounted by hand --- lib/libufs/type.c | 43 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 36 insertions(+), 7 deletions(-) diff --git a/lib/libufs/type.c b/lib/libufs/type.c index c88da96baa7c..9b7470a33a84 100644 --- a/lib/libufs/type.c +++ b/lib/libufs/type.c @@ -87,24 +87,53 @@ ufs_disk_fillout_blank(struct uufsd *disk, const char *name) { struct stat st; struct fstab *fs; + struct statfs sfs; const char *oname; char dev[MAXPATHLEN]; - int fd; + int fd, ret; ERROR(disk, NULL); oname = name; - fs = getfsfile(name); - if (fs != NULL) - name = fs->fs_spec; -again: if (stat(name, &st) < 0) { +again: if ((ret = stat(name, &st)) < 0) { if (*name != '/') { - if (*name == 'r') - name++; snprintf(dev, sizeof(dev), "%s%s", _PATH_DEV, name); name = dev; goto again; } + /* + * The given object doesn't exist, but don't panic just yet - + * it may be still mount point listed in /etc/fstab, but without + * existing corresponding directory. + */ + name = oname; + } + if (ret >= 0 && S_ISCHR(st.st_mode)) { + /* This is what we need, do nothing. */ + ; + } else if ((fs = getfsfile(name)) != NULL) { + /* + * The given mount point is listed in /etc/fstab. + * It is possible that someone unmounted file system by hand + * and different file system is mounted on this mount point, + * but we still prefer /etc/fstab entry, because on the other + * hand, there could be /etc/fstab entry for this mount + * point, but file system is not mounted yet (eg. noauto) and + * statfs(2) will point us at different file system. + */ + name = fs->fs_spec; + } else if (ret >= 0 && S_ISDIR(st.st_mode)) { + /* + * The mount point is not listed in /etc/fstab, so it may be + * file system mounted by hand. + */ + if (statfs(name, &sfs) < 0) { + ERROR(disk, "could not find special device"); + return (-1); + } + strlcpy(dev, sfs.f_mntfromname, sizeof(dev)); + name = dev; + } else { ERROR(disk, "could not find special device"); return (-1); }