]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/kern/vfs_mount.c
MFC r230249:
[FreeBSD/stable/9.git] / sys / kern / vfs_mount.c
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.
11  *
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.
23  *
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.
35  */
36
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39
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/sbuf.h>
55 #include <sys/syscallsubr.h>
56 #include <sys/sysproto.h>
57 #include <sys/sx.h>
58 #include <sys/sysctl.h>
59 #include <sys/sysent.h>
60 #include <sys/systm.h>
61 #include <sys/vnode.h>
62 #include <vm/uma.h>
63
64 #include <geom/geom.h>
65
66 #include <machine/stdarg.h>
67
68 #include <security/audit/audit.h>
69 #include <security/mac/mac_framework.h>
70
71 #define VFS_MOUNTARG_SIZE_MAX   (1024 * 64)
72
73 static int      vfs_domount(struct thread *td, const char *fstype, char *fspath,
74                     uint64_t fsflags, struct vfsoptlist **optlist);
75 static void     free_mntarg(struct mntarg *ma);
76
77 static int      usermount = 0;
78 SYSCTL_INT(_vfs, OID_AUTO, usermount, CTLFLAG_RW, &usermount, 0,
79     "Unprivileged users may mount and unmount file systems");
80
81 MALLOC_DEFINE(M_MOUNT, "mount", "vfs mount structure");
82 MALLOC_DEFINE(M_VNODE_MARKER, "vnodemarker", "vnode marker");
83 static uma_zone_t mount_zone;
84
85 /* List of mounted filesystems. */
86 struct mntlist mountlist = TAILQ_HEAD_INITIALIZER(mountlist);
87
88 /* For any iteration/modification of mountlist */
89 struct mtx mountlist_mtx;
90 MTX_SYSINIT(mountlist, &mountlist_mtx, "mountlist", MTX_DEF);
91
92 /*
93  * Global opts, taken by all filesystems
94  */
95 static const char *global_opts[] = {
96         "errmsg",
97         "fstype",
98         "fspath",
99         "ro",
100         "rw",
101         "nosuid",
102         "noexec",
103         NULL
104 };
105
106 static int
107 mount_init(void *mem, int size, int flags)
108 {
109         struct mount *mp;
110
111         mp = (struct mount *)mem;
112         mtx_init(&mp->mnt_mtx, "struct mount mtx", NULL, MTX_DEF);
113         lockinit(&mp->mnt_explock, PVFS, "explock", 0, 0);
114         return (0);
115 }
116
117 static void
118 mount_fini(void *mem, int size)
119 {
120         struct mount *mp;
121
122         mp = (struct mount *)mem;
123         lockdestroy(&mp->mnt_explock);
124         mtx_destroy(&mp->mnt_mtx);
125 }
126
127 static void
128 vfs_mount_init(void *dummy __unused)
129 {
130
131         mount_zone = uma_zcreate("Mountpoints", sizeof(struct mount), NULL,
132             NULL, mount_init, mount_fini, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
133 }
134 SYSINIT(vfs_mount, SI_SUB_VFS, SI_ORDER_ANY, vfs_mount_init, NULL);
135
136 /*
137  * ---------------------------------------------------------------------
138  * Functions for building and sanitizing the mount options
139  */
140
141 /* Remove one mount option. */
142 static void
143 vfs_freeopt(struct vfsoptlist *opts, struct vfsopt *opt)
144 {
145
146         TAILQ_REMOVE(opts, opt, link);
147         free(opt->name, M_MOUNT);
148         if (opt->value != NULL)
149                 free(opt->value, M_MOUNT);
150         free(opt, M_MOUNT);
151 }
152
153 /* Release all resources related to the mount options. */
154 void
155 vfs_freeopts(struct vfsoptlist *opts)
156 {
157         struct vfsopt *opt;
158
159         while (!TAILQ_EMPTY(opts)) {
160                 opt = TAILQ_FIRST(opts);
161                 vfs_freeopt(opts, opt);
162         }
163         free(opts, M_MOUNT);
164 }
165
166 void
167 vfs_deleteopt(struct vfsoptlist *opts, const char *name)
168 {
169         struct vfsopt *opt, *temp;
170
171         if (opts == NULL)
172                 return;
173         TAILQ_FOREACH_SAFE(opt, opts, link, temp)  {
174                 if (strcmp(opt->name, name) == 0)
175                         vfs_freeopt(opts, opt);
176         }
177 }
178
179 static int
180 vfs_isopt_ro(const char *opt)
181 {
182
183         if (strcmp(opt, "ro") == 0 || strcmp(opt, "rdonly") == 0 ||
184             strcmp(opt, "norw") == 0)
185                 return (1);
186         return (0);
187 }
188
189 static int
190 vfs_isopt_rw(const char *opt)
191 {
192
193         if (strcmp(opt, "rw") == 0 || strcmp(opt, "noro") == 0)
194                 return (1);
195         return (0);
196 }
197
198 /*
199  * Check if options are equal (with or without the "no" prefix).
200  */
201 static int
202 vfs_equalopts(const char *opt1, const char *opt2)
203 {
204         char *p;
205
206         /* "opt" vs. "opt" or "noopt" vs. "noopt" */
207         if (strcmp(opt1, opt2) == 0)
208                 return (1);
209         /* "noopt" vs. "opt" */
210         if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0)
211                 return (1);
212         /* "opt" vs. "noopt" */
213         if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0)
214                 return (1);
215         while ((p = strchr(opt1, '.')) != NULL &&
216             !strncmp(opt1, opt2, ++p - opt1)) {
217                 opt2 += p - opt1;
218                 opt1 = p;
219                 /* "foo.noopt" vs. "foo.opt" */
220                 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0)
221                         return (1);
222                 /* "foo.opt" vs. "foo.noopt" */
223                 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0)
224                         return (1);
225         }
226         /* "ro" / "rdonly" / "norw" / "rw" / "noro" */
227         if ((vfs_isopt_ro(opt1) || vfs_isopt_rw(opt1)) &&
228             (vfs_isopt_ro(opt2) || vfs_isopt_rw(opt2)))
229                 return (1);
230         return (0);
231 }
232
233 /*
234  * If a mount option is specified several times,
235  * (with or without the "no" prefix) only keep
236  * the last occurence of it.
237  */
238 static void
239 vfs_sanitizeopts(struct vfsoptlist *opts)
240 {
241         struct vfsopt *opt, *opt2, *tmp;
242
243         TAILQ_FOREACH_REVERSE(opt, opts, vfsoptlist, link) {
244                 opt2 = TAILQ_PREV(opt, vfsoptlist, link);
245                 while (opt2 != NULL) {
246                         if (vfs_equalopts(opt->name, opt2->name)) {
247                                 tmp = TAILQ_PREV(opt2, vfsoptlist, link);
248                                 vfs_freeopt(opts, opt2);
249                                 opt2 = tmp;
250                         } else {
251                                 opt2 = TAILQ_PREV(opt2, vfsoptlist, link);
252                         }
253                 }
254         }
255 }
256
257 /*
258  * Build a linked list of mount options from a struct uio.
259  */
260 int
261 vfs_buildopts(struct uio *auio, struct vfsoptlist **options)
262 {
263         struct vfsoptlist *opts;
264         struct vfsopt *opt;
265         size_t memused, namelen, optlen;
266         unsigned int i, iovcnt;
267         int error;
268
269         opts = malloc(sizeof(struct vfsoptlist), M_MOUNT, M_WAITOK);
270         TAILQ_INIT(opts);
271         memused = 0;
272         iovcnt = auio->uio_iovcnt;
273         for (i = 0; i < iovcnt; i += 2) {
274                 namelen = auio->uio_iov[i].iov_len;
275                 optlen = auio->uio_iov[i + 1].iov_len;
276                 memused += sizeof(struct vfsopt) + optlen + namelen;
277                 /*
278                  * Avoid consuming too much memory, and attempts to overflow
279                  * memused.
280                  */
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;
286                 }
287
288                 opt = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
289                 opt->name = malloc(namelen, M_MOUNT, M_WAITOK);
290                 opt->value = NULL;
291                 opt->len = 0;
292                 opt->pos = i / 2;
293                 opt->seen = 0;
294
295                 /*
296                  * Do this early, so jumps to "bad" will free the current
297                  * option.
298                  */
299                 TAILQ_INSERT_TAIL(opts, opt, link);
300
301                 if (auio->uio_segflg == UIO_SYSSPACE) {
302                         bcopy(auio->uio_iov[i].iov_base, opt->name, namelen);
303                 } else {
304                         error = copyin(auio->uio_iov[i].iov_base, opt->name,
305                             namelen);
306                         if (error)
307                                 goto bad;
308                 }
309                 /* Ensure names are null-terminated strings. */
310                 if (namelen == 0 || opt->name[namelen - 1] != '\0') {
311                         error = EINVAL;
312                         goto bad;
313                 }
314                 if (optlen != 0) {
315                         opt->len = optlen;
316                         opt->value = malloc(optlen, M_MOUNT, M_WAITOK);
317                         if (auio->uio_segflg == UIO_SYSSPACE) {
318                                 bcopy(auio->uio_iov[i + 1].iov_base, opt->value,
319                                     optlen);
320                         } else {
321                                 error = copyin(auio->uio_iov[i + 1].iov_base,
322                                     opt->value, optlen);
323                                 if (error)
324                                         goto bad;
325                         }
326                 }
327         }
328         vfs_sanitizeopts(opts);
329         *options = opts;
330         return (0);
331 bad:
332         vfs_freeopts(opts);
333         return (error);
334 }
335
336 /*
337  * Merge the old mount options with the new ones passed
338  * in the MNT_UPDATE case.
339  *
340  * XXX: This function will keep a "nofoo" option in the new
341  * options.  E.g, if the option's canonical name is "foo",
342  * "nofoo" ends up in the mount point's active options.
343  */
344 static void
345 vfs_mergeopts(struct vfsoptlist *toopts, struct vfsoptlist *oldopts)
346 {
347         struct vfsopt *opt, *new;
348
349         TAILQ_FOREACH(opt, oldopts, link) {
350                 new = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
351                 new->name = strdup(opt->name, M_MOUNT);
352                 if (opt->len != 0) {
353                         new->value = malloc(opt->len, M_MOUNT, M_WAITOK);
354                         bcopy(opt->value, new->value, opt->len);
355                 } else
356                         new->value = NULL;
357                 new->len = opt->len;
358                 new->seen = opt->seen;
359                 TAILQ_INSERT_HEAD(toopts, new, link);
360         }
361         vfs_sanitizeopts(toopts);
362 }
363
364 /*
365  * Mount a filesystem.
366  */
367 int
368 sys_nmount(td, uap)
369         struct thread *td;
370         struct nmount_args /* {
371                 struct iovec *iovp;
372                 unsigned int iovcnt;
373                 int flags;
374         } */ *uap;
375 {
376         struct uio *auio;
377         int error;
378         u_int iovcnt;
379         uint64_t flags;
380
381         /*
382          * Mount flags are now 64-bits. On 32-bit archtectures only
383          * 32-bits are passed in, but from here on everything handles
384          * 64-bit flags correctly.
385          */
386         flags = uap->flags;
387
388         AUDIT_ARG_FFLAGS(flags);
389         CTR4(KTR_VFS, "%s: iovp %p with iovcnt %d and flags %d", __func__,
390             uap->iovp, uap->iovcnt, flags);
391
392         /*
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 by the kernel when mounting its
397          * root file system.
398          */
399         flags &= ~MNT_ROOTFS;
400
401         iovcnt = uap->iovcnt;
402         /*
403          * Check that we have an even number of iovec's
404          * and that we have at least two options.
405          */
406         if ((iovcnt & 1) || (iovcnt < 4)) {
407                 CTR2(KTR_VFS, "%s: failed for invalid iovcnt %d", __func__,
408                     uap->iovcnt);
409                 return (EINVAL);
410         }
411
412         error = copyinuio(uap->iovp, iovcnt, &auio);
413         if (error) {
414                 CTR2(KTR_VFS, "%s: failed for invalid uio op with %d errno",
415                     __func__, error);
416                 return (error);
417         }
418         error = vfs_donmount(td, flags, auio);
419
420         free(auio, M_IOV);
421         return (error);
422 }
423
424 /*
425  * ---------------------------------------------------------------------
426  * Various utility functions
427  */
428
429 void
430 vfs_ref(struct mount *mp)
431 {
432
433         CTR2(KTR_VFS, "%s: mp %p", __func__, mp);
434         MNT_ILOCK(mp);
435         MNT_REF(mp);
436         MNT_IUNLOCK(mp);
437 }
438
439 void
440 vfs_rel(struct mount *mp)
441 {
442
443         CTR2(KTR_VFS, "%s: mp %p", __func__, mp);
444         MNT_ILOCK(mp);
445         MNT_REL(mp);
446         MNT_IUNLOCK(mp);
447 }
448
449 /*
450  * Allocate and initialize the mount point struct.
451  */
452 struct mount *
453 vfs_mount_alloc(struct vnode *vp, struct vfsconf *vfsp, const char *fspath,
454     struct ucred *cred)
455 {
456         struct mount *mp;
457
458         mp = uma_zalloc(mount_zone, M_WAITOK);
459         bzero(&mp->mnt_startzero,
460             __rangeof(struct mount, mnt_startzero, mnt_endzero));
461         TAILQ_INIT(&mp->mnt_nvnodelist);
462         mp->mnt_nvnodelistsize = 0;
463         mp->mnt_ref = 0;
464         (void) vfs_busy(mp, MBF_NOWAIT);
465         mp->mnt_op = vfsp->vfc_vfsops;
466         mp->mnt_vfc = vfsp;
467         vfsp->vfc_refcount++;   /* XXX Unlocked */
468         mp->mnt_stat.f_type = vfsp->vfc_typenum;
469         mp->mnt_gen++;
470         strlcpy(mp->mnt_stat.f_fstypename, vfsp->vfc_name, MFSNAMELEN);
471         mp->mnt_vnodecovered = vp;
472         mp->mnt_cred = crdup(cred);
473         mp->mnt_stat.f_owner = cred->cr_uid;
474         strlcpy(mp->mnt_stat.f_mntonname, fspath, MNAMELEN);
475         mp->mnt_iosize_max = DFLTPHYS;
476 #ifdef MAC
477         mac_mount_init(mp);
478         mac_mount_create(cred, mp);
479 #endif
480         arc4rand(&mp->mnt_hashseed, sizeof mp->mnt_hashseed, 0);
481         return (mp);
482 }
483
484 /*
485  * Destroy the mount struct previously allocated by vfs_mount_alloc().
486  */
487 void
488 vfs_mount_destroy(struct mount *mp)
489 {
490
491         MNT_ILOCK(mp);
492         mp->mnt_kern_flag |= MNTK_REFEXPIRE;
493         if (mp->mnt_kern_flag & MNTK_MWAIT) {
494                 mp->mnt_kern_flag &= ~MNTK_MWAIT;
495                 wakeup(mp);
496         }
497         while (mp->mnt_ref)
498                 msleep(mp, MNT_MTX(mp), PVFS, "mntref", 0);
499         KASSERT(mp->mnt_ref == 0,
500             ("%s: invalid refcount in the drain path @ %s:%d", __func__,
501             __FILE__, __LINE__));
502         if (mp->mnt_writeopcount != 0)
503                 panic("vfs_mount_destroy: nonzero writeopcount");
504         if (mp->mnt_secondary_writes != 0)
505                 panic("vfs_mount_destroy: nonzero secondary_writes");
506         mp->mnt_vfc->vfc_refcount--;
507         if (!TAILQ_EMPTY(&mp->mnt_nvnodelist)) {
508                 struct vnode *vp;
509
510                 TAILQ_FOREACH(vp, &mp->mnt_nvnodelist, v_nmntvnodes)
511                         vprint("", vp);
512                 panic("unmount: dangling vnode");
513         }
514         if (mp->mnt_nvnodelistsize != 0)
515                 panic("vfs_mount_destroy: nonzero nvnodelistsize");
516         if (mp->mnt_lockref != 0)
517                 panic("vfs_mount_destroy: nonzero lock refcount");
518         MNT_IUNLOCK(mp);
519 #ifdef MAC
520         mac_mount_destroy(mp);
521 #endif
522         if (mp->mnt_opt != NULL)
523                 vfs_freeopts(mp->mnt_opt);
524         crfree(mp->mnt_cred);
525         uma_zfree(mount_zone, mp);
526 }
527
528 int
529 vfs_donmount(struct thread *td, uint64_t fsflags, struct uio *fsoptions)
530 {
531         struct vfsoptlist *optlist;
532         struct vfsopt *opt, *tmp_opt;
533         char *fstype, *fspath, *errmsg;
534         int error, fstypelen, fspathlen, errmsg_len, errmsg_pos;
535
536         errmsg = fspath = NULL;
537         errmsg_len = fspathlen = 0;
538         errmsg_pos = -1;
539
540         error = vfs_buildopts(fsoptions, &optlist);
541         if (error)
542                 return (error);
543
544         if (vfs_getopt(optlist, "errmsg", (void **)&errmsg, &errmsg_len) == 0)
545                 errmsg_pos = vfs_getopt_pos(optlist, "errmsg");
546
547         /*
548          * We need these two options before the others,
549          * and they are mandatory for any filesystem.
550          * Ensure they are NUL terminated as well.
551          */
552         fstypelen = 0;
553         error = vfs_getopt(optlist, "fstype", (void **)&fstype, &fstypelen);
554         if (error || fstype[fstypelen - 1] != '\0') {
555                 error = EINVAL;
556                 if (errmsg != NULL)
557                         strncpy(errmsg, "Invalid fstype", errmsg_len);
558                 goto bail;
559         }
560         fspathlen = 0;
561         error = vfs_getopt(optlist, "fspath", (void **)&fspath, &fspathlen);
562         if (error || fspath[fspathlen - 1] != '\0') {
563                 error = EINVAL;
564                 if (errmsg != NULL)
565                         strncpy(errmsg, "Invalid fspath", errmsg_len);
566                 goto bail;
567         }
568
569         /*
570          * We need to see if we have the "update" option
571          * before we call vfs_domount(), since vfs_domount() has special
572          * logic based on MNT_UPDATE.  This is very important
573          * when we want to update the root filesystem.
574          */
575         TAILQ_FOREACH_SAFE(opt, optlist, link, tmp_opt) {
576                 if (strcmp(opt->name, "update") == 0) {
577                         fsflags |= MNT_UPDATE;
578                         vfs_freeopt(optlist, opt);
579                 }
580                 else if (strcmp(opt->name, "async") == 0)
581                         fsflags |= MNT_ASYNC;
582                 else if (strcmp(opt->name, "force") == 0) {
583                         fsflags |= MNT_FORCE;
584                         vfs_freeopt(optlist, opt);
585                 }
586                 else if (strcmp(opt->name, "reload") == 0) {
587                         fsflags |= MNT_RELOAD;
588                         vfs_freeopt(optlist, opt);
589                 }
590                 else if (strcmp(opt->name, "multilabel") == 0)
591                         fsflags |= MNT_MULTILABEL;
592                 else if (strcmp(opt->name, "noasync") == 0)
593                         fsflags &= ~MNT_ASYNC;
594                 else if (strcmp(opt->name, "noatime") == 0)
595                         fsflags |= MNT_NOATIME;
596                 else if (strcmp(opt->name, "atime") == 0) {
597                         free(opt->name, M_MOUNT);
598                         opt->name = strdup("nonoatime", M_MOUNT);
599                 }
600                 else if (strcmp(opt->name, "noclusterr") == 0)
601                         fsflags |= MNT_NOCLUSTERR;
602                 else if (strcmp(opt->name, "clusterr") == 0) {
603                         free(opt->name, M_MOUNT);
604                         opt->name = strdup("nonoclusterr", M_MOUNT);
605                 }
606                 else if (strcmp(opt->name, "noclusterw") == 0)
607                         fsflags |= MNT_NOCLUSTERW;
608                 else if (strcmp(opt->name, "clusterw") == 0) {
609                         free(opt->name, M_MOUNT);
610                         opt->name = strdup("nonoclusterw", M_MOUNT);
611                 }
612                 else if (strcmp(opt->name, "noexec") == 0)
613                         fsflags |= MNT_NOEXEC;
614                 else if (strcmp(opt->name, "exec") == 0) {
615                         free(opt->name, M_MOUNT);
616                         opt->name = strdup("nonoexec", M_MOUNT);
617                 }
618                 else if (strcmp(opt->name, "nosuid") == 0)
619                         fsflags |= MNT_NOSUID;
620                 else if (strcmp(opt->name, "suid") == 0) {
621                         free(opt->name, M_MOUNT);
622                         opt->name = strdup("nonosuid", M_MOUNT);
623                 }
624                 else if (strcmp(opt->name, "nosymfollow") == 0)
625                         fsflags |= MNT_NOSYMFOLLOW;
626                 else if (strcmp(opt->name, "symfollow") == 0) {
627                         free(opt->name, M_MOUNT);
628                         opt->name = strdup("nonosymfollow", M_MOUNT);
629                 }
630                 else if (strcmp(opt->name, "noro") == 0)
631                         fsflags &= ~MNT_RDONLY;
632                 else if (strcmp(opt->name, "rw") == 0)
633                         fsflags &= ~MNT_RDONLY;
634                 else if (strcmp(opt->name, "ro") == 0)
635                         fsflags |= MNT_RDONLY;
636                 else if (strcmp(opt->name, "rdonly") == 0) {
637                         free(opt->name, M_MOUNT);
638                         opt->name = strdup("ro", M_MOUNT);
639                         fsflags |= MNT_RDONLY;
640                 }
641                 else if (strcmp(opt->name, "suiddir") == 0)
642                         fsflags |= MNT_SUIDDIR;
643                 else if (strcmp(opt->name, "sync") == 0)
644                         fsflags |= MNT_SYNCHRONOUS;
645                 else if (strcmp(opt->name, "union") == 0)
646                         fsflags |= MNT_UNION;
647         }
648
649         /*
650          * Be ultra-paranoid about making sure the type and fspath
651          * variables will fit in our mp buffers, including the
652          * terminating NUL.
653          */
654         if (fstypelen >= MFSNAMELEN - 1 || fspathlen >= MNAMELEN - 1) {
655                 error = ENAMETOOLONG;
656                 goto bail;
657         }
658
659         error = vfs_domount(td, fstype, fspath, fsflags, &optlist);
660 bail:
661         /* copyout the errmsg */
662         if (errmsg_pos != -1 && ((2 * errmsg_pos + 1) < fsoptions->uio_iovcnt)
663             && errmsg_len > 0 && errmsg != NULL) {
664                 if (fsoptions->uio_segflg == UIO_SYSSPACE) {
665                         bcopy(errmsg,
666                             fsoptions->uio_iov[2 * errmsg_pos + 1].iov_base,
667                             fsoptions->uio_iov[2 * errmsg_pos + 1].iov_len);
668                 } else {
669                         copyout(errmsg,
670                             fsoptions->uio_iov[2 * errmsg_pos + 1].iov_base,
671                             fsoptions->uio_iov[2 * errmsg_pos + 1].iov_len);
672                 }
673         }
674
675         if (optlist != NULL)
676                 vfs_freeopts(optlist);
677         return (error);
678 }
679
680 /*
681  * Old mount API.
682  */
683 #ifndef _SYS_SYSPROTO_H_
684 struct mount_args {
685         char    *type;
686         char    *path;
687         int     flags;
688         caddr_t data;
689 };
690 #endif
691 /* ARGSUSED */
692 int
693 sys_mount(td, uap)
694         struct thread *td;
695         struct mount_args /* {
696                 char *type;
697                 char *path;
698                 int flags;
699                 caddr_t data;
700         } */ *uap;
701 {
702         char *fstype;
703         struct vfsconf *vfsp = NULL;
704         struct mntarg *ma = NULL;
705         uint64_t flags;
706         int error;
707
708         /*
709          * Mount flags are now 64-bits. On 32-bit archtectures only
710          * 32-bits are passed in, but from here on everything handles
711          * 64-bit flags correctly.
712          */
713         flags = uap->flags;
714
715         AUDIT_ARG_FFLAGS(flags);
716
717         /*
718          * Filter out MNT_ROOTFS.  We do not want clients of mount() in
719          * userspace to set this flag, but we must filter it out if we want
720          * MNT_UPDATE on the root file system to work.
721          * MNT_ROOTFS should only be set by the kernel when mounting its
722          * root file system.
723          */
724         flags &= ~MNT_ROOTFS;
725
726         fstype = malloc(MFSNAMELEN, M_TEMP, M_WAITOK);
727         error = copyinstr(uap->type, fstype, MFSNAMELEN, NULL);
728         if (error) {
729                 free(fstype, M_TEMP);
730                 return (error);
731         }
732
733         AUDIT_ARG_TEXT(fstype);
734         mtx_lock(&Giant);
735         vfsp = vfs_byname_kld(fstype, td, &error);
736         free(fstype, M_TEMP);
737         if (vfsp == NULL) {
738                 mtx_unlock(&Giant);
739                 return (ENOENT);
740         }
741         if (vfsp->vfc_vfsops->vfs_cmount == NULL) {
742                 mtx_unlock(&Giant);
743                 return (EOPNOTSUPP);
744         }
745
746         ma = mount_argsu(ma, "fstype", uap->type, MNAMELEN);
747         ma = mount_argsu(ma, "fspath", uap->path, MNAMELEN);
748         ma = mount_argb(ma, flags & MNT_RDONLY, "noro");
749         ma = mount_argb(ma, !(flags & MNT_NOSUID), "nosuid");
750         ma = mount_argb(ma, !(flags & MNT_NOEXEC), "noexec");
751
752         error = vfsp->vfc_vfsops->vfs_cmount(ma, uap->data, flags);
753         mtx_unlock(&Giant);
754         return (error);
755 }
756
757 /*
758  * vfs_domount_first(): first file system mount (not update)
759  */
760 static int
761 vfs_domount_first(
762         struct thread *td,              /* Calling thread. */
763         struct vfsconf *vfsp,           /* File system type. */
764         char *fspath,                   /* Mount path. */
765         struct vnode *vp,               /* Vnode to be covered. */
766         uint64_t fsflags,               /* Flags common to all filesystems. */
767         struct vfsoptlist **optlist     /* Options local to the filesystem. */
768         )
769 {
770         struct vattr va;
771         struct mount *mp;
772         struct vnode *newdp;
773         int error;
774
775         mtx_assert(&Giant, MA_OWNED);
776         ASSERT_VOP_ELOCKED(vp, __func__);
777         KASSERT((fsflags & MNT_UPDATE) == 0, ("MNT_UPDATE shouldn't be here"));
778
779         /*
780          * If the user is not root, ensure that they own the directory
781          * onto which we are attempting to mount.
782          */
783         error = VOP_GETATTR(vp, &va, td->td_ucred);
784         if (error == 0 && va.va_uid != td->td_ucred->cr_uid)
785                 error = priv_check_cred(td->td_ucred, PRIV_VFS_ADMIN, 0);
786         if (error == 0)
787                 error = vinvalbuf(vp, V_SAVE, 0, 0);
788         if (error == 0 && vp->v_type != VDIR)
789                 error = ENOTDIR;
790         if (error == 0) {
791                 VI_LOCK(vp);
792                 if ((vp->v_iflag & VI_MOUNT) == 0 && vp->v_mountedhere == NULL)
793                         vp->v_iflag |= VI_MOUNT;
794                 else
795                         error = EBUSY;
796                 VI_UNLOCK(vp);
797         }
798         if (error != 0) {
799                 vput(vp);
800                 return (error);
801         }
802         VOP_UNLOCK(vp, 0);
803
804         /* Allocate and initialize the filesystem. */
805         mp = vfs_mount_alloc(vp, vfsp, fspath, td->td_ucred);
806         /* XXXMAC: pass to vfs_mount_alloc? */
807         mp->mnt_optnew = *optlist;
808         /* Set the mount level flags. */
809         mp->mnt_flag = (fsflags & (MNT_UPDATEMASK | MNT_ROOTFS | MNT_RDONLY));
810
811         /*
812          * Mount the filesystem.
813          * XXX The final recipients of VFS_MOUNT just overwrite the ndp they
814          * get.  No freeing of cn_pnbuf.
815          */
816         error = VFS_MOUNT(mp);
817         if (error != 0) {
818                 vfs_unbusy(mp);
819                 vfs_mount_destroy(mp);
820                 VI_LOCK(vp);
821                 vp->v_iflag &= ~VI_MOUNT;
822                 VI_UNLOCK(vp);
823                 vrele(vp);
824                 return (error);
825         }
826
827         if (mp->mnt_opt != NULL)
828                 vfs_freeopts(mp->mnt_opt);
829         mp->mnt_opt = mp->mnt_optnew;
830         *optlist = NULL;
831         (void)VFS_STATFS(mp, &mp->mnt_stat);
832
833         /*
834          * Prevent external consumers of mount options from reading mnt_optnew.
835          */
836         mp->mnt_optnew = NULL;
837
838         MNT_ILOCK(mp);
839         if ((mp->mnt_flag & MNT_ASYNC) != 0 && mp->mnt_noasync == 0)
840                 mp->mnt_kern_flag |= MNTK_ASYNC;
841         else
842                 mp->mnt_kern_flag &= ~MNTK_ASYNC;
843         MNT_IUNLOCK(mp);
844
845         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
846         cache_purge(vp);
847         VI_LOCK(vp);
848         vp->v_iflag &= ~VI_MOUNT;
849         VI_UNLOCK(vp);
850         vp->v_mountedhere = mp;
851         /* Place the new filesystem at the end of the mount list. */
852         mtx_lock(&mountlist_mtx);
853         TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
854         mtx_unlock(&mountlist_mtx);
855         vfs_event_signal(NULL, VQ_MOUNT, 0);
856         if (VFS_ROOT(mp, LK_EXCLUSIVE, &newdp))
857                 panic("mount: lost mount");
858         VOP_UNLOCK(newdp, 0);
859         VOP_UNLOCK(vp, 0);
860         mountcheckdirs(vp, newdp);
861         vrele(newdp);
862         if ((mp->mnt_flag & MNT_RDONLY) == 0)
863                 vfs_allocate_syncvnode(mp);
864         vfs_unbusy(mp);
865         return (0);
866 }
867
868 /*
869  * vfs_domount_update(): update of mounted file system
870  */
871 static int
872 vfs_domount_update(
873         struct thread *td,              /* Calling thread. */
874         struct vnode *vp,               /* Mount point vnode. */
875         uint64_t fsflags,               /* Flags common to all filesystems. */
876         struct vfsoptlist **optlist     /* Options local to the filesystem. */
877         )
878 {
879         struct oexport_args oexport;
880         struct export_args export;
881         struct mount *mp;
882         int error, export_error;
883         uint64_t flag;
884
885         mtx_assert(&Giant, MA_OWNED);
886         ASSERT_VOP_ELOCKED(vp, __func__);
887         KASSERT((fsflags & MNT_UPDATE) != 0, ("MNT_UPDATE should be here"));
888
889         if ((vp->v_vflag & VV_ROOT) == 0) {
890                 vput(vp);
891                 return (EINVAL);
892         }
893         mp = vp->v_mount;
894         /*
895          * We only allow the filesystem to be reloaded if it
896          * is currently mounted read-only.
897          */
898         flag = mp->mnt_flag;
899         if ((fsflags & MNT_RELOAD) != 0 && (flag & MNT_RDONLY) == 0) {
900                 vput(vp);
901                 return (EOPNOTSUPP);    /* Needs translation */
902         }
903         /*
904          * Only privileged root, or (if MNT_USER is set) the user that
905          * did the original mount is permitted to update it.
906          */
907         error = vfs_suser(mp, td);
908         if (error != 0) {
909                 vput(vp);
910                 return (error);
911         }
912         if (vfs_busy(mp, MBF_NOWAIT)) {
913                 vput(vp);
914                 return (EBUSY);
915         }
916         VI_LOCK(vp);
917         if ((vp->v_iflag & VI_MOUNT) != 0 || vp->v_mountedhere != NULL) {
918                 VI_UNLOCK(vp);
919                 vfs_unbusy(mp);
920                 vput(vp);
921                 return (EBUSY);
922         }
923         vp->v_iflag |= VI_MOUNT;
924         VI_UNLOCK(vp);
925         VOP_UNLOCK(vp, 0);
926
927         MNT_ILOCK(mp);
928         mp->mnt_flag &= ~MNT_UPDATEMASK;
929         mp->mnt_flag |= fsflags & (MNT_RELOAD | MNT_FORCE | MNT_UPDATE |
930             MNT_SNAPSHOT | MNT_ROOTFS | MNT_UPDATEMASK | MNT_RDONLY);
931         if ((mp->mnt_flag & MNT_ASYNC) == 0)
932                 mp->mnt_kern_flag &= ~MNTK_ASYNC;
933         MNT_IUNLOCK(mp);
934         mp->mnt_optnew = *optlist;
935         vfs_mergeopts(mp->mnt_optnew, mp->mnt_opt);
936
937         /*
938          * Mount the filesystem.
939          * XXX The final recipients of VFS_MOUNT just overwrite the ndp they
940          * get.  No freeing of cn_pnbuf.
941          */
942         error = VFS_MOUNT(mp);
943
944         export_error = 0;
945         if (error == 0) {
946                 /* Process the export option. */
947                 if (vfs_copyopt(mp->mnt_optnew, "export", &export,
948                     sizeof(export)) == 0) {
949                         export_error = vfs_export(mp, &export);
950                 } else if (vfs_copyopt(mp->mnt_optnew, "export", &oexport,
951                     sizeof(oexport)) == 0) {
952                         export.ex_flags = oexport.ex_flags;
953                         export.ex_root = oexport.ex_root;
954                         export.ex_anon = oexport.ex_anon;
955                         export.ex_addr = oexport.ex_addr;
956                         export.ex_addrlen = oexport.ex_addrlen;
957                         export.ex_mask = oexport.ex_mask;
958                         export.ex_masklen = oexport.ex_masklen;
959                         export.ex_indexfile = oexport.ex_indexfile;
960                         export.ex_numsecflavors = 0;
961                         export_error = vfs_export(mp, &export);
962                 }
963         }
964
965         MNT_ILOCK(mp);
966         if (error == 0) {
967                 mp->mnt_flag &= ~(MNT_UPDATE | MNT_RELOAD | MNT_FORCE |
968                     MNT_SNAPSHOT);
969         } else {
970                 /*
971                  * If we fail, restore old mount flags. MNT_QUOTA is special,
972                  * because it is not part of MNT_UPDATEMASK, but it could have
973                  * changed in the meantime if quotactl(2) was called.
974                  * All in all we want current value of MNT_QUOTA, not the old
975                  * one.
976                  */
977                 mp->mnt_flag = (mp->mnt_flag & MNT_QUOTA) | (flag & ~MNT_QUOTA);
978         }
979         if ((mp->mnt_flag & MNT_ASYNC) != 0 && mp->mnt_noasync == 0)
980                 mp->mnt_kern_flag |= MNTK_ASYNC;
981         else
982                 mp->mnt_kern_flag &= ~MNTK_ASYNC;
983         MNT_IUNLOCK(mp);
984
985         if (error != 0)
986                 goto end;
987
988         if (mp->mnt_opt != NULL)
989                 vfs_freeopts(mp->mnt_opt);
990         mp->mnt_opt = mp->mnt_optnew;
991         *optlist = NULL;
992         (void)VFS_STATFS(mp, &mp->mnt_stat);
993         /*
994          * Prevent external consumers of mount options from reading
995          * mnt_optnew.
996          */
997         mp->mnt_optnew = NULL;
998
999         if ((mp->mnt_flag & MNT_RDONLY) == 0)
1000                 vfs_allocate_syncvnode(mp);
1001         else
1002                 vfs_deallocate_syncvnode(mp);
1003 end:
1004         vfs_unbusy(mp);
1005         VI_LOCK(vp);
1006         vp->v_iflag &= ~VI_MOUNT;
1007         VI_UNLOCK(vp);
1008         vrele(vp);
1009         return (error != 0 ? error : export_error);
1010 }
1011
1012 /*
1013  * vfs_domount(): actually attempt a filesystem mount.
1014  */
1015 static int
1016 vfs_domount(
1017         struct thread *td,              /* Calling thread. */
1018         const char *fstype,             /* Filesystem type. */
1019         char *fspath,                   /* Mount path. */
1020         uint64_t fsflags,               /* Flags common to all filesystems. */
1021         struct vfsoptlist **optlist     /* Options local to the filesystem. */
1022         )
1023 {
1024         struct vfsconf *vfsp;
1025         struct nameidata nd;
1026         struct vnode *vp;
1027         int error;
1028
1029         /*
1030          * Be ultra-paranoid about making sure the type and fspath
1031          * variables will fit in our mp buffers, including the
1032          * terminating NUL.
1033          */
1034         if (strlen(fstype) >= MFSNAMELEN || strlen(fspath) >= MNAMELEN)
1035                 return (ENAMETOOLONG);
1036
1037         if (jailed(td->td_ucred) || usermount == 0) {
1038                 if ((error = priv_check(td, PRIV_VFS_MOUNT)) != 0)
1039                         return (error);
1040         }
1041
1042         /*
1043          * Do not allow NFS export or MNT_SUIDDIR by unprivileged users.
1044          */
1045         if (fsflags & MNT_EXPORTED) {
1046                 error = priv_check(td, PRIV_VFS_MOUNT_EXPORTED);
1047                 if (error)
1048                         return (error);
1049         }
1050         if (fsflags & MNT_SUIDDIR) {
1051                 error = priv_check(td, PRIV_VFS_MOUNT_SUIDDIR);
1052                 if (error)
1053                         return (error);
1054         }
1055         /*
1056          * Silently enforce MNT_NOSUID and MNT_USER for unprivileged users.
1057          */
1058         if ((fsflags & (MNT_NOSUID | MNT_USER)) != (MNT_NOSUID | MNT_USER)) {
1059                 if (priv_check(td, PRIV_VFS_MOUNT_NONUSER) != 0)
1060                         fsflags |= MNT_NOSUID | MNT_USER;
1061         }
1062
1063         /* Load KLDs before we lock the covered vnode to avoid reversals. */
1064         vfsp = NULL;
1065         if ((fsflags & MNT_UPDATE) == 0) {
1066                 /* Don't try to load KLDs if we're mounting the root. */
1067                 if (fsflags & MNT_ROOTFS)
1068                         vfsp = vfs_byname(fstype);
1069                 else
1070                         vfsp = vfs_byname_kld(fstype, td, &error);
1071                 if (vfsp == NULL)
1072                         return (ENODEV);
1073                 if (jailed(td->td_ucred) && !(vfsp->vfc_flags & VFCF_JAIL))
1074                         return (EPERM);
1075         }
1076
1077         /*
1078          * Get vnode to be covered or mount point's vnode in case of MNT_UPDATE.
1079          */
1080         NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | MPSAFE | AUDITVNODE1,
1081             UIO_SYSSPACE, fspath, td);
1082         error = namei(&nd);
1083         if (error != 0)
1084                 return (error);
1085         if (!NDHASGIANT(&nd))
1086                 mtx_lock(&Giant);
1087         NDFREE(&nd, NDF_ONLY_PNBUF);
1088         vp = nd.ni_vp;
1089         if ((fsflags & MNT_UPDATE) == 0) {
1090                 error = vfs_domount_first(td, vfsp, fspath, vp, fsflags,
1091                     optlist);
1092         } else {
1093                 error = vfs_domount_update(td, vp, fsflags, optlist);
1094         }
1095         mtx_unlock(&Giant);
1096
1097         ASSERT_VI_UNLOCKED(vp, __func__);
1098         ASSERT_VOP_UNLOCKED(vp, __func__);
1099
1100         return (error);
1101 }
1102
1103 /*
1104  * Unmount a filesystem.
1105  *
1106  * Note: unmount takes a path to the vnode mounted on as argument, not
1107  * special file (as before).
1108  */
1109 #ifndef _SYS_SYSPROTO_H_
1110 struct unmount_args {
1111         char    *path;
1112         int     flags;
1113 };
1114 #endif
1115 /* ARGSUSED */
1116 int
1117 sys_unmount(td, uap)
1118         struct thread *td;
1119         register struct unmount_args /* {
1120                 char *path;
1121                 int flags;
1122         } */ *uap;
1123 {
1124         struct mount *mp;
1125         char *pathbuf;
1126         int error, id0, id1;
1127
1128         AUDIT_ARG_VALUE(uap->flags);
1129         if (jailed(td->td_ucred) || usermount == 0) {
1130                 error = priv_check(td, PRIV_VFS_UNMOUNT);
1131                 if (error)
1132                         return (error);
1133         }
1134
1135         pathbuf = malloc(MNAMELEN, M_TEMP, M_WAITOK);
1136         error = copyinstr(uap->path, pathbuf, MNAMELEN, NULL);
1137         if (error) {
1138                 free(pathbuf, M_TEMP);
1139                 return (error);
1140         }
1141         mtx_lock(&Giant);
1142         if (uap->flags & MNT_BYFSID) {
1143                 AUDIT_ARG_TEXT(pathbuf);
1144                 /* Decode the filesystem ID. */
1145                 if (sscanf(pathbuf, "FSID:%d:%d", &id0, &id1) != 2) {
1146                         mtx_unlock(&Giant);
1147                         free(pathbuf, M_TEMP);
1148                         return (EINVAL);
1149                 }
1150
1151                 mtx_lock(&mountlist_mtx);
1152                 TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
1153                         if (mp->mnt_stat.f_fsid.val[0] == id0 &&
1154                             mp->mnt_stat.f_fsid.val[1] == id1)
1155                                 break;
1156                 }
1157                 mtx_unlock(&mountlist_mtx);
1158         } else {
1159                 AUDIT_ARG_UPATH1(td, pathbuf);
1160                 mtx_lock(&mountlist_mtx);
1161                 TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
1162                         if (strcmp(mp->mnt_stat.f_mntonname, pathbuf) == 0)
1163                                 break;
1164                 }
1165                 mtx_unlock(&mountlist_mtx);
1166         }
1167         free(pathbuf, M_TEMP);
1168         if (mp == NULL) {
1169                 /*
1170                  * Previously we returned ENOENT for a nonexistent path and
1171                  * EINVAL for a non-mountpoint.  We cannot tell these apart
1172                  * now, so in the !MNT_BYFSID case return the more likely
1173                  * EINVAL for compatibility.
1174                  */
1175                 mtx_unlock(&Giant);
1176                 return ((uap->flags & MNT_BYFSID) ? ENOENT : EINVAL);
1177         }
1178
1179         /*
1180          * Don't allow unmounting the root filesystem.
1181          */
1182         if (mp->mnt_flag & MNT_ROOTFS) {
1183                 mtx_unlock(&Giant);
1184                 return (EINVAL);
1185         }
1186         error = dounmount(mp, uap->flags, td);
1187         mtx_unlock(&Giant);
1188         return (error);
1189 }
1190
1191 /*
1192  * Do the actual filesystem unmount.
1193  */
1194 int
1195 dounmount(mp, flags, td)
1196         struct mount *mp;
1197         int flags;
1198         struct thread *td;
1199 {
1200         struct vnode *coveredvp, *fsrootvp;
1201         int error;
1202         uint64_t async_flag;
1203         int mnt_gen_r;
1204
1205         mtx_assert(&Giant, MA_OWNED);
1206
1207         if ((coveredvp = mp->mnt_vnodecovered) != NULL) {
1208                 mnt_gen_r = mp->mnt_gen;
1209                 VI_LOCK(coveredvp);
1210                 vholdl(coveredvp);
1211                 vn_lock(coveredvp, LK_EXCLUSIVE | LK_INTERLOCK | LK_RETRY);
1212                 vdrop(coveredvp);
1213                 /*
1214                  * Check for mp being unmounted while waiting for the
1215                  * covered vnode lock.
1216                  */
1217                 if (coveredvp->v_mountedhere != mp ||
1218                     coveredvp->v_mountedhere->mnt_gen != mnt_gen_r) {
1219                         VOP_UNLOCK(coveredvp, 0);
1220                         return (EBUSY);
1221                 }
1222         }
1223         /*
1224          * Only privileged root, or (if MNT_USER is set) the user that did the
1225          * original mount is permitted to unmount this filesystem.
1226          */
1227         error = vfs_suser(mp, td);
1228         if (error) {
1229                 if (coveredvp)
1230                         VOP_UNLOCK(coveredvp, 0);
1231                 return (error);
1232         }
1233
1234         MNT_ILOCK(mp);
1235         if (mp->mnt_kern_flag & MNTK_UNMOUNT) {
1236                 MNT_IUNLOCK(mp);
1237                 if (coveredvp)
1238                         VOP_UNLOCK(coveredvp, 0);
1239                 return (EBUSY);
1240         }
1241         mp->mnt_kern_flag |= MNTK_UNMOUNT | MNTK_NOINSMNTQ;
1242         /* Allow filesystems to detect that a forced unmount is in progress. */
1243         if (flags & MNT_FORCE)
1244                 mp->mnt_kern_flag |= MNTK_UNMOUNTF;
1245         error = 0;
1246         if (mp->mnt_lockref) {
1247                 mp->mnt_kern_flag |= MNTK_DRAINING;
1248                 error = msleep(&mp->mnt_lockref, MNT_MTX(mp), PVFS,
1249                     "mount drain", 0);
1250         }
1251         MNT_IUNLOCK(mp);
1252         KASSERT(mp->mnt_lockref == 0,
1253             ("%s: invalid lock refcount in the drain path @ %s:%d",
1254             __func__, __FILE__, __LINE__));
1255         KASSERT(error == 0,
1256             ("%s: invalid return value for msleep in the drain path @ %s:%d",
1257             __func__, __FILE__, __LINE__));
1258         vn_start_write(NULL, &mp, V_WAIT);
1259
1260         if (mp->mnt_flag & MNT_EXPUBLIC)
1261                 vfs_setpublicfs(NULL, NULL, NULL);
1262
1263         vfs_msync(mp, MNT_WAIT);
1264         MNT_ILOCK(mp);
1265         async_flag = mp->mnt_flag & MNT_ASYNC;
1266         mp->mnt_flag &= ~MNT_ASYNC;
1267         mp->mnt_kern_flag &= ~MNTK_ASYNC;
1268         MNT_IUNLOCK(mp);
1269         cache_purgevfs(mp);     /* remove cache entries for this file sys */
1270         vfs_deallocate_syncvnode(mp);
1271         /*
1272          * For forced unmounts, move process cdir/rdir refs on the fs root
1273          * vnode to the covered vnode.  For non-forced unmounts we want
1274          * such references to cause an EBUSY error.
1275          */
1276         if ((flags & MNT_FORCE) &&
1277             VFS_ROOT(mp, LK_EXCLUSIVE, &fsrootvp) == 0) {
1278                 if (mp->mnt_vnodecovered != NULL)
1279                         mountcheckdirs(fsrootvp, mp->mnt_vnodecovered);
1280                 if (fsrootvp == rootvnode) {
1281                         vrele(rootvnode);
1282                         rootvnode = NULL;
1283                 }
1284                 vput(fsrootvp);
1285         }
1286         if (((mp->mnt_flag & MNT_RDONLY) ||
1287              (error = VFS_SYNC(mp, MNT_WAIT)) == 0) || (flags & MNT_FORCE) != 0)
1288                 error = VFS_UNMOUNT(mp, flags);
1289         vn_finished_write(mp);
1290         /*
1291          * If we failed to flush the dirty blocks for this mount point,
1292          * undo all the cdir/rdir and rootvnode changes we made above.
1293          * Unless we failed to do so because the device is reporting that
1294          * it doesn't exist anymore.
1295          */
1296         if (error && error != ENXIO) {
1297                 if ((flags & MNT_FORCE) &&
1298                     VFS_ROOT(mp, LK_EXCLUSIVE, &fsrootvp) == 0) {
1299                         if (mp->mnt_vnodecovered != NULL)
1300                                 mountcheckdirs(mp->mnt_vnodecovered, fsrootvp);
1301                         if (rootvnode == NULL) {
1302                                 rootvnode = fsrootvp;
1303                                 vref(rootvnode);
1304                         }
1305                         vput(fsrootvp);
1306                 }
1307                 MNT_ILOCK(mp);
1308                 mp->mnt_kern_flag &= ~MNTK_NOINSMNTQ;
1309                 if ((mp->mnt_flag & MNT_RDONLY) == 0) {
1310                         MNT_IUNLOCK(mp);
1311                         vfs_allocate_syncvnode(mp);
1312                         MNT_ILOCK(mp);
1313                 }
1314                 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
1315                 mp->mnt_flag |= async_flag;
1316                 if ((mp->mnt_flag & MNT_ASYNC) != 0 && mp->mnt_noasync == 0)
1317                         mp->mnt_kern_flag |= MNTK_ASYNC;
1318                 if (mp->mnt_kern_flag & MNTK_MWAIT) {
1319                         mp->mnt_kern_flag &= ~MNTK_MWAIT;
1320                         wakeup(mp);
1321                 }
1322                 MNT_IUNLOCK(mp);
1323                 if (coveredvp)
1324                         VOP_UNLOCK(coveredvp, 0);
1325                 return (error);
1326         }
1327         mtx_lock(&mountlist_mtx);
1328         TAILQ_REMOVE(&mountlist, mp, mnt_list);
1329         mtx_unlock(&mountlist_mtx);
1330         if (coveredvp != NULL) {
1331                 coveredvp->v_mountedhere = NULL;
1332                 vput(coveredvp);
1333         }
1334         vfs_event_signal(NULL, VQ_UNMOUNT, 0);
1335         vfs_mount_destroy(mp);
1336         return (0);
1337 }
1338
1339 /*
1340  * Report errors during filesystem mounting.
1341  */
1342 void
1343 vfs_mount_error(struct mount *mp, const char *fmt, ...)
1344 {
1345         struct vfsoptlist *moptlist = mp->mnt_optnew;
1346         va_list ap;
1347         int error, len;
1348         char *errmsg;
1349
1350         error = vfs_getopt(moptlist, "errmsg", (void **)&errmsg, &len);
1351         if (error || errmsg == NULL || len <= 0)
1352                 return;
1353
1354         va_start(ap, fmt);
1355         vsnprintf(errmsg, (size_t)len, fmt, ap);
1356         va_end(ap);
1357 }
1358
1359 void
1360 vfs_opterror(struct vfsoptlist *opts, const char *fmt, ...)
1361 {
1362         va_list ap;
1363         int error, len;
1364         char *errmsg;
1365
1366         error = vfs_getopt(opts, "errmsg", (void **)&errmsg, &len);
1367         if (error || errmsg == NULL || len <= 0)
1368                 return;
1369
1370         va_start(ap, fmt);
1371         vsnprintf(errmsg, (size_t)len, fmt, ap);
1372         va_end(ap);
1373 }
1374
1375 /*
1376  * ---------------------------------------------------------------------
1377  * Functions for querying mount options/arguments from filesystems.
1378  */
1379
1380 /*
1381  * Check that no unknown options are given
1382  */
1383 int
1384 vfs_filteropt(struct vfsoptlist *opts, const char **legal)
1385 {
1386         struct vfsopt *opt;
1387         char errmsg[255];
1388         const char **t, *p, *q;
1389         int ret = 0;
1390
1391         TAILQ_FOREACH(opt, opts, link) {
1392                 p = opt->name;
1393                 q = NULL;
1394                 if (p[0] == 'n' && p[1] == 'o')
1395                         q = p + 2;
1396                 for(t = global_opts; *t != NULL; t++) {
1397                         if (strcmp(*t, p) == 0)
1398                                 break;
1399                         if (q != NULL) {
1400                                 if (strcmp(*t, q) == 0)
1401                                         break;
1402                         }
1403                 }
1404                 if (*t != NULL)
1405                         continue;
1406                 for(t = legal; *t != NULL; t++) {
1407                         if (strcmp(*t, p) == 0)
1408                                 break;
1409                         if (q != NULL) {
1410                                 if (strcmp(*t, q) == 0)
1411                                         break;
1412                         }
1413                 }
1414                 if (*t != NULL)
1415                         continue;
1416                 snprintf(errmsg, sizeof(errmsg),
1417                     "mount option <%s> is unknown", p);
1418                 ret = EINVAL;
1419         }
1420         if (ret != 0) {
1421                 TAILQ_FOREACH(opt, opts, link) {
1422                         if (strcmp(opt->name, "errmsg") == 0) {
1423                                 strncpy((char *)opt->value, errmsg, opt->len);
1424                                 break;
1425                         }
1426                 }
1427                 if (opt == NULL)
1428                         printf("%s\n", errmsg);
1429         }
1430         return (ret);
1431 }
1432
1433 /*
1434  * Get a mount option by its name.
1435  *
1436  * Return 0 if the option was found, ENOENT otherwise.
1437  * If len is non-NULL it will be filled with the length
1438  * of the option. If buf is non-NULL, it will be filled
1439  * with the address of the option.
1440  */
1441 int
1442 vfs_getopt(opts, name, buf, len)
1443         struct vfsoptlist *opts;
1444         const char *name;
1445         void **buf;
1446         int *len;
1447 {
1448         struct vfsopt *opt;
1449
1450         KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
1451
1452         TAILQ_FOREACH(opt, opts, link) {
1453                 if (strcmp(name, opt->name) == 0) {
1454                         opt->seen = 1;
1455                         if (len != NULL)
1456                                 *len = opt->len;
1457                         if (buf != NULL)
1458                                 *buf = opt->value;
1459                         return (0);
1460                 }
1461         }
1462         return (ENOENT);
1463 }
1464
1465 int
1466 vfs_getopt_pos(struct vfsoptlist *opts, const char *name)
1467 {
1468         struct vfsopt *opt;
1469
1470         if (opts == NULL)
1471                 return (-1);
1472
1473         TAILQ_FOREACH(opt, opts, link) {
1474                 if (strcmp(name, opt->name) == 0) {
1475                         opt->seen = 1;
1476                         return (opt->pos);
1477                 }
1478         }
1479         return (-1);
1480 }
1481
1482 char *
1483 vfs_getopts(struct vfsoptlist *opts, const char *name, int *error)
1484 {
1485         struct vfsopt *opt;
1486
1487         *error = 0;
1488         TAILQ_FOREACH(opt, opts, link) {
1489                 if (strcmp(name, opt->name) != 0)
1490                         continue;
1491                 opt->seen = 1;
1492                 if (opt->len == 0 ||
1493                     ((char *)opt->value)[opt->len - 1] != '\0') {
1494                         *error = EINVAL;
1495                         return (NULL);
1496                 }
1497                 return (opt->value);
1498         }
1499         *error = ENOENT;
1500         return (NULL);
1501 }
1502
1503 int
1504 vfs_flagopt(struct vfsoptlist *opts, const char *name, uint64_t *w,
1505         uint64_t val)
1506 {
1507         struct vfsopt *opt;
1508
1509         TAILQ_FOREACH(opt, opts, link) {
1510                 if (strcmp(name, opt->name) == 0) {
1511                         opt->seen = 1;
1512                         if (w != NULL)
1513                                 *w |= val;
1514                         return (1);
1515                 }
1516         }
1517         if (w != NULL)
1518                 *w &= ~val;
1519         return (0);
1520 }
1521
1522 int
1523 vfs_scanopt(struct vfsoptlist *opts, const char *name, const char *fmt, ...)
1524 {
1525         va_list ap;
1526         struct vfsopt *opt;
1527         int ret;
1528
1529         KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
1530
1531         TAILQ_FOREACH(opt, opts, link) {
1532                 if (strcmp(name, opt->name) != 0)
1533                         continue;
1534                 opt->seen = 1;
1535                 if (opt->len == 0 || opt->value == NULL)
1536                         return (0);
1537                 if (((char *)opt->value)[opt->len - 1] != '\0')
1538                         return (0);
1539                 va_start(ap, fmt);
1540                 ret = vsscanf(opt->value, fmt, ap);
1541                 va_end(ap);
1542                 return (ret);
1543         }
1544         return (0);
1545 }
1546
1547 int
1548 vfs_setopt(struct vfsoptlist *opts, const char *name, void *value, int len)
1549 {
1550         struct vfsopt *opt;
1551
1552         TAILQ_FOREACH(opt, opts, link) {
1553                 if (strcmp(name, opt->name) != 0)
1554                         continue;
1555                 opt->seen = 1;
1556                 if (opt->value == NULL)
1557                         opt->len = len;
1558                 else {
1559                         if (opt->len != len)
1560                                 return (EINVAL);
1561                         bcopy(value, opt->value, len);
1562                 }
1563                 return (0);
1564         }
1565         return (ENOENT);
1566 }
1567
1568 int
1569 vfs_setopt_part(struct vfsoptlist *opts, const char *name, void *value, int len)
1570 {
1571         struct vfsopt *opt;
1572
1573         TAILQ_FOREACH(opt, opts, link) {
1574                 if (strcmp(name, opt->name) != 0)
1575                         continue;
1576                 opt->seen = 1;
1577                 if (opt->value == NULL)
1578                         opt->len = len;
1579                 else {
1580                         if (opt->len < len)
1581                                 return (EINVAL);
1582                         opt->len = len;
1583                         bcopy(value, opt->value, len);
1584                 }
1585                 return (0);
1586         }
1587         return (ENOENT);
1588 }
1589
1590 int
1591 vfs_setopts(struct vfsoptlist *opts, const char *name, const char *value)
1592 {
1593         struct vfsopt *opt;
1594
1595         TAILQ_FOREACH(opt, opts, link) {
1596                 if (strcmp(name, opt->name) != 0)
1597                         continue;
1598                 opt->seen = 1;
1599                 if (opt->value == NULL)
1600                         opt->len = strlen(value) + 1;
1601                 else if (strlcpy(opt->value, value, opt->len) >= opt->len)
1602                         return (EINVAL);
1603                 return (0);
1604         }
1605         return (ENOENT);
1606 }
1607
1608 /*
1609  * Find and copy a mount option.
1610  *
1611  * The size of the buffer has to be specified
1612  * in len, if it is not the same length as the
1613  * mount option, EINVAL is returned.
1614  * Returns ENOENT if the option is not found.
1615  */
1616 int
1617 vfs_copyopt(opts, name, dest, len)
1618         struct vfsoptlist *opts;
1619         const char *name;
1620         void *dest;
1621         int len;
1622 {
1623         struct vfsopt *opt;
1624
1625         KASSERT(opts != NULL, ("vfs_copyopt: caller passed 'opts' as NULL"));
1626
1627         TAILQ_FOREACH(opt, opts, link) {
1628                 if (strcmp(name, opt->name) == 0) {
1629                         opt->seen = 1;
1630                         if (len != opt->len)
1631                                 return (EINVAL);
1632                         bcopy(opt->value, dest, opt->len);
1633                         return (0);
1634                 }
1635         }
1636         return (ENOENT);
1637 }
1638
1639 /*
1640  * This is a helper function for filesystems to traverse their
1641  * vnodes.  See MNT_VNODE_FOREACH() in sys/mount.h
1642  */
1643
1644 struct vnode *
1645 __mnt_vnode_next(struct vnode **mvp, struct mount *mp)
1646 {
1647         struct vnode *vp;
1648
1649         mtx_assert(MNT_MTX(mp), MA_OWNED);
1650
1651         KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
1652         if (should_yield()) {
1653                 MNT_IUNLOCK(mp);
1654                 kern_yield(PRI_UNCHANGED);
1655                 MNT_ILOCK(mp);
1656         }
1657         vp = TAILQ_NEXT(*mvp, v_nmntvnodes);
1658         while (vp != NULL && vp->v_type == VMARKER)
1659                 vp = TAILQ_NEXT(vp, v_nmntvnodes);
1660
1661         /* Check if we are done */
1662         if (vp == NULL) {
1663                 __mnt_vnode_markerfree(mvp, mp);
1664                 return (NULL);
1665         }
1666         TAILQ_REMOVE(&mp->mnt_nvnodelist, *mvp, v_nmntvnodes);
1667         TAILQ_INSERT_AFTER(&mp->mnt_nvnodelist, vp, *mvp, v_nmntvnodes);
1668         return (vp);
1669 }
1670
1671 struct vnode *
1672 __mnt_vnode_first(struct vnode **mvp, struct mount *mp)
1673 {
1674         struct vnode *vp;
1675
1676         mtx_assert(MNT_MTX(mp), MA_OWNED);
1677
1678         vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
1679         while (vp != NULL && vp->v_type == VMARKER)
1680                 vp = TAILQ_NEXT(vp, v_nmntvnodes);
1681
1682         /* Check if we are done */
1683         if (vp == NULL) {
1684                 *mvp = NULL;
1685                 return (NULL);
1686         }
1687         MNT_REF(mp);
1688         MNT_IUNLOCK(mp);
1689         *mvp = (struct vnode *) malloc(sizeof(struct vnode),
1690                                        M_VNODE_MARKER,
1691                                        M_WAITOK | M_ZERO);
1692         MNT_ILOCK(mp);
1693         (*mvp)->v_type = VMARKER;
1694
1695         vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
1696         while (vp != NULL && vp->v_type == VMARKER)
1697                 vp = TAILQ_NEXT(vp, v_nmntvnodes);
1698
1699         /* Check if we are done */
1700         if (vp == NULL) {
1701                 MNT_IUNLOCK(mp);
1702                 free(*mvp, M_VNODE_MARKER);
1703                 MNT_ILOCK(mp);
1704                 *mvp = NULL;
1705                 MNT_REL(mp);
1706                 return (NULL);
1707         }
1708         (*mvp)->v_mount = mp;
1709         TAILQ_INSERT_AFTER(&mp->mnt_nvnodelist, vp, *mvp, v_nmntvnodes);
1710         return (vp);
1711 }
1712
1713
1714 void
1715 __mnt_vnode_markerfree(struct vnode **mvp, struct mount *mp)
1716 {
1717
1718         if (*mvp == NULL)
1719                 return;
1720
1721         mtx_assert(MNT_MTX(mp), MA_OWNED);
1722
1723         KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
1724         TAILQ_REMOVE(&mp->mnt_nvnodelist, *mvp, v_nmntvnodes);
1725         MNT_IUNLOCK(mp);
1726         free(*mvp, M_VNODE_MARKER);
1727         MNT_ILOCK(mp);
1728         *mvp = NULL;
1729         MNT_REL(mp);
1730 }
1731
1732
1733 int
1734 __vfs_statfs(struct mount *mp, struct statfs *sbp)
1735 {
1736         int error;
1737
1738         error = mp->mnt_op->vfs_statfs(mp, &mp->mnt_stat);
1739         if (sbp != &mp->mnt_stat)
1740                 *sbp = mp->mnt_stat;
1741         return (error);
1742 }
1743
1744 void
1745 vfs_mountedfrom(struct mount *mp, const char *from)
1746 {
1747
1748         bzero(mp->mnt_stat.f_mntfromname, sizeof mp->mnt_stat.f_mntfromname);
1749         strlcpy(mp->mnt_stat.f_mntfromname, from,
1750             sizeof mp->mnt_stat.f_mntfromname);
1751 }
1752
1753 /*
1754  * ---------------------------------------------------------------------
1755  * This is the api for building mount args and mounting filesystems from
1756  * inside the kernel.
1757  *
1758  * The API works by accumulation of individual args.  First error is
1759  * latched.
1760  *
1761  * XXX: should be documented in new manpage kernel_mount(9)
1762  */
1763
1764 /* A memory allocation which must be freed when we are done */
1765 struct mntaarg {
1766         SLIST_ENTRY(mntaarg)    next;
1767 };
1768
1769 /* The header for the mount arguments */
1770 struct mntarg {
1771         struct iovec *v;
1772         int len;
1773         int error;
1774         SLIST_HEAD(, mntaarg)   list;
1775 };
1776
1777 /*
1778  * Add a boolean argument.
1779  *
1780  * flag is the boolean value.
1781  * name must start with "no".
1782  */
1783 struct mntarg *
1784 mount_argb(struct mntarg *ma, int flag, const char *name)
1785 {
1786
1787         KASSERT(name[0] == 'n' && name[1] == 'o',
1788             ("mount_argb(...,%s): name must start with 'no'", name));
1789
1790         return (mount_arg(ma, name + (flag ? 2 : 0), NULL, 0));
1791 }
1792
1793 /*
1794  * Add an argument printf style
1795  */
1796 struct mntarg *
1797 mount_argf(struct mntarg *ma, const char *name, const char *fmt, ...)
1798 {
1799         va_list ap;
1800         struct mntaarg *maa;
1801         struct sbuf *sb;
1802         int len;
1803
1804         if (ma == NULL) {
1805                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
1806                 SLIST_INIT(&ma->list);
1807         }
1808         if (ma->error)
1809                 return (ma);
1810
1811         ma->v = realloc(ma->v, sizeof *ma->v * (ma->len + 2),
1812             M_MOUNT, M_WAITOK);
1813         ma->v[ma->len].iov_base = (void *)(uintptr_t)name;
1814         ma->v[ma->len].iov_len = strlen(name) + 1;
1815         ma->len++;
1816
1817         sb = sbuf_new_auto();
1818         va_start(ap, fmt);
1819         sbuf_vprintf(sb, fmt, ap);
1820         va_end(ap);
1821         sbuf_finish(sb);
1822         len = sbuf_len(sb) + 1;
1823         maa = malloc(sizeof *maa + len, M_MOUNT, M_WAITOK | M_ZERO);
1824         SLIST_INSERT_HEAD(&ma->list, maa, next);
1825         bcopy(sbuf_data(sb), maa + 1, len);
1826         sbuf_delete(sb);
1827
1828         ma->v[ma->len].iov_base = maa + 1;
1829         ma->v[ma->len].iov_len = len;
1830         ma->len++;
1831
1832         return (ma);
1833 }
1834
1835 /*
1836  * Add an argument which is a userland string.
1837  */
1838 struct mntarg *
1839 mount_argsu(struct mntarg *ma, const char *name, const void *val, int len)
1840 {
1841         struct mntaarg *maa;
1842         char *tbuf;
1843
1844         if (val == NULL)
1845                 return (ma);
1846         if (ma == NULL) {
1847                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
1848                 SLIST_INIT(&ma->list);
1849         }
1850         if (ma->error)
1851                 return (ma);
1852         maa = malloc(sizeof *maa + len, M_MOUNT, M_WAITOK | M_ZERO);
1853         SLIST_INSERT_HEAD(&ma->list, maa, next);
1854         tbuf = (void *)(maa + 1);
1855         ma->error = copyinstr(val, tbuf, len, NULL);
1856         return (mount_arg(ma, name, tbuf, -1));
1857 }
1858
1859 /*
1860  * Plain argument.
1861  *
1862  * If length is -1, treat value as a C string.
1863  */
1864 struct mntarg *
1865 mount_arg(struct mntarg *ma, const char *name, const void *val, int len)
1866 {
1867
1868         if (ma == NULL) {
1869                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
1870                 SLIST_INIT(&ma->list);
1871         }
1872         if (ma->error)
1873                 return (ma);
1874
1875         ma->v = realloc(ma->v, sizeof *ma->v * (ma->len + 2),
1876             M_MOUNT, M_WAITOK);
1877         ma->v[ma->len].iov_base = (void *)(uintptr_t)name;
1878         ma->v[ma->len].iov_len = strlen(name) + 1;
1879         ma->len++;
1880
1881         ma->v[ma->len].iov_base = (void *)(uintptr_t)val;
1882         if (len < 0)
1883                 ma->v[ma->len].iov_len = strlen(val) + 1;
1884         else
1885                 ma->v[ma->len].iov_len = len;
1886         ma->len++;
1887         return (ma);
1888 }
1889
1890 /*
1891  * Free a mntarg structure
1892  */
1893 static void
1894 free_mntarg(struct mntarg *ma)
1895 {
1896         struct mntaarg *maa;
1897
1898         while (!SLIST_EMPTY(&ma->list)) {
1899                 maa = SLIST_FIRST(&ma->list);
1900                 SLIST_REMOVE_HEAD(&ma->list, next);
1901                 free(maa, M_MOUNT);
1902         }
1903         free(ma->v, M_MOUNT);
1904         free(ma, M_MOUNT);
1905 }
1906
1907 /*
1908  * Mount a filesystem
1909  */
1910 int
1911 kernel_mount(struct mntarg *ma, uint64_t flags)
1912 {
1913         struct uio auio;
1914         int error;
1915
1916         KASSERT(ma != NULL, ("kernel_mount NULL ma"));
1917         KASSERT(ma->v != NULL, ("kernel_mount NULL ma->v"));
1918         KASSERT(!(ma->len & 1), ("kernel_mount odd ma->len (%d)", ma->len));
1919
1920         auio.uio_iov = ma->v;
1921         auio.uio_iovcnt = ma->len;
1922         auio.uio_segflg = UIO_SYSSPACE;
1923
1924         error = ma->error;
1925         if (!error)
1926                 error = vfs_donmount(curthread, flags, &auio);
1927         free_mntarg(ma);
1928         return (error);
1929 }
1930
1931 /*
1932  * A printflike function to mount a filesystem.
1933  */
1934 int
1935 kernel_vmount(int flags, ...)
1936 {
1937         struct mntarg *ma = NULL;
1938         va_list ap;
1939         const char *cp;
1940         const void *vp;
1941         int error;
1942
1943         va_start(ap, flags);
1944         for (;;) {
1945                 cp = va_arg(ap, const char *);
1946                 if (cp == NULL)
1947                         break;
1948                 vp = va_arg(ap, const void *);
1949                 ma = mount_arg(ma, cp, vp, (vp != NULL ? -1 : 0));
1950         }
1951         va_end(ap);
1952
1953         error = kernel_mount(ma, flags);
1954         return (error);
1955 }
1956
1957 void
1958 vfs_oexport_conv(const struct oexport_args *oexp, struct export_args *exp)
1959 {
1960
1961         bcopy(oexp, exp, sizeof(*oexp));
1962         exp->ex_numsecflavors = 0;
1963 }