1661b7229f42918b433daa69568c29bb258bc918
[dragonfly.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  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)vfs_subr.c  8.31 (Berkeley) 5/26/95
39  * $FreeBSD: src/sys/kern/vfs_subr.c,v 1.249.2.30 2003/04/04 20:35:57 tegge Exp $
40  * $DragonFly: src/sys/kern/vfs_subr.c,v 1.118 2008/09/17 21:44:18 dillon Exp $
41  */
42
43 /*
44  * External virtual filesystem routines
45  */
46 #include "opt_ddb.h"
47
48 #include <sys/param.h>
49 #include <sys/systm.h>
50 #include <sys/buf.h>
51 #include <sys/conf.h>
52 #include <sys/dirent.h>
53 #include <sys/domain.h>
54 #include <sys/eventhandler.h>
55 #include <sys/fcntl.h>
56 #include <sys/file.h>
57 #include <sys/kernel.h>
58 #include <sys/kthread.h>
59 #include <sys/malloc.h>
60 #include <sys/mbuf.h>
61 #include <sys/mount.h>
62 #include <sys/proc.h>
63 #include <sys/reboot.h>
64 #include <sys/socket.h>
65 #include <sys/stat.h>
66 #include <sys/sysctl.h>
67 #include <sys/syslog.h>
68 #include <sys/unistd.h>
69 #include <sys/vmmeter.h>
70 #include <sys/vnode.h>
71
72 #include <machine/limits.h>
73
74 #include <vm/vm.h>
75 #include <vm/vm_object.h>
76 #include <vm/vm_extern.h>
77 #include <vm/vm_kern.h>
78 #include <vm/pmap.h>
79 #include <vm/vm_map.h>
80 #include <vm/vm_page.h>
81 #include <vm/vm_pager.h>
82 #include <vm/vnode_pager.h>
83 #include <vm/vm_zone.h>
84
85 #include <sys/buf2.h>
86 #include <sys/thread2.h>
87 #include <sys/sysref2.h>
88
89 static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure");
90
91 int numvnodes;
92 SYSCTL_INT(_debug, OID_AUTO, numvnodes, CTLFLAG_RD, &numvnodes, 0, "");
93 int vfs_fastdev = 1;
94 SYSCTL_INT(_vfs, OID_AUTO, fastdev, CTLFLAG_RW, &vfs_fastdev, 0, "");
95
96 enum vtype iftovt_tab[16] = {
97         VNON, VFIFO, VCHR, VNON, VDIR, VNON, VBLK, VNON,
98         VREG, VNON, VLNK, VNON, VSOCK, VNON, VNON, VBAD,
99 };
100 int vttoif_tab[9] = {
101         0, S_IFREG, S_IFDIR, S_IFBLK, S_IFCHR, S_IFLNK,
102         S_IFSOCK, S_IFIFO, S_IFMT,
103 };
104
105 static int reassignbufcalls;
106 SYSCTL_INT(_vfs, OID_AUTO, reassignbufcalls, CTLFLAG_RW,
107                 &reassignbufcalls, 0, "");
108 static int reassignbufloops;
109 SYSCTL_INT(_vfs, OID_AUTO, reassignbufloops, CTLFLAG_RW,
110                 &reassignbufloops, 0, "");
111 static int reassignbufsortgood;
112 SYSCTL_INT(_vfs, OID_AUTO, reassignbufsortgood, CTLFLAG_RW,
113                 &reassignbufsortgood, 0, "");
114 static int reassignbufsortbad;
115 SYSCTL_INT(_vfs, OID_AUTO, reassignbufsortbad, CTLFLAG_RW,
116                 &reassignbufsortbad, 0, "");
117 static int reassignbufmethod = 1;
118 SYSCTL_INT(_vfs, OID_AUTO, reassignbufmethod, CTLFLAG_RW,
119                 &reassignbufmethod, 0, "");
120
121 int     nfs_mount_type = -1;
122 static struct lwkt_token spechash_token;
123 struct nfs_public nfs_pub;      /* publicly exported FS */
124
125 int desiredvnodes;
126 SYSCTL_INT(_kern, KERN_MAXVNODES, maxvnodes, CTLFLAG_RW, 
127                 &desiredvnodes, 0, "Maximum number of vnodes");
128
129 static void     vfs_free_addrlist (struct netexport *nep);
130 static int      vfs_free_netcred (struct radix_node *rn, void *w);
131 static int      vfs_hang_addrlist (struct mount *mp, struct netexport *nep,
132                                        const struct export_args *argp);
133
134 /*
135  * Red black tree functions
136  */
137 static int rb_buf_compare(struct buf *b1, struct buf *b2);
138 RB_GENERATE2(buf_rb_tree, buf, b_rbnode, rb_buf_compare, off_t, b_loffset);
139 RB_GENERATE2(buf_rb_hash, buf, b_rbhash, rb_buf_compare, off_t, b_loffset);
140
141 static int
142 rb_buf_compare(struct buf *b1, struct buf *b2)
143 {
144         if (b1->b_loffset < b2->b_loffset)
145                 return(-1);
146         if (b1->b_loffset > b2->b_loffset)
147                 return(1);
148         return(0);
149 }
150
151 /*
152  * Returns non-zero if the vnode is a candidate for lazy msyncing.
153  */
154 static __inline int
155 vshouldmsync(struct vnode *vp)
156 {
157         if (vp->v_auxrefs != 0 || vp->v_sysref.refcnt > 0)
158                 return (0);             /* other holders */
159         if (vp->v_object &&
160             (vp->v_object->ref_count || vp->v_object->resident_page_count)) {
161                 return (0);
162         }
163         return (1);
164 }
165
166 /*
167  * Initialize the vnode management data structures. 
168  *
169  * Called from vfsinit()
170  */
171 void
172 vfs_subr_init(void)
173 {
174         /*
175          * Desiredvnodes is kern.maxvnodes.  We want to scale it 
176          * according to available system memory but we may also have
177          * to limit it based on available KVM, which is capped on 32 bit
178          * systems.
179          */
180         desiredvnodes = min(maxproc + vmstats.v_page_count / 4,
181                             KvaSize / (20 * 
182                             (sizeof(struct vm_object) + sizeof(struct vnode))));
183
184         lwkt_token_init(&spechash_token);
185 }
186
187 /*
188  * Knob to control the precision of file timestamps:
189  *
190  *   0 = seconds only; nanoseconds zeroed.
191  *   1 = seconds and nanoseconds, accurate within 1/HZ.
192  *   2 = seconds and nanoseconds, truncated to microseconds.
193  * >=3 = seconds and nanoseconds, maximum precision.
194  */
195 enum { TSP_SEC, TSP_HZ, TSP_USEC, TSP_NSEC };
196
197 static int timestamp_precision = TSP_SEC;
198 SYSCTL_INT(_vfs, OID_AUTO, timestamp_precision, CTLFLAG_RW,
199                 &timestamp_precision, 0, "");
200
201 /*
202  * Get a current timestamp.
203  *
204  * MPSAFE
205  */
206 void
207 vfs_timestamp(struct timespec *tsp)
208 {
209         struct timeval tv;
210
211         switch (timestamp_precision) {
212         case TSP_SEC:
213                 tsp->tv_sec = time_second;
214                 tsp->tv_nsec = 0;
215                 break;
216         case TSP_HZ:
217                 getnanotime(tsp);
218                 break;
219         case TSP_USEC:
220                 microtime(&tv);
221                 TIMEVAL_TO_TIMESPEC(&tv, tsp);
222                 break;
223         case TSP_NSEC:
224         default:
225                 nanotime(tsp);
226                 break;
227         }
228 }
229
230 /*
231  * Set vnode attributes to VNOVAL
232  */
233 void
234 vattr_null(struct vattr *vap)
235 {
236         vap->va_type = VNON;
237         vap->va_size = VNOVAL;
238         vap->va_bytes = VNOVAL;
239         vap->va_mode = VNOVAL;
240         vap->va_nlink = VNOVAL;
241         vap->va_uid = VNOVAL;
242         vap->va_gid = VNOVAL;
243         vap->va_fsid = VNOVAL;
244         vap->va_fileid = VNOVAL;
245         vap->va_blocksize = VNOVAL;
246         vap->va_rmajor = VNOVAL;
247         vap->va_rminor = VNOVAL;
248         vap->va_atime.tv_sec = VNOVAL;
249         vap->va_atime.tv_nsec = VNOVAL;
250         vap->va_mtime.tv_sec = VNOVAL;
251         vap->va_mtime.tv_nsec = VNOVAL;
252         vap->va_ctime.tv_sec = VNOVAL;
253         vap->va_ctime.tv_nsec = VNOVAL;
254         vap->va_flags = VNOVAL;
255         vap->va_gen = VNOVAL;
256         vap->va_vaflags = 0;
257         vap->va_fsmid = VNOVAL;
258         /* va_*_uuid fields are only valid if related flags are set */
259 }
260
261 /*
262  * Flush out and invalidate all buffers associated with a vnode.
263  *
264  * vp must be locked.
265  */
266 static int vinvalbuf_bp(struct buf *bp, void *data);
267
268 struct vinvalbuf_bp_info {
269         struct vnode *vp;
270         int slptimeo;
271         int lkflags;
272         int flags;
273 };
274
275 void
276 vupdatefsmid(struct vnode *vp)
277 {
278         atomic_set_int(&vp->v_flag, VFSMID);
279 }
280
281 int
282 vinvalbuf(struct vnode *vp, int flags, int slpflag, int slptimeo)
283 {
284         struct vinvalbuf_bp_info info;
285         vm_object_t object;
286         lwkt_tokref vlock;
287         int error;
288
289         lwkt_gettoken(&vlock, &vp->v_token);
290
291         /*
292          * If we are being asked to save, call fsync to ensure that the inode
293          * is updated.
294          */
295         if (flags & V_SAVE) {
296                 error = bio_track_wait(&vp->v_track_write, slpflag, slptimeo);
297                 if (error)
298                         goto done;
299                 if (!RB_EMPTY(&vp->v_rbdirty_tree)) {
300                         if ((error = VOP_FSYNC(vp, MNT_WAIT)) != 0)
301                                 goto done;
302
303                         /*
304                          * Dirty bufs may be left or generated via races
305                          * in circumstances where vinvalbuf() is called on
306                          * a vnode not undergoing reclamation.   Only
307                          * panic if we are trying to reclaim the vnode.
308                          */
309                         if ((vp->v_flag & VRECLAIMED) &&
310                             (bio_track_active(&vp->v_track_write) ||
311                             !RB_EMPTY(&vp->v_rbdirty_tree))) {
312                                 panic("vinvalbuf: dirty bufs");
313                         }
314                 }
315         }
316         info.slptimeo = slptimeo;
317         info.lkflags = LK_EXCLUSIVE | LK_SLEEPFAIL;
318         if (slpflag & PCATCH)
319                 info.lkflags |= LK_PCATCH;
320         info.flags = flags;
321         info.vp = vp;
322
323         /*
324          * Flush the buffer cache until nothing is left.
325          */
326         while (!RB_EMPTY(&vp->v_rbclean_tree) || 
327                !RB_EMPTY(&vp->v_rbdirty_tree)) {
328                 error = RB_SCAN(buf_rb_tree, &vp->v_rbclean_tree, NULL,
329                                 vinvalbuf_bp, &info);
330                 if (error == 0) {
331                         error = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, NULL,
332                                         vinvalbuf_bp, &info);
333                 }
334         }
335
336         /*
337          * Wait for I/O completion.  We may block in the pip code so we have
338          * to re-check.
339          */
340         do {
341                 bio_track_wait(&vp->v_track_write, 0, 0);
342                 if ((object = vp->v_object) != NULL) {
343                         while (object->paging_in_progress)
344                                 vm_object_pip_sleep(object, "vnvlbx");
345                 }
346         } while (bio_track_active(&vp->v_track_write));
347
348         /*
349          * Destroy the copy in the VM cache, too.
350          */
351         if ((object = vp->v_object) != NULL) {
352                 vm_object_page_remove(object, 0, 0,
353                         (flags & V_SAVE) ? TRUE : FALSE);
354         }
355
356         if (!RB_EMPTY(&vp->v_rbdirty_tree) || !RB_EMPTY(&vp->v_rbclean_tree))
357                 panic("vinvalbuf: flush failed");
358         if (!RB_EMPTY(&vp->v_rbhash_tree))
359                 panic("vinvalbuf: flush failed, buffers still present");
360         error = 0;
361 done:
362         lwkt_reltoken(&vlock);
363         return (error);
364 }
365
366 static int
367 vinvalbuf_bp(struct buf *bp, void *data)
368 {
369         struct vinvalbuf_bp_info *info = data;
370         int error;
371
372         if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) {
373                 error = BUF_TIMELOCK(bp, info->lkflags,
374                                      "vinvalbuf", info->slptimeo);
375                 if (error == 0) {
376                         BUF_UNLOCK(bp);
377                         error = ENOLCK;
378                 }
379                 if (error == ENOLCK)
380                         return(0);
381                 return (-error);
382         }
383
384         KKASSERT(bp->b_vp == info->vp);
385
386         /*
387          * XXX Since there are no node locks for NFS, I
388          * believe there is a slight chance that a delayed
389          * write will occur while sleeping just above, so
390          * check for it.  Note that vfs_bio_awrite expects
391          * buffers to reside on a queue, while bwrite() and
392          * brelse() do not.
393          *
394          * NOTE:  NO B_LOCKED CHECK.  Also no buf_checkwrite()
395          * check.  This code will write out the buffer, period.
396          */
397         if (((bp->b_flags & (B_DELWRI | B_INVAL)) == B_DELWRI) &&
398             (info->flags & V_SAVE)) {
399                 if (bp->b_vp == info->vp) {
400                         if (bp->b_flags & B_CLUSTEROK) {
401                                 vfs_bio_awrite(bp);
402                         } else {
403                                 bremfree(bp);
404                                 bawrite(bp);
405                         }
406                 } else {
407                         bremfree(bp);
408                         bwrite(bp);
409                 }
410         } else if (info->flags & V_SAVE) {
411                 /*
412                  * Cannot set B_NOCACHE on a clean buffer as this will
413                  * destroy the VM backing store which might actually
414                  * be dirty (and unsynchronized).
415                  */
416                 bremfree(bp);
417                 bp->b_flags |= (B_INVAL | B_RELBUF);
418                 brelse(bp);
419         } else {
420                 bremfree(bp);
421                 bp->b_flags |= (B_INVAL | B_NOCACHE | B_RELBUF);
422                 brelse(bp);
423         }
424         return(0);
425 }
426
427 /*
428  * Truncate a file's buffer and pages to a specified length.  This
429  * is in lieu of the old vinvalbuf mechanism, which performed unneeded
430  * sync activity.
431  *
432  * The vnode must be locked.
433  */
434 static int vtruncbuf_bp_trunc_cmp(struct buf *bp, void *data);
435 static int vtruncbuf_bp_trunc(struct buf *bp, void *data);
436 static int vtruncbuf_bp_metasync_cmp(struct buf *bp, void *data);
437 static int vtruncbuf_bp_metasync(struct buf *bp, void *data);
438
439 int
440 vtruncbuf(struct vnode *vp, off_t length, int blksize)
441 {
442         off_t truncloffset;
443         const char *filename;
444         lwkt_tokref vlock;
445         int count;
446
447         /*
448          * Round up to the *next* block, then destroy the buffers in question.  
449          * Since we are only removing some of the buffers we must rely on the
450          * scan count to determine whether a loop is necessary.
451          */
452         if ((count = (int)(length % blksize)) != 0)
453                 truncloffset = length + (blksize - count);
454         else
455                 truncloffset = length;
456
457         lwkt_gettoken(&vlock, &vp->v_token);
458         do {
459                 count = RB_SCAN(buf_rb_tree, &vp->v_rbclean_tree, 
460                                 vtruncbuf_bp_trunc_cmp,
461                                 vtruncbuf_bp_trunc, &truncloffset);
462                 count += RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree,
463                                 vtruncbuf_bp_trunc_cmp,
464                                 vtruncbuf_bp_trunc, &truncloffset);
465         } while(count);
466
467         /*
468          * For safety, fsync any remaining metadata if the file is not being
469          * truncated to 0.  Since the metadata does not represent the entire
470          * dirty list we have to rely on the hit count to ensure that we get
471          * all of it.
472          */
473         if (length > 0) {
474                 do {
475                         count = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree,
476                                         vtruncbuf_bp_metasync_cmp,
477                                         vtruncbuf_bp_metasync, vp);
478                 } while (count);
479         }
480
481         /*
482          * Clean out any left over VM backing store.
483          *
484          * It is possible to have in-progress I/O from buffers that were
485          * not part of the truncation.  This should not happen if we
486          * are truncating to 0-length.
487          */
488         vnode_pager_setsize(vp, length);
489         bio_track_wait(&vp->v_track_write, 0, 0);
490
491         filename = TAILQ_FIRST(&vp->v_namecache) ?
492                    TAILQ_FIRST(&vp->v_namecache)->nc_name : "?";
493
494         /*
495          * Make sure no buffers were instantiated while we were trying
496          * to clean out the remaining VM pages.  This could occur due
497          * to busy dirty VM pages being flushed out to disk.
498          */
499         do {
500                 count = RB_SCAN(buf_rb_tree, &vp->v_rbclean_tree, 
501                                 vtruncbuf_bp_trunc_cmp,
502                                 vtruncbuf_bp_trunc, &truncloffset);
503                 count += RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree,
504                                 vtruncbuf_bp_trunc_cmp,
505                                 vtruncbuf_bp_trunc, &truncloffset);
506                 if (count) {
507                         kprintf("Warning: vtruncbuf():  Had to re-clean %d "
508                                "left over buffers in %s\n", count, filename);
509                 }
510         } while(count);
511
512         lwkt_reltoken(&vlock);
513
514         return (0);
515 }
516
517 /*
518  * The callback buffer is beyond the new file EOF and must be destroyed.
519  * Note that the compare function must conform to the RB_SCAN's requirements.
520  */
521 static
522 int
523 vtruncbuf_bp_trunc_cmp(struct buf *bp, void *data)
524 {
525         if (bp->b_loffset >= *(off_t *)data)
526                 return(0);
527         return(-1);
528 }
529
530 static 
531 int 
532 vtruncbuf_bp_trunc(struct buf *bp, void *data)
533 {
534         /*
535          * Do not try to use a buffer we cannot immediately lock, but sleep
536          * anyway to prevent a livelock.  The code will loop until all buffers
537          * can be acted upon.
538          */
539         if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) {
540                 if (BUF_LOCK(bp, LK_EXCLUSIVE|LK_SLEEPFAIL) == 0)
541                         BUF_UNLOCK(bp);
542         } else {
543                 bremfree(bp);
544                 bp->b_flags |= (B_INVAL | B_RELBUF | B_NOCACHE);
545                 brelse(bp);
546         }
547         return(1);
548 }
549
550 /*
551  * Fsync all meta-data after truncating a file to be non-zero.  Only metadata
552  * blocks (with a negative loffset) are scanned.
553  * Note that the compare function must conform to the RB_SCAN's requirements.
554  */
555 static int
556 vtruncbuf_bp_metasync_cmp(struct buf *bp, void *data)
557 {
558         if (bp->b_loffset < 0)
559                 return(0);
560         return(1);
561 }
562
563 static int
564 vtruncbuf_bp_metasync(struct buf *bp, void *data)
565 {
566         struct vnode *vp = data;
567
568         if (bp->b_flags & B_DELWRI) {
569                 /*
570                  * Do not try to use a buffer we cannot immediately lock,
571                  * but sleep anyway to prevent a livelock.  The code will
572                  * loop until all buffers can be acted upon.
573                  */
574                 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) {
575                         if (BUF_LOCK(bp, LK_EXCLUSIVE|LK_SLEEPFAIL) == 0)
576                                 BUF_UNLOCK(bp);
577                 } else {
578                         bremfree(bp);
579                         if (bp->b_vp == vp)
580                                 bawrite(bp);
581                         else
582                                 bwrite(bp);
583                 }
584                 return(1);
585         } else {
586                 return(0);
587         }
588 }
589
590 /*
591  * vfsync - implements a multipass fsync on a file which understands
592  * dependancies and meta-data.  The passed vnode must be locked.  The 
593  * waitfor argument may be MNT_WAIT or MNT_NOWAIT, or MNT_LAZY.
594  *
595  * When fsyncing data asynchronously just do one consolidated pass starting
596  * with the most negative block number.  This may not get all the data due
597  * to dependancies.
598  *
599  * When fsyncing data synchronously do a data pass, then a metadata pass,
600  * then do additional data+metadata passes to try to get all the data out.
601  */
602 static int vfsync_wait_output(struct vnode *vp, 
603                             int (*waitoutput)(struct vnode *, struct thread *));
604 static int vfsync_data_only_cmp(struct buf *bp, void *data);
605 static int vfsync_meta_only_cmp(struct buf *bp, void *data);
606 static int vfsync_lazy_range_cmp(struct buf *bp, void *data);
607 static int vfsync_bp(struct buf *bp, void *data);
608
609 struct vfsync_info {
610         struct vnode *vp;
611         int synchronous;
612         int syncdeps;
613         int lazycount;
614         int lazylimit;
615         int skippedbufs;
616         int (*checkdef)(struct buf *);
617 };
618
619 int
620 vfsync(struct vnode *vp, int waitfor, int passes,
621         int (*checkdef)(struct buf *),
622         int (*waitoutput)(struct vnode *, struct thread *))
623 {
624         struct vfsync_info info;
625         lwkt_tokref vlock;
626         int error;
627
628         bzero(&info, sizeof(info));
629         info.vp = vp;
630         if ((info.checkdef = checkdef) == NULL)
631                 info.syncdeps = 1;
632
633         lwkt_gettoken(&vlock, &vp->v_token);
634
635         switch(waitfor) {
636         case MNT_LAZY:
637                 /*
638                  * Lazy (filesystem syncer typ) Asynchronous plus limit the
639                  * number of data (not meta) pages we try to flush to 1MB.
640                  * A non-zero return means that lazy limit was reached.
641                  */
642                 info.lazylimit = 1024 * 1024;
643                 info.syncdeps = 1;
644                 error = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, 
645                                 vfsync_lazy_range_cmp, vfsync_bp, &info);
646                 RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, 
647                                 vfsync_meta_only_cmp, vfsync_bp, &info);
648                 if (error == 0)
649                         vp->v_lazyw = 0;
650                 else if (!RB_EMPTY(&vp->v_rbdirty_tree))
651                         vn_syncer_add_to_worklist(vp, 1);
652                 error = 0;
653                 break;
654         case MNT_NOWAIT:
655                 /*
656                  * Asynchronous.  Do a data-only pass and a meta-only pass.
657                  */
658                 info.syncdeps = 1;
659                 RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, vfsync_data_only_cmp, 
660                         vfsync_bp, &info);
661                 RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, vfsync_meta_only_cmp, 
662                         vfsync_bp, &info);
663                 error = 0;
664                 break;
665         default:
666                 /*
667                  * Synchronous.  Do a data-only pass, then a meta-data+data
668                  * pass, then additional integrated passes to try to get
669                  * all the dependancies flushed.
670                  */
671                 RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, vfsync_data_only_cmp,
672                         vfsync_bp, &info);
673                 error = vfsync_wait_output(vp, waitoutput);
674                 if (error == 0) {
675                         info.skippedbufs = 0;
676                         RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, NULL,
677                                 vfsync_bp, &info);
678                         error = vfsync_wait_output(vp, waitoutput);
679                         if (info.skippedbufs)
680                                 kprintf("Warning: vfsync skipped %d dirty bufs in pass2!\n", info.skippedbufs);
681                 }
682                 while (error == 0 && passes > 0 &&
683                        !RB_EMPTY(&vp->v_rbdirty_tree)
684                 ) {
685                         if (--passes == 0) {
686                                 info.synchronous = 1;
687                                 info.syncdeps = 1;
688                         }
689                         error = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, NULL,
690                                 vfsync_bp, &info);
691                         if (error < 0)
692                                 error = -error;
693                         info.syncdeps = 1;
694                         if (error == 0)
695                                 error = vfsync_wait_output(vp, waitoutput);
696                 }
697                 break;
698         }
699         lwkt_reltoken(&vlock);
700         return(error);
701 }
702
703 static int
704 vfsync_wait_output(struct vnode *vp,
705                    int (*waitoutput)(struct vnode *, struct thread *))
706 {
707         int error;
708
709         error = bio_track_wait(&vp->v_track_write, 0, 0);
710         if (waitoutput)
711                 error = waitoutput(vp, curthread);
712         return(error);
713 }
714
715 static int
716 vfsync_data_only_cmp(struct buf *bp, void *data)
717 {
718         if (bp->b_loffset < 0)
719                 return(-1);
720         return(0);
721 }
722
723 static int
724 vfsync_meta_only_cmp(struct buf *bp, void *data)
725 {
726         if (bp->b_loffset < 0)
727                 return(0);
728         return(1);
729 }
730
731 static int
732 vfsync_lazy_range_cmp(struct buf *bp, void *data)
733 {
734         struct vfsync_info *info = data;
735         if (bp->b_loffset < info->vp->v_lazyw)
736                 return(-1);
737         return(0);
738 }
739
740 static int
741 vfsync_bp(struct buf *bp, void *data)
742 {
743         struct vfsync_info *info = data;
744         struct vnode *vp = info->vp;
745         int error;
746
747         /*
748          * if syncdeps is not set we do not try to write buffers which have
749          * dependancies.
750          */
751         if (!info->synchronous && info->syncdeps == 0 && info->checkdef(bp))
752                 return(0);
753
754         /*
755          * Ignore buffers that we cannot immediately lock.  XXX
756          */
757         if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) {
758                 kprintf("Warning: vfsync_bp skipping dirty buffer %p\n", bp);
759                 ++info->skippedbufs;
760                 return(0);
761         }
762         if ((bp->b_flags & B_DELWRI) == 0)
763                 panic("vfsync_bp: buffer not dirty");
764         if (vp != bp->b_vp)
765                 panic("vfsync_bp: buffer vp mismatch");
766
767         /*
768          * B_NEEDCOMMIT (primarily used by NFS) is a state where the buffer
769          * has been written but an additional handshake with the device
770          * is required before we can dispose of the buffer.  We have no idea
771          * how to do this so we have to skip these buffers.
772          */
773         if (bp->b_flags & B_NEEDCOMMIT) {
774                 BUF_UNLOCK(bp);
775                 return(0);
776         }
777
778         /*
779          * Ask bioops if it is ok to sync 
780          */
781         if (LIST_FIRST(&bp->b_dep) != NULL && buf_checkwrite(bp)) {
782                 bremfree(bp);
783                 brelse(bp);
784                 return(0);
785         }
786
787         if (info->synchronous) {
788                 /*
789                  * Synchronous flushing.  An error may be returned.
790                  */
791                 bremfree(bp);
792                 error = bwrite(bp);
793         } else { 
794                 /*
795                  * Asynchronous flushing.  A negative return value simply
796                  * stops the scan and is not considered an error.  We use
797                  * this to support limited MNT_LAZY flushes.
798                  */
799                 vp->v_lazyw = bp->b_loffset;
800                 if ((vp->v_flag & VOBJBUF) && (bp->b_flags & B_CLUSTEROK)) {
801                         info->lazycount += vfs_bio_awrite(bp);
802                 } else {
803                         info->lazycount += bp->b_bufsize;
804                         bremfree(bp);
805                         bawrite(bp);
806                 }
807                 if (info->lazylimit && info->lazycount >= info->lazylimit)
808                         error = 1;
809                 else
810                         error = 0;
811         }
812         return(-error);
813 }
814
815 /*
816  * Associate a buffer with a vnode.
817  *
818  * MPSAFE
819  */
820 int
821 bgetvp(struct vnode *vp, struct buf *bp)
822 {
823         lwkt_tokref vlock;
824
825         KASSERT(bp->b_vp == NULL, ("bgetvp: not free"));
826         KKASSERT((bp->b_flags & (B_HASHED|B_DELWRI|B_VNCLEAN|B_VNDIRTY)) == 0);
827
828         /*
829          * Insert onto list for new vnode.
830          */
831         lwkt_gettoken(&vlock, &vp->v_token);
832         if (buf_rb_hash_RB_INSERT(&vp->v_rbhash_tree, bp)) {
833                 lwkt_reltoken(&vlock);
834                 return (EEXIST);
835         }
836         bp->b_vp = vp;
837         bp->b_flags |= B_HASHED;
838         bp->b_flags |= B_VNCLEAN;
839         if (buf_rb_tree_RB_INSERT(&vp->v_rbclean_tree, bp))
840                 panic("reassignbuf: dup lblk/clean vp %p bp %p", vp, bp);
841         vhold(vp);
842         lwkt_reltoken(&vlock);
843         return(0);
844 }
845
846 /*
847  * Disassociate a buffer from a vnode.
848  */
849 void
850 brelvp(struct buf *bp)
851 {
852         struct vnode *vp;
853         lwkt_tokref vlock;
854
855         KASSERT(bp->b_vp != NULL, ("brelvp: NULL"));
856
857         /*
858          * Delete from old vnode list, if on one.
859          */
860         vp = bp->b_vp;
861         lwkt_gettoken(&vlock, &vp->v_token);
862         if (bp->b_flags & (B_VNDIRTY | B_VNCLEAN)) {
863                 if (bp->b_flags & B_VNDIRTY)
864                         buf_rb_tree_RB_REMOVE(&vp->v_rbdirty_tree, bp);
865                 else
866                         buf_rb_tree_RB_REMOVE(&vp->v_rbclean_tree, bp);
867                 bp->b_flags &= ~(B_VNDIRTY | B_VNCLEAN);
868         }
869         if (bp->b_flags & B_HASHED) {
870                 buf_rb_hash_RB_REMOVE(&vp->v_rbhash_tree, bp);
871                 bp->b_flags &= ~B_HASHED;
872         }
873         if ((vp->v_flag & VONWORKLST) && RB_EMPTY(&vp->v_rbdirty_tree)) {
874                 vp->v_flag &= ~VONWORKLST;
875                 LIST_REMOVE(vp, v_synclist);
876         }
877         bp->b_vp = NULL;
878         lwkt_reltoken(&vlock);
879
880         vdrop(vp);
881 }
882
883 /*
884  * Reassign the buffer to the proper clean/dirty list based on B_DELWRI.
885  * This routine is called when the state of the B_DELWRI bit is changed.
886  *
887  * MPSAFE
888  */
889 void
890 reassignbuf(struct buf *bp)
891 {
892         struct vnode *vp = bp->b_vp;
893         lwkt_tokref vlock;
894         int delay;
895
896         KKASSERT(vp != NULL);
897         ++reassignbufcalls;
898
899         /*
900          * B_PAGING flagged buffers cannot be reassigned because their vp
901          * is not fully linked in.
902          */
903         if (bp->b_flags & B_PAGING)
904                 panic("cannot reassign paging buffer");
905
906         lwkt_gettoken(&vlock, &vp->v_token);
907         if (bp->b_flags & B_DELWRI) {
908                 /*
909                  * Move to the dirty list, add the vnode to the worklist
910                  */
911                 if (bp->b_flags & B_VNCLEAN) {
912                         buf_rb_tree_RB_REMOVE(&vp->v_rbclean_tree, bp);
913                         bp->b_flags &= ~B_VNCLEAN;
914                 }
915                 if ((bp->b_flags & B_VNDIRTY) == 0) {
916                         if (buf_rb_tree_RB_INSERT(&vp->v_rbdirty_tree, bp)) {
917                                 panic("reassignbuf: dup lblk vp %p bp %p",
918                                       vp, bp);
919                         }
920                         bp->b_flags |= B_VNDIRTY;
921                 }
922                 if ((vp->v_flag & VONWORKLST) == 0) {
923                         switch (vp->v_type) {
924                         case VDIR:
925                                 delay = dirdelay;
926                                 break;
927                         case VCHR:
928                         case VBLK:
929                                 if (vp->v_rdev && 
930                                     vp->v_rdev->si_mountpoint != NULL) {
931                                         delay = metadelay;
932                                         break;
933                                 }
934                                 /* fall through */
935                         default:
936                                 delay = filedelay;
937                         }
938                         vn_syncer_add_to_worklist(vp, delay);
939                 }
940         } else {
941                 /*
942                  * Move to the clean list, remove the vnode from the worklist
943                  * if no dirty blocks remain.
944                  */
945                 if (bp->b_flags & B_VNDIRTY) {
946                         buf_rb_tree_RB_REMOVE(&vp->v_rbdirty_tree, bp);
947                         bp->b_flags &= ~B_VNDIRTY;
948                 }
949                 if ((bp->b_flags & B_VNCLEAN) == 0) {
950                         if (buf_rb_tree_RB_INSERT(&vp->v_rbclean_tree, bp)) {
951                                 panic("reassignbuf: dup lblk vp %p bp %p",
952                                       vp, bp);
953                         }
954                         bp->b_flags |= B_VNCLEAN;
955                 }
956                 if ((vp->v_flag & VONWORKLST) &&
957                     RB_EMPTY(&vp->v_rbdirty_tree)) {
958                         vp->v_flag &= ~VONWORKLST;
959                         LIST_REMOVE(vp, v_synclist);
960                 }
961         }
962         lwkt_reltoken(&vlock);
963 }
964
965 /*
966  * Create a vnode for a block device.
967  * Used for mounting the root file system.
968  */
969 extern struct vop_ops *devfs_vnode_dev_vops_p;
970 int
971 bdevvp(cdev_t dev, struct vnode **vpp)
972 {
973         struct vnode *vp;
974         struct vnode *nvp;
975         int error;
976
977         if (dev == NULL) {
978                 *vpp = NULLVP;
979                 return (ENXIO);
980         }
981         error = getspecialvnode(VT_NON, NULL, &devfs_vnode_dev_vops_p,
982                                 &nvp, 0, 0);
983         if (error) {
984                 *vpp = NULLVP;
985                 return (error);
986         }
987         vp = nvp;
988         vp->v_type = VCHR;
989         vp->v_rdev = dev;
990         vp->v_umajor = dev->si_umajor;
991         vp->v_uminor = dev->si_uminor;
992         vx_unlock(vp);
993         *vpp = vp;
994         return (0);
995 }
996
997 int
998 v_associate_rdev(struct vnode *vp, cdev_t dev)
999 {
1000         lwkt_tokref ilock;
1001
1002         if (dev == NULL)
1003                 return(ENXIO);
1004         if (dev_is_good(dev) == 0)
1005                 return(ENXIO);
1006         KKASSERT(vp->v_rdev == NULL);
1007         vp->v_rdev = reference_dev(dev);
1008         lwkt_gettoken(&ilock, &spechash_token);
1009         SLIST_INSERT_HEAD(&dev->si_hlist, vp, v_cdevnext);
1010         lwkt_reltoken(&ilock);
1011         return(0);
1012 }
1013
1014 void
1015 v_release_rdev(struct vnode *vp)
1016 {
1017         lwkt_tokref ilock;
1018         cdev_t dev;
1019
1020         if ((dev = vp->v_rdev) != NULL) {
1021                 lwkt_gettoken(&ilock, &spechash_token);
1022                 SLIST_REMOVE(&dev->si_hlist, vp, vnode, v_cdevnext);
1023                 vp->v_rdev = NULL;
1024                 release_dev(dev);
1025                 lwkt_reltoken(&ilock);
1026         }
1027 }
1028
1029 /*
1030  * Add a vnode to the alias list hung off the cdev_t.  We only associate
1031  * the device number with the vnode.  The actual device is not associated
1032  * until the vnode is opened (usually in spec_open()), and will be 
1033  * disassociated on last close.
1034  */
1035 void
1036 addaliasu(struct vnode *nvp, int x, int y)
1037 {
1038         if (nvp->v_type != VBLK && nvp->v_type != VCHR)
1039                 panic("addaliasu on non-special vnode");
1040         nvp->v_umajor = x;
1041         nvp->v_uminor = y;
1042 }
1043
1044 /*
1045  * Simple call that a filesystem can make to try to get rid of a
1046  * vnode.  It will fail if anyone is referencing the vnode (including
1047  * the caller).
1048  *
1049  * The filesystem can check whether its in-memory inode structure still
1050  * references the vp on return.
1051  */
1052 void
1053 vclean_unlocked(struct vnode *vp)
1054 {
1055         vx_get(vp);
1056         if (sysref_isactive(&vp->v_sysref) == 0)
1057                 vgone_vxlocked(vp);
1058         vx_put(vp);
1059 }
1060
1061 /*
1062  * Disassociate a vnode from its underlying filesystem. 
1063  *
1064  * The vnode must be VX locked and referenced.  In all normal situations
1065  * there are no active references.  If vclean_vxlocked() is called while
1066  * there are active references, the vnode is being ripped out and we have
1067  * to call VOP_CLOSE() as appropriate before we can reclaim it.
1068  */
1069 void
1070 vclean_vxlocked(struct vnode *vp, int flags)
1071 {
1072         int active;
1073         int n;
1074         vm_object_t object;
1075
1076         /*
1077          * If the vnode has already been reclaimed we have nothing to do.
1078          */
1079         if (vp->v_flag & VRECLAIMED)
1080                 return;
1081         vp->v_flag |= VRECLAIMED;
1082
1083         /*
1084          * Scrap the vfs cache
1085          */
1086         while (cache_inval_vp(vp, 0) != 0) {
1087                 kprintf("Warning: vnode %p clean/cache_resolution race detected\n", vp);
1088                 tsleep(vp, 0, "vclninv", 2);
1089         }
1090
1091         /*
1092          * Check to see if the vnode is in use. If so we have to reference it
1093          * before we clean it out so that its count cannot fall to zero and
1094          * generate a race against ourselves to recycle it.
1095          */
1096         active = sysref_isactive(&vp->v_sysref);
1097
1098         /*
1099          * Clean out any buffers associated with the vnode and destroy its
1100          * object, if it has one. 
1101          */
1102         vinvalbuf(vp, V_SAVE, 0, 0);
1103
1104         /*
1105          * If purging an active vnode (typically during a forced unmount
1106          * or reboot), it must be closed and deactivated before being
1107          * reclaimed.  This isn't really all that safe, but what can
1108          * we do? XXX.
1109          *
1110          * Note that neither of these routines unlocks the vnode.
1111          */
1112         if (active && (flags & DOCLOSE)) {
1113                 while ((n = vp->v_opencount) != 0) {
1114                         if (vp->v_writecount)
1115                                 VOP_CLOSE(vp, FWRITE|FNONBLOCK);
1116                         else
1117                                 VOP_CLOSE(vp, FNONBLOCK);
1118                         if (vp->v_opencount == n) {
1119                                 kprintf("Warning: unable to force-close"
1120                                        " vnode %p\n", vp);
1121                                 break;
1122                         }
1123                 }
1124         }
1125
1126         /*
1127          * If the vnode has not been deactivated, deactivated it.  Deactivation
1128          * can create new buffers and VM pages so we have to call vinvalbuf()
1129          * again to make sure they all get flushed.
1130          *
1131          * This can occur if a file with a link count of 0 needs to be
1132          * truncated.
1133          */
1134         if ((vp->v_flag & VINACTIVE) == 0) {
1135                 vp->v_flag |= VINACTIVE;
1136                 VOP_INACTIVE(vp);
1137                 vinvalbuf(vp, V_SAVE, 0, 0);
1138         }
1139
1140         /*
1141          * If the vnode has an object, destroy it.
1142          */
1143         if ((object = vp->v_object) != NULL) {
1144                 if (object->ref_count == 0) {
1145                         if ((object->flags & OBJ_DEAD) == 0)
1146                                 vm_object_terminate(object);
1147                 } else {
1148                         vm_pager_deallocate(object);
1149                 }
1150                 vp->v_flag &= ~VOBJBUF;
1151         }
1152         KKASSERT((vp->v_flag & VOBJBUF) == 0);
1153
1154         /*
1155          * Reclaim the vnode.
1156          */
1157         if (VOP_RECLAIM(vp))
1158                 panic("vclean: cannot reclaim");
1159
1160         /*
1161          * Done with purge, notify sleepers of the grim news.
1162          */
1163         vp->v_ops = &dead_vnode_vops_p;
1164         vn_pollgone(vp);
1165         vp->v_tag = VT_NON;
1166
1167         /*
1168          * If we are destroying an active vnode, reactivate it now that
1169          * we have reassociated it with deadfs.  This prevents the system
1170          * from crashing on the vnode due to it being unexpectedly marked
1171          * as inactive or reclaimed.
1172          */
1173         if (active && (flags & DOCLOSE)) {
1174                 vp->v_flag &= ~(VINACTIVE|VRECLAIMED);
1175         }
1176 }
1177
1178 /*
1179  * Eliminate all activity associated with the requested vnode
1180  * and with all vnodes aliased to the requested vnode.
1181  *
1182  * The vnode must be referenced but should not be locked.
1183  */
1184 int
1185 vrevoke(struct vnode *vp, struct ucred *cred)
1186 {
1187         struct vnode *vq;
1188         struct vnode *vqn;
1189         lwkt_tokref ilock;
1190         cdev_t dev;
1191         int error;
1192
1193         /*
1194          * If the vnode has a device association, scrap all vnodes associated
1195          * with the device.  Don't let the device disappear on us while we
1196          * are scrapping the vnodes.
1197          *
1198          * The passed vp will probably show up in the list, do not VX lock
1199          * it twice!
1200          *
1201          * Releasing the vnode's rdev here can mess up specfs's call to
1202          * device close, so don't do it.  The vnode has been disassociated
1203          * and the device will be closed after the last ref on the related
1204          * fp goes away (if not still open by e.g. the kernel).
1205          */
1206         if (vp->v_type != VCHR) {
1207                 error = fdrevoke(vp, DTYPE_VNODE, cred);
1208                 return (error);
1209         }
1210         if ((dev = vp->v_rdev) == NULL) {
1211                 return(0);
1212         }
1213         reference_dev(dev);
1214         lwkt_gettoken(&ilock, &spechash_token);
1215
1216         vqn = SLIST_FIRST(&dev->si_hlist);
1217         if (vqn)
1218                 vref(vqn);
1219         while ((vq = vqn) != NULL) {
1220                 vqn = SLIST_NEXT(vqn, v_cdevnext);
1221                 if (vqn)
1222                         vref(vqn);
1223                 fdrevoke(vq, DTYPE_VNODE, cred);
1224                 /*v_release_rdev(vq);*/
1225                 vrele(vq);
1226         }
1227         lwkt_reltoken(&ilock);
1228         dev_drevoke(dev);
1229         //release_dev(dev);
1230         return (0);
1231 }
1232
1233 /*
1234  * This is called when the object underlying a vnode is being destroyed,
1235  * such as in a remove().  Try to recycle the vnode immediately if the
1236  * only active reference is our reference.
1237  *
1238  * Directory vnodes in the namecache with children cannot be immediately
1239  * recycled because numerous VOP_N*() ops require them to be stable.
1240  */
1241 int
1242 vrecycle(struct vnode *vp)
1243 {
1244         if (vp->v_sysref.refcnt <= 1) {
1245                 if (cache_inval_vp_nonblock(vp))
1246                         return(0);
1247                 vgone_vxlocked(vp);
1248                 return (1);
1249         }
1250         return (0);
1251 }
1252
1253 /*
1254  * Return the maximum I/O size allowed for strategy calls on VP.
1255  *
1256  * If vp is VCHR or VBLK we dive the device, otherwise we use
1257  * the vp's mount info.
1258  */
1259 int
1260 vmaxiosize(struct vnode *vp)
1261 {
1262         if (vp->v_type == VBLK || vp->v_type == VCHR) {
1263                 return(vp->v_rdev->si_iosize_max);
1264         } else {
1265                 return(vp->v_mount->mnt_iosize_max);
1266         }
1267 }
1268
1269 /*
1270  * Eliminate all activity associated with a vnode in preparation for reuse.
1271  *
1272  * The vnode must be VX locked and refd and will remain VX locked and refd
1273  * on return.  This routine may be called with the vnode in any state, as
1274  * long as it is VX locked.  The vnode will be cleaned out and marked
1275  * VRECLAIMED but will not actually be reused until all existing refs and
1276  * holds go away.
1277  *
1278  * NOTE: This routine may be called on a vnode which has not yet been
1279  * already been deactivated (VOP_INACTIVE), or on a vnode which has
1280  * already been reclaimed.
1281  *
1282  * This routine is not responsible for placing us back on the freelist. 
1283  * Instead, it happens automatically when the caller releases the VX lock
1284  * (assuming there aren't any other references).
1285  */
1286
1287 void
1288 vgone_vxlocked(struct vnode *vp)
1289 {
1290         /*
1291          * assert that the VX lock is held.  This is an absolute requirement
1292          * now for vgone_vxlocked() to be called.
1293          */
1294         KKASSERT(vp->v_lock.lk_exclusivecount == 1);
1295
1296         /*
1297          * Clean out the filesystem specific data and set the VRECLAIMED
1298          * bit.  Also deactivate the vnode if necessary. 
1299          */
1300         vclean_vxlocked(vp, DOCLOSE);
1301
1302         /*
1303          * Delete from old mount point vnode list, if on one.
1304          */
1305         if (vp->v_mount != NULL)
1306                 insmntque(vp, NULL);
1307
1308         /*
1309          * If special device, remove it from special device alias list
1310          * if it is on one.  This should normally only occur if a vnode is
1311          * being revoked as the device should otherwise have been released
1312          * naturally.
1313          */
1314         if ((vp->v_type == VBLK || vp->v_type == VCHR) && vp->v_rdev != NULL) {
1315                 v_release_rdev(vp);
1316         }
1317
1318         /*
1319          * Set us to VBAD
1320          */
1321         vp->v_type = VBAD;
1322 }
1323
1324 /*
1325  * Lookup a vnode by device number.
1326  *
1327  * Returns non-zero and *vpp set to a vref'd vnode on success.
1328  * Returns zero on failure.
1329  */
1330 int
1331 vfinddev(cdev_t dev, enum vtype type, struct vnode **vpp)
1332 {
1333         lwkt_tokref ilock;
1334         struct vnode *vp;
1335
1336         lwkt_gettoken(&ilock, &spechash_token);
1337         SLIST_FOREACH(vp, &dev->si_hlist, v_cdevnext) {
1338                 if (type == vp->v_type) {
1339                         *vpp = vp;
1340                         vref(vp);
1341                         lwkt_reltoken(&ilock);
1342                         return (1);
1343                 }
1344         }
1345         lwkt_reltoken(&ilock);
1346         return (0);
1347 }
1348
1349 /*
1350  * Calculate the total number of references to a special device.  This
1351  * routine may only be called for VBLK and VCHR vnodes since v_rdev is
1352  * an overloaded field.  Since udev2dev can now return NULL, we have
1353  * to check for a NULL v_rdev.
1354  */
1355 int
1356 count_dev(cdev_t dev)
1357 {
1358         lwkt_tokref ilock;
1359         struct vnode *vp;
1360         int count = 0;
1361
1362         if (SLIST_FIRST(&dev->si_hlist)) {
1363                 lwkt_gettoken(&ilock, &spechash_token);
1364                 SLIST_FOREACH(vp, &dev->si_hlist, v_cdevnext) {
1365                         if (vp->v_sysref.refcnt > 0)
1366                                 count += vp->v_sysref.refcnt;
1367                 }
1368                 lwkt_reltoken(&ilock);
1369         }
1370         return(count);
1371 }
1372
1373 int
1374 vcount(struct vnode *vp)
1375 {
1376         if (vp->v_rdev == NULL)
1377                 return(0);
1378         return(count_dev(vp->v_rdev));
1379 }
1380
1381 /*
1382  * Initialize VMIO for a vnode.  This routine MUST be called before a
1383  * VFS can issue buffer cache ops on a vnode.  It is typically called
1384  * when a vnode is initialized from its inode.
1385  */
1386 int
1387 vinitvmio(struct vnode *vp, off_t filesize)
1388 {
1389         vm_object_t object;
1390         int error = 0;
1391
1392 retry:
1393         if ((object = vp->v_object) == NULL) {
1394                 object = vnode_pager_alloc(vp, filesize, 0, 0);
1395                 /*
1396                  * Dereference the reference we just created.  This assumes
1397                  * that the object is associated with the vp.
1398                  */
1399                 object->ref_count--;
1400                 vrele(vp);
1401         } else {
1402                 if (object->flags & OBJ_DEAD) {
1403                         vn_unlock(vp);
1404                         vm_object_dead_sleep(object, "vodead");
1405                         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1406                         goto retry;
1407                 }
1408         }
1409         KASSERT(vp->v_object != NULL, ("vinitvmio: NULL object"));
1410         vp->v_flag |= VOBJBUF;
1411         return (error);
1412 }
1413
1414
1415 /*
1416  * Print out a description of a vnode.
1417  */
1418 static char *typename[] =
1419 {"VNON", "VREG", "VDIR", "VBLK", "VCHR", "VLNK", "VSOCK", "VFIFO", "VBAD"};
1420
1421 void
1422 vprint(char *label, struct vnode *vp)
1423 {
1424         char buf[96];
1425
1426         if (label != NULL)
1427                 kprintf("%s: %p: ", label, (void *)vp);
1428         else
1429                 kprintf("%p: ", (void *)vp);
1430         kprintf("type %s, sysrefs %d, writecount %d, holdcnt %d,",
1431                 typename[vp->v_type],
1432                 vp->v_sysref.refcnt, vp->v_writecount, vp->v_auxrefs);
1433         buf[0] = '\0';
1434         if (vp->v_flag & VROOT)
1435                 strcat(buf, "|VROOT");
1436         if (vp->v_flag & VPFSROOT)
1437                 strcat(buf, "|VPFSROOT");
1438         if (vp->v_flag & VTEXT)
1439                 strcat(buf, "|VTEXT");
1440         if (vp->v_flag & VSYSTEM)
1441                 strcat(buf, "|VSYSTEM");
1442         if (vp->v_flag & VFREE)
1443                 strcat(buf, "|VFREE");
1444         if (vp->v_flag & VOBJBUF)
1445                 strcat(buf, "|VOBJBUF");
1446         if (buf[0] != '\0')
1447                 kprintf(" flags (%s)", &buf[1]);
1448         if (vp->v_data == NULL) {
1449                 kprintf("\n");
1450         } else {
1451                 kprintf("\n\t");
1452                 VOP_PRINT(vp);
1453         }
1454 }
1455
1456 #ifdef DDB
1457 #include <ddb/ddb.h>
1458
1459 static int db_show_locked_vnodes(struct mount *mp, void *data);
1460
1461 /*
1462  * List all of the locked vnodes in the system.
1463  * Called when debugging the kernel.
1464  */
1465 DB_SHOW_COMMAND(lockedvnodes, lockedvnodes)
1466 {
1467         kprintf("Locked vnodes\n");
1468         mountlist_scan(db_show_locked_vnodes, NULL, 
1469                         MNTSCAN_FORWARD|MNTSCAN_NOBUSY);
1470 }
1471
1472 static int
1473 db_show_locked_vnodes(struct mount *mp, void *data __unused)
1474 {
1475         struct vnode *vp;
1476
1477         TAILQ_FOREACH(vp, &mp->mnt_nvnodelist, v_nmntvnodes) {
1478                 if (vn_islocked(vp))
1479                         vprint(NULL, vp);
1480         }
1481         return(0);
1482 }
1483 #endif
1484
1485 /*
1486  * Top level filesystem related information gathering.
1487  */
1488 static int      sysctl_ovfs_conf (SYSCTL_HANDLER_ARGS);
1489
1490 static int
1491 vfs_sysctl(SYSCTL_HANDLER_ARGS)
1492 {
1493         int *name = (int *)arg1 - 1;    /* XXX */
1494         u_int namelen = arg2 + 1;       /* XXX */
1495         struct vfsconf *vfsp;
1496         int maxtypenum;
1497
1498 #if 1 || defined(COMPAT_PRELITE2)
1499         /* Resolve ambiguity between VFS_VFSCONF and VFS_GENERIC. */
1500         if (namelen == 1)
1501                 return (sysctl_ovfs_conf(oidp, arg1, arg2, req));
1502 #endif
1503
1504 #ifdef notyet
1505         /* all sysctl names at this level are at least name and field */
1506         if (namelen < 2)
1507                 return (ENOTDIR);               /* overloaded */
1508         if (name[0] != VFS_GENERIC) {
1509                 vfsp = vfsconf_find_by_typenum(name[0]);
1510                 if (vfsp == NULL)
1511                         return (EOPNOTSUPP);
1512                 return ((*vfsp->vfc_vfsops->vfs_sysctl)(&name[1], namelen - 1,
1513                     oldp, oldlenp, newp, newlen, p));
1514         }
1515 #endif
1516         switch (name[1]) {
1517         case VFS_MAXTYPENUM:
1518                 if (namelen != 2)
1519                         return (ENOTDIR);
1520                 maxtypenum = vfsconf_get_maxtypenum();
1521                 return (SYSCTL_OUT(req, &maxtypenum, sizeof(maxtypenum)));
1522         case VFS_CONF:
1523                 if (namelen != 3)
1524                         return (ENOTDIR);       /* overloaded */
1525                 vfsp = vfsconf_find_by_typenum(name[2]);
1526                 if (vfsp == NULL)
1527                         return (EOPNOTSUPP);
1528                 return (SYSCTL_OUT(req, vfsp, sizeof *vfsp));
1529         }
1530         return (EOPNOTSUPP);
1531 }
1532
1533 SYSCTL_NODE(_vfs, VFS_GENERIC, generic, CTLFLAG_RD, vfs_sysctl,
1534         "Generic filesystem");
1535
1536 #if 1 || defined(COMPAT_PRELITE2)
1537
1538 static int
1539 sysctl_ovfs_conf_iter(struct vfsconf *vfsp, void *data)
1540 {
1541         int error;
1542         struct ovfsconf ovfs;
1543         struct sysctl_req *req = (struct sysctl_req*) data;
1544
1545         bzero(&ovfs, sizeof(ovfs));
1546         ovfs.vfc_vfsops = vfsp->vfc_vfsops;     /* XXX used as flag */
1547         strcpy(ovfs.vfc_name, vfsp->vfc_name);
1548         ovfs.vfc_index = vfsp->vfc_typenum;
1549         ovfs.vfc_refcount = vfsp->vfc_refcount;
1550         ovfs.vfc_flags = vfsp->vfc_flags;
1551         error = SYSCTL_OUT(req, &ovfs, sizeof ovfs);
1552         if (error)
1553                 return error; /* abort iteration with error code */
1554         else
1555                 return 0; /* continue iterating with next element */
1556 }
1557
1558 static int
1559 sysctl_ovfs_conf(SYSCTL_HANDLER_ARGS)
1560 {
1561         return vfsconf_each(sysctl_ovfs_conf_iter, (void*)req);
1562 }
1563
1564 #endif /* 1 || COMPAT_PRELITE2 */
1565
1566 /*
1567  * Check to see if a filesystem is mounted on a block device.
1568  */
1569 int
1570 vfs_mountedon(struct vnode *vp)
1571 {
1572         cdev_t dev;
1573
1574         if ((dev = vp->v_rdev) == NULL) {
1575 /*              if (vp->v_type != VBLK)
1576                         dev = get_dev(vp->v_uminor, vp->v_umajor); */
1577         }
1578         if (dev != NULL && dev->si_mountpoint)
1579                 return (EBUSY);
1580         return (0);
1581 }
1582
1583 /*
1584  * Unmount all filesystems. The list is traversed in reverse order
1585  * of mounting to avoid dependencies.
1586  */
1587
1588 static int vfs_umountall_callback(struct mount *mp, void *data);
1589
1590 void
1591 vfs_unmountall(void)
1592 {
1593         int count;
1594
1595         do {
1596                 count = mountlist_scan(vfs_umountall_callback, 
1597                                         NULL, MNTSCAN_REVERSE|MNTSCAN_NOBUSY);
1598         } while (count);
1599 }
1600
1601 static
1602 int
1603 vfs_umountall_callback(struct mount *mp, void *data)
1604 {
1605         int error;
1606
1607         error = dounmount(mp, MNT_FORCE);
1608         if (error) {
1609                 mountlist_remove(mp);
1610                 kprintf("unmount of filesystem mounted from %s failed (", 
1611                         mp->mnt_stat.f_mntfromname);
1612                 if (error == EBUSY)
1613                         kprintf("BUSY)\n");
1614                 else
1615                         kprintf("%d)\n", error);
1616         }
1617         return(1);
1618 }
1619
1620 /*
1621  * Build hash lists of net addresses and hang them off the mount point.
1622  * Called by ufs_mount() to set up the lists of export addresses.
1623  */
1624 static int
1625 vfs_hang_addrlist(struct mount *mp, struct netexport *nep,
1626                 const struct export_args *argp)
1627 {
1628         struct netcred *np;
1629         struct radix_node_head *rnh;
1630         int i;
1631         struct radix_node *rn;
1632         struct sockaddr *saddr, *smask = 0;
1633         struct domain *dom;
1634         int error;
1635
1636         if (argp->ex_addrlen == 0) {
1637                 if (mp->mnt_flag & MNT_DEFEXPORTED)
1638                         return (EPERM);
1639                 np = &nep->ne_defexported;
1640                 np->netc_exflags = argp->ex_flags;
1641                 np->netc_anon = argp->ex_anon;
1642                 np->netc_anon.cr_ref = 1;
1643                 mp->mnt_flag |= MNT_DEFEXPORTED;
1644                 return (0);
1645         }
1646
1647         if (argp->ex_addrlen < 0 || argp->ex_addrlen > MLEN)
1648                 return (EINVAL);
1649         if (argp->ex_masklen < 0 || argp->ex_masklen > MLEN)
1650                 return (EINVAL);
1651
1652         i = sizeof(struct netcred) + argp->ex_addrlen + argp->ex_masklen;
1653         np = (struct netcred *) kmalloc(i, M_NETADDR, M_WAITOK | M_ZERO);
1654         saddr = (struct sockaddr *) (np + 1);
1655         if ((error = copyin(argp->ex_addr, (caddr_t) saddr, argp->ex_addrlen)))
1656                 goto out;
1657         if (saddr->sa_len > argp->ex_addrlen)
1658                 saddr->sa_len = argp->ex_addrlen;
1659         if (argp->ex_masklen) {
1660                 smask = (struct sockaddr *)((caddr_t)saddr + argp->ex_addrlen);
1661                 error = copyin(argp->ex_mask, (caddr_t)smask, argp->ex_masklen);
1662                 if (error)
1663                         goto out;
1664                 if (smask->sa_len > argp->ex_masklen)
1665                         smask->sa_len = argp->ex_masklen;
1666         }
1667         i = saddr->sa_family;
1668         if ((rnh = nep->ne_rtable[i]) == 0) {
1669                 /*
1670                  * Seems silly to initialize every AF when most are not used,
1671                  * do so on demand here
1672                  */
1673                 SLIST_FOREACH(dom, &domains, dom_next)
1674                         if (dom->dom_family == i && dom->dom_rtattach) {
1675                                 dom->dom_rtattach((void **) &nep->ne_rtable[i],
1676                                     dom->dom_rtoffset);
1677                                 break;
1678                         }
1679                 if ((rnh = nep->ne_rtable[i]) == 0) {
1680                         error = ENOBUFS;
1681                         goto out;
1682                 }
1683         }
1684         rn = (*rnh->rnh_addaddr) ((char *) saddr, (char *) smask, rnh,
1685             np->netc_rnodes);
1686         if (rn == 0 || np != (struct netcred *) rn) {   /* already exists */
1687                 error = EPERM;
1688                 goto out;
1689         }
1690         np->netc_exflags = argp->ex_flags;
1691         np->netc_anon = argp->ex_anon;
1692         np->netc_anon.cr_ref = 1;
1693         return (0);
1694 out:
1695         kfree(np, M_NETADDR);
1696         return (error);
1697 }
1698
1699 /* ARGSUSED */
1700 static int
1701 vfs_free_netcred(struct radix_node *rn, void *w)
1702 {
1703         struct radix_node_head *rnh = (struct radix_node_head *) w;
1704
1705         (*rnh->rnh_deladdr) (rn->rn_key, rn->rn_mask, rnh);
1706         kfree((caddr_t) rn, M_NETADDR);
1707         return (0);
1708 }
1709
1710 /*
1711  * Free the net address hash lists that are hanging off the mount points.
1712  */
1713 static void
1714 vfs_free_addrlist(struct netexport *nep)
1715 {
1716         int i;
1717         struct radix_node_head *rnh;
1718
1719         for (i = 0; i <= AF_MAX; i++)
1720                 if ((rnh = nep->ne_rtable[i])) {
1721                         (*rnh->rnh_walktree) (rnh, vfs_free_netcred,
1722                             (caddr_t) rnh);
1723                         kfree((caddr_t) rnh, M_RTABLE);
1724                         nep->ne_rtable[i] = 0;
1725                 }
1726 }
1727
1728 int
1729 vfs_export(struct mount *mp, struct netexport *nep,
1730            const struct export_args *argp)
1731 {
1732         int error;
1733
1734         if (argp->ex_flags & MNT_DELEXPORT) {
1735                 if (mp->mnt_flag & MNT_EXPUBLIC) {
1736                         vfs_setpublicfs(NULL, NULL, NULL);
1737                         mp->mnt_flag &= ~MNT_EXPUBLIC;
1738                 }
1739                 vfs_free_addrlist(nep);
1740                 mp->mnt_flag &= ~(MNT_EXPORTED | MNT_DEFEXPORTED);
1741         }
1742         if (argp->ex_flags & MNT_EXPORTED) {
1743                 if (argp->ex_flags & MNT_EXPUBLIC) {
1744                         if ((error = vfs_setpublicfs(mp, nep, argp)) != 0)
1745                                 return (error);
1746                         mp->mnt_flag |= MNT_EXPUBLIC;
1747                 }
1748                 if ((error = vfs_hang_addrlist(mp, nep, argp)))
1749                         return (error);
1750                 mp->mnt_flag |= MNT_EXPORTED;
1751         }
1752         return (0);
1753 }
1754
1755
1756 /*
1757  * Set the publicly exported filesystem (WebNFS). Currently, only
1758  * one public filesystem is possible in the spec (RFC 2054 and 2055)
1759  */
1760 int
1761 vfs_setpublicfs(struct mount *mp, struct netexport *nep,
1762                 const struct export_args *argp)
1763 {
1764         int error;
1765         struct vnode *rvp;
1766         char *cp;
1767
1768         /*
1769          * mp == NULL -> invalidate the current info, the FS is
1770          * no longer exported. May be called from either vfs_export
1771          * or unmount, so check if it hasn't already been done.
1772          */
1773         if (mp == NULL) {
1774                 if (nfs_pub.np_valid) {
1775                         nfs_pub.np_valid = 0;
1776                         if (nfs_pub.np_index != NULL) {
1777                                 FREE(nfs_pub.np_index, M_TEMP);
1778                                 nfs_pub.np_index = NULL;
1779                         }
1780                 }
1781                 return (0);
1782         }
1783
1784         /*
1785          * Only one allowed at a time.
1786          */
1787         if (nfs_pub.np_valid != 0 && mp != nfs_pub.np_mount)
1788                 return (EBUSY);
1789
1790         /*
1791          * Get real filehandle for root of exported FS.
1792          */
1793         bzero((caddr_t)&nfs_pub.np_handle, sizeof(nfs_pub.np_handle));
1794         nfs_pub.np_handle.fh_fsid = mp->mnt_stat.f_fsid;
1795
1796         if ((error = VFS_ROOT(mp, &rvp)))
1797                 return (error);
1798
1799         if ((error = VFS_VPTOFH(rvp, &nfs_pub.np_handle.fh_fid)))
1800                 return (error);
1801
1802         vput(rvp);
1803
1804         /*
1805          * If an indexfile was specified, pull it in.
1806          */
1807         if (argp->ex_indexfile != NULL) {
1808                 int namelen;
1809
1810                 error = vn_get_namelen(rvp, &namelen);
1811                 if (error)
1812                         return (error);
1813                 MALLOC(nfs_pub.np_index, char *, namelen, M_TEMP,
1814                     M_WAITOK);
1815                 error = copyinstr(argp->ex_indexfile, nfs_pub.np_index,
1816                     namelen, NULL);
1817                 if (!error) {
1818                         /*
1819                          * Check for illegal filenames.
1820                          */
1821                         for (cp = nfs_pub.np_index; *cp; cp++) {
1822                                 if (*cp == '/') {
1823                                         error = EINVAL;
1824                                         break;
1825                                 }
1826                         }
1827                 }
1828                 if (error) {
1829                         FREE(nfs_pub.np_index, M_TEMP);
1830                         return (error);
1831                 }
1832         }
1833
1834         nfs_pub.np_mount = mp;
1835         nfs_pub.np_valid = 1;
1836         return (0);
1837 }
1838
1839 struct netcred *
1840 vfs_export_lookup(struct mount *mp, struct netexport *nep,
1841                 struct sockaddr *nam)
1842 {
1843         struct netcred *np;
1844         struct radix_node_head *rnh;
1845         struct sockaddr *saddr;
1846
1847         np = NULL;
1848         if (mp->mnt_flag & MNT_EXPORTED) {
1849                 /*
1850                  * Lookup in the export list first.
1851                  */
1852                 if (nam != NULL) {
1853                         saddr = nam;
1854                         rnh = nep->ne_rtable[saddr->sa_family];
1855                         if (rnh != NULL) {
1856                                 np = (struct netcred *)
1857                                         (*rnh->rnh_matchaddr)((char *)saddr,
1858                                                               rnh);
1859                                 if (np && np->netc_rnodes->rn_flags & RNF_ROOT)
1860                                         np = NULL;
1861                         }
1862                 }
1863                 /*
1864                  * If no address match, use the default if it exists.
1865                  */
1866                 if (np == NULL && mp->mnt_flag & MNT_DEFEXPORTED)
1867                         np = &nep->ne_defexported;
1868         }
1869         return (np);
1870 }
1871
1872 /*
1873  * perform msync on all vnodes under a mount point.  The mount point must
1874  * be locked.  This code is also responsible for lazy-freeing unreferenced
1875  * vnodes whos VM objects no longer contain pages.
1876  *
1877  * NOTE: MNT_WAIT still skips vnodes in the VXLOCK state.
1878  *
1879  * NOTE: XXX VOP_PUTPAGES and friends requires that the vnode be locked,
1880  * but vnode_pager_putpages() doesn't lock the vnode.  We have to do it
1881  * way up in this high level function.
1882  */
1883 static int vfs_msync_scan1(struct mount *mp, struct vnode *vp, void *data);
1884 static int vfs_msync_scan2(struct mount *mp, struct vnode *vp, void *data);
1885
1886 void
1887 vfs_msync(struct mount *mp, int flags) 
1888 {
1889         int vmsc_flags;
1890
1891         vmsc_flags = VMSC_GETVP;
1892         if (flags != MNT_WAIT)
1893                 vmsc_flags |= VMSC_NOWAIT;
1894         vmntvnodescan(mp, vmsc_flags, vfs_msync_scan1, vfs_msync_scan2,
1895                         (void *)(intptr_t)flags);
1896 }
1897
1898 /*
1899  * scan1 is a fast pre-check.  There could be hundreds of thousands of
1900  * vnodes, we cannot afford to do anything heavy weight until we have a
1901  * fairly good indication that there is work to do.
1902  */
1903 static
1904 int
1905 vfs_msync_scan1(struct mount *mp, struct vnode *vp, void *data)
1906 {
1907         int flags = (int)(intptr_t)data;
1908
1909         if ((vp->v_flag & VRECLAIMED) == 0) {
1910                 if (vshouldmsync(vp))
1911                         return(0);      /* call scan2 */
1912                 if ((mp->mnt_flag & MNT_RDONLY) == 0 &&
1913                     (vp->v_flag & VOBJDIRTY) &&
1914                     (flags == MNT_WAIT || vn_islocked(vp) == 0)) {
1915                         return(0);      /* call scan2 */
1916                 }
1917         }
1918
1919         /*
1920          * do not call scan2, continue the loop
1921          */
1922         return(-1);
1923 }
1924
1925 /*
1926  * This callback is handed a locked vnode.
1927  */
1928 static
1929 int
1930 vfs_msync_scan2(struct mount *mp, struct vnode *vp, void *data)
1931 {
1932         vm_object_t obj;
1933         int flags = (int)(intptr_t)data;
1934
1935         if (vp->v_flag & VRECLAIMED)
1936                 return(0);
1937
1938         if ((mp->mnt_flag & MNT_RDONLY) == 0 && (vp->v_flag & VOBJDIRTY)) {
1939                 if ((obj = vp->v_object) != NULL) {
1940                         vm_object_page_clean(obj, 0, 0, 
1941                          flags == MNT_WAIT ? OBJPC_SYNC : OBJPC_NOSYNC);
1942                 }
1943         }
1944         return(0);
1945 }
1946
1947 /*
1948  * Record a process's interest in events which might happen to
1949  * a vnode.  Because poll uses the historic select-style interface
1950  * internally, this routine serves as both the ``check for any
1951  * pending events'' and the ``record my interest in future events''
1952  * functions.  (These are done together, while the lock is held,
1953  * to avoid race conditions.)
1954  */
1955 int
1956 vn_pollrecord(struct vnode *vp, int events)
1957 {
1958         lwkt_tokref vlock;
1959
1960         KKASSERT(curthread->td_proc != NULL);
1961
1962         lwkt_gettoken(&vlock, &vp->v_token);
1963         if (vp->v_pollinfo.vpi_revents & events) {
1964                 /*
1965                  * This leaves events we are not interested
1966                  * in available for the other process which
1967                  * which presumably had requested them
1968                  * (otherwise they would never have been
1969                  * recorded).
1970                  */
1971                 events &= vp->v_pollinfo.vpi_revents;
1972                 vp->v_pollinfo.vpi_revents &= ~events;
1973
1974                 lwkt_reltoken(&vlock);
1975                 return events;
1976         }
1977         vp->v_pollinfo.vpi_events |= events;
1978         selrecord(curthread, &vp->v_pollinfo.vpi_selinfo);
1979         lwkt_reltoken(&vlock);
1980         return 0;
1981 }
1982
1983 /*
1984  * Note the occurrence of an event.  If the VN_POLLEVENT macro is used,
1985  * it is possible for us to miss an event due to race conditions, but
1986  * that condition is expected to be rare, so for the moment it is the
1987  * preferred interface.
1988  */
1989 void
1990 vn_pollevent(struct vnode *vp, int events)
1991 {
1992         lwkt_tokref vlock;
1993
1994         lwkt_gettoken(&vlock, &vp->v_token);
1995         if (vp->v_pollinfo.vpi_events & events) {
1996                 /*
1997                  * We clear vpi_events so that we don't
1998                  * call selwakeup() twice if two events are
1999                  * posted before the polling process(es) is
2000                  * awakened.  This also ensures that we take at
2001                  * most one selwakeup() if the polling process
2002                  * is no longer interested.  However, it does
2003                  * mean that only one event can be noticed at
2004                  * a time.  (Perhaps we should only clear those
2005                  * event bits which we note?) XXX
2006                  */
2007                 vp->v_pollinfo.vpi_events = 0;  /* &= ~events ??? */
2008                 vp->v_pollinfo.vpi_revents |= events;
2009                 selwakeup(&vp->v_pollinfo.vpi_selinfo);
2010         }
2011         lwkt_reltoken(&vlock);
2012 }
2013
2014 /*
2015  * Wake up anyone polling on vp because it is being revoked.
2016  * This depends on dead_poll() returning POLLHUP for correct
2017  * behavior.
2018  */
2019 void
2020 vn_pollgone(struct vnode *vp)
2021 {
2022         lwkt_tokref vlock;
2023
2024         lwkt_gettoken(&vlock, &vp->v_token);
2025         if (vp->v_pollinfo.vpi_events) {
2026                 vp->v_pollinfo.vpi_events = 0;
2027                 selwakeup(&vp->v_pollinfo.vpi_selinfo);
2028         }
2029         lwkt_reltoken(&vlock);
2030 }
2031
2032 /*
2033  * extract the cdev_t from a VBLK or VCHR.  The vnode must have been opened
2034  * (or v_rdev might be NULL).
2035  */
2036 cdev_t
2037 vn_todev(struct vnode *vp)
2038 {
2039         if (vp->v_type != VBLK && vp->v_type != VCHR)
2040                 return (NULL);
2041         KKASSERT(vp->v_rdev != NULL);
2042         return (vp->v_rdev);
2043 }
2044
2045 /*
2046  * Check if vnode represents a disk device.  The vnode does not need to be
2047  * opened.
2048  *
2049  * MPALMOSTSAFE
2050  */
2051 int
2052 vn_isdisk(struct vnode *vp, int *errp)
2053 {
2054         cdev_t dev;
2055
2056         if (vp->v_type != VCHR) {
2057                 if (errp != NULL)
2058                         *errp = ENOTBLK;
2059                 return (0);
2060         }
2061
2062         dev = vp->v_rdev;
2063
2064         if (dev == NULL) {
2065                 if (errp != NULL)
2066                         *errp = ENXIO;
2067                 return (0);
2068         }
2069         if (dev_is_good(dev) == 0) {
2070                 if (errp != NULL)
2071                         *errp = ENXIO;
2072                 return (0);
2073         }
2074         if ((dev_dflags(dev) & D_DISK) == 0) {
2075                 if (errp != NULL)
2076                         *errp = ENOTBLK;
2077                 return (0);
2078         }
2079         if (errp != NULL)
2080                 *errp = 0;
2081         return (1);
2082 }
2083
2084 int
2085 vn_get_namelen(struct vnode *vp, int *namelen)
2086 {
2087         int error;
2088         register_t retval[2];
2089
2090         error = VOP_PATHCONF(vp, _PC_NAME_MAX, retval);
2091         if (error)
2092                 return (error);
2093         *namelen = (int)retval[0];
2094         return (0);
2095 }
2096
2097 int
2098 vop_write_dirent(int *error, struct uio *uio, ino_t d_ino, uint8_t d_type, 
2099                 uint16_t d_namlen, const char *d_name)
2100 {
2101         struct dirent *dp;
2102         size_t len;
2103
2104         len = _DIRENT_RECLEN(d_namlen);
2105         if (len > uio->uio_resid)
2106                 return(1);
2107
2108         dp = kmalloc(len, M_TEMP, M_WAITOK | M_ZERO);
2109
2110         dp->d_ino = d_ino;
2111         dp->d_namlen = d_namlen;
2112         dp->d_type = d_type;
2113         bcopy(d_name, dp->d_name, d_namlen);
2114
2115         *error = uiomove((caddr_t)dp, len, uio);
2116
2117         kfree(dp, M_TEMP);
2118
2119         return(0);
2120 }
2121
2122 void
2123 vn_mark_atime(struct vnode *vp, struct thread *td)
2124 {
2125         struct proc *p = td->td_proc;
2126         struct ucred *cred = p ? p->p_ucred : proc0.p_ucred;
2127
2128         if ((vp->v_mount->mnt_flag & (MNT_NOATIME | MNT_RDONLY)) == 0) {
2129                 VOP_MARKATIME(vp, cred);
2130         }
2131 }