]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/vfs_mount.c
tslog: Add CTLFLAG_SKIP to sysctls
[FreeBSD/FreeBSD.git] / sys / kern / vfs_mount.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1999-2004 Poul-Henning Kamp
5  * Copyright (c) 1999 Michael Smith
6  * Copyright (c) 1989, 1993
7  *      The Regents of the University of California.  All rights reserved.
8  * (c) UNIX System Laboratories, Inc.
9  * All or some portions of this file are derived from material licensed
10  * to the University of California by American Telephone and Telegraph
11  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
12  * the permission of UNIX System Laboratories, Inc.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions
16  * are met:
17  * 1. Redistributions of source code must retain the above copyright
18  *    notice, this list of conditions and the following disclaimer.
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  * 3. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  */
38
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD$");
41
42 #include <sys/param.h>
43 #include <sys/conf.h>
44 #include <sys/smp.h>
45 #include <sys/devctl.h>
46 #include <sys/eventhandler.h>
47 #include <sys/fcntl.h>
48 #include <sys/jail.h>
49 #include <sys/kernel.h>
50 #include <sys/ktr.h>
51 #include <sys/libkern.h>
52 #include <sys/malloc.h>
53 #include <sys/mount.h>
54 #include <sys/mutex.h>
55 #include <sys/namei.h>
56 #include <sys/priv.h>
57 #include <sys/proc.h>
58 #include <sys/filedesc.h>
59 #include <sys/reboot.h>
60 #include <sys/sbuf.h>
61 #include <sys/syscallsubr.h>
62 #include <sys/sysproto.h>
63 #include <sys/sx.h>
64 #include <sys/sysctl.h>
65 #include <sys/sysent.h>
66 #include <sys/systm.h>
67 #include <sys/vnode.h>
68 #include <vm/uma.h>
69
70 #include <geom/geom.h>
71
72 #include <machine/stdarg.h>
73
74 #include <security/audit/audit.h>
75 #include <security/mac/mac_framework.h>
76
77 #define VFS_MOUNTARG_SIZE_MAX   (1024 * 64)
78
79 static int      vfs_domount(struct thread *td, const char *fstype, char *fspath,
80                     uint64_t fsflags, struct vfsoptlist **optlist);
81 static void     free_mntarg(struct mntarg *ma);
82
83 static int      usermount = 0;
84 SYSCTL_INT(_vfs, OID_AUTO, usermount, CTLFLAG_RW, &usermount, 0,
85     "Unprivileged users may mount and unmount file systems");
86
87 static bool     default_autoro = false;
88 SYSCTL_BOOL(_vfs, OID_AUTO, default_autoro, CTLFLAG_RW, &default_autoro, 0,
89     "Retry failed r/w mount as r/o if no explicit ro/rw option is specified");
90
91 MALLOC_DEFINE(M_MOUNT, "mount", "vfs mount structure");
92 MALLOC_DEFINE(M_STATFS, "statfs", "statfs structure");
93 static uma_zone_t mount_zone;
94
95 /* List of mounted filesystems. */
96 struct mntlist mountlist = TAILQ_HEAD_INITIALIZER(mountlist);
97
98 /* For any iteration/modification of mountlist */
99 struct mtx_padalign __exclusive_cache_line mountlist_mtx;
100 MTX_SYSINIT(mountlist, &mountlist_mtx, "mountlist", MTX_DEF);
101
102 EVENTHANDLER_LIST_DEFINE(vfs_mounted);
103 EVENTHANDLER_LIST_DEFINE(vfs_unmounted);
104
105 static void mount_devctl_event(const char *type, struct mount *mp, bool donew);
106
107 /*
108  * Global opts, taken by all filesystems
109  */
110 static const char *global_opts[] = {
111         "errmsg",
112         "fstype",
113         "fspath",
114         "ro",
115         "rw",
116         "nosuid",
117         "noexec",
118         NULL
119 };
120
121 static int
122 mount_init(void *mem, int size, int flags)
123 {
124         struct mount *mp;
125
126         mp = (struct mount *)mem;
127         mtx_init(&mp->mnt_mtx, "struct mount mtx", NULL, MTX_DEF);
128         mtx_init(&mp->mnt_listmtx, "struct mount vlist mtx", NULL, MTX_DEF);
129         lockinit(&mp->mnt_explock, PVFS, "explock", 0, 0);
130         mp->mnt_pcpu = uma_zalloc_pcpu(pcpu_zone_16, M_WAITOK | M_ZERO);
131         mp->mnt_ref = 0;
132         mp->mnt_vfs_ops = 1;
133         mp->mnt_rootvnode = NULL;
134         return (0);
135 }
136
137 static void
138 mount_fini(void *mem, int size)
139 {
140         struct mount *mp;
141
142         mp = (struct mount *)mem;
143         uma_zfree_pcpu(pcpu_zone_16, mp->mnt_pcpu);
144         lockdestroy(&mp->mnt_explock);
145         mtx_destroy(&mp->mnt_listmtx);
146         mtx_destroy(&mp->mnt_mtx);
147 }
148
149 static void
150 vfs_mount_init(void *dummy __unused)
151 {
152
153         mount_zone = uma_zcreate("Mountpoints", sizeof(struct mount), NULL,
154             NULL, mount_init, mount_fini, UMA_ALIGN_CACHE, UMA_ZONE_NOFREE);
155 }
156 SYSINIT(vfs_mount, SI_SUB_VFS, SI_ORDER_ANY, vfs_mount_init, NULL);
157
158 /*
159  * ---------------------------------------------------------------------
160  * Functions for building and sanitizing the mount options
161  */
162
163 /* Remove one mount option. */
164 static void
165 vfs_freeopt(struct vfsoptlist *opts, struct vfsopt *opt)
166 {
167
168         TAILQ_REMOVE(opts, opt, link);
169         free(opt->name, M_MOUNT);
170         if (opt->value != NULL)
171                 free(opt->value, M_MOUNT);
172         free(opt, M_MOUNT);
173 }
174
175 /* Release all resources related to the mount options. */
176 void
177 vfs_freeopts(struct vfsoptlist *opts)
178 {
179         struct vfsopt *opt;
180
181         while (!TAILQ_EMPTY(opts)) {
182                 opt = TAILQ_FIRST(opts);
183                 vfs_freeopt(opts, opt);
184         }
185         free(opts, M_MOUNT);
186 }
187
188 void
189 vfs_deleteopt(struct vfsoptlist *opts, const char *name)
190 {
191         struct vfsopt *opt, *temp;
192
193         if (opts == NULL)
194                 return;
195         TAILQ_FOREACH_SAFE(opt, opts, link, temp)  {
196                 if (strcmp(opt->name, name) == 0)
197                         vfs_freeopt(opts, opt);
198         }
199 }
200
201 static int
202 vfs_isopt_ro(const char *opt)
203 {
204
205         if (strcmp(opt, "ro") == 0 || strcmp(opt, "rdonly") == 0 ||
206             strcmp(opt, "norw") == 0)
207                 return (1);
208         return (0);
209 }
210
211 static int
212 vfs_isopt_rw(const char *opt)
213 {
214
215         if (strcmp(opt, "rw") == 0 || strcmp(opt, "noro") == 0)
216                 return (1);
217         return (0);
218 }
219
220 /*
221  * Check if options are equal (with or without the "no" prefix).
222  */
223 static int
224 vfs_equalopts(const char *opt1, const char *opt2)
225 {
226         char *p;
227
228         /* "opt" vs. "opt" or "noopt" vs. "noopt" */
229         if (strcmp(opt1, opt2) == 0)
230                 return (1);
231         /* "noopt" vs. "opt" */
232         if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0)
233                 return (1);
234         /* "opt" vs. "noopt" */
235         if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0)
236                 return (1);
237         while ((p = strchr(opt1, '.')) != NULL &&
238             !strncmp(opt1, opt2, ++p - opt1)) {
239                 opt2 += p - opt1;
240                 opt1 = p;
241                 /* "foo.noopt" vs. "foo.opt" */
242                 if (strncmp(opt1, "no", 2) == 0 && strcmp(opt1 + 2, opt2) == 0)
243                         return (1);
244                 /* "foo.opt" vs. "foo.noopt" */
245                 if (strncmp(opt2, "no", 2) == 0 && strcmp(opt1, opt2 + 2) == 0)
246                         return (1);
247         }
248         /* "ro" / "rdonly" / "norw" / "rw" / "noro" */
249         if ((vfs_isopt_ro(opt1) || vfs_isopt_rw(opt1)) &&
250             (vfs_isopt_ro(opt2) || vfs_isopt_rw(opt2)))
251                 return (1);
252         return (0);
253 }
254
255 /*
256  * If a mount option is specified several times,
257  * (with or without the "no" prefix) only keep
258  * the last occurrence of it.
259  */
260 static void
261 vfs_sanitizeopts(struct vfsoptlist *opts)
262 {
263         struct vfsopt *opt, *opt2, *tmp;
264
265         TAILQ_FOREACH_REVERSE(opt, opts, vfsoptlist, link) {
266                 opt2 = TAILQ_PREV(opt, vfsoptlist, link);
267                 while (opt2 != NULL) {
268                         if (vfs_equalopts(opt->name, opt2->name)) {
269                                 tmp = TAILQ_PREV(opt2, vfsoptlist, link);
270                                 vfs_freeopt(opts, opt2);
271                                 opt2 = tmp;
272                         } else {
273                                 opt2 = TAILQ_PREV(opt2, vfsoptlist, link);
274                         }
275                 }
276         }
277 }
278
279 /*
280  * Build a linked list of mount options from a struct uio.
281  */
282 int
283 vfs_buildopts(struct uio *auio, struct vfsoptlist **options)
284 {
285         struct vfsoptlist *opts;
286         struct vfsopt *opt;
287         size_t memused, namelen, optlen;
288         unsigned int i, iovcnt;
289         int error;
290
291         opts = malloc(sizeof(struct vfsoptlist), M_MOUNT, M_WAITOK);
292         TAILQ_INIT(opts);
293         memused = 0;
294         iovcnt = auio->uio_iovcnt;
295         for (i = 0; i < iovcnt; i += 2) {
296                 namelen = auio->uio_iov[i].iov_len;
297                 optlen = auio->uio_iov[i + 1].iov_len;
298                 memused += sizeof(struct vfsopt) + optlen + namelen;
299                 /*
300                  * Avoid consuming too much memory, and attempts to overflow
301                  * memused.
302                  */
303                 if (memused > VFS_MOUNTARG_SIZE_MAX ||
304                     optlen > VFS_MOUNTARG_SIZE_MAX ||
305                     namelen > VFS_MOUNTARG_SIZE_MAX) {
306                         error = EINVAL;
307                         goto bad;
308                 }
309
310                 opt = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
311                 opt->name = malloc(namelen, M_MOUNT, M_WAITOK);
312                 opt->value = NULL;
313                 opt->len = 0;
314                 opt->pos = i / 2;
315                 opt->seen = 0;
316
317                 /*
318                  * Do this early, so jumps to "bad" will free the current
319                  * option.
320                  */
321                 TAILQ_INSERT_TAIL(opts, opt, link);
322
323                 if (auio->uio_segflg == UIO_SYSSPACE) {
324                         bcopy(auio->uio_iov[i].iov_base, opt->name, namelen);
325                 } else {
326                         error = copyin(auio->uio_iov[i].iov_base, opt->name,
327                             namelen);
328                         if (error)
329                                 goto bad;
330                 }
331                 /* Ensure names are null-terminated strings. */
332                 if (namelen == 0 || opt->name[namelen - 1] != '\0') {
333                         error = EINVAL;
334                         goto bad;
335                 }
336                 if (optlen != 0) {
337                         opt->len = optlen;
338                         opt->value = malloc(optlen, M_MOUNT, M_WAITOK);
339                         if (auio->uio_segflg == UIO_SYSSPACE) {
340                                 bcopy(auio->uio_iov[i + 1].iov_base, opt->value,
341                                     optlen);
342                         } else {
343                                 error = copyin(auio->uio_iov[i + 1].iov_base,
344                                     opt->value, optlen);
345                                 if (error)
346                                         goto bad;
347                         }
348                 }
349         }
350         vfs_sanitizeopts(opts);
351         *options = opts;
352         return (0);
353 bad:
354         vfs_freeopts(opts);
355         return (error);
356 }
357
358 /*
359  * Merge the old mount options with the new ones passed
360  * in the MNT_UPDATE case.
361  *
362  * XXX: This function will keep a "nofoo" option in the new
363  * options.  E.g, if the option's canonical name is "foo",
364  * "nofoo" ends up in the mount point's active options.
365  */
366 static void
367 vfs_mergeopts(struct vfsoptlist *toopts, struct vfsoptlist *oldopts)
368 {
369         struct vfsopt *opt, *new;
370
371         TAILQ_FOREACH(opt, oldopts, link) {
372                 new = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK);
373                 new->name = strdup(opt->name, M_MOUNT);
374                 if (opt->len != 0) {
375                         new->value = malloc(opt->len, M_MOUNT, M_WAITOK);
376                         bcopy(opt->value, new->value, opt->len);
377                 } else
378                         new->value = NULL;
379                 new->len = opt->len;
380                 new->seen = opt->seen;
381                 TAILQ_INSERT_HEAD(toopts, new, link);
382         }
383         vfs_sanitizeopts(toopts);
384 }
385
386 /*
387  * Mount a filesystem.
388  */
389 #ifndef _SYS_SYSPROTO_H_
390 struct nmount_args {
391         struct iovec *iovp;
392         unsigned int iovcnt;
393         int flags;
394 };
395 #endif
396 int
397 sys_nmount(struct thread *td, struct nmount_args *uap)
398 {
399         struct uio *auio;
400         int error;
401         u_int iovcnt;
402         uint64_t flags;
403
404         /*
405          * Mount flags are now 64-bits. On 32-bit archtectures only
406          * 32-bits are passed in, but from here on everything handles
407          * 64-bit flags correctly.
408          */
409         flags = uap->flags;
410
411         AUDIT_ARG_FFLAGS(flags);
412         CTR4(KTR_VFS, "%s: iovp %p with iovcnt %d and flags %d", __func__,
413             uap->iovp, uap->iovcnt, flags);
414
415         /*
416          * Filter out MNT_ROOTFS.  We do not want clients of nmount() in
417          * userspace to set this flag, but we must filter it out if we want
418          * MNT_UPDATE on the root file system to work.
419          * MNT_ROOTFS should only be set by the kernel when mounting its
420          * root file system.
421          */
422         flags &= ~MNT_ROOTFS;
423
424         iovcnt = uap->iovcnt;
425         /*
426          * Check that we have an even number of iovec's
427          * and that we have at least two options.
428          */
429         if ((iovcnt & 1) || (iovcnt < 4)) {
430                 CTR2(KTR_VFS, "%s: failed for invalid iovcnt %d", __func__,
431                     uap->iovcnt);
432                 return (EINVAL);
433         }
434
435         error = copyinuio(uap->iovp, iovcnt, &auio);
436         if (error) {
437                 CTR2(KTR_VFS, "%s: failed for invalid uio op with %d errno",
438                     __func__, error);
439                 return (error);
440         }
441         error = vfs_donmount(td, flags, auio);
442
443         free(auio, M_IOV);
444         return (error);
445 }
446
447 /*
448  * ---------------------------------------------------------------------
449  * Various utility functions
450  */
451
452 /*
453  * Get a reference on a mount point from a vnode.
454  *
455  * The vnode is allowed to be passed unlocked and race against dooming. Note in
456  * such case there are no guarantees the referenced mount point will still be
457  * associated with it after the function returns.
458  */
459 struct mount *
460 vfs_ref_from_vp(struct vnode *vp)
461 {
462         struct mount *mp;
463         struct mount_pcpu *mpcpu;
464
465         mp = atomic_load_ptr(&vp->v_mount);
466         if (__predict_false(mp == NULL)) {
467                 return (mp);
468         }
469         if (vfs_op_thread_enter(mp, mpcpu)) {
470                 if (__predict_true(mp == vp->v_mount)) {
471                         vfs_mp_count_add_pcpu(mpcpu, ref, 1);
472                         vfs_op_thread_exit(mp, mpcpu);
473                 } else {
474                         vfs_op_thread_exit(mp, mpcpu);
475                         mp = NULL;
476                 }
477         } else {
478                 MNT_ILOCK(mp);
479                 if (mp == vp->v_mount) {
480                         MNT_REF(mp);
481                         MNT_IUNLOCK(mp);
482                 } else {
483                         MNT_IUNLOCK(mp);
484                         mp = NULL;
485                 }
486         }
487         return (mp);
488 }
489
490 void
491 vfs_ref(struct mount *mp)
492 {
493         struct mount_pcpu *mpcpu;
494
495         CTR2(KTR_VFS, "%s: mp %p", __func__, mp);
496         if (vfs_op_thread_enter(mp, mpcpu)) {
497                 vfs_mp_count_add_pcpu(mpcpu, ref, 1);
498                 vfs_op_thread_exit(mp, mpcpu);
499                 return;
500         }
501
502         MNT_ILOCK(mp);
503         MNT_REF(mp);
504         MNT_IUNLOCK(mp);
505 }
506
507 void
508 vfs_rel(struct mount *mp)
509 {
510         struct mount_pcpu *mpcpu;
511
512         CTR2(KTR_VFS, "%s: mp %p", __func__, mp);
513         if (vfs_op_thread_enter(mp, mpcpu)) {
514                 vfs_mp_count_sub_pcpu(mpcpu, ref, 1);
515                 vfs_op_thread_exit(mp, mpcpu);
516                 return;
517         }
518
519         MNT_ILOCK(mp);
520         MNT_REL(mp);
521         MNT_IUNLOCK(mp);
522 }
523
524 /*
525  * Allocate and initialize the mount point struct.
526  */
527 struct mount *
528 vfs_mount_alloc(struct vnode *vp, struct vfsconf *vfsp, const char *fspath,
529     struct ucred *cred)
530 {
531         struct mount *mp;
532
533         mp = uma_zalloc(mount_zone, M_WAITOK);
534         bzero(&mp->mnt_startzero,
535             __rangeof(struct mount, mnt_startzero, mnt_endzero));
536         mp->mnt_kern_flag = 0;
537         mp->mnt_flag = 0;
538         mp->mnt_rootvnode = NULL;
539         mp->mnt_vnodecovered = NULL;
540         mp->mnt_op = NULL;
541         mp->mnt_vfc = NULL;
542         TAILQ_INIT(&mp->mnt_nvnodelist);
543         mp->mnt_nvnodelistsize = 0;
544         TAILQ_INIT(&mp->mnt_lazyvnodelist);
545         mp->mnt_lazyvnodelistsize = 0;
546         if (mp->mnt_ref != 0 || mp->mnt_lockref != 0 ||
547             mp->mnt_writeopcount != 0)
548                 panic("%s: non-zero counters on new mp %p\n", __func__, mp);
549         if (mp->mnt_vfs_ops != 1)
550                 panic("%s: vfs_ops should be 1 but %d found\n", __func__,
551                     mp->mnt_vfs_ops);
552         (void) vfs_busy(mp, MBF_NOWAIT);
553         atomic_add_acq_int(&vfsp->vfc_refcount, 1);
554         mp->mnt_op = vfsp->vfc_vfsops;
555         mp->mnt_vfc = vfsp;
556         mp->mnt_stat.f_type = vfsp->vfc_typenum;
557         mp->mnt_gen++;
558         strlcpy(mp->mnt_stat.f_fstypename, vfsp->vfc_name, MFSNAMELEN);
559         mp->mnt_vnodecovered = vp;
560         mp->mnt_cred = crdup(cred);
561         mp->mnt_stat.f_owner = cred->cr_uid;
562         strlcpy(mp->mnt_stat.f_mntonname, fspath, MNAMELEN);
563         mp->mnt_iosize_max = DFLTPHYS;
564 #ifdef MAC
565         mac_mount_init(mp);
566         mac_mount_create(cred, mp);
567 #endif
568         arc4rand(&mp->mnt_hashseed, sizeof mp->mnt_hashseed, 0);
569         TAILQ_INIT(&mp->mnt_uppers);
570         return (mp);
571 }
572
573 /*
574  * Destroy the mount struct previously allocated by vfs_mount_alloc().
575  */
576 void
577 vfs_mount_destroy(struct mount *mp)
578 {
579
580         if (mp->mnt_vfs_ops == 0)
581                 panic("%s: entered with zero vfs_ops\n", __func__);
582
583         vfs_assert_mount_counters(mp);
584
585         MNT_ILOCK(mp);
586         mp->mnt_kern_flag |= MNTK_REFEXPIRE;
587         if (mp->mnt_kern_flag & MNTK_MWAIT) {
588                 mp->mnt_kern_flag &= ~MNTK_MWAIT;
589                 wakeup(mp);
590         }
591         while (mp->mnt_ref)
592                 msleep(mp, MNT_MTX(mp), PVFS, "mntref", 0);
593         KASSERT(mp->mnt_ref == 0,
594             ("%s: invalid refcount in the drain path @ %s:%d", __func__,
595             __FILE__, __LINE__));
596         if (mp->mnt_writeopcount != 0)
597                 panic("vfs_mount_destroy: nonzero writeopcount");
598         if (mp->mnt_secondary_writes != 0)
599                 panic("vfs_mount_destroy: nonzero secondary_writes");
600         atomic_subtract_rel_int(&mp->mnt_vfc->vfc_refcount, 1);
601         if (!TAILQ_EMPTY(&mp->mnt_nvnodelist)) {
602                 struct vnode *vp;
603
604                 TAILQ_FOREACH(vp, &mp->mnt_nvnodelist, v_nmntvnodes)
605                         vn_printf(vp, "dangling vnode ");
606                 panic("unmount: dangling vnode");
607         }
608         KASSERT(TAILQ_EMPTY(&mp->mnt_uppers), ("mnt_uppers"));
609         if (mp->mnt_nvnodelistsize != 0)
610                 panic("vfs_mount_destroy: nonzero nvnodelistsize");
611         if (mp->mnt_lazyvnodelistsize != 0)
612                 panic("vfs_mount_destroy: nonzero lazyvnodelistsize");
613         if (mp->mnt_lockref != 0)
614                 panic("vfs_mount_destroy: nonzero lock refcount");
615         MNT_IUNLOCK(mp);
616
617         if (mp->mnt_vfs_ops != 1)
618                 panic("%s: vfs_ops should be 1 but %d found\n", __func__,
619                     mp->mnt_vfs_ops);
620
621         if (mp->mnt_rootvnode != NULL)
622                 panic("%s: mount point still has a root vnode %p\n", __func__,
623                     mp->mnt_rootvnode);
624
625         if (mp->mnt_vnodecovered != NULL)
626                 vrele(mp->mnt_vnodecovered);
627 #ifdef MAC
628         mac_mount_destroy(mp);
629 #endif
630         if (mp->mnt_opt != NULL)
631                 vfs_freeopts(mp->mnt_opt);
632         crfree(mp->mnt_cred);
633         uma_zfree(mount_zone, mp);
634 }
635
636 static bool
637 vfs_should_downgrade_to_ro_mount(uint64_t fsflags, int error)
638 {
639         /* This is an upgrade of an exisiting mount. */
640         if ((fsflags & MNT_UPDATE) != 0)
641                 return (false);
642         /* This is already an R/O mount. */
643         if ((fsflags & MNT_RDONLY) != 0)
644                 return (false);
645
646         switch (error) {
647         case ENODEV:    /* generic, geom, ... */
648         case EACCES:    /* cam/scsi, ... */
649         case EROFS:     /* md, mmcsd, ... */
650                 /*
651                  * These errors can be returned by the storage layer to signal
652                  * that the media is read-only.  No harm in the R/O mount
653                  * attempt if the error was returned for some other reason.
654                  */
655                 return (true);
656         default:
657                 return (false);
658         }
659 }
660
661 int
662 vfs_donmount(struct thread *td, uint64_t fsflags, struct uio *fsoptions)
663 {
664         struct vfsoptlist *optlist;
665         struct vfsopt *opt, *tmp_opt;
666         char *fstype, *fspath, *errmsg;
667         int error, fstypelen, fspathlen, errmsg_len, errmsg_pos;
668         bool autoro;
669
670         errmsg = fspath = NULL;
671         errmsg_len = fspathlen = 0;
672         errmsg_pos = -1;
673         autoro = default_autoro;
674
675         error = vfs_buildopts(fsoptions, &optlist);
676         if (error)
677                 return (error);
678
679         if (vfs_getopt(optlist, "errmsg", (void **)&errmsg, &errmsg_len) == 0)
680                 errmsg_pos = vfs_getopt_pos(optlist, "errmsg");
681
682         /*
683          * We need these two options before the others,
684          * and they are mandatory for any filesystem.
685          * Ensure they are NUL terminated as well.
686          */
687         fstypelen = 0;
688         error = vfs_getopt(optlist, "fstype", (void **)&fstype, &fstypelen);
689         if (error || fstypelen <= 0 || fstype[fstypelen - 1] != '\0') {
690                 error = EINVAL;
691                 if (errmsg != NULL)
692                         strncpy(errmsg, "Invalid fstype", errmsg_len);
693                 goto bail;
694         }
695         fspathlen = 0;
696         error = vfs_getopt(optlist, "fspath", (void **)&fspath, &fspathlen);
697         if (error || fspathlen <= 0 || fspath[fspathlen - 1] != '\0') {
698                 error = EINVAL;
699                 if (errmsg != NULL)
700                         strncpy(errmsg, "Invalid fspath", errmsg_len);
701                 goto bail;
702         }
703
704         /*
705          * We need to see if we have the "update" option
706          * before we call vfs_domount(), since vfs_domount() has special
707          * logic based on MNT_UPDATE.  This is very important
708          * when we want to update the root filesystem.
709          */
710         TAILQ_FOREACH_SAFE(opt, optlist, link, tmp_opt) {
711                 int do_freeopt = 0;
712
713                 if (strcmp(opt->name, "update") == 0) {
714                         fsflags |= MNT_UPDATE;
715                         do_freeopt = 1;
716                 }
717                 else if (strcmp(opt->name, "async") == 0)
718                         fsflags |= MNT_ASYNC;
719                 else if (strcmp(opt->name, "force") == 0) {
720                         fsflags |= MNT_FORCE;
721                         do_freeopt = 1;
722                 }
723                 else if (strcmp(opt->name, "reload") == 0) {
724                         fsflags |= MNT_RELOAD;
725                         do_freeopt = 1;
726                 }
727                 else if (strcmp(opt->name, "multilabel") == 0)
728                         fsflags |= MNT_MULTILABEL;
729                 else if (strcmp(opt->name, "noasync") == 0)
730                         fsflags &= ~MNT_ASYNC;
731                 else if (strcmp(opt->name, "noatime") == 0)
732                         fsflags |= MNT_NOATIME;
733                 else if (strcmp(opt->name, "atime") == 0) {
734                         free(opt->name, M_MOUNT);
735                         opt->name = strdup("nonoatime", M_MOUNT);
736                 }
737                 else if (strcmp(opt->name, "noclusterr") == 0)
738                         fsflags |= MNT_NOCLUSTERR;
739                 else if (strcmp(opt->name, "clusterr") == 0) {
740                         free(opt->name, M_MOUNT);
741                         opt->name = strdup("nonoclusterr", M_MOUNT);
742                 }
743                 else if (strcmp(opt->name, "noclusterw") == 0)
744                         fsflags |= MNT_NOCLUSTERW;
745                 else if (strcmp(opt->name, "clusterw") == 0) {
746                         free(opt->name, M_MOUNT);
747                         opt->name = strdup("nonoclusterw", M_MOUNT);
748                 }
749                 else if (strcmp(opt->name, "noexec") == 0)
750                         fsflags |= MNT_NOEXEC;
751                 else if (strcmp(opt->name, "exec") == 0) {
752                         free(opt->name, M_MOUNT);
753                         opt->name = strdup("nonoexec", M_MOUNT);
754                 }
755                 else if (strcmp(opt->name, "nosuid") == 0)
756                         fsflags |= MNT_NOSUID;
757                 else if (strcmp(opt->name, "suid") == 0) {
758                         free(opt->name, M_MOUNT);
759                         opt->name = strdup("nonosuid", M_MOUNT);
760                 }
761                 else if (strcmp(opt->name, "nosymfollow") == 0)
762                         fsflags |= MNT_NOSYMFOLLOW;
763                 else if (strcmp(opt->name, "symfollow") == 0) {
764                         free(opt->name, M_MOUNT);
765                         opt->name = strdup("nonosymfollow", M_MOUNT);
766                 }
767                 else if (strcmp(opt->name, "noro") == 0) {
768                         fsflags &= ~MNT_RDONLY;
769                         autoro = false;
770                 }
771                 else if (strcmp(opt->name, "rw") == 0) {
772                         fsflags &= ~MNT_RDONLY;
773                         autoro = false;
774                 }
775                 else if (strcmp(opt->name, "ro") == 0) {
776                         fsflags |= MNT_RDONLY;
777                         autoro = false;
778                 }
779                 else if (strcmp(opt->name, "rdonly") == 0) {
780                         free(opt->name, M_MOUNT);
781                         opt->name = strdup("ro", M_MOUNT);
782                         fsflags |= MNT_RDONLY;
783                         autoro = false;
784                 }
785                 else if (strcmp(opt->name, "autoro") == 0) {
786                         do_freeopt = 1;
787                         autoro = true;
788                 }
789                 else if (strcmp(opt->name, "suiddir") == 0)
790                         fsflags |= MNT_SUIDDIR;
791                 else if (strcmp(opt->name, "sync") == 0)
792                         fsflags |= MNT_SYNCHRONOUS;
793                 else if (strcmp(opt->name, "union") == 0)
794                         fsflags |= MNT_UNION;
795                 else if (strcmp(opt->name, "automounted") == 0) {
796                         fsflags |= MNT_AUTOMOUNTED;
797                         do_freeopt = 1;
798                 } else if (strcmp(opt->name, "nocover") == 0) {
799                         fsflags |= MNT_NOCOVER;
800                         do_freeopt = 1;
801                 } else if (strcmp(opt->name, "cover") == 0) {
802                         fsflags &= ~MNT_NOCOVER;
803                         do_freeopt = 1;
804                 } else if (strcmp(opt->name, "emptydir") == 0) {
805                         fsflags |= MNT_EMPTYDIR;
806                         do_freeopt = 1;
807                 } else if (strcmp(opt->name, "noemptydir") == 0) {
808                         fsflags &= ~MNT_EMPTYDIR;
809                         do_freeopt = 1;
810                 }
811                 if (do_freeopt)
812                         vfs_freeopt(optlist, opt);
813         }
814
815         /*
816          * Be ultra-paranoid about making sure the type and fspath
817          * variables will fit in our mp buffers, including the
818          * terminating NUL.
819          */
820         if (fstypelen > MFSNAMELEN || fspathlen > MNAMELEN) {
821                 error = ENAMETOOLONG;
822                 goto bail;
823         }
824
825         error = vfs_domount(td, fstype, fspath, fsflags, &optlist);
826         if (error == ENOENT) {
827                 error = EINVAL;
828                 if (errmsg != NULL)
829                         strncpy(errmsg, "Invalid fstype", errmsg_len);
830                 goto bail;
831         }
832
833         /*
834          * See if we can mount in the read-only mode if the error code suggests
835          * that it could be possible and the mount options allow for that.
836          * Never try it if "[no]{ro|rw}" has been explicitly requested and not
837          * overridden by "autoro".
838          */
839         if (autoro && vfs_should_downgrade_to_ro_mount(fsflags, error)) {
840                 printf("%s: R/W mount failed, possibly R/O media,"
841                     " trying R/O mount\n", __func__);
842                 fsflags |= MNT_RDONLY;
843                 error = vfs_domount(td, fstype, fspath, fsflags, &optlist);
844         }
845 bail:
846         /* copyout the errmsg */
847         if (errmsg_pos != -1 && ((2 * errmsg_pos + 1) < fsoptions->uio_iovcnt)
848             && errmsg_len > 0 && errmsg != NULL) {
849                 if (fsoptions->uio_segflg == UIO_SYSSPACE) {
850                         bcopy(errmsg,
851                             fsoptions->uio_iov[2 * errmsg_pos + 1].iov_base,
852                             fsoptions->uio_iov[2 * errmsg_pos + 1].iov_len);
853                 } else {
854                         copyout(errmsg,
855                             fsoptions->uio_iov[2 * errmsg_pos + 1].iov_base,
856                             fsoptions->uio_iov[2 * errmsg_pos + 1].iov_len);
857                 }
858         }
859
860         if (optlist != NULL)
861                 vfs_freeopts(optlist);
862         return (error);
863 }
864
865 /*
866  * Old mount API.
867  */
868 #ifndef _SYS_SYSPROTO_H_
869 struct mount_args {
870         char    *type;
871         char    *path;
872         int     flags;
873         caddr_t data;
874 };
875 #endif
876 /* ARGSUSED */
877 int
878 sys_mount(struct thread *td, struct mount_args *uap)
879 {
880         char *fstype;
881         struct vfsconf *vfsp = NULL;
882         struct mntarg *ma = NULL;
883         uint64_t flags;
884         int error;
885
886         /*
887          * Mount flags are now 64-bits. On 32-bit architectures only
888          * 32-bits are passed in, but from here on everything handles
889          * 64-bit flags correctly.
890          */
891         flags = uap->flags;
892
893         AUDIT_ARG_FFLAGS(flags);
894
895         /*
896          * Filter out MNT_ROOTFS.  We do not want clients of mount() in
897          * userspace to set this flag, but we must filter it out if we want
898          * MNT_UPDATE on the root file system to work.
899          * MNT_ROOTFS should only be set by the kernel when mounting its
900          * root file system.
901          */
902         flags &= ~MNT_ROOTFS;
903
904         fstype = malloc(MFSNAMELEN, M_TEMP, M_WAITOK);
905         error = copyinstr(uap->type, fstype, MFSNAMELEN, NULL);
906         if (error) {
907                 free(fstype, M_TEMP);
908                 return (error);
909         }
910
911         AUDIT_ARG_TEXT(fstype);
912         vfsp = vfs_byname_kld(fstype, td, &error);
913         free(fstype, M_TEMP);
914         if (vfsp == NULL)
915                 return (ENOENT);
916         if (((vfsp->vfc_flags & VFCF_SBDRY) != 0 &&
917             vfsp->vfc_vfsops_sd->vfs_cmount == NULL) ||
918             ((vfsp->vfc_flags & VFCF_SBDRY) == 0 &&
919             vfsp->vfc_vfsops->vfs_cmount == NULL))
920                 return (EOPNOTSUPP);
921
922         ma = mount_argsu(ma, "fstype", uap->type, MFSNAMELEN);
923         ma = mount_argsu(ma, "fspath", uap->path, MNAMELEN);
924         ma = mount_argb(ma, flags & MNT_RDONLY, "noro");
925         ma = mount_argb(ma, !(flags & MNT_NOSUID), "nosuid");
926         ma = mount_argb(ma, !(flags & MNT_NOEXEC), "noexec");
927
928         if ((vfsp->vfc_flags & VFCF_SBDRY) != 0)
929                 return (vfsp->vfc_vfsops_sd->vfs_cmount(ma, uap->data, flags));
930         return (vfsp->vfc_vfsops->vfs_cmount(ma, uap->data, flags));
931 }
932
933 /*
934  * vfs_domount_first(): first file system mount (not update)
935  */
936 static int
937 vfs_domount_first(
938         struct thread *td,              /* Calling thread. */
939         struct vfsconf *vfsp,           /* File system type. */
940         char *fspath,                   /* Mount path. */
941         struct vnode *vp,               /* Vnode to be covered. */
942         uint64_t fsflags,               /* Flags common to all filesystems. */
943         struct vfsoptlist **optlist     /* Options local to the filesystem. */
944         )
945 {
946         struct vattr va;
947         struct mount *mp;
948         struct vnode *newdp, *rootvp;
949         int error, error1;
950         bool unmounted;
951
952         ASSERT_VOP_ELOCKED(vp, __func__);
953         KASSERT((fsflags & MNT_UPDATE) == 0, ("MNT_UPDATE shouldn't be here"));
954
955         /*
956          * If the jail of the calling thread lacks permission for this type of
957          * file system, or is trying to cover its own root, deny immediately.
958          */
959         if (jailed(td->td_ucred) && (!prison_allow(td->td_ucred,
960             vfsp->vfc_prison_flag) || vp == td->td_ucred->cr_prison->pr_root)) {
961                 vput(vp);
962                 return (EPERM);
963         }
964
965         /*
966          * If the user is not root, ensure that they own the directory
967          * onto which we are attempting to mount.
968          */
969         error = VOP_GETATTR(vp, &va, td->td_ucred);
970         if (error == 0 && va.va_uid != td->td_ucred->cr_uid)
971                 error = priv_check_cred(td->td_ucred, PRIV_VFS_ADMIN);
972         if (error == 0)
973                 error = vinvalbuf(vp, V_SAVE, 0, 0);
974         if (error == 0 && vp->v_type != VDIR)
975                 error = ENOTDIR;
976         if (error == 0 && (fsflags & MNT_EMPTYDIR) != 0)
977                 error = vfs_emptydir(vp);
978         if (error == 0) {
979                 VI_LOCK(vp);
980                 if ((vp->v_iflag & VI_MOUNT) == 0 && vp->v_mountedhere == NULL)
981                         vp->v_iflag |= VI_MOUNT;
982                 else
983                         error = EBUSY;
984                 VI_UNLOCK(vp);
985         }
986         if (error != 0) {
987                 vput(vp);
988                 return (error);
989         }
990         vn_seqc_write_begin(vp);
991         VOP_UNLOCK(vp);
992
993         /* Allocate and initialize the filesystem. */
994         mp = vfs_mount_alloc(vp, vfsp, fspath, td->td_ucred);
995         /* XXXMAC: pass to vfs_mount_alloc? */
996         mp->mnt_optnew = *optlist;
997         /* Set the mount level flags. */
998         mp->mnt_flag = (fsflags & (MNT_UPDATEMASK | MNT_ROOTFS | MNT_RDONLY));
999
1000         /*
1001          * Mount the filesystem.
1002          * XXX The final recipients of VFS_MOUNT just overwrite the ndp they
1003          * get.  No freeing of cn_pnbuf.
1004          */
1005         error1 = 0;
1006         unmounted = true;
1007         if ((error = VFS_MOUNT(mp)) != 0 ||
1008             (error1 = VFS_STATFS(mp, &mp->mnt_stat)) != 0 ||
1009             (error1 = VFS_ROOT(mp, LK_EXCLUSIVE, &newdp)) != 0) {
1010                 rootvp = NULL;
1011                 if (error1 != 0) {
1012                         MPASS(error == 0);
1013                         rootvp = vfs_cache_root_clear(mp);
1014                         if (rootvp != NULL) {
1015                                 vhold(rootvp);
1016                                 vrele(rootvp);
1017                         }
1018                         (void)vn_start_write(NULL, &mp, V_WAIT);
1019                         MNT_ILOCK(mp);
1020                         mp->mnt_kern_flag |= MNTK_UNMOUNT | MNTK_UNMOUNTF;
1021                         MNT_IUNLOCK(mp);
1022                         VFS_PURGE(mp);
1023                         error = VFS_UNMOUNT(mp, 0);
1024                         vn_finished_write(mp);
1025                         if (error != 0) {
1026                                 printf(
1027                     "failed post-mount (%d): rollback unmount returned %d\n",
1028                                     error1, error);
1029                                 unmounted = false;
1030                         }
1031                         error = error1;
1032                 }
1033                 vfs_unbusy(mp);
1034                 mp->mnt_vnodecovered = NULL;
1035                 if (unmounted) {
1036                         /* XXXKIB wait for mnt_lockref drain? */
1037                         vfs_mount_destroy(mp);
1038                 }
1039                 VI_LOCK(vp);
1040                 vp->v_iflag &= ~VI_MOUNT;
1041                 VI_UNLOCK(vp);
1042                 if (rootvp != NULL) {
1043                         vn_seqc_write_end(rootvp);
1044                         vdrop(rootvp);
1045                 }
1046                 vn_seqc_write_end(vp);
1047                 vrele(vp);
1048                 return (error);
1049         }
1050         vn_seqc_write_begin(newdp);
1051         VOP_UNLOCK(newdp);
1052
1053         if (mp->mnt_opt != NULL)
1054                 vfs_freeopts(mp->mnt_opt);
1055         mp->mnt_opt = mp->mnt_optnew;
1056         *optlist = NULL;
1057
1058         /*
1059          * Prevent external consumers of mount options from reading mnt_optnew.
1060          */
1061         mp->mnt_optnew = NULL;
1062
1063         MNT_ILOCK(mp);
1064         if ((mp->mnt_flag & MNT_ASYNC) != 0 &&
1065             (mp->mnt_kern_flag & MNTK_NOASYNC) == 0)
1066                 mp->mnt_kern_flag |= MNTK_ASYNC;
1067         else
1068                 mp->mnt_kern_flag &= ~MNTK_ASYNC;
1069         MNT_IUNLOCK(mp);
1070
1071         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1072         cache_purge(vp);
1073         VI_LOCK(vp);
1074         vp->v_iflag &= ~VI_MOUNT;
1075         vn_irflag_set_locked(vp, VIRF_MOUNTPOINT);
1076         vp->v_mountedhere = mp;
1077         VI_UNLOCK(vp);
1078         /* Place the new filesystem at the end of the mount list. */
1079         mtx_lock(&mountlist_mtx);
1080         TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
1081         mtx_unlock(&mountlist_mtx);
1082         vfs_event_signal(NULL, VQ_MOUNT, 0);
1083         vn_lock(newdp, LK_EXCLUSIVE | LK_RETRY);
1084         VOP_UNLOCK(vp);
1085         EVENTHANDLER_DIRECT_INVOKE(vfs_mounted, mp, newdp, td);
1086         VOP_UNLOCK(newdp);
1087         mount_devctl_event("MOUNT", mp, false);
1088         mountcheckdirs(vp, newdp);
1089         vn_seqc_write_end(vp);
1090         vn_seqc_write_end(newdp);
1091         vrele(newdp);
1092         if ((mp->mnt_flag & MNT_RDONLY) == 0)
1093                 vfs_allocate_syncvnode(mp);
1094         vfs_op_exit(mp);
1095         vfs_unbusy(mp);
1096         return (0);
1097 }
1098
1099 /*
1100  * vfs_domount_update(): update of mounted file system
1101  */
1102 static int
1103 vfs_domount_update(
1104         struct thread *td,              /* Calling thread. */
1105         struct vnode *vp,               /* Mount point vnode. */
1106         uint64_t fsflags,               /* Flags common to all filesystems. */
1107         struct vfsoptlist **optlist     /* Options local to the filesystem. */
1108         )
1109 {
1110         struct export_args export;
1111         struct o2export_args o2export;
1112         struct vnode *rootvp;
1113         void *bufp;
1114         struct mount *mp;
1115         int error, export_error, i, len;
1116         uint64_t flag;
1117         gid_t *grps;
1118
1119         ASSERT_VOP_ELOCKED(vp, __func__);
1120         KASSERT((fsflags & MNT_UPDATE) != 0, ("MNT_UPDATE should be here"));
1121         mp = vp->v_mount;
1122
1123         if ((vp->v_vflag & VV_ROOT) == 0) {
1124                 if (vfs_copyopt(*optlist, "export", &export, sizeof(export))
1125                     == 0)
1126                         error = EXDEV;
1127                 else
1128                         error = EINVAL;
1129                 vput(vp);
1130                 return (error);
1131         }
1132
1133         /*
1134          * We only allow the filesystem to be reloaded if it
1135          * is currently mounted read-only.
1136          */
1137         flag = mp->mnt_flag;
1138         if ((fsflags & MNT_RELOAD) != 0 && (flag & MNT_RDONLY) == 0) {
1139                 vput(vp);
1140                 return (EOPNOTSUPP);    /* Needs translation */
1141         }
1142         /*
1143          * Only privileged root, or (if MNT_USER is set) the user that
1144          * did the original mount is permitted to update it.
1145          */
1146         error = vfs_suser(mp, td);
1147         if (error != 0) {
1148                 vput(vp);
1149                 return (error);
1150         }
1151         if (vfs_busy(mp, MBF_NOWAIT)) {
1152                 vput(vp);
1153                 return (EBUSY);
1154         }
1155         VI_LOCK(vp);
1156         if ((vp->v_iflag & VI_MOUNT) != 0 || vp->v_mountedhere != NULL) {
1157                 VI_UNLOCK(vp);
1158                 vfs_unbusy(mp);
1159                 vput(vp);
1160                 return (EBUSY);
1161         }
1162         vp->v_iflag |= VI_MOUNT;
1163         VI_UNLOCK(vp);
1164         VOP_UNLOCK(vp);
1165
1166         vfs_op_enter(mp);
1167         vn_seqc_write_begin(vp);
1168
1169         rootvp = NULL;
1170         MNT_ILOCK(mp);
1171         if ((mp->mnt_kern_flag & MNTK_UNMOUNT) != 0) {
1172                 MNT_IUNLOCK(mp);
1173                 error = EBUSY;
1174                 goto end;
1175         }
1176         mp->mnt_flag &= ~MNT_UPDATEMASK;
1177         mp->mnt_flag |= fsflags & (MNT_RELOAD | MNT_FORCE | MNT_UPDATE |
1178             MNT_SNAPSHOT | MNT_ROOTFS | MNT_UPDATEMASK | MNT_RDONLY);
1179         if ((mp->mnt_flag & MNT_ASYNC) == 0)
1180                 mp->mnt_kern_flag &= ~MNTK_ASYNC;
1181         rootvp = vfs_cache_root_clear(mp);
1182         MNT_IUNLOCK(mp);
1183         mp->mnt_optnew = *optlist;
1184         vfs_mergeopts(mp->mnt_optnew, mp->mnt_opt);
1185
1186         /*
1187          * Mount the filesystem.
1188          * XXX The final recipients of VFS_MOUNT just overwrite the ndp they
1189          * get.  No freeing of cn_pnbuf.
1190          */
1191         error = VFS_MOUNT(mp);
1192
1193         export_error = 0;
1194         /* Process the export option. */
1195         if (error == 0 && vfs_getopt(mp->mnt_optnew, "export", &bufp,
1196             &len) == 0) {
1197                 /* Assume that there is only 1 ABI for each length. */
1198                 switch (len) {
1199                 case (sizeof(struct oexport_args)):
1200                         bzero(&o2export, sizeof(o2export));
1201                         /* FALLTHROUGH */
1202                 case (sizeof(o2export)):
1203                         bcopy(bufp, &o2export, len);
1204                         export.ex_flags = (uint64_t)o2export.ex_flags;
1205                         export.ex_root = o2export.ex_root;
1206                         export.ex_uid = o2export.ex_anon.cr_uid;
1207                         export.ex_groups = NULL;
1208                         export.ex_ngroups = o2export.ex_anon.cr_ngroups;
1209                         if (export.ex_ngroups > 0) {
1210                                 if (export.ex_ngroups <= XU_NGROUPS) {
1211                                         export.ex_groups = malloc(
1212                                             export.ex_ngroups * sizeof(gid_t),
1213                                             M_TEMP, M_WAITOK);
1214                                         for (i = 0; i < export.ex_ngroups; i++)
1215                                                 export.ex_groups[i] =
1216                                                   o2export.ex_anon.cr_groups[i];
1217                                 } else
1218                                         export_error = EINVAL;
1219                         } else if (export.ex_ngroups < 0)
1220                                 export_error = EINVAL;
1221                         export.ex_addr = o2export.ex_addr;
1222                         export.ex_addrlen = o2export.ex_addrlen;
1223                         export.ex_mask = o2export.ex_mask;
1224                         export.ex_masklen = o2export.ex_masklen;
1225                         export.ex_indexfile = o2export.ex_indexfile;
1226                         export.ex_numsecflavors = o2export.ex_numsecflavors;
1227                         if (export.ex_numsecflavors < MAXSECFLAVORS) {
1228                                 for (i = 0; i < export.ex_numsecflavors; i++)
1229                                         export.ex_secflavors[i] =
1230                                             o2export.ex_secflavors[i];
1231                         } else
1232                                 export_error = EINVAL;
1233                         if (export_error == 0)
1234                                 export_error = vfs_export(mp, &export);
1235                         free(export.ex_groups, M_TEMP);
1236                         break;
1237                 case (sizeof(export)):
1238                         bcopy(bufp, &export, len);
1239                         grps = NULL;
1240                         if (export.ex_ngroups > 0) {
1241                                 if (export.ex_ngroups <= NGROUPS_MAX) {
1242                                         grps = malloc(export.ex_ngroups *
1243                                             sizeof(gid_t), M_TEMP, M_WAITOK);
1244                                         export_error = copyin(export.ex_groups,
1245                                             grps, export.ex_ngroups *
1246                                             sizeof(gid_t));
1247                                         if (export_error == 0)
1248                                                 export.ex_groups = grps;
1249                                 } else
1250                                         export_error = EINVAL;
1251                         } else if (export.ex_ngroups == 0)
1252                                 export.ex_groups = NULL;
1253                         else
1254                                 export_error = EINVAL;
1255                         if (export_error == 0)
1256                                 export_error = vfs_export(mp, &export);
1257                         free(grps, M_TEMP);
1258                         break;
1259                 default:
1260                         export_error = EINVAL;
1261                         break;
1262                 }
1263         }
1264
1265         MNT_ILOCK(mp);
1266         if (error == 0) {
1267                 mp->mnt_flag &= ~(MNT_UPDATE | MNT_RELOAD | MNT_FORCE |
1268                     MNT_SNAPSHOT);
1269         } else {
1270                 /*
1271                  * If we fail, restore old mount flags. MNT_QUOTA is special,
1272                  * because it is not part of MNT_UPDATEMASK, but it could have
1273                  * changed in the meantime if quotactl(2) was called.
1274                  * All in all we want current value of MNT_QUOTA, not the old
1275                  * one.
1276                  */
1277                 mp->mnt_flag = (mp->mnt_flag & MNT_QUOTA) | (flag & ~MNT_QUOTA);
1278         }
1279         if ((mp->mnt_flag & MNT_ASYNC) != 0 &&
1280             (mp->mnt_kern_flag & MNTK_NOASYNC) == 0)
1281                 mp->mnt_kern_flag |= MNTK_ASYNC;
1282         else
1283                 mp->mnt_kern_flag &= ~MNTK_ASYNC;
1284         MNT_IUNLOCK(mp);
1285
1286         if (error != 0)
1287                 goto end;
1288
1289         mount_devctl_event("REMOUNT", mp, true);
1290         if (mp->mnt_opt != NULL)
1291                 vfs_freeopts(mp->mnt_opt);
1292         mp->mnt_opt = mp->mnt_optnew;
1293         *optlist = NULL;
1294         (void)VFS_STATFS(mp, &mp->mnt_stat);
1295         /*
1296          * Prevent external consumers of mount options from reading
1297          * mnt_optnew.
1298          */
1299         mp->mnt_optnew = NULL;
1300
1301         if ((mp->mnt_flag & MNT_RDONLY) == 0)
1302                 vfs_allocate_syncvnode(mp);
1303         else
1304                 vfs_deallocate_syncvnode(mp);
1305 end:
1306         vfs_op_exit(mp);
1307         if (rootvp != NULL) {
1308                 vn_seqc_write_end(rootvp);
1309                 vrele(rootvp);
1310         }
1311         vn_seqc_write_end(vp);
1312         vfs_unbusy(mp);
1313         VI_LOCK(vp);
1314         vp->v_iflag &= ~VI_MOUNT;
1315         VI_UNLOCK(vp);
1316         vrele(vp);
1317         return (error != 0 ? error : export_error);
1318 }
1319
1320 /*
1321  * vfs_domount(): actually attempt a filesystem mount.
1322  */
1323 static int
1324 vfs_domount(
1325         struct thread *td,              /* Calling thread. */
1326         const char *fstype,             /* Filesystem type. */
1327         char *fspath,                   /* Mount path. */
1328         uint64_t fsflags,               /* Flags common to all filesystems. */
1329         struct vfsoptlist **optlist     /* Options local to the filesystem. */
1330         )
1331 {
1332         struct vfsconf *vfsp;
1333         struct nameidata nd;
1334         struct vnode *vp;
1335         char *pathbuf;
1336         int error;
1337
1338         /*
1339          * Be ultra-paranoid about making sure the type and fspath
1340          * variables will fit in our mp buffers, including the
1341          * terminating NUL.
1342          */
1343         if (strlen(fstype) >= MFSNAMELEN || strlen(fspath) >= MNAMELEN)
1344                 return (ENAMETOOLONG);
1345
1346         if (jailed(td->td_ucred) || usermount == 0) {
1347                 if ((error = priv_check(td, PRIV_VFS_MOUNT)) != 0)
1348                         return (error);
1349         }
1350
1351         /*
1352          * Do not allow NFS export or MNT_SUIDDIR by unprivileged users.
1353          */
1354         if (fsflags & MNT_EXPORTED) {
1355                 error = priv_check(td, PRIV_VFS_MOUNT_EXPORTED);
1356                 if (error)
1357                         return (error);
1358         }
1359         if (fsflags & MNT_SUIDDIR) {
1360                 error = priv_check(td, PRIV_VFS_MOUNT_SUIDDIR);
1361                 if (error)
1362                         return (error);
1363         }
1364         /*
1365          * Silently enforce MNT_NOSUID and MNT_USER for unprivileged users.
1366          */
1367         if ((fsflags & (MNT_NOSUID | MNT_USER)) != (MNT_NOSUID | MNT_USER)) {
1368                 if (priv_check(td, PRIV_VFS_MOUNT_NONUSER) != 0)
1369                         fsflags |= MNT_NOSUID | MNT_USER;
1370         }
1371
1372         /* Load KLDs before we lock the covered vnode to avoid reversals. */
1373         vfsp = NULL;
1374         if ((fsflags & MNT_UPDATE) == 0) {
1375                 /* Don't try to load KLDs if we're mounting the root. */
1376                 if (fsflags & MNT_ROOTFS) {
1377                         if ((vfsp = vfs_byname(fstype)) == NULL)
1378                                 return (ENODEV);
1379                 } else {
1380                         if ((vfsp = vfs_byname_kld(fstype, td, &error)) == NULL)
1381                                 return (error);
1382                 }
1383         }
1384
1385         /*
1386          * Get vnode to be covered or mount point's vnode in case of MNT_UPDATE.
1387          */
1388         NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | AUDITVNODE1,
1389             UIO_SYSSPACE, fspath, td);
1390         error = namei(&nd);
1391         if (error != 0)
1392                 return (error);
1393         NDFREE(&nd, NDF_ONLY_PNBUF);
1394         vp = nd.ni_vp;
1395         if ((fsflags & MNT_UPDATE) == 0) {
1396                 if ((vp->v_vflag & VV_ROOT) != 0 &&
1397                     (fsflags & MNT_NOCOVER) != 0) {
1398                         vput(vp);
1399                         return (EBUSY);
1400                 }
1401                 pathbuf = malloc(MNAMELEN, M_TEMP, M_WAITOK);
1402                 strcpy(pathbuf, fspath);
1403                 error = vn_path_to_global_path(td, vp, pathbuf, MNAMELEN);
1404                 if (error == 0) {
1405                         error = vfs_domount_first(td, vfsp, pathbuf, vp,
1406                             fsflags, optlist);
1407                 }
1408                 free(pathbuf, M_TEMP);
1409         } else
1410                 error = vfs_domount_update(td, vp, fsflags, optlist);
1411
1412         return (error);
1413 }
1414
1415 /*
1416  * Unmount a filesystem.
1417  *
1418  * Note: unmount takes a path to the vnode mounted on as argument, not
1419  * special file (as before).
1420  */
1421 #ifndef _SYS_SYSPROTO_H_
1422 struct unmount_args {
1423         char    *path;
1424         int     flags;
1425 };
1426 #endif
1427 /* ARGSUSED */
1428 int
1429 sys_unmount(struct thread *td, struct unmount_args *uap)
1430 {
1431
1432         return (kern_unmount(td, uap->path, uap->flags));
1433 }
1434
1435 int
1436 kern_unmount(struct thread *td, const char *path, int flags)
1437 {
1438         struct nameidata nd;
1439         struct mount *mp;
1440         char *pathbuf;
1441         int error, id0, id1;
1442
1443         AUDIT_ARG_VALUE(flags);
1444         if (jailed(td->td_ucred) || usermount == 0) {
1445                 error = priv_check(td, PRIV_VFS_UNMOUNT);
1446                 if (error)
1447                         return (error);
1448         }
1449
1450         pathbuf = malloc(MNAMELEN, M_TEMP, M_WAITOK);
1451         error = copyinstr(path, pathbuf, MNAMELEN, NULL);
1452         if (error) {
1453                 free(pathbuf, M_TEMP);
1454                 return (error);
1455         }
1456         if (flags & MNT_BYFSID) {
1457                 AUDIT_ARG_TEXT(pathbuf);
1458                 /* Decode the filesystem ID. */
1459                 if (sscanf(pathbuf, "FSID:%d:%d", &id0, &id1) != 2) {
1460                         free(pathbuf, M_TEMP);
1461                         return (EINVAL);
1462                 }
1463
1464                 mtx_lock(&mountlist_mtx);
1465                 TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
1466                         if (mp->mnt_stat.f_fsid.val[0] == id0 &&
1467                             mp->mnt_stat.f_fsid.val[1] == id1) {
1468                                 vfs_ref(mp);
1469                                 break;
1470                         }
1471                 }
1472                 mtx_unlock(&mountlist_mtx);
1473         } else {
1474                 /*
1475                  * Try to find global path for path argument.
1476                  */
1477                 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | AUDITVNODE1,
1478                     UIO_SYSSPACE, pathbuf, td);
1479                 if (namei(&nd) == 0) {
1480                         NDFREE(&nd, NDF_ONLY_PNBUF);
1481                         error = vn_path_to_global_path(td, nd.ni_vp, pathbuf,
1482                             MNAMELEN);
1483                         if (error == 0)
1484                                 vput(nd.ni_vp);
1485                 }
1486                 mtx_lock(&mountlist_mtx);
1487                 TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
1488                         if (strcmp(mp->mnt_stat.f_mntonname, pathbuf) == 0) {
1489                                 vfs_ref(mp);
1490                                 break;
1491                         }
1492                 }
1493                 mtx_unlock(&mountlist_mtx);
1494         }
1495         free(pathbuf, M_TEMP);
1496         if (mp == NULL) {
1497                 /*
1498                  * Previously we returned ENOENT for a nonexistent path and
1499                  * EINVAL for a non-mountpoint.  We cannot tell these apart
1500                  * now, so in the !MNT_BYFSID case return the more likely
1501                  * EINVAL for compatibility.
1502                  */
1503                 return ((flags & MNT_BYFSID) ? ENOENT : EINVAL);
1504         }
1505
1506         /*
1507          * Don't allow unmounting the root filesystem.
1508          */
1509         if (mp->mnt_flag & MNT_ROOTFS) {
1510                 vfs_rel(mp);
1511                 return (EINVAL);
1512         }
1513         error = dounmount(mp, flags, td);
1514         return (error);
1515 }
1516
1517 /*
1518  * Return error if any of the vnodes, ignoring the root vnode
1519  * and the syncer vnode, have non-zero usecount.
1520  *
1521  * This function is purely advisory - it can return false positives
1522  * and negatives.
1523  */
1524 static int
1525 vfs_check_usecounts(struct mount *mp)
1526 {
1527         struct vnode *vp, *mvp;
1528
1529         MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
1530                 if ((vp->v_vflag & VV_ROOT) == 0 && vp->v_type != VNON &&
1531                     vp->v_usecount != 0) {
1532                         VI_UNLOCK(vp);
1533                         MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
1534                         return (EBUSY);
1535                 }
1536                 VI_UNLOCK(vp);
1537         }
1538
1539         return (0);
1540 }
1541
1542 static void
1543 dounmount_cleanup(struct mount *mp, struct vnode *coveredvp, int mntkflags)
1544 {
1545
1546         mtx_assert(MNT_MTX(mp), MA_OWNED);
1547         mp->mnt_kern_flag &= ~mntkflags;
1548         if ((mp->mnt_kern_flag & MNTK_MWAIT) != 0) {
1549                 mp->mnt_kern_flag &= ~MNTK_MWAIT;
1550                 wakeup(mp);
1551         }
1552         vfs_op_exit_locked(mp);
1553         MNT_IUNLOCK(mp);
1554         if (coveredvp != NULL) {
1555                 VOP_UNLOCK(coveredvp);
1556                 vdrop(coveredvp);
1557         }
1558         vn_finished_write(mp);
1559 }
1560
1561 /*
1562  * There are various reference counters associated with the mount point.
1563  * Normally it is permitted to modify them without taking the mnt ilock,
1564  * but this behavior can be temporarily disabled if stable value is needed
1565  * or callers are expected to block (e.g. to not allow new users during
1566  * forced unmount).
1567  */
1568 void
1569 vfs_op_enter(struct mount *mp)
1570 {
1571         struct mount_pcpu *mpcpu;
1572         int cpu;
1573
1574         MNT_ILOCK(mp);
1575         mp->mnt_vfs_ops++;
1576         if (mp->mnt_vfs_ops > 1) {
1577                 MNT_IUNLOCK(mp);
1578                 return;
1579         }
1580         vfs_op_barrier_wait(mp);
1581         CPU_FOREACH(cpu) {
1582                 mpcpu = vfs_mount_pcpu_remote(mp, cpu);
1583
1584                 mp->mnt_ref += mpcpu->mntp_ref;
1585                 mpcpu->mntp_ref = 0;
1586
1587                 mp->mnt_lockref += mpcpu->mntp_lockref;
1588                 mpcpu->mntp_lockref = 0;
1589
1590                 mp->mnt_writeopcount += mpcpu->mntp_writeopcount;
1591                 mpcpu->mntp_writeopcount = 0;
1592         }
1593         if (mp->mnt_ref <= 0 || mp->mnt_lockref < 0 || mp->mnt_writeopcount < 0)
1594                 panic("%s: invalid count(s) on mp %p: ref %d lockref %d writeopcount %d\n",
1595                     __func__, mp, mp->mnt_ref, mp->mnt_lockref, mp->mnt_writeopcount);
1596         MNT_IUNLOCK(mp);
1597         vfs_assert_mount_counters(mp);
1598 }
1599
1600 void
1601 vfs_op_exit_locked(struct mount *mp)
1602 {
1603
1604         mtx_assert(MNT_MTX(mp), MA_OWNED);
1605
1606         if (mp->mnt_vfs_ops <= 0)
1607                 panic("%s: invalid vfs_ops count %d for mp %p\n",
1608                     __func__, mp->mnt_vfs_ops, mp);
1609         mp->mnt_vfs_ops--;
1610 }
1611
1612 void
1613 vfs_op_exit(struct mount *mp)
1614 {
1615
1616         MNT_ILOCK(mp);
1617         vfs_op_exit_locked(mp);
1618         MNT_IUNLOCK(mp);
1619 }
1620
1621 struct vfs_op_barrier_ipi {
1622         struct mount *mp;
1623         struct smp_rendezvous_cpus_retry_arg srcra;
1624 };
1625
1626 static void
1627 vfs_op_action_func(void *arg)
1628 {
1629         struct vfs_op_barrier_ipi *vfsopipi;
1630         struct mount *mp;
1631
1632         vfsopipi = __containerof(arg, struct vfs_op_barrier_ipi, srcra);
1633         mp = vfsopipi->mp;
1634
1635         if (!vfs_op_thread_entered(mp))
1636                 smp_rendezvous_cpus_done(arg);
1637 }
1638
1639 static void
1640 vfs_op_wait_func(void *arg, int cpu)
1641 {
1642         struct vfs_op_barrier_ipi *vfsopipi;
1643         struct mount *mp;
1644         struct mount_pcpu *mpcpu;
1645
1646         vfsopipi = __containerof(arg, struct vfs_op_barrier_ipi, srcra);
1647         mp = vfsopipi->mp;
1648
1649         mpcpu = vfs_mount_pcpu_remote(mp, cpu);
1650         while (atomic_load_int(&mpcpu->mntp_thread_in_ops))
1651                 cpu_spinwait();
1652 }
1653
1654 void
1655 vfs_op_barrier_wait(struct mount *mp)
1656 {
1657         struct vfs_op_barrier_ipi vfsopipi;
1658
1659         vfsopipi.mp = mp;
1660
1661         smp_rendezvous_cpus_retry(all_cpus,
1662             smp_no_rendezvous_barrier,
1663             vfs_op_action_func,
1664             smp_no_rendezvous_barrier,
1665             vfs_op_wait_func,
1666             &vfsopipi.srcra);
1667 }
1668
1669 #ifdef DIAGNOSTIC
1670 void
1671 vfs_assert_mount_counters(struct mount *mp)
1672 {
1673         struct mount_pcpu *mpcpu;
1674         int cpu;
1675
1676         if (mp->mnt_vfs_ops == 0)
1677                 return;
1678
1679         CPU_FOREACH(cpu) {
1680                 mpcpu = vfs_mount_pcpu_remote(mp, cpu);
1681                 if (mpcpu->mntp_ref != 0 ||
1682                     mpcpu->mntp_lockref != 0 ||
1683                     mpcpu->mntp_writeopcount != 0)
1684                         vfs_dump_mount_counters(mp);
1685         }
1686 }
1687
1688 void
1689 vfs_dump_mount_counters(struct mount *mp)
1690 {
1691         struct mount_pcpu *mpcpu;
1692         int ref, lockref, writeopcount;
1693         int cpu;
1694
1695         printf("%s: mp %p vfs_ops %d\n", __func__, mp, mp->mnt_vfs_ops);
1696
1697         printf("        ref : ");
1698         ref = mp->mnt_ref;
1699         CPU_FOREACH(cpu) {
1700                 mpcpu = vfs_mount_pcpu_remote(mp, cpu);
1701                 printf("%d ", mpcpu->mntp_ref);
1702                 ref += mpcpu->mntp_ref;
1703         }
1704         printf("\n");
1705         printf("    lockref : ");
1706         lockref = mp->mnt_lockref;
1707         CPU_FOREACH(cpu) {
1708                 mpcpu = vfs_mount_pcpu_remote(mp, cpu);
1709                 printf("%d ", mpcpu->mntp_lockref);
1710                 lockref += mpcpu->mntp_lockref;
1711         }
1712         printf("\n");
1713         printf("writeopcount: ");
1714         writeopcount = mp->mnt_writeopcount;
1715         CPU_FOREACH(cpu) {
1716                 mpcpu = vfs_mount_pcpu_remote(mp, cpu);
1717                 printf("%d ", mpcpu->mntp_writeopcount);
1718                 writeopcount += mpcpu->mntp_writeopcount;
1719         }
1720         printf("\n");
1721
1722         printf("counter       struct total\n");
1723         printf("ref             %-5d  %-5d\n", mp->mnt_ref, ref);
1724         printf("lockref         %-5d  %-5d\n", mp->mnt_lockref, lockref);
1725         printf("writeopcount    %-5d  %-5d\n", mp->mnt_writeopcount, writeopcount);
1726
1727         panic("invalid counts on struct mount");
1728 }
1729 #endif
1730
1731 int
1732 vfs_mount_fetch_counter(struct mount *mp, enum mount_counter which)
1733 {
1734         struct mount_pcpu *mpcpu;
1735         int cpu, sum;
1736
1737         switch (which) {
1738         case MNT_COUNT_REF:
1739                 sum = mp->mnt_ref;
1740                 break;
1741         case MNT_COUNT_LOCKREF:
1742                 sum = mp->mnt_lockref;
1743                 break;
1744         case MNT_COUNT_WRITEOPCOUNT:
1745                 sum = mp->mnt_writeopcount;
1746                 break;
1747         }
1748
1749         CPU_FOREACH(cpu) {
1750                 mpcpu = vfs_mount_pcpu_remote(mp, cpu);
1751                 switch (which) {
1752                 case MNT_COUNT_REF:
1753                         sum += mpcpu->mntp_ref;
1754                         break;
1755                 case MNT_COUNT_LOCKREF:
1756                         sum += mpcpu->mntp_lockref;
1757                         break;
1758                 case MNT_COUNT_WRITEOPCOUNT:
1759                         sum += mpcpu->mntp_writeopcount;
1760                         break;
1761                 }
1762         }
1763         return (sum);
1764 }
1765
1766 /*
1767  * Do the actual filesystem unmount.
1768  */
1769 int
1770 dounmount(struct mount *mp, int flags, struct thread *td)
1771 {
1772         struct vnode *coveredvp, *rootvp;
1773         int error;
1774         uint64_t async_flag;
1775         int mnt_gen_r;
1776
1777         if ((coveredvp = mp->mnt_vnodecovered) != NULL) {
1778                 mnt_gen_r = mp->mnt_gen;
1779                 VI_LOCK(coveredvp);
1780                 vholdl(coveredvp);
1781                 vn_lock(coveredvp, LK_EXCLUSIVE | LK_INTERLOCK | LK_RETRY);
1782                 /*
1783                  * Check for mp being unmounted while waiting for the
1784                  * covered vnode lock.
1785                  */
1786                 if (coveredvp->v_mountedhere != mp ||
1787                     coveredvp->v_mountedhere->mnt_gen != mnt_gen_r) {
1788                         VOP_UNLOCK(coveredvp);
1789                         vdrop(coveredvp);
1790                         vfs_rel(mp);
1791                         return (EBUSY);
1792                 }
1793         }
1794
1795         /*
1796          * Only privileged root, or (if MNT_USER is set) the user that did the
1797          * original mount is permitted to unmount this filesystem.
1798          */
1799         error = vfs_suser(mp, td);
1800         if (error != 0) {
1801                 if (coveredvp != NULL) {
1802                         VOP_UNLOCK(coveredvp);
1803                         vdrop(coveredvp);
1804                 }
1805                 vfs_rel(mp);
1806                 return (error);
1807         }
1808
1809         vfs_op_enter(mp);
1810
1811         vn_start_write(NULL, &mp, V_WAIT | V_MNTREF);
1812         MNT_ILOCK(mp);
1813         if ((mp->mnt_kern_flag & MNTK_UNMOUNT) != 0 ||
1814             (mp->mnt_flag & MNT_UPDATE) != 0 ||
1815             !TAILQ_EMPTY(&mp->mnt_uppers)) {
1816                 dounmount_cleanup(mp, coveredvp, 0);
1817                 return (EBUSY);
1818         }
1819         mp->mnt_kern_flag |= MNTK_UNMOUNT;
1820         rootvp = vfs_cache_root_clear(mp);
1821         if (coveredvp != NULL)
1822                 vn_seqc_write_begin(coveredvp);
1823         if (flags & MNT_NONBUSY) {
1824                 MNT_IUNLOCK(mp);
1825                 error = vfs_check_usecounts(mp);
1826                 MNT_ILOCK(mp);
1827                 if (error != 0) {
1828                         vn_seqc_write_end(coveredvp);
1829                         dounmount_cleanup(mp, coveredvp, MNTK_UNMOUNT);
1830                         if (rootvp != NULL) {
1831                                 vn_seqc_write_end(rootvp);
1832                                 vrele(rootvp);
1833                         }
1834                         return (error);
1835                 }
1836         }
1837         /* Allow filesystems to detect that a forced unmount is in progress. */
1838         if (flags & MNT_FORCE) {
1839                 mp->mnt_kern_flag |= MNTK_UNMOUNTF;
1840                 MNT_IUNLOCK(mp);
1841                 /*
1842                  * Must be done after setting MNTK_UNMOUNTF and before
1843                  * waiting for mnt_lockref to become 0.
1844                  */
1845                 VFS_PURGE(mp);
1846                 MNT_ILOCK(mp);
1847         }
1848         error = 0;
1849         if (mp->mnt_lockref) {
1850                 mp->mnt_kern_flag |= MNTK_DRAINING;
1851                 error = msleep(&mp->mnt_lockref, MNT_MTX(mp), PVFS,
1852                     "mount drain", 0);
1853         }
1854         MNT_IUNLOCK(mp);
1855         KASSERT(mp->mnt_lockref == 0,
1856             ("%s: invalid lock refcount in the drain path @ %s:%d",
1857             __func__, __FILE__, __LINE__));
1858         KASSERT(error == 0,
1859             ("%s: invalid return value for msleep in the drain path @ %s:%d",
1860             __func__, __FILE__, __LINE__));
1861
1862         /*
1863          * We want to keep the vnode around so that we can vn_seqc_write_end
1864          * after we are done with unmount. Downgrade our reference to a mere
1865          * hold count so that we don't interefere with anything.
1866          */
1867         if (rootvp != NULL) {
1868                 vhold(rootvp);
1869                 vrele(rootvp);
1870         }
1871
1872         if (mp->mnt_flag & MNT_EXPUBLIC)
1873                 vfs_setpublicfs(NULL, NULL, NULL);
1874
1875         vfs_periodic(mp, MNT_WAIT);
1876         MNT_ILOCK(mp);
1877         async_flag = mp->mnt_flag & MNT_ASYNC;
1878         mp->mnt_flag &= ~MNT_ASYNC;
1879         mp->mnt_kern_flag &= ~MNTK_ASYNC;
1880         MNT_IUNLOCK(mp);
1881         vfs_deallocate_syncvnode(mp);
1882         error = VFS_UNMOUNT(mp, flags);
1883         vn_finished_write(mp);
1884         /*
1885          * If we failed to flush the dirty blocks for this mount point,
1886          * undo all the cdir/rdir and rootvnode changes we made above.
1887          * Unless we failed to do so because the device is reporting that
1888          * it doesn't exist anymore.
1889          */
1890         if (error && error != ENXIO) {
1891                 MNT_ILOCK(mp);
1892                 if ((mp->mnt_flag & MNT_RDONLY) == 0) {
1893                         MNT_IUNLOCK(mp);
1894                         vfs_allocate_syncvnode(mp);
1895                         MNT_ILOCK(mp);
1896                 }
1897                 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
1898                 mp->mnt_flag |= async_flag;
1899                 if ((mp->mnt_flag & MNT_ASYNC) != 0 &&
1900                     (mp->mnt_kern_flag & MNTK_NOASYNC) == 0)
1901                         mp->mnt_kern_flag |= MNTK_ASYNC;
1902                 if (mp->mnt_kern_flag & MNTK_MWAIT) {
1903                         mp->mnt_kern_flag &= ~MNTK_MWAIT;
1904                         wakeup(mp);
1905                 }
1906                 vfs_op_exit_locked(mp);
1907                 MNT_IUNLOCK(mp);
1908                 if (coveredvp) {
1909                         vn_seqc_write_end(coveredvp);
1910                         VOP_UNLOCK(coveredvp);
1911                         vdrop(coveredvp);
1912                 }
1913                 if (rootvp != NULL) {
1914                         vn_seqc_write_end(rootvp);
1915                         vdrop(rootvp);
1916                 }
1917                 return (error);
1918         }
1919         mtx_lock(&mountlist_mtx);
1920         TAILQ_REMOVE(&mountlist, mp, mnt_list);
1921         mtx_unlock(&mountlist_mtx);
1922         EVENTHANDLER_DIRECT_INVOKE(vfs_unmounted, mp, td);
1923         if (coveredvp != NULL) {
1924                 VI_LOCK(coveredvp);
1925                 vn_irflag_unset_locked(coveredvp, VIRF_MOUNTPOINT);
1926                 coveredvp->v_mountedhere = NULL;
1927                 vn_seqc_write_end_locked(coveredvp);
1928                 VI_UNLOCK(coveredvp);
1929                 VOP_UNLOCK(coveredvp);
1930                 vdrop(coveredvp);
1931         }
1932         mount_devctl_event("UNMOUNT", mp, false);
1933         if (rootvp != NULL) {
1934                 vn_seqc_write_end(rootvp);
1935                 vdrop(rootvp);
1936         }
1937         vfs_event_signal(NULL, VQ_UNMOUNT, 0);
1938         if (rootvnode != NULL && mp == rootvnode->v_mount) {
1939                 vrele(rootvnode);
1940                 rootvnode = NULL;
1941         }
1942         if (mp == rootdevmp)
1943                 rootdevmp = NULL;
1944         vfs_mount_destroy(mp);
1945         return (0);
1946 }
1947
1948 /*
1949  * Report errors during filesystem mounting.
1950  */
1951 void
1952 vfs_mount_error(struct mount *mp, const char *fmt, ...)
1953 {
1954         struct vfsoptlist *moptlist = mp->mnt_optnew;
1955         va_list ap;
1956         int error, len;
1957         char *errmsg;
1958
1959         error = vfs_getopt(moptlist, "errmsg", (void **)&errmsg, &len);
1960         if (error || errmsg == NULL || len <= 0)
1961                 return;
1962
1963         va_start(ap, fmt);
1964         vsnprintf(errmsg, (size_t)len, fmt, ap);
1965         va_end(ap);
1966 }
1967
1968 void
1969 vfs_opterror(struct vfsoptlist *opts, const char *fmt, ...)
1970 {
1971         va_list ap;
1972         int error, len;
1973         char *errmsg;
1974
1975         error = vfs_getopt(opts, "errmsg", (void **)&errmsg, &len);
1976         if (error || errmsg == NULL || len <= 0)
1977                 return;
1978
1979         va_start(ap, fmt);
1980         vsnprintf(errmsg, (size_t)len, fmt, ap);
1981         va_end(ap);
1982 }
1983
1984 /*
1985  * ---------------------------------------------------------------------
1986  * Functions for querying mount options/arguments from filesystems.
1987  */
1988
1989 /*
1990  * Check that no unknown options are given
1991  */
1992 int
1993 vfs_filteropt(struct vfsoptlist *opts, const char **legal)
1994 {
1995         struct vfsopt *opt;
1996         char errmsg[255];
1997         const char **t, *p, *q;
1998         int ret = 0;
1999
2000         TAILQ_FOREACH(opt, opts, link) {
2001                 p = opt->name;
2002                 q = NULL;
2003                 if (p[0] == 'n' && p[1] == 'o')
2004                         q = p + 2;
2005                 for(t = global_opts; *t != NULL; t++) {
2006                         if (strcmp(*t, p) == 0)
2007                                 break;
2008                         if (q != NULL) {
2009                                 if (strcmp(*t, q) == 0)
2010                                         break;
2011                         }
2012                 }
2013                 if (*t != NULL)
2014                         continue;
2015                 for(t = legal; *t != NULL; t++) {
2016                         if (strcmp(*t, p) == 0)
2017                                 break;
2018                         if (q != NULL) {
2019                                 if (strcmp(*t, q) == 0)
2020                                         break;
2021                         }
2022                 }
2023                 if (*t != NULL)
2024                         continue;
2025                 snprintf(errmsg, sizeof(errmsg),
2026                     "mount option <%s> is unknown", p);
2027                 ret = EINVAL;
2028         }
2029         if (ret != 0) {
2030                 TAILQ_FOREACH(opt, opts, link) {
2031                         if (strcmp(opt->name, "errmsg") == 0) {
2032                                 strncpy((char *)opt->value, errmsg, opt->len);
2033                                 break;
2034                         }
2035                 }
2036                 if (opt == NULL)
2037                         printf("%s\n", errmsg);
2038         }
2039         return (ret);
2040 }
2041
2042 /*
2043  * Get a mount option by its name.
2044  *
2045  * Return 0 if the option was found, ENOENT otherwise.
2046  * If len is non-NULL it will be filled with the length
2047  * of the option. If buf is non-NULL, it will be filled
2048  * with the address of the option.
2049  */
2050 int
2051 vfs_getopt(struct vfsoptlist *opts, const char *name, void **buf, int *len)
2052 {
2053         struct vfsopt *opt;
2054
2055         KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
2056
2057         TAILQ_FOREACH(opt, opts, link) {
2058                 if (strcmp(name, opt->name) == 0) {
2059                         opt->seen = 1;
2060                         if (len != NULL)
2061                                 *len = opt->len;
2062                         if (buf != NULL)
2063                                 *buf = opt->value;
2064                         return (0);
2065                 }
2066         }
2067         return (ENOENT);
2068 }
2069
2070 int
2071 vfs_getopt_pos(struct vfsoptlist *opts, const char *name)
2072 {
2073         struct vfsopt *opt;
2074
2075         if (opts == NULL)
2076                 return (-1);
2077
2078         TAILQ_FOREACH(opt, opts, link) {
2079                 if (strcmp(name, opt->name) == 0) {
2080                         opt->seen = 1;
2081                         return (opt->pos);
2082                 }
2083         }
2084         return (-1);
2085 }
2086
2087 int
2088 vfs_getopt_size(struct vfsoptlist *opts, const char *name, off_t *value)
2089 {
2090         char *opt_value, *vtp;
2091         quad_t iv;
2092         int error, opt_len;
2093
2094         error = vfs_getopt(opts, name, (void **)&opt_value, &opt_len);
2095         if (error != 0)
2096                 return (error);
2097         if (opt_len == 0 || opt_value == NULL)
2098                 return (EINVAL);
2099         if (opt_value[0] == '\0' || opt_value[opt_len - 1] != '\0')
2100                 return (EINVAL);
2101         iv = strtoq(opt_value, &vtp, 0);
2102         if (vtp == opt_value || (vtp[0] != '\0' && vtp[1] != '\0'))
2103                 return (EINVAL);
2104         if (iv < 0)
2105                 return (EINVAL);
2106         switch (vtp[0]) {
2107         case 't': case 'T':
2108                 iv *= 1024;
2109                 /* FALLTHROUGH */
2110         case 'g': case 'G':
2111                 iv *= 1024;
2112                 /* FALLTHROUGH */
2113         case 'm': case 'M':
2114                 iv *= 1024;
2115                 /* FALLTHROUGH */
2116         case 'k': case 'K':
2117                 iv *= 1024;
2118         case '\0':
2119                 break;
2120         default:
2121                 return (EINVAL);
2122         }
2123         *value = iv;
2124
2125         return (0);
2126 }
2127
2128 char *
2129 vfs_getopts(struct vfsoptlist *opts, const char *name, int *error)
2130 {
2131         struct vfsopt *opt;
2132
2133         *error = 0;
2134         TAILQ_FOREACH(opt, opts, link) {
2135                 if (strcmp(name, opt->name) != 0)
2136                         continue;
2137                 opt->seen = 1;
2138                 if (opt->len == 0 ||
2139                     ((char *)opt->value)[opt->len - 1] != '\0') {
2140                         *error = EINVAL;
2141                         return (NULL);
2142                 }
2143                 return (opt->value);
2144         }
2145         *error = ENOENT;
2146         return (NULL);
2147 }
2148
2149 int
2150 vfs_flagopt(struct vfsoptlist *opts, const char *name, uint64_t *w,
2151         uint64_t val)
2152 {
2153         struct vfsopt *opt;
2154
2155         TAILQ_FOREACH(opt, opts, link) {
2156                 if (strcmp(name, opt->name) == 0) {
2157                         opt->seen = 1;
2158                         if (w != NULL)
2159                                 *w |= val;
2160                         return (1);
2161                 }
2162         }
2163         if (w != NULL)
2164                 *w &= ~val;
2165         return (0);
2166 }
2167
2168 int
2169 vfs_scanopt(struct vfsoptlist *opts, const char *name, const char *fmt, ...)
2170 {
2171         va_list ap;
2172         struct vfsopt *opt;
2173         int ret;
2174
2175         KASSERT(opts != NULL, ("vfs_getopt: caller passed 'opts' as NULL"));
2176
2177         TAILQ_FOREACH(opt, opts, link) {
2178                 if (strcmp(name, opt->name) != 0)
2179                         continue;
2180                 opt->seen = 1;
2181                 if (opt->len == 0 || opt->value == NULL)
2182                         return (0);
2183                 if (((char *)opt->value)[opt->len - 1] != '\0')
2184                         return (0);
2185                 va_start(ap, fmt);
2186                 ret = vsscanf(opt->value, fmt, ap);
2187                 va_end(ap);
2188                 return (ret);
2189         }
2190         return (0);
2191 }
2192
2193 int
2194 vfs_setopt(struct vfsoptlist *opts, const char *name, void *value, int len)
2195 {
2196         struct vfsopt *opt;
2197
2198         TAILQ_FOREACH(opt, opts, link) {
2199                 if (strcmp(name, opt->name) != 0)
2200                         continue;
2201                 opt->seen = 1;
2202                 if (opt->value == NULL)
2203                         opt->len = len;
2204                 else {
2205                         if (opt->len != len)
2206                                 return (EINVAL);
2207                         bcopy(value, opt->value, len);
2208                 }
2209                 return (0);
2210         }
2211         return (ENOENT);
2212 }
2213
2214 int
2215 vfs_setopt_part(struct vfsoptlist *opts, const char *name, void *value, int len)
2216 {
2217         struct vfsopt *opt;
2218
2219         TAILQ_FOREACH(opt, opts, link) {
2220                 if (strcmp(name, opt->name) != 0)
2221                         continue;
2222                 opt->seen = 1;
2223                 if (opt->value == NULL)
2224                         opt->len = len;
2225                 else {
2226                         if (opt->len < len)
2227                                 return (EINVAL);
2228                         opt->len = len;
2229                         bcopy(value, opt->value, len);
2230                 }
2231                 return (0);
2232         }
2233         return (ENOENT);
2234 }
2235
2236 int
2237 vfs_setopts(struct vfsoptlist *opts, const char *name, const char *value)
2238 {
2239         struct vfsopt *opt;
2240
2241         TAILQ_FOREACH(opt, opts, link) {
2242                 if (strcmp(name, opt->name) != 0)
2243                         continue;
2244                 opt->seen = 1;
2245                 if (opt->value == NULL)
2246                         opt->len = strlen(value) + 1;
2247                 else if (strlcpy(opt->value, value, opt->len) >= opt->len)
2248                         return (EINVAL);
2249                 return (0);
2250         }
2251         return (ENOENT);
2252 }
2253
2254 /*
2255  * Find and copy a mount option.
2256  *
2257  * The size of the buffer has to be specified
2258  * in len, if it is not the same length as the
2259  * mount option, EINVAL is returned.
2260  * Returns ENOENT if the option is not found.
2261  */
2262 int
2263 vfs_copyopt(struct vfsoptlist *opts, const char *name, void *dest, int len)
2264 {
2265         struct vfsopt *opt;
2266
2267         KASSERT(opts != NULL, ("vfs_copyopt: caller passed 'opts' as NULL"));
2268
2269         TAILQ_FOREACH(opt, opts, link) {
2270                 if (strcmp(name, opt->name) == 0) {
2271                         opt->seen = 1;
2272                         if (len != opt->len)
2273                                 return (EINVAL);
2274                         bcopy(opt->value, dest, opt->len);
2275                         return (0);
2276                 }
2277         }
2278         return (ENOENT);
2279 }
2280
2281 int
2282 __vfs_statfs(struct mount *mp, struct statfs *sbp)
2283 {
2284
2285         /*
2286          * Filesystems only fill in part of the structure for updates, we
2287          * have to read the entirety first to get all content.
2288          */
2289         if (sbp != &mp->mnt_stat)
2290                 memcpy(sbp, &mp->mnt_stat, sizeof(*sbp));
2291
2292         /*
2293          * Set these in case the underlying filesystem fails to do so.
2294          */
2295         sbp->f_version = STATFS_VERSION;
2296         sbp->f_namemax = NAME_MAX;
2297         sbp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
2298
2299         return (mp->mnt_op->vfs_statfs(mp, sbp));
2300 }
2301
2302 void
2303 vfs_mountedfrom(struct mount *mp, const char *from)
2304 {
2305
2306         bzero(mp->mnt_stat.f_mntfromname, sizeof mp->mnt_stat.f_mntfromname);
2307         strlcpy(mp->mnt_stat.f_mntfromname, from,
2308             sizeof mp->mnt_stat.f_mntfromname);
2309 }
2310
2311 /*
2312  * ---------------------------------------------------------------------
2313  * This is the api for building mount args and mounting filesystems from
2314  * inside the kernel.
2315  *
2316  * The API works by accumulation of individual args.  First error is
2317  * latched.
2318  *
2319  * XXX: should be documented in new manpage kernel_mount(9)
2320  */
2321
2322 /* A memory allocation which must be freed when we are done */
2323 struct mntaarg {
2324         SLIST_ENTRY(mntaarg)    next;
2325 };
2326
2327 /* The header for the mount arguments */
2328 struct mntarg {
2329         struct iovec *v;
2330         int len;
2331         int error;
2332         SLIST_HEAD(, mntaarg)   list;
2333 };
2334
2335 /*
2336  * Add a boolean argument.
2337  *
2338  * flag is the boolean value.
2339  * name must start with "no".
2340  */
2341 struct mntarg *
2342 mount_argb(struct mntarg *ma, int flag, const char *name)
2343 {
2344
2345         KASSERT(name[0] == 'n' && name[1] == 'o',
2346             ("mount_argb(...,%s): name must start with 'no'", name));
2347
2348         return (mount_arg(ma, name + (flag ? 2 : 0), NULL, 0));
2349 }
2350
2351 /*
2352  * Add an argument printf style
2353  */
2354 struct mntarg *
2355 mount_argf(struct mntarg *ma, const char *name, const char *fmt, ...)
2356 {
2357         va_list ap;
2358         struct mntaarg *maa;
2359         struct sbuf *sb;
2360         int len;
2361
2362         if (ma == NULL) {
2363                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
2364                 SLIST_INIT(&ma->list);
2365         }
2366         if (ma->error)
2367                 return (ma);
2368
2369         ma->v = realloc(ma->v, sizeof *ma->v * (ma->len + 2),
2370             M_MOUNT, M_WAITOK);
2371         ma->v[ma->len].iov_base = (void *)(uintptr_t)name;
2372         ma->v[ma->len].iov_len = strlen(name) + 1;
2373         ma->len++;
2374
2375         sb = sbuf_new_auto();
2376         va_start(ap, fmt);
2377         sbuf_vprintf(sb, fmt, ap);
2378         va_end(ap);
2379         sbuf_finish(sb);
2380         len = sbuf_len(sb) + 1;
2381         maa = malloc(sizeof *maa + len, M_MOUNT, M_WAITOK | M_ZERO);
2382         SLIST_INSERT_HEAD(&ma->list, maa, next);
2383         bcopy(sbuf_data(sb), maa + 1, len);
2384         sbuf_delete(sb);
2385
2386         ma->v[ma->len].iov_base = maa + 1;
2387         ma->v[ma->len].iov_len = len;
2388         ma->len++;
2389
2390         return (ma);
2391 }
2392
2393 /*
2394  * Add an argument which is a userland string.
2395  */
2396 struct mntarg *
2397 mount_argsu(struct mntarg *ma, const char *name, const void *val, int len)
2398 {
2399         struct mntaarg *maa;
2400         char *tbuf;
2401
2402         if (val == NULL)
2403                 return (ma);
2404         if (ma == NULL) {
2405                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
2406                 SLIST_INIT(&ma->list);
2407         }
2408         if (ma->error)
2409                 return (ma);
2410         maa = malloc(sizeof *maa + len, M_MOUNT, M_WAITOK | M_ZERO);
2411         SLIST_INSERT_HEAD(&ma->list, maa, next);
2412         tbuf = (void *)(maa + 1);
2413         ma->error = copyinstr(val, tbuf, len, NULL);
2414         return (mount_arg(ma, name, tbuf, -1));
2415 }
2416
2417 /*
2418  * Plain argument.
2419  *
2420  * If length is -1, treat value as a C string.
2421  */
2422 struct mntarg *
2423 mount_arg(struct mntarg *ma, const char *name, const void *val, int len)
2424 {
2425
2426         if (ma == NULL) {
2427                 ma = malloc(sizeof *ma, M_MOUNT, M_WAITOK | M_ZERO);
2428                 SLIST_INIT(&ma->list);
2429         }
2430         if (ma->error)
2431                 return (ma);
2432
2433         ma->v = realloc(ma->v, sizeof *ma->v * (ma->len + 2),
2434             M_MOUNT, M_WAITOK);
2435         ma->v[ma->len].iov_base = (void *)(uintptr_t)name;
2436         ma->v[ma->len].iov_len = strlen(name) + 1;
2437         ma->len++;
2438
2439         ma->v[ma->len].iov_base = (void *)(uintptr_t)val;
2440         if (len < 0)
2441                 ma->v[ma->len].iov_len = strlen(val) + 1;
2442         else
2443                 ma->v[ma->len].iov_len = len;
2444         ma->len++;
2445         return (ma);
2446 }
2447
2448 /*
2449  * Free a mntarg structure
2450  */
2451 static void
2452 free_mntarg(struct mntarg *ma)
2453 {
2454         struct mntaarg *maa;
2455
2456         while (!SLIST_EMPTY(&ma->list)) {
2457                 maa = SLIST_FIRST(&ma->list);
2458                 SLIST_REMOVE_HEAD(&ma->list, next);
2459                 free(maa, M_MOUNT);
2460         }
2461         free(ma->v, M_MOUNT);
2462         free(ma, M_MOUNT);
2463 }
2464
2465 /*
2466  * Mount a filesystem
2467  */
2468 int
2469 kernel_mount(struct mntarg *ma, uint64_t flags)
2470 {
2471         struct uio auio;
2472         int error;
2473
2474         KASSERT(ma != NULL, ("kernel_mount NULL ma"));
2475         KASSERT(ma->v != NULL, ("kernel_mount NULL ma->v"));
2476         KASSERT(!(ma->len & 1), ("kernel_mount odd ma->len (%d)", ma->len));
2477
2478         auio.uio_iov = ma->v;
2479         auio.uio_iovcnt = ma->len;
2480         auio.uio_segflg = UIO_SYSSPACE;
2481
2482         error = ma->error;
2483         if (!error)
2484                 error = vfs_donmount(curthread, flags, &auio);
2485         free_mntarg(ma);
2486         return (error);
2487 }
2488
2489 /*
2490  * A printflike function to mount a filesystem.
2491  */
2492 int
2493 kernel_vmount(int flags, ...)
2494 {
2495         struct mntarg *ma = NULL;
2496         va_list ap;
2497         const char *cp;
2498         const void *vp;
2499         int error;
2500
2501         va_start(ap, flags);
2502         for (;;) {
2503                 cp = va_arg(ap, const char *);
2504                 if (cp == NULL)
2505                         break;
2506                 vp = va_arg(ap, const void *);
2507                 ma = mount_arg(ma, cp, vp, (vp != NULL ? -1 : 0));
2508         }
2509         va_end(ap);
2510
2511         error = kernel_mount(ma, flags);
2512         return (error);
2513 }
2514
2515 /* Map from mount options to printable formats. */
2516 static struct mntoptnames optnames[] = {
2517         MNTOPT_NAMES
2518 };
2519
2520 #define DEVCTL_LEN 1024
2521 static void
2522 mount_devctl_event(const char *type, struct mount *mp, bool donew)
2523 {
2524         const uint8_t *cp;
2525         struct mntoptnames *fp;
2526         struct sbuf sb;
2527         struct statfs *sfp = &mp->mnt_stat;
2528         char *buf;
2529
2530         buf = malloc(DEVCTL_LEN, M_MOUNT, M_NOWAIT);
2531         if (buf == NULL)
2532                 return;
2533         sbuf_new(&sb, buf, DEVCTL_LEN, SBUF_FIXEDLEN);
2534         sbuf_cpy(&sb, "mount-point=\"");
2535         devctl_safe_quote_sb(&sb, sfp->f_mntonname);
2536         sbuf_cat(&sb, "\" mount-dev=\"");
2537         devctl_safe_quote_sb(&sb, sfp->f_mntfromname);
2538         sbuf_cat(&sb, "\" mount-type=\"");
2539         devctl_safe_quote_sb(&sb, sfp->f_fstypename);
2540         sbuf_cat(&sb, "\" fsid=0x");
2541         cp = (const uint8_t *)&sfp->f_fsid.val[0];
2542         for (int i = 0; i < sizeof(sfp->f_fsid); i++)
2543                 sbuf_printf(&sb, "%02x", cp[i]);
2544         sbuf_printf(&sb, " owner=%u flags=\"", sfp->f_owner);
2545         for (fp = optnames; fp->o_opt != 0; fp++) {
2546                 if ((mp->mnt_flag & fp->o_opt) != 0) {
2547                         sbuf_cat(&sb, fp->o_name);
2548                         sbuf_putc(&sb, ';');
2549                 }
2550         }
2551         sbuf_putc(&sb, '"');
2552         sbuf_finish(&sb);
2553
2554         /*
2555          * Options are not published because the form of the options depends on
2556          * the file system and may include binary data. In addition, they don't
2557          * necessarily provide enough useful information to be actionable when
2558          * devd processes them.
2559          */
2560
2561         if (sbuf_error(&sb) == 0)
2562                 devctl_notify("VFS", "FS", type, sbuf_data(&sb));
2563         sbuf_delete(&sb);
2564         free(buf, M_MOUNT);
2565 }
2566
2567 /*
2568  * Force remount specified mount point to read-only.  The argument
2569  * must be busied to avoid parallel unmount attempts.
2570  *
2571  * Intended use is to prevent further writes if some metadata
2572  * inconsistency is detected.  Note that the function still flushes
2573  * all cached metadata and data for the mount point, which might be
2574  * not always suitable.
2575  */
2576 int
2577 vfs_remount_ro(struct mount *mp)
2578 {
2579         struct vfsoptlist *opts;
2580         struct vfsopt *opt;
2581         struct vnode *vp_covered, *rootvp;
2582         int error;
2583
2584         KASSERT(mp->mnt_lockref > 0,
2585             ("vfs_remount_ro: mp %p is not busied", mp));
2586         KASSERT((mp->mnt_kern_flag & MNTK_UNMOUNT) == 0,
2587             ("vfs_remount_ro: mp %p is being unmounted (and busy?)", mp));
2588
2589         rootvp = NULL;
2590         vp_covered = mp->mnt_vnodecovered;
2591         error = vget(vp_covered, LK_EXCLUSIVE | LK_NOWAIT);
2592         if (error != 0)
2593                 return (error);
2594         VI_LOCK(vp_covered);
2595         if ((vp_covered->v_iflag & VI_MOUNT) != 0) {
2596                 VI_UNLOCK(vp_covered);
2597                 vput(vp_covered);
2598                 return (EBUSY);
2599         }
2600         vp_covered->v_iflag |= VI_MOUNT;
2601         VI_UNLOCK(vp_covered);
2602         vfs_op_enter(mp);
2603         vn_seqc_write_begin(vp_covered);
2604
2605         MNT_ILOCK(mp);
2606         if ((mp->mnt_flag & MNT_RDONLY) != 0) {
2607                 MNT_IUNLOCK(mp);
2608                 error = EBUSY;
2609                 goto out;
2610         }
2611         mp->mnt_flag |= MNT_UPDATE | MNT_FORCE | MNT_RDONLY;
2612         rootvp = vfs_cache_root_clear(mp);
2613         MNT_IUNLOCK(mp);
2614
2615         opts = malloc(sizeof(struct vfsoptlist), M_MOUNT, M_WAITOK | M_ZERO);
2616         TAILQ_INIT(opts);
2617         opt = malloc(sizeof(struct vfsopt), M_MOUNT, M_WAITOK | M_ZERO);
2618         opt->name = strdup("ro", M_MOUNT);
2619         opt->value = NULL;
2620         TAILQ_INSERT_TAIL(opts, opt, link);
2621         vfs_mergeopts(opts, mp->mnt_opt);
2622         mp->mnt_optnew = opts;
2623
2624         error = VFS_MOUNT(mp);
2625
2626         if (error == 0) {
2627                 MNT_ILOCK(mp);
2628                 mp->mnt_flag &= ~(MNT_UPDATE | MNT_FORCE);
2629                 MNT_IUNLOCK(mp);
2630                 vfs_deallocate_syncvnode(mp);
2631                 if (mp->mnt_opt != NULL)
2632                         vfs_freeopts(mp->mnt_opt);
2633                 mp->mnt_opt = mp->mnt_optnew;
2634         } else {
2635                 MNT_ILOCK(mp);
2636                 mp->mnt_flag &= ~(MNT_UPDATE | MNT_FORCE | MNT_RDONLY);
2637                 MNT_IUNLOCK(mp);
2638                 vfs_freeopts(mp->mnt_optnew);
2639         }
2640         mp->mnt_optnew = NULL;
2641
2642 out:
2643         vfs_op_exit(mp);
2644         VI_LOCK(vp_covered);
2645         vp_covered->v_iflag &= ~VI_MOUNT;
2646         VI_UNLOCK(vp_covered);
2647         vput(vp_covered);
2648         vn_seqc_write_end(vp_covered);
2649         if (rootvp != NULL) {
2650                 vn_seqc_write_end(rootvp);
2651                 vrele(rootvp);
2652         }
2653         return (error);
2654 }
2655
2656 /*
2657  * Suspend write operations on all local writeable filesystems.  Does
2658  * full sync of them in the process.
2659  *
2660  * Iterate over the mount points in reverse order, suspending most
2661  * recently mounted filesystems first.  It handles a case where a
2662  * filesystem mounted from a md(4) vnode-backed device should be
2663  * suspended before the filesystem that owns the vnode.
2664  */
2665 void
2666 suspend_all_fs(void)
2667 {
2668         struct mount *mp;
2669         int error;
2670
2671         mtx_lock(&mountlist_mtx);
2672         TAILQ_FOREACH_REVERSE(mp, &mountlist, mntlist, mnt_list) {
2673                 error = vfs_busy(mp, MBF_MNTLSTLOCK | MBF_NOWAIT);
2674                 if (error != 0)
2675                         continue;
2676                 if ((mp->mnt_flag & (MNT_RDONLY | MNT_LOCAL)) != MNT_LOCAL ||
2677                     (mp->mnt_kern_flag & MNTK_SUSPEND) != 0) {
2678                         mtx_lock(&mountlist_mtx);
2679                         vfs_unbusy(mp);
2680                         continue;
2681                 }
2682                 error = vfs_write_suspend(mp, 0);
2683                 if (error == 0) {
2684                         MNT_ILOCK(mp);
2685                         MPASS((mp->mnt_kern_flag & MNTK_SUSPEND_ALL) == 0);
2686                         mp->mnt_kern_flag |= MNTK_SUSPEND_ALL;
2687                         MNT_IUNLOCK(mp);
2688                         mtx_lock(&mountlist_mtx);
2689                 } else {
2690                         printf("suspend of %s failed, error %d\n",
2691                             mp->mnt_stat.f_mntonname, error);
2692                         mtx_lock(&mountlist_mtx);
2693                         vfs_unbusy(mp);
2694                 }
2695         }
2696         mtx_unlock(&mountlist_mtx);
2697 }
2698
2699 void
2700 resume_all_fs(void)
2701 {
2702         struct mount *mp;
2703
2704         mtx_lock(&mountlist_mtx);
2705         TAILQ_FOREACH(mp, &mountlist, mnt_list) {
2706                 if ((mp->mnt_kern_flag & MNTK_SUSPEND_ALL) == 0)
2707                         continue;
2708                 mtx_unlock(&mountlist_mtx);
2709                 MNT_ILOCK(mp);
2710                 MPASS((mp->mnt_kern_flag & MNTK_SUSPEND) != 0);
2711                 mp->mnt_kern_flag &= ~MNTK_SUSPEND_ALL;
2712                 MNT_IUNLOCK(mp);
2713                 vfs_write_resume(mp, 0);
2714                 mtx_lock(&mountlist_mtx);
2715                 vfs_unbusy(mp);
2716         }
2717         mtx_unlock(&mountlist_mtx);
2718 }