diff options
| author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-03-16 03:13:28 +0000 |
|---|---|---|
| committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-03-16 03:13:28 +0000 |
| commit | fa1abc314f0511b52e7f5b16850ac9491ec8a1e5 (patch) | |
| tree | 76f1bf1db39264cfc165aed7dc268ef1a8bafd78 /lib | |
| parent | c6c2738201442e9b3b1a4e6ac485dd397f6d91f1 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libufs/type.c | 43 |
1 files 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); } |
