aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount/mount.c
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>1999-10-30 17:40:10 +0000
committerBrian Feldman <green@FreeBSD.org>1999-10-30 17:40:10 +0000
commitcf96af72d5d2278c2a4aa793310d51e6932bd5e6 (patch)
tree24b6d5a260b226c253af3545f89e9d3cd8a95fd3 /sbin/mount/mount.c
parent9b8ef6b73a9d7bf9a7e46a26a1439ac709c55433 (diff)
downloadsrc-cf96af72d5d2278c2a4aa793310d51e6932bd5e6.tar.gz
src-cf96af72d5d2278c2a4aa793310d51e6932bd5e6.zip
Fix a few things:
1. Get rid of the evilly bogus strdup(fstab) and free if (fstab == "") as in umount. 2. Don't use /etc/fstab info if the mount instance does not exactly match the fstab entry. 3. Reversed the mountpoint checking order in getmntpt(). 4. Clarify the "not mounted" error message in mount -u. The previous "unknown special file or file system" wasn't quite right. 5. Get rid of a 1-byte memory leak; this was reported by jhb. Submitted by: Martin Blapp <mb@imp.ch>
Notes
Notes: svn path=/head/; revision=52678
Diffstat (limited to 'sbin/mount/mount.c')
-rw-r--r--sbin/mount/mount.c46
1 files changed, 31 insertions, 15 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index d30252271782..1ba9e570a7f3 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -131,7 +131,7 @@ main(argc, argv)
struct statfs *mntbuf;
FILE *mountdfp;
pid_t pid;
- int all, ch, i, init_flags, mntsize, rval;
+ int all, ch, i, init_flags, mntsize, rval, have_fstab;
char *options;
all = init_flags = 0;
@@ -228,12 +228,32 @@ main(argc, argv)
usage();
if (init_flags & MNT_UPDATE) {
+ mntfromname = NULL;
+ have_fstab = 0;
if ((mntbuf = getmntpt(*argv)) == NULL)
- errx(1,
- "unknown special file or file system %s",
- *argv);
+ errx(1, "not currently mounted %s", *argv);
+ /*
+ * Only get the mntflags from fstab if both mntpoint
+ * and mntspec are identical. Also handle the special
+ * case where just '/' is mounted and 'spec' is not
+ * identical with the one from fstab ('/dev' is missing
+ * in the spec-string at boot-time).
+ */
if ((fs = getfsfile(mntbuf->f_mntonname)) != NULL) {
- mntfromname = fs->fs_spec;
+ if (strcmp(fs->fs_spec,
+ mntbuf->f_mntfromname) == 0 &&
+ strcmp(fs->fs_file,
+ mntbuf->f_mntonname) == 0) {
+ have_fstab = 1;
+ mntfromname = mntbuf->f_mntfromname;
+ } else if (argv[0][0] == '/' &&
+ argv[0][1] == '\0') {
+ fs = getfsfile("/");
+ have_fstab = 1;
+ mntfromname = fs->fs_spec;
+ }
+ }
+ if (have_fstab) {
options = update_options(options, fs->fs_mntops,
mntbuf->f_flags);
} else {
@@ -257,10 +277,10 @@ main(argc, argv)
break;
case 2:
/*
- * If -t flag has not been specified, and spec contains either
- * a ':' or a '@', and the spec is not a file with those
- * characters, then assume that an NFS filesystem is being
- * specified ala Sun.
+ * If -t flag has not been specified, the path cannot be
+ * found, spec contains either a ':' or a '@', and the
+ * spec is not a file with those characters, then assume
+ * that an NFS filesystem is being specified ala Sun.
*/
if (vfslist == NULL && strpbrk(argv[0], ":@") != NULL &&
access(argv[0], 0) == -1)
@@ -515,10 +535,11 @@ getmntpt(name)
int i, mntsize;
mntsize = getmntinfo(&mntbuf, MNT_NOWAIT);
- for (i = 0; i < mntsize; i++)
+ for (i = mntsize - 1; i >= 0; i--) {
if (strcmp(mntbuf[i].f_mntfromname, name) == 0 ||
strcmp(mntbuf[i].f_mntonname, name) == 0)
return (&mntbuf[i]);
+ }
return (NULL);
}
@@ -588,9 +609,6 @@ update_options(opts, fstab, curflags)
if (opts == NULL)
return strdup("");
- if (fstab == NULL)
- fstab = strdup("");
-
/* remove meta options from list */
remopt(fstab, MOUNT_META_OPTION_FSTAB);
remopt(fstab, MOUNT_META_OPTION_CURRENT);
@@ -608,8 +626,6 @@ update_options(opts, fstab, curflags)
else
expopt = catopt(expopt, o);
}
- if (fstab == "")
- free(fstab);
free(cur);
free(opts);