Home | History | Annotate | Line # | Download | only in nfs
nfs_bio.c revision 1.45.4.1
      1  1.45.4.1       chs /*	$NetBSD: nfs_bio.c,v 1.45.4.1 1999/06/07 04:25:32 chs Exp $	*/
      2      1.15       cgd 
      3       1.1       cgd /*
      4      1.12   mycroft  * Copyright (c) 1989, 1993
      5      1.12   mycroft  *	The Regents of the University of California.  All rights reserved.
      6       1.1       cgd  *
      7       1.1       cgd  * This code is derived from software contributed to Berkeley by
      8       1.1       cgd  * Rick Macklem at The University of Guelph.
      9       1.1       cgd  *
     10       1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11       1.1       cgd  * modification, are permitted provided that the following conditions
     12       1.1       cgd  * are met:
     13       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18       1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     19       1.1       cgd  *    must display the following acknowledgement:
     20       1.1       cgd  *	This product includes software developed by the University of
     21       1.1       cgd  *	California, Berkeley and its contributors.
     22       1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     23       1.1       cgd  *    may be used to endorse or promote products derived from this software
     24       1.1       cgd  *    without specific prior written permission.
     25       1.1       cgd  *
     26       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36       1.1       cgd  * SUCH DAMAGE.
     37       1.1       cgd  *
     38      1.24      fvdl  *	@(#)nfs_bio.c	8.9 (Berkeley) 3/30/95
     39       1.1       cgd  */
     40       1.1       cgd 
     41       1.8   mycroft #include <sys/param.h>
     42       1.8   mycroft #include <sys/systm.h>
     43      1.12   mycroft #include <sys/resourcevar.h>
     44      1.24      fvdl #include <sys/signalvar.h>
     45       1.8   mycroft #include <sys/proc.h>
     46       1.8   mycroft #include <sys/buf.h>
     47       1.8   mycroft #include <sys/vnode.h>
     48       1.8   mycroft #include <sys/trace.h>
     49       1.8   mycroft #include <sys/mount.h>
     50      1.12   mycroft #include <sys/kernel.h>
     51      1.23  christos #include <sys/namei.h>
     52      1.34      fvdl #include <sys/dirent.h>
     53  1.45.4.1       chs #include <sys/malloc.h>
     54      1.12   mycroft 
     55      1.12   mycroft #include <vm/vm.h>
     56      1.41       mrg #include <uvm/uvm_extern.h>
     57  1.45.4.1       chs #include <uvm/uvm.h>
     58      1.41       mrg 
     59      1.12   mycroft #include <nfs/rpcv2.h>
     60      1.24      fvdl #include <nfs/nfsproto.h>
     61       1.8   mycroft #include <nfs/nfs.h>
     62       1.8   mycroft #include <nfs/nfsmount.h>
     63      1.12   mycroft #include <nfs/nqnfs.h>
     64      1.24      fvdl #include <nfs/nfsnode.h>
     65      1.23  christos #include <nfs/nfs_var.h>
     66       1.1       cgd 
     67      1.12   mycroft extern int nfs_numasync;
     68      1.24      fvdl extern struct nfsstats nfsstats;
     69       1.1       cgd 
     70       1.1       cgd /*
     71       1.1       cgd  * Vnode op for read using bio
     72       1.1       cgd  * Any similarity to readip() is purely coincidental
     73       1.1       cgd  */
     74      1.23  christos int
     75      1.34      fvdl nfs_bioread(vp, uio, ioflag, cred, cflag)
     76       1.1       cgd 	register struct vnode *vp;
     77       1.1       cgd 	register struct uio *uio;
     78      1.34      fvdl 	int ioflag, cflag;
     79       1.1       cgd 	struct ucred *cred;
     80       1.1       cgd {
     81       1.1       cgd 	register struct nfsnode *np = VTONFS(vp);
     82      1.34      fvdl 	register int biosize, diff;
     83      1.23  christos 	struct buf *bp = NULL, *rabp;
     84       1.1       cgd 	struct vattr vattr;
     85      1.12   mycroft 	struct proc *p;
     86      1.24      fvdl 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
     87      1.35      fvdl 	struct nfsdircache *ndp = NULL, *nndp = NULL;
     88      1.12   mycroft 	daddr_t lbn, bn, rabn;
     89      1.34      fvdl 	caddr_t baddr, ep, edp;
     90      1.34      fvdl 	int got_buf = 0, nra, error = 0, n = 0, on = 0, not_readin, en, enn;
     91      1.34      fvdl 	int enough = 0;
     92      1.34      fvdl 	struct dirent *dp, *pdp;
     93      1.43      fvdl 	off_t curoff = 0, offdiff;
     94       1.1       cgd 
     95       1.1       cgd #ifdef DIAGNOSTIC
     96       1.1       cgd 	if (uio->uio_rw != UIO_READ)
     97       1.1       cgd 		panic("nfs_read mode");
     98       1.1       cgd #endif
     99       1.1       cgd 	if (uio->uio_resid == 0)
    100       1.1       cgd 		return (0);
    101      1.34      fvdl 	if (vp->v_type != VDIR && uio->uio_offset < 0)
    102       1.1       cgd 		return (EINVAL);
    103      1.24      fvdl 	p = uio->uio_procp;
    104      1.34      fvdl 	if ((nmp->nm_flag & NFSMNT_NFSV3) &&
    105      1.34      fvdl 	    !(nmp->nm_iflag & NFSMNT_GOTFSINFO))
    106      1.24      fvdl 		(void)nfs_fsinfo(nmp, vp, cred, p);
    107      1.34      fvdl 	if (vp->v_type != VDIR &&
    108      1.34      fvdl 	    (uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
    109      1.33      fvdl 		return (EFBIG);
    110      1.12   mycroft 	biosize = nmp->nm_rsize;
    111       1.1       cgd 	/*
    112      1.12   mycroft 	 * For nfs, cache consistency can only be maintained approximately.
    113      1.12   mycroft 	 * Although RFC1094 does not specify the criteria, the following is
    114      1.12   mycroft 	 * believed to be compatible with the reference port.
    115      1.12   mycroft 	 * For nqnfs, full cache consistency is maintained within the loop.
    116      1.12   mycroft 	 * For nfs:
    117       1.1       cgd 	 * If the file's modify time on the server has changed since the
    118       1.1       cgd 	 * last read rpc or you have written to the file,
    119       1.1       cgd 	 * you may have lost data cache consistency with the
    120       1.1       cgd 	 * server, so flush all of the file's data out of the cache.
    121       1.1       cgd 	 * Then force a getattr rpc to ensure that you have up to date
    122       1.1       cgd 	 * attributes.
    123       1.1       cgd 	 * NB: This implies that cache data can be read when up to
    124       1.1       cgd 	 * NFS_ATTRTIMEO seconds out of date. If you find that you need current
    125       1.1       cgd 	 * attributes this could be forced by setting n_attrstamp to 0 before
    126      1.12   mycroft 	 * the VOP_GETATTR() call.
    127       1.1       cgd 	 */
    128      1.12   mycroft 	if ((nmp->nm_flag & NFSMNT_NQNFS) == 0 && vp->v_type != VLNK) {
    129       1.1       cgd 		if (np->n_flag & NMODIFIED) {
    130      1.24      fvdl 			if (vp->v_type != VREG) {
    131      1.24      fvdl 				if (vp->v_type != VDIR)
    132      1.24      fvdl 					panic("nfs: bioread, not dir");
    133      1.35      fvdl 				nfs_invaldircache(vp, 0);
    134      1.35      fvdl 				np->n_direofoffset = 0;
    135      1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    136      1.23  christos 				if (error)
    137      1.12   mycroft 					return (error);
    138      1.12   mycroft 			}
    139       1.1       cgd 			np->n_attrstamp = 0;
    140      1.23  christos 			error = VOP_GETATTR(vp, &vattr, cred, p);
    141      1.23  christos 			if (error)
    142       1.1       cgd 				return (error);
    143      1.22       jtc 			np->n_mtime = vattr.va_mtime.tv_sec;
    144       1.1       cgd 		} else {
    145      1.24      fvdl 			error = VOP_GETATTR(vp, &vattr, cred, p);
    146      1.24      fvdl 			if (error)
    147       1.1       cgd 				return (error);
    148      1.22       jtc 			if (np->n_mtime != vattr.va_mtime.tv_sec) {
    149      1.35      fvdl 				if (vp->v_type == VDIR) {
    150      1.35      fvdl 					nfs_invaldircache(vp, 0);
    151      1.35      fvdl 					np->n_direofoffset = 0;
    152      1.35      fvdl 				}
    153      1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    154      1.23  christos 				if (error)
    155      1.12   mycroft 					return (error);
    156      1.22       jtc 				np->n_mtime = vattr.va_mtime.tv_sec;
    157       1.1       cgd 			}
    158       1.1       cgd 		}
    159       1.1       cgd 	}
    160       1.1       cgd 	do {
    161      1.12   mycroft 
    162      1.12   mycroft 	    /*
    163      1.12   mycroft 	     * Get a valid lease. If cached data is stale, flush it.
    164      1.12   mycroft 	     */
    165      1.12   mycroft 	    if (nmp->nm_flag & NFSMNT_NQNFS) {
    166      1.24      fvdl 		if (NQNFS_CKINVALID(vp, np, ND_READ)) {
    167      1.12   mycroft 		    do {
    168      1.24      fvdl 			error = nqnfs_getlease(vp, ND_READ, cred, p);
    169      1.12   mycroft 		    } while (error == NQNFS_EXPIRED);
    170      1.12   mycroft 		    if (error)
    171      1.12   mycroft 			return (error);
    172      1.12   mycroft 		    if (np->n_lrev != np->n_brev ||
    173      1.12   mycroft 			(np->n_flag & NQNFSNONCACHE) ||
    174      1.12   mycroft 			((np->n_flag & NMODIFIED) && vp->v_type == VDIR)) {
    175      1.35      fvdl 			if (vp->v_type == VDIR) {
    176      1.35      fvdl 				nfs_invaldircache(vp, 0);
    177      1.35      fvdl 				np->n_direofoffset = 0;
    178      1.35      fvdl 			}
    179      1.23  christos 			error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    180      1.23  christos 			if (error)
    181      1.12   mycroft 			    return (error);
    182      1.12   mycroft 			np->n_brev = np->n_lrev;
    183      1.12   mycroft 		    }
    184      1.12   mycroft 		} else if (vp->v_type == VDIR && (np->n_flag & NMODIFIED)) {
    185      1.35      fvdl 		    nfs_invaldircache(vp, 0);
    186      1.23  christos 		    error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    187      1.35      fvdl 		    np->n_direofoffset = 0;
    188      1.23  christos 		    if (error)
    189      1.12   mycroft 			return (error);
    190      1.12   mycroft 		}
    191      1.12   mycroft 	    }
    192      1.26      fvdl 	    /*
    193      1.26      fvdl 	     * Don't cache symlinks.
    194      1.26      fvdl 	     */
    195      1.26      fvdl 	    if (np->n_flag & NQNFSNONCACHE
    196      1.26      fvdl 		|| ((vp->v_flag & VROOT) && vp->v_type == VLNK)) {
    197      1.12   mycroft 		switch (vp->v_type) {
    198      1.12   mycroft 		case VREG:
    199      1.24      fvdl 			return (nfs_readrpc(vp, uio, cred));
    200      1.12   mycroft 		case VLNK:
    201      1.24      fvdl 			return (nfs_readlinkrpc(vp, uio, cred));
    202      1.12   mycroft 		case VDIR:
    203      1.23  christos 			break;
    204      1.24      fvdl 		default:
    205      1.29  christos 			printf(" NQNFSNONCACHE: type %x unexpected\n",
    206      1.28  christos 			    vp->v_type);
    207      1.12   mycroft 		};
    208      1.12   mycroft 	    }
    209      1.12   mycroft 	    baddr = (caddr_t)0;
    210       1.1       cgd 	    switch (vp->v_type) {
    211       1.1       cgd 	    case VREG:
    212       1.1       cgd 		nfsstats.biocache_reads++;
    213       1.1       cgd 		lbn = uio->uio_offset / biosize;
    214      1.24      fvdl 		on = uio->uio_offset & (biosize - 1);
    215      1.12   mycroft 		bn = lbn * (biosize / DEV_BSIZE);
    216      1.12   mycroft 		not_readin = 1;
    217      1.12   mycroft 
    218  1.45.4.1       chs #if 1
    219  1.45.4.1       chs 		offdiff = nra = rabn = diff = 0;
    220  1.45.4.1       chs 		error = 0;
    221  1.45.4.1       chs 		while (uio->uio_resid > 0) {
    222  1.45.4.1       chs 			void *win;
    223  1.45.4.1       chs 			vsize_t bytelen = min(np->n_size - uio->uio_offset,
    224  1.45.4.1       chs 					      uio->uio_resid);
    225  1.45.4.1       chs 
    226  1.45.4.1       chs 			if (bytelen == 0)
    227  1.45.4.1       chs 				break;
    228  1.45.4.1       chs 			win = ubc_alloc(&vp->v_uvm.u_obj, uio->uio_offset,
    229  1.45.4.1       chs 					&bytelen, UBC_READ);
    230  1.45.4.1       chs #ifdef DIAGNOSTIC
    231  1.45.4.1       chs 			if (win == NULL)
    232  1.45.4.1       chs 				panic("nfs_bioread: ubc_alloc -> NULL");
    233  1.45.4.1       chs #endif
    234  1.45.4.1       chs 
    235  1.45.4.1       chs 			error = uiomove(win, bytelen, uio);
    236  1.45.4.1       chs 			ubc_release(win, 0);
    237  1.45.4.1       chs 			if (error)
    238  1.45.4.1       chs 				break;
    239  1.45.4.1       chs 		}
    240  1.45.4.1       chs #else
    241      1.12   mycroft 		/*
    242      1.12   mycroft 		 * Start the read ahead(s), as required.
    243      1.12   mycroft 		 */
    244      1.36      fvdl 		if (nfs_numasync > 0 && nmp->nm_readahead > 0 &&
    245      1.36      fvdl 		    lbn - 1 == vp->v_lastr) {
    246      1.12   mycroft 		    for (nra = 0; nra < nmp->nm_readahead &&
    247      1.12   mycroft 			(lbn + 1 + nra) * biosize < np->n_size; nra++) {
    248      1.12   mycroft 			rabn = (lbn + 1 + nra) * (biosize / DEV_BSIZE);
    249      1.12   mycroft 			if (!incore(vp, rabn)) {
    250      1.12   mycroft 			    rabp = nfs_getcacheblk(vp, rabn, biosize, p);
    251      1.12   mycroft 			    if (!rabp)
    252      1.12   mycroft 				return (EINTR);
    253      1.12   mycroft 			    if ((rabp->b_flags & (B_DELWRI | B_DONE)) == 0) {
    254      1.12   mycroft 				rabp->b_flags |= (B_READ | B_ASYNC);
    255      1.12   mycroft 				if (nfs_asyncio(rabp, cred)) {
    256      1.12   mycroft 				    rabp->b_flags |= B_INVAL;
    257      1.12   mycroft 				    brelse(rabp);
    258      1.12   mycroft 				}
    259      1.19   mycroft 			    } else
    260      1.19   mycroft 				brelse(rabp);
    261      1.12   mycroft 			}
    262      1.12   mycroft 		    }
    263      1.12   mycroft 		}
    264      1.12   mycroft 
    265      1.12   mycroft 		/*
    266      1.12   mycroft 		 * If the block is in the cache and has the required data
    267      1.12   mycroft 		 * in a valid region, just copy it out.
    268      1.12   mycroft 		 * Otherwise, get the block and write back/read in,
    269      1.12   mycroft 		 * as required.
    270      1.12   mycroft 		 */
    271      1.12   mycroft 		if ((bp = incore(vp, bn)) &&
    272      1.12   mycroft 		    (bp->b_flags & (B_BUSY | B_WRITEINPROG)) ==
    273      1.12   mycroft 		    (B_BUSY | B_WRITEINPROG))
    274      1.12   mycroft 			got_buf = 0;
    275      1.12   mycroft 		else {
    276      1.12   mycroft again:
    277      1.12   mycroft 			bp = nfs_getcacheblk(vp, bn, biosize, p);
    278      1.12   mycroft 			if (!bp)
    279      1.12   mycroft 				return (EINTR);
    280      1.12   mycroft 			got_buf = 1;
    281      1.12   mycroft 			if ((bp->b_flags & (B_DONE | B_DELWRI)) == 0) {
    282      1.12   mycroft 				bp->b_flags |= B_READ;
    283      1.12   mycroft 				not_readin = 0;
    284      1.23  christos 				error = nfs_doio(bp, cred, p);
    285      1.23  christos 				if (error) {
    286      1.12   mycroft 				    brelse(bp);
    287      1.12   mycroft 				    return (error);
    288      1.12   mycroft 				}
    289      1.12   mycroft 			}
    290      1.12   mycroft 		}
    291      1.11       cgd 		n = min((unsigned)(biosize - on), uio->uio_resid);
    292      1.43      fvdl 		offdiff = np->n_size - uio->uio_offset;
    293      1.43      fvdl 		if (offdiff < (off_t)n)
    294      1.43      fvdl 			n = (int)offdiff;
    295      1.12   mycroft 		if (not_readin && n > 0) {
    296      1.12   mycroft 			if (on < bp->b_validoff || (on + n) > bp->b_validend) {
    297      1.12   mycroft 				if (!got_buf) {
    298      1.12   mycroft 				    bp = nfs_getcacheblk(vp, bn, biosize, p);
    299      1.12   mycroft 				    if (!bp)
    300      1.12   mycroft 					return (EINTR);
    301      1.12   mycroft 				    got_buf = 1;
    302      1.12   mycroft 				}
    303      1.24      fvdl 				bp->b_flags |= B_INVAFTERWRITE;
    304      1.12   mycroft 				if (bp->b_dirtyend > 0) {
    305      1.12   mycroft 				    if ((bp->b_flags & B_DELWRI) == 0)
    306      1.12   mycroft 					panic("nfsbioread");
    307      1.12   mycroft 				    if (VOP_BWRITE(bp) == EINTR)
    308      1.12   mycroft 					return (EINTR);
    309      1.12   mycroft 				} else
    310      1.12   mycroft 				    brelse(bp);
    311      1.12   mycroft 				goto again;
    312      1.12   mycroft 			}
    313      1.12   mycroft 		}
    314       1.1       cgd 		vp->v_lastr = lbn;
    315      1.12   mycroft 		diff = (on >= bp->b_validend) ? 0 : (bp->b_validend - on);
    316      1.12   mycroft 		if (diff < n)
    317      1.12   mycroft 			n = diff;
    318  1.45.4.1       chs #endif
    319       1.1       cgd 		break;
    320       1.1       cgd 	    case VLNK:
    321       1.1       cgd 		nfsstats.biocache_readlinks++;
    322      1.12   mycroft 		bp = nfs_getcacheblk(vp, (daddr_t)0, NFS_MAXPATHLEN, p);
    323      1.12   mycroft 		if (!bp)
    324      1.12   mycroft 			return (EINTR);
    325      1.12   mycroft 		if ((bp->b_flags & B_DONE) == 0) {
    326      1.12   mycroft 			bp->b_flags |= B_READ;
    327      1.24      fvdl 			error = nfs_doio(bp, cred, p);
    328      1.24      fvdl 			if (error) {
    329      1.12   mycroft 				brelse(bp);
    330      1.12   mycroft 				return (error);
    331      1.12   mycroft 			}
    332      1.12   mycroft 		}
    333      1.12   mycroft 		n = min(uio->uio_resid, NFS_MAXPATHLEN - bp->b_resid);
    334      1.12   mycroft 		got_buf = 1;
    335       1.1       cgd 		on = 0;
    336       1.1       cgd 		break;
    337       1.1       cgd 	    case VDIR:
    338      1.34      fvdl diragain:
    339      1.34      fvdl 		nfsstats.biocache_readdirs++;
    340      1.35      fvdl 		ndp = nfs_searchdircache(vp, uio->uio_offset,
    341      1.35      fvdl 			(nmp->nm_flag & NFSMNT_XLATECOOKIE), 0);
    342      1.35      fvdl 		if (!ndp) {
    343      1.35      fvdl 			/*
    344      1.35      fvdl 			 * We've been handed a cookie that is not
    345      1.35      fvdl 			 * in the cache. If we're not translating
    346      1.35      fvdl 			 * 32 <-> 64, it may be a value that was
    347      1.35      fvdl 			 * flushed out of the cache because it grew
    348      1.35      fvdl 			 * too big. Let the server judge if it's
    349      1.35      fvdl 			 * valid or not. In the translation case,
    350      1.35      fvdl 			 * we have no way of validating this value,
    351      1.35      fvdl 			 * so punt.
    352      1.35      fvdl 			 */
    353      1.35      fvdl 			if (nmp->nm_flag & NFSMNT_XLATECOOKIE)
    354      1.35      fvdl 				return (EINVAL);
    355      1.35      fvdl 			ndp = nfs_enterdircache(vp, uio->uio_offset,
    356      1.35      fvdl 				uio->uio_offset, 0, 0);
    357      1.35      fvdl 		}
    358      1.35      fvdl 
    359      1.34      fvdl 		if (uio->uio_offset != 0 &&
    360      1.35      fvdl 		    ndp->dc_cookie == np->n_direofoffset) {
    361      1.35      fvdl 			nfsstats.direofcache_hits++;
    362      1.18   mycroft 			return (0);
    363      1.35      fvdl 		}
    364      1.35      fvdl 
    365      1.34      fvdl 		bp = nfs_getcacheblk(vp, ndp->dc_blkno, NFS_DIRBLKSIZ, p);
    366      1.12   mycroft 		if (!bp)
    367      1.24      fvdl 		    return (EINTR);
    368      1.12   mycroft 		if ((bp->b_flags & B_DONE) == 0) {
    369      1.24      fvdl 		    bp->b_flags |= B_READ;
    370      1.35      fvdl 		    bp->b_dcookie = ndp->dc_blkcookie;
    371      1.24      fvdl 		    error = nfs_doio(bp, cred, p);
    372      1.24      fvdl 		    if (error) {
    373      1.34      fvdl 			/*
    374      1.34      fvdl 			 * Yuck! The directory has been modified on the
    375      1.34      fvdl 			 * server. Punt and let the userland code
    376      1.34      fvdl 			 * deal with it.
    377      1.34      fvdl 			 */
    378      1.24      fvdl 			brelse(bp);
    379      1.34      fvdl 			if (error == NFSERR_BAD_COOKIE) {
    380      1.35      fvdl 			    nfs_invaldircache(vp, 0);
    381      1.34      fvdl 			    nfs_vinvalbuf(vp, 0, cred, p, 1);
    382      1.34      fvdl 			    error = EINVAL;
    383      1.12   mycroft 			}
    384      1.34      fvdl 			return (error);
    385      1.38      fvdl 		    }
    386      1.40      fvdl 		}
    387      1.40      fvdl 
    388      1.40      fvdl 		/*
    389      1.40      fvdl 		 * Just return if we hit EOF right away with this
    390      1.40      fvdl 		 * block. Always check here, because direofoffset
    391      1.40      fvdl 		 * may have been set by an nfsiod since the last
    392      1.40      fvdl 		 * check.
    393      1.40      fvdl 		 */
    394      1.40      fvdl 		if (np->n_direofoffset != 0 &&
    395      1.39      fvdl 			ndp->dc_blkcookie == np->n_direofoffset) {
    396      1.40      fvdl 			brelse(bp);
    397      1.40      fvdl 			return (0);
    398      1.12   mycroft 		}
    399      1.12   mycroft 
    400      1.12   mycroft 		/*
    401      1.34      fvdl 		 * Find the entry we were looking for in the block.
    402      1.34      fvdl 		 */
    403      1.34      fvdl 
    404      1.34      fvdl 		en = ndp->dc_entry;
    405      1.34      fvdl 
    406      1.34      fvdl 		pdp = dp = (struct dirent *)bp->b_data;
    407      1.34      fvdl 		edp = bp->b_data + bp->b_validend;
    408      1.34      fvdl 		enn = 0;
    409      1.34      fvdl 		while (enn < en && (caddr_t)dp < edp) {
    410      1.34      fvdl 			pdp = dp;
    411      1.34      fvdl 			dp = (struct dirent *)((caddr_t)dp + dp->d_reclen);
    412      1.34      fvdl 			enn++;
    413      1.34      fvdl 		}
    414      1.34      fvdl 
    415      1.34      fvdl 		/*
    416      1.34      fvdl 		 * If the entry number was bigger than the number of
    417      1.34      fvdl 		 * entries in the block, or the cookie of the previous
    418      1.34      fvdl 		 * entry doesn't match, the directory cache is
    419      1.34      fvdl 		 * stale. Flush it and try again (i.e. go to
    420      1.34      fvdl 		 * the server).
    421      1.34      fvdl 		 */
    422      1.34      fvdl 		if ((caddr_t)dp >= edp || (caddr_t)dp + dp->d_reclen > edp ||
    423      1.35      fvdl 		    (en > 0 && NFS_GETCOOKIE(pdp) != ndp->dc_cookie)) {
    424      1.34      fvdl #ifdef DEBUG
    425      1.37   thorpej 		    	printf("invalid cache: %p %p %p off %lx %lx\n",
    426      1.37   thorpej 				pdp, dp, edp,
    427      1.34      fvdl 				(unsigned long)uio->uio_offset,
    428      1.34      fvdl 				(unsigned long)NFS_GETCOOKIE(pdp));
    429      1.34      fvdl #endif
    430      1.34      fvdl 			brelse(bp);
    431      1.35      fvdl 			nfs_invaldircache(vp, 0);
    432      1.34      fvdl 			nfs_vinvalbuf(vp, 0, cred, p, 0);
    433      1.34      fvdl 			goto diragain;
    434      1.34      fvdl 		}
    435      1.34      fvdl 
    436      1.34      fvdl 		on = (caddr_t)dp - bp->b_data;
    437      1.34      fvdl 
    438      1.34      fvdl 		/*
    439      1.34      fvdl 		 * Cache all entries that may be exported to the
    440      1.34      fvdl 		 * user, as they may be thrown back at us. The
    441      1.34      fvdl 		 * NFSBIO_CACHECOOKIES flag indicates that all
    442      1.34      fvdl 		 * entries are being 'exported', so cache them all.
    443      1.34      fvdl 		 */
    444      1.34      fvdl 
    445      1.34      fvdl 		if (en == 0 && pdp == dp) {
    446      1.34      fvdl 			dp = (struct dirent *)
    447      1.34      fvdl 			    ((caddr_t)dp + dp->d_reclen);
    448      1.34      fvdl 			enn++;
    449      1.34      fvdl 		}
    450      1.34      fvdl 
    451      1.34      fvdl 		if (uio->uio_resid < (bp->b_validend - on)) {
    452      1.34      fvdl 			n = uio->uio_resid;
    453      1.34      fvdl 			enough = 1;
    454      1.34      fvdl 		} else
    455      1.34      fvdl 			n = bp->b_validend - on;
    456      1.34      fvdl 
    457      1.34      fvdl 		ep = bp->b_data + on + n;
    458      1.34      fvdl 
    459      1.34      fvdl 		/*
    460      1.34      fvdl 		 * Find last complete entry to copy, caching entries
    461      1.34      fvdl 		 * (if requested) as we go.
    462      1.34      fvdl 		 */
    463      1.34      fvdl 
    464      1.34      fvdl 		while ((caddr_t)dp < ep && (caddr_t)dp + dp->d_reclen <= ep) {
    465      1.35      fvdl 			if (cflag & NFSBIO_CACHECOOKIES) {
    466      1.35      fvdl 				nndp = nfs_enterdircache(vp, NFS_GETCOOKIE(pdp),
    467      1.35      fvdl 				    ndp->dc_blkcookie, enn, bp->b_lblkno);
    468      1.35      fvdl 				if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    469      1.35      fvdl 					NFS_STASHCOOKIE32(pdp,
    470      1.35      fvdl 					    nndp->dc_cookie32);
    471      1.35      fvdl 				}
    472      1.35      fvdl 			}
    473      1.34      fvdl 			pdp = dp;
    474      1.34      fvdl 			dp = (struct dirent *)((caddr_t)dp + dp->d_reclen);
    475      1.34      fvdl 			enn++;
    476      1.34      fvdl 		}
    477      1.34      fvdl 
    478      1.34      fvdl 		/*
    479      1.34      fvdl 		 * If the last requested entry was not the last in the
    480      1.34      fvdl 		 * buffer (happens if NFS_DIRFRAGSIZ < NFS_DIRBLKSIZ),
    481      1.34      fvdl 		 * cache the cookie of the last requested one, and
    482      1.34      fvdl 		 * set of the offset to it.
    483      1.34      fvdl 		 */
    484      1.34      fvdl 
    485      1.34      fvdl 		if ((on + n) < bp->b_validend) {
    486      1.34      fvdl 			curoff = NFS_GETCOOKIE(pdp);
    487      1.35      fvdl 			nndp = nfs_enterdircache(vp, curoff, ndp->dc_blkcookie,
    488      1.35      fvdl 			    enn, bp->b_lblkno);
    489      1.35      fvdl 			if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    490      1.35      fvdl 				NFS_STASHCOOKIE32(pdp, nndp->dc_cookie32);
    491      1.35      fvdl 				curoff = nndp->dc_cookie32;
    492      1.35      fvdl 			}
    493      1.34      fvdl 		} else
    494      1.34      fvdl 			curoff = bp->b_dcookie;
    495      1.34      fvdl 
    496      1.35      fvdl 		/*
    497      1.35      fvdl 		 * Always cache the entry for the next block,
    498      1.35      fvdl 		 * so that readaheads can use it.
    499      1.35      fvdl 		 */
    500      1.35      fvdl 		nndp = nfs_enterdircache(vp, bp->b_dcookie, bp->b_dcookie, 0,0);
    501      1.35      fvdl 		if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    502      1.35      fvdl 			if (curoff == bp->b_dcookie) {
    503      1.35      fvdl 				NFS_STASHCOOKIE32(pdp, nndp->dc_cookie32);
    504      1.35      fvdl 				curoff = nndp->dc_cookie32;
    505      1.35      fvdl 			}
    506      1.35      fvdl 		}
    507      1.35      fvdl 
    508      1.34      fvdl 		n = ((caddr_t)pdp + pdp->d_reclen) - (bp->b_data + on);
    509      1.34      fvdl 
    510      1.34      fvdl 		/*
    511      1.12   mycroft 		 * If not eof and read aheads are enabled, start one.
    512      1.12   mycroft 		 * (You need the current block first, so that you have the
    513      1.24      fvdl 		 *  directory offset cookie of the next block.)
    514      1.12   mycroft 		 */
    515      1.12   mycroft 		if (nfs_numasync > 0 && nmp->nm_readahead > 0 &&
    516      1.34      fvdl 		    np->n_direofoffset == 0 && !(np->n_flag & NQNFSNONCACHE)) {
    517      1.35      fvdl 			rabp = nfs_getcacheblk(vp, nndp->dc_blkno,
    518      1.34      fvdl 						NFS_DIRBLKSIZ, p);
    519      1.12   mycroft 			if (rabp) {
    520      1.12   mycroft 			    if ((rabp->b_flags & (B_DONE | B_DELWRI)) == 0) {
    521      1.35      fvdl 				rabp->b_dcookie = nndp->dc_cookie;
    522      1.12   mycroft 				rabp->b_flags |= (B_READ | B_ASYNC);
    523      1.12   mycroft 				if (nfs_asyncio(rabp, cred)) {
    524      1.12   mycroft 				    rabp->b_flags |= B_INVAL;
    525      1.12   mycroft 				    brelse(rabp);
    526      1.12   mycroft 				}
    527      1.19   mycroft 			    } else
    528      1.19   mycroft 				brelse(rabp);
    529      1.12   mycroft 			}
    530      1.12   mycroft 		}
    531      1.12   mycroft 		got_buf = 1;
    532       1.1       cgd 		break;
    533      1.24      fvdl 	    default:
    534      1.29  christos 		printf(" nfsbioread: type %x unexpected\n",vp->v_type);
    535      1.23  christos 		break;
    536  1.45.4.1       chs 	    }
    537      1.12   mycroft 
    538      1.12   mycroft 	    if (n > 0) {
    539      1.12   mycroft 		if (!baddr)
    540      1.12   mycroft 			baddr = bp->b_data;
    541      1.12   mycroft 		error = uiomove(baddr + on, (int)n, uio);
    542       1.1       cgd 	    }
    543       1.1       cgd 	    switch (vp->v_type) {
    544      1.24      fvdl 	    case VREG:
    545      1.24      fvdl 		break;
    546       1.1       cgd 	    case VLNK:
    547       1.1       cgd 		n = 0;
    548       1.1       cgd 		break;
    549       1.1       cgd 	    case VDIR:
    550      1.24      fvdl 		if (np->n_flag & NQNFSNONCACHE)
    551      1.24      fvdl 			bp->b_flags |= B_INVAL;
    552      1.34      fvdl 		uio->uio_offset = curoff;
    553      1.34      fvdl 		if (enough)
    554      1.34      fvdl 			n = 0;
    555       1.1       cgd 		break;
    556      1.24      fvdl 	    default:
    557      1.29  christos 		printf(" nfsbioread: type %x unexpected\n",vp->v_type);
    558      1.24      fvdl 	    }
    559      1.12   mycroft 	    if (got_buf)
    560      1.12   mycroft 		brelse(bp);
    561      1.12   mycroft 	} while (error == 0 && uio->uio_resid > 0 && n > 0);
    562       1.1       cgd 	return (error);
    563       1.1       cgd }
    564       1.1       cgd 
    565       1.1       cgd /*
    566       1.1       cgd  * Vnode op for write using bio
    567       1.1       cgd  */
    568      1.23  christos int
    569      1.23  christos nfs_write(v)
    570      1.23  christos 	void *v;
    571      1.23  christos {
    572      1.12   mycroft 	struct vop_write_args /* {
    573      1.24      fvdl 		struct vnode *a_vp;
    574      1.12   mycroft 		struct uio *a_uio;
    575      1.12   mycroft 		int  a_ioflag;
    576      1.12   mycroft 		struct ucred *a_cred;
    577      1.23  christos 	} */ *ap = v;
    578      1.12   mycroft 	register int biosize;
    579      1.12   mycroft 	register struct uio *uio = ap->a_uio;
    580       1.1       cgd 	struct proc *p = uio->uio_procp;
    581      1.12   mycroft 	register struct vnode *vp = ap->a_vp;
    582      1.12   mycroft 	struct nfsnode *np = VTONFS(vp);
    583      1.12   mycroft 	register struct ucred *cred = ap->a_cred;
    584      1.12   mycroft 	int ioflag = ap->a_ioflag;
    585       1.1       cgd 	struct buf *bp;
    586       1.1       cgd 	struct vattr vattr;
    587      1.24      fvdl 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    588       1.1       cgd 	daddr_t lbn, bn;
    589      1.24      fvdl 	int n, on, error = 0, iomode, must_commit;
    590       1.1       cgd 
    591       1.1       cgd #ifdef DIAGNOSTIC
    592       1.1       cgd 	if (uio->uio_rw != UIO_WRITE)
    593       1.1       cgd 		panic("nfs_write mode");
    594       1.1       cgd 	if (uio->uio_segflg == UIO_USERSPACE && uio->uio_procp != curproc)
    595       1.1       cgd 		panic("nfs_write proc");
    596       1.1       cgd #endif
    597       1.1       cgd 	if (vp->v_type != VREG)
    598       1.1       cgd 		return (EIO);
    599      1.12   mycroft 	if (np->n_flag & NWRITEERR) {
    600      1.12   mycroft 		np->n_flag &= ~NWRITEERR;
    601      1.12   mycroft 		return (np->n_error);
    602      1.12   mycroft 	}
    603      1.34      fvdl 	if ((nmp->nm_flag & NFSMNT_NFSV3) &&
    604      1.34      fvdl 	    !(nmp->nm_iflag & NFSMNT_GOTFSINFO))
    605      1.24      fvdl 		(void)nfs_fsinfo(nmp, vp, cred, p);
    606       1.1       cgd 	if (ioflag & (IO_APPEND | IO_SYNC)) {
    607       1.1       cgd 		if (np->n_flag & NMODIFIED) {
    608      1.12   mycroft 			np->n_attrstamp = 0;
    609      1.23  christos 			error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    610      1.23  christos 			if (error)
    611      1.12   mycroft 				return (error);
    612       1.1       cgd 		}
    613       1.1       cgd 		if (ioflag & IO_APPEND) {
    614       1.1       cgd 			np->n_attrstamp = 0;
    615      1.23  christos 			error = VOP_GETATTR(vp, &vattr, cred, p);
    616      1.23  christos 			if (error)
    617       1.1       cgd 				return (error);
    618       1.1       cgd 			uio->uio_offset = np->n_size;
    619       1.1       cgd 		}
    620       1.1       cgd 	}
    621       1.1       cgd 	if (uio->uio_offset < 0)
    622       1.1       cgd 		return (EINVAL);
    623      1.33      fvdl 	if ((uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
    624      1.33      fvdl 		return (EFBIG);
    625       1.1       cgd 	if (uio->uio_resid == 0)
    626       1.1       cgd 		return (0);
    627       1.1       cgd 	/*
    628       1.1       cgd 	 * Maybe this should be above the vnode op call, but so long as
    629       1.1       cgd 	 * file servers have no limits, i don't think it matters
    630       1.1       cgd 	 */
    631      1.12   mycroft 	if (p && uio->uio_offset + uio->uio_resid >
    632       1.1       cgd 	      p->p_rlimit[RLIMIT_FSIZE].rlim_cur) {
    633       1.1       cgd 		psignal(p, SIGXFSZ);
    634       1.1       cgd 		return (EFBIG);
    635       1.1       cgd 	}
    636       1.1       cgd 	/*
    637       1.1       cgd 	 * I use nm_rsize, not nm_wsize so that all buffer cache blocks
    638       1.1       cgd 	 * will be the same size within a filesystem. nfs_writerpc will
    639       1.1       cgd 	 * still use nm_wsize when sizing the rpc's.
    640       1.1       cgd 	 */
    641      1.12   mycroft 	biosize = nmp->nm_rsize;
    642       1.1       cgd 	do {
    643  1.45.4.1       chs #if 1
    644  1.45.4.1       chs 		void *win;
    645  1.45.4.1       chs 		vaddr_t oldoff = uio->uio_offset;
    646  1.45.4.1       chs 		vsize_t bytelen = uio->uio_resid;
    647  1.45.4.1       chs 
    648  1.45.4.1       chs 		/*
    649  1.45.4.1       chs 		 * XXX only do one page at a time for now.
    650  1.45.4.1       chs 		 * otherwise when we're extending the file,
    651  1.45.4.1       chs 		 * the flush for a given page will invalidate
    652  1.45.4.1       chs 		 * all the pages after that in the file.
    653  1.45.4.1       chs 		 * we should probably just defer looking at the attrs
    654  1.45.4.1       chs 		 * returned with write rpcs until the
    655  1.45.4.1       chs 		 * the entire write operation has finished.
    656  1.45.4.1       chs 		 */
    657  1.45.4.1       chs 		bytelen = min(uio->uio_resid,
    658  1.45.4.1       chs 			      PAGE_SIZE - (uio->uio_offset & (PAGE_SIZE - 1)));
    659  1.45.4.1       chs 
    660  1.45.4.1       chs 		/* XXX */
    661  1.45.4.1       chs 		on = bn = lbn = 0;
    662  1.45.4.1       chs 		bp = 0;
    663  1.45.4.1       chs 		n = bytelen;
    664  1.45.4.1       chs #endif
    665      1.16       cgd 
    666      1.16       cgd 		/*
    667      1.16       cgd 		 * XXX make sure we aren't cached in the VM page cache
    668      1.16       cgd 		 */
    669      1.41       mrg 		(void)uvm_vnp_uncache(vp);
    670      1.12   mycroft 
    671      1.12   mycroft 		/*
    672      1.12   mycroft 		 * Check for a valid write lease.
    673      1.12   mycroft 		 */
    674      1.12   mycroft 		if ((nmp->nm_flag & NFSMNT_NQNFS) &&
    675      1.24      fvdl 		    NQNFS_CKINVALID(vp, np, ND_WRITE)) {
    676      1.12   mycroft 			do {
    677      1.24      fvdl 				error = nqnfs_getlease(vp, ND_WRITE, cred, p);
    678      1.12   mycroft 			} while (error == NQNFS_EXPIRED);
    679      1.12   mycroft 			if (error)
    680      1.12   mycroft 				return (error);
    681      1.12   mycroft 			if (np->n_lrev != np->n_brev ||
    682      1.12   mycroft 			    (np->n_flag & NQNFSNONCACHE)) {
    683      1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    684      1.23  christos 				if (error)
    685      1.12   mycroft 					return (error);
    686      1.12   mycroft 				np->n_brev = np->n_lrev;
    687      1.12   mycroft 			}
    688      1.12   mycroft 		}
    689      1.24      fvdl 		if ((np->n_flag & NQNFSNONCACHE) && uio->uio_iovcnt == 1) {
    690      1.24      fvdl 		    iomode = NFSV3WRITE_FILESYNC;
    691      1.24      fvdl 		    error = nfs_writerpc(vp, uio, cred, &iomode, &must_commit);
    692      1.24      fvdl 		    if (must_commit)
    693      1.24      fvdl 			nfs_clearcommit(vp->v_mount);
    694      1.24      fvdl 		    return (error);
    695      1.24      fvdl 		}
    696       1.1       cgd 		nfsstats.biocache_writes++;
    697  1.45.4.1       chs 
    698  1.45.4.1       chs #if 1
    699  1.45.4.1       chs 		np->n_flag |= NMODIFIED;
    700  1.45.4.1       chs 		if (np->n_size < uio->uio_offset + n) {
    701  1.45.4.1       chs 			np->n_size = uio->uio_offset + n;
    702  1.45.4.1       chs 			uvm_vnp_setsize(vp, np->n_size);
    703  1.45.4.1       chs 		}
    704  1.45.4.1       chs 
    705  1.45.4.1       chs 		/* XXX check dirty region stuff */
    706  1.45.4.1       chs 
    707  1.45.4.1       chs 		win = ubc_alloc(&vp->v_uvm.u_obj, uio->uio_offset, &bytelen,
    708  1.45.4.1       chs 				UBC_WRITE);
    709  1.45.4.1       chs #ifdef DIAGNOSTIC
    710  1.45.4.1       chs 		if (win == NULL) {
    711  1.45.4.1       chs 			panic("nfs_bioread: ubc_alloc -> NULL");
    712  1.45.4.1       chs 		}
    713  1.45.4.1       chs #endif
    714  1.45.4.1       chs 		error = uiomove(win, bytelen, uio);
    715  1.45.4.1       chs 		ubc_release(win, 0);
    716  1.45.4.1       chs 
    717  1.45.4.1       chs 		/* XXX abstract this somehow */
    718  1.45.4.1       chs 		simple_lock(&vp->v_uvm.u_obj.vmobjlock);
    719  1.45.4.1       chs 		vp->v_uvm.u_obj.pgops->pgo_flush(&vp->v_uvm.u_obj,
    720  1.45.4.1       chs 						 trunc_page(oldoff),
    721  1.45.4.1       chs 						 oldoff + bytelen,
    722  1.45.4.1       chs 						 PGO_CLEANIT | PGO_SYNCIO);
    723  1.45.4.1       chs 		simple_unlock(&vp->v_uvm.u_obj.vmobjlock);
    724  1.45.4.1       chs 
    725  1.45.4.1       chs 		if (error) {
    726  1.45.4.1       chs 			/*
    727  1.45.4.1       chs 			 * XXX zero out any part of the current window
    728  1.45.4.1       chs 			 * that we might have failed to copyin.
    729  1.45.4.1       chs 			 */
    730  1.45.4.1       chs 			break;
    731  1.45.4.1       chs 		}
    732  1.45.4.1       chs 
    733  1.45.4.1       chs 		/* XXX set dirty region stuff */
    734  1.45.4.1       chs 		/* XXX set page NEEDCOMMIT flag */
    735  1.45.4.1       chs 		/* XXX handle IO_SYNC and NQNFSNONCACHE */
    736  1.45.4.1       chs 
    737  1.45.4.1       chs #else
    738       1.1       cgd 		lbn = uio->uio_offset / biosize;
    739       1.1       cgd 		on = uio->uio_offset & (biosize-1);
    740      1.11       cgd 		n = min((unsigned)(biosize - on), uio->uio_resid);
    741      1.12   mycroft 		bn = lbn * (biosize / DEV_BSIZE);
    742       1.1       cgd again:
    743      1.12   mycroft 		bp = nfs_getcacheblk(vp, bn, biosize, p);
    744      1.12   mycroft 		if (!bp)
    745      1.12   mycroft 			return (EINTR);
    746      1.12   mycroft 		if (bp->b_wcred == NOCRED) {
    747       1.1       cgd 			crhold(cred);
    748       1.1       cgd 			bp->b_wcred = cred;
    749       1.1       cgd 		}
    750      1.12   mycroft 		np->n_flag |= NMODIFIED;
    751      1.12   mycroft 		if (uio->uio_offset + n > np->n_size) {
    752      1.12   mycroft 			np->n_size = uio->uio_offset + n;
    753      1.41       mrg 			uvm_vnp_setsize(vp, np->n_size);
    754      1.12   mycroft 		}
    755      1.12   mycroft 
    756      1.12   mycroft 		/*
    757      1.12   mycroft 		 * If the new write will leave a contiguous dirty
    758      1.12   mycroft 		 * area, just update the b_dirtyoff and b_dirtyend,
    759      1.12   mycroft 		 * otherwise force a write rpc of the old dirty area.
    760      1.12   mycroft 		 */
    761      1.12   mycroft 		if (bp->b_dirtyend > 0 &&
    762      1.12   mycroft 		    (on > bp->b_dirtyend || (on + n) < bp->b_dirtyoff)) {
    763      1.12   mycroft 			bp->b_proc = p;
    764      1.12   mycroft 			if (VOP_BWRITE(bp) == EINTR)
    765      1.12   mycroft 				return (EINTR);
    766      1.12   mycroft 			goto again;
    767      1.12   mycroft 		}
    768      1.12   mycroft 
    769      1.12   mycroft 		/*
    770      1.12   mycroft 		 * Check for valid write lease and get one as required.
    771      1.12   mycroft 		 * In case getblk() and/or bwrite() delayed us.
    772      1.12   mycroft 		 */
    773      1.12   mycroft 		if ((nmp->nm_flag & NFSMNT_NQNFS) &&
    774      1.24      fvdl 		    NQNFS_CKINVALID(vp, np, ND_WRITE)) {
    775      1.12   mycroft 			do {
    776      1.24      fvdl 				error = nqnfs_getlease(vp, ND_WRITE, cred, p);
    777      1.12   mycroft 			} while (error == NQNFS_EXPIRED);
    778      1.12   mycroft 			if (error) {
    779      1.12   mycroft 				brelse(bp);
    780      1.12   mycroft 				return (error);
    781      1.12   mycroft 			}
    782      1.12   mycroft 			if (np->n_lrev != np->n_brev ||
    783      1.12   mycroft 			    (np->n_flag & NQNFSNONCACHE)) {
    784      1.12   mycroft 				brelse(bp);
    785      1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    786      1.23  christos 				if (error)
    787       1.1       cgd 					return (error);
    788      1.12   mycroft 				np->n_brev = np->n_lrev;
    789       1.1       cgd 				goto again;
    790       1.1       cgd 			}
    791      1.12   mycroft 		}
    792      1.23  christos 		error = uiomove((char *)bp->b_data + on, n, uio);
    793      1.23  christos 		if (error) {
    794      1.12   mycroft 			bp->b_flags |= B_ERROR;
    795      1.12   mycroft 			brelse(bp);
    796      1.12   mycroft 			return (error);
    797      1.12   mycroft 		}
    798      1.12   mycroft 		if (bp->b_dirtyend > 0) {
    799      1.12   mycroft 			bp->b_dirtyoff = min(on, bp->b_dirtyoff);
    800      1.12   mycroft 			bp->b_dirtyend = max((on + n), bp->b_dirtyend);
    801       1.1       cgd 		} else {
    802       1.1       cgd 			bp->b_dirtyoff = on;
    803      1.12   mycroft 			bp->b_dirtyend = on + n;
    804       1.1       cgd 		}
    805      1.12   mycroft 		if (bp->b_validend == 0 || bp->b_validend < bp->b_dirtyoff ||
    806      1.12   mycroft 		    bp->b_validoff > bp->b_dirtyend) {
    807      1.12   mycroft 			bp->b_validoff = bp->b_dirtyoff;
    808      1.12   mycroft 			bp->b_validend = bp->b_dirtyend;
    809      1.12   mycroft 		} else {
    810      1.12   mycroft 			bp->b_validoff = min(bp->b_validoff, bp->b_dirtyoff);
    811      1.12   mycroft 			bp->b_validend = max(bp->b_validend, bp->b_dirtyend);
    812       1.1       cgd 		}
    813      1.25      fvdl 
    814      1.25      fvdl 		/*
    815      1.25      fvdl 		 * Since this block is being modified, it must be written
    816      1.25      fvdl 		 * again and not just committed.
    817      1.25      fvdl 		 */
    818      1.25      fvdl 		bp->b_flags &= ~B_NEEDCOMMIT;
    819      1.25      fvdl 
    820      1.12   mycroft 		/*
    821      1.12   mycroft 		 * If the lease is non-cachable or IO_SYNC do bwrite().
    822      1.12   mycroft 		 */
    823      1.12   mycroft 		if ((np->n_flag & NQNFSNONCACHE) || (ioflag & IO_SYNC)) {
    824      1.12   mycroft 			bp->b_proc = p;
    825      1.24      fvdl 			error = VOP_BWRITE(bp);
    826      1.24      fvdl 			if (error)
    827      1.12   mycroft 				return (error);
    828      1.24      fvdl 			if (np->n_flag & NQNFSNONCACHE) {
    829      1.24      fvdl 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    830      1.24      fvdl 				if (error)
    831      1.24      fvdl 					return (error);
    832      1.24      fvdl 			}
    833      1.12   mycroft 		} else if ((n + on) == biosize &&
    834      1.12   mycroft 			(nmp->nm_flag & NFSMNT_NQNFS) == 0) {
    835       1.1       cgd 			bp->b_proc = (struct proc *)0;
    836      1.24      fvdl 			bp->b_flags |= B_ASYNC;
    837      1.24      fvdl 			(void)nfs_writebp(bp, 0);
    838      1.24      fvdl 		} else {
    839      1.12   mycroft 			bdwrite(bp);
    840      1.24      fvdl 		}
    841  1.45.4.1       chs #endif
    842      1.12   mycroft 	} while (uio->uio_resid > 0 && n > 0);
    843      1.12   mycroft 	return (0);
    844      1.12   mycroft }
    845      1.12   mycroft 
    846      1.12   mycroft /*
    847      1.12   mycroft  * Get an nfs cache block.
    848      1.12   mycroft  * Allocate a new one if the block isn't currently in the cache
    849      1.12   mycroft  * and return the block marked busy. If the calling process is
    850      1.12   mycroft  * interrupted by a signal for an interruptible mount point, return
    851      1.12   mycroft  * NULL.
    852      1.12   mycroft  */
    853      1.12   mycroft struct buf *
    854      1.12   mycroft nfs_getcacheblk(vp, bn, size, p)
    855      1.12   mycroft 	struct vnode *vp;
    856      1.12   mycroft 	daddr_t bn;
    857      1.12   mycroft 	int size;
    858      1.12   mycroft 	struct proc *p;
    859      1.12   mycroft {
    860      1.12   mycroft 	register struct buf *bp;
    861      1.12   mycroft 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    862      1.12   mycroft 
    863      1.12   mycroft 	if (nmp->nm_flag & NFSMNT_INT) {
    864      1.12   mycroft 		bp = getblk(vp, bn, size, PCATCH, 0);
    865      1.12   mycroft 		while (bp == (struct buf *)0) {
    866      1.12   mycroft 			if (nfs_sigintr(nmp, (struct nfsreq *)0, p))
    867      1.12   mycroft 				return ((struct buf *)0);
    868      1.12   mycroft 			bp = getblk(vp, bn, size, 0, 2 * hz);
    869      1.12   mycroft 		}
    870      1.12   mycroft 	} else
    871      1.12   mycroft 		bp = getblk(vp, bn, size, 0, 0);
    872      1.12   mycroft 	return (bp);
    873      1.12   mycroft }
    874      1.12   mycroft 
    875      1.12   mycroft /*
    876      1.12   mycroft  * Flush and invalidate all dirty buffers. If another process is already
    877      1.12   mycroft  * doing the flush, just wait for completion.
    878      1.12   mycroft  */
    879      1.23  christos int
    880      1.12   mycroft nfs_vinvalbuf(vp, flags, cred, p, intrflg)
    881      1.12   mycroft 	struct vnode *vp;
    882      1.12   mycroft 	int flags;
    883      1.12   mycroft 	struct ucred *cred;
    884      1.12   mycroft 	struct proc *p;
    885      1.12   mycroft 	int intrflg;
    886      1.12   mycroft {
    887      1.12   mycroft 	register struct nfsnode *np = VTONFS(vp);
    888      1.12   mycroft 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    889      1.12   mycroft 	int error = 0, slpflag, slptimeo;
    890      1.12   mycroft 
    891      1.12   mycroft 	if ((nmp->nm_flag & NFSMNT_INT) == 0)
    892      1.12   mycroft 		intrflg = 0;
    893      1.12   mycroft 	if (intrflg) {
    894      1.12   mycroft 		slpflag = PCATCH;
    895      1.12   mycroft 		slptimeo = 2 * hz;
    896      1.12   mycroft 	} else {
    897      1.12   mycroft 		slpflag = 0;
    898      1.12   mycroft 		slptimeo = 0;
    899      1.12   mycroft 	}
    900      1.12   mycroft 	/*
    901      1.12   mycroft 	 * First wait for any other process doing a flush to complete.
    902      1.12   mycroft 	 */
    903      1.12   mycroft 	while (np->n_flag & NFLUSHINPROG) {
    904      1.12   mycroft 		np->n_flag |= NFLUSHWANT;
    905      1.12   mycroft 		error = tsleep((caddr_t)&np->n_flag, PRIBIO + 2, "nfsvinval",
    906      1.12   mycroft 			slptimeo);
    907      1.12   mycroft 		if (error && intrflg && nfs_sigintr(nmp, (struct nfsreq *)0, p))
    908      1.12   mycroft 			return (EINTR);
    909      1.12   mycroft 	}
    910      1.12   mycroft 
    911      1.12   mycroft 	/*
    912      1.12   mycroft 	 * Now, flush as required.
    913      1.12   mycroft 	 */
    914      1.12   mycroft 	np->n_flag |= NFLUSHINPROG;
    915      1.12   mycroft 	error = vinvalbuf(vp, flags, cred, p, slpflag, 0);
    916      1.12   mycroft 	while (error) {
    917      1.12   mycroft 		if (intrflg && nfs_sigintr(nmp, (struct nfsreq *)0, p)) {
    918      1.12   mycroft 			np->n_flag &= ~NFLUSHINPROG;
    919      1.12   mycroft 			if (np->n_flag & NFLUSHWANT) {
    920      1.12   mycroft 				np->n_flag &= ~NFLUSHWANT;
    921      1.12   mycroft 				wakeup((caddr_t)&np->n_flag);
    922      1.12   mycroft 			}
    923      1.12   mycroft 			return (EINTR);
    924      1.12   mycroft 		}
    925      1.12   mycroft 		error = vinvalbuf(vp, flags, cred, p, 0, slptimeo);
    926      1.12   mycroft 	}
    927      1.12   mycroft 	np->n_flag &= ~(NMODIFIED | NFLUSHINPROG);
    928      1.12   mycroft 	if (np->n_flag & NFLUSHWANT) {
    929      1.12   mycroft 		np->n_flag &= ~NFLUSHWANT;
    930      1.12   mycroft 		wakeup((caddr_t)&np->n_flag);
    931      1.12   mycroft 	}
    932      1.12   mycroft 	return (0);
    933      1.12   mycroft }
    934      1.12   mycroft 
    935      1.12   mycroft /*
    936      1.12   mycroft  * Initiate asynchronous I/O. Return an error if no nfsiods are available.
    937      1.12   mycroft  * This is mainly to avoid queueing async I/O requests when the nfsiods
    938      1.12   mycroft  * are all hung on a dead server.
    939      1.12   mycroft  */
    940      1.23  christos int
    941      1.12   mycroft nfs_asyncio(bp, cred)
    942      1.12   mycroft 	register struct buf *bp;
    943      1.12   mycroft 	struct ucred *cred;
    944      1.12   mycroft {
    945      1.12   mycroft 	register int i;
    946      1.30   thorpej 	register struct nfsmount *nmp;
    947      1.30   thorpej 	int gotiod, slpflag = 0, slptimeo = 0, error;
    948      1.12   mycroft 
    949      1.12   mycroft 	if (nfs_numasync == 0)
    950      1.12   mycroft 		return (EIO);
    951      1.30   thorpej 
    952      1.30   thorpej 
    953      1.30   thorpej 	nmp = VFSTONFS(bp->b_vp->v_mount);
    954      1.30   thorpej again:
    955      1.30   thorpej 	if (nmp->nm_flag & NFSMNT_INT)
    956      1.30   thorpej 		slpflag = PCATCH;
    957      1.30   thorpej 	gotiod = FALSE;
    958      1.30   thorpej 
    959      1.30   thorpej 	/*
    960      1.30   thorpej 	 * Find a free iod to process this request.
    961      1.30   thorpej 	 */
    962      1.30   thorpej 
    963      1.12   mycroft 	for (i = 0; i < NFS_MAXASYNCDAEMON; i++)
    964      1.30   thorpej 		if (nfs_iodwant[i]) {
    965      1.30   thorpej 			/*
    966      1.30   thorpej 			 * Found one, so wake it up and tell it which
    967      1.30   thorpej 			 * mount to process.
    968      1.30   thorpej 			 */
    969      1.30   thorpej 			nfs_iodwant[i] = (struct proc *)0;
    970      1.30   thorpej 			nfs_iodmount[i] = nmp;
    971      1.30   thorpej 			nmp->nm_bufqiods++;
    972      1.30   thorpej 			wakeup((caddr_t)&nfs_iodwant[i]);
    973      1.30   thorpej 			gotiod = TRUE;
    974      1.31      fvdl 			break;
    975      1.30   thorpej 		}
    976      1.30   thorpej 	/*
    977      1.30   thorpej 	 * If none are free, we may already have an iod working on this mount
    978      1.30   thorpej 	 * point.  If so, it will process our request.
    979      1.30   thorpej 	 */
    980      1.30   thorpej 	if (!gotiod && nmp->nm_bufqiods > 0)
    981      1.30   thorpej 		gotiod = TRUE;
    982      1.30   thorpej 
    983      1.30   thorpej 	/*
    984      1.30   thorpej 	 * If we have an iod which can process the request, then queue
    985      1.30   thorpej 	 * the buffer.
    986      1.30   thorpej 	 */
    987      1.30   thorpej 	if (gotiod) {
    988      1.30   thorpej 		/*
    989      1.30   thorpej 		 * Ensure that the queue never grows too large.
    990      1.30   thorpej 		 */
    991      1.30   thorpej 		while (nmp->nm_bufqlen >= 2*nfs_numasync) {
    992      1.30   thorpej 			nmp->nm_bufqwant = TRUE;
    993      1.30   thorpej 			error = tsleep(&nmp->nm_bufq, slpflag | PRIBIO,
    994      1.30   thorpej 				"nfsaio", slptimeo);
    995      1.30   thorpej 			if (error) {
    996      1.30   thorpej 				if (nfs_sigintr(nmp, NULL, bp->b_proc))
    997      1.30   thorpej 					return (EINTR);
    998      1.30   thorpej 				if (slpflag == PCATCH) {
    999      1.30   thorpej 					slpflag = 0;
   1000      1.30   thorpej 					slptimeo = 2 * hz;
   1001      1.30   thorpej 				}
   1002      1.30   thorpej 			}
   1003      1.30   thorpej 			/*
   1004      1.30   thorpej 			 * We might have lost our iod while sleeping,
   1005      1.30   thorpej 			 * so check and loop if nescessary.
   1006      1.30   thorpej 			 */
   1007      1.30   thorpej 			if (nmp->nm_bufqiods == 0)
   1008      1.30   thorpej 				goto again;
   1009      1.30   thorpej 		}
   1010      1.30   thorpej 
   1011      1.12   mycroft 		if (bp->b_flags & B_READ) {
   1012      1.12   mycroft 			if (bp->b_rcred == NOCRED && cred != NOCRED) {
   1013      1.12   mycroft 				crhold(cred);
   1014      1.12   mycroft 				bp->b_rcred = cred;
   1015      1.12   mycroft 			}
   1016       1.1       cgd 		} else {
   1017      1.24      fvdl 			bp->b_flags |= B_WRITEINPROG;
   1018      1.12   mycroft 			if (bp->b_wcred == NOCRED && cred != NOCRED) {
   1019      1.12   mycroft 				crhold(cred);
   1020      1.12   mycroft 				bp->b_wcred = cred;
   1021      1.12   mycroft 			}
   1022      1.12   mycroft 		}
   1023      1.12   mycroft 
   1024      1.30   thorpej 		TAILQ_INSERT_TAIL(&nmp->nm_bufq, bp, b_freelist);
   1025      1.30   thorpej 		nmp->nm_bufqlen++;
   1026      1.12   mycroft 		return (0);
   1027      1.12   mycroft 	    }
   1028      1.24      fvdl 
   1029      1.24      fvdl 	/*
   1030      1.30   thorpej 	 * All the iods are busy on other mounts, so return EIO to
   1031      1.30   thorpej 	 * force the caller to process the i/o synchronously.
   1032      1.24      fvdl 	 */
   1033      1.30   thorpej 	return (EIO);
   1034      1.12   mycroft }
   1035      1.12   mycroft 
   1036      1.12   mycroft /*
   1037      1.12   mycroft  * Do an I/O operation to/from a cache block. This may be called
   1038      1.12   mycroft  * synchronously or from an nfsiod.
   1039      1.12   mycroft  */
   1040      1.12   mycroft int
   1041      1.12   mycroft nfs_doio(bp, cr, p)
   1042      1.12   mycroft 	register struct buf *bp;
   1043      1.23  christos 	struct ucred *cr;
   1044      1.12   mycroft 	struct proc *p;
   1045      1.12   mycroft {
   1046      1.12   mycroft 	register struct uio *uiop;
   1047      1.12   mycroft 	register struct vnode *vp;
   1048      1.12   mycroft 	struct nfsnode *np;
   1049      1.12   mycroft 	struct nfsmount *nmp;
   1050      1.24      fvdl 	int error = 0, diff, len, iomode, must_commit = 0;
   1051      1.12   mycroft 	struct uio uio;
   1052      1.12   mycroft 	struct iovec io;
   1053      1.12   mycroft 
   1054      1.12   mycroft 	vp = bp->b_vp;
   1055      1.12   mycroft 	np = VTONFS(vp);
   1056      1.12   mycroft 	nmp = VFSTONFS(vp->v_mount);
   1057      1.12   mycroft 	uiop = &uio;
   1058      1.12   mycroft 	uiop->uio_iov = &io;
   1059      1.12   mycroft 	uiop->uio_iovcnt = 1;
   1060      1.12   mycroft 	uiop->uio_segflg = UIO_SYSSPACE;
   1061      1.12   mycroft 	uiop->uio_procp = p;
   1062      1.12   mycroft 
   1063      1.12   mycroft 	/*
   1064      1.14        pk 	 * Historically, paging was done with physio, but no more...
   1065      1.12   mycroft 	 */
   1066      1.14        pk 	if (bp->b_flags & B_PHYS) {
   1067      1.14        pk 	    /*
   1068      1.14        pk 	     * ...though reading /dev/drum still gets us here.
   1069      1.14        pk 	     */
   1070      1.14        pk 	    io.iov_len = uiop->uio_resid = bp->b_bcount;
   1071      1.14        pk 	    /* mapping was done by vmapbuf() */
   1072      1.14        pk 	    io.iov_base = bp->b_data;
   1073      1.24      fvdl 	    uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE;
   1074      1.14        pk 	    if (bp->b_flags & B_READ) {
   1075      1.14        pk 		uiop->uio_rw = UIO_READ;
   1076      1.14        pk 		nfsstats.read_physios++;
   1077      1.14        pk 		error = nfs_readrpc(vp, uiop, cr);
   1078      1.14        pk 	    } else {
   1079      1.24      fvdl 		iomode = NFSV3WRITE_DATASYNC;
   1080      1.14        pk 		uiop->uio_rw = UIO_WRITE;
   1081      1.14        pk 		nfsstats.write_physios++;
   1082      1.24      fvdl 		error = nfs_writerpc(vp, uiop, cr, &iomode, &must_commit);
   1083      1.14        pk 	    }
   1084      1.14        pk 	    if (error) {
   1085      1.14        pk 		bp->b_flags |= B_ERROR;
   1086      1.14        pk 		bp->b_error = error;
   1087      1.14        pk 	    }
   1088      1.14        pk 	} else if (bp->b_flags & B_READ) {
   1089      1.12   mycroft 	    io.iov_len = uiop->uio_resid = bp->b_bcount;
   1090      1.12   mycroft 	    io.iov_base = bp->b_data;
   1091      1.12   mycroft 	    uiop->uio_rw = UIO_READ;
   1092      1.12   mycroft 	    switch (vp->v_type) {
   1093      1.12   mycroft 	    case VREG:
   1094      1.24      fvdl 		uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE;
   1095      1.12   mycroft 		nfsstats.read_bios++;
   1096      1.12   mycroft 		error = nfs_readrpc(vp, uiop, cr);
   1097      1.12   mycroft 		if (!error) {
   1098      1.12   mycroft 		    bp->b_validoff = 0;
   1099      1.12   mycroft 		    if (uiop->uio_resid) {
   1100      1.12   mycroft 			/*
   1101      1.12   mycroft 			 * If len > 0, there is a hole in the file and
   1102      1.12   mycroft 			 * no writes after the hole have been pushed to
   1103      1.12   mycroft 			 * the server yet.
   1104      1.12   mycroft 			 * Just zero fill the rest of the valid area.
   1105      1.12   mycroft 			 */
   1106      1.12   mycroft 			diff = bp->b_bcount - uiop->uio_resid;
   1107      1.24      fvdl 			len = np->n_size - (((u_quad_t)bp->b_blkno) * DEV_BSIZE
   1108      1.12   mycroft 				+ diff);
   1109      1.12   mycroft 			if (len > 0) {
   1110      1.12   mycroft 			    len = min(len, uiop->uio_resid);
   1111      1.44     perry 			    memset((char *)bp->b_data + diff, 0, len);
   1112      1.12   mycroft 			    bp->b_validend = diff + len;
   1113      1.12   mycroft 			} else
   1114      1.12   mycroft 			    bp->b_validend = diff;
   1115      1.12   mycroft 		    } else
   1116      1.12   mycroft 			bp->b_validend = bp->b_bcount;
   1117      1.12   mycroft 		}
   1118      1.12   mycroft 		if (p && (vp->v_flag & VTEXT) &&
   1119      1.12   mycroft 			(((nmp->nm_flag & NFSMNT_NQNFS) &&
   1120      1.24      fvdl 			  NQNFS_CKINVALID(vp, np, ND_READ) &&
   1121      1.12   mycroft 			  np->n_lrev != np->n_brev) ||
   1122      1.12   mycroft 			 (!(nmp->nm_flag & NFSMNT_NQNFS) &&
   1123      1.35      fvdl 			  np->n_mtime != np->n_vattr->va_mtime.tv_sec))) {
   1124      1.12   mycroft 			uprintf("Process killed due to text file modification\n");
   1125      1.12   mycroft 			psignal(p, SIGKILL);
   1126      1.13   mycroft 			p->p_holdcnt++;
   1127      1.12   mycroft 		}
   1128      1.12   mycroft 		break;
   1129      1.12   mycroft 	    case VLNK:
   1130      1.24      fvdl 		uiop->uio_offset = (off_t)0;
   1131      1.12   mycroft 		nfsstats.readlink_bios++;
   1132      1.12   mycroft 		error = nfs_readlinkrpc(vp, uiop, cr);
   1133      1.12   mycroft 		break;
   1134      1.12   mycroft 	    case VDIR:
   1135      1.12   mycroft 		nfsstats.readdir_bios++;
   1136      1.34      fvdl 		uiop->uio_offset = bp->b_dcookie;
   1137      1.24      fvdl 		if (nmp->nm_flag & NFSMNT_RDIRPLUS) {
   1138      1.24      fvdl 			error = nfs_readdirplusrpc(vp, uiop, cr);
   1139      1.24      fvdl 			if (error == NFSERR_NOTSUPP)
   1140      1.24      fvdl 				nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
   1141      1.24      fvdl 		}
   1142      1.24      fvdl 		if ((nmp->nm_flag & NFSMNT_RDIRPLUS) == 0)
   1143      1.24      fvdl 			error = nfs_readdirrpc(vp, uiop, cr);
   1144      1.34      fvdl 		if (!error) {
   1145      1.34      fvdl 			bp->b_dcookie = uiop->uio_offset;
   1146      1.34      fvdl 			bp->b_validoff = 0;
   1147      1.34      fvdl 			bp->b_validend = bp->b_bcount - uiop->uio_resid;
   1148      1.34      fvdl 		}
   1149      1.24      fvdl 		break;
   1150      1.24      fvdl 	    default:
   1151      1.29  christos 		printf("nfs_doio:  type %x unexpected\n",vp->v_type);
   1152      1.12   mycroft 		break;
   1153      1.12   mycroft 	    };
   1154      1.12   mycroft 	    if (error) {
   1155      1.12   mycroft 		bp->b_flags |= B_ERROR;
   1156      1.12   mycroft 		bp->b_error = error;
   1157      1.12   mycroft 	    }
   1158      1.12   mycroft 	} else {
   1159      1.12   mycroft 	    io.iov_len = uiop->uio_resid = bp->b_dirtyend
   1160      1.12   mycroft 		- bp->b_dirtyoff;
   1161      1.24      fvdl 	    uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE
   1162      1.12   mycroft 		+ bp->b_dirtyoff;
   1163      1.12   mycroft 	    io.iov_base = (char *)bp->b_data + bp->b_dirtyoff;
   1164      1.12   mycroft 	    uiop->uio_rw = UIO_WRITE;
   1165      1.12   mycroft 	    nfsstats.write_bios++;
   1166      1.24      fvdl 	    if ((bp->b_flags & (B_ASYNC | B_NEEDCOMMIT | B_NOCACHE)) == B_ASYNC)
   1167      1.24      fvdl 		iomode = NFSV3WRITE_UNSTABLE;
   1168      1.24      fvdl 	    else
   1169      1.24      fvdl 		iomode = NFSV3WRITE_FILESYNC;
   1170      1.24      fvdl 	    bp->b_flags |= B_WRITEINPROG;
   1171      1.24      fvdl #ifdef fvdl_debug
   1172      1.29  christos 	    printf("nfs_doio(%x): bp %x doff %d dend %d\n",
   1173      1.24      fvdl 		vp, bp, bp->b_dirtyoff, bp->b_dirtyend);
   1174      1.24      fvdl #endif
   1175      1.24      fvdl 	    error = nfs_writerpc(vp, uiop, cr, &iomode, &must_commit);
   1176      1.24      fvdl 	    if (!error && iomode == NFSV3WRITE_UNSTABLE)
   1177      1.24      fvdl 		bp->b_flags |= B_NEEDCOMMIT;
   1178      1.12   mycroft 	    else
   1179      1.24      fvdl 		bp->b_flags &= ~B_NEEDCOMMIT;
   1180      1.24      fvdl 	    bp->b_flags &= ~B_WRITEINPROG;
   1181      1.12   mycroft 
   1182      1.12   mycroft 	    /*
   1183      1.12   mycroft 	     * For an interrupted write, the buffer is still valid and the
   1184      1.12   mycroft 	     * write hasn't been pushed to the server yet, so we can't set
   1185      1.12   mycroft 	     * B_ERROR and report the interruption by setting B_EINTR. For
   1186      1.12   mycroft 	     * the B_ASYNC case, B_EINTR is not relevant, so the rpc attempt
   1187      1.12   mycroft 	     * is essentially a noop.
   1188      1.24      fvdl 	     * For the case of a V3 write rpc not being committed to stable
   1189      1.24      fvdl 	     * storage, the block is still dirty and requires either a commit
   1190      1.24      fvdl 	     * rpc or another write rpc with iomode == NFSV3WRITE_FILESYNC
   1191      1.24      fvdl 	     * before the block is reused. This is indicated by setting the
   1192      1.24      fvdl 	     * B_DELWRI and B_NEEDCOMMIT flags.
   1193      1.12   mycroft 	     */
   1194      1.24      fvdl 	    if (error == EINTR || (!error && (bp->b_flags & B_NEEDCOMMIT))) {
   1195      1.12   mycroft 		bp->b_flags |= B_DELWRI;
   1196      1.12   mycroft 
   1197      1.12   mycroft 		/*
   1198      1.12   mycroft 		 * Since for the B_ASYNC case, nfs_bwrite() has reassigned the
   1199      1.12   mycroft 		 * buffer to the clean list, we have to reassign it back to the
   1200      1.12   mycroft 		 * dirty one. Ugh.
   1201      1.12   mycroft 		 */
   1202      1.12   mycroft 		if (bp->b_flags & B_ASYNC)
   1203      1.12   mycroft 		    reassignbuf(bp, vp);
   1204      1.27      fvdl 		else if (error)
   1205      1.12   mycroft 		    bp->b_flags |= B_EINTR;
   1206      1.12   mycroft 	    } else {
   1207      1.12   mycroft 		if (error) {
   1208      1.12   mycroft 		    bp->b_flags |= B_ERROR;
   1209      1.12   mycroft 		    bp->b_error = np->n_error = error;
   1210      1.12   mycroft 		    np->n_flag |= NWRITEERR;
   1211       1.1       cgd 		}
   1212      1.12   mycroft 		bp->b_dirtyoff = bp->b_dirtyend = 0;
   1213      1.12   mycroft 	    }
   1214       1.1       cgd 	}
   1215      1.12   mycroft 	bp->b_resid = uiop->uio_resid;
   1216      1.24      fvdl 	if (must_commit)
   1217      1.24      fvdl 		nfs_clearcommit(vp->v_mount);
   1218      1.12   mycroft 	biodone(bp);
   1219       1.1       cgd 	return (error);
   1220  1.45.4.1       chs }
   1221  1.45.4.1       chs 
   1222  1.45.4.1       chs /*
   1223  1.45.4.1       chs  * Vnode op for VM getpages.
   1224  1.45.4.1       chs  */
   1225  1.45.4.1       chs int
   1226  1.45.4.1       chs nfs_getpages(v)
   1227  1.45.4.1       chs 	void *v;
   1228  1.45.4.1       chs {
   1229  1.45.4.1       chs 	struct vop_getpages_args /* {
   1230  1.45.4.1       chs 		struct vnode *a_vp;
   1231  1.45.4.1       chs 		vaddr_t a_offset;
   1232  1.45.4.1       chs 		vm_page_t *a_m;
   1233  1.45.4.1       chs 		int *a_count;
   1234  1.45.4.1       chs 		int a_centeridx;
   1235  1.45.4.1       chs 		vm_prot_t a_access_type;
   1236  1.45.4.1       chs 		int a_advice;
   1237  1.45.4.1       chs 		int a_flags;
   1238  1.45.4.1       chs 	} */ *ap = v;
   1239  1.45.4.1       chs 	int i, error, npages;
   1240  1.45.4.1       chs 	struct uio uio;
   1241  1.45.4.1       chs 	struct iovec iov;
   1242  1.45.4.1       chs 	vaddr_t kva;
   1243  1.45.4.1       chs 	struct buf tmpbuf, *bp;
   1244  1.45.4.1       chs 	struct vnode *vp = ap->a_vp;
   1245  1.45.4.1       chs 	struct uvm_object *uobj = &vp->v_uvm.u_obj;
   1246  1.45.4.1       chs 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
   1247  1.45.4.1       chs 	vaddr_t offset;
   1248  1.45.4.1       chs 	vm_page_t pgs[2]; /* XXX tmp hack: 4k page 8k rsize */
   1249  1.45.4.1       chs 	int cidx, vidx;
   1250  1.45.4.1       chs 
   1251  1.45.4.1       chs 	UVMHIST_FUNC("nfs_getpages"); UVMHIST_CALLED(ubchist);
   1252  1.45.4.1       chs 	UVMHIST_LOG(ubchist, "vp %p off 0x%x", vp, (int)ap->a_offset, 0,0);
   1253  1.45.4.1       chs 
   1254  1.45.4.1       chs #ifdef DIAGNOSTIC
   1255  1.45.4.1       chs 	if (ap->a_centeridx < 0 || ap->a_centeridx >= *ap->a_count) {
   1256  1.45.4.1       chs 		panic("nfs_getpages: centeridx %d out of range",
   1257  1.45.4.1       chs 		      ap->a_centeridx);
   1258  1.45.4.1       chs 	}
   1259  1.45.4.1       chs #endif
   1260  1.45.4.1       chs 
   1261  1.45.4.1       chs 	if (ap->a_flags & PGO_LOCKED) {
   1262  1.45.4.1       chs 		uvn_findpages(uobj, ap->a_offset, ap->a_count, ap->a_m,
   1263  1.45.4.1       chs 			      UFP_NOWAIT|UFP_NOALLOC);
   1264  1.45.4.1       chs 
   1265  1.45.4.1       chs 		/* XXX PGO_ALLPAGES? */
   1266  1.45.4.1       chs 		return VM_PAGER_OK;
   1267  1.45.4.1       chs 	}
   1268  1.45.4.1       chs 
   1269  1.45.4.1       chs 	/* vnode is VOP_LOCKed, uobj is locked */
   1270  1.45.4.1       chs 
   1271  1.45.4.1       chs 	/*
   1272  1.45.4.1       chs 	 * first see if center page already exists.
   1273  1.45.4.1       chs 	 * if it does, return the page.
   1274  1.45.4.1       chs 	 * XXX
   1275  1.45.4.1       chs 	 * this is needed because ubc_fault() doesn't
   1276  1.45.4.1       chs 	 * do a PGO_LOCKED call first.
   1277  1.45.4.1       chs 	 * XXX change ubc_fault() to do the PGO_LOCKED call.
   1278  1.45.4.1       chs 	 */
   1279  1.45.4.1       chs 
   1280  1.45.4.1       chs 	npages = 1;
   1281  1.45.4.1       chs 	uvn_findpages(uobj, ap->a_offset + (ap->a_centeridx << PAGE_SHIFT),
   1282  1.45.4.1       chs 		      &npages, &ap->a_m[ap->a_centeridx], UFP_NOALLOC);
   1283  1.45.4.1       chs 	if (npages == 1) {
   1284  1.45.4.1       chs 		simple_unlock(&uobj->vmobjlock);
   1285  1.45.4.1       chs 		return VM_PAGER_OK;
   1286  1.45.4.1       chs 	}
   1287  1.45.4.1       chs 
   1288  1.45.4.1       chs 	npages = nmp->nm_rsize >> PAGE_SHIFT;
   1289  1.45.4.1       chs 	offset = ap->a_offset & ~(nmp->nm_rsize - 1);
   1290  1.45.4.1       chs 	cidx = ap->a_centeridx + ((ap->a_offset - offset) >> PAGE_SHIFT);
   1291  1.45.4.1       chs 	UVMHIST_LOG(ubchist, "npages %d offset 0x%lx cidx %d",
   1292  1.45.4.1       chs 		    npages, offset, cidx,0);
   1293  1.45.4.1       chs 	memset(pgs, 0, sizeof(pgs));
   1294  1.45.4.1       chs 	uvn_findpages(uobj, offset, &npages, pgs, UFP_NOCACHE);
   1295  1.45.4.1       chs 	vidx = (npages == 2) ? 0 : cidx;
   1296  1.45.4.1       chs 
   1297  1.45.4.1       chs 	simple_unlock(&uobj->vmobjlock);
   1298  1.45.4.1       chs 
   1299  1.45.4.1       chs #ifdef DIAGNOSTIC
   1300  1.45.4.1       chs 	if (npages == 0) {
   1301  1.45.4.1       chs 		panic("nfs_getpages: nothing to read, vp %p", vp);
   1302  1.45.4.1       chs 	}
   1303  1.45.4.1       chs #endif
   1304  1.45.4.1       chs 
   1305  1.45.4.1       chs 	/*
   1306  1.45.4.1       chs 	 * if the entire page is past the end of the file,
   1307  1.45.4.1       chs 	 * just zero it and return.
   1308  1.45.4.1       chs 	 */
   1309  1.45.4.1       chs 	if (offset >= vp->v_uvm.u_size) {
   1310  1.45.4.1       chs 		UVMHIST_LOG(ubchist, "off 0x%x past EOF 0x%x, zeroed page",
   1311  1.45.4.1       chs 			    offset, vp->v_uvm.u_size,0,0);
   1312  1.45.4.1       chs 
   1313  1.45.4.1       chs 		while (vidx < npages) {
   1314  1.45.4.1       chs 			uvm_pagezero(pgs[vidx++]);
   1315  1.45.4.1       chs 		}
   1316  1.45.4.1       chs 		return VM_PAGER_OK;
   1317  1.45.4.1       chs 	}
   1318  1.45.4.1       chs 
   1319  1.45.4.1       chs 	/*
   1320  1.45.4.1       chs 	 * read at last part of the page.
   1321  1.45.4.1       chs 	 */
   1322  1.45.4.1       chs 
   1323  1.45.4.1       chs 	kva = uvm_pagermapin(&pgs[vidx], npages, NULL, M_WAITOK);
   1324  1.45.4.1       chs 	if (kva == 0) {
   1325  1.45.4.1       chs 		return VM_PAGER_AGAIN;
   1326  1.45.4.1       chs 	}
   1327  1.45.4.1       chs 
   1328  1.45.4.1       chs 	uio.uio_iov = &iov;
   1329  1.45.4.1       chs 	iov.iov_len = 0;
   1330  1.45.4.1       chs 
   1331  1.45.4.1       chs 	bp = &tmpbuf;
   1332  1.45.4.1       chs 	bzero(bp, sizeof *bp);
   1333  1.45.4.1       chs 
   1334  1.45.4.1       chs 	bp->b_bufsize = npages << PAGE_SHIFT;
   1335  1.45.4.1       chs 	bp->b_bcount = min(bp->b_bufsize, vp->v_uvm.u_size -
   1336  1.45.4.1       chs 			   (offset + (vidx << PAGE_SHIFT)));
   1337  1.45.4.1       chs 	bp->b_data = (void *)kva;
   1338  1.45.4.1       chs 	bp->b_blkno = bp->b_lblkno =
   1339  1.45.4.1       chs 		(offset + (vidx << PAGE_SHIFT)) >> DEV_BSHIFT;
   1340  1.45.4.1       chs 	bp->b_vp = vp;
   1341  1.45.4.1       chs 	bp->b_rcred = 0;
   1342  1.45.4.1       chs 	bp->b_flags = B_BUSY|B_READ;
   1343  1.45.4.1       chs 
   1344  1.45.4.1       chs 	UVMHIST_LOG(ubchist, "reading blkno 0x%x bcount 0x%x",
   1345  1.45.4.1       chs 		    bp->b_blkno, bp->b_bcount,0,0);
   1346  1.45.4.1       chs 	error = nfs_doio(bp, curproc->p_ucred, curproc);
   1347  1.45.4.1       chs 
   1348  1.45.4.1       chs 	uvm_pagermapout(kva, npages);
   1349  1.45.4.1       chs 
   1350  1.45.4.1       chs 	simple_lock(&uobj->vmobjlock);
   1351  1.45.4.1       chs 	uvm_lock_pageq();
   1352  1.45.4.1       chs 	if (error) {
   1353  1.45.4.1       chs 		for (i = vidx; i < vidx + npages; i++) {
   1354  1.45.4.1       chs 			if (pgs[i]->flags & PG_WANTED) {
   1355  1.45.4.1       chs 				wakeup(pgs[i]);
   1356  1.45.4.1       chs 			}
   1357  1.45.4.1       chs 			pgs[i]->flags &= ~(PG_WANTED|PG_BUSY);
   1358  1.45.4.1       chs 			UVM_PAGE_OWN(pgs[i], NULL);
   1359  1.45.4.1       chs 			uvm_pagefree(pgs[i]);
   1360  1.45.4.1       chs 		}
   1361  1.45.4.1       chs 	} else {
   1362  1.45.4.1       chs 		for (i = vidx; i < vidx + npages; i++) {
   1363  1.45.4.1       chs 			if (i != cidx) {
   1364  1.45.4.1       chs 				if (pgs[i]->flags & PG_WANTED) {
   1365  1.45.4.1       chs 					wakeup(pgs[i]);
   1366  1.45.4.1       chs 				}
   1367  1.45.4.1       chs 				pgs[i]->flags &= ~(PG_WANTED|PG_BUSY);
   1368  1.45.4.1       chs 				UVM_PAGE_OWN(pgs[i], NULL);
   1369  1.45.4.1       chs 
   1370  1.45.4.1       chs 			}
   1371  1.45.4.1       chs 			pgs[i]->flags &= ~PG_FAKE;
   1372  1.45.4.1       chs 			pmap_clear_modify(PMAP_PGARG(pgs[i]));
   1373  1.45.4.1       chs 			uvm_pageactivate(pgs[i]);
   1374  1.45.4.1       chs 		}
   1375  1.45.4.1       chs 	}
   1376  1.45.4.1       chs 	uvm_unlock_pageq();
   1377  1.45.4.1       chs 	simple_unlock(&uobj->vmobjlock);
   1378  1.45.4.1       chs 
   1379  1.45.4.1       chs 	ap->a_m[ap->a_centeridx] = pgs[cidx];
   1380  1.45.4.1       chs 	UVMHIST_LOG(ubchist, "a_m[%d] = pgs[%d] = %p", ap->a_centeridx,
   1381  1.45.4.1       chs 		    cidx, pgs[cidx],0);
   1382  1.45.4.1       chs #ifdef DIAGNOSTIC
   1383  1.45.4.1       chs 	if (ap->a_m[ap->a_centeridx] == NULL) {
   1384  1.45.4.1       chs 		panic("nfs_getpages: returning null page?");
   1385  1.45.4.1       chs 	}
   1386  1.45.4.1       chs #endif
   1387  1.45.4.1       chs 	return error ? VM_PAGER_ERROR : VM_PAGER_OK;
   1388  1.45.4.1       chs }
   1389  1.45.4.1       chs 
   1390  1.45.4.1       chs /*
   1391  1.45.4.1       chs  * Vnode op for VM putpages.
   1392  1.45.4.1       chs  */
   1393  1.45.4.1       chs int
   1394  1.45.4.1       chs nfs_putpages(v)
   1395  1.45.4.1       chs 	void *v;
   1396  1.45.4.1       chs {
   1397  1.45.4.1       chs 	struct vop_putpages_args /* {
   1398  1.45.4.1       chs 		struct vnode *a_vp;
   1399  1.45.4.1       chs 		vm_page_t *a_m;
   1400  1.45.4.1       chs 		int a_count;
   1401  1.45.4.1       chs 		int a_sync;
   1402  1.45.4.1       chs 		int *a_rtvals;
   1403  1.45.4.1       chs 	} */ *ap = v;
   1404  1.45.4.1       chs 
   1405  1.45.4.1       chs 	struct vnode *vp = ap->a_vp;
   1406  1.45.4.1       chs 	int mode, commit;
   1407  1.45.4.1       chs 	int error;
   1408  1.45.4.1       chs 	struct uio uio;
   1409  1.45.4.1       chs 	struct iovec iov;
   1410  1.45.4.1       chs 	vm_page_t m;
   1411  1.45.4.1       chs 	vaddr_t kva;
   1412  1.45.4.1       chs 	int iosize;
   1413  1.45.4.1       chs 
   1414  1.45.4.1       chs 	/* XXX for now, just do one page at a time */
   1415  1.45.4.1       chs 	if (ap->a_count != 1) {
   1416  1.45.4.1       chs 		panic("nfs_putpages: one at a time, please\n");
   1417  1.45.4.1       chs 	}
   1418  1.45.4.1       chs 
   1419  1.45.4.1       chs 	m = ap->a_m[0];
   1420  1.45.4.1       chs 	kva = uvm_pagermapin(ap->a_m, ap->a_count, NULL, M_WAITOK);
   1421  1.45.4.1       chs 	if (kva == 0) {
   1422  1.45.4.1       chs 		return VM_PAGER_AGAIN;
   1423  1.45.4.1       chs 	}
   1424  1.45.4.1       chs 
   1425  1.45.4.1       chs 	iosize = min(PAGE_SIZE, vp->v_uvm.u_size - m->offset);
   1426  1.45.4.1       chs 
   1427  1.45.4.1       chs 	iov.iov_base = (caddr_t)kva;
   1428  1.45.4.1       chs 	iov.iov_len = iosize;
   1429  1.45.4.1       chs 	uio.uio_iov = &iov;
   1430  1.45.4.1       chs 	uio.uio_iovcnt = 1;
   1431  1.45.4.1       chs 	uio.uio_offset = m->offset;
   1432  1.45.4.1       chs 	uio.uio_resid = iosize;
   1433  1.45.4.1       chs 	uio.uio_segflg = UIO_SYSSPACE;
   1434  1.45.4.1       chs 	uio.uio_rw = UIO_WRITE;
   1435  1.45.4.1       chs 	uio.uio_procp = NULL;
   1436  1.45.4.1       chs 
   1437  1.45.4.1       chs 	/* XXX */
   1438  1.45.4.1       chs 	mode = NFSV3WRITE_FILESYNC;
   1439  1.45.4.1       chs 
   1440  1.45.4.1       chs 	error = nfs_writerpc(vp, &uio, curproc->p_ucred, &mode, &commit);
   1441  1.45.4.1       chs 
   1442  1.45.4.1       chs 	uvm_pagermapout(kva, ap->a_count);
   1443  1.45.4.1       chs 
   1444  1.45.4.1       chs 	return error ? VM_PAGER_ERROR : VM_PAGER_OK;
   1445       1.1       cgd }
   1446