vfs_mount.c revision 1.12.6.2 1 /* $NetBSD: vfs_mount.c,v 1.12.6.2 2014/12/04 05:38:54 snj Exp $ */
2
3 /*-
4 * Copyright (c) 1997-2011 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 * NASA Ames Research Center, by Charles M. Hannum, and by Andrew Doran.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 /*
34 * Copyright (c) 1989, 1993
35 * The Regents of the University of California. All rights reserved.
36 * (c) UNIX System Laboratories, Inc.
37 * All or some portions of this file are derived from material licensed
38 * to the University of California by American Telephone and Telegraph
39 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
40 * the permission of UNIX System Laboratories, Inc.
41 *
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
44 * are met:
45 * 1. Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * 2. Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in the
49 * documentation and/or other materials provided with the distribution.
50 * 3. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * SUCH DAMAGE.
65 *
66 * @(#)vfs_subr.c 8.13 (Berkeley) 4/18/94
67 */
68
69 #include <sys/cdefs.h>
70 __KERNEL_RCSID(0, "$NetBSD: vfs_mount.c,v 1.12.6.2 2014/12/04 05:38:54 snj Exp $");
71
72 #include <sys/param.h>
73 #include <sys/kernel.h>
74
75 #include <sys/atomic.h>
76 #include <sys/buf.h>
77 #include <sys/conf.h>
78 #include <sys/fcntl.h>
79 #include <sys/filedesc.h>
80 #include <sys/device.h>
81 #include <sys/kauth.h>
82 #include <sys/kmem.h>
83 #include <sys/module.h>
84 #include <sys/mount.h>
85 #include <sys/namei.h>
86 #include <sys/extattr.h>
87 #include <sys/syscallargs.h>
88 #include <sys/sysctl.h>
89 #include <sys/systm.h>
90 #include <sys/vfs_syscalls.h>
91 #include <sys/vnode.h>
92
93 #include <miscfs/genfs/genfs.h>
94 #include <miscfs/syncfs/syncfs.h>
95 #include <miscfs/specfs/specdev.h>
96
97 /* Root filesystem and device. */
98 vnode_t * rootvnode;
99 struct device * root_device;
100
101 /* Mounted filesystem list. */
102 struct mntlist mountlist;
103 kmutex_t mountlist_lock;
104
105 kmutex_t mntvnode_lock;
106 kmutex_t vfs_list_lock;
107
108 static specificdata_domain_t mount_specificdata_domain;
109 static kmutex_t mntid_lock;
110
111 static kmutex_t mountgen_lock;
112 static uint64_t mountgen;
113
114 void
115 vfs_mount_sysinit(void)
116 {
117
118 CIRCLEQ_INIT(&mountlist);
119 mutex_init(&mountlist_lock, MUTEX_DEFAULT, IPL_NONE);
120 mutex_init(&mntvnode_lock, MUTEX_DEFAULT, IPL_NONE);
121 mutex_init(&vfs_list_lock, MUTEX_DEFAULT, IPL_NONE);
122
123 mount_specificdata_domain = specificdata_domain_create();
124 mutex_init(&mntid_lock, MUTEX_DEFAULT, IPL_NONE);
125 mutex_init(&mountgen_lock, MUTEX_DEFAULT, IPL_NONE);
126 mountgen = 0;
127 }
128
129 struct mount *
130 vfs_mountalloc(struct vfsops *vfsops, vnode_t *vp)
131 {
132 struct mount *mp;
133 int error;
134
135 mp = kmem_zalloc(sizeof(*mp), KM_SLEEP);
136 if (mp == NULL)
137 return NULL;
138
139 mp->mnt_op = vfsops;
140 mp->mnt_refcnt = 1;
141 TAILQ_INIT(&mp->mnt_vnodelist);
142 rw_init(&mp->mnt_unmounting);
143 mutex_init(&mp->mnt_renamelock, MUTEX_DEFAULT, IPL_NONE);
144 mutex_init(&mp->mnt_updating, MUTEX_DEFAULT, IPL_NONE);
145 error = vfs_busy(mp, NULL);
146 KASSERT(error == 0);
147 mp->mnt_vnodecovered = vp;
148 mount_initspecific(mp);
149
150 mutex_enter(&mountgen_lock);
151 mp->mnt_gen = mountgen++;
152 mutex_exit(&mountgen_lock);
153
154 return mp;
155 }
156
157 /*
158 * vfs_rootmountalloc: lookup a filesystem type, and if found allocate and
159 * initialize a mount structure for it.
160 *
161 * Devname is usually updated by mount(8) after booting.
162 */
163 int
164 vfs_rootmountalloc(const char *fstypename, const char *devname,
165 struct mount **mpp)
166 {
167 struct vfsops *vfsp = NULL;
168 struct mount *mp;
169
170 mutex_enter(&vfs_list_lock);
171 LIST_FOREACH(vfsp, &vfs_list, vfs_list)
172 if (!strncmp(vfsp->vfs_name, fstypename,
173 sizeof(mp->mnt_stat.f_fstypename)))
174 break;
175 if (vfsp == NULL) {
176 mutex_exit(&vfs_list_lock);
177 return (ENODEV);
178 }
179 vfsp->vfs_refcount++;
180 mutex_exit(&vfs_list_lock);
181
182 if ((mp = vfs_mountalloc(vfsp, NULL)) == NULL)
183 return ENOMEM;
184 mp->mnt_flag = MNT_RDONLY;
185 (void)strlcpy(mp->mnt_stat.f_fstypename, vfsp->vfs_name,
186 sizeof(mp->mnt_stat.f_fstypename));
187 mp->mnt_stat.f_mntonname[0] = '/';
188 mp->mnt_stat.f_mntonname[1] = '\0';
189 mp->mnt_stat.f_mntfromname[sizeof(mp->mnt_stat.f_mntfromname) - 1] =
190 '\0';
191 (void)copystr(devname, mp->mnt_stat.f_mntfromname,
192 sizeof(mp->mnt_stat.f_mntfromname) - 1, 0);
193 *mpp = mp;
194 return 0;
195 }
196
197 /*
198 * vfs_getnewfsid: get a new unique fsid.
199 */
200 void
201 vfs_getnewfsid(struct mount *mp)
202 {
203 static u_short xxxfs_mntid;
204 fsid_t tfsid;
205 int mtype;
206
207 mutex_enter(&mntid_lock);
208 mtype = makefstype(mp->mnt_op->vfs_name);
209 mp->mnt_stat.f_fsidx.__fsid_val[0] = makedev(mtype, 0);
210 mp->mnt_stat.f_fsidx.__fsid_val[1] = mtype;
211 mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
212 if (xxxfs_mntid == 0)
213 ++xxxfs_mntid;
214 tfsid.__fsid_val[0] = makedev(mtype & 0xff, xxxfs_mntid);
215 tfsid.__fsid_val[1] = mtype;
216 if (!CIRCLEQ_EMPTY(&mountlist)) {
217 while (vfs_getvfs(&tfsid)) {
218 tfsid.__fsid_val[0]++;
219 xxxfs_mntid++;
220 }
221 }
222 mp->mnt_stat.f_fsidx.__fsid_val[0] = tfsid.__fsid_val[0];
223 mp->mnt_stat.f_fsid = mp->mnt_stat.f_fsidx.__fsid_val[0];
224 mutex_exit(&mntid_lock);
225 }
226
227 /*
228 * Lookup a mount point by filesystem identifier.
229 *
230 * XXX Needs to add a reference to the mount point.
231 */
232 struct mount *
233 vfs_getvfs(fsid_t *fsid)
234 {
235 struct mount *mp;
236
237 mutex_enter(&mountlist_lock);
238 CIRCLEQ_FOREACH(mp, &mountlist, mnt_list) {
239 if (mp->mnt_stat.f_fsidx.__fsid_val[0] == fsid->__fsid_val[0] &&
240 mp->mnt_stat.f_fsidx.__fsid_val[1] == fsid->__fsid_val[1]) {
241 mutex_exit(&mountlist_lock);
242 return (mp);
243 }
244 }
245 mutex_exit(&mountlist_lock);
246 return NULL;
247 }
248
249 /*
250 * Drop a reference to a mount structure, freeing if the last reference.
251 */
252 void
253 vfs_destroy(struct mount *mp)
254 {
255
256 if (__predict_true((int)atomic_dec_uint_nv(&mp->mnt_refcnt) > 0)) {
257 return;
258 }
259
260 /*
261 * Nothing else has visibility of the mount: we can now
262 * free the data structures.
263 */
264 KASSERT(mp->mnt_refcnt == 0);
265 specificdata_fini(mount_specificdata_domain, &mp->mnt_specdataref);
266 rw_destroy(&mp->mnt_unmounting);
267 mutex_destroy(&mp->mnt_updating);
268 mutex_destroy(&mp->mnt_renamelock);
269 if (mp->mnt_op != NULL) {
270 vfs_delref(mp->mnt_op);
271 }
272 kmem_free(mp, sizeof(*mp));
273 }
274
275 /*
276 * Mark a mount point as busy, and gain a new reference to it. Used to
277 * prevent the file system from being unmounted during critical sections.
278 *
279 * => The caller must hold a pre-existing reference to the mount.
280 * => Will fail if the file system is being unmounted, or is unmounted.
281 */
282 int
283 vfs_busy(struct mount *mp, struct mount **nextp)
284 {
285
286 KASSERT(mp->mnt_refcnt > 0);
287
288 if (__predict_false(!rw_tryenter(&mp->mnt_unmounting, RW_READER))) {
289 if (nextp != NULL) {
290 KASSERT(mutex_owned(&mountlist_lock));
291 *nextp = CIRCLEQ_NEXT(mp, mnt_list);
292 }
293 return EBUSY;
294 }
295 if (__predict_false((mp->mnt_iflag & IMNT_GONE) != 0)) {
296 rw_exit(&mp->mnt_unmounting);
297 if (nextp != NULL) {
298 KASSERT(mutex_owned(&mountlist_lock));
299 *nextp = CIRCLEQ_NEXT(mp, mnt_list);
300 }
301 return ENOENT;
302 }
303 if (nextp != NULL) {
304 mutex_exit(&mountlist_lock);
305 }
306 atomic_inc_uint(&mp->mnt_refcnt);
307 return 0;
308 }
309
310 /*
311 * Unbusy a busy filesystem.
312 *
313 * => If keepref is true, preserve reference added by vfs_busy().
314 * => If nextp != NULL, acquire mountlist_lock.
315 */
316 void
317 vfs_unbusy(struct mount *mp, bool keepref, struct mount **nextp)
318 {
319
320 KASSERT(mp->mnt_refcnt > 0);
321
322 if (nextp != NULL) {
323 mutex_enter(&mountlist_lock);
324 }
325 rw_exit(&mp->mnt_unmounting);
326 if (!keepref) {
327 vfs_destroy(mp);
328 }
329 if (nextp != NULL) {
330 KASSERT(mutex_owned(&mountlist_lock));
331 *nextp = CIRCLEQ_NEXT(mp, mnt_list);
332 }
333 }
334
335 /*
336 * Insert a marker vnode into a mount's vnode list, after the
337 * specified vnode. mntvnode_lock must be held.
338 */
339 void
340 vmark(vnode_t *mvp, vnode_t *vp)
341 {
342 struct mount *mp = mvp->v_mount;
343
344 KASSERT(mutex_owned(&mntvnode_lock));
345 KASSERT((mvp->v_iflag & VI_MARKER) != 0);
346 KASSERT(vp->v_mount == mp);
347
348 TAILQ_INSERT_AFTER(&mp->mnt_vnodelist, vp, mvp, v_mntvnodes);
349 }
350
351 /*
352 * Remove a marker vnode from a mount's vnode list, and return
353 * a pointer to the next vnode in the list. mntvnode_lock must
354 * be held.
355 */
356 vnode_t *
357 vunmark(vnode_t *mvp)
358 {
359 struct mount *mp = mvp->v_mount;
360 vnode_t *vp;
361
362 KASSERT(mutex_owned(&mntvnode_lock));
363 KASSERT((mvp->v_iflag & VI_MARKER) != 0);
364
365 vp = TAILQ_NEXT(mvp, v_mntvnodes);
366 TAILQ_REMOVE(&mp->mnt_vnodelist, mvp, v_mntvnodes);
367
368 KASSERT(vp == NULL || vp->v_mount == mp);
369
370 return vp;
371 }
372
373 /*
374 * Move a vnode from one mount queue to another.
375 */
376 void
377 vfs_insmntque(vnode_t *vp, struct mount *mp)
378 {
379 struct mount *omp;
380
381 KASSERT(mp == NULL || (mp->mnt_iflag & IMNT_UNMOUNT) == 0 ||
382 vp->v_tag == VT_VFS);
383
384 mutex_enter(&mntvnode_lock);
385 /*
386 * Delete from old mount point vnode list, if on one.
387 */
388 if ((omp = vp->v_mount) != NULL)
389 TAILQ_REMOVE(&vp->v_mount->mnt_vnodelist, vp, v_mntvnodes);
390 /*
391 * Insert into list of vnodes for the new mount point, if
392 * available. The caller must take a reference on the mount
393 * structure and donate to the vnode.
394 */
395 if ((vp->v_mount = mp) != NULL)
396 TAILQ_INSERT_TAIL(&mp->mnt_vnodelist, vp, v_mntvnodes);
397 mutex_exit(&mntvnode_lock);
398
399 if (omp != NULL) {
400 /* Release reference to old mount. */
401 vfs_destroy(omp);
402 }
403 }
404
405 /*
406 * Remove any vnodes in the vnode table belonging to mount point mp.
407 *
408 * If FORCECLOSE is not specified, there should not be any active ones,
409 * return error if any are found (nb: this is a user error, not a
410 * system error). If FORCECLOSE is specified, detach any active vnodes
411 * that are found.
412 *
413 * If WRITECLOSE is set, only flush out regular file vnodes open for
414 * writing.
415 *
416 * SKIPSYSTEM causes any vnodes marked VV_SYSTEM to be skipped.
417 */
418 #ifdef DEBUG
419 int busyprt = 0; /* print out busy vnodes */
420 struct ctldebug debug1 = { "busyprt", &busyprt };
421 #endif
422
423 static vnode_t *
424 vflushnext(vnode_t *mvp, int *when)
425 {
426
427 if (hardclock_ticks > *when) {
428 mutex_exit(&mntvnode_lock);
429 yield();
430 mutex_enter(&mntvnode_lock);
431 *when = hardclock_ticks + hz / 10;
432 }
433 return vunmark(mvp);
434 }
435
436 int
437 vflush(struct mount *mp, vnode_t *skipvp, int flags)
438 {
439 vnode_t *vp, *mvp;
440 int busy = 0, when = 0;
441
442 /* First, flush out any vnode references from vrele_list. */
443 vrele_flush();
444
445 /* Allocate a marker vnode. */
446 mvp = vnalloc(mp);
447
448 /*
449 * NOTE: not using the TAILQ_FOREACH here since in this loop vgone()
450 * and vclean() are called.
451 */
452 mutex_enter(&mntvnode_lock);
453 for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp != NULL;
454 vp = vflushnext(mvp, &when)) {
455 vmark(mvp, vp);
456 if (vp->v_mount != mp || vismarker(vp))
457 continue;
458 /*
459 * Skip over a selected vnode.
460 */
461 if (vp == skipvp)
462 continue;
463 mutex_enter(vp->v_interlock);
464 /*
465 * Ignore clean but still referenced vnodes.
466 */
467 if ((vp->v_iflag & VI_CLEAN) != 0) {
468 mutex_exit(vp->v_interlock);
469 continue;
470 }
471 /*
472 * Skip over a vnodes marked VSYSTEM.
473 */
474 if ((flags & SKIPSYSTEM) && (vp->v_vflag & VV_SYSTEM)) {
475 mutex_exit(vp->v_interlock);
476 continue;
477 }
478 /*
479 * If WRITECLOSE is set, only flush out regular file
480 * vnodes open for writing.
481 */
482 if ((flags & WRITECLOSE) &&
483 (vp->v_writecount == 0 || vp->v_type != VREG)) {
484 mutex_exit(vp->v_interlock);
485 continue;
486 }
487 /*
488 * With v_usecount == 0, all we need to do is clear
489 * out the vnode data structures and we are done.
490 */
491 if (vp->v_usecount == 0) {
492 mutex_exit(&mntvnode_lock);
493 vremfree(vp);
494 vp->v_usecount = 1;
495 vclean(vp, DOCLOSE);
496 vrelel(vp, 0);
497 mutex_enter(&mntvnode_lock);
498 continue;
499 }
500 /*
501 * If FORCECLOSE is set, forcibly close the vnode.
502 * For block or character devices, revert to an
503 * anonymous device. For all other files, just
504 * kill them.
505 */
506 if (flags & FORCECLOSE) {
507 mutex_exit(&mntvnode_lock);
508 atomic_inc_uint(&vp->v_usecount);
509 if (vp->v_type != VBLK && vp->v_type != VCHR) {
510 vclean(vp, DOCLOSE);
511 vrelel(vp, 0);
512 } else {
513 vclean(vp, 0);
514 vp->v_op = spec_vnodeop_p; /* XXXSMP */
515 mutex_exit(vp->v_interlock);
516 /*
517 * The vnode isn't clean, but still resides
518 * on the mount list. Remove it. XXX This
519 * is a bit dodgy.
520 */
521 vfs_insmntque(vp, NULL);
522 vrele(vp);
523 }
524 mutex_enter(&mntvnode_lock);
525 continue;
526 }
527 #ifdef DEBUG
528 if (busyprt)
529 vprint("vflush: busy vnode", vp);
530 #endif
531 mutex_exit(vp->v_interlock);
532 busy++;
533 }
534 mutex_exit(&mntvnode_lock);
535 vnfree(mvp);
536 if (busy)
537 return (EBUSY);
538 return (0);
539 }
540
541 /*
542 * Remove clean vnodes from a mountpoint's vnode list.
543 */
544 void
545 vfs_scrubvnlist(struct mount *mp)
546 {
547 vnode_t *vp, *nvp;
548
549 retry:
550 mutex_enter(&mntvnode_lock);
551 for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp; vp = nvp) {
552 nvp = TAILQ_NEXT(vp, v_mntvnodes);
553 mutex_enter(vp->v_interlock);
554 if ((vp->v_iflag & VI_CLEAN) != 0) {
555 TAILQ_REMOVE(&mp->mnt_vnodelist, vp, v_mntvnodes);
556 vp->v_mount = NULL;
557 mutex_exit(&mntvnode_lock);
558 mutex_exit(vp->v_interlock);
559 vfs_destroy(mp);
560 goto retry;
561 }
562 mutex_exit(vp->v_interlock);
563 }
564 mutex_exit(&mntvnode_lock);
565 }
566
567 /*
568 * Mount a file system.
569 */
570
571 /*
572 * Scan all active processes to see if any of them have a current or root
573 * directory onto which the new filesystem has just been mounted. If so,
574 * replace them with the new mount point.
575 */
576 static void
577 mount_checkdirs(vnode_t *olddp)
578 {
579 vnode_t *newdp, *rele1, *rele2;
580 struct cwdinfo *cwdi;
581 struct proc *p;
582 bool retry;
583
584 if (olddp->v_usecount == 1) {
585 return;
586 }
587 if (VFS_ROOT(olddp->v_mountedhere, &newdp))
588 panic("mount: lost mount");
589
590 do {
591 retry = false;
592 mutex_enter(proc_lock);
593 PROCLIST_FOREACH(p, &allproc) {
594 if ((cwdi = p->p_cwdi) == NULL)
595 continue;
596 /*
597 * Cannot change to the old directory any more,
598 * so even if we see a stale value it is not a
599 * problem.
600 */
601 if (cwdi->cwdi_cdir != olddp &&
602 cwdi->cwdi_rdir != olddp)
603 continue;
604 retry = true;
605 rele1 = NULL;
606 rele2 = NULL;
607 atomic_inc_uint(&cwdi->cwdi_refcnt);
608 mutex_exit(proc_lock);
609 rw_enter(&cwdi->cwdi_lock, RW_WRITER);
610 if (cwdi->cwdi_cdir == olddp) {
611 rele1 = cwdi->cwdi_cdir;
612 vref(newdp);
613 cwdi->cwdi_cdir = newdp;
614 }
615 if (cwdi->cwdi_rdir == olddp) {
616 rele2 = cwdi->cwdi_rdir;
617 vref(newdp);
618 cwdi->cwdi_rdir = newdp;
619 }
620 rw_exit(&cwdi->cwdi_lock);
621 cwdfree(cwdi);
622 if (rele1 != NULL)
623 vrele(rele1);
624 if (rele2 != NULL)
625 vrele(rele2);
626 mutex_enter(proc_lock);
627 break;
628 }
629 mutex_exit(proc_lock);
630 } while (retry);
631
632 if (rootvnode == olddp) {
633 vrele(rootvnode);
634 vref(newdp);
635 rootvnode = newdp;
636 }
637 vput(newdp);
638 }
639
640 /*
641 * Start extended attributes
642 */
643 static int
644 start_extattr(struct mount *mp)
645 {
646 int error;
647
648 error = VFS_EXTATTRCTL(mp, EXTATTR_CMD_START, NULL, 0, NULL);
649 if (error)
650 printf("%s: failed to start extattr: error = %d\n",
651 mp->mnt_stat.f_mntonname, error);
652
653 return error;
654 }
655
656 int
657 mount_domount(struct lwp *l, vnode_t **vpp, struct vfsops *vfsops,
658 const char *path, int flags, void *data, size_t *data_len)
659 {
660 vnode_t *vp = *vpp;
661 struct mount *mp;
662 struct vattr va;
663 struct pathbuf *pb;
664 struct nameidata nd;
665 int error;
666
667 error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_MOUNT,
668 KAUTH_REQ_SYSTEM_MOUNT_NEW, vp, KAUTH_ARG(flags), data);
669 if (error) {
670 vfs_delref(vfsops);
671 return error;
672 }
673
674 /* Cannot make a non-dir a mount-point (from here anyway). */
675 if (vp->v_type != VDIR) {
676 vfs_delref(vfsops);
677 return ENOTDIR;
678 }
679
680 /*
681 * If the user is not root, ensure that they own the directory
682 * onto which we are attempting to mount.
683 */
684 vn_lock(vp, LK_SHARED | LK_RETRY);
685 error = VOP_GETATTR(vp, &va, l->l_cred);
686 VOP_UNLOCK(vp);
687 if (error != 0) {
688 vfs_delref(vfsops);
689 return error;
690 }
691 if ((va.va_uid != kauth_cred_geteuid(l->l_cred) &&
692 (error = kauth_authorize_generic(l->l_cred,
693 KAUTH_GENERIC_ISSUSER, NULL)) != 0)) {
694 vfs_delref(vfsops);
695 return error;
696 }
697
698 if (flags & MNT_EXPORTED) {
699 vfs_delref(vfsops);
700 return EINVAL;
701 }
702
703 if ((mp = vfs_mountalloc(vfsops, vp)) == NULL) {
704 vfs_delref(vfsops);
705 return ENOMEM;
706 }
707
708 mp->mnt_stat.f_owner = kauth_cred_geteuid(l->l_cred);
709
710 /*
711 * The underlying file system may refuse the mount for
712 * various reasons. Allow the user to force it to happen.
713 *
714 * Set the mount level flags.
715 */
716 mp->mnt_flag = flags & (MNT_BASIC_FLAGS | MNT_FORCE | MNT_IGNORE);
717
718 mutex_enter(&mp->mnt_updating);
719 error = VFS_MOUNT(mp, path, data, data_len);
720 mp->mnt_flag &= ~MNT_OP_FLAGS;
721
722 if (error != 0)
723 goto err_unmounted;
724
725 /*
726 * Validate and prepare the mount point.
727 */
728 error = pathbuf_copyin(path, &pb);
729 if (error != 0) {
730 goto err_mounted;
731 }
732 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | TRYEMULROOT, pb);
733 error = namei(&nd);
734 pathbuf_destroy(pb);
735 if (error != 0) {
736 goto err_mounted;
737 }
738 if (nd.ni_vp != vp) {
739 vput(nd.ni_vp);
740 error = EINVAL;
741 goto err_mounted;
742 }
743 if (vp->v_mountedhere != NULL) {
744 vput(nd.ni_vp);
745 error = EBUSY;
746 goto err_mounted;
747 }
748 error = vinvalbuf(vp, V_SAVE, l->l_cred, l, 0, 0);
749 if (error != 0) {
750 vput(nd.ni_vp);
751 goto err_mounted;
752 }
753
754 /*
755 * Put the new filesystem on the mount list after root.
756 */
757 cache_purge(vp);
758 mp->mnt_iflag &= ~IMNT_WANTRDWR;
759
760 mutex_enter(&mountlist_lock);
761 CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
762 mutex_exit(&mountlist_lock);
763 if ((mp->mnt_flag & (MNT_RDONLY | MNT_ASYNC)) == 0)
764 error = vfs_allocate_syncvnode(mp);
765 if (error == 0)
766 vp->v_mountedhere = mp;
767 vput(nd.ni_vp);
768 if (error != 0)
769 goto err_onmountlist;
770
771 mount_checkdirs(vp);
772 mutex_exit(&mp->mnt_updating);
773
774 /* Hold an additional reference to the mount across VFS_START(). */
775 vfs_unbusy(mp, true, NULL);
776 (void) VFS_STATVFS(mp, &mp->mnt_stat);
777 error = VFS_START(mp, 0);
778 if (error) {
779 vrele(vp);
780 } else if (flags & MNT_EXTATTR) {
781 (void)start_extattr(mp);
782 }
783 /* Drop reference held for VFS_START(). */
784 vfs_destroy(mp);
785 *vpp = NULL;
786 return error;
787
788 err_onmountlist:
789 mutex_enter(&mountlist_lock);
790 CIRCLEQ_REMOVE(&mountlist, mp, mnt_list);
791 mp->mnt_iflag |= IMNT_GONE;
792 mutex_exit(&mountlist_lock);
793
794 err_mounted:
795 if (VFS_UNMOUNT(mp, MNT_FORCE) != 0)
796 panic("Unmounting fresh file system failed");
797
798 err_unmounted:
799 vp->v_mountedhere = NULL;
800 mutex_exit(&mp->mnt_updating);
801 vfs_unbusy(mp, false, NULL);
802 vfs_destroy(mp);
803
804 return error;
805 }
806
807 /*
808 * Do the actual file system unmount. File system is assumed to have
809 * been locked by the caller.
810 *
811 * => Caller hold reference to the mount, explicitly for dounmount().
812 */
813 int
814 dounmount(struct mount *mp, int flags, struct lwp *l)
815 {
816 vnode_t *coveredvp;
817 int error, async, used_syncer, used_extattr;
818
819 #if NVERIEXEC > 0
820 error = veriexec_unmountchk(mp);
821 if (error)
822 return (error);
823 #endif /* NVERIEXEC > 0 */
824
825 /*
826 * XXX Freeze syncer. Must do this before locking the
827 * mount point. See dounmount() for details.
828 */
829 mutex_enter(&syncer_mutex);
830 rw_enter(&mp->mnt_unmounting, RW_WRITER);
831 if ((mp->mnt_iflag & IMNT_GONE) != 0) {
832 rw_exit(&mp->mnt_unmounting);
833 mutex_exit(&syncer_mutex);
834 return ENOENT;
835 }
836
837 used_syncer = (mp->mnt_syncer != NULL);
838 used_extattr = mp->mnt_flag & MNT_EXTATTR;
839
840 /*
841 * XXX Syncer must be frozen when we get here. This should really
842 * be done on a per-mountpoint basis, but the syncer doesn't work
843 * like that.
844 *
845 * The caller of dounmount() must acquire syncer_mutex because
846 * the syncer itself acquires locks in syncer_mutex -> vfs_busy
847 * order, and we must preserve that order to avoid deadlock.
848 *
849 * So, if the file system did not use the syncer, now is
850 * the time to release the syncer_mutex.
851 */
852 if (used_syncer == 0) {
853 mutex_exit(&syncer_mutex);
854 }
855 mp->mnt_iflag |= IMNT_UNMOUNT;
856 async = mp->mnt_flag & MNT_ASYNC;
857 mp->mnt_flag &= ~MNT_ASYNC;
858 cache_purgevfs(mp); /* remove cache entries for this file sys */
859 if (mp->mnt_syncer != NULL)
860 vfs_deallocate_syncvnode(mp);
861 error = 0;
862 if ((mp->mnt_flag & MNT_RDONLY) == 0) {
863 error = VFS_SYNC(mp, MNT_WAIT, l->l_cred);
864 }
865 vfs_scrubvnlist(mp);
866 if (error == 0 || (flags & MNT_FORCE)) {
867 error = VFS_UNMOUNT(mp, flags);
868 }
869 if (error) {
870 if ((mp->mnt_flag & (MNT_RDONLY | MNT_ASYNC)) == 0)
871 (void) vfs_allocate_syncvnode(mp);
872 mp->mnt_iflag &= ~IMNT_UNMOUNT;
873 mp->mnt_flag |= async;
874 rw_exit(&mp->mnt_unmounting);
875 if (used_syncer)
876 mutex_exit(&syncer_mutex);
877 if (used_extattr) {
878 if (start_extattr(mp) != 0)
879 mp->mnt_flag &= ~MNT_EXTATTR;
880 else
881 mp->mnt_flag |= MNT_EXTATTR;
882 }
883 return (error);
884 }
885 vfs_scrubvnlist(mp);
886 mutex_enter(&mountlist_lock);
887 if ((coveredvp = mp->mnt_vnodecovered) != NULLVP)
888 coveredvp->v_mountedhere = NULL;
889 CIRCLEQ_REMOVE(&mountlist, mp, mnt_list);
890 mp->mnt_iflag |= IMNT_GONE;
891 mutex_exit(&mountlist_lock);
892 if (TAILQ_FIRST(&mp->mnt_vnodelist) != NULL)
893 panic("unmount: dangling vnode");
894 if (used_syncer)
895 mutex_exit(&syncer_mutex);
896 vfs_hooks_unmount(mp);
897 rw_exit(&mp->mnt_unmounting);
898 vfs_destroy(mp); /* reference from mount() */
899 if (coveredvp != NULLVP) {
900 vrele(coveredvp);
901 }
902 return (0);
903 }
904
905 /*
906 * Unmount all file systems.
907 * We traverse the list in reverse order under the assumption that doing so
908 * will avoid needing to worry about dependencies.
909 */
910 bool
911 vfs_unmountall(struct lwp *l)
912 {
913
914 printf("unmounting file systems...");
915 return vfs_unmountall1(l, true, true);
916 }
917
918 static void
919 vfs_unmount_print(struct mount *mp, const char *pfx)
920 {
921
922 aprint_verbose("%sunmounted %s on %s type %s\n", pfx,
923 mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname,
924 mp->mnt_stat.f_fstypename);
925 }
926
927 bool
928 vfs_unmount_forceone(struct lwp *l)
929 {
930 struct mount *mp, *nmp;
931 int error;
932
933 nmp = NULL;
934
935 CIRCLEQ_FOREACH_REVERSE(mp, &mountlist, mnt_list) {
936 if (nmp == NULL || mp->mnt_gen > nmp->mnt_gen) {
937 nmp = mp;
938 }
939 }
940 if (nmp == NULL) {
941 return false;
942 }
943
944 #ifdef DEBUG
945 printf("\nforcefully unmounting %s (%s)...",
946 nmp->mnt_stat.f_mntonname, nmp->mnt_stat.f_mntfromname);
947 #endif
948 atomic_inc_uint(&nmp->mnt_refcnt);
949 if ((error = dounmount(nmp, MNT_FORCE, l)) == 0) {
950 vfs_unmount_print(nmp, "forcefully ");
951 return true;
952 } else {
953 vfs_destroy(nmp);
954 }
955
956 #ifdef DEBUG
957 printf("forceful unmount of %s failed with error %d\n",
958 nmp->mnt_stat.f_mntonname, error);
959 #endif
960
961 return false;
962 }
963
964 bool
965 vfs_unmountall1(struct lwp *l, bool force, bool verbose)
966 {
967 struct mount *mp, *nmp;
968 bool any_error = false, progress = false;
969 int error;
970
971 for (mp = CIRCLEQ_LAST(&mountlist);
972 mp != (void *)&mountlist;
973 mp = nmp) {
974 nmp = CIRCLEQ_PREV(mp, mnt_list);
975 #ifdef DEBUG
976 printf("\nunmounting %p %s (%s)...",
977 (void *)mp, mp->mnt_stat.f_mntonname,
978 mp->mnt_stat.f_mntfromname);
979 #endif
980 atomic_inc_uint(&mp->mnt_refcnt);
981 if ((error = dounmount(mp, force ? MNT_FORCE : 0, l)) == 0) {
982 vfs_unmount_print(mp, "");
983 progress = true;
984 } else {
985 vfs_destroy(mp);
986 if (verbose) {
987 printf("unmount of %s failed with error %d\n",
988 mp->mnt_stat.f_mntonname, error);
989 }
990 any_error = true;
991 }
992 }
993 if (verbose) {
994 printf(" done\n");
995 }
996 if (any_error && verbose) {
997 printf("WARNING: some file systems would not unmount\n");
998 }
999 return progress;
1000 }
1001
1002 void
1003 vfs_sync_all(struct lwp *l)
1004 {
1005 printf("syncing disks... ");
1006
1007 /* remove user processes from run queue */
1008 suspendsched();
1009 (void)spl0();
1010
1011 /* avoid coming back this way again if we panic. */
1012 doing_shutdown = 1;
1013
1014 do_sys_sync(l);
1015
1016 /* Wait for sync to finish. */
1017 if (buf_syncwait() != 0) {
1018 #if defined(DDB) && defined(DEBUG_HALT_BUSY)
1019 Debugger();
1020 #endif
1021 printf("giving up\n");
1022 return;
1023 } else
1024 printf("done\n");
1025 }
1026
1027 /*
1028 * Sync and unmount file systems before shutting down.
1029 */
1030 void
1031 vfs_shutdown(void)
1032 {
1033 lwp_t *l = curlwp;
1034
1035 vfs_sync_all(l);
1036
1037 /*
1038 * If we have paniced - do not make the situation potentially
1039 * worse by unmounting the file systems.
1040 */
1041 if (panicstr != NULL) {
1042 return;
1043 }
1044
1045 /* Unmount file systems. */
1046 vfs_unmountall(l);
1047 }
1048
1049 /*
1050 * Print a list of supported file system types (used by vfs_mountroot)
1051 */
1052 static void
1053 vfs_print_fstypes(void)
1054 {
1055 struct vfsops *v;
1056 int cnt = 0;
1057
1058 mutex_enter(&vfs_list_lock);
1059 LIST_FOREACH(v, &vfs_list, vfs_list)
1060 ++cnt;
1061 mutex_exit(&vfs_list_lock);
1062
1063 if (cnt == 0) {
1064 printf("WARNING: No file system modules have been loaded.\n");
1065 return;
1066 }
1067
1068 printf("Supported file systems:");
1069 mutex_enter(&vfs_list_lock);
1070 LIST_FOREACH(v, &vfs_list, vfs_list) {
1071 printf(" %s", v->vfs_name);
1072 }
1073 mutex_exit(&vfs_list_lock);
1074 printf("\n");
1075 }
1076
1077 /*
1078 * Mount the root file system. If the operator didn't specify a
1079 * file system to use, try all possible file systems until one
1080 * succeeds.
1081 */
1082 int
1083 vfs_mountroot(void)
1084 {
1085 struct vfsops *v;
1086 int error = ENODEV;
1087
1088 if (root_device == NULL)
1089 panic("vfs_mountroot: root device unknown");
1090
1091 switch (device_class(root_device)) {
1092 case DV_IFNET:
1093 if (rootdev != NODEV)
1094 panic("vfs_mountroot: rootdev set for DV_IFNET "
1095 "(0x%llx -> %llu,%llu)",
1096 (unsigned long long)rootdev,
1097 (unsigned long long)major(rootdev),
1098 (unsigned long long)minor(rootdev));
1099 break;
1100
1101 case DV_DISK:
1102 if (rootdev == NODEV)
1103 panic("vfs_mountroot: rootdev not set for DV_DISK");
1104 if (bdevvp(rootdev, &rootvp))
1105 panic("vfs_mountroot: can't get vnode for rootdev");
1106 error = VOP_OPEN(rootvp, FREAD, FSCRED);
1107 if (error) {
1108 printf("vfs_mountroot: can't open root device\n");
1109 return (error);
1110 }
1111 break;
1112
1113 case DV_VIRTUAL:
1114 break;
1115
1116 default:
1117 printf("%s: inappropriate for root file system\n",
1118 device_xname(root_device));
1119 return (ENODEV);
1120 }
1121
1122 /*
1123 * If user specified a root fs type, use it. Make sure the
1124 * specified type exists and has a mount_root()
1125 */
1126 if (strcmp(rootfstype, ROOT_FSTYPE_ANY) != 0) {
1127 v = vfs_getopsbyname(rootfstype);
1128 error = EFTYPE;
1129 if (v != NULL) {
1130 if (v->vfs_mountroot != NULL) {
1131 error = (v->vfs_mountroot)();
1132 }
1133 v->vfs_refcount--;
1134 }
1135 goto done;
1136 }
1137
1138 /*
1139 * Try each file system currently configured into the kernel.
1140 */
1141 mutex_enter(&vfs_list_lock);
1142 LIST_FOREACH(v, &vfs_list, vfs_list) {
1143 if (v->vfs_mountroot == NULL)
1144 continue;
1145 #ifdef DEBUG
1146 aprint_normal("mountroot: trying %s...\n", v->vfs_name);
1147 #endif
1148 v->vfs_refcount++;
1149 mutex_exit(&vfs_list_lock);
1150 error = (*v->vfs_mountroot)();
1151 mutex_enter(&vfs_list_lock);
1152 v->vfs_refcount--;
1153 if (!error) {
1154 aprint_normal("root file system type: %s\n",
1155 v->vfs_name);
1156 break;
1157 }
1158 }
1159 mutex_exit(&vfs_list_lock);
1160
1161 if (v == NULL) {
1162 vfs_print_fstypes();
1163 printf("no file system for %s", device_xname(root_device));
1164 if (device_class(root_device) == DV_DISK)
1165 printf(" (dev 0x%llx)", (unsigned long long)rootdev);
1166 printf("\n");
1167 error = EFTYPE;
1168 }
1169
1170 done:
1171 if (error && device_class(root_device) == DV_DISK) {
1172 VOP_CLOSE(rootvp, FREAD, FSCRED);
1173 vrele(rootvp);
1174 }
1175 if (error == 0) {
1176 extern struct cwdinfo cwdi0;
1177
1178 CIRCLEQ_FIRST(&mountlist)->mnt_flag |= MNT_ROOTFS;
1179 CIRCLEQ_FIRST(&mountlist)->mnt_op->vfs_refcount++;
1180
1181 /*
1182 * Get the vnode for '/'. Set cwdi0.cwdi_cdir to
1183 * reference it.
1184 */
1185 error = VFS_ROOT(CIRCLEQ_FIRST(&mountlist), &rootvnode);
1186 if (error)
1187 panic("cannot find root vnode, error=%d", error);
1188 cwdi0.cwdi_cdir = rootvnode;
1189 vref(cwdi0.cwdi_cdir);
1190 VOP_UNLOCK(rootvnode);
1191 cwdi0.cwdi_rdir = NULL;
1192
1193 /*
1194 * Now that root is mounted, we can fixup initproc's CWD
1195 * info. All other processes are kthreads, which merely
1196 * share proc0's CWD info.
1197 */
1198 initproc->p_cwdi->cwdi_cdir = rootvnode;
1199 vref(initproc->p_cwdi->cwdi_cdir);
1200 initproc->p_cwdi->cwdi_rdir = NULL;
1201 /*
1202 * Enable loading of modules from the filesystem
1203 */
1204 module_load_vfs_init();
1205
1206 }
1207 return (error);
1208 }
1209
1210 /*
1211 * mount_specific_key_create --
1212 * Create a key for subsystem mount-specific data.
1213 */
1214 int
1215 mount_specific_key_create(specificdata_key_t *keyp, specificdata_dtor_t dtor)
1216 {
1217
1218 return specificdata_key_create(mount_specificdata_domain, keyp, dtor);
1219 }
1220
1221 /*
1222 * mount_specific_key_delete --
1223 * Delete a key for subsystem mount-specific data.
1224 */
1225 void
1226 mount_specific_key_delete(specificdata_key_t key)
1227 {
1228
1229 specificdata_key_delete(mount_specificdata_domain, key);
1230 }
1231
1232 /*
1233 * mount_initspecific --
1234 * Initialize a mount's specificdata container.
1235 */
1236 void
1237 mount_initspecific(struct mount *mp)
1238 {
1239 int error;
1240
1241 error = specificdata_init(mount_specificdata_domain,
1242 &mp->mnt_specdataref);
1243 KASSERT(error == 0);
1244 }
1245
1246 /*
1247 * mount_finispecific --
1248 * Finalize a mount's specificdata container.
1249 */
1250 void
1251 mount_finispecific(struct mount *mp)
1252 {
1253
1254 specificdata_fini(mount_specificdata_domain, &mp->mnt_specdataref);
1255 }
1256
1257 /*
1258 * mount_getspecific --
1259 * Return mount-specific data corresponding to the specified key.
1260 */
1261 void *
1262 mount_getspecific(struct mount *mp, specificdata_key_t key)
1263 {
1264
1265 return specificdata_getspecific(mount_specificdata_domain,
1266 &mp->mnt_specdataref, key);
1267 }
1268
1269 /*
1270 * mount_setspecific --
1271 * Set mount-specific data corresponding to the specified key.
1272 */
1273 void
1274 mount_setspecific(struct mount *mp, specificdata_key_t key, void *data)
1275 {
1276
1277 specificdata_setspecific(mount_specificdata_domain,
1278 &mp->mnt_specdataref, key, data);
1279 }
1280
1281 /*
1282 * Check to see if a filesystem is mounted on a block device.
1283 */
1284 int
1285 vfs_mountedon(vnode_t *vp)
1286 {
1287 vnode_t *vq;
1288 int error = 0;
1289
1290 if (vp->v_type != VBLK)
1291 return ENOTBLK;
1292 if (vp->v_specmountpoint != NULL)
1293 return (EBUSY);
1294 mutex_enter(&device_lock);
1295 for (vq = specfs_hash[SPECHASH(vp->v_rdev)]; vq != NULL;
1296 vq = vq->v_specnext) {
1297 if (vq->v_type != vp->v_type || vq->v_rdev != vp->v_rdev)
1298 continue;
1299 if (vq->v_specmountpoint != NULL) {
1300 error = EBUSY;
1301 break;
1302 }
1303 }
1304 mutex_exit(&device_lock);
1305 return (error);
1306 }
1307
1308 /*
1309 * Check if a device pointed to by vp is mounted.
1310 *
1311 * Returns:
1312 * EINVAL if it's not a disk
1313 * EBUSY if it's a disk and mounted
1314 * 0 if it's a disk and not mounted
1315 */
1316 int
1317 rawdev_mounted(vnode_t *vp, vnode_t **bvpp)
1318 {
1319 vnode_t *bvp;
1320 dev_t dev;
1321 int d_type;
1322
1323 bvp = NULL;
1324 d_type = D_OTHER;
1325
1326 if (iskmemvp(vp))
1327 return EINVAL;
1328
1329 switch (vp->v_type) {
1330 case VCHR: {
1331 const struct cdevsw *cdev;
1332
1333 dev = vp->v_rdev;
1334 cdev = cdevsw_lookup(dev);
1335 if (cdev != NULL) {
1336 dev_t blkdev;
1337
1338 blkdev = devsw_chr2blk(dev);
1339 if (blkdev != NODEV) {
1340 if (vfinddev(blkdev, VBLK, &bvp) != 0) {
1341 d_type = (cdev->d_flag & D_TYPEMASK);
1342 /* XXX: what if bvp disappears? */
1343 vrele(bvp);
1344 }
1345 }
1346 }
1347
1348 break;
1349 }
1350
1351 case VBLK: {
1352 const struct bdevsw *bdev;
1353
1354 dev = vp->v_rdev;
1355 bdev = bdevsw_lookup(dev);
1356 if (bdev != NULL)
1357 d_type = (bdev->d_flag & D_TYPEMASK);
1358
1359 bvp = vp;
1360
1361 break;
1362 }
1363
1364 default:
1365 break;
1366 }
1367
1368 if (d_type != D_DISK)
1369 return EINVAL;
1370
1371 if (bvpp != NULL)
1372 *bvpp = bvp;
1373
1374 /*
1375 * XXX: This is bogus. We should be failing the request
1376 * XXX: not only if this specific slice is mounted, but
1377 * XXX: if it's on a disk with any other mounted slice.
1378 */
1379 if (vfs_mountedon(bvp))
1380 return EBUSY;
1381
1382 return 0;
1383 }
1384
1385 /*
1386 * Make a 'unique' number from a mount type name.
1387 */
1388 long
1389 makefstype(const char *type)
1390 {
1391 long rv;
1392
1393 for (rv = 0; *type; type++) {
1394 rv <<= 2;
1395 rv ^= *type;
1396 }
1397 return rv;
1398 }
1399