ext4: avoid exposure of stale data in ext4_punch_hole()
authorMaxim Patlasov <MPatlasov@parallels.com>
Thu, 20 Feb 2014 21:58:05 +0000 (16:58 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 20 Feb 2014 21:58:05 +0000 (16:58 -0500)
commite251f9bca99c0f219eff9c76034476c2b17d3dba
tree413d9b1af6fd9b916c0bdb9f7380d5657c093efb
parentce140cdd9c171dc75cfdcfee2b8708c508f5daf6
ext4: avoid exposure of stale data in ext4_punch_hole()

While handling punch-hole fallocate, it's useless to truncate page cache
before removing the range from extent tree (or block map in indirect case)
because page cache can be re-populated (by read-ahead or read(2) or mmap-ed
read) immediately after truncating page cache, but before updating extent
tree (or block map). In that case the user will see stale data even after
fallocate is completed.

Until the problem of data corruption resulting from pages backed by
already freed blocks is fully resolved, the simple thing we can do now
is to add another truncation of pagecache after punch hole is done.

Signed-off-by: Maxim Patlasov <mpatlasov@parallels.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Jan Kara <jack@suse.cz>
fs/ext4/inode.c