xref: /dragonfly/sys/kern/vfs_mount.c (revision a444603f)
1 /*
2  * Copyright (c) 2004,2013-2019 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
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 
67 /*
68  * External virtual filesystem routines
69  */
70 
71 #include <sys/param.h>
72 #include <sys/systm.h>
73 #include <sys/kernel.h>
74 #include <sys/malloc.h>
75 #include <sys/mount.h>
76 #include <sys/proc.h>
77 #include <sys/vnode.h>
78 #include <sys/spinlock2.h>
79 #include <sys/eventhandler.h>
80 #include <sys/kthread.h>
81 #include <sys/sysctl.h>
82 
83 #include <machine/limits.h>
84 
85 #include <vm/vm.h>
86 #include <vm/vm_object.h>
87 
88 struct mountscan_info {
89 	TAILQ_ENTRY(mountscan_info) msi_entry;
90 	int msi_how;
91 	struct mount *msi_node;
92 };
93 
94 struct vmntvnodescan_info {
95 	TAILQ_ENTRY(vmntvnodescan_info) entry;
96 	struct vnode *vp;
97 };
98 
99 struct vnlru_info {
100 	int	pass;
101 };
102 
103 static int
104 mount_cmp(struct mount *mnt1, struct mount *mnt2)
105 {
106 	if (mnt1->mnt_stat.f_fsid.val[0] < mnt2->mnt_stat.f_fsid.val[0])
107 		return -1;
108 	if (mnt1->mnt_stat.f_fsid.val[0] > mnt2->mnt_stat.f_fsid.val[0])
109 		return 1;
110 	if (mnt1->mnt_stat.f_fsid.val[1] < mnt2->mnt_stat.f_fsid.val[1])
111 		return -1;
112 	if (mnt1->mnt_stat.f_fsid.val[1] > mnt2->mnt_stat.f_fsid.val[1])
113 		return 1;
114 	return 0;
115 }
116 
117 static int
118 mount_fsid_cmp(fsid_t *fsid, struct mount *mnt)
119 {
120 	if (fsid->val[0] < mnt->mnt_stat.f_fsid.val[0])
121 		return -1;
122 	if (fsid->val[0] > mnt->mnt_stat.f_fsid.val[0])
123 		return 1;
124 	if (fsid->val[1] < mnt->mnt_stat.f_fsid.val[1])
125 		return -1;
126 	if (fsid->val[1] > mnt->mnt_stat.f_fsid.val[1])
127 		return 1;
128 	return 0;
129 }
130 
131 RB_HEAD(mount_rb_tree, mount);
132 RB_PROTOTYPEX(mount_rb_tree, FSID, mount, mnt_node, mount_cmp, fsid_t *);
133 RB_GENERATE(mount_rb_tree, mount, mnt_node, mount_cmp);
134 RB_GENERATE_XLOOKUP(mount_rb_tree, FSID, mount, mnt_node,
135 			mount_fsid_cmp, fsid_t *);
136 
137 static int vnlru_nowhere = 0;
138 SYSCTL_INT(_debug, OID_AUTO, vnlru_nowhere, CTLFLAG_RD,
139 	    &vnlru_nowhere, 0,
140 	    "Number of times the vnlru process ran without success");
141 
142 
143 static struct lwkt_token mntid_token;
144 static struct mount dummymount;
145 
146 /* note: mountlist exported to pstat */
147 struct mntlist mountlist = TAILQ_HEAD_INITIALIZER(mountlist);
148 struct mount_rb_tree mounttree = RB_INITIALIZER(dev_tree_mounttree);
149 static TAILQ_HEAD(,mountscan_info) mountscan_list;
150 static struct lwkt_token mountlist_token;
151 
152 static TAILQ_HEAD(,bio_ops) bio_ops_list = TAILQ_HEAD_INITIALIZER(bio_ops_list);
153 
154 /*
155  * Called from vfsinit()
156  */
157 void
158 vfs_mount_init(void)
159 {
160 	lwkt_token_init(&mountlist_token, "mntlist");
161 	lwkt_token_init(&mntid_token, "mntid");
162 	TAILQ_INIT(&mountscan_list);
163 	mount_init(&dummymount, NULL);
164 	dummymount.mnt_flag |= MNT_RDONLY;
165 	dummymount.mnt_kern_flag |= MNTK_ALL_MPSAFE;
166 }
167 
168 /*
169  * Support function called to remove a vnode from the mountlist and
170  * deal with side effects for scans in progress.
171  *
172  * Target mnt_token is held on call.
173  */
174 static void
175 vremovevnodemnt(struct vnode *vp)
176 {
177         struct vmntvnodescan_info *info;
178 	struct mount *mp = vp->v_mount;
179 
180 	TAILQ_FOREACH(info, &mp->mnt_vnodescan_list, entry) {
181 		if (info->vp == vp)
182 			info->vp = TAILQ_NEXT(vp, v_nmntvnodes);
183 	}
184 	TAILQ_REMOVE(&vp->v_mount->mnt_nvnodelist, vp, v_nmntvnodes);
185 }
186 
187 /*
188  * Allocate a new vnode and associate it with a tag, mount point, and
189  * operations vector.
190  *
191  * A VX locked and refd vnode is returned.  The caller should setup the
192  * remaining fields and vx_put() or, if he wishes to leave a vref,
193  * vx_unlock() the vnode.  Or if he wishes to return a normal locked
194  * vnode, call vx_downgrade(vp); to downgrade the VX lock to a normal
195  * VN lock.
196  */
197 int
198 getnewvnode(enum vtagtype tag, struct mount *mp,
199 		struct vnode **vpp, int lktimeout, int lkflags)
200 {
201 	struct vnode *vp;
202 
203 	KKASSERT(mp != NULL);
204 
205 	vp = allocvnode(lktimeout, lkflags);
206 	vp->v_tag = tag;
207 	vp->v_data = NULL;
208 
209 	/*
210 	 * By default the vnode is assigned the mount point's normal
211 	 * operations vector.
212 	 */
213 	vp->v_ops = &mp->mnt_vn_use_ops;
214 	vp->v_pbuf_count = nswbuf_kva / NSWBUF_SPLIT;
215 
216 	/*
217 	 * Placing the vnode on the mount point's queue makes it visible.
218 	 * VNON prevents it from being messed with, however.
219 	 */
220 	insmntque(vp, mp);
221 
222 	/*
223 	 * A VX locked & refd vnode is returned.
224 	 */
225 	*vpp = vp;
226 	return (0);
227 }
228 
229 /*
230  * This function creates vnodes with special operations vectors.  The
231  * mount point is optional.
232  *
233  * This routine is being phased out but is still used by vfs_conf to
234  * create vnodes for devices prior to the root mount (with mp == NULL).
235  */
236 int
237 getspecialvnode(enum vtagtype tag, struct mount *mp,
238 		struct vop_ops **ops,
239 		struct vnode **vpp, int lktimeout, int lkflags)
240 {
241 	struct vnode *vp;
242 
243 	vp = allocvnode(lktimeout, lkflags);
244 	vp->v_tag = tag;
245 	vp->v_data = NULL;
246 	vp->v_ops = ops;
247 
248 	if (mp == NULL)
249 		mp = &dummymount;
250 
251 	/*
252 	 * Placing the vnode on the mount point's queue makes it visible.
253 	 * VNON prevents it from being messed with, however.
254 	 */
255 	insmntque(vp, mp);
256 
257 	/*
258 	 * A VX locked & refd vnode is returned.
259 	 */
260 	*vpp = vp;
261 	return (0);
262 }
263 
264 /*
265  * Interlock against an unmount, return 0 on success, non-zero on failure.
266  *
267  * The passed flag may be 0 or LK_NOWAIT and is only used if an unmount
268  * is in-progress.
269  *
270  * If no unmount is in-progress LK_NOWAIT is ignored.  No other flag bits
271  * are used.  A shared locked will be obtained and the filesystem will not
272  * be unmountable until the lock is released.
273  */
274 int
275 vfs_busy(struct mount *mp, int flags)
276 {
277 	int lkflags;
278 
279 	atomic_add_int(&mp->mnt_refs, 1);
280 	lwkt_gettoken(&mp->mnt_token);
281 	if (mp->mnt_kern_flag & MNTK_UNMOUNT) {
282 		if (flags & LK_NOWAIT) {
283 			lwkt_reltoken(&mp->mnt_token);
284 			atomic_add_int(&mp->mnt_refs, -1);
285 			return (ENOENT);
286 		}
287 		/* XXX not MP safe */
288 		mp->mnt_kern_flag |= MNTK_MWAIT;
289 
290 		/*
291 		 * Since all busy locks are shared except the exclusive
292 		 * lock granted when unmounting, the only place that a
293 		 * wakeup needs to be done is at the release of the
294 		 * exclusive lock at the end of dounmount.
295 		 *
296 		 * WARNING! mp can potentially go away once we release
297 		 *	    our ref.
298 		 */
299 		tsleep((caddr_t)mp, 0, "vfs_busy", 0);
300 		lwkt_reltoken(&mp->mnt_token);
301 		atomic_add_int(&mp->mnt_refs, -1);
302 		return (ENOENT);
303 	}
304 	lkflags = LK_SHARED;
305 	if (lockmgr(&mp->mnt_lock, lkflags))
306 		panic("vfs_busy: unexpected lock failure");
307 	lwkt_reltoken(&mp->mnt_token);
308 	return (0);
309 }
310 
311 /*
312  * Free a busy filesystem.
313  *
314  * Once refs is decremented the mount point can potentially get ripped
315  * out from under us, but we want to clean up our refs before unlocking
316  * so do a hold/drop around the whole mess.
317  *
318  * This is not in the critical path (I hope).
319  */
320 void
321 vfs_unbusy(struct mount *mp)
322 {
323 	mount_hold(mp);
324 	atomic_add_int(&mp->mnt_refs, -1);
325 	lockmgr(&mp->mnt_lock, LK_RELEASE);
326 	mount_drop(mp);
327 }
328 
329 /*
330  * Lookup a filesystem type, and if found allocate and initialize
331  * a mount structure for it.
332  *
333  * Devname is usually updated by mount(8) after booting.
334  */
335 int
336 vfs_rootmountalloc(char *fstypename, char *devname, struct mount **mpp)
337 {
338 	struct vfsconf *vfsp;
339 	struct mount *mp;
340 
341 	if (fstypename == NULL)
342 		return (ENODEV);
343 
344 	vfsp = vfsconf_find_by_name(fstypename);
345 	if (vfsp == NULL)
346 		return (ENODEV);
347 	mp = kmalloc(sizeof(struct mount), M_MOUNT, M_WAITOK | M_ZERO);
348 	mount_init(mp, vfsp->vfc_vfsops);
349 	lockinit(&mp->mnt_lock, "vfslock", VLKTIMEOUT, 0);
350 	lockinit(&mp->mnt_renlock, "renamlk", VLKTIMEOUT, 0);
351 
352 	vfs_busy(mp, 0);
353 	mp->mnt_vfc = vfsp;
354 	mp->mnt_pbuf_count = nswbuf_kva / NSWBUF_SPLIT;
355 	vfsp->vfc_refcount++;
356 	mp->mnt_stat.f_type = vfsp->vfc_typenum;
357 	mp->mnt_flag |= MNT_RDONLY;
358 	mp->mnt_flag |= vfsp->vfc_flags & MNT_VISFLAGMASK;
359 	strncpy(mp->mnt_stat.f_fstypename, vfsp->vfc_name, MFSNAMELEN);
360 	copystr(devname, mp->mnt_stat.f_mntfromname, MNAMELEN - 1, 0);
361 
362 	/*
363 	 * Pre-set MPSAFE flags for VFS_MOUNT() call.
364 	 */
365 	if (vfsp->vfc_flags & VFCF_MPSAFE)
366 		mp->mnt_kern_flag |= MNTK_ALL_MPSAFE;
367 
368 	*mpp = mp;
369 
370 	return (0);
371 }
372 
373 /*
374  * Basic mount structure initialization
375  */
376 void
377 mount_init(struct mount *mp, struct vfsops *ops)
378 {
379 	lockinit(&mp->mnt_lock, "vfslock", hz*5, 0);
380 	lockinit(&mp->mnt_renlock, "renamlk", hz*5, 0);
381 	lwkt_token_init(&mp->mnt_token, "permnt");
382 
383 	TAILQ_INIT(&mp->mnt_vnodescan_list);
384 	TAILQ_INIT(&mp->mnt_nvnodelist);
385 	TAILQ_INIT(&mp->mnt_reservedvnlist);
386 	TAILQ_INIT(&mp->mnt_jlist);
387 	mp->mnt_nvnodelistsize = 0;
388 	mp->mnt_flag = 0;
389 	mp->mnt_hold = 1;		/* hold for umount last drop */
390 	mp->mnt_iosize_max = MAXPHYS;
391 	mp->mnt_op = ops;
392 	if (ops == NULL || (ops->vfs_flags & VFSOPSF_NOSYNCERTHR) == 0)
393 		vn_syncer_thr_create(mp);
394 }
395 
396 void
397 mount_hold(struct mount *mp)
398 {
399 	atomic_add_int(&mp->mnt_hold, 1);
400 }
401 
402 void
403 mount_drop(struct mount *mp)
404 {
405 	if (atomic_fetchadd_int(&mp->mnt_hold, -1) == 1) {
406 		KKASSERT(mp->mnt_refs == 0);
407 		kfree(mp, M_MOUNT);
408 	}
409 }
410 
411 /*
412  * Lookup a mount point by filesystem identifier.
413  *
414  * If not NULL, the returned mp is held and the caller is expected to drop
415  * it via mount_drop().
416  */
417 struct mount *
418 vfs_getvfs(fsid_t *fsid)
419 {
420 	struct mount *mp;
421 
422 	lwkt_gettoken_shared(&mountlist_token);
423 	mp = mount_rb_tree_RB_LOOKUP_FSID(&mounttree, fsid);
424 	if (mp)
425 		mount_hold(mp);
426 	lwkt_reltoken(&mountlist_token);
427 	return (mp);
428 }
429 
430 /*
431  * Generate a FSID based on the mountpt.  The FSID will be adjusted to avoid
432  * collisions when the mount is added to mountlist.
433  *
434  * May only be called prior to the mount succeeding.
435  *
436  * OLD:
437  *
438  * Get a new unique fsid.  Try to make its val[0] unique, since this value
439  * will be used to create fake device numbers for stat().  Also try (but
440  * not so hard) make its val[0] unique mod 2^16, since some emulators only
441  * support 16-bit device numbers.  We end up with unique val[0]'s for the
442  * first 2^16 calls and unique val[0]'s mod 2^16 for the first 2^8 calls.
443  */
444 void
445 vfs_getnewfsid(struct mount *mp)
446 {
447 	fsid_t tfsid;
448 	int mtype;
449 	int error;
450 	char *retbuf;
451 	char *freebuf;
452 
453 	mtype = mp->mnt_vfc->vfc_typenum;
454 	tfsid.val[1] = mtype;
455 	error = cache_fullpath(NULL, &mp->mnt_ncmounton, NULL,
456 			       &retbuf, &freebuf, 0);
457 	if (error) {
458 		tfsid.val[0] = makeudev(255, 0);
459 	} else {
460 		tfsid.val[0] = makeudev(255,
461 					iscsi_crc32(retbuf, strlen(retbuf)) &
462 					~makeudev(255, 0));
463 		/*kprintf("getnewfsid %08x %08x %s\n", tfsid.val[0], tfsid.val[1], retbuf);*/
464 		kfree(freebuf, M_TEMP);
465 	}
466 	mp->mnt_stat.f_fsid.val[0] = tfsid.val[0];
467 	mp->mnt_stat.f_fsid.val[1] = tfsid.val[1];
468 }
469 
470 /*
471  * Set the FSID for a new mount point to the template.
472  *
473  * The FSID will be adjusted to avoid collisions when the mount is
474  * added to mountlist.
475  *
476  * May only be called prior to the mount succeeding.
477  */
478 void
479 vfs_setfsid(struct mount *mp, fsid_t *template)
480 {
481 	bzero(&mp->mnt_stat.f_fsid, sizeof(mp->mnt_stat.f_fsid));
482 
483 #if 0
484 	struct mount *mptmp;
485 
486 	lwkt_gettoken(&mntid_token);
487 	for (;;) {
488 		mptmp = vfs_getvfs(template);
489 		if (mptmp == NULL)
490 			break;
491 		mount_drop(mptmp);
492 		++template->val[1];
493 	}
494 	lwkt_reltoken(&mntid_token);
495 #endif
496 	mp->mnt_stat.f_fsid = *template;
497 }
498 
499 /*
500  * This routine is called when we have too many vnodes.  It attempts
501  * to free <count> vnodes and will potentially free vnodes that still
502  * have VM backing store (VM backing store is typically the cause
503  * of a vnode blowout so we want to do this).  Therefore, this operation
504  * is not considered cheap.
505  *
506  * A number of conditions may prevent a vnode from being reclaimed.
507  * the buffer cache may have references on the vnode, a directory
508  * vnode may still have references due to the namei cache representing
509  * underlying files, or the vnode may be in active use.   It is not
510  * desireable to reuse such vnodes.  These conditions may cause the
511  * number of vnodes to reach some minimum value regardless of what
512  * you set kern.maxvnodes to.  Do not set kern.maxvnodes too low.
513  */
514 
515 /*
516  * Attempt to recycle vnodes in a context that is always safe to block.
517  * Calling vlrurecycle() from the bowels of file system code has some
518  * interesting deadlock problems.
519  */
520 static struct thread *vnlruthread;
521 
522 static void
523 vnlru_proc(void)
524 {
525 	struct thread *td = curthread;
526 
527 	EVENTHANDLER_REGISTER(shutdown_pre_sync, shutdown_kproc, td,
528 			      SHUTDOWN_PRI_FIRST);
529 
530 	for (;;) {
531 		int ncachedandinactive;
532 
533 		kproc_suspend_loop();
534 
535 		/*
536 		 * Try to free some vnodes if we have too many.  Trigger based
537 		 * on potentially freeable vnodes but calculate the count
538 		 * based on total vnodes.
539 		 *
540 		 * (long) -> deal with 64 bit machines, intermediate overflow
541 		 */
542 		synchronizevnodecount();
543 		ncachedandinactive = countcachedandinactivevnodes();
544 		if (numvnodes >= maxvnodes * 9 / 10 &&
545 		    ncachedandinactive >= maxvnodes * 5 / 10) {
546 			int count = numvnodes - maxvnodes * 9 / 10;
547 
548 			if (count > (ncachedandinactive) / 100)
549 				count = (ncachedandinactive) / 100;
550 			if (count < 5)
551 				count = 5;
552 			freesomevnodes(count);
553 		}
554 
555 		/*
556 		 * Do non-critical-path (more robust) cache cleaning,
557 		 * even if vnode counts are nominal, to try to avoid
558 		 * having to do it in the critical path.
559 		 */
560 		cache_hysteresis(0);
561 
562 		/*
563 		 * Nothing to do if most of our vnodes are already on
564 		 * the free list.
565 		 */
566 		synchronizevnodecount();
567 		ncachedandinactive = countcachedandinactivevnodes();
568 		if (numvnodes <= maxvnodes * 9 / 10 ||
569 		    ncachedandinactive <= maxvnodes * 5 / 10) {
570 			tsleep(vnlruthread, 0, "vlruwt", hz);
571 			continue;
572 		}
573 	}
574 }
575 
576 /*
577  * MOUNTLIST FUNCTIONS
578  */
579 
580 /*
581  * mountlist_insert (MP SAFE)
582  *
583  * Add a new mount point to the mount list.  Filesystem should attempt to
584  * supply a unique fsid but if a duplicate occurs adjust the fsid to ensure
585  * uniqueness.
586  */
587 void
588 mountlist_insert(struct mount *mp, int how)
589 {
590 	int lim = 0x01000000;
591 
592 	lwkt_gettoken(&mountlist_token);
593 	if (how == MNTINS_FIRST)
594 		TAILQ_INSERT_HEAD(&mountlist, mp, mnt_list);
595 	else
596 		TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
597 	while (mount_rb_tree_RB_INSERT(&mounttree, mp)) {
598 		int32_t val;
599 
600 		/*
601 		 * minor device mask: 0xFFFF00FF
602 		 */
603 		val = mp->mnt_stat.f_fsid.val[0];
604 		val = ((val & 0xFFFF0000) >> 8) | (val & 0x000000FF);
605 		++val;
606 		val = ((val << 8) & 0xFFFF0000) | (val & 0x000000FF);
607 		mp->mnt_stat.f_fsid.val[0] = val;
608 		if (--lim == 0) {
609 			lim = 0x01000000;
610 			mp->mnt_stat.f_fsid.val[1] += 0x0100;
611 			kprintf("mountlist_insert: fsid collision, "
612 				"too many mounts\n");
613 		}
614 	}
615 	lwkt_reltoken(&mountlist_token);
616 }
617 
618 /*
619  * mountlist_interlock (MP SAFE)
620  *
621  * Execute the specified interlock function with the mountlist token
622  * held.  The function will be called in a serialized fashion verses
623  * other functions called through this mechanism.
624  *
625  * The function is expected to be very short-lived.
626  */
627 int
628 mountlist_interlock(int (*callback)(struct mount *), struct mount *mp)
629 {
630 	int error;
631 
632 	lwkt_gettoken(&mountlist_token);
633 	error = callback(mp);
634 	lwkt_reltoken(&mountlist_token);
635 	return (error);
636 }
637 
638 /*
639  * mountlist_boot_getfirst (DURING BOOT ONLY)
640  *
641  * This function returns the first mount on the mountlist, which is
642  * expected to be the root mount.  Since no interlocks are obtained
643  * this function is only safe to use during booting.
644  */
645 
646 struct mount *
647 mountlist_boot_getfirst(void)
648 {
649 	return(TAILQ_FIRST(&mountlist));
650 }
651 
652 /*
653  * mountlist_remove (MP SAFE)
654  *
655  * Remove a node from the mountlist.  If this node is the next scan node
656  * for any active mountlist scans, the active mountlist scan will be
657  * adjusted to skip the node, thus allowing removals during mountlist
658  * scans.
659  */
660 void
661 mountlist_remove(struct mount *mp)
662 {
663 	struct mountscan_info *msi;
664 
665 	lwkt_gettoken(&mountlist_token);
666 	TAILQ_FOREACH(msi, &mountscan_list, msi_entry) {
667 		if (msi->msi_node == mp) {
668 			if (msi->msi_how & MNTSCAN_FORWARD)
669 				msi->msi_node = TAILQ_NEXT(mp, mnt_list);
670 			else
671 				msi->msi_node = TAILQ_PREV(mp, mntlist,
672 							   mnt_list);
673 		}
674 	}
675 	TAILQ_REMOVE(&mountlist, mp, mnt_list);
676 	mount_rb_tree_RB_REMOVE(&mounttree, mp);
677 	lwkt_reltoken(&mountlist_token);
678 }
679 
680 /*
681  * mountlist_exists (MP SAFE)
682  *
683  * Checks if a node exists in the mountlist.
684  * This function is mainly used by VFS quota code to check if a
685  * cached nullfs struct mount pointer is still valid at use time
686  *
687  * FIXME: there is no warranty the mp passed to that function
688  * will be the same one used by VFS_ACCOUNT() later
689  */
690 int
691 mountlist_exists(struct mount *mp)
692 {
693 	int node_exists = 0;
694 	struct mount* lmp;
695 
696 	lwkt_gettoken_shared(&mountlist_token);
697 	TAILQ_FOREACH(lmp, &mountlist, mnt_list) {
698 		if (lmp == mp) {
699 			node_exists = 1;
700 			break;
701 		}
702 	}
703 	lwkt_reltoken(&mountlist_token);
704 
705 	return(node_exists);
706 }
707 
708 /*
709  * mountlist_scan
710  *
711  * Safely scan the mount points on the mount list.  Each mountpoint
712  * is held across the callback.  The callback is responsible for
713  * acquiring any further tokens or locks.
714  *
715  * Unless otherwise specified each mount point will be busied prior to the
716  * callback and unbusied afterwords.  The callback may safely remove any
717  * mount point without interfering with the scan.  If the current callback
718  * mount is removed the scanner will not attempt to unbusy it.
719  *
720  * If a mount node cannot be busied it is silently skipped.
721  *
722  * The callback return value is aggregated and a total is returned.  A return
723  * value of < 0 is not aggregated and will terminate the scan.
724  *
725  * MNTSCAN_FORWARD	- the mountlist is scanned in the forward direction
726  * MNTSCAN_REVERSE	- the mountlist is scanned in reverse
727  * MNTSCAN_NOBUSY	- the scanner will make the callback without busying
728  *			  the mount node.
729  * MNTSCAN_NOUNLOCK	- Do not unlock mountlist_token across callback
730  *
731  * NOTE: mountlist_token is not held across the callback.
732  */
733 int
734 mountlist_scan(int (*callback)(struct mount *, void *), void *data, int how)
735 {
736 	struct mountscan_info info;
737 	struct mount *mp;
738 	int count;
739 	int res;
740 	int dounlock = ((how & MNTSCAN_NOUNLOCK) == 0);
741 
742 	lwkt_gettoken(&mountlist_token);
743 	info.msi_how = how;
744 	info.msi_node = NULL;	/* paranoia */
745 	TAILQ_INSERT_TAIL(&mountscan_list, &info, msi_entry);
746 	lwkt_reltoken(&mountlist_token);
747 
748 	res = 0;
749 	lwkt_gettoken_shared(&mountlist_token);
750 
751 	if (how & MNTSCAN_FORWARD) {
752 		info.msi_node = TAILQ_FIRST(&mountlist);
753 		while ((mp = info.msi_node) != NULL) {
754 			mount_hold(mp);
755 			if (how & MNTSCAN_NOBUSY) {
756 				if (dounlock)
757 					lwkt_reltoken(&mountlist_token);
758 				count = callback(mp, data);
759 				if (dounlock)
760 					lwkt_gettoken_shared(&mountlist_token);
761 			} else if (vfs_busy(mp, LK_NOWAIT) == 0) {
762 				if (dounlock)
763 					lwkt_reltoken(&mountlist_token);
764 				count = callback(mp, data);
765 				if (dounlock)
766 					lwkt_gettoken_shared(&mountlist_token);
767 				if (mp == info.msi_node)
768 					vfs_unbusy(mp);
769 			} else {
770 				count = 0;
771 			}
772 			mount_drop(mp);
773 			if (count < 0)
774 				break;
775 			res += count;
776 			if (mp == info.msi_node)
777 				info.msi_node = TAILQ_NEXT(mp, mnt_list);
778 		}
779 	} else if (how & MNTSCAN_REVERSE) {
780 		info.msi_node = TAILQ_LAST(&mountlist, mntlist);
781 		while ((mp = info.msi_node) != NULL) {
782 			mount_hold(mp);
783 			if (how & MNTSCAN_NOBUSY) {
784 				if (dounlock)
785 					lwkt_reltoken(&mountlist_token);
786 				count = callback(mp, data);
787 				if (dounlock)
788 					lwkt_gettoken_shared(&mountlist_token);
789 			} else if (vfs_busy(mp, LK_NOWAIT) == 0) {
790 				if (dounlock)
791 					lwkt_reltoken(&mountlist_token);
792 				count = callback(mp, data);
793 				if (dounlock)
794 					lwkt_gettoken_shared(&mountlist_token);
795 				if (mp == info.msi_node)
796 					vfs_unbusy(mp);
797 			} else {
798 				count = 0;
799 			}
800 			mount_drop(mp);
801 			if (count < 0)
802 				break;
803 			res += count;
804 			if (mp == info.msi_node)
805 				info.msi_node = TAILQ_PREV(mp, mntlist,
806 							   mnt_list);
807 		}
808 	}
809 	lwkt_reltoken(&mountlist_token);
810 
811 	lwkt_gettoken(&mountlist_token);
812 	TAILQ_REMOVE(&mountscan_list, &info, msi_entry);
813 	lwkt_reltoken(&mountlist_token);
814 
815 	return(res);
816 }
817 
818 /*
819  * MOUNT RELATED VNODE FUNCTIONS
820  */
821 
822 static struct kproc_desc vnlru_kp = {
823 	"vnlru",
824 	vnlru_proc,
825 	&vnlruthread
826 };
827 SYSINIT(vnlru, SI_SUB_KTHREAD_UPDATE, SI_ORDER_FIRST, kproc_start, &vnlru_kp);
828 
829 /*
830  * Move a vnode from one mount queue to another.
831  */
832 void
833 insmntque(struct vnode *vp, struct mount *mp)
834 {
835 	struct mount *omp;
836 
837 	/*
838 	 * Delete from old mount point vnode list, if on one.
839 	 */
840 	if ((omp = vp->v_mount) != NULL) {
841 		lwkt_gettoken(&omp->mnt_token);
842 		KKASSERT(omp == vp->v_mount);
843 		KASSERT(omp->mnt_nvnodelistsize > 0,
844 			("bad mount point vnode list size"));
845 		vremovevnodemnt(vp);
846 		omp->mnt_nvnodelistsize--;
847 		lwkt_reltoken(&omp->mnt_token);
848 	}
849 
850 	/*
851 	 * Insert into list of vnodes for the new mount point, if available.
852 	 * The 'end' of the LRU list is the vnode prior to mp->mnt_syncer.
853 	 */
854 	if (mp == NULL) {
855 		vp->v_mount = NULL;
856 		return;
857 	}
858 	lwkt_gettoken(&mp->mnt_token);
859 	vp->v_mount = mp;
860 	if (mp->mnt_syncer) {
861 		TAILQ_INSERT_BEFORE(mp->mnt_syncer, vp, v_nmntvnodes);
862 	} else {
863 		TAILQ_INSERT_TAIL(&mp->mnt_nvnodelist, vp, v_nmntvnodes);
864 	}
865 	mp->mnt_nvnodelistsize++;
866 	lwkt_reltoken(&mp->mnt_token);
867 }
868 
869 
870 /*
871  * Scan the vnodes under a mount point and issue appropriate callbacks.
872  *
873  * The fastfunc() callback is called with just the mountlist token held
874  * (no vnode lock).  It may not block and the vnode may be undergoing
875  * modifications while the caller is processing it.  The vnode will
876  * not be entirely destroyed, however, due to the fact that the mountlist
877  * token is held.  A return value < 0 skips to the next vnode without calling
878  * the slowfunc(), a return value > 0 terminates the loop.
879  *
880  * WARNING! The fastfunc() should not indirect through vp->v_object, the vp
881  *	    data structure is unstable when called from fastfunc().
882  *
883  * The slowfunc() callback is called after the vnode has been successfully
884  * locked based on passed flags.  The vnode is skipped if it gets rearranged
885  * or destroyed while blocking on the lock.  A non-zero return value from
886  * the slow function terminates the loop.  The slow function is allowed to
887  * arbitrarily block.  The scanning code guarentees consistency of operation
888  * even if the slow function deletes or moves the node, or blocks and some
889  * other thread deletes or moves the node.
890  */
891 int
892 vmntvnodescan(
893     struct mount *mp,
894     int flags,
895     int (*fastfunc)(struct mount *mp, struct vnode *vp, void *data),
896     int (*slowfunc)(struct mount *mp, struct vnode *vp, void *data),
897     void *data
898 ) {
899 	struct vmntvnodescan_info info;
900 	struct vnode *vp;
901 	int r = 0;
902 	int maxcount = mp->mnt_nvnodelistsize * 2;
903 	int stopcount = 0;
904 	int count = 0;
905 
906 	lwkt_gettoken(&mp->mnt_token);
907 
908 	/*
909 	 * If asked to do one pass stop after iterating available vnodes.
910 	 * Under heavy loads new vnodes can be added while we are scanning,
911 	 * so this isn't perfect.  Create a slop factor of 2x.
912 	 */
913 	if (flags & VMSC_ONEPASS)
914 		stopcount = mp->mnt_nvnodelistsize;
915 
916 	info.vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
917 	TAILQ_INSERT_TAIL(&mp->mnt_vnodescan_list, &info, entry);
918 
919 	while ((vp = info.vp) != NULL) {
920 		if (--maxcount == 0) {
921 			kprintf("Warning: excessive fssync iteration\n");
922 			maxcount = mp->mnt_nvnodelistsize * 2;
923 		}
924 
925 		/*
926 		 * Skip if visible but not ready, or special (e.g.
927 		 * mp->mnt_syncer)
928 		 */
929 		if (vp->v_type == VNON)
930 			goto next;
931 		KKASSERT(vp->v_mount == mp);
932 
933 		/*
934 		 * Quick test.  A negative return continues the loop without
935 		 * calling the slow test.  0 continues onto the slow test.
936 		 * A positive number aborts the loop.
937 		 */
938 		if (fastfunc) {
939 			if ((r = fastfunc(mp, vp, data)) < 0) {
940 				r = 0;
941 				goto next;
942 			}
943 			if (r)
944 				break;
945 		}
946 
947 		/*
948 		 * Get a vxlock on the vnode, retry if it has moved or isn't
949 		 * in the mountlist where we expect it.
950 		 */
951 		if (slowfunc) {
952 			int error;
953 
954 			switch(flags & (VMSC_GETVP|VMSC_GETVX|VMSC_NOWAIT)) {
955 			case VMSC_GETVP:
956 				error = vget(vp, LK_EXCLUSIVE);
957 				break;
958 			case VMSC_GETVP|VMSC_NOWAIT:
959 				error = vget(vp, LK_EXCLUSIVE|LK_NOWAIT);
960 				break;
961 			case VMSC_GETVX:
962 				vx_get(vp);
963 				error = 0;
964 				break;
965 			default:
966 				error = 0;
967 				break;
968 			}
969 			if (error)
970 				goto next;
971 			/*
972 			 * Do not call the slow function if the vnode is
973 			 * invalid or if it was ripped out from under us
974 			 * while we (potentially) blocked.
975 			 */
976 			if (info.vp == vp && vp->v_type != VNON)
977 				r = slowfunc(mp, vp, data);
978 
979 			/*
980 			 * Cleanup
981 			 */
982 			switch(flags & (VMSC_GETVP|VMSC_GETVX|VMSC_NOWAIT)) {
983 			case VMSC_GETVP:
984 			case VMSC_GETVP|VMSC_NOWAIT:
985 				vput(vp);
986 				break;
987 			case VMSC_GETVX:
988 				vx_put(vp);
989 				break;
990 			default:
991 				break;
992 			}
993 			if (r != 0)
994 				break;
995 		}
996 
997 next:
998 		/*
999 		 * Yield after some processing.  Depending on the number
1000 		 * of vnodes, we might wind up running for a long time.
1001 		 * Because threads are not preemptable, time critical
1002 		 * userland processes might starve.  Give them a chance
1003 		 * now and then.
1004 		 */
1005 		if (++count == 10000) {
1006 			/*
1007 			 * We really want to yield a bit, so we simply
1008 			 * sleep a tick
1009 			 */
1010 			tsleep(mp, 0, "vnodescn", 1);
1011 			count = 0;
1012 		}
1013 
1014 		/*
1015 		 * If doing one pass this decrements to zero.  If it starts
1016 		 * at zero it is effectively unlimited for the purposes of
1017 		 * this loop.
1018 		 */
1019 		if (--stopcount == 0)
1020 			break;
1021 
1022 		/*
1023 		 * Iterate.  If the vnode was ripped out from under us
1024 		 * info.vp will already point to the next vnode, otherwise
1025 		 * we have to obtain the next valid vnode ourselves.
1026 		 */
1027 		if (info.vp == vp)
1028 			info.vp = TAILQ_NEXT(vp, v_nmntvnodes);
1029 	}
1030 
1031 	TAILQ_REMOVE(&mp->mnt_vnodescan_list, &info, entry);
1032 	lwkt_reltoken(&mp->mnt_token);
1033 	return(r);
1034 }
1035 
1036 /*
1037  * Remove any vnodes in the vnode table belonging to mount point mp.
1038  *
1039  * If FORCECLOSE is not specified, there should not be any active ones,
1040  * return error if any are found (nb: this is a user error, not a
1041  * system error). If FORCECLOSE is specified, detach any active vnodes
1042  * that are found.
1043  *
1044  * If WRITECLOSE is set, only flush out regular file vnodes open for
1045  * writing.
1046  *
1047  * SKIPSYSTEM causes any vnodes marked VSYSTEM to be skipped.
1048  *
1049  * `rootrefs' specifies the base reference count for the root vnode
1050  * of this filesystem. The root vnode is considered busy if its
1051  * v_refcnt exceeds this value. On a successful return, vflush()
1052  * will call vrele() on the root vnode exactly rootrefs times.
1053  * If the SKIPSYSTEM or WRITECLOSE flags are specified, rootrefs must
1054  * be zero.
1055  */
1056 static int debug_busyprt = 0;		/* print out busy vnodes */
1057 SYSCTL_INT(_vfs, OID_AUTO, debug_busyprt, CTLFLAG_RW, &debug_busyprt, 0, "");
1058 
1059 static int vflush_scan(struct mount *mp, struct vnode *vp, void *data);
1060 
1061 struct vflush_info {
1062 	int flags;
1063 	int busy;
1064 	thread_t td;
1065 };
1066 
1067 int
1068 vflush(struct mount *mp, int rootrefs, int flags)
1069 {
1070 	struct thread *td = curthread;	/* XXX */
1071 	struct vnode *rootvp = NULL;
1072 	int error;
1073 	struct vflush_info vflush_info;
1074 
1075 	if (rootrefs > 0) {
1076 		KASSERT((flags & (SKIPSYSTEM | WRITECLOSE)) == 0,
1077 		    ("vflush: bad args"));
1078 		/*
1079 		 * Get the filesystem root vnode. We can vput() it
1080 		 * immediately, since with rootrefs > 0, it won't go away.
1081 		 */
1082 		if ((error = VFS_ROOT(mp, &rootvp)) != 0) {
1083 			if ((flags & FORCECLOSE) == 0)
1084 				return (error);
1085 			rootrefs = 0;
1086 			/* continue anyway */
1087 		}
1088 		if (rootrefs)
1089 			vput(rootvp);
1090 	}
1091 
1092 	vflush_info.busy = 0;
1093 	vflush_info.flags = flags;
1094 	vflush_info.td = td;
1095 	vmntvnodescan(mp, VMSC_GETVX, NULL, vflush_scan, &vflush_info);
1096 
1097 	if (rootrefs > 0 && (flags & FORCECLOSE) == 0) {
1098 		/*
1099 		 * If just the root vnode is busy, and if its refcount
1100 		 * is equal to `rootrefs', then go ahead and kill it.
1101 		 */
1102 		KASSERT(vflush_info.busy > 0, ("vflush: not busy"));
1103 		KASSERT(VREFCNT(rootvp) >= rootrefs, ("vflush: rootrefs"));
1104 		if (vflush_info.busy == 1 && VREFCNT(rootvp) == rootrefs) {
1105 			vx_lock(rootvp);
1106 			vgone_vxlocked(rootvp);
1107 			vx_unlock(rootvp);
1108 			vflush_info.busy = 0;
1109 		}
1110 	}
1111 	if (vflush_info.busy)
1112 		return (EBUSY);
1113 	for (; rootrefs > 0; rootrefs--)
1114 		vrele(rootvp);
1115 	return (0);
1116 }
1117 
1118 /*
1119  * The scan callback is made with an VX locked vnode.
1120  */
1121 static int
1122 vflush_scan(struct mount *mp, struct vnode *vp, void *data)
1123 {
1124 	struct vflush_info *info = data;
1125 	struct vattr vattr;
1126 	int flags = info->flags;
1127 
1128 	/*
1129 	 * Generally speaking try to deactivate on 0 refs (catch-all)
1130 	 */
1131 	atomic_set_int(&vp->v_refcnt, VREF_FINALIZE);
1132 
1133 	/*
1134 	 * Skip over a vnodes marked VSYSTEM.
1135 	 */
1136 	if ((flags & SKIPSYSTEM) && (vp->v_flag & VSYSTEM)) {
1137 		return(0);
1138 	}
1139 
1140 	/*
1141 	 * Do not force-close VCHR or VBLK vnodes
1142 	 */
1143 	if (vp->v_type == VCHR || vp->v_type == VBLK)
1144 		flags &= ~(WRITECLOSE|FORCECLOSE);
1145 
1146 	/*
1147 	 * If WRITECLOSE is set, flush out unlinked but still open
1148 	 * files (even if open only for reading) and regular file
1149 	 * vnodes open for writing.
1150 	 */
1151 	if ((flags & WRITECLOSE) &&
1152 	    (vp->v_type == VNON ||
1153 	    (VOP_GETATTR(vp, &vattr) == 0 &&
1154 	    vattr.va_nlink > 0)) &&
1155 	    (vp->v_writecount == 0 || vp->v_type != VREG)) {
1156 		return(0);
1157 	}
1158 
1159 	/*
1160 	 * If we are the only holder (refcnt of 1) or the vnode is in
1161 	 * termination (refcnt < 0), we can vgone the vnode.
1162 	 */
1163 	if (VREFCNT(vp) <= 1) {
1164 		vgone_vxlocked(vp);
1165 		return(0);
1166 	}
1167 
1168 	/*
1169 	 * If FORCECLOSE is set, forcibly destroy the vnode and then move
1170 	 * it to a dummymount structure so vop_*() functions don't deref
1171 	 * a NULL pointer.
1172 	 */
1173 	if (flags & FORCECLOSE) {
1174 		vhold(vp);
1175 		vgone_vxlocked(vp);
1176 		if (vp->v_mount == NULL)
1177 			insmntque(vp, &dummymount);
1178 		vdrop(vp);
1179 		return(0);
1180 	}
1181 	if (vp->v_type == VCHR || vp->v_type == VBLK)
1182 		kprintf("vflush: Warning, cannot destroy busy device vnode\n");
1183 	if (debug_busyprt) {
1184 		const char *filename;
1185 
1186 		spin_lock(&vp->v_spin);
1187 		filename = TAILQ_FIRST(&vp->v_namecache) ?
1188 			   TAILQ_FIRST(&vp->v_namecache)->nc_name : "?";
1189 		spin_unlock(&vp->v_spin);
1190 		kprintf("vflush: busy vnode (%p) %s\n", vp, filename);
1191 	}
1192 	++info->busy;
1193 	return(0);
1194 }
1195 
1196 void
1197 add_bio_ops(struct bio_ops *ops)
1198 {
1199 	TAILQ_INSERT_TAIL(&bio_ops_list, ops, entry);
1200 }
1201 
1202 void
1203 rem_bio_ops(struct bio_ops *ops)
1204 {
1205 	TAILQ_REMOVE(&bio_ops_list, ops, entry);
1206 }
1207 
1208 /*
1209  * This calls the bio_ops io_sync function either for a mount point
1210  * or generally.
1211  *
1212  * WARNING: softdeps is weirdly coded and just isn't happy unless
1213  * io_sync is called with a NULL mount from the general syncing code.
1214  */
1215 void
1216 bio_ops_sync(struct mount *mp)
1217 {
1218 	struct bio_ops *ops;
1219 
1220 	if (mp) {
1221 		if ((ops = mp->mnt_bioops) != NULL)
1222 			ops->io_sync(mp);
1223 	} else {
1224 		TAILQ_FOREACH(ops, &bio_ops_list, entry) {
1225 			ops->io_sync(NULL);
1226 		}
1227 	}
1228 }
1229 
1230 /*
1231  * Lookup a mount point by nch
1232  */
1233 struct mount *
1234 mount_get_by_nc(struct namecache *ncp)
1235 {
1236 	struct mount *mp = NULL;
1237 
1238 	lwkt_gettoken_shared(&mountlist_token);
1239 	TAILQ_FOREACH(mp, &mountlist, mnt_list) {
1240 		if (ncp == mp->mnt_ncmountpt.ncp)
1241 			break;
1242 	}
1243 	lwkt_reltoken(&mountlist_token);
1244 
1245 	return (mp);
1246 }
1247 
1248