]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/kern/vfs_mount.c
MFC r230129,r230143,r230407,r231012:
[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         char *pathbuf;
1028         int error;
1029
1030         /*
1031          * Be ultra-paranoid about making sure the type and fspath
1032          * variables will fit in our mp buffers, including the
1033          * terminating NUL.
1034          */
1035         if (strlen(fstype) >= MFSNAMELEN || strlen(fspath) >= MNAMELEN)
1036                 return (ENAMETOOLONG);
1037
1038         if (jailed(td->td_ucred) || usermount == 0) {
1039                 if ((error = priv_check(td, PRIV_VFS_MOUNT)) != 0)
1040                         return (error);
1041         }
1042
1043         /*
1044          * Do not allow NFS export or MNT_SUIDDIR by unprivileged users.
1045          */
1046         if (fsflags & MNT_EXPORTED) {
1047                 error = priv_check(td, PRIV_VFS_MOUNT_EXPORTED);
1048                 if (error)
1049                         return (error);
1050         }
1051         if (fsflags & MNT_SUIDDIR) {
1052                 error = priv_check(td, PRIV_VFS_MOUNT_SUIDDIR);
1053                 if (error)
1054                         return (error);
1055         }
1056         /*
1057          * Silently enforce MNT_NOSUID and MNT_USER for unprivileged users.
1058          */
1059         if ((fsflags & (MNT_NOSUID | MNT_USER)) != (MNT_NOSUID | MNT_USER)) {
1060                 if (priv_check(td, PRIV_VFS_MOUNT_NONUSER) != 0)
1061                         fsflags |= MNT_NOSUID | MNT_USER;
1062         }
1063
1064         /* Load KLDs before we lock the covered vnode to avoid reversals. */
1065         vfsp = NULL;
1066         if ((fsflags & MNT_UPDATE) == 0) {
1067                 /* Don't try to load KLDs if we're mounting the root. */
1068                 if (fsflags & MNT_ROOTFS)
1069                         vfsp = vfs_byname(fstype);
1070                 else
1071                         vfsp = vfs_byname_kld(fstype, td, &error);
1072                 if (vfsp == NULL)
1073                         return (ENODEV);
1074                 if (jailed(td->td_ucred) && !(vfsp->vfc_flags & VFCF_JAIL))
1075                         return (EPERM);
1076         }
1077
1078         /*
1079          * Get vnode to be covered or mount point's vnode in case of MNT_UPDATE.
1080          */
1081         NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | MPSAFE | AUDITVNODE1,
1082             UIO_SYSSPACE, fspath, td);
1083         error = namei(&nd);
1084         if (error != 0)
1085                 return (error);
1086         if (!NDHASGIANT(&nd))
1087                 mtx_lock(&Giant);
1088         NDFREE(&nd, NDF_ONLY_PNBUF);
1089         vp = nd.ni_vp;
1090         if ((fsflags & MNT_UPDATE) == 0) {
1091                 pathbuf = malloc(MNAMELEN, M_TEMP, M_WAITOK);
1092                 strcpy(pathbuf, fspath);
1093                 error = vn_path_to_global_path(td, vp, pathbuf, MNAMELEN);
1094                 /* debug.disablefullpath == 1 results in ENODEV */
1095                 if (error == 0 || error == ENODEV) {
1096                         error = vfs_domount_first(td, vfsp, pathbuf, vp,
1097                             fsflags, optlist);
1098                 }
1099                 free(pathbuf, M_TEMP);
1100         } else
1101                 error = vfs_domount_update(td, vp, fsflags, optlist);
1102         mtx_unlock(&Giant);
1103
1104         ASSERT_VI_UNLOCKED(vp, __func__);
1105         ASSERT_VOP_UNLOCKED(vp, __func__);
1106
1107         return (error);
1108 }
1109
1110 /*
1111  * Unmount a filesystem.
1112  *
1113  * Note: unmount takes a path to the vnode mounted on as argument, not
1114  * special file (as before).
1115  */
1116 #ifndef _SYS_SYSPROTO_H_
1117 struct unmount_args {
1118         char    *path;
1119         int     flags;
1120 };
1121 #endif
1122 /* ARGSUSED */
1123 int
1124 sys_unmount(td, uap)
1125         struct thread *td;
1126         register struct unmount_args /* {
1127                 char *path;
1128                 int flags;
1129         } */ *uap;
1130 {
1131         struct nameidata nd;
1132         struct mount *mp;
1133         char *pathbuf;
1134         int error, id0, id1, vfslocked;
1135
1136         AUDIT_ARG_VALUE(uap->flags);
1137         if (jailed(td->td_ucred) || usermount == 0) {
1138                 error = priv_check(td, PRIV_VFS_UNMOUNT);
1139                 if (error)
1140                         return (error);
1141         }
1142
1143         pathbuf = malloc(MNAMELEN, M_TEMP, M_WAITOK);
1144         error = copyinstr(uap->path, pathbuf, MNAMELEN, NULL);
1145         if (error) {
1146                 free(pathbuf, M_TEMP);
1147                 return (error);
1148         }
1149         mtx_lock(&Giant);
1150         if (uap->flags & MNT_BYFSID) {
1151                 AUDIT_ARG_TEXT(pathbuf);
1152                 /* Decode the filesystem ID. */
1153                 if (sscanf(pathbuf, "FSID:%d:%d", &id0, &id1) != 2) {
1154                         mtx_unlock(&Giant);
1155                         free(pathbuf, M_TEMP);
1156                         return (EINVAL);
1157                 }
1158
1159                 mtx_lock(&mountlist_mtx);
1160                 TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
1161                         if (mp->mnt_stat.f_fsid.val[0] == id0 &&
1162                             mp->mnt_stat.f_fsid.val[1] == id1)
1163                                 break;
1164                 }
1165                 mtx_unlock(&mountlist_mtx);
1166         } else {
1167                 AUDIT_ARG_UPATH1(td, pathbuf);
1168                 /*
1169                  * Try to find global path for path argument.
1170                  */
1171                 NDINIT(&nd, LOOKUP,
1172                     FOLLOW | LOCKLEAF | MPSAFE | AUDITVNODE1,
1173                     UIO_SYSSPACE, pathbuf, td);
1174                 if (namei(&nd) == 0) {
1175                         vfslocked = NDHASGIANT(&nd);
1176                         NDFREE(&nd, NDF_ONLY_PNBUF);
1177                         error = vn_path_to_global_path(td, nd.ni_vp, pathbuf,
1178                             MNAMELEN);
1179                         if (error == 0 || error == ENODEV)
1180                                 vput(nd.ni_vp);
1181                         VFS_UNLOCK_GIANT(vfslocked);
1182                 }
1183                 mtx_lock(&mountlist_mtx);
1184                 TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
1185                         if (strcmp(mp->mnt_stat.f_mntonname, pathbuf) == 0)
1186                                 break;
1187                 }
1188                 mtx_unlock(&mountlist_mtx);
1189         }
1190         free(pathbuf, M_TEMP);
1191         if (mp == NULL) {
1192                 /*
1193                  * Previously we returned ENOENT for a nonexistent path and
1194                  * EINVAL for a non-mountpoint.  We cannot tell these apart
1195                  * now, so in the !MNT_BYFSID case return the more likely
1196                  * EINVAL for compatibility.
1197                  */
1198                 mtx_unlock(&Giant);
1199                 return ((uap->flags & MNT_BYFSID) ? ENOENT : EINVAL);
1200         }
1201
1202         /*
1203          * Don't allow unmounting the root filesystem.
1204          */
1205         if (mp->mnt_flag & MNT_ROOTFS) {
1206                 mtx_unlock(&Giant);
1207                 return (EINVAL);
1208         }
1209         error = dounmount(mp, uap->flags, td);
1210         mtx_unlock(&Giant);
1211         return (error);
1212 }
1213
1214 /*
1215  * Do the actual filesystem unmount.
1216  */
1217 int
1218 dounmount(mp, flags, td)
1219         struct mount *mp;
1220         int flags;
1221         struct thread *td;
1222 {
1223         struct vnode *coveredvp, *fsrootvp;
1224         int error;
1225         uint64_t async_flag;
1226         int mnt_gen_r;
1227
1228         mtx_assert(&Giant, MA_OWNED);
1229
1230         if ((coveredvp = mp->mnt_vnodecovered) != NULL) {
1231                 mnt_gen_r = mp->mnt_gen;
1232                 VI_LOCK(coveredvp);
1233                 vholdl(coveredvp);
1234                 vn_lock(coveredvp, LK_EXCLUSIVE | LK_INTERLOCK | LK_RETRY);
1235                 vdrop(coveredvp);
1236                 /*
1237                  * Check for mp being unmounted while waiting for the
1238                  * covered vnode lock.
1239                  */
1240                 if (coveredvp->v_mountedhere != mp ||
1241                     coveredvp->v_mountedhere->mnt_gen != mnt_gen_r) {
1242                         VOP_UNLOCK(coveredvp, 0);
1243                         return (EBUSY);
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) {
1252                 if (coveredvp)
1253                         VOP_UNLOCK(coveredvp, 0);
1254                 return (error);
1255         }
1256
1257         MNT_ILOCK(mp);
1258         if (mp->mnt_kern_flag & MNTK_UNMOUNT) {
1259                 MNT_IUNLOCK(mp);
1260                 if (coveredvp)
1261                         VOP_UNLOCK(coveredvp, 0);
1262                 return (EBUSY);
1263         }
1264         mp->mnt_kern_flag |= MNTK_UNMOUNT | MNTK_NOINSMNTQ;
1265         /* Allow filesystems to detect that a forced unmount is in progress. */
1266         if (flags & MNT_FORCE)
1267                 mp->mnt_kern_flag |= MNTK_UNMOUNTF;
1268         error = 0;
1269         if (mp->mnt_lockref) {
1270                 mp->mnt_kern_flag |= MNTK_DRAINING;
1271                 error = msleep(&mp->mnt_lockref, MNT_MTX(mp), PVFS,
1272                     "mount drain", 0);
1273         }
1274         MNT_IUNLOCK(mp);
1275         KASSERT(mp->mnt_lockref == 0,
1276             ("%s: invalid lock refcount in the drain path @ %s:%d",
1277             __func__, __FILE__, __LINE__));
1278         KASSERT(error == 0,
1279             ("%s: invalid return value for msleep in the drain path @ %s:%d",
1280             __func__, __FILE__, __LINE__));
1281         vn_start_write(NULL, &mp, V_WAIT);
1282
1283         if (mp->mnt_flag & MNT_EXPUBLIC)
1284                 vfs_setpublicfs(NULL, NULL, NULL);
1285
1286         vfs_msync(mp, MNT_WAIT);
1287         MNT_ILOCK(mp);
1288         async_flag = mp->mnt_flag & MNT_ASYNC;
1289         mp->mnt_flag &= ~MNT_ASYNC;
1290         mp->mnt_kern_flag &= ~MNTK_ASYNC;
1291         MNT_IUNLOCK(mp);
1292         cache_purgevfs(mp);     /* remove cache entries for this file sys */
1293         vfs_deallocate_syncvnode(mp);
1294         /*
1295          * For forced unmounts, move process cdir/rdir refs on the fs root
1296          * vnode to the covered vnode.  For non-forced unmounts we want
1297          * such references to cause an EBUSY error.
1298          */
1299         if ((flags & MNT_FORCE) &&
1300             VFS_ROOT(mp, LK_EXCLUSIVE, &fsrootvp) == 0) {
1301                 if (mp->mnt_vnodecovered != NULL)
1302                         mountcheckdirs(fsrootvp, mp->mnt_vnodecovered);
1303                 if (fsrootvp == rootvnode) {
1304                         vrele(rootvnode);
1305                         rootvnode = NULL;
1306                 }
1307                 vput(fsrootvp);
1308         }
1309         if (((mp->mnt_flag & MNT_RDONLY) ||
1310              (error = VFS_SYNC(mp, MNT_WAIT)) == 0) || (flags & MNT_FORCE) != 0)
1311                 error = VFS_UNMOUNT(mp, flags);
1312         vn_finished_write(mp);
1313         /*
1314          * If we failed to flush the dirty blocks for this mount point,
1315          * undo all the cdir/rdir and rootvnode changes we made above.
1316          * Unless we failed to do so because the device is reporting that
1317          * it doesn't exist anymore.
1318          */
1319         if (error && error != ENXIO) {
1320                 if ((flags & MNT_FORCE) &&
1321                     VFS_ROOT(mp, LK_EXCLUSIVE, &fsrootvp) == 0) {
1322                         if (mp->mnt_vnodecovered != NULL)
1323                                 mountcheckdirs(mp->mnt_vnodecovered, fsrootvp);
1324                         if (rootvnode == NULL) {
1325                                 rootvnode = fsrootvp;
1326                                 vref(rootvnode);
1327                         }
1328                         vput(fsrootvp);
1329                 }
1330                 MNT_ILOCK(mp);
1331                 mp->mnt_kern_flag &= ~MNTK_NOINSMNTQ;
1332                 if ((mp->mnt_flag & MNT_RDONLY) == 0) {
1333                         MNT_IUNLOCK(mp);
1334                         vfs_allocate_syncvnode(mp);
1335                         MNT_ILOCK(mp);
1336                 }
1337                 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
1338                 mp->mnt_flag |= async_flag;
1339                 if ((mp->mnt_flag & MNT_ASYNC) != 0 && mp->mnt_noasync == 0)
1340                         mp->mnt_kern_flag |= MNTK_ASYNC;
1341                 if (mp->mnt_kern_flag & MNTK_MWAIT) {
1342                         mp->mnt_kern_flag &= ~MNTK_MWAIT;
1343                         wakeup(mp);
1344                 }
1345                 MNT_IUNLOCK(mp);
1346                 if (coveredvp)
1347                         VOP_UNLOCK(coveredvp, 0);
1348                 return (error);
1349         }
1350         mtx_lock(&mountlist_mtx);
1351         TAILQ_REMOVE(&mountlist, mp, mnt_list);
1352         mtx_unlock(&mountlist_mtx);
1353         if (coveredvp != NULL) {
1354                 coveredvp->v_mountedhere = NULL;
1355                 vput(coveredvp);
1356         }
1357         vfs_event_signal(NULL, VQ_UNMOUNT, 0);
1358         vfs_mount_destroy(mp);
1359         return (0);
1360 }
1361
1362 /*
1363  * Report errors during filesystem mounting.
1364  */
1365 void
1366 vfs_mount_error(struct mount *mp, const char *fmt, ...)
1367 {
1368         struct vfsoptlist *moptlist = mp->mnt_optnew;
1369         va_list ap;
1370         int error, len;
1371         char *errmsg;
1372
1373         error = vfs_getopt(moptlist, "errmsg", (void **)&errmsg, &len);
1374         if (error || errmsg == NULL || len <= 0)
1375                 return;
1376
1377         va_start(ap, fmt);
1378         vsnprintf(errmsg, (size_t)len, fmt, ap);
1379         va_end(ap);
1380 }
1381
1382 void
1383 vfs_opterror(struct vfsoptlist *opts, const char *fmt, ...)
1384 {
1385         va_list ap;
1386         int error, len;
1387         char *errmsg;
1388
1389         error = vfs_getopt(opts, "errmsg", (void **)&errmsg, &len);
1390         if (error || errmsg == NULL || len <= 0)
1391                 return;
1392
1393         va_start(ap, fmt);
1394         vsnprintf(errmsg, (size_t)len, fmt, ap);
1395         va_end(ap);
1396 }
1397
1398 /*
1399  * ---------------------------------------------------------------------
1400  * Functions for querying mount options/arguments from filesystems.
1401  */
1402
1403 /*
1404  * Check that no unknown options are given
1405  */
1406 int
1407 vfs_filteropt(struct vfsoptlist *opts, const char **legal)
1408 {
1409         struct vfsopt *opt;
1410         char errmsg[255];
1411         const char **t, *p, *q;
1412         int ret = 0;
1413
1414         TAILQ_FOREACH(opt, opts, link) {
1415                 p = opt->name;
1416                 q = NULL;
1417                 if (p[0] == 'n' && p[1] == 'o')
1418                         q = p + 2;
1419                 for(t = global_opts; *t != NULL; t++) {
1420                         if (strcmp(*t, p) == 0)
1421                                 break;
1422                         if (q != NULL) {
1423                                 if (strcmp(*t, q) == 0)
1424                                         break;
1425                         }
1426                 }
1427                 if (*t != NULL)
1428                         continue;
1429                 for(t = legal; *t != NULL; t++) {
1430                         if (strcmp(*t, p) == 0)
1431                                 break;
1432                         if (q != NULL) {
1433                                 if (strcmp(*t, q) == 0)
1434                                         break;
1435                         }
1436                 }
1437                 if (*t != NULL)
1438                         continue;
1439                 snprintf(errmsg, sizeof(errmsg),
1440                     "mount option <%s> is unknown", p);
1441                 ret = EINVAL;
1442         }
1443         if (ret != 0) {
1444                 TAILQ_FOREACH(opt, opts, link) {
1445                         if (strcmp(opt->name, "errmsg") == 0) {
1446                                 strncpy((char *)opt->value, errmsg, opt->len);
1447                                 break;
1448                         }
1449                 }
1450                 if (opt == NULL)
1451                         printf("%s\n", errmsg);
1452         }
1453         return (ret);
1454 }
1455
1456 /*
1457  * Get a mount option by its name.
1458  *
1459  * Return 0 if the option was found, ENOENT otherwise.
1460  * If len is non-NULL it will be filled with the length
1461  * of the option. If buf is non-NULL, it will be filled
1462  * with the address of the option.
1463  */
1464 int
1465 vfs_getopt(opts, name, buf, len)
1466         struct vfsoptlist *opts;
1467         const char *name;
1468         void **buf;
1469         int *len;
1470 {
1471         struct vfsopt *opt;
1472
1473         KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
1474
1475         TAILQ_FOREACH(opt, opts, link) {
1476                 if (strcmp(name, opt->name) == 0) {
1477                         opt->seen = 1;
1478                         if (len != NULL)
1479                                 *len = opt->len;
1480                         if (buf != NULL)
1481                                 *buf = opt->value;
1482                         return (0);
1483                 }
1484         }
1485         return (ENOENT);
1486 }
1487
1488 int
1489 vfs_getopt_pos(struct vfsoptlist *opts, const char *name)
1490 {
1491         struct vfsopt *opt;
1492
1493         if (opts == NULL)
1494                 return (-1);
1495
1496         TAILQ_FOREACH(opt, opts, link) {
1497                 if (strcmp(name, opt->name) == 0) {
1498                         opt->seen = 1;
1499                         return (opt->pos);
1500                 }
1501         }
1502         return (-1);
1503 }
1504
1505 char *
1506 vfs_getopts(struct vfsoptlist *opts, const char *name, int *error)
1507 {
1508         struct vfsopt *opt;
1509
1510         *error = 0;
1511         TAILQ_FOREACH(opt, opts, link) {
1512                 if (strcmp(name, opt->name) != 0)
1513                         continue;
1514                 opt->seen = 1;
1515                 if (opt->len == 0 ||
1516                     ((char *)opt->value)[opt->len - 1] != '\0') {
1517                         *error = EINVAL;
1518                         return (NULL);
1519                 }
1520                 return (opt->value);
1521         }
1522         *error = ENOENT;
1523         return (NULL);
1524 }
1525
1526 int
1527 vfs_flagopt(struct vfsoptlist *opts, const char *name, uint64_t *w,
1528         uint64_t val)
1529 {
1530         struct vfsopt *opt;
1531
1532         TAILQ_FOREACH(opt, opts, link) {
1533                 if (strcmp(name, opt->name) == 0) {
1534                         opt->seen = 1;
1535                         if (w != NULL)
1536                                 *w |= val;
1537                         return (1);
1538                 }
1539         }
1540         if (w != NULL)
1541                 *w &= ~val;
1542         return (0);
1543 }
1544
1545 int
1546 vfs_scanopt(struct vfsoptlist *opts, const char *name, const char *fmt, ...)
1547 {
1548         va_list ap;
1549         struct vfsopt *opt;
1550         int ret;
1551
1552         KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
1553
1554         TAILQ_FOREACH(opt, opts, link) {
1555                 if (strcmp(name, opt->name) != 0)
1556                         continue;
1557                 opt->seen = 1;
1558                 if (opt->len == 0 || opt->value == NULL)
1559                         return (0);
1560                 if (((char *)opt->value)[opt->len - 1] != '\0')
1561                         return (0);
1562                 va_start(ap, fmt);
1563                 ret = vsscanf(opt->value, fmt, ap);
1564                 va_end(ap);
1565                 return (ret);
1566         }
1567         return (0);
1568 }
1569
1570 int
1571 vfs_setopt(struct vfsoptlist *opts, const char *name, void *value, int len)
1572 {
1573         struct vfsopt *opt;
1574
1575         TAILQ_FOREACH(opt, opts, link) {
1576                 if (strcmp(name, opt->name) != 0)
1577                         continue;
1578                 opt->seen = 1;
1579                 if (opt->value == NULL)
1580                         opt->len = len;
1581                 else {
1582                         if (opt->len != len)
1583                                 return (EINVAL);
1584                         bcopy(value, opt->value, len);
1585                 }
1586                 return (0);
1587         }
1588         return (ENOENT);
1589 }
1590
1591 int
1592 vfs_setopt_part(struct vfsoptlist *opts, const char *name, void *value, int len)
1593 {
1594         struct vfsopt *opt;
1595
1596         TAILQ_FOREACH(opt, opts, link) {
1597                 if (strcmp(name, opt->name) != 0)
1598                         continue;
1599                 opt->seen = 1;
1600                 if (opt->value == NULL)
1601                         opt->len = len;
1602                 else {
1603                         if (opt->len < len)
1604                                 return (EINVAL);
1605                         opt->len = len;
1606                         bcopy(value, opt->value, len);
1607                 }
1608                 return (0);
1609         }
1610         return (ENOENT);
1611 }
1612
1613 int
1614 vfs_setopts(struct vfsoptlist *opts, const char *name, const char *value)
1615 {
1616         struct vfsopt *opt;
1617
1618         TAILQ_FOREACH(opt, opts, link) {
1619                 if (strcmp(name, opt->name) != 0)
1620                         continue;
1621                 opt->seen = 1;
1622                 if (opt->value == NULL)
1623                         opt->len = strlen(value) + 1;
1624                 else if (strlcpy(opt->value, value, opt->len) >= opt->len)
1625                         return (EINVAL);
1626                 return (0);
1627         }
1628         return (ENOENT);
1629 }
1630
1631 /*
1632  * Find and copy a mount option.
1633  *
1634  * The size of the buffer has to be specified
1635  * in len, if it is not the same length as the
1636  * mount option, EINVAL is returned.
1637  * Returns ENOENT if the option is not found.
1638  */
1639 int
1640 vfs_copyopt(opts, name, dest, len)
1641         struct vfsoptlist *opts;
1642         const char *name;
1643         void *dest;
1644         int len;
1645 {
1646         struct vfsopt *opt;
1647
1648         KASSERT(opts != NULL, ("vfs_copyopt: caller passed 'opts' as NULL"));
1649
1650         TAILQ_FOREACH(opt, opts, link) {
1651                 if (strcmp(name, opt->name) == 0) {
1652                         opt->seen = 1;
1653                         if (len != opt->len)
1654                                 return (EINVAL);
1655                         bcopy(opt->value, dest, opt->len);
1656                         return (0);
1657                 }
1658         }
1659         return (ENOENT);
1660 }
1661
1662 /*
1663  * This is a helper function for filesystems to traverse their
1664  * vnodes.  See MNT_VNODE_FOREACH() in sys/mount.h
1665  */
1666
1667 struct vnode *
1668 __mnt_vnode_next(struct vnode **mvp, struct mount *mp)
1669 {
1670         struct vnode *vp;
1671
1672         mtx_assert(MNT_MTX(mp), MA_OWNED);
1673
1674         KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
1675         if (should_yield()) {
1676                 MNT_IUNLOCK(mp);
1677                 kern_yield(PRI_UNCHANGED);
1678                 MNT_ILOCK(mp);
1679         }
1680         vp = TAILQ_NEXT(*mvp, v_nmntvnodes);
1681         while (vp != NULL && vp->v_type == VMARKER)
1682                 vp = TAILQ_NEXT(vp, v_nmntvnodes);
1683
1684         /* Check if we are done */
1685         if (vp == NULL) {
1686                 __mnt_vnode_markerfree(mvp, mp);
1687                 return (NULL);
1688         }
1689         TAILQ_REMOVE(&mp->mnt_nvnodelist, *mvp, v_nmntvnodes);
1690         TAILQ_INSERT_AFTER(&mp->mnt_nvnodelist, vp, *mvp, v_nmntvnodes);
1691         return (vp);
1692 }
1693
1694 struct vnode *
1695 __mnt_vnode_first(struct vnode **mvp, struct mount *mp)
1696 {
1697         struct vnode *vp;
1698
1699         mtx_assert(MNT_MTX(mp), MA_OWNED);
1700
1701         vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
1702         while (vp != NULL && vp->v_type == VMARKER)
1703                 vp = TAILQ_NEXT(vp, v_nmntvnodes);
1704
1705         /* Check if we are done */
1706         if (vp == NULL) {
1707                 *mvp = NULL;
1708                 return (NULL);
1709         }
1710         MNT_REF(mp);
1711         MNT_IUNLOCK(mp);
1712         *mvp = (struct vnode *) malloc(sizeof(struct vnode),
1713                                        M_VNODE_MARKER,
1714                                        M_WAITOK | M_ZERO);
1715         MNT_ILOCK(mp);
1716         (*mvp)->v_type = VMARKER;
1717
1718         vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
1719         while (vp != NULL && vp->v_type == VMARKER)
1720                 vp = TAILQ_NEXT(vp, v_nmntvnodes);
1721
1722         /* Check if we are done */
1723         if (vp == NULL) {
1724                 MNT_IUNLOCK(mp);
1725                 free(*mvp, M_VNODE_MARKER);
1726                 MNT_ILOCK(mp);
1727                 *mvp = NULL;
1728                 MNT_REL(mp);
1729                 return (NULL);
1730         }
1731         (*mvp)->v_mount = mp;
1732         TAILQ_INSERT_AFTER(&mp->mnt_nvnodelist, vp, *mvp, v_nmntvnodes);
1733         return (vp);
1734 }
1735
1736
1737 void
1738 __mnt_vnode_markerfree(struct vnode **mvp, struct mount *mp)
1739 {
1740
1741         if (*mvp == NULL)
1742                 return;
1743
1744         mtx_assert(MNT_MTX(mp), MA_OWNED);
1745
1746         KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
1747         TAILQ_REMOVE(&mp->mnt_nvnodelist, *mvp, v_nmntvnodes);
1748         MNT_IUNLOCK(mp);
1749         free(*mvp, M_VNODE_MARKER);
1750         MNT_ILOCK(mp);
1751         *mvp = NULL;
1752         MNT_REL(mp);
1753 }
1754
1755
1756 int
1757 __vfs_statfs(struct mount *mp, struct statfs *sbp)
1758 {
1759         int error;
1760
1761         error = mp->mnt_op->vfs_statfs(mp, &mp->mnt_stat);
1762         if (sbp != &mp->mnt_stat)
1763                 *sbp = mp->mnt_stat;
1764         return (error);
1765 }
1766
1767 void
1768 vfs_mountedfrom(struct mount *mp, const char *from)
1769 {
1770
1771         bzero(mp->mnt_stat.f_mntfromname, sizeof mp->mnt_stat.f_mntfromname);
1772         strlcpy(mp->mnt_stat.f_mntfromname, from,
1773             sizeof mp->mnt_stat.f_mntfromname);
1774 }
1775
1776 /*
1777  * ---------------------------------------------------------------------
1778  * This is the api for building mount args and mounting filesystems from
1779  * inside the kernel.
1780  *
1781  * The API works by accumulation of individual args.  First error is
1782  * latched.
1783  *
1784  * XXX: should be documented in new manpage kernel_mount(9)
1785  */
1786
1787 /* A memory allocation which must be freed when we are done */
1788 struct mntaarg {
1789         SLIST_ENTRY(mntaarg)    next;
1790 };
1791
1792 /* The header for the mount arguments */
1793 struct mntarg {
1794         struct iovec *v;
1795         int len;
1796         int error;
1797         SLIST_HEAD(, mntaarg)   list;
1798 };
1799
1800 /*
1801  * Add a boolean argument.
1802  *
1803  * flag is the boolean value.
1804  * name must start with "no".
1805  */
1806 struct mntarg *
1807 mount_argb(struct mntarg *ma, int flag, const char *name)
1808 {
1809
1810         KASSERT(name[0] == 'n' && name[1] == 'o',
1811             ("mount_argb(...,%s): name must start with 'no'", name));
1812
1813         return (mount_arg(ma, name + (flag ? 2 : 0), NULL, 0));
1814 }
1815
1816 /*
1817  * Add an argument printf style
1818  */
1819 struct mntarg *
1820 mount_argf(struct mntarg *ma, const char *name, const char *fmt, ...)
1821 {
1822         va_list ap;
1823         struct mntaarg *maa;
1824         struct sbuf *sb;
1825         int len;
1826
1827         if (ma == NULL) {
1828                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
1829                 SLIST_INIT(&ma->list);
1830         }
1831         if (ma->error)
1832                 return (ma);
1833
1834         ma->v = realloc(ma->v, sizeof *ma->v * (ma->len + 2),
1835             M_MOUNT, M_WAITOK);
1836         ma->v[ma->len].iov_base = (void *)(uintptr_t)name;
1837         ma->v[ma->len].iov_len = strlen(name) + 1;
1838         ma->len++;
1839
1840         sb = sbuf_new_auto();
1841         va_start(ap, fmt);
1842         sbuf_vprintf(sb, fmt, ap);
1843         va_end(ap);
1844         sbuf_finish(sb);
1845         len = sbuf_len(sb) + 1;
1846         maa = malloc(sizeof *maa + len, M_MOUNT, M_WAITOK | M_ZERO);
1847         SLIST_INSERT_HEAD(&ma->list, maa, next);
1848         bcopy(sbuf_data(sb), maa + 1, len);
1849         sbuf_delete(sb);
1850
1851         ma->v[ma->len].iov_base = maa + 1;
1852         ma->v[ma->len].iov_len = len;
1853         ma->len++;
1854
1855         return (ma);
1856 }
1857
1858 /*
1859  * Add an argument which is a userland string.
1860  */
1861 struct mntarg *
1862 mount_argsu(struct mntarg *ma, const char *name, const void *val, int len)
1863 {
1864         struct mntaarg *maa;
1865         char *tbuf;
1866
1867         if (val == NULL)
1868                 return (ma);
1869         if (ma == NULL) {
1870                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
1871                 SLIST_INIT(&ma->list);
1872         }
1873         if (ma->error)
1874                 return (ma);
1875         maa = malloc(sizeof *maa + len, M_MOUNT, M_WAITOK | M_ZERO);
1876         SLIST_INSERT_HEAD(&ma->list, maa, next);
1877         tbuf = (void *)(maa + 1);
1878         ma->error = copyinstr(val, tbuf, len, NULL);
1879         return (mount_arg(ma, name, tbuf, -1));
1880 }
1881
1882 /*
1883  * Plain argument.
1884  *
1885  * If length is -1, treat value as a C string.
1886  */
1887 struct mntarg *
1888 mount_arg(struct mntarg *ma, const char *name, const void *val, int len)
1889 {
1890
1891         if (ma == NULL) {
1892                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
1893                 SLIST_INIT(&ma->list);
1894         }
1895         if (ma->error)
1896                 return (ma);
1897
1898         ma->v = realloc(ma->v, sizeof *ma->v * (ma->len + 2),
1899             M_MOUNT, M_WAITOK);
1900         ma->v[ma->len].iov_base = (void *)(uintptr_t)name;
1901         ma->v[ma->len].iov_len = strlen(name) + 1;
1902         ma->len++;
1903
1904         ma->v[ma->len].iov_base = (void *)(uintptr_t)val;
1905         if (len < 0)
1906                 ma->v[ma->len].iov_len = strlen(val) + 1;
1907         else
1908                 ma->v[ma->len].iov_len = len;
1909         ma->len++;
1910         return (ma);
1911 }
1912
1913 /*
1914  * Free a mntarg structure
1915  */
1916 static void
1917 free_mntarg(struct mntarg *ma)
1918 {
1919         struct mntaarg *maa;
1920
1921         while (!SLIST_EMPTY(&ma->list)) {
1922                 maa = SLIST_FIRST(&ma->list);
1923                 SLIST_REMOVE_HEAD(&ma->list, next);
1924                 free(maa, M_MOUNT);
1925         }
1926         free(ma->v, M_MOUNT);
1927         free(ma, M_MOUNT);
1928 }
1929
1930 /*
1931  * Mount a filesystem
1932  */
1933 int
1934 kernel_mount(struct mntarg *ma, uint64_t flags)
1935 {
1936         struct uio auio;
1937         int error;
1938
1939         KASSERT(ma != NULL, ("kernel_mount NULL ma"));
1940         KASSERT(ma->v != NULL, ("kernel_mount NULL ma->v"));
1941         KASSERT(!(ma->len & 1), ("kernel_mount odd ma->len (%d)", ma->len));
1942
1943         auio.uio_iov = ma->v;
1944         auio.uio_iovcnt = ma->len;
1945         auio.uio_segflg = UIO_SYSSPACE;
1946
1947         error = ma->error;
1948         if (!error)
1949                 error = vfs_donmount(curthread, flags, &auio);
1950         free_mntarg(ma);
1951         return (error);
1952 }
1953
1954 /*
1955  * A printflike function to mount a filesystem.
1956  */
1957 int
1958 kernel_vmount(int flags, ...)
1959 {
1960         struct mntarg *ma = NULL;
1961         va_list ap;
1962         const char *cp;
1963         const void *vp;
1964         int error;
1965
1966         va_start(ap, flags);
1967         for (;;) {
1968                 cp = va_arg(ap, const char *);
1969                 if (cp == NULL)
1970                         break;
1971                 vp = va_arg(ap, const void *);
1972                 ma = mount_arg(ma, cp, vp, (vp != NULL ? -1 : 0));
1973         }
1974         va_end(ap);
1975
1976         error = kernel_mount(ma, flags);
1977         return (error);
1978 }
1979
1980 void
1981 vfs_oexport_conv(const struct oexport_args *oexp, struct export_args *exp)
1982 {
1983
1984         bcopy(oexp, exp, sizeof(*oexp));
1985         exp->ex_numsecflavors = 0;
1986 }