]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/vfs_default.c
MFC r304174:
[FreeBSD/FreeBSD.git] / sys / kern / vfs_default.c
1 /*-
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed
6  * to Berkeley by John Heidemann of the UCLA Ficus project.
7  *
8  * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project
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
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/bio.h>
41 #include <sys/buf.h>
42 #include <sys/conf.h>
43 #include <sys/event.h>
44 #include <sys/kernel.h>
45 #include <sys/limits.h>
46 #include <sys/lock.h>
47 #include <sys/lockf.h>
48 #include <sys/malloc.h>
49 #include <sys/mount.h>
50 #include <sys/namei.h>
51 #include <sys/rwlock.h>
52 #include <sys/fcntl.h>
53 #include <sys/unistd.h>
54 #include <sys/vnode.h>
55 #include <sys/dirent.h>
56 #include <sys/poll.h>
57
58 #include <security/mac/mac_framework.h>
59
60 #include <vm/vm.h>
61 #include <vm/vm_object.h>
62 #include <vm/vm_extern.h>
63 #include <vm/pmap.h>
64 #include <vm/vm_map.h>
65 #include <vm/vm_page.h>
66 #include <vm/vm_pager.h>
67 #include <vm/vnode_pager.h>
68
69 static int      vop_nolookup(struct vop_lookup_args *);
70 static int      vop_norename(struct vop_rename_args *);
71 static int      vop_nostrategy(struct vop_strategy_args *);
72 static int      get_next_dirent(struct vnode *vp, struct dirent **dpp,
73                                 char *dirbuf, int dirbuflen, off_t *off,
74                                 char **cpos, int *len, int *eofflag,
75                                 struct thread *td);
76 static int      dirent_exists(struct vnode *vp, const char *dirname,
77                               struct thread *td);
78
79 #define DIRENT_MINSIZE (sizeof(struct dirent) - (MAXNAMLEN+1) + 4)
80
81 static int vop_stdis_text(struct vop_is_text_args *ap);
82 static int vop_stdset_text(struct vop_set_text_args *ap);
83 static int vop_stdunset_text(struct vop_unset_text_args *ap);
84 static int vop_stdget_writecount(struct vop_get_writecount_args *ap);
85 static int vop_stdadd_writecount(struct vop_add_writecount_args *ap);
86 static int vop_stdgetpages_async(struct vop_getpages_async_args *ap);
87
88 /*
89  * This vnode table stores what we want to do if the filesystem doesn't
90  * implement a particular VOP.
91  *
92  * If there is no specific entry here, we will return EOPNOTSUPP.
93  *
94  * Note that every filesystem has to implement either vop_access
95  * or vop_accessx; failing to do so will result in immediate crash
96  * due to stack overflow, as vop_stdaccess() calls vop_stdaccessx(),
97  * which calls vop_stdaccess() etc.
98  */
99
100 struct vop_vector default_vnodeops = {
101         .vop_default =          NULL,
102         .vop_bypass =           VOP_EOPNOTSUPP,
103
104         .vop_access =           vop_stdaccess,
105         .vop_accessx =          vop_stdaccessx,
106         .vop_advise =           vop_stdadvise,
107         .vop_advlock =          vop_stdadvlock,
108         .vop_advlockasync =     vop_stdadvlockasync,
109         .vop_advlockpurge =     vop_stdadvlockpurge,
110         .vop_allocate =         vop_stdallocate,
111         .vop_bmap =             vop_stdbmap,
112         .vop_close =            VOP_NULL,
113         .vop_fsync =            VOP_NULL,
114         .vop_getpages =         vop_stdgetpages,
115         .vop_getpages_async =   vop_stdgetpages_async,
116         .vop_getwritemount =    vop_stdgetwritemount,
117         .vop_inactive =         VOP_NULL,
118         .vop_ioctl =            VOP_ENOTTY,
119         .vop_kqfilter =         vop_stdkqfilter,
120         .vop_islocked =         vop_stdislocked,
121         .vop_lock1 =            vop_stdlock,
122         .vop_lookup =           vop_nolookup,
123         .vop_open =             VOP_NULL,
124         .vop_pathconf =         VOP_EINVAL,
125         .vop_poll =             vop_nopoll,
126         .vop_putpages =         vop_stdputpages,
127         .vop_readlink =         VOP_EINVAL,
128         .vop_rename =           vop_norename,
129         .vop_revoke =           VOP_PANIC,
130         .vop_strategy =         vop_nostrategy,
131         .vop_unlock =           vop_stdunlock,
132         .vop_vptocnp =          vop_stdvptocnp,
133         .vop_vptofh =           vop_stdvptofh,
134         .vop_unp_bind =         vop_stdunp_bind,
135         .vop_unp_connect =      vop_stdunp_connect,
136         .vop_unp_detach =       vop_stdunp_detach,
137         .vop_is_text =          vop_stdis_text,
138         .vop_set_text =         vop_stdset_text,
139         .vop_unset_text =       vop_stdunset_text,
140         .vop_get_writecount =   vop_stdget_writecount,
141         .vop_add_writecount =   vop_stdadd_writecount,
142 };
143
144 /*
145  * Series of placeholder functions for various error returns for
146  * VOPs.
147  */
148
149 int
150 vop_eopnotsupp(struct vop_generic_args *ap)
151 {
152         /*
153         printf("vop_notsupp[%s]\n", ap->a_desc->vdesc_name);
154         */
155
156         return (EOPNOTSUPP);
157 }
158
159 int
160 vop_ebadf(struct vop_generic_args *ap)
161 {
162
163         return (EBADF);
164 }
165
166 int
167 vop_enotty(struct vop_generic_args *ap)
168 {
169
170         return (ENOTTY);
171 }
172
173 int
174 vop_einval(struct vop_generic_args *ap)
175 {
176
177         return (EINVAL);
178 }
179
180 int
181 vop_enoent(struct vop_generic_args *ap)
182 {
183
184         return (ENOENT);
185 }
186
187 int
188 vop_null(struct vop_generic_args *ap)
189 {
190
191         return (0);
192 }
193
194 /*
195  * Helper function to panic on some bad VOPs in some filesystems.
196  */
197 int
198 vop_panic(struct vop_generic_args *ap)
199 {
200
201         panic("filesystem goof: vop_panic[%s]", ap->a_desc->vdesc_name);
202 }
203
204 /*
205  * vop_std<something> and vop_no<something> are default functions for use by
206  * filesystems that need the "default reasonable" implementation for a
207  * particular operation.
208  *
209  * The documentation for the operations they implement exists (if it exists)
210  * in the VOP_<SOMETHING>(9) manpage (all uppercase).
211  */
212
213 /*
214  * Default vop for filesystems that do not support name lookup
215  */
216 static int
217 vop_nolookup(ap)
218         struct vop_lookup_args /* {
219                 struct vnode *a_dvp;
220                 struct vnode **a_vpp;
221                 struct componentname *a_cnp;
222         } */ *ap;
223 {
224
225         *ap->a_vpp = NULL;
226         return (ENOTDIR);
227 }
228
229 /*
230  * vop_norename:
231  *
232  * Handle unlock and reference counting for arguments of vop_rename
233  * for filesystems that do not implement rename operation.
234  */
235 static int
236 vop_norename(struct vop_rename_args *ap)
237 {
238
239         vop_rename_fail(ap);
240         return (EOPNOTSUPP);
241 }
242
243 /*
244  *      vop_nostrategy:
245  *
246  *      Strategy routine for VFS devices that have none.
247  *
248  *      BIO_ERROR and B_INVAL must be cleared prior to calling any strategy
249  *      routine.  Typically this is done for a BIO_READ strategy call.
250  *      Typically B_INVAL is assumed to already be clear prior to a write
251  *      and should not be cleared manually unless you just made the buffer
252  *      invalid.  BIO_ERROR should be cleared either way.
253  */
254
255 static int
256 vop_nostrategy (struct vop_strategy_args *ap)
257 {
258         printf("No strategy for buffer at %p\n", ap->a_bp);
259         vprint("vnode", ap->a_vp);
260         ap->a_bp->b_ioflags |= BIO_ERROR;
261         ap->a_bp->b_error = EOPNOTSUPP;
262         bufdone(ap->a_bp);
263         return (EOPNOTSUPP);
264 }
265
266 static int
267 get_next_dirent(struct vnode *vp, struct dirent **dpp, char *dirbuf,
268                 int dirbuflen, off_t *off, char **cpos, int *len,
269                 int *eofflag, struct thread *td)
270 {
271         int error, reclen;
272         struct uio uio;
273         struct iovec iov;
274         struct dirent *dp;
275
276         KASSERT(VOP_ISLOCKED(vp), ("vp %p is not locked", vp));
277         KASSERT(vp->v_type == VDIR, ("vp %p is not a directory", vp));
278
279         if (*len == 0) {
280                 iov.iov_base = dirbuf;
281                 iov.iov_len = dirbuflen;
282
283                 uio.uio_iov = &iov;
284                 uio.uio_iovcnt = 1;
285                 uio.uio_offset = *off;
286                 uio.uio_resid = dirbuflen;
287                 uio.uio_segflg = UIO_SYSSPACE;
288                 uio.uio_rw = UIO_READ;
289                 uio.uio_td = td;
290
291                 *eofflag = 0;
292
293 #ifdef MAC
294                 error = mac_vnode_check_readdir(td->td_ucred, vp);
295                 if (error == 0)
296 #endif
297                         error = VOP_READDIR(vp, &uio, td->td_ucred, eofflag,
298                                 NULL, NULL);
299                 if (error)
300                         return (error);
301
302                 *off = uio.uio_offset;
303
304                 *cpos = dirbuf;
305                 *len = (dirbuflen - uio.uio_resid);
306
307                 if (*len == 0)
308                         return (ENOENT);
309         }
310
311         dp = (struct dirent *)(*cpos);
312         reclen = dp->d_reclen;
313         *dpp = dp;
314
315         /* check for malformed directory.. */
316         if (reclen < DIRENT_MINSIZE)
317                 return (EINVAL);
318
319         *cpos += reclen;
320         *len -= reclen;
321
322         return (0);
323 }
324
325 /*
326  * Check if a named file exists in a given directory vnode.
327  */
328 static int
329 dirent_exists(struct vnode *vp, const char *dirname, struct thread *td)
330 {
331         char *dirbuf, *cpos;
332         int error, eofflag, dirbuflen, len, found;
333         off_t off;
334         struct dirent *dp;
335         struct vattr va;
336
337         KASSERT(VOP_ISLOCKED(vp), ("vp %p is not locked", vp));
338         KASSERT(vp->v_type == VDIR, ("vp %p is not a directory", vp));
339
340         found = 0;
341
342         error = VOP_GETATTR(vp, &va, td->td_ucred);
343         if (error)
344                 return (found);
345
346         dirbuflen = DEV_BSIZE;
347         if (dirbuflen < va.va_blocksize)
348                 dirbuflen = va.va_blocksize;
349         dirbuf = (char *)malloc(dirbuflen, M_TEMP, M_WAITOK);
350
351         off = 0;
352         len = 0;
353         do {
354                 error = get_next_dirent(vp, &dp, dirbuf, dirbuflen, &off,
355                                         &cpos, &len, &eofflag, td);
356                 if (error)
357                         goto out;
358
359                 if (dp->d_type != DT_WHT && dp->d_fileno != 0 &&
360                     strcmp(dp->d_name, dirname) == 0) {
361                         found = 1;
362                         goto out;
363                 }
364         } while (len > 0 || !eofflag);
365
366 out:
367         free(dirbuf, M_TEMP);
368         return (found);
369 }
370
371 int
372 vop_stdaccess(struct vop_access_args *ap)
373 {
374
375         KASSERT((ap->a_accmode & ~(VEXEC | VWRITE | VREAD | VADMIN |
376             VAPPEND)) == 0, ("invalid bit in accmode"));
377
378         return (VOP_ACCESSX(ap->a_vp, ap->a_accmode, ap->a_cred, ap->a_td));
379 }
380
381 int
382 vop_stdaccessx(struct vop_accessx_args *ap)
383 {
384         int error;
385         accmode_t accmode = ap->a_accmode;
386
387         error = vfs_unixify_accmode(&accmode);
388         if (error != 0)
389                 return (error);
390
391         if (accmode == 0)
392                 return (0);
393
394         return (VOP_ACCESS(ap->a_vp, accmode, ap->a_cred, ap->a_td));
395 }
396
397 /*
398  * Advisory record locking support
399  */
400 int
401 vop_stdadvlock(struct vop_advlock_args *ap)
402 {
403         struct vnode *vp;
404         struct vattr vattr;
405         int error;
406
407         vp = ap->a_vp;
408         if (ap->a_fl->l_whence == SEEK_END) {
409                 /*
410                  * The NFSv4 server must avoid doing a vn_lock() here, since it
411                  * can deadlock the nfsd threads, due to a LOR.  Fortunately
412                  * the NFSv4 server always uses SEEK_SET and this code is
413                  * only required for the SEEK_END case.
414                  */
415                 vn_lock(vp, LK_SHARED | LK_RETRY);
416                 error = VOP_GETATTR(vp, &vattr, curthread->td_ucred);
417                 VOP_UNLOCK(vp, 0);
418                 if (error)
419                         return (error);
420         } else
421                 vattr.va_size = 0;
422
423         return (lf_advlock(ap, &(vp->v_lockf), vattr.va_size));
424 }
425
426 int
427 vop_stdadvlockasync(struct vop_advlockasync_args *ap)
428 {
429         struct vnode *vp;
430         struct vattr vattr;
431         int error;
432
433         vp = ap->a_vp;
434         if (ap->a_fl->l_whence == SEEK_END) {
435                 /* The size argument is only needed for SEEK_END. */
436                 vn_lock(vp, LK_SHARED | LK_RETRY);
437                 error = VOP_GETATTR(vp, &vattr, curthread->td_ucred);
438                 VOP_UNLOCK(vp, 0);
439                 if (error)
440                         return (error);
441         } else
442                 vattr.va_size = 0;
443
444         return (lf_advlockasync(ap, &(vp->v_lockf), vattr.va_size));
445 }
446
447 int
448 vop_stdadvlockpurge(struct vop_advlockpurge_args *ap)
449 {
450         struct vnode *vp;
451
452         vp = ap->a_vp;
453         lf_purgelocks(vp, &vp->v_lockf);
454         return (0);
455 }
456
457 /*
458  * vop_stdpathconf:
459  *
460  * Standard implementation of POSIX pathconf, to get information about limits
461  * for a filesystem.
462  * Override per filesystem for the case where the filesystem has smaller
463  * limits.
464  */
465 int
466 vop_stdpathconf(ap)
467         struct vop_pathconf_args /* {
468         struct vnode *a_vp;
469         int a_name;
470         int *a_retval;
471         } */ *ap;
472 {
473
474         switch (ap->a_name) {
475                 case _PC_ASYNC_IO:
476                         *ap->a_retval = _POSIX_ASYNCHRONOUS_IO;
477                         return (0);
478                 case _PC_NAME_MAX:
479                         *ap->a_retval = NAME_MAX;
480                         return (0);
481                 case _PC_PATH_MAX:
482                         *ap->a_retval = PATH_MAX;
483                         return (0);
484                 case _PC_LINK_MAX:
485                         *ap->a_retval = LINK_MAX;
486                         return (0);
487                 case _PC_MAX_CANON:
488                         *ap->a_retval = MAX_CANON;
489                         return (0);
490                 case _PC_MAX_INPUT:
491                         *ap->a_retval = MAX_INPUT;
492                         return (0);
493                 case _PC_PIPE_BUF:
494                         *ap->a_retval = PIPE_BUF;
495                         return (0);
496                 case _PC_CHOWN_RESTRICTED:
497                         *ap->a_retval = 1;
498                         return (0);
499                 case _PC_VDISABLE:
500                         *ap->a_retval = _POSIX_VDISABLE;
501                         return (0);
502                 default:
503                         return (EINVAL);
504         }
505         /* NOTREACHED */
506 }
507
508 /*
509  * Standard lock, unlock and islocked functions.
510  */
511 int
512 vop_stdlock(ap)
513         struct vop_lock1_args /* {
514                 struct vnode *a_vp;
515                 int a_flags;
516                 char *file;
517                 int line;
518         } */ *ap;
519 {
520         struct vnode *vp = ap->a_vp;
521
522         return (_lockmgr_args(vp->v_vnlock, ap->a_flags, VI_MTX(vp),
523             LK_WMESG_DEFAULT, LK_PRIO_DEFAULT, LK_TIMO_DEFAULT, ap->a_file,
524             ap->a_line));
525 }
526
527 /* See above. */
528 int
529 vop_stdunlock(ap)
530         struct vop_unlock_args /* {
531                 struct vnode *a_vp;
532                 int a_flags;
533         } */ *ap;
534 {
535         struct vnode *vp = ap->a_vp;
536
537         return (lockmgr(vp->v_vnlock, ap->a_flags | LK_RELEASE, VI_MTX(vp)));
538 }
539
540 /* See above. */
541 int
542 vop_stdislocked(ap)
543         struct vop_islocked_args /* {
544                 struct vnode *a_vp;
545         } */ *ap;
546 {
547
548         return (lockstatus(ap->a_vp->v_vnlock));
549 }
550
551 /*
552  * Return true for select/poll.
553  */
554 int
555 vop_nopoll(ap)
556         struct vop_poll_args /* {
557                 struct vnode *a_vp;
558                 int  a_events;
559                 struct ucred *a_cred;
560                 struct thread *a_td;
561         } */ *ap;
562 {
563
564         return (poll_no_poll(ap->a_events));
565 }
566
567 /*
568  * Implement poll for local filesystems that support it.
569  */
570 int
571 vop_stdpoll(ap)
572         struct vop_poll_args /* {
573                 struct vnode *a_vp;
574                 int  a_events;
575                 struct ucred *a_cred;
576                 struct thread *a_td;
577         } */ *ap;
578 {
579         if (ap->a_events & ~POLLSTANDARD)
580                 return (vn_pollrecord(ap->a_vp, ap->a_td, ap->a_events));
581         return (ap->a_events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
582 }
583
584 /*
585  * Return our mount point, as we will take charge of the writes.
586  */
587 int
588 vop_stdgetwritemount(ap)
589         struct vop_getwritemount_args /* {
590                 struct vnode *a_vp;
591                 struct mount **a_mpp;
592         } */ *ap;
593 {
594         struct mount *mp;
595
596         /*
597          * XXX Since this is called unlocked we may be recycled while
598          * attempting to ref the mount.  If this is the case or mountpoint
599          * will be set to NULL.  We only have to prevent this call from
600          * returning with a ref to an incorrect mountpoint.  It is not
601          * harmful to return with a ref to our previous mountpoint.
602          */
603         mp = ap->a_vp->v_mount;
604         if (mp != NULL) {
605                 vfs_ref(mp);
606                 if (mp != ap->a_vp->v_mount) {
607                         vfs_rel(mp);
608                         mp = NULL;
609                 }
610         }
611         *(ap->a_mpp) = mp;
612         return (0);
613 }
614
615 /* XXX Needs good comment and VOP_BMAP(9) manpage */
616 int
617 vop_stdbmap(ap)
618         struct vop_bmap_args /* {
619                 struct vnode *a_vp;
620                 daddr_t  a_bn;
621                 struct bufobj **a_bop;
622                 daddr_t *a_bnp;
623                 int *a_runp;
624                 int *a_runb;
625         } */ *ap;
626 {
627
628         if (ap->a_bop != NULL)
629                 *ap->a_bop = &ap->a_vp->v_bufobj;
630         if (ap->a_bnp != NULL)
631                 *ap->a_bnp = ap->a_bn * btodb(ap->a_vp->v_mount->mnt_stat.f_iosize);
632         if (ap->a_runp != NULL)
633                 *ap->a_runp = 0;
634         if (ap->a_runb != NULL)
635                 *ap->a_runb = 0;
636         return (0);
637 }
638
639 int
640 vop_stdfsync(ap)
641         struct vop_fsync_args /* {
642                 struct vnode *a_vp;
643                 int a_waitfor;
644                 struct thread *a_td;
645         } */ *ap;
646 {
647         struct vnode *vp = ap->a_vp;
648         struct buf *bp;
649         struct bufobj *bo;
650         struct buf *nbp;
651         int error = 0;
652         int maxretry = 1000;     /* large, arbitrarily chosen */
653
654         bo = &vp->v_bufobj;
655         BO_LOCK(bo);
656 loop1:
657         /*
658          * MARK/SCAN initialization to avoid infinite loops.
659          */
660         TAILQ_FOREACH(bp, &bo->bo_dirty.bv_hd, b_bobufs) {
661                 bp->b_vflags &= ~BV_SCANNED;
662                 bp->b_error = 0;
663         }
664
665         /*
666          * Flush all dirty buffers associated with a vnode.
667          */
668 loop2:
669         TAILQ_FOREACH_SAFE(bp, &bo->bo_dirty.bv_hd, b_bobufs, nbp) {
670                 if ((bp->b_vflags & BV_SCANNED) != 0)
671                         continue;
672                 bp->b_vflags |= BV_SCANNED;
673                 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL)) {
674                         if (ap->a_waitfor != MNT_WAIT)
675                                 continue;
676                         if (BUF_LOCK(bp,
677                             LK_EXCLUSIVE | LK_INTERLOCK | LK_SLEEPFAIL,
678                             BO_LOCKPTR(bo)) != 0) {
679                                 BO_LOCK(bo);
680                                 goto loop1;
681                         }
682                         BO_LOCK(bo);
683                 }
684                 BO_UNLOCK(bo);
685                 KASSERT(bp->b_bufobj == bo,
686                     ("bp %p wrong b_bufobj %p should be %p",
687                     bp, bp->b_bufobj, bo));
688                 if ((bp->b_flags & B_DELWRI) == 0)
689                         panic("fsync: not dirty");
690                 if ((vp->v_object != NULL) && (bp->b_flags & B_CLUSTEROK)) {
691                         vfs_bio_awrite(bp);
692                 } else {
693                         bremfree(bp);
694                         bawrite(bp);
695                 }
696                 BO_LOCK(bo);
697                 goto loop2;
698         }
699
700         /*
701          * If synchronous the caller expects us to completely resolve all
702          * dirty buffers in the system.  Wait for in-progress I/O to
703          * complete (which could include background bitmap writes), then
704          * retry if dirty blocks still exist.
705          */
706         if (ap->a_waitfor == MNT_WAIT) {
707                 bufobj_wwait(bo, 0, 0);
708                 if (bo->bo_dirty.bv_cnt > 0) {
709                         /*
710                          * If we are unable to write any of these buffers
711                          * then we fail now rather than trying endlessly
712                          * to write them out.
713                          */
714                         TAILQ_FOREACH(bp, &bo->bo_dirty.bv_hd, b_bobufs)
715                                 if ((error = bp->b_error) == 0)
716                                         continue;
717                         if (error == 0 && --maxretry >= 0)
718                                 goto loop1;
719                         error = EAGAIN;
720                 }
721         }
722         BO_UNLOCK(bo);
723         if (error == EAGAIN)
724                 vprint("fsync: giving up on dirty", vp);
725
726         return (error);
727 }
728
729 /* XXX Needs good comment and more info in the manpage (VOP_GETPAGES(9)). */
730 int
731 vop_stdgetpages(ap)
732         struct vop_getpages_args /* {
733                 struct vnode *a_vp;
734                 vm_page_t *a_m;
735                 int a_count;
736                 int *a_rbehind;
737                 int *a_rahead;
738         } */ *ap;
739 {
740
741         return vnode_pager_generic_getpages(ap->a_vp, ap->a_m,
742             ap->a_count, ap->a_rbehind, ap->a_rahead, NULL, NULL);
743 }
744
745 static int
746 vop_stdgetpages_async(struct vop_getpages_async_args *ap)
747 {
748         int error;
749
750         error = VOP_GETPAGES(ap->a_vp, ap->a_m, ap->a_count, ap->a_rbehind,
751             ap->a_rahead);
752         ap->a_iodone(ap->a_arg, ap->a_m, ap->a_count, error);
753         return (error);
754 }
755
756 int
757 vop_stdkqfilter(struct vop_kqfilter_args *ap)
758 {
759         return vfs_kqfilter(ap);
760 }
761
762 /* XXX Needs good comment and more info in the manpage (VOP_PUTPAGES(9)). */
763 int
764 vop_stdputpages(ap)
765         struct vop_putpages_args /* {
766                 struct vnode *a_vp;
767                 vm_page_t *a_m;
768                 int a_count;
769                 int a_sync;
770                 int *a_rtvals;
771         } */ *ap;
772 {
773
774         return vnode_pager_generic_putpages(ap->a_vp, ap->a_m, ap->a_count,
775              ap->a_sync, ap->a_rtvals);
776 }
777
778 int
779 vop_stdvptofh(struct vop_vptofh_args *ap)
780 {
781         return (EOPNOTSUPP);
782 }
783
784 int
785 vop_stdvptocnp(struct vop_vptocnp_args *ap)
786 {
787         struct vnode *vp = ap->a_vp;
788         struct vnode **dvp = ap->a_vpp;
789         struct ucred *cred = ap->a_cred;
790         char *buf = ap->a_buf;
791         int *buflen = ap->a_buflen;
792         char *dirbuf, *cpos;
793         int i, error, eofflag, dirbuflen, flags, locked, len, covered;
794         off_t off;
795         ino_t fileno;
796         struct vattr va;
797         struct nameidata nd;
798         struct thread *td;
799         struct dirent *dp;
800         struct vnode *mvp;
801
802         i = *buflen;
803         error = 0;
804         covered = 0;
805         td = curthread;
806
807         if (vp->v_type != VDIR)
808                 return (ENOENT);
809
810         error = VOP_GETATTR(vp, &va, cred);
811         if (error)
812                 return (error);
813
814         VREF(vp);
815         locked = VOP_ISLOCKED(vp);
816         VOP_UNLOCK(vp, 0);
817         NDINIT_ATVP(&nd, LOOKUP, FOLLOW | LOCKSHARED | LOCKLEAF, UIO_SYSSPACE,
818             "..", vp, td);
819         flags = FREAD;
820         error = vn_open_cred(&nd, &flags, 0, VN_OPEN_NOAUDIT, cred, NULL);
821         if (error) {
822                 vn_lock(vp, locked | LK_RETRY);
823                 return (error);
824         }
825         NDFREE(&nd, NDF_ONLY_PNBUF);
826
827         mvp = *dvp = nd.ni_vp;
828
829         if (vp->v_mount != (*dvp)->v_mount &&
830             ((*dvp)->v_vflag & VV_ROOT) &&
831             ((*dvp)->v_mount->mnt_flag & MNT_UNION)) {
832                 *dvp = (*dvp)->v_mount->mnt_vnodecovered;
833                 VREF(mvp);
834                 VOP_UNLOCK(mvp, 0);
835                 vn_close(mvp, FREAD, cred, td);
836                 VREF(*dvp);
837                 vn_lock(*dvp, LK_SHARED | LK_RETRY);
838                 covered = 1;
839         }
840
841         fileno = va.va_fileid;
842
843         dirbuflen = DEV_BSIZE;
844         if (dirbuflen < va.va_blocksize)
845                 dirbuflen = va.va_blocksize;
846         dirbuf = (char *)malloc(dirbuflen, M_TEMP, M_WAITOK);
847
848         if ((*dvp)->v_type != VDIR) {
849                 error = ENOENT;
850                 goto out;
851         }
852
853         off = 0;
854         len = 0;
855         do {
856                 /* call VOP_READDIR of parent */
857                 error = get_next_dirent(*dvp, &dp, dirbuf, dirbuflen, &off,
858                                         &cpos, &len, &eofflag, td);
859                 if (error)
860                         goto out;
861
862                 if ((dp->d_type != DT_WHT) &&
863                     (dp->d_fileno == fileno)) {
864                         if (covered) {
865                                 VOP_UNLOCK(*dvp, 0);
866                                 vn_lock(mvp, LK_SHARED | LK_RETRY);
867                                 if (dirent_exists(mvp, dp->d_name, td)) {
868                                         error = ENOENT;
869                                         VOP_UNLOCK(mvp, 0);
870                                         vn_lock(*dvp, LK_SHARED | LK_RETRY);
871                                         goto out;
872                                 }
873                                 VOP_UNLOCK(mvp, 0);
874                                 vn_lock(*dvp, LK_SHARED | LK_RETRY);
875                         }
876                         i -= dp->d_namlen;
877
878                         if (i < 0) {
879                                 error = ENOMEM;
880                                 goto out;
881                         }
882                         if (dp->d_namlen == 1 && dp->d_name[0] == '.') {
883                                 error = ENOENT;
884                         } else {
885                                 bcopy(dp->d_name, buf + i, dp->d_namlen);
886                                 error = 0;
887                         }
888                         goto out;
889                 }
890         } while (len > 0 || !eofflag);
891         error = ENOENT;
892
893 out:
894         free(dirbuf, M_TEMP);
895         if (!error) {
896                 *buflen = i;
897                 vref(*dvp);
898         }
899         if (covered) {
900                 vput(*dvp);
901                 vrele(mvp);
902         } else {
903                 VOP_UNLOCK(mvp, 0);
904                 vn_close(mvp, FREAD, cred, td);
905         }
906         vn_lock(vp, locked | LK_RETRY);
907         return (error);
908 }
909
910 int
911 vop_stdallocate(struct vop_allocate_args *ap)
912 {
913 #ifdef __notyet__
914         struct statfs sfs;
915 #endif
916         struct iovec aiov;
917         struct vattr vattr, *vap;
918         struct uio auio;
919         off_t fsize, len, cur, offset;
920         uint8_t *buf;
921         struct thread *td;
922         struct vnode *vp;
923         size_t iosize;
924         int error;
925
926         buf = NULL;
927         error = 0;
928         td = curthread;
929         vap = &vattr;
930         vp = ap->a_vp;
931         len = *ap->a_len;
932         offset = *ap->a_offset;
933
934         error = VOP_GETATTR(vp, vap, td->td_ucred);
935         if (error != 0)
936                 goto out;
937         fsize = vap->va_size;
938         iosize = vap->va_blocksize;
939         if (iosize == 0)
940                 iosize = BLKDEV_IOSIZE;
941         if (iosize > MAXPHYS)
942                 iosize = MAXPHYS;
943         buf = malloc(iosize, M_TEMP, M_WAITOK);
944
945 #ifdef __notyet__
946         /*
947          * Check if the filesystem sets f_maxfilesize; if not use
948          * VOP_SETATTR to perform the check.
949          */
950         error = VFS_STATFS(vp->v_mount, &sfs, td);
951         if (error != 0)
952                 goto out;
953         if (sfs.f_maxfilesize) {
954                 if (offset > sfs.f_maxfilesize || len > sfs.f_maxfilesize ||
955                     offset + len > sfs.f_maxfilesize) {
956                         error = EFBIG;
957                         goto out;
958                 }
959         } else
960 #endif
961         if (offset + len > vap->va_size) {
962                 /*
963                  * Test offset + len against the filesystem's maxfilesize.
964                  */
965                 VATTR_NULL(vap);
966                 vap->va_size = offset + len;
967                 error = VOP_SETATTR(vp, vap, td->td_ucred);
968                 if (error != 0)
969                         goto out;
970                 VATTR_NULL(vap);
971                 vap->va_size = fsize;
972                 error = VOP_SETATTR(vp, vap, td->td_ucred);
973                 if (error != 0)
974                         goto out;
975         }
976
977         for (;;) {
978                 /*
979                  * Read and write back anything below the nominal file
980                  * size.  There's currently no way outside the filesystem
981                  * to know whether this area is sparse or not.
982                  */
983                 cur = iosize;
984                 if ((offset % iosize) != 0)
985                         cur -= (offset % iosize);
986                 if (cur > len)
987                         cur = len;
988                 if (offset < fsize) {
989                         aiov.iov_base = buf;
990                         aiov.iov_len = cur;
991                         auio.uio_iov = &aiov;
992                         auio.uio_iovcnt = 1;
993                         auio.uio_offset = offset;
994                         auio.uio_resid = cur;
995                         auio.uio_segflg = UIO_SYSSPACE;
996                         auio.uio_rw = UIO_READ;
997                         auio.uio_td = td;
998                         error = VOP_READ(vp, &auio, 0, td->td_ucred);
999                         if (error != 0)
1000                                 break;
1001                         if (auio.uio_resid > 0) {
1002                                 bzero(buf + cur - auio.uio_resid,
1003                                     auio.uio_resid);
1004                         }
1005                 } else {
1006                         bzero(buf, cur);
1007                 }
1008
1009                 aiov.iov_base = buf;
1010                 aiov.iov_len = cur;
1011                 auio.uio_iov = &aiov;
1012                 auio.uio_iovcnt = 1;
1013                 auio.uio_offset = offset;
1014                 auio.uio_resid = cur;
1015                 auio.uio_segflg = UIO_SYSSPACE;
1016                 auio.uio_rw = UIO_WRITE;
1017                 auio.uio_td = td;
1018
1019                 error = VOP_WRITE(vp, &auio, 0, td->td_ucred);
1020                 if (error != 0)
1021                         break;
1022
1023                 len -= cur;
1024                 offset += cur;
1025                 if (len == 0)
1026                         break;
1027                 if (should_yield())
1028                         break;
1029         }
1030
1031  out:
1032         *ap->a_len = len;
1033         *ap->a_offset = offset;
1034         free(buf, M_TEMP);
1035         return (error);
1036 }
1037
1038 int
1039 vop_stdadvise(struct vop_advise_args *ap)
1040 {
1041         struct vnode *vp;
1042         struct bufobj *bo;
1043         daddr_t startn, endn;
1044         off_t start, end;
1045         int bsize, error;
1046
1047         vp = ap->a_vp;
1048         switch (ap->a_advice) {
1049         case POSIX_FADV_WILLNEED:
1050                 /*
1051                  * Do nothing for now.  Filesystems should provide a
1052                  * custom method which starts an asynchronous read of
1053                  * the requested region.
1054                  */
1055                 error = 0;
1056                 break;
1057         case POSIX_FADV_DONTNEED:
1058                 error = 0;
1059                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1060                 if (vp->v_iflag & VI_DOOMED) {
1061                         VOP_UNLOCK(vp, 0);
1062                         break;
1063                 }
1064
1065                 /*
1066                  * Deactivate pages in the specified range from the backing VM
1067                  * object.  Pages that are resident in the buffer cache will
1068                  * remain wired until their corresponding buffers are released
1069                  * below.
1070                  */
1071                 if (vp->v_object != NULL) {
1072                         start = trunc_page(ap->a_start);
1073                         end = round_page(ap->a_end);
1074                         VM_OBJECT_WLOCK(vp->v_object);
1075                         vm_object_page_noreuse(vp->v_object, OFF_TO_IDX(start),
1076                             OFF_TO_IDX(end));
1077                         VM_OBJECT_WUNLOCK(vp->v_object);
1078                 }
1079
1080                 bo = &vp->v_bufobj;
1081                 BO_RLOCK(bo);
1082                 bsize = vp->v_bufobj.bo_bsize;
1083                 startn = ap->a_start / bsize;
1084                 endn = ap->a_end / bsize;
1085                 error = bnoreuselist(&bo->bo_clean, bo, startn, endn);
1086                 if (error == 0)
1087                         error = bnoreuselist(&bo->bo_dirty, bo, startn, endn);
1088                 BO_RUNLOCK(bo);
1089                 VOP_UNLOCK(vp, 0);
1090                 break;
1091         default:
1092                 error = EINVAL;
1093                 break;
1094         }
1095         return (error);
1096 }
1097
1098 int
1099 vop_stdunp_bind(struct vop_unp_bind_args *ap)
1100 {
1101
1102         ap->a_vp->v_socket = ap->a_socket;
1103         return (0);
1104 }
1105
1106 int
1107 vop_stdunp_connect(struct vop_unp_connect_args *ap)
1108 {
1109
1110         *ap->a_socket = ap->a_vp->v_socket;
1111         return (0);
1112 }
1113
1114 int
1115 vop_stdunp_detach(struct vop_unp_detach_args *ap)
1116 {
1117
1118         ap->a_vp->v_socket = NULL;
1119         return (0);
1120 }
1121
1122 static int
1123 vop_stdis_text(struct vop_is_text_args *ap)
1124 {
1125
1126         return ((ap->a_vp->v_vflag & VV_TEXT) != 0);
1127 }
1128
1129 static int
1130 vop_stdset_text(struct vop_set_text_args *ap)
1131 {
1132
1133         ap->a_vp->v_vflag |= VV_TEXT;
1134         return (0);
1135 }
1136
1137 static int
1138 vop_stdunset_text(struct vop_unset_text_args *ap)
1139 {
1140
1141         ap->a_vp->v_vflag &= ~VV_TEXT;
1142         return (0);
1143 }
1144
1145 static int
1146 vop_stdget_writecount(struct vop_get_writecount_args *ap)
1147 {
1148
1149         *ap->a_writecount = ap->a_vp->v_writecount;
1150         return (0);
1151 }
1152
1153 static int
1154 vop_stdadd_writecount(struct vop_add_writecount_args *ap)
1155 {
1156
1157         ap->a_vp->v_writecount += ap->a_inc;
1158         return (0);
1159 }
1160
1161 /*
1162  * vfs default ops
1163  * used to fill the vfs function table to get reasonable default return values.
1164  */
1165 int
1166 vfs_stdroot (mp, flags, vpp)
1167         struct mount *mp;
1168         int flags;
1169         struct vnode **vpp;
1170 {
1171
1172         return (EOPNOTSUPP);
1173 }
1174
1175 int
1176 vfs_stdstatfs (mp, sbp)
1177         struct mount *mp;
1178         struct statfs *sbp;
1179 {
1180
1181         return (EOPNOTSUPP);
1182 }
1183
1184 int
1185 vfs_stdquotactl (mp, cmds, uid, arg)
1186         struct mount *mp;
1187         int cmds;
1188         uid_t uid;
1189         void *arg;
1190 {
1191
1192         return (EOPNOTSUPP);
1193 }
1194
1195 int
1196 vfs_stdsync(mp, waitfor)
1197         struct mount *mp;
1198         int waitfor;
1199 {
1200         struct vnode *vp, *mvp;
1201         struct thread *td;
1202         int error, lockreq, allerror = 0;
1203
1204         td = curthread;
1205         lockreq = LK_EXCLUSIVE | LK_INTERLOCK;
1206         if (waitfor != MNT_WAIT)
1207                 lockreq |= LK_NOWAIT;
1208         /*
1209          * Force stale buffer cache information to be flushed.
1210          */
1211 loop:
1212         MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
1213                 if (vp->v_bufobj.bo_dirty.bv_cnt == 0) {
1214                         VI_UNLOCK(vp);
1215                         continue;
1216                 }
1217                 if ((error = vget(vp, lockreq, td)) != 0) {
1218                         if (error == ENOENT) {
1219                                 MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
1220                                 goto loop;
1221                         }
1222                         continue;
1223                 }
1224                 error = VOP_FSYNC(vp, waitfor, td);
1225                 if (error)
1226                         allerror = error;
1227                 vput(vp);
1228         }
1229         return (allerror);
1230 }
1231
1232 int
1233 vfs_stdnosync (mp, waitfor)
1234         struct mount *mp;
1235         int waitfor;
1236 {
1237
1238         return (0);
1239 }
1240
1241 int
1242 vfs_stdvget (mp, ino, flags, vpp)
1243         struct mount *mp;
1244         ino_t ino;
1245         int flags;
1246         struct vnode **vpp;
1247 {
1248
1249         return (EOPNOTSUPP);
1250 }
1251
1252 int
1253 vfs_stdfhtovp (mp, fhp, flags, vpp)
1254         struct mount *mp;
1255         struct fid *fhp;
1256         int flags;
1257         struct vnode **vpp;
1258 {
1259
1260         return (EOPNOTSUPP);
1261 }
1262
1263 int
1264 vfs_stdinit (vfsp)
1265         struct vfsconf *vfsp;
1266 {
1267
1268         return (0);
1269 }
1270
1271 int
1272 vfs_stduninit (vfsp)
1273         struct vfsconf *vfsp;
1274 {
1275
1276         return(0);
1277 }
1278
1279 int
1280 vfs_stdextattrctl(mp, cmd, filename_vp, attrnamespace, attrname)
1281         struct mount *mp;
1282         int cmd;
1283         struct vnode *filename_vp;
1284         int attrnamespace;
1285         const char *attrname;
1286 {
1287
1288         if (filename_vp != NULL)
1289                 VOP_UNLOCK(filename_vp, 0);
1290         return (EOPNOTSUPP);
1291 }
1292
1293 int
1294 vfs_stdsysctl(mp, op, req)
1295         struct mount *mp;
1296         fsctlop_t op;
1297         struct sysctl_req *req;
1298 {
1299
1300         return (EOPNOTSUPP);
1301 }
1302
1303 /* end of vfs default ops */