unix disconnected mode always
[openafs.git] / src / afs / FBSD / osi_vnodeops.c
1 /*
2  * A large chunk of this file appears to be copied directly from
3  * sys/nfsclient/nfs_bio.c, which has the following license:
4  */
5 /*
6  * Copyright (c) 1989, 1993
7  *      The Regents of the University of California.  All rights reserved.
8  *
9  * This code is derived from software contributed to Berkeley by
10  * Rick Macklem at The University of Guelph.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *      This product includes software developed by the University of
23  *      California, Berkeley and its contributors.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  *      @(#)nfs_bio.c   8.9 (Berkeley) 3/30/95
41  */
42 /*
43  * Pursuant to a statement of U.C. Berkeley dated 1999-07-22, this license
44  * is amended to drop clause (3) above.
45  */
46
47 #include <afsconfig.h>
48 #include <afs/param.h>
49
50
51 #include <afs/sysincludes.h>    /* Standard vendor system headers */
52 #include <afsincludes.h>        /* Afs-based standard headers */
53 #include <afs/afs_stats.h>      /* statistics */
54 #include <sys/malloc.h>
55 #include <sys/namei.h>
56 #include <sys/unistd.h>
57 #include <vm/vm_page.h>
58 #include <vm/vm_object.h>
59 #include <vm/vm_pager.h>
60 #include <vm/vnode_pager.h>
61 extern int afs_pbuf_freecnt;
62
63 #ifdef AFS_FBSD60_ENV
64 static vop_access_t     afs_vop_access;
65 static vop_advlock_t    afs_vop_advlock;
66 static vop_close_t      afs_vop_close;
67 static vop_create_t     afs_vop_create;
68 static vop_fsync_t      afs_vop_fsync;
69 static vop_getattr_t    afs_vop_getattr;
70 static vop_getpages_t   afs_vop_getpages;
71 static vop_inactive_t   afs_vop_inactive;
72 static vop_ioctl_t      afs_vop_ioctl;
73 static vop_link_t       afs_vop_link;
74 static vop_lookup_t     afs_vop_lookup;
75 static vop_mkdir_t      afs_vop_mkdir;
76 static vop_mknod_t      afs_vop_mknod;
77 static vop_open_t       afs_vop_open;
78 static vop_pathconf_t   afs_vop_pathconf;
79 static vop_poll_t       afs_vop_poll;
80 static vop_print_t      afs_vop_print;
81 static vop_putpages_t   afs_vop_putpages;
82 static vop_read_t       afs_vop_read;
83 static vop_readdir_t    afs_vop_readdir;
84 static vop_readlink_t   afs_vop_readlink;
85 static vop_reclaim_t    afs_vop_reclaim;
86 static vop_remove_t     afs_vop_remove;
87 static vop_rename_t     afs_vop_rename;
88 static vop_rmdir_t      afs_vop_rmdir;
89 static vop_setattr_t    afs_vop_setattr;
90 static vop_strategy_t   afs_vop_strategy;
91 static vop_symlink_t    afs_vop_symlink;
92 static vop_write_t      afs_vop_write;
93 #if defined(AFS_FBSD70_ENV) && !defined(AFS_FBSD80_ENV)
94 static vop_lock1_t      afs_vop_lock;
95 static vop_unlock_t     afs_vop_unlock;
96 static vop_islocked_t   afs_vop_islocked;
97 #endif
98
99 struct vop_vector afs_vnodeops = {
100         .vop_default =          &default_vnodeops,
101         .vop_access =           afs_vop_access,
102         .vop_advlock =          afs_vop_advlock,
103         .vop_close =            afs_vop_close,
104         .vop_create =           afs_vop_create,
105         .vop_fsync =            afs_vop_fsync,
106         .vop_getattr =          afs_vop_getattr,
107         .vop_getpages =         afs_vop_getpages,
108         .vop_inactive =         afs_vop_inactive,
109         .vop_ioctl =            afs_vop_ioctl,
110 #if !defined(AFS_FBSD80_ENV)
111         /* removed at least temporarily (NFSv4 flux) */
112         .vop_lease =            VOP_NULL,
113 #endif
114         .vop_link =             afs_vop_link,
115         .vop_lookup =           afs_vop_lookup,
116         .vop_mkdir =            afs_vop_mkdir,
117         .vop_mknod =            afs_vop_mknod,
118         .vop_open =             afs_vop_open,
119         .vop_pathconf =         afs_vop_pathconf,
120         .vop_poll =             afs_vop_poll,
121         .vop_print =            afs_vop_print,
122         .vop_putpages =         afs_vop_putpages,
123         .vop_read =             afs_vop_read,
124         .vop_readdir =          afs_vop_readdir,
125         .vop_readlink =         afs_vop_readlink,
126         .vop_reclaim =          afs_vop_reclaim,
127         .vop_remove =           afs_vop_remove,
128         .vop_rename =           afs_vop_rename,
129         .vop_rmdir =            afs_vop_rmdir,
130         .vop_setattr =          afs_vop_setattr,
131         .vop_strategy =         afs_vop_strategy,
132         .vop_symlink =          afs_vop_symlink,
133         .vop_write =            afs_vop_write,
134 #if defined(AFS_FBSD70_ENV) && !defined(AFS_FBSD80_ENV)
135         .vop_lock1 =            afs_vop_lock,
136         .vop_unlock =           afs_vop_unlock,
137         .vop_islocked =         afs_vop_islocked,
138 #endif
139 };
140
141 #else /* AFS_FBSD60_ENV */
142
143 int afs_vop_lookup(struct vop_lookup_args *);
144 int afs_vop_create(struct vop_create_args *);
145 int afs_vop_mknod(struct vop_mknod_args *);
146 int afs_vop_open(struct vop_open_args *);
147 int afs_vop_close(struct vop_close_args *);
148 int afs_vop_access(struct vop_access_args *);
149 int afs_vop_getattr(struct vop_getattr_args *);
150 int afs_vop_setattr(struct vop_setattr_args *);
151 int afs_vop_read(struct vop_read_args *);
152 int afs_vop_write(struct vop_write_args *);
153 int afs_vop_getpages(struct vop_getpages_args *);
154 int afs_vop_putpages(struct vop_putpages_args *);
155 int afs_vop_ioctl(struct vop_ioctl_args *);
156 static int afs_vop_pathconf(struct vop_pathconf_args *);
157 int afs_vop_poll(struct vop_poll_args *);
158 int afs_vop_fsync(struct vop_fsync_args *);
159 int afs_vop_remove(struct vop_remove_args *);
160 int afs_vop_link(struct vop_link_args *);
161 int afs_vop_rename(struct vop_rename_args *);
162 int afs_vop_mkdir(struct vop_mkdir_args *);
163 int afs_vop_rmdir(struct vop_rmdir_args *);
164 int afs_vop_symlink(struct vop_symlink_args *);
165 int afs_vop_readdir(struct vop_readdir_args *);
166 int afs_vop_readlink(struct vop_readlink_args *);
167 int afs_vop_inactive(struct vop_inactive_args *);
168 int afs_vop_reclaim(struct vop_reclaim_args *);
169 int afs_vop_bmap(struct vop_bmap_args *);
170 int afs_vop_strategy(struct vop_strategy_args *);
171 int afs_vop_print(struct vop_print_args *);
172 int afs_vop_advlock(struct vop_advlock_args *);
173
174
175
176 /* Global vfs data structures for AFS. */
177 vop_t **afs_vnodeop_p;
178 struct vnodeopv_entry_desc afs_vnodeop_entries[] = {
179     {&vop_default_desc, (vop_t *) vop_defaultop},
180     {&vop_access_desc, (vop_t *) afs_vop_access},       /* access */
181     {&vop_advlock_desc, (vop_t *) afs_vop_advlock},     /* advlock */
182     {&vop_bmap_desc, (vop_t *) afs_vop_bmap},   /* bmap */
183     {&vop_close_desc, (vop_t *) afs_vop_close}, /* close */
184     {&vop_createvobject_desc, (vop_t *) vop_stdcreatevobject},
185     {&vop_destroyvobject_desc, (vop_t *) vop_stddestroyvobject},
186     {&vop_create_desc, (vop_t *) afs_vop_create},       /* create */
187     {&vop_fsync_desc, (vop_t *) afs_vop_fsync}, /* fsync */
188     {&vop_getattr_desc, (vop_t *) afs_vop_getattr},     /* getattr */
189     {&vop_getpages_desc, (vop_t *) afs_vop_getpages},   /* read */
190     {&vop_getvobject_desc, (vop_t *) vop_stdgetvobject},
191     {&vop_putpages_desc, (vop_t *) afs_vop_putpages},   /* write */
192     {&vop_inactive_desc, (vop_t *) afs_vop_inactive},   /* inactive */
193     {&vop_lease_desc, (vop_t *) vop_null},
194     {&vop_link_desc, (vop_t *) afs_vop_link},   /* link */
195     {&vop_lookup_desc, (vop_t *) afs_vop_lookup},       /* lookup */
196     {&vop_mkdir_desc, (vop_t *) afs_vop_mkdir}, /* mkdir */
197     {&vop_mknod_desc, (vop_t *) afs_vop_mknod}, /* mknod */
198     {&vop_open_desc, (vop_t *) afs_vop_open},   /* open */
199     {&vop_pathconf_desc, (vop_t *) afs_vop_pathconf},   /* pathconf */
200     {&vop_poll_desc, (vop_t *) afs_vop_poll},   /* select */
201     {&vop_print_desc, (vop_t *) afs_vop_print}, /* print */
202     {&vop_read_desc, (vop_t *) afs_vop_read},   /* read */
203     {&vop_readdir_desc, (vop_t *) afs_vop_readdir},     /* readdir */
204     {&vop_readlink_desc, (vop_t *) afs_vop_readlink},   /* readlink */
205     {&vop_reclaim_desc, (vop_t *) afs_vop_reclaim},     /* reclaim */
206     {&vop_remove_desc, (vop_t *) afs_vop_remove},       /* remove */
207     {&vop_rename_desc, (vop_t *) afs_vop_rename},       /* rename */
208     {&vop_rmdir_desc, (vop_t *) afs_vop_rmdir}, /* rmdir */
209     {&vop_setattr_desc, (vop_t *) afs_vop_setattr},     /* setattr */
210     {&vop_strategy_desc, (vop_t *) afs_vop_strategy},   /* strategy */
211     {&vop_symlink_desc, (vop_t *) afs_vop_symlink},     /* symlink */
212     {&vop_write_desc, (vop_t *) afs_vop_write}, /* write */
213     {&vop_ioctl_desc, (vop_t *) afs_vop_ioctl}, /* XXX ioctl */
214     /*{ &vop_seek_desc, afs_vop_seek }, *//* seek */
215 #if defined(AFS_FBSD70_ENV) && !defined(AFS_FBSD90_ENV)
216     {&vop_lock1_desc, (vop_t *) afs_vop_lock}, /* lock */
217     {&vop_unlock_desc, (vop_t *) afs_vop_unlock}, /* unlock */
218     {&vop_islocked_desc, (vop_t *) afs_vop_islocked}, /* islocked */
219 #endif
220     {NULL, NULL}
221 };
222 struct vnodeopv_desc afs_vnodeop_opv_desc =
223     { &afs_vnodeop_p, afs_vnodeop_entries };
224 #endif /* AFS_FBSD60_ENV */
225
226 #define GETNAME()       \
227     struct componentname *cnp = ap->a_cnp; \
228     char *name; \
229     MALLOC(name, char *, cnp->cn_namelen+1, M_TEMP, M_WAITOK); \
230     memcpy(name, cnp->cn_nameptr, cnp->cn_namelen); \
231     name[cnp->cn_namelen] = '\0'
232
233 #define DROPNAME() FREE(name, M_TEMP)
234
235 /*
236  * Here we define compatibility functions/macros for interfaces that
237  * have changed between different FreeBSD versions.
238  */
239 #if defined(AFS_FBSD90_ENV)
240 static __inline void ma_vm_page_lock_queues(void) {};
241 static __inline void ma_vm_page_unlock_queues(void) {};
242 static __inline void ma_vm_page_lock(vm_page_t m) { vm_page_lock(m); };
243 static __inline void ma_vm_page_unlock(vm_page_t m) { vm_page_unlock(m); };
244 #else
245 static __inline void ma_vm_page_lock_queues(void) { vm_page_lock_queues(); };
246 static __inline void ma_vm_page_unlock_queues(void) { vm_page_unlock_queues(); };
247 static __inline void ma_vm_page_lock(vm_page_t m) {};
248 static __inline void ma_vm_page_unlock(vm_page_t m) {};
249 #endif
250
251 #if defined(AFS_FBSD80_ENV)
252 #define ma_vn_lock(vp, flags, p) (vn_lock(vp, flags))
253 #define MA_VOP_LOCK(vp, flags, p) (VOP_LOCK(vp, flags))
254 #define MA_VOP_UNLOCK(vp, flags, p) (VOP_UNLOCK(vp, flags))
255 #else
256 #define ma_vn_lock(vp, flags, p) (vn_lock(vp, flags, p))
257 #define MA_VOP_LOCK(vp, flags, p) (VOP_LOCK(vp, flags, p))
258 #define MA_VOP_UNLOCK(vp, flags, p) (VOP_UNLOCK(vp, flags, p))
259 #endif
260
261 #if defined(AFS_FBSD70_ENV)
262 #define MA_PCPU_INC(c) PCPU_INC(c)
263 #define MA_PCPU_ADD(c, n) PCPU_ADD(c, n)
264 #else
265 #define MA_PCPU_INC(c) PCPU_LAZY_INC(c)
266 #define MA_PCPU_ADD(c, n) (c) += (n)
267 #endif
268
269 #ifdef AFS_FBSD70_ENV
270 #ifndef AFS_FBSD80_ENV
271 /* From kern_lock.c */
272 #define COUNT(td, x)    if ((td)) (td)->td_locks += (x)
273 #define LK_ALL (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | \
274         LK_SHARE_NONZERO | LK_WAIT_NONZERO)
275
276 static __inline void
277 sharelock(struct thread *td, struct lock *lkp, int incr) {
278         lkp->lk_flags |= LK_SHARE_NONZERO;
279         lkp->lk_sharecount += incr;
280         COUNT(td, incr);
281 }
282 #endif
283
284 /*
285  * Standard lock, unlock and islocked functions.
286  */
287 int
288 afs_vop_lock(ap)
289     struct vop_lock1_args /* {
290                              struct vnode *a_vp;
291                              int a_flags;
292                              struct thread *a_td;
293                              char *file;
294                              int line;
295                              } */ *ap;
296 {
297     struct vnode *vp = ap->a_vp;
298     struct lock *lkp = vp->v_vnlock;
299
300 #if 0 && defined(AFS_FBSD80_ENV) && !defined(UKERNEL)
301     afs_warn("afs_vop_lock: tid %d pid %d \"%s\"\n", curthread->td_tid,
302              curthread->td_proc->p_pid, curthread->td_name);
303     kdb_backtrace();
304 #endif
305
306 #ifdef AFS_FBSD80_ENV
307     return (_lockmgr_args(lkp, ap->a_flags, VI_MTX(vp),
308                           LK_WMESG_DEFAULT, LK_PRIO_DEFAULT, LK_TIMO_DEFAULT,
309                           ap->a_file, ap->a_line));
310 #else
311     return (_lockmgr(lkp, ap->a_flags, VI_MTX(vp), ap->a_td, ap->a_file, ap->a_line));
312 #endif
313 }
314
315 /* See above. */
316 int
317 afs_vop_unlock(ap)
318     struct vop_unlock_args /* {
319                               struct vnode *a_vp;
320                               int a_flags;
321                               struct thread *a_td;
322                               } */ *ap;
323 {
324     struct vnode *vp = ap->a_vp;
325     struct lock *lkp = vp->v_vnlock;
326
327 #ifdef AFS_FBSD80_ENV
328     int code = 0;
329     u_int op;
330     op = ((ap->a_flags) | LK_RELEASE) & LK_TYPE_MASK;
331     int glocked = ISAFS_GLOCK();
332     if (glocked)
333         AFS_GUNLOCK();
334     if ((op & (op - 1)) != 0) {
335       afs_warn("afs_vop_unlock: Shit.\n");
336       goto done;
337     }
338     code = lockmgr(lkp, ap->a_flags | LK_RELEASE, VI_MTX(vp));
339  done:
340     if (glocked)
341         AFS_GLOCK();
342     return(code);
343 #else
344     /* possibly in current code path where this
345      * forces trace, we should have had a (shared? not
346      * necessarily, see _lockmgr in kern_lock.c) lock
347      * and that's the real bug.  but. 
348      */
349     critical_enter();
350     if ((lkp->lk_exclusivecount == 0) &&
351         (!(lkp->lk_flags & LK_SHARE_NONZERO))) {
352         sharelock(ap->a_td, lkp, 1);
353     }
354     critical_exit();
355     return (lockmgr(lkp, ap->a_flags | LK_RELEASE, VI_MTX(vp),
356                     ap->a_td));
357 #endif
358 }
359
360 /* See above. */
361 int
362 afs_vop_islocked(ap)
363     struct vop_islocked_args /* {
364                                 struct vnode *a_vp;
365                                 struct thread *a_td; (not in 80)
366                                 } */ *ap;
367 {
368 #ifdef AFS_FBSD80_ENV
369     return (lockstatus(ap->a_vp->v_vnlock));
370 #else
371     return (lockstatus(ap->a_vp->v_vnlock, ap->a_td));
372 #endif
373 }
374 #endif /* 70 */
375
376 /*
377  * Mosty copied from sys/ufs/ufs/ufs_vnops.c:ufs_pathconf().
378  * We should know the correct answers to these questions with
379  * respect to the AFS protocol (which may differ from the UFS
380  * values) but for the moment this will do.
381  */
382 static int
383 afs_vop_pathconf(struct vop_pathconf_args *ap)
384 {
385         int error;
386
387         error = 0;
388         switch (ap->a_name) {
389         case _PC_LINK_MAX:
390                 *ap->a_retval = LINK_MAX;
391                 break;
392         case _PC_NAME_MAX:
393                 *ap->a_retval = NAME_MAX;
394                 break;
395         case _PC_PATH_MAX:
396                 *ap->a_retval = PATH_MAX;
397                 break;
398         case _PC_PIPE_BUF:
399                 *ap->a_retval = PIPE_BUF;
400                 break;
401         case _PC_CHOWN_RESTRICTED:
402                 *ap->a_retval = 1;
403                 break;
404         case _PC_NO_TRUNC:
405                 *ap->a_retval = 1;
406                 break;
407 #ifdef _PC_ACL_EXTENDED
408         case _PC_ACL_EXTENDED:
409                 *ap->a_retval = 0;
410                 break;
411         case _PC_ACL_PATH_MAX:
412                 *ap->a_retval = 3;
413                 break;
414 #endif
415 #ifdef _PC_MAC_PRESENT
416         case _PC_MAC_PRESENT:
417                 *ap->a_retval = 0;
418                 break;
419 #endif
420 #ifdef _PC_ASYNC_IO
421         case _PC_ASYNC_IO:
422                 /* _PC_ASYNC_IO should have been handled by upper layers. */
423                 KASSERT(0, ("_PC_ASYNC_IO should not get here"));
424                 error = EINVAL;
425                 break;
426         case _PC_PRIO_IO:
427                 *ap->a_retval = 0;
428                 break;
429         case _PC_SYNC_IO:
430                 *ap->a_retval = 0;
431                 break;
432 #endif
433 #ifdef _PC_ALLOC_SIZE_MIN
434         case _PC_ALLOC_SIZE_MIN:
435                 *ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_bsize;
436                 break;
437 #endif
438 #ifdef _PC_FILESIZEBITS
439         case _PC_FILESIZEBITS:
440                 *ap->a_retval = 32; /* XXX */
441                 break;
442 #endif
443 #ifdef _PC_REC_INCR_XFER_SIZE
444         case _PC_REC_INCR_XFER_SIZE:
445                 *ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_iosize;
446                 break;
447         case _PC_REC_MAX_XFER_SIZE:
448                 *ap->a_retval = -1; /* means ``unlimited'' */
449                 break;
450         case _PC_REC_MIN_XFER_SIZE:
451                 *ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_iosize;
452                 break;
453         case _PC_REC_XFER_ALIGN:
454                 *ap->a_retval = PAGE_SIZE;
455                 break;
456 #endif
457 #ifdef _PC_SYMLINK_MAX
458         case _PC_SYMLINK_MAX:
459                 *ap->a_retval = MAXPATHLEN;
460                 break;
461 #endif
462         default:
463                 error = EINVAL;
464                 break;
465         }
466         return (error);
467 }
468
469 int
470 afs_vop_lookup(ap)
471      struct vop_lookup_args     /* {
472                                  * struct vnodeop_desc * a_desc;
473                                  * struct vnode *a_dvp;
474                                  * struct vnode **a_vpp;
475                                  * struct componentname *a_cnp;
476                                  * } */ *ap;
477 {
478     int error;
479     struct vcache *vcp;
480     struct vnode *vp, *dvp;
481     register int flags = ap->a_cnp->cn_flags;
482     int lockparent;             /* 1 => lockparent flag is set */
483     int wantparent;             /* 1 => wantparent or lockparent flag */
484     struct thread *p = ap->a_cnp->cn_thread;
485
486     dvp = ap->a_dvp;
487     if (dvp->v_type != VDIR) {
488 #ifndef AFS_FBSD70_ENV
489         *ap->a_vpp = 0;
490 #endif
491         return ENOTDIR;
492     }
493
494     if ((flags & ISDOTDOT) && (dvp->v_vflag & VV_ROOT))
495         return EIO;
496
497     GETNAME();
498
499     lockparent = flags & LOCKPARENT;
500     wantparent = flags & (LOCKPARENT | WANTPARENT);
501
502 #ifdef AFS_FBSD80_ENV
503     cnp->cn_flags |= MPSAFE; /* steel */
504 #endif
505
506 #ifndef AFS_FBSD70_ENV
507     if (flags & ISDOTDOT)
508         VOP_UNLOCK(dvp, 0, p);
509 #endif
510
511     AFS_GLOCK();
512     error = afs_lookup(VTOAFS(dvp), name, &vcp, cnp->cn_cred);
513     AFS_GUNLOCK();
514
515     if (error) {
516         if (flags & ISDOTDOT)
517             MA_VOP_LOCK(dvp, LK_EXCLUSIVE | LK_RETRY, p);
518         if ((cnp->cn_nameiop == CREATE || cnp->cn_nameiop == RENAME)
519             && (flags & ISLASTCN) && error == ENOENT)
520             error = EJUSTRETURN;
521         if (cnp->cn_nameiop != LOOKUP && (flags & ISLASTCN))
522             cnp->cn_flags |= SAVENAME;
523         DROPNAME();
524         *ap->a_vpp = 0;
525         return (error);
526     }
527     vp = AFSTOV(vcp);           /* always get a node if no error */
528
529     /* The parent directory comes in locked.  We unlock it on return
530      * unless the caller wants it left locked.
531      * we also always return the vnode locked. */
532
533     if (flags & ISDOTDOT) {
534         ma_vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
535         /* always return the child locked */
536         if (lockparent && (flags & ISLASTCN)
537             && (error = ma_vn_lock(dvp, LK_EXCLUSIVE, p))) {
538             vput(vp);
539             DROPNAME();
540             return (error);
541         }
542     } else if (vp == dvp) {
543         /* they're the same; afs_lookup() already ref'ed the leaf.
544          * It came in locked, so we don't need to ref OR lock it */
545     } else {
546         if (!lockparent || !(flags & ISLASTCN)) {
547 #ifndef AFS_FBSD70_ENV /* 6 too? */
548             MA_VOP_UNLOCK(dvp, 0, p);   /* done with parent. */
549 #endif
550         }
551         ma_vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
552         /* always return the child locked */
553     }
554     *ap->a_vpp = vp;
555
556     if ((cnp->cn_nameiop == RENAME && wantparent && (flags & ISLASTCN))
557         || (cnp->cn_nameiop != LOOKUP && (flags & ISLASTCN)))
558         cnp->cn_flags |= SAVENAME;
559
560     DROPNAME();
561     return error;
562 }
563
564 int
565 afs_vop_create(ap)
566      struct vop_create_args     /* {
567                                  * struct vnode *a_dvp;
568                                  * struct vnode **a_vpp;
569                                  * struct componentname *a_cnp;
570                                  * struct vattr *a_vap;
571                                  * } */ *ap;
572 {
573     int error = 0;
574     struct vcache *vcp;
575     register struct vnode *dvp = ap->a_dvp;
576     struct thread *p = ap->a_cnp->cn_thread;
577     GETNAME();
578
579     AFS_GLOCK();
580     error =
581         afs_create(VTOAFS(dvp), name, ap->a_vap,
582                    ap->a_vap->va_vaflags & VA_EXCLUSIVE ? EXCL : NONEXCL,
583                    ap->a_vap->va_mode, &vcp, cnp->cn_cred);
584     AFS_GUNLOCK();
585     if (error) {
586         DROPNAME();
587         return (error);
588     }
589
590     if (vcp) {
591         *ap->a_vpp = AFSTOV(vcp);
592         ma_vn_lock(AFSTOV(vcp), LK_EXCLUSIVE | LK_RETRY, p);
593     } else
594         *ap->a_vpp = 0;
595
596     DROPNAME();
597     return error;
598 }
599
600 int
601 afs_vop_mknod(ap)
602      struct vop_mknod_args      /* {
603                                  * struct vnode *a_dvp;
604                                  * struct vnode **a_vpp;
605                                  * struct componentname *a_cnp;
606                                  * struct vattr *a_vap;
607                                  * } */ *ap;
608 {
609     return (ENODEV);
610 }
611
612 #if 0
613 static int
614 validate_vops(struct vnode *vp, int after)
615 {
616     int ret = 0;
617     struct vnodeopv_entry_desc *this;
618     for (this = afs_vnodeop_entries; this->opve_op; this++) {
619         if (vp->v_op[this->opve_op->vdesc_offset] != this->opve_impl) {
620             if (!ret) {
621                 printf("v_op %d ", after);
622                 vprint("check", vp);
623             }
624             ret = 1;
625             printf("For oper %d (%s), func is %p, not %p",
626                    this->opve_op->vdesc_offset, this->opve_op->vdesc_name,
627                    vp->v_op[this->opve_op->vdesc_offset], this->opve_impl);
628         }
629     }
630     return ret;
631 }
632 #endif
633 int
634 afs_vop_open(ap)
635      struct vop_open_args       /* {
636                                  * struct vnode *a_vp;
637                                  * int  a_mode;
638                                  * struct ucred *a_cred;
639                                  * struct thread *a_td;
640                                  * struct file *a_fp;
641                                  * } */ *ap;
642 {
643     int error;
644     struct vcache *vc = VTOAFS(ap->a_vp);
645
646     AFS_GLOCK();
647     error = afs_open(&vc, ap->a_mode, ap->a_cred);
648 #ifdef DIAGNOSTIC
649     if (AFSTOV(vc) != ap->a_vp)
650         panic("AFS open changed vnode!");
651 #endif
652     AFS_GUNLOCK();
653 #ifdef AFS_FBSD60_ENV
654     vnode_create_vobject(ap->a_vp, vc->f.m.Length, ap->a_td);
655 #endif
656     osi_FlushPages(vc, ap->a_cred);
657     return error;
658 }
659
660 int
661 afs_vop_close(ap)
662      struct vop_close_args      /* {
663                                  * struct vnode *a_vp;
664                                  * int  a_fflag;
665                                  * struct ucred *a_cred;
666                                  * struct thread *a_td;
667                                  * } */ *ap;
668 {
669     int code;
670     struct vcache *avc = VTOAFS(ap->a_vp);
671     AFS_GLOCK();
672     if (ap->a_cred)
673         code = afs_close(avc, ap->a_fflag, ap->a_cred);
674     else
675         code = afs_close(avc, ap->a_fflag, afs_osi_credp);
676     osi_FlushPages(avc, ap->a_cred);    /* hold bozon lock, but not basic vnode lock */
677     AFS_GUNLOCK();
678     return code;
679 }
680
681 int
682 afs_vop_access(ap)
683      struct vop_access_args     /* {
684                                  * struct vnode *a_vp;
685                                  * accmode_t a_accmode;
686                                  * struct ucred *a_cred;
687                                  * struct thread *a_td;
688                                  * } */ *ap;
689 {
690     int code;
691     AFS_GLOCK();
692 #if defined(AFS_FBSD80_ENV)
693     code = afs_access(VTOAFS(ap->a_vp), ap->a_accmode, ap->a_cred);
694 #else
695     code = afs_access(VTOAFS(ap->a_vp), ap->a_mode, ap->a_cred);
696 #endif
697     AFS_GUNLOCK();
698     return code;
699 }
700
701 int
702 afs_vop_getattr(ap)
703      struct vop_getattr_args    /* {
704                                  * struct vnode *a_vp;
705                                  * struct vattr *a_vap;
706                                  * struct ucred *a_cred;
707                                  * } */ *ap;
708 {
709     int code;
710     AFS_GLOCK();
711     code = afs_getattr(VTOAFS(ap->a_vp), ap->a_vap, ap->a_cred);
712     AFS_GUNLOCK();
713     return code;
714 }
715
716 int
717 afs_vop_setattr(ap)
718      struct vop_setattr_args    /* {
719                                  * struct vnode *a_vp;
720                                  * struct vattr *a_vap;
721                                  * struct ucred *a_cred;
722                                  * } */ *ap;
723 {
724     int code;
725     AFS_GLOCK();
726     code = afs_setattr(VTOAFS(ap->a_vp), ap->a_vap, ap->a_cred);
727     AFS_GUNLOCK();
728     return code;
729 }
730
731 int
732 afs_vop_read(ap)
733      struct vop_read_args       /* {
734                                  * struct vnode *a_vp;
735                                  * struct uio *a_uio;
736                                  * int a_ioflag;
737                                  * struct ucred *a_cred;
738                                  * 
739                                  * } */ *ap;
740 {
741     int code;
742     struct vcache *avc = VTOAFS(ap->a_vp);
743     AFS_GLOCK();
744     osi_FlushPages(avc, ap->a_cred);    /* hold bozon lock, but not basic vnode lock */
745     code = afs_read(avc, ap->a_uio, ap->a_cred, 0, 0, 0);
746     AFS_GUNLOCK();
747     return code;
748 }
749
750 /* struct vop_getpages_args {
751  *      struct vnode *a_vp;
752  *      vm_page_t *a_m;
753  *      int a_count;
754  *      int a_reqpage;
755  *      vm_oofset_t a_offset;
756  * };
757  */
758 int
759 afs_vop_getpages(struct vop_getpages_args *ap)
760 {
761     int code;
762     int i, nextoff, size, toff, npages;
763     struct uio uio;
764     struct iovec iov;
765     struct buf *bp;
766     vm_offset_t kva;
767     vm_object_t object;
768     struct vnode *vp;
769     struct vcache *avc;
770
771     vp = ap->a_vp;
772     avc = VTOAFS(vp);
773     if ((object = vp->v_object) == NULL) {
774         printf("afs_getpages: called with non-merged cache vnode??\n");
775         return VM_PAGER_ERROR;
776     }
777     npages = btoc(ap->a_count);
778     /*
779      * If the requested page is partially valid, just return it and
780      * allow the pager to zero-out the blanks.  Partially valid pages
781      * can only occur at the file EOF.
782      */
783
784     {
785         vm_page_t m = ap->a_m[ap->a_reqpage];
786
787         VM_OBJECT_LOCK(object);
788         ma_vm_page_lock_queues();
789         if (m->valid != 0) {
790             /* handled by vm_fault now        */
791             /* vm_page_zero_invalid(m, TRUE); */
792             for (i = 0; i < npages; ++i) {
793                 if (i != ap->a_reqpage) {
794                     ma_vm_page_lock(ap->a_m[i]);
795                     vm_page_free(ap->a_m[i]);
796                     ma_vm_page_unlock(ap->a_m[i]);
797                 }
798             }
799             ma_vm_page_unlock_queues();
800             VM_OBJECT_UNLOCK(object);
801             return (0);
802         }
803         ma_vm_page_unlock_queues();
804         VM_OBJECT_UNLOCK(object);
805     }
806     bp = getpbuf(&afs_pbuf_freecnt);
807
808     kva = (vm_offset_t) bp->b_data;
809     pmap_qenter(kva, ap->a_m, npages);
810     MA_PCPU_INC(cnt.v_vnodein);
811     MA_PCPU_ADD(cnt.v_vnodepgsin, npages);
812
813     iov.iov_base = (caddr_t) kva;
814     iov.iov_len = ap->a_count;
815     uio.uio_iov = &iov;
816     uio.uio_iovcnt = 1;
817     uio.uio_offset = IDX_TO_OFF(ap->a_m[0]->pindex);
818     uio.uio_resid = ap->a_count;
819     uio.uio_segflg = UIO_SYSSPACE;
820     uio.uio_rw = UIO_READ;
821     uio.uio_td = curthread;
822
823     AFS_GLOCK();
824     osi_FlushPages(avc, osi_curcred()); /* hold bozon lock, but not basic vnode lock */
825     code = afs_read(avc, &uio, osi_curcred(), 0, 0, 0);
826     AFS_GUNLOCK();
827     pmap_qremove(kva, npages);
828
829     relpbuf(bp, &afs_pbuf_freecnt);
830
831     if (code && (uio.uio_resid == ap->a_count)) {
832         VM_OBJECT_LOCK(object);
833         ma_vm_page_lock_queues();
834         for (i = 0; i < npages; ++i) {
835             if (i != ap->a_reqpage)
836                 vm_page_free(ap->a_m[i]);
837         }
838         ma_vm_page_unlock_queues();
839         VM_OBJECT_UNLOCK(object);
840         return VM_PAGER_ERROR;
841     }
842
843     size = ap->a_count - uio.uio_resid;
844     VM_OBJECT_LOCK(object);
845     ma_vm_page_lock_queues();
846     for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
847         vm_page_t m;
848         nextoff = toff + PAGE_SIZE;
849         m = ap->a_m[i];
850
851         /* XXX not in nfsclient? */
852         m->flags &= ~PG_ZERO;
853
854         if (nextoff <= size) {
855             /*
856              * Read operation filled an entire page
857              */
858             m->valid = VM_PAGE_BITS_ALL;
859 #ifndef AFS_FBSD80_ENV
860             vm_page_undirty(m);
861 #else
862             KASSERT(m->dirty == 0, ("afs_getpages: page %p is dirty", m));
863 #endif
864         } else if (size > toff) {
865             /*
866              * Read operation filled a partial page.
867              */
868             m->valid = 0;
869             vm_page_set_valid(m, 0, size - toff);
870 #ifndef AFS_FBSD80_ENV
871             vm_page_undirty(m);
872 #else
873             KASSERT(m->dirty == 0, ("afs_getpages: page %p is dirty", m));
874 #endif
875         }
876
877         if (i != ap->a_reqpage) {
878             /*
879              * Whether or not to leave the page activated is up in
880              * the air, but we should put the page on a page queue
881              * somewhere (it already is in the object).  Result:
882              * It appears that emperical results show that
883              * deactivating pages is best.
884              */
885
886             /*
887              * Just in case someone was asking for this page we
888              * now tell them that it is ok to use.
889              */
890             if (!code) {
891 #if defined(AFS_FBSD70_ENV)
892                 if (m->oflags & VPO_WANTED) {
893 #else
894                 if (m->flags & PG_WANTED) {
895 #endif
896                     ma_vm_page_lock(m);
897                     vm_page_activate(m);
898                     ma_vm_page_unlock(m);
899                 }
900                 else {
901                     ma_vm_page_lock(m);
902                     vm_page_deactivate(m);
903                     ma_vm_page_unlock(m);
904                 }
905                 vm_page_wakeup(m);
906             } else {
907                 ma_vm_page_lock(m);
908                 vm_page_free(m);
909                 ma_vm_page_unlock(m);
910             }
911         }
912     }
913     ma_vm_page_unlock_queues();
914     VM_OBJECT_UNLOCK(object);
915     return 0;
916 }
917
918 int
919 afs_vop_write(ap)
920      struct vop_write_args      /* {
921                                  * struct vnode *a_vp;
922                                  * struct uio *a_uio;
923                                  * int a_ioflag;
924                                  * struct ucred *a_cred;
925                                  * } */ *ap;
926 {
927     int code;
928     struct vcache *avc = VTOAFS(ap->a_vp);
929     AFS_GLOCK();
930     osi_FlushPages(avc, ap->a_cred);    /* hold bozon lock, but not basic vnode lock */
931     code =
932         afs_write(VTOAFS(ap->a_vp), ap->a_uio, ap->a_ioflag, ap->a_cred, 0);
933     AFS_GUNLOCK();
934     return code;
935 }
936
937 /*-
938  * struct vop_putpages_args {
939  *      struct vnode *a_vp;
940  *      vm_page_t *a_m;
941  *      int a_count;
942  *      int a_sync;
943  *      int *a_rtvals;
944  *      vm_oofset_t a_offset;
945  * };
946  */
947 /*
948  * All of the pages passed to us in ap->a_m[] are already marked as busy,
949  * so there is no additional locking required to set their flags.  -GAW
950  */
951 int
952 afs_vop_putpages(struct vop_putpages_args *ap)
953 {
954     int code;
955     int i, size, npages, sync;
956     struct uio uio;
957     struct iovec iov;
958     struct buf *bp;
959     vm_offset_t kva;
960     struct vnode *vp;
961     struct vcache *avc;
962
963     vp = ap->a_vp;
964     avc = VTOAFS(vp);
965     /* Perhaps these two checks should just be KASSERTs instead... */
966     if (vp->v_object == NULL) {
967         printf("afs_putpages: called with non-merged cache vnode??\n");
968         return VM_PAGER_ERROR;  /* XXX I think this is insufficient */
969     }
970     if (vType(avc) != VREG) {
971         printf("afs_putpages: not VREG");
972         return VM_PAGER_ERROR;  /* XXX I think this is insufficient */
973     }
974     npages = btoc(ap->a_count);
975     for (i = 0; i < npages; i++)
976         ap->a_rtvals[i] = VM_PAGER_AGAIN;
977     bp = getpbuf(&afs_pbuf_freecnt);
978
979     kva = (vm_offset_t) bp->b_data;
980     pmap_qenter(kva, ap->a_m, npages);
981     MA_PCPU_INC(cnt.v_vnodeout);
982     MA_PCPU_ADD(cnt.v_vnodepgsout, ap->a_count);
983
984     iov.iov_base = (caddr_t) kva;
985     iov.iov_len = ap->a_count;
986     uio.uio_iov = &iov;
987     uio.uio_iovcnt = 1;
988     uio.uio_offset = IDX_TO_OFF(ap->a_m[0]->pindex);
989     uio.uio_resid = ap->a_count;
990     uio.uio_segflg = UIO_SYSSPACE;
991     uio.uio_rw = UIO_WRITE;
992     uio.uio_td = curthread;
993     sync = IO_VMIO;
994     if (ap->a_sync & VM_PAGER_PUT_SYNC)
995         sync |= IO_SYNC;
996     /*if (ap->a_sync & VM_PAGER_PUT_INVAL)
997      * sync |= IO_INVAL; */
998
999     AFS_GLOCK();
1000     code = afs_write(avc, &uio, sync, osi_curcred(), 0);
1001     AFS_GUNLOCK();
1002
1003     pmap_qremove(kva, npages);
1004     relpbuf(bp, &afs_pbuf_freecnt);
1005
1006     if (!code) {
1007         size = ap->a_count - uio.uio_resid;
1008         for (i = 0; i < round_page(size) / PAGE_SIZE; i++) {
1009             ap->a_rtvals[i] = VM_PAGER_OK;
1010             vm_page_undirty(ap->a_m[i]);
1011         }
1012     }
1013     return ap->a_rtvals[0];
1014 }
1015
1016 int
1017 afs_vop_ioctl(ap)
1018      struct vop_ioctl_args      /* {
1019                                  * struct vnode *a_vp;
1020                                  * u_long a_command;
1021                                  * void *a_data;
1022                                  * int  a_fflag;
1023                                  * struct ucred *a_cred;
1024                                  * struct thread *a_td;
1025                                  * } */ *ap;
1026 {
1027     struct vcache *tvc = VTOAFS(ap->a_vp);
1028     int error = 0;
1029
1030     /* in case we ever get in here... */
1031
1032     AFS_STATCNT(afs_ioctl);
1033     if (((ap->a_command >> 8) & 0xff) == 'V') {
1034         /* This is a VICEIOCTL call */
1035         AFS_GLOCK();
1036         error = HandleIoctl(tvc, ap->a_command, ap->a_data);
1037         AFS_GUNLOCK();
1038         return (error);
1039     } else {
1040         /* No-op call; just return. */
1041         return (ENOTTY);
1042     }
1043 }
1044
1045 /* ARGSUSED */
1046 int
1047 afs_vop_poll(ap)
1048      struct vop_poll_args       /* {
1049                                  * struct vnode *a_vp;
1050                                  * int  a_events;
1051                                  * struct ucred *a_cred;
1052                                  * struct thread *td;
1053                                  * } */ *ap;
1054 {
1055     /*
1056      * We should really check to see if I/O is possible.
1057      */
1058     return (1);
1059 }
1060
1061 /*
1062  * Mmap a file
1063  *
1064  * NB Currently unsupported.
1065  */
1066 /* ARGSUSED */
1067 int
1068 afs_vop_mmap(ap)
1069      struct vop_mmap_args       /* {
1070                                  * struct vnode *a_vp;
1071                                  * int  a_fflags;
1072                                  * struct ucred *a_cred;
1073                                  * struct thread *td;
1074                                  * } */ *ap;
1075 {
1076     return (EINVAL);
1077 }
1078
1079 int
1080 afs_vop_fsync(ap)
1081      struct vop_fsync_args      /* {
1082                                  * struct vnode *a_vp;
1083                                  * int a_waitfor;
1084                                  * struct thread *td;
1085                                  * } */ *ap;
1086 {
1087     int error;
1088     register struct vnode *vp = ap->a_vp;
1089
1090     AFS_GLOCK();
1091     /*vflushbuf(vp, wait); */
1092 #ifdef AFS_FBSD60_ENV
1093     error = afs_fsync(VTOAFS(vp), ap->a_td->td_ucred);
1094 #else
1095     if (ap->a_cred)
1096         error = afs_fsync(VTOAFS(vp), ap->a_cred);
1097     else
1098         error = afs_fsync(VTOAFS(vp), afs_osi_credp);
1099 #endif
1100     AFS_GUNLOCK();
1101     return error;
1102 }
1103
1104 int
1105 afs_vop_remove(ap)
1106      struct vop_remove_args     /* {
1107                                  * struct vnode *a_dvp;
1108                                  * struct vnode *a_vp;
1109                                  * struct componentname *a_cnp;
1110                                  * } */ *ap;
1111 {
1112     int error = 0;
1113     register struct vnode *vp = ap->a_vp;
1114     register struct vnode *dvp = ap->a_dvp;
1115
1116     GETNAME();
1117     AFS_GLOCK();
1118     error = afs_remove(VTOAFS(dvp), name, cnp->cn_cred);
1119     AFS_GUNLOCK();
1120     cache_purge(vp);
1121     DROPNAME();
1122     return error;
1123 }
1124
1125 int
1126 afs_vop_link(ap)
1127      struct vop_link_args       /* {
1128                                  * struct vnode *a_vp;
1129                                  * struct vnode *a_tdvp;
1130                                  * struct componentname *a_cnp;
1131                                  * } */ *ap;
1132 {
1133     int error = 0;
1134     register struct vnode *dvp = ap->a_tdvp;
1135     register struct vnode *vp = ap->a_vp;
1136     struct thread *p = ap->a_cnp->cn_thread;
1137
1138     GETNAME();
1139     if (dvp->v_mount != vp->v_mount) {
1140         error = EXDEV;
1141         goto out;
1142     }
1143     if (vp->v_type == VDIR) {
1144         error = EISDIR;
1145         goto out;
1146     }
1147     if ((error = ma_vn_lock(vp, LK_EXCLUSIVE, p)) != 0) {
1148         goto out;
1149     }
1150     AFS_GLOCK();
1151     error = afs_link(VTOAFS(vp), VTOAFS(dvp), name, cnp->cn_cred);
1152     AFS_GUNLOCK();
1153     if (dvp != vp)
1154         MA_VOP_UNLOCK(vp, 0, p);
1155   out:
1156     DROPNAME();
1157     return error;
1158 }
1159
1160 int
1161 afs_vop_rename(ap)
1162      struct vop_rename_args     /* {
1163                                  * struct vnode *a_fdvp;
1164                                  * struct vnode *a_fvp;
1165                                  * struct componentname *a_fcnp;
1166                                  * struct vnode *a_tdvp;
1167                                  * struct vnode *a_tvp;
1168                                  * struct componentname *a_tcnp;
1169                                  * } */ *ap;
1170 {
1171     int error = 0;
1172     struct componentname *fcnp = ap->a_fcnp;
1173     char *fname;
1174     struct componentname *tcnp = ap->a_tcnp;
1175     char *tname;
1176     struct vnode *tvp = ap->a_tvp;
1177     register struct vnode *tdvp = ap->a_tdvp;
1178     struct vnode *fvp = ap->a_fvp;
1179     register struct vnode *fdvp = ap->a_fdvp;
1180     struct thread *p = fcnp->cn_thread;
1181
1182     /*
1183      * Check for cross-device rename.
1184      */
1185     if ((fvp->v_mount != tdvp->v_mount)
1186         || (tvp && (fvp->v_mount != tvp->v_mount))) {
1187         error = EXDEV;
1188       abortit:
1189         if (tdvp == tvp)
1190             vrele(tdvp);
1191         else
1192             vput(tdvp);
1193         if (tvp)
1194             vput(tvp);
1195         vrele(fdvp);
1196         vrele(fvp);
1197         return (error);
1198     }
1199     /*
1200      * if fvp == tvp, we're just removing one name of a pair of
1201      * directory entries for the same element.  convert call into rename.
1202      ( (pinched from FreeBSD 4.4's ufs_rename())
1203      
1204      */
1205     if (fvp == tvp) {
1206         if (fvp->v_type == VDIR) {
1207             error = EINVAL;
1208             goto abortit;
1209         }
1210
1211         /* Release destination completely. */
1212         vput(tdvp);
1213         vput(tvp);
1214
1215         /* Delete source. */
1216         vrele(fdvp);
1217         vrele(fvp);
1218         fcnp->cn_flags &= ~MODMASK;
1219         fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
1220         if ((fcnp->cn_flags & SAVESTART) == 0)
1221             panic("afs_rename: lost from startdir");
1222         fcnp->cn_nameiop = DELETE;
1223         VREF(fdvp);
1224         error = relookup(fdvp, &fvp, fcnp);
1225         if (error == 0)
1226             vrele(fdvp);
1227         if (fvp == NULL) {
1228             return (ENOENT);
1229         }
1230
1231         error = VOP_REMOVE(fdvp, fvp, fcnp);
1232         if (fdvp == fvp)
1233             vrele(fdvp);
1234         else
1235             vput(fdvp);
1236         vput(fvp);
1237         return (error);
1238     }
1239     if ((error = ma_vn_lock(fvp, LK_EXCLUSIVE, p)) != 0)
1240         goto abortit;
1241
1242     MALLOC(fname, char *, fcnp->cn_namelen + 1, M_TEMP, M_WAITOK);
1243     memcpy(fname, fcnp->cn_nameptr, fcnp->cn_namelen);
1244     fname[fcnp->cn_namelen] = '\0';
1245     MALLOC(tname, char *, tcnp->cn_namelen + 1, M_TEMP, M_WAITOK);
1246     memcpy(tname, tcnp->cn_nameptr, tcnp->cn_namelen);
1247     tname[tcnp->cn_namelen] = '\0';
1248
1249
1250     AFS_GLOCK();
1251     /* XXX use "from" or "to" creds? NFS uses "to" creds */
1252     error =
1253         afs_rename(VTOAFS(fdvp), fname, VTOAFS(tdvp), tname, tcnp->cn_cred);
1254     AFS_GUNLOCK();
1255
1256     FREE(fname, M_TEMP);
1257     FREE(tname, M_TEMP);
1258     if (tdvp == tvp)
1259         vrele(tdvp);
1260     else
1261         vput(tdvp);
1262     if (tvp)
1263         vput(tvp);
1264     vrele(fdvp);
1265     vput(fvp);
1266     return error;
1267 }
1268
1269 int
1270 afs_vop_mkdir(ap)
1271      struct vop_mkdir_args      /* {
1272                                  * struct vnode *a_dvp;
1273                                  * struct vnode **a_vpp;
1274                                  * struct componentname *a_cnp;
1275                                  * struct vattr *a_vap;
1276                                  * } */ *ap;
1277 {
1278     register struct vnode *dvp = ap->a_dvp;
1279     register struct vattr *vap = ap->a_vap;
1280     int error = 0;
1281     struct vcache *vcp;
1282     struct thread *p = ap->a_cnp->cn_thread;
1283
1284     GETNAME();
1285 #ifdef DIAGNOSTIC
1286     if ((cnp->cn_flags & HASBUF) == 0)
1287         panic("afs_vop_mkdir: no name");
1288 #endif
1289     AFS_GLOCK();
1290     error = afs_mkdir(VTOAFS(dvp), name, vap, &vcp, cnp->cn_cred);
1291     AFS_GUNLOCK();
1292     if (error) {
1293         DROPNAME();
1294         return (error);
1295     }
1296     if (vcp) {
1297         *ap->a_vpp = AFSTOV(vcp);
1298         ma_vn_lock(AFSTOV(vcp), LK_EXCLUSIVE | LK_RETRY, p);
1299     } else
1300         *ap->a_vpp = 0;
1301     DROPNAME();
1302     return error;
1303 }
1304
1305 int
1306 afs_vop_rmdir(ap)
1307      struct vop_rmdir_args      /* {
1308                                  * struct vnode *a_dvp;
1309                                  * struct vnode *a_vp;
1310                                  * struct componentname *a_cnp;
1311                                  * } */ *ap;
1312 {
1313     int error = 0;
1314     register struct vnode *dvp = ap->a_dvp;
1315
1316     GETNAME();
1317     AFS_GLOCK();
1318     error = afs_rmdir(VTOAFS(dvp), name, cnp->cn_cred);
1319     AFS_GUNLOCK();
1320     DROPNAME();
1321     return error;
1322 }
1323
1324 /* struct vop_symlink_args {
1325  *      struct vnode *a_dvp;
1326  *      struct vnode **a_vpp;
1327  *      struct componentname *a_cnp;
1328  *      struct vattr *a_vap;
1329  *      char *a_target;
1330  * };
1331  */
1332 int
1333 afs_vop_symlink(struct vop_symlink_args *ap)
1334 {
1335     struct vnode *dvp;
1336     struct vnode *newvp;
1337     struct vcache *vcp;
1338     int error;
1339
1340     GETNAME();
1341     AFS_GLOCK();
1342
1343     dvp = ap->a_dvp;
1344     newvp = NULL;
1345
1346     error =
1347         afs_symlink(VTOAFS(dvp), name, ap->a_vap, ap->a_target, cnp->cn_cred);
1348     if (error == 0) {
1349         error = afs_lookup(VTOAFS(dvp), name, &vcp, cnp->cn_cred);
1350         if (error == 0) {
1351             newvp = AFSTOV(vcp);
1352             ma_vn_lock(newvp, LK_EXCLUSIVE | LK_RETRY, cnp->cn_thread);
1353         }
1354     }
1355     AFS_GUNLOCK();
1356     DROPNAME();
1357     *(ap->a_vpp) = newvp;
1358     return error;
1359 }
1360
1361 int
1362 afs_vop_readdir(ap)
1363      struct vop_readdir_args    /* {
1364                                  * struct vnode *a_vp;
1365                                  * struct uio *a_uio;
1366                                  * struct ucred *a_cred;
1367                                  * int *a_eofflag;
1368                                  * u_long *a_cookies;
1369                                  * int ncookies;
1370                                  * } */ *ap;
1371 {
1372     int error;
1373     off_t off;
1374 /*    printf("readdir %x cookies %x ncookies %d\n", ap->a_vp, ap->a_cookies,
1375            ap->a_ncookies); */
1376     off = ap->a_uio->uio_offset;
1377     AFS_GLOCK();
1378     error =
1379         afs_readdir(VTOAFS(ap->a_vp), ap->a_uio, ap->a_cred, ap->a_eofflag);
1380     AFS_GUNLOCK();
1381     if (!error && ap->a_ncookies != NULL) {
1382         struct uio *uio = ap->a_uio;
1383         const struct dirent *dp, *dp_start, *dp_end;
1384         int ncookies;
1385         u_long *cookies, *cookiep;
1386
1387         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
1388             panic("afs_readdir: burned cookies");
1389         dp = (const struct dirent *)
1390             ((const char *)uio->uio_iov->iov_base - (uio->uio_offset - off));
1391
1392         dp_end = (const struct dirent *)uio->uio_iov->iov_base;
1393         for (dp_start = dp, ncookies = 0; dp < dp_end;
1394              dp = (const struct dirent *)((const char *)dp + dp->d_reclen))
1395             ncookies++;
1396
1397         MALLOC(cookies, u_long *, ncookies * sizeof(u_long), M_TEMP,
1398                M_WAITOK);
1399         for (dp = dp_start, cookiep = cookies; dp < dp_end;
1400              dp = (const struct dirent *)((const char *)dp + dp->d_reclen)) {
1401             off += dp->d_reclen;
1402             *cookiep++ = off;
1403         }
1404         *ap->a_cookies = cookies;
1405         *ap->a_ncookies = ncookies;
1406     }
1407
1408     return error;
1409 }
1410
1411 int
1412 afs_vop_readlink(ap)
1413      struct vop_readlink_args   /* {
1414                                  * struct vnode *a_vp;
1415                                  * struct uio *a_uio;
1416                                  * struct ucred *a_cred;
1417                                  * } */ *ap;
1418 {
1419     int error;
1420 /*    printf("readlink %x\n", ap->a_vp);*/
1421     AFS_GLOCK();
1422     error = afs_readlink(VTOAFS(ap->a_vp), ap->a_uio, ap->a_cred);
1423     AFS_GUNLOCK();
1424     return error;
1425 }
1426
1427 extern int prtactive;
1428
1429 int
1430 afs_vop_inactive(ap)
1431      struct vop_inactive_args   /* {
1432                                  * struct vnode *a_vp;
1433                                  * struct thread *td;
1434                                  * } */ *ap;
1435 {
1436     register struct vnode *vp = ap->a_vp;
1437
1438     if (prtactive && vp->v_usecount != 0)
1439         vprint("afs_vop_inactive(): pushing active", vp);
1440
1441     AFS_GLOCK();
1442     afs_InactiveVCache(VTOAFS(vp), 0);  /* decrs ref counts */
1443     AFS_GUNLOCK();
1444 #ifndef AFS_FBSD60_ENV
1445     MA_VOP_UNLOCK(vp, 0, ap->a_td);
1446 #endif
1447     return 0;
1448 }
1449
1450 /*
1451  * struct vop_reclaim_args {
1452  *      struct vnode *a_vp;
1453  * };
1454  */
1455 int
1456 afs_vop_reclaim(struct vop_reclaim_args *ap)
1457 {
1458     /* copied from ../OBSD/osi_vnodeops.c:afs_nbsd_reclaim() */
1459     int code, slept;
1460     struct vnode *vp = ap->a_vp;
1461     struct vcache *avc = VTOAFS(vp);
1462     int haveGlock = ISAFS_GLOCK();
1463     int haveVlock = CheckLock(&afs_xvcache);
1464
1465     if (!haveGlock)
1466         AFS_GLOCK();
1467     if (!haveVlock)
1468         ObtainWriteLock(&afs_xvcache, 901);
1469     /* reclaim the vnode and the in-memory vcache, but keep the on-disk vcache */
1470     code = afs_FlushVS(avc);
1471     if (!haveVlock)
1472         ReleaseWriteLock(&afs_xvcache);
1473     if (!haveGlock)
1474         AFS_GUNLOCK();
1475
1476     /*
1477      * XXX Pretend it worked, to prevent panic on shutdown
1478      * Garrett, please fix - Jim Rees
1479      */
1480     if (code) {
1481         printf("afs_vop_reclaim: afs_FlushVCache failed code %d vnode\n", code);
1482         VOP_PRINT(vp);
1483     }
1484
1485     /* basically, it must not fail */
1486     vnode_destroy_vobject(vp);
1487     vp->v_data = 0;
1488
1489     return 0;
1490 }
1491
1492 #ifndef AFS_FBSD60_ENV
1493 int
1494 afs_vop_bmap(ap)
1495      struct vop_bmap_args       /* {
1496                                  * struct vnode *a_vp;
1497                                  * daddr_t  a_bn;
1498                                  * struct vnode **a_vpp;
1499                                  * daddr_t *a_bnp;
1500                                  * int *a_runp;
1501                                  * int *a_runb;
1502                                  * } */ *ap;
1503 {
1504     if (ap->a_bnp) {
1505         *ap->a_bnp = ap->a_bn * (PAGE_SIZE / DEV_BSIZE);
1506     }
1507     if (ap->a_vpp) {
1508         *ap->a_vpp = ap->a_vp;
1509     }
1510     if (ap->a_runp != NULL)
1511         *ap->a_runp = 0;
1512     if (ap->a_runb != NULL)
1513         *ap->a_runb = 0;
1514
1515     return 0;
1516 }
1517 #endif
1518
1519 int
1520 afs_vop_strategy(ap)
1521      struct vop_strategy_args   /* {
1522                                  * struct buf *a_bp;
1523                                  * } */ *ap;
1524 {
1525     int error;
1526     AFS_GLOCK();
1527     error = afs_ustrategy(ap->a_bp, osi_curcred());
1528     AFS_GUNLOCK();
1529     return error;
1530 }
1531
1532 int
1533 afs_vop_print(ap)
1534      struct vop_print_args      /* {
1535                                  * struct vnode *a_vp;
1536                                  * } */ *ap;
1537 {
1538     register struct vnode *vp = ap->a_vp;
1539     register struct vcache *vc = VTOAFS(ap->a_vp);
1540     int s = vc->f.states;
1541
1542     printf("tag %s, fid: %d.%d.%d.%d, opens %d, writers %d", vp->v_tag,
1543            (int)vc->f.fid.Cell, (u_int) vc->f.fid.Fid.Volume,
1544            (u_int) vc->f.fid.Fid.Vnode, (u_int) vc->f.fid.Fid.Unique, vc->opens,
1545            vc->execsOrWriters);
1546     printf("\n  states%s%s%s%s%s", (s & CStatd) ? " statd" : "",
1547            (s & CRO) ? " readonly" : "", (s & CDirty) ? " dirty" : "",
1548            (s & CMAPPED) ? " mapped" : "",
1549            (s & CVFlushed) ? " flush in progress" : "");
1550     printf("\n");
1551     return 0;
1552 }
1553
1554 /*
1555  * Advisory record locking support (fcntl() POSIX style)
1556  */
1557 int
1558 afs_vop_advlock(ap)
1559      struct vop_advlock_args    /* {
1560                                  * struct vnode *a_vp;
1561                                  * caddr_t  a_id;
1562                                  * int  a_op;
1563                                  * struct flock *a_fl;
1564                                  * int  a_flags;
1565                                  * } */ *ap;
1566 {
1567     int error;
1568     struct ucred cr = *osi_curcred();
1569
1570     AFS_GLOCK();
1571     error =
1572         afs_lockctl(VTOAFS(ap->a_vp), ap->a_fl, ap->a_op, &cr, (int)ap->a_id);
1573     AFS_GUNLOCK();
1574     return error;
1575 }