Home | History | Annotate | Line # | Download | only in rumpkern
vm.c revision 1.80
      1  1.80  pooka /*	$NetBSD: vm.c,v 1.80 2010/06/03 10:56:20 pooka Exp $	*/
      2   1.1  pooka 
      3   1.1  pooka /*
      4  1.76  pooka  * Copyright (c) 2007-2010 Antti Kantee.  All Rights Reserved.
      5   1.1  pooka  *
      6  1.76  pooka  * Development of this software was supported by
      7  1.76  pooka  * The Finnish Cultural Foundation and the Research Foundation of
      8  1.76  pooka  * The Helsinki University of Technology.
      9   1.1  pooka  *
     10   1.1  pooka  * Redistribution and use in source and binary forms, with or without
     11   1.1  pooka  * modification, are permitted provided that the following conditions
     12   1.1  pooka  * are met:
     13   1.1  pooka  * 1. Redistributions of source code must retain the above copyright
     14   1.1  pooka  *    notice, this list of conditions and the following disclaimer.
     15   1.1  pooka  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  pooka  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  pooka  *    documentation and/or other materials provided with the distribution.
     18   1.1  pooka  *
     19   1.1  pooka  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     20   1.1  pooka  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     21   1.1  pooka  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     22   1.1  pooka  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     23   1.1  pooka  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1  pooka  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     25   1.1  pooka  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1  pooka  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1  pooka  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1  pooka  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1  pooka  * SUCH DAMAGE.
     30   1.1  pooka  */
     31   1.1  pooka 
     32   1.1  pooka /*
     33   1.1  pooka  * Virtual memory emulation routines.  Contents:
     34   1.1  pooka  *  + anon objects & pager
     35   1.1  pooka  *  + misc support routines
     36   1.1  pooka  */
     37   1.1  pooka 
     38   1.1  pooka /*
     39   1.5  pooka  * XXX: we abuse pg->uanon for the virtual address of the storage
     40   1.1  pooka  * for each page.  phys_addr would fit the job description better,
     41   1.1  pooka  * except that it will create unnecessary lossage on some platforms
     42   1.1  pooka  * due to not being a pointer type.
     43   1.1  pooka  */
     44   1.1  pooka 
     45  1.48  pooka #include <sys/cdefs.h>
     46  1.80  pooka __KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.80 2010/06/03 10:56:20 pooka Exp $");
     47  1.48  pooka 
     48   1.1  pooka #include <sys/param.h>
     49  1.40  pooka #include <sys/atomic.h>
     50  1.80  pooka #include <sys/buf.h>
     51  1.80  pooka #include <sys/kernel.h>
     52  1.67  pooka #include <sys/kmem.h>
     53  1.69  pooka #include <sys/mman.h>
     54   1.1  pooka #include <sys/null.h>
     55   1.1  pooka #include <sys/vnode.h>
     56   1.1  pooka 
     57  1.34  pooka #include <machine/pmap.h>
     58  1.34  pooka 
     59  1.34  pooka #include <rump/rumpuser.h>
     60  1.34  pooka 
     61   1.1  pooka #include <uvm/uvm.h>
     62  1.56  pooka #include <uvm/uvm_ddb.h>
     63   1.1  pooka #include <uvm/uvm_prot.h>
     64  1.58     he #include <uvm/uvm_readahead.h>
     65   1.1  pooka 
     66  1.13  pooka #include "rump_private.h"
     67   1.1  pooka 
     68  1.24   yamt static int ao_get(struct uvm_object *, voff_t, struct vm_page **,
     69  1.24   yamt 	int *, int, vm_prot_t, int, int);
     70  1.24   yamt static int ao_put(struct uvm_object *, voff_t, voff_t, int);
     71  1.24   yamt 
     72  1.24   yamt const struct uvm_pagerops aobj_pager = {
     73  1.24   yamt 	.pgo_get = ao_get,
     74  1.24   yamt 	.pgo_put = ao_put,
     75  1.24   yamt };
     76  1.24   yamt 
     77  1.25     ad kmutex_t uvm_pageqlock;
     78  1.25     ad 
     79   1.1  pooka struct uvmexp uvmexp;
     80   1.7  pooka struct uvm uvm;
     81   1.1  pooka 
     82   1.1  pooka struct vmspace rump_vmspace;
     83   1.1  pooka struct vm_map rump_vmmap;
     84  1.50  pooka static struct vm_map_kernel kmem_map_store;
     85  1.50  pooka struct vm_map *kmem_map = &kmem_map_store.vmk_map;
     86  1.32     ad const struct rb_tree_ops uvm_page_tree_ops;
     87   1.1  pooka 
     88  1.35  pooka static struct vm_map_kernel kernel_map_store;
     89  1.35  pooka struct vm_map *kernel_map = &kernel_map_store.vmk_map;
     90  1.35  pooka 
     91  1.80  pooka static unsigned int pdaemon_waiters;
     92  1.80  pooka static kmutex_t pdaemonmtx;
     93  1.80  pooka static kcondvar_t pdaemoncv, oomwait;
     94  1.80  pooka 
     95   1.1  pooka /*
     96   1.1  pooka  * vm pages
     97   1.1  pooka  */
     98   1.1  pooka 
     99  1.22  pooka /* called with the object locked */
    100   1.1  pooka struct vm_page *
    101  1.76  pooka uvm_pagealloc_strat(struct uvm_object *uobj, voff_t off, struct vm_anon *anon,
    102  1.76  pooka 	int flags, int strat, int free_list)
    103   1.1  pooka {
    104   1.1  pooka 	struct vm_page *pg;
    105   1.1  pooka 
    106  1.27  pooka 	pg = kmem_zalloc(sizeof(struct vm_page), KM_SLEEP);
    107   1.1  pooka 	pg->offset = off;
    108   1.5  pooka 	pg->uobject = uobj;
    109   1.1  pooka 
    110  1.76  pooka 	pg->uanon = (void *)kmem_alloc(PAGE_SIZE, KM_SLEEP);
    111  1.76  pooka 	if (flags & UVM_PGA_ZERO)
    112  1.76  pooka 		memset(pg->uanon, 0, PAGE_SIZE);
    113  1.22  pooka 	pg->flags = PG_CLEAN|PG_BUSY|PG_FAKE;
    114   1.1  pooka 
    115  1.31     ad 	TAILQ_INSERT_TAIL(&uobj->memq, pg, listq.queue);
    116  1.59  pooka 	uobj->uo_npages++;
    117  1.21  pooka 
    118   1.1  pooka 	return pg;
    119   1.1  pooka }
    120   1.1  pooka 
    121  1.21  pooka /*
    122  1.21  pooka  * Release a page.
    123  1.21  pooka  *
    124  1.22  pooka  * Called with the vm object locked.
    125  1.21  pooka  */
    126   1.1  pooka void
    127  1.22  pooka uvm_pagefree(struct vm_page *pg)
    128   1.1  pooka {
    129   1.5  pooka 	struct uvm_object *uobj = pg->uobject;
    130   1.1  pooka 
    131  1.22  pooka 	if (pg->flags & PG_WANTED)
    132  1.22  pooka 		wakeup(pg);
    133  1.22  pooka 
    134  1.59  pooka 	uobj->uo_npages--;
    135  1.31     ad 	TAILQ_REMOVE(&uobj->memq, pg, listq.queue);
    136  1.27  pooka 	kmem_free((void *)pg->uanon, PAGE_SIZE);
    137  1.27  pooka 	kmem_free(pg, sizeof(*pg));
    138   1.1  pooka }
    139   1.1  pooka 
    140  1.15  pooka void
    141  1.61  pooka uvm_pagezero(struct vm_page *pg)
    142  1.15  pooka {
    143  1.15  pooka 
    144  1.61  pooka 	pg->flags &= ~PG_CLEAN;
    145  1.61  pooka 	memset((void *)pg->uanon, 0, PAGE_SIZE);
    146  1.15  pooka }
    147  1.15  pooka 
    148   1.1  pooka /*
    149   1.1  pooka  * Anon object stuff
    150   1.1  pooka  */
    151   1.1  pooka 
    152   1.1  pooka static int
    153   1.1  pooka ao_get(struct uvm_object *uobj, voff_t off, struct vm_page **pgs,
    154   1.1  pooka 	int *npages, int centeridx, vm_prot_t access_type,
    155   1.1  pooka 	int advice, int flags)
    156   1.1  pooka {
    157   1.1  pooka 	struct vm_page *pg;
    158   1.1  pooka 	int i;
    159   1.1  pooka 
    160   1.1  pooka 	if (centeridx)
    161   1.1  pooka 		panic("%s: centeridx != 0 not supported", __func__);
    162   1.1  pooka 
    163   1.1  pooka 	/* loop over pages */
    164   1.1  pooka 	off = trunc_page(off);
    165   1.1  pooka 	for (i = 0; i < *npages; i++) {
    166  1.23  pooka  retrylookup:
    167  1.10  pooka 		pg = uvm_pagelookup(uobj, off + (i << PAGE_SHIFT));
    168   1.1  pooka 		if (pg) {
    169  1.23  pooka 			if (pg->flags & PG_BUSY) {
    170  1.23  pooka 				pg->flags |= PG_WANTED;
    171  1.23  pooka 				UVM_UNLOCK_AND_WAIT(pg, &uobj->vmobjlock, 0,
    172  1.23  pooka 				    "aogetpg", 0);
    173  1.23  pooka 				goto retrylookup;
    174  1.23  pooka 			}
    175  1.23  pooka 			pg->flags |= PG_BUSY;
    176   1.1  pooka 			pgs[i] = pg;
    177   1.1  pooka 		} else {
    178  1.76  pooka 			pg = uvm_pagealloc(uobj,
    179  1.76  pooka 			    off + (i << PAGE_SHIFT), NULL, UVM_PGA_ZERO);
    180   1.1  pooka 			pgs[i] = pg;
    181   1.1  pooka 		}
    182   1.1  pooka 	}
    183  1.26  pooka 	mutex_exit(&uobj->vmobjlock);
    184   1.1  pooka 
    185   1.1  pooka 	return 0;
    186   1.1  pooka 
    187   1.1  pooka }
    188   1.1  pooka 
    189   1.1  pooka static int
    190   1.1  pooka ao_put(struct uvm_object *uobj, voff_t start, voff_t stop, int flags)
    191   1.1  pooka {
    192   1.1  pooka 	struct vm_page *pg;
    193   1.1  pooka 
    194   1.1  pooka 	/* we only free all pages for now */
    195  1.23  pooka 	if ((flags & PGO_FREE) == 0 || (flags & PGO_ALLPAGES) == 0) {
    196  1.26  pooka 		mutex_exit(&uobj->vmobjlock);
    197   1.1  pooka 		return 0;
    198  1.23  pooka 	}
    199   1.1  pooka 
    200   1.1  pooka 	while ((pg = TAILQ_FIRST(&uobj->memq)) != NULL)
    201  1.22  pooka 		uvm_pagefree(pg);
    202  1.26  pooka 	mutex_exit(&uobj->vmobjlock);
    203   1.1  pooka 
    204   1.1  pooka 	return 0;
    205   1.1  pooka }
    206   1.1  pooka 
    207   1.1  pooka struct uvm_object *
    208   1.1  pooka uao_create(vsize_t size, int flags)
    209   1.1  pooka {
    210   1.1  pooka 	struct uvm_object *uobj;
    211   1.1  pooka 
    212  1.27  pooka 	uobj = kmem_zalloc(sizeof(struct uvm_object), KM_SLEEP);
    213   1.1  pooka 	uobj->pgops = &aobj_pager;
    214   1.1  pooka 	TAILQ_INIT(&uobj->memq);
    215  1.26  pooka 	mutex_init(&uobj->vmobjlock, MUTEX_DEFAULT, IPL_NONE);
    216   1.1  pooka 
    217   1.1  pooka 	return uobj;
    218   1.1  pooka }
    219   1.1  pooka 
    220   1.1  pooka void
    221   1.1  pooka uao_detach(struct uvm_object *uobj)
    222   1.1  pooka {
    223   1.1  pooka 
    224  1.29  pooka 	mutex_enter(&uobj->vmobjlock);
    225   1.1  pooka 	ao_put(uobj, 0, 0, PGO_ALLPAGES | PGO_FREE);
    226  1.55  pooka 	mutex_destroy(&uobj->vmobjlock);
    227  1.27  pooka 	kmem_free(uobj, sizeof(*uobj));
    228   1.1  pooka }
    229   1.1  pooka 
    230   1.1  pooka /*
    231   1.1  pooka  * Misc routines
    232   1.1  pooka  */
    233   1.1  pooka 
    234  1.61  pooka static kmutex_t pagermtx;
    235  1.61  pooka 
    236   1.1  pooka void
    237  1.79  pooka uvm_init(void)
    238   1.1  pooka {
    239   1.1  pooka 
    240   1.1  pooka 	uvmexp.free = 1024*1024; /* XXX */
    241  1.38  pooka 	rump_vmspace.vm_map.pmap = pmap_kernel();
    242  1.21  pooka 
    243  1.61  pooka 	mutex_init(&pagermtx, MUTEX_DEFAULT, 0);
    244  1.25     ad 	mutex_init(&uvm_pageqlock, MUTEX_DEFAULT, 0);
    245  1.35  pooka 
    246  1.80  pooka 	mutex_init(&pdaemonmtx, MUTEX_DEFAULT, 0);
    247  1.80  pooka 	cv_init(&pdaemoncv, "pdaemon");
    248  1.80  pooka 	cv_init(&oomwait, "oomwait");
    249  1.80  pooka 
    250  1.50  pooka 	kernel_map->pmap = pmap_kernel();
    251  1.35  pooka 	callback_head_init(&kernel_map_store.vmk_reclaim_callback, IPL_VM);
    252  1.50  pooka 	kmem_map->pmap = pmap_kernel();
    253  1.50  pooka 	callback_head_init(&kmem_map_store.vmk_reclaim_callback, IPL_VM);
    254   1.1  pooka }
    255   1.1  pooka 
    256   1.1  pooka 
    257   1.1  pooka void
    258   1.7  pooka uvm_pagewire(struct vm_page *pg)
    259   1.7  pooka {
    260   1.7  pooka 
    261   1.7  pooka 	/* nada */
    262   1.7  pooka }
    263   1.7  pooka 
    264   1.7  pooka void
    265   1.7  pooka uvm_pageunwire(struct vm_page *pg)
    266   1.7  pooka {
    267   1.7  pooka 
    268   1.7  pooka 	/* nada */
    269   1.7  pooka }
    270   1.7  pooka 
    271  1.69  pooka /*
    272  1.69  pooka  * This satisfies the "disgusting mmap hack" used by proplib.
    273  1.69  pooka  * We probably should grow some more assertables to make sure we're
    274  1.69  pooka  * not satisfying anything we shouldn't be satisfying.  At least we
    275  1.69  pooka  * should make sure it's the local machine we're mmapping ...
    276  1.69  pooka  */
    277  1.49  pooka int
    278  1.49  pooka uvm_mmap(struct vm_map *map, vaddr_t *addr, vsize_t size, vm_prot_t prot,
    279  1.49  pooka 	vm_prot_t maxprot, int flags, void *handle, voff_t off, vsize_t locklim)
    280  1.49  pooka {
    281  1.69  pooka 	void *uaddr;
    282  1.69  pooka 	int error;
    283  1.49  pooka 
    284  1.69  pooka 	if (prot != (VM_PROT_READ | VM_PROT_WRITE))
    285  1.69  pooka 		panic("uvm_mmap() variant unsupported");
    286  1.69  pooka 	if (flags != (MAP_PRIVATE | MAP_ANON))
    287  1.69  pooka 		panic("uvm_mmap() variant unsupported");
    288  1.69  pooka 	/* no reason in particular, but cf. uvm_default_mapaddr() */
    289  1.69  pooka 	if (*addr != 0)
    290  1.69  pooka 		panic("uvm_mmap() variant unsupported");
    291  1.69  pooka 
    292  1.69  pooka 	uaddr = rumpuser_anonmmap(size, 0, 0, &error);
    293  1.69  pooka 	if (uaddr == NULL)
    294  1.69  pooka 		return error;
    295  1.69  pooka 
    296  1.69  pooka 	*addr = (vaddr_t)uaddr;
    297  1.69  pooka 	return 0;
    298  1.49  pooka }
    299  1.49  pooka 
    300  1.61  pooka struct pagerinfo {
    301  1.61  pooka 	vaddr_t pgr_kva;
    302  1.61  pooka 	int pgr_npages;
    303  1.61  pooka 	struct vm_page **pgr_pgs;
    304  1.61  pooka 	bool pgr_read;
    305  1.61  pooka 
    306  1.61  pooka 	LIST_ENTRY(pagerinfo) pgr_entries;
    307  1.61  pooka };
    308  1.61  pooka static LIST_HEAD(, pagerinfo) pagerlist = LIST_HEAD_INITIALIZER(pagerlist);
    309  1.61  pooka 
    310  1.61  pooka /*
    311  1.61  pooka  * Pager "map" in routine.  Instead of mapping, we allocate memory
    312  1.61  pooka  * and copy page contents there.  Not optimal or even strictly
    313  1.61  pooka  * correct (the caller might modify the page contents after mapping
    314  1.61  pooka  * them in), but what the heck.  Assumes UVMPAGER_MAPIN_WAITOK.
    315  1.61  pooka  */
    316   1.7  pooka vaddr_t
    317  1.61  pooka uvm_pagermapin(struct vm_page **pgs, int npages, int flags)
    318   1.7  pooka {
    319  1.61  pooka 	struct pagerinfo *pgri;
    320  1.61  pooka 	vaddr_t curkva;
    321  1.61  pooka 	int i;
    322  1.61  pooka 
    323  1.61  pooka 	/* allocate structures */
    324  1.61  pooka 	pgri = kmem_alloc(sizeof(*pgri), KM_SLEEP);
    325  1.61  pooka 	pgri->pgr_kva = (vaddr_t)kmem_alloc(npages * PAGE_SIZE, KM_SLEEP);
    326  1.61  pooka 	pgri->pgr_npages = npages;
    327  1.61  pooka 	pgri->pgr_pgs = kmem_alloc(sizeof(struct vm_page *) * npages, KM_SLEEP);
    328  1.61  pooka 	pgri->pgr_read = (flags & UVMPAGER_MAPIN_READ) != 0;
    329  1.61  pooka 
    330  1.61  pooka 	/* copy contents to "mapped" memory */
    331  1.61  pooka 	for (i = 0, curkva = pgri->pgr_kva;
    332  1.61  pooka 	    i < npages;
    333  1.61  pooka 	    i++, curkva += PAGE_SIZE) {
    334  1.61  pooka 		/*
    335  1.61  pooka 		 * We need to copy the previous contents of the pages to
    336  1.61  pooka 		 * the window even if we are reading from the
    337  1.61  pooka 		 * device, since the device might not fill the contents of
    338  1.61  pooka 		 * the full mapped range and we will end up corrupting
    339  1.61  pooka 		 * data when we unmap the window.
    340  1.61  pooka 		 */
    341  1.61  pooka 		memcpy((void*)curkva, pgs[i]->uanon, PAGE_SIZE);
    342  1.61  pooka 		pgri->pgr_pgs[i] = pgs[i];
    343  1.61  pooka 	}
    344  1.61  pooka 
    345  1.61  pooka 	mutex_enter(&pagermtx);
    346  1.61  pooka 	LIST_INSERT_HEAD(&pagerlist, pgri, pgr_entries);
    347  1.61  pooka 	mutex_exit(&pagermtx);
    348   1.7  pooka 
    349  1.61  pooka 	return pgri->pgr_kva;
    350   1.7  pooka }
    351   1.7  pooka 
    352  1.61  pooka /*
    353  1.61  pooka  * map out the pager window.  return contents from VA to page storage
    354  1.61  pooka  * and free structures.
    355  1.61  pooka  *
    356  1.61  pooka  * Note: does not currently support partial frees
    357  1.61  pooka  */
    358  1.61  pooka void
    359  1.61  pooka uvm_pagermapout(vaddr_t kva, int npages)
    360   1.7  pooka {
    361  1.61  pooka 	struct pagerinfo *pgri;
    362  1.61  pooka 	vaddr_t curkva;
    363  1.61  pooka 	int i;
    364   1.7  pooka 
    365  1.61  pooka 	mutex_enter(&pagermtx);
    366  1.61  pooka 	LIST_FOREACH(pgri, &pagerlist, pgr_entries) {
    367  1.61  pooka 		if (pgri->pgr_kva == kva)
    368  1.61  pooka 			break;
    369  1.61  pooka 	}
    370  1.61  pooka 	KASSERT(pgri);
    371  1.61  pooka 	if (pgri->pgr_npages != npages)
    372  1.61  pooka 		panic("uvm_pagermapout: partial unmapping not supported");
    373  1.61  pooka 	LIST_REMOVE(pgri, pgr_entries);
    374  1.61  pooka 	mutex_exit(&pagermtx);
    375  1.61  pooka 
    376  1.61  pooka 	if (pgri->pgr_read) {
    377  1.61  pooka 		for (i = 0, curkva = pgri->pgr_kva;
    378  1.61  pooka 		    i < pgri->pgr_npages;
    379  1.61  pooka 		    i++, curkva += PAGE_SIZE) {
    380  1.61  pooka 			memcpy(pgri->pgr_pgs[i]->uanon,(void*)curkva,PAGE_SIZE);
    381  1.21  pooka 		}
    382  1.21  pooka 	}
    383  1.10  pooka 
    384  1.61  pooka 	kmem_free(pgri->pgr_pgs, npages * sizeof(struct vm_page *));
    385  1.61  pooka 	kmem_free((void*)pgri->pgr_kva, npages * PAGE_SIZE);
    386  1.61  pooka 	kmem_free(pgri, sizeof(*pgri));
    387   1.7  pooka }
    388   1.7  pooka 
    389  1.61  pooka /*
    390  1.61  pooka  * convert va in pager window to page structure.
    391  1.61  pooka  * XXX: how expensive is this (global lock, list traversal)?
    392  1.61  pooka  */
    393  1.14  pooka struct vm_page *
    394  1.14  pooka uvm_pageratop(vaddr_t va)
    395  1.14  pooka {
    396  1.61  pooka 	struct pagerinfo *pgri;
    397  1.61  pooka 	struct vm_page *pg = NULL;
    398  1.61  pooka 	int i;
    399  1.14  pooka 
    400  1.61  pooka 	mutex_enter(&pagermtx);
    401  1.61  pooka 	LIST_FOREACH(pgri, &pagerlist, pgr_entries) {
    402  1.61  pooka 		if (pgri->pgr_kva <= va
    403  1.61  pooka 		    && va < pgri->pgr_kva + pgri->pgr_npages*PAGE_SIZE)
    404  1.21  pooka 			break;
    405  1.61  pooka 	}
    406  1.61  pooka 	if (pgri) {
    407  1.61  pooka 		i = (va - pgri->pgr_kva) >> PAGE_SHIFT;
    408  1.61  pooka 		pg = pgri->pgr_pgs[i];
    409  1.61  pooka 	}
    410  1.61  pooka 	mutex_exit(&pagermtx);
    411  1.21  pooka 
    412  1.61  pooka 	return pg;
    413  1.61  pooka }
    414  1.15  pooka 
    415  1.61  pooka /* Called with the vm object locked */
    416  1.61  pooka struct vm_page *
    417  1.61  pooka uvm_pagelookup(struct uvm_object *uobj, voff_t off)
    418  1.61  pooka {
    419  1.61  pooka 	struct vm_page *pg;
    420  1.61  pooka 
    421  1.61  pooka 	TAILQ_FOREACH(pg, &uobj->memq, listq.queue) {
    422  1.61  pooka 		if (pg->offset == off) {
    423  1.61  pooka 			return pg;
    424  1.61  pooka 		}
    425  1.61  pooka 	}
    426  1.61  pooka 
    427  1.61  pooka 	return NULL;
    428  1.14  pooka }
    429  1.14  pooka 
    430   1.7  pooka void
    431  1.22  pooka uvm_page_unbusy(struct vm_page **pgs, int npgs)
    432  1.22  pooka {
    433  1.22  pooka 	struct vm_page *pg;
    434  1.22  pooka 	int i;
    435  1.22  pooka 
    436  1.22  pooka 	for (i = 0; i < npgs; i++) {
    437  1.22  pooka 		pg = pgs[i];
    438  1.22  pooka 		if (pg == NULL)
    439  1.22  pooka 			continue;
    440  1.22  pooka 
    441  1.22  pooka 		KASSERT(pg->flags & PG_BUSY);
    442  1.22  pooka 		if (pg->flags & PG_WANTED)
    443  1.22  pooka 			wakeup(pg);
    444  1.36  pooka 		if (pg->flags & PG_RELEASED)
    445  1.36  pooka 			uvm_pagefree(pg);
    446  1.36  pooka 		else
    447  1.36  pooka 			pg->flags &= ~(PG_WANTED|PG_BUSY);
    448  1.22  pooka 	}
    449  1.22  pooka }
    450  1.22  pooka 
    451  1.22  pooka void
    452   1.7  pooka uvm_estimatepageable(int *active, int *inactive)
    453   1.7  pooka {
    454   1.7  pooka 
    455  1.19  pooka 	/* XXX: guessing game */
    456  1.19  pooka 	*active = 1024;
    457  1.19  pooka 	*inactive = 1024;
    458   1.7  pooka }
    459   1.7  pooka 
    460  1.39  pooka struct vm_map_kernel *
    461  1.39  pooka vm_map_to_kernel(struct vm_map *map)
    462  1.39  pooka {
    463  1.39  pooka 
    464  1.39  pooka 	return (struct vm_map_kernel *)map;
    465  1.39  pooka }
    466  1.39  pooka 
    467  1.41  pooka bool
    468  1.41  pooka vm_map_starved_p(struct vm_map *map)
    469  1.41  pooka {
    470  1.41  pooka 
    471  1.80  pooka 	if (map->flags & VM_MAP_WANTVA)
    472  1.80  pooka 		return true;
    473  1.80  pooka 
    474  1.41  pooka 	return false;
    475  1.41  pooka }
    476  1.41  pooka 
    477  1.41  pooka int
    478  1.41  pooka uvm_loan(struct vm_map *map, vaddr_t start, vsize_t len, void *v, int flags)
    479  1.41  pooka {
    480  1.41  pooka 
    481  1.41  pooka 	panic("%s: unimplemented", __func__);
    482  1.41  pooka }
    483  1.41  pooka 
    484  1.41  pooka void
    485  1.41  pooka uvm_unloan(void *v, int npages, int flags)
    486  1.41  pooka {
    487  1.41  pooka 
    488  1.41  pooka 	panic("%s: unimplemented", __func__);
    489  1.41  pooka }
    490  1.41  pooka 
    491  1.43  pooka int
    492  1.43  pooka uvm_loanuobjpages(struct uvm_object *uobj, voff_t pgoff, int orignpages,
    493  1.43  pooka 	struct vm_page **opp)
    494  1.43  pooka {
    495  1.43  pooka 
    496  1.72  pooka 	return EBUSY;
    497  1.43  pooka }
    498  1.43  pooka 
    499  1.73  pooka #ifdef DEBUGPRINT
    500  1.56  pooka void
    501  1.56  pooka uvm_object_printit(struct uvm_object *uobj, bool full,
    502  1.56  pooka 	void (*pr)(const char *, ...))
    503  1.56  pooka {
    504  1.56  pooka 
    505  1.75  pooka 	pr("VM OBJECT at %p, refs %d", uobj, uobj->uo_refs);
    506  1.56  pooka }
    507  1.73  pooka #endif
    508  1.56  pooka 
    509  1.68  pooka vaddr_t
    510  1.68  pooka uvm_default_mapaddr(struct proc *p, vaddr_t base, vsize_t sz)
    511  1.68  pooka {
    512  1.68  pooka 
    513  1.68  pooka 	return 0;
    514  1.68  pooka }
    515  1.68  pooka 
    516  1.71  pooka int
    517  1.71  pooka uvm_map_protect(struct vm_map *map, vaddr_t start, vaddr_t end,
    518  1.71  pooka 	vm_prot_t prot, bool set_max)
    519  1.71  pooka {
    520  1.71  pooka 
    521  1.71  pooka 	return EOPNOTSUPP;
    522  1.71  pooka }
    523  1.71  pooka 
    524   1.9  pooka /*
    525  1.12  pooka  * UVM km
    526  1.12  pooka  */
    527  1.12  pooka 
    528  1.12  pooka vaddr_t
    529  1.12  pooka uvm_km_alloc(struct vm_map *map, vsize_t size, vsize_t align, uvm_flag_t flags)
    530  1.12  pooka {
    531  1.12  pooka 	void *rv;
    532  1.50  pooka 	int alignbit, error;
    533  1.50  pooka 
    534  1.50  pooka 	alignbit = 0;
    535  1.50  pooka 	if (align) {
    536  1.50  pooka 		alignbit = ffs(align)-1;
    537  1.50  pooka 	}
    538  1.50  pooka 
    539  1.50  pooka 	rv = rumpuser_anonmmap(size, alignbit, flags & UVM_KMF_EXEC, &error);
    540  1.50  pooka 	if (rv == NULL) {
    541  1.50  pooka 		if (flags & (UVM_KMF_CANFAIL | UVM_KMF_NOWAIT))
    542  1.50  pooka 			return 0;
    543  1.50  pooka 		else
    544  1.50  pooka 			panic("uvm_km_alloc failed");
    545  1.50  pooka 	}
    546  1.12  pooka 
    547  1.50  pooka 	if (flags & UVM_KMF_ZERO)
    548  1.12  pooka 		memset(rv, 0, size);
    549  1.12  pooka 
    550  1.12  pooka 	return (vaddr_t)rv;
    551  1.12  pooka }
    552  1.12  pooka 
    553  1.12  pooka void
    554  1.12  pooka uvm_km_free(struct vm_map *map, vaddr_t vaddr, vsize_t size, uvm_flag_t flags)
    555  1.12  pooka {
    556  1.12  pooka 
    557  1.50  pooka 	rumpuser_unmap((void *)vaddr, size);
    558  1.12  pooka }
    559  1.12  pooka 
    560  1.12  pooka struct vm_map *
    561  1.12  pooka uvm_km_suballoc(struct vm_map *map, vaddr_t *minaddr, vaddr_t *maxaddr,
    562  1.12  pooka 	vsize_t size, int pageable, bool fixed, struct vm_map_kernel *submap)
    563  1.12  pooka {
    564  1.12  pooka 
    565  1.12  pooka 	return (struct vm_map *)417416;
    566  1.12  pooka }
    567  1.40  pooka 
    568  1.40  pooka vaddr_t
    569  1.40  pooka uvm_km_alloc_poolpage(struct vm_map *map, bool waitok)
    570  1.40  pooka {
    571  1.40  pooka 
    572  1.80  pooka 	return (vaddr_t)rump_hypermalloc(PAGE_SIZE, PAGE_SIZE,
    573  1.80  pooka 	    waitok, "kmalloc");
    574  1.40  pooka }
    575  1.40  pooka 
    576  1.40  pooka void
    577  1.40  pooka uvm_km_free_poolpage(struct vm_map *map, vaddr_t addr)
    578  1.40  pooka {
    579  1.40  pooka 
    580  1.80  pooka 	rumpuser_free((void *)addr);
    581  1.50  pooka }
    582  1.50  pooka 
    583  1.50  pooka vaddr_t
    584  1.50  pooka uvm_km_alloc_poolpage_cache(struct vm_map *map, bool waitok)
    585  1.50  pooka {
    586  1.50  pooka 
    587  1.77  pooka 	return uvm_km_alloc_poolpage(map, waitok);
    588  1.50  pooka }
    589  1.50  pooka 
    590  1.50  pooka void
    591  1.50  pooka uvm_km_free_poolpage_cache(struct vm_map *map, vaddr_t vaddr)
    592  1.50  pooka {
    593  1.50  pooka 
    594  1.77  pooka 	uvm_km_free_poolpage(map, vaddr);
    595  1.40  pooka }
    596  1.57  pooka 
    597  1.74  pooka void
    598  1.74  pooka uvm_km_va_drain(struct vm_map *map, uvm_flag_t flags)
    599  1.74  pooka {
    600  1.74  pooka 
    601  1.74  pooka 	/* we eventually maybe want some model for available memory */
    602  1.74  pooka }
    603  1.74  pooka 
    604  1.57  pooka /*
    605  1.57  pooka  * Mapping and vm space locking routines.
    606  1.57  pooka  * XXX: these don't work for non-local vmspaces
    607  1.57  pooka  */
    608  1.57  pooka int
    609  1.57  pooka uvm_vslock(struct vmspace *vs, void *addr, size_t len, vm_prot_t access)
    610  1.57  pooka {
    611  1.57  pooka 
    612  1.57  pooka 	KASSERT(vs == &rump_vmspace);
    613  1.57  pooka 	return 0;
    614  1.57  pooka }
    615  1.57  pooka 
    616  1.57  pooka void
    617  1.57  pooka uvm_vsunlock(struct vmspace *vs, void *addr, size_t len)
    618  1.57  pooka {
    619  1.57  pooka 
    620  1.57  pooka 	KASSERT(vs == &rump_vmspace);
    621  1.57  pooka }
    622  1.57  pooka 
    623  1.57  pooka void
    624  1.57  pooka vmapbuf(struct buf *bp, vsize_t len)
    625  1.57  pooka {
    626  1.57  pooka 
    627  1.57  pooka 	bp->b_saveaddr = bp->b_data;
    628  1.57  pooka }
    629  1.57  pooka 
    630  1.57  pooka void
    631  1.57  pooka vunmapbuf(struct buf *bp, vsize_t len)
    632  1.57  pooka {
    633  1.57  pooka 
    634  1.57  pooka 	bp->b_data = bp->b_saveaddr;
    635  1.57  pooka 	bp->b_saveaddr = 0;
    636  1.57  pooka }
    637  1.61  pooka 
    638  1.61  pooka void
    639  1.66  pooka uvmspace_free(struct vmspace *vm)
    640  1.66  pooka {
    641  1.66  pooka 
    642  1.66  pooka 	/* nothing for now */
    643  1.66  pooka }
    644  1.66  pooka 
    645  1.66  pooka int
    646  1.66  pooka uvm_io(struct vm_map *map, struct uio *uio)
    647  1.66  pooka {
    648  1.66  pooka 
    649  1.66  pooka 	/*
    650  1.66  pooka 	 * just do direct uio for now.  but this needs some vmspace
    651  1.66  pooka 	 * olympics for rump_sysproxy.
    652  1.66  pooka 	 */
    653  1.66  pooka 	return uiomove((void *)(vaddr_t)uio->uio_offset, uio->uio_resid, uio);
    654  1.66  pooka }
    655  1.66  pooka 
    656  1.61  pooka /*
    657  1.61  pooka  * page life cycle stuff.  it really doesn't exist, so just stubs.
    658  1.61  pooka  */
    659  1.61  pooka 
    660  1.61  pooka void
    661  1.61  pooka uvm_pageactivate(struct vm_page *pg)
    662  1.61  pooka {
    663  1.61  pooka 
    664  1.61  pooka 	/* nada */
    665  1.61  pooka }
    666  1.61  pooka 
    667  1.61  pooka void
    668  1.61  pooka uvm_pagedeactivate(struct vm_page *pg)
    669  1.61  pooka {
    670  1.61  pooka 
    671  1.61  pooka 	/* nada */
    672  1.61  pooka }
    673  1.61  pooka 
    674  1.61  pooka void
    675  1.61  pooka uvm_pagedequeue(struct vm_page *pg)
    676  1.61  pooka {
    677  1.61  pooka 
    678  1.61  pooka 	/* nada*/
    679  1.61  pooka }
    680  1.61  pooka 
    681  1.61  pooka void
    682  1.61  pooka uvm_pageenqueue(struct vm_page *pg)
    683  1.61  pooka {
    684  1.61  pooka 
    685  1.61  pooka 	/* nada */
    686  1.61  pooka }
    687  1.80  pooka 
    688  1.80  pooka /*
    689  1.80  pooka  * Routines related to the Page Baroness.
    690  1.80  pooka  */
    691  1.80  pooka 
    692  1.80  pooka void
    693  1.80  pooka uvm_wait(const char *msg)
    694  1.80  pooka {
    695  1.80  pooka 
    696  1.80  pooka 	if (__predict_false(curlwp == uvm.pagedaemon_lwp))
    697  1.80  pooka 		panic("pagedaemon out of memory");
    698  1.80  pooka 	if (__predict_false(rump_threads == 0))
    699  1.80  pooka 		panic("pagedaemon missing (RUMP_THREADS = 0)");
    700  1.80  pooka 
    701  1.80  pooka 	mutex_enter(&pdaemonmtx);
    702  1.80  pooka 	pdaemon_waiters++;
    703  1.80  pooka 	cv_signal(&pdaemoncv);
    704  1.80  pooka 	cv_wait(&oomwait, &pdaemonmtx);
    705  1.80  pooka 	mutex_exit(&pdaemonmtx);
    706  1.80  pooka }
    707  1.80  pooka 
    708  1.80  pooka void
    709  1.80  pooka uvm_pageout_start(int npages)
    710  1.80  pooka {
    711  1.80  pooka 
    712  1.80  pooka 	/* we don't have the heuristics */
    713  1.80  pooka }
    714  1.80  pooka 
    715  1.80  pooka void
    716  1.80  pooka uvm_pageout_done(int npages)
    717  1.80  pooka {
    718  1.80  pooka 
    719  1.80  pooka 	/* could wakeup waiters, but just let the pagedaemon do it */
    720  1.80  pooka }
    721  1.80  pooka 
    722  1.80  pooka /*
    723  1.80  pooka  * Under-construction page mistress.  This is lacking vfs support, namely:
    724  1.80  pooka  *
    725  1.80  pooka  *  1) draining vfs buffers
    726  1.80  pooka  *  2) paging out pages in vm vnode objects
    727  1.80  pooka  *     (we will not page out anon memory on the basis that
    728  1.80  pooka  *     that's the task of the host)
    729  1.80  pooka  */
    730  1.80  pooka 
    731  1.80  pooka void
    732  1.80  pooka uvm_pageout(void *arg)
    733  1.80  pooka {
    734  1.80  pooka 	struct pool *pp, *pp_first;
    735  1.80  pooka 	uint64_t where;
    736  1.80  pooka 	int timo = 0;
    737  1.80  pooka 	bool succ;
    738  1.80  pooka 
    739  1.80  pooka 	mutex_enter(&pdaemonmtx);
    740  1.80  pooka 	for (;;) {
    741  1.80  pooka 		cv_timedwait(&pdaemoncv, &pdaemonmtx, timo);
    742  1.80  pooka 		uvmexp.pdwoke++;
    743  1.80  pooka 		kernel_map->flags |= VM_MAP_WANTVA;
    744  1.80  pooka 		mutex_exit(&pdaemonmtx);
    745  1.80  pooka 
    746  1.80  pooka 		succ = false;
    747  1.80  pooka 		pool_drain_start(&pp_first, &where);
    748  1.80  pooka 		pp = pp_first;
    749  1.80  pooka 		for (;;) {
    750  1.80  pooka 			succ = pool_drain_end(pp, where);
    751  1.80  pooka 			if (succ)
    752  1.80  pooka 				break;
    753  1.80  pooka 			pool_drain_start(&pp, &where);
    754  1.80  pooka 			if (pp == pp_first) {
    755  1.80  pooka 				succ = pool_drain_end(pp, where);
    756  1.80  pooka 				break;
    757  1.80  pooka 			}
    758  1.80  pooka 		}
    759  1.80  pooka 		mutex_enter(&pdaemonmtx);
    760  1.80  pooka 
    761  1.80  pooka 		if (!succ) {
    762  1.80  pooka 			rumpuser_dprintf("pagedaemoness: failed to reclaim "
    763  1.80  pooka 			    "memory ... sleeping (deadlock?)\n");
    764  1.80  pooka 			timo = hz;
    765  1.80  pooka 			continue;
    766  1.80  pooka 		}
    767  1.80  pooka 		kernel_map->flags &= ~VM_MAP_WANTVA;
    768  1.80  pooka 		timo = 0;
    769  1.80  pooka 
    770  1.80  pooka 		if (pdaemon_waiters) {
    771  1.80  pooka 			pdaemon_waiters = 0;
    772  1.80  pooka 			cv_broadcast(&oomwait);
    773  1.80  pooka 		}
    774  1.80  pooka 	}
    775  1.80  pooka 
    776  1.80  pooka 	panic("you can swap out any time you like, but you can never leave");
    777  1.80  pooka }
    778  1.80  pooka 
    779  1.80  pooka /*
    780  1.80  pooka  * In a regular kernel the pagedaemon is activated when memory becomes
    781  1.80  pooka  * low.  In a virtual rump kernel we do not know exactly how much memory
    782  1.80  pooka  * we have available -- it depends on the conditions on the host.
    783  1.80  pooka  * Therefore, we cannot preemptively kick the pagedaemon.  Rather, we
    784  1.80  pooka  * wait until things we desperate and we're forced to uvm_wait().
    785  1.80  pooka  *
    786  1.80  pooka  * The alternative would be to allocate a huge chunk of memory at
    787  1.80  pooka  * startup, but that solution has a number of problems including
    788  1.80  pooka  * being a resource hog, failing anyway due to host memory overcommit
    789  1.80  pooka  * and core dump size.
    790  1.80  pooka  */
    791  1.80  pooka 
    792  1.80  pooka void
    793  1.80  pooka uvm_kick_pdaemon()
    794  1.80  pooka {
    795  1.80  pooka 
    796  1.80  pooka 	/* nada */
    797  1.80  pooka }
    798  1.80  pooka 
    799  1.80  pooka void *
    800  1.80  pooka rump_hypermalloc(size_t howmuch, int alignment, bool waitok, const char *wmsg)
    801  1.80  pooka {
    802  1.80  pooka 	void *rv;
    803  1.80  pooka 
    804  1.80  pooka  again:
    805  1.80  pooka 	rv = rumpuser_malloc(howmuch, alignment);
    806  1.80  pooka 	if (__predict_false(rv == NULL && waitok)) {
    807  1.80  pooka 		uvm_wait(wmsg);
    808  1.80  pooka 		goto again;
    809  1.80  pooka 	}
    810  1.80  pooka 
    811  1.80  pooka 	return rv;
    812  1.80  pooka }
    813