nfs_vnops.c revision 1.37 1 /* $NetBSD: nfs_vnops.c,v 1.37 1994/08/08 19:29:29 deraadt Exp $ */
2
3 /*
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Rick Macklem at The University of Guelph.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)nfs_vnops.c 8.5 (Berkeley) 2/13/94
39 */
40
41 /*
42 * vnode op calls for sun nfs version 2
43 */
44
45 #include <sys/param.h>
46 #include <sys/proc.h>
47 #include <sys/kernel.h>
48 #include <sys/systm.h>
49 #include <sys/mount.h>
50 #include <sys/buf.h>
51 #include <sys/malloc.h>
52 #include <sys/mbuf.h>
53 #include <sys/conf.h>
54 #include <sys/namei.h>
55 #include <sys/vnode.h>
56 #include <sys/map.h>
57 #include <sys/dirent.h>
58 #include <sys/lockf.h>
59
60 #include <vm/vm.h>
61
62 #include <miscfs/specfs/specdev.h>
63 #include <miscfs/fifofs/fifo.h>
64
65 #include <nfs/rpcv2.h>
66 #include <nfs/nfsv2.h>
67 #include <nfs/nfs.h>
68 #include <nfs/nfsnode.h>
69 #include <nfs/nfsmount.h>
70 #include <nfs/xdr_subs.h>
71 #include <nfs/nfsm_subs.h>
72 #include <nfs/nqnfs.h>
73
74 /* Defs */
75 #define TRUE 1
76 #define FALSE 0
77
78 /*
79 * Global vfs data structures for nfs
80 */
81 int (**nfsv2_vnodeop_p)();
82 struct vnodeopv_entry_desc nfsv2_vnodeop_entries[] = {
83 { &vop_default_desc, vn_default_error },
84 { &vop_lookup_desc, nfs_lookup }, /* lookup */
85 { &vop_create_desc, nfs_create }, /* create */
86 { &vop_mknod_desc, nfs_mknod }, /* mknod */
87 { &vop_open_desc, nfs_open }, /* open */
88 { &vop_close_desc, nfs_close }, /* close */
89 { &vop_access_desc, nfs_access }, /* access */
90 { &vop_getattr_desc, nfs_getattr }, /* getattr */
91 { &vop_setattr_desc, nfs_setattr }, /* setattr */
92 { &vop_read_desc, nfs_read }, /* read */
93 { &vop_write_desc, nfs_write }, /* write */
94 { &vop_ioctl_desc, nfs_ioctl }, /* ioctl */
95 { &vop_select_desc, nfs_select }, /* select */
96 { &vop_mmap_desc, nfs_mmap }, /* mmap */
97 { &vop_fsync_desc, nfs_fsync }, /* fsync */
98 { &vop_seek_desc, nfs_seek }, /* seek */
99 { &vop_remove_desc, nfs_remove }, /* remove */
100 { &vop_link_desc, nfs_link }, /* link */
101 { &vop_rename_desc, nfs_rename }, /* rename */
102 { &vop_mkdir_desc, nfs_mkdir }, /* mkdir */
103 { &vop_rmdir_desc, nfs_rmdir }, /* rmdir */
104 { &vop_symlink_desc, nfs_symlink }, /* symlink */
105 { &vop_readdir_desc, nfs_readdir }, /* readdir */
106 { &vop_readlink_desc, nfs_readlink }, /* readlink */
107 { &vop_abortop_desc, nfs_abortop }, /* abortop */
108 { &vop_inactive_desc, nfs_inactive }, /* inactive */
109 { &vop_reclaim_desc, nfs_reclaim }, /* reclaim */
110 { &vop_lock_desc, nfs_lock }, /* lock */
111 { &vop_unlock_desc, nfs_unlock }, /* unlock */
112 { &vop_bmap_desc, nfs_bmap }, /* bmap */
113 { &vop_strategy_desc, nfs_strategy }, /* strategy */
114 { &vop_print_desc, nfs_print }, /* print */
115 { &vop_islocked_desc, nfs_islocked }, /* islocked */
116 { &vop_pathconf_desc, nfs_pathconf }, /* pathconf */
117 { &vop_advlock_desc, nfs_advlock }, /* advlock */
118 { &vop_blkatoff_desc, nfs_blkatoff }, /* blkatoff */
119 { &vop_valloc_desc, nfs_valloc }, /* valloc */
120 { &vop_reallocblks_desc, nfs_reallocblks }, /* reallocblks */
121 { &vop_vfree_desc, nfs_vfree }, /* vfree */
122 { &vop_truncate_desc, nfs_truncate }, /* truncate */
123 { &vop_update_desc, nfs_update }, /* update */
124 { &vop_bwrite_desc, vn_bwrite },
125 { (struct vnodeop_desc*)NULL, (int(*)())NULL }
126 };
127 struct vnodeopv_desc nfsv2_vnodeop_opv_desc =
128 { &nfsv2_vnodeop_p, nfsv2_vnodeop_entries };
129
130 /*
131 * Special device vnode ops
132 */
133 int (**spec_nfsv2nodeop_p)();
134 struct vnodeopv_entry_desc spec_nfsv2nodeop_entries[] = {
135 { &vop_default_desc, vn_default_error },
136 { &vop_lookup_desc, spec_lookup }, /* lookup */
137 { &vop_create_desc, spec_create }, /* create */
138 { &vop_mknod_desc, spec_mknod }, /* mknod */
139 { &vop_open_desc, spec_open }, /* open */
140 { &vop_close_desc, nfsspec_close }, /* close */
141 { &vop_access_desc, nfsspec_access }, /* access */
142 { &vop_getattr_desc, nfs_getattr }, /* getattr */
143 { &vop_setattr_desc, nfs_setattr }, /* setattr */
144 { &vop_read_desc, nfsspec_read }, /* read */
145 { &vop_write_desc, nfsspec_write }, /* write */
146 { &vop_ioctl_desc, spec_ioctl }, /* ioctl */
147 { &vop_select_desc, spec_select }, /* select */
148 { &vop_mmap_desc, spec_mmap }, /* mmap */
149 { &vop_fsync_desc, nfs_fsync }, /* fsync */
150 { &vop_seek_desc, spec_seek }, /* seek */
151 { &vop_remove_desc, spec_remove }, /* remove */
152 { &vop_link_desc, spec_link }, /* link */
153 { &vop_rename_desc, spec_rename }, /* rename */
154 { &vop_mkdir_desc, spec_mkdir }, /* mkdir */
155 { &vop_rmdir_desc, spec_rmdir }, /* rmdir */
156 { &vop_symlink_desc, spec_symlink }, /* symlink */
157 { &vop_readdir_desc, spec_readdir }, /* readdir */
158 { &vop_readlink_desc, spec_readlink }, /* readlink */
159 { &vop_abortop_desc, spec_abortop }, /* abortop */
160 { &vop_inactive_desc, nfs_inactive }, /* inactive */
161 { &vop_reclaim_desc, nfs_reclaim }, /* reclaim */
162 { &vop_lock_desc, nfs_lock }, /* lock */
163 { &vop_unlock_desc, nfs_unlock }, /* unlock */
164 { &vop_bmap_desc, spec_bmap }, /* bmap */
165 { &vop_strategy_desc, spec_strategy }, /* strategy */
166 { &vop_print_desc, nfs_print }, /* print */
167 { &vop_islocked_desc, nfs_islocked }, /* islocked */
168 { &vop_pathconf_desc, spec_pathconf }, /* pathconf */
169 { &vop_advlock_desc, spec_advlock }, /* advlock */
170 { &vop_blkatoff_desc, spec_blkatoff }, /* blkatoff */
171 { &vop_valloc_desc, spec_valloc }, /* valloc */
172 { &vop_reallocblks_desc, spec_reallocblks }, /* reallocblks */
173 { &vop_vfree_desc, spec_vfree }, /* vfree */
174 { &vop_truncate_desc, spec_truncate }, /* truncate */
175 { &vop_update_desc, nfs_update }, /* update */
176 { &vop_bwrite_desc, vn_bwrite },
177 { (struct vnodeop_desc*)NULL, (int(*)())NULL }
178 };
179 struct vnodeopv_desc spec_nfsv2nodeop_opv_desc =
180 { &spec_nfsv2nodeop_p, spec_nfsv2nodeop_entries };
181
182 #ifdef FIFO
183 int (**fifo_nfsv2nodeop_p)();
184 struct vnodeopv_entry_desc fifo_nfsv2nodeop_entries[] = {
185 { &vop_default_desc, vn_default_error },
186 { &vop_lookup_desc, fifo_lookup }, /* lookup */
187 { &vop_create_desc, fifo_create }, /* create */
188 { &vop_mknod_desc, fifo_mknod }, /* mknod */
189 { &vop_open_desc, fifo_open }, /* open */
190 { &vop_close_desc, nfsfifo_close }, /* close */
191 { &vop_access_desc, nfsspec_access }, /* access */
192 { &vop_getattr_desc, nfs_getattr }, /* getattr */
193 { &vop_setattr_desc, nfs_setattr }, /* setattr */
194 { &vop_read_desc, nfsfifo_read }, /* read */
195 { &vop_write_desc, nfsfifo_write }, /* write */
196 { &vop_ioctl_desc, fifo_ioctl }, /* ioctl */
197 { &vop_select_desc, fifo_select }, /* select */
198 { &vop_mmap_desc, fifo_mmap }, /* mmap */
199 { &vop_fsync_desc, nfs_fsync }, /* fsync */
200 { &vop_seek_desc, fifo_seek }, /* seek */
201 { &vop_remove_desc, fifo_remove }, /* remove */
202 { &vop_link_desc, fifo_link }, /* link */
203 { &vop_rename_desc, fifo_rename }, /* rename */
204 { &vop_mkdir_desc, fifo_mkdir }, /* mkdir */
205 { &vop_rmdir_desc, fifo_rmdir }, /* rmdir */
206 { &vop_symlink_desc, fifo_symlink }, /* symlink */
207 { &vop_readdir_desc, fifo_readdir }, /* readdir */
208 { &vop_readlink_desc, fifo_readlink }, /* readlink */
209 { &vop_abortop_desc, fifo_abortop }, /* abortop */
210 { &vop_inactive_desc, nfs_inactive }, /* inactive */
211 { &vop_reclaim_desc, nfs_reclaim }, /* reclaim */
212 { &vop_lock_desc, nfs_lock }, /* lock */
213 { &vop_unlock_desc, nfs_unlock }, /* unlock */
214 { &vop_bmap_desc, fifo_bmap }, /* bmap */
215 { &vop_strategy_desc, fifo_badop }, /* strategy */
216 { &vop_print_desc, nfs_print }, /* print */
217 { &vop_islocked_desc, nfs_islocked }, /* islocked */
218 { &vop_pathconf_desc, fifo_pathconf }, /* pathconf */
219 { &vop_advlock_desc, fifo_advlock }, /* advlock */
220 { &vop_blkatoff_desc, fifo_blkatoff }, /* blkatoff */
221 { &vop_valloc_desc, fifo_valloc }, /* valloc */
222 { &vop_reallocblks_desc, fifo_reallocblks }, /* reallocblks */
223 { &vop_vfree_desc, fifo_vfree }, /* vfree */
224 { &vop_truncate_desc, fifo_truncate }, /* truncate */
225 { &vop_update_desc, nfs_update }, /* update */
226 { &vop_bwrite_desc, vn_bwrite },
227 { (struct vnodeop_desc*)NULL, (int(*)())NULL }
228 };
229 struct vnodeopv_desc fifo_nfsv2nodeop_opv_desc =
230 { &fifo_nfsv2nodeop_p, fifo_nfsv2nodeop_entries };
231 #endif /* FIFO */
232
233 void nqnfs_clientlease();
234
235 /*
236 * Global variables
237 */
238 extern u_long nfs_procids[NFS_NPROCS];
239 extern u_long nfs_prog, nfs_vers, nfs_true, nfs_false;
240 struct proc *nfs_iodwant[NFS_MAXASYNCDAEMON];
241 int nfs_numasync = 0;
242 #define DIRHDSIZ (sizeof (struct dirent) - (MAXNAMLEN + 1))
243
244 /*
245 * nfs null call from vfs.
246 */
247 int
248 nfs_null(vp, cred, procp)
249 struct vnode *vp;
250 struct ucred *cred;
251 struct proc *procp;
252 {
253 caddr_t bpos, dpos;
254 int error = 0;
255 struct mbuf *mreq, *mrep, *md, *mb;
256
257 nfsm_reqhead(vp, NFSPROC_NULL, 0);
258 nfsm_request(vp, NFSPROC_NULL, procp, cred);
259 nfsm_reqdone;
260 return (error);
261 }
262
263 /*
264 * nfs access vnode op.
265 * For nfs, just return ok. File accesses may fail later.
266 * For nqnfs, use the access rpc to check accessibility. If file modes are
267 * changed on the server, accesses might still fail later.
268 */
269 int
270 nfs_access(ap)
271 struct vop_access_args /* {
272 struct vnode *a_vp;
273 int a_mode;
274 struct ucred *a_cred;
275 struct proc *a_p;
276 } */ *ap;
277 {
278 register struct vnode *vp = ap->a_vp;
279 register u_long *tl;
280 register caddr_t cp;
281 caddr_t bpos, dpos;
282 int error = 0;
283 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
284
285 /*
286 * For nqnfs, do an access rpc, otherwise you are stuck emulating
287 * ufs_access() locally using the vattr. This may not be correct,
288 * since the server may apply other access criteria such as
289 * client uid-->server uid mapping that we do not know about, but
290 * this is better than just returning anything that is lying about
291 * in the cache.
292 */
293 if (VFSTONFS(vp->v_mount)->nm_flag & NFSMNT_NQNFS) {
294 nfsstats.rpccnt[NQNFSPROC_ACCESS]++;
295 nfsm_reqhead(vp, NQNFSPROC_ACCESS, NFSX_FH + 3 * NFSX_UNSIGNED);
296 nfsm_fhtom(vp);
297 nfsm_build(tl, u_long *, 3 * NFSX_UNSIGNED);
298 if (ap->a_mode & VREAD)
299 *tl++ = nfs_true;
300 else
301 *tl++ = nfs_false;
302 if (ap->a_mode & VWRITE)
303 *tl++ = nfs_true;
304 else
305 *tl++ = nfs_false;
306 if (ap->a_mode & VEXEC)
307 *tl = nfs_true;
308 else
309 *tl = nfs_false;
310 nfsm_request(vp, NQNFSPROC_ACCESS, ap->a_p, ap->a_cred);
311 nfsm_reqdone;
312 return (error);
313 } else
314 return (nfsspec_access(ap));
315 }
316
317 /*
318 * nfs open vnode op
319 * Check to see if the type is ok
320 * and that deletion is not in progress.
321 * For paged in text files, you will need to flush the page cache
322 * if consistency is lost.
323 */
324 /* ARGSUSED */
325 int
326 nfs_open(ap)
327 struct vop_open_args /* {
328 struct vnode *a_vp;
329 int a_mode;
330 struct ucred *a_cred;
331 struct proc *a_p;
332 } */ *ap;
333 {
334 register struct vnode *vp = ap->a_vp;
335 struct nfsnode *np = VTONFS(vp);
336 struct nfsmount *nmp = VFSTONFS(vp->v_mount);
337 struct vattr vattr;
338 int error;
339
340 if (vp->v_type != VREG && vp->v_type != VDIR && vp->v_type != VLNK)
341 return (EACCES);
342 if (vp->v_flag & VTEXT) {
343 /*
344 * Get a valid lease. If cached data is stale, flush it.
345 */
346 if (nmp->nm_flag & NFSMNT_NQNFS) {
347 if (NQNFS_CKINVALID(vp, np, NQL_READ)) {
348 do {
349 error = nqnfs_getlease(vp, NQL_READ, ap->a_cred, ap->a_p);
350 } while (error == NQNFS_EXPIRED);
351 if (error)
352 return (error);
353 if (np->n_lrev != np->n_brev ||
354 (np->n_flag & NQNFSNONCACHE)) {
355 if ((error = nfs_vinvalbuf(vp, V_SAVE, ap->a_cred,
356 ap->a_p, 1)) == EINTR)
357 return (error);
358 (void) vnode_pager_uncache(vp);
359 np->n_brev = np->n_lrev;
360 }
361 }
362 } else {
363 if (np->n_flag & NMODIFIED) {
364 if ((error = nfs_vinvalbuf(vp, V_SAVE, ap->a_cred,
365 ap->a_p, 1)) == EINTR)
366 return (error);
367 (void) vnode_pager_uncache(vp);
368 np->n_attrstamp = 0;
369 np->n_direofoffset = 0;
370 if (error = VOP_GETATTR(vp, &vattr, ap->a_cred, ap->a_p))
371 return (error);
372 np->n_mtime = vattr.va_mtime.ts_sec;
373 } else {
374 if (error = VOP_GETATTR(vp, &vattr, ap->a_cred, ap->a_p))
375 return (error);
376 if (np->n_mtime != vattr.va_mtime.ts_sec) {
377 np->n_direofoffset = 0;
378 if ((error = nfs_vinvalbuf(vp, V_SAVE,
379 ap->a_cred, ap->a_p, 1)) == EINTR)
380 return (error);
381 (void) vnode_pager_uncache(vp);
382 np->n_mtime = vattr.va_mtime.ts_sec;
383 }
384 }
385 }
386 } else if ((nmp->nm_flag & NFSMNT_NQNFS) == 0)
387 np->n_attrstamp = 0; /* For Open/Close consistency */
388 return (0);
389 }
390
391 /*
392 * nfs close vnode op
393 * For reg files, invalidate any buffer cache entries.
394 */
395 /* ARGSUSED */
396 int
397 nfs_close(ap)
398 struct vop_close_args /* {
399 struct vnodeop_desc *a_desc;
400 struct vnode *a_vp;
401 int a_fflag;
402 struct ucred *a_cred;
403 struct proc *a_p;
404 } */ *ap;
405 {
406 register struct vnode *vp = ap->a_vp;
407 register struct nfsnode *np = VTONFS(vp);
408 int error = 0;
409
410 if (vp->v_type == VREG) {
411 if ((VFSTONFS(vp->v_mount)->nm_flag & NFSMNT_NQNFS) == 0 &&
412 (np->n_flag & NMODIFIED)) {
413 error = nfs_vinvalbuf(vp, V_SAVE, ap->a_cred, ap->a_p, 1);
414 np->n_attrstamp = 0;
415 }
416 if (np->n_flag & NWRITEERR) {
417 np->n_flag &= ~NWRITEERR;
418 error = np->n_error;
419 }
420 }
421 return (error);
422 }
423
424 /*
425 * nfs getattr call from vfs.
426 */
427 int
428 nfs_getattr(ap)
429 struct vop_getattr_args /* {
430 struct vnode *a_vp;
431 struct vattr *a_vap;
432 struct ucred *a_cred;
433 struct proc *a_p;
434 } */ *ap;
435 {
436 register struct vnode *vp = ap->a_vp;
437 register struct nfsnode *np = VTONFS(vp);
438 register caddr_t cp;
439 caddr_t bpos, dpos;
440 int error = 0;
441 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
442
443 /*
444 * Update local times for special files.
445 */
446 if (np->n_flag & (NACC | NUPD))
447 np->n_flag |= NCHG;
448 /*
449 * First look in the cache.
450 */
451 if (nfs_getattrcache(vp, ap->a_vap) == 0)
452 return (0);
453 nfsstats.rpccnt[NFSPROC_GETATTR]++;
454 nfsm_reqhead(vp, NFSPROC_GETATTR, NFSX_FH);
455 nfsm_fhtom(vp);
456 nfsm_request(vp, NFSPROC_GETATTR, ap->a_p, ap->a_cred);
457 nfsm_loadattr(vp, ap->a_vap);
458 nfsm_reqdone;
459 return (error);
460 }
461
462 /*
463 * nfs setattr call.
464 */
465 int
466 nfs_setattr(ap)
467 struct vop_setattr_args /* {
468 struct vnodeop_desc *a_desc;
469 struct vnode *a_vp;
470 struct vattr *a_vap;
471 struct ucred *a_cred;
472 struct proc *a_p;
473 } */ *ap;
474 {
475 register struct nfsv2_sattr *sp;
476 register caddr_t cp;
477 register long t1;
478 caddr_t bpos, dpos, cp2;
479 u_long *tl;
480 int error = 0, isnq;
481 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
482 register struct vnode *vp = ap->a_vp;
483 register struct nfsnode *np = VTONFS(vp);
484 register struct vattr *vap = ap->a_vap;
485 u_quad_t frev, tsize;
486
487 if (vap->va_size != VNOVAL) {
488 switch (vp->v_type) {
489 case VDIR:
490 return (EISDIR);
491 case VCHR:
492 case VBLK:
493 if (vap->va_mtime.ts_sec == VNOVAL &&
494 vap->va_atime.ts_sec == VNOVAL &&
495 vap->va_mode == (u_short)VNOVAL &&
496 vap->va_uid == VNOVAL &&
497 vap->va_gid == VNOVAL)
498 return (0);
499 vap->va_size = VNOVAL;
500 break;
501 default:
502 if (np->n_flag & NMODIFIED) {
503 if (vap->va_size == 0)
504 error = nfs_vinvalbuf(vp, 0,
505 ap->a_cred, ap->a_p, 1);
506 else
507 error = nfs_vinvalbuf(vp, V_SAVE,
508 ap->a_cred, ap->a_p, 1);
509 if (error)
510 return (error);
511 }
512 tsize = np->n_size;
513 np->n_size = np->n_vattr.va_size = vap->va_size;
514 vnode_pager_setsize(vp, (u_long)np->n_size);
515 }
516 } else if ((vap->va_mtime.ts_sec != VNOVAL ||
517 vap->va_atime.ts_sec != VNOVAL) && (np->n_flag & NMODIFIED)) {
518 error = nfs_vinvalbuf(vp, V_SAVE, ap->a_cred, ap->a_p, 1);
519 if (error == EINTR)
520 return (error);
521 }
522 nfsstats.rpccnt[NFSPROC_SETATTR]++;
523 isnq = (VFSTONFS(vp->v_mount)->nm_flag & NFSMNT_NQNFS);
524 nfsm_reqhead(vp, NFSPROC_SETATTR, NFSX_FH+NFSX_SATTR(isnq));
525 nfsm_fhtom(vp);
526 nfsm_build(sp, struct nfsv2_sattr *, NFSX_SATTR(isnq));
527 if (vap->va_mode == (u_short)-1)
528 sp->sa_mode = VNOVAL;
529 else
530 sp->sa_mode = vtonfs_mode(vp->v_type, vap->va_mode);
531 if (vap->va_uid == (uid_t)-1)
532 sp->sa_uid = VNOVAL;
533 else
534 sp->sa_uid = txdr_unsigned(vap->va_uid);
535 if (vap->va_gid == (gid_t)-1)
536 sp->sa_gid = VNOVAL;
537 else
538 sp->sa_gid = txdr_unsigned(vap->va_gid);
539 if (isnq) {
540 txdr_hyper(&vap->va_size, &sp->sa_nqsize);
541 txdr_nqtime(&vap->va_atime, &sp->sa_nqatime);
542 txdr_nqtime(&vap->va_mtime, &sp->sa_nqmtime);
543 sp->sa_nqflags = txdr_unsigned(vap->va_flags);
544 sp->sa_nqrdev = VNOVAL;
545 } else {
546 sp->sa_nfssize = txdr_unsigned(vap->va_size);
547 txdr_nfstime(&vap->va_atime, &sp->sa_nfsatime);
548 txdr_nfstime(&vap->va_mtime, &sp->sa_nfsmtime);
549 }
550 nfsm_request(vp, NFSPROC_SETATTR, ap->a_p, ap->a_cred);
551 nfsm_loadattr(vp, (struct vattr *)0);
552 if ((VFSTONFS(vp->v_mount)->nm_flag & NFSMNT_NQNFS) &&
553 NQNFS_CKCACHABLE(vp, NQL_WRITE)) {
554 nfsm_dissect(tl, u_long *, 2*NFSX_UNSIGNED);
555 fxdr_hyper(tl, &frev);
556 if (frev > np->n_brev)
557 np->n_brev = frev;
558 }
559 nfsm_reqdone;
560 if (error) {
561 np->n_size = np->n_vattr.va_size = tsize;
562 vnode_pager_setsize(vp, (u_long)np->n_size);
563 }
564 return (error);
565 }
566
567 /*
568 * nfs lookup call, one step at a time...
569 * First look in cache
570 * If not found, unlock the directory nfsnode and do the rpc
571 */
572 int
573 nfs_lookup(ap)
574 struct vop_lookup_args /* {
575 struct vnodeop_desc *a_desc;
576 struct vnode *a_dvp;
577 struct vnode **a_vpp;
578 struct componentname *a_cnp;
579 } */ *ap;
580 {
581 register struct componentname *cnp = ap->a_cnp;
582 register struct vnode *dvp = ap->a_dvp;
583 register struct vnode **vpp = ap->a_vpp;
584 register int flags = cnp->cn_flags;
585 register struct vnode *vdp;
586 register u_long *tl;
587 register caddr_t cp;
588 register long t1, t2;
589 struct nfsmount *nmp;
590 caddr_t bpos, dpos, cp2;
591 time_t reqtime;
592 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
593 struct vnode *newvp;
594 long len;
595 nfsv2fh_t *fhp;
596 struct nfsnode *np;
597 int lockparent, wantparent, error = 0;
598 int nqlflag, cachable;
599 u_quad_t frev;
600
601 *vpp = NULL;
602 if (dvp->v_type != VDIR)
603 return (ENOTDIR);
604 lockparent = flags & LOCKPARENT;
605 wantparent = flags & (LOCKPARENT|WANTPARENT);
606 nmp = VFSTONFS(dvp->v_mount);
607 np = VTONFS(dvp);
608 if ((error = cache_lookup(dvp, vpp, cnp)) && error != ENOENT) {
609 struct vattr vattr;
610 int vpid;
611
612 vdp = *vpp;
613 vpid = vdp->v_id;
614 /*
615 * See the comment starting `Step through' in ufs/ufs_lookup.c
616 * for an explanation of the locking protocol
617 */
618 if (dvp == vdp) {
619 VREF(vdp);
620 error = 0;
621 } else
622 error = vget(vdp, 1);
623 if (!error) {
624 if (vpid == vdp->v_id) {
625 if (nmp->nm_flag & NFSMNT_NQNFS) {
626 if ((nmp->nm_flag & NFSMNT_NQLOOKLEASE) == 0) {
627 nfsstats.lookupcache_hits++;
628 if (cnp->cn_nameiop != LOOKUP &&
629 (flags & ISLASTCN))
630 cnp->cn_flags |= SAVENAME;
631 return (0);
632 } else if (NQNFS_CKCACHABLE(dvp, NQL_READ)) {
633 if (np->n_lrev != np->n_brev ||
634 (np->n_flag & NMODIFIED)) {
635 np->n_direofoffset = 0;
636 cache_purge(dvp);
637 error = nfs_vinvalbuf(dvp, 0,
638 cnp->cn_cred, cnp->cn_proc,
639 1);
640 if (error == EINTR)
641 return (error);
642 np->n_brev = np->n_lrev;
643 } else {
644 nfsstats.lookupcache_hits++;
645 if (cnp->cn_nameiop != LOOKUP &&
646 (flags & ISLASTCN))
647 cnp->cn_flags |= SAVENAME;
648 return (0);
649 }
650 }
651 } else if (!VOP_GETATTR(vdp, &vattr, cnp->cn_cred, cnp->cn_proc) &&
652 vattr.va_ctime.ts_sec == VTONFS(vdp)->n_ctime) {
653 nfsstats.lookupcache_hits++;
654 if (cnp->cn_nameiop != LOOKUP &&
655 (flags & ISLASTCN))
656 cnp->cn_flags |= SAVENAME;
657 return (0);
658 }
659 cache_purge(vdp);
660 }
661 vrele(vdp);
662 }
663 *vpp = NULLVP;
664 }
665 error = 0;
666 nfsstats.lookupcache_misses++;
667 nfsstats.rpccnt[NFSPROC_LOOKUP]++;
668 len = cnp->cn_namelen;
669 nfsm_reqhead(dvp, NFSPROC_LOOKUP, NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(len));
670
671 /*
672 * For nqnfs optionally piggyback a getlease request for the name
673 * being looked up.
674 */
675 if (nmp->nm_flag & NFSMNT_NQNFS) {
676 nfsm_build(tl, u_long *, NFSX_UNSIGNED);
677 if ((nmp->nm_flag & NFSMNT_NQLOOKLEASE) &&
678 ((cnp->cn_flags & MAKEENTRY) &&
679 (cnp->cn_nameiop != DELETE || !(flags & ISLASTCN))))
680 *tl = txdr_unsigned(nmp->nm_leaseterm);
681 else
682 *tl = 0;
683 }
684 nfsm_fhtom(dvp);
685 nfsm_strtom(cnp->cn_nameptr, len, NFS_MAXNAMLEN);
686 reqtime = time.tv_sec;
687 nfsm_request(dvp, NFSPROC_LOOKUP, cnp->cn_proc, cnp->cn_cred);
688 nfsmout:
689 if (error) {
690 if ((cnp->cn_nameiop == CREATE || cnp->cn_nameiop == RENAME) &&
691 (flags & ISLASTCN) && error == ENOENT)
692 error = EJUSTRETURN;
693 if (cnp->cn_nameiop != LOOKUP && (flags & ISLASTCN))
694 cnp->cn_flags |= SAVENAME;
695 return (error);
696 }
697 if (nmp->nm_flag & NFSMNT_NQNFS) {
698 nfsm_dissect(tl, u_long *, NFSX_UNSIGNED);
699 if (*tl) {
700 nqlflag = fxdr_unsigned(int, *tl);
701 nfsm_dissect(tl, u_long *, 4*NFSX_UNSIGNED);
702 cachable = fxdr_unsigned(int, *tl++);
703 reqtime += fxdr_unsigned(int, *tl++);
704 fxdr_hyper(tl, &frev);
705 } else
706 nqlflag = 0;
707 }
708 nfsm_dissect(fhp, nfsv2fh_t *, NFSX_FH);
709
710 /*
711 * Handle RENAME case...
712 */
713 if (cnp->cn_nameiop == RENAME && wantparent && (flags & ISLASTCN)) {
714 if (!bcmp(np->n_fh.fh_bytes, (caddr_t)fhp, NFSX_FH)) {
715 m_freem(mrep);
716 return (EISDIR);
717 }
718 if (error = nfs_nget(dvp->v_mount, fhp, &np)) {
719 m_freem(mrep);
720 return (error);
721 }
722 newvp = NFSTOV(np);
723 if (error =
724 nfs_loadattrcache(&newvp, &md, &dpos, (struct vattr *)0)) {
725 vrele(newvp);
726 m_freem(mrep);
727 return (error);
728 }
729 *vpp = newvp;
730 m_freem(mrep);
731 cnp->cn_flags |= SAVENAME;
732 return (0);
733 }
734
735 if (!bcmp(np->n_fh.fh_bytes, (caddr_t)fhp, NFSX_FH)) {
736 VREF(dvp);
737 newvp = dvp;
738 } else {
739 if (error = nfs_nget(dvp->v_mount, fhp, &np)) {
740 m_freem(mrep);
741 return (error);
742 }
743 newvp = NFSTOV(np);
744 }
745 if (error = nfs_loadattrcache(&newvp, &md, &dpos, (struct vattr *)0)) {
746 vrele(newvp);
747 m_freem(mrep);
748 return (error);
749 }
750 m_freem(mrep);
751 *vpp = newvp;
752 if (cnp->cn_nameiop != LOOKUP && (flags & ISLASTCN))
753 cnp->cn_flags |= SAVENAME;
754 if ((cnp->cn_flags & MAKEENTRY) &&
755 (cnp->cn_nameiop != DELETE || !(flags & ISLASTCN))) {
756 if ((nmp->nm_flag & NFSMNT_NQNFS) == 0)
757 np->n_ctime = np->n_vattr.va_ctime.ts_sec;
758 else if (nqlflag && reqtime > time.tv_sec)
759 nqnfs_clientlease(nmp, np, nqlflag, cachable, reqtime,
760 frev);
761 cache_enter(dvp, *vpp, cnp);
762 }
763 return (0);
764 }
765
766 /*
767 * nfs read call.
768 * Just call nfs_bioread() to do the work.
769 */
770 int
771 nfs_read(ap)
772 struct vop_read_args /* {
773 struct vnode *a_vp;
774 struct uio *a_uio;
775 int a_ioflag;
776 struct ucred *a_cred;
777 } */ *ap;
778 {
779 register struct vnode *vp = ap->a_vp;
780
781 if (vp->v_type != VREG)
782 return (EPERM);
783 return (nfs_bioread(vp, ap->a_uio, ap->a_ioflag, ap->a_cred));
784 }
785
786 /*
787 * nfs readlink call
788 */
789 int
790 nfs_readlink(ap)
791 struct vop_readlink_args /* {
792 struct vnode *a_vp;
793 struct uio *a_uio;
794 struct ucred *a_cred;
795 } */ *ap;
796 {
797 register struct vnode *vp = ap->a_vp;
798
799 if (vp->v_type != VLNK)
800 return (EPERM);
801 return (nfs_bioread(vp, ap->a_uio, 0, ap->a_cred));
802 }
803
804 /*
805 * Do a readlink rpc.
806 * Called by nfs_doio() from below the buffer cache.
807 */
808 int
809 nfs_readlinkrpc(vp, uiop, cred)
810 register struct vnode *vp;
811 struct uio *uiop;
812 struct ucred *cred;
813 {
814 register u_long *tl;
815 register caddr_t cp;
816 register long t1;
817 caddr_t bpos, dpos, cp2;
818 int error = 0;
819 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
820 long len;
821
822 nfsstats.rpccnt[NFSPROC_READLINK]++;
823 nfsm_reqhead(vp, NFSPROC_READLINK, NFSX_FH);
824 nfsm_fhtom(vp);
825 nfsm_request(vp, NFSPROC_READLINK, uiop->uio_procp, cred);
826 nfsm_strsiz(len, NFS_MAXPATHLEN);
827 nfsm_mtouio(uiop, len);
828 nfsm_reqdone;
829 return (error);
830 }
831
832 /*
833 * nfs read rpc call
834 * Ditto above
835 */
836 int
837 nfs_readrpc(vp, uiop, cred)
838 register struct vnode *vp;
839 struct uio *uiop;
840 struct ucred *cred;
841 {
842 register u_long *tl;
843 register caddr_t cp;
844 register long t1;
845 caddr_t bpos, dpos, cp2;
846 int error = 0;
847 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
848 struct nfsmount *nmp;
849 long len, retlen, tsiz;
850
851 nmp = VFSTONFS(vp->v_mount);
852 tsiz = uiop->uio_resid;
853 if (uiop->uio_offset + tsiz > 0xffffffff &&
854 (nmp->nm_flag & NFSMNT_NQNFS) == 0)
855 return (EFBIG);
856 while (tsiz > 0) {
857 nfsstats.rpccnt[NFSPROC_READ]++;
858 len = (tsiz > nmp->nm_rsize) ? nmp->nm_rsize : tsiz;
859 nfsm_reqhead(vp, NFSPROC_READ, NFSX_FH+NFSX_UNSIGNED*3);
860 nfsm_fhtom(vp);
861 nfsm_build(tl, u_long *, NFSX_UNSIGNED*3);
862 if (nmp->nm_flag & NFSMNT_NQNFS) {
863 txdr_hyper(&uiop->uio_offset, tl);
864 *(tl + 2) = txdr_unsigned(len);
865 } else {
866 *tl++ = txdr_unsigned(uiop->uio_offset);
867 *tl++ = txdr_unsigned(len);
868 *tl = 0;
869 }
870 nfsm_request(vp, NFSPROC_READ, uiop->uio_procp, cred);
871 nfsm_loadattr(vp, (struct vattr *)0);
872 nfsm_strsiz(retlen, nmp->nm_rsize);
873 nfsm_mtouio(uiop, retlen);
874 m_freem(mrep);
875 if (retlen < len)
876 tsiz = 0;
877 else
878 tsiz -= len;
879 }
880 nfsmout:
881 return (error);
882 }
883
884 /*
885 * nfs write call
886 */
887 int
888 nfs_writerpc(vp, uiop, cred, ioflags)
889 register struct vnode *vp;
890 struct uio *uiop;
891 struct ucred *cred;
892 int ioflags;
893 {
894 register u_long *tl;
895 register caddr_t cp;
896 register long t1;
897 caddr_t bpos, dpos, cp2;
898 int error = 0;
899 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
900 struct nfsmount *nmp;
901 struct nfsnode *np = VTONFS(vp);
902 u_quad_t frev;
903 long len, tsiz;
904
905 nmp = VFSTONFS(vp->v_mount);
906 tsiz = uiop->uio_resid;
907 if (uiop->uio_offset + tsiz > 0xffffffff &&
908 (nmp->nm_flag & NFSMNT_NQNFS) == 0)
909 return (EFBIG);
910 while (tsiz > 0) {
911 nfsstats.rpccnt[NFSPROC_WRITE]++;
912 len = (tsiz > nmp->nm_wsize) ? nmp->nm_wsize : tsiz;
913 nfsm_reqhead(vp, NFSPROC_WRITE,
914 NFSX_FH+NFSX_UNSIGNED*4+nfsm_rndup(len));
915 nfsm_fhtom(vp);
916 nfsm_build(tl, u_long *, NFSX_UNSIGNED * 4);
917 if (nmp->nm_flag & NFSMNT_NQNFS) {
918 txdr_hyper(&uiop->uio_offset, tl);
919 tl += 2;
920 if (ioflags & IO_APPEND)
921 *tl++ = txdr_unsigned(1);
922 else
923 *tl++ = 0;
924 } else {
925 *++tl = txdr_unsigned(uiop->uio_offset);
926 tl += 2;
927 }
928 *tl = txdr_unsigned(len);
929 nfsm_uiotom(uiop, len);
930 nfsm_request(vp, NFSPROC_WRITE, uiop->uio_procp, cred);
931 nfsm_loadattr(vp, (struct vattr *)0);
932 if (nmp->nm_flag & NFSMNT_MYWRITE)
933 VTONFS(vp)->n_mtime = VTONFS(vp)->n_vattr.va_mtime.ts_sec;
934 else if ((nmp->nm_flag & NFSMNT_NQNFS) &&
935 NQNFS_CKCACHABLE(vp, NQL_WRITE)) {
936 nfsm_dissect(tl, u_long *, 2*NFSX_UNSIGNED);
937 fxdr_hyper(tl, &frev);
938 if (frev > np->n_brev)
939 np->n_brev = frev;
940 }
941 m_freem(mrep);
942 tsiz -= len;
943 }
944 nfsmout:
945 if (error)
946 uiop->uio_resid = tsiz;
947 return (error);
948 }
949
950 /*
951 * nfs mknod call
952 * This is a kludge. Use a create rpc but with the IFMT bits of the mode
953 * set to specify the file type and the size field for rdev.
954 */
955 /* ARGSUSED */
956 int
957 nfs_mknod(ap)
958 struct vop_mknod_args /* {
959 struct vnode *a_dvp;
960 struct vnode **a_vpp;
961 struct componentname *a_cnp;
962 struct vattr *a_vap;
963 } */ *ap;
964 {
965 register struct vnode *dvp = ap->a_dvp;
966 register struct vattr *vap = ap->a_vap;
967 register struct componentname *cnp = ap->a_cnp;
968 register struct nfsv2_sattr *sp;
969 register u_long *tl;
970 register caddr_t cp;
971 register long t1, t2;
972 struct vnode *newvp;
973 struct vattr vattr;
974 char *cp2;
975 caddr_t bpos, dpos;
976 int error = 0, isnq;
977 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
978 u_long rdev;
979
980 isnq = (VFSTONFS(dvp->v_mount)->nm_flag & NFSMNT_NQNFS);
981 if (vap->va_type == VCHR || vap->va_type == VBLK)
982 rdev = txdr_unsigned(vap->va_rdev);
983 #ifdef FIFO
984 else if (vap->va_type == VFIFO)
985 rdev = 0xffffffff;
986 #endif /* FIFO */
987 else {
988 VOP_ABORTOP(dvp, cnp);
989 vput(dvp);
990 return (EOPNOTSUPP);
991 }
992 if (error = VOP_GETATTR(dvp, &vattr, cnp->cn_cred, cnp->cn_proc)) {
993 VOP_ABORTOP(dvp, cnp);
994 vput(dvp);
995 return (error);
996 }
997 nfsstats.rpccnt[NFSPROC_CREATE]++;
998 nfsm_reqhead(dvp, NFSPROC_CREATE,
999 NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(cnp->cn_namelen)+NFSX_SATTR(isnq));
1000 nfsm_fhtom(dvp);
1001 nfsm_strtom(cnp->cn_nameptr, cnp->cn_namelen, NFS_MAXNAMLEN);
1002 nfsm_build(sp, struct nfsv2_sattr *, NFSX_SATTR(isnq));
1003 sp->sa_mode = vtonfs_mode(vap->va_type, vap->va_mode);
1004 sp->sa_uid = txdr_unsigned(cnp->cn_cred->cr_uid);
1005 sp->sa_gid = txdr_unsigned(vattr.va_gid);
1006 if (isnq) {
1007 sp->sa_nqrdev = rdev;
1008 sp->sa_nqflags = 0;
1009 txdr_nqtime(&vap->va_atime, &sp->sa_nqatime);
1010 txdr_nqtime(&vap->va_mtime, &sp->sa_nqmtime);
1011 } else {
1012 sp->sa_nfssize = rdev;
1013 txdr_nfstime(&vap->va_atime, &sp->sa_nfsatime);
1014 txdr_nfstime(&vap->va_mtime, &sp->sa_nfsmtime);
1015 }
1016 nfsm_request(dvp, NFSPROC_CREATE, cnp->cn_proc, cnp->cn_cred);
1017 nfsm_mtofh(dvp, newvp);
1018 nfsm_reqdone;
1019 if (!error && (cnp->cn_flags & MAKEENTRY))
1020 cache_enter(dvp, newvp, cnp);
1021 FREE(cnp->cn_pnbuf, M_NAMEI);
1022 VTONFS(dvp)->n_flag |= NMODIFIED;
1023 VTONFS(dvp)->n_attrstamp = 0;
1024 vrele(dvp);
1025 return (error);
1026 }
1027
1028 /*
1029 * nfs file create call
1030 */
1031 int
1032 nfs_create(ap)
1033 struct vop_create_args /* {
1034 struct vnode *a_dvp;
1035 struct vnode **a_vpp;
1036 struct componentname *a_cnp;
1037 struct vattr *a_vap;
1038 } */ *ap;
1039 {
1040 register struct vnode *dvp = ap->a_dvp;
1041 register struct vattr *vap = ap->a_vap;
1042 register struct componentname *cnp = ap->a_cnp;
1043 register struct nfsv2_sattr *sp;
1044 register u_long *tl;
1045 register caddr_t cp;
1046 register long t1, t2;
1047 caddr_t bpos, dpos, cp2;
1048 int error = 0, isnq;
1049 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1050 struct vattr vattr;
1051
1052 if (error = VOP_GETATTR(dvp, &vattr, cnp->cn_cred, cnp->cn_proc)) {
1053 VOP_ABORTOP(dvp, cnp);
1054 vput(dvp);
1055 return (error);
1056 }
1057 nfsstats.rpccnt[NFSPROC_CREATE]++;
1058 isnq = (VFSTONFS(dvp->v_mount)->nm_flag & NFSMNT_NQNFS);
1059 nfsm_reqhead(dvp, NFSPROC_CREATE,
1060 NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(cnp->cn_namelen)+NFSX_SATTR(isnq));
1061 nfsm_fhtom(dvp);
1062 nfsm_strtom(cnp->cn_nameptr, cnp->cn_namelen, NFS_MAXNAMLEN);
1063 nfsm_build(sp, struct nfsv2_sattr *, NFSX_SATTR(isnq));
1064 sp->sa_mode = vtonfs_mode(vap->va_type, vap->va_mode);
1065 sp->sa_uid = txdr_unsigned(cnp->cn_cred->cr_uid);
1066 sp->sa_gid = txdr_unsigned(vattr.va_gid);
1067 if (isnq) {
1068 u_quad_t qval = 0;
1069
1070 txdr_hyper(&qval, &sp->sa_nqsize);
1071 sp->sa_nqflags = 0;
1072 sp->sa_nqrdev = -1;
1073 txdr_nqtime(&vap->va_atime, &sp->sa_nqatime);
1074 txdr_nqtime(&vap->va_mtime, &sp->sa_nqmtime);
1075 } else {
1076 sp->sa_nfssize = 0;
1077 txdr_nfstime(&vap->va_atime, &sp->sa_nfsatime);
1078 txdr_nfstime(&vap->va_mtime, &sp->sa_nfsmtime);
1079 }
1080 nfsm_request(dvp, NFSPROC_CREATE, cnp->cn_proc, cnp->cn_cred);
1081 nfsm_mtofh(dvp, *ap->a_vpp);
1082 nfsm_reqdone;
1083 if (!error && (cnp->cn_flags & MAKEENTRY))
1084 cache_enter(dvp, *ap->a_vpp, cnp);
1085 FREE(cnp->cn_pnbuf, M_NAMEI);
1086 VTONFS(dvp)->n_flag |= NMODIFIED;
1087 VTONFS(dvp)->n_attrstamp = 0;
1088 vrele(dvp);
1089 return (error);
1090 }
1091
1092 /*
1093 * nfs file remove call
1094 * To try and make nfs semantics closer to ufs semantics, a file that has
1095 * other processes using the vnode is renamed instead of removed and then
1096 * removed later on the last close.
1097 * - If v_usecount > 1
1098 * If a rename is not already in the works
1099 * call nfs_sillyrename() to set it up
1100 * else
1101 * do the remove rpc
1102 */
1103 int
1104 nfs_remove(ap)
1105 struct vop_remove_args /* {
1106 struct vnodeop_desc *a_desc;
1107 struct vnode * a_dvp;
1108 struct vnode * a_vp;
1109 struct componentname * a_cnp;
1110 } */ *ap;
1111 {
1112 register struct vnode *vp = ap->a_vp;
1113 register struct vnode *dvp = ap->a_dvp;
1114 register struct componentname *cnp = ap->a_cnp;
1115 register struct nfsnode *np = VTONFS(vp);
1116 register u_long *tl;
1117 register caddr_t cp;
1118 register long t2;
1119 caddr_t bpos, dpos;
1120 int error = 0;
1121 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1122
1123 if (vp->v_usecount > 1) {
1124 if (!np->n_sillyrename)
1125 error = nfs_sillyrename(dvp, vp, cnp);
1126 } else {
1127 /*
1128 * Purge the name cache so that the chance of a lookup for
1129 * the name succeeding while the remove is in progress is
1130 * minimized. Without node locking it can still happen, such
1131 * that an I/O op returns ESTALE, but since you get this if
1132 * another host removes the file..
1133 */
1134 cache_purge(vp);
1135 /*
1136 * Throw away biocache buffers. Mainly to avoid
1137 * unnecessary delayed writes.
1138 */
1139 error = nfs_vinvalbuf(vp, 0, cnp->cn_cred, cnp->cn_proc, 1);
1140 if (error == EINTR)
1141 return (error);
1142 /* Do the rpc */
1143 nfsstats.rpccnt[NFSPROC_REMOVE]++;
1144 nfsm_reqhead(dvp, NFSPROC_REMOVE,
1145 NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(cnp->cn_namelen));
1146 nfsm_fhtom(dvp);
1147 nfsm_strtom(cnp->cn_nameptr, cnp->cn_namelen, NFS_MAXNAMLEN);
1148 nfsm_request(dvp, NFSPROC_REMOVE, cnp->cn_proc, cnp->cn_cred);
1149 nfsm_reqdone;
1150 FREE(cnp->cn_pnbuf, M_NAMEI);
1151 VTONFS(dvp)->n_flag |= NMODIFIED;
1152 VTONFS(dvp)->n_attrstamp = 0;
1153 /*
1154 * Kludge City: If the first reply to the remove rpc is lost..
1155 * the reply to the retransmitted request will be ENOENT
1156 * since the file was in fact removed
1157 * Therefore, we cheat and return success.
1158 */
1159 if (error == ENOENT)
1160 error = 0;
1161 }
1162 np->n_attrstamp = 0;
1163 vrele(dvp);
1164 vrele(vp);
1165 return (error);
1166 }
1167
1168 /*
1169 * nfs file remove rpc called from nfs_inactive
1170 */
1171 int
1172 nfs_removeit(sp)
1173 register struct sillyrename *sp;
1174 {
1175 register u_long *tl;
1176 register caddr_t cp;
1177 register long t2;
1178 caddr_t bpos, dpos;
1179 int error = 0;
1180 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1181
1182 nfsstats.rpccnt[NFSPROC_REMOVE]++;
1183 nfsm_reqhead(sp->s_dvp, NFSPROC_REMOVE,
1184 NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(sp->s_namlen));
1185 nfsm_fhtom(sp->s_dvp);
1186 nfsm_strtom(sp->s_name, sp->s_namlen, NFS_MAXNAMLEN);
1187 nfsm_request(sp->s_dvp, NFSPROC_REMOVE, NULL, sp->s_cred);
1188 nfsm_reqdone;
1189 VTONFS(sp->s_dvp)->n_flag |= NMODIFIED;
1190 VTONFS(sp->s_dvp)->n_attrstamp = 0;
1191 return (error);
1192 }
1193
1194 /*
1195 * nfs file rename call
1196 */
1197 int
1198 nfs_rename(ap)
1199 struct vop_rename_args /* {
1200 struct vnode *a_fdvp;
1201 struct vnode *a_fvp;
1202 struct componentname *a_fcnp;
1203 struct vnode *a_tdvp;
1204 struct vnode *a_tvp;
1205 struct componentname *a_tcnp;
1206 } */ *ap;
1207 {
1208 register struct vnode *fvp = ap->a_fvp;
1209 register struct vnode *tvp = ap->a_tvp;
1210 register struct vnode *fdvp = ap->a_fdvp;
1211 register struct vnode *tdvp = ap->a_tdvp;
1212 register struct componentname *tcnp = ap->a_tcnp;
1213 register struct componentname *fcnp = ap->a_fcnp;
1214 register u_long *tl;
1215 register caddr_t cp;
1216 register long t2;
1217 caddr_t bpos, dpos;
1218 int error = 0;
1219 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1220
1221 /* Check for cross-device rename */
1222 if ((fvp->v_mount != tdvp->v_mount) ||
1223 (tvp && (fvp->v_mount != tvp->v_mount))) {
1224 error = EXDEV;
1225 goto out;
1226 }
1227
1228
1229 nfsstats.rpccnt[NFSPROC_RENAME]++;
1230 nfsm_reqhead(fdvp, NFSPROC_RENAME,
1231 (NFSX_FH+NFSX_UNSIGNED)*2+nfsm_rndup(fcnp->cn_namelen)+
1232 nfsm_rndup(fcnp->cn_namelen)); /* or fcnp->cn_cred?*/
1233 nfsm_fhtom(fdvp);
1234 nfsm_strtom(fcnp->cn_nameptr, fcnp->cn_namelen, NFS_MAXNAMLEN);
1235 nfsm_fhtom(tdvp);
1236 nfsm_strtom(tcnp->cn_nameptr, tcnp->cn_namelen, NFS_MAXNAMLEN);
1237 nfsm_request(fdvp, NFSPROC_RENAME, tcnp->cn_proc, tcnp->cn_cred);
1238 nfsm_reqdone;
1239 VTONFS(fdvp)->n_flag |= NMODIFIED;
1240 VTONFS(fdvp)->n_attrstamp = 0;
1241 VTONFS(tdvp)->n_flag |= NMODIFIED;
1242 VTONFS(tdvp)->n_attrstamp = 0;
1243 if (fvp->v_type == VDIR) {
1244 if (tvp != NULL && tvp->v_type == VDIR)
1245 cache_purge(tdvp);
1246 cache_purge(fdvp);
1247 }
1248 out:
1249 if (tdvp == tvp)
1250 vrele(tdvp);
1251 else
1252 vput(tdvp);
1253 if (tvp)
1254 vput(tvp);
1255 vrele(fdvp);
1256 vrele(fvp);
1257 /*
1258 * Kludge: Map ENOENT => 0 assuming that it is a reply to a retry.
1259 */
1260 if (error == ENOENT)
1261 error = 0;
1262 return (error);
1263 }
1264
1265 /*
1266 * nfs file rename rpc called from nfs_remove() above
1267 */
1268 int
1269 nfs_renameit(sdvp, scnp, sp)
1270 struct vnode *sdvp;
1271 struct componentname *scnp;
1272 register struct sillyrename *sp;
1273 {
1274 register u_long *tl;
1275 register caddr_t cp;
1276 register long t2;
1277 caddr_t bpos, dpos;
1278 int error = 0;
1279 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1280
1281 nfsstats.rpccnt[NFSPROC_RENAME]++;
1282 nfsm_reqhead(sdvp, NFSPROC_RENAME,
1283 (NFSX_FH+NFSX_UNSIGNED)*2+nfsm_rndup(scnp->cn_namelen)+
1284 nfsm_rndup(sp->s_namlen));
1285 nfsm_fhtom(sdvp);
1286 nfsm_strtom(scnp->cn_nameptr, scnp->cn_namelen, NFS_MAXNAMLEN);
1287 nfsm_fhtom(sdvp);
1288 nfsm_strtom(sp->s_name, sp->s_namlen, NFS_MAXNAMLEN);
1289 nfsm_request(sdvp, NFSPROC_RENAME, scnp->cn_proc, scnp->cn_cred);
1290 nfsm_reqdone;
1291 FREE(scnp->cn_pnbuf, M_NAMEI);
1292 VTONFS(sdvp)->n_flag |= NMODIFIED;
1293 VTONFS(sdvp)->n_attrstamp = 0;
1294 return (error);
1295 }
1296
1297 /*
1298 * nfs hard link create call
1299 */
1300 int
1301 nfs_link(ap)
1302 struct vop_link_args /* {
1303 struct vnode *a_vp;
1304 struct vnode *a_tdvp;
1305 struct componentname *a_cnp;
1306 } */ *ap;
1307 {
1308 register struct vnode *vp = ap->a_vp;
1309 register struct vnode *tdvp = ap->a_tdvp;
1310 register struct componentname *cnp = ap->a_cnp;
1311 register u_long *tl;
1312 register caddr_t cp;
1313 register long t2;
1314 caddr_t bpos, dpos;
1315 int error = 0;
1316 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1317
1318 if (vp->v_mount != tdvp->v_mount) {
1319 /*VOP_ABORTOP(vp, cnp);*/
1320 if (tdvp == vp)
1321 vrele(vp);
1322 else
1323 vput(vp);
1324 return (EXDEV);
1325 }
1326
1327 /*
1328 * Push all writes to the server, so that the attribute cache
1329 * doesn't get "out of sync" with the server.
1330 * XXX There should be a better way!
1331 */
1332 VOP_FSYNC(tdvp, cnp->cn_cred, MNT_WAIT, cnp->cn_proc);
1333
1334 nfsstats.rpccnt[NFSPROC_LINK]++;
1335 nfsm_reqhead(tdvp, NFSPROC_LINK,
1336 NFSX_FH*2+NFSX_UNSIGNED+nfsm_rndup(cnp->cn_namelen));
1337 nfsm_fhtom(tdvp);
1338 nfsm_fhtom(vp);
1339 nfsm_strtom(cnp->cn_nameptr, cnp->cn_namelen, NFS_MAXNAMLEN);
1340 nfsm_request(tdvp, NFSPROC_LINK, cnp->cn_proc, cnp->cn_cred);
1341 nfsm_reqdone;
1342 FREE(cnp->cn_pnbuf, M_NAMEI);
1343 VTONFS(tdvp)->n_attrstamp = 0;
1344 VTONFS(vp)->n_flag |= NMODIFIED;
1345 VTONFS(vp)->n_attrstamp = 0;
1346 vrele(vp);
1347 /*
1348 * Kludge: Map EEXIST => 0 assuming that it is a reply to a retry.
1349 */
1350 if (error == EEXIST)
1351 error = 0;
1352 return (error);
1353 }
1354
1355 /*
1356 * nfs symbolic link create call
1357 */
1358 /* start here */
1359 int
1360 nfs_symlink(ap)
1361 struct vop_symlink_args /* {
1362 struct vnode *a_dvp;
1363 struct vnode **a_vpp;
1364 struct componentname *a_cnp;
1365 struct vattr *a_vap;
1366 char *a_target;
1367 } */ *ap;
1368 {
1369 register struct vnode *dvp = ap->a_dvp;
1370 register struct vattr *vap = ap->a_vap;
1371 register struct componentname *cnp = ap->a_cnp;
1372 register struct nfsv2_sattr *sp;
1373 register u_long *tl;
1374 register caddr_t cp;
1375 register long t2;
1376 caddr_t bpos, dpos;
1377 int slen, error = 0, isnq;
1378 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1379
1380 nfsstats.rpccnt[NFSPROC_SYMLINK]++;
1381 slen = strlen(ap->a_target);
1382 isnq = (VFSTONFS(dvp->v_mount)->nm_flag & NFSMNT_NQNFS);
1383 nfsm_reqhead(dvp, NFSPROC_SYMLINK, NFSX_FH+2*NFSX_UNSIGNED+
1384 nfsm_rndup(cnp->cn_namelen)+nfsm_rndup(slen)+NFSX_SATTR(isnq));
1385 nfsm_fhtom(dvp);
1386 nfsm_strtom(cnp->cn_nameptr, cnp->cn_namelen, NFS_MAXNAMLEN);
1387 nfsm_strtom(ap->a_target, slen, NFS_MAXPATHLEN);
1388 nfsm_build(sp, struct nfsv2_sattr *, NFSX_SATTR(isnq));
1389 sp->sa_mode = vtonfs_mode(VLNK, vap->va_mode);
1390 sp->sa_uid = txdr_unsigned(cnp->cn_cred->cr_uid);
1391 sp->sa_gid = txdr_unsigned(cnp->cn_cred->cr_gid);
1392 if (isnq) {
1393 quad_t qval = -1;
1394
1395 txdr_hyper(&qval, &sp->sa_nqsize);
1396 sp->sa_nqflags = 0;
1397 txdr_nqtime(&vap->va_atime, &sp->sa_nqatime);
1398 txdr_nqtime(&vap->va_mtime, &sp->sa_nqmtime);
1399 } else {
1400 sp->sa_nfssize = -1;
1401 txdr_nfstime(&vap->va_atime, &sp->sa_nfsatime);
1402 txdr_nfstime(&vap->va_mtime, &sp->sa_nfsmtime);
1403 }
1404 nfsm_request(dvp, NFSPROC_SYMLINK, cnp->cn_proc, cnp->cn_cred);
1405 nfsm_reqdone;
1406 FREE(cnp->cn_pnbuf, M_NAMEI);
1407 VTONFS(dvp)->n_flag |= NMODIFIED;
1408 VTONFS(dvp)->n_attrstamp = 0;
1409 vrele(dvp);
1410 /*
1411 * Kludge: Map EEXIST => 0 assuming that it is a reply to a retry.
1412 */
1413 if (error == EEXIST)
1414 error = 0;
1415 return (error);
1416 }
1417
1418 /*
1419 * nfs make dir call
1420 */
1421 int
1422 nfs_mkdir(ap)
1423 struct vop_mkdir_args /* {
1424 struct vnode *a_dvp;
1425 struct vnode **a_vpp;
1426 struct componentname *a_cnp;
1427 struct vattr *a_vap;
1428 } */ *ap;
1429 {
1430 register struct vnode *dvp = ap->a_dvp;
1431 register struct vattr *vap = ap->a_vap;
1432 register struct componentname *cnp = ap->a_cnp;
1433 register struct vnode **vpp = ap->a_vpp;
1434 register struct nfsv2_sattr *sp;
1435 register u_long *tl;
1436 register caddr_t cp;
1437 register long t1, t2;
1438 register int len;
1439 caddr_t bpos, dpos, cp2;
1440 int error = 0, firsttry = 1, isnq;
1441 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1442 struct vattr vattr;
1443
1444 if (error = VOP_GETATTR(dvp, &vattr, cnp->cn_cred, cnp->cn_proc)) {
1445 VOP_ABORTOP(dvp, cnp);
1446 vput(dvp);
1447 return (error);
1448 }
1449 len = cnp->cn_namelen;
1450 isnq = (VFSTONFS(dvp->v_mount)->nm_flag & NFSMNT_NQNFS);
1451 nfsstats.rpccnt[NFSPROC_MKDIR]++;
1452 nfsm_reqhead(dvp, NFSPROC_MKDIR,
1453 NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(len)+NFSX_SATTR(isnq));
1454 nfsm_fhtom(dvp);
1455 nfsm_strtom(cnp->cn_nameptr, len, NFS_MAXNAMLEN);
1456 nfsm_build(sp, struct nfsv2_sattr *, NFSX_SATTR(isnq));
1457 sp->sa_mode = vtonfs_mode(VDIR, vap->va_mode);
1458 sp->sa_uid = txdr_unsigned(cnp->cn_cred->cr_uid);
1459 sp->sa_gid = txdr_unsigned(vattr.va_gid);
1460 if (isnq) {
1461 quad_t qval = -1;
1462
1463 txdr_hyper(&qval, &sp->sa_nqsize);
1464 sp->sa_nqflags = 0;
1465 txdr_nqtime(&vap->va_atime, &sp->sa_nqatime);
1466 txdr_nqtime(&vap->va_mtime, &sp->sa_nqmtime);
1467 } else {
1468 sp->sa_nfssize = -1;
1469 txdr_nfstime(&vap->va_atime, &sp->sa_nfsatime);
1470 txdr_nfstime(&vap->va_mtime, &sp->sa_nfsmtime);
1471 }
1472 nfsm_request(dvp, NFSPROC_MKDIR, cnp->cn_proc, cnp->cn_cred);
1473 nfsm_mtofh(dvp, *vpp);
1474 nfsm_reqdone;
1475 VTONFS(dvp)->n_flag |= NMODIFIED;
1476 VTONFS(dvp)->n_attrstamp = 0;
1477 /*
1478 * Kludge: Map EEXIST => 0 assuming that you have a reply to a retry
1479 * if we can succeed in looking up the directory.
1480 * "firsttry" is necessary since the macros may "goto nfsmout" which
1481 * is above the if on errors. (Ugh)
1482 */
1483 if (error == EEXIST && firsttry) {
1484 firsttry = 0;
1485 error = 0;
1486 nfsstats.rpccnt[NFSPROC_LOOKUP]++;
1487 *vpp = NULL;
1488 nfsm_reqhead(dvp, NFSPROC_LOOKUP,
1489 NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(len));
1490 nfsm_fhtom(dvp);
1491 nfsm_strtom(cnp->cn_nameptr, len, NFS_MAXNAMLEN);
1492 nfsm_request(dvp, NFSPROC_LOOKUP, cnp->cn_proc, cnp->cn_cred);
1493 nfsm_mtofh(dvp, *vpp);
1494 if ((*vpp)->v_type != VDIR) {
1495 vput(*vpp);
1496 error = EEXIST;
1497 }
1498 m_freem(mrep);
1499 }
1500 FREE(cnp->cn_pnbuf, M_NAMEI);
1501 vrele(dvp);
1502 return (error);
1503 }
1504
1505 /*
1506 * nfs remove directory call
1507 */
1508 int
1509 nfs_rmdir(ap)
1510 struct vop_rmdir_args /* {
1511 struct vnode *a_dvp;
1512 struct vnode *a_vp;
1513 struct componentname *a_cnp;
1514 } */ *ap;
1515 {
1516 register struct vnode *vp = ap->a_vp;
1517 register struct vnode *dvp = ap->a_dvp;
1518 register struct componentname *cnp = ap->a_cnp;
1519 register u_long *tl;
1520 register caddr_t cp;
1521 register long t2;
1522 caddr_t bpos, dpos;
1523 int error = 0;
1524 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1525
1526 if (dvp == vp) {
1527 vrele(dvp);
1528 vrele(dvp);
1529 FREE(cnp->cn_pnbuf, M_NAMEI);
1530 return (EINVAL);
1531 }
1532 nfsstats.rpccnt[NFSPROC_RMDIR]++;
1533 nfsm_reqhead(dvp, NFSPROC_RMDIR,
1534 NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(cnp->cn_namelen));
1535 nfsm_fhtom(dvp);
1536 nfsm_strtom(cnp->cn_nameptr, cnp->cn_namelen, NFS_MAXNAMLEN);
1537 nfsm_request(dvp, NFSPROC_RMDIR, cnp->cn_proc, cnp->cn_cred);
1538 nfsm_reqdone;
1539 FREE(cnp->cn_pnbuf, M_NAMEI);
1540 VTONFS(dvp)->n_flag |= NMODIFIED;
1541 VTONFS(dvp)->n_attrstamp = 0;
1542 cache_purge(dvp);
1543 cache_purge(vp);
1544 vrele(vp);
1545 vrele(dvp);
1546 /*
1547 * Kludge: Map ENOENT => 0 assuming that you have a reply to a retry.
1548 */
1549 if (error == ENOENT)
1550 error = 0;
1551 return (error);
1552 }
1553
1554 /*
1555 * nfs readdir call
1556 * Although cookie is defined as opaque, I translate it to/from net byte
1557 * order so that it looks more sensible. This appears consistent with the
1558 * Ultrix implementation of NFS.
1559 */
1560 int
1561 nfs_readdir(ap)
1562 struct vop_readdir_args /* {
1563 struct vnode *a_vp;
1564 struct uio *a_uio;
1565 struct ucred *a_cred;
1566 int *a_eofflag;
1567 u_long *a_cookies;
1568 int a_ncookies;
1569 } */ *ap;
1570 {
1571 register struct vnode *vp = ap->a_vp;
1572 register struct nfsnode *np = VTONFS(vp);
1573 register struct uio *uio = ap->a_uio;
1574 int tresid, error;
1575 struct vattr vattr;
1576
1577 /*
1578 * We don't allow exporting NFS mounts, and currently local requests
1579 * do not need cookies.
1580 */
1581 if (ap->a_ncookies)
1582 panic("nfs_readdir: not hungry");
1583
1584 if (vp->v_type != VDIR)
1585 return (EPERM);
1586 /*
1587 * First, check for hit on the EOF offset cache
1588 */
1589 if (uio->uio_offset != 0 && uio->uio_offset == np->n_direofoffset &&
1590 (np->n_flag & NMODIFIED) == 0) {
1591 if (VFSTONFS(vp->v_mount)->nm_flag & NFSMNT_NQNFS) {
1592 if (NQNFS_CKCACHABLE(vp, NQL_READ)) {
1593 nfsstats.direofcache_hits++;
1594 return (0);
1595 }
1596 } else if (VOP_GETATTR(vp, &vattr, ap->a_cred, uio->uio_procp) == 0 &&
1597 np->n_mtime == vattr.va_mtime.ts_sec) {
1598 nfsstats.direofcache_hits++;
1599 return (0);
1600 }
1601 }
1602
1603 /*
1604 * Call nfs_bioread() to do the real work.
1605 */
1606 tresid = uio->uio_resid;
1607 error = nfs_bioread(vp, uio, 0, ap->a_cred);
1608
1609 if (!error && uio->uio_resid == tresid)
1610 nfsstats.direofcache_misses++;
1611 return (error);
1612 }
1613
1614 /*
1615 * Readdir rpc call.
1616 * Called from below the buffer cache by nfs_doio().
1617 */
1618 int
1619 nfs_readdirrpc(vp, uiop, cred)
1620 register struct vnode *vp;
1621 struct uio *uiop;
1622 struct ucred *cred;
1623 {
1624 register long len;
1625 register struct dirent *dp;
1626 register u_long *tl;
1627 register caddr_t cp;
1628 register long t1;
1629 long tlen, lastlen;
1630 caddr_t bpos, dpos, cp2;
1631 int error = 0;
1632 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1633 struct mbuf *md2;
1634 caddr_t dpos2;
1635 int siz;
1636 int more_dirs = 1;
1637 u_long off, savoff;
1638 struct dirent *savdp;
1639 struct nfsmount *nmp;
1640 struct nfsnode *np = VTONFS(vp);
1641 long tresid;
1642
1643 nmp = VFSTONFS(vp->v_mount);
1644 tresid = uiop->uio_resid;
1645 /*
1646 * Loop around doing readdir rpc's of size uio_resid or nm_rsize,
1647 * whichever is smaller, truncated to a multiple of NFS_DIRBLKSIZ.
1648 * The stopping criteria is EOF or buffer full.
1649 */
1650 while (more_dirs && uiop->uio_resid >= NFS_DIRBLKSIZ) {
1651 nfsstats.rpccnt[NFSPROC_READDIR]++;
1652 nfsm_reqhead(vp, NFSPROC_READDIR,
1653 NFSX_FH + 2 * NFSX_UNSIGNED);
1654 nfsm_fhtom(vp);
1655 nfsm_build(tl, u_long *, 2 * NFSX_UNSIGNED);
1656 off = (u_long)uiop->uio_offset;
1657 *tl++ = txdr_unsigned(off);
1658 *tl = txdr_unsigned(((uiop->uio_resid > nmp->nm_rsize) ?
1659 nmp->nm_rsize : uiop->uio_resid) & ~(NFS_DIRBLKSIZ-1));
1660 nfsm_request(vp, NFSPROC_READDIR, uiop->uio_procp, cred);
1661 siz = 0;
1662 nfsm_dissect(tl, u_long *, NFSX_UNSIGNED);
1663 more_dirs = fxdr_unsigned(int, *tl);
1664
1665 /* Save the position so that we can do nfsm_mtouio() later */
1666 dpos2 = dpos;
1667 md2 = md;
1668
1669 /* loop thru the dir entries, doctoring them to 4bsd form */
1670 #ifdef lint
1671 dp = (struct dirent *)0;
1672 #endif /* lint */
1673 while (more_dirs && siz < uiop->uio_resid) {
1674 savoff = off; /* Hold onto offset and dp */
1675 savdp = dp;
1676 nfsm_dissect(tl, u_long *, 2 * NFSX_UNSIGNED);
1677 dp = (struct dirent *)tl;
1678 dp->d_fileno = fxdr_unsigned(u_long, *tl++);
1679 len = fxdr_unsigned(int, *tl);
1680 if (len <= 0 || len > NFS_MAXNAMLEN) {
1681 error = EBADRPC;
1682 m_freem(mrep);
1683 goto nfsmout;
1684 }
1685 dp->d_namlen = (u_char)len;
1686 dp->d_type = DT_UNKNOWN;
1687 nfsm_adv(len); /* Point past name */
1688 tlen = nfsm_rndup(len);
1689 /*
1690 * This should not be necessary, but some servers have
1691 * broken XDR such that these bytes are not null filled.
1692 */
1693 if (tlen != len) {
1694 *dpos = '\0'; /* Null-terminate */
1695 nfsm_adv(tlen - len);
1696 len = tlen;
1697 }
1698 nfsm_dissect(tl, u_long *, 2 * NFSX_UNSIGNED);
1699 off = fxdr_unsigned(u_long, *tl);
1700 *tl++ = 0; /* Ensures null termination of name */
1701 more_dirs = fxdr_unsigned(int, *tl);
1702 dp->d_reclen = len + 4 * NFSX_UNSIGNED;
1703 siz += dp->d_reclen;
1704 }
1705 /*
1706 * If at end of rpc data, get the eof boolean
1707 */
1708 if (!more_dirs) {
1709 nfsm_dissect(tl, u_long *, NFSX_UNSIGNED);
1710 more_dirs = (fxdr_unsigned(int, *tl) == 0);
1711
1712 /*
1713 * If at EOF, cache directory offset
1714 */
1715 if (!more_dirs)
1716 np->n_direofoffset = off;
1717 }
1718 /*
1719 * If there is too much to fit in the data buffer, use savoff and
1720 * savdp to trim off the last record.
1721 * --> we are not at eof
1722 */
1723 if (siz > uiop->uio_resid) {
1724 off = savoff;
1725 siz -= dp->d_reclen;
1726 dp = savdp;
1727 more_dirs = 0; /* Paranoia */
1728 }
1729 if (siz > 0) {
1730 lastlen = dp->d_reclen;
1731 md = md2;
1732 dpos = dpos2;
1733 nfsm_mtouio(uiop, siz);
1734 uiop->uio_offset = (off_t)off;
1735 } else
1736 more_dirs = 0; /* Ugh, never happens, but in case.. */
1737 m_freem(mrep);
1738 }
1739 /*
1740 * Fill last record, iff any, out to a multiple of NFS_DIRBLKSIZ
1741 * by increasing d_reclen for the last record.
1742 */
1743 if (uiop->uio_resid < tresid) {
1744 len = uiop->uio_resid & (NFS_DIRBLKSIZ - 1);
1745 if (len > 0) {
1746 dp = (struct dirent *)
1747 (uiop->uio_iov->iov_base - lastlen);
1748 dp->d_reclen += len;
1749 uiop->uio_iov->iov_base += len;
1750 uiop->uio_iov->iov_len -= len;
1751 uiop->uio_resid -= len;
1752 }
1753 }
1754 nfsmout:
1755 return (error);
1756 }
1757
1758 /*
1759 * Nqnfs readdir_and_lookup RPC. Used in place of nfs_readdirrpc().
1760 */
1761 int
1762 nfs_readdirlookrpc(vp, uiop, cred)
1763 struct vnode *vp;
1764 register struct uio *uiop;
1765 struct ucred *cred;
1766 {
1767 register int len;
1768 register struct dirent *dp;
1769 register u_long *tl;
1770 register caddr_t cp;
1771 register long t1;
1772 caddr_t bpos, dpos, cp2;
1773 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
1774 struct nameidata nami, *ndp = &nami;
1775 struct componentname *cnp = &ndp->ni_cnd;
1776 u_long off, endoff, fileno;
1777 time_t reqtime, ltime;
1778 struct nfsmount *nmp;
1779 struct nfsnode *np;
1780 struct vnode *newvp;
1781 nfsv2fh_t *fhp;
1782 u_quad_t frev;
1783 int error = 0, tlen, more_dirs = 1, tresid, doit, bigenough, i;
1784 int cachable;
1785
1786 if (uiop->uio_iovcnt != 1)
1787 panic("nfs rdirlook");
1788 nmp = VFSTONFS(vp->v_mount);
1789 tresid = uiop->uio_resid;
1790 ndp->ni_dvp = vp;
1791 newvp = NULLVP;
1792 /*
1793 * Loop around doing readdir rpc's of size uio_resid or nm_rsize,
1794 * whichever is smaller, truncated to a multiple of NFS_DIRBLKSIZ.
1795 * The stopping criteria is EOF or buffer full.
1796 */
1797 while (more_dirs && uiop->uio_resid >= NFS_DIRBLKSIZ) {
1798 nfsstats.rpccnt[NQNFSPROC_READDIRLOOK]++;
1799 nfsm_reqhead(vp, NQNFSPROC_READDIRLOOK,
1800 NFSX_FH + 3 * NFSX_UNSIGNED);
1801 nfsm_fhtom(vp);
1802 nfsm_build(tl, u_long *, 3 * NFSX_UNSIGNED);
1803 off = (u_long)uiop->uio_offset;
1804 *tl++ = txdr_unsigned(off);
1805 *tl++ = txdr_unsigned(((uiop->uio_resid > nmp->nm_rsize) ?
1806 nmp->nm_rsize : uiop->uio_resid) & ~(NFS_DIRBLKSIZ-1));
1807 if (nmp->nm_flag & NFSMNT_NQLOOKLEASE)
1808 *tl = txdr_unsigned(nmp->nm_leaseterm);
1809 else
1810 *tl = 0;
1811 reqtime = time.tv_sec;
1812 nfsm_request(vp, NQNFSPROC_READDIRLOOK, uiop->uio_procp, cred);
1813 nfsm_dissect(tl, u_long *, NFSX_UNSIGNED);
1814 more_dirs = fxdr_unsigned(int, *tl);
1815
1816 /* loop thru the dir entries, doctoring them to 4bsd form */
1817 bigenough = 1;
1818 while (more_dirs && bigenough) {
1819 doit = 1;
1820 nfsm_dissect(tl, u_long *, 4 * NFSX_UNSIGNED);
1821 if (nmp->nm_flag & NFSMNT_NQLOOKLEASE) {
1822 cachable = fxdr_unsigned(int, *tl++);
1823 ltime = reqtime + fxdr_unsigned(int, *tl++);
1824 fxdr_hyper(tl, &frev);
1825 }
1826 nfsm_dissect(fhp, nfsv2fh_t *, NFSX_FH);
1827 if (!bcmp(VTONFS(vp)->n_fh.fh_bytes, (caddr_t)fhp, NFSX_FH)) {
1828 VREF(vp);
1829 newvp = vp;
1830 np = VTONFS(vp);
1831 } else {
1832 if (error = nfs_nget(vp->v_mount, fhp, &np))
1833 doit = 0;
1834 newvp = NFSTOV(np);
1835 }
1836 if (error = nfs_loadattrcache(&newvp, &md, &dpos,
1837 (struct vattr *)0))
1838 doit = 0;
1839 nfsm_dissect(tl, u_long *, 2 * NFSX_UNSIGNED);
1840 fileno = fxdr_unsigned(u_long, *tl++);
1841 len = fxdr_unsigned(int, *tl);
1842 if (len <= 0 || len > NFS_MAXNAMLEN) {
1843 error = EBADRPC;
1844 m_freem(mrep);
1845 goto nfsmout;
1846 }
1847 tlen = (len + 4) & ~0x3;
1848 if ((tlen + DIRHDSIZ) > uiop->uio_resid)
1849 bigenough = 0;
1850 if (bigenough && doit) {
1851 dp = (struct dirent *)uiop->uio_iov->iov_base;
1852 dp->d_fileno = fileno;
1853 dp->d_namlen = len;
1854 dp->d_reclen = tlen + DIRHDSIZ;
1855 dp->d_type =
1856 IFTODT(VTTOIF(np->n_vattr.va_type));
1857 uiop->uio_resid -= DIRHDSIZ;
1858 uiop->uio_iov->iov_base += DIRHDSIZ;
1859 uiop->uio_iov->iov_len -= DIRHDSIZ;
1860 cnp->cn_nameptr = uiop->uio_iov->iov_base;
1861 cnp->cn_namelen = len;
1862 ndp->ni_vp = newvp;
1863 nfsm_mtouio(uiop, len);
1864 cp = uiop->uio_iov->iov_base;
1865 tlen -= len;
1866 for (i = 0; i < tlen; i++)
1867 *cp++ = '\0';
1868 uiop->uio_iov->iov_base += tlen;
1869 uiop->uio_iov->iov_len -= tlen;
1870 uiop->uio_resid -= tlen;
1871 cnp->cn_hash = 0;
1872 for (cp = cnp->cn_nameptr, i = 1; i <= len; i++, cp++)
1873 cnp->cn_hash += (unsigned char)*cp * i;
1874 if ((nmp->nm_flag & NFSMNT_NQLOOKLEASE) &&
1875 ltime > time.tv_sec)
1876 nqnfs_clientlease(nmp, np, NQL_READ,
1877 cachable, ltime, frev);
1878 if (cnp->cn_namelen <= NCHNAMLEN)
1879 cache_enter(ndp->ni_dvp, ndp->ni_vp, cnp);
1880 } else {
1881 nfsm_adv(nfsm_rndup(len));
1882 }
1883 if (newvp != NULLVP) {
1884 vrele(newvp);
1885 newvp = NULLVP;
1886 }
1887 nfsm_dissect(tl, u_long *, 2 * NFSX_UNSIGNED);
1888 if (bigenough)
1889 endoff = off = fxdr_unsigned(u_long, *tl++);
1890 else
1891 endoff = fxdr_unsigned(u_long, *tl++);
1892 more_dirs = fxdr_unsigned(int, *tl);
1893 }
1894 /*
1895 * If at end of rpc data, get the eof boolean
1896 */
1897 if (!more_dirs) {
1898 nfsm_dissect(tl, u_long *, NFSX_UNSIGNED);
1899 more_dirs = (fxdr_unsigned(int, *tl) == 0);
1900
1901 /*
1902 * If at EOF, cache directory offset
1903 */
1904 if (!more_dirs)
1905 VTONFS(vp)->n_direofoffset = endoff;
1906 }
1907 if (uiop->uio_resid < tresid)
1908 uiop->uio_offset = (off_t)off;
1909 else
1910 more_dirs = 0;
1911 m_freem(mrep);
1912 }
1913 /*
1914 * Fill last record, iff any, out to a multiple of NFS_DIRBLKSIZ
1915 * by increasing d_reclen for the last record.
1916 */
1917 if (uiop->uio_resid < tresid) {
1918 len = uiop->uio_resid & (NFS_DIRBLKSIZ - 1);
1919 if (len > 0) {
1920 dp->d_reclen += len;
1921 uiop->uio_iov->iov_base += len;
1922 uiop->uio_iov->iov_len -= len;
1923 uiop->uio_resid -= len;
1924 }
1925 }
1926 nfsmout:
1927 if (newvp != NULLVP)
1928 vrele(newvp);
1929 return (error);
1930 }
1931 static char hextoasc[] = "0123456789abcdef";
1932
1933 /*
1934 * Silly rename. To make the NFS filesystem that is stateless look a little
1935 * more like the "ufs" a remove of an active vnode is translated to a rename
1936 * to a funny looking filename that is removed by nfs_inactive on the
1937 * nfsnode. There is the potential for another process on a different client
1938 * to create the same funny name between the nfs_lookitup() fails and the
1939 * nfs_rename() completes, but...
1940 */
1941 int
1942 nfs_sillyrename(dvp, vp, cnp)
1943 struct vnode *dvp, *vp;
1944 struct componentname *cnp;
1945 {
1946 register struct nfsnode *np;
1947 register struct sillyrename *sp;
1948 int error;
1949 short pid;
1950
1951 cache_purge(dvp);
1952 np = VTONFS(vp);
1953 #ifdef SILLYSEPARATE
1954 MALLOC(sp, struct sillyrename *, sizeof (struct sillyrename),
1955 M_NFSREQ, M_WAITOK);
1956 #else
1957 sp = &np->n_silly;
1958 #endif
1959 sp->s_cred = crdup(cnp->cn_cred);
1960 sp->s_dvp = dvp;
1961 VREF(dvp);
1962
1963 /* Fudge together a funny name */
1964 pid = cnp->cn_proc->p_pid;
1965 bcopy(".nfsAxxxx4.4", sp->s_name, 13);
1966 sp->s_namlen = 12;
1967 sp->s_name[8] = hextoasc[pid & 0xf];
1968 sp->s_name[7] = hextoasc[(pid >> 4) & 0xf];
1969 sp->s_name[6] = hextoasc[(pid >> 8) & 0xf];
1970 sp->s_name[5] = hextoasc[(pid >> 12) & 0xf];
1971
1972 /* Try lookitups until we get one that isn't there */
1973 while (nfs_lookitup(sp, (nfsv2fh_t *)0, cnp->cn_proc) == 0) {
1974 sp->s_name[4]++;
1975 if (sp->s_name[4] > 'z') {
1976 error = EINVAL;
1977 goto bad;
1978 }
1979 }
1980 if (error = nfs_renameit(dvp, cnp, sp))
1981 goto bad;
1982 nfs_lookitup(sp, &np->n_fh, cnp->cn_proc);
1983 np->n_sillyrename = sp;
1984 return (0);
1985 bad:
1986 vrele(sp->s_dvp);
1987 crfree(sp->s_cred);
1988 #ifdef SILLYSEPARATE
1989 free((caddr_t)sp, M_NFSREQ);
1990 #endif
1991 return (error);
1992 }
1993
1994 /*
1995 * Look up a file name for silly rename stuff.
1996 * Just like nfs_lookup() except that it doesn't load returned values
1997 * into the nfsnode table.
1998 * If fhp != NULL it copies the returned file handle out
1999 */
2000 int
2001 nfs_lookitup(sp, fhp, procp)
2002 register struct sillyrename *sp;
2003 nfsv2fh_t *fhp;
2004 struct proc *procp;
2005 {
2006 register struct vnode *vp = sp->s_dvp;
2007 register u_long *tl;
2008 register caddr_t cp;
2009 register long t1, t2;
2010 caddr_t bpos, dpos, cp2;
2011 int error = 0, isnq;
2012 struct mbuf *mreq, *mrep, *md, *mb, *mb2;
2013 long len;
2014
2015 isnq = (VFSTONFS(vp->v_mount)->nm_flag & NFSMNT_NQNFS);
2016 nfsstats.rpccnt[NFSPROC_LOOKUP]++;
2017 len = sp->s_namlen;
2018 nfsm_reqhead(vp, NFSPROC_LOOKUP, NFSX_FH+NFSX_UNSIGNED+nfsm_rndup(len));
2019 if (isnq) {
2020 nfsm_build(tl, u_long *, NFSX_UNSIGNED);
2021 *tl = 0;
2022 }
2023 nfsm_fhtom(vp);
2024 nfsm_strtom(sp->s_name, len, NFS_MAXNAMLEN);
2025 nfsm_request(vp, NFSPROC_LOOKUP, procp, sp->s_cred);
2026 if (fhp != NULL) {
2027 if (isnq)
2028 nfsm_dissect(tl, u_long *, NFSX_UNSIGNED);
2029 nfsm_dissect(cp, caddr_t, NFSX_FH);
2030 bcopy(cp, (caddr_t)fhp, NFSX_FH);
2031 }
2032 nfsm_reqdone;
2033 return (error);
2034 }
2035
2036 /*
2037 * Kludge City..
2038 * - make nfs_bmap() essentially a no-op that does no translation
2039 * - do nfs_strategy() by faking physical I/O with nfs_readrpc/nfs_writerpc
2040 * after mapping the physical addresses into Kernel Virtual space in the
2041 * nfsiobuf area.
2042 * (Maybe I could use the process's page mapping, but I was concerned that
2043 * Kernel Write might not be enabled and also figured copyout() would do
2044 * a lot more work than bcopy() and also it currently happens in the
2045 * context of the swapper process (2).
2046 */
2047 int
2048 nfs_bmap(ap)
2049 struct vop_bmap_args /* {
2050 struct vnode *a_vp;
2051 daddr_t a_bn;
2052 struct vnode **a_vpp;
2053 daddr_t *a_bnp;
2054 int *a_runp;
2055 } */ *ap;
2056 {
2057 register struct vnode *vp = ap->a_vp;
2058
2059 if (ap->a_vpp != NULL)
2060 *ap->a_vpp = vp;
2061 if (ap->a_bnp != NULL)
2062 *ap->a_bnp = ap->a_bn * btodb(vp->v_mount->mnt_stat.f_iosize);
2063 return (0);
2064 }
2065
2066 /*
2067 * Strategy routine.
2068 * For async requests when nfsiod(s) are running, queue the request by
2069 * calling nfs_asyncio(), otherwise just all nfs_doio() to do the
2070 * request.
2071 */
2072 int
2073 nfs_strategy(ap)
2074 struct vop_strategy_args *ap;
2075 {
2076 register struct buf *bp = ap->a_bp;
2077 struct ucred *cr;
2078 struct proc *p;
2079 int error = 0;
2080
2081 if ((bp->b_flags & (B_PHYS|B_ASYNC)) == (B_PHYS|B_ASYNC))
2082 panic("nfs physio/async");
2083 if (bp->b_flags & B_ASYNC)
2084 p = (struct proc *)0;
2085 else
2086 p = curproc; /* XXX */
2087 if (bp->b_flags & B_READ)
2088 cr = bp->b_rcred;
2089 else
2090 cr = bp->b_wcred;
2091 /*
2092 * If the op is asynchronous and an i/o daemon is waiting
2093 * queue the request, wake it up and wait for completion
2094 * otherwise just do it ourselves.
2095 */
2096 if ((bp->b_flags & B_ASYNC) == 0 ||
2097 nfs_asyncio(bp, NOCRED))
2098 error = nfs_doio(bp, cr, p);
2099 return (error);
2100 }
2101
2102 /*
2103 * Mmap a file
2104 *
2105 * NB Currently unsupported.
2106 */
2107 /* ARGSUSED */
2108 int
2109 nfs_mmap(ap)
2110 struct vop_mmap_args /* {
2111 struct vnode *a_vp;
2112 int a_fflags;
2113 struct ucred *a_cred;
2114 struct proc *a_p;
2115 } */ *ap;
2116 {
2117
2118 return (EINVAL);
2119 }
2120
2121 /*
2122 * Flush all the blocks associated with a vnode.
2123 * Walk through the buffer pool and push any dirty pages
2124 * associated with the vnode.
2125 */
2126 /* ARGSUSED */
2127 int
2128 nfs_fsync(ap)
2129 struct vop_fsync_args /* {
2130 struct vnodeop_desc *a_desc;
2131 struct vnode * a_vp;
2132 struct ucred * a_cred;
2133 int a_waitfor;
2134 struct proc * a_p;
2135 } */ *ap;
2136 {
2137 register struct vnode *vp = ap->a_vp;
2138 register struct nfsnode *np = VTONFS(vp);
2139 register struct buf *bp;
2140 struct buf *nbp;
2141 struct nfsmount *nmp;
2142 int s, error = 0, slptimeo = 0, slpflag = 0;
2143
2144 nmp = VFSTONFS(vp->v_mount);
2145 if (nmp->nm_flag & NFSMNT_INT)
2146 slpflag = PCATCH;
2147 loop:
2148 s = splbio();
2149 for (bp = vp->v_dirtyblkhd.lh_first; bp; bp = nbp) {
2150 nbp = bp->b_vnbufs.le_next;
2151 if (bp->b_flags & B_BUSY) {
2152 if (ap->a_waitfor != MNT_WAIT)
2153 continue;
2154 bp->b_flags |= B_WANTED;
2155 error = tsleep((caddr_t)bp, slpflag | (PRIBIO + 1),
2156 "nfsfsync", slptimeo);
2157 splx(s);
2158 if (error) {
2159 if (nfs_sigintr(nmp, (struct nfsreq *)0, ap->a_p))
2160 return (EINTR);
2161 if (slpflag == PCATCH) {
2162 slpflag = 0;
2163 slptimeo = 2 * hz;
2164 }
2165 }
2166 goto loop;
2167 }
2168 if ((bp->b_flags & B_DELWRI) == 0)
2169 panic("nfs_fsync: not dirty");
2170 bremfree(bp);
2171 bp->b_flags |= B_BUSY;
2172 splx(s);
2173 bp->b_flags |= B_ASYNC;
2174 VOP_BWRITE(bp);
2175 goto loop;
2176 }
2177 splx(s);
2178 if (ap->a_waitfor == MNT_WAIT) {
2179 while (vp->v_numoutput) {
2180 vp->v_flag |= VBWAIT;
2181 error = tsleep((caddr_t)&vp->v_numoutput,
2182 slpflag | (PRIBIO + 1), "nfsfsync", slptimeo);
2183 if (error) {
2184 if (nfs_sigintr(nmp, (struct nfsreq *)0, ap->a_p))
2185 return (EINTR);
2186 if (slpflag == PCATCH) {
2187 slpflag = 0;
2188 slptimeo = 2 * hz;
2189 }
2190 }
2191 }
2192 if (vp->v_dirtyblkhd.lh_first) {
2193 #ifdef DIAGNOSTIC
2194 vprint("nfs_fsync: dirty", vp);
2195 #endif
2196 goto loop;
2197 }
2198 }
2199 if (np->n_flag & NWRITEERR) {
2200 error = np->n_error;
2201 np->n_flag &= ~NWRITEERR;
2202 }
2203 return (error);
2204 }
2205
2206 /*
2207 * Return POSIX pathconf information applicable to nfs.
2208 *
2209 * Currently the NFS protocol does not support getting such
2210 * information from the remote server.
2211 */
2212 /* ARGSUSED */
2213 nfs_pathconf(ap)
2214 struct vop_pathconf_args /* {
2215 struct vnode *a_vp;
2216 int a_name;
2217 int *a_retval;
2218 } */ *ap;
2219 {
2220
2221 return (EINVAL);
2222 }
2223
2224 /*
2225 * NFS advisory byte-level locks.
2226 */
2227 int
2228 nfs_advlock(ap)
2229 struct vop_advlock_args /* {
2230 struct vnode *a_vp;
2231 caddr_t a_id;
2232 int a_op;
2233 struct flock *a_fl;
2234 int a_flags;
2235 } */ *ap;
2236 {
2237 register struct nfsnode *np = VTONFS(ap->a_vp);
2238
2239 return (lf_advlock(&np->n_lockf, np->n_size, ap->a_id, ap->a_op,
2240 ap->a_fl, ap->a_flags));
2241 }
2242
2243 /*
2244 * Print out the contents of an nfsnode.
2245 */
2246 int
2247 nfs_print(ap)
2248 struct vop_print_args /* {
2249 struct vnode *a_vp;
2250 } */ *ap;
2251 {
2252 register struct vnode *vp = ap->a_vp;
2253 register struct nfsnode *np = VTONFS(vp);
2254
2255 printf("tag VT_NFS, fileid %d fsid 0x%x",
2256 np->n_vattr.va_fileid, np->n_vattr.va_fsid);
2257 #ifdef FIFO
2258 if (vp->v_type == VFIFO)
2259 fifo_printinfo(vp);
2260 #endif /* FIFO */
2261 printf("\n");
2262 }
2263
2264 /*
2265 * NFS directory offset lookup.
2266 * Currently unsupported.
2267 */
2268 int
2269 nfs_blkatoff(ap)
2270 struct vop_blkatoff_args /* {
2271 struct vnode *a_vp;
2272 off_t a_offset;
2273 char **a_res;
2274 struct buf **a_bpp;
2275 } */ *ap;
2276 {
2277
2278 return (EOPNOTSUPP);
2279 }
2280
2281 /*
2282 * NFS flat namespace allocation.
2283 * Currently unsupported.
2284 */
2285 int
2286 nfs_valloc(ap)
2287 struct vop_valloc_args /* {
2288 struct vnode *a_pvp;
2289 int a_mode;
2290 struct ucred *a_cred;
2291 struct vnode **a_vpp;
2292 } */ *ap;
2293 {
2294
2295 return (EOPNOTSUPP);
2296 }
2297
2298 /*
2299 * NFS flat namespace free.
2300 * Currently unsupported.
2301 */
2302 int
2303 nfs_vfree(ap)
2304 struct vop_vfree_args /* {
2305 struct vnode *a_pvp;
2306 ino_t a_ino;
2307 int a_mode;
2308 } */ *ap;
2309 {
2310
2311 return (EOPNOTSUPP);
2312 }
2313
2314 /*
2315 * NFS file truncation.
2316 */
2317 int
2318 nfs_truncate(ap)
2319 struct vop_truncate_args /* {
2320 struct vnode *a_vp;
2321 off_t a_length;
2322 int a_flags;
2323 struct ucred *a_cred;
2324 struct proc *a_p;
2325 } */ *ap;
2326 {
2327
2328 /* Use nfs_setattr */
2329 printf("nfs_truncate: need to implement!!");
2330 return (EOPNOTSUPP);
2331 }
2332
2333 /*
2334 * NFS update.
2335 */
2336 int
2337 nfs_update(ap)
2338 struct vop_update_args /* {
2339 struct vnode *a_vp;
2340 struct timeval *a_ta;
2341 struct timeval *a_tm;
2342 int a_waitfor;
2343 } */ *ap;
2344 {
2345
2346 /* Use nfs_setattr */
2347 printf("nfs_update: need to implement!!");
2348 return (EOPNOTSUPP);
2349 }
2350
2351 /*
2352 * nfs special file access vnode op.
2353 * Essentially just get vattr and then imitate iaccess() since the device is
2354 * local to the client.
2355 */
2356 int
2357 nfsspec_access(ap)
2358 struct vop_access_args /* {
2359 struct vnode *a_vp;
2360 int a_mode;
2361 struct ucred *a_cred;
2362 struct proc *a_p;
2363 } */ *ap;
2364 {
2365 register struct vattr *vap;
2366 register gid_t *gp;
2367 register struct ucred *cred = ap->a_cred;
2368 mode_t mode = ap->a_mode;
2369 struct vattr vattr;
2370 register int i;
2371 int error;
2372
2373 /*
2374 * If you're the super-user,
2375 * you always get access.
2376 */
2377 if (cred->cr_uid == 0)
2378 return (0);
2379 vap = &vattr;
2380 if (error = VOP_GETATTR(ap->a_vp, vap, cred, ap->a_p))
2381 return (error);
2382 /*
2383 * Access check is based on only one of owner, group, public.
2384 * If not owner, then check group. If not a member of the
2385 * group, then check public access.
2386 */
2387 if (cred->cr_uid != vap->va_uid) {
2388 mode >>= 3;
2389 gp = cred->cr_groups;
2390 for (i = 0; i < cred->cr_ngroups; i++, gp++)
2391 if (vap->va_gid == *gp)
2392 goto found;
2393 mode >>= 3;
2394 found:
2395 ;
2396 }
2397 return ((vap->va_mode & mode) == mode ? 0 : EACCES);
2398 }
2399
2400 /*
2401 * Read wrapper for special devices.
2402 */
2403 int
2404 nfsspec_read(ap)
2405 struct vop_read_args /* {
2406 struct vnode *a_vp;
2407 struct uio *a_uio;
2408 int a_ioflag;
2409 struct ucred *a_cred;
2410 } */ *ap;
2411 {
2412 register struct nfsnode *np = VTONFS(ap->a_vp);
2413
2414 /*
2415 * Set access flag.
2416 */
2417 np->n_flag |= NACC;
2418 np->n_atim = time;
2419 return (VOCALL(spec_vnodeop_p, VOFFSET(vop_read), ap));
2420 }
2421
2422 /*
2423 * Write wrapper for special devices.
2424 */
2425 int
2426 nfsspec_write(ap)
2427 struct vop_write_args /* {
2428 struct vnode *a_vp;
2429 struct uio *a_uio;
2430 int a_ioflag;
2431 struct ucred *a_cred;
2432 } */ *ap;
2433 {
2434 register struct nfsnode *np = VTONFS(ap->a_vp);
2435
2436 /*
2437 * Set update flag.
2438 */
2439 np->n_flag |= NUPD;
2440 np->n_mtim = time;
2441 return (VOCALL(spec_vnodeop_p, VOFFSET(vop_write), ap));
2442 }
2443
2444 /*
2445 * Close wrapper for special devices.
2446 *
2447 * Update the times on the nfsnode then do device close.
2448 */
2449 int
2450 nfsspec_close(ap)
2451 struct vop_close_args /* {
2452 struct vnode *a_vp;
2453 int a_fflag;
2454 struct ucred *a_cred;
2455 struct proc *a_p;
2456 } */ *ap;
2457 {
2458 register struct vnode *vp = ap->a_vp;
2459 register struct nfsnode *np = VTONFS(vp);
2460 struct vattr vattr;
2461
2462 if (np->n_flag & (NACC | NUPD)) {
2463 np->n_flag |= NCHG;
2464 if (vp->v_usecount == 1 &&
2465 (vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
2466 VATTR_NULL(&vattr);
2467 if (np->n_flag & NACC) {
2468 vattr.va_atime.ts_sec = np->n_atim.tv_sec;
2469 vattr.va_atime.ts_nsec =
2470 np->n_atim.tv_usec * 1000;
2471 }
2472 if (np->n_flag & NUPD) {
2473 vattr.va_mtime.ts_sec = np->n_mtim.tv_sec;
2474 vattr.va_mtime.ts_nsec =
2475 np->n_mtim.tv_usec * 1000;
2476 }
2477 (void)VOP_SETATTR(vp, &vattr, ap->a_cred, ap->a_p);
2478 }
2479 }
2480 return (VOCALL(spec_vnodeop_p, VOFFSET(vop_close), ap));
2481 }
2482
2483 #ifdef FIFO
2484 /*
2485 * Read wrapper for fifos.
2486 */
2487 int
2488 nfsfifo_read(ap)
2489 struct vop_read_args /* {
2490 struct vnode *a_vp;
2491 struct uio *a_uio;
2492 int a_ioflag;
2493 struct ucred *a_cred;
2494 } */ *ap;
2495 {
2496 extern int (**fifo_vnodeop_p)();
2497 register struct nfsnode *np = VTONFS(ap->a_vp);
2498
2499 /*
2500 * Set access flag.
2501 */
2502 np->n_flag |= NACC;
2503 np->n_atim = time;
2504 return (VOCALL(fifo_vnodeop_p, VOFFSET(vop_read), ap));
2505 }
2506
2507 /*
2508 * Write wrapper for fifos.
2509 */
2510 int
2511 nfsfifo_write(ap)
2512 struct vop_write_args /* {
2513 struct vnode *a_vp;
2514 struct uio *a_uio;
2515 int a_ioflag;
2516 struct ucred *a_cred;
2517 } */ *ap;
2518 {
2519 extern int (**fifo_vnodeop_p)();
2520 register struct nfsnode *np = VTONFS(ap->a_vp);
2521
2522 /*
2523 * Set update flag.
2524 */
2525 np->n_flag |= NUPD;
2526 np->n_mtim = time;
2527 return (VOCALL(fifo_vnodeop_p, VOFFSET(vop_write), ap));
2528 }
2529
2530 /*
2531 * Close wrapper for fifos.
2532 *
2533 * Update the times on the nfsnode then do fifo close.
2534 */
2535 int
2536 nfsfifo_close(ap)
2537 struct vop_close_args /* {
2538 struct vnode *a_vp;
2539 int a_fflag;
2540 struct ucred *a_cred;
2541 struct proc *a_p;
2542 } */ *ap;
2543 {
2544 register struct vnode *vp = ap->a_vp;
2545 register struct nfsnode *np = VTONFS(vp);
2546 struct vattr vattr;
2547 extern int (**fifo_vnodeop_p)();
2548
2549 if (np->n_flag & (NACC | NUPD)) {
2550 if (np->n_flag & NACC)
2551 np->n_atim = time;
2552 if (np->n_flag & NUPD)
2553 np->n_mtim = time;
2554 np->n_flag |= NCHG;
2555 if (vp->v_usecount == 1 &&
2556 (vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
2557 VATTR_NULL(&vattr);
2558 if (np->n_flag & NACC) {
2559 vattr.va_atime.ts_sec = np->n_atim.tv_sec;
2560 vattr.va_atime.ts_nsec =
2561 np->n_atim.tv_usec * 1000;
2562 }
2563 if (np->n_flag & NUPD) {
2564 vattr.va_mtime.ts_sec = np->n_mtim.tv_sec;
2565 vattr.va_mtime.ts_nsec =
2566 np->n_mtim.tv_usec * 1000;
2567 }
2568 (void)VOP_SETATTR(vp, &vattr, ap->a_cred, ap->a_p);
2569 }
2570 }
2571 return (VOCALL(fifo_vnodeop_p, VOFFSET(vop_close), ap));
2572 }
2573 #endif /* FIFO */
2574