a730467d3869ff38322340789079afa941235ad4
[dragonfly.git] / sys / vm / vm_pager.c
1 /*
2  * Copyright (c) 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * The Mach Operating System project at Carnegie-Mellon University.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      from: @(#)vm_pager.c    8.6 (Berkeley) 1/12/94
37  *
38  *
39  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
40  * All rights reserved.
41  *
42  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
43  *
44  * Permission to use, copy, modify and distribute this software and
45  * its documentation is hereby granted, provided that both the copyright
46  * notice and this permission notice appear in all copies of the
47  * software, derivative works or modified versions, and any portions
48  * thereof, and that both notices appear in supporting documentation.
49  *
50  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
51  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
52  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
53  *
54  * Carnegie Mellon requests users of this software to return to
55  *
56  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
57  *  School of Computer Science
58  *  Carnegie Mellon University
59  *  Pittsburgh PA 15213-3890
60  *
61  * any improvements or extensions that they make and grant Carnegie the
62  * rights to redistribute these changes.
63  *
64  * $FreeBSD: src/sys/vm/vm_pager.c,v 1.54.2.2 2001/11/18 07:11:00 dillon Exp $
65  * $DragonFly: src/sys/vm/vm_pager.c,v 1.9 2004/03/23 22:54:32 dillon Exp $
66  */
67
68 /*
69  *      Paging space routine stubs.  Emulates a matchmaker-like interface
70  *      for builtin pagers.
71  */
72
73 #include <sys/param.h>
74 #include <sys/systm.h>
75 #include <sys/kernel.h>
76 #include <sys/vnode.h>
77 #include <sys/buf.h>
78 #include <sys/ucred.h>
79 #include <sys/malloc.h>
80 #include <sys/proc.h>
81
82 #include <vm/vm.h>
83 #include <vm/vm_param.h>
84 #include <vm/vm_object.h>
85 #include <vm/vm_page.h>
86 #include <vm/vm_pager.h>
87 #include <vm/vm_extern.h>
88
89 #include <sys/buf2.h>
90
91 MALLOC_DEFINE(M_VMPGDATA, "VM pgdata", "XXX: VM pager private data");
92
93 extern struct pagerops defaultpagerops;
94 extern struct pagerops swappagerops;
95 extern struct pagerops vnodepagerops;
96 extern struct pagerops devicepagerops;
97 extern struct pagerops physpagerops;
98
99 int cluster_pbuf_freecnt = -1;  /* unlimited to begin with */
100
101 static int dead_pager_getpages (vm_object_t, vm_page_t *, int, int);
102 static vm_object_t dead_pager_alloc (void *, vm_ooffset_t, vm_prot_t,
103         vm_ooffset_t);
104 static void dead_pager_putpages (vm_object_t, vm_page_t *, int, int, int *);
105 static boolean_t dead_pager_haspage (vm_object_t, vm_pindex_t, int *, int *);
106 static void dead_pager_dealloc (vm_object_t);
107
108 static int
109 dead_pager_getpages(vm_object_t obj, vm_page_t *ma, int count, int req)
110 {
111         return VM_PAGER_FAIL;
112 }
113
114 static vm_object_t
115 dead_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot,
116     vm_ooffset_t off)
117 {
118         return NULL;
119 }
120
121 static void
122 dead_pager_putpages(vm_object_t object, vm_page_t *m, int count, int flags,
123     int *rtvals)
124 {
125         int i;
126
127         for (i = 0; i < count; i++) {
128                 rtvals[i] = VM_PAGER_AGAIN;
129         }
130 }
131
132 static int
133 dead_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *prev, int *next)
134 {
135         if (prev)
136                 *prev = 0;
137         if (next)
138                 *next = 0;
139         return FALSE;
140 }
141
142 static void
143 dead_pager_dealloc(vm_object_t object)
144 {
145         return;
146 }
147
148 static struct pagerops deadpagerops = {
149         NULL,
150         dead_pager_alloc,
151         dead_pager_dealloc,
152         dead_pager_getpages,
153         dead_pager_putpages,
154         dead_pager_haspage,
155         NULL
156 };
157
158 struct pagerops *pagertab[] = {
159         &defaultpagerops,       /* OBJT_DEFAULT */
160         &swappagerops,          /* OBJT_SWAP */
161         &vnodepagerops,         /* OBJT_VNODE */
162         &devicepagerops,        /* OBJT_DEVICE */
163         &physpagerops,          /* OBJT_PHYS */
164         &deadpagerops           /* OBJT_DEAD */
165 };
166
167 int npagers = sizeof(pagertab) / sizeof(pagertab[0]);
168
169 /*
170  * Kernel address space for mapping pages.
171  * Used by pagers where KVAs are needed for IO.
172  *
173  * XXX needs to be large enough to support the number of pending async
174  * cleaning requests (NPENDINGIO == 64) * the maximum swap cluster size
175  * (MAXPHYS == 64k) if you want to get the most efficiency.
176  */
177 #define PAGER_MAP_SIZE  (8 * 1024 * 1024)
178
179 int pager_map_size = PAGER_MAP_SIZE;
180 vm_map_t pager_map;
181 static int bswneeded;
182 static vm_offset_t swapbkva;            /* swap buffers kva */
183
184 void
185 vm_pager_init(void)
186 {
187         struct pagerops **pgops;
188
189         /*
190          * Initialize known pagers
191          */
192         for (pgops = pagertab; pgops < &pagertab[npagers]; pgops++)
193                 if (pgops && ((*pgops)->pgo_init != NULL))
194                         (*(*pgops)->pgo_init) ();
195 }
196
197 void
198 vm_pager_bufferinit(void)
199 {
200         struct buf *bp;
201         int i;
202
203         bp = swbuf;
204         /*
205          * Now set up swap and physical I/O buffer headers.
206          */
207         for (i = 0; i < nswbuf; i++, bp++) {
208                 TAILQ_INSERT_HEAD(&bswlist, bp, b_freelist);
209                 BUF_LOCKINIT(bp);
210                 LIST_INIT(&bp->b_dep);
211                 bp->b_xflags = 0;
212         }
213
214         cluster_pbuf_freecnt = nswbuf / 2;
215
216         swapbkva = kmem_alloc_pageable(pager_map, nswbuf * MAXPHYS);
217         if (!swapbkva)
218                 panic("Not enough pager_map VM space for physical buffers");
219 }
220
221 /*
222  * Allocate an instance of a pager of the given type.
223  * Size, protection and offset parameters are passed in for pagers that
224  * need to perform page-level validation (e.g. the device pager).
225  */
226 vm_object_t
227 vm_pager_allocate(objtype_t type, void *handle, vm_ooffset_t size, vm_prot_t prot,
228                   vm_ooffset_t off)
229 {
230         struct pagerops *ops;
231
232         ops = pagertab[type];
233         if (ops)
234                 return ((*ops->pgo_alloc) (handle, size, prot, off));
235         return (NULL);
236 }
237
238 void
239 vm_pager_deallocate(vm_object_t object)
240 {
241         (*pagertab[object->type]->pgo_dealloc) (object);
242 }
243
244 /*
245  *      vm_pager_strategy:
246  *
247  *      called with no specific spl
248  *      Execute strategy routine directly to pager.
249  */
250
251 void
252 vm_pager_strategy(vm_object_t object, struct buf *bp)
253 {
254         if (pagertab[object->type]->pgo_strategy) {
255             (*pagertab[object->type]->pgo_strategy)(object, bp);
256         } else {
257                 bp->b_flags |= B_ERROR;
258                 bp->b_error = ENXIO;
259                 biodone(bp);
260         }
261 }
262
263 /*
264  * vm_pager_get_pages() - inline, see vm/vm_pager.h
265  * vm_pager_put_pages() - inline, see vm/vm_pager.h
266  * vm_pager_has_page() - inline, see vm/vm_pager.h
267  * vm_pager_page_inserted() - inline, see vm/vm_pager.h
268  * vm_pager_page_removed() - inline, see vm/vm_pager.h
269  */
270
271 #if 0
272 /*
273  *      vm_pager_sync:
274  *
275  *      Called by pageout daemon before going back to sleep.
276  *      Gives pagers a chance to clean up any completed async pageing 
277  *      operations.
278  */
279 void
280 vm_pager_sync(void)
281 {
282         struct pagerops **pgops;
283
284         for (pgops = pagertab; pgops < &pagertab[npagers]; pgops++)
285                 if (pgops && ((*pgops)->pgo_sync != NULL))
286                         (*(*pgops)->pgo_sync) ();
287 }
288
289 #endif
290
291 vm_offset_t
292 vm_pager_map_page(vm_page_t m)
293 {
294         vm_offset_t kva;
295
296         kva = kmem_alloc_wait(pager_map, PAGE_SIZE);
297         pmap_kenter(kva, VM_PAGE_TO_PHYS(m));
298         return (kva);
299 }
300
301 void
302 vm_pager_unmap_page(vm_offset_t kva)
303 {
304         pmap_kremove(kva);
305         kmem_free_wakeup(pager_map, kva, PAGE_SIZE);
306 }
307
308 vm_object_t
309 vm_pager_object_lookup(struct pagerlst *pg_list, void *handle)
310 {
311         vm_object_t object;
312
313         for (object = TAILQ_FIRST(pg_list); object != NULL; object = TAILQ_NEXT(object,pager_object_list))
314                 if (object->handle == handle)
315                         return (object);
316         return (NULL);
317 }
318
319 /*
320  * initialize a physical buffer
321  */
322
323 static void
324 initpbuf(struct buf *bp)
325 {
326         bp->b_qindex = QUEUE_NONE;
327         bp->b_data = (caddr_t) (MAXPHYS * (bp - swbuf)) + swapbkva;
328         bp->b_kvabase = bp->b_data;
329         bp->b_kvasize = MAXPHYS;
330         bp->b_xflags = 0;
331         bp->b_flags = 0;
332         bp->b_error = 0;
333         BUF_LOCK(bp, LK_EXCLUSIVE);
334 }
335
336 /*
337  * allocate a physical buffer
338  *
339  *      There are a limited number (nswbuf) of physical buffers.  We need
340  *      to make sure that no single subsystem is able to hog all of them,
341  *      so each subsystem implements a counter which is typically initialized
342  *      to 1/2 nswbuf.  getpbuf() decrements this counter in allocation and
343  *      increments it on release, and blocks if the counter hits zero.  A
344  *      subsystem may initialize the counter to -1 to disable the feature,
345  *      but it must still be sure to match up all uses of getpbuf() with 
346  *      relpbuf() using the same variable.
347  *
348  *      NOTE: pfreecnt can be NULL, but this 'feature' will be removed
349  *      relatively soon when the rest of the subsystems get smart about it. XXX
350  */
351 struct buf *
352 getpbuf(int *pfreecnt)
353 {
354         int s;
355         struct buf *bp;
356
357         s = splvm();
358
359         for (;;) {
360                 if (pfreecnt) {
361                         while (*pfreecnt == 0) {
362                                 tsleep(pfreecnt, 0, "wswbuf0", 0);
363                         }
364                 }
365
366                 /* get a bp from the swap buffer header pool */
367                 if ((bp = TAILQ_FIRST(&bswlist)) != NULL)
368                         break;
369
370                 bswneeded = 1;
371                 tsleep(&bswneeded, 0, "wswbuf1", 0);
372                 /* loop in case someone else grabbed one */
373         }
374         TAILQ_REMOVE(&bswlist, bp, b_freelist);
375         if (pfreecnt)
376                 --*pfreecnt;
377         splx(s);
378
379         initpbuf(bp);
380         return bp;
381 }
382
383 /*
384  * allocate a physical buffer, if one is available.
385  *
386  *      Note that there is no NULL hack here - all subsystems using this
387  *      call understand how to use pfreecnt.
388  */
389 struct buf *
390 trypbuf(int *pfreecnt)
391 {
392         int s;
393         struct buf *bp;
394
395         s = splvm();
396         if (*pfreecnt == 0 || (bp = TAILQ_FIRST(&bswlist)) == NULL) {
397                 splx(s);
398                 return NULL;
399         }
400         TAILQ_REMOVE(&bswlist, bp, b_freelist);
401
402         --*pfreecnt;
403
404         splx(s);
405
406         initpbuf(bp);
407
408         return bp;
409 }
410
411 /*
412  * release a physical buffer
413  *
414  *      NOTE: pfreecnt can be NULL, but this 'feature' will be removed
415  *      relatively soon when the rest of the subsystems get smart about it. XXX
416  */
417 void
418 relpbuf(struct buf *bp, int *pfreecnt)
419 {
420         int s;
421
422         s = splvm();
423
424         if (bp->b_vp)
425                 pbrelvp(bp);
426
427         BUF_UNLOCK(bp);
428
429         TAILQ_INSERT_HEAD(&bswlist, bp, b_freelist);
430
431         if (bswneeded) {
432                 bswneeded = 0;
433                 wakeup(&bswneeded);
434         }
435         if (pfreecnt) {
436                 if (++*pfreecnt == 1)
437                         wakeup(pfreecnt);
438         }
439         splx(s);
440 }
441
442 /********************************************************
443  *              CHAINING FUNCTIONS                      *
444  ********************************************************
445  *
446  *      These functions support recursion of I/O operations
447  *      on bp's, typically by chaining one or more 'child' bp's
448  *      to the parent.  Synchronous, asynchronous, and semi-synchronous
449  *      chaining is possible.
450  */
451
452 /*
453  *      vm_pager_chain_iodone:
454  *
455  *      io completion routine for child bp.  Currently we fudge a bit
456  *      on dealing with b_resid.   Since users of these routines may issue
457  *      multiple children simultaniously, sequencing of the error can be lost.
458  */
459
460 static void
461 vm_pager_chain_iodone(struct buf *nbp)
462 {
463         struct buf *bp;
464
465         if ((bp = nbp->b_chain.parent) != NULL) {
466                 if (nbp->b_flags & B_ERROR) {
467                         bp->b_flags |= B_ERROR;
468                         bp->b_error = nbp->b_error;
469                 } else if (nbp->b_resid != 0) {
470                         bp->b_flags |= B_ERROR;
471                         bp->b_error = EINVAL;
472                 } else {
473                         bp->b_resid -= nbp->b_bcount;
474                 }
475                 nbp->b_chain.parent = NULL;
476                 --bp->b_chain.count;
477                 if (bp->b_flags & B_WANT) {
478                         bp->b_flags &= ~B_WANT;
479                         wakeup(bp);
480                 }
481                 if (!bp->b_chain.count && (bp->b_xflags & BX_AUTOCHAINDONE)) {
482                         bp->b_xflags &= ~BX_AUTOCHAINDONE;
483                         if (bp->b_resid != 0 && !(bp->b_flags & B_ERROR)) {
484                                 bp->b_flags |= B_ERROR;
485                                 bp->b_error = EINVAL;
486                         }
487                         biodone(bp);
488                 }
489         }
490         nbp->b_flags |= B_DONE;
491         nbp->b_flags &= ~B_ASYNC;
492         relpbuf(nbp, NULL);
493 }
494
495 /*
496  *      getchainbuf:
497  *
498  *      Obtain a physical buffer and chain it to its parent buffer.  When
499  *      I/O completes, the parent buffer will be B_SIGNAL'd.  Errors are
500  *      automatically propogated to the parent
501  *
502  *      Since these are brand new buffers, we do not have to clear B_INVAL
503  *      and B_ERROR because they are already clear.
504  */
505
506 struct buf *
507 getchainbuf(struct buf *bp, struct vnode *vp, int flags)
508 {
509         struct buf *nbp = getpbuf(NULL);
510
511         nbp->b_chain.parent = bp;
512         ++bp->b_chain.count;
513
514         if (bp->b_chain.count > 4)
515                 waitchainbuf(bp, 4, 0);
516
517         nbp->b_flags = B_CALL | (bp->b_flags & B_ORDERED) | flags;
518         nbp->b_iodone = vm_pager_chain_iodone;
519
520         if (vp)
521                 pbgetvp(vp, nbp);
522         return(nbp);
523 }
524
525 void
526 flushchainbuf(struct buf *nbp)
527 {
528         if (nbp->b_bcount) {
529                 nbp->b_bufsize = nbp->b_bcount;
530                 if ((nbp->b_flags & B_READ) == 0)
531                         nbp->b_dirtyend = nbp->b_bcount;
532                 BUF_KERNPROC(nbp);
533                 VOP_STRATEGY(nbp->b_vp, nbp);
534         } else {
535                 biodone(nbp);
536         }
537 }
538
539 void
540 waitchainbuf(struct buf *bp, int count, int done)
541 {
542         int s;
543
544         s = splbio();
545         while (bp->b_chain.count > count) {
546                 bp->b_flags |= B_WANT;
547                 tsleep(bp, 0, "bpchain", 0);
548         }
549         if (done) {
550                 if (bp->b_resid != 0 && !(bp->b_flags & B_ERROR)) {
551                         bp->b_flags |= B_ERROR;
552                         bp->b_error = EINVAL;
553                 }
554                 biodone(bp);
555         }
556         splx(s);
557 }
558
559 void
560 autochaindone(struct buf *bp)
561 {
562         int s;
563
564         s = splbio();
565         if (bp->b_chain.count == 0)
566                 biodone(bp);
567         else
568                 bp->b_xflags |= BX_AUTOCHAINDONE;
569         splx(s);
570 }