Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git] / sys / kern / vfs_mount.c
bloba3f440282755b7ec5ae815666af2b38d93833ca3
1 /*-
2 * Copyright (c) 1999-2004 Poul-Henning Kamp
3 * Copyright (c) 1999 Michael Smith
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 * All or some portions of this file are derived from material licensed
8 * to the University of California by American Telephone and Telegraph
9 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 * the permission of UNIX System Laboratories, Inc.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
40 #include <sys/param.h>
41 #include <sys/conf.h>
42 #include <sys/fcntl.h>
43 #include <sys/jail.h>
44 #include <sys/kernel.h>
45 #include <sys/libkern.h>
46 #include <sys/malloc.h>
47 #include <sys/mount.h>
48 #include <sys/mutex.h>
49 #include <sys/namei.h>
50 #include <sys/priv.h>
51 #include <sys/proc.h>
52 #include <sys/filedesc.h>
53 #include <sys/reboot.h>
54 #include <sys/syscallsubr.h>
55 #include <sys/sysproto.h>
56 #include <sys/sx.h>
57 #include <sys/sysctl.h>
58 #include <sys/sysent.h>
59 #include <sys/systm.h>
60 #include <sys/vnode.h>
61 #include <vm/uma.h>
63 #include <geom/geom.h>
65 #include <machine/stdarg.h>
67 #include <security/audit/audit.h>
68 #include <security/mac/mac_framework.h>
70 #include "opt_rootdevname.h"
71 #include "opt_mac.h"
73 #define ROOTNAME "root_device"
74 #define VFS_MOUNTARG_SIZE_MAX (1024 * 64)
76 static int vfs_domount(struct thread *td, const char *fstype,
77 char *fspath, int fsflags, void *fsdata);
78 static int vfs_mountroot_ask(void);
79 static int vfs_mountroot_try(const char *mountfrom);
80 static int vfs_donmount(struct thread *td, int fsflags,
81 struct uio *fsoptions);
82 static void free_mntarg(struct mntarg *ma);
83 static int vfs_getopt_pos(struct vfsoptlist *opts, const char *name);
85 static int usermount = 0;
86 SYSCTL_INT(_vfs, OID_AUTO, usermount, CTLFLAG_RW, &usermount, 0,
87 "Unprivileged users may mount and unmount file systems");
89 MALLOC_DEFINE(M_MOUNT, "mount", "vfs mount structure");
90 MALLOC_DEFINE(M_VNODE_MARKER, "vnodemarker", "vnode marker");
91 static uma_zone_t mount_zone;
93 /* List of mounted filesystems. */
94 struct mntlist mountlist = TAILQ_HEAD_INITIALIZER(mountlist);
96 /* For any iteration/modification of mountlist */
97 struct mtx mountlist_mtx;
98 MTX_SYSINIT(mountlist, &mountlist_mtx, "mountlist", MTX_DEF);
100 TAILQ_HEAD(vfsoptlist, vfsopt);
101 struct vfsopt {
102 TAILQ_ENTRY(vfsopt) link;
103 char *name;
104 void *value;
105 int len;
109 * The vnode of the system's root (/ in the filesystem, without chroot
110 * active.)
112 struct vnode *rootvnode;
115 * The root filesystem is detailed in the kernel environment variable
116 * vfs.root.mountfrom, which is expected to be in the general format
118 * <vfsname>:[<path>]
119 * vfsname := the name of a VFS known to the kernel and capable
120 * of being mounted as root
121 * path := disk device name or other data used by the filesystem
122 * to locate its physical store
126 * Global opts, taken by all filesystems
128 static const char *global_opts[] = {
129 "errmsg",
130 "fstype",
131 "fspath",
132 "ro",
133 "rw",
134 "nosuid",
135 "noexec",
136 NULL
140 * The root specifiers we will try if RB_CDROM is specified.
142 static char *cdrom_rootdevnames[] = {
143 "cd9660:cd0",
144 "cd9660:acd0",
145 NULL
148 /* legacy find-root code */
149 char *rootdevnames[2] = {NULL, NULL};
150 #ifndef ROOTDEVNAME
151 # define ROOTDEVNAME NULL
152 #endif
153 static const char *ctrootdevname = ROOTDEVNAME;
156 * ---------------------------------------------------------------------
157 * Functions for building and sanitizing the mount options
160 /* Remove one mount option. */
161 static void
162 vfs_freeopt(struct vfsoptlist *opts, struct vfsopt *opt)
165 TAILQ_REMOVE(opts, opt, link);
166 free(opt->name, M_MOUNT);
167 if (opt->value != NULL)
168 free(opt->value, M_MOUNT);
169 #ifdef INVARIANTS
170 else if (opt->len != 0)
171 panic("%s: mount option with NULL value but length != 0",
172 __func__);
173 #endif
174 free(opt, M_MOUNT);
177 /* Release all resources related to the mount options. */
178 void
179 vfs_freeopts(struct vfsoptlist *opts)
181 struct vfsopt *opt;
183 while (!TAILQ_EMPTY(opts)) {
184 opt = TAILQ_FIRST(opts);
185 vfs_freeopt(opts, opt);
187 free(opts, M_MOUNT);
190 void
191 vfs_deleteopt(struct vfsoptlist *opts, const char *name)
193 struct vfsopt *opt, *temp;
195 if (opts == NULL)
196 return;
197 TAILQ_FOREACH_SAFE(opt, opts, link, temp) {
198 if (strcmp(opt->name, name) == 0)
199 vfs_freeopt(opts, opt);
204 * Check if options are equal (with or without the "no" prefix).
206 static int
207 vfs_equalopts(const char *opt1, const char *opt2)
210 /* "opt" vs. "opt" or "noopt" vs. "noopt" */
211 if (strcmp(opt1, opt2) == 0)
212 return (1);
213 /* "noopt" vs. "opt" */
214 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0)
215 return (1);
216 /* "opt" vs. "noopt" */
217 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0)
218 return (1);
219 return (0);
223 * If a mount option is specified several times,
224 * (with or without the "no" prefix) only keep
225 * the last occurence of it.
227 static void
228 vfs_sanitizeopts(struct vfsoptlist *opts)
230 struct vfsopt *opt, *opt2, *tmp;
232 TAILQ_FOREACH_REVERSE(opt, opts, vfsoptlist, link) {
233 opt2 = TAILQ_PREV(opt, vfsoptlist, link);
234 while (opt2 != NULL) {
235 if (vfs_equalopts(opt->name, opt2->name)) {
236 tmp = TAILQ_PREV(opt2, vfsoptlist, link);
237 vfs_freeopt(opts, opt2);
238 opt2 = tmp;
239 } else {
240 opt2 = TAILQ_PREV(opt2, vfsoptlist, link);
247 * Build a linked list of mount options from a struct uio.
249 static int
250 vfs_buildopts(struct uio *auio, struct vfsoptlist **options)
252 struct vfsoptlist *opts;
253 struct vfsopt *opt;
254 size_t memused;
255 unsigned int i, iovcnt;
256 int error, namelen, optlen;
258 opts = malloc(sizeof(struct vfsoptlist), M_MOUNT, M_WAITOK);
259 TAILQ_INIT(opts);
260 memused = 0;
261 iovcnt = auio->uio_iovcnt;
262 for (i = 0; i < iovcnt; i += 2) {
263 opt = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
264 namelen = auio->uio_iov[i].iov_len;
265 optlen = auio->uio_iov[i + 1].iov_len;
266 opt->name = malloc(namelen, M_MOUNT, M_WAITOK);
267 opt->value = NULL;
268 opt->len = 0;
271 * Do this early, so jumps to "bad" will free the current
272 * option.
274 TAILQ_INSERT_TAIL(opts, opt, link);
275 memused += sizeof(struct vfsopt) + optlen + namelen;
278 * Avoid consuming too much memory, and attempts to overflow
279 * memused.
281 if (memused > VFS_MOUNTARG_SIZE_MAX ||
282 optlen > VFS_MOUNTARG_SIZE_MAX ||
283 namelen > VFS_MOUNTARG_SIZE_MAX) {
284 error = EINVAL;
285 goto bad;
288 if (auio->uio_segflg == UIO_SYSSPACE) {
289 bcopy(auio->uio_iov[i].iov_base, opt->name, namelen);
290 } else {
291 error = copyin(auio->uio_iov[i].iov_base, opt->name,
292 namelen);
293 if (error)
294 goto bad;
296 /* Ensure names are null-terminated strings. */
297 if (opt->name[namelen - 1] != '\0') {
298 error = EINVAL;
299 goto bad;
301 if (optlen != 0) {
302 opt->len = optlen;
303 opt->value = malloc(optlen, M_MOUNT, M_WAITOK);
304 if (auio->uio_segflg == UIO_SYSSPACE) {
305 bcopy(auio->uio_iov[i + 1].iov_base, opt->value,
306 optlen);
307 } else {
308 error = copyin(auio->uio_iov[i + 1].iov_base,
309 opt->value, optlen);
310 if (error)
311 goto bad;
315 vfs_sanitizeopts(opts);
316 *options = opts;
317 return (0);
318 bad:
319 vfs_freeopts(opts);
320 return (error);
324 * Merge the old mount options with the new ones passed
325 * in the MNT_UPDATE case.
327 * XXX This function will keep a "nofoo" option in the
328 * new options if there is no matching "foo" option
329 * to be cancelled in the old options. This is a bug
330 * if the option's canonical name is "foo". E.g., "noro"
331 * shouldn't end up in the mount point's active options,
332 * but it can.
334 static void
335 vfs_mergeopts(struct vfsoptlist *toopts, struct vfsoptlist *opts)
337 struct vfsopt *opt, *opt2, *new;
339 TAILQ_FOREACH(opt, opts, link) {
341 * Check that this option hasn't been redefined
342 * nor cancelled with a "no" mount option.
344 opt2 = TAILQ_FIRST(toopts);
345 while (opt2 != NULL) {
346 if (strcmp(opt2->name, opt->name) == 0)
347 goto next;
348 if (strncmp(opt2->name, "no", 2) == 0 &&
349 strcmp(opt2->name + 2, opt->name) == 0) {
350 vfs_freeopt(toopts, opt2);
351 goto next;
353 opt2 = TAILQ_NEXT(opt2, link);
355 /* We want this option, duplicate it. */
356 new = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
357 new->name = malloc(strlen(opt->name) + 1, M_MOUNT, M_WAITOK);
358 strcpy(new->name, opt->name);
359 if (opt->len != 0) {
360 new->value = malloc(opt->len, M_MOUNT, M_WAITOK);
361 bcopy(opt->value, new->value, opt->len);
362 } else {
363 new->value = NULL;
365 new->len = opt->len;
366 TAILQ_INSERT_TAIL(toopts, new, link);
367 next:
368 continue;
373 * Mount a filesystem.
376 nmount(td, uap)
377 struct thread *td;
378 struct nmount_args /* {
379 struct iovec *iovp;
380 unsigned int iovcnt;
381 int flags;
382 } */ *uap;
384 struct uio *auio;
385 struct iovec *iov;
386 unsigned int i;
387 int error;
388 u_int iovcnt;
390 AUDIT_ARG(fflags, uap->flags);
393 * Filter out MNT_ROOTFS. We do not want clients of nmount() in
394 * userspace to set this flag, but we must filter it out if we want
395 * MNT_UPDATE on the root file system to work.
396 * MNT_ROOTFS should only be set in the kernel in vfs_mountroot_try().
398 uap->flags &= ~MNT_ROOTFS;
400 iovcnt = uap->iovcnt;
402 * Check that we have an even number of iovec's
403 * and that we have at least two options.
405 if ((iovcnt & 1) || (iovcnt < 4))
406 return (EINVAL);
408 error = copyinuio(uap->iovp, iovcnt, &auio);
409 if (error)
410 return (error);
411 iov = auio->uio_iov;
412 for (i = 0; i < iovcnt; i++) {
413 if (iov->iov_len > MMAXOPTIONLEN) {
414 free(auio, M_IOV);
415 return (EINVAL);
417 iov++;
419 error = vfs_donmount(td, uap->flags, auio);
421 free(auio, M_IOV);
422 return (error);
426 * ---------------------------------------------------------------------
427 * Various utility functions
430 void
431 vfs_ref(struct mount *mp)
434 MNT_ILOCK(mp);
435 MNT_REF(mp);
436 MNT_IUNLOCK(mp);
439 void
440 vfs_rel(struct mount *mp)
443 MNT_ILOCK(mp);
444 MNT_REL(mp);
445 MNT_IUNLOCK(mp);
448 static int
449 mount_init(void *mem, int size, int flags)
451 struct mount *mp;
453 mp = (struct mount *)mem;
454 mtx_init(&mp->mnt_mtx, "struct mount mtx", NULL, MTX_DEF);
455 lockinit(&mp->mnt_lock, PVFS, "vfslock", 0, 0);
456 lockinit(&mp->mnt_explock, PVFS, "explock", 0, 0);
457 return (0);
460 static void
461 mount_fini(void *mem, int size)
463 struct mount *mp;
465 mp = (struct mount *)mem;
466 lockdestroy(&mp->mnt_explock);
467 lockdestroy(&mp->mnt_lock);
468 mtx_destroy(&mp->mnt_mtx);
472 * Allocate and initialize the mount point struct.
474 struct mount *
475 vfs_mount_alloc(struct vnode *vp, struct vfsconf *vfsp, const char *fspath,
476 struct ucred *cred)
478 struct mount *mp;
480 mp = uma_zalloc(mount_zone, M_WAITOK);
481 bzero(&mp->mnt_startzero,
482 __rangeof(struct mount, mnt_startzero, mnt_endzero));
483 TAILQ_INIT(&mp->mnt_nvnodelist);
484 mp->mnt_nvnodelistsize = 0;
485 mp->mnt_ref = 0;
486 (void) vfs_busy(mp, LK_NOWAIT, 0);
487 mp->mnt_op = vfsp->vfc_vfsops;
488 mp->mnt_vfc = vfsp;
489 vfsp->vfc_refcount++; /* XXX Unlocked */
490 mp->mnt_stat.f_type = vfsp->vfc_typenum;
491 mp->mnt_gen++;
492 strlcpy(mp->mnt_stat.f_fstypename, vfsp->vfc_name, MFSNAMELEN);
493 mp->mnt_vnodecovered = vp;
494 mp->mnt_cred = crdup(cred);
495 mp->mnt_stat.f_owner = cred->cr_uid;
496 strlcpy(mp->mnt_stat.f_mntonname, fspath, MNAMELEN);
497 mp->mnt_iosize_max = DFLTPHYS;
498 #ifdef MAC
499 mac_mount_init(mp);
500 mac_mount_create(cred, mp);
501 #endif
502 arc4rand(&mp->mnt_hashseed, sizeof mp->mnt_hashseed, 0);
503 return (mp);
507 * Destroy the mount struct previously allocated by vfs_mount_alloc().
509 void
510 vfs_mount_destroy(struct mount *mp)
512 int i;
514 MNT_ILOCK(mp);
515 for (i = 0; mp->mnt_ref && i < 3; i++)
516 msleep(mp, MNT_MTX(mp), PVFS, "mntref", hz);
518 * This will always cause a 3 second delay in rebooting due to
519 * refs on the root mountpoint that never go away. Most of these
520 * are held by init which never exits.
522 if (i == 3 && (!rebooting || bootverbose))
523 printf("Mount point %s had %d dangling refs\n",
524 mp->mnt_stat.f_mntonname, mp->mnt_ref);
525 if (mp->mnt_holdcnt != 0) {
526 printf("Waiting for mount point to be unheld\n");
527 while (mp->mnt_holdcnt != 0) {
528 mp->mnt_holdcntwaiters++;
529 msleep(&mp->mnt_holdcnt, MNT_MTX(mp),
530 PZERO, "mntdestroy", 0);
531 mp->mnt_holdcntwaiters--;
533 printf("mount point unheld\n");
535 if (mp->mnt_writeopcount > 0) {
536 printf("Waiting for mount point write ops\n");
537 while (mp->mnt_writeopcount > 0) {
538 mp->mnt_kern_flag |= MNTK_SUSPEND;
539 msleep(&mp->mnt_writeopcount,
540 MNT_MTX(mp),
541 PZERO, "mntdestroy2", 0);
543 printf("mount point write ops completed\n");
545 if (mp->mnt_secondary_writes > 0) {
546 printf("Waiting for mount point secondary write ops\n");
547 while (mp->mnt_secondary_writes > 0) {
548 mp->mnt_kern_flag |= MNTK_SUSPEND;
549 msleep(&mp->mnt_secondary_writes,
550 MNT_MTX(mp),
551 PZERO, "mntdestroy3", 0);
553 printf("mount point secondary write ops completed\n");
555 MNT_IUNLOCK(mp);
556 mp->mnt_vfc->vfc_refcount--;
557 if (!TAILQ_EMPTY(&mp->mnt_nvnodelist)) {
558 struct vnode *vp;
560 TAILQ_FOREACH(vp, &mp->mnt_nvnodelist, v_nmntvnodes)
561 vprint("", vp);
562 panic("unmount: dangling vnode");
564 MNT_ILOCK(mp);
565 if (mp->mnt_kern_flag & MNTK_MWAIT)
566 wakeup(mp);
567 if (mp->mnt_writeopcount != 0)
568 panic("vfs_mount_destroy: nonzero writeopcount");
569 if (mp->mnt_secondary_writes != 0)
570 panic("vfs_mount_destroy: nonzero secondary_writes");
571 if (mp->mnt_nvnodelistsize != 0)
572 panic("vfs_mount_destroy: nonzero nvnodelistsize");
573 mp->mnt_writeopcount = -1000;
574 mp->mnt_nvnodelistsize = -1000;
575 mp->mnt_secondary_writes = -1000;
576 MNT_IUNLOCK(mp);
577 #ifdef MAC
578 mac_mount_destroy(mp);
579 #endif
580 if (mp->mnt_opt != NULL)
581 vfs_freeopts(mp->mnt_opt);
582 crfree(mp->mnt_cred);
583 uma_zfree(mount_zone, mp);
586 static int
587 vfs_donmount(struct thread *td, int fsflags, struct uio *fsoptions)
589 struct vfsoptlist *optlist;
590 struct vfsopt *opt, *noro_opt, *tmp_opt;
591 char *fstype, *fspath, *errmsg;
592 int error, fstypelen, fspathlen, errmsg_len, errmsg_pos;
593 int has_rw, has_noro;
595 errmsg = NULL;
596 errmsg_len = 0;
597 errmsg_pos = -1;
598 has_rw = 0;
599 has_noro = 0;
601 error = vfs_buildopts(fsoptions, &optlist);
602 if (error)
603 return (error);
605 if (vfs_getopt(optlist, "errmsg", (void **)&errmsg, &errmsg_len) == 0)
606 errmsg_pos = vfs_getopt_pos(optlist, "errmsg");
609 * We need these two options before the others,
610 * and they are mandatory for any filesystem.
611 * Ensure they are NUL terminated as well.
613 fstypelen = 0;
614 error = vfs_getopt(optlist, "fstype", (void **)&fstype, &fstypelen);
615 if (error || fstype[fstypelen - 1] != '\0') {
616 error = EINVAL;
617 if (errmsg != NULL)
618 strncpy(errmsg, "Invalid fstype", errmsg_len);
619 goto bail;
621 fspathlen = 0;
622 error = vfs_getopt(optlist, "fspath", (void **)&fspath, &fspathlen);
623 if (error || fspath[fspathlen - 1] != '\0') {
624 error = EINVAL;
625 if (errmsg != NULL)
626 strncpy(errmsg, "Invalid fspath", errmsg_len);
627 goto bail;
631 * We need to see if we have the "update" option
632 * before we call vfs_domount(), since vfs_domount() has special
633 * logic based on MNT_UPDATE. This is very important
634 * when we want to update the root filesystem.
636 TAILQ_FOREACH_SAFE(opt, optlist, link, tmp_opt) {
637 if (strcmp(opt->name, "update") == 0) {
638 fsflags |= MNT_UPDATE;
639 vfs_freeopt(optlist, opt);
641 else if (strcmp(opt->name, "async") == 0)
642 fsflags |= MNT_ASYNC;
643 else if (strcmp(opt->name, "force") == 0) {
644 fsflags |= MNT_FORCE;
645 vfs_freeopt(optlist, opt);
647 else if (strcmp(opt->name, "reload") == 0) {
648 fsflags |= MNT_RELOAD;
649 vfs_freeopt(optlist, opt);
651 else if (strcmp(opt->name, "multilabel") == 0)
652 fsflags |= MNT_MULTILABEL;
653 else if (strcmp(opt->name, "noasync") == 0)
654 fsflags &= ~MNT_ASYNC;
655 else if (strcmp(opt->name, "noatime") == 0)
656 fsflags |= MNT_NOATIME;
657 else if (strcmp(opt->name, "atime") == 0) {
658 free(opt->name, M_MOUNT);
659 opt->name = strdup("nonoatime", M_MOUNT);
661 else if (strcmp(opt->name, "noclusterr") == 0)
662 fsflags |= MNT_NOCLUSTERR;
663 else if (strcmp(opt->name, "clusterr") == 0) {
664 free(opt->name, M_MOUNT);
665 opt->name = strdup("nonoclusterr", M_MOUNT);
667 else if (strcmp(opt->name, "noclusterw") == 0)
668 fsflags |= MNT_NOCLUSTERW;
669 else if (strcmp(opt->name, "clusterw") == 0) {
670 free(opt->name, M_MOUNT);
671 opt->name = strdup("nonoclusterw", M_MOUNT);
673 else if (strcmp(opt->name, "noexec") == 0)
674 fsflags |= MNT_NOEXEC;
675 else if (strcmp(opt->name, "exec") == 0) {
676 free(opt->name, M_MOUNT);
677 opt->name = strdup("nonoexec", M_MOUNT);
679 else if (strcmp(opt->name, "nosuid") == 0)
680 fsflags |= MNT_NOSUID;
681 else if (strcmp(opt->name, "suid") == 0) {
682 free(opt->name, M_MOUNT);
683 opt->name = strdup("nonosuid", M_MOUNT);
685 else if (strcmp(opt->name, "nosymfollow") == 0)
686 fsflags |= MNT_NOSYMFOLLOW;
687 else if (strcmp(opt->name, "symfollow") == 0) {
688 free(opt->name, M_MOUNT);
689 opt->name = strdup("nonosymfollow", M_MOUNT);
691 else if (strcmp(opt->name, "noro") == 0) {
692 fsflags &= ~MNT_RDONLY;
693 has_noro = 1;
695 else if (strcmp(opt->name, "rw") == 0) {
696 fsflags &= ~MNT_RDONLY;
697 has_rw = 1;
699 else if (strcmp(opt->name, "ro") == 0)
700 fsflags |= MNT_RDONLY;
701 else if (strcmp(opt->name, "rdonly") == 0) {
702 free(opt->name, M_MOUNT);
703 opt->name = strdup("ro", M_MOUNT);
704 fsflags |= MNT_RDONLY;
706 else if (strcmp(opt->name, "suiddir") == 0)
707 fsflags |= MNT_SUIDDIR;
708 else if (strcmp(opt->name, "sync") == 0)
709 fsflags |= MNT_SYNCHRONOUS;
710 else if (strcmp(opt->name, "union") == 0)
711 fsflags |= MNT_UNION;
715 * If "rw" was specified as a mount option, and we
716 * are trying to update a mount-point from "ro" to "rw",
717 * we need a mount option "noro", since in vfs_mergeopts(),
718 * "noro" will cancel "ro", but "rw" will not do anything.
720 if (has_rw && !has_noro) {
721 noro_opt = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
722 noro_opt->name = strdup("noro", M_MOUNT);
723 noro_opt->value = NULL;
724 noro_opt->len = 0;
725 TAILQ_INSERT_TAIL(optlist, noro_opt, link);
729 * Be ultra-paranoid about making sure the type and fspath
730 * variables will fit in our mp buffers, including the
731 * terminating NUL.
733 if (fstypelen >= MFSNAMELEN - 1 || fspathlen >= MNAMELEN - 1) {
734 error = ENAMETOOLONG;
735 goto bail;
738 mtx_lock(&Giant);
739 error = vfs_domount(td, fstype, fspath, fsflags, optlist);
740 mtx_unlock(&Giant);
741 bail:
742 /* copyout the errmsg */
743 if (errmsg_pos != -1 && ((2 * errmsg_pos + 1) < fsoptions->uio_iovcnt)
744 && errmsg_len > 0 && errmsg != NULL) {
745 if (fsoptions->uio_segflg == UIO_SYSSPACE) {
746 bcopy(errmsg,
747 fsoptions->uio_iov[2 * errmsg_pos + 1].iov_base,
748 fsoptions->uio_iov[2 * errmsg_pos + 1].iov_len);
749 } else {
750 copyout(errmsg,
751 fsoptions->uio_iov[2 * errmsg_pos + 1].iov_base,
752 fsoptions->uio_iov[2 * errmsg_pos + 1].iov_len);
756 if (error != 0)
757 vfs_freeopts(optlist);
758 return (error);
762 * Old mount API.
764 #ifndef _SYS_SYSPROTO_H_
765 struct mount_args {
766 char *type;
767 char *path;
768 int flags;
769 caddr_t data;
771 #endif
772 /* ARGSUSED */
774 mount(td, uap)
775 struct thread *td;
776 struct mount_args /* {
777 char *type;
778 char *path;
779 int flags;
780 caddr_t data;
781 } */ *uap;
783 char *fstype;
784 struct vfsconf *vfsp = NULL;
785 struct mntarg *ma = NULL;
786 int error;
788 AUDIT_ARG(fflags, uap->flags);
791 * Filter out MNT_ROOTFS. We do not want clients of mount() in
792 * userspace to set this flag, but we must filter it out if we want
793 * MNT_UPDATE on the root file system to work.
794 * MNT_ROOTFS should only be set in the kernel in vfs_mountroot_try().
796 uap->flags &= ~MNT_ROOTFS;
798 fstype = malloc(MFSNAMELEN, M_TEMP, M_WAITOK);
799 error = copyinstr(uap->type, fstype, MFSNAMELEN, NULL);
800 if (error) {
801 free(fstype, M_TEMP);
802 return (error);
805 AUDIT_ARG(text, fstype);
806 mtx_lock(&Giant);
807 vfsp = vfs_byname_kld(fstype, td, &error);
808 free(fstype, M_TEMP);
809 if (vfsp == NULL) {
810 mtx_unlock(&Giant);
811 return (ENOENT);
813 if (vfsp->vfc_vfsops->vfs_cmount == NULL) {
814 mtx_unlock(&Giant);
815 return (EOPNOTSUPP);
818 ma = mount_argsu(ma, "fstype", uap->type, MNAMELEN);
819 ma = mount_argsu(ma, "fspath", uap->path, MNAMELEN);
820 ma = mount_argb(ma, uap->flags & MNT_RDONLY, "noro");
821 ma = mount_argb(ma, !(uap->flags & MNT_NOSUID), "nosuid");
822 ma = mount_argb(ma, !(uap->flags & MNT_NOEXEC), "noexec");
824 error = vfsp->vfc_vfsops->vfs_cmount(ma, uap->data, uap->flags, td);
825 mtx_unlock(&Giant);
826 return (error);
831 * vfs_domount(): actually attempt a filesystem mount.
833 static int
834 vfs_domount(
835 struct thread *td, /* Calling thread. */
836 const char *fstype, /* Filesystem type. */
837 char *fspath, /* Mount path. */
838 int fsflags, /* Flags common to all filesystems. */
839 void *fsdata /* Options local to the filesystem. */
842 struct vnode *vp;
843 struct mount *mp;
844 struct vfsconf *vfsp;
845 struct export_args export;
846 int error, flag = 0;
847 struct vattr va;
848 struct nameidata nd;
850 mtx_assert(&Giant, MA_OWNED);
852 * Be ultra-paranoid about making sure the type and fspath
853 * variables will fit in our mp buffers, including the
854 * terminating NUL.
856 if (strlen(fstype) >= MFSNAMELEN || strlen(fspath) >= MNAMELEN)
857 return (ENAMETOOLONG);
859 if (jailed(td->td_ucred) || usermount == 0) {
860 if ((error = priv_check(td, PRIV_VFS_MOUNT)) != 0)
861 return (error);
865 * Do not allow NFS export or MNT_SUIDDIR by unprivileged users.
867 if (fsflags & MNT_EXPORTED) {
868 error = priv_check(td, PRIV_VFS_MOUNT_EXPORTED);
869 if (error)
870 return (error);
872 if (fsflags & MNT_SUIDDIR) {
873 error = priv_check(td, PRIV_VFS_MOUNT_SUIDDIR);
874 if (error)
875 return (error);
878 * Silently enforce MNT_NOSUID and MNT_USER for unprivileged users.
880 if ((fsflags & (MNT_NOSUID | MNT_USER)) != (MNT_NOSUID | MNT_USER)) {
881 if (priv_check(td, PRIV_VFS_MOUNT_NONUSER) != 0)
882 fsflags |= MNT_NOSUID | MNT_USER;
885 /* Load KLDs before we lock the covered vnode to avoid reversals. */
886 vfsp = NULL;
887 if ((fsflags & MNT_UPDATE) == 0) {
888 /* Don't try to load KLDs if we're mounting the root. */
889 if (fsflags & MNT_ROOTFS)
890 vfsp = vfs_byname(fstype);
891 else
892 vfsp = vfs_byname_kld(fstype, td, &error);
893 if (vfsp == NULL)
894 return (ENODEV);
895 if (jailed(td->td_ucred) && !(vfsp->vfc_flags & VFCF_JAIL))
896 return (EPERM);
899 * Get vnode to be covered
901 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | AUDITVNODE1, UIO_SYSSPACE,
902 fspath, td);
903 if ((error = namei(&nd)) != 0)
904 return (error);
905 NDFREE(&nd, NDF_ONLY_PNBUF);
906 vp = nd.ni_vp;
907 if (fsflags & MNT_UPDATE) {
908 if ((vp->v_vflag & VV_ROOT) == 0) {
909 vput(vp);
910 return (EINVAL);
912 mp = vp->v_mount;
913 MNT_ILOCK(mp);
914 flag = mp->mnt_flag;
916 * We only allow the filesystem to be reloaded if it
917 * is currently mounted read-only.
919 if ((fsflags & MNT_RELOAD) &&
920 ((mp->mnt_flag & MNT_RDONLY) == 0)) {
921 MNT_IUNLOCK(mp);
922 vput(vp);
923 return (EOPNOTSUPP); /* Needs translation */
925 MNT_IUNLOCK(mp);
927 * Only privileged root, or (if MNT_USER is set) the user that
928 * did the original mount is permitted to update it.
930 error = vfs_suser(mp, td);
931 if (error) {
932 vput(vp);
933 return (error);
935 if (vfs_busy(mp, LK_NOWAIT, 0)) {
936 vput(vp);
937 return (EBUSY);
939 VI_LOCK(vp);
940 if ((vp->v_iflag & VI_MOUNT) != 0 ||
941 vp->v_mountedhere != NULL) {
942 VI_UNLOCK(vp);
943 vfs_unbusy(mp);
944 vput(vp);
945 return (EBUSY);
947 vp->v_iflag |= VI_MOUNT;
948 VI_UNLOCK(vp);
949 MNT_ILOCK(mp);
950 mp->mnt_flag |= fsflags &
951 (MNT_RELOAD | MNT_FORCE | MNT_UPDATE | MNT_SNAPSHOT | MNT_ROOTFS);
952 MNT_IUNLOCK(mp);
953 VOP_UNLOCK(vp, 0);
954 mp->mnt_optnew = fsdata;
955 vfs_mergeopts(mp->mnt_optnew, mp->mnt_opt);
956 } else {
958 * If the user is not root, ensure that they own the directory
959 * onto which we are attempting to mount.
961 error = VOP_GETATTR(vp, &va, td->td_ucred);
962 if (error) {
963 vput(vp);
964 return (error);
966 if (va.va_uid != td->td_ucred->cr_uid) {
967 error = priv_check_cred(td->td_ucred, PRIV_VFS_ADMIN,
969 if (error) {
970 vput(vp);
971 return (error);
974 error = vinvalbuf(vp, V_SAVE, td, 0, 0);
975 if (error != 0) {
976 vput(vp);
977 return (error);
979 if (vp->v_type != VDIR) {
980 vput(vp);
981 return (ENOTDIR);
983 VI_LOCK(vp);
984 if ((vp->v_iflag & VI_MOUNT) != 0 ||
985 vp->v_mountedhere != NULL) {
986 VI_UNLOCK(vp);
987 vput(vp);
988 return (EBUSY);
990 vp->v_iflag |= VI_MOUNT;
991 VI_UNLOCK(vp);
994 * Allocate and initialize the filesystem.
996 mp = vfs_mount_alloc(vp, vfsp, fspath, td->td_ucred);
997 VOP_UNLOCK(vp, 0);
999 /* XXXMAC: pass to vfs_mount_alloc? */
1000 mp->mnt_optnew = fsdata;
1004 * Set the mount level flags.
1006 MNT_ILOCK(mp);
1007 mp->mnt_flag = (mp->mnt_flag & ~MNT_UPDATEMASK) |
1008 (fsflags & (MNT_UPDATEMASK | MNT_FORCE | MNT_ROOTFS |
1009 MNT_RDONLY));
1010 if ((mp->mnt_flag & MNT_ASYNC) == 0)
1011 mp->mnt_kern_flag &= ~MNTK_ASYNC;
1012 MNT_IUNLOCK(mp);
1014 * Mount the filesystem.
1015 * XXX The final recipients of VFS_MOUNT just overwrite the ndp they
1016 * get. No freeing of cn_pnbuf.
1018 error = VFS_MOUNT(mp, td);
1021 * Process the export option only if we are
1022 * updating mount options.
1024 if (!error && (fsflags & MNT_UPDATE)) {
1025 if (vfs_copyopt(mp->mnt_optnew, "export", &export,
1026 sizeof(export)) == 0)
1027 error = vfs_export(mp, &export);
1030 if (!error) {
1031 if (mp->mnt_opt != NULL)
1032 vfs_freeopts(mp->mnt_opt);
1033 mp->mnt_opt = mp->mnt_optnew;
1034 (void)VFS_STATFS(mp, &mp->mnt_stat, td);
1037 * Prevent external consumers of mount options from reading
1038 * mnt_optnew.
1040 mp->mnt_optnew = NULL;
1041 if (mp->mnt_flag & MNT_UPDATE) {
1042 MNT_ILOCK(mp);
1043 if (error)
1044 mp->mnt_flag = (mp->mnt_flag & MNT_QUOTA) |
1045 (flag & ~MNT_QUOTA);
1046 else
1047 mp->mnt_flag &= ~(MNT_UPDATE | MNT_RELOAD |
1048 MNT_FORCE | MNT_SNAPSHOT);
1049 if ((mp->mnt_flag & MNT_ASYNC) != 0 && mp->mnt_noasync == 0)
1050 mp->mnt_kern_flag |= MNTK_ASYNC;
1051 else
1052 mp->mnt_kern_flag &= ~MNTK_ASYNC;
1053 MNT_IUNLOCK(mp);
1054 if ((mp->mnt_flag & MNT_RDONLY) == 0) {
1055 if (mp->mnt_syncer == NULL)
1056 error = vfs_allocate_syncvnode(mp);
1057 } else {
1058 if (mp->mnt_syncer != NULL)
1059 vrele(mp->mnt_syncer);
1060 mp->mnt_syncer = NULL;
1062 vfs_unbusy(mp);
1063 VI_LOCK(vp);
1064 vp->v_iflag &= ~VI_MOUNT;
1065 VI_UNLOCK(vp);
1066 vrele(vp);
1067 return (error);
1069 MNT_ILOCK(mp);
1070 if ((mp->mnt_flag & MNT_ASYNC) != 0 && mp->mnt_noasync == 0)
1071 mp->mnt_kern_flag |= MNTK_ASYNC;
1072 else
1073 mp->mnt_kern_flag &= ~MNTK_ASYNC;
1074 MNT_IUNLOCK(mp);
1075 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1077 * Put the new filesystem on the mount list after root.
1079 cache_purge(vp);
1080 if (!error) {
1081 struct vnode *newdp;
1083 VI_LOCK(vp);
1084 vp->v_iflag &= ~VI_MOUNT;
1085 VI_UNLOCK(vp);
1086 vp->v_mountedhere = mp;
1087 mtx_lock(&mountlist_mtx);
1088 TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
1089 mtx_unlock(&mountlist_mtx);
1090 vfs_event_signal(NULL, VQ_MOUNT, 0);
1091 if (VFS_ROOT(mp, LK_EXCLUSIVE, &newdp, td))
1092 panic("mount: lost mount");
1093 mountcheckdirs(vp, newdp);
1094 vput(newdp);
1095 VOP_UNLOCK(vp, 0);
1096 if ((mp->mnt_flag & MNT_RDONLY) == 0)
1097 error = vfs_allocate_syncvnode(mp);
1098 vfs_unbusy(mp);
1099 if (error)
1100 vrele(vp);
1101 } else {
1102 VI_LOCK(vp);
1103 vp->v_iflag &= ~VI_MOUNT;
1104 VI_UNLOCK(vp);
1105 vfs_unbusy(mp);
1106 vfs_mount_destroy(mp);
1107 vput(vp);
1109 return (error);
1113 * Unmount a filesystem.
1115 * Note: unmount takes a path to the vnode mounted on as argument, not
1116 * special file (as before).
1118 #ifndef _SYS_SYSPROTO_H_
1119 struct unmount_args {
1120 char *path;
1121 int flags;
1123 #endif
1124 /* ARGSUSED */
1126 unmount(td, uap)
1127 struct thread *td;
1128 register struct unmount_args /* {
1129 char *path;
1130 int flags;
1131 } */ *uap;
1133 struct mount *mp;
1134 char *pathbuf;
1135 int error, id0, id1;
1137 if (jailed(td->td_ucred) || usermount == 0) {
1138 error = priv_check(td, PRIV_VFS_UNMOUNT);
1139 if (error)
1140 return (error);
1143 pathbuf = malloc(MNAMELEN, M_TEMP, M_WAITOK);
1144 error = copyinstr(uap->path, pathbuf, MNAMELEN, NULL);
1145 if (error) {
1146 free(pathbuf, M_TEMP);
1147 return (error);
1149 AUDIT_ARG(upath, td, pathbuf, ARG_UPATH1);
1150 mtx_lock(&Giant);
1151 if (uap->flags & MNT_BYFSID) {
1152 /* Decode the filesystem ID. */
1153 if (sscanf(pathbuf, "FSID:%d:%d", &id0, &id1) != 2) {
1154 mtx_unlock(&Giant);
1155 free(pathbuf, M_TEMP);
1156 return (EINVAL);
1159 mtx_lock(&mountlist_mtx);
1160 TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
1161 if (mp->mnt_stat.f_fsid.val[0] == id0 &&
1162 mp->mnt_stat.f_fsid.val[1] == id1)
1163 break;
1165 mtx_unlock(&mountlist_mtx);
1166 } else {
1167 mtx_lock(&mountlist_mtx);
1168 TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
1169 if (strcmp(mp->mnt_stat.f_mntonname, pathbuf) == 0)
1170 break;
1172 mtx_unlock(&mountlist_mtx);
1174 free(pathbuf, M_TEMP);
1175 if (mp == NULL) {
1177 * Previously we returned ENOENT for a nonexistent path and
1178 * EINVAL for a non-mountpoint. We cannot tell these apart
1179 * now, so in the !MNT_BYFSID case return the more likely
1180 * EINVAL for compatibility.
1182 mtx_unlock(&Giant);
1183 return ((uap->flags & MNT_BYFSID) ? ENOENT : EINVAL);
1187 * Don't allow unmounting the root filesystem.
1189 if (mp->mnt_flag & MNT_ROOTFS) {
1190 mtx_unlock(&Giant);
1191 return (EINVAL);
1193 error = dounmount(mp, uap->flags, td);
1194 mtx_unlock(&Giant);
1195 return (error);
1199 * Do the actual filesystem unmount.
1202 dounmount(mp, flags, td)
1203 struct mount *mp;
1204 int flags;
1205 struct thread *td;
1207 struct vnode *coveredvp, *fsrootvp;
1208 int error;
1209 int async_flag;
1210 int mnt_gen_r;
1212 mtx_assert(&Giant, MA_OWNED);
1214 if ((coveredvp = mp->mnt_vnodecovered) != NULL) {
1215 mnt_gen_r = mp->mnt_gen;
1216 VI_LOCK(coveredvp);
1217 vholdl(coveredvp);
1218 vn_lock(coveredvp, LK_EXCLUSIVE | LK_INTERLOCK | LK_RETRY);
1219 vdrop(coveredvp);
1221 * Check for mp being unmounted while waiting for the
1222 * covered vnode lock.
1224 if (coveredvp->v_mountedhere != mp ||
1225 coveredvp->v_mountedhere->mnt_gen != mnt_gen_r) {
1226 VOP_UNLOCK(coveredvp, 0);
1227 return (EBUSY);
1231 * Only privileged root, or (if MNT_USER is set) the user that did the
1232 * original mount is permitted to unmount this filesystem.
1234 error = vfs_suser(mp, td);
1235 if (error) {
1236 if (coveredvp)
1237 VOP_UNLOCK(coveredvp, 0);
1238 return (error);
1241 MNT_ILOCK(mp);
1242 if (mp->mnt_kern_flag & MNTK_UNMOUNT) {
1243 MNT_IUNLOCK(mp);
1244 if (coveredvp)
1245 VOP_UNLOCK(coveredvp, 0);
1246 return (EBUSY);
1248 mp->mnt_kern_flag |= MNTK_UNMOUNT | MNTK_NOINSMNTQ;
1249 /* Allow filesystems to detect that a forced unmount is in progress. */
1250 if (flags & MNT_FORCE)
1251 mp->mnt_kern_flag |= MNTK_UNMOUNTF;
1252 error = lockmgr(&mp->mnt_lock, LK_DRAIN | LK_INTERLOCK |
1253 ((flags & MNT_FORCE) ? 0 : LK_NOWAIT), MNT_MTX(mp));
1254 if (error) {
1255 MNT_ILOCK(mp);
1256 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_NOINSMNTQ |
1257 MNTK_UNMOUNTF);
1258 if (mp->mnt_kern_flag & MNTK_MWAIT)
1259 wakeup(mp);
1260 MNT_IUNLOCK(mp);
1261 if (coveredvp)
1262 VOP_UNLOCK(coveredvp, 0);
1263 return (error);
1265 vn_start_write(NULL, &mp, V_WAIT);
1267 if (mp->mnt_flag & MNT_EXPUBLIC)
1268 vfs_setpublicfs(NULL, NULL, NULL);
1270 vfs_msync(mp, MNT_WAIT);
1271 MNT_ILOCK(mp);
1272 async_flag = mp->mnt_flag & MNT_ASYNC;
1273 mp->mnt_flag &= ~MNT_ASYNC;
1274 mp->mnt_kern_flag &= ~MNTK_ASYNC;
1275 MNT_IUNLOCK(mp);
1276 cache_purgevfs(mp); /* remove cache entries for this file sys */
1277 if (mp->mnt_syncer != NULL)
1278 vrele(mp->mnt_syncer);
1280 * For forced unmounts, move process cdir/rdir refs on the fs root
1281 * vnode to the covered vnode. For non-forced unmounts we want
1282 * such references to cause an EBUSY error.
1284 if ((flags & MNT_FORCE) &&
1285 VFS_ROOT(mp, LK_EXCLUSIVE, &fsrootvp, td) == 0) {
1286 if (mp->mnt_vnodecovered != NULL)
1287 mountcheckdirs(fsrootvp, mp->mnt_vnodecovered);
1288 if (fsrootvp == rootvnode) {
1289 vrele(rootvnode);
1290 rootvnode = NULL;
1292 vput(fsrootvp);
1294 if (((mp->mnt_flag & MNT_RDONLY) ||
1295 (error = VFS_SYNC(mp, MNT_WAIT, td)) == 0) ||
1296 (flags & MNT_FORCE)) {
1297 error = VFS_UNMOUNT(mp, flags, td);
1299 vn_finished_write(mp);
1301 * If we failed to flush the dirty blocks for this mount point,
1302 * undo all the cdir/rdir and rootvnode changes we made above.
1303 * Unless we failed to do so because the device is reporting that
1304 * it doesn't exist anymore.
1306 if (error && error != ENXIO) {
1307 if ((flags & MNT_FORCE) &&
1308 VFS_ROOT(mp, LK_EXCLUSIVE, &fsrootvp, td) == 0) {
1309 if (mp->mnt_vnodecovered != NULL)
1310 mountcheckdirs(mp->mnt_vnodecovered, fsrootvp);
1311 if (rootvnode == NULL) {
1312 rootvnode = fsrootvp;
1313 vref(rootvnode);
1315 vput(fsrootvp);
1317 MNT_ILOCK(mp);
1318 mp->mnt_kern_flag &= ~MNTK_NOINSMNTQ;
1319 if ((mp->mnt_flag & MNT_RDONLY) == 0 && mp->mnt_syncer == NULL) {
1320 MNT_IUNLOCK(mp);
1321 (void) vfs_allocate_syncvnode(mp);
1322 MNT_ILOCK(mp);
1324 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
1325 mp->mnt_flag |= async_flag;
1326 if ((mp->mnt_flag & MNT_ASYNC) != 0 && mp->mnt_noasync == 0)
1327 mp->mnt_kern_flag |= MNTK_ASYNC;
1328 lockmgr(&mp->mnt_lock, LK_RELEASE, NULL);
1329 if (mp->mnt_kern_flag & MNTK_MWAIT)
1330 wakeup(mp);
1331 MNT_IUNLOCK(mp);
1332 if (coveredvp)
1333 VOP_UNLOCK(coveredvp, 0);
1334 return (error);
1336 mtx_lock(&mountlist_mtx);
1337 TAILQ_REMOVE(&mountlist, mp, mnt_list);
1338 mtx_unlock(&mountlist_mtx);
1339 if (coveredvp != NULL) {
1340 coveredvp->v_mountedhere = NULL;
1341 vput(coveredvp);
1343 vfs_event_signal(NULL, VQ_UNMOUNT, 0);
1344 lockmgr(&mp->mnt_lock, LK_RELEASE, NULL);
1345 vfs_mount_destroy(mp);
1346 return (0);
1350 * ---------------------------------------------------------------------
1351 * Mounting of root filesystem
1355 struct root_hold_token {
1356 const char *who;
1357 LIST_ENTRY(root_hold_token) list;
1360 static LIST_HEAD(, root_hold_token) root_holds =
1361 LIST_HEAD_INITIALIZER(&root_holds);
1363 static int root_mount_complete;
1366 * Hold root mount.
1368 struct root_hold_token *
1369 root_mount_hold(const char *identifier)
1371 struct root_hold_token *h;
1373 h = malloc(sizeof *h, M_DEVBUF, M_ZERO | M_WAITOK);
1374 h->who = identifier;
1375 mtx_lock(&mountlist_mtx);
1376 LIST_INSERT_HEAD(&root_holds, h, list);
1377 mtx_unlock(&mountlist_mtx);
1378 return (h);
1382 * Release root mount.
1384 void
1385 root_mount_rel(struct root_hold_token *h)
1388 mtx_lock(&mountlist_mtx);
1389 LIST_REMOVE(h, list);
1390 wakeup(&root_holds);
1391 mtx_unlock(&mountlist_mtx);
1392 free(h, M_DEVBUF);
1396 * Wait for all subsystems to release root mount.
1398 static void
1399 root_mount_prepare(void)
1401 struct root_hold_token *h;
1403 for (;;) {
1404 DROP_GIANT();
1405 g_waitidle();
1406 PICKUP_GIANT();
1407 mtx_lock(&mountlist_mtx);
1408 if (LIST_EMPTY(&root_holds)) {
1409 mtx_unlock(&mountlist_mtx);
1410 break;
1412 printf("Root mount waiting for:");
1413 LIST_FOREACH(h, &root_holds, list)
1414 printf(" %s", h->who);
1415 printf("\n");
1416 msleep(&root_holds, &mountlist_mtx, PZERO | PDROP, "roothold",
1417 hz);
1422 * Root was mounted, share the good news.
1424 static void
1425 root_mount_done(void)
1429 * Use a mutex to prevent the wakeup being missed and waiting for
1430 * an extra 1 second sleep.
1432 mtx_lock(&mountlist_mtx);
1433 root_mount_complete = 1;
1434 wakeup(&root_mount_complete);
1435 mtx_unlock(&mountlist_mtx);
1439 * Return true if root is already mounted.
1442 root_mounted(void)
1445 /* No mutex is acquired here because int stores are atomic. */
1446 return (root_mount_complete);
1450 * Wait until root is mounted.
1452 void
1453 root_mount_wait(void)
1457 * Panic on an obvious deadlock - the function can't be called from
1458 * a thread which is doing the whole SYSINIT stuff.
1460 KASSERT(curthread->td_proc->p_pid != 0,
1461 ("root_mount_wait: cannot be called from the swapper thread"));
1462 mtx_lock(&mountlist_mtx);
1463 while (!root_mount_complete) {
1464 msleep(&root_mount_complete, &mountlist_mtx, PZERO, "rootwait",
1465 hz);
1467 mtx_unlock(&mountlist_mtx);
1470 static void
1471 set_rootvnode(struct thread *td)
1473 struct proc *p;
1475 if (VFS_ROOT(TAILQ_FIRST(&mountlist), LK_EXCLUSIVE, &rootvnode, td))
1476 panic("Cannot find root vnode");
1478 p = td->td_proc;
1479 FILEDESC_XLOCK(p->p_fd);
1481 if (p->p_fd->fd_cdir != NULL)
1482 vrele(p->p_fd->fd_cdir);
1483 p->p_fd->fd_cdir = rootvnode;
1484 VREF(rootvnode);
1486 if (p->p_fd->fd_rdir != NULL)
1487 vrele(p->p_fd->fd_rdir);
1488 p->p_fd->fd_rdir = rootvnode;
1489 VREF(rootvnode);
1491 FILEDESC_XUNLOCK(p->p_fd);
1493 VOP_UNLOCK(rootvnode, 0);
1495 EVENTHANDLER_INVOKE(mountroot);
1499 * Mount /devfs as our root filesystem, but do not put it on the mountlist
1500 * yet. Create a /dev -> / symlink so that absolute pathnames will lookup.
1503 static void
1504 devfs_first(void)
1506 struct thread *td = curthread;
1507 struct vfsoptlist *opts;
1508 struct vfsconf *vfsp;
1509 struct mount *mp = NULL;
1510 int error;
1512 vfsp = vfs_byname("devfs");
1513 KASSERT(vfsp != NULL, ("Could not find devfs by name"));
1514 if (vfsp == NULL)
1515 return;
1517 mp = vfs_mount_alloc(NULLVP, vfsp, "/dev", td->td_ucred);
1519 error = VFS_MOUNT(mp, td);
1520 KASSERT(error == 0, ("VFS_MOUNT(devfs) failed %d", error));
1521 if (error)
1522 return;
1524 opts = malloc(sizeof(struct vfsoptlist), M_MOUNT, M_WAITOK);
1525 TAILQ_INIT(opts);
1526 mp->mnt_opt = opts;
1528 mtx_lock(&mountlist_mtx);
1529 TAILQ_INSERT_HEAD(&mountlist, mp, mnt_list);
1530 mtx_unlock(&mountlist_mtx);
1532 set_rootvnode(td);
1534 error = kern_symlink(td, "/", "dev", UIO_SYSSPACE);
1535 if (error)
1536 printf("kern_symlink /dev -> / returns %d\n", error);
1540 * Surgically move our devfs to be mounted on /dev.
1543 static void
1544 devfs_fixup(struct thread *td)
1546 struct nameidata nd;
1547 int error;
1548 struct vnode *vp, *dvp;
1549 struct mount *mp;
1551 /* Remove our devfs mount from the mountlist and purge the cache */
1552 mtx_lock(&mountlist_mtx);
1553 mp = TAILQ_FIRST(&mountlist);
1554 TAILQ_REMOVE(&mountlist, mp, mnt_list);
1555 mtx_unlock(&mountlist_mtx);
1556 cache_purgevfs(mp);
1558 VFS_ROOT(mp, LK_EXCLUSIVE, &dvp, td);
1559 VI_LOCK(dvp);
1560 dvp->v_iflag &= ~VI_MOUNT;
1561 VI_UNLOCK(dvp);
1562 dvp->v_mountedhere = NULL;
1564 /* Set up the real rootvnode, and purge the cache */
1565 TAILQ_FIRST(&mountlist)->mnt_vnodecovered = NULL;
1566 set_rootvnode(td);
1567 cache_purgevfs(rootvnode->v_mount);
1569 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE, "/dev", td);
1570 error = namei(&nd);
1571 if (error) {
1572 printf("Lookup of /dev for devfs, error: %d\n", error);
1573 return;
1575 NDFREE(&nd, NDF_ONLY_PNBUF);
1576 vp = nd.ni_vp;
1577 if (vp->v_type != VDIR) {
1578 vput(vp);
1580 error = vinvalbuf(vp, V_SAVE, td, 0, 0);
1581 if (error) {
1582 vput(vp);
1584 cache_purge(vp);
1585 mp->mnt_vnodecovered = vp;
1586 vp->v_mountedhere = mp;
1587 mtx_lock(&mountlist_mtx);
1588 TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
1589 mtx_unlock(&mountlist_mtx);
1590 VOP_UNLOCK(vp, 0);
1591 vput(dvp);
1592 vfs_unbusy(mp);
1594 /* Unlink the no longer needed /dev/dev -> / symlink */
1595 kern_unlink(td, "/dev/dev", UIO_SYSSPACE);
1599 * Report errors during filesystem mounting.
1601 void
1602 vfs_mount_error(struct mount *mp, const char *fmt, ...)
1604 struct vfsoptlist *moptlist = mp->mnt_optnew;
1605 va_list ap;
1606 int error, len;
1607 char *errmsg;
1609 error = vfs_getopt(moptlist, "errmsg", (void **)&errmsg, &len);
1610 if (error || errmsg == NULL || len <= 0)
1611 return;
1613 va_start(ap, fmt);
1614 vsnprintf(errmsg, (size_t)len, fmt, ap);
1615 va_end(ap);
1619 * Find and mount the root filesystem
1621 void
1622 vfs_mountroot(void)
1624 char *cp;
1625 int error, i, asked = 0;
1627 root_mount_prepare();
1629 mount_zone = uma_zcreate("Mountpoints", sizeof(struct mount),
1630 NULL, NULL, mount_init, mount_fini,
1631 UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
1632 devfs_first();
1635 * We are booted with instructions to prompt for the root filesystem.
1637 if (boothowto & RB_ASKNAME) {
1638 if (!vfs_mountroot_ask())
1639 goto mounted;
1640 asked = 1;
1644 * The root filesystem information is compiled in, and we are
1645 * booted with instructions to use it.
1647 if (ctrootdevname != NULL && (boothowto & RB_DFLTROOT)) {
1648 if (!vfs_mountroot_try(ctrootdevname))
1649 goto mounted;
1650 ctrootdevname = NULL;
1654 * We've been given the generic "use CDROM as root" flag. This is
1655 * necessary because one media may be used in many different
1656 * devices, so we need to search for them.
1658 if (boothowto & RB_CDROM) {
1659 for (i = 0; cdrom_rootdevnames[i] != NULL; i++) {
1660 if (!vfs_mountroot_try(cdrom_rootdevnames[i]))
1661 goto mounted;
1666 * Try to use the value read by the loader from /etc/fstab, or
1667 * supplied via some other means. This is the preferred
1668 * mechanism.
1670 cp = getenv("vfs.root.mountfrom");
1671 if (cp != NULL) {
1672 error = vfs_mountroot_try(cp);
1673 freeenv(cp);
1674 if (!error)
1675 goto mounted;
1679 * Try values that may have been computed by code during boot
1681 if (!vfs_mountroot_try(rootdevnames[0]))
1682 goto mounted;
1683 if (!vfs_mountroot_try(rootdevnames[1]))
1684 goto mounted;
1687 * If we (still) have a compiled-in default, try it.
1689 if (ctrootdevname != NULL)
1690 if (!vfs_mountroot_try(ctrootdevname))
1691 goto mounted;
1693 * Everything so far has failed, prompt on the console if we haven't
1694 * already tried that.
1696 if (!asked)
1697 if (!vfs_mountroot_ask())
1698 goto mounted;
1700 panic("Root mount failed, startup aborted.");
1702 mounted:
1703 root_mount_done();
1707 * Mount (mountfrom) as the root filesystem.
1709 static int
1710 vfs_mountroot_try(const char *mountfrom)
1712 struct mount *mp;
1713 char *vfsname, *path;
1714 time_t timebase;
1715 int error;
1716 char patt[32];
1718 vfsname = NULL;
1719 path = NULL;
1720 mp = NULL;
1721 error = EINVAL;
1723 if (mountfrom == NULL)
1724 return (error); /* don't complain */
1725 printf("Trying to mount root from %s\n", mountfrom);
1727 /* parse vfs name and path */
1728 vfsname = malloc(MFSNAMELEN, M_MOUNT, M_WAITOK);
1729 path = malloc(MNAMELEN, M_MOUNT, M_WAITOK);
1730 vfsname[0] = path[0] = 0;
1731 sprintf(patt, "%%%d[a-z0-9]:%%%ds", MFSNAMELEN, MNAMELEN);
1732 if (sscanf(mountfrom, patt, vfsname, path) < 1)
1733 goto out;
1735 if (path[0] == '\0')
1736 strcpy(path, ROOTNAME);
1738 error = kernel_vmount(
1739 MNT_RDONLY | MNT_ROOTFS,
1740 "fstype", vfsname,
1741 "fspath", "/",
1742 "from", path,
1743 NULL);
1744 if (error == 0) {
1746 * We mount devfs prior to mounting the / FS, so the first
1747 * entry will typically be devfs.
1749 mp = TAILQ_FIRST(&mountlist);
1750 KASSERT(mp != NULL, ("%s: mountlist is empty", __func__));
1753 * Iterate over all currently mounted file systems and use
1754 * the time stamp found to check and/or initialize the RTC.
1755 * Typically devfs has no time stamp and the only other FS
1756 * is the actual / FS.
1757 * Call inittodr() only once and pass it the largest of the
1758 * timestamps we encounter.
1760 timebase = 0;
1761 do {
1762 if (mp->mnt_time > timebase)
1763 timebase = mp->mnt_time;
1764 mp = TAILQ_NEXT(mp, mnt_list);
1765 } while (mp != NULL);
1766 inittodr(timebase);
1768 devfs_fixup(curthread);
1770 out:
1771 free(path, M_MOUNT);
1772 free(vfsname, M_MOUNT);
1773 return (error);
1777 * ---------------------------------------------------------------------
1778 * Interactive root filesystem selection code.
1781 static int
1782 vfs_mountroot_ask(void)
1784 char name[128];
1786 for(;;) {
1787 printf("\nManual root filesystem specification:\n");
1788 printf(" <fstype>:<device> Mount <device> using filesystem <fstype>\n");
1789 #if defined(__amd64__) || defined(__i386__) || defined(__ia64__)
1790 printf(" eg. ufs:da0s1a\n");
1791 #else
1792 printf(" eg. ufs:/dev/da0a\n");
1793 #endif
1794 printf(" ? List valid disk boot devices\n");
1795 printf(" <empty line> Abort manual input\n");
1796 printf("\nmountroot> ");
1797 gets(name, sizeof(name), 1);
1798 if (name[0] == '\0')
1799 return (1);
1800 if (name[0] == '?') {
1801 printf("\nList of GEOM managed disk devices:\n ");
1802 g_dev_print();
1803 continue;
1805 if (!vfs_mountroot_try(name))
1806 return (0);
1811 * ---------------------------------------------------------------------
1812 * Functions for querying mount options/arguments from filesystems.
1816 * Check that no unknown options are given
1819 vfs_filteropt(struct vfsoptlist *opts, const char **legal)
1821 struct vfsopt *opt;
1822 char errmsg[255];
1823 const char **t, *p, *q;
1824 int ret = 0;
1826 TAILQ_FOREACH(opt, opts, link) {
1827 p = opt->name;
1828 q = NULL;
1829 if (p[0] == 'n' && p[1] == 'o')
1830 q = p + 2;
1831 for(t = global_opts; *t != NULL; t++) {
1832 if (strcmp(*t, p) == 0)
1833 break;
1834 if (q != NULL) {
1835 if (strcmp(*t, q) == 0)
1836 break;
1839 if (*t != NULL)
1840 continue;
1841 for(t = legal; *t != NULL; t++) {
1842 if (strcmp(*t, p) == 0)
1843 break;
1844 if (q != NULL) {
1845 if (strcmp(*t, q) == 0)
1846 break;
1849 if (*t != NULL)
1850 continue;
1851 snprintf(errmsg, sizeof(errmsg),
1852 "mount option <%s> is unknown", p);
1853 printf("%s\n", errmsg);
1854 ret = EINVAL;
1856 if (ret != 0) {
1857 TAILQ_FOREACH(opt, opts, link) {
1858 if (strcmp(opt->name, "errmsg") == 0) {
1859 strncpy((char *)opt->value, errmsg, opt->len);
1863 return (ret);
1867 * Get a mount option by its name.
1869 * Return 0 if the option was found, ENOENT otherwise.
1870 * If len is non-NULL it will be filled with the length
1871 * of the option. If buf is non-NULL, it will be filled
1872 * with the address of the option.
1875 vfs_getopt(opts, name, buf, len)
1876 struct vfsoptlist *opts;
1877 const char *name;
1878 void **buf;
1879 int *len;
1881 struct vfsopt *opt;
1883 KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
1885 TAILQ_FOREACH(opt, opts, link) {
1886 if (strcmp(name, opt->name) == 0) {
1887 if (len != NULL)
1888 *len = opt->len;
1889 if (buf != NULL)
1890 *buf = opt->value;
1891 return (0);
1894 return (ENOENT);
1897 static int
1898 vfs_getopt_pos(struct vfsoptlist *opts, const char *name)
1900 struct vfsopt *opt;
1901 int i;
1903 if (opts == NULL)
1904 return (-1);
1906 i = 0;
1907 TAILQ_FOREACH(opt, opts, link) {
1908 if (strcmp(name, opt->name) == 0)
1909 return (i);
1910 ++i;
1912 return (-1);
1915 char *
1916 vfs_getopts(struct vfsoptlist *opts, const char *name, int *error)
1918 struct vfsopt *opt;
1920 *error = 0;
1921 TAILQ_FOREACH(opt, opts, link) {
1922 if (strcmp(name, opt->name) != 0)
1923 continue;
1924 if (((char *)opt->value)[opt->len - 1] != '\0') {
1925 *error = EINVAL;
1926 return (NULL);
1928 return (opt->value);
1930 *error = ENOENT;
1931 return (NULL);
1935 vfs_flagopt(struct vfsoptlist *opts, const char *name, u_int *w, u_int val)
1937 struct vfsopt *opt;
1939 TAILQ_FOREACH(opt, opts, link) {
1940 if (strcmp(name, opt->name) == 0) {
1941 if (w != NULL)
1942 *w |= val;
1943 return (1);
1946 if (w != NULL)
1947 *w &= ~val;
1948 return (0);
1952 vfs_scanopt(struct vfsoptlist *opts, const char *name, const char *fmt, ...)
1954 va_list ap;
1955 struct vfsopt *opt;
1956 int ret;
1958 KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
1960 TAILQ_FOREACH(opt, opts, link) {
1961 if (strcmp(name, opt->name) != 0)
1962 continue;
1963 if (opt->len == 0 || opt->value == NULL)
1964 return (0);
1965 if (((char *)opt->value)[opt->len - 1] != '\0')
1966 return (0);
1967 va_start(ap, fmt);
1968 ret = vsscanf(opt->value, fmt, ap);
1969 va_end(ap);
1970 return (ret);
1972 return (0);
1976 * Find and copy a mount option.
1978 * The size of the buffer has to be specified
1979 * in len, if it is not the same length as the
1980 * mount option, EINVAL is returned.
1981 * Returns ENOENT if the option is not found.
1984 vfs_copyopt(opts, name, dest, len)
1985 struct vfsoptlist *opts;
1986 const char *name;
1987 void *dest;
1988 int len;
1990 struct vfsopt *opt;
1992 KASSERT(opts != NULL, ("vfs_copyopt: caller passed 'opts' as NULL"));
1994 TAILQ_FOREACH(opt, opts, link) {
1995 if (strcmp(name, opt->name) == 0) {
1996 if (len != opt->len)
1997 return (EINVAL);
1998 bcopy(opt->value, dest, opt->len);
1999 return (0);
2002 return (ENOENT);
2006 * This is a helper function for filesystems to traverse their
2007 * vnodes. See MNT_VNODE_FOREACH() in sys/mount.h
2010 struct vnode *
2011 __mnt_vnode_next(struct vnode **mvp, struct mount *mp)
2013 struct vnode *vp;
2015 mtx_assert(MNT_MTX(mp), MA_OWNED);
2017 KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
2018 if ((*mvp)->v_yield++ == 500) {
2019 MNT_IUNLOCK(mp);
2020 (*mvp)->v_yield = 0;
2021 uio_yield();
2022 MNT_ILOCK(mp);
2024 vp = TAILQ_NEXT(*mvp, v_nmntvnodes);
2025 while (vp != NULL && vp->v_type == VMARKER)
2026 vp = TAILQ_NEXT(vp, v_nmntvnodes);
2028 /* Check if we are done */
2029 if (vp == NULL) {
2030 __mnt_vnode_markerfree(mvp, mp);
2031 return (NULL);
2033 TAILQ_REMOVE(&mp->mnt_nvnodelist, *mvp, v_nmntvnodes);
2034 TAILQ_INSERT_AFTER(&mp->mnt_nvnodelist, vp, *mvp, v_nmntvnodes);
2035 return (vp);
2038 struct vnode *
2039 __mnt_vnode_first(struct vnode **mvp, struct mount *mp)
2041 struct vnode *vp;
2043 mtx_assert(MNT_MTX(mp), MA_OWNED);
2045 vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
2046 while (vp != NULL && vp->v_type == VMARKER)
2047 vp = TAILQ_NEXT(vp, v_nmntvnodes);
2049 /* Check if we are done */
2050 if (vp == NULL) {
2051 *mvp = NULL;
2052 return (NULL);
2054 mp->mnt_holdcnt++;
2055 MNT_IUNLOCK(mp);
2056 *mvp = (struct vnode *) malloc(sizeof(struct vnode),
2057 M_VNODE_MARKER,
2058 M_WAITOK | M_ZERO);
2059 MNT_ILOCK(mp);
2060 (*mvp)->v_type = VMARKER;
2062 vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
2063 while (vp != NULL && vp->v_type == VMARKER)
2064 vp = TAILQ_NEXT(vp, v_nmntvnodes);
2066 /* Check if we are done */
2067 if (vp == NULL) {
2068 MNT_IUNLOCK(mp);
2069 free(*mvp, M_VNODE_MARKER);
2070 MNT_ILOCK(mp);
2071 *mvp = NULL;
2072 mp->mnt_holdcnt--;
2073 if (mp->mnt_holdcnt == 0 && mp->mnt_holdcntwaiters != 0)
2074 wakeup(&mp->mnt_holdcnt);
2075 return (NULL);
2077 mp->mnt_markercnt++;
2078 (*mvp)->v_mount = mp;
2079 TAILQ_INSERT_AFTER(&mp->mnt_nvnodelist, vp, *mvp, v_nmntvnodes);
2080 return (vp);
2084 void
2085 __mnt_vnode_markerfree(struct vnode **mvp, struct mount *mp)
2088 if (*mvp == NULL)
2089 return;
2091 mtx_assert(MNT_MTX(mp), MA_OWNED);
2093 KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
2094 TAILQ_REMOVE(&mp->mnt_nvnodelist, *mvp, v_nmntvnodes);
2095 MNT_IUNLOCK(mp);
2096 free(*mvp, M_VNODE_MARKER);
2097 MNT_ILOCK(mp);
2098 *mvp = NULL;
2100 mp->mnt_markercnt--;
2101 mp->mnt_holdcnt--;
2102 if (mp->mnt_holdcnt == 0 && mp->mnt_holdcntwaiters != 0)
2103 wakeup(&mp->mnt_holdcnt);
2108 __vfs_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
2110 int error;
2112 error = mp->mnt_op->vfs_statfs(mp, &mp->mnt_stat, td);
2113 if (sbp != &mp->mnt_stat)
2114 *sbp = mp->mnt_stat;
2115 return (error);
2118 void
2119 vfs_mountedfrom(struct mount *mp, const char *from)
2122 bzero(mp->mnt_stat.f_mntfromname, sizeof mp->mnt_stat.f_mntfromname);
2123 strlcpy(mp->mnt_stat.f_mntfromname, from,
2124 sizeof mp->mnt_stat.f_mntfromname);
2128 * ---------------------------------------------------------------------
2129 * This is the api for building mount args and mounting filesystems from
2130 * inside the kernel.
2132 * The API works by accumulation of individual args. First error is
2133 * latched.
2135 * XXX: should be documented in new manpage kernel_mount(9)
2138 /* A memory allocation which must be freed when we are done */
2139 struct mntaarg {
2140 SLIST_ENTRY(mntaarg) next;
2143 /* The header for the mount arguments */
2144 struct mntarg {
2145 struct iovec *v;
2146 int len;
2147 int error;
2148 SLIST_HEAD(, mntaarg) list;
2152 * Add a boolean argument.
2154 * flag is the boolean value.
2155 * name must start with "no".
2157 struct mntarg *
2158 mount_argb(struct mntarg *ma, int flag, const char *name)
2161 KASSERT(name[0] == 'n' && name[1] == 'o',
2162 ("mount_argb(...,%s): name must start with 'no'", name));
2164 return (mount_arg(ma, name + (flag ? 2 : 0), NULL, 0));
2168 * Add an argument printf style
2170 struct mntarg *
2171 mount_argf(struct mntarg *ma, const char *name, const char *fmt, ...)
2173 va_list ap;
2174 struct mntaarg *maa;
2175 struct sbuf *sb;
2176 int len;
2178 if (ma == NULL) {
2179 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
2180 SLIST_INIT(&ma->list);
2182 if (ma->error)
2183 return (ma);
2185 ma->v = realloc(ma->v, sizeof *ma->v * (ma->len + 2),
2186 M_MOUNT, M_WAITOK);
2187 ma->v[ma->len].iov_base = (void *)(uintptr_t)name;
2188 ma->v[ma->len].iov_len = strlen(name) + 1;
2189 ma->len++;
2191 sb = sbuf_new_auto();
2192 va_start(ap, fmt);
2193 sbuf_vprintf(sb, fmt, ap);
2194 va_end(ap);
2195 sbuf_finish(sb);
2196 len = sbuf_len(sb) + 1;
2197 maa = malloc(sizeof *maa + len, M_MOUNT, M_WAITOK | M_ZERO);
2198 SLIST_INSERT_HEAD(&ma->list, maa, next);
2199 bcopy(sbuf_data(sb), maa + 1, len);
2200 sbuf_delete(sb);
2202 ma->v[ma->len].iov_base = maa + 1;
2203 ma->v[ma->len].iov_len = len;
2204 ma->len++;
2206 return (ma);
2210 * Add an argument which is a userland string.
2212 struct mntarg *
2213 mount_argsu(struct mntarg *ma, const char *name, const void *val, int len)
2215 struct mntaarg *maa;
2216 char *tbuf;
2218 if (val == NULL)
2219 return (ma);
2220 if (ma == NULL) {
2221 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
2222 SLIST_INIT(&ma->list);
2224 if (ma->error)
2225 return (ma);
2226 maa = malloc(sizeof *maa + len, M_MOUNT, M_WAITOK | M_ZERO);
2227 SLIST_INSERT_HEAD(&ma->list, maa, next);
2228 tbuf = (void *)(maa + 1);
2229 ma->error = copyinstr(val, tbuf, len, NULL);
2230 return (mount_arg(ma, name, tbuf, -1));
2234 * Plain argument.
2236 * If length is -1, treat value as a C string.
2238 struct mntarg *
2239 mount_arg(struct mntarg *ma, const char *name, const void *val, int len)
2242 if (ma == NULL) {
2243 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
2244 SLIST_INIT(&ma->list);
2246 if (ma->error)
2247 return (ma);
2249 ma->v = realloc(ma->v, sizeof *ma->v * (ma->len + 2),
2250 M_MOUNT, M_WAITOK);
2251 ma->v[ma->len].iov_base = (void *)(uintptr_t)name;
2252 ma->v[ma->len].iov_len = strlen(name) + 1;
2253 ma->len++;
2255 ma->v[ma->len].iov_base = (void *)(uintptr_t)val;
2256 if (len < 0)
2257 ma->v[ma->len].iov_len = strlen(val) + 1;
2258 else
2259 ma->v[ma->len].iov_len = len;
2260 ma->len++;
2261 return (ma);
2265 * Free a mntarg structure
2267 static void
2268 free_mntarg(struct mntarg *ma)
2270 struct mntaarg *maa;
2272 while (!SLIST_EMPTY(&ma->list)) {
2273 maa = SLIST_FIRST(&ma->list);
2274 SLIST_REMOVE_HEAD(&ma->list, next);
2275 free(maa, M_MOUNT);
2277 free(ma->v, M_MOUNT);
2278 free(ma, M_MOUNT);
2282 * Mount a filesystem
2285 kernel_mount(struct mntarg *ma, int flags)
2287 struct uio auio;
2288 int error;
2290 KASSERT(ma != NULL, ("kernel_mount NULL ma"));
2291 KASSERT(ma->v != NULL, ("kernel_mount NULL ma->v"));
2292 KASSERT(!(ma->len & 1), ("kernel_mount odd ma->len (%d)", ma->len));
2294 auio.uio_iov = ma->v;
2295 auio.uio_iovcnt = ma->len;
2296 auio.uio_segflg = UIO_SYSSPACE;
2298 error = ma->error;
2299 if (!error)
2300 error = vfs_donmount(curthread, flags, &auio);
2301 free_mntarg(ma);
2302 return (error);
2306 * A printflike function to mount a filesystem.
2309 kernel_vmount(int flags, ...)
2311 struct mntarg *ma = NULL;
2312 va_list ap;
2313 const char *cp;
2314 const void *vp;
2315 int error;
2317 va_start(ap, flags);
2318 for (;;) {
2319 cp = va_arg(ap, const char *);
2320 if (cp == NULL)
2321 break;
2322 vp = va_arg(ap, const void *);
2323 ma = mount_arg(ma, cp, vp, (vp != NULL ? -1 : 0));
2325 va_end(ap);
2327 error = kernel_mount(ma, flags);
2328 return (error);