2004-05-13 00:09:50 +04:00
|
|
|
/* $NetBSD: uvm_glue.c,v 1.81 2004/05/12 20:09:51 yamt Exp $ */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
2001-05-25 08:06:11 +04:00
|
|
|
/*
|
1998-02-05 09:25:08 +03:00
|
|
|
* Copyright (c) 1997 Charles D. Cranor and Washington University.
|
2001-05-25 08:06:11 +04:00
|
|
|
* Copyright (c) 1991, 1993, The Regents of the University of California.
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* The Mach Operating System project at Carnegie-Mellon University.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Charles D. Cranor,
|
2001-05-25 08:06:11 +04:00
|
|
|
* Washington University, the University of California, Berkeley and
|
1998-02-05 09:25:08 +03:00
|
|
|
* its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)vm_glue.c 8.6 (Berkeley) 1/5/94
|
1998-02-07 14:07:38 +03:00
|
|
|
* from: Id: uvm_glue.c,v 1.1.2.8 1998/02/07 01:16:54 chs Exp
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (c) 1987, 1990 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
2001-05-25 08:06:11 +04:00
|
|
|
*
|
1998-02-05 09:25:08 +03:00
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
2001-05-25 08:06:11 +04:00
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
1998-02-05 09:25:08 +03:00
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
2001-05-25 08:06:11 +04:00
|
|
|
*
|
1998-02-05 09:25:08 +03:00
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
2001-11-10 10:36:59 +03:00
|
|
|
#include <sys/cdefs.h>
|
2004-05-13 00:09:50 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: uvm_glue.c,v 1.81 2004/05/12 20:09:51 yamt Exp $");
|
2001-11-10 10:36:59 +03:00
|
|
|
|
2001-05-30 19:24:23 +04:00
|
|
|
#include "opt_kgdb.h"
|
2002-07-03 00:27:44 +04:00
|
|
|
#include "opt_kstack.h"
|
2001-05-30 19:24:23 +04:00
|
|
|
#include "opt_uvmhist.h"
|
1998-02-10 17:08:44 +03:00
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* uvm_glue.c: glue functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/resourcevar.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/user.h>
|
|
|
|
|
|
|
|
#include <uvm/uvm.h>
|
|
|
|
|
|
|
|
#include <machine/cpu.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* local prototypes
|
|
|
|
*/
|
|
|
|
|
2004-03-24 10:50:48 +03:00
|
|
|
static void uvm_swapout(struct lwp *);
|
1998-02-05 09:25:08 +03:00
|
|
|
|
2002-09-22 11:20:29 +04:00
|
|
|
#define UVM_NUAREA_MAX 16
|
|
|
|
void *uvm_uareas;
|
|
|
|
int uvm_nuarea;
|
2003-01-18 11:51:40 +03:00
|
|
|
struct simplelock uvm_uareas_slock = SIMPLELOCK_INITIALIZER;
|
2002-09-22 11:20:29 +04:00
|
|
|
|
2004-01-04 14:33:29 +03:00
|
|
|
static void uvm_uarea_free(vaddr_t);
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* XXXCDC: do these really belong here?
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_kernacc: can the kernel access a region of memory
|
|
|
|
*
|
|
|
|
* - called from malloc [DIAGNOSTIC], and /dev/kmem driver (mem.c)
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
boolean_t
|
|
|
|
uvm_kernacc(addr, len, rw)
|
|
|
|
caddr_t addr;
|
1998-05-09 19:04:39 +04:00
|
|
|
size_t len;
|
|
|
|
int rw;
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-03-09 03:58:55 +03:00
|
|
|
boolean_t rv;
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t saddr, eaddr;
|
1998-03-09 03:58:55 +03:00
|
|
|
vm_prot_t prot = rw == B_READ ? VM_PROT_READ : VM_PROT_WRITE;
|
|
|
|
|
2000-03-27 00:54:45 +04:00
|
|
|
saddr = trunc_page((vaddr_t)addr);
|
2000-11-25 09:27:59 +03:00
|
|
|
eaddr = round_page((vaddr_t)addr + len);
|
1998-03-09 03:58:55 +03:00
|
|
|
vm_map_lock_read(kernel_map);
|
|
|
|
rv = uvm_map_checkprot(kernel_map, saddr, eaddr, prot);
|
|
|
|
vm_map_unlock_read(kernel_map);
|
|
|
|
|
|
|
|
return(rv);
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef KGDB
|
|
|
|
/*
|
|
|
|
* Change protections on kernel pages from addr to addr+len
|
|
|
|
* (presumably so debugger can plant a breakpoint).
|
|
|
|
*
|
|
|
|
* We force the protection change at the pmap level. If we were
|
|
|
|
* to use vm_map_protect a change to allow writing would be lazily-
|
|
|
|
* applied meaning we would still take a protection fault, something
|
|
|
|
* we really don't want to do. It would also fragment the kernel
|
|
|
|
* map unnecessarily. We cannot use pmap_protect since it also won't
|
|
|
|
* enforce a write-enable request. Using pmap_enter is the only way
|
|
|
|
* we can ensure the change takes place properly.
|
|
|
|
*/
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
|
|
|
uvm_chgkprot(addr, len, rw)
|
2000-03-30 16:31:50 +04:00
|
|
|
caddr_t addr;
|
1998-05-09 19:04:39 +04:00
|
|
|
size_t len;
|
|
|
|
int rw;
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-03-09 03:58:55 +03:00
|
|
|
vm_prot_t prot;
|
1998-08-13 06:10:37 +04:00
|
|
|
paddr_t pa;
|
|
|
|
vaddr_t sva, eva;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
prot = rw == B_READ ? VM_PROT_READ : VM_PROT_READ|VM_PROT_WRITE;
|
2000-03-27 00:54:45 +04:00
|
|
|
eva = round_page((vaddr_t)addr + len);
|
|
|
|
for (sva = trunc_page((vaddr_t)addr); sva < eva; sva += PAGE_SIZE) {
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* Extract physical address for the page.
|
|
|
|
*/
|
1999-07-08 22:05:21 +04:00
|
|
|
if (pmap_extract(pmap_kernel(), sva, &pa) == FALSE)
|
1998-03-09 03:58:55 +03:00
|
|
|
panic("chgkprot: invalid page");
|
1999-11-13 03:24:38 +03:00
|
|
|
pmap_enter(pmap_kernel(), sva, pa, prot, PMAP_WIRED);
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
2001-09-11 01:19:08 +04:00
|
|
|
pmap_update(pmap_kernel());
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
* uvm_vslock: wire user memory for I/O
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* - called from physio and sys___sysctl
|
|
|
|
* - XXXCDC: consider nuking this (or making it a macro?)
|
|
|
|
*/
|
|
|
|
|
1999-06-17 19:47:22 +04:00
|
|
|
int
|
1999-05-26 05:05:24 +04:00
|
|
|
uvm_vslock(p, addr, len, access_type)
|
1998-04-30 10:28:57 +04:00
|
|
|
struct proc *p;
|
1998-03-09 03:58:55 +03:00
|
|
|
caddr_t addr;
|
1998-05-09 19:04:39 +04:00
|
|
|
size_t len;
|
1999-05-26 05:05:24 +04:00
|
|
|
vm_prot_t access_type;
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2001-06-02 22:09:08 +04:00
|
|
|
struct vm_map *map;
|
1999-06-17 19:47:22 +04:00
|
|
|
vaddr_t start, end;
|
2001-03-15 09:10:32 +03:00
|
|
|
int error;
|
1999-06-17 19:47:22 +04:00
|
|
|
|
|
|
|
map = &p->p_vmspace->vm_map;
|
2000-03-27 00:54:45 +04:00
|
|
|
start = trunc_page((vaddr_t)addr);
|
|
|
|
end = round_page((vaddr_t)addr + len);
|
introduce a new UVM fault type, VM_FAULT_WIREMAX. this is different
from VM_FAULT_WIRE in that when the pages being wired are faulted in,
the simulated fault is at the maximum protection allowed for the mapping
instead of the current protection. use this in uvm_map_pageable{,_all}()
to fix the problem where writing via ptrace() to shared libraries that
are also mapped with wired mappings in another process causes a
diagnostic panic when the wired mapping is removed.
this is a really obscure problem so it deserves some more explanation.
ptrace() writing to another process ends up down in uvm_map_extract(),
which for MAP_PRIVATE mappings (such as shared libraries) will cause
the amap to be copied or created. then the amap is made shared
(ie. the AMAP_SHARED flag is set) between the kernel and the ptrace()d
process so that the kernel can modify pages in the amap and have the
ptrace()d process see the changes. then when the page being modified
is actually faulted on, the object pages (from the shared library vnode)
is copied to a new anon page and inserted into the shared amap.
to make all the processes sharing the amap actually see the new anon
page instead of the vnode page that was there before, we need to
invalidate all the pmap-level mappings of the vnode page in the pmaps
of the processes sharing the amap, but we don't have a good way of
doing this. the amap doesn't keep track of the vm_maps which map it.
so all we can do at this point is to remove all the mappings of the
page with pmap_page_protect(), but this has the unfortunate side-effect
of removing wired mappings as well. removing wired mappings with
pmap_page_protect() is a legitimate operation, it can happen when a file
with a wired mapping is truncated. so the pmap has no way of knowing
whether a request to remove a wired mapping is normal or when it's due to
this weird situation. so the pmap has to remove the weird mapping.
the process being ptrace()d goes away and life continues. then,
much later when we go to unwire or remove the wired vm_map mapping,
we discover that the pmap mapping has been removed when it should
still be there, and we panic.
so where did we go wrong? the problem is that we don't have any way
to update just the pmap mappings that need to be updated in this
scenario. we could invent a mechanism to do this, but that is much
more complicated than this change and it doesn't seem like the right
way to go in the long run either.
the real underlying problem here is that wired pmap mappings just
aren't a good concept. one of the original properties of the pmap
design was supposed to be that all the information in the pmap could
be thrown away at any time and the VM system could regenerate it all
through fault processing, but wired pmap mappings don't allow that.
a better design for UVM would not require wired pmap mappings,
and Chuck C. and I are talking about this, but it won't be done
anytime soon, so this change will do for now.
this change has the effect of causing MAP_PRIVATE mappings to be
copied to anonymous memory when they are mlock()d, so that uvm_fault()
doesn't need to copy these pages later when called from ptrace(), thus
avoiding the call to pmap_page_protect() and the panic that results
from this when the mlock()d region is unlocked or freed. note that
this change doesn't help the case where the wired mapping is MAP_SHARED.
discussed at great length with Chuck Cranor.
fixes PRs 10363, 12554, 12604, 13041, 13487, 14580 and 14853.
2002-01-01 01:34:39 +03:00
|
|
|
error = uvm_fault_wire(map, start, end, VM_FAULT_WIRE, access_type);
|
2001-03-15 09:10:32 +03:00
|
|
|
return error;
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
* uvm_vsunlock: unwire user memory wired by uvm_vslock()
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* - called from physio and sys___sysctl
|
|
|
|
* - XXXCDC: consider nuking this (or making it a macro?)
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
1998-04-30 10:28:57 +04:00
|
|
|
uvm_vsunlock(p, addr, len)
|
|
|
|
struct proc *p;
|
1998-03-09 03:58:55 +03:00
|
|
|
caddr_t addr;
|
1998-05-09 19:04:39 +04:00
|
|
|
size_t len;
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2000-11-25 09:27:59 +03:00
|
|
|
uvm_fault_unwire(&p->p_vmspace->vm_map, trunc_page((vaddr_t)addr),
|
|
|
|
round_page((vaddr_t)addr + len));
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-01-18 11:51:40 +03:00
|
|
|
* uvm_proc_fork: fork a virtual address space
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* - the address space is copied as per parent map's inherit values
|
2003-01-18 11:51:40 +03:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
uvm_proc_fork(p1, p2, shared)
|
|
|
|
struct proc *p1, *p2;
|
|
|
|
boolean_t shared;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (shared == TRUE) {
|
|
|
|
p2->p_vmspace = NULL;
|
|
|
|
uvmspace_share(p1, p2);
|
|
|
|
} else {
|
|
|
|
p2->p_vmspace = uvmspace_fork(p1->p_vmspace);
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_proc_fork(p1, p2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_lwp_fork: fork a thread
|
|
|
|
*
|
1998-02-05 09:25:08 +03:00
|
|
|
* - a new "user" structure is allocated for the child process
|
|
|
|
* [filled in by MD layer...]
|
1999-05-14 01:58:32 +04:00
|
|
|
* - if specified, the child gets a new user stack described by
|
|
|
|
* stack and stacksize
|
1998-02-05 09:25:08 +03:00
|
|
|
* - NOTE: the kernel stack may be at a different location in the child
|
|
|
|
* process, and thus addresses of automatic variables may be invalid
|
2003-01-18 11:51:40 +03:00
|
|
|
* after cpu_lwp_fork returns in the child process. We do nothing here
|
|
|
|
* after cpu_lwp_fork returns.
|
1998-02-05 09:25:08 +03:00
|
|
|
* - XXXCDC: we need a way for this to return a failure value rather
|
|
|
|
* than just hang
|
|
|
|
*/
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
2003-01-18 11:51:40 +03:00
|
|
|
uvm_lwp_fork(l1, l2, stack, stacksize, func, arg)
|
|
|
|
struct lwp *l1, *l2;
|
1999-05-14 01:58:32 +04:00
|
|
|
void *stack;
|
|
|
|
size_t stacksize;
|
2004-03-24 10:50:48 +03:00
|
|
|
void (*func)(void *);
|
2000-05-28 09:48:59 +04:00
|
|
|
void *arg;
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2003-01-18 11:51:40 +03:00
|
|
|
struct user *up = l2->l_addr;
|
2001-03-15 09:10:32 +03:00
|
|
|
int error;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
1998-04-09 04:23:38 +04:00
|
|
|
* Wire down the U-area for the process, which contains the PCB
|
2003-01-18 11:51:40 +03:00
|
|
|
* and the kernel stack. Wired state is stored in l->l_flag's
|
|
|
|
* L_INMEM bit rather than in the vm_map_entry's wired count
|
2002-11-17 11:32:43 +03:00
|
|
|
* to prevent kernel_map fragmentation. If we reused a cached U-area,
|
2003-01-18 11:51:40 +03:00
|
|
|
* L_INMEM will already be set and we don't need to do anything.
|
1999-05-26 04:33:52 +04:00
|
|
|
*
|
2002-11-17 11:32:43 +03:00
|
|
|
* Note the kernel stack gets read/write accesses right off the bat.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
2002-11-17 11:32:43 +03:00
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
if ((l2->l_flag & L_INMEM) == 0) {
|
2002-11-17 11:32:43 +03:00
|
|
|
error = uvm_fault_wire(kernel_map, (vaddr_t)up,
|
|
|
|
(vaddr_t)up + USPACE, VM_FAULT_WIRE,
|
|
|
|
VM_PROT_READ | VM_PROT_WRITE);
|
|
|
|
if (error)
|
2003-01-18 11:51:40 +03:00
|
|
|
panic("uvm_lwp_fork: uvm_fault_wire failed: %d", error);
|
2003-10-14 00:43:03 +04:00
|
|
|
#ifdef PMAP_UAREA
|
|
|
|
/* Tell the pmap this is a u-area mapping */
|
|
|
|
PMAP_UAREA((vaddr_t)up);
|
|
|
|
#endif
|
2003-01-18 11:51:40 +03:00
|
|
|
l2->l_flag |= L_INMEM;
|
2002-11-17 11:32:43 +03:00
|
|
|
}
|
1998-03-09 03:58:55 +03:00
|
|
|
|
2002-07-03 00:27:44 +04:00
|
|
|
#ifdef KSTACK_CHECK_MAGIC
|
|
|
|
/*
|
|
|
|
* fill stack with magic number
|
|
|
|
*/
|
2003-01-22 15:52:14 +03:00
|
|
|
kstack_setup_magic(l2);
|
2002-07-03 00:27:44 +04:00
|
|
|
#endif
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
2003-01-18 11:51:40 +03:00
|
|
|
* cpu_lwp_fork() copy and update the pcb, and make the child ready
|
|
|
|
* to run. If this is a normal user fork, the child will exit
|
2000-05-28 09:48:59 +04:00
|
|
|
* directly to user mode via child_return() on its first time
|
|
|
|
* slice and will not return here. If this is a kernel thread,
|
|
|
|
* the specified entry point will be executed.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
2003-01-18 11:51:40 +03:00
|
|
|
cpu_lwp_fork(l1, l2, stack, stacksize, func, arg);
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
2002-09-22 11:20:29 +04:00
|
|
|
/*
|
|
|
|
* uvm_uarea_alloc: allocate a u-area
|
|
|
|
*/
|
|
|
|
|
2002-11-17 11:32:43 +03:00
|
|
|
boolean_t
|
|
|
|
uvm_uarea_alloc(vaddr_t *uaddrp)
|
2002-09-22 11:20:29 +04:00
|
|
|
{
|
|
|
|
vaddr_t uaddr;
|
|
|
|
|
|
|
|
#ifndef USPACE_ALIGN
|
|
|
|
#define USPACE_ALIGN 0
|
|
|
|
#endif
|
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
simple_lock(&uvm_uareas_slock);
|
2004-01-04 14:33:29 +03:00
|
|
|
if (uvm_nuarea > 0) {
|
|
|
|
uaddr = (vaddr_t)uvm_uareas;
|
2002-09-22 11:20:29 +04:00
|
|
|
uvm_uareas = *(void **)uvm_uareas;
|
|
|
|
uvm_nuarea--;
|
2003-01-18 11:51:40 +03:00
|
|
|
simple_unlock(&uvm_uareas_slock);
|
2002-11-17 11:32:43 +03:00
|
|
|
*uaddrp = uaddr;
|
|
|
|
return TRUE;
|
2002-09-22 11:20:29 +04:00
|
|
|
} else {
|
2003-01-18 11:51:40 +03:00
|
|
|
simple_unlock(&uvm_uareas_slock);
|
2002-11-17 11:32:43 +03:00
|
|
|
*uaddrp = uvm_km_valloc_align(kernel_map, USPACE, USPACE_ALIGN);
|
|
|
|
return FALSE;
|
2002-09-22 11:20:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2004-01-04 14:33:29 +03:00
|
|
|
* uvm_uarea_free: free a u-area; never blocks
|
2002-09-22 11:20:29 +04:00
|
|
|
*/
|
|
|
|
|
2004-05-02 17:04:57 +04:00
|
|
|
static __inline__ void
|
2002-09-22 11:20:29 +04:00
|
|
|
uvm_uarea_free(vaddr_t uaddr)
|
|
|
|
{
|
2004-01-04 14:33:29 +03:00
|
|
|
simple_lock(&uvm_uareas_slock);
|
|
|
|
*(void **)uaddr = uvm_uareas;
|
|
|
|
uvm_uareas = (void *)uaddr;
|
|
|
|
uvm_nuarea++;
|
|
|
|
simple_unlock(&uvm_uareas_slock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_uarea_drain: return memory of u-areas over limit
|
|
|
|
* back to system
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
uvm_uarea_drain(boolean_t empty)
|
|
|
|
{
|
|
|
|
int leave = empty ? 0 : UVM_NUAREA_MAX;
|
|
|
|
vaddr_t uaddr;
|
|
|
|
|
|
|
|
if (uvm_nuarea <= leave)
|
|
|
|
return;
|
2002-09-22 11:20:29 +04:00
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
simple_lock(&uvm_uareas_slock);
|
2004-01-04 14:33:29 +03:00
|
|
|
while(uvm_nuarea > leave) {
|
|
|
|
uaddr = (vaddr_t)uvm_uareas;
|
|
|
|
uvm_uareas = *(void **)uvm_uareas;
|
|
|
|
uvm_nuarea--;
|
2003-01-18 11:51:40 +03:00
|
|
|
simple_unlock(&uvm_uareas_slock);
|
2002-09-22 11:20:29 +04:00
|
|
|
uvm_km_free(kernel_map, uaddr, USPACE);
|
2004-01-04 14:33:29 +03:00
|
|
|
simple_lock(&uvm_uareas_slock);
|
2002-09-22 11:20:29 +04:00
|
|
|
}
|
2004-01-04 14:33:29 +03:00
|
|
|
simple_unlock(&uvm_uareas_slock);
|
2002-09-22 11:20:29 +04:00
|
|
|
}
|
|
|
|
|
2004-05-02 17:04:57 +04:00
|
|
|
/*
|
|
|
|
* uvm_exit: exit a virtual address space
|
|
|
|
*
|
|
|
|
* - the process passed to us is a dead (pre-zombie) process; we
|
|
|
|
* are running on a different context now (the reaper).
|
|
|
|
* - borrow proc0's address space because freeing the vmspace
|
|
|
|
* of the dead process may block.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
uvm_proc_exit(p)
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
struct lwp *l = curlwp; /* XXX */
|
|
|
|
struct vmspace *ovm;
|
|
|
|
|
|
|
|
KASSERT(p == l->l_proc);
|
|
|
|
ovm = p->p_vmspace;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* borrow proc0's address space.
|
|
|
|
*/
|
|
|
|
pmap_deactivate(l);
|
|
|
|
p->p_vmspace = proc0.p_vmspace;
|
|
|
|
pmap_activate(l);
|
|
|
|
|
|
|
|
uvmspace_free(ovm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
uvm_lwp_exit(struct lwp *l)
|
|
|
|
{
|
|
|
|
vaddr_t va = (vaddr_t)l->l_addr;
|
|
|
|
|
|
|
|
l->l_flag &= ~L_INMEM;
|
|
|
|
uvm_uarea_free(va);
|
|
|
|
l->l_addr = NULL;
|
|
|
|
}
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* uvm_init_limit: init per-process VM limits
|
|
|
|
*
|
|
|
|
* - called for process 0 and then inherited by all others.
|
|
|
|
*/
|
2002-09-22 11:20:29 +04:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
|
|
|
uvm_init_limits(p)
|
|
|
|
struct proc *p;
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the initial limits on process VM. Set the maximum
|
|
|
|
* resident set size to be all of (reasonably) available memory.
|
|
|
|
* This causes any single, large process to start random page
|
|
|
|
* replacement once it fills memory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
p->p_rlimit[RLIMIT_STACK].rlim_cur = DFLSSIZ;
|
2004-04-04 22:21:48 +04:00
|
|
|
p->p_rlimit[RLIMIT_STACK].rlim_max = maxsmap;
|
1998-03-09 03:58:55 +03:00
|
|
|
p->p_rlimit[RLIMIT_DATA].rlim_cur = DFLDSIZ;
|
2004-04-04 22:21:48 +04:00
|
|
|
p->p_rlimit[RLIMIT_DATA].rlim_max = maxdmap;
|
1998-03-09 03:58:55 +03:00
|
|
|
p->p_rlimit[RLIMIT_RSS].rlim_cur = ptoa(uvmexp.free);
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
int enableswap = 1;
|
|
|
|
int swapdebug = 0;
|
|
|
|
#define SDB_FOLLOW 1
|
|
|
|
#define SDB_SWAPIN 2
|
|
|
|
#define SDB_SWAPOUT 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_swapin: swap in a process's u-area.
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
2003-01-18 11:51:40 +03:00
|
|
|
uvm_swapin(l)
|
|
|
|
struct lwp *l;
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t addr;
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
int s, error;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
addr = (vaddr_t)l->l_addr;
|
|
|
|
/* make L_INMEM true */
|
introduce a new UVM fault type, VM_FAULT_WIREMAX. this is different
from VM_FAULT_WIRE in that when the pages being wired are faulted in,
the simulated fault is at the maximum protection allowed for the mapping
instead of the current protection. use this in uvm_map_pageable{,_all}()
to fix the problem where writing via ptrace() to shared libraries that
are also mapped with wired mappings in another process causes a
diagnostic panic when the wired mapping is removed.
this is a really obscure problem so it deserves some more explanation.
ptrace() writing to another process ends up down in uvm_map_extract(),
which for MAP_PRIVATE mappings (such as shared libraries) will cause
the amap to be copied or created. then the amap is made shared
(ie. the AMAP_SHARED flag is set) between the kernel and the ptrace()d
process so that the kernel can modify pages in the amap and have the
ptrace()d process see the changes. then when the page being modified
is actually faulted on, the object pages (from the shared library vnode)
is copied to a new anon page and inserted into the shared amap.
to make all the processes sharing the amap actually see the new anon
page instead of the vnode page that was there before, we need to
invalidate all the pmap-level mappings of the vnode page in the pmaps
of the processes sharing the amap, but we don't have a good way of
doing this. the amap doesn't keep track of the vm_maps which map it.
so all we can do at this point is to remove all the mappings of the
page with pmap_page_protect(), but this has the unfortunate side-effect
of removing wired mappings as well. removing wired mappings with
pmap_page_protect() is a legitimate operation, it can happen when a file
with a wired mapping is truncated. so the pmap has no way of knowing
whether a request to remove a wired mapping is normal or when it's due to
this weird situation. so the pmap has to remove the weird mapping.
the process being ptrace()d goes away and life continues. then,
much later when we go to unwire or remove the wired vm_map mapping,
we discover that the pmap mapping has been removed when it should
still be there, and we panic.
so where did we go wrong? the problem is that we don't have any way
to update just the pmap mappings that need to be updated in this
scenario. we could invent a mechanism to do this, but that is much
more complicated than this change and it doesn't seem like the right
way to go in the long run either.
the real underlying problem here is that wired pmap mappings just
aren't a good concept. one of the original properties of the pmap
design was supposed to be that all the information in the pmap could
be thrown away at any time and the VM system could regenerate it all
through fault processing, but wired pmap mappings don't allow that.
a better design for UVM would not require wired pmap mappings,
and Chuck C. and I are talking about this, but it won't be done
anytime soon, so this change will do for now.
this change has the effect of causing MAP_PRIVATE mappings to be
copied to anonymous memory when they are mlock()d, so that uvm_fault()
doesn't need to copy these pages later when called from ptrace(), thus
avoiding the call to pmap_page_protect() and the panic that results
from this when the mlock()d region is unlocked or freed. note that
this change doesn't help the case where the wired mapping is MAP_SHARED.
discussed at great length with Chuck Cranor.
fixes PRs 10363, 12554, 12604, 13041, 13487, 14580 and 14853.
2002-01-01 01:34:39 +03:00
|
|
|
error = uvm_fault_wire(kernel_map, addr, addr + USPACE, VM_FAULT_WIRE,
|
1999-05-26 04:33:52 +04:00
|
|
|
VM_PROT_READ | VM_PROT_WRITE);
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
if (error) {
|
|
|
|
panic("uvm_swapin: rewiring stack failed: %d", error);
|
|
|
|
}
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Some architectures need to be notified when the user area has
|
|
|
|
* moved to new physical page(s) (e.g. see mips/mips/vm_machdep.c).
|
|
|
|
*/
|
2003-01-18 11:51:40 +03:00
|
|
|
cpu_swapin(l);
|
2000-09-23 04:43:10 +04:00
|
|
|
SCHED_LOCK(s);
|
2003-01-18 11:51:40 +03:00
|
|
|
if (l->l_stat == LSRUN)
|
|
|
|
setrunqueue(l);
|
|
|
|
l->l_flag |= L_INMEM;
|
2000-09-23 04:43:10 +04:00
|
|
|
SCHED_UNLOCK(s);
|
2003-01-18 11:51:40 +03:00
|
|
|
l->l_swtime = 0;
|
1998-03-09 03:58:55 +03:00
|
|
|
++uvmexp.swapins;
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_scheduler: process zero main loop
|
|
|
|
*
|
|
|
|
* - attempt to swapin every swaped-out, runnable process in order of
|
|
|
|
* priority.
|
|
|
|
* - if not enough memory, wake the pagedaemon and let it clear space.
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
|
|
|
uvm_scheduler()
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2003-01-18 11:51:40 +03:00
|
|
|
struct lwp *l, *ll;
|
2000-03-30 16:31:50 +04:00
|
|
|
int pri;
|
1998-03-09 03:58:55 +03:00
|
|
|
int ppri;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
loop:
|
|
|
|
#ifdef DEBUG
|
1998-03-09 03:58:55 +03:00
|
|
|
while (!enableswap)
|
2000-11-25 09:27:59 +03:00
|
|
|
tsleep(&proc0, PVM, "noswap", 0);
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
2003-01-18 11:51:40 +03:00
|
|
|
ll = NULL; /* process to choose */
|
1998-03-09 03:58:55 +03:00
|
|
|
ppri = INT_MIN; /* its priority */
|
1999-07-25 10:30:33 +04:00
|
|
|
proclist_lock_read();
|
1998-03-09 03:58:55 +03:00
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
LIST_FOREACH(l, &alllwp, l_list) {
|
1998-03-09 03:58:55 +03:00
|
|
|
/* is it a runnable swapped out process? */
|
2003-01-18 11:51:40 +03:00
|
|
|
if (l->l_stat == LSRUN && (l->l_flag & L_INMEM) == 0) {
|
|
|
|
pri = l->l_swtime + l->l_slptime -
|
|
|
|
(l->l_proc->p_nice - NZERO) * 8;
|
1998-03-09 03:58:55 +03:00
|
|
|
if (pri > ppri) { /* higher priority? remember it. */
|
2003-01-18 11:51:40 +03:00
|
|
|
ll = l;
|
1998-03-09 03:58:55 +03:00
|
|
|
ppri = pri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-08-12 21:46:25 +04:00
|
|
|
/*
|
|
|
|
* XXXSMP: possible unlock/sleep race between here and the
|
|
|
|
* "scheduler" tsleep below..
|
|
|
|
*/
|
1999-07-23 02:58:38 +04:00
|
|
|
proclist_unlock_read();
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
1998-03-09 03:58:55 +03:00
|
|
|
if (swapdebug & SDB_FOLLOW)
|
2003-01-18 11:51:40 +03:00
|
|
|
printf("scheduler: running, procp %p pri %d\n", ll, ppri);
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* Nothing to do, back to sleep
|
|
|
|
*/
|
2003-01-18 11:51:40 +03:00
|
|
|
if ((l = ll) == NULL) {
|
2000-11-25 09:27:59 +03:00
|
|
|
tsleep(&proc0, PVM, "scheduler", 0);
|
1998-03-09 03:58:55 +03:00
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* we have found swapped out process which we would like to bring
|
|
|
|
* back in.
|
|
|
|
*
|
|
|
|
* XXX: this part is really bogus cuz we could deadlock on memory
|
|
|
|
* despite our feeble check
|
|
|
|
*/
|
|
|
|
if (uvmexp.free > atop(USPACE)) {
|
1998-02-05 09:25:08 +03:00
|
|
|
#ifdef DEBUG
|
1998-03-09 03:58:55 +03:00
|
|
|
if (swapdebug & SDB_SWAPIN)
|
|
|
|
printf("swapin: pid %d(%s)@%p, pri %d free %d\n",
|
2003-01-18 11:51:40 +03:00
|
|
|
l->l_proc->p_pid, l->l_proc->p_comm, l->l_addr, ppri, uvmexp.free);
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
2003-01-18 11:51:40 +03:00
|
|
|
uvm_swapin(l);
|
1998-03-09 03:58:55 +03:00
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* not enough memory, jab the pageout daemon and wait til the coast
|
|
|
|
* is clear
|
|
|
|
*/
|
1998-02-05 09:25:08 +03:00
|
|
|
#ifdef DEBUG
|
1998-03-09 03:58:55 +03:00
|
|
|
if (swapdebug & SDB_FOLLOW)
|
|
|
|
printf("scheduler: no room for pid %d(%s), free %d\n",
|
2003-01-18 11:51:40 +03:00
|
|
|
l->l_proc->p_pid, l->l_proc->p_comm, uvmexp.free);
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
1998-03-09 03:58:55 +03:00
|
|
|
uvm_wait("schedpwait");
|
1998-02-05 09:25:08 +03:00
|
|
|
#ifdef DEBUG
|
1998-03-09 03:58:55 +03:00
|
|
|
if (swapdebug & SDB_FOLLOW)
|
|
|
|
printf("scheduler: room again, free %d\n", uvmexp.free);
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
1998-03-09 03:58:55 +03:00
|
|
|
goto loop;
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-01-18 11:51:40 +03:00
|
|
|
* swappable: is LWP "l" swappable?
|
1998-02-05 09:25:08 +03:00
|
|
|
*/
|
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
#define swappable(l) \
|
|
|
|
(((l)->l_flag & (L_INMEM)) && \
|
|
|
|
((((l)->l_proc->p_flag) & (P_SYSTEM | P_WEXIT)) == 0) && \
|
|
|
|
(l)->l_holdcnt == 0)
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* swapout_threads: find threads that can be swapped and unwire their
|
|
|
|
* u-areas.
|
|
|
|
*
|
|
|
|
* - called by the pagedaemon
|
|
|
|
* - try and swap at least one processs
|
|
|
|
* - processes that are sleeping or stopped for maxslp or more seconds
|
|
|
|
* are swapped... otherwise the longest-sleeping or stopped process
|
|
|
|
* is swapped, otherwise the longest resident process...
|
|
|
|
*/
|
2002-09-22 11:20:29 +04:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
|
|
|
uvm_swapout_threads()
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2003-01-18 11:51:40 +03:00
|
|
|
struct lwp *l;
|
|
|
|
struct lwp *outl, *outl2;
|
1998-03-09 03:58:55 +03:00
|
|
|
int outpri, outpri2;
|
|
|
|
int didswap = 0;
|
2001-05-25 08:06:11 +04:00
|
|
|
extern int maxslp;
|
1998-03-09 03:58:55 +03:00
|
|
|
/* XXXCDC: should move off to uvmexp. or uvm., also in uvm_meter */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
1998-03-09 03:58:55 +03:00
|
|
|
if (!enableswap)
|
|
|
|
return;
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
2003-01-18 11:51:40 +03:00
|
|
|
* outl/outpri : stop/sleep thread with largest sleeptime < maxslp
|
|
|
|
* outl2/outpri2: the longest resident thread (its swap time)
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
2003-01-18 11:51:40 +03:00
|
|
|
outl = outl2 = NULL;
|
1998-03-09 03:58:55 +03:00
|
|
|
outpri = outpri2 = 0;
|
1999-07-25 10:30:33 +04:00
|
|
|
proclist_lock_read();
|
2003-01-18 11:51:40 +03:00
|
|
|
LIST_FOREACH(l, &alllwp, l_list) {
|
2004-05-13 00:09:50 +04:00
|
|
|
KASSERT(l->l_proc != NULL);
|
2003-01-18 11:51:40 +03:00
|
|
|
if (!swappable(l))
|
1998-03-09 03:58:55 +03:00
|
|
|
continue;
|
2003-01-18 11:51:40 +03:00
|
|
|
switch (l->l_stat) {
|
|
|
|
case LSONPROC:
|
2003-10-24 17:07:33 +04:00
|
|
|
KDASSERT(l->l_cpu != curcpu());
|
|
|
|
continue;
|
|
|
|
|
2003-10-19 21:45:35 +04:00
|
|
|
case LSRUN:
|
2003-01-18 11:51:40 +03:00
|
|
|
if (l->l_swtime > outpri2) {
|
|
|
|
outl2 = l;
|
|
|
|
outpri2 = l->l_swtime;
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
|
|
|
continue;
|
2001-05-25 08:06:11 +04:00
|
|
|
|
2003-01-18 11:51:40 +03:00
|
|
|
case LSSLEEP:
|
|
|
|
case LSSTOP:
|
|
|
|
if (l->l_slptime >= maxslp) {
|
|
|
|
uvm_swapout(l);
|
1998-03-09 03:58:55 +03:00
|
|
|
didswap++;
|
2003-01-18 11:51:40 +03:00
|
|
|
} else if (l->l_slptime > outpri) {
|
|
|
|
outl = l;
|
|
|
|
outpri = l->l_slptime;
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
1999-07-23 02:58:38 +04:00
|
|
|
proclist_unlock_read();
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If we didn't get rid of any real duds, toss out the next most
|
|
|
|
* likely sleeping/stopped or running candidate. We only do this
|
|
|
|
* if we are real low on memory since we don't gain much by doing
|
|
|
|
* it (USPACE bytes).
|
|
|
|
*/
|
|
|
|
if (didswap == 0 && uvmexp.free <= atop(round_page(USPACE))) {
|
2003-01-18 11:51:40 +03:00
|
|
|
if ((l = outl) == NULL)
|
|
|
|
l = outl2;
|
1998-02-05 09:25:08 +03:00
|
|
|
#ifdef DEBUG
|
1998-03-09 03:58:55 +03:00
|
|
|
if (swapdebug & SDB_SWAPOUT)
|
2003-01-18 11:51:40 +03:00
|
|
|
printf("swapout_threads: no duds, try procp %p\n", l);
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
2003-01-18 11:51:40 +03:00
|
|
|
if (l)
|
|
|
|
uvm_swapout(l);
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-01-18 11:51:40 +03:00
|
|
|
* uvm_swapout: swap out lwp "l"
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
2001-05-25 08:06:11 +04:00
|
|
|
* - currently "swapout" means "unwire U-area" and "pmap_collect()"
|
1998-02-05 09:25:08 +03:00
|
|
|
* the pmap.
|
|
|
|
* - XXXCDC: should deactivate all process' private anonymous memory
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
static void
|
2003-01-18 11:51:40 +03:00
|
|
|
uvm_swapout(l)
|
|
|
|
struct lwp *l;
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t addr;
|
1998-03-09 03:58:55 +03:00
|
|
|
int s;
|
2003-01-18 11:51:40 +03:00
|
|
|
struct proc *p = l->l_proc;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
1998-03-09 03:58:55 +03:00
|
|
|
if (swapdebug & SDB_SWAPOUT)
|
2003-01-18 11:51:40 +03:00
|
|
|
printf("swapout: lid %d.%d(%s)@%p, stat %x pri %d free %d\n",
|
|
|
|
p->p_pid, l->l_lid, p->p_comm, l->l_addr, l->l_stat,
|
|
|
|
l->l_slptime, uvmexp.free);
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* Mark it as (potentially) swapped out.
|
|
|
|
*/
|
2000-09-23 04:43:10 +04:00
|
|
|
SCHED_LOCK(s);
|
2003-10-24 17:07:33 +04:00
|
|
|
if (l->l_stat == LSONPROC) {
|
|
|
|
KDASSERT(l->l_cpu != curcpu());
|
2003-10-19 21:45:35 +04:00
|
|
|
SCHED_UNLOCK(s);
|
|
|
|
return;
|
|
|
|
}
|
2003-01-18 11:51:40 +03:00
|
|
|
l->l_flag &= ~L_INMEM;
|
|
|
|
if (l->l_stat == LSRUN)
|
|
|
|
remrunqueue(l);
|
2000-09-23 04:43:10 +04:00
|
|
|
SCHED_UNLOCK(s);
|
2003-01-18 11:51:40 +03:00
|
|
|
l->l_swtime = 0;
|
2001-09-23 11:10:08 +04:00
|
|
|
p->p_stats->p_ru.ru_nswap++;
|
1998-03-09 03:58:55 +03:00
|
|
|
++uvmexp.swapouts;
|
2000-11-25 09:27:59 +03:00
|
|
|
|
2003-10-19 21:45:35 +04:00
|
|
|
/*
|
|
|
|
* Do any machine-specific actions necessary before swapout.
|
|
|
|
* This can include saving floating point state, etc.
|
|
|
|
*/
|
|
|
|
cpu_swapout(l);
|
|
|
|
|
2000-11-25 09:27:59 +03:00
|
|
|
/*
|
|
|
|
* Unwire the to-be-swapped process's user struct and kernel stack.
|
|
|
|
*/
|
2003-01-18 11:51:40 +03:00
|
|
|
addr = (vaddr_t)l->l_addr;
|
|
|
|
uvm_fault_unwire(kernel_map, addr, addr + USPACE); /* !L_INMEM */
|
2000-11-25 09:27:59 +03:00
|
|
|
pmap_collect(vm_map_pmap(&p->p_vmspace->vm_map));
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
2001-12-10 04:52:26 +03:00
|
|
|
/*
|
|
|
|
* uvm_coredump_walkmap: walk a process's map for the purpose of dumping
|
|
|
|
* a core file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
uvm_coredump_walkmap(p, vp, cred, func, cookie)
|
|
|
|
struct proc *p;
|
2001-12-10 04:52:26 +03:00
|
|
|
struct vnode *vp;
|
|
|
|
struct ucred *cred;
|
2003-06-30 02:28:00 +04:00
|
|
|
int (*func)(struct proc *, struct vnode *, struct ucred *,
|
2001-12-10 04:52:26 +03:00
|
|
|
struct uvm_coredump_state *);
|
|
|
|
void *cookie;
|
|
|
|
{
|
|
|
|
struct uvm_coredump_state state;
|
|
|
|
struct vmspace *vm = p->p_vmspace;
|
|
|
|
struct vm_map *map = &vm->vm_map;
|
|
|
|
struct vm_map_entry *entry;
|
|
|
|
vaddr_t maxstack;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
maxstack = trunc_page(USRSTACK - ctob(vm->vm_ssize));
|
|
|
|
|
2003-02-14 19:25:12 +03:00
|
|
|
entry = NULL;
|
|
|
|
vm_map_lock_read(map);
|
|
|
|
for (;;) {
|
|
|
|
if (entry == NULL)
|
|
|
|
entry = map->header.next;
|
|
|
|
else if (!uvm_map_lookup_entry(map, state.end, &entry))
|
|
|
|
entry = entry->next;
|
|
|
|
if (entry == &map->header)
|
|
|
|
break;
|
|
|
|
|
2001-12-10 04:52:26 +03:00
|
|
|
/* Should never happen for a user process. */
|
|
|
|
if (UVM_ET_ISSUBMAP(entry))
|
|
|
|
panic("uvm_coredump_walkmap: user process with "
|
|
|
|
"submap?");
|
|
|
|
|
|
|
|
state.cookie = cookie;
|
|
|
|
state.start = entry->start;
|
|
|
|
state.end = entry->end;
|
|
|
|
state.prot = entry->protection;
|
|
|
|
state.flags = 0;
|
|
|
|
|
2004-03-24 10:50:48 +03:00
|
|
|
if (state.start >= VM_MAXUSER_ADDRESS)
|
2001-12-10 04:52:26 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (state.end > VM_MAXUSER_ADDRESS)
|
|
|
|
state.end = VM_MAXUSER_ADDRESS;
|
|
|
|
|
|
|
|
if (state.start >= (vaddr_t)vm->vm_maxsaddr) {
|
|
|
|
if (state.end <= maxstack)
|
|
|
|
continue;
|
|
|
|
if (state.start < maxstack)
|
|
|
|
state.start = maxstack;
|
|
|
|
state.flags |= UVM_COREDUMP_STACK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((entry->protection & VM_PROT_WRITE) == 0)
|
|
|
|
state.flags |= UVM_COREDUMP_NODUMP;
|
|
|
|
|
2002-05-15 10:57:49 +04:00
|
|
|
if (entry->object.uvm_obj != NULL &&
|
2004-01-16 15:43:16 +03:00
|
|
|
UVM_OBJ_IS_DEVICE(entry->object.uvm_obj))
|
2002-05-15 10:57:49 +04:00
|
|
|
state.flags |= UVM_COREDUMP_NODUMP;
|
|
|
|
|
2003-02-14 19:25:12 +03:00
|
|
|
vm_map_unlock_read(map);
|
2003-06-30 02:28:00 +04:00
|
|
|
error = (*func)(p, vp, cred, &state);
|
2001-12-10 04:52:26 +03:00
|
|
|
if (error)
|
|
|
|
return (error);
|
2003-02-14 19:25:12 +03:00
|
|
|
vm_map_lock_read(map);
|
2001-12-10 04:52:26 +03:00
|
|
|
}
|
2003-02-14 19:25:12 +03:00
|
|
|
vm_map_unlock_read(map);
|
2001-12-10 04:52:26 +03:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|