]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/kern/vfs_subr.c
MFC of 281677:
[FreeBSD/stable/10.git] / sys / kern / vfs_subr.c
1 /*-
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)vfs_subr.c  8.31 (Berkeley) 5/26/95
35  */
36
37 /*
38  * External virtual filesystem routines
39  */
40
41 #include <sys/cdefs.h>
42 __FBSDID("$FreeBSD$");
43
44 #include "opt_compat.h"
45 #include "opt_ddb.h"
46 #include "opt_watchdog.h"
47
48 #include <sys/param.h>
49 #include <sys/systm.h>
50 #include <sys/bio.h>
51 #include <sys/buf.h>
52 #include <sys/condvar.h>
53 #include <sys/conf.h>
54 #include <sys/dirent.h>
55 #include <sys/event.h>
56 #include <sys/eventhandler.h>
57 #include <sys/extattr.h>
58 #include <sys/file.h>
59 #include <sys/fcntl.h>
60 #include <sys/jail.h>
61 #include <sys/kdb.h>
62 #include <sys/kernel.h>
63 #include <sys/kthread.h>
64 #include <sys/lockf.h>
65 #include <sys/malloc.h>
66 #include <sys/mount.h>
67 #include <sys/namei.h>
68 #include <sys/pctrie.h>
69 #include <sys/priv.h>
70 #include <sys/reboot.h>
71 #include <sys/rwlock.h>
72 #include <sys/sched.h>
73 #include <sys/sleepqueue.h>
74 #include <sys/smp.h>
75 #include <sys/stat.h>
76 #include <sys/sysctl.h>
77 #include <sys/syslog.h>
78 #include <sys/vmmeter.h>
79 #include <sys/vnode.h>
80 #include <sys/watchdog.h>
81
82 #include <machine/stdarg.h>
83
84 #include <security/mac/mac_framework.h>
85
86 #include <vm/vm.h>
87 #include <vm/vm_object.h>
88 #include <vm/vm_extern.h>
89 #include <vm/pmap.h>
90 #include <vm/vm_map.h>
91 #include <vm/vm_page.h>
92 #include <vm/vm_kern.h>
93 #include <vm/uma.h>
94
95 #ifdef DDB
96 #include <ddb/ddb.h>
97 #endif
98
99 static void     delmntque(struct vnode *vp);
100 static int      flushbuflist(struct bufv *bufv, int flags, struct bufobj *bo,
101                     int slpflag, int slptimeo);
102 static void     syncer_shutdown(void *arg, int howto);
103 static int      vtryrecycle(struct vnode *vp);
104 static void     v_incr_usecount(struct vnode *);
105 static void     v_decr_usecount(struct vnode *);
106 static void     v_decr_useonly(struct vnode *);
107 static void     v_upgrade_usecount(struct vnode *);
108 static void     vnlru_free(int);
109 static void     vgonel(struct vnode *);
110 static void     vfs_knllock(void *arg);
111 static void     vfs_knlunlock(void *arg);
112 static void     vfs_knl_assert_locked(void *arg);
113 static void     vfs_knl_assert_unlocked(void *arg);
114 static void     destroy_vpollinfo(struct vpollinfo *vi);
115
116 /*
117  * Number of vnodes in existence.  Increased whenever getnewvnode()
118  * allocates a new vnode, decreased in vdropl() for VI_DOOMED vnode.
119  */
120 static unsigned long    numvnodes;
121
122 SYSCTL_ULONG(_vfs, OID_AUTO, numvnodes, CTLFLAG_RD, &numvnodes, 0,
123     "Number of vnodes in existence");
124
125 static u_long vnodes_created;
126 SYSCTL_ULONG(_vfs, OID_AUTO, vnodes_created, CTLFLAG_RD, &vnodes_created,
127     0, "Number of vnodes created by getnewvnode");
128
129 /*
130  * Conversion tables for conversion from vnode types to inode formats
131  * and back.
132  */
133 enum vtype iftovt_tab[16] = {
134         VNON, VFIFO, VCHR, VNON, VDIR, VNON, VBLK, VNON,
135         VREG, VNON, VLNK, VNON, VSOCK, VNON, VNON, VBAD,
136 };
137 int vttoif_tab[10] = {
138         0, S_IFREG, S_IFDIR, S_IFBLK, S_IFCHR, S_IFLNK,
139         S_IFSOCK, S_IFIFO, S_IFMT, S_IFMT
140 };
141
142 /*
143  * List of vnodes that are ready for recycling.
144  */
145 static TAILQ_HEAD(freelst, vnode) vnode_free_list;
146
147 /*
148  * Free vnode target.  Free vnodes may simply be files which have been stat'd
149  * but not read.  This is somewhat common, and a small cache of such files
150  * should be kept to avoid recreation costs.
151  */
152 static u_long wantfreevnodes;
153 SYSCTL_ULONG(_vfs, OID_AUTO, wantfreevnodes, CTLFLAG_RW, &wantfreevnodes, 0, "");
154 /* Number of vnodes in the free list. */
155 static u_long freevnodes;
156 SYSCTL_ULONG(_vfs, OID_AUTO, freevnodes, CTLFLAG_RD, &freevnodes, 0,
157     "Number of vnodes in the free list");
158
159 static int vlru_allow_cache_src;
160 SYSCTL_INT(_vfs, OID_AUTO, vlru_allow_cache_src, CTLFLAG_RW,
161     &vlru_allow_cache_src, 0, "Allow vlru to reclaim source vnode");
162
163 static u_long recycles_count;
164 SYSCTL_ULONG(_vfs, OID_AUTO, recycles, CTLFLAG_RD, &recycles_count, 0,
165     "Number of vnodes recycled to avoid exceding kern.maxvnodes");
166
167 /*
168  * Various variables used for debugging the new implementation of
169  * reassignbuf().
170  * XXX these are probably of (very) limited utility now.
171  */
172 static int reassignbufcalls;
173 SYSCTL_INT(_vfs, OID_AUTO, reassignbufcalls, CTLFLAG_RW, &reassignbufcalls, 0,
174     "Number of calls to reassignbuf");
175
176 static u_long free_owe_inact;
177 SYSCTL_ULONG(_vfs, OID_AUTO, free_owe_inact, CTLFLAG_RD, &free_owe_inact, 0,
178     "Number of times free vnodes kept on active list due to VFS "
179     "owing inactivation");
180
181 /*
182  * Cache for the mount type id assigned to NFS.  This is used for
183  * special checks in nfs/nfs_nqlease.c and vm/vnode_pager.c.
184  */
185 int     nfs_mount_type = -1;
186
187 /* To keep more than one thread at a time from running vfs_getnewfsid */
188 static struct mtx mntid_mtx;
189
190 /*
191  * Lock for any access to the following:
192  *      vnode_free_list
193  *      numvnodes
194  *      freevnodes
195  */
196 static struct mtx vnode_free_list_mtx;
197
198 /* Publicly exported FS */
199 struct nfs_public nfs_pub;
200
201 static uma_zone_t buf_trie_zone;
202
203 /* Zone for allocation of new vnodes - used exclusively by getnewvnode() */
204 static uma_zone_t vnode_zone;
205 static uma_zone_t vnodepoll_zone;
206
207 /*
208  * The workitem queue.
209  *
210  * It is useful to delay writes of file data and filesystem metadata
211  * for tens of seconds so that quickly created and deleted files need
212  * not waste disk bandwidth being created and removed. To realize this,
213  * we append vnodes to a "workitem" queue. When running with a soft
214  * updates implementation, most pending metadata dependencies should
215  * not wait for more than a few seconds. Thus, mounted on block devices
216  * are delayed only about a half the time that file data is delayed.
217  * Similarly, directory updates are more critical, so are only delayed
218  * about a third the time that file data is delayed. Thus, there are
219  * SYNCER_MAXDELAY queues that are processed round-robin at a rate of
220  * one each second (driven off the filesystem syncer process). The
221  * syncer_delayno variable indicates the next queue that is to be processed.
222  * Items that need to be processed soon are placed in this queue:
223  *
224  *      syncer_workitem_pending[syncer_delayno]
225  *
226  * A delay of fifteen seconds is done by placing the request fifteen
227  * entries later in the queue:
228  *
229  *      syncer_workitem_pending[(syncer_delayno + 15) & syncer_mask]
230  *
231  */
232 static int syncer_delayno;
233 static long syncer_mask;
234 LIST_HEAD(synclist, bufobj);
235 static struct synclist *syncer_workitem_pending;
236 /*
237  * The sync_mtx protects:
238  *      bo->bo_synclist
239  *      sync_vnode_count
240  *      syncer_delayno
241  *      syncer_state
242  *      syncer_workitem_pending
243  *      syncer_worklist_len
244  *      rushjob
245  */
246 static struct mtx sync_mtx;
247 static struct cv sync_wakeup;
248
249 #define SYNCER_MAXDELAY         32
250 static int syncer_maxdelay = SYNCER_MAXDELAY;   /* maximum delay time */
251 static int syncdelay = 30;              /* max time to delay syncing data */
252 static int filedelay = 30;              /* time to delay syncing files */
253 SYSCTL_INT(_kern, OID_AUTO, filedelay, CTLFLAG_RW, &filedelay, 0,
254     "Time to delay syncing files (in seconds)");
255 static int dirdelay = 29;               /* time to delay syncing directories */
256 SYSCTL_INT(_kern, OID_AUTO, dirdelay, CTLFLAG_RW, &dirdelay, 0,
257     "Time to delay syncing directories (in seconds)");
258 static int metadelay = 28;              /* time to delay syncing metadata */
259 SYSCTL_INT(_kern, OID_AUTO, metadelay, CTLFLAG_RW, &metadelay, 0,
260     "Time to delay syncing metadata (in seconds)");
261 static int rushjob;             /* number of slots to run ASAP */
262 static int stat_rush_requests;  /* number of times I/O speeded up */
263 SYSCTL_INT(_debug, OID_AUTO, rush_requests, CTLFLAG_RW, &stat_rush_requests, 0,
264     "Number of times I/O speeded up (rush requests)");
265
266 /*
267  * When shutting down the syncer, run it at four times normal speed.
268  */
269 #define SYNCER_SHUTDOWN_SPEEDUP         4
270 static int sync_vnode_count;
271 static int syncer_worklist_len;
272 static enum { SYNCER_RUNNING, SYNCER_SHUTTING_DOWN, SYNCER_FINAL_DELAY }
273     syncer_state;
274
275 /*
276  * Number of vnodes we want to exist at any one time.  This is mostly used
277  * to size hash tables in vnode-related code.  It is normally not used in
278  * getnewvnode(), as wantfreevnodes is normally nonzero.)
279  *
280  * XXX desiredvnodes is historical cruft and should not exist.
281  */
282 int desiredvnodes;
283
284 static int
285 sysctl_update_desiredvnodes(SYSCTL_HANDLER_ARGS)
286 {
287         int error, old_desiredvnodes;
288
289         old_desiredvnodes = desiredvnodes;
290         if ((error = sysctl_handle_int(oidp, arg1, arg2, req)) != 0)
291                 return (error);
292         if (old_desiredvnodes != desiredvnodes) {
293                 vfs_hash_changesize(desiredvnodes);
294                 cache_changesize(desiredvnodes);
295         }
296         return (0);
297 }
298
299 SYSCTL_PROC(_kern, KERN_MAXVNODES, maxvnodes,
300     CTLTYPE_INT | CTLFLAG_MPSAFE | CTLFLAG_RW, &desiredvnodes, 0,
301     sysctl_update_desiredvnodes, "I", "Maximum number of vnodes");
302 SYSCTL_ULONG(_kern, OID_AUTO, minvnodes, CTLFLAG_RW,
303     &wantfreevnodes, 0, "Minimum number of vnodes (legacy)");
304 static int vnlru_nowhere;
305 SYSCTL_INT(_debug, OID_AUTO, vnlru_nowhere, CTLFLAG_RW,
306     &vnlru_nowhere, 0, "Number of times the vnlru process ran without success");
307
308 /* Shift count for (uintptr_t)vp to initialize vp->v_hash. */
309 static int vnsz2log;
310
311 /*
312  * Support for the bufobj clean & dirty pctrie.
313  */
314 static void *
315 buf_trie_alloc(struct pctrie *ptree)
316 {
317
318         return uma_zalloc(buf_trie_zone, M_NOWAIT);
319 }
320
321 static void
322 buf_trie_free(struct pctrie *ptree, void *node)
323 {
324
325         uma_zfree(buf_trie_zone, node);
326 }
327 PCTRIE_DEFINE(BUF, buf, b_lblkno, buf_trie_alloc, buf_trie_free);
328
329 /*
330  * Initialize the vnode management data structures.
331  *
332  * Reevaluate the following cap on the number of vnodes after the physical
333  * memory size exceeds 512GB.  In the limit, as the physical memory size
334  * grows, the ratio of physical pages to vnodes approaches sixteen to one.
335  */
336 #ifndef MAXVNODES_MAX
337 #define MAXVNODES_MAX   (512 * (1024 * 1024 * 1024 / (int)PAGE_SIZE / 16))
338 #endif
339 static void
340 vntblinit(void *dummy __unused)
341 {
342         u_int i;
343         int physvnodes, virtvnodes;
344
345         /*
346          * Desiredvnodes is a function of the physical memory size and the
347          * kernel's heap size.  Generally speaking, it scales with the
348          * physical memory size.  The ratio of desiredvnodes to physical pages
349          * is one to four until desiredvnodes exceeds 98,304.  Thereafter, the
350          * marginal ratio of desiredvnodes to physical pages is one to
351          * sixteen.  However, desiredvnodes is limited by the kernel's heap
352          * size.  The memory required by desiredvnodes vnodes and vm objects
353          * may not exceed one seventh of the kernel's heap size.
354          */
355         physvnodes = maxproc + cnt.v_page_count / 16 + 3 * min(98304 * 4,
356             cnt.v_page_count) / 16;
357         virtvnodes = vm_kmem_size / (7 * (sizeof(struct vm_object) +
358             sizeof(struct vnode)));
359         desiredvnodes = min(physvnodes, virtvnodes);
360         if (desiredvnodes > MAXVNODES_MAX) {
361                 if (bootverbose)
362                         printf("Reducing kern.maxvnodes %d -> %d\n",
363                             desiredvnodes, MAXVNODES_MAX);
364                 desiredvnodes = MAXVNODES_MAX;
365         }
366         wantfreevnodes = desiredvnodes / 4;
367         mtx_init(&mntid_mtx, "mntid", NULL, MTX_DEF);
368         TAILQ_INIT(&vnode_free_list);
369         mtx_init(&vnode_free_list_mtx, "vnode_free_list", NULL, MTX_DEF);
370         vnode_zone = uma_zcreate("VNODE", sizeof (struct vnode), NULL, NULL,
371             NULL, NULL, UMA_ALIGN_PTR, 0);
372         vnodepoll_zone = uma_zcreate("VNODEPOLL", sizeof (struct vpollinfo),
373             NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
374         /*
375          * Preallocate enough nodes to support one-per buf so that
376          * we can not fail an insert.  reassignbuf() callers can not
377          * tolerate the insertion failure.
378          */
379         buf_trie_zone = uma_zcreate("BUF TRIE", pctrie_node_size(),
380             NULL, NULL, pctrie_zone_init, NULL, UMA_ALIGN_PTR, 
381             UMA_ZONE_NOFREE | UMA_ZONE_VM);
382         uma_prealloc(buf_trie_zone, nbuf);
383         /*
384          * Initialize the filesystem syncer.
385          */
386         syncer_workitem_pending = hashinit(syncer_maxdelay, M_VNODE,
387             &syncer_mask);
388         syncer_maxdelay = syncer_mask + 1;
389         mtx_init(&sync_mtx, "Syncer mtx", NULL, MTX_DEF);
390         cv_init(&sync_wakeup, "syncer");
391         for (i = 1; i <= sizeof(struct vnode); i <<= 1)
392                 vnsz2log++;
393         vnsz2log--;
394 }
395 SYSINIT(vfs, SI_SUB_VFS, SI_ORDER_FIRST, vntblinit, NULL);
396
397
398 /*
399  * Mark a mount point as busy. Used to synchronize access and to delay
400  * unmounting. Eventually, mountlist_mtx is not released on failure.
401  *
402  * vfs_busy() is a custom lock, it can block the caller.
403  * vfs_busy() only sleeps if the unmount is active on the mount point.
404  * For a mountpoint mp, vfs_busy-enforced lock is before lock of any
405  * vnode belonging to mp.
406  *
407  * Lookup uses vfs_busy() to traverse mount points.
408  * root fs                      var fs
409  * / vnode lock         A       / vnode lock (/var)             D
410  * /var vnode lock      B       /log vnode lock(/var/log)       E
411  * vfs_busy lock        C       vfs_busy lock                   F
412  *
413  * Within each file system, the lock order is C->A->B and F->D->E.
414  *
415  * When traversing across mounts, the system follows that lock order:
416  *
417  *        C->A->B
418  *              |
419  *              +->F->D->E
420  *
421  * The lookup() process for namei("/var") illustrates the process:
422  *  VOP_LOOKUP() obtains B while A is held
423  *  vfs_busy() obtains a shared lock on F while A and B are held
424  *  vput() releases lock on B
425  *  vput() releases lock on A
426  *  VFS_ROOT() obtains lock on D while shared lock on F is held
427  *  vfs_unbusy() releases shared lock on F
428  *  vn_lock() obtains lock on deadfs vnode vp_crossmp instead of A.
429  *    Attempt to lock A (instead of vp_crossmp) while D is held would
430  *    violate the global order, causing deadlocks.
431  *
432  * dounmount() locks B while F is drained.
433  */
434 int
435 vfs_busy(struct mount *mp, int flags)
436 {
437
438         MPASS((flags & ~MBF_MASK) == 0);
439         CTR3(KTR_VFS, "%s: mp %p with flags %d", __func__, mp, flags);
440
441         MNT_ILOCK(mp);
442         MNT_REF(mp);
443         /*
444          * If mount point is currenly being unmounted, sleep until the
445          * mount point fate is decided.  If thread doing the unmounting fails,
446          * it will clear MNTK_UNMOUNT flag before waking us up, indicating
447          * that this mount point has survived the unmount attempt and vfs_busy
448          * should retry.  Otherwise the unmounter thread will set MNTK_REFEXPIRE
449          * flag in addition to MNTK_UNMOUNT, indicating that mount point is
450          * about to be really destroyed.  vfs_busy needs to release its
451          * reference on the mount point in this case and return with ENOENT,
452          * telling the caller that mount mount it tried to busy is no longer
453          * valid.
454          */
455         while (mp->mnt_kern_flag & MNTK_UNMOUNT) {
456                 if (flags & MBF_NOWAIT || mp->mnt_kern_flag & MNTK_REFEXPIRE) {
457                         MNT_REL(mp);
458                         MNT_IUNLOCK(mp);
459                         CTR1(KTR_VFS, "%s: failed busying before sleeping",
460                             __func__);
461                         return (ENOENT);
462                 }
463                 if (flags & MBF_MNTLSTLOCK)
464                         mtx_unlock(&mountlist_mtx);
465                 mp->mnt_kern_flag |= MNTK_MWAIT;
466                 msleep(mp, MNT_MTX(mp), PVFS | PDROP, "vfs_busy", 0);
467                 if (flags & MBF_MNTLSTLOCK)
468                         mtx_lock(&mountlist_mtx);
469                 MNT_ILOCK(mp);
470         }
471         if (flags & MBF_MNTLSTLOCK)
472                 mtx_unlock(&mountlist_mtx);
473         mp->mnt_lockref++;
474         MNT_IUNLOCK(mp);
475         return (0);
476 }
477
478 /*
479  * Free a busy filesystem.
480  */
481 void
482 vfs_unbusy(struct mount *mp)
483 {
484
485         CTR2(KTR_VFS, "%s: mp %p", __func__, mp);
486         MNT_ILOCK(mp);
487         MNT_REL(mp);
488         KASSERT(mp->mnt_lockref > 0, ("negative mnt_lockref"));
489         mp->mnt_lockref--;
490         if (mp->mnt_lockref == 0 && (mp->mnt_kern_flag & MNTK_DRAINING) != 0) {
491                 MPASS(mp->mnt_kern_flag & MNTK_UNMOUNT);
492                 CTR1(KTR_VFS, "%s: waking up waiters", __func__);
493                 mp->mnt_kern_flag &= ~MNTK_DRAINING;
494                 wakeup(&mp->mnt_lockref);
495         }
496         MNT_IUNLOCK(mp);
497 }
498
499 /*
500  * Lookup a mount point by filesystem identifier.
501  */
502 struct mount *
503 vfs_getvfs(fsid_t *fsid)
504 {
505         struct mount *mp;
506
507         CTR2(KTR_VFS, "%s: fsid %p", __func__, fsid);
508         mtx_lock(&mountlist_mtx);
509         TAILQ_FOREACH(mp, &mountlist, mnt_list) {
510                 if (mp->mnt_stat.f_fsid.val[0] == fsid->val[0] &&
511                     mp->mnt_stat.f_fsid.val[1] == fsid->val[1]) {
512                         vfs_ref(mp);
513                         mtx_unlock(&mountlist_mtx);
514                         return (mp);
515                 }
516         }
517         mtx_unlock(&mountlist_mtx);
518         CTR2(KTR_VFS, "%s: lookup failed for %p id", __func__, fsid);
519         return ((struct mount *) 0);
520 }
521
522 /*
523  * Lookup a mount point by filesystem identifier, busying it before
524  * returning.
525  *
526  * To avoid congestion on mountlist_mtx, implement simple direct-mapped
527  * cache for popular filesystem identifiers.  The cache is lockess, using
528  * the fact that struct mount's are never freed.  In worst case we may
529  * get pointer to unmounted or even different filesystem, so we have to
530  * check what we got, and go slow way if so.
531  */
532 struct mount *
533 vfs_busyfs(fsid_t *fsid)
534 {
535 #define FSID_CACHE_SIZE 256
536         typedef struct mount * volatile vmp_t;
537         static vmp_t cache[FSID_CACHE_SIZE];
538         struct mount *mp;
539         int error;
540         uint32_t hash;
541
542         CTR2(KTR_VFS, "%s: fsid %p", __func__, fsid);
543         hash = fsid->val[0] ^ fsid->val[1];
544         hash = (hash >> 16 ^ hash) & (FSID_CACHE_SIZE - 1);
545         mp = cache[hash];
546         if (mp == NULL ||
547             mp->mnt_stat.f_fsid.val[0] != fsid->val[0] ||
548             mp->mnt_stat.f_fsid.val[1] != fsid->val[1])
549                 goto slow;
550         if (vfs_busy(mp, 0) != 0) {
551                 cache[hash] = NULL;
552                 goto slow;
553         }
554         if (mp->mnt_stat.f_fsid.val[0] == fsid->val[0] &&
555             mp->mnt_stat.f_fsid.val[1] == fsid->val[1])
556                 return (mp);
557         else
558             vfs_unbusy(mp);
559
560 slow:
561         mtx_lock(&mountlist_mtx);
562         TAILQ_FOREACH(mp, &mountlist, mnt_list) {
563                 if (mp->mnt_stat.f_fsid.val[0] == fsid->val[0] &&
564                     mp->mnt_stat.f_fsid.val[1] == fsid->val[1]) {
565                         error = vfs_busy(mp, MBF_MNTLSTLOCK);
566                         if (error) {
567                                 cache[hash] = NULL;
568                                 mtx_unlock(&mountlist_mtx);
569                                 return (NULL);
570                         }
571                         cache[hash] = mp;
572                         return (mp);
573                 }
574         }
575         CTR2(KTR_VFS, "%s: lookup failed for %p id", __func__, fsid);
576         mtx_unlock(&mountlist_mtx);
577         return ((struct mount *) 0);
578 }
579
580 /*
581  * Check if a user can access privileged mount options.
582  */
583 int
584 vfs_suser(struct mount *mp, struct thread *td)
585 {
586         int error;
587
588         /*
589          * If the thread is jailed, but this is not a jail-friendly file
590          * system, deny immediately.
591          */
592         if (!(mp->mnt_vfc->vfc_flags & VFCF_JAIL) && jailed(td->td_ucred))
593                 return (EPERM);
594
595         /*
596          * If the file system was mounted outside the jail of the calling
597          * thread, deny immediately.
598          */
599         if (prison_check(td->td_ucred, mp->mnt_cred) != 0)
600                 return (EPERM);
601
602         /*
603          * If file system supports delegated administration, we don't check
604          * for the PRIV_VFS_MOUNT_OWNER privilege - it will be better verified
605          * by the file system itself.
606          * If this is not the user that did original mount, we check for
607          * the PRIV_VFS_MOUNT_OWNER privilege.
608          */
609         if (!(mp->mnt_vfc->vfc_flags & VFCF_DELEGADMIN) &&
610             mp->mnt_cred->cr_uid != td->td_ucred->cr_uid) {
611                 if ((error = priv_check(td, PRIV_VFS_MOUNT_OWNER)) != 0)
612                         return (error);
613         }
614         return (0);
615 }
616
617 /*
618  * Get a new unique fsid.  Try to make its val[0] unique, since this value
619  * will be used to create fake device numbers for stat().  Also try (but
620  * not so hard) make its val[0] unique mod 2^16, since some emulators only
621  * support 16-bit device numbers.  We end up with unique val[0]'s for the
622  * first 2^16 calls and unique val[0]'s mod 2^16 for the first 2^8 calls.
623  *
624  * Keep in mind that several mounts may be running in parallel.  Starting
625  * the search one past where the previous search terminated is both a
626  * micro-optimization and a defense against returning the same fsid to
627  * different mounts.
628  */
629 void
630 vfs_getnewfsid(struct mount *mp)
631 {
632         static uint16_t mntid_base;
633         struct mount *nmp;
634         fsid_t tfsid;
635         int mtype;
636
637         CTR2(KTR_VFS, "%s: mp %p", __func__, mp);
638         mtx_lock(&mntid_mtx);
639         mtype = mp->mnt_vfc->vfc_typenum;
640         tfsid.val[1] = mtype;
641         mtype = (mtype & 0xFF) << 24;
642         for (;;) {
643                 tfsid.val[0] = makedev(255,
644                     mtype | ((mntid_base & 0xFF00) << 8) | (mntid_base & 0xFF));
645                 mntid_base++;
646                 if ((nmp = vfs_getvfs(&tfsid)) == NULL)
647                         break;
648                 vfs_rel(nmp);
649         }
650         mp->mnt_stat.f_fsid.val[0] = tfsid.val[0];
651         mp->mnt_stat.f_fsid.val[1] = tfsid.val[1];
652         mtx_unlock(&mntid_mtx);
653 }
654
655 /*
656  * Knob to control the precision of file timestamps:
657  *
658  *   0 = seconds only; nanoseconds zeroed.
659  *   1 = seconds and nanoseconds, accurate within 1/HZ.
660  *   2 = seconds and nanoseconds, truncated to microseconds.
661  * >=3 = seconds and nanoseconds, maximum precision.
662  */
663 enum { TSP_SEC, TSP_HZ, TSP_USEC, TSP_NSEC };
664
665 static int timestamp_precision = TSP_USEC;
666 SYSCTL_INT(_vfs, OID_AUTO, timestamp_precision, CTLFLAG_RW,
667     &timestamp_precision, 0, "File timestamp precision (0: seconds, "
668     "1: sec + ns accurate to 1/HZ, 2: sec + ns truncated to ms, "
669     "3+: sec + ns (max. precision))");
670
671 /*
672  * Get a current timestamp.
673  */
674 void
675 vfs_timestamp(struct timespec *tsp)
676 {
677         struct timeval tv;
678
679         switch (timestamp_precision) {
680         case TSP_SEC:
681                 tsp->tv_sec = time_second;
682                 tsp->tv_nsec = 0;
683                 break;
684         case TSP_HZ:
685                 getnanotime(tsp);
686                 break;
687         case TSP_USEC:
688                 microtime(&tv);
689                 TIMEVAL_TO_TIMESPEC(&tv, tsp);
690                 break;
691         case TSP_NSEC:
692         default:
693                 nanotime(tsp);
694                 break;
695         }
696 }
697
698 /*
699  * Set vnode attributes to VNOVAL
700  */
701 void
702 vattr_null(struct vattr *vap)
703 {
704
705         vap->va_type = VNON;
706         vap->va_size = VNOVAL;
707         vap->va_bytes = VNOVAL;
708         vap->va_mode = VNOVAL;
709         vap->va_nlink = VNOVAL;
710         vap->va_uid = VNOVAL;
711         vap->va_gid = VNOVAL;
712         vap->va_fsid = VNOVAL;
713         vap->va_fileid = VNOVAL;
714         vap->va_blocksize = VNOVAL;
715         vap->va_rdev = VNOVAL;
716         vap->va_atime.tv_sec = VNOVAL;
717         vap->va_atime.tv_nsec = VNOVAL;
718         vap->va_mtime.tv_sec = VNOVAL;
719         vap->va_mtime.tv_nsec = VNOVAL;
720         vap->va_ctime.tv_sec = VNOVAL;
721         vap->va_ctime.tv_nsec = VNOVAL;
722         vap->va_birthtime.tv_sec = VNOVAL;
723         vap->va_birthtime.tv_nsec = VNOVAL;
724         vap->va_flags = VNOVAL;
725         vap->va_gen = VNOVAL;
726         vap->va_vaflags = 0;
727 }
728
729 /*
730  * This routine is called when we have too many vnodes.  It attempts
731  * to free <count> vnodes and will potentially free vnodes that still
732  * have VM backing store (VM backing store is typically the cause
733  * of a vnode blowout so we want to do this).  Therefore, this operation
734  * is not considered cheap.
735  *
736  * A number of conditions may prevent a vnode from being reclaimed.
737  * the buffer cache may have references on the vnode, a directory
738  * vnode may still have references due to the namei cache representing
739  * underlying files, or the vnode may be in active use.   It is not
740  * desireable to reuse such vnodes.  These conditions may cause the
741  * number of vnodes to reach some minimum value regardless of what
742  * you set kern.maxvnodes to.  Do not set kern.maxvnodes too low.
743  */
744 static int
745 vlrureclaim(struct mount *mp)
746 {
747         struct vnode *vp;
748         int done;
749         int trigger;
750         int usevnodes;
751         int count;
752
753         /*
754          * Calculate the trigger point, don't allow user
755          * screwups to blow us up.   This prevents us from
756          * recycling vnodes with lots of resident pages.  We
757          * aren't trying to free memory, we are trying to
758          * free vnodes.
759          */
760         usevnodes = desiredvnodes;
761         if (usevnodes <= 0)
762                 usevnodes = 1;
763         trigger = cnt.v_page_count * 2 / usevnodes;
764         done = 0;
765         vn_start_write(NULL, &mp, V_WAIT);
766         MNT_ILOCK(mp);
767         count = mp->mnt_nvnodelistsize / 10 + 1;
768         while (count != 0) {
769                 vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
770                 while (vp != NULL && vp->v_type == VMARKER)
771                         vp = TAILQ_NEXT(vp, v_nmntvnodes);
772                 if (vp == NULL)
773                         break;
774                 TAILQ_REMOVE(&mp->mnt_nvnodelist, vp, v_nmntvnodes);
775                 TAILQ_INSERT_TAIL(&mp->mnt_nvnodelist, vp, v_nmntvnodes);
776                 --count;
777                 if (!VI_TRYLOCK(vp))
778                         goto next_iter;
779                 /*
780                  * If it's been deconstructed already, it's still
781                  * referenced, or it exceeds the trigger, skip it.
782                  */
783                 if (vp->v_usecount ||
784                     (!vlru_allow_cache_src &&
785                         !LIST_EMPTY(&(vp)->v_cache_src)) ||
786                     (vp->v_iflag & VI_DOOMED) != 0 || (vp->v_object != NULL &&
787                     vp->v_object->resident_page_count > trigger)) {
788                         VI_UNLOCK(vp);
789                         goto next_iter;
790                 }
791                 MNT_IUNLOCK(mp);
792                 vholdl(vp);
793                 if (VOP_LOCK(vp, LK_INTERLOCK|LK_EXCLUSIVE|LK_NOWAIT)) {
794                         vdrop(vp);
795                         goto next_iter_mntunlocked;
796                 }
797                 VI_LOCK(vp);
798                 /*
799                  * v_usecount may have been bumped after VOP_LOCK() dropped
800                  * the vnode interlock and before it was locked again.
801                  *
802                  * It is not necessary to recheck VI_DOOMED because it can
803                  * only be set by another thread that holds both the vnode
804                  * lock and vnode interlock.  If another thread has the
805                  * vnode lock before we get to VOP_LOCK() and obtains the
806                  * vnode interlock after VOP_LOCK() drops the vnode
807                  * interlock, the other thread will be unable to drop the
808                  * vnode lock before our VOP_LOCK() call fails.
809                  */
810                 if (vp->v_usecount ||
811                     (!vlru_allow_cache_src &&
812                         !LIST_EMPTY(&(vp)->v_cache_src)) ||
813                     (vp->v_object != NULL &&
814                     vp->v_object->resident_page_count > trigger)) {
815                         VOP_UNLOCK(vp, LK_INTERLOCK);
816                         vdrop(vp);
817                         goto next_iter_mntunlocked;
818                 }
819                 KASSERT((vp->v_iflag & VI_DOOMED) == 0,
820                     ("VI_DOOMED unexpectedly detected in vlrureclaim()"));
821                 atomic_add_long(&recycles_count, 1);
822                 vgonel(vp);
823                 VOP_UNLOCK(vp, 0);
824                 vdropl(vp);
825                 done++;
826 next_iter_mntunlocked:
827                 if (!should_yield())
828                         goto relock_mnt;
829                 goto yield;
830 next_iter:
831                 if (!should_yield())
832                         continue;
833                 MNT_IUNLOCK(mp);
834 yield:
835                 kern_yield(PRI_USER);
836 relock_mnt:
837                 MNT_ILOCK(mp);
838         }
839         MNT_IUNLOCK(mp);
840         vn_finished_write(mp);
841         return done;
842 }
843
844 /*
845  * Attempt to keep the free list at wantfreevnodes length.
846  */
847 static void
848 vnlru_free(int count)
849 {
850         struct vnode *vp;
851
852         mtx_assert(&vnode_free_list_mtx, MA_OWNED);
853         for (; count > 0; count--) {
854                 vp = TAILQ_FIRST(&vnode_free_list);
855                 /*
856                  * The list can be modified while the free_list_mtx
857                  * has been dropped and vp could be NULL here.
858                  */
859                 if (!vp)
860                         break;
861                 VNASSERT(vp->v_op != NULL, vp,
862                     ("vnlru_free: vnode already reclaimed."));
863                 KASSERT((vp->v_iflag & VI_FREE) != 0,
864                     ("Removing vnode not on freelist"));
865                 KASSERT((vp->v_iflag & VI_ACTIVE) == 0,
866                     ("Mangling active vnode"));
867                 TAILQ_REMOVE(&vnode_free_list, vp, v_actfreelist);
868                 /*
869                  * Don't recycle if we can't get the interlock.
870                  */
871                 if (!VI_TRYLOCK(vp)) {
872                         TAILQ_INSERT_TAIL(&vnode_free_list, vp, v_actfreelist);
873                         continue;
874                 }
875                 VNASSERT((vp->v_iflag & VI_FREE) != 0 && vp->v_holdcnt == 0,
876                     vp, ("vp inconsistent on freelist"));
877
878                 /*
879                  * The clear of VI_FREE prevents activation of the
880                  * vnode.  There is no sense in putting the vnode on
881                  * the mount point active list, only to remove it
882                  * later during recycling.  Inline the relevant part
883                  * of vholdl(), to avoid triggering assertions or
884                  * activating.
885                  */
886                 freevnodes--;
887                 vp->v_iflag &= ~VI_FREE;
888                 vp->v_holdcnt++;
889
890                 mtx_unlock(&vnode_free_list_mtx);
891                 VI_UNLOCK(vp);
892                 vtryrecycle(vp);
893                 /*
894                  * If the recycled succeeded this vdrop will actually free
895                  * the vnode.  If not it will simply place it back on
896                  * the free list.
897                  */
898                 vdrop(vp);
899                 mtx_lock(&vnode_free_list_mtx);
900         }
901 }
902 /*
903  * Attempt to recycle vnodes in a context that is always safe to block.
904  * Calling vlrurecycle() from the bowels of filesystem code has some
905  * interesting deadlock problems.
906  */
907 static struct proc *vnlruproc;
908 static int vnlruproc_sig;
909
910 static void
911 vnlru_proc(void)
912 {
913         struct mount *mp, *nmp;
914         int done;
915         struct proc *p = vnlruproc;
916
917         EVENTHANDLER_REGISTER(shutdown_pre_sync, kproc_shutdown, p,
918             SHUTDOWN_PRI_FIRST);
919
920         for (;;) {
921                 kproc_suspend_check(p);
922                 mtx_lock(&vnode_free_list_mtx);
923                 if (freevnodes > wantfreevnodes)
924                         vnlru_free(freevnodes - wantfreevnodes);
925                 if (numvnodes <= desiredvnodes * 9 / 10) {
926                         vnlruproc_sig = 0;
927                         wakeup(&vnlruproc_sig);
928                         msleep(vnlruproc, &vnode_free_list_mtx,
929                             PVFS|PDROP, "vlruwt", hz);
930                         continue;
931                 }
932                 mtx_unlock(&vnode_free_list_mtx);
933                 done = 0;
934                 mtx_lock(&mountlist_mtx);
935                 for (mp = TAILQ_FIRST(&mountlist); mp != NULL; mp = nmp) {
936                         if (vfs_busy(mp, MBF_NOWAIT | MBF_MNTLSTLOCK)) {
937                                 nmp = TAILQ_NEXT(mp, mnt_list);
938                                 continue;
939                         }
940                         done += vlrureclaim(mp);
941                         mtx_lock(&mountlist_mtx);
942                         nmp = TAILQ_NEXT(mp, mnt_list);
943                         vfs_unbusy(mp);
944                 }
945                 mtx_unlock(&mountlist_mtx);
946                 if (done == 0) {
947 #if 0
948                         /* These messages are temporary debugging aids */
949                         if (vnlru_nowhere < 5)
950                                 printf("vnlru process getting nowhere..\n");
951                         else if (vnlru_nowhere == 5)
952                                 printf("vnlru process messages stopped.\n");
953 #endif
954                         vnlru_nowhere++;
955                         tsleep(vnlruproc, PPAUSE, "vlrup", hz * 3);
956                 } else
957                         kern_yield(PRI_USER);
958         }
959 }
960
961 static struct kproc_desc vnlru_kp = {
962         "vnlru",
963         vnlru_proc,
964         &vnlruproc
965 };
966 SYSINIT(vnlru, SI_SUB_KTHREAD_UPDATE, SI_ORDER_FIRST, kproc_start,
967     &vnlru_kp);
968  
969 /*
970  * Routines having to do with the management of the vnode table.
971  */
972
973 /*
974  * Try to recycle a freed vnode.  We abort if anyone picks up a reference
975  * before we actually vgone().  This function must be called with the vnode
976  * held to prevent the vnode from being returned to the free list midway
977  * through vgone().
978  */
979 static int
980 vtryrecycle(struct vnode *vp)
981 {
982         struct mount *vnmp;
983
984         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
985         VNASSERT(vp->v_holdcnt, vp,
986             ("vtryrecycle: Recycling vp %p without a reference.", vp));
987         /*
988          * This vnode may found and locked via some other list, if so we
989          * can't recycle it yet.
990          */
991         if (VOP_LOCK(vp, LK_EXCLUSIVE | LK_NOWAIT) != 0) {
992                 CTR2(KTR_VFS,
993                     "%s: impossible to recycle, vp %p lock is already held",
994                     __func__, vp);
995                 return (EWOULDBLOCK);
996         }
997         /*
998          * Don't recycle if its filesystem is being suspended.
999          */
1000         if (vn_start_write(vp, &vnmp, V_NOWAIT) != 0) {
1001                 VOP_UNLOCK(vp, 0);
1002                 CTR2(KTR_VFS,
1003                     "%s: impossible to recycle, cannot start the write for %p",
1004                     __func__, vp);
1005                 return (EBUSY);
1006         }
1007         /*
1008          * If we got this far, we need to acquire the interlock and see if
1009          * anyone picked up this vnode from another list.  If not, we will
1010          * mark it with DOOMED via vgonel() so that anyone who does find it
1011          * will skip over it.
1012          */
1013         VI_LOCK(vp);
1014         if (vp->v_usecount) {
1015                 VOP_UNLOCK(vp, LK_INTERLOCK);
1016                 vn_finished_write(vnmp);
1017                 CTR2(KTR_VFS,
1018                     "%s: impossible to recycle, %p is already referenced",
1019                     __func__, vp);
1020                 return (EBUSY);
1021         }
1022         if ((vp->v_iflag & VI_DOOMED) == 0) {
1023                 atomic_add_long(&recycles_count, 1);
1024                 vgonel(vp);
1025         }
1026         VOP_UNLOCK(vp, LK_INTERLOCK);
1027         vn_finished_write(vnmp);
1028         return (0);
1029 }
1030
1031 /*
1032  * Wait for available vnodes.
1033  */
1034 static int
1035 getnewvnode_wait(int suspended)
1036 {
1037
1038         mtx_assert(&vnode_free_list_mtx, MA_OWNED);
1039         if (numvnodes > desiredvnodes) {
1040                 if (suspended) {
1041                         /*
1042                          * File system is beeing suspended, we cannot risk a
1043                          * deadlock here, so allocate new vnode anyway.
1044                          */
1045                         if (freevnodes > wantfreevnodes)
1046                                 vnlru_free(freevnodes - wantfreevnodes);
1047                         return (0);
1048                 }
1049                 if (vnlruproc_sig == 0) {
1050                         vnlruproc_sig = 1;      /* avoid unnecessary wakeups */
1051                         wakeup(vnlruproc);
1052                 }
1053                 msleep(&vnlruproc_sig, &vnode_free_list_mtx, PVFS,
1054                     "vlruwk", hz);
1055         }
1056         return (numvnodes > desiredvnodes ? ENFILE : 0);
1057 }
1058
1059 void
1060 getnewvnode_reserve(u_int count)
1061 {
1062         struct thread *td;
1063
1064         td = curthread;
1065         /* First try to be quick and racy. */
1066         if (atomic_fetchadd_long(&numvnodes, count) + count <= desiredvnodes) {
1067                 td->td_vp_reserv += count;
1068                 return;
1069         } else
1070                 atomic_subtract_long(&numvnodes, count);
1071
1072         mtx_lock(&vnode_free_list_mtx);
1073         while (count > 0) {
1074                 if (getnewvnode_wait(0) == 0) {
1075                         count--;
1076                         td->td_vp_reserv++;
1077                         atomic_add_long(&numvnodes, 1);
1078                 }
1079         }
1080         mtx_unlock(&vnode_free_list_mtx);
1081 }
1082
1083 void
1084 getnewvnode_drop_reserve(void)
1085 {
1086         struct thread *td;
1087
1088         td = curthread;
1089         atomic_subtract_long(&numvnodes, td->td_vp_reserv);
1090         td->td_vp_reserv = 0;
1091 }
1092
1093 /*
1094  * Return the next vnode from the free list.
1095  */
1096 int
1097 getnewvnode(const char *tag, struct mount *mp, struct vop_vector *vops,
1098     struct vnode **vpp)
1099 {
1100         struct vnode *vp;
1101         struct bufobj *bo;
1102         struct thread *td;
1103         int error;
1104
1105         CTR3(KTR_VFS, "%s: mp %p with tag %s", __func__, mp, tag);
1106         vp = NULL;
1107         td = curthread;
1108         if (td->td_vp_reserv > 0) {
1109                 td->td_vp_reserv -= 1;
1110                 goto alloc;
1111         }
1112         mtx_lock(&vnode_free_list_mtx);
1113         /*
1114          * Lend our context to reclaim vnodes if they've exceeded the max.
1115          */
1116         if (freevnodes > wantfreevnodes)
1117                 vnlru_free(1);
1118         error = getnewvnode_wait(mp != NULL && (mp->mnt_kern_flag &
1119             MNTK_SUSPEND));
1120 #if 0   /* XXX Not all VFS_VGET/ffs_vget callers check returns. */
1121         if (error != 0) {
1122                 mtx_unlock(&vnode_free_list_mtx);
1123                 return (error);
1124         }
1125 #endif
1126         atomic_add_long(&numvnodes, 1);
1127         mtx_unlock(&vnode_free_list_mtx);
1128 alloc:
1129         atomic_add_long(&vnodes_created, 1);
1130         vp = (struct vnode *) uma_zalloc(vnode_zone, M_WAITOK|M_ZERO);
1131         /*
1132          * Setup locks.
1133          */
1134         vp->v_vnlock = &vp->v_lock;
1135         mtx_init(&vp->v_interlock, "vnode interlock", NULL, MTX_DEF);
1136         /*
1137          * By default, don't allow shared locks unless filesystems
1138          * opt-in.
1139          */
1140         lockinit(vp->v_vnlock, PVFS, tag, VLKTIMEOUT, LK_NOSHARE | LK_IS_VNODE);
1141         /*
1142          * Initialize bufobj.
1143          */
1144         bo = &vp->v_bufobj;
1145         bo->__bo_vnode = vp;
1146         rw_init(BO_LOCKPTR(bo), "bufobj interlock");
1147         bo->bo_ops = &buf_ops_bio;
1148         bo->bo_private = vp;
1149         TAILQ_INIT(&bo->bo_clean.bv_hd);
1150         TAILQ_INIT(&bo->bo_dirty.bv_hd);
1151         /*
1152          * Initialize namecache.
1153          */
1154         LIST_INIT(&vp->v_cache_src);
1155         TAILQ_INIT(&vp->v_cache_dst);
1156         /*
1157          * Finalize various vnode identity bits.
1158          */
1159         vp->v_type = VNON;
1160         vp->v_tag = tag;
1161         vp->v_op = vops;
1162         v_incr_usecount(vp);
1163         vp->v_data = NULL;
1164 #ifdef MAC
1165         mac_vnode_init(vp);
1166         if (mp != NULL && (mp->mnt_flag & MNT_MULTILABEL) == 0)
1167                 mac_vnode_associate_singlelabel(mp, vp);
1168         else if (mp == NULL && vops != &dead_vnodeops)
1169                 printf("NULL mp in getnewvnode()\n");
1170 #endif
1171         if (mp != NULL) {
1172                 bo->bo_bsize = mp->mnt_stat.f_iosize;
1173                 if ((mp->mnt_kern_flag & MNTK_NOKNOTE) != 0)
1174                         vp->v_vflag |= VV_NOKNOTE;
1175         }
1176         rangelock_init(&vp->v_rl);
1177
1178         /*
1179          * For the filesystems which do not use vfs_hash_insert(),
1180          * still initialize v_hash to have vfs_hash_index() useful.
1181          * E.g., nullfs uses vfs_hash_index() on the lower vnode for
1182          * its own hashing.
1183          */
1184         vp->v_hash = (uintptr_t)vp >> vnsz2log;
1185
1186         *vpp = vp;
1187         return (0);
1188 }
1189
1190 /*
1191  * Delete from old mount point vnode list, if on one.
1192  */
1193 static void
1194 delmntque(struct vnode *vp)
1195 {
1196         struct mount *mp;
1197         int active;
1198
1199         mp = vp->v_mount;
1200         if (mp == NULL)
1201                 return;
1202         MNT_ILOCK(mp);
1203         VI_LOCK(vp);
1204         KASSERT(mp->mnt_activevnodelistsize <= mp->mnt_nvnodelistsize,
1205             ("Active vnode list size %d > Vnode list size %d",
1206              mp->mnt_activevnodelistsize, mp->mnt_nvnodelistsize));
1207         active = vp->v_iflag & VI_ACTIVE;
1208         vp->v_iflag &= ~VI_ACTIVE;
1209         if (active) {
1210                 mtx_lock(&vnode_free_list_mtx);
1211                 TAILQ_REMOVE(&mp->mnt_activevnodelist, vp, v_actfreelist);
1212                 mp->mnt_activevnodelistsize--;
1213                 mtx_unlock(&vnode_free_list_mtx);
1214         }
1215         vp->v_mount = NULL;
1216         VI_UNLOCK(vp);
1217         VNASSERT(mp->mnt_nvnodelistsize > 0, vp,
1218                 ("bad mount point vnode list size"));
1219         TAILQ_REMOVE(&mp->mnt_nvnodelist, vp, v_nmntvnodes);
1220         mp->mnt_nvnodelistsize--;
1221         MNT_REL(mp);
1222         MNT_IUNLOCK(mp);
1223 }
1224
1225 static void
1226 insmntque_stddtr(struct vnode *vp, void *dtr_arg)
1227 {
1228
1229         vp->v_data = NULL;
1230         vp->v_op = &dead_vnodeops;
1231         vgone(vp);
1232         vput(vp);
1233 }
1234
1235 /*
1236  * Insert into list of vnodes for the new mount point, if available.
1237  */
1238 int
1239 insmntque1(struct vnode *vp, struct mount *mp,
1240         void (*dtr)(struct vnode *, void *), void *dtr_arg)
1241 {
1242
1243         KASSERT(vp->v_mount == NULL,
1244                 ("insmntque: vnode already on per mount vnode list"));
1245         VNASSERT(mp != NULL, vp, ("Don't call insmntque(foo, NULL)"));
1246         ASSERT_VOP_ELOCKED(vp, "insmntque: non-locked vp");
1247
1248         /*
1249          * We acquire the vnode interlock early to ensure that the
1250          * vnode cannot be recycled by another process releasing a
1251          * holdcnt on it before we get it on both the vnode list
1252          * and the active vnode list. The mount mutex protects only
1253          * manipulation of the vnode list and the vnode freelist
1254          * mutex protects only manipulation of the active vnode list.
1255          * Hence the need to hold the vnode interlock throughout.
1256          */
1257         MNT_ILOCK(mp);
1258         VI_LOCK(vp);
1259         if (((mp->mnt_kern_flag & MNTK_NOINSMNTQ) != 0 &&
1260             ((mp->mnt_kern_flag & MNTK_UNMOUNTF) != 0 ||
1261             mp->mnt_nvnodelistsize == 0)) &&
1262             (vp->v_vflag & VV_FORCEINSMQ) == 0) {
1263                 VI_UNLOCK(vp);
1264                 MNT_IUNLOCK(mp);
1265                 if (dtr != NULL)
1266                         dtr(vp, dtr_arg);
1267                 return (EBUSY);
1268         }
1269         vp->v_mount = mp;
1270         MNT_REF(mp);
1271         TAILQ_INSERT_TAIL(&mp->mnt_nvnodelist, vp, v_nmntvnodes);
1272         VNASSERT(mp->mnt_nvnodelistsize >= 0, vp,
1273                 ("neg mount point vnode list size"));
1274         mp->mnt_nvnodelistsize++;
1275         KASSERT((vp->v_iflag & VI_ACTIVE) == 0,
1276             ("Activating already active vnode"));
1277         vp->v_iflag |= VI_ACTIVE;
1278         mtx_lock(&vnode_free_list_mtx);
1279         TAILQ_INSERT_HEAD(&mp->mnt_activevnodelist, vp, v_actfreelist);
1280         mp->mnt_activevnodelistsize++;
1281         mtx_unlock(&vnode_free_list_mtx);
1282         VI_UNLOCK(vp);
1283         MNT_IUNLOCK(mp);
1284         return (0);
1285 }
1286
1287 int
1288 insmntque(struct vnode *vp, struct mount *mp)
1289 {
1290
1291         return (insmntque1(vp, mp, insmntque_stddtr, NULL));
1292 }
1293
1294 /*
1295  * Flush out and invalidate all buffers associated with a bufobj
1296  * Called with the underlying object locked.
1297  */
1298 int
1299 bufobj_invalbuf(struct bufobj *bo, int flags, int slpflag, int slptimeo)
1300 {
1301         int error;
1302
1303         BO_LOCK(bo);
1304         if (flags & V_SAVE) {
1305                 error = bufobj_wwait(bo, slpflag, slptimeo);
1306                 if (error) {
1307                         BO_UNLOCK(bo);
1308                         return (error);
1309                 }
1310                 if (bo->bo_dirty.bv_cnt > 0) {
1311                         BO_UNLOCK(bo);
1312                         if ((error = BO_SYNC(bo, MNT_WAIT)) != 0)
1313                                 return (error);
1314                         /*
1315                          * XXX We could save a lock/unlock if this was only
1316                          * enabled under INVARIANTS
1317                          */
1318                         BO_LOCK(bo);
1319                         if (bo->bo_numoutput > 0 || bo->bo_dirty.bv_cnt > 0)
1320                                 panic("vinvalbuf: dirty bufs");
1321                 }
1322         }
1323         /*
1324          * If you alter this loop please notice that interlock is dropped and
1325          * reacquired in flushbuflist.  Special care is needed to ensure that
1326          * no race conditions occur from this.
1327          */
1328         do {
1329                 error = flushbuflist(&bo->bo_clean,
1330                     flags, bo, slpflag, slptimeo);
1331                 if (error == 0 && !(flags & V_CLEANONLY))
1332                         error = flushbuflist(&bo->bo_dirty,
1333                             flags, bo, slpflag, slptimeo);
1334                 if (error != 0 && error != EAGAIN) {
1335                         BO_UNLOCK(bo);
1336                         return (error);
1337                 }
1338         } while (error != 0);
1339
1340         /*
1341          * Wait for I/O to complete.  XXX needs cleaning up.  The vnode can
1342          * have write I/O in-progress but if there is a VM object then the
1343          * VM object can also have read-I/O in-progress.
1344          */
1345         do {
1346                 bufobj_wwait(bo, 0, 0);
1347                 BO_UNLOCK(bo);
1348                 if (bo->bo_object != NULL) {
1349                         VM_OBJECT_WLOCK(bo->bo_object);
1350                         vm_object_pip_wait(bo->bo_object, "bovlbx");
1351                         VM_OBJECT_WUNLOCK(bo->bo_object);
1352                 }
1353                 BO_LOCK(bo);
1354         } while (bo->bo_numoutput > 0);
1355         BO_UNLOCK(bo);
1356
1357         /*
1358          * Destroy the copy in the VM cache, too.
1359          */
1360         if (bo->bo_object != NULL &&
1361             (flags & (V_ALT | V_NORMAL | V_CLEANONLY)) == 0) {
1362                 VM_OBJECT_WLOCK(bo->bo_object);
1363                 vm_object_page_remove(bo->bo_object, 0, 0, (flags & V_SAVE) ?
1364                     OBJPR_CLEANONLY : 0);
1365                 VM_OBJECT_WUNLOCK(bo->bo_object);
1366         }
1367
1368 #ifdef INVARIANTS
1369         BO_LOCK(bo);
1370         if ((flags & (V_ALT | V_NORMAL | V_CLEANONLY)) == 0 &&
1371             (bo->bo_dirty.bv_cnt > 0 || bo->bo_clean.bv_cnt > 0))
1372                 panic("vinvalbuf: flush failed");
1373         BO_UNLOCK(bo);
1374 #endif
1375         return (0);
1376 }
1377
1378 /*
1379  * Flush out and invalidate all buffers associated with a vnode.
1380  * Called with the underlying object locked.
1381  */
1382 int
1383 vinvalbuf(struct vnode *vp, int flags, int slpflag, int slptimeo)
1384 {
1385
1386         CTR3(KTR_VFS, "%s: vp %p with flags %d", __func__, vp, flags);
1387         ASSERT_VOP_LOCKED(vp, "vinvalbuf");
1388         if (vp->v_object != NULL && vp->v_object->handle != vp)
1389                 return (0);
1390         return (bufobj_invalbuf(&vp->v_bufobj, flags, slpflag, slptimeo));
1391 }
1392
1393 /*
1394  * Flush out buffers on the specified list.
1395  *
1396  */
1397 static int
1398 flushbuflist(struct bufv *bufv, int flags, struct bufobj *bo, int slpflag,
1399     int slptimeo)
1400 {
1401         struct buf *bp, *nbp;
1402         int retval, error;
1403         daddr_t lblkno;
1404         b_xflags_t xflags;
1405
1406         ASSERT_BO_WLOCKED(bo);
1407
1408         retval = 0;
1409         TAILQ_FOREACH_SAFE(bp, &bufv->bv_hd, b_bobufs, nbp) {
1410                 if (((flags & V_NORMAL) && (bp->b_xflags & BX_ALTDATA)) ||
1411                     ((flags & V_ALT) && (bp->b_xflags & BX_ALTDATA) == 0)) {
1412                         continue;
1413                 }
1414                 lblkno = 0;
1415                 xflags = 0;
1416                 if (nbp != NULL) {
1417                         lblkno = nbp->b_lblkno;
1418                         xflags = nbp->b_xflags & (BX_VNDIRTY | BX_VNCLEAN);
1419                 }
1420                 retval = EAGAIN;
1421                 error = BUF_TIMELOCK(bp,
1422                     LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK, BO_LOCKPTR(bo),
1423                     "flushbuf", slpflag, slptimeo);
1424                 if (error) {
1425                         BO_LOCK(bo);
1426                         return (error != ENOLCK ? error : EAGAIN);
1427                 }
1428                 KASSERT(bp->b_bufobj == bo,
1429                     ("bp %p wrong b_bufobj %p should be %p",
1430                     bp, bp->b_bufobj, bo));
1431                 if (bp->b_bufobj != bo) {       /* XXX: necessary ? */
1432                         BUF_UNLOCK(bp);
1433                         BO_LOCK(bo);
1434                         return (EAGAIN);
1435                 }
1436                 /*
1437                  * XXX Since there are no node locks for NFS, I
1438                  * believe there is a slight chance that a delayed
1439                  * write will occur while sleeping just above, so
1440                  * check for it.
1441                  */
1442                 if (((bp->b_flags & (B_DELWRI | B_INVAL)) == B_DELWRI) &&
1443                     (flags & V_SAVE)) {
1444                         bremfree(bp);
1445                         bp->b_flags |= B_ASYNC;
1446                         bwrite(bp);
1447                         BO_LOCK(bo);
1448                         return (EAGAIN);        /* XXX: why not loop ? */
1449                 }
1450                 bremfree(bp);
1451                 bp->b_flags |= (B_INVAL | B_RELBUF);
1452                 bp->b_flags &= ~B_ASYNC;
1453                 brelse(bp);
1454                 BO_LOCK(bo);
1455                 if (nbp != NULL &&
1456                     (nbp->b_bufobj != bo ||
1457                      nbp->b_lblkno != lblkno ||
1458                      (nbp->b_xflags & (BX_VNDIRTY | BX_VNCLEAN)) != xflags))
1459                         break;                  /* nbp invalid */
1460         }
1461         return (retval);
1462 }
1463
1464 /*
1465  * Truncate a file's buffer and pages to a specified length.  This
1466  * is in lieu of the old vinvalbuf mechanism, which performed unneeded
1467  * sync activity.
1468  */
1469 int
1470 vtruncbuf(struct vnode *vp, struct ucred *cred, off_t length, int blksize)
1471 {
1472         struct buf *bp, *nbp;
1473         int anyfreed;
1474         int trunclbn;
1475         struct bufobj *bo;
1476
1477         CTR5(KTR_VFS, "%s: vp %p with cred %p and block %d:%ju", __func__,
1478             vp, cred, blksize, (uintmax_t)length);
1479
1480         /*
1481          * Round up to the *next* lbn.
1482          */
1483         trunclbn = (length + blksize - 1) / blksize;
1484
1485         ASSERT_VOP_LOCKED(vp, "vtruncbuf");
1486 restart:
1487         bo = &vp->v_bufobj;
1488         BO_LOCK(bo);
1489         anyfreed = 1;
1490         for (;anyfreed;) {
1491                 anyfreed = 0;
1492                 TAILQ_FOREACH_SAFE(bp, &bo->bo_clean.bv_hd, b_bobufs, nbp) {
1493                         if (bp->b_lblkno < trunclbn)
1494                                 continue;
1495                         if (BUF_LOCK(bp,
1496                             LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK,
1497                             BO_LOCKPTR(bo)) == ENOLCK)
1498                                 goto restart;
1499
1500                         bremfree(bp);
1501                         bp->b_flags |= (B_INVAL | B_RELBUF);
1502                         bp->b_flags &= ~B_ASYNC;
1503                         brelse(bp);
1504                         anyfreed = 1;
1505
1506                         BO_LOCK(bo);
1507                         if (nbp != NULL &&
1508                             (((nbp->b_xflags & BX_VNCLEAN) == 0) ||
1509                             (nbp->b_vp != vp) ||
1510                             (nbp->b_flags & B_DELWRI))) {
1511                                 BO_UNLOCK(bo);
1512                                 goto restart;
1513                         }
1514                 }
1515
1516                 TAILQ_FOREACH_SAFE(bp, &bo->bo_dirty.bv_hd, b_bobufs, nbp) {
1517                         if (bp->b_lblkno < trunclbn)
1518                                 continue;
1519                         if (BUF_LOCK(bp,
1520                             LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK,
1521                             BO_LOCKPTR(bo)) == ENOLCK)
1522                                 goto restart;
1523                         bremfree(bp);
1524                         bp->b_flags |= (B_INVAL | B_RELBUF);
1525                         bp->b_flags &= ~B_ASYNC;
1526                         brelse(bp);
1527                         anyfreed = 1;
1528
1529                         BO_LOCK(bo);
1530                         if (nbp != NULL &&
1531                             (((nbp->b_xflags & BX_VNDIRTY) == 0) ||
1532                             (nbp->b_vp != vp) ||
1533                             (nbp->b_flags & B_DELWRI) == 0)) {
1534                                 BO_UNLOCK(bo);
1535                                 goto restart;
1536                         }
1537                 }
1538         }
1539
1540         if (length > 0) {
1541 restartsync:
1542                 TAILQ_FOREACH_SAFE(bp, &bo->bo_dirty.bv_hd, b_bobufs, nbp) {
1543                         if (bp->b_lblkno > 0)
1544                                 continue;
1545                         /*
1546                          * Since we hold the vnode lock this should only
1547                          * fail if we're racing with the buf daemon.
1548                          */
1549                         if (BUF_LOCK(bp,
1550                             LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK,
1551                             BO_LOCKPTR(bo)) == ENOLCK) {
1552                                 goto restart;
1553                         }
1554                         VNASSERT((bp->b_flags & B_DELWRI), vp,
1555                             ("buf(%p) on dirty queue without DELWRI", bp));
1556
1557                         bremfree(bp);
1558                         bawrite(bp);
1559                         BO_LOCK(bo);
1560                         goto restartsync;
1561                 }
1562         }
1563
1564         bufobj_wwait(bo, 0, 0);
1565         BO_UNLOCK(bo);
1566         vnode_pager_setsize(vp, length);
1567
1568         return (0);
1569 }
1570
1571 static void
1572 buf_vlist_remove(struct buf *bp)
1573 {
1574         struct bufv *bv;
1575
1576         KASSERT(bp->b_bufobj != NULL, ("No b_bufobj %p", bp));
1577         ASSERT_BO_WLOCKED(bp->b_bufobj);
1578         KASSERT((bp->b_xflags & (BX_VNDIRTY|BX_VNCLEAN)) !=
1579             (BX_VNDIRTY|BX_VNCLEAN),
1580             ("buf_vlist_remove: Buf %p is on two lists", bp));
1581         if (bp->b_xflags & BX_VNDIRTY)
1582                 bv = &bp->b_bufobj->bo_dirty;
1583         else
1584                 bv = &bp->b_bufobj->bo_clean;
1585         BUF_PCTRIE_REMOVE(&bv->bv_root, bp->b_lblkno);
1586         TAILQ_REMOVE(&bv->bv_hd, bp, b_bobufs);
1587         bv->bv_cnt--;
1588         bp->b_xflags &= ~(BX_VNDIRTY | BX_VNCLEAN);
1589 }
1590
1591 /*
1592  * Add the buffer to the sorted clean or dirty block list.
1593  *
1594  * NOTE: xflags is passed as a constant, optimizing this inline function!
1595  */
1596 static void
1597 buf_vlist_add(struct buf *bp, struct bufobj *bo, b_xflags_t xflags)
1598 {
1599         struct bufv *bv;
1600         struct buf *n;
1601         int error;
1602
1603         ASSERT_BO_WLOCKED(bo);
1604         KASSERT((xflags & BX_VNDIRTY) == 0 || (bo->bo_flag & BO_DEAD) == 0,
1605             ("dead bo %p", bo));
1606         KASSERT((bp->b_xflags & (BX_VNDIRTY|BX_VNCLEAN)) == 0,
1607             ("buf_vlist_add: Buf %p has existing xflags %d", bp, bp->b_xflags));
1608         bp->b_xflags |= xflags;
1609         if (xflags & BX_VNDIRTY)
1610                 bv = &bo->bo_dirty;
1611         else
1612                 bv = &bo->bo_clean;
1613
1614         /*
1615          * Keep the list ordered.  Optimize empty list insertion.  Assume
1616          * we tend to grow at the tail so lookup_le should usually be cheaper
1617          * than _ge. 
1618          */
1619         if (bv->bv_cnt == 0 ||
1620             bp->b_lblkno > TAILQ_LAST(&bv->bv_hd, buflists)->b_lblkno)
1621                 TAILQ_INSERT_TAIL(&bv->bv_hd, bp, b_bobufs);
1622         else if ((n = BUF_PCTRIE_LOOKUP_LE(&bv->bv_root, bp->b_lblkno)) == NULL)
1623                 TAILQ_INSERT_HEAD(&bv->bv_hd, bp, b_bobufs);
1624         else
1625                 TAILQ_INSERT_AFTER(&bv->bv_hd, n, bp, b_bobufs);
1626         error = BUF_PCTRIE_INSERT(&bv->bv_root, bp);
1627         if (error)
1628                 panic("buf_vlist_add:  Preallocated nodes insufficient.");
1629         bv->bv_cnt++;
1630 }
1631
1632 /*
1633  * Lookup a buffer using the splay tree.  Note that we specifically avoid
1634  * shadow buffers used in background bitmap writes.
1635  *
1636  * This code isn't quite efficient as it could be because we are maintaining
1637  * two sorted lists and do not know which list the block resides in.
1638  *
1639  * During a "make buildworld" the desired buffer is found at one of
1640  * the roots more than 60% of the time.  Thus, checking both roots
1641  * before performing either splay eliminates unnecessary splays on the
1642  * first tree splayed.
1643  */
1644 struct buf *
1645 gbincore(struct bufobj *bo, daddr_t lblkno)
1646 {
1647         struct buf *bp;
1648
1649         ASSERT_BO_LOCKED(bo);
1650         bp = BUF_PCTRIE_LOOKUP(&bo->bo_clean.bv_root, lblkno);
1651         if (bp != NULL)
1652                 return (bp);
1653         return BUF_PCTRIE_LOOKUP(&bo->bo_dirty.bv_root, lblkno);
1654 }
1655
1656 /*
1657  * Associate a buffer with a vnode.
1658  */
1659 void
1660 bgetvp(struct vnode *vp, struct buf *bp)
1661 {
1662         struct bufobj *bo;
1663
1664         bo = &vp->v_bufobj;
1665         ASSERT_BO_WLOCKED(bo);
1666         VNASSERT(bp->b_vp == NULL, bp->b_vp, ("bgetvp: not free"));
1667
1668         CTR3(KTR_BUF, "bgetvp(%p) vp %p flags %X", bp, vp, bp->b_flags);
1669         VNASSERT((bp->b_xflags & (BX_VNDIRTY|BX_VNCLEAN)) == 0, vp,
1670             ("bgetvp: bp already attached! %p", bp));
1671
1672         vhold(vp);
1673         bp->b_vp = vp;
1674         bp->b_bufobj = bo;
1675         /*
1676          * Insert onto list for new vnode.
1677          */
1678         buf_vlist_add(bp, bo, BX_VNCLEAN);
1679 }
1680
1681 /*
1682  * Disassociate a buffer from a vnode.
1683  */
1684 void
1685 brelvp(struct buf *bp)
1686 {
1687         struct bufobj *bo;
1688         struct vnode *vp;
1689
1690         CTR3(KTR_BUF, "brelvp(%p) vp %p flags %X", bp, bp->b_vp, bp->b_flags);
1691         KASSERT(bp->b_vp != NULL, ("brelvp: NULL"));
1692
1693         /*
1694          * Delete from old vnode list, if on one.
1695          */
1696         vp = bp->b_vp;          /* XXX */
1697         bo = bp->b_bufobj;
1698         BO_LOCK(bo);
1699         if (bp->b_xflags & (BX_VNDIRTY | BX_VNCLEAN))
1700                 buf_vlist_remove(bp);
1701         else
1702                 panic("brelvp: Buffer %p not on queue.", bp);
1703         if ((bo->bo_flag & BO_ONWORKLST) && bo->bo_dirty.bv_cnt == 0) {
1704                 bo->bo_flag &= ~BO_ONWORKLST;
1705                 mtx_lock(&sync_mtx);
1706                 LIST_REMOVE(bo, bo_synclist);
1707                 syncer_worklist_len--;
1708                 mtx_unlock(&sync_mtx);
1709         }
1710         bp->b_vp = NULL;
1711         bp->b_bufobj = NULL;
1712         BO_UNLOCK(bo);
1713         vdrop(vp);
1714 }
1715
1716 /*
1717  * Add an item to the syncer work queue.
1718  */
1719 static void
1720 vn_syncer_add_to_worklist(struct bufobj *bo, int delay)
1721 {
1722         int slot;
1723
1724         ASSERT_BO_WLOCKED(bo);
1725
1726         mtx_lock(&sync_mtx);
1727         if (bo->bo_flag & BO_ONWORKLST)
1728                 LIST_REMOVE(bo, bo_synclist);
1729         else {
1730                 bo->bo_flag |= BO_ONWORKLST;
1731                 syncer_worklist_len++;
1732         }
1733
1734         if (delay > syncer_maxdelay - 2)
1735                 delay = syncer_maxdelay - 2;
1736         slot = (syncer_delayno + delay) & syncer_mask;
1737
1738         LIST_INSERT_HEAD(&syncer_workitem_pending[slot], bo, bo_synclist);
1739         mtx_unlock(&sync_mtx);
1740 }
1741
1742 static int
1743 sysctl_vfs_worklist_len(SYSCTL_HANDLER_ARGS)
1744 {
1745         int error, len;
1746
1747         mtx_lock(&sync_mtx);
1748         len = syncer_worklist_len - sync_vnode_count;
1749         mtx_unlock(&sync_mtx);
1750         error = SYSCTL_OUT(req, &len, sizeof(len));
1751         return (error);
1752 }
1753
1754 SYSCTL_PROC(_vfs, OID_AUTO, worklist_len, CTLTYPE_INT | CTLFLAG_RD, NULL, 0,
1755     sysctl_vfs_worklist_len, "I", "Syncer thread worklist length");
1756
1757 static struct proc *updateproc;
1758 static void sched_sync(void);
1759 static struct kproc_desc up_kp = {
1760         "syncer",
1761         sched_sync,
1762         &updateproc
1763 };
1764 SYSINIT(syncer, SI_SUB_KTHREAD_UPDATE, SI_ORDER_FIRST, kproc_start, &up_kp);
1765
1766 static int
1767 sync_vnode(struct synclist *slp, struct bufobj **bo, struct thread *td)
1768 {
1769         struct vnode *vp;
1770         struct mount *mp;
1771
1772         *bo = LIST_FIRST(slp);
1773         if (*bo == NULL)
1774                 return (0);
1775         vp = (*bo)->__bo_vnode; /* XXX */
1776         if (VOP_ISLOCKED(vp) != 0 || VI_TRYLOCK(vp) == 0)
1777                 return (1);
1778         /*
1779          * We use vhold in case the vnode does not
1780          * successfully sync.  vhold prevents the vnode from
1781          * going away when we unlock the sync_mtx so that
1782          * we can acquire the vnode interlock.
1783          */
1784         vholdl(vp);
1785         mtx_unlock(&sync_mtx);
1786         VI_UNLOCK(vp);
1787         if (vn_start_write(vp, &mp, V_NOWAIT) != 0) {
1788                 vdrop(vp);
1789                 mtx_lock(&sync_mtx);
1790                 return (*bo == LIST_FIRST(slp));
1791         }
1792         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1793         (void) VOP_FSYNC(vp, MNT_LAZY, td);
1794         VOP_UNLOCK(vp, 0);
1795         vn_finished_write(mp);
1796         BO_LOCK(*bo);
1797         if (((*bo)->bo_flag & BO_ONWORKLST) != 0) {
1798                 /*
1799                  * Put us back on the worklist.  The worklist
1800                  * routine will remove us from our current
1801                  * position and then add us back in at a later
1802                  * position.
1803                  */
1804                 vn_syncer_add_to_worklist(*bo, syncdelay);
1805         }
1806         BO_UNLOCK(*bo);
1807         vdrop(vp);
1808         mtx_lock(&sync_mtx);
1809         return (0);
1810 }
1811
1812 static int first_printf = 1;
1813
1814 /*
1815  * System filesystem synchronizer daemon.
1816  */
1817 static void
1818 sched_sync(void)
1819 {
1820         struct synclist *next, *slp;
1821         struct bufobj *bo;
1822         long starttime;
1823         struct thread *td = curthread;
1824         int last_work_seen;
1825         int net_worklist_len;
1826         int syncer_final_iter;
1827         int error;
1828
1829         last_work_seen = 0;
1830         syncer_final_iter = 0;
1831         syncer_state = SYNCER_RUNNING;
1832         starttime = time_uptime;
1833         td->td_pflags |= TDP_NORUNNINGBUF;
1834
1835         EVENTHANDLER_REGISTER(shutdown_pre_sync, syncer_shutdown, td->td_proc,
1836             SHUTDOWN_PRI_LAST);
1837
1838         mtx_lock(&sync_mtx);
1839         for (;;) {
1840                 if (syncer_state == SYNCER_FINAL_DELAY &&
1841                     syncer_final_iter == 0) {
1842                         mtx_unlock(&sync_mtx);
1843                         kproc_suspend_check(td->td_proc);
1844                         mtx_lock(&sync_mtx);
1845                 }
1846                 net_worklist_len = syncer_worklist_len - sync_vnode_count;
1847                 if (syncer_state != SYNCER_RUNNING &&
1848                     starttime != time_uptime) {
1849                         if (first_printf) {
1850                                 printf("\nSyncing disks, vnodes remaining...");
1851                                 first_printf = 0;
1852                         }
1853                         printf("%d ", net_worklist_len);
1854                 }
1855                 starttime = time_uptime;
1856
1857                 /*
1858                  * Push files whose dirty time has expired.  Be careful
1859                  * of interrupt race on slp queue.
1860                  *
1861                  * Skip over empty worklist slots when shutting down.
1862                  */
1863                 do {
1864                         slp = &syncer_workitem_pending[syncer_delayno];
1865                         syncer_delayno += 1;
1866                         if (syncer_delayno == syncer_maxdelay)
1867                                 syncer_delayno = 0;
1868                         next = &syncer_workitem_pending[syncer_delayno];
1869                         /*
1870                          * If the worklist has wrapped since the
1871                          * it was emptied of all but syncer vnodes,
1872                          * switch to the FINAL_DELAY state and run
1873                          * for one more second.
1874                          */
1875                         if (syncer_state == SYNCER_SHUTTING_DOWN &&
1876                             net_worklist_len == 0 &&
1877                             last_work_seen == syncer_delayno) {
1878                                 syncer_state = SYNCER_FINAL_DELAY;
1879                                 syncer_final_iter = SYNCER_SHUTDOWN_SPEEDUP;
1880                         }
1881                 } while (syncer_state != SYNCER_RUNNING && LIST_EMPTY(slp) &&
1882                     syncer_worklist_len > 0);
1883
1884                 /*
1885                  * Keep track of the last time there was anything
1886                  * on the worklist other than syncer vnodes.
1887                  * Return to the SHUTTING_DOWN state if any
1888                  * new work appears.
1889                  */
1890                 if (net_worklist_len > 0 || syncer_state == SYNCER_RUNNING)
1891                         last_work_seen = syncer_delayno;
1892                 if (net_worklist_len > 0 && syncer_state == SYNCER_FINAL_DELAY)
1893                         syncer_state = SYNCER_SHUTTING_DOWN;
1894                 while (!LIST_EMPTY(slp)) {
1895                         error = sync_vnode(slp, &bo, td);
1896                         if (error == 1) {
1897                                 LIST_REMOVE(bo, bo_synclist);
1898                                 LIST_INSERT_HEAD(next, bo, bo_synclist);
1899                                 continue;
1900                         }
1901
1902                         if (first_printf == 0)
1903                                 wdog_kern_pat(WD_LASTVAL);
1904
1905                 }
1906                 if (syncer_state == SYNCER_FINAL_DELAY && syncer_final_iter > 0)
1907                         syncer_final_iter--;
1908                 /*
1909                  * The variable rushjob allows the kernel to speed up the
1910                  * processing of the filesystem syncer process. A rushjob
1911                  * value of N tells the filesystem syncer to process the next
1912                  * N seconds worth of work on its queue ASAP. Currently rushjob
1913                  * is used by the soft update code to speed up the filesystem
1914                  * syncer process when the incore state is getting so far
1915                  * ahead of the disk that the kernel memory pool is being
1916                  * threatened with exhaustion.
1917                  */
1918                 if (rushjob > 0) {
1919                         rushjob -= 1;
1920                         continue;
1921                 }
1922                 /*
1923                  * Just sleep for a short period of time between
1924                  * iterations when shutting down to allow some I/O
1925                  * to happen.
1926                  *
1927                  * If it has taken us less than a second to process the
1928                  * current work, then wait. Otherwise start right over
1929                  * again. We can still lose time if any single round
1930                  * takes more than two seconds, but it does not really
1931                  * matter as we are just trying to generally pace the
1932                  * filesystem activity.
1933                  */
1934                 if (syncer_state != SYNCER_RUNNING ||
1935                     time_uptime == starttime) {
1936                         thread_lock(td);
1937                         sched_prio(td, PPAUSE);
1938                         thread_unlock(td);
1939                 }
1940                 if (syncer_state != SYNCER_RUNNING)
1941                         cv_timedwait(&sync_wakeup, &sync_mtx,
1942                             hz / SYNCER_SHUTDOWN_SPEEDUP);
1943                 else if (time_uptime == starttime)
1944                         cv_timedwait(&sync_wakeup, &sync_mtx, hz);
1945         }
1946 }
1947
1948 /*
1949  * Request the syncer daemon to speed up its work.
1950  * We never push it to speed up more than half of its
1951  * normal turn time, otherwise it could take over the cpu.
1952  */
1953 int
1954 speedup_syncer(void)
1955 {
1956         int ret = 0;
1957
1958         mtx_lock(&sync_mtx);
1959         if (rushjob < syncdelay / 2) {
1960                 rushjob += 1;
1961                 stat_rush_requests += 1;
1962                 ret = 1;
1963         }
1964         mtx_unlock(&sync_mtx);
1965         cv_broadcast(&sync_wakeup);
1966         return (ret);
1967 }
1968
1969 /*
1970  * Tell the syncer to speed up its work and run though its work
1971  * list several times, then tell it to shut down.
1972  */
1973 static void
1974 syncer_shutdown(void *arg, int howto)
1975 {
1976
1977         if (howto & RB_NOSYNC)
1978                 return;
1979         mtx_lock(&sync_mtx);
1980         syncer_state = SYNCER_SHUTTING_DOWN;
1981         rushjob = 0;
1982         mtx_unlock(&sync_mtx);
1983         cv_broadcast(&sync_wakeup);
1984         kproc_shutdown(arg, howto);
1985 }
1986
1987 void
1988 syncer_suspend(void)
1989 {
1990
1991         syncer_shutdown(updateproc, 0);
1992 }
1993
1994 void
1995 syncer_resume(void)
1996 {
1997
1998         mtx_lock(&sync_mtx);
1999         first_printf = 1;
2000         syncer_state = SYNCER_RUNNING;
2001         mtx_unlock(&sync_mtx);
2002         cv_broadcast(&sync_wakeup);
2003         kproc_resume(updateproc);
2004 }
2005
2006 /*
2007  * Reassign a buffer from one vnode to another.
2008  * Used to assign file specific control information
2009  * (indirect blocks) to the vnode to which they belong.
2010  */
2011 void
2012 reassignbuf(struct buf *bp)
2013 {
2014         struct vnode *vp;
2015         struct bufobj *bo;
2016         int delay;
2017 #ifdef INVARIANTS
2018         struct bufv *bv;
2019 #endif
2020
2021         vp = bp->b_vp;
2022         bo = bp->b_bufobj;
2023         ++reassignbufcalls;
2024
2025         CTR3(KTR_BUF, "reassignbuf(%p) vp %p flags %X",
2026             bp, bp->b_vp, bp->b_flags);
2027         /*
2028          * B_PAGING flagged buffers cannot be reassigned because their vp
2029          * is not fully linked in.
2030          */
2031         if (bp->b_flags & B_PAGING)
2032                 panic("cannot reassign paging buffer");
2033
2034         /*
2035          * Delete from old vnode list, if on one.
2036          */
2037         BO_LOCK(bo);
2038         if (bp->b_xflags & (BX_VNDIRTY | BX_VNCLEAN))
2039                 buf_vlist_remove(bp);
2040         else
2041                 panic("reassignbuf: Buffer %p not on queue.", bp);
2042         /*
2043          * If dirty, put on list of dirty buffers; otherwise insert onto list
2044          * of clean buffers.
2045          */
2046         if (bp->b_flags & B_DELWRI) {
2047                 if ((bo->bo_flag & BO_ONWORKLST) == 0) {
2048                         switch (vp->v_type) {
2049                         case VDIR:
2050                                 delay = dirdelay;
2051                                 break;
2052                         case VCHR:
2053                                 delay = metadelay;
2054                                 break;
2055                         default:
2056                                 delay = filedelay;
2057                         }
2058                         vn_syncer_add_to_worklist(bo, delay);
2059                 }
2060                 buf_vlist_add(bp, bo, BX_VNDIRTY);
2061         } else {
2062                 buf_vlist_add(bp, bo, BX_VNCLEAN);
2063
2064                 if ((bo->bo_flag & BO_ONWORKLST) && bo->bo_dirty.bv_cnt == 0) {
2065                         mtx_lock(&sync_mtx);
2066                         LIST_REMOVE(bo, bo_synclist);
2067                         syncer_worklist_len--;
2068                         mtx_unlock(&sync_mtx);
2069                         bo->bo_flag &= ~BO_ONWORKLST;
2070                 }
2071         }
2072 #ifdef INVARIANTS
2073         bv = &bo->bo_clean;
2074         bp = TAILQ_FIRST(&bv->bv_hd);
2075         KASSERT(bp == NULL || bp->b_bufobj == bo,
2076             ("bp %p wrong b_bufobj %p should be %p", bp, bp->b_bufobj, bo));
2077         bp = TAILQ_LAST(&bv->bv_hd, buflists);
2078         KASSERT(bp == NULL || bp->b_bufobj == bo,
2079             ("bp %p wrong b_bufobj %p should be %p", bp, bp->b_bufobj, bo));
2080         bv = &bo->bo_dirty;
2081         bp = TAILQ_FIRST(&bv->bv_hd);
2082         KASSERT(bp == NULL || bp->b_bufobj == bo,
2083             ("bp %p wrong b_bufobj %p should be %p", bp, bp->b_bufobj, bo));
2084         bp = TAILQ_LAST(&bv->bv_hd, buflists);
2085         KASSERT(bp == NULL || bp->b_bufobj == bo,
2086             ("bp %p wrong b_bufobj %p should be %p", bp, bp->b_bufobj, bo));
2087 #endif
2088         BO_UNLOCK(bo);
2089 }
2090
2091 /*
2092  * Increment the use and hold counts on the vnode, taking care to reference
2093  * the driver's usecount if this is a chardev.  The vholdl() will remove
2094  * the vnode from the free list if it is presently free.  Requires the
2095  * vnode interlock and returns with it held.
2096  */
2097 static void
2098 v_incr_usecount(struct vnode *vp)
2099 {
2100
2101         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2102         vholdl(vp);
2103         vp->v_usecount++;
2104         if (vp->v_type == VCHR && vp->v_rdev != NULL) {
2105                 dev_lock();
2106                 vp->v_rdev->si_usecount++;
2107                 dev_unlock();
2108         }
2109 }
2110
2111 /*
2112  * Turn a holdcnt into a use+holdcnt such that only one call to
2113  * v_decr_usecount is needed.
2114  */
2115 static void
2116 v_upgrade_usecount(struct vnode *vp)
2117 {
2118
2119         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2120         vp->v_usecount++;
2121         if (vp->v_type == VCHR && vp->v_rdev != NULL) {
2122                 dev_lock();
2123                 vp->v_rdev->si_usecount++;
2124                 dev_unlock();
2125         }
2126 }
2127
2128 /*
2129  * Decrement the vnode use and hold count along with the driver's usecount
2130  * if this is a chardev.  The vdropl() below releases the vnode interlock
2131  * as it may free the vnode.
2132  */
2133 static void
2134 v_decr_usecount(struct vnode *vp)
2135 {
2136
2137         ASSERT_VI_LOCKED(vp, __FUNCTION__);
2138         VNASSERT(vp->v_usecount > 0, vp,
2139             ("v_decr_usecount: negative usecount"));
2140         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2141         vp->v_usecount--;
2142         if (vp->v_type == VCHR && vp->v_rdev != NULL) {
2143                 dev_lock();
2144                 vp->v_rdev->si_usecount--;
2145                 dev_unlock();
2146         }
2147         vdropl(vp);
2148 }
2149
2150 /*
2151  * Decrement only the use count and driver use count.  This is intended to
2152  * be paired with a follow on vdropl() to release the remaining hold count.
2153  * In this way we may vgone() a vnode with a 0 usecount without risk of
2154  * having it end up on a free list because the hold count is kept above 0.
2155  */
2156 static void
2157 v_decr_useonly(struct vnode *vp)
2158 {
2159
2160         ASSERT_VI_LOCKED(vp, __FUNCTION__);
2161         VNASSERT(vp->v_usecount > 0, vp,
2162             ("v_decr_useonly: negative usecount"));
2163         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2164         vp->v_usecount--;
2165         if (vp->v_type == VCHR && vp->v_rdev != NULL) {
2166                 dev_lock();
2167                 vp->v_rdev->si_usecount--;
2168                 dev_unlock();
2169         }
2170 }
2171
2172 /*
2173  * Grab a particular vnode from the free list, increment its
2174  * reference count and lock it.  VI_DOOMED is set if the vnode
2175  * is being destroyed.  Only callers who specify LK_RETRY will
2176  * see doomed vnodes.  If inactive processing was delayed in
2177  * vput try to do it here.
2178  */
2179 int
2180 vget(struct vnode *vp, int flags, struct thread *td)
2181 {
2182         int error;
2183
2184         error = 0;
2185         VNASSERT((flags & LK_TYPE_MASK) != 0, vp,
2186             ("vget: invalid lock operation"));
2187         CTR3(KTR_VFS, "%s: vp %p with flags %d", __func__, vp, flags);
2188
2189         if ((flags & LK_INTERLOCK) == 0)
2190                 VI_LOCK(vp);
2191         vholdl(vp);
2192         if ((error = vn_lock(vp, flags | LK_INTERLOCK)) != 0) {
2193                 vdrop(vp);
2194                 CTR2(KTR_VFS, "%s: impossible to lock vnode %p", __func__,
2195                     vp);
2196                 return (error);
2197         }
2198         if (vp->v_iflag & VI_DOOMED && (flags & LK_RETRY) == 0)
2199                 panic("vget: vn_lock failed to return ENOENT\n");
2200         VI_LOCK(vp);
2201         /* Upgrade our holdcnt to a usecount. */
2202         v_upgrade_usecount(vp);
2203         /*
2204          * We don't guarantee that any particular close will
2205          * trigger inactive processing so just make a best effort
2206          * here at preventing a reference to a removed file.  If
2207          * we don't succeed no harm is done.
2208          */
2209         if (vp->v_iflag & VI_OWEINACT) {
2210                 if (VOP_ISLOCKED(vp) == LK_EXCLUSIVE &&
2211                     (flags & LK_NOWAIT) == 0)
2212                         vinactive(vp, td);
2213                 vp->v_iflag &= ~VI_OWEINACT;
2214         }
2215         VI_UNLOCK(vp);
2216         return (0);
2217 }
2218
2219 /*
2220  * Increase the reference count of a vnode.
2221  */
2222 void
2223 vref(struct vnode *vp)
2224 {
2225
2226         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2227         VI_LOCK(vp);
2228         v_incr_usecount(vp);
2229         VI_UNLOCK(vp);
2230 }
2231
2232 /*
2233  * Return reference count of a vnode.
2234  *
2235  * The results of this call are only guaranteed when some mechanism other
2236  * than the VI lock is used to stop other processes from gaining references
2237  * to the vnode.  This may be the case if the caller holds the only reference.
2238  * This is also useful when stale data is acceptable as race conditions may
2239  * be accounted for by some other means.
2240  */
2241 int
2242 vrefcnt(struct vnode *vp)
2243 {
2244         int usecnt;
2245
2246         VI_LOCK(vp);
2247         usecnt = vp->v_usecount;
2248         VI_UNLOCK(vp);
2249
2250         return (usecnt);
2251 }
2252
2253 #define VPUTX_VRELE     1
2254 #define VPUTX_VPUT      2
2255 #define VPUTX_VUNREF    3
2256
2257 static void
2258 vputx(struct vnode *vp, int func)
2259 {
2260         int error;
2261
2262         KASSERT(vp != NULL, ("vputx: null vp"));
2263         if (func == VPUTX_VUNREF)
2264                 ASSERT_VOP_LOCKED(vp, "vunref");
2265         else if (func == VPUTX_VPUT)
2266                 ASSERT_VOP_LOCKED(vp, "vput");
2267         else
2268                 KASSERT(func == VPUTX_VRELE, ("vputx: wrong func"));
2269         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2270         VI_LOCK(vp);
2271
2272         /* Skip this v_writecount check if we're going to panic below. */
2273         VNASSERT(vp->v_writecount < vp->v_usecount || vp->v_usecount < 1, vp,
2274             ("vputx: missed vn_close"));
2275         error = 0;
2276
2277         if (vp->v_usecount > 1 || ((vp->v_iflag & VI_DOINGINACT) &&
2278             vp->v_usecount == 1)) {
2279                 if (func == VPUTX_VPUT)
2280                         VOP_UNLOCK(vp, 0);
2281                 v_decr_usecount(vp);
2282                 return;
2283         }
2284
2285         if (vp->v_usecount != 1) {
2286                 vprint("vputx: negative ref count", vp);
2287                 panic("vputx: negative ref cnt");
2288         }
2289         CTR2(KTR_VFS, "%s: return vnode %p to the freelist", __func__, vp);
2290         /*
2291          * We want to hold the vnode until the inactive finishes to
2292          * prevent vgone() races.  We drop the use count here and the
2293          * hold count below when we're done.
2294          */
2295         v_decr_useonly(vp);
2296         /*
2297          * We must call VOP_INACTIVE with the node locked. Mark
2298          * as VI_DOINGINACT to avoid recursion.
2299          */
2300         vp->v_iflag |= VI_OWEINACT;
2301         switch (func) {
2302         case VPUTX_VRELE:
2303                 error = vn_lock(vp, LK_EXCLUSIVE | LK_INTERLOCK);
2304                 VI_LOCK(vp);
2305                 break;
2306         case VPUTX_VPUT:
2307                 if (VOP_ISLOCKED(vp) != LK_EXCLUSIVE) {
2308                         error = VOP_LOCK(vp, LK_UPGRADE | LK_INTERLOCK |
2309                             LK_NOWAIT);
2310                         VI_LOCK(vp);
2311                 }
2312                 break;
2313         case VPUTX_VUNREF:
2314                 if (VOP_ISLOCKED(vp) != LK_EXCLUSIVE) {
2315                         error = VOP_LOCK(vp, LK_TRYUPGRADE | LK_INTERLOCK);
2316                         VI_LOCK(vp);
2317                 }
2318                 break;
2319         }
2320         if (vp->v_usecount > 0)
2321                 vp->v_iflag &= ~VI_OWEINACT;
2322         if (error == 0) {
2323                 if (vp->v_iflag & VI_OWEINACT)
2324                         vinactive(vp, curthread);
2325                 if (func != VPUTX_VUNREF)
2326                         VOP_UNLOCK(vp, 0);
2327         }
2328         vdropl(vp);
2329 }
2330
2331 /*
2332  * Vnode put/release.
2333  * If count drops to zero, call inactive routine and return to freelist.
2334  */
2335 void
2336 vrele(struct vnode *vp)
2337 {
2338
2339         vputx(vp, VPUTX_VRELE);
2340 }
2341
2342 /*
2343  * Release an already locked vnode.  This give the same effects as
2344  * unlock+vrele(), but takes less time and avoids releasing and
2345  * re-aquiring the lock (as vrele() acquires the lock internally.)
2346  */
2347 void
2348 vput(struct vnode *vp)
2349 {
2350
2351         vputx(vp, VPUTX_VPUT);
2352 }
2353
2354 /*
2355  * Release an exclusively locked vnode. Do not unlock the vnode lock.
2356  */
2357 void
2358 vunref(struct vnode *vp)
2359 {
2360
2361         vputx(vp, VPUTX_VUNREF);
2362 }
2363
2364 /*
2365  * Somebody doesn't want the vnode recycled.
2366  */
2367 void
2368 vhold(struct vnode *vp)
2369 {
2370
2371         VI_LOCK(vp);
2372         vholdl(vp);
2373         VI_UNLOCK(vp);
2374 }
2375
2376 /*
2377  * Increase the hold count and activate if this is the first reference.
2378  */
2379 void
2380 vholdl(struct vnode *vp)
2381 {
2382         struct mount *mp;
2383
2384         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2385 #ifdef INVARIANTS
2386         /* getnewvnode() calls v_incr_usecount() without holding interlock. */
2387         if (vp->v_type != VNON || vp->v_data != NULL)
2388                 ASSERT_VI_LOCKED(vp, "vholdl");
2389 #endif
2390         vp->v_holdcnt++;
2391         if ((vp->v_iflag & VI_FREE) == 0)
2392                 return;
2393         VNASSERT(vp->v_holdcnt == 1, vp, ("vholdl: wrong hold count"));
2394         VNASSERT(vp->v_op != NULL, vp, ("vholdl: vnode already reclaimed."));
2395         /*
2396          * Remove a vnode from the free list, mark it as in use,
2397          * and put it on the active list.
2398          */
2399         mtx_lock(&vnode_free_list_mtx);
2400         TAILQ_REMOVE(&vnode_free_list, vp, v_actfreelist);
2401         freevnodes--;
2402         vp->v_iflag &= ~(VI_FREE|VI_AGE);
2403         KASSERT((vp->v_iflag & VI_ACTIVE) == 0,
2404             ("Activating already active vnode"));
2405         vp->v_iflag |= VI_ACTIVE;
2406         mp = vp->v_mount;
2407         TAILQ_INSERT_HEAD(&mp->mnt_activevnodelist, vp, v_actfreelist);
2408         mp->mnt_activevnodelistsize++;
2409         mtx_unlock(&vnode_free_list_mtx);
2410 }
2411
2412 /*
2413  * Note that there is one less who cares about this vnode.
2414  * vdrop() is the opposite of vhold().
2415  */
2416 void
2417 vdrop(struct vnode *vp)
2418 {
2419
2420         VI_LOCK(vp);
2421         vdropl(vp);
2422 }
2423
2424 /*
2425  * Drop the hold count of the vnode.  If this is the last reference to
2426  * the vnode we place it on the free list unless it has been vgone'd
2427  * (marked VI_DOOMED) in which case we will free it.
2428  */
2429 void
2430 vdropl(struct vnode *vp)
2431 {
2432         struct bufobj *bo;
2433         struct mount *mp;
2434         int active;
2435
2436         ASSERT_VI_LOCKED(vp, "vdropl");
2437         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2438         if (vp->v_holdcnt <= 0)
2439                 panic("vdrop: holdcnt %d", vp->v_holdcnt);
2440         vp->v_holdcnt--;
2441         if (vp->v_holdcnt > 0) {
2442                 VI_UNLOCK(vp);
2443                 return;
2444         }
2445         if ((vp->v_iflag & VI_DOOMED) == 0) {
2446                 /*
2447                  * Mark a vnode as free: remove it from its active list
2448                  * and put it up for recycling on the freelist.
2449                  */
2450                 VNASSERT(vp->v_op != NULL, vp,
2451                     ("vdropl: vnode already reclaimed."));
2452                 VNASSERT((vp->v_iflag & VI_FREE) == 0, vp,
2453                     ("vnode already free"));
2454                 VNASSERT(vp->v_holdcnt == 0, vp,
2455                     ("vdropl: freeing when we shouldn't"));
2456                 active = vp->v_iflag & VI_ACTIVE;
2457                 if ((vp->v_iflag & VI_OWEINACT) == 0) {
2458                         vp->v_iflag &= ~VI_ACTIVE;
2459                         mp = vp->v_mount;
2460                         mtx_lock(&vnode_free_list_mtx);
2461                         if (active) {
2462                                 TAILQ_REMOVE(&mp->mnt_activevnodelist, vp,
2463                                     v_actfreelist);
2464                                 mp->mnt_activevnodelistsize--;
2465                         }
2466                         if (vp->v_iflag & VI_AGE) {
2467                                 TAILQ_INSERT_HEAD(&vnode_free_list, vp,
2468                                     v_actfreelist);
2469                         } else {
2470                                 TAILQ_INSERT_TAIL(&vnode_free_list, vp,
2471                                     v_actfreelist);
2472                         }
2473                         freevnodes++;
2474                         vp->v_iflag &= ~VI_AGE;
2475                         vp->v_iflag |= VI_FREE;
2476                         mtx_unlock(&vnode_free_list_mtx);
2477                 } else {
2478                         atomic_add_long(&free_owe_inact, 1);
2479                 }
2480                 VI_UNLOCK(vp);
2481                 return;
2482         }
2483         /*
2484          * The vnode has been marked for destruction, so free it.
2485          */
2486         CTR2(KTR_VFS, "%s: destroying the vnode %p", __func__, vp);
2487         atomic_subtract_long(&numvnodes, 1);
2488         bo = &vp->v_bufobj;
2489         VNASSERT((vp->v_iflag & VI_FREE) == 0, vp,
2490             ("cleaned vnode still on the free list."));
2491         VNASSERT(vp->v_data == NULL, vp, ("cleaned vnode isn't"));
2492         VNASSERT(vp->v_holdcnt == 0, vp, ("Non-zero hold count"));
2493         VNASSERT(vp->v_usecount == 0, vp, ("Non-zero use count"));
2494         VNASSERT(vp->v_writecount == 0, vp, ("Non-zero write count"));
2495         VNASSERT(bo->bo_numoutput == 0, vp, ("Clean vnode has pending I/O's"));
2496         VNASSERT(bo->bo_clean.bv_cnt == 0, vp, ("cleanbufcnt not 0"));
2497         VNASSERT(pctrie_is_empty(&bo->bo_clean.bv_root), vp,
2498             ("clean blk trie not empty"));
2499         VNASSERT(bo->bo_dirty.bv_cnt == 0, vp, ("dirtybufcnt not 0"));
2500         VNASSERT(pctrie_is_empty(&bo->bo_dirty.bv_root), vp,
2501             ("dirty blk trie not empty"));
2502         VNASSERT(TAILQ_EMPTY(&vp->v_cache_dst), vp, ("vp has namecache dst"));
2503         VNASSERT(LIST_EMPTY(&vp->v_cache_src), vp, ("vp has namecache src"));
2504         VNASSERT(vp->v_cache_dd == NULL, vp, ("vp has namecache for .."));
2505         VI_UNLOCK(vp);
2506 #ifdef MAC
2507         mac_vnode_destroy(vp);
2508 #endif
2509         if (vp->v_pollinfo != NULL)
2510                 destroy_vpollinfo(vp->v_pollinfo);
2511 #ifdef INVARIANTS
2512         /* XXX Elsewhere we detect an already freed vnode via NULL v_op. */
2513         vp->v_op = NULL;
2514 #endif
2515         rangelock_destroy(&vp->v_rl);
2516         lockdestroy(vp->v_vnlock);
2517         mtx_destroy(&vp->v_interlock);
2518         rw_destroy(BO_LOCKPTR(bo));
2519         uma_zfree(vnode_zone, vp);
2520 }
2521
2522 /*
2523  * Call VOP_INACTIVE on the vnode and manage the DOINGINACT and OWEINACT
2524  * flags.  DOINGINACT prevents us from recursing in calls to vinactive.
2525  * OWEINACT tracks whether a vnode missed a call to inactive due to a
2526  * failed lock upgrade.
2527  */
2528 void
2529 vinactive(struct vnode *vp, struct thread *td)
2530 {
2531         struct vm_object *obj;
2532
2533         ASSERT_VOP_ELOCKED(vp, "vinactive");
2534         ASSERT_VI_LOCKED(vp, "vinactive");
2535         VNASSERT((vp->v_iflag & VI_DOINGINACT) == 0, vp,
2536             ("vinactive: recursed on VI_DOINGINACT"));
2537         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2538         vp->v_iflag |= VI_DOINGINACT;
2539         vp->v_iflag &= ~VI_OWEINACT;
2540         VI_UNLOCK(vp);
2541         /*
2542          * Before moving off the active list, we must be sure that any
2543          * modified pages are on the vnode's dirty list since these will
2544          * no longer be checked once the vnode is on the inactive list.
2545          * Because the vnode vm object keeps a hold reference on the vnode
2546          * if there is at least one resident non-cached page, the vnode
2547          * cannot leave the active list without the page cleanup done.
2548          */
2549         obj = vp->v_object;
2550         if (obj != NULL && (obj->flags & OBJ_MIGHTBEDIRTY) != 0) {
2551                 VM_OBJECT_WLOCK(obj);
2552                 vm_object_page_clean(obj, 0, 0, OBJPC_NOSYNC);
2553                 VM_OBJECT_WUNLOCK(obj);
2554         }
2555         VOP_INACTIVE(vp, td);
2556         VI_LOCK(vp);
2557         VNASSERT(vp->v_iflag & VI_DOINGINACT, vp,
2558             ("vinactive: lost VI_DOINGINACT"));
2559         vp->v_iflag &= ~VI_DOINGINACT;
2560 }
2561
2562 /*
2563  * Remove any vnodes in the vnode table belonging to mount point mp.
2564  *
2565  * If FORCECLOSE is not specified, there should not be any active ones,
2566  * return error if any are found (nb: this is a user error, not a
2567  * system error). If FORCECLOSE is specified, detach any active vnodes
2568  * that are found.
2569  *
2570  * If WRITECLOSE is set, only flush out regular file vnodes open for
2571  * writing.
2572  *
2573  * SKIPSYSTEM causes any vnodes marked VV_SYSTEM to be skipped.
2574  *
2575  * `rootrefs' specifies the base reference count for the root vnode
2576  * of this filesystem. The root vnode is considered busy if its
2577  * v_usecount exceeds this value. On a successful return, vflush(, td)
2578  * will call vrele() on the root vnode exactly rootrefs times.
2579  * If the SKIPSYSTEM or WRITECLOSE flags are specified, rootrefs must
2580  * be zero.
2581  */
2582 #ifdef DIAGNOSTIC
2583 static int busyprt = 0;         /* print out busy vnodes */
2584 SYSCTL_INT(_debug, OID_AUTO, busyprt, CTLFLAG_RW, &busyprt, 0, "Print out busy vnodes");
2585 #endif
2586
2587 int
2588 vflush(struct mount *mp, int rootrefs, int flags, struct thread *td)
2589 {
2590         struct vnode *vp, *mvp, *rootvp = NULL;
2591         struct vattr vattr;
2592         int busy = 0, error;
2593
2594         CTR4(KTR_VFS, "%s: mp %p with rootrefs %d and flags %d", __func__, mp,
2595             rootrefs, flags);
2596         if (rootrefs > 0) {
2597                 KASSERT((flags & (SKIPSYSTEM | WRITECLOSE)) == 0,
2598                     ("vflush: bad args"));
2599                 /*
2600                  * Get the filesystem root vnode. We can vput() it
2601                  * immediately, since with rootrefs > 0, it won't go away.
2602                  */
2603                 if ((error = VFS_ROOT(mp, LK_EXCLUSIVE, &rootvp)) != 0) {
2604                         CTR2(KTR_VFS, "%s: vfs_root lookup failed with %d",
2605                             __func__, error);
2606                         return (error);
2607                 }
2608                 vput(rootvp);
2609         }
2610 loop:
2611         MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
2612                 vholdl(vp);
2613                 error = vn_lock(vp, LK_INTERLOCK | LK_EXCLUSIVE);
2614                 if (error) {
2615                         vdrop(vp);
2616                         MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
2617                         goto loop;
2618                 }
2619                 /*
2620                  * Skip over a vnodes marked VV_SYSTEM.
2621                  */
2622                 if ((flags & SKIPSYSTEM) && (vp->v_vflag & VV_SYSTEM)) {
2623                         VOP_UNLOCK(vp, 0);
2624                         vdrop(vp);
2625                         continue;
2626                 }
2627                 /*
2628                  * If WRITECLOSE is set, flush out unlinked but still open
2629                  * files (even if open only for reading) and regular file
2630                  * vnodes open for writing.
2631                  */
2632                 if (flags & WRITECLOSE) {
2633                         if (vp->v_object != NULL) {
2634                                 VM_OBJECT_WLOCK(vp->v_object);
2635                                 vm_object_page_clean(vp->v_object, 0, 0, 0);
2636                                 VM_OBJECT_WUNLOCK(vp->v_object);
2637                         }
2638                         error = VOP_FSYNC(vp, MNT_WAIT, td);
2639                         if (error != 0) {
2640                                 VOP_UNLOCK(vp, 0);
2641                                 vdrop(vp);
2642                                 MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
2643                                 return (error);
2644                         }
2645                         error = VOP_GETATTR(vp, &vattr, td->td_ucred);
2646                         VI_LOCK(vp);
2647
2648                         if ((vp->v_type == VNON ||
2649                             (error == 0 && vattr.va_nlink > 0)) &&
2650                             (vp->v_writecount == 0 || vp->v_type != VREG)) {
2651                                 VOP_UNLOCK(vp, 0);
2652                                 vdropl(vp);
2653                                 continue;
2654                         }
2655                 } else
2656                         VI_LOCK(vp);
2657                 /*
2658                  * With v_usecount == 0, all we need to do is clear out the
2659                  * vnode data structures and we are done.
2660                  *
2661                  * If FORCECLOSE is set, forcibly close the vnode.
2662                  */
2663                 if (vp->v_usecount == 0 || (flags & FORCECLOSE)) {
2664                         VNASSERT(vp->v_usecount == 0 ||
2665                             vp->v_op != &devfs_specops ||
2666                             (vp->v_type != VCHR && vp->v_type != VBLK), vp,
2667                             ("device VNODE %p is FORCECLOSED", vp));
2668                         vgonel(vp);
2669                 } else {
2670                         busy++;
2671 #ifdef DIAGNOSTIC
2672                         if (busyprt)
2673                                 vprint("vflush: busy vnode", vp);
2674 #endif
2675                 }
2676                 VOP_UNLOCK(vp, 0);
2677                 vdropl(vp);
2678         }
2679         if (rootrefs > 0 && (flags & FORCECLOSE) == 0) {
2680                 /*
2681                  * If just the root vnode is busy, and if its refcount
2682                  * is equal to `rootrefs', then go ahead and kill it.
2683                  */
2684                 VI_LOCK(rootvp);
2685                 KASSERT(busy > 0, ("vflush: not busy"));
2686                 VNASSERT(rootvp->v_usecount >= rootrefs, rootvp,
2687                     ("vflush: usecount %d < rootrefs %d",
2688                      rootvp->v_usecount, rootrefs));
2689                 if (busy == 1 && rootvp->v_usecount == rootrefs) {
2690                         VOP_LOCK(rootvp, LK_EXCLUSIVE|LK_INTERLOCK);
2691                         vgone(rootvp);
2692                         VOP_UNLOCK(rootvp, 0);
2693                         busy = 0;
2694                 } else
2695                         VI_UNLOCK(rootvp);
2696         }
2697         if (busy) {
2698                 CTR2(KTR_VFS, "%s: failing as %d vnodes are busy", __func__,
2699                     busy);
2700                 return (EBUSY);
2701         }
2702         for (; rootrefs > 0; rootrefs--)
2703                 vrele(rootvp);
2704         return (0);
2705 }
2706
2707 /*
2708  * Recycle an unused vnode to the front of the free list.
2709  */
2710 int
2711 vrecycle(struct vnode *vp)
2712 {
2713         int recycled;
2714
2715         ASSERT_VOP_ELOCKED(vp, "vrecycle");
2716         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2717         recycled = 0;
2718         VI_LOCK(vp);
2719         if (vp->v_usecount == 0) {
2720                 recycled = 1;
2721                 vgonel(vp);
2722         }
2723         VI_UNLOCK(vp);
2724         return (recycled);
2725 }
2726
2727 /*
2728  * Eliminate all activity associated with a vnode
2729  * in preparation for reuse.
2730  */
2731 void
2732 vgone(struct vnode *vp)
2733 {
2734         VI_LOCK(vp);
2735         vgonel(vp);
2736         VI_UNLOCK(vp);
2737 }
2738
2739 static void
2740 notify_lowervp_vfs_dummy(struct mount *mp __unused,
2741     struct vnode *lowervp __unused)
2742 {
2743 }
2744
2745 /*
2746  * Notify upper mounts about reclaimed or unlinked vnode.
2747  */
2748 void
2749 vfs_notify_upper(struct vnode *vp, int event)
2750 {
2751         static struct vfsops vgonel_vfsops = {
2752                 .vfs_reclaim_lowervp = notify_lowervp_vfs_dummy,
2753                 .vfs_unlink_lowervp = notify_lowervp_vfs_dummy,
2754         };
2755         struct mount *mp, *ump, *mmp;
2756
2757         mp = vp->v_mount;
2758         if (mp == NULL)
2759                 return;
2760
2761         MNT_ILOCK(mp);
2762         if (TAILQ_EMPTY(&mp->mnt_uppers))
2763                 goto unlock;
2764         MNT_IUNLOCK(mp);
2765         mmp = malloc(sizeof(struct mount), M_TEMP, M_WAITOK | M_ZERO);
2766         mmp->mnt_op = &vgonel_vfsops;
2767         mmp->mnt_kern_flag |= MNTK_MARKER;
2768         MNT_ILOCK(mp);
2769         mp->mnt_kern_flag |= MNTK_VGONE_UPPER;
2770         for (ump = TAILQ_FIRST(&mp->mnt_uppers); ump != NULL;) {
2771                 if ((ump->mnt_kern_flag & MNTK_MARKER) != 0) {
2772                         ump = TAILQ_NEXT(ump, mnt_upper_link);
2773                         continue;
2774                 }
2775                 TAILQ_INSERT_AFTER(&mp->mnt_uppers, ump, mmp, mnt_upper_link);
2776                 MNT_IUNLOCK(mp);
2777                 switch (event) {
2778                 case VFS_NOTIFY_UPPER_RECLAIM:
2779                         VFS_RECLAIM_LOWERVP(ump, vp);
2780                         break;
2781                 case VFS_NOTIFY_UPPER_UNLINK:
2782                         VFS_UNLINK_LOWERVP(ump, vp);
2783                         break;
2784                 default:
2785                         KASSERT(0, ("invalid event %d", event));
2786                         break;
2787                 }
2788                 MNT_ILOCK(mp);
2789                 ump = TAILQ_NEXT(mmp, mnt_upper_link);
2790                 TAILQ_REMOVE(&mp->mnt_uppers, mmp, mnt_upper_link);
2791         }
2792         free(mmp, M_TEMP);
2793         mp->mnt_kern_flag &= ~MNTK_VGONE_UPPER;
2794         if ((mp->mnt_kern_flag & MNTK_VGONE_WAITER) != 0) {
2795                 mp->mnt_kern_flag &= ~MNTK_VGONE_WAITER;
2796                 wakeup(&mp->mnt_uppers);
2797         }
2798 unlock:
2799         MNT_IUNLOCK(mp);
2800 }
2801
2802 /*
2803  * vgone, with the vp interlock held.
2804  */
2805 void
2806 vgonel(struct vnode *vp)
2807 {
2808         struct thread *td;
2809         int oweinact;
2810         int active;
2811         struct mount *mp;
2812
2813         ASSERT_VOP_ELOCKED(vp, "vgonel");
2814         ASSERT_VI_LOCKED(vp, "vgonel");
2815         VNASSERT(vp->v_holdcnt, vp,
2816             ("vgonel: vp %p has no reference.", vp));
2817         CTR2(KTR_VFS, "%s: vp %p", __func__, vp);
2818         td = curthread;
2819
2820         /*
2821          * Don't vgonel if we're already doomed.
2822          */
2823         if (vp->v_iflag & VI_DOOMED)
2824                 return;
2825         vp->v_iflag |= VI_DOOMED;
2826
2827         /*
2828          * Check to see if the vnode is in use.  If so, we have to call
2829          * VOP_CLOSE() and VOP_INACTIVE().
2830          */
2831         active = vp->v_usecount;
2832         oweinact = (vp->v_iflag & VI_OWEINACT);
2833         VI_UNLOCK(vp);
2834         vfs_notify_upper(vp, VFS_NOTIFY_UPPER_RECLAIM);
2835
2836         /*
2837          * If purging an active vnode, it must be closed and
2838          * deactivated before being reclaimed.
2839          */
2840         if (active)
2841                 VOP_CLOSE(vp, FNONBLOCK, NOCRED, td);
2842         if (oweinact || active) {
2843                 VI_LOCK(vp);
2844                 if ((vp->v_iflag & VI_DOINGINACT) == 0)
2845                         vinactive(vp, td);
2846                 VI_UNLOCK(vp);
2847         }
2848         if (vp->v_type == VSOCK)
2849                 vfs_unp_reclaim(vp);
2850
2851         /*
2852          * Clean out any buffers associated with the vnode.
2853          * If the flush fails, just toss the buffers.
2854          */
2855         mp = NULL;
2856         if (!TAILQ_EMPTY(&vp->v_bufobj.bo_dirty.bv_hd))
2857                 (void) vn_start_secondary_write(vp, &mp, V_WAIT);
2858         if (vinvalbuf(vp, V_SAVE, 0, 0) != 0) {
2859                 while (vinvalbuf(vp, 0, 0, 0) != 0)
2860                         ;
2861         }
2862
2863         BO_LOCK(&vp->v_bufobj);
2864         KASSERT(TAILQ_EMPTY(&vp->v_bufobj.bo_dirty.bv_hd) &&
2865             vp->v_bufobj.bo_dirty.bv_cnt == 0 &&
2866             TAILQ_EMPTY(&vp->v_bufobj.bo_clean.bv_hd) &&
2867             vp->v_bufobj.bo_clean.bv_cnt == 0,
2868             ("vp %p bufobj not invalidated", vp));
2869         vp->v_bufobj.bo_flag |= BO_DEAD;
2870         BO_UNLOCK(&vp->v_bufobj);
2871
2872         /*
2873          * Reclaim the vnode.
2874          */
2875         if (VOP_RECLAIM(vp, td))
2876                 panic("vgone: cannot reclaim");
2877         if (mp != NULL)
2878                 vn_finished_secondary_write(mp);
2879         VNASSERT(vp->v_object == NULL, vp,
2880             ("vop_reclaim left v_object vp=%p, tag=%s", vp, vp->v_tag));
2881         /*
2882          * Clear the advisory locks and wake up waiting threads.
2883          */
2884         (void)VOP_ADVLOCKPURGE(vp);
2885         /*
2886          * Delete from old mount point vnode list.
2887          */
2888         delmntque(vp);
2889         cache_purge(vp);
2890         /*
2891          * Done with purge, reset to the standard lock and invalidate
2892          * the vnode.
2893          */
2894         VI_LOCK(vp);
2895         vp->v_vnlock = &vp->v_lock;
2896         vp->v_op = &dead_vnodeops;
2897         vp->v_tag = "none";
2898         vp->v_type = VBAD;
2899 }
2900
2901 /*
2902  * Calculate the total number of references to a special device.
2903  */
2904 int
2905 vcount(struct vnode *vp)
2906 {
2907         int count;
2908
2909         dev_lock();
2910         count = vp->v_rdev->si_usecount;
2911         dev_unlock();
2912         return (count);
2913 }
2914
2915 /*
2916  * Same as above, but using the struct cdev *as argument
2917  */
2918 int
2919 count_dev(struct cdev *dev)
2920 {
2921         int count;
2922
2923         dev_lock();
2924         count = dev->si_usecount;
2925         dev_unlock();
2926         return(count);
2927 }
2928
2929 /*
2930  * Print out a description of a vnode.
2931  */
2932 static char *typename[] =
2933 {"VNON", "VREG", "VDIR", "VBLK", "VCHR", "VLNK", "VSOCK", "VFIFO", "VBAD",
2934  "VMARKER"};
2935
2936 void
2937 vn_printf(struct vnode *vp, const char *fmt, ...)
2938 {
2939         va_list ap;
2940         char buf[256], buf2[16];
2941         u_long flags;
2942
2943         va_start(ap, fmt);
2944         vprintf(fmt, ap);
2945         va_end(ap);
2946         printf("%p: ", (void *)vp);
2947         printf("tag %s, type %s\n", vp->v_tag, typename[vp->v_type]);
2948         printf("    usecount %d, writecount %d, refcount %d mountedhere %p\n",
2949             vp->v_usecount, vp->v_writecount, vp->v_holdcnt, vp->v_mountedhere);
2950         buf[0] = '\0';
2951         buf[1] = '\0';
2952         if (vp->v_vflag & VV_ROOT)
2953                 strlcat(buf, "|VV_ROOT", sizeof(buf));
2954         if (vp->v_vflag & VV_ISTTY)
2955                 strlcat(buf, "|VV_ISTTY", sizeof(buf));
2956         if (vp->v_vflag & VV_NOSYNC)
2957                 strlcat(buf, "|VV_NOSYNC", sizeof(buf));
2958         if (vp->v_vflag & VV_ETERNALDEV)
2959                 strlcat(buf, "|VV_ETERNALDEV", sizeof(buf));
2960         if (vp->v_vflag & VV_CACHEDLABEL)
2961                 strlcat(buf, "|VV_CACHEDLABEL", sizeof(buf));
2962         if (vp->v_vflag & VV_TEXT)
2963                 strlcat(buf, "|VV_TEXT", sizeof(buf));
2964         if (vp->v_vflag & VV_COPYONWRITE)
2965                 strlcat(buf, "|VV_COPYONWRITE", sizeof(buf));
2966         if (vp->v_vflag & VV_SYSTEM)
2967                 strlcat(buf, "|VV_SYSTEM", sizeof(buf));
2968         if (vp->v_vflag & VV_PROCDEP)
2969                 strlcat(buf, "|VV_PROCDEP", sizeof(buf));
2970         if (vp->v_vflag & VV_NOKNOTE)
2971                 strlcat(buf, "|VV_NOKNOTE", sizeof(buf));
2972         if (vp->v_vflag & VV_DELETED)
2973                 strlcat(buf, "|VV_DELETED", sizeof(buf));
2974         if (vp->v_vflag & VV_MD)
2975                 strlcat(buf, "|VV_MD", sizeof(buf));
2976         if (vp->v_vflag & VV_FORCEINSMQ)
2977                 strlcat(buf, "|VV_FORCEINSMQ", sizeof(buf));
2978         flags = vp->v_vflag & ~(VV_ROOT | VV_ISTTY | VV_NOSYNC | VV_ETERNALDEV |
2979             VV_CACHEDLABEL | VV_TEXT | VV_COPYONWRITE | VV_SYSTEM | VV_PROCDEP |
2980             VV_NOKNOTE | VV_DELETED | VV_MD | VV_FORCEINSMQ);
2981         if (flags != 0) {
2982                 snprintf(buf2, sizeof(buf2), "|VV(0x%lx)", flags);
2983                 strlcat(buf, buf2, sizeof(buf));
2984         }
2985         if (vp->v_iflag & VI_MOUNT)
2986                 strlcat(buf, "|VI_MOUNT", sizeof(buf));
2987         if (vp->v_iflag & VI_AGE)
2988                 strlcat(buf, "|VI_AGE", sizeof(buf));
2989         if (vp->v_iflag & VI_DOOMED)
2990                 strlcat(buf, "|VI_DOOMED", sizeof(buf));
2991         if (vp->v_iflag & VI_FREE)
2992                 strlcat(buf, "|VI_FREE", sizeof(buf));
2993         if (vp->v_iflag & VI_ACTIVE)
2994                 strlcat(buf, "|VI_ACTIVE", sizeof(buf));
2995         if (vp->v_iflag & VI_DOINGINACT)
2996                 strlcat(buf, "|VI_DOINGINACT", sizeof(buf));
2997         if (vp->v_iflag & VI_OWEINACT)
2998                 strlcat(buf, "|VI_OWEINACT", sizeof(buf));
2999         flags = vp->v_iflag & ~(VI_MOUNT | VI_AGE | VI_DOOMED | VI_FREE |
3000             VI_ACTIVE | VI_DOINGINACT | VI_OWEINACT);
3001         if (flags != 0) {
3002                 snprintf(buf2, sizeof(buf2), "|VI(0x%lx)", flags);
3003                 strlcat(buf, buf2, sizeof(buf));
3004         }
3005         printf("    flags (%s)\n", buf + 1);
3006         if (mtx_owned(VI_MTX(vp)))
3007                 printf(" VI_LOCKed");
3008         if (vp->v_object != NULL)
3009                 printf("    v_object %p ref %d pages %d "
3010                     "cleanbuf %d dirtybuf %d\n",
3011                     vp->v_object, vp->v_object->ref_count,
3012                     vp->v_object->resident_page_count,
3013                     vp->v_bufobj.bo_dirty.bv_cnt,
3014                     vp->v_bufobj.bo_clean.bv_cnt);
3015         printf("    ");
3016         lockmgr_printinfo(vp->v_vnlock);
3017         if (vp->v_data != NULL)
3018                 VOP_PRINT(vp);
3019 }
3020
3021 #ifdef DDB
3022 /*
3023  * List all of the locked vnodes in the system.
3024  * Called when debugging the kernel.
3025  */
3026 DB_SHOW_COMMAND(lockedvnods, lockedvnodes)
3027 {
3028         struct mount *mp;
3029         struct vnode *vp;
3030
3031         /*
3032          * Note: because this is DDB, we can't obey the locking semantics
3033          * for these structures, which means we could catch an inconsistent
3034          * state and dereference a nasty pointer.  Not much to be done
3035          * about that.
3036          */
3037         db_printf("Locked vnodes\n");
3038         TAILQ_FOREACH(mp, &mountlist, mnt_list) {
3039                 TAILQ_FOREACH(vp, &mp->mnt_nvnodelist, v_nmntvnodes) {
3040                         if (vp->v_type != VMARKER && VOP_ISLOCKED(vp))
3041                                 vprint("", vp);
3042                 }
3043         }
3044 }
3045
3046 /*
3047  * Show details about the given vnode.
3048  */
3049 DB_SHOW_COMMAND(vnode, db_show_vnode)
3050 {
3051         struct vnode *vp;
3052
3053         if (!have_addr)
3054                 return;
3055         vp = (struct vnode *)addr;
3056         vn_printf(vp, "vnode ");
3057 }
3058
3059 /*
3060  * Show details about the given mount point.
3061  */
3062 DB_SHOW_COMMAND(mount, db_show_mount)
3063 {
3064         struct mount *mp;
3065         struct vfsopt *opt;
3066         struct statfs *sp;
3067         struct vnode *vp;
3068         char buf[512];
3069         uint64_t mflags;
3070         u_int flags;
3071
3072         if (!have_addr) {
3073                 /* No address given, print short info about all mount points. */
3074                 TAILQ_FOREACH(mp, &mountlist, mnt_list) {
3075                         db_printf("%p %s on %s (%s)\n", mp,
3076                             mp->mnt_stat.f_mntfromname,
3077                             mp->mnt_stat.f_mntonname,
3078                             mp->mnt_stat.f_fstypename);
3079                         if (db_pager_quit)
3080                                 break;
3081                 }
3082                 db_printf("\nMore info: show mount <addr>\n");
3083                 return;
3084         }
3085
3086         mp = (struct mount *)addr;
3087         db_printf("%p %s on %s (%s)\n", mp, mp->mnt_stat.f_mntfromname,
3088             mp->mnt_stat.f_mntonname, mp->mnt_stat.f_fstypename);
3089
3090         buf[0] = '\0';
3091         mflags = mp->mnt_flag;
3092 #define MNT_FLAG(flag)  do {                                            \
3093         if (mflags & (flag)) {                                          \
3094                 if (buf[0] != '\0')                                     \
3095                         strlcat(buf, ", ", sizeof(buf));                \
3096                 strlcat(buf, (#flag) + 4, sizeof(buf));                 \
3097                 mflags &= ~(flag);                                      \
3098         }                                                               \
3099 } while (0)
3100         MNT_FLAG(MNT_RDONLY);
3101         MNT_FLAG(MNT_SYNCHRONOUS);
3102         MNT_FLAG(MNT_NOEXEC);
3103         MNT_FLAG(MNT_NOSUID);
3104         MNT_FLAG(MNT_NFS4ACLS);
3105         MNT_FLAG(MNT_UNION);
3106         MNT_FLAG(MNT_ASYNC);
3107         MNT_FLAG(MNT_SUIDDIR);
3108         MNT_FLAG(MNT_SOFTDEP);
3109         MNT_FLAG(MNT_NOSYMFOLLOW);
3110         MNT_FLAG(MNT_GJOURNAL);
3111         MNT_FLAG(MNT_MULTILABEL);
3112         MNT_FLAG(MNT_ACLS);
3113         MNT_FLAG(MNT_NOATIME);
3114         MNT_FLAG(MNT_NOCLUSTERR);
3115         MNT_FLAG(MNT_NOCLUSTERW);
3116         MNT_FLAG(MNT_SUJ);
3117         MNT_FLAG(MNT_EXRDONLY);
3118         MNT_FLAG(MNT_EXPORTED);
3119         MNT_FLAG(MNT_DEFEXPORTED);
3120         MNT_FLAG(MNT_EXPORTANON);
3121         MNT_FLAG(MNT_EXKERB);
3122         MNT_FLAG(MNT_EXPUBLIC);
3123         MNT_FLAG(MNT_LOCAL);
3124         MNT_FLAG(MNT_QUOTA);
3125         MNT_FLAG(MNT_ROOTFS);
3126         MNT_FLAG(MNT_USER);
3127         MNT_FLAG(MNT_IGNORE);
3128         MNT_FLAG(MNT_UPDATE);
3129         MNT_FLAG(MNT_DELEXPORT);
3130         MNT_FLAG(MNT_RELOAD);
3131         MNT_FLAG(MNT_FORCE);
3132         MNT_FLAG(MNT_SNAPSHOT);
3133         MNT_FLAG(MNT_BYFSID);
3134 #undef MNT_FLAG
3135         if (mflags != 0) {
3136                 if (buf[0] != '\0')
3137                         strlcat(buf, ", ", sizeof(buf));
3138                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
3139                     "0x%016jx", mflags);
3140         }
3141         db_printf("    mnt_flag = %s\n", buf);
3142
3143         buf[0] = '\0';
3144         flags = mp->mnt_kern_flag;
3145 #define MNT_KERN_FLAG(flag)     do {                                    \
3146         if (flags & (flag)) {                                           \
3147                 if (buf[0] != '\0')                                     \
3148                         strlcat(buf, ", ", sizeof(buf));                \
3149                 strlcat(buf, (#flag) + 5, sizeof(buf));                 \
3150                 flags &= ~(flag);                                       \
3151         }                                                               \
3152 } while (0)
3153         MNT_KERN_FLAG(MNTK_UNMOUNTF);
3154         MNT_KERN_FLAG(MNTK_ASYNC);
3155         MNT_KERN_FLAG(MNTK_SOFTDEP);
3156         MNT_KERN_FLAG(MNTK_NOINSMNTQ);
3157         MNT_KERN_FLAG(MNTK_DRAINING);
3158         MNT_KERN_FLAG(MNTK_REFEXPIRE);
3159         MNT_KERN_FLAG(MNTK_EXTENDED_SHARED);
3160         MNT_KERN_FLAG(MNTK_SHARED_WRITES);
3161         MNT_KERN_FLAG(MNTK_NO_IOPF);
3162         MNT_KERN_FLAG(MNTK_VGONE_UPPER);
3163         MNT_KERN_FLAG(MNTK_VGONE_WAITER);
3164         MNT_KERN_FLAG(MNTK_LOOKUP_EXCL_DOTDOT);
3165         MNT_KERN_FLAG(MNTK_MARKER);
3166         MNT_KERN_FLAG(MNTK_USES_BCACHE);
3167         MNT_KERN_FLAG(MNTK_NOASYNC);
3168         MNT_KERN_FLAG(MNTK_UNMOUNT);
3169         MNT_KERN_FLAG(MNTK_MWAIT);
3170         MNT_KERN_FLAG(MNTK_SUSPEND);
3171         MNT_KERN_FLAG(MNTK_SUSPEND2);
3172         MNT_KERN_FLAG(MNTK_SUSPENDED);
3173         MNT_KERN_FLAG(MNTK_LOOKUP_SHARED);
3174         MNT_KERN_FLAG(MNTK_NOKNOTE);
3175 #undef MNT_KERN_FLAG
3176         if (flags != 0) {
3177                 if (buf[0] != '\0')
3178                         strlcat(buf, ", ", sizeof(buf));
3179                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
3180                     "0x%08x", flags);
3181         }
3182         db_printf("    mnt_kern_flag = %s\n", buf);
3183
3184         db_printf("    mnt_opt = ");
3185         opt = TAILQ_FIRST(mp->mnt_opt);
3186         if (opt != NULL) {
3187                 db_printf("%s", opt->name);
3188                 opt = TAILQ_NEXT(opt, link);
3189                 while (opt != NULL) {
3190                         db_printf(", %s", opt->name);
3191                         opt = TAILQ_NEXT(opt, link);
3192                 }
3193         }
3194         db_printf("\n");
3195
3196         sp = &mp->mnt_stat;
3197         db_printf("    mnt_stat = { version=%u type=%u flags=0x%016jx "
3198             "bsize=%ju iosize=%ju blocks=%ju bfree=%ju bavail=%jd files=%ju "
3199             "ffree=%jd syncwrites=%ju asyncwrites=%ju syncreads=%ju "
3200             "asyncreads=%ju namemax=%u owner=%u fsid=[%d, %d] }\n",
3201             (u_int)sp->f_version, (u_int)sp->f_type, (uintmax_t)sp->f_flags,
3202             (uintmax_t)sp->f_bsize, (uintmax_t)sp->f_iosize,
3203             (uintmax_t)sp->f_blocks, (uintmax_t)sp->f_bfree,
3204             (intmax_t)sp->f_bavail, (uintmax_t)sp->f_files,
3205             (intmax_t)sp->f_ffree, (uintmax_t)sp->f_syncwrites,
3206             (uintmax_t)sp->f_asyncwrites, (uintmax_t)sp->f_syncreads,
3207             (uintmax_t)sp->f_asyncreads, (u_int)sp->f_namemax,
3208             (u_int)sp->f_owner, (int)sp->f_fsid.val[0], (int)sp->f_fsid.val[1]);
3209
3210         db_printf("    mnt_cred = { uid=%u ruid=%u",
3211             (u_int)mp->mnt_cred->cr_uid, (u_int)mp->mnt_cred->cr_ruid);
3212         if (jailed(mp->mnt_cred))
3213                 db_printf(", jail=%d", mp->mnt_cred->cr_prison->pr_id);
3214         db_printf(" }\n");
3215         db_printf("    mnt_ref = %d\n", mp->mnt_ref);
3216         db_printf("    mnt_gen = %d\n", mp->mnt_gen);
3217         db_printf("    mnt_nvnodelistsize = %d\n", mp->mnt_nvnodelistsize);
3218         db_printf("    mnt_activevnodelistsize = %d\n",
3219             mp->mnt_activevnodelistsize);
3220         db_printf("    mnt_writeopcount = %d\n", mp->mnt_writeopcount);
3221         db_printf("    mnt_maxsymlinklen = %d\n", mp->mnt_maxsymlinklen);
3222         db_printf("    mnt_iosize_max = %d\n", mp->mnt_iosize_max);
3223         db_printf("    mnt_hashseed = %u\n", mp->mnt_hashseed);
3224         db_printf("    mnt_lockref = %d\n", mp->mnt_lockref);
3225         db_printf("    mnt_secondary_writes = %d\n", mp->mnt_secondary_writes);
3226         db_printf("    mnt_secondary_accwrites = %d\n",
3227             mp->mnt_secondary_accwrites);
3228         db_printf("    mnt_gjprovider = %s\n",
3229             mp->mnt_gjprovider != NULL ? mp->mnt_gjprovider : "NULL");
3230
3231         db_printf("\n\nList of active vnodes\n");
3232         TAILQ_FOREACH(vp, &mp->mnt_activevnodelist, v_actfreelist) {
3233                 if (vp->v_type != VMARKER) {
3234                         vn_printf(vp, "vnode ");
3235                         if (db_pager_quit)
3236                                 break;
3237                 }
3238         }
3239         db_printf("\n\nList of inactive vnodes\n");
3240         TAILQ_FOREACH(vp, &mp->mnt_nvnodelist, v_nmntvnodes) {
3241                 if (vp->v_type != VMARKER && (vp->v_iflag & VI_ACTIVE) == 0) {
3242                         vn_printf(vp, "vnode ");
3243                         if (db_pager_quit)
3244                                 break;
3245                 }
3246         }
3247 }
3248 #endif  /* DDB */
3249
3250 /*
3251  * Fill in a struct xvfsconf based on a struct vfsconf.
3252  */
3253 static int
3254 vfsconf2x(struct sysctl_req *req, struct vfsconf *vfsp)
3255 {
3256         struct xvfsconf xvfsp;
3257
3258         bzero(&xvfsp, sizeof(xvfsp));
3259         strcpy(xvfsp.vfc_name, vfsp->vfc_name);
3260         xvfsp.vfc_typenum = vfsp->vfc_typenum;
3261         xvfsp.vfc_refcount = vfsp->vfc_refcount;
3262         xvfsp.vfc_flags = vfsp->vfc_flags;
3263         /*
3264          * These are unused in userland, we keep them
3265          * to not break binary compatibility.
3266          */
3267         xvfsp.vfc_vfsops = NULL;
3268         xvfsp.vfc_next = NULL;
3269         return (SYSCTL_OUT(req, &xvfsp, sizeof(xvfsp)));
3270 }
3271
3272 #ifdef COMPAT_FREEBSD32
3273 struct xvfsconf32 {
3274         uint32_t        vfc_vfsops;
3275         char            vfc_name[MFSNAMELEN];
3276         int32_t         vfc_typenum;
3277         int32_t         vfc_refcount;
3278         int32_t         vfc_flags;
3279         uint32_t        vfc_next;
3280 };
3281
3282 static int
3283 vfsconf2x32(struct sysctl_req *req, struct vfsconf *vfsp)
3284 {
3285         struct xvfsconf32 xvfsp;
3286
3287         strcpy(xvfsp.vfc_name, vfsp->vfc_name);
3288         xvfsp.vfc_typenum = vfsp->vfc_typenum;
3289         xvfsp.vfc_refcount = vfsp->vfc_refcount;
3290         xvfsp.vfc_flags = vfsp->vfc_flags;
3291         xvfsp.vfc_vfsops = 0;
3292         xvfsp.vfc_next = 0;
3293         return (SYSCTL_OUT(req, &xvfsp, sizeof(xvfsp)));
3294 }
3295 #endif
3296
3297 /*
3298  * Top level filesystem related information gathering.
3299  */
3300 static int
3301 sysctl_vfs_conflist(SYSCTL_HANDLER_ARGS)
3302 {
3303         struct vfsconf *vfsp;
3304         int error;
3305
3306         error = 0;
3307         vfsconf_slock();
3308         TAILQ_FOREACH(vfsp, &vfsconf, vfc_list) {
3309 #ifdef COMPAT_FREEBSD32
3310                 if (req->flags & SCTL_MASK32)
3311                         error = vfsconf2x32(req, vfsp);
3312                 else
3313 #endif
3314                         error = vfsconf2x(req, vfsp);
3315                 if (error)
3316                         break;
3317         }
3318         vfsconf_sunlock();
3319         return (error);
3320 }
3321
3322 SYSCTL_PROC(_vfs, OID_AUTO, conflist, CTLTYPE_OPAQUE | CTLFLAG_RD |
3323     CTLFLAG_MPSAFE, NULL, 0, sysctl_vfs_conflist,
3324     "S,xvfsconf", "List of all configured filesystems");
3325
3326 #ifndef BURN_BRIDGES
3327 static int      sysctl_ovfs_conf(SYSCTL_HANDLER_ARGS);
3328
3329 static int
3330 vfs_sysctl(SYSCTL_HANDLER_ARGS)
3331 {
3332         int *name = (int *)arg1 - 1;    /* XXX */
3333         u_int namelen = arg2 + 1;       /* XXX */
3334         struct vfsconf *vfsp;
3335
3336         log(LOG_WARNING, "userland calling deprecated sysctl, "
3337             "please rebuild world\n");
3338
3339 #if 1 || defined(COMPAT_PRELITE2)
3340         /* Resolve ambiguity between VFS_VFSCONF and VFS_GENERIC. */
3341         if (namelen == 1)
3342                 return (sysctl_ovfs_conf(oidp, arg1, arg2, req));
3343 #endif
3344
3345         switch (name[1]) {
3346         case VFS_MAXTYPENUM:
3347                 if (namelen != 2)
3348                         return (ENOTDIR);
3349                 return (SYSCTL_OUT(req, &maxvfsconf, sizeof(int)));
3350         case VFS_CONF:
3351                 if (namelen != 3)
3352                         return (ENOTDIR);       /* overloaded */
3353                 vfsconf_slock();
3354                 TAILQ_FOREACH(vfsp, &vfsconf, vfc_list) {
3355                         if (vfsp->vfc_typenum == name[2])
3356                                 break;
3357                 }
3358                 vfsconf_sunlock();
3359                 if (vfsp == NULL)
3360                         return (EOPNOTSUPP);
3361 #ifdef COMPAT_FREEBSD32
3362                 if (req->flags & SCTL_MASK32)
3363                         return (vfsconf2x32(req, vfsp));
3364                 else
3365 #endif
3366                         return (vfsconf2x(req, vfsp));
3367         }
3368         return (EOPNOTSUPP);
3369 }
3370
3371 static SYSCTL_NODE(_vfs, VFS_GENERIC, generic, CTLFLAG_RD | CTLFLAG_SKIP |
3372     CTLFLAG_MPSAFE, vfs_sysctl,
3373     "Generic filesystem");
3374
3375 #if 1 || defined(COMPAT_PRELITE2)
3376
3377 static int
3378 sysctl_ovfs_conf(SYSCTL_HANDLER_ARGS)
3379 {
3380         int error;
3381         struct vfsconf *vfsp;
3382         struct ovfsconf ovfs;
3383
3384         vfsconf_slock();
3385         TAILQ_FOREACH(vfsp, &vfsconf, vfc_list) {
3386                 bzero(&ovfs, sizeof(ovfs));
3387                 ovfs.vfc_vfsops = vfsp->vfc_vfsops;     /* XXX used as flag */
3388                 strcpy(ovfs.vfc_name, vfsp->vfc_name);
3389                 ovfs.vfc_index = vfsp->vfc_typenum;
3390                 ovfs.vfc_refcount = vfsp->vfc_refcount;
3391                 ovfs.vfc_flags = vfsp->vfc_flags;
3392                 error = SYSCTL_OUT(req, &ovfs, sizeof ovfs);
3393                 if (error != 0) {
3394                         vfsconf_sunlock();
3395                         return (error);
3396                 }
3397         }
3398         vfsconf_sunlock();
3399         return (0);
3400 }
3401
3402 #endif /* 1 || COMPAT_PRELITE2 */
3403 #endif /* !BURN_BRIDGES */
3404
3405 #define KINFO_VNODESLOP         10
3406 #ifdef notyet
3407 /*
3408  * Dump vnode list (via sysctl).
3409  */
3410 /* ARGSUSED */
3411 static int
3412 sysctl_vnode(SYSCTL_HANDLER_ARGS)
3413 {
3414         struct xvnode *xvn;
3415         struct mount *mp;
3416         struct vnode *vp;
3417         int error, len, n;
3418
3419         /*
3420          * Stale numvnodes access is not fatal here.
3421          */
3422         req->lock = 0;
3423         len = (numvnodes + KINFO_VNODESLOP) * sizeof *xvn;
3424         if (!req->oldptr)
3425                 /* Make an estimate */
3426                 return (SYSCTL_OUT(req, 0, len));
3427
3428         error = sysctl_wire_old_buffer(req, 0);
3429         if (error != 0)
3430                 return (error);
3431         xvn = malloc(len, M_TEMP, M_ZERO | M_WAITOK);
3432         n = 0;
3433         mtx_lock(&mountlist_mtx);
3434         TAILQ_FOREACH(mp, &mountlist, mnt_list) {
3435                 if (vfs_busy(mp, MBF_NOWAIT | MBF_MNTLSTLOCK))
3436                         continue;
3437                 MNT_ILOCK(mp);
3438                 TAILQ_FOREACH(vp, &mp->mnt_nvnodelist, v_nmntvnodes) {
3439                         if (n == len)
3440                                 break;
3441                         vref(vp);
3442                         xvn[n].xv_size = sizeof *xvn;
3443                         xvn[n].xv_vnode = vp;
3444                         xvn[n].xv_id = 0;       /* XXX compat */
3445 #define XV_COPY(field) xvn[n].xv_##field = vp->v_##field
3446                         XV_COPY(usecount);
3447                         XV_COPY(writecount);
3448                         XV_COPY(holdcnt);
3449                         XV_COPY(mount);
3450                         XV_COPY(numoutput);
3451                         XV_COPY(type);
3452 #undef XV_COPY
3453                         xvn[n].xv_flag = vp->v_vflag;
3454
3455                         switch (vp->v_type) {
3456                         case VREG:
3457                         case VDIR:
3458                         case VLNK:
3459                                 break;
3460                         case VBLK:
3461                         case VCHR:
3462                                 if (vp->v_rdev == NULL) {
3463                                         vrele(vp);
3464                                         continue;
3465                                 }
3466                                 xvn[n].xv_dev = dev2udev(vp->v_rdev);
3467                                 break;
3468                         case VSOCK:
3469                                 xvn[n].xv_socket = vp->v_socket;
3470                                 break;
3471                         case VFIFO:
3472                                 xvn[n].xv_fifo = vp->v_fifoinfo;
3473                                 break;
3474                         case VNON:
3475                         case VBAD:
3476                         default:
3477                                 /* shouldn't happen? */
3478                                 vrele(vp);
3479                                 continue;
3480                         }
3481                         vrele(vp);
3482                         ++n;
3483                 }
3484                 MNT_IUNLOCK(mp);
3485                 mtx_lock(&mountlist_mtx);
3486                 vfs_unbusy(mp);
3487                 if (n == len)
3488                         break;
3489         }
3490         mtx_unlock(&mountlist_mtx);
3491
3492         error = SYSCTL_OUT(req, xvn, n * sizeof *xvn);
3493         free(xvn, M_TEMP);
3494         return (error);
3495 }
3496
3497 SYSCTL_PROC(_kern, KERN_VNODE, vnode, CTLTYPE_OPAQUE | CTLFLAG_RD |
3498     CTLFLAG_MPSAFE, 0, 0, sysctl_vnode, "S,xvnode",
3499     "");
3500 #endif
3501
3502 /*
3503  * Unmount all filesystems. The list is traversed in reverse order
3504  * of mounting to avoid dependencies.
3505  */
3506 void
3507 vfs_unmountall(void)
3508 {
3509         struct mount *mp;
3510         struct thread *td;
3511         int error;
3512
3513         CTR1(KTR_VFS, "%s: unmounting all filesystems", __func__);
3514         td = curthread;
3515
3516         /*
3517          * Since this only runs when rebooting, it is not interlocked.
3518          */
3519         while(!TAILQ_EMPTY(&mountlist)) {
3520                 mp = TAILQ_LAST(&mountlist, mntlist);
3521                 vfs_ref(mp);
3522                 error = dounmount(mp, MNT_FORCE, td);
3523                 if (error != 0) {
3524                         TAILQ_REMOVE(&mountlist, mp, mnt_list);
3525                         /*
3526                          * XXX: Due to the way in which we mount the root
3527                          * file system off of devfs, devfs will generate a
3528                          * "busy" warning when we try to unmount it before
3529                          * the root.  Don't print a warning as a result in
3530                          * order to avoid false positive errors that may
3531                          * cause needless upset.
3532                          */
3533                         if (strcmp(mp->mnt_vfc->vfc_name, "devfs") != 0) {
3534                                 printf("unmount of %s failed (",
3535                                     mp->mnt_stat.f_mntonname);
3536                                 if (error == EBUSY)
3537                                         printf("BUSY)\n");
3538                                 else
3539                                         printf("%d)\n", error);
3540                         }
3541                 } else {
3542                         /* The unmount has removed mp from the mountlist */
3543                 }
3544         }
3545 }
3546
3547 /*
3548  * perform msync on all vnodes under a mount point
3549  * the mount point must be locked.
3550  */
3551 void
3552 vfs_msync(struct mount *mp, int flags)
3553 {
3554         struct vnode *vp, *mvp;
3555         struct vm_object *obj;
3556
3557         CTR2(KTR_VFS, "%s: mp %p", __func__, mp);
3558         MNT_VNODE_FOREACH_ACTIVE(vp, mp, mvp) {
3559                 obj = vp->v_object;
3560                 if (obj != NULL && (obj->flags & OBJ_MIGHTBEDIRTY) != 0 &&
3561                     (flags == MNT_WAIT || VOP_ISLOCKED(vp) == 0)) {
3562                         if (!vget(vp,
3563                             LK_EXCLUSIVE | LK_RETRY | LK_INTERLOCK,
3564                             curthread)) {
3565                                 if (vp->v_vflag & VV_NOSYNC) {  /* unlinked */
3566                                         vput(vp);
3567                                         continue;
3568                                 }
3569
3570                                 obj = vp->v_object;
3571                                 if (obj != NULL) {
3572                                         VM_OBJECT_WLOCK(obj);
3573                                         vm_object_page_clean(obj, 0, 0,
3574                                             flags == MNT_WAIT ?
3575                                             OBJPC_SYNC : OBJPC_NOSYNC);
3576                                         VM_OBJECT_WUNLOCK(obj);
3577                                 }
3578                                 vput(vp);
3579                         }
3580                 } else
3581                         VI_UNLOCK(vp);
3582         }
3583 }
3584
3585 static void
3586 destroy_vpollinfo_free(struct vpollinfo *vi)
3587 {
3588
3589         knlist_destroy(&vi->vpi_selinfo.si_note);
3590         mtx_destroy(&vi->vpi_lock);
3591         uma_zfree(vnodepoll_zone, vi);
3592 }
3593
3594 static void
3595 destroy_vpollinfo(struct vpollinfo *vi)
3596 {
3597
3598         knlist_clear(&vi->vpi_selinfo.si_note, 1);
3599         seldrain(&vi->vpi_selinfo);
3600         destroy_vpollinfo_free(vi);
3601 }
3602
3603 /*
3604  * Initalize per-vnode helper structure to hold poll-related state.
3605  */
3606 void
3607 v_addpollinfo(struct vnode *vp)
3608 {
3609         struct vpollinfo *vi;
3610
3611         if (vp->v_pollinfo != NULL)
3612                 return;
3613         vi = uma_zalloc(vnodepoll_zone, M_WAITOK);
3614         mtx_init(&vi->vpi_lock, "vnode pollinfo", NULL, MTX_DEF);
3615         knlist_init(&vi->vpi_selinfo.si_note, vp, vfs_knllock,
3616             vfs_knlunlock, vfs_knl_assert_locked, vfs_knl_assert_unlocked);
3617         VI_LOCK(vp);
3618         if (vp->v_pollinfo != NULL) {
3619                 VI_UNLOCK(vp);
3620                 destroy_vpollinfo_free(vi);
3621                 return;
3622         }
3623         vp->v_pollinfo = vi;
3624         VI_UNLOCK(vp);
3625 }
3626
3627 /*
3628  * Record a process's interest in events which might happen to
3629  * a vnode.  Because poll uses the historic select-style interface
3630  * internally, this routine serves as both the ``check for any
3631  * pending events'' and the ``record my interest in future events''
3632  * functions.  (These are done together, while the lock is held,
3633  * to avoid race conditions.)
3634  */
3635 int
3636 vn_pollrecord(struct vnode *vp, struct thread *td, int events)
3637 {
3638
3639         v_addpollinfo(vp);
3640         mtx_lock(&vp->v_pollinfo->vpi_lock);
3641         if (vp->v_pollinfo->vpi_revents & events) {
3642                 /*
3643                  * This leaves events we are not interested
3644                  * in available for the other process which
3645                  * which presumably had requested them
3646                  * (otherwise they would never have been
3647                  * recorded).
3648                  */
3649                 events &= vp->v_pollinfo->vpi_revents;
3650                 vp->v_pollinfo->vpi_revents &= ~events;
3651
3652                 mtx_unlock(&vp->v_pollinfo->vpi_lock);
3653                 return (events);
3654         }
3655         vp->v_pollinfo->vpi_events |= events;
3656         selrecord(td, &vp->v_pollinfo->vpi_selinfo);
3657         mtx_unlock(&vp->v_pollinfo->vpi_lock);
3658         return (0);
3659 }
3660
3661 /*
3662  * Routine to create and manage a filesystem syncer vnode.
3663  */
3664 #define sync_close ((int (*)(struct  vop_close_args *))nullop)
3665 static int      sync_fsync(struct  vop_fsync_args *);
3666 static int      sync_inactive(struct  vop_inactive_args *);
3667 static int      sync_reclaim(struct  vop_reclaim_args *);
3668
3669 static struct vop_vector sync_vnodeops = {
3670         .vop_bypass =   VOP_EOPNOTSUPP,
3671         .vop_close =    sync_close,             /* close */
3672         .vop_fsync =    sync_fsync,             /* fsync */
3673         .vop_inactive = sync_inactive,  /* inactive */
3674         .vop_reclaim =  sync_reclaim,   /* reclaim */
3675         .vop_lock1 =    vop_stdlock,    /* lock */
3676         .vop_unlock =   vop_stdunlock,  /* unlock */
3677         .vop_islocked = vop_stdislocked,        /* islocked */
3678 };
3679
3680 /*
3681  * Create a new filesystem syncer vnode for the specified mount point.
3682  */
3683 void
3684 vfs_allocate_syncvnode(struct mount *mp)
3685 {
3686         struct vnode *vp;
3687         struct bufobj *bo;
3688         static long start, incr, next;
3689         int error;
3690
3691         /* Allocate a new vnode */
3692         error = getnewvnode("syncer", mp, &sync_vnodeops, &vp);
3693         if (error != 0)
3694                 panic("vfs_allocate_syncvnode: getnewvnode() failed");
3695         vp->v_type = VNON;
3696         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3697         vp->v_vflag |= VV_FORCEINSMQ;
3698         error = insmntque(vp, mp);
3699         if (error != 0)
3700                 panic("vfs_allocate_syncvnode: insmntque() failed");
3701         vp->v_vflag &= ~VV_FORCEINSMQ;
3702         VOP_UNLOCK(vp, 0);
3703         /*
3704          * Place the vnode onto the syncer worklist. We attempt to
3705          * scatter them about on the list so that they will go off
3706          * at evenly distributed times even if all the filesystems
3707          * are mounted at once.
3708          */
3709         next += incr;
3710         if (next == 0 || next > syncer_maxdelay) {
3711                 start /= 2;
3712                 incr /= 2;
3713                 if (start == 0) {
3714                         start = syncer_maxdelay / 2;
3715                         incr = syncer_maxdelay;
3716                 }
3717                 next = start;
3718         }
3719         bo = &vp->v_bufobj;
3720         BO_LOCK(bo);
3721         vn_syncer_add_to_worklist(bo, syncdelay > 0 ? next % syncdelay : 0);
3722         /* XXX - vn_syncer_add_to_worklist() also grabs and drops sync_mtx. */
3723         mtx_lock(&sync_mtx);
3724         sync_vnode_count++;
3725         if (mp->mnt_syncer == NULL) {
3726                 mp->mnt_syncer = vp;
3727                 vp = NULL;
3728         }
3729         mtx_unlock(&sync_mtx);
3730         BO_UNLOCK(bo);
3731         if (vp != NULL) {
3732                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3733                 vgone(vp);
3734                 vput(vp);
3735         }
3736 }
3737
3738 void
3739 vfs_deallocate_syncvnode(struct mount *mp)
3740 {
3741         struct vnode *vp;
3742
3743         mtx_lock(&sync_mtx);
3744         vp = mp->mnt_syncer;
3745         if (vp != NULL)
3746                 mp->mnt_syncer = NULL;
3747         mtx_unlock(&sync_mtx);
3748         if (vp != NULL)
3749                 vrele(vp);
3750 }
3751
3752 /*
3753  * Do a lazy sync of the filesystem.
3754  */
3755 static int
3756 sync_fsync(struct vop_fsync_args *ap)
3757 {
3758         struct vnode *syncvp = ap->a_vp;
3759         struct mount *mp = syncvp->v_mount;
3760         int error, save;
3761         struct bufobj *bo;
3762
3763         /*
3764          * We only need to do something if this is a lazy evaluation.
3765          */
3766         if (ap->a_waitfor != MNT_LAZY)
3767                 return (0);
3768
3769         /*
3770          * Move ourselves to the back of the sync list.
3771          */
3772         bo = &syncvp->v_bufobj;
3773         BO_LOCK(bo);
3774         vn_syncer_add_to_worklist(bo, syncdelay);
3775         BO_UNLOCK(bo);
3776
3777         /*
3778          * Walk the list of vnodes pushing all that are dirty and
3779          * not already on the sync list.
3780          */
3781         if (vfs_busy(mp, MBF_NOWAIT) != 0)
3782                 return (0);
3783         if (vn_start_write(NULL, &mp, V_NOWAIT) != 0) {
3784                 vfs_unbusy(mp);
3785                 return (0);
3786         }
3787         save = curthread_pflags_set(TDP_SYNCIO);
3788         vfs_msync(mp, MNT_NOWAIT);
3789         error = VFS_SYNC(mp, MNT_LAZY);
3790         curthread_pflags_restore(save);
3791         vn_finished_write(mp);
3792         vfs_unbusy(mp);
3793         return (error);
3794 }
3795
3796 /*
3797  * The syncer vnode is no referenced.
3798  */
3799 static int
3800 sync_inactive(struct vop_inactive_args *ap)
3801 {
3802
3803         vgone(ap->a_vp);
3804         return (0);
3805 }
3806
3807 /*
3808  * The syncer vnode is no longer needed and is being decommissioned.
3809  *
3810  * Modifications to the worklist must be protected by sync_mtx.
3811  */
3812 static int
3813 sync_reclaim(struct vop_reclaim_args *ap)
3814 {
3815         struct vnode *vp = ap->a_vp;
3816         struct bufobj *bo;
3817
3818         bo = &vp->v_bufobj;
3819         BO_LOCK(bo);
3820         mtx_lock(&sync_mtx);
3821         if (vp->v_mount->mnt_syncer == vp)
3822                 vp->v_mount->mnt_syncer = NULL;
3823         if (bo->bo_flag & BO_ONWORKLST) {
3824                 LIST_REMOVE(bo, bo_synclist);
3825                 syncer_worklist_len--;
3826                 sync_vnode_count--;
3827                 bo->bo_flag &= ~BO_ONWORKLST;
3828         }
3829         mtx_unlock(&sync_mtx);
3830         BO_UNLOCK(bo);
3831
3832         return (0);
3833 }
3834
3835 /*
3836  * Check if vnode represents a disk device
3837  */
3838 int
3839 vn_isdisk(struct vnode *vp, int *errp)
3840 {
3841         int error;
3842
3843         error = 0;
3844         dev_lock();
3845         if (vp->v_type != VCHR)
3846                 error = ENOTBLK;
3847         else if (vp->v_rdev == NULL)
3848                 error = ENXIO;
3849         else if (vp->v_rdev->si_devsw == NULL)
3850                 error = ENXIO;
3851         else if (!(vp->v_rdev->si_devsw->d_flags & D_DISK))
3852                 error = ENOTBLK;
3853         dev_unlock();
3854         if (errp != NULL)
3855                 *errp = error;
3856         return (error == 0);
3857 }
3858
3859 /*
3860  * Common filesystem object access control check routine.  Accepts a
3861  * vnode's type, "mode", uid and gid, requested access mode, credentials,
3862  * and optional call-by-reference privused argument allowing vaccess()
3863  * to indicate to the caller whether privilege was used to satisfy the
3864  * request (obsoleted).  Returns 0 on success, or an errno on failure.
3865  */
3866 int
3867 vaccess(enum vtype type, mode_t file_mode, uid_t file_uid, gid_t file_gid,
3868     accmode_t accmode, struct ucred *cred, int *privused)
3869 {
3870         accmode_t dac_granted;
3871         accmode_t priv_granted;
3872
3873         KASSERT((accmode & ~(VEXEC | VWRITE | VREAD | VADMIN | VAPPEND)) == 0,
3874             ("invalid bit in accmode"));
3875         KASSERT((accmode & VAPPEND) == 0 || (accmode & VWRITE),
3876             ("VAPPEND without VWRITE"));
3877
3878         /*
3879          * Look for a normal, non-privileged way to access the file/directory
3880          * as requested.  If it exists, go with that.
3881          */
3882
3883         if (privused != NULL)
3884                 *privused = 0;
3885
3886         dac_granted = 0;
3887
3888         /* Check the owner. */
3889         if (cred->cr_uid == file_uid) {
3890                 dac_granted |= VADMIN;
3891                 if (file_mode & S_IXUSR)
3892                         dac_granted |= VEXEC;
3893                 if (file_mode & S_IRUSR)
3894                         dac_granted |= VREAD;
3895                 if (file_mode & S_IWUSR)
3896                         dac_granted |= (VWRITE | VAPPEND);
3897
3898                 if ((accmode & dac_granted) == accmode)
3899                         return (0);
3900
3901                 goto privcheck;
3902         }
3903
3904         /* Otherwise, check the groups (first match) */
3905         if (groupmember(file_gid, cred)) {
3906                 if (file_mode & S_IXGRP)
3907                         dac_granted |= VEXEC;
3908                 if (file_mode & S_IRGRP)
3909                         dac_granted |= VREAD;
3910                 if (file_mode & S_IWGRP)
3911                         dac_granted |= (VWRITE | VAPPEND);
3912
3913                 if ((accmode & dac_granted) == accmode)
3914                         return (0);
3915
3916                 goto privcheck;
3917         }
3918
3919         /* Otherwise, check everyone else. */
3920         if (file_mode & S_IXOTH)
3921                 dac_granted |= VEXEC;
3922         if (file_mode & S_IROTH)
3923                 dac_granted |= VREAD;
3924         if (file_mode & S_IWOTH)
3925                 dac_granted |= (VWRITE | VAPPEND);
3926         if ((accmode & dac_granted) == accmode)
3927                 return (0);
3928
3929 privcheck:
3930         /*
3931          * Build a privilege mask to determine if the set of privileges
3932          * satisfies the requirements when combined with the granted mask
3933          * from above.  For each privilege, if the privilege is required,
3934          * bitwise or the request type onto the priv_granted mask.
3935          */
3936         priv_granted = 0;
3937
3938         if (type == VDIR) {
3939                 /*
3940                  * For directories, use PRIV_VFS_LOOKUP to satisfy VEXEC
3941                  * requests, instead of PRIV_VFS_EXEC.
3942                  */
3943                 if ((accmode & VEXEC) && ((dac_granted & VEXEC) == 0) &&
3944                     !priv_check_cred(cred, PRIV_VFS_LOOKUP, 0))
3945                         priv_granted |= VEXEC;
3946         } else {
3947                 /*
3948                  * Ensure that at least one execute bit is on. Otherwise,
3949                  * a privileged user will always succeed, and we don't want
3950                  * this to happen unless the file really is executable.
3951                  */
3952                 if ((accmode & VEXEC) && ((dac_granted & VEXEC) == 0) &&
3953                     (file_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) != 0 &&
3954                     !priv_check_cred(cred, PRIV_VFS_EXEC, 0))
3955                         priv_granted |= VEXEC;
3956         }
3957
3958         if ((accmode & VREAD) && ((dac_granted & VREAD) == 0) &&
3959             !priv_check_cred(cred, PRIV_VFS_READ, 0))
3960                 priv_granted |= VREAD;
3961
3962         if ((accmode & VWRITE) && ((dac_granted & VWRITE) == 0) &&
3963             !priv_check_cred(cred, PRIV_VFS_WRITE, 0))
3964                 priv_granted |= (VWRITE | VAPPEND);
3965
3966         if ((accmode & VADMIN) && ((dac_granted & VADMIN) == 0) &&
3967             !priv_check_cred(cred, PRIV_VFS_ADMIN, 0))
3968                 priv_granted |= VADMIN;
3969
3970         if ((accmode & (priv_granted | dac_granted)) == accmode) {
3971                 /* XXX audit: privilege used */
3972                 if (privused != NULL)
3973                         *privused = 1;
3974                 return (0);
3975         }
3976
3977         return ((accmode & VADMIN) ? EPERM : EACCES);
3978 }
3979
3980 /*
3981  * Credential check based on process requesting service, and per-attribute
3982  * permissions.
3983  */
3984 int
3985 extattr_check_cred(struct vnode *vp, int attrnamespace, struct ucred *cred,
3986     struct thread *td, accmode_t accmode)
3987 {
3988
3989         /*
3990          * Kernel-invoked always succeeds.
3991          */
3992         if (cred == NOCRED)
3993                 return (0);
3994
3995         /*
3996          * Do not allow privileged processes in jail to directly manipulate
3997          * system attributes.
3998          */
3999         switch (attrnamespace) {
4000         case EXTATTR_NAMESPACE_SYSTEM:
4001                 /* Potentially should be: return (EPERM); */
4002                 return (priv_check_cred(cred, PRIV_VFS_EXTATTR_SYSTEM, 0));
4003         case EXTATTR_NAMESPACE_USER:
4004                 return (VOP_ACCESS(vp, accmode, cred, td));
4005         default:
4006                 return (EPERM);
4007         }
4008 }
4009
4010 #ifdef DEBUG_VFS_LOCKS
4011 /*
4012  * This only exists to supress warnings from unlocked specfs accesses.  It is
4013  * no longer ok to have an unlocked VFS.
4014  */
4015 #define IGNORE_LOCK(vp) (panicstr != NULL || (vp) == NULL ||            \
4016         (vp)->v_type == VCHR || (vp)->v_type == VBAD)
4017
4018 int vfs_badlock_ddb = 1;        /* Drop into debugger on violation. */
4019 SYSCTL_INT(_debug, OID_AUTO, vfs_badlock_ddb, CTLFLAG_RW, &vfs_badlock_ddb, 0,
4020     "Drop into debugger on lock violation");
4021
4022 int vfs_badlock_mutex = 1;      /* Check for interlock across VOPs. */
4023 SYSCTL_INT(_debug, OID_AUTO, vfs_badlock_mutex, CTLFLAG_RW, &vfs_badlock_mutex,
4024     0, "Check for interlock across VOPs");
4025
4026 int vfs_badlock_print = 1;      /* Print lock violations. */
4027 SYSCTL_INT(_debug, OID_AUTO, vfs_badlock_print, CTLFLAG_RW, &vfs_badlock_print,
4028     0, "Print lock violations");
4029
4030 #ifdef KDB
4031 int vfs_badlock_backtrace = 1;  /* Print backtrace at lock violations. */
4032 SYSCTL_INT(_debug, OID_AUTO, vfs_badlock_backtrace, CTLFLAG_RW,
4033     &vfs_badlock_backtrace, 0, "Print backtrace at lock violations");
4034 #endif
4035
4036 static void
4037 vfs_badlock(const char *msg, const char *str, struct vnode *vp)
4038 {
4039
4040 #ifdef KDB
4041         if (vfs_badlock_backtrace)
4042                 kdb_backtrace();
4043 #endif
4044         if (vfs_badlock_print)
4045                 printf("%s: %p %s\n", str, (void *)vp, msg);
4046         if (vfs_badlock_ddb)
4047                 kdb_enter(KDB_WHY_VFSLOCK, "lock violation");
4048 }
4049
4050 void
4051 assert_vi_locked(struct vnode *vp, const char *str)
4052 {
4053
4054         if (vfs_badlock_mutex && !mtx_owned(VI_MTX(vp)))
4055                 vfs_badlock("interlock is not locked but should be", str, vp);
4056 }
4057
4058 void
4059 assert_vi_unlocked(struct vnode *vp, const char *str)
4060 {
4061
4062         if (vfs_badlock_mutex && mtx_owned(VI_MTX(vp)))
4063                 vfs_badlock("interlock is locked but should not be", str, vp);
4064 }
4065
4066 void
4067 assert_vop_locked(struct vnode *vp, const char *str)
4068 {
4069         int locked;
4070
4071         if (!IGNORE_LOCK(vp)) {
4072                 locked = VOP_ISLOCKED(vp);
4073                 if (locked == 0 || locked == LK_EXCLOTHER)
4074                         vfs_badlock("is not locked but should be", str, vp);
4075         }
4076 }
4077
4078 void
4079 assert_vop_unlocked(struct vnode *vp, const char *str)
4080 {
4081
4082         if (!IGNORE_LOCK(vp) && VOP_ISLOCKED(vp) == LK_EXCLUSIVE)
4083                 vfs_badlock("is locked but should not be", str, vp);
4084 }
4085
4086 void
4087 assert_vop_elocked(struct vnode *vp, const char *str)
4088 {
4089
4090         if (!IGNORE_LOCK(vp) && VOP_ISLOCKED(vp) != LK_EXCLUSIVE)
4091                 vfs_badlock("is not exclusive locked but should be", str, vp);
4092 }
4093
4094 #if 0
4095 void
4096 assert_vop_elocked_other(struct vnode *vp, const char *str)
4097 {
4098
4099         if (!IGNORE_LOCK(vp) && VOP_ISLOCKED(vp) != LK_EXCLOTHER)
4100                 vfs_badlock("is not exclusive locked by another thread",
4101                     str, vp);
4102 }
4103
4104 void
4105 assert_vop_slocked(struct vnode *vp, const char *str)
4106 {
4107
4108         if (!IGNORE_LOCK(vp) && VOP_ISLOCKED(vp) != LK_SHARED)
4109                 vfs_badlock("is not locked shared but should be", str, vp);
4110 }
4111 #endif /* 0 */
4112 #endif /* DEBUG_VFS_LOCKS */
4113
4114 void
4115 vop_rename_fail(struct vop_rename_args *ap)
4116 {
4117
4118         if (ap->a_tvp != NULL)
4119                 vput(ap->a_tvp);
4120         if (ap->a_tdvp == ap->a_tvp)
4121                 vrele(ap->a_tdvp);
4122         else
4123                 vput(ap->a_tdvp);
4124         vrele(ap->a_fdvp);
4125         vrele(ap->a_fvp);
4126 }
4127
4128 void
4129 vop_rename_pre(void *ap)
4130 {
4131         struct vop_rename_args *a = ap;
4132
4133 #ifdef DEBUG_VFS_LOCKS
4134         if (a->a_tvp)
4135                 ASSERT_VI_UNLOCKED(a->a_tvp, "VOP_RENAME");
4136         ASSERT_VI_UNLOCKED(a->a_tdvp, "VOP_RENAME");
4137         ASSERT_VI_UNLOCKED(a->a_fvp, "VOP_RENAME");
4138         ASSERT_VI_UNLOCKED(a->a_fdvp, "VOP_RENAME");
4139
4140         /* Check the source (from). */
4141         if (a->a_tdvp->v_vnlock != a->a_fdvp->v_vnlock &&
4142             (a->a_tvp == NULL || a->a_tvp->v_vnlock != a->a_fdvp->v_vnlock))
4143                 ASSERT_VOP_UNLOCKED(a->a_fdvp, "vop_rename: fdvp locked");
4144         if (a->a_tvp == NULL || a->a_tvp->v_vnlock != a->a_fvp->v_vnlock)
4145                 ASSERT_VOP_UNLOCKED(a->a_fvp, "vop_rename: fvp locked");
4146
4147         /* Check the target. */
4148         if (a->a_tvp)
4149                 ASSERT_VOP_LOCKED(a->a_tvp, "vop_rename: tvp not locked");
4150         ASSERT_VOP_LOCKED(a->a_tdvp, "vop_rename: tdvp not locked");
4151 #endif
4152         if (a->a_tdvp != a->a_fdvp)
4153                 vhold(a->a_fdvp);
4154         if (a->a_tvp != a->a_fvp)
4155                 vhold(a->a_fvp);
4156         vhold(a->a_tdvp);
4157         if (a->a_tvp)
4158                 vhold(a->a_tvp);
4159 }
4160
4161 void
4162 vop_strategy_pre(void *ap)
4163 {
4164 #ifdef DEBUG_VFS_LOCKS
4165         struct vop_strategy_args *a;
4166         struct buf *bp;
4167
4168         a = ap;
4169         bp = a->a_bp;
4170
4171         /*
4172          * Cluster ops lock their component buffers but not the IO container.
4173          */
4174         if ((bp->b_flags & B_CLUSTER) != 0)
4175                 return;
4176
4177         if (panicstr == NULL && !BUF_ISLOCKED(bp)) {
4178                 if (vfs_badlock_print)
4179                         printf(
4180                             "VOP_STRATEGY: bp is not locked but should be\n");
4181                 if (vfs_badlock_ddb)
4182                         kdb_enter(KDB_WHY_VFSLOCK, "lock violation");
4183         }
4184 #endif
4185 }
4186
4187 void
4188 vop_lock_pre(void *ap)
4189 {
4190 #ifdef DEBUG_VFS_LOCKS
4191         struct vop_lock1_args *a = ap;
4192
4193         if ((a->a_flags & LK_INTERLOCK) == 0)
4194                 ASSERT_VI_UNLOCKED(a->a_vp, "VOP_LOCK");
4195         else
4196                 ASSERT_VI_LOCKED(a->a_vp, "VOP_LOCK");
4197 #endif
4198 }
4199
4200 void
4201 vop_lock_post(void *ap, int rc)
4202 {
4203 #ifdef DEBUG_VFS_LOCKS
4204         struct vop_lock1_args *a = ap;
4205
4206         ASSERT_VI_UNLOCKED(a->a_vp, "VOP_LOCK");
4207         if (rc == 0 && (a->a_flags & LK_EXCLOTHER) == 0)
4208                 ASSERT_VOP_LOCKED(a->a_vp, "VOP_LOCK");
4209 #endif
4210 }
4211
4212 void
4213 vop_unlock_pre(void *ap)
4214 {
4215 #ifdef DEBUG_VFS_LOCKS
4216         struct vop_unlock_args *a = ap;
4217
4218         if (a->a_flags & LK_INTERLOCK)
4219                 ASSERT_VI_LOCKED(a->a_vp, "VOP_UNLOCK");
4220         ASSERT_VOP_LOCKED(a->a_vp, "VOP_UNLOCK");
4221 #endif
4222 }
4223
4224 void
4225 vop_unlock_post(void *ap, int rc)
4226 {
4227 #ifdef DEBUG_VFS_LOCKS
4228         struct vop_unlock_args *a = ap;
4229
4230         if (a->a_flags & LK_INTERLOCK)
4231                 ASSERT_VI_UNLOCKED(a->a_vp, "VOP_UNLOCK");
4232 #endif
4233 }
4234
4235 void
4236 vop_create_post(void *ap, int rc)
4237 {
4238         struct vop_create_args *a = ap;
4239
4240         if (!rc)
4241                 VFS_KNOTE_LOCKED(a->a_dvp, NOTE_WRITE);
4242 }
4243
4244 void
4245 vop_deleteextattr_post(void *ap, int rc)
4246 {
4247         struct vop_deleteextattr_args *a = ap;
4248
4249         if (!rc)
4250                 VFS_KNOTE_LOCKED(a->a_vp, NOTE_ATTRIB);
4251 }
4252
4253 void
4254 vop_link_post(void *ap, int rc)
4255 {
4256         struct vop_link_args *a = ap;
4257
4258         if (!rc) {
4259                 VFS_KNOTE_LOCKED(a->a_vp, NOTE_LINK);
4260                 VFS_KNOTE_LOCKED(a->a_tdvp, NOTE_WRITE);
4261         }
4262 }
4263
4264 void
4265 vop_mkdir_post(void *ap, int rc)
4266 {
4267         struct vop_mkdir_args *a = ap;
4268
4269         if (!rc)
4270                 VFS_KNOTE_LOCKED(a->a_dvp, NOTE_WRITE | NOTE_LINK);
4271 }
4272
4273 void
4274 vop_mknod_post(void *ap, int rc)
4275 {
4276         struct vop_mknod_args *a = ap;
4277
4278         if (!rc)
4279                 VFS_KNOTE_LOCKED(a->a_dvp, NOTE_WRITE);
4280 }
4281
4282 void
4283 vop_remove_post(void *ap, int rc)
4284 {
4285         struct vop_remove_args *a = ap;
4286
4287         if (!rc) {
4288                 VFS_KNOTE_LOCKED(a->a_dvp, NOTE_WRITE);
4289                 VFS_KNOTE_LOCKED(a->a_vp, NOTE_DELETE);
4290         }
4291 }
4292
4293 void
4294 vop_rename_post(void *ap, int rc)
4295 {
4296         struct vop_rename_args *a = ap;
4297
4298         if (!rc) {
4299                 VFS_KNOTE_UNLOCKED(a->a_fdvp, NOTE_WRITE);
4300                 VFS_KNOTE_UNLOCKED(a->a_tdvp, NOTE_WRITE);
4301                 VFS_KNOTE_UNLOCKED(a->a_fvp, NOTE_RENAME);
4302                 if (a->a_tvp)
4303                         VFS_KNOTE_UNLOCKED(a->a_tvp, NOTE_DELETE);
4304         }
4305         if (a->a_tdvp != a->a_fdvp)
4306                 vdrop(a->a_fdvp);
4307         if (a->a_tvp != a->a_fvp)
4308                 vdrop(a->a_fvp);
4309         vdrop(a->a_tdvp);
4310         if (a->a_tvp)
4311                 vdrop(a->a_tvp);
4312 }
4313
4314 void
4315 vop_rmdir_post(void *ap, int rc)
4316 {
4317         struct vop_rmdir_args *a = ap;
4318
4319         if (!rc) {
4320                 VFS_KNOTE_LOCKED(a->a_dvp, NOTE_WRITE | NOTE_LINK);
4321                 VFS_KNOTE_LOCKED(a->a_vp, NOTE_DELETE);
4322         }
4323 }
4324
4325 void
4326 vop_setattr_post(void *ap, int rc)
4327 {
4328         struct vop_setattr_args *a = ap;
4329
4330         if (!rc)
4331                 VFS_KNOTE_LOCKED(a->a_vp, NOTE_ATTRIB);
4332 }
4333
4334 void
4335 vop_setextattr_post(void *ap, int rc)
4336 {
4337         struct vop_setextattr_args *a = ap;
4338
4339         if (!rc)
4340                 VFS_KNOTE_LOCKED(a->a_vp, NOTE_ATTRIB);
4341 }
4342
4343 void
4344 vop_symlink_post(void *ap, int rc)
4345 {
4346         struct vop_symlink_args *a = ap;
4347
4348         if (!rc)
4349                 VFS_KNOTE_LOCKED(a->a_dvp, NOTE_WRITE);
4350 }
4351
4352 static struct knlist fs_knlist;
4353
4354 static void
4355 vfs_event_init(void *arg)
4356 {
4357         knlist_init_mtx(&fs_knlist, NULL);
4358 }
4359 /* XXX - correct order? */
4360 SYSINIT(vfs_knlist, SI_SUB_VFS, SI_ORDER_ANY, vfs_event_init, NULL);
4361
4362 void
4363 vfs_event_signal(fsid_t *fsid, uint32_t event, intptr_t data __unused)
4364 {
4365
4366         KNOTE_UNLOCKED(&fs_knlist, event);
4367 }
4368
4369 static int      filt_fsattach(struct knote *kn);
4370 static void     filt_fsdetach(struct knote *kn);
4371 static int      filt_fsevent(struct knote *kn, long hint);
4372
4373 struct filterops fs_filtops = {
4374         .f_isfd = 0,
4375         .f_attach = filt_fsattach,
4376         .f_detach = filt_fsdetach,
4377         .f_event = filt_fsevent
4378 };
4379
4380 static int
4381 filt_fsattach(struct knote *kn)
4382 {
4383
4384         kn->kn_flags |= EV_CLEAR;
4385         knlist_add(&fs_knlist, kn, 0);
4386         return (0);
4387 }
4388
4389 static void
4390 filt_fsdetach(struct knote *kn)
4391 {
4392
4393         knlist_remove(&fs_knlist, kn, 0);
4394 }
4395
4396 static int
4397 filt_fsevent(struct knote *kn, long hint)
4398 {
4399
4400         kn->kn_fflags |= hint;
4401         return (kn->kn_fflags != 0);
4402 }
4403
4404 static int
4405 sysctl_vfs_ctl(SYSCTL_HANDLER_ARGS)
4406 {
4407         struct vfsidctl vc;
4408         int error;
4409         struct mount *mp;
4410
4411         error = SYSCTL_IN(req, &vc, sizeof(vc));
4412         if (error)
4413                 return (error);
4414         if (vc.vc_vers != VFS_CTL_VERS1)
4415                 return (EINVAL);
4416         mp = vfs_getvfs(&vc.vc_fsid);
4417         if (mp == NULL)
4418                 return (ENOENT);
4419         /* ensure that a specific sysctl goes to the right filesystem. */
4420         if (strcmp(vc.vc_fstypename, "*") != 0 &&
4421             strcmp(vc.vc_fstypename, mp->mnt_vfc->vfc_name) != 0) {
4422                 vfs_rel(mp);
4423                 return (EINVAL);
4424         }
4425         VCTLTOREQ(&vc, req);
4426         error = VFS_SYSCTL(mp, vc.vc_op, req);
4427         vfs_rel(mp);
4428         return (error);
4429 }
4430
4431 SYSCTL_PROC(_vfs, OID_AUTO, ctl, CTLTYPE_OPAQUE | CTLFLAG_WR,
4432     NULL, 0, sysctl_vfs_ctl, "",
4433     "Sysctl by fsid");
4434
4435 /*
4436  * Function to initialize a va_filerev field sensibly.
4437  * XXX: Wouldn't a random number make a lot more sense ??
4438  */
4439 u_quad_t
4440 init_va_filerev(void)
4441 {
4442         struct bintime bt;
4443
4444         getbinuptime(&bt);
4445         return (((u_quad_t)bt.sec << 32LL) | (bt.frac >> 32LL));
4446 }
4447
4448 static int      filt_vfsread(struct knote *kn, long hint);
4449 static int      filt_vfswrite(struct knote *kn, long hint);
4450 static int      filt_vfsvnode(struct knote *kn, long hint);
4451 static void     filt_vfsdetach(struct knote *kn);
4452 static struct filterops vfsread_filtops = {
4453         .f_isfd = 1,
4454         .f_detach = filt_vfsdetach,
4455         .f_event = filt_vfsread
4456 };
4457 static struct filterops vfswrite_filtops = {
4458         .f_isfd = 1,
4459         .f_detach = filt_vfsdetach,
4460         .f_event = filt_vfswrite
4461 };
4462 static struct filterops vfsvnode_filtops = {
4463         .f_isfd = 1,
4464         .f_detach = filt_vfsdetach,
4465         .f_event = filt_vfsvnode
4466 };
4467
4468 static void
4469 vfs_knllock(void *arg)
4470 {
4471         struct vnode *vp = arg;
4472
4473         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
4474 }
4475
4476 static void
4477 vfs_knlunlock(void *arg)
4478 {
4479         struct vnode *vp = arg;
4480
4481         VOP_UNLOCK(vp, 0);
4482 }
4483
4484 static void
4485 vfs_knl_assert_locked(void *arg)
4486 {
4487 #ifdef DEBUG_VFS_LOCKS
4488         struct vnode *vp = arg;
4489
4490         ASSERT_VOP_LOCKED(vp, "vfs_knl_assert_locked");
4491 #endif
4492 }
4493
4494 static void
4495 vfs_knl_assert_unlocked(void *arg)
4496 {
4497 #ifdef DEBUG_VFS_LOCKS
4498         struct vnode *vp = arg;
4499
4500         ASSERT_VOP_UNLOCKED(vp, "vfs_knl_assert_unlocked");
4501 #endif
4502 }
4503
4504 int
4505 vfs_kqfilter(struct vop_kqfilter_args *ap)
4506 {
4507         struct vnode *vp = ap->a_vp;
4508         struct knote *kn = ap->a_kn;
4509         struct knlist *knl;
4510
4511         switch (kn->kn_filter) {
4512         case EVFILT_READ:
4513                 kn->kn_fop = &vfsread_filtops;
4514                 break;
4515         case EVFILT_WRITE:
4516                 kn->kn_fop = &vfswrite_filtops;
4517                 break;
4518         case EVFILT_VNODE:
4519                 kn->kn_fop = &vfsvnode_filtops;
4520                 break;
4521         default:
4522                 return (EINVAL);
4523         }
4524
4525         kn->kn_hook = (caddr_t)vp;
4526
4527         v_addpollinfo(vp);
4528         if (vp->v_pollinfo == NULL)
4529                 return (ENOMEM);
4530         knl = &vp->v_pollinfo->vpi_selinfo.si_note;
4531         vhold(vp);
4532         knlist_add(knl, kn, 0);
4533
4534         return (0);
4535 }
4536
4537 /*
4538  * Detach knote from vnode
4539  */
4540 static void
4541 filt_vfsdetach(struct knote *kn)
4542 {
4543         struct vnode *vp = (struct vnode *)kn->kn_hook;
4544
4545         KASSERT(vp->v_pollinfo != NULL, ("Missing v_pollinfo"));
4546         knlist_remove(&vp->v_pollinfo->vpi_selinfo.si_note, kn, 0);
4547         vdrop(vp);
4548 }
4549
4550 /*ARGSUSED*/
4551 static int
4552 filt_vfsread(struct knote *kn, long hint)
4553 {
4554         struct vnode *vp = (struct vnode *)kn->kn_hook;
4555         struct vattr va;
4556         int res;
4557
4558         /*
4559          * filesystem is gone, so set the EOF flag and schedule
4560          * the knote for deletion.
4561          */
4562         if (hint == NOTE_REVOKE) {
4563                 VI_LOCK(vp);
4564                 kn->kn_flags |= (EV_EOF | EV_ONESHOT);
4565                 VI_UNLOCK(vp);
4566                 return (1);
4567         }
4568
4569         if (VOP_GETATTR(vp, &va, curthread->td_ucred))
4570                 return (0);
4571
4572         VI_LOCK(vp);
4573         kn->kn_data = va.va_size - kn->kn_fp->f_offset;
4574         res = (kn->kn_data != 0);
4575         VI_UNLOCK(vp);
4576         return (res);
4577 }
4578
4579 /*ARGSUSED*/
4580 static int
4581 filt_vfswrite(struct knote *kn, long hint)
4582 {
4583         struct vnode *vp = (struct vnode *)kn->kn_hook;
4584
4585         VI_LOCK(vp);
4586
4587         /*
4588          * filesystem is gone, so set the EOF flag and schedule
4589          * the knote for deletion.
4590          */
4591         if (hint == NOTE_REVOKE)
4592                 kn->kn_flags |= (EV_EOF | EV_ONESHOT);
4593
4594         kn->kn_data = 0;
4595         VI_UNLOCK(vp);
4596         return (1);
4597 }
4598
4599 static int
4600 filt_vfsvnode(struct knote *kn, long hint)
4601 {
4602         struct vnode *vp = (struct vnode *)kn->kn_hook;
4603         int res;
4604
4605         VI_LOCK(vp);
4606         if (kn->kn_sfflags & hint)
4607                 kn->kn_fflags |= hint;
4608         if (hint == NOTE_REVOKE) {
4609                 kn->kn_flags |= EV_EOF;
4610                 VI_UNLOCK(vp);
4611                 return (1);
4612         }
4613         res = (kn->kn_fflags != 0);
4614         VI_UNLOCK(vp);
4615         return (res);
4616 }
4617
4618 int
4619 vfs_read_dirent(struct vop_readdir_args *ap, struct dirent *dp, off_t off)
4620 {
4621         int error;
4622
4623         if (dp->d_reclen > ap->a_uio->uio_resid)
4624                 return (ENAMETOOLONG);
4625         error = uiomove(dp, dp->d_reclen, ap->a_uio);
4626         if (error) {
4627                 if (ap->a_ncookies != NULL) {
4628                         if (ap->a_cookies != NULL)
4629                                 free(ap->a_cookies, M_TEMP);
4630                         ap->a_cookies = NULL;
4631                         *ap->a_ncookies = 0;
4632                 }
4633                 return (error);
4634         }
4635         if (ap->a_ncookies == NULL)
4636                 return (0);
4637
4638         KASSERT(ap->a_cookies,
4639             ("NULL ap->a_cookies value with non-NULL ap->a_ncookies!"));
4640
4641         *ap->a_cookies = realloc(*ap->a_cookies,
4642             (*ap->a_ncookies + 1) * sizeof(u_long), M_TEMP, M_WAITOK | M_ZERO);
4643         (*ap->a_cookies)[*ap->a_ncookies] = off;
4644         return (0);
4645 }
4646
4647 /*
4648  * Mark for update the access time of the file if the filesystem
4649  * supports VOP_MARKATIME.  This functionality is used by execve and
4650  * mmap, so we want to avoid the I/O implied by directly setting
4651  * va_atime for the sake of efficiency.
4652  */
4653 void
4654 vfs_mark_atime(struct vnode *vp, struct ucred *cred)
4655 {
4656         struct mount *mp;
4657
4658         mp = vp->v_mount;
4659         ASSERT_VOP_LOCKED(vp, "vfs_mark_atime");
4660         if (mp != NULL && (mp->mnt_flag & (MNT_NOATIME | MNT_RDONLY)) == 0)
4661                 (void)VOP_MARKATIME(vp);
4662 }
4663
4664 /*
4665  * The purpose of this routine is to remove granularity from accmode_t,
4666  * reducing it into standard unix access bits - VEXEC, VREAD, VWRITE,
4667  * VADMIN and VAPPEND.
4668  *
4669  * If it returns 0, the caller is supposed to continue with the usual
4670  * access checks using 'accmode' as modified by this routine.  If it
4671  * returns nonzero value, the caller is supposed to return that value
4672  * as errno.
4673  *
4674  * Note that after this routine runs, accmode may be zero.
4675  */
4676 int
4677 vfs_unixify_accmode(accmode_t *accmode)
4678 {
4679         /*
4680          * There is no way to specify explicit "deny" rule using
4681          * file mode or POSIX.1e ACLs.
4682          */
4683         if (*accmode & VEXPLICIT_DENY) {
4684                 *accmode = 0;
4685                 return (0);
4686         }
4687
4688         /*
4689          * None of these can be translated into usual access bits.
4690          * Also, the common case for NFSv4 ACLs is to not contain
4691          * either of these bits. Caller should check for VWRITE
4692          * on the containing directory instead.
4693          */
4694         if (*accmode & (VDELETE_CHILD | VDELETE))
4695                 return (EPERM);
4696
4697         if (*accmode & VADMIN_PERMS) {
4698                 *accmode &= ~VADMIN_PERMS;
4699                 *accmode |= VADMIN;
4700         }
4701
4702         /*
4703          * There is no way to deny VREAD_ATTRIBUTES, VREAD_ACL
4704          * or VSYNCHRONIZE using file mode or POSIX.1e ACL.
4705          */
4706         *accmode &= ~(VSTAT_PERMS | VSYNCHRONIZE);
4707
4708         return (0);
4709 }
4710
4711 /*
4712  * These are helper functions for filesystems to traverse all
4713  * their vnodes.  See MNT_VNODE_FOREACH_ALL() in sys/mount.h.
4714  *
4715  * This interface replaces MNT_VNODE_FOREACH.
4716  */
4717
4718 MALLOC_DEFINE(M_VNODE_MARKER, "vnodemarker", "vnode marker");
4719
4720 struct vnode *
4721 __mnt_vnode_next_all(struct vnode **mvp, struct mount *mp)
4722 {
4723         struct vnode *vp;
4724
4725         if (should_yield())
4726                 kern_yield(PRI_USER);
4727         MNT_ILOCK(mp);
4728         KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
4729         vp = TAILQ_NEXT(*mvp, v_nmntvnodes);
4730         while (vp != NULL && (vp->v_type == VMARKER ||
4731             (vp->v_iflag & VI_DOOMED) != 0))
4732                 vp = TAILQ_NEXT(vp, v_nmntvnodes);
4733
4734         /* Check if we are done */
4735         if (vp == NULL) {
4736                 __mnt_vnode_markerfree_all(mvp, mp);
4737                 /* MNT_IUNLOCK(mp); -- done in above function */
4738                 mtx_assert(MNT_MTX(mp), MA_NOTOWNED);
4739                 return (NULL);
4740         }
4741         TAILQ_REMOVE(&mp->mnt_nvnodelist, *mvp, v_nmntvnodes);
4742         TAILQ_INSERT_AFTER(&mp->mnt_nvnodelist, vp, *mvp, v_nmntvnodes);
4743         VI_LOCK(vp);
4744         MNT_IUNLOCK(mp);
4745         return (vp);
4746 }
4747
4748 struct vnode *
4749 __mnt_vnode_first_all(struct vnode **mvp, struct mount *mp)
4750 {
4751         struct vnode *vp;
4752
4753         *mvp = malloc(sizeof(struct vnode), M_VNODE_MARKER, M_WAITOK | M_ZERO);
4754         MNT_ILOCK(mp);
4755         MNT_REF(mp);
4756         (*mvp)->v_type = VMARKER;
4757
4758         vp = TAILQ_FIRST(&mp->mnt_nvnodelist);
4759         while (vp != NULL && (vp->v_type == VMARKER ||
4760             (vp->v_iflag & VI_DOOMED) != 0))
4761                 vp = TAILQ_NEXT(vp, v_nmntvnodes);
4762
4763         /* Check if we are done */
4764         if (vp == NULL) {
4765                 MNT_REL(mp);
4766                 MNT_IUNLOCK(mp);
4767                 free(*mvp, M_VNODE_MARKER);
4768                 *mvp = NULL;
4769                 return (NULL);
4770         }
4771         (*mvp)->v_mount = mp;
4772         TAILQ_INSERT_AFTER(&mp->mnt_nvnodelist, vp, *mvp, v_nmntvnodes);
4773         VI_LOCK(vp);
4774         MNT_IUNLOCK(mp);
4775         return (vp);
4776 }
4777
4778
4779 void
4780 __mnt_vnode_markerfree_all(struct vnode **mvp, struct mount *mp)
4781 {
4782
4783         if (*mvp == NULL) {
4784                 MNT_IUNLOCK(mp);
4785                 return;
4786         }
4787
4788         mtx_assert(MNT_MTX(mp), MA_OWNED);
4789
4790         KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
4791         TAILQ_REMOVE(&mp->mnt_nvnodelist, *mvp, v_nmntvnodes);
4792         MNT_REL(mp);
4793         MNT_IUNLOCK(mp);
4794         free(*mvp, M_VNODE_MARKER);
4795         *mvp = NULL;
4796 }
4797
4798 /*
4799  * These are helper functions for filesystems to traverse their
4800  * active vnodes.  See MNT_VNODE_FOREACH_ACTIVE() in sys/mount.h
4801  */
4802 static void
4803 mnt_vnode_markerfree_active(struct vnode **mvp, struct mount *mp)
4804 {
4805
4806         KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
4807
4808         MNT_ILOCK(mp);
4809         MNT_REL(mp);
4810         MNT_IUNLOCK(mp);
4811         free(*mvp, M_VNODE_MARKER);
4812         *mvp = NULL;
4813 }
4814
4815 static struct vnode *
4816 mnt_vnode_next_active(struct vnode **mvp, struct mount *mp)
4817 {
4818         struct vnode *vp, *nvp;
4819
4820         mtx_assert(&vnode_free_list_mtx, MA_OWNED);
4821         KASSERT((*mvp)->v_mount == mp, ("marker vnode mount list mismatch"));
4822 restart:
4823         vp = TAILQ_NEXT(*mvp, v_actfreelist);
4824         TAILQ_REMOVE(&mp->mnt_activevnodelist, *mvp, v_actfreelist);
4825         while (vp != NULL) {
4826                 if (vp->v_type == VMARKER) {
4827                         vp = TAILQ_NEXT(vp, v_actfreelist);
4828                         continue;
4829                 }
4830                 if (!VI_TRYLOCK(vp)) {
4831                         if (mp_ncpus == 1 || should_yield()) {
4832                                 TAILQ_INSERT_BEFORE(vp, *mvp, v_actfreelist);
4833                                 mtx_unlock(&vnode_free_list_mtx);
4834                                 pause("vnacti", 1);
4835                                 mtx_lock(&vnode_free_list_mtx);
4836                                 goto restart;
4837                         }
4838                         continue;
4839                 }
4840                 KASSERT(vp->v_type != VMARKER, ("locked marker %p", vp));
4841                 KASSERT(vp->v_mount == mp || vp->v_mount == NULL,
4842                     ("alien vnode on the active list %p %p", vp, mp));
4843                 if (vp->v_mount == mp && (vp->v_iflag & VI_DOOMED) == 0)
4844                         break;
4845                 nvp = TAILQ_NEXT(vp, v_actfreelist);
4846                 VI_UNLOCK(vp);
4847                 vp = nvp;
4848         }
4849
4850         /* Check if we are done */
4851         if (vp == NULL) {
4852                 mtx_unlock(&vnode_free_list_mtx);
4853                 mnt_vnode_markerfree_active(mvp, mp);
4854                 return (NULL);
4855         }
4856         TAILQ_INSERT_AFTER(&mp->mnt_activevnodelist, vp, *mvp, v_actfreelist);
4857         mtx_unlock(&vnode_free_list_mtx);
4858         ASSERT_VI_LOCKED(vp, "active iter");
4859         KASSERT((vp->v_iflag & VI_ACTIVE) != 0, ("Non-active vp %p", vp));
4860         return (vp);
4861 }
4862
4863 struct vnode *
4864 __mnt_vnode_next_active(struct vnode **mvp, struct mount *mp)
4865 {
4866
4867         if (should_yield())
4868                 kern_yield(PRI_USER);
4869         mtx_lock(&vnode_free_list_mtx);
4870         return (mnt_vnode_next_active(mvp, mp));
4871 }
4872
4873 struct vnode *
4874 __mnt_vnode_first_active(struct vnode **mvp, struct mount *mp)
4875 {
4876         struct vnode *vp;
4877
4878         *mvp = malloc(sizeof(struct vnode), M_VNODE_MARKER, M_WAITOK | M_ZERO);
4879         MNT_ILOCK(mp);
4880         MNT_REF(mp);
4881         MNT_IUNLOCK(mp);
4882         (*mvp)->v_type = VMARKER;
4883         (*mvp)->v_mount = mp;
4884
4885         mtx_lock(&vnode_free_list_mtx);
4886         vp = TAILQ_FIRST(&mp->mnt_activevnodelist);
4887         if (vp == NULL) {
4888                 mtx_unlock(&vnode_free_list_mtx);
4889                 mnt_vnode_markerfree_active(mvp, mp);
4890                 return (NULL);
4891         }
4892         TAILQ_INSERT_BEFORE(vp, *mvp, v_actfreelist);
4893         return (mnt_vnode_next_active(mvp, mp));
4894 }
4895
4896 void
4897 __mnt_vnode_markerfree_active(struct vnode **mvp, struct mount *mp)
4898 {
4899
4900         if (*mvp == NULL)
4901                 return;
4902
4903         mtx_lock(&vnode_free_list_mtx);
4904         TAILQ_REMOVE(&mp->mnt_activevnodelist, *mvp, v_actfreelist);
4905         mtx_unlock(&vnode_free_list_mtx);
4906         mnt_vnode_markerfree_active(mvp, mp);
4907 }