minix/drivers
Thomas Veerman 992799b91f VFS: make all IPC asynchronous
By decoupling synchronous drivers from VFS, we are a big step closer to
supporting driver crashes under all circumstances. That is, VFS can't
become stuck on IPC with a synchronous driver (e.g., INET) and can
recover from crashing block drivers during open/close/ioctl or during
communication with an FS.

In order to maintain serialized communication with a synchronous driver,
the communication is wrapped by a mutex on a per driver basis (not major
numbers as there can be multiple majors with identical endpoints). Majors
that share a driver endpoint point to a single mutex object.

In order to support crashes from block drivers, the file reopen tactic
had to be changed; first reopen files associated with the crashed
driver, then send the new driver endpoint to FSes. This solves a
deadlock between the FS and the block driver;
  - VFS would send REQ_NEW_DRIVER to an FS, but he FS only receives it
    after retrying the current request to the newly started driver.
  - The block driver would refuse the retried request until all files
    had been reopened.
  - VFS would reopen files only after getting a reply from the initial
    REQ_NEW_DRIVER.

When a character special driver crashes, all associated files have to
be marked invalid and closed (or reopened if flagged as such). However,
they can only be closed if a thread holds exclusive access to it. To
obtain exclusive access, the worker thread (which handles the new driver
endpoint event from DS) schedules a new job to garbage collect invalid
files. This way, we can signal the worker thread that was talking to the
crashed driver and will release exclusive access to a file associated
with the crashed driver and prevent the garbage collecting worker thread
from dead locking on that file.

Also, when a character special driver crashes, RS will unmap the driver
and remap it upon restart. During unmapping, associated files are marked
invalid instead of waiting for an endpoint up event from DS, as that
event might come later than new read/write/select requests and thus
cause confusion in the freshly started driver.

When locking a filp, the usage counters are no longer checked. The usage
counter can legally go down to zero during filp invalidation while there
are locks pending.

DS events are handled by a separate worker thread instead of the main
thread as reopening files could lead to another crash and a stuck thread.
An additional worker thread is then necessary to unlock it.

Finally, with everything asynchronous a race condition in do_select
surfaced. A select entry was only marked in use after succesfully sending
initial select requests to drivers and having to wait. When multiple
select() calls were handled there was opportunity that these entries
were overwritten. This had as effect that some select results were
ignored (and select() remained blocking instead if returning) or do_select
tried to access filps that were not present (because thrown away by
secondary select()). This bug manifested itself with sendrecs, but was
very hard to reproduce. However, it became awfully easy to trigger with
asynsends only.
2012-09-17 11:01:45 +00:00
..
acpi rename struct mem_range to minix_mem_range 2012-08-15 15:17:25 +02:00
ahci ahci: resolve Coverity warnings 2012-07-30 12:10:08 +00:00
amddev retire PUBLIC, PRIVATE and FORWARD 2012-03-25 21:58:14 +02:00
at_wini Remove ACK EM_WSIZE/EM_PSIZE macro usage 2012-08-06 17:49:22 +02:00
atl2 atl2: resolve Coverity warnings 2012-07-30 12:10:10 +00:00
audio retire PUBLIC, PRIVATE and FORWARD 2012-03-25 21:58:14 +02:00
dec21140A dec21140A: resolve Coverity warnings 2012-08-06 16:18:33 +00:00
dp8390 dp8390: resolve Coverity warnings (encore) 2012-08-14 09:11:18 +00:00
dpeth dpeth: resolve Coverity warnings 2012-08-06 16:18:35 +00:00
e1000 e1000: resolve Coverity warnings 2012-08-06 16:18:36 +00:00
fbd libsys: 64-bit numbers support for printf() 2012-07-26 09:45:05 +00:00
filter filter: resolve Coverity warnings 2012-07-30 12:10:11 +00:00
floppy floppy: resolve Coverity warnings 2012-08-06 16:18:37 +00:00
fxp fxp: resolve Coverity warnings 2012-08-06 16:18:38 +00:00
hello drop segment from safecopy invocations 2012-06-16 16:22:51 +00:00
lance lance: resolve Coverity warnings 2012-08-06 16:18:39 +00:00
log kernel: facility for user-visible memory 2012-07-28 20:57:38 +00:00
memory Make memory driver arch-neutral 2012-08-13 17:21:47 +02:00
orinoco Remove MINIXSRCDIR and use NETBSDSRCDIR 2012-06-18 10:53:35 +00:00
pci rename struct mem_range to minix_mem_range 2012-08-15 15:17:25 +02:00
printer drop segment from safecopy invocations 2012-06-16 16:22:51 +00:00
ramdisk Clean up generated files for ash,ramdisk,libutil,libc 2012-06-18 10:54:56 +00:00
random random: resolve Coverity warnings 2012-08-14 09:11:16 +00:00
readclock retire PUBLIC, PRIVATE and FORWARD 2012-03-25 21:58:14 +02:00
rtl8139 rtl8139: resolve Coverity warnings 2012-07-30 13:59:43 +00:00
rtl8169 rtl8169: resolve Coverity warnings 2012-07-30 12:10:15 +00:00
ti1225 retire PUBLIC, PRIVATE and FORWARD 2012-03-25 21:58:14 +02:00
tty VFS: make all IPC asynchronous 2012-09-17 11:01:45 +00:00
vbox drop segment from safecopy invocations 2012-06-16 16:22:51 +00:00
Makefile Don't build ext2 ramdisk for cross compilation 2012-06-18 10:54:56 +00:00
Makefile.inc Full switch to clang/ELF. Drop ack. Simplify. 2012-02-14 14:52:02 +01:00