Go to file
chs 43973be0c5 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.
2001-12-31 22:34:39 +00:00
bin Oops, pasto. 2001-12-20 20:17:29 +00:00
crypto Fix warnings generated by gcc 3.1. 2001-12-31 20:09:53 +00:00
dist Pull over fixes from rev. 1.5-1.7 of basesrc/usr.sbin/ntp/ntpd/ntpd.8. 2001-12-26 15:14:59 +00:00
distrib .include <bsd.prog.mk> to use DESTDIR/usr/include. 2001-12-30 04:08:28 +00:00
etc Standardize ch* and uk* descriptions. 2001-12-19 18:29:56 +00:00
games Sync getopt() / man page with actual getopt options. 2001-12-20 20:10:33 +00:00
gnu this is really libstdc++ 2.8.0 2001-12-30 17:21:19 +00:00
include Use "int32_t" instead of "time_t" for ``on tape'' times. (From FreeBSD.) 2001-12-23 14:38:03 +00:00
lib fix __startwin() so it outputs the init strings to the correct device. 2001-12-31 14:23:11 +00:00
libexec - Allow RTLD_DEFAULT_LIBRARY_PATH to be overridden. 2001-12-28 05:44:22 +00:00
regress Need <string.h> for memcpy() prototype (noticed by gcc 3.1). 2001-12-31 20:19:14 +00:00
sbin don't bother printing a warning about the cylinder group size being 2001-12-31 07:07:58 +00:00
share Convenience variables (workXX) don't work, so don't document them. 2001-12-31 00:35:21 +00:00
sys introduce a new UVM fault type, VM_FAULT_WIREMAX. this is different 2001-12-31 22:34:39 +00:00
tools Typo fix in error message. 2001-12-29 15:45:52 +00:00
usr.bin Remove -I${DESTDIR}/usr/include and -I${DESTDIR}/usr/include/openssl 2001-12-31 19:26:59 +00:00
usr.sbin Remove -I${DESTDIR}/usr/include and -I${DESTDIR}/usr/include/openssl 2001-12-31 20:04:47 +00:00
build.sh Apply workaround for some Bourne shells not handling IFS in the POSIX way. 2001-12-19 20:59:07 +00:00
BUILDING Document the -d option to build.sh 2001-11-25 18:40:34 +00:00
BUILDING.mdoc Document the -d option to build.sh 2001-11-25 18:40:34 +00:00
Makefile Add a wrapper for the "distribution" target, similar to the wrapper 2001-11-25 18:31:12 +00:00
Makefile.inc Set RELTOP to '.' if that's where we are. 2000-05-06 15:05:15 +00:00
UPDATING Add note about how to work around reloc problems in groff now that the toolchain 2001-12-07 09:56:44 +00:00