2002-07-02 17:09:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
* (c) UNIX System Laboratories, Inc.
|
|
|
|
* All or some portions of this file are derived from material licensed
|
|
|
|
* to the University of California by American Telephone and Telegraph
|
|
|
|
* Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|
|
|
* the permission of UNIX System Laboratories, Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1999-11-01 23:51:00 +00:00
|
|
|
* Copyright (c) 1999 Michael Smith
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 1999 Poul-Henning Kamp
|
|
|
|
* All rights reserved.
|
1994-05-24 10:09:53 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2002-07-02 17:09:22 +00:00
|
|
|
*
|
2002-07-02 18:33:32 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
1994-05-24 10:09:53 +00:00
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
2002-07-02 18:33:32 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
1994-05-24 10:09:53 +00:00
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-06-11 00:56:59 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-11-01 23:51:00 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/cons.h>
|
2002-07-02 17:09:22 +00:00
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/linker.h>
|
2002-07-31 01:11:29 +00:00
|
|
|
#include <sys/mac.h>
|
2002-08-01 17:47:56 +00:00
|
|
|
#include <sys/malloc.h>
|
2002-07-02 17:09:22 +00:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/namei.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/proc.h>
|
2003-01-01 01:56:19 +00:00
|
|
|
#include <sys/filedesc.h>
|
2002-07-02 17:09:22 +00:00
|
|
|
#include <sys/reboot.h>
|
|
|
|
#include <sys/sysproto.h>
|
|
|
|
#include <sys/sx.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/sysent.h>
|
|
|
|
#include <sys/systm.h>
|
2002-07-05 05:15:30 +00:00
|
|
|
#include <sys/vnode.h>
|
2002-07-02 17:09:22 +00:00
|
|
|
|
2002-10-25 18:44:42 +00:00
|
|
|
#include <geom/geom.h>
|
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
#include <machine/stdarg.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
#include "opt_rootdevname.h"
|
2000-03-20 16:28:35 +00:00
|
|
|
#include "opt_ddb.h"
|
2002-07-31 01:11:29 +00:00
|
|
|
#include "opt_mac.h"
|
2001-05-01 08:13:21 +00:00
|
|
|
|
2000-03-20 16:28:35 +00:00
|
|
|
#ifdef DDB
|
|
|
|
#include <ddb/ddb.h>
|
|
|
|
#endif
|
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
#define ROOTNAME "root_device"
|
|
|
|
|
|
|
|
static void checkdirs(struct vnode *olddp, struct vnode *newdp);
|
|
|
|
static int vfs_nmount(struct thread *td, int, struct uio *);
|
|
|
|
static int vfs_mountroot_try(char *mountfrom);
|
|
|
|
static int vfs_mountroot_ask(void);
|
2003-11-12 02:54:47 +00:00
|
|
|
static int vfs_mount_alloc(struct vnode *, struct vfsconf *,
|
|
|
|
const char *, struct thread *, struct mount **);
|
|
|
|
static int vfs_domount(struct thread *, const char *, char *,
|
|
|
|
int fsflags, void *fsdata, int compat);
|
2002-07-02 17:09:22 +00:00
|
|
|
static void gets(char *cp);
|
|
|
|
|
|
|
|
static int usermount = 0; /* if 1, non-root can mount fs. */
|
|
|
|
SYSCTL_INT(_vfs, OID_AUTO, usermount, CTLFLAG_RW, &usermount, 0, "");
|
2001-05-01 08:13:21 +00:00
|
|
|
|
1999-11-01 23:51:00 +00:00
|
|
|
MALLOC_DEFINE(M_MOUNT, "mount", "vfs mount structure");
|
1997-02-10 02:22:35 +00:00
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
/* List of mounted filesystems. */
|
|
|
|
struct mntlist mountlist = TAILQ_HEAD_INITIALIZER(mountlist);
|
|
|
|
|
|
|
|
/* For any iteration/modification of mountlist */
|
|
|
|
struct mtx mountlist_mtx;
|
|
|
|
|
2002-03-05 15:38:49 +00:00
|
|
|
/*
|
|
|
|
* The vnode of the system's root (/ in the filesystem, without chroot
|
|
|
|
* active.)
|
|
|
|
*/
|
1999-11-01 23:51:00 +00:00
|
|
|
struct vnode *rootvnode;
|
1995-08-28 09:19:25 +00:00
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
/*
|
|
|
|
* The root filesystem is detailed in the kernel environment variable
|
|
|
|
* vfs.root.mountfrom, which is expected to be in the general format
|
|
|
|
*
|
|
|
|
* <vfsname>:[<path>]
|
|
|
|
* vfsname := the name of a VFS known to the kernel and capable
|
|
|
|
* of being mounted as root
|
|
|
|
* path := disk device name or other data used by the filesystem
|
|
|
|
* to locate its physical store
|
|
|
|
*/
|
|
|
|
|
1999-11-04 01:40:18 +00:00
|
|
|
/*
|
|
|
|
* The root specifiers we will try if RB_CDROM is specified.
|
|
|
|
*/
|
|
|
|
static char *cdrom_rootdevnames[] = {
|
2003-09-26 09:07:27 +00:00
|
|
|
"cd9660:cd0",
|
|
|
|
"cd9660:acd0",
|
1999-11-04 01:40:18 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
1999-11-01 23:51:00 +00:00
|
|
|
/* legacy find-root code */
|
|
|
|
char *rootdevnames[2] = {NULL, NULL};
|
|
|
|
static int setrootbyname(char *name);
|
2002-03-31 07:15:28 +00:00
|
|
|
dev_t rootdev = NODEV;
|
1995-08-28 09:19:25 +00:00
|
|
|
|
2003-02-22 05:01:12 +00:00
|
|
|
/*
|
|
|
|
* Has to be dynamic as the value of rootdev can change; however, it can't
|
|
|
|
* change after the root is mounted, so a user process can't access this
|
|
|
|
* sysctl until after the value is unchangeable.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_rootdev(SYSCTL_HANDLER_ARGS)
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
/* _RD prevents this from happening. */
|
|
|
|
KASSERT(req->newptr == NULL, ("Attempt to change root device name"));
|
|
|
|
|
|
|
|
if (rootdev != NODEV)
|
|
|
|
error = sysctl_handle_string(oidp, rootdev->si_name, 0, req);
|
|
|
|
else
|
|
|
|
error = sysctl_handle_string(oidp, "", 0, req);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_PROC(_kern, OID_AUTO, rootdev, CTLTYPE_STRING | CTLFLAG_RD,
|
|
|
|
0, 0, sysctl_rootdev, "A", "Root file system device");
|
|
|
|
|
2002-07-19 16:05:31 +00:00
|
|
|
/* Remove one mount option. */
|
|
|
|
static void
|
|
|
|
vfs_freeopt(struct vfsoptlist *opts, struct vfsopt *opt)
|
|
|
|
{
|
|
|
|
|
|
|
|
TAILQ_REMOVE(opts, opt, link);
|
|
|
|
free(opt->name, M_MOUNT);
|
|
|
|
if (opt->value != NULL)
|
|
|
|
free(opt->value, M_MOUNT);
|
|
|
|
#ifdef INVARIANTS
|
|
|
|
else if (opt->len != 0)
|
|
|
|
panic("%s: mount option with NULL value but length != 0",
|
|
|
|
__func__);
|
|
|
|
#endif
|
|
|
|
free(opt, M_MOUNT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release all resources related to the mount options. */
|
2002-07-02 17:09:22 +00:00
|
|
|
static void
|
|
|
|
vfs_freeopts(struct vfsoptlist *opts)
|
|
|
|
{
|
|
|
|
struct vfsopt *opt;
|
|
|
|
|
|
|
|
while (!TAILQ_EMPTY(opts)) {
|
|
|
|
opt = TAILQ_FIRST(opts);
|
2002-07-19 16:05:31 +00:00
|
|
|
vfs_freeopt(opts, opt);
|
2002-07-02 17:09:22 +00:00
|
|
|
}
|
|
|
|
free(opts, M_MOUNT);
|
|
|
|
}
|
|
|
|
|
2002-07-19 16:05:31 +00:00
|
|
|
/*
|
|
|
|
* If a mount option is specified several times,
|
|
|
|
* (with or without the "no" prefix) only keep
|
|
|
|
* the last occurence of it.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
vfs_sanitizeopts(struct vfsoptlist *opts)
|
|
|
|
{
|
|
|
|
struct vfsopt *opt, *opt2, *tmp;
|
|
|
|
int noopt;
|
|
|
|
|
|
|
|
TAILQ_FOREACH_REVERSE(opt, opts, vfsoptlist, link) {
|
|
|
|
if (strncmp(opt->name, "no", 2) == 0)
|
|
|
|
noopt = 1;
|
|
|
|
else
|
|
|
|
noopt = 0;
|
|
|
|
opt2 = TAILQ_PREV(opt, vfsoptlist, link);
|
|
|
|
while (opt2 != NULL) {
|
|
|
|
if (strcmp(opt2->name, opt->name) == 0 ||
|
|
|
|
(noopt && strcmp(opt->name + 2, opt2->name) == 0) ||
|
|
|
|
(!noopt && strncmp(opt2->name, "no", 2) == 0 &&
|
|
|
|
strcmp(opt2->name + 2, opt->name) == 0)) {
|
|
|
|
tmp = TAILQ_PREV(opt2, vfsoptlist, link);
|
|
|
|
vfs_freeopt(opts, opt2);
|
|
|
|
opt2 = tmp;
|
|
|
|
} else {
|
|
|
|
opt2 = TAILQ_PREV(opt2, vfsoptlist, link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
/*
|
|
|
|
* Build a linked list of mount options from a struct uio.
|
|
|
|
*/
|
2003-11-12 02:54:47 +00:00
|
|
|
#define VFS_MOUNTARG_SIZE_MAX (1024*64)
|
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
static int
|
|
|
|
vfs_buildopts(struct uio *auio, struct vfsoptlist **options)
|
|
|
|
{
|
|
|
|
struct vfsoptlist *opts;
|
|
|
|
struct vfsopt *opt;
|
|
|
|
unsigned int i, iovcnt;
|
|
|
|
int error, namelen, optlen;
|
2003-11-12 02:54:47 +00:00
|
|
|
size_t memused = 0;
|
2002-07-02 17:09:22 +00:00
|
|
|
|
|
|
|
iovcnt = auio->uio_iovcnt;
|
2003-02-19 05:47:46 +00:00
|
|
|
opts = malloc(sizeof(struct vfsoptlist), M_MOUNT, M_WAITOK);
|
2002-07-02 17:09:22 +00:00
|
|
|
TAILQ_INIT(opts);
|
|
|
|
for (i = 0; i < iovcnt; i += 2) {
|
2003-02-19 05:47:46 +00:00
|
|
|
opt = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
|
2002-07-02 17:09:22 +00:00
|
|
|
namelen = auio->uio_iov[i].iov_len;
|
|
|
|
optlen = auio->uio_iov[i + 1].iov_len;
|
2003-02-19 05:47:46 +00:00
|
|
|
opt->name = malloc(namelen, M_MOUNT, M_WAITOK);
|
2002-07-24 19:50:00 +00:00
|
|
|
opt->value = NULL;
|
2003-11-12 02:54:47 +00:00
|
|
|
opt->len = optlen;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do this early, so jumps to "bad" will free the current
|
|
|
|
* option
|
|
|
|
*/
|
|
|
|
TAILQ_INSERT_TAIL(opts, opt, link);
|
|
|
|
memused += sizeof (struct vfsopt) + optlen + namelen;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Avoid consuming too much memory, and attempts to overflow
|
|
|
|
* memused
|
|
|
|
*/
|
|
|
|
if (memused > VFS_MOUNTARG_SIZE_MAX ||
|
|
|
|
optlen > VFS_MOUNTARG_SIZE_MAX ||
|
|
|
|
namelen > VFS_MOUNTARG_SIZE_MAX) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
2002-07-24 19:50:00 +00:00
|
|
|
if (auio->uio_segflg == UIO_SYSSPACE) {
|
|
|
|
bcopy(auio->uio_iov[i].iov_base, opt->name, namelen);
|
2002-07-02 17:09:22 +00:00
|
|
|
} else {
|
2002-07-24 19:50:00 +00:00
|
|
|
error = copyin(auio->uio_iov[i].iov_base, opt->name,
|
|
|
|
namelen);
|
|
|
|
if (error)
|
|
|
|
goto bad;
|
|
|
|
}
|
2003-11-12 02:54:47 +00:00
|
|
|
/* Ensure names are null-terminated strings */
|
|
|
|
if (opt->name[namelen - 1] != '\0') {
|
|
|
|
error = EINVAL;
|
|
|
|
goto bad;
|
|
|
|
}
|
2002-07-24 19:50:00 +00:00
|
|
|
if (optlen != 0) {
|
2003-02-19 05:47:46 +00:00
|
|
|
opt->value = malloc(optlen, M_MOUNT, M_WAITOK);
|
2002-07-19 16:05:31 +00:00
|
|
|
if (auio->uio_segflg == UIO_SYSSPACE) {
|
|
|
|
bcopy(auio->uio_iov[i + 1].iov_base, opt->value,
|
|
|
|
optlen);
|
|
|
|
} else {
|
2002-07-02 17:09:22 +00:00
|
|
|
error = copyin(auio->uio_iov[i + 1].iov_base,
|
|
|
|
opt->value, optlen);
|
2002-07-19 16:05:31 +00:00
|
|
|
if (error)
|
|
|
|
goto bad;
|
|
|
|
}
|
2002-07-02 17:09:22 +00:00
|
|
|
}
|
|
|
|
}
|
2002-07-19 16:05:31 +00:00
|
|
|
vfs_sanitizeopts(opts);
|
2002-07-02 17:09:22 +00:00
|
|
|
*options = opts;
|
|
|
|
return (0);
|
|
|
|
bad:
|
|
|
|
vfs_freeopts(opts);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2002-07-19 16:05:31 +00:00
|
|
|
/*
|
|
|
|
* Merge the old mount options with the new ones passed
|
|
|
|
* in the MNT_UPDATE case.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
vfs_mergeopts(struct vfsoptlist *toopts, struct vfsoptlist *opts)
|
|
|
|
{
|
|
|
|
struct vfsopt *opt, *opt2, *new;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(opt, opts, link) {
|
|
|
|
/*
|
|
|
|
* Check that this option hasn't been redefined
|
|
|
|
* nor cancelled with a "no" mount option.
|
|
|
|
*/
|
|
|
|
opt2 = TAILQ_FIRST(toopts);
|
|
|
|
while (opt2 != NULL) {
|
|
|
|
if (strcmp(opt2->name, opt->name) == 0)
|
|
|
|
goto next;
|
|
|
|
if (strncmp(opt2->name, "no", 2) == 0 &&
|
|
|
|
strcmp(opt2->name + 2, opt->name) == 0) {
|
|
|
|
vfs_freeopt(toopts, opt2);
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
opt2 = TAILQ_NEXT(opt2, link);
|
|
|
|
}
|
|
|
|
/* We want this option, duplicate it. */
|
2003-02-19 05:47:46 +00:00
|
|
|
new = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
|
|
|
|
new->name = malloc(strlen(opt->name) + 1, M_MOUNT, M_WAITOK);
|
2002-07-19 16:05:31 +00:00
|
|
|
strcpy(new->name, opt->name);
|
|
|
|
if (opt->len != 0) {
|
2003-02-19 05:47:46 +00:00
|
|
|
new->value = malloc(opt->len, M_MOUNT, M_WAITOK);
|
2002-07-19 16:05:31 +00:00
|
|
|
bcopy(opt->value, new->value, opt->len);
|
|
|
|
} else {
|
|
|
|
new->value = NULL;
|
|
|
|
}
|
|
|
|
new->len = opt->len;
|
|
|
|
TAILQ_INSERT_TAIL(toopts, new, link);
|
|
|
|
next:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
/*
|
|
|
|
* New mount API.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
nmount(td, uap)
|
|
|
|
struct thread *td;
|
|
|
|
struct nmount_args /* {
|
2002-12-14 02:07:32 +00:00
|
|
|
struct iovec *iovp;
|
|
|
|
unsigned int iovcnt;
|
|
|
|
int flags;
|
2002-07-02 17:09:22 +00:00
|
|
|
} */ *uap;
|
|
|
|
{
|
|
|
|
struct uio auio;
|
|
|
|
struct iovec *iov, *needfree;
|
|
|
|
struct iovec aiov[UIO_SMALLIOV];
|
|
|
|
unsigned int i;
|
|
|
|
int error;
|
|
|
|
u_int iovlen, iovcnt;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
iovcnt = uap->iovcnt;
|
2002-07-02 17:09:22 +00:00
|
|
|
iovlen = iovcnt * sizeof (struct iovec);
|
|
|
|
/*
|
|
|
|
* Check that we have an even number of iovec's
|
|
|
|
* and that we have at least two options.
|
|
|
|
*/
|
|
|
|
if ((iovcnt & 1) || (iovcnt < 4) || (iovcnt > UIO_MAXIOV))
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (iovcnt > UIO_SMALLIOV) {
|
2003-02-19 05:47:46 +00:00
|
|
|
MALLOC(iov, struct iovec *, iovlen, M_IOV, M_WAITOK);
|
2002-07-02 17:09:22 +00:00
|
|
|
needfree = iov;
|
|
|
|
} else {
|
|
|
|
iov = aiov;
|
|
|
|
needfree = NULL;
|
|
|
|
}
|
|
|
|
auio.uio_iov = iov;
|
|
|
|
auio.uio_iovcnt = iovcnt;
|
|
|
|
auio.uio_segflg = UIO_USERSPACE;
|
|
|
|
if ((error = copyin(uap->iovp, iov, iovlen)))
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
for (i = 0; i < iovcnt; i++) {
|
|
|
|
if (iov->iov_len > MMAXOPTIONLEN) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
iov++;
|
|
|
|
}
|
2002-12-14 01:56:26 +00:00
|
|
|
error = vfs_nmount(td, uap->flags, &auio);
|
2002-07-02 17:09:22 +00:00
|
|
|
finish:
|
|
|
|
if (needfree != NULL)
|
|
|
|
free(needfree, M_TEMP);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
kernel_mount(iovp, iovcnt, flags)
|
|
|
|
struct iovec *iovp;
|
|
|
|
unsigned int iovcnt;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
struct uio auio;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check that we have an even number of iovec's
|
|
|
|
* and that we have at least two options.
|
|
|
|
*/
|
|
|
|
if ((iovcnt & 1) || (iovcnt < 4))
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
auio.uio_iov = iovp;
|
|
|
|
auio.uio_iovcnt = iovcnt;
|
|
|
|
auio.uio_segflg = UIO_SYSSPACE;
|
|
|
|
|
|
|
|
error = vfs_nmount(curthread, flags, &auio);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
kernel_vmount(int flags, ...)
|
|
|
|
{
|
|
|
|
struct iovec *iovp;
|
|
|
|
struct uio auio;
|
|
|
|
va_list ap;
|
|
|
|
unsigned int iovcnt, iovlen, len;
|
|
|
|
const char *cp;
|
|
|
|
char *buf, *pos;
|
|
|
|
size_t n;
|
|
|
|
int error, i;
|
|
|
|
|
|
|
|
len = 0;
|
|
|
|
va_start(ap, flags);
|
|
|
|
for (iovcnt = 0; (cp = va_arg(ap, const char *)) != NULL; iovcnt++)
|
|
|
|
len += strlen(cp) + 1;
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (iovcnt < 4 || iovcnt & 1)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
iovlen = iovcnt * sizeof (struct iovec);
|
2003-02-19 05:47:46 +00:00
|
|
|
MALLOC(iovp, struct iovec *, iovlen, M_MOUNT, M_WAITOK);
|
|
|
|
MALLOC(buf, char *, len, M_MOUNT, M_WAITOK);
|
2002-07-02 17:09:22 +00:00
|
|
|
pos = buf;
|
|
|
|
va_start(ap, flags);
|
|
|
|
for (i = 0; i < iovcnt; i++) {
|
|
|
|
cp = va_arg(ap, const char *);
|
|
|
|
copystr(cp, pos, len - (pos - buf), &n);
|
|
|
|
iovp[i].iov_base = pos;
|
|
|
|
iovp[i].iov_len = n;
|
|
|
|
pos += n;
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
auio.uio_iov = iovp;
|
|
|
|
auio.uio_iovcnt = iovcnt;
|
|
|
|
auio.uio_segflg = UIO_SYSSPACE;
|
|
|
|
|
|
|
|
error = vfs_nmount(curthread, flags, &auio);
|
|
|
|
FREE(iovp, M_MOUNT);
|
|
|
|
FREE(buf, M_MOUNT);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-11-12 02:54:47 +00:00
|
|
|
* Allocate and initialize the mount point struct.
|
2002-07-02 17:09:22 +00:00
|
|
|
*/
|
|
|
|
static int
|
2003-11-12 02:54:47 +00:00
|
|
|
vfs_mount_alloc(struct vnode *vp, struct vfsconf *vfsp,
|
|
|
|
const char *fspath, struct thread *td, struct mount **mpp)
|
2002-07-02 17:09:22 +00:00
|
|
|
{
|
|
|
|
struct mount *mp;
|
2003-11-12 02:54:47 +00:00
|
|
|
|
|
|
|
mp = malloc(sizeof(struct mount), M_MOUNT, M_WAITOK | M_ZERO);
|
|
|
|
TAILQ_INIT(&mp->mnt_nvnodelist);
|
|
|
|
TAILQ_INIT(&mp->mnt_reservedvnlist);
|
|
|
|
mp->mnt_nvnodelistsize = 0;
|
|
|
|
mtx_init(&mp->mnt_mtx, "struct mount mtx", NULL, MTX_DEF);
|
|
|
|
lockinit(&mp->mnt_lock, PVFS, "vfslock", 0, LK_NOPAUSE);
|
|
|
|
vfs_busy(mp, LK_NOWAIT, 0, td);
|
|
|
|
mp->mnt_op = vfsp->vfc_vfsops;
|
|
|
|
mp->mnt_vfc = vfsp;
|
|
|
|
vfsp->vfc_refcount++;
|
|
|
|
mp->mnt_stat.f_type = vfsp->vfc_typenum;
|
|
|
|
mp->mnt_flag |= vfsp->vfc_flags & MNT_VISFLAGMASK;
|
|
|
|
strlcpy(mp->mnt_stat.f_fstypename, vfsp->vfc_name, MFSNAMELEN);
|
|
|
|
mp->mnt_vnodecovered = vp;
|
|
|
|
mp->mnt_cred = crdup(td->td_ucred);
|
|
|
|
mp->mnt_stat.f_owner = td->td_ucred->cr_uid;
|
|
|
|
strlcpy(mp->mnt_stat.f_mntonname, fspath, MNAMELEN);
|
|
|
|
mp->mnt_iosize_max = DFLTPHYS;
|
|
|
|
#ifdef MAC
|
|
|
|
mac_init_mount(mp);
|
|
|
|
mac_create_mount(td->td_ucred, mp);
|
|
|
|
#endif
|
|
|
|
*mpp = mp;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
vfs_mount_destroy(struct mount *mp, struct thread *td)
|
|
|
|
{
|
|
|
|
|
|
|
|
mp->mnt_vfc->vfc_refcount--;
|
|
|
|
if (!TAILQ_EMPTY(&mp->mnt_nvnodelist))
|
|
|
|
panic("unmount: dangling vnode");
|
|
|
|
vfs_unbusy(mp,td);
|
|
|
|
lockdestroy(&mp->mnt_lock);
|
|
|
|
mtx_destroy(&mp->mnt_mtx);
|
|
|
|
if (mp->mnt_kern_flag & MNTK_MWAIT)
|
|
|
|
wakeup(mp);
|
|
|
|
#ifdef MAC
|
|
|
|
mac_destroy_mount(mp);
|
|
|
|
#endif
|
|
|
|
if (mp->mnt_op->vfs_mount == NULL)
|
|
|
|
vfs_freeopts(mp->mnt_opt);
|
|
|
|
crfree(mp->mnt_cred);
|
|
|
|
free(mp, M_MOUNT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
vfs_nmount(struct thread *td, int fsflags, struct uio *fsoptions)
|
|
|
|
{
|
2002-07-02 17:09:22 +00:00
|
|
|
struct vfsoptlist *optlist;
|
|
|
|
char *fstype, *fspath;
|
|
|
|
int fstypelen, fspathlen;
|
2003-11-12 02:54:47 +00:00
|
|
|
int error;
|
2002-07-02 17:09:22 +00:00
|
|
|
|
|
|
|
error = vfs_buildopts(fsoptions, &optlist);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We need these two options before the others,
|
|
|
|
* and they are mandatory for any filesystem.
|
|
|
|
* Ensure they are NUL terminated as well.
|
|
|
|
*/
|
|
|
|
fstypelen = 0;
|
|
|
|
error = vfs_getopt(optlist, "fstype", (void **)&fstype, &fstypelen);
|
|
|
|
if (error || fstype[fstypelen - 1] != '\0') {
|
|
|
|
error = EINVAL;
|
2003-11-12 02:54:47 +00:00
|
|
|
goto bail;
|
2002-07-02 17:09:22 +00:00
|
|
|
}
|
|
|
|
fspathlen = 0;
|
|
|
|
error = vfs_getopt(optlist, "fspath", (void **)&fspath, &fspathlen);
|
|
|
|
if (error || fspath[fspathlen - 1] != '\0') {
|
|
|
|
error = EINVAL;
|
2003-11-12 02:54:47 +00:00
|
|
|
goto bail;
|
2002-07-02 17:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Be ultra-paranoid about making sure the type and fspath
|
|
|
|
* variables will fit in our mp buffers, including the
|
|
|
|
* terminating NUL.
|
|
|
|
*/
|
|
|
|
if (fstypelen >= MFSNAMELEN - 1 || fspathlen >= MNAMELEN - 1) {
|
|
|
|
error = ENAMETOOLONG;
|
2003-11-12 02:54:47 +00:00
|
|
|
goto bail;
|
2002-07-02 17:09:22 +00:00
|
|
|
}
|
|
|
|
|
2003-11-12 02:54:47 +00:00
|
|
|
error = vfs_domount(td, fstype, fspath, fsflags, optlist, 0);
|
|
|
|
bail:
|
|
|
|
if (error)
|
|
|
|
vfs_freeopts(optlist);
|
2002-07-02 17:09:22 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Old mount API.
|
|
|
|
*/
|
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
|
|
|
struct mount_args {
|
|
|
|
char *type;
|
|
|
|
char *path;
|
|
|
|
int flags;
|
|
|
|
caddr_t data;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
|
|
|
mount(td, uap)
|
|
|
|
struct thread *td;
|
|
|
|
struct mount_args /* {
|
2002-12-14 02:07:32 +00:00
|
|
|
char *type;
|
|
|
|
char *path;
|
|
|
|
int flags;
|
|
|
|
caddr_t data;
|
2002-07-02 17:09:22 +00:00
|
|
|
} */ *uap;
|
|
|
|
{
|
|
|
|
char *fstype;
|
|
|
|
char *fspath;
|
|
|
|
int error;
|
|
|
|
|
2003-02-19 05:47:46 +00:00
|
|
|
fstype = malloc(MFSNAMELEN, M_TEMP, M_WAITOK);
|
|
|
|
fspath = malloc(MNAMELEN, M_TEMP, M_WAITOK);
|
2002-07-02 17:09:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* vfs_mount() actually takes a kernel string for `type' and
|
|
|
|
* `path' now, so extract them.
|
|
|
|
*/
|
2002-12-14 01:56:26 +00:00
|
|
|
error = copyinstr(uap->type, fstype, MFSNAMELEN, NULL);
|
2002-10-21 20:09:59 +00:00
|
|
|
if (error == 0)
|
2002-12-14 01:56:26 +00:00
|
|
|
error = copyinstr(uap->path, fspath, MNAMELEN, NULL);
|
2002-10-21 20:09:59 +00:00
|
|
|
if (error == 0)
|
2003-11-12 02:54:47 +00:00
|
|
|
error = vfs_domount(td, fstype, fspath, uap->flags,
|
|
|
|
uap->data, 1);
|
2002-07-02 17:09:22 +00:00
|
|
|
free(fstype, M_TEMP);
|
|
|
|
free(fspath, M_TEMP);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* vfs_mount(): actually attempt a filesystem mount.
|
|
|
|
*
|
|
|
|
* This routine is designed to be a "generic" entry point for routines
|
|
|
|
* that wish to mount a filesystem. All parameters except `fsdata' are
|
|
|
|
* pointers into kernel space. `fsdata' is currently still a pointer
|
|
|
|
* into userspace.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
vfs_mount(td, fstype, fspath, fsflags, fsdata)
|
2003-11-12 02:54:47 +00:00
|
|
|
struct thread *td;
|
|
|
|
const char *fstype;
|
|
|
|
char *fspath;
|
|
|
|
int fsflags;
|
|
|
|
void *fsdata;
|
|
|
|
{
|
|
|
|
return (vfs_domount(td,fstype, fspath, fsflags, fsdata, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* vfs_domount(): actually attempt a filesystem mount.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
vfs_domount(
|
|
|
|
struct thread *td,
|
|
|
|
const char *fstype,
|
|
|
|
char *fspath,
|
|
|
|
int fsflags,
|
|
|
|
void *fsdata,
|
|
|
|
int compat)
|
2002-07-02 17:09:22 +00:00
|
|
|
{
|
|
|
|
linker_file_t lf;
|
|
|
|
struct vnode *vp;
|
|
|
|
struct mount *mp;
|
|
|
|
struct vfsconf *vfsp;
|
|
|
|
int error, flag = 0, kern_flag = 0;
|
|
|
|
struct vattr va;
|
|
|
|
struct nameidata nd;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Be ultra-paranoid about making sure the type and fspath
|
|
|
|
* variables will fit in our mp buffers, including the
|
|
|
|
* terminating NUL.
|
|
|
|
*/
|
|
|
|
if (strlen(fstype) >= MFSNAMELEN || strlen(fspath) >= MNAMELEN)
|
|
|
|
return (ENAMETOOLONG);
|
|
|
|
|
|
|
|
if (usermount == 0) {
|
2003-11-12 02:54:47 +00:00
|
|
|
error = suser(td);
|
2002-07-02 17:09:22 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Do not allow NFS export by non-root users.
|
|
|
|
*/
|
|
|
|
if (fsflags & MNT_EXPORTED) {
|
|
|
|
error = suser(td);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Silently enforce MNT_NOSUID and MNT_NODEV for non-root users.
|
|
|
|
*/
|
2003-11-12 02:54:47 +00:00
|
|
|
if (suser(td))
|
2002-07-02 17:09:22 +00:00
|
|
|
fsflags |= MNT_NOSUID | MNT_NODEV;
|
|
|
|
/*
|
|
|
|
* Get vnode to be covered
|
|
|
|
*/
|
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE, fspath, td);
|
|
|
|
if ((error = namei(&nd)) != 0)
|
|
|
|
return (error);
|
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
|
|
|
vp = nd.ni_vp;
|
|
|
|
if (fsflags & MNT_UPDATE) {
|
2002-08-04 10:29:36 +00:00
|
|
|
if ((vp->v_vflag & VV_ROOT) == 0) {
|
2002-07-02 17:09:22 +00:00
|
|
|
vput(vp);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
mp = vp->v_mount;
|
|
|
|
flag = mp->mnt_flag;
|
|
|
|
kern_flag = mp->mnt_kern_flag;
|
|
|
|
/*
|
|
|
|
* We only allow the filesystem to be reloaded if it
|
|
|
|
* is currently mounted read-only.
|
|
|
|
*/
|
|
|
|
if ((fsflags & MNT_RELOAD) &&
|
|
|
|
((mp->mnt_flag & MNT_RDONLY) == 0)) {
|
|
|
|
vput(vp);
|
|
|
|
return (EOPNOTSUPP); /* Needs translation */
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Only root, or the user that did the original mount is
|
|
|
|
* permitted to update it.
|
|
|
|
*/
|
2002-08-19 06:52:21 +00:00
|
|
|
if (mp->mnt_cred->cr_uid != td->td_ucred->cr_uid) {
|
2002-07-02 17:09:22 +00:00
|
|
|
error = suser(td);
|
|
|
|
if (error) {
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (vfs_busy(mp, LK_NOWAIT, 0, td)) {
|
|
|
|
vput(vp);
|
|
|
|
return (EBUSY);
|
|
|
|
}
|
2002-08-04 10:29:36 +00:00
|
|
|
VI_LOCK(vp);
|
|
|
|
if ((vp->v_iflag & VI_MOUNT) != 0 ||
|
|
|
|
vp->v_mountedhere != NULL) {
|
|
|
|
VI_UNLOCK(vp);
|
2002-07-02 17:09:22 +00:00
|
|
|
vfs_unbusy(mp, td);
|
|
|
|
vput(vp);
|
|
|
|
return (EBUSY);
|
|
|
|
}
|
2002-08-04 10:29:36 +00:00
|
|
|
vp->v_iflag |= VI_MOUNT;
|
|
|
|
VI_UNLOCK(vp);
|
2002-07-02 17:09:22 +00:00
|
|
|
mp->mnt_flag |= fsflags &
|
|
|
|
(MNT_RELOAD | MNT_FORCE | MNT_UPDATE | MNT_SNAPSHOT);
|
|
|
|
VOP_UNLOCK(vp, 0, td);
|
2003-11-12 02:54:47 +00:00
|
|
|
if (compat == 0) {
|
|
|
|
mp->mnt_optnew = fsdata;
|
|
|
|
vfs_mergeopts(mp->mnt_optnew, mp->mnt_opt);
|
|
|
|
}
|
2002-07-02 17:09:22 +00:00
|
|
|
goto update;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If the user is not root, ensure that they own the directory
|
|
|
|
* onto which we are attempting to mount.
|
|
|
|
*/
|
|
|
|
error = VOP_GETATTR(vp, &va, td->td_ucred, td);
|
|
|
|
if (error) {
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
if (va.va_uid != td->td_ucred->cr_uid) {
|
|
|
|
error = suser(td);
|
|
|
|
if (error) {
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((error = vinvalbuf(vp, V_SAVE, td->td_ucred, td, 0, 0)) != 0) {
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
if (vp->v_type != VDIR) {
|
|
|
|
vput(vp);
|
|
|
|
return (ENOTDIR);
|
|
|
|
}
|
|
|
|
for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
|
|
|
|
if (!strcmp(vfsp->vfc_name, fstype))
|
|
|
|
break;
|
|
|
|
if (vfsp == NULL) {
|
|
|
|
/* Only load modules for root (very important!). */
|
|
|
|
error = suser(td);
|
|
|
|
if (error) {
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
error = securelevel_gt(td->td_ucred, 0);
|
|
|
|
if (error) {
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
2002-08-02 20:56:07 +00:00
|
|
|
error = linker_load_module(NULL, fstype, NULL, NULL, &lf);
|
2002-07-02 17:09:22 +00:00
|
|
|
if (error || lf == NULL) {
|
|
|
|
vput(vp);
|
|
|
|
if (lf == NULL)
|
|
|
|
error = ENODEV;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
lf->userrefs++;
|
|
|
|
/* Look up again to see if the VFS was loaded. */
|
|
|
|
for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
|
|
|
|
if (!strcmp(vfsp->vfc_name, fstype))
|
|
|
|
break;
|
|
|
|
if (vfsp == NULL) {
|
|
|
|
lf->userrefs--;
|
|
|
|
linker_file_unload(lf);
|
|
|
|
vput(vp);
|
|
|
|
return (ENODEV);
|
|
|
|
}
|
|
|
|
}
|
2002-08-04 10:29:36 +00:00
|
|
|
VI_LOCK(vp);
|
|
|
|
if ((vp->v_iflag & VI_MOUNT) != 0 ||
|
2002-07-02 17:09:22 +00:00
|
|
|
vp->v_mountedhere != NULL) {
|
2002-08-04 10:29:36 +00:00
|
|
|
VI_UNLOCK(vp);
|
2002-07-02 17:09:22 +00:00
|
|
|
vput(vp);
|
|
|
|
return (EBUSY);
|
|
|
|
}
|
2002-08-04 10:29:36 +00:00
|
|
|
vp->v_iflag |= VI_MOUNT;
|
|
|
|
VI_UNLOCK(vp);
|
2002-07-02 17:09:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate and initialize the filesystem.
|
|
|
|
*/
|
2003-11-12 02:54:47 +00:00
|
|
|
error = vfs_mount_alloc(vp, vfsp, fspath, td, &mp);
|
|
|
|
if (error) {
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
2002-07-02 17:09:22 +00:00
|
|
|
VOP_UNLOCK(vp, 0, td);
|
2003-11-12 02:54:47 +00:00
|
|
|
|
|
|
|
/* XXXMAC: pass to vfs_mount_alloc? */
|
|
|
|
if (compat == 0)
|
|
|
|
mp->mnt_optnew = fsdata;
|
2002-07-02 17:09:22 +00:00
|
|
|
update:
|
|
|
|
/*
|
2003-11-12 02:54:47 +00:00
|
|
|
* Check if the fs implements the type VFS_[N]MOUNT()
|
|
|
|
* function we are looking for.
|
2002-07-02 17:09:22 +00:00
|
|
|
*/
|
2003-11-12 02:54:47 +00:00
|
|
|
if ((compat == 0) == (mp->mnt_op->vfs_mount != NULL)) {
|
|
|
|
printf("%s doesn't support the %s mount syscall\n",
|
|
|
|
mp->mnt_vfc->vfc_name, compat? "old" : "new");
|
2002-08-04 10:29:36 +00:00
|
|
|
VI_LOCK(vp);
|
|
|
|
vp->v_iflag &= ~VI_MOUNT;
|
|
|
|
VI_UNLOCK(vp);
|
2002-07-02 17:09:22 +00:00
|
|
|
if (mp->mnt_flag & MNT_UPDATE)
|
|
|
|
vfs_unbusy(mp, td);
|
2003-11-12 02:54:47 +00:00
|
|
|
else
|
|
|
|
vfs_mount_destroy(mp, td);
|
2002-07-02 17:09:22 +00:00
|
|
|
vrele(vp);
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the mount level flags.
|
|
|
|
*/
|
|
|
|
if (fsflags & MNT_RDONLY)
|
|
|
|
mp->mnt_flag |= MNT_RDONLY;
|
|
|
|
else if (mp->mnt_flag & MNT_RDONLY)
|
|
|
|
mp->mnt_kern_flag |= MNTK_WANTRDWR;
|
|
|
|
mp->mnt_flag &=~ MNT_UPDATEMASK;
|
|
|
|
mp->mnt_flag |= fsflags & (MNT_UPDATEMASK | MNT_FORCE);
|
|
|
|
/*
|
|
|
|
* Mount the filesystem.
|
|
|
|
* XXX The final recipients of VFS_MOUNT just overwrite the ndp they
|
|
|
|
* get. No freeing of cn_pnbuf.
|
|
|
|
*/
|
2003-11-12 02:54:47 +00:00
|
|
|
error = compat? VFS_MOUNT(mp, fspath, fsdata, &nd, td) :
|
|
|
|
VFS_NMOUNT(mp, &nd, td);
|
|
|
|
if (!error) {
|
|
|
|
if (mp->mnt_opt != NULL)
|
|
|
|
vfs_freeopts(mp->mnt_opt);
|
|
|
|
mp->mnt_opt = mp->mnt_optnew;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Prevent external consumers of mount
|
|
|
|
* options to read mnt_optnew.
|
|
|
|
*/
|
|
|
|
mp->mnt_optnew = NULL;
|
2002-07-02 17:09:22 +00:00
|
|
|
if (mp->mnt_flag & MNT_UPDATE) {
|
|
|
|
if (mp->mnt_kern_flag & MNTK_WANTRDWR)
|
|
|
|
mp->mnt_flag &= ~MNT_RDONLY;
|
|
|
|
mp->mnt_flag &=~
|
|
|
|
(MNT_UPDATE | MNT_RELOAD | MNT_FORCE | MNT_SNAPSHOT);
|
|
|
|
mp->mnt_kern_flag &=~ MNTK_WANTRDWR;
|
|
|
|
if (error) {
|
|
|
|
mp->mnt_flag = flag;
|
|
|
|
mp->mnt_kern_flag = kern_flag;
|
|
|
|
}
|
|
|
|
if ((mp->mnt_flag & MNT_RDONLY) == 0) {
|
|
|
|
if (mp->mnt_syncer == NULL)
|
|
|
|
error = vfs_allocate_syncvnode(mp);
|
|
|
|
} else {
|
|
|
|
if (mp->mnt_syncer != NULL)
|
2002-07-29 06:26:55 +00:00
|
|
|
vrele(mp->mnt_syncer);
|
2002-07-02 17:09:22 +00:00
|
|
|
mp->mnt_syncer = NULL;
|
|
|
|
}
|
|
|
|
vfs_unbusy(mp, td);
|
2002-08-04 10:29:36 +00:00
|
|
|
VI_LOCK(vp);
|
|
|
|
vp->v_iflag &= ~VI_MOUNT;
|
|
|
|
VI_UNLOCK(vp);
|
2002-07-02 17:09:22 +00:00
|
|
|
vrele(vp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
|
|
|
/*
|
|
|
|
* Put the new filesystem on the mount list after root.
|
|
|
|
*/
|
|
|
|
cache_purge(vp);
|
|
|
|
if (!error) {
|
|
|
|
struct vnode *newdp;
|
|
|
|
|
2002-08-04 10:29:36 +00:00
|
|
|
VI_LOCK(vp);
|
|
|
|
vp->v_iflag &= ~VI_MOUNT;
|
|
|
|
VI_UNLOCK(vp);
|
2002-09-25 01:44:21 +00:00
|
|
|
vp->v_mountedhere = mp;
|
2002-07-02 17:09:22 +00:00
|
|
|
mtx_lock(&mountlist_mtx);
|
|
|
|
TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
|
|
|
|
mtx_unlock(&mountlist_mtx);
|
|
|
|
if (VFS_ROOT(mp, &newdp))
|
|
|
|
panic("mount: lost mount");
|
|
|
|
checkdirs(vp, newdp);
|
|
|
|
vput(newdp);
|
|
|
|
VOP_UNLOCK(vp, 0, td);
|
|
|
|
if ((mp->mnt_flag & MNT_RDONLY) == 0)
|
|
|
|
error = vfs_allocate_syncvnode(mp);
|
|
|
|
vfs_unbusy(mp, td);
|
|
|
|
if ((error = VFS_START(mp, 0, td)) != 0)
|
|
|
|
vrele(vp);
|
|
|
|
} else {
|
2002-08-04 10:29:36 +00:00
|
|
|
VI_LOCK(vp);
|
|
|
|
vp->v_iflag &= ~VI_MOUNT;
|
|
|
|
VI_UNLOCK(vp);
|
2003-11-12 02:54:47 +00:00
|
|
|
|
|
|
|
vfs_mount_destroy(mp, td);
|
2002-07-02 17:09:22 +00:00
|
|
|
vput(vp);
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan all active processes to see if any of them have a current
|
|
|
|
* or root directory of `olddp'. If so, replace them with the new
|
|
|
|
* mount point.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
checkdirs(olddp, newdp)
|
|
|
|
struct vnode *olddp, *newdp;
|
|
|
|
{
|
|
|
|
struct filedesc *fdp;
|
|
|
|
struct proc *p;
|
|
|
|
int nrele;
|
|
|
|
|
2002-09-25 01:44:21 +00:00
|
|
|
if (vrefcnt(olddp) == 1)
|
2002-07-02 17:09:22 +00:00
|
|
|
return;
|
|
|
|
sx_slock(&allproc_lock);
|
|
|
|
LIST_FOREACH(p, &allproc, p_list) {
|
2003-02-15 05:52:56 +00:00
|
|
|
mtx_lock(&fdesc_mtx);
|
2002-07-02 17:09:22 +00:00
|
|
|
fdp = p->p_fd;
|
|
|
|
if (fdp == NULL) {
|
2003-02-15 05:52:56 +00:00
|
|
|
mtx_unlock(&fdesc_mtx);
|
2002-07-02 17:09:22 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
nrele = 0;
|
|
|
|
FILEDESC_LOCK(fdp);
|
|
|
|
if (fdp->fd_cdir == olddp) {
|
|
|
|
VREF(newdp);
|
|
|
|
fdp->fd_cdir = newdp;
|
|
|
|
nrele++;
|
|
|
|
}
|
|
|
|
if (fdp->fd_rdir == olddp) {
|
|
|
|
VREF(newdp);
|
|
|
|
fdp->fd_rdir = newdp;
|
|
|
|
nrele++;
|
|
|
|
}
|
|
|
|
FILEDESC_UNLOCK(fdp);
|
2003-02-15 05:52:56 +00:00
|
|
|
mtx_unlock(&fdesc_mtx);
|
2002-07-02 17:09:22 +00:00
|
|
|
while (nrele--)
|
|
|
|
vrele(olddp);
|
|
|
|
}
|
|
|
|
sx_sunlock(&allproc_lock);
|
|
|
|
if (rootvnode == olddp) {
|
|
|
|
vrele(rootvnode);
|
|
|
|
VREF(newdp);
|
|
|
|
rootvnode = newdp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unmount a filesystem.
|
|
|
|
*
|
|
|
|
* Note: unmount takes a path to the vnode mounted on as argument,
|
|
|
|
* not special file (as before).
|
|
|
|
*/
|
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
|
|
|
struct unmount_args {
|
|
|
|
char *path;
|
|
|
|
int flags;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
|
|
|
unmount(td, uap)
|
|
|
|
struct thread *td;
|
|
|
|
register struct unmount_args /* {
|
2002-12-14 02:07:32 +00:00
|
|
|
char *path;
|
|
|
|
int flags;
|
2002-07-02 17:09:22 +00:00
|
|
|
} */ *uap;
|
|
|
|
{
|
|
|
|
struct mount *mp;
|
2003-07-01 17:40:23 +00:00
|
|
|
char *pathbuf;
|
|
|
|
int error, id0, id1;
|
2002-07-02 17:09:22 +00:00
|
|
|
|
2003-07-01 17:40:23 +00:00
|
|
|
pathbuf = malloc(MNAMELEN, M_TEMP, M_WAITOK);
|
|
|
|
error = copyinstr(uap->path, pathbuf, MNAMELEN, NULL);
|
|
|
|
if (error) {
|
|
|
|
free(pathbuf, M_TEMP);
|
2002-07-02 17:09:22 +00:00
|
|
|
return (error);
|
2003-07-01 17:40:23 +00:00
|
|
|
}
|
|
|
|
if (uap->flags & MNT_BYFSID) {
|
|
|
|
/* Decode the filesystem ID. */
|
|
|
|
if (sscanf(pathbuf, "FSID:%d:%d", &id0, &id1) != 2) {
|
|
|
|
free(pathbuf, M_TEMP);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
mtx_lock(&mountlist_mtx);
|
|
|
|
TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list)
|
|
|
|
if (mp->mnt_stat.f_fsid.val[0] == id0 &&
|
|
|
|
mp->mnt_stat.f_fsid.val[1] == id1)
|
|
|
|
break;
|
|
|
|
mtx_unlock(&mountlist_mtx);
|
|
|
|
} else {
|
|
|
|
mtx_lock(&mountlist_mtx);
|
|
|
|
TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list)
|
|
|
|
if (strcmp(mp->mnt_stat.f_mntonname, pathbuf) == 0)
|
|
|
|
break;
|
|
|
|
mtx_unlock(&mountlist_mtx);
|
|
|
|
}
|
|
|
|
free(pathbuf, M_TEMP);
|
2003-09-08 16:23:21 +00:00
|
|
|
if (mp == NULL) {
|
|
|
|
/*
|
|
|
|
* Previously we returned ENOENT for a nonexistent path and
|
|
|
|
* EINVAL for a non-mountpoint. We cannot tell these apart
|
|
|
|
* now, so in the !MNT_BYFSID case return the more likely
|
|
|
|
* EINVAL for compatibility.
|
|
|
|
*/
|
|
|
|
return ((uap->flags & MNT_BYFSID) ? ENOENT : EINVAL);
|
|
|
|
}
|
2002-07-02 17:09:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only root, or the user that did the original mount is
|
|
|
|
* permitted to unmount this filesystem.
|
|
|
|
*/
|
2002-08-19 06:52:21 +00:00
|
|
|
if (mp->mnt_cred->cr_uid != td->td_ucred->cr_uid) {
|
2002-07-02 17:09:22 +00:00
|
|
|
error = suser(td);
|
2003-07-01 17:40:23 +00:00
|
|
|
if (error)
|
2002-07-02 17:09:22 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't allow unmounting the root filesystem.
|
|
|
|
*/
|
2003-07-01 17:40:23 +00:00
|
|
|
if (mp->mnt_flag & MNT_ROOTFS)
|
2002-07-02 17:09:22 +00:00
|
|
|
return (EINVAL);
|
2002-12-14 01:56:26 +00:00
|
|
|
return (dounmount(mp, uap->flags, td));
|
2002-07-02 17:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do the actual filesystem unmount.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
dounmount(mp, flags, td)
|
|
|
|
struct mount *mp;
|
|
|
|
int flags;
|
|
|
|
struct thread *td;
|
|
|
|
{
|
|
|
|
struct vnode *coveredvp, *fsrootvp;
|
|
|
|
int error;
|
|
|
|
int async_flag;
|
|
|
|
|
|
|
|
mtx_lock(&mountlist_mtx);
|
|
|
|
if (mp->mnt_kern_flag & MNTK_UNMOUNT) {
|
|
|
|
mtx_unlock(&mountlist_mtx);
|
|
|
|
return (EBUSY);
|
|
|
|
}
|
|
|
|
mp->mnt_kern_flag |= MNTK_UNMOUNT;
|
|
|
|
/* Allow filesystems to detect that a forced unmount is in progress. */
|
|
|
|
if (flags & MNT_FORCE)
|
|
|
|
mp->mnt_kern_flag |= MNTK_UNMOUNTF;
|
|
|
|
error = lockmgr(&mp->mnt_lock, LK_DRAIN | LK_INTERLOCK |
|
|
|
|
((flags & MNT_FORCE) ? 0 : LK_NOWAIT), &mountlist_mtx, td);
|
|
|
|
if (error) {
|
|
|
|
mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
|
|
|
|
if (mp->mnt_kern_flag & MNTK_MWAIT)
|
|
|
|
wakeup(mp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
vn_start_write(NULL, &mp, V_WAIT);
|
|
|
|
|
|
|
|
if (mp->mnt_flag & MNT_EXPUBLIC)
|
|
|
|
vfs_setpublicfs(NULL, NULL, NULL);
|
|
|
|
|
|
|
|
vfs_msync(mp, MNT_WAIT);
|
|
|
|
async_flag = mp->mnt_flag & MNT_ASYNC;
|
|
|
|
mp->mnt_flag &=~ MNT_ASYNC;
|
|
|
|
cache_purgevfs(mp); /* remove cache entries for this file sys */
|
|
|
|
if (mp->mnt_syncer != NULL)
|
2002-07-29 06:26:55 +00:00
|
|
|
vrele(mp->mnt_syncer);
|
2002-07-02 17:09:22 +00:00
|
|
|
/* Move process cdir/rdir refs on fs root to underlying vnode. */
|
|
|
|
if (VFS_ROOT(mp, &fsrootvp) == 0) {
|
|
|
|
if (mp->mnt_vnodecovered != NULL)
|
|
|
|
checkdirs(fsrootvp, mp->mnt_vnodecovered);
|
|
|
|
if (fsrootvp == rootvnode) {
|
|
|
|
vrele(rootvnode);
|
|
|
|
rootvnode = NULL;
|
|
|
|
}
|
|
|
|
vput(fsrootvp);
|
|
|
|
}
|
|
|
|
if (((mp->mnt_flag & MNT_RDONLY) ||
|
|
|
|
(error = VFS_SYNC(mp, MNT_WAIT, td->td_ucred, td)) == 0) ||
|
|
|
|
(flags & MNT_FORCE)) {
|
|
|
|
error = VFS_UNMOUNT(mp, flags, td);
|
|
|
|
}
|
|
|
|
vn_finished_write(mp);
|
|
|
|
if (error) {
|
|
|
|
/* Undo cdir/rdir and rootvnode changes made above. */
|
|
|
|
if (VFS_ROOT(mp, &fsrootvp) == 0) {
|
|
|
|
if (mp->mnt_vnodecovered != NULL)
|
|
|
|
checkdirs(mp->mnt_vnodecovered, fsrootvp);
|
|
|
|
if (rootvnode == NULL) {
|
|
|
|
rootvnode = fsrootvp;
|
|
|
|
vref(rootvnode);
|
|
|
|
}
|
|
|
|
vput(fsrootvp);
|
|
|
|
}
|
|
|
|
if ((mp->mnt_flag & MNT_RDONLY) == 0 && mp->mnt_syncer == NULL)
|
|
|
|
(void) vfs_allocate_syncvnode(mp);
|
|
|
|
mtx_lock(&mountlist_mtx);
|
|
|
|
mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
|
|
|
|
mp->mnt_flag |= async_flag;
|
|
|
|
lockmgr(&mp->mnt_lock, LK_RELEASE | LK_INTERLOCK,
|
|
|
|
&mountlist_mtx, td);
|
|
|
|
if (mp->mnt_kern_flag & MNTK_MWAIT)
|
|
|
|
wakeup(mp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
mtx_lock(&mountlist_mtx);
|
|
|
|
TAILQ_REMOVE(&mountlist, mp, mnt_list);
|
2002-10-22 01:06:44 +00:00
|
|
|
if ((coveredvp = mp->mnt_vnodecovered) != NULL)
|
2002-07-02 17:09:22 +00:00
|
|
|
coveredvp->v_mountedhere = NULL;
|
2003-11-12 02:54:47 +00:00
|
|
|
mtx_unlock(&mountlist_mtx);
|
|
|
|
vfs_mount_destroy(mp, td);
|
2002-07-02 17:09:22 +00:00
|
|
|
if (coveredvp != NULL)
|
|
|
|
vrele(coveredvp);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2002-07-03 09:27:24 +00:00
|
|
|
/*
|
|
|
|
* Lookup a filesystem type, and if found allocate and initialize
|
|
|
|
* a mount structure for it.
|
|
|
|
*
|
|
|
|
* Devname is usually updated by mount(8) after booting.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
vfs_rootmountalloc(fstypename, devname, mpp)
|
|
|
|
char *fstypename;
|
|
|
|
char *devname;
|
|
|
|
struct mount **mpp;
|
|
|
|
{
|
|
|
|
struct thread *td = curthread; /* XXX */
|
|
|
|
struct vfsconf *vfsp;
|
|
|
|
struct mount *mp;
|
2003-11-12 02:54:47 +00:00
|
|
|
int error;
|
2002-07-03 09:27:24 +00:00
|
|
|
|
|
|
|
if (fstypename == NULL)
|
|
|
|
return (ENODEV);
|
|
|
|
for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
|
|
|
|
if (!strcmp(vfsp->vfc_name, fstypename))
|
|
|
|
break;
|
|
|
|
if (vfsp == NULL)
|
|
|
|
return (ENODEV);
|
2003-11-12 02:54:47 +00:00
|
|
|
|
|
|
|
error = vfs_mount_alloc(NULLVP, vfsp, "/", td, &mp);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
mp->mnt_flag |= MNT_RDONLY | MNT_ROOTFS;
|
2002-09-19 18:54:22 +00:00
|
|
|
strlcpy(mp->mnt_stat.f_mntfromname, devname, MNAMELEN);
|
2003-11-12 02:54:47 +00:00
|
|
|
|
2002-07-03 09:27:24 +00:00
|
|
|
*mpp = mp;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1995-08-28 09:19:25 +00:00
|
|
|
/*
|
1999-11-01 23:51:00 +00:00
|
|
|
* Find and mount the root filesystem
|
1995-08-28 09:19:25 +00:00
|
|
|
*/
|
2002-03-08 10:33:11 +00:00
|
|
|
void
|
2002-07-03 08:52:37 +00:00
|
|
|
vfs_mountroot(void)
|
1995-08-28 09:19:25 +00:00
|
|
|
{
|
2002-04-17 13:06:36 +00:00
|
|
|
char *cp;
|
|
|
|
int i, error;
|
2002-10-25 18:44:42 +00:00
|
|
|
|
2003-11-12 02:54:47 +00:00
|
|
|
g_waitidle();
|
2002-10-25 18:44:42 +00:00
|
|
|
|
2003-11-12 02:54:47 +00:00
|
|
|
/*
|
1999-11-01 23:51:00 +00:00
|
|
|
* The root filesystem information is compiled in, and we are
|
|
|
|
* booted with instructions to use it.
|
|
|
|
*/
|
|
|
|
#ifdef ROOTDEVNAME
|
2003-11-12 02:54:47 +00:00
|
|
|
if ((boothowto & RB_DFLTROOT) &&
|
1999-11-01 23:51:00 +00:00
|
|
|
!vfs_mountroot_try(ROOTDEVNAME))
|
|
|
|
return;
|
1997-12-01 11:34:41 +00:00
|
|
|
#endif
|
2003-11-12 02:54:47 +00:00
|
|
|
/*
|
1999-11-01 23:51:00 +00:00
|
|
|
* We are booted with instructions to prompt for the root filesystem,
|
|
|
|
* or to use the compiled-in default when it doesn't exist.
|
1995-08-28 09:19:25 +00:00
|
|
|
*/
|
1999-11-01 23:51:00 +00:00
|
|
|
if (boothowto & (RB_DFLTROOT | RB_ASKNAME)) {
|
|
|
|
if (!vfs_mountroot_ask())
|
|
|
|
return;
|
1997-12-01 11:34:41 +00:00
|
|
|
}
|
1995-08-28 09:19:25 +00:00
|
|
|
|
1999-11-04 01:40:18 +00:00
|
|
|
/*
|
|
|
|
* We've been given the generic "use CDROM as root" flag. This is
|
|
|
|
* necessary because one media may be used in many different
|
|
|
|
* devices, so we need to search for them.
|
|
|
|
*/
|
|
|
|
if (boothowto & RB_CDROM) {
|
|
|
|
for (i = 0; cdrom_rootdevnames[i] != NULL; i++) {
|
|
|
|
if (!vfs_mountroot_try(cdrom_rootdevnames[i]))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-08-28 09:19:25 +00:00
|
|
|
/*
|
1999-11-01 23:51:00 +00:00
|
|
|
* Try to use the value read by the loader from /etc/fstab, or
|
2003-11-12 02:54:47 +00:00
|
|
|
* supplied via some other means. This is the preferred
|
1999-11-01 23:51:00 +00:00
|
|
|
* mechanism.
|
1999-09-19 06:24:21 +00:00
|
|
|
*/
|
2002-04-17 13:06:36 +00:00
|
|
|
if ((cp = getenv("vfs.root.mountfrom")) != NULL) {
|
|
|
|
error = vfs_mountroot_try(cp);
|
|
|
|
freeenv(cp);
|
|
|
|
if (!error)
|
|
|
|
return;
|
|
|
|
}
|
1999-11-01 23:51:00 +00:00
|
|
|
|
2003-11-12 02:54:47 +00:00
|
|
|
/*
|
1999-11-01 23:51:00 +00:00
|
|
|
* Try values that may have been computed by the machine-dependant
|
|
|
|
* legacy code.
|
|
|
|
*/
|
|
|
|
if (!vfs_mountroot_try(rootdevnames[0]))
|
|
|
|
return;
|
|
|
|
if (!vfs_mountroot_try(rootdevnames[1]))
|
|
|
|
return;
|
1999-09-19 06:24:21 +00:00
|
|
|
|
|
|
|
/*
|
1999-11-01 23:51:00 +00:00
|
|
|
* If we have a compiled-in default, and haven't already tried it, try
|
|
|
|
* it now.
|
1995-08-28 09:19:25 +00:00
|
|
|
*/
|
1999-11-01 23:51:00 +00:00
|
|
|
#ifdef ROOTDEVNAME
|
|
|
|
if (!(boothowto & RB_DFLTROOT))
|
1999-11-03 11:02:47 +00:00
|
|
|
if (!vfs_mountroot_try(ROOTDEVNAME))
|
|
|
|
return;
|
1999-11-01 23:51:00 +00:00
|
|
|
#endif
|
|
|
|
|
2003-11-12 02:54:47 +00:00
|
|
|
/*
|
1999-11-01 23:51:00 +00:00
|
|
|
* Everything so far has failed, prompt on the console if we haven't
|
|
|
|
* already tried that.
|
|
|
|
*/
|
|
|
|
if (!(boothowto & (RB_DFLTROOT | RB_ASKNAME)) && !vfs_mountroot_ask())
|
|
|
|
return;
|
|
|
|
panic("Root mount failed, startup aborted.");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mount (mountfrom) as the root filesystem.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
vfs_mountroot_try(char *mountfrom)
|
|
|
|
{
|
1999-11-03 11:02:47 +00:00
|
|
|
struct mount *mp;
|
1999-11-01 23:51:00 +00:00
|
|
|
char *vfsname, *path;
|
2002-10-21 20:09:59 +00:00
|
|
|
const char *devname;
|
1999-11-01 23:51:00 +00:00
|
|
|
int error;
|
1999-11-05 02:45:50 +00:00
|
|
|
char patt[32];
|
1999-12-12 16:34:43 +00:00
|
|
|
int s;
|
1999-11-01 23:51:00 +00:00
|
|
|
|
1999-11-06 07:43:22 +00:00
|
|
|
vfsname = NULL;
|
|
|
|
path = NULL;
|
|
|
|
mp = NULL;
|
|
|
|
error = EINVAL;
|
1999-11-01 23:51:00 +00:00
|
|
|
|
|
|
|
if (mountfrom == NULL)
|
1999-11-21 08:05:50 +00:00
|
|
|
return(error); /* don't complain */
|
1999-11-01 23:51:00 +00:00
|
|
|
|
1999-12-12 16:34:43 +00:00
|
|
|
s = splcam(); /* Overkill, but annoying without it */
|
1999-11-01 23:51:00 +00:00
|
|
|
printf("Mounting root from %s\n", mountfrom);
|
1999-12-12 16:34:43 +00:00
|
|
|
splx(s);
|
1999-11-01 23:51:00 +00:00
|
|
|
|
|
|
|
/* parse vfs name and path */
|
2003-02-19 05:47:46 +00:00
|
|
|
vfsname = malloc(MFSNAMELEN, M_MOUNT, M_WAITOK);
|
|
|
|
path = malloc(MNAMELEN, M_MOUNT, M_WAITOK);
|
1999-11-03 11:02:47 +00:00
|
|
|
vfsname[0] = path[0] = 0;
|
2003-11-12 17:09:12 +00:00
|
|
|
sprintf(patt, "%%%d[a-z0-9]:%%%ds", MFSNAMELEN, MNAMELEN);
|
1999-11-03 11:02:47 +00:00
|
|
|
if (sscanf(mountfrom, patt, vfsname, path) < 1)
|
1999-11-01 23:51:00 +00:00
|
|
|
goto done;
|
|
|
|
|
|
|
|
/* allocate a root mount */
|
1999-11-28 22:20:18 +00:00
|
|
|
error = vfs_rootmountalloc(vfsname, path[0] != 0 ? path : ROOTNAME,
|
|
|
|
&mp);
|
|
|
|
if (error != 0) {
|
1999-11-01 23:51:00 +00:00
|
|
|
printf("Can't allocate root mount for filesystem '%s': %d\n",
|
|
|
|
vfsname, error);
|
|
|
|
goto done;
|
1997-12-01 11:34:41 +00:00
|
|
|
}
|
1995-08-28 09:19:25 +00:00
|
|
|
|
1999-11-01 23:51:00 +00:00
|
|
|
/* do our best to set rootdev */
|
1999-11-03 11:02:47 +00:00
|
|
|
if ((path[0] != 0) && setrootbyname(path))
|
1999-11-01 23:51:00 +00:00
|
|
|
printf("setrootbyname failed\n");
|
1997-12-01 11:34:41 +00:00
|
|
|
|
1999-11-26 20:08:44 +00:00
|
|
|
/* If the root device is a type "memory disk", mount RW */
|
2002-10-21 20:09:59 +00:00
|
|
|
if (rootdev != NODEV && devsw(rootdev) != NULL) {
|
|
|
|
devname = devtoname(rootdev);
|
|
|
|
if (devname[0] == 'm' && devname[1] == 'd')
|
|
|
|
mp->mnt_flag &= ~MNT_RDONLY;
|
|
|
|
}
|
1999-11-26 20:08:44 +00:00
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
error = VFS_MOUNT(mp, NULL, NULL, NULL, curthread);
|
1999-11-01 23:51:00 +00:00
|
|
|
|
|
|
|
done:
|
1999-11-05 19:28:07 +00:00
|
|
|
if (vfsname != NULL)
|
|
|
|
free(vfsname, M_MOUNT);
|
|
|
|
if (path != NULL)
|
|
|
|
free(path, M_MOUNT);
|
1999-11-01 23:51:00 +00:00
|
|
|
if (error != 0) {
|
2003-11-12 02:54:47 +00:00
|
|
|
if (mp != NULL)
|
|
|
|
vfs_mount_destroy(mp, curthread);
|
1999-11-01 23:51:00 +00:00
|
|
|
printf("Root mount failed: %d\n", error);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* register with list of mounted filesystems */
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_lock(&mountlist_mtx);
|
1999-11-20 10:00:46 +00:00
|
|
|
TAILQ_INSERT_HEAD(&mountlist, mp, mnt_list);
|
Change and clean the mutex lock interface.
mtx_enter(lock, type) becomes:
mtx_lock(lock) for sleep locks (MTX_DEF-initialized locks)
mtx_lock_spin(lock) for spin locks (MTX_SPIN-initialized)
similarily, for releasing a lock, we now have:
mtx_unlock(lock) for MTX_DEF and mtx_unlock_spin(lock) for MTX_SPIN.
We change the caller interface for the two different types of locks
because the semantics are entirely different for each case, and this
makes it explicitly clear and, at the same time, it rids us of the
extra `type' argument.
The enter->lock and exit->unlock change has been made with the idea
that we're "locking data" and not "entering locked code" in mind.
Further, remove all additional "flags" previously passed to the
lock acquire/release routines with the exception of two:
MTX_QUIET and MTX_NOSWITCH
The functionality of these flags is preserved and they can be passed
to the lock/unlock routines by calling the corresponding wrappers:
mtx_{lock, unlock}_flags(lock, flag(s)) and
mtx_{lock, unlock}_spin_flags(lock, flag(s)) for MTX_DEF and MTX_SPIN
locks, respectively.
Re-inline some lock acq/rel code; in the sleep lock case, we only
inline the _obtain_lock()s in order to ensure that the inlined code
fits into a cache line. In the spin lock case, we inline recursion and
actually only perform a function call if we need to spin. This change
has been made with the idea that we generally tend to avoid spin locks
and that also the spin locks that we do have and are heavily used
(i.e. sched_lock) do recurse, and therefore in an effort to reduce
function call overhead for some architectures (such as alpha), we
inline recursion for this case.
Create a new malloc type for the witness code and retire from using
the M_DEV type. The new type is called M_WITNESS and is only declared
if WITNESS is enabled.
Begin cleaning up some machdep/mutex.h code - specifically updated the
"optimized" inlined code in alpha/mutex.h and wrote MTX_LOCK_SPIN
and MTX_UNLOCK_SPIN asm macros for the i386/mutex.h as we presently
need those.
Finally, caught up to the interface changes in all sys code.
Contributors: jake, jhb, jasone (in no particular order)
2001-02-09 06:11:45 +00:00
|
|
|
mtx_unlock(&mountlist_mtx);
|
1999-11-01 23:51:00 +00:00
|
|
|
|
2002-07-08 19:10:15 +00:00
|
|
|
/* sanity check system clock against root fs timestamp */
|
1999-11-01 23:51:00 +00:00
|
|
|
inittodr(mp->mnt_time);
|
2001-09-12 08:38:13 +00:00
|
|
|
vfs_unbusy(mp, curthread);
|
2002-07-08 19:10:15 +00:00
|
|
|
error = VFS_START(mp, 0, curthread);
|
1999-11-28 22:20:18 +00:00
|
|
|
}
|
1999-11-01 23:51:00 +00:00
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Spin prompting on the console for a suitable root filesystem
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
vfs_mountroot_ask(void)
|
|
|
|
{
|
|
|
|
char name[128];
|
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
printf("\nManual root filesystem specification:\n");
|
|
|
|
printf(" <fstype>:<device> Mount <device> using filesystem <fstype>\n");
|
2001-11-20 23:48:00 +00:00
|
|
|
#if defined(__i386__) || defined(__ia64__)
|
2001-11-24 01:34:12 +00:00
|
|
|
printf(" eg. ufs:da0s1a\n");
|
2001-11-20 23:48:00 +00:00
|
|
|
#else
|
2003-04-23 05:02:40 +00:00
|
|
|
printf(" eg. ufs:/dev/da0a\n");
|
2001-11-20 23:48:00 +00:00
|
|
|
#endif
|
1999-11-01 23:51:00 +00:00
|
|
|
printf(" ? List valid disk boot devices\n");
|
|
|
|
printf(" <empty line> Abort manual input\n");
|
2000-02-17 23:32:08 +00:00
|
|
|
printf("\nmountroot> ");
|
1999-11-01 23:51:00 +00:00
|
|
|
gets(name);
|
|
|
|
if (name[0] == 0)
|
|
|
|
return(1);
|
|
|
|
if (name[0] == '?') {
|
2003-06-07 15:46:53 +00:00
|
|
|
printf("\nList of GEOM managed disk devices:\n ");
|
|
|
|
g_dev_print();
|
1999-11-01 23:51:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!vfs_mountroot_try(name))
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
}
|
1995-08-28 09:19:25 +00:00
|
|
|
|
2002-03-05 15:38:49 +00:00
|
|
|
/*
|
|
|
|
* Local helper function for vfs_mountroot_ask.
|
|
|
|
*/
|
1999-11-01 23:51:00 +00:00
|
|
|
static void
|
|
|
|
gets(char *cp)
|
|
|
|
{
|
|
|
|
char *lp;
|
|
|
|
int c;
|
1995-08-28 09:19:25 +00:00
|
|
|
|
1999-11-01 23:51:00 +00:00
|
|
|
lp = cp;
|
|
|
|
for (;;) {
|
|
|
|
printf("%c", c = cngetc() & 0177);
|
|
|
|
switch (c) {
|
|
|
|
case -1:
|
|
|
|
case '\n':
|
|
|
|
case '\r':
|
|
|
|
*lp++ = '\0';
|
|
|
|
return;
|
|
|
|
case '\b':
|
|
|
|
case '\177':
|
|
|
|
if (lp > cp) {
|
|
|
|
printf(" \b");
|
|
|
|
lp--;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
case '#':
|
|
|
|
lp--;
|
|
|
|
if (lp < cp)
|
|
|
|
lp = cp;
|
|
|
|
continue;
|
|
|
|
case '@':
|
|
|
|
case 'u' & 037:
|
|
|
|
lp = cp;
|
|
|
|
printf("%c", '\n');
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
*lp++ = c;
|
|
|
|
}
|
|
|
|
}
|
1995-08-28 09:19:25 +00:00
|
|
|
}
|
1997-11-25 07:07:48 +00:00
|
|
|
|
1999-11-01 23:51:00 +00:00
|
|
|
/*
|
2000-03-20 16:28:35 +00:00
|
|
|
* Convert a given name to the dev_t of the disk-like device
|
|
|
|
* it refers to.
|
1999-11-01 23:51:00 +00:00
|
|
|
*/
|
2000-03-20 16:28:35 +00:00
|
|
|
dev_t
|
|
|
|
getdiskbyname(char *name) {
|
2000-08-24 15:36:55 +00:00
|
|
|
char *cp;
|
|
|
|
dev_t dev;
|
|
|
|
|
|
|
|
cp = name;
|
|
|
|
if (!bcmp(cp, "/dev/", 5))
|
|
|
|
cp += 5;
|
|
|
|
|
|
|
|
dev = NODEV;
|
2000-09-02 19:17:34 +00:00
|
|
|
EVENTHANDLER_INVOKE(dev_clone, cp, strlen(cp), &dev);
|
2000-08-24 15:36:55 +00:00
|
|
|
return (dev);
|
2000-03-20 16:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set rootdev to match (name), given that we expect it to
|
|
|
|
* refer to a disk-like device.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
setrootbyname(char *name)
|
|
|
|
{
|
|
|
|
dev_t diskdev;
|
|
|
|
|
|
|
|
diskdev = getdiskbyname(name);
|
|
|
|
if (diskdev != NODEV) {
|
|
|
|
rootdev = diskdev;
|
|
|
|
return (0);
|
1999-11-01 23:51:00 +00:00
|
|
|
}
|
2000-03-20 16:28:35 +00:00
|
|
|
|
|
|
|
return (1);
|
1999-11-01 23:51:00 +00:00
|
|
|
}
|
1997-11-25 07:07:48 +00:00
|
|
|
|
2002-03-05 15:38:49 +00:00
|
|
|
/* Show the dev_t for a disk specified by name */
|
2000-03-20 16:28:35 +00:00
|
|
|
#ifdef DDB
|
|
|
|
DB_SHOW_COMMAND(disk, db_getdiskbyname)
|
|
|
|
{
|
|
|
|
dev_t dev;
|
|
|
|
|
|
|
|
if (modif[0] == '\0') {
|
|
|
|
db_error("usage: show disk/devicename");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dev = getdiskbyname(modif);
|
|
|
|
if (dev != NODEV)
|
|
|
|
db_printf("dev_t = %p\n", dev);
|
|
|
|
else
|
|
|
|
db_printf("No disk device matched.\n");
|
|
|
|
}
|
|
|
|
#endif
|
2002-07-02 17:09:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get a mount option by its name.
|
|
|
|
*
|
|
|
|
* Return 0 if the option was found, ENOENT otherwise.
|
|
|
|
* If len is non-NULL it will be filled with the length
|
|
|
|
* of the option. If buf is non-NULL, it will be filled
|
|
|
|
* with the address of the option.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
vfs_getopt(opts, name, buf, len)
|
|
|
|
struct vfsoptlist *opts;
|
|
|
|
const char *name;
|
|
|
|
void **buf;
|
|
|
|
int *len;
|
|
|
|
{
|
|
|
|
struct vfsopt *opt;
|
|
|
|
|
2003-02-14 13:30:25 +00:00
|
|
|
KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
|
2003-02-14 13:18:51 +00:00
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
TAILQ_FOREACH(opt, opts, link) {
|
|
|
|
if (strcmp(name, opt->name) == 0) {
|
|
|
|
if (len != NULL)
|
|
|
|
*len = opt->len;
|
|
|
|
if (buf != NULL)
|
|
|
|
*buf = opt->value;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (ENOENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find and copy a mount option.
|
|
|
|
*
|
|
|
|
* The size of the buffer has to be specified
|
|
|
|
* in len, if it is not the same length as the
|
|
|
|
* mount option, EINVAL is returned.
|
|
|
|
* Returns ENOENT if the option is not found.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
vfs_copyopt(opts, name, dest, len)
|
|
|
|
struct vfsoptlist *opts;
|
|
|
|
const char *name;
|
|
|
|
void *dest;
|
|
|
|
int len;
|
|
|
|
{
|
|
|
|
struct vfsopt *opt;
|
|
|
|
|
2003-02-14 13:30:25 +00:00
|
|
|
KASSERT(opts != NULL, ("vfs_copyopt: caller passed 'opts' as NULL"));
|
2003-02-14 13:18:51 +00:00
|
|
|
|
2002-07-02 17:09:22 +00:00
|
|
|
TAILQ_FOREACH(opt, opts, link) {
|
|
|
|
if (strcmp(name, opt->name) == 0) {
|
|
|
|
if (len != opt->len)
|
|
|
|
return (EINVAL);
|
|
|
|
bcopy(opt->value, dest, opt->len);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (ENOENT);
|
|
|
|
}
|