Go to file
Ben Gras 565f13088f make vfs & filesystems use failable copying
Change the kernel to add features to vircopy and safecopies so that
transparent copy fixing won't happen to avoid deadlocks, and such copies
fail with EFAULT.

Transparently making copying work from filesystems (as normally done by
the kernel & VM when copying fails because of missing/readonly memory)
is problematic as it can happen that, for file-mapped ranges, that that
same filesystem that is blocked on the copy request is needed to satisfy
the memory range, leading to deadlock. Dito for VFS itself, if done with
a blocking call.

This change makes the copying done from a filesystem fail in such cases
with EFAULT by VFS adding the CPF_TRY flag to the grants. If a FS call
fails with EFAULT, VFS will then request the range to be made available
to VM after the FS is unblocked, allowing it to be used to satisfy the
range if need be in another VFS thread.

Similarly, for datacopies that VFS itself does, it uses the failable
vircopy variant and callers use a wrapper that talk to VM if necessary
to get the copy to work.

	. kernel: add CPF_TRY flag to safecopies
	. kernel: only request writable ranges to VM for the
	  target buffer when copying fails
	. do copying in VFS TRY-first
	. some fixes in VM to build SANITYCHECK mode
	. add regression test for the cases where
	  - a FS system call needs memory mapped in a process that the
	    FS itself must map.
	  - such a range covers more than one file-mapped region.
	. add 'try' mode to vircopy, physcopy
	. add flags field to copy kernel call messages
	. if CP_FLAG_TRY is set, do not transparently try
	  to fix memory ranges
	. for use by VFS when accessing user buffers to avoid
	  deadlock
	. remove some obsolete backwards compatability assignments
        . VFS: let thread scheduling work for VM requests too
          Allows VFS to make calls to VM while suspending and resuming
          the currently running thread. Does currently not work for the
          main thread.
        . VM: add fix memory range call for use by VFS

Change-Id: I295794269cea51a3163519a9cfe5901301d90b32
2014-07-28 17:05:14 +02:00
benchmarks Import NetBSD true and false commands 2014-07-28 17:05:09 +02:00
bin Import NetBSD sleep command 2014-07-28 17:05:09 +02:00
commands devmand: don't die so easily 2014-07-28 17:05:13 +02:00
common Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC) 2014-07-28 17:05:06 +02:00
distrib PTY: split off from TTY 2014-07-28 17:05:12 +02:00
docs Allow install of binutils and import texinfo 2013-07-12 14:18:08 +02:00
drivers TTY: do not reply to KERNEL 2014-07-28 17:05:13 +02:00
etc PTY: split off from TTY 2014-07-28 17:05:12 +02:00
external fix for ld.so @ bitcode build 2014-07-28 17:05:12 +02:00
gnu Replace wget with ftp as default in fetch scripts 2014-07-28 17:05:08 +02:00
include make vfs & filesystems use failable copying 2014-07-28 17:05:14 +02:00
kernel make vfs & filesystems use failable copying 2014-07-28 17:05:14 +02:00
lib make vfs & filesystems use failable copying 2014-07-28 17:05:14 +02:00
libexec Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC) 2014-07-28 17:05:06 +02:00
man Import NetBSD sleep command 2014-07-28 17:05:09 +02:00
releasetools x86_hdimage.sh: use nbstat from tooldir. 2014-07-28 17:05:09 +02:00
sbin Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC) 2014-07-28 17:05:06 +02:00
servers make vfs & filesystems use failable copying 2014-07-28 17:05:14 +02:00
share Install sources with MKSRC=yes 2014-07-28 17:05:12 +02:00
sys Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC) 2014-07-28 17:05:06 +02:00
test Rearrange endpoint number layout 2014-07-28 17:05:12 +02:00
tests Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC) 2014-07-28 17:05:06 +02:00
tools Binutils: Synchronization & Gold activation 2014-07-28 17:05:11 +02:00
usr.bin Import NetBSD true and false commands 2014-07-28 17:05:09 +02:00
usr.sbin Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC) 2014-07-28 17:05:06 +02:00
.gitignore gitignore: ignore some more generated files 2012-12-06 13:29:20 +00:00
.gitreview misc:Add gerrit code review support. 2013-01-16 09:44:16 +01:00
build.sh Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC) 2014-07-28 17:05:06 +02:00
LICENSE Fix parameter parsing in cut 2010-01-21 10:16:05 +00:00
Makefile Install sources with MKSRC=yes 2014-07-28 17:05:12 +02:00
Makefile.inc Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC) 2014-07-28 17:05:06 +02:00