Home | History | Annotate | Line # | Download | only in nfs
nfs_bio.c revision 1.50
      1  1.50       mrg /*	$NetBSD: nfs_bio.c,v 1.50 2000/06/27 17:52:28 mrg 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.1       cgd 
     54  1.41       mrg #include <uvm/uvm_extern.h>
     55  1.41       mrg 
     56  1.12   mycroft #include <nfs/rpcv2.h>
     57  1.24      fvdl #include <nfs/nfsproto.h>
     58   1.8   mycroft #include <nfs/nfs.h>
     59   1.8   mycroft #include <nfs/nfsmount.h>
     60  1.12   mycroft #include <nfs/nqnfs.h>
     61  1.24      fvdl #include <nfs/nfsnode.h>
     62  1.23  christos #include <nfs/nfs_var.h>
     63   1.1       cgd 
     64  1.12   mycroft extern int nfs_numasync;
     65  1.24      fvdl extern struct nfsstats nfsstats;
     66   1.1       cgd 
     67   1.1       cgd /*
     68   1.1       cgd  * Vnode op for read using bio
     69   1.1       cgd  * Any similarity to readip() is purely coincidental
     70   1.1       cgd  */
     71  1.23  christos int
     72  1.34      fvdl nfs_bioread(vp, uio, ioflag, cred, cflag)
     73  1.48  augustss 	struct vnode *vp;
     74  1.48  augustss 	struct uio *uio;
     75  1.34      fvdl 	int ioflag, cflag;
     76   1.1       cgd 	struct ucred *cred;
     77   1.1       cgd {
     78  1.48  augustss 	struct nfsnode *np = VTONFS(vp);
     79  1.48  augustss 	int biosize, diff;
     80  1.23  christos 	struct buf *bp = NULL, *rabp;
     81   1.1       cgd 	struct vattr vattr;
     82  1.12   mycroft 	struct proc *p;
     83  1.24      fvdl 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
     84  1.35      fvdl 	struct nfsdircache *ndp = NULL, *nndp = NULL;
     85  1.12   mycroft 	daddr_t lbn, bn, rabn;
     86  1.34      fvdl 	caddr_t baddr, ep, edp;
     87  1.34      fvdl 	int got_buf = 0, nra, error = 0, n = 0, on = 0, not_readin, en, enn;
     88  1.34      fvdl 	int enough = 0;
     89  1.34      fvdl 	struct dirent *dp, *pdp;
     90  1.43      fvdl 	off_t curoff = 0, offdiff;
     91   1.1       cgd 
     92   1.1       cgd #ifdef DIAGNOSTIC
     93   1.1       cgd 	if (uio->uio_rw != UIO_READ)
     94   1.1       cgd 		panic("nfs_read mode");
     95   1.1       cgd #endif
     96   1.1       cgd 	if (uio->uio_resid == 0)
     97   1.1       cgd 		return (0);
     98  1.34      fvdl 	if (vp->v_type != VDIR && uio->uio_offset < 0)
     99   1.1       cgd 		return (EINVAL);
    100  1.24      fvdl 	p = uio->uio_procp;
    101  1.34      fvdl 	if ((nmp->nm_flag & NFSMNT_NFSV3) &&
    102  1.34      fvdl 	    !(nmp->nm_iflag & NFSMNT_GOTFSINFO))
    103  1.24      fvdl 		(void)nfs_fsinfo(nmp, vp, cred, p);
    104  1.34      fvdl 	if (vp->v_type != VDIR &&
    105  1.34      fvdl 	    (uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
    106  1.33      fvdl 		return (EFBIG);
    107  1.12   mycroft 	biosize = nmp->nm_rsize;
    108   1.1       cgd 	/*
    109  1.12   mycroft 	 * For nfs, cache consistency can only be maintained approximately.
    110  1.12   mycroft 	 * Although RFC1094 does not specify the criteria, the following is
    111  1.12   mycroft 	 * believed to be compatible with the reference port.
    112  1.12   mycroft 	 * For nqnfs, full cache consistency is maintained within the loop.
    113  1.12   mycroft 	 * For nfs:
    114   1.1       cgd 	 * If the file's modify time on the server has changed since the
    115   1.1       cgd 	 * last read rpc or you have written to the file,
    116   1.1       cgd 	 * you may have lost data cache consistency with the
    117   1.1       cgd 	 * server, so flush all of the file's data out of the cache.
    118   1.1       cgd 	 * Then force a getattr rpc to ensure that you have up to date
    119   1.1       cgd 	 * attributes.
    120   1.1       cgd 	 * NB: This implies that cache data can be read when up to
    121   1.1       cgd 	 * NFS_ATTRTIMEO seconds out of date. If you find that you need current
    122   1.1       cgd 	 * attributes this could be forced by setting n_attrstamp to 0 before
    123  1.12   mycroft 	 * the VOP_GETATTR() call.
    124   1.1       cgd 	 */
    125  1.12   mycroft 	if ((nmp->nm_flag & NFSMNT_NQNFS) == 0 && vp->v_type != VLNK) {
    126   1.1       cgd 		if (np->n_flag & NMODIFIED) {
    127  1.24      fvdl 			if (vp->v_type != VREG) {
    128  1.24      fvdl 				if (vp->v_type != VDIR)
    129  1.24      fvdl 					panic("nfs: bioread, not dir");
    130  1.35      fvdl 				nfs_invaldircache(vp, 0);
    131  1.35      fvdl 				np->n_direofoffset = 0;
    132  1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    133  1.23  christos 				if (error)
    134  1.12   mycroft 					return (error);
    135  1.12   mycroft 			}
    136   1.1       cgd 			np->n_attrstamp = 0;
    137  1.23  christos 			error = VOP_GETATTR(vp, &vattr, cred, p);
    138  1.23  christos 			if (error)
    139   1.1       cgd 				return (error);
    140  1.22       jtc 			np->n_mtime = vattr.va_mtime.tv_sec;
    141   1.1       cgd 		} else {
    142  1.24      fvdl 			error = VOP_GETATTR(vp, &vattr, cred, p);
    143  1.24      fvdl 			if (error)
    144   1.1       cgd 				return (error);
    145  1.22       jtc 			if (np->n_mtime != vattr.va_mtime.tv_sec) {
    146  1.35      fvdl 				if (vp->v_type == VDIR) {
    147  1.35      fvdl 					nfs_invaldircache(vp, 0);
    148  1.35      fvdl 					np->n_direofoffset = 0;
    149  1.35      fvdl 				}
    150  1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    151  1.23  christos 				if (error)
    152  1.12   mycroft 					return (error);
    153  1.22       jtc 				np->n_mtime = vattr.va_mtime.tv_sec;
    154   1.1       cgd 			}
    155   1.1       cgd 		}
    156   1.1       cgd 	}
    157   1.1       cgd 	do {
    158  1.12   mycroft 
    159  1.12   mycroft 	    /*
    160  1.12   mycroft 	     * Get a valid lease. If cached data is stale, flush it.
    161  1.12   mycroft 	     */
    162  1.12   mycroft 	    if (nmp->nm_flag & NFSMNT_NQNFS) {
    163  1.24      fvdl 		if (NQNFS_CKINVALID(vp, np, ND_READ)) {
    164  1.12   mycroft 		    do {
    165  1.24      fvdl 			error = nqnfs_getlease(vp, ND_READ, cred, p);
    166  1.12   mycroft 		    } while (error == NQNFS_EXPIRED);
    167  1.12   mycroft 		    if (error)
    168  1.12   mycroft 			return (error);
    169  1.12   mycroft 		    if (np->n_lrev != np->n_brev ||
    170  1.12   mycroft 			(np->n_flag & NQNFSNONCACHE) ||
    171  1.12   mycroft 			((np->n_flag & NMODIFIED) && vp->v_type == VDIR)) {
    172  1.35      fvdl 			if (vp->v_type == VDIR) {
    173  1.35      fvdl 				nfs_invaldircache(vp, 0);
    174  1.35      fvdl 				np->n_direofoffset = 0;
    175  1.35      fvdl 			}
    176  1.23  christos 			error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    177  1.23  christos 			if (error)
    178  1.12   mycroft 			    return (error);
    179  1.12   mycroft 			np->n_brev = np->n_lrev;
    180  1.12   mycroft 		    }
    181  1.12   mycroft 		} else if (vp->v_type == VDIR && (np->n_flag & NMODIFIED)) {
    182  1.35      fvdl 		    nfs_invaldircache(vp, 0);
    183  1.23  christos 		    error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    184  1.35      fvdl 		    np->n_direofoffset = 0;
    185  1.23  christos 		    if (error)
    186  1.12   mycroft 			return (error);
    187  1.12   mycroft 		}
    188  1.12   mycroft 	    }
    189  1.26      fvdl 	    /*
    190  1.26      fvdl 	     * Don't cache symlinks.
    191  1.26      fvdl 	     */
    192  1.26      fvdl 	    if (np->n_flag & NQNFSNONCACHE
    193  1.26      fvdl 		|| ((vp->v_flag & VROOT) && vp->v_type == VLNK)) {
    194  1.12   mycroft 		switch (vp->v_type) {
    195  1.12   mycroft 		case VREG:
    196  1.24      fvdl 			return (nfs_readrpc(vp, uio, cred));
    197  1.12   mycroft 		case VLNK:
    198  1.24      fvdl 			return (nfs_readlinkrpc(vp, uio, cred));
    199  1.12   mycroft 		case VDIR:
    200  1.23  christos 			break;
    201  1.24      fvdl 		default:
    202  1.29  christos 			printf(" NQNFSNONCACHE: type %x unexpected\n",
    203  1.28  christos 			    vp->v_type);
    204  1.12   mycroft 		};
    205  1.12   mycroft 	    }
    206  1.12   mycroft 	    baddr = (caddr_t)0;
    207   1.1       cgd 	    switch (vp->v_type) {
    208   1.1       cgd 	    case VREG:
    209   1.1       cgd 		nfsstats.biocache_reads++;
    210   1.1       cgd 		lbn = uio->uio_offset / biosize;
    211  1.24      fvdl 		on = uio->uio_offset & (biosize - 1);
    212  1.12   mycroft 		bn = lbn * (biosize / DEV_BSIZE);
    213  1.12   mycroft 		not_readin = 1;
    214  1.12   mycroft 
    215  1.12   mycroft 		/*
    216  1.12   mycroft 		 * Start the read ahead(s), as required.
    217  1.12   mycroft 		 */
    218  1.36      fvdl 		if (nfs_numasync > 0 && nmp->nm_readahead > 0 &&
    219  1.36      fvdl 		    lbn - 1 == vp->v_lastr) {
    220  1.12   mycroft 		    for (nra = 0; nra < nmp->nm_readahead &&
    221  1.12   mycroft 			(lbn + 1 + nra) * biosize < np->n_size; nra++) {
    222  1.12   mycroft 			rabn = (lbn + 1 + nra) * (biosize / DEV_BSIZE);
    223  1.12   mycroft 			if (!incore(vp, rabn)) {
    224  1.12   mycroft 			    rabp = nfs_getcacheblk(vp, rabn, biosize, p);
    225  1.12   mycroft 			    if (!rabp)
    226  1.12   mycroft 				return (EINTR);
    227  1.12   mycroft 			    if ((rabp->b_flags & (B_DELWRI | B_DONE)) == 0) {
    228  1.12   mycroft 				rabp->b_flags |= (B_READ | B_ASYNC);
    229  1.12   mycroft 				if (nfs_asyncio(rabp, cred)) {
    230  1.12   mycroft 				    rabp->b_flags |= B_INVAL;
    231  1.12   mycroft 				    brelse(rabp);
    232  1.12   mycroft 				}
    233  1.19   mycroft 			    } else
    234  1.19   mycroft 				brelse(rabp);
    235  1.12   mycroft 			}
    236  1.12   mycroft 		    }
    237  1.12   mycroft 		}
    238  1.12   mycroft 
    239  1.12   mycroft 		/*
    240  1.12   mycroft 		 * If the block is in the cache and has the required data
    241  1.12   mycroft 		 * in a valid region, just copy it out.
    242  1.12   mycroft 		 * Otherwise, get the block and write back/read in,
    243  1.12   mycroft 		 * as required.
    244  1.12   mycroft 		 */
    245  1.12   mycroft 		if ((bp = incore(vp, bn)) &&
    246  1.12   mycroft 		    (bp->b_flags & (B_BUSY | B_WRITEINPROG)) ==
    247  1.12   mycroft 		    (B_BUSY | B_WRITEINPROG))
    248  1.12   mycroft 			got_buf = 0;
    249  1.12   mycroft 		else {
    250  1.12   mycroft again:
    251  1.12   mycroft 			bp = nfs_getcacheblk(vp, bn, biosize, p);
    252  1.12   mycroft 			if (!bp)
    253  1.12   mycroft 				return (EINTR);
    254  1.12   mycroft 			got_buf = 1;
    255  1.12   mycroft 			if ((bp->b_flags & (B_DONE | B_DELWRI)) == 0) {
    256  1.12   mycroft 				bp->b_flags |= B_READ;
    257  1.12   mycroft 				not_readin = 0;
    258  1.23  christos 				error = nfs_doio(bp, cred, p);
    259  1.23  christos 				if (error) {
    260  1.12   mycroft 				    brelse(bp);
    261  1.12   mycroft 				    return (error);
    262  1.12   mycroft 				}
    263  1.12   mycroft 			}
    264  1.12   mycroft 		}
    265  1.11       cgd 		n = min((unsigned)(biosize - on), uio->uio_resid);
    266  1.43      fvdl 		offdiff = np->n_size - uio->uio_offset;
    267  1.43      fvdl 		if (offdiff < (off_t)n)
    268  1.43      fvdl 			n = (int)offdiff;
    269  1.12   mycroft 		if (not_readin && n > 0) {
    270  1.12   mycroft 			if (on < bp->b_validoff || (on + n) > bp->b_validend) {
    271  1.12   mycroft 				if (!got_buf) {
    272  1.12   mycroft 				    bp = nfs_getcacheblk(vp, bn, biosize, p);
    273  1.12   mycroft 				    if (!bp)
    274  1.12   mycroft 					return (EINTR);
    275  1.12   mycroft 				    got_buf = 1;
    276  1.12   mycroft 				}
    277  1.24      fvdl 				bp->b_flags |= B_INVAFTERWRITE;
    278  1.12   mycroft 				if (bp->b_dirtyend > 0) {
    279  1.12   mycroft 				    if ((bp->b_flags & B_DELWRI) == 0)
    280  1.12   mycroft 					panic("nfsbioread");
    281  1.12   mycroft 				    if (VOP_BWRITE(bp) == EINTR)
    282  1.12   mycroft 					return (EINTR);
    283  1.12   mycroft 				} else
    284  1.12   mycroft 				    brelse(bp);
    285  1.12   mycroft 				goto again;
    286  1.12   mycroft 			}
    287  1.12   mycroft 		}
    288   1.1       cgd 		vp->v_lastr = lbn;
    289  1.12   mycroft 		diff = (on >= bp->b_validend) ? 0 : (bp->b_validend - on);
    290  1.12   mycroft 		if (diff < n)
    291  1.12   mycroft 			n = diff;
    292   1.1       cgd 		break;
    293   1.1       cgd 	    case VLNK:
    294   1.1       cgd 		nfsstats.biocache_readlinks++;
    295  1.12   mycroft 		bp = nfs_getcacheblk(vp, (daddr_t)0, NFS_MAXPATHLEN, p);
    296  1.12   mycroft 		if (!bp)
    297  1.12   mycroft 			return (EINTR);
    298  1.12   mycroft 		if ((bp->b_flags & B_DONE) == 0) {
    299  1.12   mycroft 			bp->b_flags |= B_READ;
    300  1.24      fvdl 			error = nfs_doio(bp, cred, p);
    301  1.24      fvdl 			if (error) {
    302  1.12   mycroft 				brelse(bp);
    303  1.12   mycroft 				return (error);
    304  1.12   mycroft 			}
    305  1.12   mycroft 		}
    306  1.12   mycroft 		n = min(uio->uio_resid, NFS_MAXPATHLEN - bp->b_resid);
    307  1.12   mycroft 		got_buf = 1;
    308   1.1       cgd 		on = 0;
    309   1.1       cgd 		break;
    310   1.1       cgd 	    case VDIR:
    311  1.34      fvdl diragain:
    312  1.34      fvdl 		nfsstats.biocache_readdirs++;
    313  1.35      fvdl 		ndp = nfs_searchdircache(vp, uio->uio_offset,
    314  1.35      fvdl 			(nmp->nm_flag & NFSMNT_XLATECOOKIE), 0);
    315  1.35      fvdl 		if (!ndp) {
    316  1.35      fvdl 			/*
    317  1.35      fvdl 			 * We've been handed a cookie that is not
    318  1.35      fvdl 			 * in the cache. If we're not translating
    319  1.35      fvdl 			 * 32 <-> 64, it may be a value that was
    320  1.35      fvdl 			 * flushed out of the cache because it grew
    321  1.35      fvdl 			 * too big. Let the server judge if it's
    322  1.35      fvdl 			 * valid or not. In the translation case,
    323  1.35      fvdl 			 * we have no way of validating this value,
    324  1.35      fvdl 			 * so punt.
    325  1.35      fvdl 			 */
    326  1.35      fvdl 			if (nmp->nm_flag & NFSMNT_XLATECOOKIE)
    327  1.35      fvdl 				return (EINVAL);
    328  1.35      fvdl 			ndp = nfs_enterdircache(vp, uio->uio_offset,
    329  1.35      fvdl 				uio->uio_offset, 0, 0);
    330  1.35      fvdl 		}
    331  1.35      fvdl 
    332  1.34      fvdl 		if (uio->uio_offset != 0 &&
    333  1.35      fvdl 		    ndp->dc_cookie == np->n_direofoffset) {
    334  1.35      fvdl 			nfsstats.direofcache_hits++;
    335  1.18   mycroft 			return (0);
    336  1.35      fvdl 		}
    337  1.35      fvdl 
    338  1.34      fvdl 		bp = nfs_getcacheblk(vp, ndp->dc_blkno, NFS_DIRBLKSIZ, p);
    339  1.12   mycroft 		if (!bp)
    340  1.24      fvdl 		    return (EINTR);
    341  1.12   mycroft 		if ((bp->b_flags & B_DONE) == 0) {
    342  1.24      fvdl 		    bp->b_flags |= B_READ;
    343  1.35      fvdl 		    bp->b_dcookie = ndp->dc_blkcookie;
    344  1.24      fvdl 		    error = nfs_doio(bp, cred, p);
    345  1.24      fvdl 		    if (error) {
    346  1.34      fvdl 			/*
    347  1.34      fvdl 			 * Yuck! The directory has been modified on the
    348  1.34      fvdl 			 * server. Punt and let the userland code
    349  1.34      fvdl 			 * deal with it.
    350  1.34      fvdl 			 */
    351  1.24      fvdl 			brelse(bp);
    352  1.34      fvdl 			if (error == NFSERR_BAD_COOKIE) {
    353  1.35      fvdl 			    nfs_invaldircache(vp, 0);
    354  1.34      fvdl 			    nfs_vinvalbuf(vp, 0, cred, p, 1);
    355  1.34      fvdl 			    error = EINVAL;
    356  1.12   mycroft 			}
    357  1.34      fvdl 			return (error);
    358  1.38      fvdl 		    }
    359  1.40      fvdl 		}
    360  1.40      fvdl 
    361  1.40      fvdl 		/*
    362  1.40      fvdl 		 * Just return if we hit EOF right away with this
    363  1.40      fvdl 		 * block. Always check here, because direofoffset
    364  1.40      fvdl 		 * may have been set by an nfsiod since the last
    365  1.40      fvdl 		 * check.
    366  1.40      fvdl 		 */
    367  1.40      fvdl 		if (np->n_direofoffset != 0 &&
    368  1.39      fvdl 			ndp->dc_blkcookie == np->n_direofoffset) {
    369  1.40      fvdl 			brelse(bp);
    370  1.40      fvdl 			return (0);
    371  1.12   mycroft 		}
    372  1.12   mycroft 
    373  1.12   mycroft 		/*
    374  1.34      fvdl 		 * Find the entry we were looking for in the block.
    375  1.34      fvdl 		 */
    376  1.34      fvdl 
    377  1.34      fvdl 		en = ndp->dc_entry;
    378  1.34      fvdl 
    379  1.34      fvdl 		pdp = dp = (struct dirent *)bp->b_data;
    380  1.34      fvdl 		edp = bp->b_data + bp->b_validend;
    381  1.34      fvdl 		enn = 0;
    382  1.34      fvdl 		while (enn < en && (caddr_t)dp < edp) {
    383  1.34      fvdl 			pdp = dp;
    384  1.34      fvdl 			dp = (struct dirent *)((caddr_t)dp + dp->d_reclen);
    385  1.34      fvdl 			enn++;
    386  1.34      fvdl 		}
    387  1.34      fvdl 
    388  1.34      fvdl 		/*
    389  1.34      fvdl 		 * If the entry number was bigger than the number of
    390  1.34      fvdl 		 * entries in the block, or the cookie of the previous
    391  1.34      fvdl 		 * entry doesn't match, the directory cache is
    392  1.34      fvdl 		 * stale. Flush it and try again (i.e. go to
    393  1.34      fvdl 		 * the server).
    394  1.34      fvdl 		 */
    395  1.34      fvdl 		if ((caddr_t)dp >= edp || (caddr_t)dp + dp->d_reclen > edp ||
    396  1.35      fvdl 		    (en > 0 && NFS_GETCOOKIE(pdp) != ndp->dc_cookie)) {
    397  1.34      fvdl #ifdef DEBUG
    398  1.37   thorpej 		    	printf("invalid cache: %p %p %p off %lx %lx\n",
    399  1.37   thorpej 				pdp, dp, edp,
    400  1.34      fvdl 				(unsigned long)uio->uio_offset,
    401  1.34      fvdl 				(unsigned long)NFS_GETCOOKIE(pdp));
    402  1.34      fvdl #endif
    403  1.34      fvdl 			brelse(bp);
    404  1.35      fvdl 			nfs_invaldircache(vp, 0);
    405  1.34      fvdl 			nfs_vinvalbuf(vp, 0, cred, p, 0);
    406  1.34      fvdl 			goto diragain;
    407  1.34      fvdl 		}
    408  1.34      fvdl 
    409  1.34      fvdl 		on = (caddr_t)dp - bp->b_data;
    410  1.34      fvdl 
    411  1.34      fvdl 		/*
    412  1.34      fvdl 		 * Cache all entries that may be exported to the
    413  1.34      fvdl 		 * user, as they may be thrown back at us. The
    414  1.34      fvdl 		 * NFSBIO_CACHECOOKIES flag indicates that all
    415  1.34      fvdl 		 * entries are being 'exported', so cache them all.
    416  1.34      fvdl 		 */
    417  1.34      fvdl 
    418  1.34      fvdl 		if (en == 0 && pdp == dp) {
    419  1.34      fvdl 			dp = (struct dirent *)
    420  1.34      fvdl 			    ((caddr_t)dp + dp->d_reclen);
    421  1.34      fvdl 			enn++;
    422  1.34      fvdl 		}
    423  1.34      fvdl 
    424  1.34      fvdl 		if (uio->uio_resid < (bp->b_validend - on)) {
    425  1.34      fvdl 			n = uio->uio_resid;
    426  1.34      fvdl 			enough = 1;
    427  1.34      fvdl 		} else
    428  1.34      fvdl 			n = bp->b_validend - on;
    429  1.34      fvdl 
    430  1.34      fvdl 		ep = bp->b_data + on + n;
    431  1.34      fvdl 
    432  1.34      fvdl 		/*
    433  1.34      fvdl 		 * Find last complete entry to copy, caching entries
    434  1.34      fvdl 		 * (if requested) as we go.
    435  1.34      fvdl 		 */
    436  1.34      fvdl 
    437  1.34      fvdl 		while ((caddr_t)dp < ep && (caddr_t)dp + dp->d_reclen <= ep) {
    438  1.35      fvdl 			if (cflag & NFSBIO_CACHECOOKIES) {
    439  1.35      fvdl 				nndp = nfs_enterdircache(vp, NFS_GETCOOKIE(pdp),
    440  1.35      fvdl 				    ndp->dc_blkcookie, enn, bp->b_lblkno);
    441  1.35      fvdl 				if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    442  1.35      fvdl 					NFS_STASHCOOKIE32(pdp,
    443  1.35      fvdl 					    nndp->dc_cookie32);
    444  1.35      fvdl 				}
    445  1.35      fvdl 			}
    446  1.34      fvdl 			pdp = dp;
    447  1.34      fvdl 			dp = (struct dirent *)((caddr_t)dp + dp->d_reclen);
    448  1.34      fvdl 			enn++;
    449  1.34      fvdl 		}
    450  1.34      fvdl 
    451  1.34      fvdl 		/*
    452  1.34      fvdl 		 * If the last requested entry was not the last in the
    453  1.34      fvdl 		 * buffer (happens if NFS_DIRFRAGSIZ < NFS_DIRBLKSIZ),
    454  1.34      fvdl 		 * cache the cookie of the last requested one, and
    455  1.34      fvdl 		 * set of the offset to it.
    456  1.34      fvdl 		 */
    457  1.34      fvdl 
    458  1.34      fvdl 		if ((on + n) < bp->b_validend) {
    459  1.34      fvdl 			curoff = NFS_GETCOOKIE(pdp);
    460  1.35      fvdl 			nndp = nfs_enterdircache(vp, curoff, ndp->dc_blkcookie,
    461  1.35      fvdl 			    enn, bp->b_lblkno);
    462  1.35      fvdl 			if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    463  1.35      fvdl 				NFS_STASHCOOKIE32(pdp, nndp->dc_cookie32);
    464  1.35      fvdl 				curoff = nndp->dc_cookie32;
    465  1.35      fvdl 			}
    466  1.34      fvdl 		} else
    467  1.34      fvdl 			curoff = bp->b_dcookie;
    468  1.34      fvdl 
    469  1.35      fvdl 		/*
    470  1.35      fvdl 		 * Always cache the entry for the next block,
    471  1.35      fvdl 		 * so that readaheads can use it.
    472  1.35      fvdl 		 */
    473  1.35      fvdl 		nndp = nfs_enterdircache(vp, bp->b_dcookie, bp->b_dcookie, 0,0);
    474  1.35      fvdl 		if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    475  1.35      fvdl 			if (curoff == bp->b_dcookie) {
    476  1.35      fvdl 				NFS_STASHCOOKIE32(pdp, nndp->dc_cookie32);
    477  1.35      fvdl 				curoff = nndp->dc_cookie32;
    478  1.35      fvdl 			}
    479  1.35      fvdl 		}
    480  1.35      fvdl 
    481  1.34      fvdl 		n = ((caddr_t)pdp + pdp->d_reclen) - (bp->b_data + on);
    482  1.34      fvdl 
    483  1.34      fvdl 		/*
    484  1.12   mycroft 		 * If not eof and read aheads are enabled, start one.
    485  1.12   mycroft 		 * (You need the current block first, so that you have the
    486  1.24      fvdl 		 *  directory offset cookie of the next block.)
    487  1.12   mycroft 		 */
    488  1.12   mycroft 		if (nfs_numasync > 0 && nmp->nm_readahead > 0 &&
    489  1.34      fvdl 		    np->n_direofoffset == 0 && !(np->n_flag & NQNFSNONCACHE)) {
    490  1.35      fvdl 			rabp = nfs_getcacheblk(vp, nndp->dc_blkno,
    491  1.34      fvdl 						NFS_DIRBLKSIZ, p);
    492  1.12   mycroft 			if (rabp) {
    493  1.12   mycroft 			    if ((rabp->b_flags & (B_DONE | B_DELWRI)) == 0) {
    494  1.35      fvdl 				rabp->b_dcookie = nndp->dc_cookie;
    495  1.12   mycroft 				rabp->b_flags |= (B_READ | B_ASYNC);
    496  1.12   mycroft 				if (nfs_asyncio(rabp, cred)) {
    497  1.12   mycroft 				    rabp->b_flags |= B_INVAL;
    498  1.12   mycroft 				    brelse(rabp);
    499  1.12   mycroft 				}
    500  1.19   mycroft 			    } else
    501  1.19   mycroft 				brelse(rabp);
    502  1.12   mycroft 			}
    503  1.12   mycroft 		}
    504  1.12   mycroft 		got_buf = 1;
    505   1.1       cgd 		break;
    506  1.24      fvdl 	    default:
    507  1.29  christos 		printf(" nfsbioread: type %x unexpected\n",vp->v_type);
    508  1.23  christos 		break;
    509   1.1       cgd 	    };
    510  1.12   mycroft 
    511  1.12   mycroft 	    if (n > 0) {
    512  1.12   mycroft 		if (!baddr)
    513  1.12   mycroft 			baddr = bp->b_data;
    514  1.12   mycroft 		error = uiomove(baddr + on, (int)n, uio);
    515   1.1       cgd 	    }
    516   1.1       cgd 	    switch (vp->v_type) {
    517  1.24      fvdl 	    case VREG:
    518  1.24      fvdl 		break;
    519   1.1       cgd 	    case VLNK:
    520   1.1       cgd 		n = 0;
    521   1.1       cgd 		break;
    522   1.1       cgd 	    case VDIR:
    523  1.24      fvdl 		if (np->n_flag & NQNFSNONCACHE)
    524  1.24      fvdl 			bp->b_flags |= B_INVAL;
    525  1.34      fvdl 		uio->uio_offset = curoff;
    526  1.34      fvdl 		if (enough)
    527  1.34      fvdl 			n = 0;
    528   1.1       cgd 		break;
    529  1.24      fvdl 	    default:
    530  1.29  christos 		printf(" nfsbioread: type %x unexpected\n",vp->v_type);
    531  1.24      fvdl 	    }
    532  1.12   mycroft 	    if (got_buf)
    533  1.12   mycroft 		brelse(bp);
    534  1.12   mycroft 	} while (error == 0 && uio->uio_resid > 0 && n > 0);
    535   1.1       cgd 	return (error);
    536   1.1       cgd }
    537   1.1       cgd 
    538   1.1       cgd /*
    539   1.1       cgd  * Vnode op for write using bio
    540   1.1       cgd  */
    541  1.23  christos int
    542  1.23  christos nfs_write(v)
    543  1.23  christos 	void *v;
    544  1.23  christos {
    545  1.12   mycroft 	struct vop_write_args /* {
    546  1.24      fvdl 		struct vnode *a_vp;
    547  1.12   mycroft 		struct uio *a_uio;
    548  1.12   mycroft 		int  a_ioflag;
    549  1.12   mycroft 		struct ucred *a_cred;
    550  1.23  christos 	} */ *ap = v;
    551  1.48  augustss 	int biosize;
    552  1.48  augustss 	struct uio *uio = ap->a_uio;
    553   1.1       cgd 	struct proc *p = uio->uio_procp;
    554  1.48  augustss 	struct vnode *vp = ap->a_vp;
    555  1.12   mycroft 	struct nfsnode *np = VTONFS(vp);
    556  1.48  augustss 	struct ucred *cred = ap->a_cred;
    557  1.12   mycroft 	int ioflag = ap->a_ioflag;
    558   1.1       cgd 	struct buf *bp;
    559   1.1       cgd 	struct vattr vattr;
    560  1.24      fvdl 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    561   1.1       cgd 	daddr_t lbn, bn;
    562  1.24      fvdl 	int n, on, error = 0, iomode, must_commit;
    563   1.1       cgd 
    564   1.1       cgd #ifdef DIAGNOSTIC
    565   1.1       cgd 	if (uio->uio_rw != UIO_WRITE)
    566   1.1       cgd 		panic("nfs_write mode");
    567   1.1       cgd 	if (uio->uio_segflg == UIO_USERSPACE && uio->uio_procp != curproc)
    568   1.1       cgd 		panic("nfs_write proc");
    569   1.1       cgd #endif
    570   1.1       cgd 	if (vp->v_type != VREG)
    571   1.1       cgd 		return (EIO);
    572  1.12   mycroft 	if (np->n_flag & NWRITEERR) {
    573  1.12   mycroft 		np->n_flag &= ~NWRITEERR;
    574  1.12   mycroft 		return (np->n_error);
    575  1.12   mycroft 	}
    576  1.34      fvdl 	if ((nmp->nm_flag & NFSMNT_NFSV3) &&
    577  1.34      fvdl 	    !(nmp->nm_iflag & NFSMNT_GOTFSINFO))
    578  1.24      fvdl 		(void)nfs_fsinfo(nmp, vp, cred, p);
    579   1.1       cgd 	if (ioflag & (IO_APPEND | IO_SYNC)) {
    580   1.1       cgd 		if (np->n_flag & NMODIFIED) {
    581  1.12   mycroft 			np->n_attrstamp = 0;
    582  1.23  christos 			error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    583  1.23  christos 			if (error)
    584  1.12   mycroft 				return (error);
    585   1.1       cgd 		}
    586   1.1       cgd 		if (ioflag & IO_APPEND) {
    587   1.1       cgd 			np->n_attrstamp = 0;
    588  1.23  christos 			error = VOP_GETATTR(vp, &vattr, cred, p);
    589  1.23  christos 			if (error)
    590   1.1       cgd 				return (error);
    591   1.1       cgd 			uio->uio_offset = np->n_size;
    592   1.1       cgd 		}
    593   1.1       cgd 	}
    594   1.1       cgd 	if (uio->uio_offset < 0)
    595   1.1       cgd 		return (EINVAL);
    596  1.33      fvdl 	if ((uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
    597  1.33      fvdl 		return (EFBIG);
    598   1.1       cgd 	if (uio->uio_resid == 0)
    599   1.1       cgd 		return (0);
    600   1.1       cgd 	/*
    601   1.1       cgd 	 * Maybe this should be above the vnode op call, but so long as
    602   1.1       cgd 	 * file servers have no limits, i don't think it matters
    603   1.1       cgd 	 */
    604  1.12   mycroft 	if (p && uio->uio_offset + uio->uio_resid >
    605   1.1       cgd 	      p->p_rlimit[RLIMIT_FSIZE].rlim_cur) {
    606   1.1       cgd 		psignal(p, SIGXFSZ);
    607   1.1       cgd 		return (EFBIG);
    608   1.1       cgd 	}
    609   1.1       cgd 	/*
    610   1.1       cgd 	 * I use nm_rsize, not nm_wsize so that all buffer cache blocks
    611   1.1       cgd 	 * will be the same size within a filesystem. nfs_writerpc will
    612   1.1       cgd 	 * still use nm_wsize when sizing the rpc's.
    613   1.1       cgd 	 */
    614  1.12   mycroft 	biosize = nmp->nm_rsize;
    615   1.1       cgd 	do {
    616  1.16       cgd 
    617  1.16       cgd 		/*
    618  1.16       cgd 		 * XXX make sure we aren't cached in the VM page cache
    619  1.16       cgd 		 */
    620  1.41       mrg 		(void)uvm_vnp_uncache(vp);
    621  1.12   mycroft 
    622  1.12   mycroft 		/*
    623  1.12   mycroft 		 * Check for a valid write lease.
    624  1.12   mycroft 		 */
    625  1.12   mycroft 		if ((nmp->nm_flag & NFSMNT_NQNFS) &&
    626  1.24      fvdl 		    NQNFS_CKINVALID(vp, np, ND_WRITE)) {
    627  1.12   mycroft 			do {
    628  1.24      fvdl 				error = nqnfs_getlease(vp, ND_WRITE, cred, p);
    629  1.12   mycroft 			} while (error == NQNFS_EXPIRED);
    630  1.12   mycroft 			if (error)
    631  1.12   mycroft 				return (error);
    632  1.12   mycroft 			if (np->n_lrev != np->n_brev ||
    633  1.12   mycroft 			    (np->n_flag & NQNFSNONCACHE)) {
    634  1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    635  1.23  christos 				if (error)
    636  1.12   mycroft 					return (error);
    637  1.12   mycroft 				np->n_brev = np->n_lrev;
    638  1.12   mycroft 			}
    639  1.12   mycroft 		}
    640  1.24      fvdl 		if ((np->n_flag & NQNFSNONCACHE) && uio->uio_iovcnt == 1) {
    641  1.24      fvdl 		    iomode = NFSV3WRITE_FILESYNC;
    642  1.24      fvdl 		    error = nfs_writerpc(vp, uio, cred, &iomode, &must_commit);
    643  1.24      fvdl 		    if (must_commit)
    644  1.24      fvdl 			nfs_clearcommit(vp->v_mount);
    645  1.24      fvdl 		    return (error);
    646  1.24      fvdl 		}
    647   1.1       cgd 		nfsstats.biocache_writes++;
    648   1.1       cgd 		lbn = uio->uio_offset / biosize;
    649   1.1       cgd 		on = uio->uio_offset & (biosize-1);
    650  1.11       cgd 		n = min((unsigned)(biosize - on), uio->uio_resid);
    651  1.12   mycroft 		bn = lbn * (biosize / DEV_BSIZE);
    652   1.1       cgd again:
    653  1.12   mycroft 		bp = nfs_getcacheblk(vp, bn, biosize, p);
    654  1.12   mycroft 		if (!bp)
    655  1.12   mycroft 			return (EINTR);
    656  1.12   mycroft 		if (bp->b_wcred == NOCRED) {
    657   1.1       cgd 			crhold(cred);
    658   1.1       cgd 			bp->b_wcred = cred;
    659   1.1       cgd 		}
    660  1.12   mycroft 		np->n_flag |= NMODIFIED;
    661  1.12   mycroft 		if (uio->uio_offset + n > np->n_size) {
    662  1.12   mycroft 			np->n_size = uio->uio_offset + n;
    663  1.41       mrg 			uvm_vnp_setsize(vp, np->n_size);
    664  1.12   mycroft 		}
    665  1.12   mycroft 
    666  1.12   mycroft 		/*
    667  1.12   mycroft 		 * If the new write will leave a contiguous dirty
    668  1.12   mycroft 		 * area, just update the b_dirtyoff and b_dirtyend,
    669  1.12   mycroft 		 * otherwise force a write rpc of the old dirty area.
    670  1.12   mycroft 		 */
    671  1.12   mycroft 		if (bp->b_dirtyend > 0 &&
    672  1.12   mycroft 		    (on > bp->b_dirtyend || (on + n) < bp->b_dirtyoff)) {
    673  1.12   mycroft 			bp->b_proc = p;
    674  1.12   mycroft 			if (VOP_BWRITE(bp) == EINTR)
    675  1.12   mycroft 				return (EINTR);
    676  1.12   mycroft 			goto again;
    677  1.12   mycroft 		}
    678  1.12   mycroft 
    679  1.12   mycroft 		/*
    680  1.12   mycroft 		 * Check for valid write lease and get one as required.
    681  1.12   mycroft 		 * In case getblk() and/or bwrite() delayed us.
    682  1.12   mycroft 		 */
    683  1.12   mycroft 		if ((nmp->nm_flag & NFSMNT_NQNFS) &&
    684  1.24      fvdl 		    NQNFS_CKINVALID(vp, np, ND_WRITE)) {
    685  1.12   mycroft 			do {
    686  1.24      fvdl 				error = nqnfs_getlease(vp, ND_WRITE, cred, p);
    687  1.12   mycroft 			} while (error == NQNFS_EXPIRED);
    688  1.12   mycroft 			if (error) {
    689  1.12   mycroft 				brelse(bp);
    690  1.12   mycroft 				return (error);
    691  1.12   mycroft 			}
    692  1.12   mycroft 			if (np->n_lrev != np->n_brev ||
    693  1.12   mycroft 			    (np->n_flag & NQNFSNONCACHE)) {
    694  1.12   mycroft 				brelse(bp);
    695  1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    696  1.23  christos 				if (error)
    697   1.1       cgd 					return (error);
    698  1.12   mycroft 				np->n_brev = np->n_lrev;
    699   1.1       cgd 				goto again;
    700   1.1       cgd 			}
    701  1.12   mycroft 		}
    702  1.23  christos 		error = uiomove((char *)bp->b_data + on, n, uio);
    703  1.23  christos 		if (error) {
    704  1.12   mycroft 			bp->b_flags |= B_ERROR;
    705  1.12   mycroft 			brelse(bp);
    706  1.12   mycroft 			return (error);
    707  1.12   mycroft 		}
    708  1.12   mycroft 		if (bp->b_dirtyend > 0) {
    709  1.12   mycroft 			bp->b_dirtyoff = min(on, bp->b_dirtyoff);
    710  1.12   mycroft 			bp->b_dirtyend = max((on + n), bp->b_dirtyend);
    711   1.1       cgd 		} else {
    712   1.1       cgd 			bp->b_dirtyoff = on;
    713  1.12   mycroft 			bp->b_dirtyend = on + n;
    714   1.1       cgd 		}
    715  1.12   mycroft 		if (bp->b_validend == 0 || bp->b_validend < bp->b_dirtyoff ||
    716  1.12   mycroft 		    bp->b_validoff > bp->b_dirtyend) {
    717  1.12   mycroft 			bp->b_validoff = bp->b_dirtyoff;
    718  1.12   mycroft 			bp->b_validend = bp->b_dirtyend;
    719  1.12   mycroft 		} else {
    720  1.12   mycroft 			bp->b_validoff = min(bp->b_validoff, bp->b_dirtyoff);
    721  1.12   mycroft 			bp->b_validend = max(bp->b_validend, bp->b_dirtyend);
    722   1.1       cgd 		}
    723  1.25      fvdl 
    724  1.25      fvdl 		/*
    725  1.25      fvdl 		 * Since this block is being modified, it must be written
    726  1.25      fvdl 		 * again and not just committed.
    727  1.25      fvdl 		 */
    728  1.25      fvdl 		bp->b_flags &= ~B_NEEDCOMMIT;
    729  1.25      fvdl 
    730  1.12   mycroft 		/*
    731  1.12   mycroft 		 * If the lease is non-cachable or IO_SYNC do bwrite().
    732  1.12   mycroft 		 */
    733  1.12   mycroft 		if ((np->n_flag & NQNFSNONCACHE) || (ioflag & IO_SYNC)) {
    734  1.12   mycroft 			bp->b_proc = p;
    735  1.24      fvdl 			error = VOP_BWRITE(bp);
    736  1.24      fvdl 			if (error)
    737  1.12   mycroft 				return (error);
    738  1.24      fvdl 			if (np->n_flag & NQNFSNONCACHE) {
    739  1.24      fvdl 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    740  1.24      fvdl 				if (error)
    741  1.24      fvdl 					return (error);
    742  1.24      fvdl 			}
    743  1.12   mycroft 		} else if ((n + on) == biosize &&
    744  1.12   mycroft 			(nmp->nm_flag & NFSMNT_NQNFS) == 0) {
    745   1.1       cgd 			bp->b_proc = (struct proc *)0;
    746  1.24      fvdl 			bp->b_flags |= B_ASYNC;
    747  1.24      fvdl 			(void)nfs_writebp(bp, 0);
    748  1.24      fvdl 		} else {
    749  1.12   mycroft 			bdwrite(bp);
    750  1.24      fvdl 		}
    751  1.12   mycroft 	} while (uio->uio_resid > 0 && n > 0);
    752  1.12   mycroft 	return (0);
    753  1.12   mycroft }
    754  1.12   mycroft 
    755  1.12   mycroft /*
    756  1.12   mycroft  * Get an nfs cache block.
    757  1.12   mycroft  * Allocate a new one if the block isn't currently in the cache
    758  1.12   mycroft  * and return the block marked busy. If the calling process is
    759  1.12   mycroft  * interrupted by a signal for an interruptible mount point, return
    760  1.12   mycroft  * NULL.
    761  1.12   mycroft  */
    762  1.12   mycroft struct buf *
    763  1.12   mycroft nfs_getcacheblk(vp, bn, size, p)
    764  1.12   mycroft 	struct vnode *vp;
    765  1.12   mycroft 	daddr_t bn;
    766  1.12   mycroft 	int size;
    767  1.12   mycroft 	struct proc *p;
    768  1.12   mycroft {
    769  1.48  augustss 	struct buf *bp;
    770  1.12   mycroft 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    771  1.12   mycroft 
    772  1.12   mycroft 	if (nmp->nm_flag & NFSMNT_INT) {
    773  1.12   mycroft 		bp = getblk(vp, bn, size, PCATCH, 0);
    774  1.12   mycroft 		while (bp == (struct buf *)0) {
    775  1.12   mycroft 			if (nfs_sigintr(nmp, (struct nfsreq *)0, p))
    776  1.12   mycroft 				return ((struct buf *)0);
    777  1.12   mycroft 			bp = getblk(vp, bn, size, 0, 2 * hz);
    778  1.12   mycroft 		}
    779  1.12   mycroft 	} else
    780  1.12   mycroft 		bp = getblk(vp, bn, size, 0, 0);
    781  1.12   mycroft 	return (bp);
    782  1.12   mycroft }
    783  1.12   mycroft 
    784  1.12   mycroft /*
    785  1.12   mycroft  * Flush and invalidate all dirty buffers. If another process is already
    786  1.12   mycroft  * doing the flush, just wait for completion.
    787  1.12   mycroft  */
    788  1.23  christos int
    789  1.12   mycroft nfs_vinvalbuf(vp, flags, cred, p, intrflg)
    790  1.12   mycroft 	struct vnode *vp;
    791  1.12   mycroft 	int flags;
    792  1.12   mycroft 	struct ucred *cred;
    793  1.12   mycroft 	struct proc *p;
    794  1.12   mycroft 	int intrflg;
    795  1.12   mycroft {
    796  1.48  augustss 	struct nfsnode *np = VTONFS(vp);
    797  1.12   mycroft 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    798  1.12   mycroft 	int error = 0, slpflag, slptimeo;
    799  1.12   mycroft 
    800  1.12   mycroft 	if ((nmp->nm_flag & NFSMNT_INT) == 0)
    801  1.12   mycroft 		intrflg = 0;
    802  1.12   mycroft 	if (intrflg) {
    803  1.12   mycroft 		slpflag = PCATCH;
    804  1.12   mycroft 		slptimeo = 2 * hz;
    805  1.12   mycroft 	} else {
    806  1.12   mycroft 		slpflag = 0;
    807  1.12   mycroft 		slptimeo = 0;
    808  1.12   mycroft 	}
    809  1.12   mycroft 	/*
    810  1.12   mycroft 	 * First wait for any other process doing a flush to complete.
    811  1.12   mycroft 	 */
    812  1.12   mycroft 	while (np->n_flag & NFLUSHINPROG) {
    813  1.12   mycroft 		np->n_flag |= NFLUSHWANT;
    814  1.12   mycroft 		error = tsleep((caddr_t)&np->n_flag, PRIBIO + 2, "nfsvinval",
    815  1.12   mycroft 			slptimeo);
    816  1.12   mycroft 		if (error && intrflg && nfs_sigintr(nmp, (struct nfsreq *)0, p))
    817  1.12   mycroft 			return (EINTR);
    818  1.12   mycroft 	}
    819  1.12   mycroft 
    820  1.12   mycroft 	/*
    821  1.12   mycroft 	 * Now, flush as required.
    822  1.12   mycroft 	 */
    823  1.12   mycroft 	np->n_flag |= NFLUSHINPROG;
    824  1.12   mycroft 	error = vinvalbuf(vp, flags, cred, p, slpflag, 0);
    825  1.12   mycroft 	while (error) {
    826  1.12   mycroft 		if (intrflg && nfs_sigintr(nmp, (struct nfsreq *)0, p)) {
    827  1.12   mycroft 			np->n_flag &= ~NFLUSHINPROG;
    828  1.12   mycroft 			if (np->n_flag & NFLUSHWANT) {
    829  1.12   mycroft 				np->n_flag &= ~NFLUSHWANT;
    830  1.12   mycroft 				wakeup((caddr_t)&np->n_flag);
    831  1.12   mycroft 			}
    832  1.12   mycroft 			return (EINTR);
    833  1.12   mycroft 		}
    834  1.12   mycroft 		error = vinvalbuf(vp, flags, cred, p, 0, slptimeo);
    835  1.12   mycroft 	}
    836  1.12   mycroft 	np->n_flag &= ~(NMODIFIED | NFLUSHINPROG);
    837  1.12   mycroft 	if (np->n_flag & NFLUSHWANT) {
    838  1.12   mycroft 		np->n_flag &= ~NFLUSHWANT;
    839  1.12   mycroft 		wakeup((caddr_t)&np->n_flag);
    840  1.12   mycroft 	}
    841  1.12   mycroft 	return (0);
    842  1.12   mycroft }
    843  1.12   mycroft 
    844  1.12   mycroft /*
    845  1.12   mycroft  * Initiate asynchronous I/O. Return an error if no nfsiods are available.
    846  1.12   mycroft  * This is mainly to avoid queueing async I/O requests when the nfsiods
    847  1.12   mycroft  * are all hung on a dead server.
    848  1.12   mycroft  */
    849  1.23  christos int
    850  1.12   mycroft nfs_asyncio(bp, cred)
    851  1.48  augustss 	struct buf *bp;
    852  1.12   mycroft 	struct ucred *cred;
    853  1.12   mycroft {
    854  1.48  augustss 	int i;
    855  1.48  augustss 	struct nfsmount *nmp;
    856  1.30   thorpej 	int gotiod, slpflag = 0, slptimeo = 0, error;
    857  1.12   mycroft 
    858  1.12   mycroft 	if (nfs_numasync == 0)
    859  1.12   mycroft 		return (EIO);
    860  1.30   thorpej 
    861  1.30   thorpej 
    862  1.30   thorpej 	nmp = VFSTONFS(bp->b_vp->v_mount);
    863  1.30   thorpej again:
    864  1.30   thorpej 	if (nmp->nm_flag & NFSMNT_INT)
    865  1.30   thorpej 		slpflag = PCATCH;
    866  1.30   thorpej 	gotiod = FALSE;
    867  1.30   thorpej 
    868  1.30   thorpej 	/*
    869  1.30   thorpej 	 * Find a free iod to process this request.
    870  1.30   thorpej 	 */
    871  1.30   thorpej 
    872  1.12   mycroft 	for (i = 0; i < NFS_MAXASYNCDAEMON; i++)
    873  1.30   thorpej 		if (nfs_iodwant[i]) {
    874  1.30   thorpej 			/*
    875  1.30   thorpej 			 * Found one, so wake it up and tell it which
    876  1.30   thorpej 			 * mount to process.
    877  1.30   thorpej 			 */
    878  1.30   thorpej 			nfs_iodwant[i] = (struct proc *)0;
    879  1.30   thorpej 			nfs_iodmount[i] = nmp;
    880  1.30   thorpej 			nmp->nm_bufqiods++;
    881  1.30   thorpej 			wakeup((caddr_t)&nfs_iodwant[i]);
    882  1.30   thorpej 			gotiod = TRUE;
    883  1.31      fvdl 			break;
    884  1.30   thorpej 		}
    885  1.30   thorpej 	/*
    886  1.30   thorpej 	 * If none are free, we may already have an iod working on this mount
    887  1.30   thorpej 	 * point.  If so, it will process our request.
    888  1.30   thorpej 	 */
    889  1.30   thorpej 	if (!gotiod && nmp->nm_bufqiods > 0)
    890  1.30   thorpej 		gotiod = TRUE;
    891  1.30   thorpej 
    892  1.30   thorpej 	/*
    893  1.30   thorpej 	 * If we have an iod which can process the request, then queue
    894  1.30   thorpej 	 * the buffer.
    895  1.30   thorpej 	 */
    896  1.30   thorpej 	if (gotiod) {
    897  1.30   thorpej 		/*
    898  1.30   thorpej 		 * Ensure that the queue never grows too large.
    899  1.30   thorpej 		 */
    900  1.30   thorpej 		while (nmp->nm_bufqlen >= 2*nfs_numasync) {
    901  1.30   thorpej 			nmp->nm_bufqwant = TRUE;
    902  1.30   thorpej 			error = tsleep(&nmp->nm_bufq, slpflag | PRIBIO,
    903  1.30   thorpej 				"nfsaio", slptimeo);
    904  1.30   thorpej 			if (error) {
    905  1.30   thorpej 				if (nfs_sigintr(nmp, NULL, bp->b_proc))
    906  1.30   thorpej 					return (EINTR);
    907  1.30   thorpej 				if (slpflag == PCATCH) {
    908  1.30   thorpej 					slpflag = 0;
    909  1.30   thorpej 					slptimeo = 2 * hz;
    910  1.30   thorpej 				}
    911  1.30   thorpej 			}
    912  1.30   thorpej 			/*
    913  1.30   thorpej 			 * We might have lost our iod while sleeping,
    914  1.30   thorpej 			 * so check and loop if nescessary.
    915  1.30   thorpej 			 */
    916  1.30   thorpej 			if (nmp->nm_bufqiods == 0)
    917  1.30   thorpej 				goto again;
    918  1.30   thorpej 		}
    919  1.30   thorpej 
    920  1.12   mycroft 		if (bp->b_flags & B_READ) {
    921  1.12   mycroft 			if (bp->b_rcred == NOCRED && cred != NOCRED) {
    922  1.12   mycroft 				crhold(cred);
    923  1.12   mycroft 				bp->b_rcred = cred;
    924  1.12   mycroft 			}
    925   1.1       cgd 		} else {
    926  1.24      fvdl 			bp->b_flags |= B_WRITEINPROG;
    927  1.12   mycroft 			if (bp->b_wcred == NOCRED && cred != NOCRED) {
    928  1.12   mycroft 				crhold(cred);
    929  1.12   mycroft 				bp->b_wcred = cred;
    930  1.12   mycroft 			}
    931  1.12   mycroft 		}
    932  1.47      fvdl 
    933  1.30   thorpej 		TAILQ_INSERT_TAIL(&nmp->nm_bufq, bp, b_freelist);
    934  1.30   thorpej 		nmp->nm_bufqlen++;
    935  1.12   mycroft 		return (0);
    936  1.12   mycroft 	    }
    937  1.24      fvdl 
    938  1.24      fvdl 	/*
    939  1.30   thorpej 	 * All the iods are busy on other mounts, so return EIO to
    940  1.30   thorpej 	 * force the caller to process the i/o synchronously.
    941  1.24      fvdl 	 */
    942  1.30   thorpej 	return (EIO);
    943  1.12   mycroft }
    944  1.12   mycroft 
    945  1.12   mycroft /*
    946  1.12   mycroft  * Do an I/O operation to/from a cache block. This may be called
    947  1.12   mycroft  * synchronously or from an nfsiod.
    948  1.12   mycroft  */
    949  1.12   mycroft int
    950  1.12   mycroft nfs_doio(bp, cr, p)
    951  1.48  augustss 	struct buf *bp;
    952  1.23  christos 	struct ucred *cr;
    953  1.12   mycroft 	struct proc *p;
    954  1.12   mycroft {
    955  1.48  augustss 	struct uio *uiop;
    956  1.48  augustss 	struct vnode *vp;
    957  1.12   mycroft 	struct nfsnode *np;
    958  1.12   mycroft 	struct nfsmount *nmp;
    959  1.46      fvdl 	int error = 0, diff, len, iomode, must_commit = 0, s;
    960  1.12   mycroft 	struct uio uio;
    961  1.12   mycroft 	struct iovec io;
    962  1.12   mycroft 
    963  1.12   mycroft 	vp = bp->b_vp;
    964  1.12   mycroft 	np = VTONFS(vp);
    965  1.12   mycroft 	nmp = VFSTONFS(vp->v_mount);
    966  1.12   mycroft 	uiop = &uio;
    967  1.12   mycroft 	uiop->uio_iov = &io;
    968  1.12   mycroft 	uiop->uio_iovcnt = 1;
    969  1.12   mycroft 	uiop->uio_segflg = UIO_SYSSPACE;
    970  1.12   mycroft 	uiop->uio_procp = p;
    971  1.12   mycroft 
    972  1.12   mycroft 	/*
    973  1.14        pk 	 * Historically, paging was done with physio, but no more...
    974  1.12   mycroft 	 */
    975  1.14        pk 	if (bp->b_flags & B_PHYS) {
    976  1.14        pk 	    /*
    977  1.14        pk 	     * ...though reading /dev/drum still gets us here.
    978  1.14        pk 	     */
    979  1.14        pk 	    io.iov_len = uiop->uio_resid = bp->b_bcount;
    980  1.14        pk 	    /* mapping was done by vmapbuf() */
    981  1.14        pk 	    io.iov_base = bp->b_data;
    982  1.24      fvdl 	    uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE;
    983  1.14        pk 	    if (bp->b_flags & B_READ) {
    984  1.14        pk 		uiop->uio_rw = UIO_READ;
    985  1.14        pk 		nfsstats.read_physios++;
    986  1.14        pk 		error = nfs_readrpc(vp, uiop, cr);
    987  1.14        pk 	    } else {
    988  1.24      fvdl 		iomode = NFSV3WRITE_DATASYNC;
    989  1.14        pk 		uiop->uio_rw = UIO_WRITE;
    990  1.14        pk 		nfsstats.write_physios++;
    991  1.24      fvdl 		error = nfs_writerpc(vp, uiop, cr, &iomode, &must_commit);
    992  1.14        pk 	    }
    993  1.14        pk 	    if (error) {
    994  1.14        pk 		bp->b_flags |= B_ERROR;
    995  1.14        pk 		bp->b_error = error;
    996  1.14        pk 	    }
    997  1.14        pk 	} else if (bp->b_flags & B_READ) {
    998  1.12   mycroft 	    io.iov_len = uiop->uio_resid = bp->b_bcount;
    999  1.12   mycroft 	    io.iov_base = bp->b_data;
   1000  1.12   mycroft 	    uiop->uio_rw = UIO_READ;
   1001  1.12   mycroft 	    switch (vp->v_type) {
   1002  1.12   mycroft 	    case VREG:
   1003  1.24      fvdl 		uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE;
   1004  1.12   mycroft 		nfsstats.read_bios++;
   1005  1.12   mycroft 		error = nfs_readrpc(vp, uiop, cr);
   1006  1.12   mycroft 		if (!error) {
   1007  1.12   mycroft 		    bp->b_validoff = 0;
   1008  1.12   mycroft 		    if (uiop->uio_resid) {
   1009  1.12   mycroft 			/*
   1010  1.12   mycroft 			 * If len > 0, there is a hole in the file and
   1011  1.12   mycroft 			 * no writes after the hole have been pushed to
   1012  1.12   mycroft 			 * the server yet.
   1013  1.12   mycroft 			 * Just zero fill the rest of the valid area.
   1014  1.12   mycroft 			 */
   1015  1.12   mycroft 			diff = bp->b_bcount - uiop->uio_resid;
   1016  1.24      fvdl 			len = np->n_size - (((u_quad_t)bp->b_blkno) * DEV_BSIZE
   1017  1.12   mycroft 				+ diff);
   1018  1.12   mycroft 			if (len > 0) {
   1019  1.12   mycroft 			    len = min(len, uiop->uio_resid);
   1020  1.44     perry 			    memset((char *)bp->b_data + diff, 0, len);
   1021  1.12   mycroft 			    bp->b_validend = diff + len;
   1022  1.12   mycroft 			} else
   1023  1.12   mycroft 			    bp->b_validend = diff;
   1024  1.12   mycroft 		    } else
   1025  1.12   mycroft 			bp->b_validend = bp->b_bcount;
   1026  1.12   mycroft 		}
   1027  1.12   mycroft 		if (p && (vp->v_flag & VTEXT) &&
   1028  1.12   mycroft 			(((nmp->nm_flag & NFSMNT_NQNFS) &&
   1029  1.24      fvdl 			  NQNFS_CKINVALID(vp, np, ND_READ) &&
   1030  1.12   mycroft 			  np->n_lrev != np->n_brev) ||
   1031  1.12   mycroft 			 (!(nmp->nm_flag & NFSMNT_NQNFS) &&
   1032  1.35      fvdl 			  np->n_mtime != np->n_vattr->va_mtime.tv_sec))) {
   1033  1.12   mycroft 			uprintf("Process killed due to text file modification\n");
   1034  1.12   mycroft 			psignal(p, SIGKILL);
   1035  1.13   mycroft 			p->p_holdcnt++;
   1036  1.12   mycroft 		}
   1037  1.12   mycroft 		break;
   1038  1.12   mycroft 	    case VLNK:
   1039  1.24      fvdl 		uiop->uio_offset = (off_t)0;
   1040  1.12   mycroft 		nfsstats.readlink_bios++;
   1041  1.12   mycroft 		error = nfs_readlinkrpc(vp, uiop, cr);
   1042  1.12   mycroft 		break;
   1043  1.12   mycroft 	    case VDIR:
   1044  1.12   mycroft 		nfsstats.readdir_bios++;
   1045  1.34      fvdl 		uiop->uio_offset = bp->b_dcookie;
   1046  1.24      fvdl 		if (nmp->nm_flag & NFSMNT_RDIRPLUS) {
   1047  1.24      fvdl 			error = nfs_readdirplusrpc(vp, uiop, cr);
   1048  1.24      fvdl 			if (error == NFSERR_NOTSUPP)
   1049  1.24      fvdl 				nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
   1050  1.24      fvdl 		}
   1051  1.24      fvdl 		if ((nmp->nm_flag & NFSMNT_RDIRPLUS) == 0)
   1052  1.24      fvdl 			error = nfs_readdirrpc(vp, uiop, cr);
   1053  1.34      fvdl 		if (!error) {
   1054  1.34      fvdl 			bp->b_dcookie = uiop->uio_offset;
   1055  1.34      fvdl 			bp->b_validoff = 0;
   1056  1.34      fvdl 			bp->b_validend = bp->b_bcount - uiop->uio_resid;
   1057  1.34      fvdl 		}
   1058  1.24      fvdl 		break;
   1059  1.24      fvdl 	    default:
   1060  1.29  christos 		printf("nfs_doio:  type %x unexpected\n",vp->v_type);
   1061  1.12   mycroft 		break;
   1062  1.12   mycroft 	    };
   1063  1.12   mycroft 	    if (error) {
   1064  1.12   mycroft 		bp->b_flags |= B_ERROR;
   1065  1.12   mycroft 		bp->b_error = error;
   1066  1.12   mycroft 	    }
   1067  1.12   mycroft 	} else {
   1068  1.12   mycroft 	    io.iov_len = uiop->uio_resid = bp->b_dirtyend
   1069  1.12   mycroft 		- bp->b_dirtyoff;
   1070  1.24      fvdl 	    uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE
   1071  1.12   mycroft 		+ bp->b_dirtyoff;
   1072  1.12   mycroft 	    io.iov_base = (char *)bp->b_data + bp->b_dirtyoff;
   1073  1.12   mycroft 	    uiop->uio_rw = UIO_WRITE;
   1074  1.12   mycroft 	    nfsstats.write_bios++;
   1075  1.24      fvdl 	    if ((bp->b_flags & (B_ASYNC | B_NEEDCOMMIT | B_NOCACHE)) == B_ASYNC)
   1076  1.24      fvdl 		iomode = NFSV3WRITE_UNSTABLE;
   1077  1.24      fvdl 	    else
   1078  1.24      fvdl 		iomode = NFSV3WRITE_FILESYNC;
   1079  1.24      fvdl 	    bp->b_flags |= B_WRITEINPROG;
   1080  1.24      fvdl #ifdef fvdl_debug
   1081  1.49        pk 	    printf("nfs_doio(%p): bp %p doff %d dend %d\n",
   1082  1.24      fvdl 		vp, bp, bp->b_dirtyoff, bp->b_dirtyend);
   1083  1.24      fvdl #endif
   1084  1.24      fvdl 	    error = nfs_writerpc(vp, uiop, cr, &iomode, &must_commit);
   1085  1.47      fvdl 	    s = splbio();
   1086  1.24      fvdl 	    if (!error && iomode == NFSV3WRITE_UNSTABLE)
   1087  1.24      fvdl 		bp->b_flags |= B_NEEDCOMMIT;
   1088  1.12   mycroft 	    else
   1089  1.24      fvdl 		bp->b_flags &= ~B_NEEDCOMMIT;
   1090  1.24      fvdl 	    bp->b_flags &= ~B_WRITEINPROG;
   1091  1.12   mycroft 
   1092  1.12   mycroft 	    /*
   1093  1.12   mycroft 	     * For an interrupted write, the buffer is still valid and the
   1094  1.12   mycroft 	     * write hasn't been pushed to the server yet, so we can't set
   1095  1.12   mycroft 	     * B_ERROR and report the interruption by setting B_EINTR. For
   1096  1.12   mycroft 	     * the B_ASYNC case, B_EINTR is not relevant, so the rpc attempt
   1097  1.12   mycroft 	     * is essentially a noop.
   1098  1.24      fvdl 	     * For the case of a V3 write rpc not being committed to stable
   1099  1.24      fvdl 	     * storage, the block is still dirty and requires either a commit
   1100  1.24      fvdl 	     * rpc or another write rpc with iomode == NFSV3WRITE_FILESYNC
   1101  1.24      fvdl 	     * before the block is reused. This is indicated by setting the
   1102  1.24      fvdl 	     * B_DELWRI and B_NEEDCOMMIT flags.
   1103  1.12   mycroft 	     */
   1104  1.24      fvdl 	    if (error == EINTR || (!error && (bp->b_flags & B_NEEDCOMMIT))) {
   1105  1.12   mycroft 		bp->b_flags |= B_DELWRI;
   1106  1.12   mycroft 
   1107  1.12   mycroft 		/*
   1108  1.12   mycroft 		 * Since for the B_ASYNC case, nfs_bwrite() has reassigned the
   1109  1.12   mycroft 		 * buffer to the clean list, we have to reassign it back to the
   1110  1.12   mycroft 		 * dirty one. Ugh.
   1111  1.12   mycroft 		 */
   1112  1.46      fvdl 		if (bp->b_flags & B_ASYNC) {
   1113  1.12   mycroft 		    reassignbuf(bp, vp);
   1114  1.46      fvdl 		} else if (error)
   1115  1.12   mycroft 		    bp->b_flags |= B_EINTR;
   1116  1.12   mycroft 	    } else {
   1117  1.12   mycroft 		if (error) {
   1118  1.12   mycroft 		    bp->b_flags |= B_ERROR;
   1119  1.12   mycroft 		    bp->b_error = np->n_error = error;
   1120  1.12   mycroft 		    np->n_flag |= NWRITEERR;
   1121   1.1       cgd 		}
   1122  1.12   mycroft 		bp->b_dirtyoff = bp->b_dirtyend = 0;
   1123  1.12   mycroft 	    }
   1124  1.47      fvdl 	    splx(s);
   1125   1.1       cgd 	}
   1126  1.12   mycroft 	bp->b_resid = uiop->uio_resid;
   1127  1.24      fvdl 	if (must_commit)
   1128  1.24      fvdl 		nfs_clearcommit(vp->v_mount);
   1129  1.12   mycroft 	biodone(bp);
   1130   1.1       cgd 	return (error);
   1131   1.1       cgd }
   1132