generic: test for file loss after mix of rename, fsync and inode eviction
[xfstests-dev.git] / tests / generic / 412
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2017 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FSQA Test No. 412
6 #
7 # Test that if we have a file with a hole, do a mix of direct IO and buffered
8 # writes to it and truncate the file to a size that lies in the middle of the
9 # hole, after unmounting and mounting again the filesystem, the file has a
10 # correct size and no data loss happened.
11 #
12 . ./common/preamble
13 _begin_fstest auto quick metadata
14
15 # Import common functions.
16 . ./common/filter
17
18 # real QA test starts here
19 _supported_fs generic
20 _require_scratch
21 _require_odirect
22
23 _scratch_mkfs >>$seqres.full 2>&1
24 _scratch_mount
25
26 # Create out test file with two extents and a hole between those extents.
27 # The extent that lies beyond the hole must be written using direct IO and later
28 # we truncate the file to a size that lies within the hole's range.
29 $XFS_IO_PROG -f -c "pwrite -S 0x01 0K 32K" $SCRATCH_MNT/foo | _filter_xfs_io
30 $XFS_IO_PROG -d -c "pwrite -S 0x02 -b 32K 64K 32K" $SCRATCH_MNT/foo \
31         | _filter_xfs_io
32
33 # Now truncate our file to a smaller size that lies behind the offset used by
34 # the previous direct IO write and that lies in a file hole.
35 $XFS_IO_PROG -c "truncate 60K" $SCRATCH_MNT/foo
36
37 # Now get file digests before unmounting the filesystem and after mounting it
38 # again. The digests should match (same file data and size in both cases).
39 echo "File digest before unmounting the filesystem:"
40 md5sum $SCRATCH_MNT/foo | _filter_scratch
41 _scratch_cycle_mount
42 echo "File digest after mounting again the filesystem:"
43 md5sum $SCRATCH_MNT/foo | _filter_scratch
44
45 status=0
46 exit