]> Zhao Yanbai Git Server - minix.git/commit
libminixfs/VM: fix memory-mapped file corruption 56/3056/1
authorDavid van Moolenbroek <david@minix3.org>
Thu, 13 Aug 2015 11:29:33 +0000 (11:29 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Thu, 13 Aug 2015 13:46:46 +0000 (13:46 +0000)
commite94f856b38e19c12288b8413a31732118153c230
tree6f366e6dae9c6d3eb6113bfa6ab86f27a69a958c
parentb65ad59e08ac27ca960e12652419259fc52ad6fc
libminixfs/VM: fix memory-mapped file corruption

This patch employs one solution to resolve two independent but related
issues.  Both issues are the result of one fundamental aspect of the
way VM's memory mapping works: VM uses its cache to map in blocks for
memory-mapped file regions, and for blocks already in the VM cache, VM
does not go to the file system before mapping them in.  To preserve
consistency between the FS and VM caches, VM relies on being informed
about all updates to file contents through the block cache.  The two
issues are both the result of VM not being properly informed about
such updates:

 1. Once a file system provides libminixfs with an inode association
    (inode number + inode offset) for a disk block, this association
    is not broken until a new inode association is provided for it.
    If a block is freed and reallocated as a metadata (non-inode)
    block, its old association is maintained, and may be supplied to
    VM's secondary cache.  Due to reuse of inodes, it is possible
    that the same inode association becomes valid for an actual file
    block again.  In that case, when that new file is memory-mapped,
    under certain circumstances, VM may end up using the metadata
    block to satisfy a page fault on the file, due to the stale inode
    association.  The result is a corrupted memory mapping, with the
    application seeing data other than the current file contents
    mapped in at the file block.

 2. When a hole is created in a file, the underlying block is freed
    from the device, but VM is not informed of this update, and thus,
    if VM's cache contains the block with its previous inode
    association, this block will remain there.  As a result, if an
    application subsequently memory-maps the file, VM will map in the
    old block at the position of the hole, rather than an all-zeroes
    block.  Thus, again, the result is a corrupted memory mapping.

This patch resolves both issues by making the file system inform the
minixfs library about blocks being freed, so that libminixfs can
break the inode association for that block, both in its own cache and
in the VM cache.  Since libminixfs does not know whether VM has the
block in its cache or not, it makes a call to VM for each block being
freed.  Thus, this change introduces more calls to VM, but it solves
the correctness issues at hand; optimizations may be introduced
later.  On the upside, all freed blocks are now marked as clean,
which should result in fewer blocks being written back to the device,
and the blocks are removed from the caches entirely, which should
result in slightly better cache usage.

This patch is necessary but not sufficient to resolve the situation
with respect to memory mapping of file holes in general.  Therefore,
this patch extends test 74 with a (rather particular but effective)
test for the first issue, but not yet with a test for the second one.

This fixes #90.

Change-Id: Iad8b134d2f88a884f15d3fc303e463280749c467
17 files changed:
etc/system.conf
minix/commands/service/parse.c
minix/fs/ext2/balloc.c
minix/fs/ext2/write.c
minix/fs/mfs/cache.c
minix/fs/mfs/write.c
minix/include/minix/com.h
minix/include/minix/libminixfs.h
minix/include/minix/vm.h
minix/lib/libminixfs/cache.c
minix/lib/libsys/vm_cache.c
minix/servers/vm/main.c
minix/servers/vm/mem_cache.c
minix/servers/vm/proto.h
minix/tests/test72.c
minix/tests/test74.c
minix/tests/testvm.conf