libafs: Remove unecessary parameters to afs_read
[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     int flags = ap->a_cnp->cn_flags;
482     int lockparent;             /* 1 => lockparent flag is set */
483     int wantparent;             /* 1 => wantparent or lockparent flag */
484 #ifndef AFS_FBSD80_ENV
485     struct thread *p = ap->a_cnp->cn_thread;
486 #endif
487
488     dvp = ap->a_dvp;
489     if (dvp->v_type != VDIR) {
490 #ifndef AFS_FBSD70_ENV
491         *ap->a_vpp = 0;
492 #endif
493         return ENOTDIR;
494     }
495
496     if ((flags & ISDOTDOT) && (dvp->v_vflag & VV_ROOT))
497         return EIO;
498
499     GETNAME();
500
501     lockparent = flags & LOCKPARENT;
502     wantparent = flags & (LOCKPARENT | WANTPARENT);
503
504     cnp->cn_flags |= MPSAFE; /* steel */
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_VOP_UNLOCK(dvp, 0, p);
535         ma_vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
536         ma_vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY, p);
537         /* always return the child locked */
538         if (lockparent && (flags & ISLASTCN)
539             && (error = ma_vn_lock(dvp, LK_EXCLUSIVE, p))) {
540             vput(vp);
541             DROPNAME();
542             return (error);
543         }
544     } else if (vp == dvp) {
545         /* they're the same; afs_lookup() already ref'ed the leaf.
546          * It came in locked, so we don't need to ref OR lock it */
547     } else {
548         if (!lockparent || !(flags & ISLASTCN)) {
549 #ifndef AFS_FBSD70_ENV /* 6 too? */
550             MA_VOP_UNLOCK(dvp, 0, p);   /* done with parent. */
551 #endif
552         }
553         ma_vn_lock(vp, LK_EXCLUSIVE | LK_CANRECURSE | LK_RETRY, p);
554         /* always return the child locked */
555     }
556     *ap->a_vpp = vp;
557
558     if ((cnp->cn_nameiop == RENAME && wantparent && (flags & ISLASTCN))
559         || (cnp->cn_nameiop != LOOKUP && (flags & ISLASTCN)))
560         cnp->cn_flags |= SAVENAME;
561
562     DROPNAME();
563     return error;
564 }
565
566 int
567 afs_vop_create(ap)
568      struct vop_create_args     /* {
569                                  * struct vnode *a_dvp;
570                                  * struct vnode **a_vpp;
571                                  * struct componentname *a_cnp;
572                                  * struct vattr *a_vap;
573                                  * } */ *ap;
574 {
575     int error = 0;
576     struct vcache *vcp;
577     struct vnode *dvp = ap->a_dvp;
578 #ifndef AFS_FBSD80_ENV
579     struct thread *p = ap->a_cnp->cn_thread;
580 #endif
581     GETNAME();
582
583     AFS_GLOCK();
584     error =
585         afs_create(VTOAFS(dvp), name, ap->a_vap,
586                    ap->a_vap->va_vaflags & VA_EXCLUSIVE ? EXCL : NONEXCL,
587                    ap->a_vap->va_mode, &vcp, cnp->cn_cred);
588     AFS_GUNLOCK();
589     if (error) {
590         DROPNAME();
591         return (error);
592     }
593
594     if (vcp) {
595         *ap->a_vpp = AFSTOV(vcp);
596         ma_vn_lock(AFSTOV(vcp), LK_EXCLUSIVE | LK_RETRY, p);
597     } else
598         *ap->a_vpp = 0;
599
600     DROPNAME();
601     return error;
602 }
603
604 int
605 afs_vop_mknod(ap)
606      struct vop_mknod_args      /* {
607                                  * struct vnode *a_dvp;
608                                  * struct vnode **a_vpp;
609                                  * struct componentname *a_cnp;
610                                  * struct vattr *a_vap;
611                                  * } */ *ap;
612 {
613     return (ENODEV);
614 }
615
616 #if 0
617 static int
618 validate_vops(struct vnode *vp, int after)
619 {
620     int ret = 0;
621     struct vnodeopv_entry_desc *this;
622     for (this = afs_vnodeop_entries; this->opve_op; this++) {
623         if (vp->v_op[this->opve_op->vdesc_offset] != this->opve_impl) {
624             if (!ret) {
625                 printf("v_op %d ", after);
626                 vprint("check", vp);
627             }
628             ret = 1;
629             printf("For oper %d (%s), func is %p, not %p",
630                    this->opve_op->vdesc_offset, this->opve_op->vdesc_name,
631                    vp->v_op[this->opve_op->vdesc_offset], this->opve_impl);
632         }
633     }
634     return ret;
635 }
636 #endif
637 int
638 afs_vop_open(ap)
639      struct vop_open_args       /* {
640                                  * struct vnode *a_vp;
641                                  * int  a_mode;
642                                  * struct ucred *a_cred;
643                                  * struct thread *a_td;
644                                  * struct file *a_fp;
645                                  * } */ *ap;
646 {
647     int error;
648     struct vcache *vc = VTOAFS(ap->a_vp);
649
650     AFS_GLOCK();
651     error = afs_open(&vc, ap->a_mode, ap->a_cred);
652 #ifdef DIAGNOSTIC
653     if (AFSTOV(vc) != ap->a_vp)
654         panic("AFS open changed vnode!");
655 #endif
656     AFS_GUNLOCK();
657 #ifdef AFS_FBSD60_ENV
658     vnode_create_vobject(ap->a_vp, vc->f.m.Length, ap->a_td);
659 #endif
660     osi_FlushPages(vc, ap->a_cred);
661     return error;
662 }
663
664 int
665 afs_vop_close(ap)
666      struct vop_close_args      /* {
667                                  * struct vnode *a_vp;
668                                  * int  a_fflag;
669                                  * struct ucred *a_cred;
670                                  * struct thread *a_td;
671                                  * } */ *ap;
672 {
673     int code, iflag;
674     struct vnode *vp = ap->a_vp;
675     struct vcache *avc = VTOAFS(vp);
676
677 #if defined(AFS_FBSD80_ENV)
678     VI_LOCK(vp);
679     iflag = vp->v_iflag & VI_DOOMED;
680     VI_UNLOCK(vp);
681     if (iflag & VI_DOOMED) {
682         /* osi_FlushVCache (correctly) calls vgone() on recycled vnodes, we don't
683          * have an afs_close to process, in that case */
684         if (avc->opens != 0)
685             panic("afs_vop_close: doomed vnode %p has vcache %p with non-zero opens %d\n",
686                   vp, avc, avc->opens);
687         return 0;
688     }
689 #endif
690
691     AFS_GLOCK();
692     if (ap->a_cred)
693         code = afs_close(avc, ap->a_fflag, ap->a_cred);
694     else
695         code = afs_close(avc, ap->a_fflag, afs_osi_credp);
696     osi_FlushPages(avc, ap->a_cred);    /* hold bozon lock, but not basic vnode lock */
697     AFS_GUNLOCK();
698     return code;
699 }
700
701 int
702 afs_vop_access(ap)
703      struct vop_access_args     /* {
704                                  * struct vnode *a_vp;
705                                  * accmode_t a_accmode;
706                                  * struct ucred *a_cred;
707                                  * struct thread *a_td;
708                                  * } */ *ap;
709 {
710     int code;
711     AFS_GLOCK();
712 #if defined(AFS_FBSD80_ENV)
713     code = afs_access(VTOAFS(ap->a_vp), ap->a_accmode, ap->a_cred);
714 #else
715     code = afs_access(VTOAFS(ap->a_vp), ap->a_mode, ap->a_cred);
716 #endif
717     AFS_GUNLOCK();
718     return code;
719 }
720
721 int
722 afs_vop_getattr(ap)
723      struct vop_getattr_args    /* {
724                                  * struct vnode *a_vp;
725                                  * struct vattr *a_vap;
726                                  * struct ucred *a_cred;
727                                  * } */ *ap;
728 {
729     int code;
730
731     AFS_GLOCK();
732     code = afs_getattr(VTOAFS(ap->a_vp), ap->a_vap, ap->a_cred);
733     AFS_GUNLOCK();
734
735     return code;
736 }
737
738 int
739 afs_vop_setattr(ap)
740      struct vop_setattr_args    /* {
741                                  * struct vnode *a_vp;
742                                  * struct vattr *a_vap;
743                                  * struct ucred *a_cred;
744                                  * } */ *ap;
745 {
746     int code;
747     AFS_GLOCK();
748     code = afs_setattr(VTOAFS(ap->a_vp), ap->a_vap, ap->a_cred);
749     AFS_GUNLOCK();
750     return code;
751 }
752
753 int
754 afs_vop_read(ap)
755      struct vop_read_args       /* {
756                                  * struct vnode *a_vp;
757                                  * struct uio *a_uio;
758                                  * int a_ioflag;
759                                  * struct ucred *a_cred;
760                                  * 
761                                  * } */ *ap;
762 {
763     int code;
764     struct vcache *avc = VTOAFS(ap->a_vp);
765     AFS_GLOCK();
766     osi_FlushPages(avc, ap->a_cred);    /* hold bozon lock, but not basic vnode lock */
767     code = afs_read(avc, ap->a_uio, ap->a_cred, 0);
768     AFS_GUNLOCK();
769     return code;
770 }
771
772 /* struct vop_getpages_args {
773  *      struct vnode *a_vp;
774  *      vm_page_t *a_m;
775  *      int a_count;
776  *      int a_reqpage;
777  *      vm_oofset_t a_offset;
778  * };
779  */
780 int
781 afs_vop_getpages(struct vop_getpages_args *ap)
782 {
783     int code;
784     int i, nextoff, size, toff, npages;
785     struct uio uio;
786     struct iovec iov;
787     struct buf *bp;
788     vm_offset_t kva;
789     vm_object_t object;
790     struct vnode *vp;
791     struct vcache *avc;
792
793     vp = ap->a_vp;
794     avc = VTOAFS(vp);
795     if ((object = vp->v_object) == NULL) {
796         printf("afs_getpages: called with non-merged cache vnode??\n");
797         return VM_PAGER_ERROR;
798     }
799     npages = btoc(ap->a_count);
800     /*
801      * If the requested page is partially valid, just return it and
802      * allow the pager to zero-out the blanks.  Partially valid pages
803      * can only occur at the file EOF.
804      */
805
806     {
807         vm_page_t m = ap->a_m[ap->a_reqpage];
808
809         VM_OBJECT_LOCK(object);
810         ma_vm_page_lock_queues();
811         if (m->valid != 0) {
812             /* handled by vm_fault now        */
813             /* vm_page_zero_invalid(m, TRUE); */
814             for (i = 0; i < npages; ++i) {
815                 if (i != ap->a_reqpage) {
816                     ma_vm_page_lock(ap->a_m[i]);
817                     vm_page_free(ap->a_m[i]);
818                     ma_vm_page_unlock(ap->a_m[i]);
819                 }
820             }
821             ma_vm_page_unlock_queues();
822             VM_OBJECT_UNLOCK(object);
823             return (0);
824         }
825         ma_vm_page_unlock_queues();
826         VM_OBJECT_UNLOCK(object);
827     }
828     bp = getpbuf(&afs_pbuf_freecnt);
829
830     kva = (vm_offset_t) bp->b_data;
831     pmap_qenter(kva, ap->a_m, npages);
832     MA_PCPU_INC(cnt.v_vnodein);
833     MA_PCPU_ADD(cnt.v_vnodepgsin, npages);
834
835     iov.iov_base = (caddr_t) kva;
836     iov.iov_len = ap->a_count;
837     uio.uio_iov = &iov;
838     uio.uio_iovcnt = 1;
839     uio.uio_offset = IDX_TO_OFF(ap->a_m[0]->pindex);
840     uio.uio_resid = ap->a_count;
841     uio.uio_segflg = UIO_SYSSPACE;
842     uio.uio_rw = UIO_READ;
843     uio.uio_td = curthread;
844
845     AFS_GLOCK();
846     osi_FlushPages(avc, osi_curcred()); /* hold bozon lock, but not basic vnode lock */
847     code = afs_read(avc, &uio, osi_curcred(), 0);
848     AFS_GUNLOCK();
849     pmap_qremove(kva, npages);
850
851     relpbuf(bp, &afs_pbuf_freecnt);
852
853     if (code && (uio.uio_resid == ap->a_count)) {
854         VM_OBJECT_LOCK(object);
855         ma_vm_page_lock_queues();
856         for (i = 0; i < npages; ++i) {
857             if (i != ap->a_reqpage)
858                 vm_page_free(ap->a_m[i]);
859         }
860         ma_vm_page_unlock_queues();
861         VM_OBJECT_UNLOCK(object);
862         return VM_PAGER_ERROR;
863     }
864
865     size = ap->a_count - uio.uio_resid;
866     VM_OBJECT_LOCK(object);
867     ma_vm_page_lock_queues();
868     for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
869         vm_page_t m;
870         nextoff = toff + PAGE_SIZE;
871         m = ap->a_m[i];
872
873         /* XXX not in nfsclient? */
874         m->flags &= ~PG_ZERO;
875
876         if (nextoff <= size) {
877             /*
878              * Read operation filled an entire page
879              */
880             m->valid = VM_PAGE_BITS_ALL;
881 #ifndef AFS_FBSD80_ENV
882             vm_page_undirty(m);
883 #else
884             KASSERT(m->dirty == 0, ("afs_getpages: page %p is dirty", m));
885 #endif
886         } else if (size > toff) {
887             /*
888              * Read operation filled a partial page.
889              */
890             m->valid = 0;
891             vm_page_set_validclean(m, 0, size - toff);
892             KASSERT(m->dirty == 0, ("afs_getpages: page %p is dirty", m));
893         }
894
895         if (i != ap->a_reqpage) {
896             /*
897              * Whether or not to leave the page activated is up in
898              * the air, but we should put the page on a page queue
899              * somewhere (it already is in the object).  Result:
900              * It appears that emperical results show that
901              * deactivating pages is best.
902              */
903
904             /*
905              * Just in case someone was asking for this page we
906              * now tell them that it is ok to use.
907              */
908             if (!code) {
909 #if defined(AFS_FBSD70_ENV)
910                 if (m->oflags & VPO_WANTED) {
911 #else
912                 if (m->flags & PG_WANTED) {
913 #endif
914                     ma_vm_page_lock(m);
915                     vm_page_activate(m);
916                     ma_vm_page_unlock(m);
917                 }
918                 else {
919                     ma_vm_page_lock(m);
920                     vm_page_deactivate(m);
921                     ma_vm_page_unlock(m);
922                 }
923                 vm_page_wakeup(m);
924             } else {
925                 ma_vm_page_lock(m);
926                 vm_page_free(m);
927                 ma_vm_page_unlock(m);
928             }
929         }
930     }
931     ma_vm_page_unlock_queues();
932     VM_OBJECT_UNLOCK(object);
933     return 0;
934 }
935
936 int
937 afs_vop_write(ap)
938      struct vop_write_args      /* {
939                                  * struct vnode *a_vp;
940                                  * struct uio *a_uio;
941                                  * int a_ioflag;
942                                  * struct ucred *a_cred;
943                                  * } */ *ap;
944 {
945     int code;
946     struct vcache *avc = VTOAFS(ap->a_vp);
947     AFS_GLOCK();
948     osi_FlushPages(avc, ap->a_cred);    /* hold bozon lock, but not basic vnode lock */
949     code =
950         afs_write(VTOAFS(ap->a_vp), ap->a_uio, ap->a_ioflag, ap->a_cred, 0);
951     AFS_GUNLOCK();
952     return code;
953 }
954
955 /*-
956  * struct vop_putpages_args {
957  *      struct vnode *a_vp;
958  *      vm_page_t *a_m;
959  *      int a_count;
960  *      int a_sync;
961  *      int *a_rtvals;
962  *      vm_oofset_t a_offset;
963  * };
964  */
965 /*
966  * All of the pages passed to us in ap->a_m[] are already marked as busy,
967  * so there is no additional locking required to set their flags.  -GAW
968  */
969 int
970 afs_vop_putpages(struct vop_putpages_args *ap)
971 {
972     int code;
973     int i, size, npages, sync;
974     struct uio uio;
975     struct iovec iov;
976     struct buf *bp;
977     vm_offset_t kva;
978     struct vnode *vp;
979     struct vcache *avc;
980
981     vp = ap->a_vp;
982     avc = VTOAFS(vp);
983     /* Perhaps these two checks should just be KASSERTs instead... */
984     if (vp->v_object == NULL) {
985         printf("afs_putpages: called with non-merged cache vnode??\n");
986         return VM_PAGER_ERROR;  /* XXX I think this is insufficient */
987     }
988     if (vType(avc) != VREG) {
989         printf("afs_putpages: not VREG");
990         return VM_PAGER_ERROR;  /* XXX I think this is insufficient */
991     }
992     npages = btoc(ap->a_count);
993     for (i = 0; i < npages; i++)
994         ap->a_rtvals[i] = VM_PAGER_AGAIN;
995     bp = getpbuf(&afs_pbuf_freecnt);
996
997     kva = (vm_offset_t) bp->b_data;
998     pmap_qenter(kva, ap->a_m, npages);
999     MA_PCPU_INC(cnt.v_vnodeout);
1000     MA_PCPU_ADD(cnt.v_vnodepgsout, ap->a_count);
1001
1002     iov.iov_base = (caddr_t) kva;
1003     iov.iov_len = ap->a_count;
1004     uio.uio_iov = &iov;
1005     uio.uio_iovcnt = 1;
1006     uio.uio_offset = IDX_TO_OFF(ap->a_m[0]->pindex);
1007     uio.uio_resid = ap->a_count;
1008     uio.uio_segflg = UIO_SYSSPACE;
1009     uio.uio_rw = UIO_WRITE;
1010     uio.uio_td = curthread;
1011     sync = IO_VMIO;
1012     if (ap->a_sync & VM_PAGER_PUT_SYNC)
1013         sync |= IO_SYNC;
1014     /*if (ap->a_sync & VM_PAGER_PUT_INVAL)
1015      * sync |= IO_INVAL; */
1016
1017     AFS_GLOCK();
1018     code = afs_write(avc, &uio, sync, osi_curcred(), 0);
1019     AFS_GUNLOCK();
1020
1021     pmap_qremove(kva, npages);
1022     relpbuf(bp, &afs_pbuf_freecnt);
1023
1024     if (!code) {
1025         size = ap->a_count - uio.uio_resid;
1026         for (i = 0; i < round_page(size) / PAGE_SIZE; i++) {
1027             ap->a_rtvals[i] = VM_PAGER_OK;
1028             vm_page_undirty(ap->a_m[i]);
1029         }
1030     }
1031     return ap->a_rtvals[0];
1032 }
1033
1034 int
1035 afs_vop_ioctl(ap)
1036      struct vop_ioctl_args      /* {
1037                                  * struct vnode *a_vp;
1038                                  * u_long a_command;
1039                                  * void *a_data;
1040                                  * int  a_fflag;
1041                                  * struct ucred *a_cred;
1042                                  * struct thread *a_td;
1043                                  * } */ *ap;
1044 {
1045     struct vcache *tvc = VTOAFS(ap->a_vp);
1046     int error = 0;
1047
1048     /* in case we ever get in here... */
1049
1050     AFS_STATCNT(afs_ioctl);
1051     if (((ap->a_command >> 8) & 0xff) == 'V') {
1052         /* This is a VICEIOCTL call */
1053         AFS_GLOCK();
1054         error = HandleIoctl(tvc, ap->a_command, ap->a_data);
1055         AFS_GUNLOCK();
1056         return (error);
1057     } else {
1058         /* No-op call; just return. */
1059         return (ENOTTY);
1060     }
1061 }
1062
1063 /* ARGSUSED */
1064 int
1065 afs_vop_poll(ap)
1066      struct vop_poll_args       /* {
1067                                  * struct vnode *a_vp;
1068                                  * int  a_events;
1069                                  * struct ucred *a_cred;
1070                                  * struct thread *td;
1071                                  * } */ *ap;
1072 {
1073     /*
1074      * We should really check to see if I/O is possible.
1075      */
1076     return (1);
1077 }
1078
1079 /*
1080  * Mmap a file
1081  *
1082  * NB Currently unsupported.
1083  */
1084 /* ARGSUSED */
1085 int
1086 afs_vop_mmap(ap)
1087      struct vop_mmap_args       /* {
1088                                  * struct vnode *a_vp;
1089                                  * int  a_fflags;
1090                                  * struct ucred *a_cred;
1091                                  * struct thread *td;
1092                                  * } */ *ap;
1093 {
1094     return (EINVAL);
1095 }
1096
1097 int
1098 afs_vop_fsync(ap)
1099      struct vop_fsync_args      /* {
1100                                  * struct vnode *a_vp;
1101                                  * int a_waitfor;
1102                                  * struct thread *td;
1103                                  * } */ *ap;
1104 {
1105     int error;
1106     struct vnode *vp = ap->a_vp;
1107
1108     AFS_GLOCK();
1109     /*vflushbuf(vp, wait); */
1110 #ifdef AFS_FBSD60_ENV
1111     error = afs_fsync(VTOAFS(vp), ap->a_td->td_ucred);
1112 #else
1113     if (ap->a_cred)
1114         error = afs_fsync(VTOAFS(vp), ap->a_cred);
1115     else
1116         error = afs_fsync(VTOAFS(vp), afs_osi_credp);
1117 #endif
1118     AFS_GUNLOCK();
1119     return error;
1120 }
1121
1122 int
1123 afs_vop_remove(ap)
1124      struct vop_remove_args     /* {
1125                                  * struct vnode *a_dvp;
1126                                  * struct vnode *a_vp;
1127                                  * struct componentname *a_cnp;
1128                                  * } */ *ap;
1129 {
1130     int error = 0;
1131     struct vnode *vp = ap->a_vp;
1132     struct vnode *dvp = ap->a_dvp;
1133
1134     GETNAME();
1135     AFS_GLOCK();
1136     error = afs_remove(VTOAFS(dvp), name, cnp->cn_cred);
1137     AFS_GUNLOCK();
1138     cache_purge(vp);
1139     DROPNAME();
1140     return error;
1141 }
1142
1143 int
1144 afs_vop_link(ap)
1145      struct vop_link_args       /* {
1146                                  * struct vnode *a_vp;
1147                                  * struct vnode *a_tdvp;
1148                                  * struct componentname *a_cnp;
1149                                  * } */ *ap;
1150 {
1151     int error = 0;
1152     struct vnode *dvp = ap->a_tdvp;
1153     struct vnode *vp = ap->a_vp;
1154 #ifndef AFS_FBSD80_ENV
1155     struct thread *p = ap->a_cnp->cn_thread;
1156 #endif
1157
1158     GETNAME();
1159     if (dvp->v_mount != vp->v_mount) {
1160         error = EXDEV;
1161         goto out;
1162     }
1163     if (vp->v_type == VDIR) {
1164         error = EISDIR;
1165         goto out;
1166     }
1167     if ((error = ma_vn_lock(vp, LK_CANRECURSE | LK_EXCLUSIVE, p)) != 0) {
1168         goto out;
1169     }
1170     AFS_GLOCK();
1171     error = afs_link(VTOAFS(vp), VTOAFS(dvp), name, cnp->cn_cred);
1172     AFS_GUNLOCK();
1173     if (dvp != vp)
1174         MA_VOP_UNLOCK(vp, 0, p);
1175   out:
1176     DROPNAME();
1177     return error;
1178 }
1179
1180 int
1181 afs_vop_rename(ap)
1182      struct vop_rename_args     /* {
1183                                  * struct vnode *a_fdvp;
1184                                  * struct vnode *a_fvp;
1185                                  * struct componentname *a_fcnp;
1186                                  * struct vnode *a_tdvp;
1187                                  * struct vnode *a_tvp;
1188                                  * struct componentname *a_tcnp;
1189                                  * } */ *ap;
1190 {
1191     int error = 0;
1192     struct componentname *fcnp = ap->a_fcnp;
1193     char *fname;
1194     struct componentname *tcnp = ap->a_tcnp;
1195     char *tname;
1196     struct vnode *tvp = ap->a_tvp;
1197     struct vnode *tdvp = ap->a_tdvp;
1198     struct vnode *fvp = ap->a_fvp;
1199     struct vnode *fdvp = ap->a_fdvp;
1200 #ifndef AFS_FBSD80_ENV
1201     struct thread *p = fcnp->cn_thread;
1202 #endif
1203
1204     /*
1205      * Check for cross-device rename.
1206      */
1207     if ((fvp->v_mount != tdvp->v_mount)
1208         || (tvp && (fvp->v_mount != tvp->v_mount))) {
1209         error = EXDEV;
1210       abortit:
1211         if (tdvp == tvp)
1212             vrele(tdvp);
1213         else
1214             vput(tdvp);
1215         if (tvp)
1216             vput(tvp);
1217         vrele(fdvp);
1218         vrele(fvp);
1219         return (error);
1220     }
1221     /*
1222      * if fvp == tvp, we're just removing one name of a pair of
1223      * directory entries for the same element.  convert call into rename.
1224      ( (pinched from FreeBSD 4.4's ufs_rename())
1225      
1226      */
1227     if (fvp == tvp) {
1228         if (fvp->v_type == VDIR) {
1229             error = EINVAL;
1230             goto abortit;
1231         }
1232
1233         /* Release destination completely. */
1234         vput(tdvp);
1235         vput(tvp);
1236
1237         /* Delete source. */
1238         vrele(fdvp);
1239         vrele(fvp);
1240         fcnp->cn_flags &= ~MODMASK;
1241         fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
1242         if ((fcnp->cn_flags & SAVESTART) == 0)
1243             panic("afs_rename: lost from startdir");
1244         fcnp->cn_nameiop = DELETE;
1245         VREF(fdvp);
1246         error = relookup(fdvp, &fvp, fcnp);
1247         if (error == 0)
1248             vrele(fdvp);
1249         if (fvp == NULL) {
1250             return (ENOENT);
1251         }
1252
1253         error = VOP_REMOVE(fdvp, fvp, fcnp);
1254         if (fdvp == fvp)
1255             vrele(fdvp);
1256         else
1257             vput(fdvp);
1258         vput(fvp);
1259         return (error);
1260     }
1261     if ((error = ma_vn_lock(fvp, LK_EXCLUSIVE, p)) != 0)
1262         goto abortit;
1263
1264     MALLOC(fname, char *, fcnp->cn_namelen + 1, M_TEMP, M_WAITOK);
1265     memcpy(fname, fcnp->cn_nameptr, fcnp->cn_namelen);
1266     fname[fcnp->cn_namelen] = '\0';
1267     MALLOC(tname, char *, tcnp->cn_namelen + 1, M_TEMP, M_WAITOK);
1268     memcpy(tname, tcnp->cn_nameptr, tcnp->cn_namelen);
1269     tname[tcnp->cn_namelen] = '\0';
1270
1271
1272     AFS_GLOCK();
1273     /* XXX use "from" or "to" creds? NFS uses "to" creds */
1274     error =
1275         afs_rename(VTOAFS(fdvp), fname, VTOAFS(tdvp), tname, tcnp->cn_cred);
1276     AFS_GUNLOCK();
1277
1278     FREE(fname, M_TEMP);
1279     FREE(tname, M_TEMP);
1280     if (tdvp == tvp)
1281         vrele(tdvp);
1282     else
1283         vput(tdvp);
1284     if (tvp)
1285         vput(tvp);
1286     vrele(fdvp);
1287     vput(fvp);
1288     return error;
1289 }
1290
1291 int
1292 afs_vop_mkdir(ap)
1293      struct vop_mkdir_args      /* {
1294                                  * struct vnode *a_dvp;
1295                                  * struct vnode **a_vpp;
1296                                  * struct componentname *a_cnp;
1297                                  * struct vattr *a_vap;
1298                                  * } */ *ap;
1299 {
1300     struct vnode *dvp = ap->a_dvp;
1301     struct vattr *vap = ap->a_vap;
1302     int error = 0;
1303     struct vcache *vcp;
1304 #ifndef AFS_FBSD80_ENV
1305     struct thread *p = ap->a_cnp->cn_thread;
1306 #endif
1307
1308     GETNAME();
1309 #ifdef DIAGNOSTIC
1310     if ((cnp->cn_flags & HASBUF) == 0)
1311         panic("afs_vop_mkdir: no name");
1312 #endif
1313     AFS_GLOCK();
1314     error = afs_mkdir(VTOAFS(dvp), name, vap, &vcp, cnp->cn_cred);
1315     AFS_GUNLOCK();
1316     if (error) {
1317         DROPNAME();
1318         return (error);
1319     }
1320     if (vcp) {
1321         *ap->a_vpp = AFSTOV(vcp);
1322         ma_vn_lock(AFSTOV(vcp), LK_EXCLUSIVE | LK_RETRY, p);
1323     } else
1324         *ap->a_vpp = 0;
1325     DROPNAME();
1326     return error;
1327 }
1328
1329 int
1330 afs_vop_rmdir(ap)
1331      struct vop_rmdir_args      /* {
1332                                  * struct vnode *a_dvp;
1333                                  * struct vnode *a_vp;
1334                                  * struct componentname *a_cnp;
1335                                  * } */ *ap;
1336 {
1337     int error = 0;
1338     struct vnode *dvp = ap->a_dvp;
1339
1340     GETNAME();
1341     AFS_GLOCK();
1342     error = afs_rmdir(VTOAFS(dvp), name, cnp->cn_cred);
1343     AFS_GUNLOCK();
1344     DROPNAME();
1345     return error;
1346 }
1347
1348 /* struct vop_symlink_args {
1349  *      struct vnode *a_dvp;
1350  *      struct vnode **a_vpp;
1351  *      struct componentname *a_cnp;
1352  *      struct vattr *a_vap;
1353  *      char *a_target;
1354  * };
1355  */
1356 int
1357 afs_vop_symlink(struct vop_symlink_args *ap)
1358 {
1359     struct vnode *dvp;
1360     struct vnode *newvp;
1361     struct vcache *vcp;
1362     int error;
1363
1364     GETNAME();
1365     AFS_GLOCK();
1366
1367     dvp = ap->a_dvp;
1368     newvp = NULL;
1369
1370     error =
1371         afs_symlink(VTOAFS(dvp), name, ap->a_vap, ap->a_target, cnp->cn_cred);
1372     if (error == 0) {
1373         error = afs_lookup(VTOAFS(dvp), name, &vcp, cnp->cn_cred);
1374         if (error == 0) {
1375             newvp = AFSTOV(vcp);
1376             ma_vn_lock(newvp, LK_EXCLUSIVE | LK_RETRY, cnp->cn_thread);
1377         }
1378     }
1379     AFS_GUNLOCK();
1380     DROPNAME();
1381     *(ap->a_vpp) = newvp;
1382     return error;
1383 }
1384
1385 int
1386 afs_vop_readdir(ap)
1387      struct vop_readdir_args    /* {
1388                                  * struct vnode *a_vp;
1389                                  * struct uio *a_uio;
1390                                  * struct ucred *a_cred;
1391                                  * int *a_eofflag;
1392                                  * u_long *a_cookies;
1393                                  * int ncookies;
1394                                  * } */ *ap;
1395 {
1396     int error;
1397     off_t off;
1398 /*    printf("readdir %x cookies %x ncookies %d\n", ap->a_vp, ap->a_cookies,
1399            ap->a_ncookies); */
1400     off = ap->a_uio->uio_offset;
1401     AFS_GLOCK();
1402     error =
1403         afs_readdir(VTOAFS(ap->a_vp), ap->a_uio, ap->a_cred, ap->a_eofflag);
1404     AFS_GUNLOCK();
1405     if (!error && ap->a_ncookies != NULL) {
1406         struct uio *uio = ap->a_uio;
1407         const struct dirent *dp, *dp_start, *dp_end;
1408         int ncookies;
1409         u_long *cookies, *cookiep;
1410
1411         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
1412             panic("afs_readdir: burned cookies");
1413         dp = (const struct dirent *)
1414             ((const char *)uio->uio_iov->iov_base - (uio->uio_offset - off));
1415
1416         dp_end = (const struct dirent *)uio->uio_iov->iov_base;
1417         for (dp_start = dp, ncookies = 0; dp < dp_end;
1418              dp = (const struct dirent *)((const char *)dp + dp->d_reclen))
1419             ncookies++;
1420
1421         MALLOC(cookies, u_long *, ncookies * sizeof(u_long), M_TEMP,
1422                M_WAITOK);
1423         for (dp = dp_start, cookiep = cookies; dp < dp_end;
1424              dp = (const struct dirent *)((const char *)dp + dp->d_reclen)) {
1425             off += dp->d_reclen;
1426             *cookiep++ = off;
1427         }
1428         *ap->a_cookies = cookies;
1429         *ap->a_ncookies = ncookies;
1430     }
1431
1432     return error;
1433 }
1434
1435 int
1436 afs_vop_readlink(ap)
1437      struct vop_readlink_args   /* {
1438                                  * struct vnode *a_vp;
1439                                  * struct uio *a_uio;
1440                                  * struct ucred *a_cred;
1441                                  * } */ *ap;
1442 {
1443     int error;
1444 /*    printf("readlink %x\n", ap->a_vp);*/
1445     AFS_GLOCK();
1446     error = afs_readlink(VTOAFS(ap->a_vp), ap->a_uio, ap->a_cred);
1447     AFS_GUNLOCK();
1448     return error;
1449 }
1450
1451 int
1452 afs_vop_inactive(ap)
1453      struct vop_inactive_args   /* {
1454                                  * struct vnode *a_vp;
1455                                  * struct thread *td;
1456                                  * } */ *ap;
1457 {
1458     struct vnode *vp = ap->a_vp;
1459
1460     AFS_GLOCK();
1461     afs_InactiveVCache(VTOAFS(vp), 0);  /* decrs ref counts */
1462     AFS_GUNLOCK();
1463 #ifndef AFS_FBSD60_ENV
1464     MA_VOP_UNLOCK(vp, 0, ap->a_td);
1465 #endif
1466     return 0;
1467 }
1468
1469 /*
1470  * struct vop_reclaim_args {
1471  *      struct vnode *a_vp;
1472  * };
1473  */
1474 int
1475 afs_vop_reclaim(struct vop_reclaim_args *ap)
1476 {
1477     /* copied from ../OBSD/osi_vnodeops.c:afs_nbsd_reclaim() */
1478     int code, slept;
1479     struct vnode *vp = ap->a_vp;
1480     struct vcache *avc = VTOAFS(vp);
1481     int haveGlock = ISAFS_GLOCK();
1482     int haveVlock = CheckLock(&afs_xvcache);
1483
1484     if (!haveGlock)
1485         AFS_GLOCK();
1486     if (!haveVlock)
1487         ObtainWriteLock(&afs_xvcache, 901);
1488     /* reclaim the vnode and the in-memory vcache, but keep the on-disk vcache */
1489     code = afs_FlushVCache(avc, &slept);
1490
1491     if (avc->f.states & CVInit) {
1492         avc->f.states &= ~CVInit;
1493         afs_osi_Wakeup(&avc->f.states);
1494     }
1495
1496     if (!haveVlock)
1497         ReleaseWriteLock(&afs_xvcache);
1498     if (!haveGlock)
1499         AFS_GUNLOCK();
1500
1501     if (code) {
1502         afs_warn("afs_vop_reclaim: afs_FlushVCache failed code %d vnode\n", code);
1503         VOP_PRINT(vp);
1504     }
1505
1506     /* basically, it must not fail */
1507     vnode_destroy_vobject(vp);
1508     vp->v_data = 0;
1509
1510     return 0;
1511 }
1512
1513 #ifndef AFS_FBSD60_ENV
1514 int
1515 afs_vop_bmap(ap)
1516      struct vop_bmap_args       /* {
1517                                  * struct vnode *a_vp;
1518                                  * daddr_t  a_bn;
1519                                  * struct vnode **a_vpp;
1520                                  * daddr_t *a_bnp;
1521                                  * int *a_runp;
1522                                  * int *a_runb;
1523                                  * } */ *ap;
1524 {
1525     if (ap->a_bnp) {
1526         *ap->a_bnp = ap->a_bn * (PAGE_SIZE / DEV_BSIZE);
1527     }
1528     if (ap->a_vpp) {
1529         *ap->a_vpp = ap->a_vp;
1530     }
1531     if (ap->a_runp != NULL)
1532         *ap->a_runp = 0;
1533     if (ap->a_runb != NULL)
1534         *ap->a_runb = 0;
1535
1536     return 0;
1537 }
1538 #endif
1539
1540 int
1541 afs_vop_strategy(ap)
1542      struct vop_strategy_args   /* {
1543                                  * struct buf *a_bp;
1544                                  * } */ *ap;
1545 {
1546     int error;
1547     AFS_GLOCK();
1548     error = afs_ustrategy(ap->a_bp, osi_curcred());
1549     AFS_GUNLOCK();
1550     return error;
1551 }
1552
1553 int
1554 afs_vop_print(ap)
1555      struct vop_print_args      /* {
1556                                  * struct vnode *a_vp;
1557                                  * } */ *ap;
1558 {
1559     struct vnode *vp = ap->a_vp;
1560     struct vcache *vc = VTOAFS(ap->a_vp);
1561     int s = vc->f.states;
1562
1563     printf("vc %p vp %p tag %s, fid: %d.%d.%d.%d, opens %d, writers %d", vc, vp, vp->v_tag,
1564            (int)vc->f.fid.Cell, (u_int) vc->f.fid.Fid.Volume,
1565            (u_int) vc->f.fid.Fid.Vnode, (u_int) vc->f.fid.Fid.Unique, vc->opens,
1566            vc->execsOrWriters);
1567     printf("\n  states%s%s%s%s%s", (s & CStatd) ? " statd" : "",
1568            (s & CRO) ? " readonly" : "", (s & CDirty) ? " dirty" : "",
1569            (s & CMAPPED) ? " mapped" : "",
1570            (s & CVFlushed) ? " flush in progress" : "");
1571     printf("\n");
1572     return 0;
1573 }
1574
1575 /*
1576  * Advisory record locking support (fcntl() POSIX style)
1577  */
1578 int
1579 afs_vop_advlock(ap)
1580      struct vop_advlock_args    /* {
1581                                  * struct vnode *a_vp;
1582                                  * caddr_t  a_id;
1583                                  * int  a_op;
1584                                  * struct flock *a_fl;
1585                                  * int  a_flags;
1586                                  * } */ *ap;
1587 {
1588     int error;
1589     struct ucred cr = *osi_curcred();
1590
1591     AFS_GLOCK();
1592     error =
1593         afs_lockctl(VTOAFS(ap->a_vp), ap->a_fl, ap->a_op, &cr, (int)ap->a_id);
1594     AFS_GUNLOCK();
1595     return error;
1596 }