Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
[dragonfly.git] / sys / kern / vfs_vopops.c
1 /*
2  * Copyright (c) 2004,2009 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 /*
35  * Implement vnode ops wrappers.  All vnode ops are wrapped through
36  * these functions.
37  *
38  * These wrappers are responsible for hanlding all MPSAFE issues related
39  * to a vnode operation.
40  */
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/buf.h>
45 #include <sys/conf.h>
46 #include <sys/dirent.h>
47 #include <sys/domain.h>
48 #include <sys/eventhandler.h>
49 #include <sys/fcntl.h>
50 #include <sys/kernel.h>
51 #include <sys/kthread.h>
52 #include <sys/malloc.h>
53 #include <sys/mbuf.h>
54 #include <sys/mount.h>
55 #include <sys/proc.h>
56 #include <sys/namei.h>
57 #include <sys/reboot.h>
58 #include <sys/socket.h>
59 #include <sys/stat.h>
60 #include <sys/sysctl.h>
61 #include <sys/syslog.h>
62 #include <sys/vmmeter.h>
63 #include <sys/vnode.h>
64 #include <sys/vfsops.h>
65 #include <sys/sysmsg.h>
66
67 #include <machine/limits.h>
68
69 #include <vm/vm.h>
70 #include <vm/vm_object.h>
71 #include <vm/vm_extern.h>
72 #include <vm/vm_kern.h>
73 #include <vm/pmap.h>
74 #include <vm/vm_map.h>
75 #include <vm/vm_page.h>
76 #include <vm/vm_pager.h>
77 #include <vm/vnode_pager.h>
78 #include <vm/vm_zone.h>
79
80 #include <sys/buf2.h>
81 #include <sys/thread2.h>
82 #include <sys/mplock2.h>
83
84 #define VDESCNAME(name) __CONCAT(__CONCAT(vop_,name),_desc)
85
86 #define VNODEOP_DESC_INIT(name)                                         \
87         struct syslink_desc VDESCNAME(name) = {                         \
88                 __offsetof(struct vop_ops, __CONCAT(vop_, name)),       \
89                 #name }
90
91 VNODEOP_DESC_INIT(default);
92 VNODEOP_DESC_INIT(old_lookup);
93 VNODEOP_DESC_INIT(old_create);
94 VNODEOP_DESC_INIT(old_whiteout);
95 VNODEOP_DESC_INIT(old_mknod);
96 VNODEOP_DESC_INIT(open);
97 VNODEOP_DESC_INIT(close);
98 VNODEOP_DESC_INIT(access);
99 VNODEOP_DESC_INIT(getattr);
100 VNODEOP_DESC_INIT(setattr);
101 VNODEOP_DESC_INIT(read);
102 VNODEOP_DESC_INIT(write);
103 VNODEOP_DESC_INIT(ioctl);
104 VNODEOP_DESC_INIT(poll);
105 VNODEOP_DESC_INIT(kqfilter);
106 VNODEOP_DESC_INIT(mmap);
107 VNODEOP_DESC_INIT(fsync);
108 VNODEOP_DESC_INIT(old_remove);
109 VNODEOP_DESC_INIT(old_link);
110 VNODEOP_DESC_INIT(old_rename);
111
112 VNODEOP_DESC_INIT(old_mkdir);
113 VNODEOP_DESC_INIT(old_rmdir);
114 VNODEOP_DESC_INIT(old_symlink);
115 VNODEOP_DESC_INIT(readdir);
116 VNODEOP_DESC_INIT(readlink);
117 VNODEOP_DESC_INIT(inactive);
118 VNODEOP_DESC_INIT(reclaim);
119 VNODEOP_DESC_INIT(bmap);
120 VNODEOP_DESC_INIT(strategy);
121 VNODEOP_DESC_INIT(print);
122 VNODEOP_DESC_INIT(pathconf);
123 VNODEOP_DESC_INIT(advlock);
124 VNODEOP_DESC_INIT(balloc);
125 VNODEOP_DESC_INIT(reallocblks);
126 VNODEOP_DESC_INIT(getpages);
127 VNODEOP_DESC_INIT(putpages);
128 VNODEOP_DESC_INIT(freeblks);
129 VNODEOP_DESC_INIT(getacl);
130 VNODEOP_DESC_INIT(setacl);
131 VNODEOP_DESC_INIT(aclcheck);
132 VNODEOP_DESC_INIT(getextattr);
133 VNODEOP_DESC_INIT(setextattr);
134 VNODEOP_DESC_INIT(mountctl);
135 VNODEOP_DESC_INIT(markatime);
136
137 VNODEOP_DESC_INIT(nresolve);
138 VNODEOP_DESC_INIT(nlookupdotdot);
139 VNODEOP_DESC_INIT(ncreate);
140 VNODEOP_DESC_INIT(nmkdir);
141 VNODEOP_DESC_INIT(nmknod);
142 VNODEOP_DESC_INIT(nlink);
143 VNODEOP_DESC_INIT(nsymlink);
144 VNODEOP_DESC_INIT(nwhiteout);
145 VNODEOP_DESC_INIT(nremove);
146 VNODEOP_DESC_INIT(nrmdir);
147 VNODEOP_DESC_INIT(nrename);
148
149 #define DO_OPS(ops, error, ap, vop_field)       \
150         error = ops->vop_field(ap);
151
152 /************************************************************************
153  *              PRIMARY HIGH LEVEL VNODE OPERATIONS CALLS               *
154  ************************************************************************
155  *
156  * These procedures are called directly from the kernel and/or fileops 
157  * code to perform file/device operations on the system.
158  *
159  * NOTE: The old namespace api functions such as vop_rename() are no
160  *       longer available for general use and have been renamed to
161  *       vop_old_*().  Only the code in vfs_default.c is allowed to call
162  *       those ops.
163  *
164  * NOTE: The VFS_MPLOCK*() macros handle mounts which do not set
165  *       MNTK_MPSAFE or MNTK_xx_MPSAFE.
166  *
167  * MPSAFE
168  */
169
170 int
171 vop_old_lookup(struct vop_ops *ops, struct vnode *dvp,
172         struct vnode **vpp, struct componentname *cnp)
173 {
174         struct vop_old_lookup_args ap;
175         VFS_MPLOCK_DECLARE;
176         int error;
177
178         ap.a_head.a_desc = &vop_old_lookup_desc;
179         ap.a_head.a_ops = ops;
180         ap.a_dvp = dvp;
181         ap.a_vpp = vpp;
182         ap.a_cnp = cnp;
183         VFS_MPLOCK1(dvp->v_mount);
184         DO_OPS(ops, error, &ap, vop_old_lookup);
185         VFS_MPUNLOCK(dvp->v_mount);
186         return(error);
187 }
188
189 /*
190  * MPSAFE
191  */
192 int
193 vop_old_create(struct vop_ops *ops, struct vnode *dvp,
194         struct vnode **vpp, struct componentname *cnp, struct vattr *vap)
195 {
196         struct vop_old_create_args ap;
197         VFS_MPLOCK_DECLARE;
198         int error;
199
200         ap.a_head.a_desc = &vop_old_create_desc;
201         ap.a_head.a_ops = ops;
202         ap.a_dvp = dvp;
203         ap.a_vpp = vpp;
204         ap.a_cnp = cnp;
205         ap.a_vap = vap;
206
207         VFS_MPLOCK1(dvp->v_mount);
208         DO_OPS(ops, error, &ap, vop_old_create);
209         VFS_MPUNLOCK(dvp->v_mount);
210         return(error);
211 }
212
213 /*
214  * MPSAFE
215  */
216 int
217 vop_old_whiteout(struct vop_ops *ops, struct vnode *dvp,
218         struct componentname *cnp, int flags)
219 {
220         struct vop_old_whiteout_args ap;
221         VFS_MPLOCK_DECLARE;
222         int error;
223
224         ap.a_head.a_desc = &vop_old_whiteout_desc;
225         ap.a_head.a_ops = ops;
226         ap.a_dvp = dvp;
227         ap.a_cnp = cnp;
228         ap.a_flags = flags;
229
230         VFS_MPLOCK1(dvp->v_mount);
231         DO_OPS(ops, error, &ap, vop_old_whiteout);
232         VFS_MPUNLOCK(dvp->v_mount);
233         return(error);
234 }
235
236 /*
237  * MPSAFE
238  */
239 int
240 vop_old_mknod(struct vop_ops *ops, struct vnode *dvp, 
241         struct vnode **vpp, struct componentname *cnp, struct vattr *vap)
242 {
243         struct vop_old_mknod_args ap;
244         VFS_MPLOCK_DECLARE;
245         int error;
246
247         ap.a_head.a_desc = &vop_old_mknod_desc;
248         ap.a_head.a_ops = ops;
249         ap.a_dvp = dvp;
250         ap.a_vpp = vpp;
251         ap.a_cnp = cnp;
252         ap.a_vap = vap;
253
254         VFS_MPLOCK1(dvp->v_mount);
255         DO_OPS(ops, error, &ap, vop_old_mknod);
256         VFS_MPUNLOCK(dvp->v_mount);
257         return(error);
258 }
259
260 /*
261  * NOTE: VAGE is always cleared when calling VOP_OPEN().
262  */
263 int
264 vop_open(struct vop_ops *ops, struct vnode *vp, int mode, struct ucred *cred,
265         struct file *fp)
266 {
267         struct vop_open_args ap;
268         VFS_MPLOCK_DECLARE;
269         int error;
270
271         /*
272          * Decrement 3-2-1-0.  Does not decrement beyond 0
273          */
274         if (vp->v_flag & VAGE0) {
275                 vclrflags(vp, VAGE0);
276         } else if (vp->v_flag & VAGE1) {
277                 vclrflags(vp, VAGE1);
278                 vsetflags(vp, VAGE0);
279         }
280
281         ap.a_head.a_desc = &vop_open_desc;
282         ap.a_head.a_ops = ops;
283         ap.a_vp = vp;
284         ap.a_fp = fp;
285         ap.a_mode = mode;
286         ap.a_cred = cred;
287
288         VFS_MPLOCK1(vp->v_mount);
289         DO_OPS(ops, error, &ap, vop_open);
290         VFS_MPUNLOCK(vp->v_mount);
291         return(error);
292 }
293
294 /*
295  * MPSAFE
296  */
297 int
298 vop_close(struct vop_ops *ops, struct vnode *vp, int fflag)
299 {
300         struct vop_close_args ap;
301         VFS_MPLOCK_DECLARE;
302         int error;
303
304         ap.a_head.a_desc = &vop_close_desc;
305         ap.a_head.a_ops = ops;
306         ap.a_vp = vp;
307         ap.a_fflag = fflag;
308
309         VFS_MPLOCK1(vp->v_mount);
310         DO_OPS(ops, error, &ap, vop_close);
311         VFS_MPUNLOCK(vp->v_mount);
312         return(error);
313 }
314
315 /*
316  * MPSAFE
317  */
318 int
319 vop_access(struct vop_ops *ops, struct vnode *vp, int mode, int flags,
320            struct ucred *cred)
321 {
322         struct vop_access_args ap;
323         VFS_MPLOCK_DECLARE;
324         int error;
325
326         ap.a_head.a_desc = &vop_access_desc;
327         ap.a_head.a_ops = ops;
328         ap.a_vp = vp;
329         ap.a_mode = mode;
330         ap.a_flags = flags;
331         ap.a_cred = cred;
332
333         VFS_MPLOCK1(vp->v_mount);
334         DO_OPS(ops, error, &ap, vop_access);
335         VFS_MPUNLOCK(vp->v_mount);
336         return(error);
337 }
338
339 /*
340  * MPSAFE
341  */
342 int
343 vop_getattr(struct vop_ops *ops, struct vnode *vp, struct vattr *vap)
344 {
345         struct vop_getattr_args ap;
346         VFS_MPLOCK_DECLARE;
347         int error;
348
349         ap.a_head.a_desc = &vop_getattr_desc;
350         ap.a_head.a_ops = ops;
351         ap.a_vp = vp;
352         ap.a_vap = vap;
353
354         VFS_MPLOCK_FLAG(vp->v_mount, MNTK_GA_MPSAFE);
355         DO_OPS(ops, error, &ap, vop_getattr);
356         VFS_MPUNLOCK(vp->v_mount);
357
358         return(error);
359 }
360
361 /*
362  * MPSAFE
363  */
364 int
365 vop_setattr(struct vop_ops *ops, struct vnode *vp, struct vattr *vap,
366         struct ucred *cred)
367 {
368         struct vop_setattr_args ap;
369         VFS_MPLOCK_DECLARE;
370         int error;
371
372         ap.a_head.a_desc = &vop_setattr_desc;
373         ap.a_head.a_ops = ops;
374         ap.a_vp = vp;
375         ap.a_vap = vap;
376         ap.a_cred = cred;
377
378         VFS_MPLOCK1(vp->v_mount);
379         DO_OPS(ops, error, &ap, vop_setattr);
380         VFS_MPUNLOCK(vp->v_mount);
381         return(error);
382 }
383
384 /*
385  * MPSAFE
386  */
387 int
388 vop_read(struct vop_ops *ops, struct vnode *vp, struct uio *uio, int ioflag,
389         struct ucred *cred)
390 {
391         struct vop_read_args ap;
392         VFS_MPLOCK_DECLARE;
393         int error;
394
395         ap.a_head.a_desc = &vop_read_desc;
396         ap.a_head.a_ops = ops;
397         ap.a_vp = vp;
398         ap.a_uio = uio;
399         ap.a_ioflag = ioflag;
400         ap.a_cred = cred;
401
402         VFS_MPLOCK_FLAG(vp->v_mount, MNTK_RD_MPSAFE);
403         DO_OPS(ops, error, &ap, vop_read);
404         VFS_MPUNLOCK(vp->v_mount);
405         return(error);
406 }
407
408 /*
409  * MPSAFE
410  */
411 int
412 vop_write(struct vop_ops *ops, struct vnode *vp, struct uio *uio, int ioflag,
413         struct ucred *cred)
414 {
415         struct vop_write_args ap;
416         VFS_MPLOCK_DECLARE;
417         int error;
418
419         ap.a_head.a_desc = &vop_write_desc;
420         ap.a_head.a_ops = ops;
421         ap.a_vp = vp;
422         ap.a_uio = uio;
423         ap.a_ioflag = ioflag;
424         ap.a_cred = cred;
425
426         VFS_MPLOCK_FLAG(vp->v_mount, MNTK_WR_MPSAFE);
427         DO_OPS(ops, error, &ap, vop_write);
428         VFS_MPUNLOCK(vp->v_mount);
429         return(error);
430 }
431
432 /*
433  * MPSAFE
434  */
435 int
436 vop_ioctl(struct vop_ops *ops, struct vnode *vp, u_long command, caddr_t data,
437         int fflag, struct ucred *cred, struct sysmsg *msg)
438 {
439         struct vop_ioctl_args ap;
440         VFS_MPLOCK_DECLARE;
441         int error;
442
443         ap.a_head.a_desc = &vop_ioctl_desc;
444         ap.a_head.a_ops = ops;
445         ap.a_vp = vp;
446         ap.a_command = command;
447         ap.a_data = data;
448         ap.a_fflag = fflag;
449         ap.a_cred = cred;
450         ap.a_sysmsg = msg;
451
452         VFS_MPLOCK1(vp->v_mount);
453         DO_OPS(ops, error, &ap, vop_ioctl);
454         VFS_MPUNLOCK(vp->v_mount);
455         return(error);
456 }
457
458 /*
459  * MPSAFE
460  */
461 int
462 vop_poll(struct vop_ops *ops, struct vnode *vp, int events, struct ucred *cred)
463 {
464         struct vop_poll_args ap;
465         VFS_MPLOCK_DECLARE;
466         int error;
467
468         ap.a_head.a_desc = &vop_poll_desc;
469         ap.a_head.a_ops = ops;
470         ap.a_vp = vp;
471         ap.a_events = events;
472         ap.a_cred = cred;
473
474         VFS_MPLOCK1(vp->v_mount);
475         DO_OPS(ops, error, &ap, vop_poll);
476         VFS_MPUNLOCK(vp->v_mount);
477         return(error);
478 }
479
480 /*
481  * MPSAFE
482  */
483 int
484 vop_kqfilter(struct vop_ops *ops, struct vnode *vp, struct knote *kn)
485 {
486         struct vop_kqfilter_args ap;
487         VFS_MPLOCK_DECLARE;
488         int error;
489
490         ap.a_head.a_desc = &vop_kqfilter_desc;
491         ap.a_head.a_ops = ops;
492         ap.a_vp = vp;
493         ap.a_kn = kn;
494
495         VFS_MPLOCK1(vp->v_mount);
496         DO_OPS(ops, error, &ap, vop_kqfilter);
497         VFS_MPUNLOCK(vp->v_mount);
498         return(error);
499 }
500
501 /*
502  * MPSAFE
503  */
504 int
505 vop_mmap(struct vop_ops *ops, struct vnode *vp, int fflags, struct ucred *cred)
506 {
507         struct vop_mmap_args ap;
508         VFS_MPLOCK_DECLARE;
509         int error;
510
511         ap.a_head.a_desc = &vop_mmap_desc;
512         ap.a_head.a_ops = ops;
513         ap.a_vp = vp;
514         ap.a_fflags = fflags;
515         ap.a_cred = cred;
516
517         VFS_MPLOCK1(vp->v_mount);
518         DO_OPS(ops, error, &ap, vop_mmap);
519         VFS_MPUNLOCK(vp->v_mount);
520         return(error);
521 }
522
523 /*
524  * MPSAFE
525  */
526 int
527 vop_fsync(struct vop_ops *ops, struct vnode *vp, int waitfor, int flags)
528 {
529         struct vop_fsync_args ap;
530         VFS_MPLOCK_DECLARE;
531         int error;
532
533         ap.a_head.a_desc = &vop_fsync_desc;
534         ap.a_head.a_ops = ops;
535         ap.a_vp = vp;
536         ap.a_waitfor = waitfor;
537         ap.a_flags = flags;
538
539         VFS_MPLOCK1(vp->v_mount);
540         DO_OPS(ops, error, &ap, vop_fsync);
541         VFS_MPUNLOCK(vp->v_mount);
542         return(error);
543 }
544
545 /*
546  * MPSAFE
547  */
548 int
549 vop_old_remove(struct vop_ops *ops, struct vnode *dvp, 
550         struct vnode *vp, struct componentname *cnp)
551 {
552         struct vop_old_remove_args ap;
553         VFS_MPLOCK_DECLARE;
554         int error;
555
556         ap.a_head.a_desc = &vop_old_remove_desc;
557         ap.a_head.a_ops = ops;
558         ap.a_dvp = dvp;
559         ap.a_vp = vp;
560         ap.a_cnp = cnp;
561
562         VFS_MPLOCK1(dvp->v_mount);
563         DO_OPS(ops, error, &ap, vop_old_remove);
564         VFS_MPUNLOCK(dvp->v_mount);
565         return(error);
566 }
567
568 /*
569  * MPSAFE
570  */
571 int
572 vop_old_link(struct vop_ops *ops, struct vnode *tdvp, 
573         struct vnode *vp, struct componentname *cnp)
574 {
575         struct vop_old_link_args ap;
576         VFS_MPLOCK_DECLARE;
577         int error;
578
579         ap.a_head.a_desc = &vop_old_link_desc;
580         ap.a_head.a_ops = ops;
581         ap.a_tdvp = tdvp;
582         ap.a_vp = vp;
583         ap.a_cnp = cnp;
584
585         VFS_MPLOCK1(tdvp->v_mount);
586         DO_OPS(ops, error, &ap, vop_old_link);
587         VFS_MPUNLOCK(tdvp->v_mount);
588         return(error);
589 }
590
591 /*
592  * MPSAFE
593  */
594 int
595 vop_old_rename(struct vop_ops *ops, 
596            struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp,
597            struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp)
598 {
599         struct vop_old_rename_args ap;
600         VFS_MPLOCK_DECLARE;
601         int error;
602
603         ap.a_head.a_desc = &vop_old_rename_desc;
604         ap.a_head.a_ops = ops;
605         ap.a_fdvp = fdvp;
606         ap.a_fvp = fvp;
607         ap.a_fcnp = fcnp;
608         ap.a_tdvp = tdvp;
609         ap.a_tvp = tvp;
610         ap.a_tcnp = tcnp;
611
612         VFS_MPLOCK1(tdvp->v_mount);
613         DO_OPS(ops, error, &ap, vop_old_rename);
614         VFS_MPUNLOCK(tdvp->v_mount);
615         return(error);
616 }
617
618 /*
619  * MPSAFE
620  */
621 int
622 vop_old_mkdir(struct vop_ops *ops, struct vnode *dvp, 
623         struct vnode **vpp, struct componentname *cnp, struct vattr *vap)
624 {
625         struct vop_old_mkdir_args ap;
626         VFS_MPLOCK_DECLARE;
627         int error;
628
629         ap.a_head.a_desc = &vop_old_mkdir_desc;
630         ap.a_head.a_ops = ops;
631         ap.a_dvp = dvp;
632         ap.a_vpp = vpp;
633         ap.a_cnp = cnp;
634         ap.a_vap = vap;
635
636         VFS_MPLOCK1(dvp->v_mount);
637         DO_OPS(ops, error, &ap, vop_old_mkdir);
638         VFS_MPUNLOCK(dvp->v_mount);
639         return(error);
640 }
641
642 /*
643  * MPSAFE
644  */
645 int
646 vop_old_rmdir(struct vop_ops *ops, struct vnode *dvp, 
647         struct vnode *vp, struct componentname *cnp)
648 {
649         struct vop_old_rmdir_args ap;
650         VFS_MPLOCK_DECLARE;
651         int error;
652
653         ap.a_head.a_desc = &vop_old_rmdir_desc;
654         ap.a_head.a_ops = ops;
655         ap.a_dvp = dvp;
656         ap.a_vp = vp;
657         ap.a_cnp = cnp;
658
659         VFS_MPLOCK1(dvp->v_mount);
660         DO_OPS(ops, error, &ap, vop_old_rmdir);
661         VFS_MPUNLOCK(dvp->v_mount);
662         return(error);
663 }
664
665 /*
666  * MPSAFE
667  */
668 int
669 vop_old_symlink(struct vop_ops *ops, struct vnode *dvp,
670         struct vnode **vpp, struct componentname *cnp,
671         struct vattr *vap, char *target)
672 {
673         struct vop_old_symlink_args ap;
674         VFS_MPLOCK_DECLARE;
675         int error;
676
677         ap.a_head.a_desc = &vop_old_symlink_desc;
678         ap.a_head.a_ops = ops;
679         ap.a_dvp = dvp;
680         ap.a_vpp = vpp;
681         ap.a_cnp = cnp;
682         ap.a_vap = vap;
683         ap.a_target = target;
684
685         VFS_MPLOCK1(dvp->v_mount);
686         DO_OPS(ops, error, &ap, vop_old_symlink);
687         VFS_MPUNLOCK(dvp->v_mount);
688         return(error);
689 }
690
691 /*
692  * MPSAFE
693  */
694 int
695 vop_readdir(struct vop_ops *ops, struct vnode *vp, struct uio *uio,
696         struct ucred *cred, int *eofflag, int *ncookies, off_t **cookies)
697 {
698         struct vop_readdir_args ap;
699         VFS_MPLOCK_DECLARE;
700         int error;
701
702         ap.a_head.a_desc = &vop_readdir_desc;
703         ap.a_head.a_ops = ops;
704         ap.a_vp = vp;
705         ap.a_uio = uio;
706         ap.a_cred = cred;
707         ap.a_eofflag = eofflag;
708         ap.a_ncookies = ncookies;
709         ap.a_cookies = cookies;
710
711         VFS_MPLOCK1(vp->v_mount);
712         DO_OPS(ops, error, &ap, vop_readdir);
713         VFS_MPUNLOCK(vp->v_mount);
714         return(error);
715 }
716
717 /*
718  * MPSAFE
719  */
720 int
721 vop_readlink(struct vop_ops *ops, struct vnode *vp, struct uio *uio,
722         struct ucred *cred)
723 {
724         struct vop_readlink_args ap;
725         VFS_MPLOCK_DECLARE;
726         int error;
727
728         ap.a_head.a_desc = &vop_readlink_desc;
729         ap.a_head.a_ops = ops;
730         ap.a_vp = vp;
731         ap.a_uio = uio;
732         ap.a_cred = cred;
733
734         VFS_MPLOCK1(vp->v_mount);
735         DO_OPS(ops, error, &ap, vop_readlink);
736         VFS_MPUNLOCK(vp->v_mount);
737         return(error);
738 }
739
740 /*
741  * MPSAFE
742  */
743 int
744 vop_inactive(struct vop_ops *ops, struct vnode *vp)
745 {
746         struct vop_inactive_args ap;
747         VFS_MPLOCK_DECLARE;
748         int error;
749
750         ap.a_head.a_desc = &vop_inactive_desc;
751         ap.a_head.a_ops = ops;
752         ap.a_vp = vp;
753
754         VFS_MPLOCK_FLAG(vp->v_mount, MNTK_IN_MPSAFE);
755         DO_OPS(ops, error, &ap, vop_inactive);
756         VFS_MPUNLOCK(vp->v_mount);
757         return(error);
758 }
759
760 /*
761  * MPSAFE
762  */
763 int
764 vop_reclaim(struct vop_ops *ops, struct vnode *vp)
765 {
766         struct vop_reclaim_args ap;
767         VFS_MPLOCK_DECLARE;
768         int error;
769
770         ap.a_head.a_desc = &vop_reclaim_desc;
771         ap.a_head.a_ops = ops;
772         ap.a_vp = vp;
773
774         VFS_MPLOCK1(vp->v_mount);
775         DO_OPS(ops, error, &ap, vop_reclaim);
776         VFS_MPUNLOCK(vp->v_mount);
777         return(error);
778 }
779
780 /*
781  * MPSAFE
782  */
783 int
784 vop_bmap(struct vop_ops *ops, struct vnode *vp, off_t loffset,
785         off_t *doffsetp, int *runp, int *runb, buf_cmd_t cmd)
786 {
787         struct vop_bmap_args ap;
788         VFS_MPLOCK_DECLARE;
789         int error;
790
791         ap.a_head.a_desc = &vop_bmap_desc;
792         ap.a_head.a_ops = ops;
793         ap.a_vp = vp;
794         ap.a_loffset = loffset;
795         ap.a_doffsetp = doffsetp;
796         ap.a_runp = runp;
797         ap.a_runb = runb;
798         ap.a_cmd = cmd;
799
800         VFS_MPLOCK1(vp->v_mount);
801         DO_OPS(ops, error, &ap, vop_bmap);
802         VFS_MPUNLOCK(vp->v_mount);
803         return(error);
804 }
805
806 /*
807  * MPSAFE
808  */
809 int
810 vop_strategy(struct vop_ops *ops, struct vnode *vp, struct bio *bio)
811 {
812         struct vop_strategy_args ap;
813         VFS_MPLOCK_DECLARE;
814         int error;
815
816         ap.a_head.a_desc = &vop_strategy_desc;
817         ap.a_head.a_ops = ops;
818         ap.a_vp = vp;
819         ap.a_bio = bio;
820
821         VFS_MPLOCK1(vp->v_mount);
822         DO_OPS(ops, error, &ap, vop_strategy);
823         VFS_MPUNLOCK(vp->v_mount);
824         return(error);
825 }
826
827 /*
828  * MPSAFE
829  */
830 int
831 vop_print(struct vop_ops *ops, struct vnode *vp)
832 {
833         struct vop_print_args ap;
834         VFS_MPLOCK_DECLARE;
835         int error;
836
837         ap.a_head.a_desc = &vop_print_desc;
838         ap.a_head.a_ops = ops;
839         ap.a_vp = vp;
840
841         VFS_MPLOCK1(vp->v_mount);
842         DO_OPS(ops, error, &ap, vop_print);
843         VFS_MPUNLOCK(vp->v_mount);
844         return(error);
845 }
846
847 /*
848  * MPSAFE
849  */
850 int
851 vop_pathconf(struct vop_ops *ops, struct vnode *vp, int name,
852         register_t *retval)
853 {
854         struct vop_pathconf_args ap;
855         VFS_MPLOCK_DECLARE;
856         int error;
857
858         ap.a_head.a_desc = &vop_pathconf_desc;
859         ap.a_head.a_ops = ops;
860         ap.a_vp = vp;
861         ap.a_name = name;
862         ap.a_retval = retval;
863
864         VFS_MPLOCK1(vp->v_mount);
865         DO_OPS(ops, error, &ap, vop_pathconf);
866         VFS_MPUNLOCK(vp->v_mount);
867         return(error);
868 }
869
870 /*
871  * MPSAFE
872  */
873 int
874 vop_advlock(struct vop_ops *ops, struct vnode *vp, caddr_t id, int op,
875         struct flock *fl, int flags)
876 {
877         struct vop_advlock_args ap;
878         VFS_MPLOCK_DECLARE;
879         int error;
880
881         ap.a_head.a_desc = &vop_advlock_desc;
882         ap.a_head.a_ops = ops;
883         ap.a_vp = vp;
884         ap.a_id = id;
885         ap.a_op = op;
886         ap.a_fl = fl;
887         ap.a_flags = flags;
888
889         VFS_MPLOCK1(vp->v_mount);
890         DO_OPS(ops, error, &ap, vop_advlock);
891         VFS_MPUNLOCK(vp->v_mount);
892         return(error);
893 }
894
895 /*
896  * MPSAFE
897  */
898 int
899 vop_balloc(struct vop_ops *ops, struct vnode *vp, off_t startoffset,
900         int size, struct ucred *cred, int flags,
901         struct buf **bpp)
902 {
903         struct vop_balloc_args ap;
904         VFS_MPLOCK_DECLARE;
905         int error;
906
907         ap.a_head.a_desc = &vop_balloc_desc;
908         ap.a_head.a_ops = ops;
909         ap.a_vp = vp;
910         ap.a_startoffset = startoffset;
911         ap.a_size = size;
912         ap.a_cred = cred;
913         ap.a_flags = flags;
914         ap.a_bpp = bpp;
915
916         VFS_MPLOCK1(vp->v_mount);
917         DO_OPS(ops, error, &ap, vop_balloc);
918         VFS_MPUNLOCK(vp->v_mount);
919         return(error);
920 }
921
922 /*
923  * MPSAFE
924  */
925 int
926 vop_reallocblks(struct vop_ops *ops, struct vnode *vp,
927         struct cluster_save *buflist)
928 {
929         struct vop_reallocblks_args ap;
930         VFS_MPLOCK_DECLARE;
931         int error;
932
933         ap.a_head.a_desc = &vop_reallocblks_desc;
934         ap.a_head.a_ops = ops;
935         ap.a_vp = vp;
936         ap.a_buflist = buflist;
937
938         VFS_MPLOCK1(vp->v_mount);
939         DO_OPS(ops, error, &ap, vop_reallocblks);
940         VFS_MPUNLOCK(vp->v_mount);
941         return(error);
942 }
943
944 /*
945  * MPSAFE
946  */
947 int
948 vop_getpages(struct vop_ops *ops, struct vnode *vp, vm_page_t *m, int count,
949         int reqpage, vm_ooffset_t offset, int seqaccess)
950 {
951         struct vop_getpages_args ap;
952         VFS_MPLOCK_DECLARE;
953         int error;
954
955         ap.a_head.a_desc = &vop_getpages_desc;
956         ap.a_head.a_ops = ops;
957         ap.a_vp = vp;
958         ap.a_m = m;
959         ap.a_count = count;
960         ap.a_reqpage = reqpage;
961         ap.a_offset = offset;
962         ap.a_seqaccess = seqaccess;
963
964         VFS_MPLOCK1(vp->v_mount);
965         DO_OPS(ops, error, &ap, vop_getpages);
966         VFS_MPUNLOCK(vp->v_mount);
967         return(error);
968 }
969
970 /*
971  * MPSAFE
972  */
973 int
974 vop_putpages(struct vop_ops *ops, struct vnode *vp, vm_page_t *m, int count,
975         int sync, int *rtvals, vm_ooffset_t offset)
976 {
977         struct vop_putpages_args ap;
978         VFS_MPLOCK_DECLARE;
979         int error;
980
981         ap.a_head.a_desc = &vop_putpages_desc;
982         ap.a_head.a_ops = ops;
983         ap.a_vp = vp;
984         ap.a_m = m;
985         ap.a_count = count;
986         ap.a_sync = sync;
987         ap.a_rtvals = rtvals;
988         ap.a_offset = offset;
989
990         VFS_MPLOCK1(vp->v_mount);
991         DO_OPS(ops, error, &ap, vop_putpages);
992         VFS_MPUNLOCK(vp->v_mount);
993         return(error);
994 }
995
996 /*
997  * MPSAFE
998  */
999 int
1000 vop_freeblks(struct vop_ops *ops, struct vnode *vp, off_t offset, int length)
1001 {
1002         struct vop_freeblks_args ap;
1003         VFS_MPLOCK_DECLARE;
1004         int error;
1005
1006         ap.a_head.a_desc = &vop_freeblks_desc;
1007         ap.a_head.a_ops = ops;
1008         ap.a_vp = vp;
1009         ap.a_offset = offset;
1010         ap.a_length = length;
1011
1012         VFS_MPLOCK1(vp->v_mount);
1013         DO_OPS(ops, error, &ap, vop_freeblks);
1014         VFS_MPUNLOCK(vp->v_mount);
1015         return(error);
1016 }
1017
1018 /*
1019  * MPSAFE
1020  */
1021 int
1022 vop_getacl(struct vop_ops *ops, struct vnode *vp, acl_type_t type,
1023         struct acl *aclp, struct ucred *cred)
1024 {
1025         struct vop_getacl_args ap;
1026         VFS_MPLOCK_DECLARE;
1027         int error;
1028
1029         ap.a_head.a_desc = &vop_getacl_desc;
1030         ap.a_head.a_ops = ops;
1031         ap.a_vp = vp;
1032         ap.a_type = type;
1033         ap.a_aclp = aclp;
1034         ap.a_cred = cred;
1035
1036         VFS_MPLOCK1(vp->v_mount);
1037         DO_OPS(ops, error, &ap, vop_getacl);
1038         VFS_MPUNLOCK(vp->v_mount);
1039         return(error);
1040 }
1041
1042 /*
1043  * MPSAFE
1044  */
1045 int
1046 vop_setacl(struct vop_ops *ops, struct vnode *vp, acl_type_t type,
1047         struct acl *aclp, struct ucred *cred)
1048 {
1049         struct vop_setacl_args ap;
1050         VFS_MPLOCK_DECLARE;
1051         int error;
1052
1053         ap.a_head.a_desc = &vop_setacl_desc;
1054         ap.a_head.a_ops = ops;
1055         ap.a_vp = vp;
1056         ap.a_type = type;
1057         ap.a_aclp = aclp;
1058         ap.a_cred = cred;
1059
1060         VFS_MPLOCK1(vp->v_mount);
1061         DO_OPS(ops, error, &ap, vop_setacl);
1062         VFS_MPUNLOCK(vp->v_mount);
1063         return(error);
1064 }
1065
1066 /*
1067  * MPSAFE
1068  */
1069 int
1070 vop_aclcheck(struct vop_ops *ops, struct vnode *vp, acl_type_t type,
1071         struct acl *aclp, struct ucred *cred)
1072 {
1073         struct vop_aclcheck_args ap;
1074         VFS_MPLOCK_DECLARE;
1075         int error;
1076
1077         ap.a_head.a_desc = &vop_aclcheck_desc;
1078         ap.a_head.a_ops = ops;
1079         ap.a_vp = vp;
1080         ap.a_type = type;
1081         ap.a_aclp = aclp;
1082         ap.a_cred = cred;
1083
1084         VFS_MPLOCK1(vp->v_mount);
1085         DO_OPS(ops, error, &ap, vop_aclcheck);
1086         VFS_MPUNLOCK(vp->v_mount);
1087         return(error);
1088 }
1089
1090 /*
1091  * MPSAFE
1092  */
1093 int
1094 vop_getextattr(struct vop_ops *ops, struct vnode *vp, char *name, 
1095         struct uio *uio, struct ucred *cred)
1096 {
1097         struct vop_getextattr_args ap;
1098         VFS_MPLOCK_DECLARE;
1099         int error;
1100
1101         ap.a_head.a_desc = &vop_getextattr_desc;
1102         ap.a_head.a_ops = ops;
1103         ap.a_vp = vp;
1104         ap.a_name = name;
1105         ap.a_uio = uio;
1106         ap.a_cred = cred;
1107
1108         VFS_MPLOCK1(vp->v_mount);
1109         DO_OPS(ops, error, &ap, vop_getextattr);
1110         VFS_MPUNLOCK(vp->v_mount);
1111         return(error);
1112 }
1113
1114 /*
1115  * MPSAFE
1116  */
1117 int
1118 vop_setextattr(struct vop_ops *ops, struct vnode *vp, char *name, 
1119         struct uio *uio, struct ucred *cred)
1120 {
1121         struct vop_setextattr_args ap;
1122         VFS_MPLOCK_DECLARE;
1123         int error;
1124
1125         ap.a_head.a_desc = &vop_setextattr_desc;
1126         ap.a_head.a_ops = ops;
1127         ap.a_vp = vp;
1128         ap.a_name = name;
1129         ap.a_uio = uio;
1130         ap.a_cred = cred;
1131
1132         VFS_MPLOCK1(vp->v_mount);
1133         DO_OPS(ops, error, &ap, vop_setextattr);
1134         VFS_MPUNLOCK(vp->v_mount);
1135         return(error);
1136 }
1137
1138 /*
1139  * MPSAFE
1140  */
1141 int
1142 vop_mountctl(struct vop_ops *ops, struct vnode *vp, int op, struct file *fp,
1143              const void *ctl, int ctllen, void *buf, int buflen, int *res)
1144 {
1145         struct vop_mountctl_args ap;
1146         VFS_MPLOCK_DECLARE;
1147         int error;
1148
1149         ap.a_head.a_desc = &vop_mountctl_desc;
1150         ap.a_head.a_ops = ops;
1151         ap.a_op = op;
1152         ap.a_ctl = ctl;
1153         ap.a_fp = fp;
1154         ap.a_ctllen = ctllen;
1155         ap.a_buf = buf;
1156         ap.a_buflen = buflen;
1157         ap.a_res = res;
1158
1159         VFS_MPLOCK1(vp->v_mount);
1160         DO_OPS(ops, error, &ap, vop_mountctl);
1161         VFS_MPUNLOCK(vp->v_mount);
1162         return(error);
1163 }
1164
1165 /*
1166  * MPSAFE
1167  */
1168 int
1169 vop_markatime(struct vop_ops *ops, struct vnode *vp, struct ucred *cred)
1170 {
1171         struct vop_markatime_args ap;
1172         VFS_MPLOCK_DECLARE;
1173         int error;
1174
1175         ap.a_head.a_desc = &vop_markatime_desc;
1176         ap.a_head.a_ops = ops;
1177         ap.a_vp = vp;
1178         ap.a_cred = cred;
1179
1180         VFS_MPLOCK1(vp->v_mount);
1181         DO_OPS(ops, error, &ap, vop_markatime);
1182         VFS_MPUNLOCK(vp->v_mount);
1183         return(error);
1184 }
1185
1186 /*
1187  * NEW API FUNCTIONS
1188  *
1189  * nresolve takes a locked ncp, a referenced but unlocked dvp, and a cred,
1190  * and resolves the ncp into a positive or negative hit.
1191  *
1192  * The namecache is automatically adjusted by this function.  The ncp
1193  * is left locked on return.
1194  *
1195  * MPSAFE
1196  */
1197 int
1198 vop_nresolve(struct vop_ops *ops, struct nchandle *nch,
1199              struct vnode *dvp, struct ucred *cred)
1200 {
1201         struct vop_nresolve_args ap;
1202         VFS_MPLOCK_DECLARE;
1203         int error;
1204
1205         ap.a_head.a_desc = &vop_nresolve_desc;
1206         ap.a_head.a_ops = ops;
1207         ap.a_nch = nch;
1208         ap.a_dvp = dvp;
1209         ap.a_cred = cred;
1210
1211         VFS_MPLOCK1(dvp->v_mount);
1212         DO_OPS(ops, error, &ap, vop_nresolve);
1213         VFS_MPUNLOCK(dvp->v_mount);
1214         return(error);
1215 }
1216
1217 /*
1218  * nlookupdotdot takes an unlocked directory, referenced dvp, and looks
1219  * up "..", returning a locked parent directory in *vpp.  If an error
1220  * occurs *vpp will be NULL.
1221  *
1222  * MPSAFE
1223  */
1224 int
1225 vop_nlookupdotdot(struct vop_ops *ops, struct vnode *dvp,
1226         struct vnode **vpp, struct ucred *cred, char **fakename)
1227 {
1228         struct vop_nlookupdotdot_args ap;
1229         VFS_MPLOCK_DECLARE;
1230         int error;
1231
1232         ap.a_head.a_desc = &vop_nlookupdotdot_desc;
1233         ap.a_head.a_ops = ops;
1234         ap.a_dvp = dvp;
1235         ap.a_vpp = vpp;
1236         ap.a_cred = cred;
1237         ap.a_fakename = fakename;
1238
1239         VFS_MPLOCK1(dvp->v_mount);
1240         DO_OPS(ops, error, &ap, vop_nlookupdotdot);
1241         VFS_MPUNLOCK(dvp->v_mount);
1242         return(error);
1243 }
1244
1245 /*
1246  * ncreate takes a locked, resolved ncp that typically represents a negative
1247  * cache hit and creates the file or node specified by the ncp, cred, and
1248  * vattr.  If no error occurs a locked vnode is returned in *vpp.
1249  *
1250  * The dvp passed in is referenced but unlocked.
1251  *
1252  * The namecache is automatically adjusted by this function.  The ncp
1253  * is left locked on return.
1254  *
1255  * MPSAFE
1256  */
1257 int
1258 vop_ncreate(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
1259         struct vnode **vpp, struct ucred *cred, struct vattr *vap)
1260 {
1261         struct vop_ncreate_args ap;
1262         VFS_MPLOCK_DECLARE;
1263         int error;
1264
1265         ap.a_head.a_desc = &vop_ncreate_desc;
1266         ap.a_head.a_ops = ops;
1267         ap.a_nch = nch;
1268         ap.a_dvp = dvp;
1269         ap.a_vpp = vpp;
1270         ap.a_cred = cred;
1271         ap.a_vap = vap;
1272
1273         VFS_MPLOCK1(dvp->v_mount);
1274         DO_OPS(ops, error, &ap, vop_ncreate);
1275         VFS_MPUNLOCK(dvp->v_mount);
1276         return(error);
1277 }
1278
1279 /*
1280  * nmkdir takes a locked, resolved ncp that typically represents a negative
1281  * cache hit and creates the directory specified by the ncp, cred, and
1282  * vattr.  If no error occurs a locked vnode is returned in *vpp.
1283  *
1284  * The dvp passed in is referenced but unlocked.
1285  *
1286  * The namecache is automatically adjusted by this function.  The ncp
1287  * is left locked on return.
1288  *
1289  * MPSAFE
1290  */
1291 int
1292 vop_nmkdir(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
1293         struct vnode **vpp, struct ucred *cred, struct vattr *vap)
1294 {
1295         struct vop_nmkdir_args ap;
1296         VFS_MPLOCK_DECLARE;
1297         int error;
1298
1299         ap.a_head.a_desc = &vop_nmkdir_desc;
1300         ap.a_head.a_ops = ops;
1301         ap.a_nch = nch;
1302         ap.a_dvp = dvp;
1303         ap.a_vpp = vpp;
1304         ap.a_cred = cred;
1305         ap.a_vap = vap;
1306
1307         VFS_MPLOCK1(dvp->v_mount);
1308         DO_OPS(ops, error, &ap, vop_nmkdir);
1309         VFS_MPUNLOCK(dvp->v_mount);
1310         return(error);
1311 }
1312
1313 /*
1314  * nmknod takes a locked, resolved ncp that typically represents a negative
1315  * cache hit and creates the node specified by the ncp, cred, and
1316  * vattr.  If no error occurs a locked vnode is returned in *vpp.
1317  *
1318  * The dvp passed in is referenced but unlocked.
1319  *
1320  * The namecache is automatically adjusted by this function.  The ncp
1321  * is left locked on return.
1322  *
1323  * MPSAFE
1324  */
1325 int
1326 vop_nmknod(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
1327         struct vnode **vpp, struct ucred *cred, struct vattr *vap)
1328 {
1329         struct vop_nmknod_args ap;
1330         VFS_MPLOCK_DECLARE;
1331         int error;
1332
1333         ap.a_head.a_desc = &vop_nmknod_desc;
1334         ap.a_head.a_ops = ops;
1335         ap.a_nch = nch;
1336         ap.a_dvp = dvp;
1337         ap.a_vpp = vpp;
1338         ap.a_cred = cred;
1339         ap.a_vap = vap;
1340
1341         VFS_MPLOCK1(dvp->v_mount);
1342         DO_OPS(ops, error, &ap, vop_nmknod);
1343         VFS_MPUNLOCK(dvp->v_mount);
1344         return(error);
1345 }
1346
1347 /*
1348  * nlink takes a locked, resolved ncp that typically represents a negative
1349  * cache hit and creates the node specified by the ncp, cred, and
1350  * existing vnode.  The passed vp must be locked and will remain locked
1351  * on return, as does the ncp, whether an error occurs or not.
1352  *
1353  * The dvp passed in is referenced but unlocked.
1354  *
1355  * The namecache is automatically adjusted by this function.  The ncp
1356  * is left locked on return.
1357  *
1358  * MPSAFE
1359  */
1360 int
1361 vop_nlink(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
1362           struct vnode *vp, struct ucred *cred)
1363 {
1364         struct vop_nlink_args ap;
1365         VFS_MPLOCK_DECLARE;
1366         int error;
1367
1368         ap.a_head.a_desc = &vop_nlink_desc;
1369         ap.a_head.a_ops = ops;
1370         ap.a_nch = nch;
1371         ap.a_dvp = dvp;
1372         ap.a_vp = vp;
1373         ap.a_cred = cred;
1374
1375         VFS_MPLOCK1(dvp->v_mount);
1376         DO_OPS(ops, error, &ap, vop_nlink);
1377         VFS_MPUNLOCK(dvp->v_mount);
1378         return(error);
1379 }
1380
1381 /*
1382  * nsymlink takes a locked, resolved ncp that typically represents a negative
1383  * cache hit and creates a symbolic link based on cred, vap, and target (the
1384  * contents of the link).  If no error occurs a locked vnode is returned in
1385  * *vpp.
1386  *
1387  * The dvp passed in is referenced but unlocked.
1388  *
1389  * The namecache is automatically adjusted by this function.  The ncp
1390  * is left locked on return.
1391  *
1392  * MPSAFE
1393  */
1394 int
1395 vop_nsymlink(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
1396         struct vnode **vpp, struct ucred *cred,
1397         struct vattr *vap, char *target)
1398 {
1399         struct vop_nsymlink_args ap;
1400         VFS_MPLOCK_DECLARE;
1401         int error;
1402
1403         ap.a_head.a_desc = &vop_nsymlink_desc;
1404         ap.a_head.a_ops = ops;
1405         ap.a_nch = nch;
1406         ap.a_dvp = dvp;
1407         ap.a_vpp = vpp;
1408         ap.a_cred = cred;
1409         ap.a_vap = vap;
1410         ap.a_target = target;
1411
1412         VFS_MPLOCK1(dvp->v_mount);
1413         DO_OPS(ops, error, &ap, vop_nsymlink);
1414         VFS_MPUNLOCK(dvp->v_mount);
1415         return(error);
1416 }
1417
1418 /*
1419  * nwhiteout takes a locked, resolved ncp that can represent a positive or
1420  * negative hit and executes the whiteout function specified in flags.
1421  *
1422  * The dvp passed in is referenced but unlocked.
1423  *
1424  * The namecache is automatically adjusted by this function.  The ncp
1425  * is left locked on return.
1426  *
1427  * MPSAFE
1428  */
1429 int
1430 vop_nwhiteout(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
1431         struct ucred *cred, int flags)
1432 {
1433         struct vop_nwhiteout_args ap;
1434         VFS_MPLOCK_DECLARE;
1435         int error;
1436
1437         ap.a_head.a_desc = &vop_nwhiteout_desc;
1438         ap.a_head.a_ops = ops;
1439         ap.a_nch = nch;
1440         ap.a_dvp = dvp;
1441         ap.a_cred = cred;
1442         ap.a_flags = flags;
1443
1444         VFS_MPLOCK1(dvp->v_mount);
1445         DO_OPS(ops, error, &ap, vop_nwhiteout);
1446         VFS_MPUNLOCK(dvp->v_mount);
1447         return(error);
1448 }
1449
1450 /*
1451  * nremove takes a locked, resolved ncp that generally represents a
1452  * positive hit and removes the file.
1453  *
1454  * The dvp passed in is referenced but unlocked.
1455  *
1456  * The namecache is automatically adjusted by this function.  The ncp
1457  * is left locked on return.
1458  *
1459  * MPSAFE
1460  */
1461 int
1462 vop_nremove(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
1463             struct ucred *cred)
1464 {
1465         struct vop_nremove_args ap;
1466         VFS_MPLOCK_DECLARE;
1467         int error;
1468
1469         ap.a_head.a_desc = &vop_nremove_desc;
1470         ap.a_head.a_ops = ops;
1471         ap.a_nch = nch;
1472         ap.a_dvp = dvp;
1473         ap.a_cred = cred;
1474
1475         VFS_MPLOCK1(dvp->v_mount);
1476         DO_OPS(ops, error, &ap, vop_nremove);
1477         VFS_MPUNLOCK(dvp->v_mount);
1478         return(error);
1479 }
1480
1481 /*
1482  * nrmdir takes a locked, resolved ncp that generally represents a
1483  * directory and removes the directory.
1484  *
1485  * The dvp passed in is referenced but unlocked.
1486  *
1487  * The namecache is automatically adjusted by this function.  The ncp
1488  * is left locked on return.
1489  *
1490  * MPSAFE
1491  */
1492 int
1493 vop_nrmdir(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
1494            struct ucred *cred)
1495 {
1496         struct vop_nrmdir_args ap;
1497         VFS_MPLOCK_DECLARE;
1498         int error;
1499
1500         ap.a_head.a_desc = &vop_nrmdir_desc;
1501         ap.a_head.a_ops = ops;
1502         ap.a_nch = nch;
1503         ap.a_dvp = dvp;
1504         ap.a_cred = cred;
1505
1506         VFS_MPLOCK1(dvp->v_mount);
1507         DO_OPS(ops, error, &ap, vop_nrmdir);
1508         VFS_MPUNLOCK(dvp->v_mount);
1509         return(error);
1510 }
1511
1512 /*
1513  * nrename takes TWO locked, resolved ncp's and the cred of the caller
1514  * and renames the source ncp to the target ncp.  The target ncp may 
1515  * represent a positive or negative hit.
1516  *
1517  * The fdvp and tdvp passed in are referenced but unlocked.
1518  *
1519  * The namecache is automatically adjusted by this function.  The ncp
1520  * is left locked on return.  The source ncp is typically changed to
1521  * a negative cache hit and the target ncp typically takes on the
1522  * source ncp's underlying file.
1523  *
1524  * MPSAFE
1525  */
1526 int
1527 vop_nrename(struct vop_ops *ops,
1528             struct nchandle *fnch, struct nchandle *tnch,
1529             struct vnode *fdvp, struct vnode *tdvp,
1530             struct ucred *cred)
1531 {
1532         struct vop_nrename_args ap;
1533         VFS_MPLOCK_DECLARE;
1534         int error;
1535
1536         ap.a_head.a_desc = &vop_nrename_desc;
1537         ap.a_head.a_ops = ops;
1538         ap.a_fnch = fnch;
1539         ap.a_tnch = tnch;
1540         ap.a_fdvp = fdvp;
1541         ap.a_tdvp = tdvp;
1542         ap.a_cred = cred;
1543
1544         VFS_MPLOCK1(fdvp->v_mount);
1545         DO_OPS(ops, error, &ap, vop_nrename);
1546         VFS_MPUNLOCK(fdvp->v_mount);
1547         return(error);
1548 }
1549
1550 /************************************************************************
1551  *              PRIMARY VNODE OPERATIONS FORWARDING CALLS               *
1552  ************************************************************************
1553  *
1554  * These procedures are called from VFSs such as unionfs and nullfs
1555  * when they wish to forward an operation on one VFS to another.  The
1556  * argument structure/message is modified and then directly passed to the
1557  * appropriate routine.  This routines may also be called by initiators
1558  * who have an argument structure in hand rather then discreet arguments.
1559  *
1560  * MPSAFE - Caller expected to already hold the appropriate vfs lock.
1561  */
1562 int
1563 vop_vnoperate_ap(struct vop_generic_args *ap)
1564 {
1565         struct vop_ops *ops;
1566         int error;
1567
1568         ops = ap->a_ops;
1569         error = VOCALL(ops, ap);
1570
1571         return (error);
1572 }
1573
1574 /*
1575  * This routine is called by the cache coherency layer to execute the actual
1576  * VFS operation.  If a journaling layer is present we call though it, else
1577  * we call the native VOP functions.
1578  */
1579 int
1580 vop_cache_operate_ap(struct vop_generic_args *ap)
1581 {
1582         struct vop_ops *ops;
1583         int error;
1584
1585         ops = ap->a_ops;
1586         if (ops->head.vv_mount->mnt_vn_journal_ops)
1587                 error = VOCALL(ops->head.vv_mount->mnt_vn_journal_ops, ap);
1588         else
1589                 error = VOCALL(ops->head.vv_mount->mnt_vn_norm_ops, ap);
1590         return (error);
1591 }
1592
1593
1594 /*
1595  * This routine is called by the journaling layer to execute the actual
1596  * VFS operation.
1597  */
1598 int
1599 vop_journal_operate_ap(struct vop_generic_args *ap)
1600 {
1601         struct vop_ops *ops;
1602         int error;
1603
1604         ops = ap->a_ops;
1605         error = VOCALL(ops->head.vv_mount->mnt_vn_norm_ops, ap);
1606
1607         return (error);
1608 }
1609
1610 int
1611 vop_open_ap(struct vop_open_args *ap)
1612 {
1613         int error;
1614
1615         DO_OPS(ap->a_head.a_ops, error, ap, vop_open);
1616         return(error);
1617 }
1618
1619 int
1620 vop_close_ap(struct vop_close_args *ap)
1621 {
1622         int error;
1623
1624         DO_OPS(ap->a_head.a_ops, error, ap, vop_close);
1625         return(error);
1626 }
1627
1628 int
1629 vop_access_ap(struct vop_access_args *ap)
1630 {
1631         int error;
1632
1633         DO_OPS(ap->a_head.a_ops, error, ap, vop_access);
1634         return(error);
1635 }
1636
1637 int
1638 vop_getattr_ap(struct vop_getattr_args *ap)
1639 {
1640         int error;
1641
1642         DO_OPS(ap->a_head.a_ops, error, ap, vop_getattr);
1643         return(error);
1644 }
1645
1646 int
1647 vop_setattr_ap(struct vop_setattr_args *ap)
1648 {
1649         int error;
1650
1651         DO_OPS(ap->a_head.a_ops, error, ap, vop_setattr);
1652         return(error);
1653 }
1654
1655 int
1656 vop_read_ap(struct vop_read_args *ap)
1657 {
1658         int error;
1659
1660         DO_OPS(ap->a_head.a_ops, error, ap, vop_read);
1661         return(error);
1662 }
1663
1664 int
1665 vop_write_ap(struct vop_write_args *ap)
1666 {
1667         int error;
1668
1669         DO_OPS(ap->a_head.a_ops, error, ap, vop_write);
1670         return(error);
1671 }
1672
1673 int
1674 vop_ioctl_ap(struct vop_ioctl_args *ap)
1675 {
1676         int error;
1677
1678         DO_OPS(ap->a_head.a_ops, error, ap, vop_ioctl);
1679         return(error);
1680 }
1681
1682 int
1683 vop_poll_ap(struct vop_poll_args *ap)
1684 {
1685         int error;
1686
1687         DO_OPS(ap->a_head.a_ops, error, ap, vop_poll);
1688         return(error);
1689 }
1690
1691 int
1692 vop_kqfilter_ap(struct vop_kqfilter_args *ap)
1693 {
1694         int error;
1695
1696         DO_OPS(ap->a_head.a_ops, error, ap, vop_kqfilter);
1697         return(error);
1698 }
1699
1700 int
1701 vop_mmap_ap(struct vop_mmap_args *ap)
1702 {
1703         int error;
1704
1705         DO_OPS(ap->a_head.a_ops, error, ap, vop_mmap);
1706         return(error);
1707 }
1708
1709 int
1710 vop_fsync_ap(struct vop_fsync_args *ap)
1711 {
1712         int error;
1713
1714         DO_OPS(ap->a_head.a_ops, error, ap, vop_fsync);
1715         return(error);
1716 }
1717
1718 int
1719 vop_readdir_ap(struct vop_readdir_args *ap)
1720 {
1721         int error;
1722
1723         DO_OPS(ap->a_head.a_ops, error, ap, vop_readdir);
1724         return(error);
1725 }
1726
1727 int
1728 vop_readlink_ap(struct vop_readlink_args *ap)
1729 {
1730         int error;
1731
1732         DO_OPS(ap->a_head.a_ops, error, ap, vop_readlink);
1733         return(error);
1734 }
1735
1736 int
1737 vop_inactive_ap(struct vop_inactive_args *ap)
1738 {
1739         int error;
1740
1741         DO_OPS(ap->a_head.a_ops, error, ap, vop_inactive);
1742         return(error);
1743 }
1744
1745 int
1746 vop_reclaim_ap(struct vop_reclaim_args *ap)
1747 {
1748         int error;
1749
1750         DO_OPS(ap->a_head.a_ops, error, ap, vop_reclaim);
1751         return(error);
1752 }
1753
1754 int
1755 vop_bmap_ap(struct vop_bmap_args *ap)
1756 {
1757         int error;
1758
1759         DO_OPS(ap->a_head.a_ops, error, ap, vop_bmap);
1760         return(error);
1761 }
1762
1763 int
1764 vop_strategy_ap(struct vop_strategy_args *ap)
1765 {
1766         int error;
1767
1768         DO_OPS(ap->a_head.a_ops, error, ap, vop_strategy);
1769         return(error);
1770 }
1771
1772 int
1773 vop_print_ap(struct vop_print_args *ap)
1774 {
1775         int error;
1776
1777         DO_OPS(ap->a_head.a_ops, error, ap, vop_print);
1778         return(error);
1779 }
1780
1781 int
1782 vop_pathconf_ap(struct vop_pathconf_args *ap)
1783 {
1784         int error;
1785
1786         DO_OPS(ap->a_head.a_ops, error, ap, vop_pathconf);
1787         return(error);
1788 }
1789
1790 int
1791 vop_advlock_ap(struct vop_advlock_args *ap)
1792 {
1793         int error;
1794
1795         DO_OPS(ap->a_head.a_ops, error, ap, vop_advlock);
1796         return(error);
1797 }
1798
1799 int
1800 vop_balloc_ap(struct vop_balloc_args *ap)
1801 {
1802         int error;
1803
1804         DO_OPS(ap->a_head.a_ops, error, ap, vop_balloc);
1805         return(error);
1806 }
1807
1808 int
1809 vop_reallocblks_ap(struct vop_reallocblks_args *ap)
1810 {
1811         int error;
1812
1813         DO_OPS(ap->a_head.a_ops, error, ap, vop_reallocblks);
1814         return(error);
1815 }
1816
1817 int
1818 vop_getpages_ap(struct vop_getpages_args *ap)
1819 {
1820         int error;
1821
1822         DO_OPS(ap->a_head.a_ops, error, ap, vop_getpages);
1823         return(error);
1824 }
1825
1826 int
1827 vop_putpages_ap(struct vop_putpages_args *ap)
1828 {
1829         int error;
1830
1831         DO_OPS(ap->a_head.a_ops, error, ap, vop_putpages);
1832         return(error);
1833 }
1834
1835 int
1836 vop_freeblks_ap(struct vop_freeblks_args *ap)
1837 {
1838         int error;
1839
1840         DO_OPS(ap->a_head.a_ops, error, ap, vop_freeblks);
1841         return(error);
1842 }
1843
1844 int
1845 vop_getacl_ap(struct vop_getacl_args *ap)
1846 {
1847         int error;
1848
1849         DO_OPS(ap->a_head.a_ops, error, ap, vop_getacl);
1850         return(error);
1851 }
1852
1853 int
1854 vop_setacl_ap(struct vop_setacl_args *ap)
1855 {
1856         int error;
1857
1858         DO_OPS(ap->a_head.a_ops, error, ap, vop_setacl);
1859         return(error);
1860 }
1861
1862 int
1863 vop_aclcheck_ap(struct vop_aclcheck_args *ap)
1864 {
1865         int error;
1866
1867         DO_OPS(ap->a_head.a_ops, error, ap, vop_aclcheck);
1868         return(error);
1869 }
1870
1871 int
1872 vop_getextattr_ap(struct vop_getextattr_args *ap)
1873 {
1874         int error;
1875
1876         DO_OPS(ap->a_head.a_ops, error, ap, vop_getextattr);
1877         return(error);
1878 }
1879
1880 int
1881 vop_setextattr_ap(struct vop_setextattr_args *ap)
1882 {
1883         int error;
1884
1885         DO_OPS(ap->a_head.a_ops, error, ap, vop_setextattr);
1886         return(error);
1887 }
1888
1889 int
1890 vop_mountctl_ap(struct vop_mountctl_args *ap)
1891 {
1892         int error;
1893
1894         DO_OPS(ap->a_head.a_ops, error, ap, vop_mountctl);
1895         return(error);
1896 }
1897
1898 int
1899 vop_markatime_ap(struct vop_markatime_args *ap)
1900 {
1901         int error;
1902
1903         DO_OPS(ap->a_head.a_ops, error, ap, vop_markatime);
1904         return(error);
1905 }
1906
1907 int
1908 vop_nresolve_ap(struct vop_nresolve_args *ap)
1909 {
1910         int error;
1911
1912         DO_OPS(ap->a_head.a_ops, error, ap, vop_nresolve);
1913         return(error);
1914 }
1915
1916 int
1917 vop_nlookupdotdot_ap(struct vop_nlookupdotdot_args *ap)
1918 {
1919         int error;
1920
1921         DO_OPS(ap->a_head.a_ops, error, ap, vop_nlookupdotdot);
1922         return(error);
1923 }
1924
1925 int
1926 vop_ncreate_ap(struct vop_ncreate_args *ap)
1927 {
1928         int error;
1929
1930         DO_OPS(ap->a_head.a_ops, error, ap, vop_ncreate);
1931         return(error);
1932 }
1933
1934 int
1935 vop_nmkdir_ap(struct vop_nmkdir_args *ap)
1936 {
1937         int error;
1938
1939         DO_OPS(ap->a_head.a_ops, error, ap, vop_nmkdir);
1940         return(error);
1941 }
1942
1943 int
1944 vop_nmknod_ap(struct vop_nmknod_args *ap)
1945 {
1946         int error;
1947
1948         DO_OPS(ap->a_head.a_ops, error, ap, vop_nmknod);
1949         return(error);
1950 }
1951
1952 int
1953 vop_nlink_ap(struct vop_nlink_args *ap)
1954 {
1955         int error;
1956
1957         DO_OPS(ap->a_head.a_ops, error, ap, vop_nlink);
1958         return(error);
1959 }
1960
1961 int
1962 vop_nsymlink_ap(struct vop_nsymlink_args *ap)
1963 {
1964         int error;
1965
1966         DO_OPS(ap->a_head.a_ops, error, ap, vop_nsymlink);
1967         return(error);
1968 }
1969
1970 int
1971 vop_nwhiteout_ap(struct vop_nwhiteout_args *ap)
1972 {
1973         int error;
1974
1975         DO_OPS(ap->a_head.a_ops, error, ap, vop_nwhiteout);
1976         return(error);
1977 }
1978
1979 int
1980 vop_nremove_ap(struct vop_nremove_args *ap)
1981 {
1982         int error;
1983
1984         DO_OPS(ap->a_head.a_ops, error, ap, vop_nremove);
1985         return(error);
1986 }
1987
1988 int
1989 vop_nrmdir_ap(struct vop_nrmdir_args *ap)
1990 {
1991         int error;
1992
1993         DO_OPS(ap->a_head.a_ops, error, ap, vop_nrmdir);
1994         return(error);
1995 }
1996
1997 int
1998 vop_nrename_ap(struct vop_nrename_args *ap)
1999 {
2000         int error;
2001
2002         DO_OPS(ap->a_head.a_ops, error, ap, vop_nrename);
2003         return(error);
2004 }
2005