2 # Copyright (c) 1992, 1993
3 # The Regents of the University of California. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution.
13 # 4. Neither the name of the University nor the names of its contributors
14 # may be used to endorse or promote products derived from this software
15 # without specific prior written permission.
17 # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 # @(#)vnode_if.src 8.12 (Berkeley) 5/14/95
34 # Above each of the vop descriptors in lines starting with %%
35 # is a specification of the locking protocol used by each vop call.
36 # The first column is the name of the variable, the remaining three
37 # columns are in, out and error respectively. The "in" column defines
38 # the lock state on input, the "out" column defines the state on succesful
39 # return, and the "error" column defines the locking state on error exit.
41 # The locking value can take the following values:
42 # L: locked; not converted to type of lock.
44 # S: locked with shared lock.
45 # E: locked with exclusive lock for this process.
46 # O: locked with exclusive lock for other process.
48 # -: not applicable. vnode does not yet (or no longer) exists.
49 # =: the same on input and output, may be either L or U.
50 # X: locked if not nil.
52 # The paramater named "vpp" is assumed to be always used with double
53 # indirection (**vpp) and that name is hard-codeed in vnode_if.awk !
55 # Lines starting with %! specify a pre or post-condition function
56 # to call before/after the vop call.
58 # If other such parameters are introduced, they have to be added to
59 # the AWK script at the head of the definition of "add_debug_code()".
68 %! lookup pre vop_lookup_pre
69 %! lookup post vop_lookup_post
71 # XXX - the lookup locking protocol defies simple description and depends
72 # on the flags and operation fields in the (cnp) structure. Note
73 # especially that *vpp may equal dvp and both may be locked.
77 INOUT struct vnode **vpp;
78 IN struct componentname *cnp;
81 %% cachedlookup dvp L ? ?
82 %% cachedlookup vpp - L -
84 # This must be an exact copy of lookup. See kern/vfs_cache.c for details.
88 INOUT struct vnode **vpp;
89 IN struct componentname *cnp;
94 %! create post vop_create_post
98 OUT struct vnode **vpp;
99 IN struct componentname *cnp;
100 IN struct vattr *vap;
104 %% whiteout dvp E E E
107 IN struct vnode *dvp;
108 IN struct componentname *cnp;
115 %! mknod post vop_mknod_post
118 IN struct vnode *dvp;
119 OUT struct vnode **vpp;
120 IN struct componentname *cnp;
121 IN struct vattr *vap;
130 IN struct ucred *cred;
131 IN struct thread *td;
141 IN struct ucred *cred;
142 IN struct thread *td;
151 IN struct ucred *cred;
152 IN struct thread *td;
160 OUT struct vattr *vap;
161 IN struct ucred *cred;
166 %! setattr post vop_setattr_post
170 IN struct vattr *vap;
171 IN struct ucred *cred;
179 INOUT struct uio *uio;
181 IN struct ucred *cred;
186 %! write pre VOP_WRITE_PRE
187 %! write post VOP_WRITE_POST
191 INOUT struct uio *uio;
193 IN struct ucred *cred;
201 IN struct thread *td;
202 IN struct ucred *cred;
214 IN struct ucred *cred;
215 IN struct thread *td;
224 IN struct ucred *cred;
225 IN struct thread *td;
250 IN struct thread *td;
256 %! remove post vop_remove_post
259 IN struct vnode *dvp;
261 IN struct componentname *cnp;
267 %! link post vop_link_post
270 IN struct vnode *tdvp;
272 IN struct componentname *cnp;
276 %! rename pre vop_rename_pre
277 %! rename post vop_rename_post
280 IN WILLRELE struct vnode *fdvp;
281 IN WILLRELE struct vnode *fvp;
282 IN struct componentname *fcnp;
283 IN WILLRELE struct vnode *tdvp;
284 IN WILLRELE struct vnode *tvp;
285 IN struct componentname *tcnp;
291 %! mkdir post vop_mkdir_post
294 IN struct vnode *dvp;
295 OUT struct vnode **vpp;
296 IN struct componentname *cnp;
297 IN struct vattr *vap;
303 %! rmdir post vop_rmdir_post
306 IN struct vnode *dvp;
308 IN struct componentname *cnp;
314 %! symlink post vop_symlink_post
317 IN struct vnode *dvp;
318 OUT struct vnode **vpp;
319 IN struct componentname *cnp;
320 IN struct vattr *vap;
329 INOUT struct uio *uio;
330 IN struct ucred *cred;
333 INOUT u_long **cookies;
341 INOUT struct uio *uio;
342 IN struct ucred *cred;
350 IN struct thread *td;
358 IN struct thread *td;
362 %! lock1 pre vop_lock_pre
363 %! lock1 post vop_lock_post
373 %! unlock pre vop_unlock_pre
374 %! unlock post vop_unlock_post
387 OUT struct bufobj **bop;
395 %! strategy pre vop_strategy_pre
403 %% getwritemount vp = = =
407 OUT struct mount **mpp;
423 OUT register_t *retval;
438 %% advlockasync vp U U U
446 IN struct task *task;
447 INOUT void **cookiep;
451 %% reallocblks vp E E E
455 IN struct cluster_save *buflist;
466 IN vm_ooffset_t offset;
478 IN vm_ooffset_t offset;
487 OUT struct acl *aclp;
488 IN struct ucred *cred;
489 IN struct thread *td;
499 IN struct ucred *cred;
500 IN struct thread *td;
510 IN struct ucred *cred;
511 IN struct thread *td;
515 %% closeextattr vp L L L
520 IN struct ucred *cred;
521 IN struct thread *td;
525 %% getextattr vp L L L
529 IN int attrnamespace;
531 INOUT struct uio *uio;
533 IN struct ucred *cred;
534 IN struct thread *td;
538 %% listextattr vp L L L
542 IN int attrnamespace;
543 INOUT struct uio *uio;
545 IN struct ucred *cred;
546 IN struct thread *td;
550 %% openextattr vp L L L
554 IN struct ucred *cred;
555 IN struct thread *td;
559 %% deleteextattr vp E E E
563 IN int attrnamespace;
565 IN struct ucred *cred;
566 IN struct thread *td;
570 %% setextattr vp E E E
574 IN int attrnamespace;
576 INOUT struct uio *uio;
577 IN struct ucred *cred;
578 IN struct thread *td;
586 IN struct label *label;
587 IN struct ucred *cred;
588 IN struct thread *td;