Merge branch 'vendor/GDB'
[dragonfly.git] / sys / vfs / nfs / nfs_bio.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  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      @(#)nfs_bio.c   8.9 (Berkeley) 3/30/95
37  * $FreeBSD: /repoman/r/ncvs/src/sys/nfsclient/nfs_bio.c,v 1.130 2004/04/14 23:23:55 peadar Exp $
38  * $DragonFly: src/sys/vfs/nfs/nfs_bio.c,v 1.45 2008/07/18 00:09:39 dillon Exp $
39  */
40
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/resourcevar.h>
45 #include <sys/signalvar.h>
46 #include <sys/proc.h>
47 #include <sys/buf.h>
48 #include <sys/vnode.h>
49 #include <sys/mount.h>
50 #include <sys/kernel.h>
51 #include <sys/mbuf.h>
52
53 #include <vm/vm.h>
54 #include <vm/vm_extern.h>
55 #include <vm/vm_page.h>
56 #include <vm/vm_object.h>
57 #include <vm/vm_pager.h>
58 #include <vm/vnode_pager.h>
59
60 #include <sys/buf2.h>
61 #include <sys/thread2.h>
62 #include <vm/vm_page2.h>
63
64 #include "rpcv2.h"
65 #include "nfsproto.h"
66 #include "nfs.h"
67 #include "nfsmount.h"
68 #include "nfsnode.h"
69 #include "xdr_subs.h"
70 #include "nfsm_subs.h"
71
72
73 static struct buf *nfs_getcacheblk(struct vnode *vp, off_t loffset,
74                                    int size, struct thread *td);
75 static int nfs_check_dirent(struct nfs_dirent *dp, int maxlen);
76 static void nfsiodone_sync(struct bio *bio);
77 static void nfs_readrpc_bio_done(nfsm_info_t info);
78 static void nfs_writerpc_bio_done(nfsm_info_t info);
79 static void nfs_commitrpc_bio_done(nfsm_info_t info);
80
81 /*
82  * Vnode op for read using bio
83  */
84 int
85 nfs_bioread(struct vnode *vp, struct uio *uio, int ioflag)
86 {
87         struct nfsnode *np = VTONFS(vp);
88         int biosize, i;
89         struct buf *bp, *rabp;
90         struct vattr vattr;
91         struct thread *td;
92         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
93         off_t lbn, rabn;
94         off_t raoffset;
95         off_t loffset;
96         int seqcount;
97         int nra, error = 0;
98         int boff = 0;
99         size_t n;
100
101 #ifdef DIAGNOSTIC
102         if (uio->uio_rw != UIO_READ)
103                 panic("nfs_read mode");
104 #endif
105         if (uio->uio_resid == 0)
106                 return (0);
107         if (uio->uio_offset < 0)        /* XXX VDIR cookies can be negative */
108                 return (EINVAL);
109         td = uio->uio_td;
110
111         if ((nmp->nm_flag & NFSMNT_NFSV3) != 0 &&
112             (nmp->nm_state & NFSSTA_GOTFSINFO) == 0)
113                 (void)nfs_fsinfo(nmp, vp, td);
114         if (vp->v_type != VDIR &&
115             (uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
116                 return (EFBIG);
117         biosize = vp->v_mount->mnt_stat.f_iosize;
118         seqcount = (int)((off_t)(ioflag >> IO_SEQSHIFT) * biosize / BKVASIZE);
119
120         /*
121          * For nfs, cache consistency can only be maintained approximately.
122          * Although RFC1094 does not specify the criteria, the following is
123          * believed to be compatible with the reference port.
124          *
125          * NFS:         If local changes have been made and this is a
126          *              directory, the directory must be invalidated and
127          *              the attribute cache must be cleared.
128          *
129          *              GETATTR is called to synchronize the file size.
130          *
131          *              If remote changes are detected local data is flushed
132          *              and the cache is invalidated.
133          *
134          *              NOTE: In the normal case the attribute cache is not
135          *              cleared which means GETATTR may use cached data and
136          *              not immediately detect changes made on the server.
137          */
138         if ((np->n_flag & NLMODIFIED) && vp->v_type == VDIR) {
139                 nfs_invaldir(vp);
140                 error = nfs_vinvalbuf(vp, V_SAVE, 1);
141                 if (error)
142                         return (error);
143                 np->n_attrstamp = 0;
144         }
145         error = VOP_GETATTR(vp, &vattr);
146         if (error)
147                 return (error);
148
149         /*
150          * This can deadlock getpages/putpages for regular
151          * files.  Only do it for directories.
152          */
153         if (np->n_flag & NRMODIFIED) {
154                 if (vp->v_type == VDIR) {
155                         nfs_invaldir(vp);
156                         error = nfs_vinvalbuf(vp, V_SAVE, 1);
157                         if (error)
158                                 return (error);
159                         np->n_flag &= ~NRMODIFIED;
160                 }
161         }
162
163         /*
164          * Loop until uio exhausted or we hit EOF
165          */
166         do {
167             bp = NULL;
168
169             switch (vp->v_type) {
170             case VREG:
171                 nfsstats.biocache_reads++;
172                 lbn = uio->uio_offset / biosize;
173                 boff = uio->uio_offset & (biosize - 1);
174                 loffset = (off_t)lbn * biosize;
175
176                 /*
177                  * Start the read ahead(s), as required.
178                  */
179                 if (nmp->nm_readahead > 0 && nfs_asyncok(nmp)) {
180                     for (nra = 0; nra < nmp->nm_readahead && nra < seqcount &&
181                         (off_t)(lbn + 1 + nra) * biosize < np->n_size; nra++) {
182                         rabn = lbn + 1 + nra;
183                         raoffset = (off_t)rabn * biosize;
184                         if (findblk(vp, raoffset, FINDBLK_TEST) == NULL) {
185                             rabp = nfs_getcacheblk(vp, raoffset, biosize, td);
186                             if (!rabp)
187                                 return (EINTR);
188                             if ((rabp->b_flags & (B_CACHE|B_DELWRI)) == 0) {
189                                 rabp->b_cmd = BUF_CMD_READ;
190                                 vfs_busy_pages(vp, rabp);
191                                 nfs_asyncio(vp, &rabp->b_bio2);
192                             } else {
193                                 brelse(rabp);
194                             }
195                         }
196                     }
197                 }
198
199                 /*
200                  * Obtain the buffer cache block.  Figure out the buffer size
201                  * when we are at EOF.  If we are modifying the size of the
202                  * buffer based on an EOF condition we need to hold 
203                  * nfs_rslock() through obtaining the buffer to prevent
204                  * a potential writer-appender from messing with n_size.
205                  * Otherwise we may accidently truncate the buffer and
206                  * lose dirty data.
207                  *
208                  * Note that bcount is *not* DEV_BSIZE aligned.
209                  */
210                 if (loffset + boff >= np->n_size) {
211                         n = 0;
212                         break;
213                 }
214                 bp = nfs_getcacheblk(vp, loffset, biosize, td);
215
216                 if (bp == NULL)
217                         return (EINTR);
218
219                 /*
220                  * If B_CACHE is not set, we must issue the read.  If this
221                  * fails, we return an error.
222                  */
223                 if ((bp->b_flags & B_CACHE) == 0) {
224                         bp->b_cmd = BUF_CMD_READ;
225                         bp->b_bio2.bio_done = nfsiodone_sync;
226                         bp->b_bio2.bio_flags |= BIO_SYNC;
227                         vfs_busy_pages(vp, bp);
228                         error = nfs_doio(vp, &bp->b_bio2, td);
229                         if (error) {
230                                 brelse(bp);
231                                 return (error);
232                         }
233                 }
234
235                 /*
236                  * on is the offset into the current bp.  Figure out how many
237                  * bytes we can copy out of the bp.  Note that bcount is
238                  * NOT DEV_BSIZE aligned.
239                  *
240                  * Then figure out how many bytes we can copy into the uio.
241                  */
242                 n = biosize - boff;
243                 if (n > uio->uio_resid)
244                         n = uio->uio_resid;
245                 if (loffset + boff + n > np->n_size)
246                         n = np->n_size - loffset - boff;
247                 break;
248             case VLNK:
249                 biosize = min(NFS_MAXPATHLEN, np->n_size);
250                 nfsstats.biocache_readlinks++;
251                 bp = nfs_getcacheblk(vp, (off_t)0, biosize, td);
252                 if (bp == NULL)
253                         return (EINTR);
254                 if ((bp->b_flags & B_CACHE) == 0) {
255                         bp->b_cmd = BUF_CMD_READ;
256                         bp->b_bio2.bio_done = nfsiodone_sync;
257                         bp->b_bio2.bio_flags |= BIO_SYNC;
258                         vfs_busy_pages(vp, bp);
259                         error = nfs_doio(vp, &bp->b_bio2, td);
260                         if (error) {
261                                 bp->b_flags |= B_ERROR | B_INVAL;
262                                 brelse(bp);
263                                 return (error);
264                         }
265                 }
266                 n = szmin(uio->uio_resid, (size_t)bp->b_bcount - bp->b_resid);
267                 boff = 0;
268                 break;
269             case VDIR:
270                 nfsstats.biocache_readdirs++;
271                 if (np->n_direofoffset &&
272                     uio->uio_offset >= np->n_direofoffset
273                 ) {
274                         return (0);
275                 }
276                 lbn = (uoff_t)uio->uio_offset / NFS_DIRBLKSIZ;
277                 boff = uio->uio_offset & (NFS_DIRBLKSIZ - 1);
278                 loffset = uio->uio_offset - boff;
279                 bp = nfs_getcacheblk(vp, loffset, NFS_DIRBLKSIZ, td);
280                 if (bp == NULL)
281                         return (EINTR);
282
283                 if ((bp->b_flags & B_CACHE) == 0) {
284                     bp->b_cmd = BUF_CMD_READ;
285                     bp->b_bio2.bio_done = nfsiodone_sync;
286                     bp->b_bio2.bio_flags |= BIO_SYNC;
287                     vfs_busy_pages(vp, bp);
288                     error = nfs_doio(vp, &bp->b_bio2, td);
289                     if (error)
290                             brelse(bp);
291                     while (error == NFSERR_BAD_COOKIE) {
292                         kprintf("got bad cookie vp %p bp %p\n", vp, bp);
293                         nfs_invaldir(vp);
294                         error = nfs_vinvalbuf(vp, 0, 1);
295                         /*
296                          * Yuck! The directory has been modified on the
297                          * server. The only way to get the block is by
298                          * reading from the beginning to get all the
299                          * offset cookies.
300                          *
301                          * Leave the last bp intact unless there is an error.
302                          * Loop back up to the while if the error is another
303                          * NFSERR_BAD_COOKIE (double yuch!).
304                          */
305                         for (i = 0; i <= lbn && !error; i++) {
306                             if (np->n_direofoffset
307                                 && (i * NFS_DIRBLKSIZ) >= np->n_direofoffset)
308                                     return (0);
309                             bp = nfs_getcacheblk(vp, (off_t)i * NFS_DIRBLKSIZ,
310                                                  NFS_DIRBLKSIZ, td);
311                             if (!bp)
312                                 return (EINTR);
313                             if ((bp->b_flags & B_CACHE) == 0) {
314                                     bp->b_cmd = BUF_CMD_READ;
315                                     bp->b_bio2.bio_done = nfsiodone_sync;
316                                     bp->b_bio2.bio_flags |= BIO_SYNC;
317                                     vfs_busy_pages(vp, bp);
318                                     error = nfs_doio(vp, &bp->b_bio2, td);
319                                     /*
320                                      * no error + B_INVAL == directory EOF,
321                                      * use the block.
322                                      */
323                                     if (error == 0 && (bp->b_flags & B_INVAL))
324                                             break;
325                             }
326                             /*
327                              * An error will throw away the block and the
328                              * for loop will break out.  If no error and this
329                              * is not the block we want, we throw away the
330                              * block and go for the next one via the for loop.
331                              */
332                             if (error || i < lbn)
333                                     brelse(bp);
334                         }
335                     }
336                     /*
337                      * The above while is repeated if we hit another cookie
338                      * error.  If we hit an error and it wasn't a cookie error,
339                      * we give up.
340                      */
341                     if (error)
342                             return (error);
343                 }
344
345                 /*
346                  * If not eof and read aheads are enabled, start one.
347                  * (You need the current block first, so that you have the
348                  *  directory offset cookie of the next block.)
349                  */
350                 if (nmp->nm_readahead > 0 && nfs_asyncok(nmp) &&
351                     (bp->b_flags & B_INVAL) == 0 &&
352                     (np->n_direofoffset == 0 ||
353                     loffset + NFS_DIRBLKSIZ < np->n_direofoffset) &&
354                     findblk(vp, loffset + NFS_DIRBLKSIZ, FINDBLK_TEST) == NULL
355                 ) {
356                         rabp = nfs_getcacheblk(vp, loffset + NFS_DIRBLKSIZ,
357                                                NFS_DIRBLKSIZ, td);
358                         if (rabp) {
359                             if ((rabp->b_flags & (B_CACHE|B_DELWRI)) == 0) {
360                                 rabp->b_cmd = BUF_CMD_READ;
361                                 vfs_busy_pages(vp, rabp);
362                                 nfs_asyncio(vp, &rabp->b_bio2);
363                             } else {
364                                 brelse(rabp);
365                             }
366                         }
367                 }
368                 /*
369                  * Unlike VREG files, whos buffer size ( bp->b_bcount ) is
370                  * chopped for the EOF condition, we cannot tell how large
371                  * NFS directories are going to be until we hit EOF.  So
372                  * an NFS directory buffer is *not* chopped to its EOF.  Now,
373                  * it just so happens that b_resid will effectively chop it
374                  * to EOF.  *BUT* this information is lost if the buffer goes
375                  * away and is reconstituted into a B_CACHE state ( due to
376                  * being VMIO ) later.  So we keep track of the directory eof
377                  * in np->n_direofoffset and chop it off as an extra step 
378                  * right here.
379                  *
380                  * NOTE: boff could already be beyond EOF.
381                  */
382                 if ((size_t)boff > NFS_DIRBLKSIZ - bp->b_resid) {
383                         n = 0;
384                 } else {
385                         n = szmin(uio->uio_resid,
386                                   NFS_DIRBLKSIZ - bp->b_resid - (size_t)boff);
387                 }
388                 if (np->n_direofoffset &&
389                     n > (size_t)(np->n_direofoffset - uio->uio_offset)) {
390                         n = (size_t)(np->n_direofoffset - uio->uio_offset);
391                 }
392                 break;
393             default:
394                 kprintf(" nfs_bioread: type %x unexpected\n",vp->v_type);
395                 n = 0;
396                 break;
397             };
398
399             switch (vp->v_type) {
400             case VREG:
401                 if (n > 0)
402                     error = uiomove(bp->b_data + boff, n, uio);
403                 break;
404             case VLNK:
405                 if (n > 0)
406                     error = uiomove(bp->b_data + boff, n, uio);
407                 n = 0;
408                 break;
409             case VDIR:
410                 if (n > 0) {
411                     off_t old_off = uio->uio_offset;
412                     caddr_t cpos, epos;
413                     struct nfs_dirent *dp;
414
415                     /*
416                      * We are casting cpos to nfs_dirent, it must be
417                      * int-aligned.
418                      */
419                     if (boff & 3) {
420                         error = EINVAL;
421                         break;
422                     }
423
424                     cpos = bp->b_data + boff;
425                     epos = bp->b_data + boff + n;
426                     while (cpos < epos && error == 0 && uio->uio_resid > 0) {
427                             dp = (struct nfs_dirent *)cpos;
428                             error = nfs_check_dirent(dp, (int)(epos - cpos));
429                             if (error)
430                                     break;
431                             if (vop_write_dirent(&error, uio, dp->nfs_ino,
432                                 dp->nfs_type, dp->nfs_namlen, dp->nfs_name)) {
433                                     break;
434                             }
435                             cpos += dp->nfs_reclen;
436                     }
437                     n = 0;
438                     if (error == 0) {
439                             uio->uio_offset = old_off + cpos -
440                                               bp->b_data - boff;
441                     }
442                 }
443                 break;
444             default:
445                 kprintf(" nfs_bioread: type %x unexpected\n",vp->v_type);
446             }
447             if (bp)
448                     brelse(bp);
449         } while (error == 0 && uio->uio_resid > 0 && n > 0);
450         return (error);
451 }
452
453 /*
454  * Userland can supply any 'seek' offset when reading a NFS directory.
455  * Validate the structure so we don't panic the kernel.  Note that
456  * the element name is nul terminated and the nul is not included
457  * in nfs_namlen.
458  */
459 static
460 int
461 nfs_check_dirent(struct nfs_dirent *dp, int maxlen)
462 {
463         int nfs_name_off = offsetof(struct nfs_dirent, nfs_name[0]);
464
465         if (nfs_name_off >= maxlen)
466                 return (EINVAL);
467         if (dp->nfs_reclen < nfs_name_off || dp->nfs_reclen > maxlen)
468                 return (EINVAL);
469         if (nfs_name_off + dp->nfs_namlen >= dp->nfs_reclen)
470                 return (EINVAL);
471         if (dp->nfs_reclen & 3)
472                 return (EINVAL);
473         return (0);
474 }
475
476 /*
477  * Vnode op for write using bio
478  *
479  * nfs_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
480  *           struct ucred *a_cred)
481  */
482 int
483 nfs_write(struct vop_write_args *ap)
484 {
485         struct uio *uio = ap->a_uio;
486         struct thread *td = uio->uio_td;
487         struct vnode *vp = ap->a_vp;
488         struct nfsnode *np = VTONFS(vp);
489         int ioflag = ap->a_ioflag;
490         struct buf *bp;
491         struct vattr vattr;
492         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
493         off_t loffset;
494         int boff, bytes;
495         int error = 0;
496         int haverslock = 0;
497         int bcount;
498         int biosize;
499         int trivial;
500
501 #ifdef DIAGNOSTIC
502         if (uio->uio_rw != UIO_WRITE)
503                 panic("nfs_write mode");
504         if (uio->uio_segflg == UIO_USERSPACE && uio->uio_td != curthread)
505                 panic("nfs_write proc");
506 #endif
507         if (vp->v_type != VREG)
508                 return (EIO);
509
510         lwkt_gettoken(&nmp->nm_token);
511
512         if (np->n_flag & NWRITEERR) {
513                 np->n_flag &= ~NWRITEERR;
514                 lwkt_reltoken(&nmp->nm_token);
515                 return (np->n_error);
516         }
517         if ((nmp->nm_flag & NFSMNT_NFSV3) != 0 &&
518             (nmp->nm_state & NFSSTA_GOTFSINFO) == 0) {
519                 (void)nfs_fsinfo(nmp, vp, td);
520         }
521
522         /*
523          * Synchronously flush pending buffers if we are in synchronous
524          * mode or if we are appending.
525          */
526         if (ioflag & (IO_APPEND | IO_SYNC)) {
527                 if (np->n_flag & NLMODIFIED) {
528                         np->n_attrstamp = 0;
529                         error = nfs_flush(vp, MNT_WAIT, td, 0);
530                         /* error = nfs_vinvalbuf(vp, V_SAVE, 1); */
531                         if (error)
532                                 goto  done;
533                 }
534         }
535
536         /*
537          * If IO_APPEND then load uio_offset.  We restart here if we cannot
538          * get the append lock.
539          */
540 restart:
541         if (ioflag & IO_APPEND) {
542                 np->n_attrstamp = 0;
543                 error = VOP_GETATTR(vp, &vattr);
544                 if (error)
545                         goto done;
546                 uio->uio_offset = np->n_size;
547         }
548
549         if (uio->uio_offset < 0) {
550                 error = EINVAL;
551                 goto done;
552         }
553         if ((uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize) {
554                 error = EFBIG;
555                 goto done;
556         }
557         if (uio->uio_resid == 0) {
558                 error = 0;
559                 goto done;
560         }
561
562         /*
563          * We need to obtain the rslock if we intend to modify np->n_size
564          * in order to guarentee the append point with multiple contending
565          * writers, to guarentee that no other appenders modify n_size
566          * while we are trying to obtain a truncated buffer (i.e. to avoid
567          * accidently truncating data written by another appender due to
568          * the race), and to ensure that the buffer is populated prior to
569          * our extending of the file.  We hold rslock through the entire
570          * operation.
571          *
572          * Note that we do not synchronize the case where someone truncates
573          * the file while we are appending to it because attempting to lock
574          * this case may deadlock other parts of the system unexpectedly.
575          */
576         if ((ioflag & IO_APPEND) ||
577             uio->uio_offset + uio->uio_resid > np->n_size) {
578                 switch(nfs_rslock(np)) {
579                 case ENOLCK:
580                         goto restart;
581                         /* not reached */
582                 case EINTR:
583                 case ERESTART:
584                         error = EINTR;
585                         goto done;
586                         /* not reached */
587                 default:
588                         break;
589                 }
590                 haverslock = 1;
591         }
592
593         /*
594          * Maybe this should be above the vnode op call, but so long as
595          * file servers have no limits, i don't think it matters
596          */
597         if (td && td->td_proc && uio->uio_offset + uio->uio_resid >
598               td->td_proc->p_rlimit[RLIMIT_FSIZE].rlim_cur) {
599                 lwpsignal(td->td_proc, td->td_lwp, SIGXFSZ);
600                 if (haverslock)
601                         nfs_rsunlock(np);
602                 error = EFBIG;
603                 goto done;
604         }
605
606         biosize = vp->v_mount->mnt_stat.f_iosize;
607
608         do {
609                 nfsstats.biocache_writes++;
610                 boff = uio->uio_offset & (biosize-1);
611                 loffset = uio->uio_offset - boff;
612                 bytes = (int)szmin((unsigned)(biosize - boff), uio->uio_resid);
613 again:
614                 /*
615                  * Handle direct append and file extension cases, calculate
616                  * unaligned buffer size.  When extending B_CACHE will be
617                  * set if possible.  See UIO_NOCOPY note below.
618                  */
619                 if (uio->uio_offset + bytes > np->n_size) {
620                         np->n_flag |= NLMODIFIED;
621                         trivial = (uio->uio_segflg != UIO_NOCOPY &&
622                                    uio->uio_offset <= np->n_size);
623                         nfs_meta_setsize(vp, td, uio->uio_offset + bytes,
624                                          trivial);
625                 }
626                 bp = nfs_getcacheblk(vp, loffset, biosize, td);
627                 if (bp == NULL) {
628                         error = EINTR;
629                         break;
630                 }
631
632                 /*
633                  * Actual bytes in buffer which we care about
634                  */
635                 if (loffset + biosize < np->n_size)
636                         bcount = biosize;
637                 else
638                         bcount = (int)(np->n_size - loffset);
639
640                 /*
641                  * Avoid a read by setting B_CACHE where the data we
642                  * intend to write covers the entire buffer.  Note
643                  * that the buffer may have been set to B_CACHE by
644                  * nfs_meta_setsize() above or otherwise inherited the
645                  * flag, but if B_CACHE isn't set the buffer may be
646                  * uninitialized and must be zero'd to accomodate
647                  * future seek+write's.
648                  *
649                  * See the comments in kern/vfs_bio.c's getblk() for
650                  * more information.
651                  *
652                  * When doing a UIO_NOCOPY write the buffer is not
653                  * overwritten and we cannot just set B_CACHE unconditionally
654                  * for full-block writes.
655                  */
656                 if (boff == 0 && bytes == biosize &&
657                     uio->uio_segflg != UIO_NOCOPY) {
658                         bp->b_flags |= B_CACHE;
659                         bp->b_flags &= ~(B_ERROR | B_INVAL);
660                 }
661
662                 /*
663                  * b_resid may be set due to file EOF if we extended out.
664                  * The NFS bio code will zero the difference anyway so
665                  * just acknowledged the fact and set b_resid to 0.
666                  */
667                 if ((bp->b_flags & B_CACHE) == 0) {
668                         bp->b_cmd = BUF_CMD_READ;
669                         bp->b_bio2.bio_done = nfsiodone_sync;
670                         bp->b_bio2.bio_flags |= BIO_SYNC;
671                         vfs_busy_pages(vp, bp);
672                         error = nfs_doio(vp, &bp->b_bio2, td);
673                         if (error) {
674                                 brelse(bp);
675                                 break;
676                         }
677                         bp->b_resid = 0;
678                 }
679                 np->n_flag |= NLMODIFIED;
680
681                 /*
682                  * If dirtyend exceeds file size, chop it down.  This should
683                  * not normally occur but there is an append race where it
684                  * might occur XXX, so we log it. 
685                  *
686                  * If the chopping creates a reverse-indexed or degenerate
687                  * situation with dirtyoff/end, we 0 both of them.
688                  */
689                 if (bp->b_dirtyend > bcount) {
690                         kprintf("NFS append race @%08llx:%d\n", 
691                             (long long)bp->b_bio2.bio_offset,
692                             bp->b_dirtyend - bcount);
693                         bp->b_dirtyend = bcount;
694                 }
695
696                 if (bp->b_dirtyoff >= bp->b_dirtyend)
697                         bp->b_dirtyoff = bp->b_dirtyend = 0;
698
699                 /*
700                  * If the new write will leave a contiguous dirty
701                  * area, just update the b_dirtyoff and b_dirtyend,
702                  * otherwise force a write rpc of the old dirty area.
703                  *
704                  * While it is possible to merge discontiguous writes due to 
705                  * our having a B_CACHE buffer ( and thus valid read data
706                  * for the hole), we don't because it could lead to 
707                  * significant cache coherency problems with multiple clients,
708                  * especially if locking is implemented later on.
709                  *
710                  * as an optimization we could theoretically maintain
711                  * a linked list of discontinuous areas, but we would still
712                  * have to commit them separately so there isn't much
713                  * advantage to it except perhaps a bit of asynchronization.
714                  */
715                 if (bp->b_dirtyend > 0 &&
716                     (boff > bp->b_dirtyend ||
717                      (boff + bytes) < bp->b_dirtyoff)
718                 ) {
719                         if (bwrite(bp) == EINTR) {
720                                 error = EINTR;
721                                 break;
722                         }
723                         goto again;
724                 }
725
726                 error = uiomove(bp->b_data + boff, bytes, uio);
727
728                 /*
729                  * Since this block is being modified, it must be written
730                  * again and not just committed.  Since write clustering does
731                  * not work for the stage 1 data write, only the stage 2
732                  * commit rpc, we have to clear B_CLUSTEROK as well.
733                  */
734                 bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
735
736                 if (error) {
737                         brelse(bp);
738                         break;
739                 }
740
741                 /*
742                  * Only update dirtyoff/dirtyend if not a degenerate 
743                  * condition.
744                  *
745                  * The underlying VM pages have been marked valid by
746                  * virtue of acquiring the bp.  Because the entire buffer
747                  * is marked dirty we do not have to worry about cleaning
748                  * out the related dirty bits (and wouldn't really know
749                  * how to deal with byte ranges anyway)
750                  */
751                 if (bytes) {
752                         if (bp->b_dirtyend > 0) {
753                                 bp->b_dirtyoff = imin(boff, bp->b_dirtyoff);
754                                 bp->b_dirtyend = imax(boff + bytes,
755                                                       bp->b_dirtyend);
756                         } else {
757                                 bp->b_dirtyoff = boff;
758                                 bp->b_dirtyend = boff + bytes;
759                         }
760                 }
761
762                 /*
763                  * If the lease is non-cachable or IO_SYNC do bwrite().
764                  *
765                  * IO_INVAL appears to be unused.  The idea appears to be
766                  * to turn off caching in this case.  Very odd.  XXX
767                  *
768                  * If nfs_async is set bawrite() will use an unstable write
769                  * (build dirty bufs on the server), so we might as well
770                  * push it out with bawrite().  If nfs_async is not set we
771                  * use bdwrite() to cache dirty bufs on the client.
772                  */
773                 if (ioflag & IO_SYNC) {
774                         if (ioflag & IO_INVAL)
775                                 bp->b_flags |= B_NOCACHE;
776                         error = bwrite(bp);
777                         if (error)
778                                 break;
779                 } else if (boff + bytes == biosize && nfs_async) {
780                         bawrite(bp);
781                 } else {
782                         bdwrite(bp);
783                 }
784         } while (uio->uio_resid > 0 && bytes > 0);
785
786         if (haverslock)
787                 nfs_rsunlock(np);
788
789 done:
790         lwkt_reltoken(&nmp->nm_token);
791         return (error);
792 }
793
794 /*
795  * Get an nfs cache block.
796  *
797  * Allocate a new one if the block isn't currently in the cache
798  * and return the block marked busy. If the calling process is
799  * interrupted by a signal for an interruptible mount point, return
800  * NULL.
801  *
802  * The caller must carefully deal with the possible B_INVAL state of
803  * the buffer.  nfs_startio() clears B_INVAL (and nfs_asyncio() clears it
804  * indirectly), so synchronous reads can be issued without worrying about
805  * the B_INVAL state.  We have to be a little more careful when dealing
806  * with writes (see comments in nfs_write()) when extending a file past
807  * its EOF.
808  */
809 static struct buf *
810 nfs_getcacheblk(struct vnode *vp, off_t loffset, int size, struct thread *td)
811 {
812         struct buf *bp;
813         struct mount *mp;
814         struct nfsmount *nmp;
815
816         mp = vp->v_mount;
817         nmp = VFSTONFS(mp);
818
819         if (nmp->nm_flag & NFSMNT_INT) {
820                 bp = getblk(vp, loffset, size, GETBLK_PCATCH, 0);
821                 while (bp == NULL) {
822                         if (nfs_sigintr(nmp, NULL, td))
823                                 return (NULL);
824                         bp = getblk(vp, loffset, size, 0, 2 * hz);
825                 }
826         } else {
827                 bp = getblk(vp, loffset, size, 0, 0);
828         }
829
830         /*
831          * bio2, the 'device' layer.  Since BIOs use 64 bit byte offsets
832          * now, no translation is necessary.
833          */
834         bp->b_bio2.bio_offset = loffset;
835         return (bp);
836 }
837
838 /*
839  * Flush and invalidate all dirty buffers. If another process is already
840  * doing the flush, just wait for completion.
841  */
842 int
843 nfs_vinvalbuf(struct vnode *vp, int flags, int intrflg)
844 {
845         struct nfsnode *np = VTONFS(vp);
846         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
847         int error = 0, slpflag, slptimeo;
848         thread_t td = curthread;
849
850         if (vp->v_flag & VRECLAIMED)
851                 return (0);
852
853         if ((nmp->nm_flag & NFSMNT_INT) == 0)
854                 intrflg = 0;
855         if (intrflg) {
856                 slpflag = PCATCH;
857                 slptimeo = 2 * hz;
858         } else {
859                 slpflag = 0;
860                 slptimeo = 0;
861         }
862         /*
863          * First wait for any other process doing a flush to complete.
864          */
865         while (np->n_flag & NFLUSHINPROG) {
866                 np->n_flag |= NFLUSHWANT;
867                 error = tsleep((caddr_t)&np->n_flag, 0, "nfsvinval", slptimeo);
868                 if (error && intrflg && nfs_sigintr(nmp, NULL, td))
869                         return (EINTR);
870         }
871
872         /*
873          * Now, flush as required.
874          */
875         np->n_flag |= NFLUSHINPROG;
876         error = vinvalbuf(vp, flags, slpflag, 0);
877         while (error) {
878                 if (intrflg && nfs_sigintr(nmp, NULL, td)) {
879                         np->n_flag &= ~NFLUSHINPROG;
880                         if (np->n_flag & NFLUSHWANT) {
881                                 np->n_flag &= ~NFLUSHWANT;
882                                 wakeup((caddr_t)&np->n_flag);
883                         }
884                         return (EINTR);
885                 }
886                 error = vinvalbuf(vp, flags, 0, slptimeo);
887         }
888         np->n_flag &= ~(NLMODIFIED | NFLUSHINPROG);
889         if (np->n_flag & NFLUSHWANT) {
890                 np->n_flag &= ~NFLUSHWANT;
891                 wakeup((caddr_t)&np->n_flag);
892         }
893         return (0);
894 }
895
896 /*
897  * Return true (non-zero) if the txthread and rxthread are operational
898  * and we do not already have too many not-yet-started BIO's built up.
899  */
900 int
901 nfs_asyncok(struct nfsmount *nmp)
902 {
903         return (nmp->nm_bioqlen < nfs_maxasyncbio &&
904                 nmp->nm_bioqlen < nmp->nm_maxasync_scaled / NFS_ASYSCALE &&
905                 nmp->nm_rxstate <= NFSSVC_PENDING &&
906                 nmp->nm_txstate <= NFSSVC_PENDING);
907 }
908
909 /*
910  * The read-ahead code calls this to queue a bio to the txthread.
911  *
912  * We don't touch the bio otherwise... that is, we do not even
913  * construct or send the initial rpc.  The txthread will do it
914  * for us.
915  *
916  * NOTE!  nm_bioqlen is not decremented until the request completes,
917  *        so it does not reflect the number of bio's on bioq.
918  */
919 void
920 nfs_asyncio(struct vnode *vp, struct bio *bio)
921 {
922         struct buf *bp = bio->bio_buf;
923         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
924
925         KKASSERT(vp->v_tag == VT_NFS);
926         BUF_KERNPROC(bp);
927
928         /*
929          * Shortcut swap cache (not done automatically because we are not
930          * using bread()).
931          */
932         if (vn_cache_strategy(vp, bio))
933                 return;
934
935         bio->bio_driver_info = vp;
936         crit_enter();
937         TAILQ_INSERT_TAIL(&nmp->nm_bioq, bio, bio_act);
938         atomic_add_int(&nmp->nm_bioqlen, 1);
939         crit_exit();
940         nfssvc_iod_writer_wakeup(nmp);
941 }
942
943 /*
944  * nfs_doio()   - Execute a BIO operation synchronously.  The BIO will be
945  *                completed and its error returned.  The caller is responsible
946  *                for brelse()ing it.  ONLY USE FOR BIO_SYNC IOs!  Otherwise
947  *                our error probe will be against an invalid pointer.
948  *
949  * nfs_startio()- Execute a BIO operation assynchronously.
950  *
951  * NOTE: nfs_asyncio() is used to initiate an asynchronous BIO operation,
952  *       which basically just queues it to the txthread.  nfs_startio()
953  *       actually initiates the I/O AFTER it has gotten to the txthread.
954  *
955  * NOTE: td might be NULL.
956  *
957  * NOTE: Caller has already busied the I/O.
958  */
959 void
960 nfs_startio(struct vnode *vp, struct bio *bio, struct thread *td)
961 {
962         struct buf *bp = bio->bio_buf;
963         struct nfsnode *np;
964         struct nfsmount *nmp;
965
966         KKASSERT(vp->v_tag == VT_NFS);
967         np = VTONFS(vp);
968         nmp = VFSTONFS(vp->v_mount);
969
970         /*
971          * clear B_ERROR and B_INVAL state prior to initiating the I/O.  We
972          * do this here so we do not have to do it in all the code that
973          * calls us.
974          */
975         bp->b_flags &= ~(B_ERROR | B_INVAL);
976
977         KASSERT(bp->b_cmd != BUF_CMD_DONE,
978                 ("nfs_doio: bp %p already marked done!", bp));
979
980         if (bp->b_cmd == BUF_CMD_READ) {
981             switch (vp->v_type) {
982             case VREG:
983                 nfsstats.read_bios++;
984                 nfs_readrpc_bio(vp, bio);
985                 break;
986             case VLNK:
987 #if 0
988                 bio->bio_offset = 0;
989                 nfsstats.readlink_bios++;
990                 nfs_readlinkrpc_bio(vp, bio);
991 #else
992                 nfs_doio(vp, bio, td);
993 #endif
994                 break;
995             case VDIR:
996                 /*
997                  * NOTE: If nfs_readdirplusrpc_bio() is requested but
998                  *       not supported, it will chain to
999                  *       nfs_readdirrpc_bio().
1000                  */
1001 #if 0
1002                 nfsstats.readdir_bios++;
1003                 uiop->uio_offset = bio->bio_offset;
1004                 if (nmp->nm_flag & NFSMNT_RDIRPLUS)
1005                         nfs_readdirplusrpc_bio(vp, bio);
1006                 else
1007                         nfs_readdirrpc_bio(vp, bio);
1008 #else
1009                 nfs_doio(vp, bio, td);
1010 #endif
1011                 break;
1012             default:
1013                 kprintf("nfs_doio:  type %x unexpected\n",vp->v_type);
1014                 bp->b_flags |= B_ERROR;
1015                 bp->b_error = EINVAL;
1016                 biodone(bio);
1017                 break;
1018             }
1019         } else {
1020             /*
1021              * If we only need to commit, try to commit.  If this fails
1022              * it will chain through to the write.  Basically all the logic
1023              * in nfs_doio() is replicated.
1024              */
1025             KKASSERT(bp->b_cmd == BUF_CMD_WRITE);
1026             if (bp->b_flags & B_NEEDCOMMIT)
1027                 nfs_commitrpc_bio(vp, bio);
1028             else
1029                 nfs_writerpc_bio(vp, bio);
1030         }
1031 }
1032
1033 int
1034 nfs_doio(struct vnode *vp, struct bio *bio, struct thread *td)
1035 {
1036         struct buf *bp = bio->bio_buf;
1037         struct uio *uiop;
1038         struct nfsnode *np;
1039         struct nfsmount *nmp;
1040         int error = 0;
1041         int iomode, must_commit;
1042         size_t n;
1043         struct uio uio;
1044         struct iovec io;
1045
1046 #if 0
1047         /*
1048          * Shortcut swap cache (not done automatically because we are not
1049          * using bread()).
1050          *
1051          * XXX The biowait is a hack until we can figure out how to stop a
1052          * biodone chain when a middle element is BIO_SYNC.  BIO_SYNC is
1053          * set so the bp shouldn't get ripped out from under us.  The only
1054          * use-cases are fully synchronous I/O cases.
1055          *
1056          * XXX This is having problems, give up for now.
1057          */
1058         if (vn_cache_strategy(vp, bio)) {
1059                 error = biowait(&bio->bio_buf->b_bio1, "nfsrsw");
1060                 return (error);
1061         }
1062 #endif
1063
1064         KKASSERT(vp->v_tag == VT_NFS);
1065         np = VTONFS(vp);
1066         nmp = VFSTONFS(vp->v_mount);
1067         uiop = &uio;
1068         uiop->uio_iov = &io;
1069         uiop->uio_iovcnt = 1;
1070         uiop->uio_segflg = UIO_SYSSPACE;
1071         uiop->uio_td = td;
1072
1073         /*
1074          * clear B_ERROR and B_INVAL state prior to initiating the I/O.  We
1075          * do this here so we do not have to do it in all the code that
1076          * calls us.
1077          */
1078         bp->b_flags &= ~(B_ERROR | B_INVAL);
1079
1080         KASSERT(bp->b_cmd != BUF_CMD_DONE, 
1081                 ("nfs_doio: bp %p already marked done!", bp));
1082
1083         if (bp->b_cmd == BUF_CMD_READ) {
1084             io.iov_len = uiop->uio_resid = (size_t)bp->b_bcount;
1085             io.iov_base = bp->b_data;
1086             uiop->uio_rw = UIO_READ;
1087
1088             switch (vp->v_type) {
1089             case VREG:
1090                 /*
1091                  * When reading from a regular file zero-fill any residual.
1092                  * Note that this residual has nothing to do with NFS short
1093                  * reads, which nfs_readrpc_uio() will handle for us.
1094                  *
1095                  * We have to do this because when we are write extending
1096                  * a file the server may not have the same notion of
1097                  * filesize as we do.  Our BIOs should already be sized
1098                  * (b_bcount) to account for the file EOF.
1099                  */
1100                 nfsstats.read_bios++;
1101                 uiop->uio_offset = bio->bio_offset;
1102                 error = nfs_readrpc_uio(vp, uiop);
1103                 if (error == 0 && uiop->uio_resid) {
1104                         n = (size_t)bp->b_bcount - uiop->uio_resid;
1105                         bzero(bp->b_data + n, bp->b_bcount - n);
1106                         uiop->uio_resid = 0;
1107                 }
1108                 if (td && td->td_proc && (vp->v_flag & VTEXT) &&
1109                     np->n_mtime != np->n_vattr.va_mtime.tv_sec) {
1110                         uprintf("Process killed due to text file modification\n");
1111                         ksignal(td->td_proc, SIGKILL);
1112                 }
1113                 break;
1114             case VLNK:
1115                 uiop->uio_offset = 0;
1116                 nfsstats.readlink_bios++;
1117                 error = nfs_readlinkrpc_uio(vp, uiop);
1118                 break;
1119             case VDIR:
1120                 nfsstats.readdir_bios++;
1121                 uiop->uio_offset = bio->bio_offset;
1122                 if (nmp->nm_flag & NFSMNT_RDIRPLUS) {
1123                         error = nfs_readdirplusrpc_uio(vp, uiop);
1124                         if (error == NFSERR_NOTSUPP)
1125                                 nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
1126                 }
1127                 if ((nmp->nm_flag & NFSMNT_RDIRPLUS) == 0)
1128                         error = nfs_readdirrpc_uio(vp, uiop);
1129                 /*
1130                  * end-of-directory sets B_INVAL but does not generate an
1131                  * error.
1132                  */
1133                 if (error == 0 && uiop->uio_resid == bp->b_bcount)
1134                         bp->b_flags |= B_INVAL;
1135                 break;
1136             default:
1137                 kprintf("nfs_doio:  type %x unexpected\n",vp->v_type);
1138                 break;
1139             };
1140             if (error) {
1141                 bp->b_flags |= B_ERROR;
1142                 bp->b_error = error;
1143             }
1144             bp->b_resid = uiop->uio_resid;
1145         } else {
1146             /* 
1147              * If we only need to commit, try to commit.
1148              *
1149              * NOTE: The I/O has already been staged for the write and
1150              *       its pages busied, so b_dirtyoff/end is valid.
1151              */
1152             KKASSERT(bp->b_cmd == BUF_CMD_WRITE);
1153             if (bp->b_flags & B_NEEDCOMMIT) {
1154                     int retv;
1155                     off_t off;
1156
1157                     off = bio->bio_offset + bp->b_dirtyoff;
1158                     retv = nfs_commitrpc_uio(vp, off,
1159                                              bp->b_dirtyend - bp->b_dirtyoff,
1160                                              td);
1161                     if (retv == 0) {
1162                             bp->b_dirtyoff = bp->b_dirtyend = 0;
1163                             bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
1164                             bp->b_resid = 0;
1165                             biodone(bio);
1166                             return(0);
1167                     }
1168                     if (retv == NFSERR_STALEWRITEVERF) {
1169                             nfs_clearcommit(vp->v_mount);
1170                     }
1171             }
1172
1173             /*
1174              * Setup for actual write
1175              */
1176             if (bio->bio_offset + bp->b_dirtyend > np->n_size)
1177                 bp->b_dirtyend = np->n_size - bio->bio_offset;
1178
1179             if (bp->b_dirtyend > bp->b_dirtyoff) {
1180                 io.iov_len = uiop->uio_resid = bp->b_dirtyend
1181                     - bp->b_dirtyoff;
1182                 uiop->uio_offset = bio->bio_offset + bp->b_dirtyoff;
1183                 io.iov_base = (char *)bp->b_data + bp->b_dirtyoff;
1184                 uiop->uio_rw = UIO_WRITE;
1185                 nfsstats.write_bios++;
1186
1187                 if ((bp->b_flags & (B_NEEDCOMMIT | B_NOCACHE | B_CLUSTER)) == 0)
1188                     iomode = NFSV3WRITE_UNSTABLE;
1189                 else
1190                     iomode = NFSV3WRITE_FILESYNC;
1191
1192                 must_commit = 0;
1193                 error = nfs_writerpc_uio(vp, uiop, &iomode, &must_commit);
1194
1195                 /*
1196                  * We no longer try to use kern/vfs_bio's cluster code to
1197                  * cluster commits, so B_CLUSTEROK is no longer set with
1198                  * B_NEEDCOMMIT.  The problem is that a vfs_busy_pages()
1199                  * may have to clear B_NEEDCOMMIT if it finds underlying
1200                  * pages have been redirtied through a memory mapping
1201                  * and doing this on a clustered bp will probably cause
1202                  * a panic, plus the flag in the underlying NFS bufs
1203                  * making up the cluster bp will not be properly cleared.
1204                  */
1205                 if (!error && iomode == NFSV3WRITE_UNSTABLE) {
1206                     bp->b_flags |= B_NEEDCOMMIT;
1207 #if 0
1208                     /* XXX do not enable commit clustering */
1209                     if (bp->b_dirtyoff == 0
1210                         && bp->b_dirtyend == bp->b_bcount)
1211                         bp->b_flags |= B_CLUSTEROK;
1212 #endif
1213                 } else {
1214                     bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
1215                 }
1216
1217                 /*
1218                  * For an interrupted write, the buffer is still valid
1219                  * and the write hasn't been pushed to the server yet,
1220                  * so we can't set B_ERROR and report the interruption
1221                  * by setting B_EINTR. For the async case, B_EINTR
1222                  * is not relevant, so the rpc attempt is essentially
1223                  * a noop.  For the case of a V3 write rpc not being
1224                  * committed to stable storage, the block is still
1225                  * dirty and requires either a commit rpc or another
1226                  * write rpc with iomode == NFSV3WRITE_FILESYNC before
1227                  * the block is reused. This is indicated by setting
1228                  * the B_DELWRI and B_NEEDCOMMIT flags.
1229                  *
1230                  * If the buffer is marked B_PAGING, it does not reside on
1231                  * the vp's paging queues so we cannot call bdirty().  The
1232                  * bp in this case is not an NFS cache block so we should
1233                  * be safe. XXX
1234                  */
1235                 if (error == EINTR
1236                     || (!error && (bp->b_flags & B_NEEDCOMMIT))) {
1237                         crit_enter();
1238                         bp->b_flags &= ~(B_INVAL|B_NOCACHE);
1239                         if ((bp->b_flags & B_PAGING) == 0)
1240                             bdirty(bp);
1241                         if (error)
1242                             bp->b_flags |= B_EINTR;
1243                         crit_exit();
1244                 } else {
1245                     if (error) {
1246                         bp->b_flags |= B_ERROR;
1247                         bp->b_error = np->n_error = error;
1248                         np->n_flag |= NWRITEERR;
1249                     }
1250                     bp->b_dirtyoff = bp->b_dirtyend = 0;
1251                 }
1252                 if (must_commit)
1253                     nfs_clearcommit(vp->v_mount);
1254                 bp->b_resid = uiop->uio_resid;
1255             } else {
1256                 bp->b_resid = 0;
1257             }
1258         }
1259
1260         /*
1261          * I/O was run synchronously, biodone() it and calculate the
1262          * error to return.
1263          */
1264         biodone(bio);
1265         KKASSERT(bp->b_cmd == BUF_CMD_DONE);
1266         if (bp->b_flags & B_EINTR)
1267                 return (EINTR);
1268         if (bp->b_flags & B_ERROR)
1269                 return (bp->b_error ? bp->b_error : EIO);
1270         return (0);
1271 }
1272
1273 /*
1274  * Handle all truncation, write-extend, and ftruncate()-extend operations
1275  * on the NFS lcient side.
1276  *
1277  * We use the new API in kern/vfs_vm.c to perform these operations in a
1278  * VM-friendly way.  With this API VM pages are properly zerod and pages
1279  * still mapped into the buffer straddling EOF are not invalidated.
1280  */
1281 int
1282 nfs_meta_setsize(struct vnode *vp, struct thread *td, off_t nsize, int trivial)
1283 {
1284         struct nfsnode *np = VTONFS(vp);
1285         off_t osize;
1286         int biosize = vp->v_mount->mnt_stat.f_iosize;
1287         int error;
1288
1289         osize = np->n_size;
1290         np->n_size = nsize;
1291
1292         if (nsize < osize) {
1293                 error = nvtruncbuf(vp, nsize, biosize, -1);
1294         } else {
1295                 error = nvextendbuf(vp, osize, nsize,
1296                                     biosize, biosize, -1, -1,
1297                                     trivial);
1298         }
1299         return(error);
1300 }
1301
1302 /*
1303  * Synchronous completion for nfs_doio.  Call bpdone() with elseit=FALSE.
1304  * Caller is responsible for brelse()'ing the bp.
1305  */
1306 static void
1307 nfsiodone_sync(struct bio *bio)
1308 {
1309         bio->bio_flags = 0;
1310         bpdone(bio->bio_buf, 0);
1311 }
1312
1313 /*
1314  * nfs read rpc - BIO version
1315  */
1316 void
1317 nfs_readrpc_bio(struct vnode *vp, struct bio *bio)
1318 {
1319         struct buf *bp = bio->bio_buf;
1320         u_int32_t *tl;
1321         struct nfsmount *nmp;
1322         int error = 0, len, tsiz;
1323         struct nfsm_info *info;
1324
1325         info = kmalloc(sizeof(*info), M_NFSREQ, M_WAITOK);
1326         info->mrep = NULL;
1327         info->v3 = NFS_ISV3(vp);
1328
1329         nmp = VFSTONFS(vp->v_mount);
1330         tsiz = bp->b_bcount;
1331         KKASSERT(tsiz <= nmp->nm_rsize);
1332         if (bio->bio_offset + tsiz > nmp->nm_maxfilesize) {
1333                 error = EFBIG;
1334                 goto nfsmout;
1335         }
1336         nfsstats.rpccnt[NFSPROC_READ]++;
1337         len = tsiz;
1338         nfsm_reqhead(info, vp, NFSPROC_READ,
1339                      NFSX_FH(info->v3) + NFSX_UNSIGNED * 3);
1340         ERROROUT(nfsm_fhtom(info, vp));
1341         tl = nfsm_build(info, NFSX_UNSIGNED * 3);
1342         if (info->v3) {
1343                 txdr_hyper(bio->bio_offset, tl);
1344                 *(tl + 2) = txdr_unsigned(len);
1345         } else {
1346                 *tl++ = txdr_unsigned(bio->bio_offset);
1347                 *tl++ = txdr_unsigned(len);
1348                 *tl = 0;
1349         }
1350         info->bio = bio;
1351         info->done = nfs_readrpc_bio_done;
1352         nfsm_request_bio(info, vp, NFSPROC_READ, NULL,
1353                          nfs_vpcred(vp, ND_READ));
1354         return;
1355 nfsmout:
1356         kfree(info, M_NFSREQ);
1357         bp->b_error = error;
1358         bp->b_flags |= B_ERROR;
1359         biodone(bio);
1360 }
1361
1362 static void
1363 nfs_readrpc_bio_done(nfsm_info_t info)
1364 {
1365         struct nfsmount *nmp = VFSTONFS(info->vp->v_mount);
1366         struct bio *bio = info->bio;
1367         struct buf *bp = bio->bio_buf;
1368         u_int32_t *tl;
1369         int attrflag;
1370         int retlen;
1371         int eof;
1372         int error = 0;
1373
1374         KKASSERT(info->state == NFSM_STATE_DONE);
1375
1376         lwkt_gettoken(&nmp->nm_token);
1377
1378         if (info->v3) {
1379                 ERROROUT(nfsm_postop_attr(info, info->vp, &attrflag,
1380                                          NFS_LATTR_NOSHRINK));
1381                 NULLOUT(tl = nfsm_dissect(info, 2 * NFSX_UNSIGNED));
1382                 eof = fxdr_unsigned(int, *(tl + 1));
1383         } else {
1384                 ERROROUT(nfsm_loadattr(info, info->vp, NULL));
1385                 eof = 0;
1386         }
1387         NEGATIVEOUT(retlen = nfsm_strsiz(info, nmp->nm_rsize));
1388         ERROROUT(nfsm_mtobio(info, bio, retlen));
1389         m_freem(info->mrep);
1390         info->mrep = NULL;
1391
1392         /*
1393          * No error occured, if retlen is less then bcount and no EOF
1394          * and NFSv3 a zero-fill short read occured.
1395          *
1396          * For NFSv2 a short-read indicates EOF.
1397          */
1398         if (retlen < bp->b_bcount && info->v3 && eof == 0) {
1399                 bzero(bp->b_data + retlen, bp->b_bcount - retlen);
1400                 retlen = bp->b_bcount;
1401         }
1402
1403         /*
1404          * If we hit an EOF we still zero-fill, but return the expected
1405          * b_resid anyway.  This should normally not occur since async
1406          * BIOs are not used for read-before-write case.  Races against
1407          * the server can cause it though and we don't want to leave
1408          * garbage in the buffer.
1409          */
1410         if (retlen < bp->b_bcount) {
1411                 bzero(bp->b_data + retlen, bp->b_bcount - retlen);
1412         }
1413         bp->b_resid = 0;
1414         /* bp->b_resid = bp->b_bcount - retlen; */
1415 nfsmout:
1416         lwkt_reltoken(&nmp->nm_token);
1417         kfree(info, M_NFSREQ);
1418         if (error) {
1419                 bp->b_error = error;
1420                 bp->b_flags |= B_ERROR;
1421         }
1422         biodone(bio);
1423 }
1424
1425 /*
1426  * nfs write call - BIO version
1427  *
1428  * NOTE: Caller has already busied the I/O.
1429  */
1430 void
1431 nfs_writerpc_bio(struct vnode *vp, struct bio *bio)
1432 {
1433         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
1434         struct nfsnode *np = VTONFS(vp);
1435         struct buf *bp = bio->bio_buf;
1436         u_int32_t *tl;
1437         int len;
1438         int iomode;
1439         int error = 0;
1440         struct nfsm_info *info;
1441         off_t offset;
1442
1443         /*
1444          * Setup for actual write.  Just clean up the bio if there
1445          * is nothing to do.  b_dirtyoff/end have already been staged
1446          * by the bp's pages getting busied.
1447          */
1448         if (bio->bio_offset + bp->b_dirtyend > np->n_size)
1449                 bp->b_dirtyend = np->n_size - bio->bio_offset;
1450
1451         if (bp->b_dirtyend <= bp->b_dirtyoff) {
1452                 bp->b_resid = 0;
1453                 biodone(bio);
1454                 return;
1455         }
1456         len = bp->b_dirtyend - bp->b_dirtyoff;
1457         offset = bio->bio_offset + bp->b_dirtyoff;
1458         if (offset + len > nmp->nm_maxfilesize) {
1459                 bp->b_flags |= B_ERROR;
1460                 bp->b_error = EFBIG;
1461                 biodone(bio);
1462                 return;
1463         }
1464         bp->b_resid = len;
1465         nfsstats.write_bios++;
1466
1467         info = kmalloc(sizeof(*info), M_NFSREQ, M_WAITOK);
1468         info->mrep = NULL;
1469         info->v3 = NFS_ISV3(vp);
1470         info->info_writerpc.must_commit = 0;
1471         if ((bp->b_flags & (B_NEEDCOMMIT | B_NOCACHE | B_CLUSTER)) == 0)
1472                 iomode = NFSV3WRITE_UNSTABLE;
1473         else
1474                 iomode = NFSV3WRITE_FILESYNC;
1475
1476         KKASSERT(len <= nmp->nm_wsize);
1477
1478         nfsstats.rpccnt[NFSPROC_WRITE]++;
1479         nfsm_reqhead(info, vp, NFSPROC_WRITE,
1480                      NFSX_FH(info->v3) + 5 * NFSX_UNSIGNED + nfsm_rndup(len));
1481         ERROROUT(nfsm_fhtom(info, vp));
1482         if (info->v3) {
1483                 tl = nfsm_build(info, 5 * NFSX_UNSIGNED);
1484                 txdr_hyper(offset, tl);
1485                 tl += 2;
1486                 *tl++ = txdr_unsigned(len);
1487                 *tl++ = txdr_unsigned(iomode);
1488                 *tl = txdr_unsigned(len);
1489         } else {
1490                 u_int32_t x;
1491
1492                 tl = nfsm_build(info, 4 * NFSX_UNSIGNED);
1493                 /* Set both "begin" and "current" to non-garbage. */
1494                 x = txdr_unsigned((u_int32_t)offset);
1495                 *tl++ = x;      /* "begin offset" */
1496                 *tl++ = x;      /* "current offset" */
1497                 x = txdr_unsigned(len);
1498                 *tl++ = x;      /* total to this offset */
1499                 *tl = x;        /* size of this write */
1500         }
1501         ERROROUT(nfsm_biotom(info, bio, bp->b_dirtyoff, len));
1502         info->bio = bio;
1503         info->done = nfs_writerpc_bio_done;
1504         nfsm_request_bio(info, vp, NFSPROC_WRITE, NULL,
1505                          nfs_vpcred(vp, ND_WRITE));
1506         return;
1507 nfsmout:
1508         kfree(info, M_NFSREQ);
1509         bp->b_error = error;
1510         bp->b_flags |= B_ERROR;
1511         biodone(bio);
1512 }
1513
1514 static void
1515 nfs_writerpc_bio_done(nfsm_info_t info)
1516 {
1517         struct nfsmount *nmp = VFSTONFS(info->vp->v_mount);
1518         struct nfsnode *np = VTONFS(info->vp);
1519         struct bio *bio = info->bio;
1520         struct buf *bp = bio->bio_buf;
1521         int wccflag = NFSV3_WCCRATTR;
1522         int iomode = NFSV3WRITE_FILESYNC;
1523         int commit;
1524         int rlen;
1525         int error;
1526         int len = bp->b_resid;  /* b_resid was set to shortened length */
1527         u_int32_t *tl;
1528
1529         lwkt_gettoken(&nmp->nm_token);
1530
1531         if (info->v3) {
1532                 /*
1533                  * The write RPC returns a before and after mtime.  The
1534                  * nfsm_wcc_data() macro checks the before n_mtime
1535                  * against the before time and stores the after time
1536                  * in the nfsnode's cached vattr and n_mtime field.
1537                  * The NRMODIFIED bit will be set if the before
1538                  * time did not match the original mtime.
1539                  */
1540                 wccflag = NFSV3_WCCCHK;
1541                 ERROROUT(nfsm_wcc_data(info, info->vp, &wccflag));
1542                 if (error == 0) {
1543                         NULLOUT(tl = nfsm_dissect(info, 2 * NFSX_UNSIGNED + NFSX_V3WRITEVERF));
1544                         rlen = fxdr_unsigned(int, *tl++);
1545                         if (rlen == 0) {
1546                                 error = NFSERR_IO;
1547                                 m_freem(info->mrep);
1548                                 info->mrep = NULL;
1549                                 goto nfsmout;
1550                         } else if (rlen < len) {
1551 #if 0
1552                                 /*
1553                                  * XXX what do we do here?
1554                                  */
1555                                 backup = len - rlen;
1556                                 uiop->uio_iov->iov_base = (char *)uiop->uio_iov->iov_base - backup;
1557                                 uiop->uio_iov->iov_len += backup;
1558                                 uiop->uio_offset -= backup;
1559                                 uiop->uio_resid += backup;
1560                                 len = rlen;
1561 #endif
1562                         }
1563                         commit = fxdr_unsigned(int, *tl++);
1564
1565                         /*
1566                          * Return the lowest committment level
1567                          * obtained by any of the RPCs.
1568                          */
1569                         if (iomode == NFSV3WRITE_FILESYNC)
1570                                 iomode = commit;
1571                         else if (iomode == NFSV3WRITE_DATASYNC &&
1572                                 commit == NFSV3WRITE_UNSTABLE)
1573                                 iomode = commit;
1574                         if ((nmp->nm_state & NFSSTA_HASWRITEVERF) == 0){
1575                             bcopy(tl, (caddr_t)nmp->nm_verf, NFSX_V3WRITEVERF);
1576                             nmp->nm_state |= NFSSTA_HASWRITEVERF;
1577                         } else if (bcmp(tl, nmp->nm_verf, NFSX_V3WRITEVERF)) {
1578                             info->info_writerpc.must_commit = 1;
1579                             bcopy(tl, (caddr_t)nmp->nm_verf, NFSX_V3WRITEVERF);
1580                         }
1581                 }
1582         } else {
1583                 ERROROUT(nfsm_loadattr(info, info->vp, NULL));
1584         }
1585         m_freem(info->mrep);
1586         info->mrep = NULL;
1587         len = 0;
1588 nfsmout:
1589         if (info->vp->v_mount->mnt_flag & MNT_ASYNC)
1590                 iomode = NFSV3WRITE_FILESYNC;
1591         bp->b_resid = len;
1592
1593         /*
1594          * End of RPC.  Now clean up the bp.
1595          *
1596          * We no longer enable write clustering for commit operations,
1597          * See around line 1157 for a more detailed comment.
1598          */
1599         if (!error && iomode == NFSV3WRITE_UNSTABLE) {
1600                 bp->b_flags |= B_NEEDCOMMIT;
1601 #if 0
1602                 /* XXX do not enable commit clustering */
1603                 if (bp->b_dirtyoff == 0 && bp->b_dirtyend == bp->b_bcount)
1604                         bp->b_flags |= B_CLUSTEROK;
1605 #endif
1606         } else {
1607                 bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
1608         }
1609
1610         /*
1611          * For an interrupted write, the buffer is still valid
1612          * and the write hasn't been pushed to the server yet,
1613          * so we can't set B_ERROR and report the interruption
1614          * by setting B_EINTR. For the async case, B_EINTR
1615          * is not relevant, so the rpc attempt is essentially
1616          * a noop.  For the case of a V3 write rpc not being
1617          * committed to stable storage, the block is still
1618          * dirty and requires either a commit rpc or another
1619          * write rpc with iomode == NFSV3WRITE_FILESYNC before
1620          * the block is reused. This is indicated by setting
1621          * the B_DELWRI and B_NEEDCOMMIT flags.
1622          *
1623          * If the buffer is marked B_PAGING, it does not reside on
1624          * the vp's paging queues so we cannot call bdirty().  The
1625          * bp in this case is not an NFS cache block so we should
1626          * be safe. XXX
1627          */
1628         if (error == EINTR || (!error && (bp->b_flags & B_NEEDCOMMIT))) {
1629                 crit_enter();
1630                 bp->b_flags &= ~(B_INVAL|B_NOCACHE);
1631                 if ((bp->b_flags & B_PAGING) == 0)
1632                         bdirty(bp);
1633                 if (error)
1634                         bp->b_flags |= B_EINTR;
1635                 crit_exit();
1636         } else {
1637                 if (error) {
1638                         bp->b_flags |= B_ERROR;
1639                         bp->b_error = np->n_error = error;
1640                         np->n_flag |= NWRITEERR;
1641                 }
1642                 bp->b_dirtyoff = bp->b_dirtyend = 0;
1643         }
1644         if (info->info_writerpc.must_commit)
1645                 nfs_clearcommit(info->vp->v_mount);
1646         lwkt_reltoken(&nmp->nm_token);
1647
1648         kfree(info, M_NFSREQ);
1649         if (error) {
1650                 bp->b_flags |= B_ERROR;
1651                 bp->b_error = error;
1652         }
1653         biodone(bio);
1654 }
1655
1656 /*
1657  * Nfs Version 3 commit rpc - BIO version
1658  *
1659  * This function issues the commit rpc and will chain to a write
1660  * rpc if necessary.
1661  */
1662 void
1663 nfs_commitrpc_bio(struct vnode *vp, struct bio *bio)
1664 {
1665         struct nfsmount *nmp = VFSTONFS(vp->v_mount);
1666         struct buf *bp = bio->bio_buf;
1667         struct nfsm_info *info;
1668         int error = 0;
1669         u_int32_t *tl;
1670
1671         if ((nmp->nm_state & NFSSTA_HASWRITEVERF) == 0) {
1672                 bp->b_dirtyoff = bp->b_dirtyend = 0;
1673                 bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
1674                 bp->b_resid = 0;
1675                 biodone(bio);
1676                 return;
1677         }
1678
1679         info = kmalloc(sizeof(*info), M_NFSREQ, M_WAITOK);
1680         info->mrep = NULL;
1681         info->v3 = 1;
1682
1683         nfsstats.rpccnt[NFSPROC_COMMIT]++;
1684         nfsm_reqhead(info, vp, NFSPROC_COMMIT, NFSX_FH(1));
1685         ERROROUT(nfsm_fhtom(info, vp));
1686         tl = nfsm_build(info, 3 * NFSX_UNSIGNED);
1687         txdr_hyper(bio->bio_offset + bp->b_dirtyoff, tl);
1688         tl += 2;
1689         *tl = txdr_unsigned(bp->b_dirtyend - bp->b_dirtyoff);
1690         info->bio = bio;
1691         info->done = nfs_commitrpc_bio_done;
1692         nfsm_request_bio(info, vp, NFSPROC_COMMIT, NULL,
1693                          nfs_vpcred(vp, ND_WRITE));
1694         return;
1695 nfsmout:
1696         /*
1697          * Chain to write RPC on (early) error
1698          */
1699         kfree(info, M_NFSREQ);
1700         nfs_writerpc_bio(vp, bio);
1701 }
1702
1703 static void
1704 nfs_commitrpc_bio_done(nfsm_info_t info)
1705 {
1706         struct nfsmount *nmp = VFSTONFS(info->vp->v_mount);
1707         struct bio *bio = info->bio;
1708         struct buf *bp = bio->bio_buf;
1709         u_int32_t *tl;
1710         int wccflag = NFSV3_WCCRATTR;
1711         int error = 0;
1712
1713         lwkt_gettoken(&nmp->nm_token);
1714
1715         ERROROUT(nfsm_wcc_data(info, info->vp, &wccflag));
1716         if (error == 0) {
1717                 NULLOUT(tl = nfsm_dissect(info, NFSX_V3WRITEVERF));
1718                 if (bcmp(nmp->nm_verf, tl, NFSX_V3WRITEVERF)) {
1719                         bcopy(tl, nmp->nm_verf, NFSX_V3WRITEVERF);
1720                         error = NFSERR_STALEWRITEVERF;
1721                 }
1722         }
1723         m_freem(info->mrep);
1724         info->mrep = NULL;
1725
1726         /*
1727          * On completion we must chain to a write bio if an
1728          * error occurred.
1729          */
1730 nfsmout:
1731         kfree(info, M_NFSREQ);
1732         if (error == 0) {
1733                 bp->b_dirtyoff = bp->b_dirtyend = 0;
1734                 bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK);
1735                 bp->b_resid = 0;
1736                 biodone(bio);
1737         } else {
1738                 nfs_writerpc_bio(info->vp, bio);
1739         }
1740         lwkt_reltoken(&nmp->nm_token);
1741 }
1742