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
This commit is contained in:
Pawel Jakub Dawidek 2007-03-16 03:13:28 +00:00
parent c6c2738201
commit fa1abc314f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=167625

View File

@ -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);
}