macos: don't attempt finalize fixup on root vnode
[openafs.git] / src / afs / DARWIN / osi_vnodeops.c
1 /*
2  * Portions Copyright (c) 2003 Apple Computer, Inc.  All rights reserved.
3  */
4 #include <afsconfig.h>
5 #include <afs/param.h>
6
7
8 #include <afs/sysincludes.h>    /* Standard vendor system headers */
9 #include <afsincludes.h>        /* Afs-based standard headers */
10 #include <afs/afs_stats.h>      /* statistics */
11 #include <sys/malloc.h>
12 #include <sys/namei.h>
13 #include <sys/ubc.h>
14 #include <vfs/vfs_support.h>
15 #ifdef AFS_DARWIN80_ENV
16 #include <sys/vnode_if.h>
17 #include <sys/kauth.h>
18 #endif
19
20 #ifdef AFS_DARWIN80_ENV
21 #define VOPPREF(x) &vnop_ ## x
22 #define VOPPROT(x) vnop_ ## x
23 #define OSI_UPL_ABORT_RANGE(pl, offset, size, flags) \
24   ubc_upl_abort_range((pl), (offset), (size), (flags))
25 #define OSI_UPL_COMMIT_RANGE(pl, offset, size, flags) \
26   ubc_upl_commit_range((pl), (offset), (size), (flags))
27 #define OSI_UPL_MAP(upl, offset) ubc_upl_map((upl), (offset))
28 #define OSI_UPL_UNMAP(upl) ubc_upl_unmap((upl))
29 #define VOP_ABORTOP(x, y)
30 #else
31 #define VOPPREF(x) &vop_ ## x
32 #define VOPPROT(x) vop_ ## x
33 #define OSI_UPL_ABORT_RANGE(pl, offset, size, flags) \
34   kernel_upl_abort_range((pl), (offset), (size), (flags))
35 #define OSI_UPL_COMMIT_RANGE(pl, offset, size, flags) \
36   kernel_upl_commit_range((pl), (offset), (size), (flags), \
37                           UPL_GET_INTERNAL_PAGE_LIST((pl)),\
38                                     MAX_UPL_TRANSFER)
39 #define OSI_UPL_MAP(upl, offset) kernel_upl_map(kernel_map, (upl), (offset))
40 #define OSI_UPL_UNMAP(upl) kernel_upl_unmap(kernel_map, (upl))
41 #endif
42
43 extern char afs_zeros[AFS_ZEROS];
44
45 int afs_vop_lookup(struct VOPPROT(lookup_args) *);
46 int afs_vop_create(struct VOPPROT(create_args) *);
47 int afs_vop_mknod(struct VOPPROT(mknod_args) *);
48 int afs_vop_open(struct VOPPROT(open_args) *);
49 int afs_vop_close(struct VOPPROT(close_args) *);
50 int afs_vop_access(struct VOPPROT(access_args) *);
51 int afs_vop_getattr(struct VOPPROT(getattr_args) *);
52 int afs_vop_setattr(struct VOPPROT(setattr_args) *);
53 int afs_vop_read(struct VOPPROT(read_args) *);
54 int afs_vop_write(struct VOPPROT(write_args) *);
55 int afs_vop_pagein(struct VOPPROT(pagein_args) *);
56 int afs_vop_pageout(struct VOPPROT(pageout_args) *);
57 int afs_vop_ioctl(struct VOPPROT(ioctl_args) *);
58 int afs_vop_select(struct VOPPROT(select_args) *);
59 int afs_vop_mmap(struct VOPPROT(mmap_args) *);
60 int afs_vop_fsync(struct VOPPROT(fsync_args) *);
61 int afs_vop_remove(struct VOPPROT(remove_args) *);
62 int afs_vop_link(struct VOPPROT(link_args) *);
63 int afs_vop_rename(struct VOPPROT(rename_args) *);
64 int afs_vop_mkdir(struct VOPPROT(mkdir_args) *);
65 int afs_vop_rmdir(struct VOPPROT(rmdir_args) *);
66 int afs_vop_symlink(struct VOPPROT(symlink_args) *);
67 int afs_vop_readdir(struct VOPPROT(readdir_args) *);
68 int afs_vop_readlink(struct VOPPROT(readlink_args) *);
69 int afs_vop_inactive(struct VOPPROT(inactive_args) *);
70 int afs_vop_reclaim(struct VOPPROT(reclaim_args) *);
71 int afs_vop_strategy(struct VOPPROT(strategy_args) *);
72 int afs_vop_pathconf(struct VOPPROT(pathconf_args) *);
73 int afs_vop_advlock(struct VOPPROT(advlock_args) *);
74 int afs_vop_blktooff __P((struct VOPPROT(blktooff_args) *));
75 int afs_vop_offtoblk __P((struct VOPPROT(offtoblk_args) *));
76 #ifndef AFS_DARWIN80_ENV
77 int afs_vop_truncate(struct VOPPROT(truncate_args) *);
78 int afs_vop_update(struct VOPPROT(update_args) *);
79 int afs_vop_lock(struct VOPPROT(lock_args) *);
80 int afs_vop_unlock(struct VOPPROT(unlock_args) *);
81 int afs_vop_bmap(struct VOPPROT(bmap_args) *);
82 int afs_vop_seek(struct VOPPROT(seek_args) *);
83 int afs_vop_cmap __P((struct VOPPROT(cmap_args) *));
84 int afs_vop_print(struct VOPPROT(print_args) *);
85 int afs_vop_islocked(struct VOPPROT(islocked_args) *);
86 #endif
87
88 #define afs_vop_opnotsupp \
89         ((int (*) __P((struct  vop_reallocblks_args *)))eopnotsupp)
90 #define afs_vop_valloc afs_vop_opnotsupp
91 #define afs_vop_vfree afs_vop_opnotsupp
92 #define afs_vop_blkatoff afs_vop_opnotsupp
93 #define afs_vop_reallocblks afs_vop_opnotsupp
94
95 /* Global vfs data structures for AFS. */
96 int (**afs_vnodeop_p) ();
97
98 #define VOPFUNC int (*)(void *)
99
100 struct vnodeopv_entry_desc afs_vnodeop_entries[] = {
101     {VOPPREF(default_desc), (VOPFUNC)vn_default_error},
102     {VOPPREF(lookup_desc), (VOPFUNC)afs_vop_lookup},    /* lookup */
103     {VOPPREF(create_desc), (VOPFUNC)afs_vop_create},    /* create */
104     {VOPPREF(mknod_desc), (VOPFUNC)afs_vop_mknod},      /* mknod */
105     {VOPPREF(open_desc), (VOPFUNC)afs_vop_open},        /* open */
106     {VOPPREF(close_desc), (VOPFUNC)afs_vop_close},      /* close */
107     {VOPPREF(access_desc), (VOPFUNC)afs_vop_access},    /* access */
108     {VOPPREF(getattr_desc), (VOPFUNC)afs_vop_getattr},  /* getattr */
109     {VOPPREF(setattr_desc), (VOPFUNC)afs_vop_setattr},  /* setattr */
110     {VOPPREF(read_desc), (VOPFUNC)afs_vop_read},        /* read */
111     {VOPPREF(write_desc), (VOPFUNC)afs_vop_write},      /* write */
112     {VOPPREF(pagein_desc), (VOPFUNC)afs_vop_pagein},    /* read */
113     {VOPPREF(pageout_desc), (VOPFUNC)afs_vop_pageout},  /* write */
114     {VOPPREF(ioctl_desc), (VOPFUNC)afs_vop_ioctl},      /* XXX ioctl */
115     {VOPPREF(select_desc), (VOPFUNC)afs_vop_select},    /* select */
116     {VOPPREF(mmap_desc), (VOPFUNC)afs_vop_mmap},        /* mmap */
117     {VOPPREF(fsync_desc), (VOPFUNC)afs_vop_fsync},      /* fsync */
118 #ifndef AFS_DARWIN80_ENV
119     {VOPPREF(seek_desc), (VOPFUNC)afs_vop_seek},        /* seek */
120 #endif
121     {VOPPREF(remove_desc), (VOPFUNC)afs_vop_remove},    /* remove */
122     {VOPPREF(link_desc), (VOPFUNC)afs_vop_link},        /* link */
123     {VOPPREF(rename_desc), (VOPFUNC)afs_vop_rename},    /* rename */
124     {VOPPREF(mkdir_desc), (VOPFUNC)afs_vop_mkdir},      /* mkdir */
125     {VOPPREF(rmdir_desc), (VOPFUNC)afs_vop_rmdir},      /* rmdir */
126     {VOPPREF(symlink_desc), (VOPFUNC)afs_vop_symlink},  /* symlink */
127     {VOPPREF(readdir_desc), (VOPFUNC)afs_vop_readdir},  /* readdir */
128     {VOPPREF(readlink_desc), (VOPFUNC)afs_vop_readlink},        /* readlink */
129 #ifndef AFS_DARWIN80_ENV
130     {VOPPREF(abortop_desc), (VOPFUNC)nop_abortop },             /* abortop */
131 #endif
132     {VOPPREF(inactive_desc), (VOPFUNC)afs_vop_inactive},        /* inactive */
133     {VOPPREF(reclaim_desc), (VOPFUNC)afs_vop_reclaim},  /* reclaim */
134 #ifndef AFS_DARWIN80_ENV
135     {VOPPREF(lock_desc), (VOPFUNC)afs_vop_lock},        /* lock */
136     {VOPPREF(unlock_desc), (VOPFUNC)afs_vop_unlock},    /* unlock */
137     {VOPPREF(bmap_desc), (VOPFUNC)afs_vop_bmap},        /* bmap */
138 #endif
139 #ifdef AFS_DARWIN80_ENV
140     {VOPPREF(strategy_desc), (VOPFUNC)err_strategy},    /* strategy */
141 #else
142     {VOPPREF(strategy_desc), (VOPFUNC)afs_vop_strategy},        /* strategy */
143 #endif
144 #ifndef AFS_DARWIN80_ENV
145     {VOPPREF(print_desc), (VOPFUNC)afs_vop_print},      /* print */
146     {VOPPREF(islocked_desc), (VOPFUNC)afs_vop_islocked},        /* islocked */
147 #endif
148     {VOPPREF(pathconf_desc), (VOPFUNC)afs_vop_pathconf},        /* pathconf */
149     {VOPPREF(advlock_desc), (VOPFUNC)afs_vop_advlock},  /* advlock */
150 #ifndef AFS_DARWIN80_ENV
151     {VOPPREF(blkatoff_desc), (VOPFUNC)afs_vop_blkatoff},        /* blkatoff */
152     {VOPPREF(valloc_desc), (VOPFUNC)afs_vop_valloc},    /* valloc */
153     {VOPPREF(reallocblks_desc), (VOPFUNC)afs_vop_reallocblks},  /* reallocblks */
154     {VOPPREF(vfree_desc), (VOPFUNC)afs_vop_vfree},      /* vfree */
155     {VOPPREF(update_desc), (VOPFUNC)afs_vop_update},    /* update */
156     {VOPPREF(cmap_desc), (VOPFUNC)afs_vop_cmap},        /* cmap */
157     {VOPPREF(truncate_desc), (VOPFUNC)afs_vop_truncate},        /* truncate */
158 #endif
159     {VOPPREF(blktooff_desc), (VOPFUNC)afs_vop_blktooff},        /* blktooff */
160     {VOPPREF(offtoblk_desc), (VOPFUNC)afs_vop_offtoblk},        /* offtoblk */
161     {VOPPREF(bwrite_desc), (VOPFUNC)vn_bwrite},
162     {(struct vnodeop_desc *)NULL, (void (*)())NULL}
163 };
164 struct vnodeopv_desc afs_vnodeop_opv_desc =
165     { &afs_vnodeop_p, afs_vnodeop_entries };
166
167 #ifdef AFS_DARWIN80_ENV
168 /* vfs structures for incompletely initialized vnodes */
169 int (**afs_dead_vnodeop_p) ();
170
171 struct vnodeopv_entry_desc afs_dead_vnodeop_entries[] = {
172     {VOPPREF(default_desc), (VOPFUNC)vn_default_error},
173     {VOPPREF(lookup_desc), (VOPFUNC)vn_default_error},  /* lookup */
174     {VOPPREF(create_desc), (VOPFUNC)err_create},        /* create */
175     {VOPPREF(mknod_desc), (VOPFUNC)err_mknod},  /* mknod */
176     {VOPPREF(open_desc), (VOPFUNC)err_open},    /* open */
177     {VOPPREF(close_desc), (VOPFUNC)err_close},  /* close */
178     {VOPPREF(access_desc), (VOPFUNC)err_access},        /* access */
179     {VOPPREF(getattr_desc), (VOPFUNC)err_getattr},      /* getattr */
180     {VOPPREF(setattr_desc), (VOPFUNC)err_setattr},      /* setattr */
181     {VOPPREF(read_desc), (VOPFUNC)err_read},    /* read */
182     {VOPPREF(write_desc), (VOPFUNC)err_write},  /* write */
183     {VOPPREF(pagein_desc), (VOPFUNC)err_pagein},        /* read */
184     {VOPPREF(pageout_desc), (VOPFUNC)err_pageout},      /* write */
185     {VOPPREF(ioctl_desc), (VOPFUNC)err_ioctl},  /* XXX ioctl */
186     {VOPPREF(select_desc), (VOPFUNC)nop_select},        /* select */
187     {VOPPREF(mmap_desc), (VOPFUNC)err_mmap},    /* mmap */
188     {VOPPREF(fsync_desc), (VOPFUNC)err_fsync},  /* fsync */
189     {VOPPREF(remove_desc), (VOPFUNC)err_remove},        /* remove */
190     {VOPPREF(link_desc), (VOPFUNC)err_link},    /* link */
191     {VOPPREF(rename_desc), (VOPFUNC)err_rename},        /* rename */
192     {VOPPREF(mkdir_desc), (VOPFUNC)err_mkdir},  /* mkdir */
193     {VOPPREF(rmdir_desc), (VOPFUNC)err_rmdir},  /* rmdir */
194     {VOPPREF(symlink_desc), (VOPFUNC)err_symlink},      /* symlink */
195     {VOPPREF(readdir_desc), (VOPFUNC)err_readdir},      /* readdir */
196     {VOPPREF(readlink_desc), (VOPFUNC)err_readlink},    /* readlink */
197     {VOPPREF(inactive_desc), (VOPFUNC)afs_vop_inactive},        /* inactive */
198     {VOPPREF(reclaim_desc), (VOPFUNC)afs_vop_reclaim},  /* reclaim */
199     {VOPPREF(strategy_desc), (VOPFUNC)err_strategy},    /* strategy */
200     {VOPPREF(pathconf_desc), (VOPFUNC)err_pathconf},    /* pathconf */
201     {VOPPREF(advlock_desc), (VOPFUNC)err_advlock},      /* advlock */
202     {VOPPREF(blktooff_desc), (VOPFUNC)err_blktooff},    /* blktooff */
203     {VOPPREF(offtoblk_desc), (VOPFUNC)err_offtoblk},    /* offtoblk */
204     {VOPPREF(bwrite_desc), (VOPFUNC)err_bwrite},
205     {(struct vnodeop_desc *)NULL, (void (*)())NULL}
206 };
207 struct vnodeopv_desc afs_dead_vnodeop_opv_desc =
208     { &afs_dead_vnodeop_p, afs_dead_vnodeop_entries };
209 #endif
210
211 #define GETNAME()       \
212     struct componentname *cnp = ap->a_cnp; \
213     char *name; \
214     MALLOC(name, char *, cnp->cn_namelen+1, M_TEMP, M_WAITOK); \
215     memcpy(name, cnp->cn_nameptr, cnp->cn_namelen); \
216     name[cnp->cn_namelen] = '\0'
217
218 #define DROPNAME() FREE(name, M_TEMP)
219
220 void 
221 darwin_vn_hold(struct vnode *vp)
222 {
223     int haveGlock=ISAFS_GLOCK(); 
224     struct vcache *tvc = VTOAFS(vp);
225
226 #ifndef AFS_DARWIN80_ENV
227     tvc->f.states |= CUBCinit;
228 #endif
229 #ifdef AFS_DARWIN80_ENV
230     osi_Assert((tvc->f.states & CVInit) == 0);
231     if (tvc->f.states & CDeadVnode)
232        osi_Assert(!vnode_isinuse(vp, 1));
233 #endif
234     if (haveGlock) AFS_GUNLOCK(); 
235
236 #ifdef AFS_DARWIN80_ENV
237         if (vnode_get(vp)) {
238            /* being terminated. kernel won't give us a ref. Now what? our
239               callers don't expect us to fail */
240            if (haveGlock) AFS_GLOCK(); 
241            return;
242         }
243         if (vnode_ref(vp)) {
244             vnode_put(vp);
245             if (haveGlock) AFS_GLOCK(); 
246             return;
247         }
248         vnode_put(vp);
249 #else
250     /* vget needed for 0 ref'd vnode in GetVCache to not panic in vref.
251        vref needed for multiref'd vnode in vnop_remove not to deadlock
252        ourselves during vop_inactive, except we also need to not reinst
253        the ubc... so we just call VREF there now anyway. */
254
255     if (VREFCOUNT_GT(tvc, 0))
256         VREF(((struct vnode *)(vp))); 
257      else 
258         afs_vget(afs_globalVFS, 0, (vp));
259 #endif
260
261 #ifndef AFS_DARWIN80_ENV
262     if (UBCINFOMISSING(vp) || UBCINFORECLAIMED(vp)) {
263         ubc_info_init(vp); 
264     }
265 #endif
266
267     if (haveGlock) AFS_GLOCK(); 
268 #ifndef AFS_DARWIN80_ENV
269     tvc->f.states &= ~CUBCinit;
270 #endif
271 }
272 int
273 afs_vop_lookup(ap)
274      struct VOPPROT(lookup_args)/* {
275                                  * struct vnodeop_desc * a_desc;
276                                  * struct vnode *a_dvp;
277                                  * struct vnode **a_vpp;
278                                  * struct componentname *a_cnp;
279                                  * } */ *ap;
280 {
281     int error;
282     struct vcache *vcp;
283     struct vnode *vp, *dvp;
284     int flags = ap->a_cnp->cn_flags;
285     int lockparent;             /* 1 => lockparent flag is set */
286     int wantparent;             /* 1 => wantparent or lockparent flag */
287     struct proc *p;
288 #ifdef AFS_DARWIN80_ENV
289     vcp = VTOAFS(ap->a_dvp);
290     /*
291      * ._ file attribute mirroring touches this.
292      * we can't flag the vcache as there is none, so fail here.
293      * needed for fsevents support.
294      */
295     if (ap->a_context == afs_osi_ctxtp)
296         return ENOENT;
297     if (vcp->mvstat != 1) {
298         error = cache_lookup(ap->a_dvp, ap->a_vpp, ap->a_cnp);
299         if (error == -1) 
300             return 0;
301         if (error == ENOENT) 
302             return error;
303     }
304 #endif
305
306     GETNAME();
307     p = vop_cn_proc;
308
309     lockparent = flags & LOCKPARENT;
310     wantparent = flags & (LOCKPARENT | WANTPARENT);
311
312     if (!vnode_isdir(ap->a_dvp)) {
313         *ap->a_vpp = 0;
314         DROPNAME();
315         return ENOTDIR;
316     }
317     dvp = ap->a_dvp;
318 #ifndef AFS_DARWIN80_ENV
319     if (flags & ISDOTDOT)
320         VOP_UNLOCK(dvp, 0, p);
321 #endif
322     AFS_GLOCK();
323     error = afs_lookup(VTOAFS(dvp), name, &vcp, vop_cn_cred);
324     AFS_GUNLOCK();
325     if (error) {
326 #ifndef AFS_DARWIN80_ENV
327         if (flags & ISDOTDOT)
328             VOP_LOCK(dvp, LK_EXCLUSIVE | LK_RETRY, p);
329 #endif
330         if ((cnp->cn_nameiop == CREATE || cnp->cn_nameiop == RENAME)
331             && (flags & ISLASTCN) && error == ENOENT)
332             error = EJUSTRETURN;
333 #ifndef AFS_DARWIN80_ENV
334         if (cnp->cn_nameiop != LOOKUP && (flags & ISLASTCN))
335             cnp->cn_flags |= SAVENAME;
336 #endif
337         DROPNAME();
338         *ap->a_vpp = 0;
339         return (error);
340     }
341 #ifdef AFS_DARWIN80_ENV
342     if ((error=afs_darwin_finalizevnode(vcp, ap->a_dvp, ap->a_cnp, 0, 0))) {
343         DROPNAME();
344         *ap->a_vpp = 0;
345         return error;
346     }
347 #endif
348     vp = AFSTOV(vcp);           /* always get a node if no error */
349 #ifndef AFS_DARWIN80_ENV /* XXX needed for multi-mount thing, but can't have it yet */
350     vp->v_vfsp = dvp->v_vfsp;
351
352     if (UBCINFOMISSING(vp) ||
353         UBCINFORECLAIMED(vp)) {
354             ubc_info_init(vp);
355     }
356 #endif
357
358 #ifndef AFS_DARWIN80_ENV
359     /* The parent directory comes in locked.  We unlock it on return
360      * unless the caller wants it left locked.
361      * we also always return the vnode locked. */
362
363     if (flags & ISDOTDOT) {
364         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
365         /* always return the child locked */
366         if (lockparent && (flags & ISLASTCN)
367             && (error = vn_lock(dvp, LK_EXCLUSIVE, p))) {
368             vput(vp);
369             DROPNAME();
370             return (error);
371         }
372     } else if (vp == dvp) {
373         /* they're the same; afs_lookup() already ref'ed the leaf.
374          * It came in locked, so we don't need to ref OR lock it */
375     } else {
376         if (!lockparent || !(flags & ISLASTCN))
377             VOP_UNLOCK(dvp, 0, p);      /* done with parent. */
378         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
379         /* always return the child locked */
380     }
381 #endif
382     *ap->a_vpp = vp;
383
384 #ifndef AFS_DARWIN80_ENV
385     if ((cnp->cn_nameiop == RENAME && wantparent && (flags & ISLASTCN)
386          || (cnp->cn_nameiop != LOOKUP && (flags & ISLASTCN))))
387         cnp->cn_flags |= SAVENAME;
388 #endif
389
390     DROPNAME();
391     return error;
392 }
393
394 int
395 afs_vop_create(ap)
396      struct VOPPROT(create_args)        /* {
397                                  * struct vnode *a_dvp;
398                                  * struct vnode **a_vpp;
399                                  * struct componentname *a_cnp;
400                                  * struct vattr *a_vap;
401                                  * } */ *ap;
402 {
403     int error = 0;
404     struct vcache *vcp;
405     struct vnode *dvp = ap->a_dvp;
406     struct proc *p;
407     GETNAME();
408     p = vop_cn_proc;
409
410     /* vnode layer handles excl/nonexcl */
411     AFS_GLOCK();
412     error =
413         afs_create(VTOAFS(dvp), name, ap->a_vap, NONEXCL, ap->a_vap->va_mode,
414                    &vcp, vop_cn_cred);
415     AFS_GUNLOCK();
416     if (error) {
417 #ifndef AFS_DARWIN80_ENV
418         VOP_ABORTOP(dvp, cnp);
419         vput(dvp);
420 #endif
421         DROPNAME();
422         return (error);
423     }
424
425     if (vcp) {
426 #ifdef AFS_DARWIN80_ENV
427       if ((error=afs_darwin_finalizevnode(vcp, ap->a_dvp, ap->a_cnp, 0, 0))) {
428             DROPNAME();
429             *ap->a_vpp=0;
430             return error;
431         }
432 #endif
433         *ap->a_vpp = AFSTOV(vcp);
434 #ifndef AFS_DARWIN80_ENV /* XXX needed for multi-mount thing, but can't have it yet */
435         (*ap->a_vpp)->v_vfsp = dvp->v_vfsp;
436         vn_lock(*ap->a_vpp, LK_EXCLUSIVE | LK_RETRY, p);
437         if (UBCINFOMISSING(*ap->a_vpp) || UBCINFORECLAIMED(*ap->a_vpp)) {
438             vcp->f.states |= CUBCinit;
439             ubc_info_init(*ap->a_vpp);
440             vcp->f.states &= ~CUBCinit;
441         }
442 #endif
443     } else
444         *ap->a_vpp = 0;
445
446 #ifndef AFS_DARWIN80_ENV
447     if ((cnp->cn_flags & SAVESTART) == 0)
448         FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
449     vput(dvp);
450 #endif
451     DROPNAME();
452     return error;
453 }
454
455 int
456 afs_vop_mknod(ap)
457      struct VOPPROT(mknod_args) /* {
458                                  * struct vnode *a_dvp;
459                                  * struct vnode **a_vpp;
460                                  * struct componentname *a_cnp;
461                                  * struct vattr *a_vap;
462                                  * } */ *ap;
463 {
464 #ifndef AFS_DARWIN80_ENV
465     FREE_ZONE(ap->a_cnp->cn_pnbuf, ap->a_cnp->cn_pnlen, M_NAMEI);
466     vput(ap->a_dvp);
467 #endif
468     return (ENODEV);
469 }
470
471 int
472 afs_vop_open(ap)
473      struct VOPPROT(open_args)  /* {
474                                  * struct vnode *a_vp;
475                                  * int  a_mode;
476                                  * struct ucred *a_cred;
477                                  * struct proc *a_p;
478                                  * } */ *ap;
479 {
480     int error;
481     struct vnode *vp = ap->a_vp;
482     struct vcache *vc = VTOAFS(vp);
483 #if !defined(AFS_DARWIN80_ENV)
484     int didhold = 0;
485     /*----------------------------------------------------------------
486      * osi_VM_TryReclaim() removes the ubcinfo of a vnode, but that vnode
487      * can later be passed to vn_open(), which will skip the call to
488      * ubc_hold(), and when the ubcinfo is later added, the ui_refcount
489      * will be off.  So we compensate by calling ubc_hold() ourselves
490      * when ui_refcount is less than 2.  If an error occurs in afs_open()
491      * we must call ubc_rele(), which is what vn_open() would do if it
492      * was able to call ubc_hold() in the first place.
493      *----------------------------------------------------------------*/
494     if (vp->v_type == VREG && !(vp->v_flag & VSYSTEM)
495       && vp->v_ubcinfo->ui_refcount < 2)
496         didhold = ubc_hold(vp);
497 #endif /* !AFS_DARWIN80_ENV */
498     AFS_GLOCK();
499     error = afs_open(&vc, ap->a_mode, vop_cred);
500 #ifdef DIAGNOSTIC
501     if (AFSTOV(vc) != vp)
502         panic("AFS open changed vnode!");
503 #endif
504     osi_FlushPages(vc, vop_cred);
505     AFS_GUNLOCK();
506 #if !defined(AFS_DARWIN80_ENV)
507     if (error && didhold)
508         ubc_rele(vp);
509 #endif /* !AFS_DARWIN80_ENV */
510     return error;
511 }
512
513 int
514 afs_vop_close(ap)
515      struct VOPPROT(close_args) /* {
516                                  * struct vnode *a_vp;
517                                  * int  a_fflag;
518                                  * struct ucred *a_cred;
519                                  * struct proc *a_p;
520                                  * } */ *ap;
521 {
522     int code;
523     struct vnode *vp = ap->a_vp;
524     struct vcache *avc = VTOAFS(vp);
525     /* allows faking FSE_CONTENT_MODIFIED */
526     if (afs_osi_ctxtp == ap->a_context)
527         return 0;
528     AFS_GLOCK();
529     if (vop_cred)
530         code = afs_close(avc, ap->a_fflag, vop_cred);
531     else
532         code = afs_close(avc, ap->a_fflag, &afs_osi_cred);
533     osi_FlushPages(avc, vop_cred);      /* hold bozon lock, but not basic vnode lock */
534     /* This is legit; it just forces the fstrace event to happen */
535     code = afs_CheckCode(code, NULL, 60);
536     AFS_GUNLOCK();
537
538     return code;
539 }
540
541 #ifdef AFS_DARWIN80_ENV
542 extern int afs_fakestat_enable;
543
544 int
545 afs_vop_access(ap)
546      struct VOPPROT(access_args)        /* {
547                                  * struct vnode *a_vp;
548                                  * int  a_action;
549                                  * vfs_context_t a_context;
550                                  * } */ *ap;
551 {
552     int code;
553     struct vrequest treq;
554     struct afs_fakestat_state fakestate;
555     struct vcache * tvc = VTOAFS(ap->a_vp);
556     int bits=0;
557     int cmb = CHECK_MODE_BITS;
558 #ifdef AFS_DARWIN80_ENV
559     /*
560      * needed for fsevents. ._ file attribute mirroring touches this.
561      * we can't flag the vcache, as there is none, so fail here.
562      */
563     if (ap->a_context == afs_osi_ctxtp)
564         return ENOENT;
565 #endif
566     AFS_GLOCK();
567     afs_InitFakeStat(&fakestate);
568     if ((code = afs_InitReq(&treq, vop_cred)))
569         goto out2;
570
571     code = afs_TryEvalFakeStat(&tvc, &fakestate, &treq);
572     if (code) {
573         code = afs_CheckCode(code, &treq, 55);
574         goto out;
575     }
576
577     code = afs_VerifyVCache(tvc, &treq);
578     if (code) {
579         code = afs_CheckCode(code, &treq, 56);
580         goto out;
581     }
582     if (afs_fakestat_enable && tvc->mvstat && !(tvc->f.states & CStatd)) {
583         code = 0;
584         goto out;
585     }
586     if (vnode_isdir(ap->a_vp)) {
587        if (ap->a_action & KAUTH_VNODE_LIST_DIRECTORY)
588           bits |= PRSFS_LOOKUP;
589        if (ap->a_action & KAUTH_VNODE_ADD_FILE)
590           bits |= PRSFS_INSERT;
591        if (ap->a_action & KAUTH_VNODE_SEARCH)
592           bits |= PRSFS_LOOKUP;
593        if (ap->a_action & KAUTH_VNODE_DELETE)
594           bits |= PRSFS_DELETE;
595        if (ap->a_action & KAUTH_VNODE_ADD_SUBDIRECTORY)
596           bits |= PRSFS_INSERT;
597        if (ap->a_action & KAUTH_VNODE_DELETE_CHILD)
598           bits |= PRSFS_DELETE;
599 #if 0 /* I'd argue this should be enforced on the parent. But that's ugly */
600        if (ap->a_action & KAUTH_VNODE_READ_ATTRIBUTES)
601           bits |= PRSFS_LOOKUP;
602        if (ap->a_action & KAUTH_VNODE_READ_SECURITY) /* mode bits/gid, not afs acl */
603           bits |= PRSFS_LOOKUP;
604 #endif
605     } else {
606        if (ap->a_action & KAUTH_VNODE_READ_DATA)
607           bits |= PRSFS_READ;
608        if (ap->a_action & KAUTH_VNODE_WRITE_DATA)
609           bits |= PRSFS_WRITE;
610        if (ap->a_action & KAUTH_VNODE_EXECUTE)
611           bits |= PRSFS_READ; /* and mode bits.... */
612        if (ap->a_action & KAUTH_VNODE_READ_ATTRIBUTES)
613           bits |= PRSFS_LOOKUP;
614        if (ap->a_action & KAUTH_VNODE_READ_SECURITY) /* mode bits/gid, not afs acl */
615           bits |= PRSFS_LOOKUP;
616        if ((ap->a_action & ((1 << 25) - 1)) == KAUTH_VNODE_EXECUTE)
617           /* if only exec, don't check for read mode bit */
618           /* high bits of ap->a_action are not for 'generic rights bits', and
619              so should not be checked (KAUTH_VNODE_ACCESS is often present
620              and needs to be masked off) */
621           cmb |= CMB_ALLOW_EXEC_AS_READ;
622     }
623     if (ap->a_action & KAUTH_VNODE_WRITE_ATTRIBUTES)
624        bits |= PRSFS_WRITE;
625 #if 0 /* no extended attributes */
626     if (ap->a_action & KAUTH_VNODE_READ_EXTATTRIBUTES)
627        bits |= PRSFS_READ;
628     if (ap->a_action & KAUTH_VNODE_WRITE_EXTATTRIBUTES)
629        bits |= PRSFS_WRITE;
630 #endif
631     if (ap->a_action & KAUTH_VNODE_WRITE_SECURITY)
632        bits |= PRSFS_WRITE;
633     /* we can't check for KAUTH_VNODE_TAKE_OWNERSHIP, so we always permit it */
634     
635     code = afs_AccessOK(tvc, bits, &treq, cmb);
636     /*
637      * Special cased dropbox handling:
638      * cp on 10.4 behaves badly, looping on EACCES
639      * Finder may reopen the file. Let it.
640      */
641     if (code == 0 && ((bits &~(PRSFS_READ|PRSFS_WRITE)) == 0))
642         code = afs_AccessOK(tvc, PRSFS_ADMINISTER|PRSFS_INSERT|bits, &treq, cmb);
643     /* Finder also treats dropboxes as insert+delete. fake it out. */
644     if (code == 0 && (bits == (PRSFS_INSERT|PRSFS_DELETE)))
645         code = afs_AccessOK(tvc, PRSFS_INSERT, &treq, cmb);
646
647     if (code == 1 && vnode_vtype(ap->a_vp) == VREG &&
648         ap->a_action & KAUTH_VNODE_EXECUTE &&
649         (tvc->f.m.Mode & 0100) != 0100) {
650         code = 0;
651     }
652     if (code) {
653         code= 0;               /* if access is ok */
654     } else {
655             code = afs_CheckCode(EACCES, &treq, 57);        /* failure code */
656     }
657 out:
658      afs_PutFakeStat(&fakestate);
659 out2:
660     AFS_GUNLOCK();
661     return code;
662 }
663 #else
664 int
665 afs_vop_access(ap)
666      struct VOPPROT(access_args)        /* {
667                                  * struct vnode *a_vp;
668                                  * int  a_mode;
669                                  * struct ucred *a_cred;
670                                  * struct proc *a_p;
671                                  * } */ *ap;
672 {
673     int code;
674     AFS_GLOCK();
675     code = afs_access(VTOAFS(ap->a_vp), ap->a_mode, vop_cred);
676     AFS_GUNLOCK();
677     return code;
678 }
679 #endif
680
681 int
682 afs_vop_getattr(ap)
683      struct VOPPROT(getattr_args)       /* {
684                                  * struct vnode *a_vp;
685                                  * struct vattr *a_vap;
686                                  * struct ucred *a_cred;
687                                  * struct proc *a_p;
688                                  * } */ *ap;
689 {
690     int code;
691
692 #ifdef AFS_DARWIN80_ENV
693     /* CEvent excludes the fsevent. our context excludes the ._ */
694     if ((VTOAFS(ap->a_vp)->f.states & CEvent) ||
695         (ap->a_context == afs_osi_ctxtp)){
696         struct vcache *avc = VTOAFS(ap->a_vp);
697         int isglock = ISAFS_GLOCK();
698
699         /* this is needed because of how and when we re-enter */
700         if (!isglock)
701           AFS_GLOCK();
702         /* do minimal work to return fake result for fsevents */
703         if (afs_fakestat_enable && VTOAFS(ap->a_vp)->mvstat == 1) {
704             struct afs_fakestat_state fakestat;
705             struct vrequest treq;
706
707             code = afs_InitReq(&treq, vop_cred);
708             if (code) {
709                 if (!isglock)
710                     AFS_GUNLOCK();
711                 return code;
712             }
713             afs_InitFakeStat(&fakestat);
714             /* expects GLOCK */
715             code = afs_TryEvalFakeStat(&avc, &fakestat, &treq);
716             if (code) {
717                 if (!isglock)
718                     AFS_GUNLOCK();
719                 afs_PutFakeStat(&fakestat);
720                 return code;
721             }
722         }
723         code = afs_CopyOutAttrs(avc, ap->a_vap);
724         if (!isglock)
725             AFS_GUNLOCK();
726         if (0 && !code) {
727             /* tweak things so finder will recheck */
728             (ap->a_vap)->va_gid = ((ap->a_vap)->va_gid == 1) ? 2 : 1;
729             (ap->a_vap)->va_mode &= ~(VSGID);
730         }
731     } else
732 #endif
733     {
734         AFS_GLOCK();
735         code = afs_getattr(VTOAFS(ap->a_vp), ap->a_vap, vop_cred);
736         /* This is legit; it just forces the fstrace event to happen */
737         code = afs_CheckCode(code, NULL, 58);
738         AFS_GUNLOCK();
739     }
740 #ifdef AFS_DARWIN80_ENV
741     VATTR_SET_SUPPORTED(ap->a_vap, va_type);
742     VATTR_SET_SUPPORTED(ap->a_vap, va_mode);
743     VATTR_SET_SUPPORTED(ap->a_vap, va_uid);
744     VATTR_SET_SUPPORTED(ap->a_vap, va_gid);
745     VATTR_SET_SUPPORTED(ap->a_vap, va_fsid);
746     VATTR_SET_SUPPORTED(ap->a_vap, va_fileid);
747     VATTR_SET_SUPPORTED(ap->a_vap, va_nlink);
748     VATTR_SET_SUPPORTED(ap->a_vap, va_data_size);
749     VATTR_SET_SUPPORTED(ap->a_vap, va_access_time);
750     VATTR_SET_SUPPORTED(ap->a_vap, va_modify_time);
751     VATTR_SET_SUPPORTED(ap->a_vap, va_change_time);
752     VATTR_SET_SUPPORTED(ap->a_vap, va_gen);
753     VATTR_SET_SUPPORTED(ap->a_vap, va_flags);
754     VATTR_SET_SUPPORTED(ap->a_vap, va_iosize);
755     VATTR_SET_SUPPORTED(ap->a_vap, va_total_alloc);
756 #endif
757     return code;
758 }
759
760 int
761 afs_vop_setattr(ap)
762      struct VOPPROT(setattr_args)       /* {
763                                  * struct vnode *a_vp;
764                                  * struct vattr *a_vap;
765                                  * struct ucred *a_cred;
766                                  * struct proc *a_p;
767                                  * } */ *ap;
768 {
769     int code, pass = 0;
770     struct vcache *avc = VTOAFS(ap->a_vp);
771 #ifdef AFS_DARWIN80_ENV
772     /* fsevents tries to set attributes. drop it. */
773     if (ap->a_context == afs_osi_ctxtp)
774         return 0;
775 #endif
776     AFS_GLOCK();
777 retry:
778     code = afs_setattr(avc, ap->a_vap, vop_cred);
779     /* This is legit; it just forces the fstrace event to happen */
780     code = afs_CheckCode(code, NULL, 59);
781     if (!pass && code == EINVAL && (VATTR_IS_ACTIVE(ap->a_vap, va_mode) &&
782                                     (vType(avc) == VLNK))) {
783         VATTR_CLEAR_ACTIVE(ap->a_vap, va_mode);
784         pass++;
785         goto retry;
786     }
787     AFS_GUNLOCK();
788     return code;
789 }
790
791 int
792 afs_vop_read(ap)
793      struct VOPPROT(read_args)  /* {
794                                  * struct vnode *a_vp;
795                                  * struct uio *a_uio;
796                                  * int a_ioflag;
797                                  * struct ucred *a_cred;
798                                  * } */ *ap;
799 {
800     int code;
801     struct vnode *vp = ap->a_vp;
802     struct vcache *avc = VTOAFS(vp);
803
804     if (vnode_isdir(ap->a_vp)) 
805         return EISDIR;
806 #ifdef AFS_DARWIN80_ENV
807     ubc_msync_range(ap->a_vp, AFS_UIO_OFFSET(ap->a_uio), AFS_UIO_OFFSET(ap->a_uio) + AFS_UIO_RESID(ap->a_uio), UBC_PUSHDIRTY);
808 #else
809     if (UBCINFOEXISTS(ap->a_vp)) {
810         ubc_clean(ap->a_vp, 0);
811     }
812 #endif
813     AFS_GLOCK();
814     osi_FlushPages(avc, vop_cred);      /* hold bozon lock, but not basic vnode lock */
815     code = afs_read(avc, ap->a_uio, vop_cred, 0);
816     AFS_GUNLOCK();
817     return code;
818 }
819
820 int
821 afs_vop_pagein(ap)
822      struct VOPPROT(pagein_args)        /* {
823                                  * struct vnode *a_vp;
824                                  * upl_t a_pl;
825                                  * vm_offset_t a_pl_offset;
826                                  * off_t a_f_offset;
827                                  * size_t a_size;
828                                  * struct ucred *a_cred;
829                                  * int a_flags;
830                                  * } */ *ap;
831 {
832     struct vnode *vp = ap->a_vp;
833     upl_t pl = ap->a_pl;
834     size_t size = ap->a_size;
835     off_t f_offset = ap->a_f_offset;
836     vm_offset_t pl_offset = ap->a_pl_offset;
837     int flags = ap->a_flags;
838     struct ucred *cred;
839     vm_offset_t ioaddr;
840 #ifdef AFS_DARWIN80_ENV
841     struct uio *uio;
842 #else
843     struct uio auio;
844     struct iovec aiov;
845     struct uio *uio = &auio;
846 #endif
847     int nocommit = flags & UPL_NOCOMMIT;
848
849     int code;
850     struct vcache *tvc = VTOAFS(vp);
851 #ifndef AFS_DARWIN80_ENV
852     if (UBCINVALID(vp)) {
853 #if DIAGNOSTIC
854         panic("afs_vop_pagein: invalid vp");
855 #endif /* DIAGNOSTIC */
856         return (EPERM);
857     }
858
859     UBCINFOCHECK("afs_vop_pagein", vp);
860 #endif
861     if (pl == (upl_t) NULL) {
862         panic("afs_vop_pagein: no upl");
863     }
864
865     cred = ubc_getcred(vp);
866     if (cred == NOCRED)
867         cred = vop_cred;
868
869     if (size == 0) {
870         if (!nocommit)
871             OSI_UPL_ABORT_RANGE(pl, pl_offset, size,
872                                    UPL_ABORT_ERROR | UPL_ABORT_FREE_ON_EMPTY);
873         return (0);
874     }
875     if (f_offset < 0) {
876         if (!nocommit)
877             OSI_UPL_ABORT_RANGE(pl, pl_offset, size,
878                                    UPL_ABORT_ERROR | UPL_ABORT_FREE_ON_EMPTY);
879         return (EINVAL);
880     }
881     if (f_offset & PAGE_MASK)
882         panic("afs_vop_pagein: offset not page aligned");
883
884     OSI_UPL_MAP(pl, &ioaddr);
885     ioaddr += pl_offset;
886 #ifdef AFS_DARWIN80_ENV
887     uio = uio_create(1, f_offset, UIO_SYSSPACE32, UIO_READ);
888     uio_addiov(uio, CAST_USER_ADDR_T(ioaddr), size);
889 #else
890     auio.uio_iov = &aiov;
891     auio.uio_iovcnt = 1;
892     auio.uio_offset = f_offset;
893     auio.uio_segflg = UIO_SYSSPACE;
894     auio.uio_rw = UIO_READ;
895     auio.uio_procp = NULL;
896     auio.uio_resid = aiov.iov_len = size;
897     aiov.iov_base = (caddr_t) ioaddr;
898 #endif
899     AFS_GLOCK();
900     osi_FlushPages(tvc, vop_cred);      /* hold bozon lock, but not basic vnode lock */
901     code = afs_read(tvc, uio, cred, 0);
902     if (code == 0) {
903         ObtainWriteLock(&tvc->lock, 2);
904         tvc->f.states |= CMAPPED;
905         ReleaseWriteLock(&tvc->lock);
906     }
907     AFS_GUNLOCK();
908
909     /* Zero out rest of last page if there wasn't enough data in the file */
910     if (code == 0 && AFS_UIO_RESID(uio) > 0) {
911 #ifdef AFS_DARWIN80_ENV
912         memset(((caddr_t)ioaddr) + (size - AFS_UIO_RESID(uio)), 0,
913                AFS_UIO_RESID(uio));
914 #else
915         memset(aiov.iov_base, 0, auio.uio_resid);
916 #endif
917     }
918
919     OSI_UPL_UNMAP(pl);
920     if (!nocommit) {
921         if (code)
922             OSI_UPL_ABORT_RANGE(pl, pl_offset, size,
923                                    UPL_ABORT_ERROR | UPL_ABORT_FREE_ON_EMPTY);
924         else
925             OSI_UPL_COMMIT_RANGE(pl, pl_offset, size,
926                                     UPL_COMMIT_CLEAR_DIRTY |
927                                     UPL_COMMIT_FREE_ON_EMPTY);
928     }
929 #ifdef AFS_DARWIN80_ENV
930     uio_free(uio);
931 #endif
932     return code;
933 }
934
935 int
936 afs_vop_write(ap)
937      struct VOPPROT(write_args) /* {
938                                  * struct vnode *a_vp;
939                                  * struct uio *a_uio;
940                                  * int a_ioflag;
941                                  * struct ucred *a_cred;
942                                  * } */ *ap;
943 {
944     int code;
945     struct vcache *avc = VTOAFS(ap->a_vp);
946     void *object;
947 #ifdef AFS_DARWIN80_ENV
948     ubc_msync_range(ap->a_vp, AFS_UIO_OFFSET(ap->a_uio), AFS_UIO_OFFSET(ap->a_uio) + AFS_UIO_RESID(ap->a_uio), UBC_INVALIDATE);
949 #else
950     if (UBCINFOEXISTS(ap->a_vp)) {
951         ubc_clean(ap->a_vp, 1);
952     }
953     if (UBCINFOEXISTS(ap->a_vp))
954         osi_VM_NukePages(ap->a_vp, AFS_UIO_OFFSET(ap->a_uio),
955                          AFS_UIO_RESID(ap->a_uio));
956 #endif
957     AFS_GLOCK();
958     osi_FlushPages(avc, vop_cred);      /* hold bozon lock, but not basic vnode lock */
959     code =
960         afs_write(VTOAFS(ap->a_vp), ap->a_uio, ap->a_ioflag, vop_cred, 0);
961     AFS_GUNLOCK();
962     return code;
963 }
964
965 int
966 afs_vop_pageout(ap)
967      struct VOPPROT(pageout_args)       /* {
968                                  * struct vnode *a_vp;
969                                  * upl_t   a_pl,
970                                  * vm_offset_t   a_pl_offset,
971                                  * off_t         a_f_offset,
972                                  * size_t        a_size,
973                                  * struct ucred *a_cred,
974                                  * int           a_flags
975                                  * } */ *ap;
976 {
977     struct vnode *vp = ap->a_vp;
978     upl_t pl = ap->a_pl;
979     size_t size = ap->a_size;
980     off_t f_offset = ap->a_f_offset;
981     vm_offset_t pl_offset = ap->a_pl_offset;
982     int flags = ap->a_flags;
983     struct ucred *cred;
984     vm_offset_t ioaddr;
985 #ifdef AFS_DARWIN80_ENV
986     struct uio *uio;
987 #else
988     struct uio auio;
989     struct iovec aiov;
990     struct uio *uio = &auio;
991 #endif
992     int nocommit = flags & UPL_NOCOMMIT;
993     int iosize;
994
995     int code;
996     struct vcache *tvc = VTOAFS(vp);
997 #ifndef AFS_DARWIN80_ENV
998     if (UBCINVALID(vp)) {
999 #if DIAGNOSTIC
1000         panic("afs_vop_pageout: invalid vp");
1001 #endif /* DIAGNOSTIC */
1002         return (EPERM);
1003     }
1004
1005     UBCINFOCHECK("afs_vop_pageout", vp);
1006 #endif
1007     if (pl == (upl_t) NULL) {
1008         panic("afs_vop_pageout: no upl");
1009     }
1010 #if !defined(AFS_DARWIN80_ENV) /* XXX nfs now uses it's own bufs (struct nfsbuf)
1011                                   maybe the generic
1012                                   layer doesn't have them anymore? In any case,
1013                                   we can't just copy code from nfs... */
1014     {
1015         int lbn, s;
1016         struct buf *bp;
1017         int biosize = DEV_BSIZE;
1018
1019         lbn = f_offset / DEV_BSIZE;
1020
1021         for (iosize = size; iosize > 0; iosize -= biosize, lbn++) {
1022
1023             s = splbio();
1024             if (bp = incore(vp, lbn)) {
1025                 if (ISSET(bp->b_flags, B_BUSY))
1026                     panic("nfs_pageout: found BUSY buffer incore\n");
1027
1028                 bremfree(bp);
1029                 SET(bp->b_flags, (B_BUSY | B_INVAL));
1030                 brelse(bp);
1031             }
1032             splx(s);
1033         }
1034     }
1035 #endif
1036     cred = ubc_getcred(vp);
1037     if (cred == NOCRED)
1038         cred = vop_cred;
1039
1040     if (size == 0) {
1041         if (!nocommit)
1042             OSI_UPL_ABORT_RANGE(pl, pl_offset, size,
1043                                    UPL_ABORT_FREE_ON_EMPTY);
1044         return (0);
1045     }
1046     if (flags & (IO_APPEND | IO_SYNC))
1047         panic("nfs_pageout: (IO_APPEND | IO_SYNC)");
1048     if (f_offset < 0) {
1049         if (!nocommit)
1050             OSI_UPL_ABORT_RANGE(pl, pl_offset, size,
1051                                    UPL_ABORT_FREE_ON_EMPTY);
1052         return (EINVAL);
1053     }
1054     if (f_offset >= tvc->f.m.Length) {
1055         if (!nocommit)
1056             OSI_UPL_ABORT_RANGE(pl, pl_offset, size,
1057                                    UPL_ABORT_FREE_ON_EMPTY);
1058         return (EINVAL);
1059     }
1060
1061     if (f_offset & PAGE_MASK)
1062         panic("afs_vop_pageout: offset not page aligned");
1063
1064     /* size will always be a multiple of PAGE_SIZE */
1065     /* pageout isn't supposed to extend files */
1066     if (f_offset + size > tvc->f.m.Length) 
1067         iosize = tvc->f.m.Length - f_offset;
1068     else
1069         iosize = size;
1070
1071     if (size > (iosize + (PAGE_SIZE - 1)) & ~PAGE_MASK && !nocommit)  {
1072             int iosize_rnd=(iosize + (PAGE_SIZE - 1)) & ~PAGE_MASK;
1073             OSI_UPL_ABORT_RANGE(pl, pl_offset + iosize_rnd,
1074                                    size - iosize_rnd,
1075                                    UPL_ABORT_FREE_ON_EMPTY);
1076     }
1077     OSI_UPL_MAP(pl, &ioaddr);
1078     ioaddr += pl_offset;
1079 #ifdef AFS_DARWIN80_ENV
1080     uio = uio_create(1, f_offset, UIO_SYSSPACE32, UIO_READ);
1081     uio_addiov(uio, CAST_USER_ADDR_T(ioaddr), size);
1082 #else
1083     auio.uio_iov = &aiov;
1084     auio.uio_iovcnt = 1;
1085     auio.uio_offset = f_offset;
1086     auio.uio_segflg = UIO_SYSSPACE;
1087     auio.uio_rw = UIO_WRITE;
1088     auio.uio_procp = NULL;
1089     auio.uio_resid = aiov.iov_len = iosize;
1090     aiov.iov_base = (caddr_t) ioaddr;
1091 #endif
1092     {
1093         /* USV?
1094          * check for partial page and clear the
1095          * contents past end of the file before
1096          * releasing it in the VM page cache
1097          */
1098         if ((f_offset < tvc->f.m.Length) && (f_offset + size) > tvc->f.m.Length) {
1099             size_t io = tvc->f.m.Length - f_offset;
1100
1101             memset((caddr_t) (ioaddr + pl_offset + io), 0, size - io);
1102         }
1103     }
1104
1105     AFS_GLOCK();
1106     osi_FlushPages(tvc, vop_cred);      /* hold bozon lock, but not basic vnode lock */
1107     ObtainWriteLock(&tvc->lock, 1);
1108     afs_FakeOpen(tvc);
1109     ReleaseWriteLock(&tvc->lock);
1110
1111     code = afs_write(tvc, uio, flags, cred, 0);
1112
1113     ObtainWriteLock(&tvc->lock, 1);
1114     afs_FakeClose(tvc, cred);
1115     ReleaseWriteLock(&tvc->lock);
1116     AFS_GUNLOCK();
1117     OSI_UPL_UNMAP(pl);
1118     if (!nocommit) {
1119         if (code)
1120             OSI_UPL_ABORT_RANGE(pl, pl_offset, size,
1121                                    UPL_ABORT_FREE_ON_EMPTY);
1122         else
1123             OSI_UPL_COMMIT_RANGE(pl, pl_offset, size,
1124                                     UPL_COMMIT_CLEAR_DIRTY |
1125                                     UPL_COMMIT_FREE_ON_EMPTY);
1126     }
1127
1128 #ifdef AFS_DARWIN80_ENV
1129     uio_free(uio);
1130 #endif
1131     return code;
1132 }
1133
1134 int
1135 afs_vop_ioctl(ap)
1136      struct VOPPROT(ioctl_args) /* {
1137                                  * struct vnode *a_vp;
1138                                  * int  a_command;
1139                                  * caddr_t  a_data;
1140                                  * int  a_fflag;
1141                                  * struct ucred *a_cred;
1142                                  * struct proc *a_p;
1143                                  * } */ *ap;
1144 {
1145     struct vcache *tvc = VTOAFS(ap->a_vp);
1146     struct afs_ioctl data;
1147     int error = 0;
1148
1149     /* in case we ever get in here... */
1150
1151     AFS_STATCNT(afs_ioctl);
1152     if (((ap->a_command >> 8) & 0xff) == 'V') {
1153         /* This is a VICEIOCTL call */
1154         AFS_GLOCK();
1155         error = HandleIoctl(tvc, ap->a_command, ap->a_data);
1156         AFS_GUNLOCK();
1157         return (error);
1158     } else {
1159         /* No-op call; just return. */
1160         return (ENOTTY);
1161     }
1162 }
1163
1164 /* ARGSUSED */
1165 int
1166 afs_vop_select(ap)
1167      struct VOPPROT(select_args)        /* {
1168                                  * struct vnode *a_vp;
1169                                  * int  a_which;
1170                                  * int  a_fflags;
1171                                  * struct ucred *a_cred;
1172                                  * struct proc *a_p;
1173                                  * } */ *ap;
1174 {
1175     /*
1176      * We should really check to see if I/O is possible.
1177      */
1178     return (1);
1179 }
1180
1181 /*
1182  * Mmap a file
1183  *
1184  * NB Currently unsupported.
1185  */
1186 /* ARGSUSED */
1187 int
1188 afs_vop_mmap(ap)
1189      struct VOPPROT(mmap_args)  /* {
1190                                  * struct vnode *a_vp;
1191                                  * int  a_fflags;
1192                                  * struct ucred *a_cred;
1193                                  * struct proc *a_p;
1194                                  * } */ *ap;
1195 {
1196     return (EINVAL);
1197 }
1198
1199 int
1200 afs_vop_fsync(ap)
1201      struct VOPPROT(fsync_args) /* {
1202                                  * struct vnode *a_vp;
1203                                  * struct ucred *a_cred;
1204                                  * int a_waitfor;
1205                                  * struct proc *a_p;
1206                                  * } */ *ap;
1207 {
1208     int wait = ap->a_waitfor == MNT_WAIT;
1209     int error;
1210     struct vnode *vp = ap->a_vp;
1211     int haveGlock = ISAFS_GLOCK();
1212
1213     /* in order to recycle faked vnodes for bulkstat */
1214     if (VTOAFS(vp) == NULL)
1215         return ENOTSUP;
1216
1217     /* afs_vop_lookup glocks, can call us through vinvalbuf from GetVCache */
1218     if (!haveGlock) AFS_GLOCK();
1219     if (vop_cred)
1220         error = afs_fsync(VTOAFS(vp), vop_cred);
1221     else
1222         error = afs_fsync(VTOAFS(vp), &afs_osi_cred);
1223     if (!haveGlock) AFS_GUNLOCK();
1224     return error;
1225 }
1226
1227 #ifndef AFS_DARWIN80_ENV
1228 int
1229 afs_vop_seek(ap)
1230      struct VOPPROT(seek_args)  /* {
1231                                  * struct vnode *a_vp;
1232                                  * off_t  a_oldoff;
1233                                  * off_t  a_newoff;
1234                                  * struct ucred *a_cred;
1235                                  * } */ *ap;
1236 {
1237     if (ap->a_newoff > ULONG_MAX)       /* AFS doesn't support 64-bit offsets */
1238         return EINVAL;
1239     return (0);
1240 }
1241 #endif
1242
1243 int
1244 afs_vop_remove(ap)
1245      struct VOPPROT(remove_args)        /* {
1246                                  * struct vnode *a_dvp;
1247                                  * struct vnode *a_vp;
1248                                  * struct componentname *a_cnp;
1249                                  * } */ *ap;
1250 {
1251     int error = 0;
1252     struct vnode *vp = ap->a_vp;
1253     struct vnode *dvp = ap->a_dvp;
1254
1255 #ifdef AFS_DARWIN80_ENV
1256     if (ap->a_flags & VNODE_REMOVE_NODELETEBUSY) {
1257             /* Caller requested Carbon delete semantics */
1258             if (vnode_isinuse(vp, 0)) {
1259                     return EBUSY;
1260             }
1261     }
1262 #endif
1263
1264     GETNAME();
1265     AFS_GLOCK();
1266     error = afs_remove(VTOAFS(dvp), name, vop_cn_cred);
1267     error = afs_CheckCode(error, NULL, 61);
1268     AFS_GUNLOCK();
1269     cache_purge(vp);
1270     if (!error) {
1271 #ifdef AFS_DARWIN80_ENV
1272         struct vcache *tvc = VTOAFS(vp);
1273         
1274         if (!(tvc->f.states & CUnlinked)) {
1275             ubc_setsize(vp, (off_t)0);
1276             vnode_recycle(vp);
1277         }
1278 #else
1279         /* necessary so we don't deadlock ourselves in vclean */
1280         VOP_UNLOCK(vp, 0, cnp->cn_proc);
1281
1282         /* If crashes continue in ubc_hold, comment this out */
1283         (void)ubc_uncache(vp);
1284 #endif
1285     } else {
1286         /* should check for PRSFS_INSERT and not PRSFS_DELETE, but the
1287            goal here is to deal with Finder's unhappiness with resource
1288            forks that have no resources in a dropbox setting */
1289         if (name[0] == '.' && name[1] == '_' && error == EACCES) 
1290             error = 0;
1291     }
1292
1293 #ifndef AFS_DARWIN80_ENV
1294     vput(dvp);
1295     if (dvp == vp)
1296         vrele(vp);
1297     else
1298         vput(vp);
1299 #endif
1300
1301 #ifndef AFS_DARWIN80_ENV
1302     FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1303 #endif
1304     DROPNAME();
1305     return error;
1306 }
1307
1308 int
1309 afs_vop_link(ap)
1310      struct VOPPROT(link_args)  /* {
1311                                  * struct vnode *a_vp;
1312                                  * struct vnode *a_tdvp;
1313                                  * struct componentname *a_cnp;
1314                                  * } */ *ap;
1315 {
1316     int error = 0;
1317     struct vnode *dvp = ap->a_tdvp;
1318     struct vnode *vp = ap->a_vp;
1319     struct proc *p;
1320
1321     GETNAME();
1322     p = vop_cn_proc;
1323     if (vnode_isdir(vp)) {
1324         VOP_ABORTOP(vp, cnp);
1325         error = EISDIR;
1326         goto out;
1327     }
1328 #ifndef AFS_DARWIN80_ENV
1329     if (error = vn_lock(vp, LK_EXCLUSIVE, p)) {
1330         VOP_ABORTOP(dvp, cnp);
1331         goto out;
1332     }
1333 #endif
1334     AFS_GLOCK();
1335     error = afs_link(VTOAFS(vp), VTOAFS(dvp), name, vop_cn_cred);
1336     AFS_GUNLOCK();
1337 #ifndef AFS_DARWIN80_ENV
1338     FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1339 #endif
1340 #ifndef AFS_DARWIN80_ENV
1341     if (dvp != vp)
1342         VOP_UNLOCK(vp, 0, p);
1343 #endif
1344   out:
1345 #ifndef AFS_DARWIN80_ENV
1346     vput(dvp);
1347 #endif
1348     DROPNAME();
1349     return error;
1350 }
1351
1352 int
1353 afs_vop_rename(ap)
1354      struct VOPPROT(rename_args)        /* {
1355                                  * struct vnode *a_fdvp;
1356                                  * struct vnode *a_fvp;
1357                                  * struct componentname *a_fcnp;
1358                                  * struct vnode *a_tdvp;
1359                                  * struct vnode *a_tvp;
1360                                  * struct componentname *a_tcnp;
1361                                  * } */ *ap;
1362 {
1363     int error = 0;
1364     struct componentname *fcnp = ap->a_fcnp;
1365     char *fname;
1366     struct componentname *tcnp = ap->a_tcnp;
1367     char *tname;
1368     struct vnode *tvp = ap->a_tvp;
1369     struct vnode *tdvp = ap->a_tdvp;
1370     struct vnode *fvp = ap->a_fvp;
1371     struct vnode *fdvp = ap->a_fdvp;
1372     struct proc *p; 
1373
1374     p = cn_proc(fcnp);
1375
1376 #ifdef AFS_DARWIN80_ENV
1377     /*
1378      * generic code tests for v_mount equality, so we don't have to, but we
1379      * don't get the multiple-mount "benefits" of the old behavior
1380      * the generic code doesn't do this, so we really should, but all the
1381      * vrele's are wrong...
1382      */
1383 #else
1384     /* Check for cross-device rename.
1385      * For AFS, this means anything not in AFS-space
1386      */
1387     if ((0 != strcmp(tdvp->v_mount->mnt_stat.f_fstypename, "afs")) ||
1388         (tvp && (0 != strcmp(tvp->v_mount->mnt_stat.f_fstypename, "afs")))) {
1389         error = EXDEV;
1390         goto abortit;
1391     }
1392
1393     /*
1394      * if fvp == tvp, we're just removing one name of a pair of
1395      * directory entries for the same element.  convert call into rename.
1396      ( (pinched from NetBSD 1.0's ufs_rename())
1397      */
1398     if (fvp == tvp) {
1399         if (vnode_isdir(fvp)) {
1400             error = EINVAL;
1401           abortit:
1402             VOP_ABORTOP(tdvp, tcnp);    /* XXX, why not in NFS? */
1403             if (tdvp == tvp)
1404                 vrele(tdvp);
1405             else
1406                 vput(tdvp);
1407             if (tvp)
1408                 vput(tvp);
1409             VOP_ABORTOP(fdvp, fcnp);    /* XXX, why not in NFS? */
1410             vrele(fdvp);
1411             vrele(fvp);
1412             return (error);
1413         }
1414
1415         /* Release destination completely. */
1416         VOP_ABORTOP(tdvp, tcnp);
1417         vput(tdvp);
1418         vput(tvp);
1419         /* Delete source. */
1420         vrele(fdvp);
1421         vrele(fvp);
1422         fcnp->cn_flags &= ~MODMASK;
1423         fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
1424         if ((fcnp->cn_flags & SAVESTART) == 0)
1425             panic("afs_rename: lost from startdir");
1426         fcnp->cn_nameiop = DELETE;
1427
1428         VREF(fdvp); 
1429         error=relookup(fdvp, &fvp, fcnp);
1430         if (error == 0)
1431             vrele(fdvp);
1432         if (fvp == NULL) {
1433             return (ENOENT);
1434         }
1435         error=VOP_REMOVE(fdvp, fvp, fcnp);
1436         
1437         if (fdvp == fvp)
1438             vrele(fdvp);
1439         else
1440             vput(fdvp);
1441         vput(fvp);
1442         return (error);
1443     }
1444     if (error = vn_lock(fvp, LK_EXCLUSIVE, p))
1445         goto abortit;
1446 #endif
1447
1448     MALLOC(fname, char *, fcnp->cn_namelen + 1, M_TEMP, M_WAITOK);
1449     memcpy(fname, fcnp->cn_nameptr, fcnp->cn_namelen);
1450     fname[fcnp->cn_namelen] = '\0';
1451     MALLOC(tname, char *, tcnp->cn_namelen + 1, M_TEMP, M_WAITOK);
1452     memcpy(tname, tcnp->cn_nameptr, tcnp->cn_namelen);
1453     tname[tcnp->cn_namelen] = '\0';
1454
1455
1456     AFS_GLOCK();
1457     /* XXX use "from" or "to" creds? NFS uses "to" creds */
1458     error =
1459         afs_rename(VTOAFS(fdvp), fname, VTOAFS(tdvp), tname, cn_cred(tcnp));
1460
1461 #if !defined(AFS_DARWIN80_ENV) 
1462     AFS_GUNLOCK();
1463     VOP_UNLOCK(fvp, 0, p);
1464     if (error)
1465         goto abortit;           /* XXX */
1466     if (tdvp == tvp)
1467         vrele(tdvp);
1468     else
1469         vput(tdvp);
1470     if (tvp)
1471         vput(tvp);
1472     vrele(fdvp);
1473     vrele(fvp);
1474 #else
1475     if (error == EXDEV) {
1476         struct brequest *tb;
1477         struct afs_uspc_param mvReq;
1478         struct vcache *tvc;
1479         struct vcache *fvc = VTOAFS(fdvp);
1480         int code = 0;
1481         struct afs_fakestat_state fakestate;
1482         int fakestatdone = 0;
1483
1484         tvc = VTOAFS(tdvp);
1485
1486         /* unrewritten mount point? */
1487         if (tvc->mvstat == 1) {
1488             if (tvc->mvid && (tvc->f.states & CMValid)) {
1489                 struct vrequest treq;
1490
1491                 afs_InitFakeStat(&fakestate);
1492                 code = afs_InitReq(&treq, vop_cred);
1493                 if (!code) {
1494                     fakestatdone = 1;
1495                     code = afs_EvalFakeStat(&tvc, &fakestate, &treq);
1496                 } else
1497                     afs_PutFakeStat(&fakestate);
1498             }
1499         }
1500
1501         if (!code) {
1502             /* at some point in the future we should allow other types */
1503             mvReq.reqtype = AFS_USPC_UMV;
1504             mvReq.req.umv.id = afs_cr_uid(cn_cred(tcnp));
1505             mvReq.req.umv.idtype = IDTYPE_UID;
1506             mvReq.req.umv.sCell = fvc->f.fid.Cell;
1507             mvReq.req.umv.sVolume = fvc->f.fid.Fid.Volume;
1508             mvReq.req.umv.sVnode = fvc->f.fid.Fid.Vnode;
1509             mvReq.req.umv.sUnique = fvc->f.fid.Fid.Unique;
1510             mvReq.req.umv.dCell = tvc->f.fid.Cell;
1511             mvReq.req.umv.dVolume = tvc->f.fid.Fid.Volume;
1512             mvReq.req.umv.dVnode = tvc->f.fid.Fid.Vnode;
1513             mvReq.req.umv.dUnique = tvc->f.fid.Fid.Unique;
1514
1515             /*
1516              * su %d -c mv /afs/.:mount/%d:%d:%d:%d/%s
1517              * /afs/.:mount/%d:%d:%d:%d/%s where:
1518              * mvReq.req.umv.id, fvc->f.fid.Cell, fvc->f.fid.Fid.Volume,
1519              * fvc->f.fid.Fid.Vnode, fvc->f.fid.Fid.Unique, fname,
1520              * tvc->f.fid.Cell, tvc->f.fid.Fid.Volume, tvc->f.fid.Fid.Vnode,
1521              * tvc->f.fid.Fid.Unique, tname
1522              */
1523
1524             tb = afs_BQueue(BOP_MOVE, NULL, 0, 1, cn_cred(tcnp),
1525                             0L, 0L, &mvReq, fname, tname);
1526             /* wait to collect result */
1527             while ((tb->flags & BUVALID) == 0) {
1528                 tb->flags |= BUWAIT;
1529                 afs_osi_Sleep(tb);
1530             }
1531             /* if we succeeded, clear the error. otherwise, EXDEV */
1532             if (mvReq.retval == 0)
1533                 error = 0;
1534
1535             afs_BRelease(tb);
1536         }
1537
1538         if (fakestatdone)
1539             afs_PutFakeStat(&fakestate);
1540     }
1541     AFS_GUNLOCK();
1542
1543     cache_purge(fdvp);
1544     cache_purge(fvp);
1545     cache_purge(tdvp);
1546     if (tvp) {
1547         cache_purge(tvp);
1548         if (!error) {
1549             vnode_recycle(tvp);
1550         }
1551     }
1552     if (!error)
1553         cache_enter(tdvp, fvp, tcnp);
1554 #endif
1555     FREE(fname, M_TEMP);
1556     FREE(tname, M_TEMP);
1557     return error;
1558 }
1559
1560 int
1561 afs_vop_mkdir(ap)
1562      struct VOPPROT(mkdir_args) /* {
1563                                  * struct vnode *a_dvp;
1564                                  * struct vnode **a_vpp;
1565                                  * struct componentname *a_cnp;
1566                                  * struct vattr *a_vap;
1567                                  * } */ *ap;
1568 {
1569     struct vnode *dvp = ap->a_dvp;
1570     struct vattr *vap = ap->a_vap;
1571     int error = 0;
1572     struct vcache *vcp;
1573     struct proc *p;
1574
1575     GETNAME();
1576     p = vop_cn_proc;
1577 #if defined(DIAGNOSTIC) && !defined(AFS_DARWIN80_ENV)
1578     if ((cnp->cn_flags & HASBUF) == 0)
1579         panic("afs_vop_mkdir: no name");
1580 #endif
1581     AFS_GLOCK();
1582     error = afs_mkdir(VTOAFS(dvp), name, vap, &vcp, vop_cn_cred);
1583     AFS_GUNLOCK();
1584     if (error) {
1585 #ifndef AFS_DARWIN80_ENV
1586         VOP_ABORTOP(dvp, cnp);
1587         vput(dvp);
1588 #endif
1589         DROPNAME();
1590         return (error);
1591     }
1592     if (vcp) {
1593 #ifdef AFS_DARWIN80_ENV
1594         afs_darwin_finalizevnode(vcp, ap->a_dvp, ap->a_cnp, 0, 0);
1595 #endif
1596         *ap->a_vpp = AFSTOV(vcp);
1597 #ifndef AFS_DARWIN80_ENV /* XXX needed for multi-mount thing, but can't have it yet */
1598         (*ap->a_vpp)->v_vfsp = dvp->v_vfsp;
1599         vn_lock(*ap->a_vpp, LK_EXCLUSIVE | LK_RETRY, p);
1600 #endif
1601     } else
1602         *ap->a_vpp = 0;
1603     DROPNAME();
1604 #ifndef AFS_DARWIN80_ENV
1605     FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1606     vput(dvp);
1607 #endif
1608     return error;
1609 }
1610
1611 int
1612 afs_vop_rmdir(ap)
1613      struct VOPPROT(rmdir_args) /* {
1614                                  * struct vnode *a_dvp;
1615                                  * struct vnode *a_vp;
1616                                  * struct componentname *a_cnp;
1617                                  * } */ *ap;
1618 {
1619     int error = 0;
1620     struct vnode *vp = ap->a_vp;
1621     struct vnode *dvp = ap->a_dvp;
1622
1623     GETNAME();
1624     if (dvp == vp) {
1625 #ifndef AFS_DARWIN80_ENV
1626         vrele(dvp);
1627         vput(vp);
1628         FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1629 #endif
1630         DROPNAME();
1631         return (EINVAL);
1632     }
1633
1634     AFS_GLOCK();
1635     error = afs_rmdir(VTOAFS(dvp), name, vop_cn_cred);
1636     AFS_GUNLOCK();
1637     DROPNAME();
1638     cache_purge(dvp);
1639     cache_purge(vp);
1640 #ifndef AFS_DARWIN80_ENV
1641     vput(dvp);
1642     vput(vp);
1643 #endif
1644     return error;
1645 }
1646
1647 int
1648 afs_vop_symlink(ap)
1649      struct VOPPROT(symlink_args)       /* {
1650                                  * struct vnode *a_dvp;
1651                                  * struct vnode **a_vpp;
1652                                  * struct componentname *a_cnp;
1653                                  * struct vattr *a_vap;
1654                                  * char *a_target;
1655                                  * } */ *ap;
1656 {
1657     struct vnode *dvp = ap->a_dvp;
1658     int error = 0;
1659     /* NFS ignores a_vpp; so do we. */
1660
1661     GETNAME();
1662     AFS_GLOCK();
1663     error =
1664         afs_symlink(VTOAFS(dvp), name, ap->a_vap, ap->a_target, vop_cn_cred);
1665     AFS_GUNLOCK();
1666     DROPNAME();
1667 #ifndef AFS_DARWIN80_ENV
1668     FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1669     vput(dvp);
1670 #endif
1671     return error;
1672 }
1673
1674 int
1675 afs_vop_readdir(ap)
1676      struct VOPPROT(readdir_args)       /* {
1677                                  * struct vnode *a_vp;
1678                                  * struct uio *a_uio;
1679                                  * struct ucred *a_cred;
1680                                  * int *a_eofflag;
1681                                  * u_long *a_cookies;
1682                                  * int ncookies;
1683                                  * } */ *ap;
1684 {
1685     int error;
1686     off_t off;
1687 /*    printf("readdir %x cookies %x ncookies %d\n", ap->a_vp, ap->a_cookies,
1688            ap->a_ncookies); */
1689 #ifdef AFS_DARWIN80_ENV
1690     /* too much work for now */
1691     /* should only break nfs exports */
1692     if (ap->a_flags & (VNODE_READDIR_EXTENDED | VNODE_READDIR_REQSEEKOFF))
1693          return (EINVAL);
1694 #endif
1695     off = AFS_UIO_OFFSET(ap->a_uio);
1696     AFS_GLOCK();
1697     error =
1698         afs_readdir(VTOAFS(ap->a_vp), ap->a_uio, vop_cred, ap->a_eofflag);
1699     AFS_GUNLOCK();
1700 #ifndef AFS_DARWIN80_ENV
1701     if (!error && ap->a_ncookies != NULL) {
1702         struct uio *uio = ap->a_uio;
1703         const struct dirent *dp, *dp_start, *dp_end;
1704         int ncookies;
1705         u_long *cookies, *cookiep;
1706
1707         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
1708             panic("afs_readdir: burned cookies");
1709         dp = (const struct dirent *)
1710             ((const char *)uio->uio_iov->iov_base - (uio->uio_offset - off));
1711
1712         dp_end = (const struct dirent *)uio->uio_iov->iov_base;
1713         for (dp_start = dp, ncookies = 0; dp < dp_end;
1714              dp = (const struct dirent *)((const char *)dp + dp->d_reclen))
1715             ncookies++;
1716
1717         MALLOC(cookies, u_long *, ncookies * sizeof(u_long), M_TEMP,
1718                M_WAITOK);
1719         for (dp = dp_start, cookiep = cookies; dp < dp_end;
1720              dp = (const struct dirent *)((const char *)dp + dp->d_reclen)) {
1721             off += dp->d_reclen;
1722             *cookiep++ = off;
1723         }
1724         *ap->a_cookies = cookies;
1725         *ap->a_ncookies = ncookies;
1726     }
1727 #endif
1728
1729     return error;
1730 }
1731
1732 int
1733 afs_vop_readlink(ap)
1734      struct VOPPROT(readlink_args)      /* {
1735                                  * struct vnode *a_vp;
1736                                  * struct uio *a_uio;
1737                                  * struct ucred *a_cred;
1738                                  * } */ *ap;
1739 {
1740     int error;
1741 /*    printf("readlink %x\n", ap->a_vp);*/
1742     AFS_GLOCK();
1743     error = afs_readlink(VTOAFS(ap->a_vp), ap->a_uio, vop_cred);
1744     AFS_GUNLOCK();
1745     return error;
1746 }
1747
1748 extern int prtactive;
1749
1750 int
1751 afs_vop_inactive(ap)
1752      struct VOPPROT(inactive_args)      /* {
1753                                  * struct vnode *a_vp;
1754                                  * struct proc *a_p;
1755                                  * } */ *ap;
1756 {
1757     struct vnode *vp = ap->a_vp;
1758     struct vcache *tvc = VTOAFS(vp);
1759 #ifndef AFS_DARWIN80_ENV
1760     if (prtactive && vp->v_usecount != 0)
1761         vprint("afs_vop_inactive(): pushing active", vp);
1762 #endif
1763     if (tvc) {
1764 #ifdef AFS_DARWIN80_ENV
1765         int unlinked = tvc->f.states & CUnlinked;
1766 #endif
1767         AFS_GLOCK();
1768         afs_InactiveVCache(tvc, 0);     /* decrs ref counts */
1769         AFS_GUNLOCK();
1770 #ifdef AFS_DARWIN80_ENV
1771         if (unlinked) {
1772             vnode_recycle(vp);
1773             cache_purge(vp);
1774         }
1775 #endif
1776     }
1777 #ifndef AFS_DARWIN80_ENV
1778     VOP_UNLOCK(vp, 0, ap->a_p);
1779 #endif
1780     return 0;
1781 }
1782
1783 int
1784 afs_vop_reclaim(ap)
1785      struct VOPPROT(reclaim_args)       /* {
1786                                  * struct vnode *a_vp;
1787                                  * } */ *ap;
1788 {
1789     int error = 0;
1790     int sl, writelocked;
1791     struct vnode *vp = ap->a_vp;
1792     struct vcache *tvc = VTOAFS(vp);
1793
1794     osi_Assert(!ISAFS_GLOCK());
1795     cache_purge(vp);            /* just in case... */
1796     if (tvc) {
1797        AFS_GLOCK();
1798        writelocked = (0 == NBObtainWriteLock(&afs_xvcache, 335));
1799        if (!writelocked) {
1800            ObtainWriteLock(&afs_xvreclaim, 176);
1801 #ifdef AFS_DARWIN80_ENV
1802            vnode_clearfsnode(AFSTOV(tvc));
1803            vnode_removefsref(AFSTOV(tvc));
1804 #else
1805            tvc->v->v_data = NULL;  /* remove from vnode */
1806 #endif
1807            AFSTOV(tvc) = NULL;             /* also drop the ptr to vnode */
1808            tvc->f.states |= CVInit; /* also CDeadVnode? */
1809            tvc->nextfree = ReclaimedVCList;
1810            ReclaimedVCList = tvc;
1811            ReleaseWriteLock(&afs_xvreclaim);
1812        } else {
1813            error = afs_FlushVCache(tvc, &sl);   /* toss our stuff from vnode */
1814            if (tvc->f.states & (CVInit
1815 #ifdef AFS_DARWIN80_ENV
1816                               | CDeadVnode
1817 #endif
1818                    )) {
1819                tvc->f.states &= ~(CVInit
1820 #ifdef AFS_DARWIN80_ENV
1821                                 | CDeadVnode
1822 #endif
1823                    );
1824                afs_osi_Wakeup(&tvc->f.states);
1825            }
1826            if (!error && vnode_fsnode(vp))
1827                panic("afs_reclaim: vnode not cleaned");
1828            if (!error && (tvc->v != NULL)) 
1829                panic("afs_reclaim: vcache not cleaned");
1830            ReleaseWriteLock(&afs_xvcache);
1831        }
1832        AFS_GUNLOCK();
1833     }
1834     return error;
1835 }
1836
1837 /*
1838  * Return POSIX pathconf information applicable to ufs filesystems.
1839  */
1840 afs_vop_pathconf(ap)
1841      struct VOPPROT(pathconf_args)      /* {
1842                                  * struct vnode *a_vp;
1843                                  * int a_name;
1844                                  * int *a_retval;
1845                                  * } */ *ap;
1846 {
1847     AFS_STATCNT(afs_cntl);
1848     switch (ap->a_name) {
1849     case _PC_LINK_MAX:
1850         *ap->a_retval = LINK_MAX;
1851         break;
1852     case _PC_NAME_MAX:
1853         *ap->a_retval = NAME_MAX;
1854         break;
1855     case _PC_PATH_MAX:
1856         *ap->a_retval = PATH_MAX;
1857         break;
1858     case _PC_CHOWN_RESTRICTED:
1859         *ap->a_retval = 1;
1860         break;
1861     case _PC_NO_TRUNC:
1862         *ap->a_retval = 1;
1863         break;
1864     case _PC_PIPE_BUF:
1865         return EINVAL;
1866         break;
1867     case _PC_NAME_CHARS_MAX:
1868         *ap->a_retval = NAME_MAX;
1869         break;
1870     case _PC_CASE_SENSITIVE:
1871         *ap->a_retval = 1;
1872         break;
1873     case _PC_CASE_PRESERVING:
1874         *ap->a_retval = 1;
1875         break;
1876     default:
1877         return EINVAL;
1878     }
1879     return 0;
1880 }
1881
1882 /*
1883  * Advisory record locking support (fcntl() POSIX style)
1884  */
1885 int
1886 afs_vop_advlock(ap)
1887      struct VOPPROT(advlock_args)       /* {
1888                                  * struct vnode *a_vp;
1889                                  * caddr_t  a_id;
1890                                  * int  a_op;
1891                                  * struct flock *a_fl;
1892                                  * int  a_flags;
1893                                  * } */ *ap;
1894 {
1895     int error;
1896     struct ucred *tcr;
1897     int clid;
1898     int op;
1899 #ifdef AFS_DARWIN80_ENV
1900     proc_t p;
1901     tcr=vop_cred;
1902 #else
1903     struct proc *p = current_proc();
1904     struct ucred cr;
1905     pcred_readlock(p);
1906     cr = *p->p_cred->pc_ucred;
1907     pcred_unlock(p);
1908     tcr=&cr;
1909 #endif
1910     if (ap->a_flags & F_POSIX) {
1911 #ifdef AFS_DARWIN80_ENV
1912         p = (proc_t) ap->a_id;
1913         clid = proc_pid(p);
1914 #else
1915         p = (struct proc *) ap->a_id;
1916         clid = p->p_pid;
1917 #endif
1918     } else {
1919         clid = (int)ap->a_id;
1920     }
1921     if (ap->a_op == F_UNLCK) {
1922         op = F_SETLK;
1923     } else if (ap->a_op == F_SETLK && ap->a_flags & F_WAIT) {
1924         op = F_SETLKW;
1925     } else {
1926         op = ap->a_op;
1927     }
1928     AFS_GLOCK();
1929     error = afs_lockctl(VTOAFS(ap->a_vp), ap->a_fl, op, tcr, clid);
1930     AFS_GUNLOCK();
1931     return error;
1932 }
1933
1934 int
1935 afs_vop_blktooff(ap)
1936      struct VOPPROT(blktooff_args)      /* {
1937                                  * struct vnode *a_vp;
1938                                  * daddr_t a_lblkno;
1939                                  * off_t *a_offset;    
1940                                  * } */ *ap;
1941 {
1942     *ap->a_offset = (off_t) (ap->a_lblkno * DEV_BSIZE);
1943     return 0;
1944 }
1945
1946 int
1947 afs_vop_offtoblk(ap)
1948      struct VOPPROT(offtoblk_args)      /* {
1949                                  * struct vnode *a_vp;
1950                                  * off_t a_offset;    
1951                                  * daddr_t *a_lblkno;
1952                                  * } */ *ap;
1953 {
1954     *ap->a_lblkno = (daddr_t) (ap->a_offset / DEV_BSIZE);
1955
1956     return (0);
1957 }
1958
1959 #ifndef AFS_DARWIN80_ENV
1960 int
1961 afs_vop_lock(ap)
1962      struct VOPPROT(lock_args)  /* {
1963                                  * struct vnode *a_vp;
1964                                  * } */ *ap;
1965 {
1966     struct vnode *vp = ap->a_vp;
1967     struct vcache *avc = VTOAFS(vp);
1968
1969     if (vp->v_tag == VT_NON)
1970         return (ENOENT);
1971
1972     return (lockmgr(&avc->rwlock, ap->a_flags, &vp->v_interlock, ap->a_p));
1973 }
1974
1975 int
1976 afs_vop_unlock(ap)
1977      struct VOPPROT(unlock_args)        /* {
1978                                  * struct vnode *a_vp;
1979                                  * } */ *ap;
1980 {
1981     struct vnode *vp = ap->a_vp;
1982     struct vcache *avc = VTOAFS(vp);
1983
1984     return (lockmgr
1985             (&avc->rwlock, ap->a_flags | LK_RELEASE, &vp->v_interlock,
1986              ap->a_p));
1987
1988 }
1989
1990 int
1991 afs_vop_truncate(ap)
1992      struct VOPPROT(truncate_args)      /* {
1993                                  * struct vnode *a_vp;
1994                                  * off_t a_length;
1995                                  * int a_flags;
1996                                  * struct ucred *a_cred;
1997                                  * struct proc *a_p;
1998                                  * } */ *ap;
1999 {
2000     /* printf("stray afs_vop_truncate\n"); */
2001     return ENOTSUP;
2002 }
2003
2004 int
2005 afs_vop_update(ap)
2006      struct VOPPROT(update_args)        /* {
2007                                  * struct vnode *a_vp;
2008                                  * struct timeval *a_access;
2009                                  * struct timeval *a_modify;
2010                                  * int a_waitfor;
2011                                  * } */ *ap;
2012 {
2013     /* printf("stray afs_vop_update\n"); */
2014     return ENOTSUP;
2015 }
2016
2017 int
2018 afs_vop_bmap(ap)
2019      struct VOPPROT(bmap_args)  /* {
2020                                  * struct vnode *a_vp;
2021                                  * daddr_t  a_bn;
2022                                  * struct vnode **a_vpp;
2023                                  * daddr_t *a_bnp;
2024                                  * int *a_runp;
2025                                  * int *a_runb;
2026                                  * } */ *ap;
2027 {
2028     int error;
2029     if (ap->a_bnp) {
2030         *ap->a_bnp = ap->a_bn * (PAGE_SIZE / DEV_BSIZE);
2031     }
2032     if (ap->a_vpp) {
2033         *ap->a_vpp = ap->a_vp;
2034     }
2035     if (ap->a_runp != NULL)
2036         *ap->a_runp = 0;
2037 #ifdef notyet
2038     if (ap->a_runb != NULL)
2039         *ap->a_runb = 0;
2040 #endif
2041
2042     return 0;
2043 }
2044
2045 int
2046 afs_vop_strategy(ap)
2047      struct VOPPROT(strategy_args)      /* {
2048                                  * struct buf *a_bp;
2049                                  * } */ *ap;
2050 {
2051     int error;
2052     AFS_GLOCK();
2053     error = afs_ustrategy(ap->a_bp);
2054     AFS_GUNLOCK();
2055     return error;
2056 }
2057
2058 int
2059 afs_vop_print(ap)
2060      struct VOPPROT(print_args) /* {
2061                                  * struct vnode *a_vp;
2062                                  * } */ *ap;
2063 {
2064     struct vnode *vp = ap->a_vp;
2065     struct vcache *vc = VTOAFS(ap->a_vp);
2066     int s = vc->f.states;
2067     printf("tag %d, fid: %ld.%x.%x.%x, opens %d, writers %d", vp->v_tag,
2068            vc->f.fid.Cell, vc->f.fid.Fid.Volume, vc->f.fid.Fid.Vnode,
2069            vc->f.fid.Fid.Unique, vc->opens, vc->execsOrWriters);
2070     printf("\n  states%s%s%s%s%s", (s & CStatd) ? " statd" : "",
2071            (s & CRO) ? " readonly" : "", (s & CDirty) ? " dirty" : "",
2072            (s & CMAPPED) ? " mapped" : "",
2073            (s & CVFlushed) ? " flush in progress" : "");
2074     if (UBCISVALID(vp)) {
2075         printf("\n  UBC: ");
2076         if (UBCINFOEXISTS(vp)) {
2077             printf("exists, ");
2078             printf("refs %d%s%s", vp->v_ubcinfo->ui_refcount,
2079                    ubc_issetflags(vp, UI_HASOBJREF) ? " HASOBJREF" : "",
2080                    ubc_issetflags(vp, UI_WASMAPPED) ? " WASMAPPED" : "");
2081         } else
2082             printf("does not exist");
2083     }
2084     printf("\n");
2085     return 0;
2086 }
2087
2088 int
2089 afs_vop_islocked(ap)
2090      struct VOPPROT(islocked_args)      /* {
2091                                  * struct vnode *a_vp;
2092                                  * } */ *ap;
2093 {
2094     struct vcache *vc = VTOAFS(ap->a_vp);
2095     return lockstatus(&vc->rwlock);
2096 }
2097
2098 int
2099 afs_vop_cmap(ap)
2100      struct VOPPROT(cmap_args)  /* {
2101                                  * struct vnode *a_vp;
2102                                  * off_t a_foffset;    
2103                                  * size_t a_size;
2104                                  * daddr_t *a_bpn;
2105                                  * size_t *a_run;
2106                                  * void *a_poff;
2107                                  * } */ *ap;
2108 {
2109     *ap->a_bpn = (daddr_t) (ap->a_foffset / DEV_BSIZE);
2110     *ap->a_run = MAX(ap->a_size, AFS_CHUNKSIZE(ap->a_foffset));
2111     return 0;
2112 }
2113 #endif
2114
2115 int
2116 afs_darwin_getnewvnode(struct vcache *avc)
2117 {
2118 #ifdef AFS_DARWIN80_ENV
2119     vnode_t vp;
2120     int error, dead;
2121     struct vnode_fsparam par;
2122
2123     memset(&par, 0, sizeof(struct vnode_fsparam));
2124     par.vnfs_vtype = VNON;
2125     par.vnfs_vops = afs_dead_vnodeop_p;
2126     par.vnfs_flags = VNFS_NOCACHE|VNFS_CANTCACHE;
2127     par.vnfs_mp = afs_globalVFS;
2128     par.vnfs_fsnode = avc;
2129
2130     error = vnode_create(VNCREATE_FLAVOR, VCREATESIZE, &par, &vp);
2131     if (!error) {
2132       vnode_addfsref(vp);
2133       vnode_ref(vp);
2134       avc->v = vp;
2135       vnode_recycle(vp); /* terminate as soon as iocount drops */
2136       avc->f.states |= CDeadVnode;
2137     }
2138     return error;
2139 #else
2140     while (getnewvnode(VT_AFS, afs_globalVFS, afs_vnodeop_p, &avc->v)) {
2141         /* no vnodes available, force an alloc (limits be damned)! */
2142         printf("failed to get vnode\n");
2143     }
2144     avc->v->v_data = (void *)avc;
2145     return 0;
2146 #endif
2147 }
2148 #ifdef AFS_DARWIN80_ENV
2149 /* if this fails, then tvc has been unrefed and may have been freed. 
2150    Don't touch! */
2151 int
2152 afs_darwin_finalizevnode(struct vcache *avc, struct vnode *dvp,
2153                          struct componentname *cnp, int isroot, int locked)
2154 {
2155     vnode_t ovp;
2156     vnode_t nvp;
2157     int error;
2158     struct vnode_fsparam par;
2159
2160     if (!locked) {
2161         AFS_GLOCK();
2162         ObtainWriteLock(&avc->lock,325);
2163     }
2164     ovp = AFSTOV(avc);
2165
2166     /* if the type changed, we still need to do a fixup, for bulkstat */
2167     if (!isroot && (vnode_vtype(ovp) == avc->f.m.Type &&
2168                     !(avc->f.states & CDeadVnode) && vnode_vtype(ovp) != VNON)
2169     {
2170         AFS_GUNLOCK();
2171 #if 0 /* unsupported */
2172         if (dvp && cnp)
2173             vnode_update_identity(ovp, dvp, cnp->cn_nameptr, cnp->cn_namelen,
2174                                   cnp->cn_hash,
2175                                   VNODE_UPDATE_PARENT|VNODE_UPDATE_NAME);
2176 #endif
2177         /* Can end up in reclaim... drop GLOCK */
2178         vnode_rele(ovp);
2179         AFS_GLOCK();
2180         if (!locked) {
2181             ReleaseWriteLock(&avc->lock);
2182             AFS_GUNLOCK();
2183         }
2184         return 0;
2185     }
2186
2187     if ((avc->f.states & CDeadVnode) && vnode_vtype(ovp) != VNON)
2188         panic("vcache %p should not be CDeadVnode", avc);
2189     AFS_GUNLOCK();
2190     memset(&par, 0, sizeof(struct vnode_fsparam));
2191     par.vnfs_mp = afs_globalVFS;
2192     par.vnfs_vtype = avc->f.m.Type;
2193     par.vnfs_vops = afs_vnodeop_p;
2194     par.vnfs_filesize = avc->f.m.Length;
2195     par.vnfs_fsnode = avc;
2196     par.vnfs_dvp = dvp;
2197     if (cnp && (cnp->cn_flags & ISDOTDOT) == 0)
2198         par.vnfs_cnp = cnp;
2199     if (!dvp || !cnp || (cnp->cn_flags & MAKEENTRY) == 0)
2200         par.vnfs_flags = VNFS_NOCACHE;
2201     if (isroot)
2202         par.vnfs_markroot = 1;
2203     error = vnode_create(VNCREATE_FLAVOR, VCREATESIZE, &par, &nvp);
2204     if (!error) {
2205         vnode_addfsref(nvp);
2206         if ((avc->f.states & CDeadVnode) && vnode_vtype(ovp) != VNON)
2207             printf("vcache %p should not be CDeadVnode", avc);
2208         if (avc->v == ovp) {
2209             if (!(avc->f.states & CVInit)) {
2210                 vnode_clearfsnode(ovp);
2211                 vnode_removefsref(ovp);
2212             }
2213             /* we're discarding on a fixup. mark for recycle */
2214             if (!(avc->f.states & CDeadVnode))
2215                 vnode_recycle(ovp);
2216         }
2217         avc->v = nvp;
2218         avc->f.states &=~ CDeadVnode;
2219         /* If we were carrying an extra ref for dirty, hold/push it. */
2220         if (avc->f.ddirty_flags) {
2221             vnode_get(nvp);
2222             vnode_ref(nvp);
2223         }
2224         /* If we were carrying an extra ref for shadow, hold/push it. */
2225         if (avc->f.shadow.vnode) {
2226             vnode_get(nvp);
2227             vnode_ref(nvp);
2228         }
2229     }
2230     /* Drop any extra dirty ref on the old vnode */
2231     if (avc->f.ddirty_flags) {
2232         vnode_put(ovp);
2233         vnode_rele(ovp);
2234     }
2235     /* Drop any extra shadow ref on the old vnode */
2236     if (avc->f.shadow.vnode) {
2237         vnode_put(ovp);
2238         vnode_rele(ovp);
2239     }
2240     /* If it's ref'd still, unmark stat'd to force new lookup */
2241     if ((vnode_vtype(ovp) != avc->f.m.Type) && VREFCOUNT_GT(avc, 1))
2242         avc->f.states &= ~CStatd;
2243
2244     vnode_put(ovp);
2245     vnode_rele(ovp);
2246     AFS_GLOCK();
2247     if (!locked)
2248         ReleaseWriteLock(&avc->lock);
2249     if (!error)
2250         afs_osi_Wakeup(&avc->f.states);
2251     if (!locked)
2252         AFS_GUNLOCK();
2253     return error;
2254 }
2255 #endif