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