]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/fs/nfsclient/nfs_clbio.c
MFC r209120:
[FreeBSD/stable/8.git] / sys / fs / nfsclient / nfs_clbio.c
1 /*-
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Rick Macklem at The University of Guelph.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 4. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  *      @(#)nfs_bio.c   8.9 (Berkeley) 3/30/95
33  */
34
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/bio.h>
41 #include <sys/buf.h>
42 #include <sys/kernel.h>
43 #include <sys/mount.h>
44 #include <sys/proc.h>
45 #include <sys/resourcevar.h>
46 #include <sys/signalvar.h>
47 #include <sys/vmmeter.h>
48 #include <sys/vnode.h>
49
50 #include <vm/vm.h>
51 #include <vm/vm_extern.h>
52 #include <vm/vm_page.h>
53 #include <vm/vm_object.h>
54 #include <vm/vm_pager.h>
55 #include <vm/vnode_pager.h>
56
57 #include <fs/nfs/nfsport.h>
58 #include <fs/nfsclient/nfsmount.h>
59 #include <fs/nfsclient/nfs.h>
60 #include <fs/nfsclient/nfsnode.h>
61
62 extern int newnfs_directio_allow_mmap;
63 extern struct nfsstats newnfsstats;
64 extern struct mtx ncl_iod_mutex;
65 extern int ncl_numasync;
66 extern enum nfsiod_state ncl_iodwant[NFS_MAXRAHEAD];
67 extern struct nfsmount *ncl_iodmount[NFS_MAXRAHEAD];
68 extern int newnfs_directio_enable;
69
70 int ncl_pbuf_freecnt = -1;      /* start out unlimited */
71
72 static struct buf *nfs_getcacheblk(struct vnode *vp, daddr_t bn, int size,
73     struct thread *td);
74 static int nfs_directio_write(struct vnode *vp, struct uio *uiop, 
75     struct ucred *cred, int ioflag);
76
77 /*
78  * Vnode op for VM getpages.
79  */
80 int
81 ncl_getpages(struct vop_getpages_args *ap)
82 {
83         int i, error, nextoff, size, toff, count, npages;
84         struct uio uio;
85         struct iovec iov;
86         vm_offset_t kva;
87         struct buf *bp;
88         struct vnode *vp;
89         struct thread *td;
90         struct ucred *cred;
91         struct nfsmount *nmp;
92         vm_object_t object;
93         vm_page_t *pages;
94         struct nfsnode *np;
95
96         vp = ap->a_vp;
97         np = VTONFS(vp);
98         td = curthread;                         /* XXX */
99         cred = curthread->td_ucred;             /* XXX */
100         nmp = VFSTONFS(vp->v_mount);
101         pages = ap->a_m;
102         count = ap->a_count;
103
104         if ((object = vp->v_object) == NULL) {
105                 ncl_printf("nfs_getpages: called with non-merged cache vnode??\n");
106                 return (VM_PAGER_ERROR);
107         }
108
109         if (newnfs_directio_enable && !newnfs_directio_allow_mmap) {
110                 mtx_lock(&np->n_mtx);
111                 if ((np->n_flag & NNONCACHE) && (vp->v_type == VREG)) {
112                         mtx_unlock(&np->n_mtx);
113                         ncl_printf("nfs_getpages: called on non-cacheable vnode??\n");
114                         return (VM_PAGER_ERROR);
115                 } else
116                         mtx_unlock(&np->n_mtx);
117         }
118
119         mtx_lock(&nmp->nm_mtx);
120         if ((nmp->nm_flag & NFSMNT_NFSV3) != 0 &&
121             (nmp->nm_state & NFSSTA_GOTFSINFO) == 0) {  
122                 mtx_unlock(&nmp->nm_mtx);
123                 /* We'll never get here for v4, because we always have fsinfo */
124                 (void)ncl_fsinfo(nmp, vp, cred, td);
125         } else
126                 mtx_unlock(&nmp->nm_mtx);
127
128         npages = btoc(count);
129
130         /*
131          * If the requested page is partially valid, just return it and
132          * allow the pager to zero-out the blanks.  Partially valid pages
133          * can only occur at the file EOF.
134          */
135         VM_OBJECT_LOCK(object);
136         if (pages[ap->a_reqpage]->valid != 0) {
137                 vm_page_lock_queues();
138                 for (i = 0; i < npages; ++i) {
139                         if (i != ap->a_reqpage)
140                                 vm_page_free(pages[i]);
141                 }
142                 vm_page_unlock_queues();
143                 VM_OBJECT_UNLOCK(object);
144                 return (0);
145         }
146         VM_OBJECT_UNLOCK(object);
147
148         /*
149          * We use only the kva address for the buffer, but this is extremely
150          * convienient and fast.
151          */
152         bp = getpbuf(&ncl_pbuf_freecnt);
153
154         kva = (vm_offset_t) bp->b_data;
155         pmap_qenter(kva, pages, npages);
156         PCPU_INC(cnt.v_vnodein);
157         PCPU_ADD(cnt.v_vnodepgsin, npages);
158
159         iov.iov_base = (caddr_t) kva;
160         iov.iov_len = count;
161         uio.uio_iov = &iov;
162         uio.uio_iovcnt = 1;
163         uio.uio_offset = IDX_TO_OFF(pages[0]->pindex);
164         uio.uio_resid = count;
165         uio.uio_segflg = UIO_SYSSPACE;
166         uio.uio_rw = UIO_READ;
167         uio.uio_td = td;
168
169         error = ncl_readrpc(vp, &uio, cred);
170         pmap_qremove(kva, npages);
171
172         relpbuf(bp, &ncl_pbuf_freecnt);
173
174         if (error && (uio.uio_resid == count)) {
175                 ncl_printf("nfs_getpages: error %d\n", error);
176                 VM_OBJECT_LOCK(object);
177                 vm_page_lock_queues();
178                 for (i = 0; i < npages; ++i) {
179                         if (i != ap->a_reqpage)
180                                 vm_page_free(pages[i]);
181                 }
182                 vm_page_unlock_queues();
183                 VM_OBJECT_UNLOCK(object);
184                 return (VM_PAGER_ERROR);
185         }
186
187         /*
188          * Calculate the number of bytes read and validate only that number
189          * of bytes.  Note that due to pending writes, size may be 0.  This
190          * does not mean that the remaining data is invalid!
191          */
192
193         size = count - uio.uio_resid;
194         VM_OBJECT_LOCK(object);
195         vm_page_lock_queues();
196         for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
197                 vm_page_t m;
198                 nextoff = toff + PAGE_SIZE;
199                 m = pages[i];
200
201                 if (nextoff <= size) {
202                         /*
203                          * Read operation filled an entire page
204                          */
205                         m->valid = VM_PAGE_BITS_ALL;
206                         KASSERT(m->dirty == 0,
207                             ("nfs_getpages: page %p is dirty", m));
208                 } else if (size > toff) {
209                         /*
210                          * Read operation filled a partial page.
211                          */
212                         m->valid = 0;
213                         vm_page_set_valid(m, 0, size - toff);
214                         KASSERT(m->dirty == 0,
215                             ("nfs_getpages: page %p is dirty", m));
216                 } else {
217                         /*
218                          * Read operation was short.  If no error occured
219                          * we may have hit a zero-fill section.   We simply
220                          * leave valid set to 0.
221                          */
222                         ;
223                 }
224                 if (i != ap->a_reqpage) {
225                         /*
226                          * Whether or not to leave the page activated is up in
227                          * the air, but we should put the page on a page queue
228                          * somewhere (it already is in the object).  Result:
229                          * It appears that emperical results show that
230                          * deactivating pages is best.
231                          */
232
233                         /*
234                          * Just in case someone was asking for this page we
235                          * now tell them that it is ok to use.
236                          */
237                         if (!error) {
238                                 if (m->oflags & VPO_WANTED)
239                                         vm_page_activate(m);
240                                 else
241                                         vm_page_deactivate(m);
242                                 vm_page_wakeup(m);
243                         } else {
244                                 vm_page_free(m);
245                         }
246                 }
247         }
248         vm_page_unlock_queues();
249         VM_OBJECT_UNLOCK(object);
250         return (0);
251 }
252
253 /*
254  * Vnode op for VM putpages.
255  */
256 int
257 ncl_putpages(struct vop_putpages_args *ap)
258 {
259         struct uio uio;
260         struct iovec iov;
261         vm_offset_t kva;
262         struct buf *bp;
263         int iomode, must_commit, i, error, npages, count;
264         off_t offset;
265         int *rtvals;
266         struct vnode *vp;
267         struct thread *td;
268         struct ucred *cred;
269         struct nfsmount *nmp;
270         struct nfsnode *np;
271         vm_page_t *pages;
272
273         vp = ap->a_vp;
274         np = VTONFS(vp);
275         td = curthread;                         /* XXX */
276         cred = curthread->td_ucred;             /* XXX */
277         nmp = VFSTONFS(vp->v_mount);
278         pages = ap->a_m;
279         count = ap->a_count;
280         rtvals = ap->a_rtvals;
281         npages = btoc(count);
282         offset = IDX_TO_OFF(pages[0]->pindex);
283         
284         mtx_lock(&nmp->nm_mtx);
285         if ((nmp->nm_flag & NFSMNT_NFSV3) != 0 &&
286             (nmp->nm_state & NFSSTA_GOTFSINFO) == 0) {
287                 mtx_unlock(&nmp->nm_mtx);
288                 (void)ncl_fsinfo(nmp, vp, cred, td);
289         } else
290                 mtx_unlock(&nmp->nm_mtx);
291
292         mtx_lock(&np->n_mtx);
293         if (newnfs_directio_enable && !newnfs_directio_allow_mmap && 
294             (np->n_flag & NNONCACHE) && (vp->v_type == VREG)) {
295                 mtx_unlock(&np->n_mtx);         
296                 ncl_printf("ncl_putpages: called on noncache-able vnode??\n");
297                 mtx_lock(&np->n_mtx);
298         }
299
300         for (i = 0; i < npages; i++)
301                 rtvals[i] = VM_PAGER_AGAIN;
302
303         /*
304          * When putting pages, do not extend file past EOF.
305          */
306         if (offset + count > np->n_size) {
307                 count = np->n_size - offset;
308                 if (count < 0)
309                         count = 0;
310         }
311         mtx_unlock(&np->n_mtx);
312
313         /*
314          * We use only the kva address for the buffer, but this is extremely
315          * convienient and fast.
316          */
317         bp = getpbuf(&ncl_pbuf_freecnt);
318
319         kva = (vm_offset_t) bp->b_data;
320         pmap_qenter(kva, pages, npages);
321         PCPU_INC(cnt.v_vnodeout);
322         PCPU_ADD(cnt.v_vnodepgsout, count);
323
324         iov.iov_base = (caddr_t) kva;
325         iov.iov_len = count;
326         uio.uio_iov = &iov;
327         uio.uio_iovcnt = 1;
328         uio.uio_offset = offset;
329         uio.uio_resid = count;
330         uio.uio_segflg = UIO_SYSSPACE;
331         uio.uio_rw = UIO_WRITE;
332         uio.uio_td = td;
333
334         if ((ap->a_sync & VM_PAGER_PUT_SYNC) == 0)
335             iomode = NFSWRITE_UNSTABLE;
336         else
337             iomode = NFSWRITE_FILESYNC;
338
339         error = ncl_writerpc(vp, &uio, cred, &iomode, &must_commit, 0);
340
341         pmap_qremove(kva, npages);
342         relpbuf(bp, &ncl_pbuf_freecnt);
343
344         if (!error) {
345                 int nwritten = round_page(count - uio.uio_resid) / PAGE_SIZE;
346                 for (i = 0; i < nwritten; i++) {
347                         rtvals[i] = VM_PAGER_OK;
348                         vm_page_undirty(pages[i]);
349                 }
350                 if (must_commit) {
351                         ncl_clearcommit(vp->v_mount);
352                 }
353         }
354         return rtvals[0];
355 }
356
357 /*
358  * For nfs, cache consistency can only be maintained approximately.
359  * Although RFC1094 does not specify the criteria, the following is
360  * believed to be compatible with the reference port.
361  * For nfs:
362  * If the file's modify time on the server has changed since the
363  * last read rpc or you have written to the file,
364  * you may have lost data cache consistency with the
365  * server, so flush all of the file's data out of the cache.
366  * Then force a getattr rpc to ensure that you have up to date
367  * attributes.
368  * NB: This implies that cache data can be read when up to
369  * NFS_ATTRTIMEO seconds out of date. If you find that you need current
370  * attributes this could be forced by setting n_attrstamp to 0 before
371  * the VOP_GETATTR() call.
372  */
373 static inline int
374 nfs_bioread_check_cons(struct vnode *vp, struct thread *td, struct ucred *cred)
375 {
376         int error = 0;
377         struct vattr vattr;
378         struct nfsnode *np = VTONFS(vp);
379         int old_lock;
380         
381         /*
382          * Grab the exclusive lock before checking whether the cache is
383          * consistent.
384          * XXX - We can make this cheaper later (by acquiring cheaper locks).
385          * But for now, this suffices.
386          */
387         old_lock = ncl_upgrade_vnlock(vp);
388         if (vp->v_iflag & VI_DOOMED) {
389                 ncl_downgrade_vnlock(vp, old_lock);
390                 return (EBADF);
391         }
392
393         mtx_lock(&np->n_mtx);
394         if (np->n_flag & NMODIFIED) {
395                 mtx_unlock(&np->n_mtx);
396                 if (vp->v_type != VREG) {
397                         if (vp->v_type != VDIR)
398                                 panic("nfs: bioread, not dir");
399                         ncl_invaldir(vp);
400                         error = ncl_vinvalbuf(vp, V_SAVE, td, 1);
401                         if (error)
402                                 goto out;
403                 }
404                 np->n_attrstamp = 0;
405                 error = VOP_GETATTR(vp, &vattr, cred);
406                 if (error)
407                         goto out;
408                 mtx_lock(&np->n_mtx);
409                 np->n_mtime = vattr.va_mtime;
410                 mtx_unlock(&np->n_mtx);
411         } else {
412                 mtx_unlock(&np->n_mtx);
413                 error = VOP_GETATTR(vp, &vattr, cred);
414                 if (error)
415                         return (error);
416                 mtx_lock(&np->n_mtx);
417                 if ((np->n_flag & NSIZECHANGED)
418                     || (NFS_TIMESPEC_COMPARE(&np->n_mtime, &vattr.va_mtime))) {
419                         mtx_unlock(&np->n_mtx);
420                         if (vp->v_type == VDIR)
421                                 ncl_invaldir(vp);
422                         error = ncl_vinvalbuf(vp, V_SAVE, td, 1);
423                         if (error)
424                                 goto out;
425                         mtx_lock(&np->n_mtx);
426                         np->n_mtime = vattr.va_mtime;
427                         np->n_flag &= ~NSIZECHANGED;
428                 }
429                 mtx_unlock(&np->n_mtx);
430         }
431 out:    
432         ncl_downgrade_vnlock(vp, old_lock);
433         return error;
434 }
435
436 /*
437  * Vnode op for read using bio
438  */
439 int
440 ncl_bioread(struct vnode *vp, struct uio *uio, int ioflag, struct ucred *cred)
441 {
442         struct nfsnode *np = VTONFS(vp);
443         int biosize, i;
444         struct buf *bp, *rabp;
445         struct thread *td;
446         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
447         daddr_t lbn, rabn;
448         int bcount;
449         int seqcount;
450         int nra, error = 0, n = 0, on = 0;
451
452         KASSERT(uio->uio_rw == UIO_READ, ("ncl_read mode"));
453         if (uio->uio_resid == 0)
454                 return (0);
455         if (uio->uio_offset < 0)        /* XXX VDIR cookies can be negative */
456                 return (EINVAL);
457         td = uio->uio_td;
458
459         mtx_lock(&nmp->nm_mtx);
460         if ((nmp->nm_flag & NFSMNT_NFSV3) != 0 &&
461             (nmp->nm_state & NFSSTA_GOTFSINFO) == 0) {
462                 mtx_unlock(&nmp->nm_mtx);
463                 (void)ncl_fsinfo(nmp, vp, cred, td);
464                 mtx_lock(&nmp->nm_mtx);
465         }
466         if (nmp->nm_rsize == 0 || nmp->nm_readdirsize == 0)
467                 (void) newnfs_iosize(nmp);
468         mtx_unlock(&nmp->nm_mtx);               
469
470         if (vp->v_type != VDIR &&
471             (uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
472                 return (EFBIG);
473
474         if (newnfs_directio_enable && (ioflag & IO_DIRECT) && (vp->v_type == VREG))
475                 /* No caching/ no readaheads. Just read data into the user buffer */
476                 return ncl_readrpc(vp, uio, cred);
477
478         biosize = vp->v_mount->mnt_stat.f_iosize;
479         seqcount = (int)((off_t)(ioflag >> IO_SEQSHIFT) * biosize / BKVASIZE);
480         
481         error = nfs_bioread_check_cons(vp, td, cred);
482         if (error)
483                 return error;
484
485         do {
486             u_quad_t nsize;
487                         
488             mtx_lock(&np->n_mtx);
489             nsize = np->n_size;
490             mtx_unlock(&np->n_mtx);                 
491
492             switch (vp->v_type) {
493             case VREG:
494                 NFSINCRGLOBAL(newnfsstats.biocache_reads);
495                 lbn = uio->uio_offset / biosize;
496                 on = uio->uio_offset & (biosize - 1);
497
498                 /*
499                  * Start the read ahead(s), as required.
500                  */
501                 if (nmp->nm_readahead > 0) {
502                     for (nra = 0; nra < nmp->nm_readahead && nra < seqcount &&
503                         (off_t)(lbn + 1 + nra) * biosize < nsize; nra++) {
504                         rabn = lbn + 1 + nra;
505                         if (incore(&vp->v_bufobj, rabn) == NULL) {
506                             rabp = nfs_getcacheblk(vp, rabn, biosize, td);
507                             if (!rabp) {
508                                 error = newnfs_sigintr(nmp, td);
509                                 if (error)
510                                     return (error);
511                                 else
512                                     break;
513                             }
514                             if ((rabp->b_flags & (B_CACHE|B_DELWRI)) == 0) {
515                                 rabp->b_flags |= B_ASYNC;
516                                 rabp->b_iocmd = BIO_READ;
517                                 vfs_busy_pages(rabp, 0);
518                                 if (ncl_asyncio(nmp, rabp, cred, td)) {
519                                     rabp->b_flags |= B_INVAL;
520                                     rabp->b_ioflags |= BIO_ERROR;
521                                     vfs_unbusy_pages(rabp);
522                                     brelse(rabp);
523                                     break;
524                                 }
525                             } else {
526                                 brelse(rabp);
527                             }
528                         }
529                     }
530                 }
531
532                 /* Note that bcount is *not* DEV_BSIZE aligned. */
533                 bcount = biosize;
534                 if ((off_t)lbn * biosize >= nsize) {
535                         bcount = 0;
536                 } else if ((off_t)(lbn + 1) * biosize > nsize) {
537                         bcount = nsize - (off_t)lbn * biosize;
538                 }
539                 bp = nfs_getcacheblk(vp, lbn, bcount, td);
540
541                 if (!bp) {
542                         error = newnfs_sigintr(nmp, td);
543                         return (error ? error : EINTR);
544                 }
545
546                 /*
547                  * If B_CACHE is not set, we must issue the read.  If this
548                  * fails, we return an error.
549                  */
550
551                 if ((bp->b_flags & B_CACHE) == 0) {
552                     bp->b_iocmd = BIO_READ;
553                     vfs_busy_pages(bp, 0);
554                     error = ncl_doio(vp, bp, cred, td, 0);
555                     if (error) {
556                         brelse(bp);
557                         return (error);
558                     }
559                 }
560
561                 /*
562                  * on is the offset into the current bp.  Figure out how many
563                  * bytes we can copy out of the bp.  Note that bcount is
564                  * NOT DEV_BSIZE aligned.
565                  *
566                  * Then figure out how many bytes we can copy into the uio.
567                  */
568
569                 n = 0;
570                 if (on < bcount)
571                         n = min((unsigned)(bcount - on), uio->uio_resid);
572                 break;
573             case VLNK:
574                 NFSINCRGLOBAL(newnfsstats.biocache_readlinks);
575                 bp = nfs_getcacheblk(vp, (daddr_t)0, NFS_MAXPATHLEN, td);
576                 if (!bp) {
577                         error = newnfs_sigintr(nmp, td);
578                         return (error ? error : EINTR);
579                 }
580                 if ((bp->b_flags & B_CACHE) == 0) {
581                     bp->b_iocmd = BIO_READ;
582                     vfs_busy_pages(bp, 0);
583                     error = ncl_doio(vp, bp, cred, td, 0);
584                     if (error) {
585                         bp->b_ioflags |= BIO_ERROR;
586                         brelse(bp);
587                         return (error);
588                     }
589                 }
590                 n = min(uio->uio_resid, NFS_MAXPATHLEN - bp->b_resid);
591                 on = 0;
592                 break;
593             case VDIR:
594                 NFSINCRGLOBAL(newnfsstats.biocache_readdirs);
595                 if (np->n_direofoffset
596                     && uio->uio_offset >= np->n_direofoffset) {
597                     return (0);
598                 }
599                 lbn = (uoff_t)uio->uio_offset / NFS_DIRBLKSIZ;
600                 on = uio->uio_offset & (NFS_DIRBLKSIZ - 1);
601                 bp = nfs_getcacheblk(vp, lbn, NFS_DIRBLKSIZ, td);
602                 if (!bp) {
603                     error = newnfs_sigintr(nmp, td);
604                     return (error ? error : EINTR);
605                 }
606                 if ((bp->b_flags & B_CACHE) == 0) {
607                     bp->b_iocmd = BIO_READ;
608                     vfs_busy_pages(bp, 0);
609                     error = ncl_doio(vp, bp, cred, td, 0);
610                     if (error) {
611                             brelse(bp);
612                     }
613                     while (error == NFSERR_BAD_COOKIE) {
614                         ncl_invaldir(vp);
615                         error = ncl_vinvalbuf(vp, 0, td, 1);
616                         /*
617                          * Yuck! The directory has been modified on the
618                          * server. The only way to get the block is by
619                          * reading from the beginning to get all the
620                          * offset cookies.
621                          *
622                          * Leave the last bp intact unless there is an error.
623                          * Loop back up to the while if the error is another
624                          * NFSERR_BAD_COOKIE (double yuch!).
625                          */
626                         for (i = 0; i <= lbn && !error; i++) {
627                             if (np->n_direofoffset
628                                 && (i * NFS_DIRBLKSIZ) >= np->n_direofoffset)
629                                     return (0);
630                             bp = nfs_getcacheblk(vp, i, NFS_DIRBLKSIZ, td);
631                             if (!bp) {
632                                 error = newnfs_sigintr(nmp, td);
633                                 return (error ? error : EINTR);
634                             }
635                             if ((bp->b_flags & B_CACHE) == 0) {
636                                     bp->b_iocmd = BIO_READ;
637                                     vfs_busy_pages(bp, 0);
638                                     error = ncl_doio(vp, bp, cred, td, 0);
639                                     /*
640                                      * no error + B_INVAL == directory EOF,
641                                      * use the block.
642                                      */
643                                     if (error == 0 && (bp->b_flags & B_INVAL))
644                                             break;
645                             }
646                             /*
647                              * An error will throw away the block and the
648                              * for loop will break out.  If no error and this
649                              * is not the block we want, we throw away the
650                              * block and go for the next one via the for loop.
651                              */
652                             if (error || i < lbn)
653                                     brelse(bp);
654                         }
655                     }
656                     /*
657                      * The above while is repeated if we hit another cookie
658                      * error.  If we hit an error and it wasn't a cookie error,
659                      * we give up.
660                      */
661                     if (error)
662                             return (error);
663                 }
664
665                 /*
666                  * If not eof and read aheads are enabled, start one.
667                  * (You need the current block first, so that you have the
668                  *  directory offset cookie of the next block.)
669                  */
670                 if (nmp->nm_readahead > 0 &&
671                     (bp->b_flags & B_INVAL) == 0 &&
672                     (np->n_direofoffset == 0 ||
673                     (lbn + 1) * NFS_DIRBLKSIZ < np->n_direofoffset) &&
674                     incore(&vp->v_bufobj, lbn + 1) == NULL) {
675                         rabp = nfs_getcacheblk(vp, lbn + 1, NFS_DIRBLKSIZ, td);
676                         if (rabp) {
677                             if ((rabp->b_flags & (B_CACHE|B_DELWRI)) == 0) {
678                                 rabp->b_flags |= B_ASYNC;
679                                 rabp->b_iocmd = BIO_READ;
680                                 vfs_busy_pages(rabp, 0);
681                                 if (ncl_asyncio(nmp, rabp, cred, td)) {
682                                     rabp->b_flags |= B_INVAL;
683                                     rabp->b_ioflags |= BIO_ERROR;
684                                     vfs_unbusy_pages(rabp);
685                                     brelse(rabp);
686                                 }
687                             } else {
688                                 brelse(rabp);
689                             }
690                         }
691                 }
692                 /*
693                  * Unlike VREG files, whos buffer size ( bp->b_bcount ) is
694                  * chopped for the EOF condition, we cannot tell how large
695                  * NFS directories are going to be until we hit EOF.  So
696                  * an NFS directory buffer is *not* chopped to its EOF.  Now,
697                  * it just so happens that b_resid will effectively chop it
698                  * to EOF.  *BUT* this information is lost if the buffer goes
699                  * away and is reconstituted into a B_CACHE state ( due to
700                  * being VMIO ) later.  So we keep track of the directory eof
701                  * in np->n_direofoffset and chop it off as an extra step
702                  * right here.
703                  */
704                 n = lmin(uio->uio_resid, NFS_DIRBLKSIZ - bp->b_resid - on);
705                 if (np->n_direofoffset && n > np->n_direofoffset - uio->uio_offset)
706                         n = np->n_direofoffset - uio->uio_offset;
707                 break;
708             default:
709                 ncl_printf(" ncl_bioread: type %x unexpected\n", vp->v_type);
710                 bp = NULL;
711                 break;
712             };
713
714             if (n > 0) {
715                     error = uiomove(bp->b_data + on, (int)n, uio);
716             }
717             if (vp->v_type == VLNK)
718                 n = 0;
719             if (bp != NULL)
720                 brelse(bp);
721         } while (error == 0 && uio->uio_resid > 0 && n > 0);
722         return (error);
723 }
724
725 /*
726  * The NFS write path cannot handle iovecs with len > 1. So we need to 
727  * break up iovecs accordingly (restricting them to wsize).
728  * For the SYNC case, we can do this with 1 copy (user buffer -> mbuf). 
729  * For the ASYNC case, 2 copies are needed. The first a copy from the 
730  * user buffer to a staging buffer and then a second copy from the staging
731  * buffer to mbufs. This can be optimized by copying from the user buffer
732  * directly into mbufs and passing the chain down, but that requires a 
733  * fair amount of re-working of the relevant codepaths (and can be done
734  * later).
735  */
736 static int
737 nfs_directio_write(vp, uiop, cred, ioflag)
738         struct vnode *vp;
739         struct uio *uiop;
740         struct ucred *cred;
741         int ioflag;
742 {
743         int error;
744         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
745         struct thread *td = uiop->uio_td;
746         int size;
747         int wsize;
748         
749         mtx_lock(&nmp->nm_mtx);
750         wsize = nmp->nm_wsize;
751         mtx_unlock(&nmp->nm_mtx);
752         if (ioflag & IO_SYNC) {
753                 int iomode, must_commit;
754                 struct uio uio;
755                 struct iovec iov;
756 do_sync:
757                 while (uiop->uio_resid > 0) {
758                         size = min(uiop->uio_resid, wsize);
759                         size = min(uiop->uio_iov->iov_len, size);
760                         iov.iov_base = uiop->uio_iov->iov_base;
761                         iov.iov_len = size;
762                         uio.uio_iov = &iov;
763                         uio.uio_iovcnt = 1;
764                         uio.uio_offset = uiop->uio_offset;
765                         uio.uio_resid = size;
766                         uio.uio_segflg = UIO_USERSPACE;
767                         uio.uio_rw = UIO_WRITE;
768                         uio.uio_td = td;
769                         iomode = NFSWRITE_FILESYNC;
770                         error = ncl_writerpc(vp, &uio, cred, &iomode,
771                             &must_commit, 0);
772                         KASSERT((must_commit == 0), 
773                                 ("ncl_directio_write: Did not commit write"));
774                         if (error)
775                                 return (error);
776                         uiop->uio_offset += size;
777                         uiop->uio_resid -= size;
778                         if (uiop->uio_iov->iov_len <= size) {
779                                 uiop->uio_iovcnt--;
780                                 uiop->uio_iov++;
781                         } else {
782                                 uiop->uio_iov->iov_base = 
783                                         (char *)uiop->uio_iov->iov_base + size;
784                                 uiop->uio_iov->iov_len -= size;
785                         }
786                 }
787         } else {
788                 struct uio *t_uio;
789                 struct iovec *t_iov;
790                 struct buf *bp;
791                 
792                 /*
793                  * Break up the write into blocksize chunks and hand these
794                  * over to nfsiod's for write back.
795                  * Unfortunately, this incurs a copy of the data. Since 
796                  * the user could modify the buffer before the write is 
797                  * initiated.
798                  * 
799                  * The obvious optimization here is that one of the 2 copies
800                  * in the async write path can be eliminated by copying the
801                  * data here directly into mbufs and passing the mbuf chain
802                  * down. But that will require a fair amount of re-working
803                  * of the code and can be done if there's enough interest
804                  * in NFS directio access.
805                  */
806                 while (uiop->uio_resid > 0) {
807                         size = min(uiop->uio_resid, wsize);
808                         size = min(uiop->uio_iov->iov_len, size);
809                         bp = getpbuf(&ncl_pbuf_freecnt);
810                         t_uio = malloc(sizeof(struct uio), M_NFSDIRECTIO, M_WAITOK);
811                         t_iov = malloc(sizeof(struct iovec), M_NFSDIRECTIO, M_WAITOK);
812                         t_iov->iov_base = malloc(size, M_NFSDIRECTIO, M_WAITOK);
813                         t_iov->iov_len = size;
814                         t_uio->uio_iov = t_iov;
815                         t_uio->uio_iovcnt = 1;
816                         t_uio->uio_offset = uiop->uio_offset;
817                         t_uio->uio_resid = size;
818                         t_uio->uio_segflg = UIO_SYSSPACE;
819                         t_uio->uio_rw = UIO_WRITE;
820                         t_uio->uio_td = td;
821                         bcopy(uiop->uio_iov->iov_base, t_iov->iov_base, size);
822                         bp->b_flags |= B_DIRECT;
823                         bp->b_iocmd = BIO_WRITE;
824                         if (cred != NOCRED) {
825                                 crhold(cred);
826                                 bp->b_wcred = cred;
827                         } else 
828                                 bp->b_wcred = NOCRED;                   
829                         bp->b_caller1 = (void *)t_uio;
830                         bp->b_vp = vp;
831                         error = ncl_asyncio(nmp, bp, NOCRED, td);
832                         if (error) {
833                                 free(t_iov->iov_base, M_NFSDIRECTIO);
834                                 free(t_iov, M_NFSDIRECTIO);
835                                 free(t_uio, M_NFSDIRECTIO);
836                                 bp->b_vp = NULL;
837                                 relpbuf(bp, &ncl_pbuf_freecnt);
838                                 if (error == EINTR)
839                                         return (error);
840                                 goto do_sync;
841                         }
842                         uiop->uio_offset += size;
843                         uiop->uio_resid -= size;
844                         if (uiop->uio_iov->iov_len <= size) {
845                                 uiop->uio_iovcnt--;
846                                 uiop->uio_iov++;
847                         } else {
848                                 uiop->uio_iov->iov_base = 
849                                         (char *)uiop->uio_iov->iov_base + size;
850                                 uiop->uio_iov->iov_len -= size;
851                         }
852                 }
853         }
854         return (0);
855 }
856
857 /*
858  * Vnode op for write using bio
859  */
860 int
861 ncl_write(struct vop_write_args *ap)
862 {
863         int biosize;
864         struct uio *uio = ap->a_uio;
865         struct thread *td = uio->uio_td;
866         struct vnode *vp = ap->a_vp;
867         struct nfsnode *np = VTONFS(vp);
868         struct ucred *cred = ap->a_cred;
869         int ioflag = ap->a_ioflag;
870         struct buf *bp;
871         struct vattr vattr;
872         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
873         daddr_t lbn;
874         int bcount;
875         int n, on, error = 0;
876         struct proc *p = td?td->td_proc:NULL;
877
878         KASSERT(uio->uio_rw == UIO_WRITE, ("ncl_write mode"));
879         KASSERT(uio->uio_segflg != UIO_USERSPACE || uio->uio_td == curthread,
880             ("ncl_write proc"));
881         if (vp->v_type != VREG)
882                 return (EIO);
883         mtx_lock(&np->n_mtx);
884         if (np->n_flag & NWRITEERR) {
885                 np->n_flag &= ~NWRITEERR;
886                 mtx_unlock(&np->n_mtx);
887                 return (np->n_error);
888         } else
889                 mtx_unlock(&np->n_mtx);
890         mtx_lock(&nmp->nm_mtx);
891         if ((nmp->nm_flag & NFSMNT_NFSV3) != 0 &&
892             (nmp->nm_state & NFSSTA_GOTFSINFO) == 0) {
893                 mtx_unlock(&nmp->nm_mtx);
894                 (void)ncl_fsinfo(nmp, vp, cred, td);
895                 mtx_lock(&nmp->nm_mtx);
896         }
897         if (nmp->nm_wsize == 0)
898                 (void) newnfs_iosize(nmp);
899         mtx_unlock(&nmp->nm_mtx);
900
901         /*
902          * Synchronously flush pending buffers if we are in synchronous
903          * mode or if we are appending.
904          */
905         if (ioflag & (IO_APPEND | IO_SYNC)) {
906                 mtx_lock(&np->n_mtx);
907                 if (np->n_flag & NMODIFIED) {
908                         mtx_unlock(&np->n_mtx);
909 #ifdef notyet /* Needs matching nonblock semantics elsewhere, too. */
910                         /*
911                          * Require non-blocking, synchronous writes to
912                          * dirty files to inform the program it needs
913                          * to fsync(2) explicitly.
914                          */
915                         if (ioflag & IO_NDELAY)
916                                 return (EAGAIN);
917 #endif
918 flush_and_restart:
919                         np->n_attrstamp = 0;
920                         error = ncl_vinvalbuf(vp, V_SAVE, td, 1);
921                         if (error)
922                                 return (error);
923                 } else
924                         mtx_unlock(&np->n_mtx);
925         }
926
927         /*
928          * If IO_APPEND then load uio_offset.  We restart here if we cannot
929          * get the append lock.
930          */
931         if (ioflag & IO_APPEND) {
932                 np->n_attrstamp = 0;
933                 error = VOP_GETATTR(vp, &vattr, cred);
934                 if (error)
935                         return (error);
936                 mtx_lock(&np->n_mtx);
937                 uio->uio_offset = np->n_size;
938                 mtx_unlock(&np->n_mtx);
939         }
940
941         if (uio->uio_offset < 0)
942                 return (EINVAL);
943         if ((uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
944                 return (EFBIG);
945         if (uio->uio_resid == 0)
946                 return (0);
947
948         if (newnfs_directio_enable && (ioflag & IO_DIRECT) && vp->v_type == VREG)
949                 return nfs_directio_write(vp, uio, cred, ioflag);
950
951         /*
952          * Maybe this should be above the vnode op call, but so long as
953          * file servers have no limits, i don't think it matters
954          */
955         if (p != NULL) {
956                 PROC_LOCK(p);
957                 if (uio->uio_offset + uio->uio_resid >
958                     lim_cur(p, RLIMIT_FSIZE)) {
959                         psignal(p, SIGXFSZ);
960                         PROC_UNLOCK(p);
961                         return (EFBIG);
962                 }
963                 PROC_UNLOCK(p);
964         }
965
966         biosize = vp->v_mount->mnt_stat.f_iosize;
967         /*
968          * Find all of this file's B_NEEDCOMMIT buffers.  If our writes
969          * would exceed the local maximum per-file write commit size when
970          * combined with those, we must decide whether to flush,
971          * go synchronous, or return error.  We don't bother checking
972          * IO_UNIT -- we just make all writes atomic anyway, as there's
973          * no point optimizing for something that really won't ever happen.
974          */
975         if (!(ioflag & IO_SYNC)) {
976                 int nflag;
977
978                 mtx_lock(&np->n_mtx);
979                 nflag = np->n_flag;
980                 mtx_unlock(&np->n_mtx);         
981                 int needrestart = 0;
982                 if (nmp->nm_wcommitsize < uio->uio_resid) {
983                         /*
984                          * If this request could not possibly be completed
985                          * without exceeding the maximum outstanding write
986                          * commit size, see if we can convert it into a
987                          * synchronous write operation.
988                          */
989                         if (ioflag & IO_NDELAY)
990                                 return (EAGAIN);
991                         ioflag |= IO_SYNC;
992                         if (nflag & NMODIFIED)
993                                 needrestart = 1;
994                 } else if (nflag & NMODIFIED) {
995                         int wouldcommit = 0;
996                         BO_LOCK(&vp->v_bufobj);
997                         if (vp->v_bufobj.bo_dirty.bv_cnt != 0) {
998                                 TAILQ_FOREACH(bp, &vp->v_bufobj.bo_dirty.bv_hd,
999                                     b_bobufs) {
1000                                         if (bp->b_flags & B_NEEDCOMMIT)
1001                                                 wouldcommit += bp->b_bcount;
1002                                 }
1003                         }
1004                         BO_UNLOCK(&vp->v_bufobj);
1005                         /*
1006                          * Since we're not operating synchronously and
1007                          * bypassing the buffer cache, we are in a commit
1008                          * and holding all of these buffers whether
1009                          * transmitted or not.  If not limited, this
1010                          * will lead to the buffer cache deadlocking,
1011                          * as no one else can flush our uncommitted buffers.
1012                          */
1013                         wouldcommit += uio->uio_resid;
1014                         /*
1015                          * If we would initially exceed the maximum
1016                          * outstanding write commit size, flush and restart.
1017                          */
1018                         if (wouldcommit > nmp->nm_wcommitsize)
1019                                 needrestart = 1;
1020                 }
1021                 if (needrestart)
1022                         goto flush_and_restart;
1023         }
1024
1025         do {
1026                 NFSINCRGLOBAL(newnfsstats.biocache_writes);
1027                 lbn = uio->uio_offset / biosize;
1028                 on = uio->uio_offset & (biosize-1);
1029                 n = min((unsigned)(biosize - on), uio->uio_resid);
1030 again:
1031                 /*
1032                  * Handle direct append and file extension cases, calculate
1033                  * unaligned buffer size.
1034                  */
1035                 mtx_lock(&np->n_mtx);
1036                 if (uio->uio_offset == np->n_size && n) {
1037                         mtx_unlock(&np->n_mtx);
1038                         /*
1039                          * Get the buffer (in its pre-append state to maintain
1040                          * B_CACHE if it was previously set).  Resize the
1041                          * nfsnode after we have locked the buffer to prevent
1042                          * readers from reading garbage.
1043                          */
1044                         bcount = on;
1045                         bp = nfs_getcacheblk(vp, lbn, bcount, td);
1046
1047                         if (bp != NULL) {
1048                                 long save;
1049
1050                                 mtx_lock(&np->n_mtx);
1051                                 np->n_size = uio->uio_offset + n;
1052                                 np->n_flag |= NMODIFIED;
1053                                 vnode_pager_setsize(vp, np->n_size);
1054                                 mtx_unlock(&np->n_mtx);
1055
1056                                 save = bp->b_flags & B_CACHE;
1057                                 bcount += n;
1058                                 allocbuf(bp, bcount);
1059                                 bp->b_flags |= save;
1060                         }
1061                 } else {
1062                         /*
1063                          * Obtain the locked cache block first, and then
1064                          * adjust the file's size as appropriate.
1065                          */
1066                         bcount = on + n;
1067                         if ((off_t)lbn * biosize + bcount < np->n_size) {
1068                                 if ((off_t)(lbn + 1) * biosize < np->n_size)
1069                                         bcount = biosize;
1070                                 else
1071                                         bcount = np->n_size - (off_t)lbn * biosize;
1072                         }
1073                         mtx_unlock(&np->n_mtx);
1074                         bp = nfs_getcacheblk(vp, lbn, bcount, td);
1075                         mtx_lock(&np->n_mtx);
1076                         if (uio->uio_offset + n > np->n_size) {
1077                                 np->n_size = uio->uio_offset + n;
1078                                 np->n_flag |= NMODIFIED;
1079                                 vnode_pager_setsize(vp, np->n_size);
1080                         }
1081                         mtx_unlock(&np->n_mtx);
1082                 }
1083
1084                 if (!bp) {
1085                         error = newnfs_sigintr(nmp, td);
1086                         if (!error)
1087                                 error = EINTR;
1088                         break;
1089                 }
1090
1091                 /*
1092                  * Issue a READ if B_CACHE is not set.  In special-append
1093                  * mode, B_CACHE is based on the buffer prior to the write
1094                  * op and is typically set, avoiding the read.  If a read
1095                  * is required in special append mode, the server will
1096                  * probably send us a short-read since we extended the file
1097                  * on our end, resulting in b_resid == 0 and, thusly,
1098                  * B_CACHE getting set.
1099                  *
1100                  * We can also avoid issuing the read if the write covers
1101                  * the entire buffer.  We have to make sure the buffer state
1102                  * is reasonable in this case since we will not be initiating
1103                  * I/O.  See the comments in kern/vfs_bio.c's getblk() for
1104                  * more information.
1105                  *
1106                  * B_CACHE may also be set due to the buffer being cached
1107                  * normally.
1108                  */
1109
1110                 if (on == 0 && n == bcount) {
1111                         bp->b_flags |= B_CACHE;
1112                         bp->b_flags &= ~B_INVAL;
1113                         bp->b_ioflags &= ~BIO_ERROR;
1114                 }
1115
1116                 if ((bp->b_flags & B_CACHE) == 0) {
1117                         bp->b_iocmd = BIO_READ;
1118                         vfs_busy_pages(bp, 0);
1119                         error = ncl_doio(vp, bp, cred, td, 0);
1120                         if (error) {
1121                                 brelse(bp);
1122                                 break;
1123                         }
1124                 }
1125                 if (bp->b_wcred == NOCRED)
1126                         bp->b_wcred = crhold(cred);
1127                 mtx_lock(&np->n_mtx);
1128                 np->n_flag |= NMODIFIED;
1129                 mtx_unlock(&np->n_mtx);
1130
1131                 /*
1132                  * If dirtyend exceeds file size, chop it down.  This should
1133                  * not normally occur but there is an append race where it
1134                  * might occur XXX, so we log it.
1135                  *
1136                  * If the chopping creates a reverse-indexed or degenerate
1137                  * situation with dirtyoff/end, we 0 both of them.
1138                  */
1139
1140                 if (bp->b_dirtyend > bcount) {
1141                         ncl_printf("NFS append race @%lx:%d\n",
1142                             (long)bp->b_blkno * DEV_BSIZE,
1143                             bp->b_dirtyend - bcount);
1144                         bp->b_dirtyend = bcount;
1145                 }
1146
1147                 if (bp->b_dirtyoff >= bp->b_dirtyend)
1148                         bp->b_dirtyoff = bp->b_dirtyend = 0;
1149
1150                 /*
1151                  * If the new write will leave a contiguous dirty
1152                  * area, just update the b_dirtyoff and b_dirtyend,
1153                  * otherwise force a write rpc of the old dirty area.
1154                  *
1155                  * While it is possible to merge discontiguous writes due to
1156                  * our having a B_CACHE buffer ( and thus valid read data
1157                  * for the hole), we don't because it could lead to
1158                  * significant cache coherency problems with multiple clients,
1159                  * especially if locking is implemented later on.
1160                  *
1161                  * as an optimization we could theoretically maintain
1162                  * a linked list of discontinuous areas, but we would still
1163                  * have to commit them separately so there isn't much
1164                  * advantage to it except perhaps a bit of asynchronization.
1165                  */
1166
1167                 if (bp->b_dirtyend > 0 &&
1168                     (on > bp->b_dirtyend || (on + n) < bp->b_dirtyoff)) {
1169                         if (bwrite(bp) == EINTR) {
1170                                 error = EINTR;
1171                                 break;
1172                         }
1173                         goto again;
1174                 }
1175
1176                 error = uiomove((char *)bp->b_data + on, n, uio);
1177
1178                 /*
1179                  * Since this block is being modified, it must be written
1180                  * again and not just committed.  Since write clustering does
1181                  * not work for the stage 1 data write, only the stage 2
1182                  * commit rpc, we have to clear B_CLUSTEROK as well.
1183                  */
1184                 bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
1185
1186                 if (error) {
1187                         bp->b_ioflags |= BIO_ERROR;
1188                         brelse(bp);
1189                         break;
1190                 }
1191
1192                 /*
1193                  * Only update dirtyoff/dirtyend if not a degenerate
1194                  * condition.
1195                  */
1196                 if (n) {
1197                         if (bp->b_dirtyend > 0) {
1198                                 bp->b_dirtyoff = min(on, bp->b_dirtyoff);
1199                                 bp->b_dirtyend = max((on + n), bp->b_dirtyend);
1200                         } else {
1201                                 bp->b_dirtyoff = on;
1202                                 bp->b_dirtyend = on + n;
1203                         }
1204                         vfs_bio_set_valid(bp, on, n);
1205                 }
1206
1207                 /*
1208                  * If IO_SYNC do bwrite().
1209                  *
1210                  * IO_INVAL appears to be unused.  The idea appears to be
1211                  * to turn off caching in this case.  Very odd.  XXX
1212                  */
1213                 if ((ioflag & IO_SYNC)) {
1214                         if (ioflag & IO_INVAL)
1215                                 bp->b_flags |= B_NOCACHE;
1216                         error = bwrite(bp);
1217                         if (error)
1218                                 break;
1219                 } else if ((n + on) == biosize) {
1220                         bp->b_flags |= B_ASYNC;
1221                         (void) ncl_writebp(bp, 0, NULL);
1222                 } else {
1223                         bdwrite(bp);
1224                 }
1225         } while (uio->uio_resid > 0 && n > 0);
1226
1227         return (error);
1228 }
1229
1230 /*
1231  * Get an nfs cache block.
1232  *
1233  * Allocate a new one if the block isn't currently in the cache
1234  * and return the block marked busy. If the calling process is
1235  * interrupted by a signal for an interruptible mount point, return
1236  * NULL.
1237  *
1238  * The caller must carefully deal with the possible B_INVAL state of
1239  * the buffer.  ncl_doio() clears B_INVAL (and ncl_asyncio() clears it
1240  * indirectly), so synchronous reads can be issued without worrying about
1241  * the B_INVAL state.  We have to be a little more careful when dealing
1242  * with writes (see comments in nfs_write()) when extending a file past
1243  * its EOF.
1244  */
1245 static struct buf *
1246 nfs_getcacheblk(struct vnode *vp, daddr_t bn, int size, struct thread *td)
1247 {
1248         struct buf *bp;
1249         struct mount *mp;
1250         struct nfsmount *nmp;
1251
1252         mp = vp->v_mount;
1253         nmp = VFSTONFS(mp);
1254
1255         if (nmp->nm_flag & NFSMNT_INT) {
1256                 sigset_t oldset;
1257
1258                 newnfs_set_sigmask(td, &oldset);
1259                 bp = getblk(vp, bn, size, NFS_PCATCH, 0, 0);
1260                 newnfs_restore_sigmask(td, &oldset);
1261                 while (bp == NULL) {
1262                         if (newnfs_sigintr(nmp, td))
1263                                 return (NULL);
1264                         bp = getblk(vp, bn, size, 0, 2 * hz, 0);
1265                 }
1266         } else {
1267                 bp = getblk(vp, bn, size, 0, 0, 0);
1268         }
1269
1270         if (vp->v_type == VREG) {
1271                 int biosize;
1272
1273                 biosize = mp->mnt_stat.f_iosize;
1274                 bp->b_blkno = bn * (biosize / DEV_BSIZE);
1275         }
1276         return (bp);
1277 }
1278
1279 /*
1280  * Flush and invalidate all dirty buffers. If another process is already
1281  * doing the flush, just wait for completion.
1282  */
1283 int
1284 ncl_vinvalbuf(struct vnode *vp, int flags, struct thread *td, int intrflg)
1285 {
1286         struct nfsnode *np = VTONFS(vp);
1287         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
1288         int error = 0, slpflag, slptimeo;
1289         int old_lock = 0;
1290
1291         ASSERT_VOP_LOCKED(vp, "ncl_vinvalbuf");
1292
1293         if ((nmp->nm_flag & NFSMNT_INT) == 0)
1294                 intrflg = 0;
1295         if ((nmp->nm_mountp->mnt_kern_flag & MNTK_UNMOUNTF))
1296                 intrflg = 1;
1297         if (intrflg) {
1298                 slpflag = NFS_PCATCH;
1299                 slptimeo = 2 * hz;
1300         } else {
1301                 slpflag = 0;
1302                 slptimeo = 0;
1303         }
1304
1305         old_lock = ncl_upgrade_vnlock(vp);
1306         if (vp->v_iflag & VI_DOOMED) {
1307                 /*
1308                  * Since vgonel() uses the generic vinvalbuf() to flush
1309                  * dirty buffers and it does not call this function, it
1310                  * is safe to just return OK when VI_DOOMED is set.
1311                  */
1312                 ncl_downgrade_vnlock(vp, old_lock);
1313                 return (0);
1314         }
1315
1316         /*
1317          * Now, flush as required.
1318          */
1319         if ((flags & V_SAVE) && (vp->v_bufobj.bo_object != NULL)) {
1320                 VM_OBJECT_LOCK(vp->v_bufobj.bo_object);
1321                 vm_object_page_clean(vp->v_bufobj.bo_object, 0, 0, OBJPC_SYNC);
1322                 VM_OBJECT_UNLOCK(vp->v_bufobj.bo_object);
1323                 /*
1324                  * If the page clean was interrupted, fail the invalidation.
1325                  * Not doing so, we run the risk of losing dirty pages in the 
1326                  * vinvalbuf() call below.
1327                  */
1328                 if (intrflg && (error = newnfs_sigintr(nmp, td)))
1329                         goto out;
1330         }
1331
1332         error = vinvalbuf(vp, flags, slpflag, 0);
1333         while (error) {
1334                 if (intrflg && (error = newnfs_sigintr(nmp, td)))
1335                         goto out;
1336                 error = vinvalbuf(vp, flags, 0, slptimeo);
1337         }
1338         mtx_lock(&np->n_mtx);
1339         if (np->n_directio_asyncwr == 0)
1340                 np->n_flag &= ~NMODIFIED;
1341         mtx_unlock(&np->n_mtx);
1342 out:
1343         ncl_downgrade_vnlock(vp, old_lock);
1344         return error;
1345 }
1346
1347 /*
1348  * Initiate asynchronous I/O. Return an error if no nfsiods are available.
1349  * This is mainly to avoid queueing async I/O requests when the nfsiods
1350  * are all hung on a dead server.
1351  *
1352  * Note: ncl_asyncio() does not clear (BIO_ERROR|B_INVAL) but when the bp
1353  * is eventually dequeued by the async daemon, ncl_doio() *will*.
1354  */
1355 int
1356 ncl_asyncio(struct nfsmount *nmp, struct buf *bp, struct ucred *cred, struct thread *td)
1357 {
1358         int iod;
1359         int gotiod;
1360         int slpflag = 0;
1361         int slptimeo = 0;
1362         int error, error2;
1363
1364         /*
1365          * Unless iothreadcnt is set > 0, don't bother with async I/O
1366          * threads. For LAN environments, they don't buy any significant
1367          * performance improvement that you can't get with large block
1368          * sizes.
1369          */
1370         if (nmp->nm_readahead == 0)
1371                 return (EPERM);
1372
1373         /*
1374          * Commits are usually short and sweet so lets save some cpu and
1375          * leave the async daemons for more important rpc's (such as reads
1376          * and writes).
1377          */
1378         mtx_lock(&ncl_iod_mutex);
1379         if (bp->b_iocmd == BIO_WRITE && (bp->b_flags & B_NEEDCOMMIT) &&
1380             (nmp->nm_bufqiods > ncl_numasync / 2)) {
1381                 mtx_unlock(&ncl_iod_mutex);
1382                 return(EIO);
1383         }
1384 again:
1385         if (nmp->nm_flag & NFSMNT_INT)
1386                 slpflag = NFS_PCATCH;
1387         gotiod = FALSE;
1388
1389         /*
1390          * Find a free iod to process this request.
1391          */
1392         for (iod = 0; iod < ncl_numasync; iod++)
1393                 if (ncl_iodwant[iod] == NFSIOD_AVAILABLE) {
1394                         gotiod = TRUE;
1395                         break;
1396                 }
1397
1398         /*
1399          * Try to create one if none are free.
1400          */
1401         if (!gotiod) {
1402                 iod = ncl_nfsiodnew(1);
1403                 if (iod != -1)
1404                         gotiod = TRUE;
1405         }
1406
1407         if (gotiod) {
1408                 /*
1409                  * Found one, so wake it up and tell it which
1410                  * mount to process.
1411                  */
1412                 NFS_DPF(ASYNCIO, ("ncl_asyncio: waking iod %d for mount %p\n",
1413                     iod, nmp));
1414                 ncl_iodwant[iod] = NFSIOD_NOT_AVAILABLE;
1415                 ncl_iodmount[iod] = nmp;
1416                 nmp->nm_bufqiods++;
1417                 wakeup(&ncl_iodwant[iod]);
1418         }
1419
1420         /*
1421          * If none are free, we may already have an iod working on this mount
1422          * point.  If so, it will process our request.
1423          */
1424         if (!gotiod) {
1425                 if (nmp->nm_bufqiods > 0) {
1426                         NFS_DPF(ASYNCIO,
1427                                 ("ncl_asyncio: %d iods are already processing mount %p\n",
1428                                  nmp->nm_bufqiods, nmp));
1429                         gotiod = TRUE;
1430                 }
1431         }
1432
1433         /*
1434          * If we have an iod which can process the request, then queue
1435          * the buffer.
1436          */
1437         if (gotiod) {
1438                 /*
1439                  * Ensure that the queue never grows too large.  We still want
1440                  * to asynchronize so we block rather then return EIO.
1441                  */
1442                 while (nmp->nm_bufqlen >= 2*ncl_numasync) {
1443                         NFS_DPF(ASYNCIO,
1444                                 ("ncl_asyncio: waiting for mount %p queue to drain\n", nmp));
1445                         nmp->nm_bufqwant = TRUE;
1446                         error = newnfs_msleep(td, &nmp->nm_bufq, 
1447                             &ncl_iod_mutex, slpflag | PRIBIO, "nfsaio",
1448                            slptimeo);
1449                         if (error) {
1450                                 error2 = newnfs_sigintr(nmp, td);
1451                                 if (error2) {
1452                                         mtx_unlock(&ncl_iod_mutex);                                     
1453                                         return (error2);
1454                                 }
1455                                 if (slpflag == NFS_PCATCH) {
1456                                         slpflag = 0;
1457                                         slptimeo = 2 * hz;
1458                                 }
1459                         }
1460                         /*
1461                          * We might have lost our iod while sleeping,
1462                          * so check and loop if nescessary.
1463                          */
1464                         if (nmp->nm_bufqiods == 0) {
1465                                 NFS_DPF(ASYNCIO,
1466                                         ("ncl_asyncio: no iods after mount %p queue was drained, looping\n", nmp));
1467                                 goto again;
1468                         }
1469                 }
1470
1471                 /* We might have lost our nfsiod */
1472                 if (nmp->nm_bufqiods == 0) {
1473                         NFS_DPF(ASYNCIO,
1474                                 ("ncl_asyncio: no iods after mount %p queue was drained, looping\n", nmp));
1475                         goto again;
1476                 }
1477
1478                 if (bp->b_iocmd == BIO_READ) {
1479                         if (bp->b_rcred == NOCRED && cred != NOCRED)
1480                                 bp->b_rcred = crhold(cred);
1481                 } else {
1482                         if (bp->b_wcred == NOCRED && cred != NOCRED)
1483                                 bp->b_wcred = crhold(cred);
1484                 }
1485
1486                 if (bp->b_flags & B_REMFREE)
1487                         bremfreef(bp);
1488                 BUF_KERNPROC(bp);
1489                 TAILQ_INSERT_TAIL(&nmp->nm_bufq, bp, b_freelist);
1490                 nmp->nm_bufqlen++;
1491                 if ((bp->b_flags & B_DIRECT) && bp->b_iocmd == BIO_WRITE) {
1492                         mtx_lock(&(VTONFS(bp->b_vp))->n_mtx);                   
1493                         VTONFS(bp->b_vp)->n_flag |= NMODIFIED;
1494                         VTONFS(bp->b_vp)->n_directio_asyncwr++;
1495                         mtx_unlock(&(VTONFS(bp->b_vp))->n_mtx);
1496                 }
1497                 mtx_unlock(&ncl_iod_mutex);
1498                 return (0);
1499         }
1500
1501         mtx_unlock(&ncl_iod_mutex);
1502
1503         /*
1504          * All the iods are busy on other mounts, so return EIO to
1505          * force the caller to process the i/o synchronously.
1506          */
1507         NFS_DPF(ASYNCIO, ("ncl_asyncio: no iods available, i/o is synchronous\n"));
1508         return (EIO);
1509 }
1510
1511 void
1512 ncl_doio_directwrite(struct buf *bp)
1513 {
1514         int iomode, must_commit;
1515         struct uio *uiop = (struct uio *)bp->b_caller1;
1516         char *iov_base = uiop->uio_iov->iov_base;
1517         
1518         iomode = NFSWRITE_FILESYNC;
1519         uiop->uio_td = NULL; /* NULL since we're in nfsiod */
1520         ncl_writerpc(bp->b_vp, uiop, bp->b_wcred, &iomode, &must_commit, 0);
1521         KASSERT((must_commit == 0), ("ncl_doio_directwrite: Did not commit write"));
1522         free(iov_base, M_NFSDIRECTIO);
1523         free(uiop->uio_iov, M_NFSDIRECTIO);
1524         free(uiop, M_NFSDIRECTIO);
1525         if ((bp->b_flags & B_DIRECT) && bp->b_iocmd == BIO_WRITE) {
1526                 struct nfsnode *np = VTONFS(bp->b_vp);
1527                 mtx_lock(&np->n_mtx);
1528                 np->n_directio_asyncwr--;
1529                 if (np->n_directio_asyncwr == 0) {
1530                         np->n_flag &= ~NMODIFIED;
1531                         if ((np->n_flag & NFSYNCWAIT)) {
1532                                 np->n_flag &= ~NFSYNCWAIT;
1533                                 wakeup((caddr_t)&np->n_directio_asyncwr);
1534                         }
1535                 }
1536                 mtx_unlock(&np->n_mtx);
1537         }
1538         bp->b_vp = NULL;
1539         relpbuf(bp, &ncl_pbuf_freecnt);
1540 }
1541
1542 /*
1543  * Do an I/O operation to/from a cache block. This may be called
1544  * synchronously or from an nfsiod.
1545  */
1546 int
1547 ncl_doio(struct vnode *vp, struct buf *bp, struct ucred *cr, struct thread *td,
1548     int called_from_strategy)
1549 {
1550         struct uio *uiop;
1551         struct nfsnode *np;
1552         struct nfsmount *nmp;
1553         int error = 0, iomode, must_commit = 0;
1554         struct uio uio;
1555         struct iovec io;
1556         struct proc *p = td ? td->td_proc : NULL;
1557         uint8_t iocmd;
1558         
1559         np = VTONFS(vp);
1560         nmp = VFSTONFS(vp->v_mount);
1561         uiop = &uio;
1562         uiop->uio_iov = &io;
1563         uiop->uio_iovcnt = 1;
1564         uiop->uio_segflg = UIO_SYSSPACE;
1565         uiop->uio_td = td;
1566
1567         /*
1568          * clear BIO_ERROR and B_INVAL state prior to initiating the I/O.  We
1569          * do this here so we do not have to do it in all the code that
1570          * calls us.
1571          */
1572         bp->b_flags &= ~B_INVAL;
1573         bp->b_ioflags &= ~BIO_ERROR;
1574
1575         KASSERT(!(bp->b_flags & B_DONE), ("ncl_doio: bp %p already marked done", bp));
1576         iocmd = bp->b_iocmd;
1577         if (iocmd == BIO_READ) {
1578             io.iov_len = uiop->uio_resid = bp->b_bcount;
1579             io.iov_base = bp->b_data;
1580             uiop->uio_rw = UIO_READ;
1581
1582             switch (vp->v_type) {
1583             case VREG:
1584                 uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE;
1585                 NFSINCRGLOBAL(newnfsstats.read_bios);
1586                 error = ncl_readrpc(vp, uiop, cr);
1587
1588                 if (!error) {
1589                     if (uiop->uio_resid) {
1590                         /*
1591                          * If we had a short read with no error, we must have
1592                          * hit a file hole.  We should zero-fill the remainder.
1593                          * This can also occur if the server hits the file EOF.
1594                          *
1595                          * Holes used to be able to occur due to pending
1596                          * writes, but that is not possible any longer.
1597                          */
1598                         int nread = bp->b_bcount - uiop->uio_resid;
1599                         int left  = uiop->uio_resid;
1600
1601                         if (left > 0)
1602                                 bzero((char *)bp->b_data + nread, left);
1603                         uiop->uio_resid = 0;
1604                     }
1605                 }
1606                 /* ASSERT_VOP_LOCKED(vp, "ncl_doio"); */
1607                 if (p && (vp->v_vflag & VV_TEXT)) {
1608                         mtx_lock(&np->n_mtx);
1609                         if (NFS_TIMESPEC_COMPARE(&np->n_mtime, &np->n_vattr.na_mtime)) {
1610                                 mtx_unlock(&np->n_mtx);
1611                                 PROC_LOCK(p);
1612                                 killproc(p, "text file modification");
1613                                 PROC_UNLOCK(p);
1614                         } else
1615                                 mtx_unlock(&np->n_mtx);
1616                 }
1617                 break;
1618             case VLNK:
1619                 uiop->uio_offset = (off_t)0;
1620                 NFSINCRGLOBAL(newnfsstats.readlink_bios);
1621                 error = ncl_readlinkrpc(vp, uiop, cr);
1622                 break;
1623             case VDIR:
1624                 NFSINCRGLOBAL(newnfsstats.readdir_bios);
1625                 uiop->uio_offset = ((u_quad_t)bp->b_lblkno) * NFS_DIRBLKSIZ;
1626                 if ((nmp->nm_flag & NFSMNT_RDIRPLUS) != 0) {
1627                         error = ncl_readdirplusrpc(vp, uiop, cr, td);
1628                         if (error == NFSERR_NOTSUPP)
1629                                 nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
1630                 }
1631                 if ((nmp->nm_flag & NFSMNT_RDIRPLUS) == 0)
1632                         error = ncl_readdirrpc(vp, uiop, cr, td);
1633                 /*
1634                  * end-of-directory sets B_INVAL but does not generate an
1635                  * error.
1636                  */
1637                 if (error == 0 && uiop->uio_resid == bp->b_bcount)
1638                         bp->b_flags |= B_INVAL;
1639                 break;
1640             default:
1641                 ncl_printf("ncl_doio:  type %x unexpected\n", vp->v_type);
1642                 break;
1643             };
1644             if (error) {
1645                 bp->b_ioflags |= BIO_ERROR;
1646                 bp->b_error = error;
1647             }
1648         } else {
1649             /*
1650              * If we only need to commit, try to commit
1651              */
1652             if (bp->b_flags & B_NEEDCOMMIT) {
1653                     int retv;
1654                     off_t off;
1655
1656                     off = ((u_quad_t)bp->b_blkno) * DEV_BSIZE + bp->b_dirtyoff;
1657                     retv = ncl_commit(vp, off, bp->b_dirtyend-bp->b_dirtyoff,
1658                         bp->b_wcred, td);
1659                     if (retv == 0) {
1660                             bp->b_dirtyoff = bp->b_dirtyend = 0;
1661                             bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
1662                             bp->b_resid = 0;
1663                             bufdone(bp);
1664                             return (0);
1665                     }
1666                     if (retv == NFSERR_STALEWRITEVERF) {
1667                             ncl_clearcommit(vp->v_mount);
1668                     }
1669             }
1670
1671             /*
1672              * Setup for actual write
1673              */
1674             mtx_lock(&np->n_mtx);
1675             if ((off_t)bp->b_blkno * DEV_BSIZE + bp->b_dirtyend > np->n_size)
1676                 bp->b_dirtyend = np->n_size - (off_t)bp->b_blkno * DEV_BSIZE;
1677             mtx_unlock(&np->n_mtx);
1678
1679             if (bp->b_dirtyend > bp->b_dirtyoff) {
1680                 io.iov_len = uiop->uio_resid = bp->b_dirtyend
1681                     - bp->b_dirtyoff;
1682                 uiop->uio_offset = (off_t)bp->b_blkno * DEV_BSIZE
1683                     + bp->b_dirtyoff;
1684                 io.iov_base = (char *)bp->b_data + bp->b_dirtyoff;
1685                 uiop->uio_rw = UIO_WRITE;
1686                 NFSINCRGLOBAL(newnfsstats.write_bios);
1687
1688                 if ((bp->b_flags & (B_ASYNC | B_NEEDCOMMIT | B_NOCACHE | B_CLUSTER)) == B_ASYNC)
1689                     iomode = NFSWRITE_UNSTABLE;
1690                 else
1691                     iomode = NFSWRITE_FILESYNC;
1692
1693                 error = ncl_writerpc(vp, uiop, cr, &iomode, &must_commit,
1694                     called_from_strategy);
1695
1696                 /*
1697                  * When setting B_NEEDCOMMIT also set B_CLUSTEROK to try
1698                  * to cluster the buffers needing commit.  This will allow
1699                  * the system to submit a single commit rpc for the whole
1700                  * cluster.  We can do this even if the buffer is not 100%
1701                  * dirty (relative to the NFS blocksize), so we optimize the
1702                  * append-to-file-case.
1703                  *
1704                  * (when clearing B_NEEDCOMMIT, B_CLUSTEROK must also be
1705                  * cleared because write clustering only works for commit
1706                  * rpc's, not for the data portion of the write).
1707                  */
1708
1709                 if (!error && iomode == NFSWRITE_UNSTABLE) {
1710                     bp->b_flags |= B_NEEDCOMMIT;
1711                     if (bp->b_dirtyoff == 0
1712                         && bp->b_dirtyend == bp->b_bcount)
1713                         bp->b_flags |= B_CLUSTEROK;
1714                 } else {
1715                     bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
1716                 }
1717
1718                 /*
1719                  * For an interrupted write, the buffer is still valid
1720                  * and the write hasn't been pushed to the server yet,
1721                  * so we can't set BIO_ERROR and report the interruption
1722                  * by setting B_EINTR. For the B_ASYNC case, B_EINTR
1723                  * is not relevant, so the rpc attempt is essentially
1724                  * a noop.  For the case of a V3 write rpc not being
1725                  * committed to stable storage, the block is still
1726                  * dirty and requires either a commit rpc or another
1727                  * write rpc with iomode == NFSV3WRITE_FILESYNC before
1728                  * the block is reused. This is indicated by setting
1729                  * the B_DELWRI and B_NEEDCOMMIT flags.
1730                  *
1731                  * EIO is returned by ncl_writerpc() to indicate a recoverable
1732                  * write error and is handled as above, except that
1733                  * B_EINTR isn't set. One cause of this is a stale stateid
1734                  * error for the RPC that indicates recovery is required,
1735                  * when called with called_from_strategy != 0.
1736                  *
1737                  * If the buffer is marked B_PAGING, it does not reside on
1738                  * the vp's paging queues so we cannot call bdirty().  The
1739                  * bp in this case is not an NFS cache block so we should
1740                  * be safe. XXX
1741                  *
1742                  * The logic below breaks up errors into recoverable and 
1743                  * unrecoverable. For the former, we clear B_INVAL|B_NOCACHE
1744                  * and keep the buffer around for potential write retries.
1745                  * For the latter (eg ESTALE), we toss the buffer away (B_INVAL)
1746                  * and save the error in the nfsnode. This is less than ideal 
1747                  * but necessary. Keeping such buffers around could potentially
1748                  * cause buffer exhaustion eventually (they can never be written
1749                  * out, so will get constantly be re-dirtied). It also causes
1750                  * all sorts of vfs panics. For non-recoverable write errors, 
1751                  * also invalidate the attrcache, so we'll be forced to go over
1752                  * the wire for this object, returning an error to user on next
1753                  * call (most of the time).
1754                  */
1755                 if (error == EINTR || error == EIO || error == ETIMEDOUT
1756                     || (!error && (bp->b_flags & B_NEEDCOMMIT))) {
1757                         int s;
1758
1759                         s = splbio();
1760                         bp->b_flags &= ~(B_INVAL|B_NOCACHE);
1761                         if ((bp->b_flags & B_PAGING) == 0) {
1762                             bdirty(bp);
1763                             bp->b_flags &= ~B_DONE;
1764                         }
1765                         if ((error == EINTR || error == ETIMEDOUT) &&
1766                             (bp->b_flags & B_ASYNC) == 0)
1767                             bp->b_flags |= B_EINTR;
1768                         splx(s);
1769                 } else {
1770                     if (error) {
1771                         bp->b_ioflags |= BIO_ERROR;
1772                         bp->b_flags |= B_INVAL;
1773                         bp->b_error = np->n_error = error;
1774                         mtx_lock(&np->n_mtx);
1775                         np->n_flag |= NWRITEERR;
1776                         np->n_attrstamp = 0;
1777                         mtx_unlock(&np->n_mtx);
1778                     }
1779                     bp->b_dirtyoff = bp->b_dirtyend = 0;
1780                 }
1781             } else {
1782                 bp->b_resid = 0;
1783                 bufdone(bp);
1784                 return (0);
1785             }
1786         }
1787         bp->b_resid = uiop->uio_resid;
1788         if (must_commit)
1789             ncl_clearcommit(vp->v_mount);
1790         bufdone(bp);
1791         return (error);
1792 }
1793
1794 /*
1795  * Used to aid in handling ftruncate() operations on the NFS client side.
1796  * Truncation creates a number of special problems for NFS.  We have to
1797  * throw away VM pages and buffer cache buffers that are beyond EOF, and
1798  * we have to properly handle VM pages or (potentially dirty) buffers
1799  * that straddle the truncation point.
1800  */
1801
1802 int
1803 ncl_meta_setsize(struct vnode *vp, struct ucred *cred, struct thread *td, u_quad_t nsize)
1804 {
1805         struct nfsnode *np = VTONFS(vp);
1806         u_quad_t tsize;
1807         int biosize = vp->v_mount->mnt_stat.f_iosize;
1808         int error = 0;
1809
1810         mtx_lock(&np->n_mtx);
1811         tsize = np->n_size;
1812         np->n_size = nsize;
1813         mtx_unlock(&np->n_mtx);
1814
1815         if (nsize < tsize) {
1816                 struct buf *bp;
1817                 daddr_t lbn;
1818                 int bufsize;
1819
1820                 /*
1821                  * vtruncbuf() doesn't get the buffer overlapping the 
1822                  * truncation point.  We may have a B_DELWRI and/or B_CACHE
1823                  * buffer that now needs to be truncated.
1824                  */
1825                 error = vtruncbuf(vp, cred, td, nsize, biosize);
1826                 lbn = nsize / biosize;
1827                 bufsize = nsize & (biosize - 1);
1828                 bp = nfs_getcacheblk(vp, lbn, bufsize, td);
1829                 if (!bp)
1830                         return EINTR;
1831                 if (bp->b_dirtyoff > bp->b_bcount)
1832                         bp->b_dirtyoff = bp->b_bcount;
1833                 if (bp->b_dirtyend > bp->b_bcount)
1834                         bp->b_dirtyend = bp->b_bcount;
1835                 bp->b_flags |= B_RELBUF;  /* don't leave garbage around */
1836                 brelse(bp);
1837         } else {
1838                 vnode_pager_setsize(vp, nsize);
1839         }
1840         return(error);
1841 }
1842