b7cd2c7f874dfb2fb460f57c161c5469c7b4a9fb
[dragonfly.git] / sys / vfs / ufs / ffs_rawread.c
1 /*-
2  * Copyright (c) 2000-2003 Tor Egge
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/ufs/ffs/ffs_rawread.c,v 1.3.2.2 2003/05/29 06:15:35 alc Exp $
27  * $DragonFly: src/sys/vfs/ufs/ffs_rawread.c,v 1.17 2006/03/25 21:31:21 swildner Exp $
28  */
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/fcntl.h>
33 #include <sys/file.h>
34 #include <sys/stat.h>
35 #include <sys/proc.h>
36 #include <sys/mount.h>
37 #include <sys/namei.h>
38 #include <sys/vnode.h>
39 #include <sys/conf.h>
40 #include <sys/filio.h>
41 #include <sys/ttycom.h>
42 #include <sys/buf.h>
43 #include "quota.h"
44 #include "inode.h"
45 #include "fs.h"
46
47 #include <machine/limits.h>
48 #include <vm/vm.h>
49 #include <vm/vm_extern.h>
50 #include <vm/vm_object.h>
51 #include <sys/kernel.h>
52 #include <sys/sysctl.h>
53
54 static int ffs_rawread_readahead(struct vnode *vp, caddr_t udata, off_t offset,
55                                  size_t len, struct thread *td, struct buf *bp,
56                                  caddr_t sa, int *baseticks);
57 static int ffs_rawread_main(struct vnode *vp,
58                             struct uio *uio);
59
60 static int ffs_rawread_sync(struct vnode *vp, struct thread *td);
61
62 int ffs_rawread(struct vnode *vp, struct uio *uio, int *workdone);
63
64 void ffs_rawread_setup(void);
65
66 static void ffs_rawreadwakeup(struct bio *bio);
67
68
69 SYSCTL_DECL(_vfs_ffs);
70
71 static int ffsrawbufcnt = 4;
72 SYSCTL_INT(_vfs_ffs, OID_AUTO, ffsrawbufcnt, CTLFLAG_RD, &ffsrawbufcnt, 0,
73            "Buffers available for raw reads");
74
75 static int allowrawread = 1;
76 SYSCTL_INT(_vfs_ffs, OID_AUTO, allowrawread, CTLFLAG_RW, &allowrawread, 0,
77            "Flag to enable raw reads");
78
79 static int rawreadahead = 1;
80 SYSCTL_INT(_vfs_ffs, OID_AUTO, rawreadahead, CTLFLAG_RW, &rawreadahead, 0,
81            "Flag to enable readahead for long raw reads");
82
83
84 void
85 ffs_rawread_setup(void)
86 {
87         ffsrawbufcnt = (nswbuf > 100 ) ? (nswbuf - (nswbuf >> 4)) : nswbuf - 8;
88 }
89
90
91 static int
92 ffs_rawread_sync(struct vnode *vp, struct thread *td)
93 {
94         int error;
95         int upgraded;
96
97         /* Check for dirty mmap, pending writes and dirty buffers */
98         crit_enter();
99         if (vp->v_track_write.bk_active > 0 ||
100             !RB_EMPTY(&vp->v_rbdirty_tree) ||
101             (vp->v_flag & VOBJDIRTY) != 0) {
102                 crit_exit();
103
104                 if (VOP_ISLOCKED(vp, td) != LK_EXCLUSIVE) {
105                         upgraded = 1;
106                         /* Upgrade to exclusive lock, this might block */
107                         VOP_LOCK(vp, LK_UPGRADE | LK_NOPAUSE, td);
108                 } else
109                         upgraded = 0;
110                 
111                 /* Attempt to msync mmap() regions to clean dirty mmap */ 
112                 if ((vp->v_flag & VOBJDIRTY) != 0) {
113                         struct vm_object *obj;
114                         if (VOP_GETVOBJECT(vp, &obj) == 0)
115                                 vm_object_page_clean(obj, 0, 0, OBJPC_SYNC);
116                 }
117
118                 /* Wait for pending writes to complete */
119                 crit_enter();
120                 while (vp->v_track_write.bk_active) {
121                         vp->v_track_write.bk_waitflag = 1;
122                         error = tsleep(&vp->v_track_write, 0, "rawrdfls", 0);
123                         if (error != 0) {
124                                 crit_exit();
125                                 if (upgraded != 0)
126                                         VOP_LOCK(vp, LK_DOWNGRADE, td);
127                                 return (error);
128                         }
129                 }
130                 /* Flush dirty buffers */
131                 if (!RB_EMPTY(&vp->v_rbdirty_tree)) {
132                         crit_exit();
133                         if ((error = VOP_FSYNC(vp, MNT_WAIT, td)) != 0) {
134                                 if (upgraded != 0)
135                                         VOP_LOCK(vp, LK_DOWNGRADE, td);
136                                 return (error);
137                         }
138                         crit_enter();
139                         if (vp->v_track_write.bk_active > 0 ||
140                             !RB_EMPTY(&vp->v_rbdirty_tree))
141                                 panic("ffs_rawread_sync: dirty bufs");
142                 }
143                 crit_exit();
144                 if (upgraded != 0)
145                         VOP_LOCK(vp, LK_DOWNGRADE, td);
146         } else {
147                 crit_exit();
148         }
149         return 0;
150 }
151
152
153 static int
154 ffs_rawread_readahead(struct vnode *vp, caddr_t udata, off_t loffset,
155                       size_t len, struct thread *td, struct buf *bp,
156                       caddr_t sa, int *baseticks)
157 {
158         int error;
159         uint iolen;
160         int blockoff;
161         int bsize;
162         struct vnode *dp;
163         int bforwards;
164         
165         bsize = vp->v_mount->mnt_stat.f_iosize;
166         
167         iolen = ((vm_offset_t) udata) & PAGE_MASK;
168         bp->b_bcount = len;
169         if (bp->b_bcount + iolen > bp->b_kvasize) {
170                 bp->b_bcount = bp->b_kvasize;
171                 if (iolen != 0)
172                         bp->b_bcount -= PAGE_SIZE;
173         }
174         bp->b_flags = B_PHYS | B_READ;
175         bp->b_data = udata;
176         bp->b_saveaddr = sa;
177         bp->b_loffset = loffset;
178         bp->b_bio2.bio_offset = NOOFFSET;
179         bp->b_bio2.bio_done = ffs_rawreadwakeup;
180
181         blockoff = (loffset % bsize) / DEV_BSIZE;
182
183         error = VOP_BMAP(vp, bp->b_loffset, &dp, &bp->b_bio2.bio_offset,
184                          &bforwards, NULL);
185         if (error != 0) {
186                 return error;
187         }
188         if (bp->b_bio2.bio_offset == NOOFFSET) {
189                 /* 
190                  * Fill holes with NULs to preserve semantics 
191                  */
192                 if (bp->b_bcount + blockoff * DEV_BSIZE > bsize)
193                         bp->b_bcount = bsize - blockoff * DEV_BSIZE;
194                 bp->b_bufsize = bp->b_bcount;
195                 
196                 if (vmapbuf(bp) < 0)
197                         return EFAULT;
198                 
199                 if (ticks - *baseticks >= hogticks) {
200                         *baseticks = ticks;
201                         uio_yield();
202                 }
203                 bzero(bp->b_data, bp->b_bufsize);
204
205                 /* Mark operation completed (similar to bufdone()) */
206
207                 bp->b_resid = 0;
208                 bp->b_flags |= B_DONE;
209                 return 0;
210         }
211         
212         if (bp->b_bcount + blockoff * DEV_BSIZE > bforwards)
213                 bp->b_bcount = bforwards - blockoff * DEV_BSIZE;
214         bp->b_bufsize = bp->b_bcount;
215         bp->b_bio2.bio_offset += blockoff * DEV_BSIZE;
216         
217         if (vmapbuf(bp) < 0)
218                 return EFAULT;
219         
220         /*
221          * Access the block device layer using the device vnode (dp) and
222          * the translated block number (bio2) instead of the logical block
223          * number (bio1).
224          *
225          * Even though we are bypassing the vnode layer, we still
226          * want the vnode state to indicate that an I/O on its behalf
227          * is in progress.
228          */
229         bio_start_transaction(&bp->b_bio1, &vp->v_track_read);
230         vn_strategy(dp, &bp->b_bio2);
231         return 0;
232 }
233
234
235 static int
236 ffs_rawread_main(struct vnode *vp, struct uio *uio)
237 {
238         int error, nerror;
239         struct buf *bp, *nbp, *tbp;
240         caddr_t sa, nsa, tsa;
241         uint iolen;
242         int baseticks = ticks;
243         caddr_t udata;
244         int resid;
245         off_t offset;
246         struct thread *td;
247         
248         td = uio->uio_td ? uio->uio_td : curthread;
249         udata = uio->uio_iov->iov_base;
250         resid = uio->uio_resid;
251         offset = uio->uio_offset;
252
253         error = 0;
254         nerror = 0;
255         
256         bp = NULL;
257         nbp = NULL;
258         sa = NULL;
259         nsa = NULL;
260         
261         while (resid > 0) {
262                 
263                 if (bp == NULL) { /* Setup first read */
264                         /* XXX: Leave some bufs for swap */
265                         bp = getpbuf(&ffsrawbufcnt);
266                         sa = bp->b_data;
267                         bp->b_vp = vp; 
268                         error = ffs_rawread_readahead(vp, udata, offset, resid,
269                                     td, bp, sa, &baseticks);
270                         if (error != 0)
271                                 break;
272                         
273                         if (resid > bp->b_bufsize) { /* Setup fist readahead */
274                                 /* XXX: Leave bufs for swap */
275                                 if (rawreadahead != 0) 
276                                         nbp = trypbuf(&ffsrawbufcnt);
277                                 else
278                                         nbp = NULL;
279                                 if (nbp != NULL) {
280                                         nsa = nbp->b_data;
281                                         nbp->b_vp = vp;
282                                         
283                                         nerror = ffs_rawread_readahead(
284                                                         vp, 
285                                                         udata + bp->b_bufsize,
286                                                         offset + bp->b_bufsize,
287                                                         resid - bp->b_bufsize,
288                                                         td, nbp, nsa,
289                                                         &baseticks);
290                                         if (nerror) {
291                                                 relpbuf(nbp, &ffsrawbufcnt);
292                                                 nbp = NULL;
293                                         }
294                                 }
295                         }
296                 }
297                 
298                 crit_enter();
299                 while ((bp->b_flags & B_DONE) == 0) {
300                         tsleep((caddr_t)&bp->b_bio2, 0, "rawrd", 0);
301                 }
302                 crit_exit();
303                 
304                 vunmapbuf(bp);
305                 
306                 iolen = bp->b_bcount - bp->b_resid;
307                 if (iolen == 0 && (bp->b_flags & B_ERROR) == 0) {
308                         nerror = 0;     /* Ignore possible beyond EOF error */
309                         break; /* EOF */
310                 }
311                 
312                 if ((bp->b_flags & B_ERROR) != 0) {
313                         error = bp->b_error;
314                         break;
315                 }
316                 clearbiocache(&bp->b_bio2);
317                 resid -= iolen;
318                 udata += iolen;
319                 offset += iolen;
320                 if (iolen < bp->b_bufsize) {
321                         /* Incomplete read.  Try to read remaining part */
322                         error = ffs_rawread_readahead(
323                                     vp, udata, offset,
324                                     bp->b_bufsize - iolen, td, bp,
325                                     sa, &baseticks);
326                         if (error != 0)
327                                 break;
328                 } else if (nbp != NULL) { /* Complete read with readahead */
329                         
330                         tbp = bp;
331                         bp = nbp;
332                         nbp = tbp;
333                         
334                         tsa = sa;
335                         sa = nsa;
336                         nsa = tsa;
337
338                         clearbiocache(&nbp->b_bio2);
339                         
340                         if (resid <= bp->b_bufsize) { /* No more readaheads */
341                                 relpbuf(nbp, &ffsrawbufcnt);
342                                 nbp = NULL;
343                         } else { /* Setup next readahead */
344                                 nerror = ffs_rawread_readahead(
345                                                 vp, udata + bp->b_bufsize,
346                                                 offset + bp->b_bufsize,
347                                                 resid - bp->b_bufsize,
348                                                 td, nbp, nsa, &baseticks);
349                                 if (nerror != 0) {
350                                         relpbuf(nbp, &ffsrawbufcnt);
351                                         nbp = NULL;
352                                 }
353                         }
354                 } else if (nerror != 0) {/* Deferred Readahead error */
355                         break;          
356                 }  else if (resid > 0) { /* More to read, no readahead */
357                         error = ffs_rawread_readahead(vp, udata, offset,
358                                                       resid, td, bp, sa,
359                                                       &baseticks);
360                         if (error != 0)
361                                 break;
362                 }
363         }
364         
365         if (bp != NULL)
366                 relpbuf(bp, &ffsrawbufcnt);
367         if (nbp != NULL) {                      /* Run down readahead buffer */
368                 crit_enter();
369                 while ((nbp->b_flags & B_DONE) == 0) {
370                         tsleep(&nbp->b_bio2, 0, "rawrd", 0);
371                 }
372                 crit_exit();
373                 vunmapbuf(nbp);
374                 relpbuf(nbp, &ffsrawbufcnt);
375         }
376         
377         if (error == 0)
378                 error = nerror;
379         uio->uio_iov->iov_base = udata;
380         uio->uio_resid = resid;
381         uio->uio_offset = offset;
382         return error;
383 }
384
385
386 int
387 ffs_rawread(struct vnode *vp,
388             struct uio *uio,
389             int *workdone)
390 {
391         if (allowrawread != 0 &&
392             uio->uio_iovcnt == 1 && 
393             uio->uio_segflg == UIO_USERSPACE &&
394             uio->uio_resid == uio->uio_iov->iov_len &&
395             (((uio->uio_td != NULL) ? uio->uio_td : curthread)->td_flags &
396              TDF_DEADLKTREAT) == 0) {
397                 int secsize;            /* Media sector size */
398                 off_t filebytes;        /* Bytes left of file */
399                 int blockbytes;         /* Bytes left of file in full blocks */
400                 int partialbytes;       /* Bytes in last partial block */
401                 int skipbytes;          /* Bytes not to read in ffs_rawread */
402                 struct inode *ip;
403                 int error;
404                 
405
406                 /* Only handle sector aligned reads */
407                 ip = VTOI(vp);
408                 secsize = ip->i_devvp->v_rdev->si_bsize_phys;
409                 if ((uio->uio_offset & (secsize - 1)) == 0 &&
410                     (uio->uio_resid & (secsize - 1)) == 0) {
411                         
412                         /* Sync dirty pages and buffers if needed */
413                         error = ffs_rawread_sync(vp,
414                                                  (uio->uio_td != NULL) ?
415                                                  uio->uio_td : curthread);
416                         if (error != 0)
417                                 return error;
418                         
419                         /* Check for end of file */
420                         if (ip->i_size > uio->uio_offset) {
421                                 filebytes = ip->i_size - uio->uio_offset;
422
423                                 /* No special eof handling needed ? */
424                                 if (uio->uio_resid <= filebytes) {
425                                         *workdone = 1;
426                                         return ffs_rawread_main(vp, uio);
427                                 }
428                                 
429                                 partialbytes = ((unsigned int) ip->i_size) %
430                                         ip->i_fs->fs_bsize;
431                                 blockbytes = (int) filebytes - partialbytes;
432                                 if (blockbytes > 0) {
433                                         skipbytes = uio->uio_resid -
434                                                 blockbytes;
435                                         uio->uio_resid = blockbytes;
436                                         error = ffs_rawread_main(vp, uio);
437                                         uio->uio_resid += skipbytes;
438                                         if (error != 0)
439                                                 return error;
440                                         /* Read remaining part using buffer */
441                                 }
442                         }
443                 }
444         }
445         *workdone = 0;
446         return 0;
447 }
448
449
450 static void
451 ffs_rawreadwakeup(struct bio *bio)
452 {
453         wakeup(bio);
454 }