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