libafs: Remove unecessary parameters to afs_read
[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     /* afs_vop_lookup glocks, can call us through vinvalbuf from GetVCache */
1214     if (!haveGlock) AFS_GLOCK();
1215     if (vop_cred)
1216         error = afs_fsync(VTOAFS(vp), vop_cred);
1217     else
1218         error = afs_fsync(VTOAFS(vp), &afs_osi_cred);
1219     if (!haveGlock) AFS_GUNLOCK();
1220     return error;
1221 }
1222
1223 #ifndef AFS_DARWIN80_ENV
1224 int
1225 afs_vop_seek(ap)
1226      struct VOPPROT(seek_args)  /* {
1227                                  * struct vnode *a_vp;
1228                                  * off_t  a_oldoff;
1229                                  * off_t  a_newoff;
1230                                  * struct ucred *a_cred;
1231                                  * } */ *ap;
1232 {
1233     if (ap->a_newoff > ULONG_MAX)       /* AFS doesn't support 64-bit offsets */
1234         return EINVAL;
1235     return (0);
1236 }
1237 #endif
1238
1239 int
1240 afs_vop_remove(ap)
1241      struct VOPPROT(remove_args)        /* {
1242                                  * struct vnode *a_dvp;
1243                                  * struct vnode *a_vp;
1244                                  * struct componentname *a_cnp;
1245                                  * } */ *ap;
1246 {
1247     int error = 0;
1248     struct vnode *vp = ap->a_vp;
1249     struct vnode *dvp = ap->a_dvp;
1250
1251 #ifdef AFS_DARWIN80_ENV
1252     if (ap->a_flags & VNODE_REMOVE_NODELETEBUSY) {
1253             /* Caller requested Carbon delete semantics */
1254             if (vnode_isinuse(vp, 0)) {
1255                     return EBUSY;
1256             }
1257     }
1258 #endif
1259
1260     GETNAME();
1261     AFS_GLOCK();
1262     error = afs_remove(VTOAFS(dvp), name, vop_cn_cred);
1263     error = afs_CheckCode(error, NULL, 61);
1264     AFS_GUNLOCK();
1265     cache_purge(vp);
1266     if (!error) {
1267 #ifdef AFS_DARWIN80_ENV
1268         struct vcache *tvc = VTOAFS(vp);
1269         
1270         if (!(tvc->f.states & CUnlinked)) {
1271             ubc_setsize(vp, (off_t)0);
1272             vnode_recycle(vp);
1273         }
1274 #else
1275         /* necessary so we don't deadlock ourselves in vclean */
1276         VOP_UNLOCK(vp, 0, cnp->cn_proc);
1277
1278         /* If crashes continue in ubc_hold, comment this out */
1279         (void)ubc_uncache(vp);
1280 #endif
1281     } else {
1282         /* should check for PRSFS_INSERT and not PRSFS_DELETE, but the
1283            goal here is to deal with Finder's unhappiness with resource
1284            forks that have no resources in a dropbox setting */
1285         if (name[0] == '.' && name[1] == '_' && error == EACCES) 
1286             error = 0;
1287     }
1288
1289 #ifndef AFS_DARWIN80_ENV
1290     vput(dvp);
1291     if (dvp == vp)
1292         vrele(vp);
1293     else
1294         vput(vp);
1295 #endif
1296
1297 #ifndef AFS_DARWIN80_ENV
1298     FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1299 #endif
1300     DROPNAME();
1301     return error;
1302 }
1303
1304 int
1305 afs_vop_link(ap)
1306      struct VOPPROT(link_args)  /* {
1307                                  * struct vnode *a_vp;
1308                                  * struct vnode *a_tdvp;
1309                                  * struct componentname *a_cnp;
1310                                  * } */ *ap;
1311 {
1312     int error = 0;
1313     struct vnode *dvp = ap->a_tdvp;
1314     struct vnode *vp = ap->a_vp;
1315     struct proc *p;
1316
1317     GETNAME();
1318     p = vop_cn_proc;
1319     if (vnode_isdir(vp)) {
1320         VOP_ABORTOP(vp, cnp);
1321         error = EISDIR;
1322         goto out;
1323     }
1324 #ifndef AFS_DARWIN80_ENV
1325     if (error = vn_lock(vp, LK_EXCLUSIVE, p)) {
1326         VOP_ABORTOP(dvp, cnp);
1327         goto out;
1328     }
1329 #endif
1330     AFS_GLOCK();
1331     error = afs_link(VTOAFS(vp), VTOAFS(dvp), name, vop_cn_cred);
1332     AFS_GUNLOCK();
1333 #ifndef AFS_DARWIN80_ENV
1334     FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1335 #endif
1336 #ifndef AFS_DARWIN80_ENV
1337     if (dvp != vp)
1338         VOP_UNLOCK(vp, 0, p);
1339 #endif
1340   out:
1341 #ifndef AFS_DARWIN80_ENV
1342     vput(dvp);
1343 #endif
1344     DROPNAME();
1345     return error;
1346 }
1347
1348 int
1349 afs_vop_rename(ap)
1350      struct VOPPROT(rename_args)        /* {
1351                                  * struct vnode *a_fdvp;
1352                                  * struct vnode *a_fvp;
1353                                  * struct componentname *a_fcnp;
1354                                  * struct vnode *a_tdvp;
1355                                  * struct vnode *a_tvp;
1356                                  * struct componentname *a_tcnp;
1357                                  * } */ *ap;
1358 {
1359     int error = 0;
1360     struct componentname *fcnp = ap->a_fcnp;
1361     char *fname;
1362     struct componentname *tcnp = ap->a_tcnp;
1363     char *tname;
1364     struct vnode *tvp = ap->a_tvp;
1365     struct vnode *tdvp = ap->a_tdvp;
1366     struct vnode *fvp = ap->a_fvp;
1367     struct vnode *fdvp = ap->a_fdvp;
1368     struct proc *p; 
1369
1370     p = cn_proc(fcnp);
1371
1372 #ifdef AFS_DARWIN80_ENV
1373     /*
1374      * generic code tests for v_mount equality, so we don't have to, but we
1375      * don't get the multiple-mount "benefits" of the old behavior
1376      * the generic code doesn't do this, so we really should, but all the
1377      * vrele's are wrong...
1378      */
1379 #else
1380     /* Check for cross-device rename.
1381      * For AFS, this means anything not in AFS-space
1382      */
1383     if ((0 != strcmp(tdvp->v_mount->mnt_stat.f_fstypename, "afs")) ||
1384         (tvp && (0 != strcmp(tvp->v_mount->mnt_stat.f_fstypename, "afs")))) {
1385         error = EXDEV;
1386         goto abortit;
1387     }
1388
1389     /*
1390      * if fvp == tvp, we're just removing one name of a pair of
1391      * directory entries for the same element.  convert call into rename.
1392      ( (pinched from NetBSD 1.0's ufs_rename())
1393      */
1394     if (fvp == tvp) {
1395         if (vnode_isdir(fvp)) {
1396             error = EINVAL;
1397           abortit:
1398             VOP_ABORTOP(tdvp, tcnp);    /* XXX, why not in NFS? */
1399             if (tdvp == tvp)
1400                 vrele(tdvp);
1401             else
1402                 vput(tdvp);
1403             if (tvp)
1404                 vput(tvp);
1405             VOP_ABORTOP(fdvp, fcnp);    /* XXX, why not in NFS? */
1406             vrele(fdvp);
1407             vrele(fvp);
1408             return (error);
1409         }
1410
1411         /* Release destination completely. */
1412         VOP_ABORTOP(tdvp, tcnp);
1413         vput(tdvp);
1414         vput(tvp);
1415         /* Delete source. */
1416         vrele(fdvp);
1417         vrele(fvp);
1418         fcnp->cn_flags &= ~MODMASK;
1419         fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
1420         if ((fcnp->cn_flags & SAVESTART) == 0)
1421             panic("afs_rename: lost from startdir");
1422         fcnp->cn_nameiop = DELETE;
1423
1424         VREF(fdvp); 
1425         error=relookup(fdvp, &fvp, fcnp);
1426         if (error == 0)
1427             vrele(fdvp);
1428         if (fvp == NULL) {
1429             return (ENOENT);
1430         }
1431         error=VOP_REMOVE(fdvp, fvp, fcnp);
1432         
1433         if (fdvp == fvp)
1434             vrele(fdvp);
1435         else
1436             vput(fdvp);
1437         vput(fvp);
1438         return (error);
1439     }
1440     if (error = vn_lock(fvp, LK_EXCLUSIVE, p))
1441         goto abortit;
1442 #endif
1443
1444     MALLOC(fname, char *, fcnp->cn_namelen + 1, M_TEMP, M_WAITOK);
1445     memcpy(fname, fcnp->cn_nameptr, fcnp->cn_namelen);
1446     fname[fcnp->cn_namelen] = '\0';
1447     MALLOC(tname, char *, tcnp->cn_namelen + 1, M_TEMP, M_WAITOK);
1448     memcpy(tname, tcnp->cn_nameptr, tcnp->cn_namelen);
1449     tname[tcnp->cn_namelen] = '\0';
1450
1451
1452     AFS_GLOCK();
1453     /* XXX use "from" or "to" creds? NFS uses "to" creds */
1454     error =
1455         afs_rename(VTOAFS(fdvp), fname, VTOAFS(tdvp), tname, cn_cred(tcnp));
1456
1457 #if !defined(AFS_DARWIN80_ENV) 
1458     AFS_GUNLOCK();
1459     VOP_UNLOCK(fvp, 0, p);
1460     if (error)
1461         goto abortit;           /* XXX */
1462     if (tdvp == tvp)
1463         vrele(tdvp);
1464     else
1465         vput(tdvp);
1466     if (tvp)
1467         vput(tvp);
1468     vrele(fdvp);
1469     vrele(fvp);
1470 #else
1471     if (error == EXDEV) {
1472         struct brequest *tb;
1473         struct afs_uspc_param mvReq;
1474         struct vcache *tvc;
1475         struct vcache *fvc = VTOAFS(fdvp);
1476         int code = 0;
1477         struct afs_fakestat_state fakestate;
1478         int fakestatdone = 0;
1479
1480         tvc = VTOAFS(tdvp);
1481
1482         /* unrewritten mount point? */
1483         if (tvc->mvstat == 1) {
1484             if (tvc->mvid && (tvc->f.states & CMValid)) {
1485                 struct vrequest treq;
1486
1487                 afs_InitFakeStat(&fakestate);
1488                 code = afs_InitReq(&treq, vop_cred);
1489                 if (!code) {
1490                     fakestatdone = 1;
1491                     code = afs_EvalFakeStat(&tvc, &fakestate, &treq);
1492                 } else
1493                     afs_PutFakeStat(&fakestate);
1494             }
1495         }
1496
1497         if (!code) {
1498             /* at some point in the future we should allow other types */
1499             mvReq.reqtype = AFS_USPC_UMV;
1500             mvReq.req.umv.id = afs_cr_uid(cn_cred(tcnp));
1501             mvReq.req.umv.idtype = IDTYPE_UID;
1502             mvReq.req.umv.sCell = fvc->f.fid.Cell;
1503             mvReq.req.umv.sVolume = fvc->f.fid.Fid.Volume;
1504             mvReq.req.umv.sVnode = fvc->f.fid.Fid.Vnode;
1505             mvReq.req.umv.sUnique = fvc->f.fid.Fid.Unique;
1506             mvReq.req.umv.dCell = tvc->f.fid.Cell;
1507             mvReq.req.umv.dVolume = tvc->f.fid.Fid.Volume;
1508             mvReq.req.umv.dVnode = tvc->f.fid.Fid.Vnode;
1509             mvReq.req.umv.dUnique = tvc->f.fid.Fid.Unique;
1510
1511             /*
1512              * su %d -c mv /afs/.:mount/%d:%d:%d:%d/%s
1513              * /afs/.:mount/%d:%d:%d:%d/%s where:
1514              * mvReq.req.umv.id, fvc->f.fid.Cell, fvc->f.fid.Fid.Volume,
1515              * fvc->f.fid.Fid.Vnode, fvc->f.fid.Fid.Unique, fname,
1516              * tvc->f.fid.Cell, tvc->f.fid.Fid.Volume, tvc->f.fid.Fid.Vnode,
1517              * tvc->f.fid.Fid.Unique, tname
1518              */
1519
1520             tb = afs_BQueue(BOP_MOVE, NULL, 0, 1, cn_cred(tcnp),
1521                             0L, 0L, &mvReq, fname, tname);
1522             /* wait to collect result */
1523             while ((tb->flags & BUVALID) == 0) {
1524                 tb->flags |= BUWAIT;
1525                 afs_osi_Sleep(tb);
1526             }
1527             /* if we succeeded, clear the error. otherwise, EXDEV */
1528             if (mvReq.retval == 0)
1529                 error = 0;
1530
1531             afs_BRelease(tb);
1532         }
1533
1534         if (fakestatdone)
1535             afs_PutFakeStat(&fakestate);
1536     }
1537     AFS_GUNLOCK();
1538
1539     cache_purge(fdvp);
1540     cache_purge(fvp);
1541     cache_purge(tdvp);
1542     if (tvp) {
1543         cache_purge(tvp);
1544         if (!error) {
1545             vnode_recycle(tvp);
1546         }
1547     }
1548     if (!error)
1549         cache_enter(tdvp, fvp, tcnp);
1550 #endif
1551     FREE(fname, M_TEMP);
1552     FREE(tname, M_TEMP);
1553     return error;
1554 }
1555
1556 int
1557 afs_vop_mkdir(ap)
1558      struct VOPPROT(mkdir_args) /* {
1559                                  * struct vnode *a_dvp;
1560                                  * struct vnode **a_vpp;
1561                                  * struct componentname *a_cnp;
1562                                  * struct vattr *a_vap;
1563                                  * } */ *ap;
1564 {
1565     struct vnode *dvp = ap->a_dvp;
1566     struct vattr *vap = ap->a_vap;
1567     int error = 0;
1568     struct vcache *vcp;
1569     struct proc *p;
1570
1571     GETNAME();
1572     p = vop_cn_proc;
1573 #if defined(DIAGNOSTIC) && !defined(AFS_DARWIN80_ENV)
1574     if ((cnp->cn_flags & HASBUF) == 0)
1575         panic("afs_vop_mkdir: no name");
1576 #endif
1577     AFS_GLOCK();
1578     error = afs_mkdir(VTOAFS(dvp), name, vap, &vcp, vop_cn_cred);
1579     AFS_GUNLOCK();
1580     if (error) {
1581 #ifndef AFS_DARWIN80_ENV
1582         VOP_ABORTOP(dvp, cnp);
1583         vput(dvp);
1584 #endif
1585         DROPNAME();
1586         return (error);
1587     }
1588     if (vcp) {
1589 #ifdef AFS_DARWIN80_ENV
1590         afs_darwin_finalizevnode(vcp, ap->a_dvp, ap->a_cnp, 0, 0);
1591 #endif
1592         *ap->a_vpp = AFSTOV(vcp);
1593 #ifndef AFS_DARWIN80_ENV /* XXX needed for multi-mount thing, but can't have it yet */
1594         (*ap->a_vpp)->v_vfsp = dvp->v_vfsp;
1595         vn_lock(*ap->a_vpp, LK_EXCLUSIVE | LK_RETRY, p);
1596 #endif
1597     } else
1598         *ap->a_vpp = 0;
1599     DROPNAME();
1600 #ifndef AFS_DARWIN80_ENV
1601     FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1602     vput(dvp);
1603 #endif
1604     return error;
1605 }
1606
1607 int
1608 afs_vop_rmdir(ap)
1609      struct VOPPROT(rmdir_args) /* {
1610                                  * struct vnode *a_dvp;
1611                                  * struct vnode *a_vp;
1612                                  * struct componentname *a_cnp;
1613                                  * } */ *ap;
1614 {
1615     int error = 0;
1616     struct vnode *vp = ap->a_vp;
1617     struct vnode *dvp = ap->a_dvp;
1618
1619     GETNAME();
1620     if (dvp == vp) {
1621 #ifndef AFS_DARWIN80_ENV
1622         vrele(dvp);
1623         vput(vp);
1624         FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1625 #endif
1626         DROPNAME();
1627         return (EINVAL);
1628     }
1629
1630     AFS_GLOCK();
1631     error = afs_rmdir(VTOAFS(dvp), name, vop_cn_cred);
1632     AFS_GUNLOCK();
1633     DROPNAME();
1634     cache_purge(dvp);
1635     cache_purge(vp);
1636 #ifndef AFS_DARWIN80_ENV
1637     vput(dvp);
1638     vput(vp);
1639 #endif
1640     return error;
1641 }
1642
1643 int
1644 afs_vop_symlink(ap)
1645      struct VOPPROT(symlink_args)       /* {
1646                                  * struct vnode *a_dvp;
1647                                  * struct vnode **a_vpp;
1648                                  * struct componentname *a_cnp;
1649                                  * struct vattr *a_vap;
1650                                  * char *a_target;
1651                                  * } */ *ap;
1652 {
1653     struct vnode *dvp = ap->a_dvp;
1654     int error = 0;
1655     /* NFS ignores a_vpp; so do we. */
1656
1657     GETNAME();
1658     AFS_GLOCK();
1659     error =
1660         afs_symlink(VTOAFS(dvp), name, ap->a_vap, ap->a_target, vop_cn_cred);
1661     AFS_GUNLOCK();
1662     DROPNAME();
1663 #ifndef AFS_DARWIN80_ENV
1664     FREE_ZONE(cnp->cn_pnbuf, cnp->cn_pnlen, M_NAMEI);
1665     vput(dvp);
1666 #endif
1667     return error;
1668 }
1669
1670 int
1671 afs_vop_readdir(ap)
1672      struct VOPPROT(readdir_args)       /* {
1673                                  * struct vnode *a_vp;
1674                                  * struct uio *a_uio;
1675                                  * struct ucred *a_cred;
1676                                  * int *a_eofflag;
1677                                  * u_long *a_cookies;
1678                                  * int ncookies;
1679                                  * } */ *ap;
1680 {
1681     int error;
1682     off_t off;
1683 /*    printf("readdir %x cookies %x ncookies %d\n", ap->a_vp, ap->a_cookies,
1684            ap->a_ncookies); */
1685 #ifdef AFS_DARWIN80_ENV
1686     /* too much work for now */
1687     /* should only break nfs exports */
1688     if (ap->a_flags & (VNODE_READDIR_EXTENDED | VNODE_READDIR_REQSEEKOFF))
1689          return (EINVAL);
1690 #endif
1691     off = AFS_UIO_OFFSET(ap->a_uio);
1692     AFS_GLOCK();
1693     error =
1694         afs_readdir(VTOAFS(ap->a_vp), ap->a_uio, vop_cred, ap->a_eofflag);
1695     AFS_GUNLOCK();
1696 #ifndef AFS_DARWIN80_ENV
1697     if (!error && ap->a_ncookies != NULL) {
1698         struct uio *uio = ap->a_uio;
1699         const struct dirent *dp, *dp_start, *dp_end;
1700         int ncookies;
1701         u_long *cookies, *cookiep;
1702
1703         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
1704             panic("afs_readdir: burned cookies");
1705         dp = (const struct dirent *)
1706             ((const char *)uio->uio_iov->iov_base - (uio->uio_offset - off));
1707
1708         dp_end = (const struct dirent *)uio->uio_iov->iov_base;
1709         for (dp_start = dp, ncookies = 0; dp < dp_end;
1710              dp = (const struct dirent *)((const char *)dp + dp->d_reclen))
1711             ncookies++;
1712
1713         MALLOC(cookies, u_long *, ncookies * sizeof(u_long), M_TEMP,
1714                M_WAITOK);
1715         for (dp = dp_start, cookiep = cookies; dp < dp_end;
1716              dp = (const struct dirent *)((const char *)dp + dp->d_reclen)) {
1717             off += dp->d_reclen;
1718             *cookiep++ = off;
1719         }
1720         *ap->a_cookies = cookies;
1721         *ap->a_ncookies = ncookies;
1722     }
1723 #endif
1724
1725     return error;
1726 }
1727
1728 int
1729 afs_vop_readlink(ap)
1730      struct VOPPROT(readlink_args)      /* {
1731                                  * struct vnode *a_vp;
1732                                  * struct uio *a_uio;
1733                                  * struct ucred *a_cred;
1734                                  * } */ *ap;
1735 {
1736     int error;
1737 /*    printf("readlink %x\n", ap->a_vp);*/
1738     AFS_GLOCK();
1739     error = afs_readlink(VTOAFS(ap->a_vp), ap->a_uio, vop_cred);
1740     AFS_GUNLOCK();
1741     return error;
1742 }
1743
1744 extern int prtactive;
1745
1746 int
1747 afs_vop_inactive(ap)
1748      struct VOPPROT(inactive_args)      /* {
1749                                  * struct vnode *a_vp;
1750                                  * struct proc *a_p;
1751                                  * } */ *ap;
1752 {
1753     struct vnode *vp = ap->a_vp;
1754     struct vcache *tvc = VTOAFS(vp);
1755 #ifndef AFS_DARWIN80_ENV
1756     if (prtactive && vp->v_usecount != 0)
1757         vprint("afs_vop_inactive(): pushing active", vp);
1758 #endif
1759     if (tvc) {
1760 #ifdef AFS_DARWIN80_ENV
1761         int unlinked = tvc->f.states & CUnlinked;
1762 #endif
1763         AFS_GLOCK();
1764         afs_InactiveVCache(tvc, 0);     /* decrs ref counts */
1765         AFS_GUNLOCK();
1766 #ifdef AFS_DARWIN80_ENV
1767         if (unlinked) {
1768             vnode_recycle(vp);
1769             cache_purge(vp);
1770         }
1771 #endif
1772     }
1773 #ifndef AFS_DARWIN80_ENV
1774     VOP_UNLOCK(vp, 0, ap->a_p);
1775 #endif
1776     return 0;
1777 }
1778
1779 int
1780 afs_vop_reclaim(ap)
1781      struct VOPPROT(reclaim_args)       /* {
1782                                  * struct vnode *a_vp;
1783                                  * } */ *ap;
1784 {
1785     int error = 0;
1786     int sl, writelocked;
1787     struct vnode *vp = ap->a_vp;
1788     struct vcache *tvc = VTOAFS(vp);
1789
1790     osi_Assert(!ISAFS_GLOCK());
1791     cache_purge(vp);            /* just in case... */
1792     if (tvc) {
1793        AFS_GLOCK();
1794        writelocked = (0 == NBObtainWriteLock(&afs_xvcache, 335));
1795        if (!writelocked) {
1796            ObtainWriteLock(&afs_xvreclaim, 176);
1797 #ifdef AFS_DARWIN80_ENV
1798            vnode_clearfsnode(AFSTOV(tvc));
1799            vnode_removefsref(AFSTOV(tvc));
1800 #else
1801            tvc->v->v_data = NULL;  /* remove from vnode */
1802 #endif
1803            AFSTOV(tvc) = NULL;             /* also drop the ptr to vnode */
1804            tvc->f.states |= CVInit; /* also CDeadVnode? */
1805            tvc->nextfree = ReclaimedVCList;
1806            ReclaimedVCList = tvc;
1807            ReleaseWriteLock(&afs_xvreclaim);
1808        } else {
1809            error = afs_FlushVCache(tvc, &sl);   /* toss our stuff from vnode */
1810            if (tvc->f.states & (CVInit
1811 #ifdef AFS_DARWIN80_ENV
1812                               | CDeadVnode
1813 #endif
1814                    )) {
1815                tvc->f.states &= ~(CVInit
1816 #ifdef AFS_DARWIN80_ENV
1817                                 | CDeadVnode
1818 #endif
1819                    );
1820                afs_osi_Wakeup(&tvc->f.states);
1821            }
1822            if (!error && vnode_fsnode(vp))
1823                panic("afs_reclaim: vnode not cleaned");
1824            if (!error && (tvc->v != NULL)) 
1825                panic("afs_reclaim: vcache not cleaned");
1826            ReleaseWriteLock(&afs_xvcache);
1827        }
1828        AFS_GUNLOCK();
1829     }
1830     return error;
1831 }
1832
1833 /*
1834  * Return POSIX pathconf information applicable to ufs filesystems.
1835  */
1836 afs_vop_pathconf(ap)
1837      struct VOPPROT(pathconf_args)      /* {
1838                                  * struct vnode *a_vp;
1839                                  * int a_name;
1840                                  * int *a_retval;
1841                                  * } */ *ap;
1842 {
1843     AFS_STATCNT(afs_cntl);
1844     switch (ap->a_name) {
1845     case _PC_LINK_MAX:
1846         *ap->a_retval = LINK_MAX;
1847         break;
1848     case _PC_NAME_MAX:
1849         *ap->a_retval = NAME_MAX;
1850         break;
1851     case _PC_PATH_MAX:
1852         *ap->a_retval = PATH_MAX;
1853         break;
1854     case _PC_CHOWN_RESTRICTED:
1855         *ap->a_retval = 1;
1856         break;
1857     case _PC_NO_TRUNC:
1858         *ap->a_retval = 1;
1859         break;
1860     case _PC_PIPE_BUF:
1861         return EINVAL;
1862         break;
1863     case _PC_NAME_CHARS_MAX:
1864         *ap->a_retval = NAME_MAX;
1865         break;
1866     case _PC_CASE_SENSITIVE:
1867         *ap->a_retval = 1;
1868         break;
1869     case _PC_CASE_PRESERVING:
1870         *ap->a_retval = 1;
1871         break;
1872     default:
1873         return EINVAL;
1874     }
1875     return 0;
1876 }
1877
1878 /*
1879  * Advisory record locking support (fcntl() POSIX style)
1880  */
1881 int
1882 afs_vop_advlock(ap)
1883      struct VOPPROT(advlock_args)       /* {
1884                                  * struct vnode *a_vp;
1885                                  * caddr_t  a_id;
1886                                  * int  a_op;
1887                                  * struct flock *a_fl;
1888                                  * int  a_flags;
1889                                  * } */ *ap;
1890 {
1891     int error;
1892     struct ucred *tcr;
1893     int clid;
1894     int op;
1895 #ifdef AFS_DARWIN80_ENV
1896     proc_t p;
1897     tcr=vop_cred;
1898 #else
1899     struct proc *p = current_proc();
1900     struct ucred cr;
1901     pcred_readlock(p);
1902     cr = *p->p_cred->pc_ucred;
1903     pcred_unlock(p);
1904     tcr=&cr;
1905 #endif
1906     if (ap->a_flags & F_POSIX) {
1907 #ifdef AFS_DARWIN80_ENV
1908         p = (proc_t) ap->a_id;
1909         clid = proc_pid(p);
1910 #else
1911         p = (struct proc *) ap->a_id;
1912         clid = p->p_pid;
1913 #endif
1914     } else {
1915         clid = (int)ap->a_id;
1916     }
1917     if (ap->a_op == F_UNLCK) {
1918         op = F_SETLK;
1919     } else if (ap->a_op == F_SETLK && ap->a_flags & F_WAIT) {
1920         op = F_SETLKW;
1921     } else {
1922         op = ap->a_op;
1923     }
1924     AFS_GLOCK();
1925     error = afs_lockctl(VTOAFS(ap->a_vp), ap->a_fl, op, tcr, clid);
1926     AFS_GUNLOCK();
1927     return error;
1928 }
1929
1930 int
1931 afs_vop_blktooff(ap)
1932      struct VOPPROT(blktooff_args)      /* {
1933                                  * struct vnode *a_vp;
1934                                  * daddr_t a_lblkno;
1935                                  * off_t *a_offset;    
1936                                  * } */ *ap;
1937 {
1938     *ap->a_offset = (off_t) (ap->a_lblkno * DEV_BSIZE);
1939     return 0;
1940 }
1941
1942 int
1943 afs_vop_offtoblk(ap)
1944      struct VOPPROT(offtoblk_args)      /* {
1945                                  * struct vnode *a_vp;
1946                                  * off_t a_offset;    
1947                                  * daddr_t *a_lblkno;
1948                                  * } */ *ap;
1949 {
1950     *ap->a_lblkno = (daddr_t) (ap->a_offset / DEV_BSIZE);
1951
1952     return (0);
1953 }
1954
1955 #ifndef AFS_DARWIN80_ENV
1956 int
1957 afs_vop_lock(ap)
1958      struct VOPPROT(lock_args)  /* {
1959                                  * struct vnode *a_vp;
1960                                  * } */ *ap;
1961 {
1962     struct vnode *vp = ap->a_vp;
1963     struct vcache *avc = VTOAFS(vp);
1964
1965     if (vp->v_tag == VT_NON)
1966         return (ENOENT);
1967
1968     return (lockmgr(&avc->rwlock, ap->a_flags, &vp->v_interlock, ap->a_p));
1969 }
1970
1971 int
1972 afs_vop_unlock(ap)
1973      struct VOPPROT(unlock_args)        /* {
1974                                  * struct vnode *a_vp;
1975                                  * } */ *ap;
1976 {
1977     struct vnode *vp = ap->a_vp;
1978     struct vcache *avc = VTOAFS(vp);
1979
1980     return (lockmgr
1981             (&avc->rwlock, ap->a_flags | LK_RELEASE, &vp->v_interlock,
1982              ap->a_p));
1983
1984 }
1985
1986 int
1987 afs_vop_truncate(ap)
1988      struct VOPPROT(truncate_args)      /* {
1989                                  * struct vnode *a_vp;
1990                                  * off_t a_length;
1991                                  * int a_flags;
1992                                  * struct ucred *a_cred;
1993                                  * struct proc *a_p;
1994                                  * } */ *ap;
1995 {
1996     /* printf("stray afs_vop_truncate\n"); */
1997     return EOPNOTSUPP;
1998 }
1999
2000 int
2001 afs_vop_update(ap)
2002      struct VOPPROT(update_args)        /* {
2003                                  * struct vnode *a_vp;
2004                                  * struct timeval *a_access;
2005                                  * struct timeval *a_modify;
2006                                  * int a_waitfor;
2007                                  * } */ *ap;
2008 {
2009     /* printf("stray afs_vop_update\n"); */
2010     return EOPNOTSUPP;
2011 }
2012
2013 int
2014 afs_vop_bmap(ap)
2015      struct VOPPROT(bmap_args)  /* {
2016                                  * struct vnode *a_vp;
2017                                  * daddr_t  a_bn;
2018                                  * struct vnode **a_vpp;
2019                                  * daddr_t *a_bnp;
2020                                  * int *a_runp;
2021                                  * int *a_runb;
2022                                  * } */ *ap;
2023 {
2024     int error;
2025     if (ap->a_bnp) {
2026         *ap->a_bnp = ap->a_bn * (PAGE_SIZE / DEV_BSIZE);
2027     }
2028     if (ap->a_vpp) {
2029         *ap->a_vpp = ap->a_vp;
2030     }
2031     if (ap->a_runp != NULL)
2032         *ap->a_runp = 0;
2033 #ifdef notyet
2034     if (ap->a_runb != NULL)
2035         *ap->a_runb = 0;
2036 #endif
2037
2038     return 0;
2039 }
2040
2041 int
2042 afs_vop_strategy(ap)
2043      struct VOPPROT(strategy_args)      /* {
2044                                  * struct buf *a_bp;
2045                                  * } */ *ap;
2046 {
2047     int error;
2048     AFS_GLOCK();
2049     error = afs_ustrategy(ap->a_bp);
2050     AFS_GUNLOCK();
2051     return error;
2052 }
2053
2054 int
2055 afs_vop_print(ap)
2056      struct VOPPROT(print_args) /* {
2057                                  * struct vnode *a_vp;
2058                                  * } */ *ap;
2059 {
2060     struct vnode *vp = ap->a_vp;
2061     struct vcache *vc = VTOAFS(ap->a_vp);
2062     int s = vc->f.states;
2063     printf("tag %d, fid: %ld.%x.%x.%x, opens %d, writers %d", vp->v_tag,
2064            vc->f.fid.Cell, vc->f.fid.Fid.Volume, vc->f.fid.Fid.Vnode,
2065            vc->f.fid.Fid.Unique, vc->opens, vc->execsOrWriters);
2066     printf("\n  states%s%s%s%s%s", (s & CStatd) ? " statd" : "",
2067            (s & CRO) ? " readonly" : "", (s & CDirty) ? " dirty" : "",
2068            (s & CMAPPED) ? " mapped" : "",
2069            (s & CVFlushed) ? " flush in progress" : "");
2070     if (UBCISVALID(vp)) {
2071         printf("\n  UBC: ");
2072         if (UBCINFOEXISTS(vp)) {
2073             printf("exists, ");
2074             printf("refs %d%s%s", vp->v_ubcinfo->ui_refcount,
2075                    ubc_issetflags(vp, UI_HASOBJREF) ? " HASOBJREF" : "",
2076                    ubc_issetflags(vp, UI_WASMAPPED) ? " WASMAPPED" : "");
2077         } else
2078             printf("does not exist");
2079     }
2080     printf("\n");
2081     return 0;
2082 }
2083
2084 int
2085 afs_vop_islocked(ap)
2086      struct VOPPROT(islocked_args)      /* {
2087                                  * struct vnode *a_vp;
2088                                  * } */ *ap;
2089 {
2090     struct vcache *vc = VTOAFS(ap->a_vp);
2091     return lockstatus(&vc->rwlock);
2092 }
2093
2094 int
2095 afs_vop_cmap(ap)
2096      struct VOPPROT(cmap_args)  /* {
2097                                  * struct vnode *a_vp;
2098                                  * off_t a_foffset;    
2099                                  * size_t a_size;
2100                                  * daddr_t *a_bpn;
2101                                  * size_t *a_run;
2102                                  * void *a_poff;
2103                                  * } */ *ap;
2104 {
2105     *ap->a_bpn = (daddr_t) (ap->a_foffset / DEV_BSIZE);
2106     *ap->a_run = MAX(ap->a_size, AFS_CHUNKSIZE(ap->a_foffset));
2107     return 0;
2108 }
2109 #endif
2110
2111 int
2112 afs_darwin_getnewvnode(struct vcache *avc, int recycle)
2113 {
2114 #ifdef AFS_DARWIN80_ENV
2115     vnode_t vp;
2116     int error, dead;
2117     struct vnode_fsparam par;
2118
2119     memset(&par, 0, sizeof(struct vnode_fsparam));
2120     par.vnfs_vtype = VNON;
2121     par.vnfs_vops = afs_dead_vnodeop_p;
2122     par.vnfs_flags = VNFS_NOCACHE|VNFS_CANTCACHE;
2123     par.vnfs_mp = afs_globalVFS;
2124     par.vnfs_fsnode = avc;
2125
2126     error = vnode_create(VNCREATE_FLAVOR, VCREATESIZE, &par, &vp);
2127     if (!error) {
2128       vnode_addfsref(vp);
2129       vnode_ref(vp);
2130       avc->v = vp;
2131       if (recycle)
2132           vnode_recycle(vp); /* terminate as soon as iocount drops */
2133       avc->f.states |= CDeadVnode;
2134     }
2135     return error;
2136 #else
2137     while (getnewvnode(VT_AFS, afs_globalVFS, afs_vnodeop_p, &avc->v)) {
2138         /* no vnodes available, force an alloc (limits be damned)! */
2139         printf("failed to get vnode\n");
2140     }
2141     avc->v->v_data = (void *)avc;
2142     return 0;
2143 #endif
2144 }
2145 #ifdef AFS_DARWIN80_ENV
2146 /* if this fails, then tvc has been unrefed and may have been freed. 
2147    Don't touch! */
2148 int 
2149 afs_darwin_finalizevnode(struct vcache *avc, struct vnode *dvp, struct componentname *cnp, int isroot, int locked)
2150 {
2151     vnode_t ovp;
2152     vnode_t nvp;
2153     int error;
2154     struct vnode_fsparam par;
2155     if (!locked) {
2156         AFS_GLOCK();
2157         ObtainWriteLock(&avc->lock,325);
2158     }
2159     ovp = AFSTOV(avc);
2160     if (!(avc->f.states & CDeadVnode) && vnode_vtype(ovp) != VNON) {
2161         AFS_GUNLOCK();
2162 #if 0 /* unsupported */
2163         if (dvp && cnp)
2164             vnode_update_identity(ovp, dvp, cnp->cn_nameptr, cnp->cn_namelen,
2165                                   cnp->cn_hash,
2166                                   VNODE_UPDATE_PARENT|VNODE_UPDATE_NAME);
2167 #endif
2168         /* Can end up in reclaim... drop GLOCK */
2169         vnode_rele(ovp);
2170         AFS_GLOCK();
2171         if (!locked) {
2172             ReleaseWriteLock(&avc->lock);
2173             AFS_GUNLOCK();
2174         }
2175         return 0;
2176     }
2177     if ((avc->f.states & CDeadVnode) && vnode_vtype(ovp) != VNON)
2178         panic("vcache %p should not be CDeadVnode", avc);
2179     AFS_GUNLOCK();
2180     memset(&par, 0, sizeof(struct vnode_fsparam));
2181     par.vnfs_mp = afs_globalVFS;
2182     par.vnfs_vtype = avc->f.m.Type;
2183     par.vnfs_vops = afs_vnodeop_p;
2184     par.vnfs_filesize = avc->f.m.Length;
2185     par.vnfs_fsnode = avc;
2186     par.vnfs_dvp = dvp;
2187     if (cnp && (cnp->cn_flags & ISDOTDOT) == 0)
2188         par.vnfs_cnp = cnp;
2189     if (!dvp || !cnp || (cnp->cn_flags & MAKEENTRY) == 0)
2190         par.vnfs_flags = VNFS_NOCACHE;
2191     if (isroot)
2192         par.vnfs_markroot = 1;
2193     error = vnode_create(VNCREATE_FLAVOR, VCREATESIZE, &par, &nvp);
2194     if (!error) {
2195         vnode_addfsref(nvp);
2196         if ((avc->f.states & CDeadVnode) && vnode_vtype(ovp) != VNON)
2197             printf("vcache %p should not be CDeadVnode", avc);
2198         if (avc->v == ovp) {
2199             if (avc->f.states & CBulkFetching) {
2200                 vnode_recycle(ovp);
2201             }
2202             if (!(avc->f.states & CVInit)) {
2203                 vnode_clearfsnode(ovp);
2204                 vnode_removefsref(ovp);
2205             }
2206         }
2207         avc->v = nvp;
2208         avc->f.states &=~ CDeadVnode;
2209         /* If we were carrying an extra ref for dirty, hold/push it. */
2210         if (avc->f.ddirty_flags) {
2211             vnode_get(nvp);
2212             vnode_ref(nvp);
2213         }
2214         /* If we were carrying an extra ref for shadow, hold/push it. */
2215         if (avc->f.shadow.vnode) {
2216             vnode_get(nvp);
2217             vnode_ref(nvp);
2218         }
2219     }
2220     /* Drop any extra dirty ref on the old vnode */
2221     if (avc->f.ddirty_flags) {
2222         vnode_put(ovp);
2223         vnode_rele(ovp);
2224     }
2225     /* Drop any extra shadow ref on the old vnode */
2226     if (avc->f.shadow.vnode) {
2227         vnode_put(ovp);
2228         vnode_rele(ovp);
2229     }
2230     vnode_put(ovp);
2231     vnode_rele(ovp);
2232     AFS_GLOCK();
2233     if (!locked)
2234         ReleaseWriteLock(&avc->lock);
2235     if (!error)
2236         afs_osi_Wakeup(&avc->f.states);
2237     if (!locked)
2238         AFS_GUNLOCK();
2239     return error;
2240 }
2241 #endif