generic/554: hide permision warning on exfat
[xfstests-dev.git] / tests / generic / 143
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 143
6 #
7 # Ensure that reflinking a file N times and DIO CoWing the copies leaves the
8 # original intact.
9 #   - Create a file and record its hash
10 #   - Create some reflink copies
11 #   - Rewrite all the reflink copies w/ directio
12 #   - Compare the contents of the original file
13 #
14 seq=`basename $0`
15 seqres=$RESULT_DIR/$seq
16 echo "QA output created by $seq"
17
18 here=`pwd`
19 tmp=/tmp/$$
20 status=1    # failure is the default!
21 trap "_cleanup; exit \$status" 0 1 2 3 15
22
23 _cleanup()
24 {
25     cd /
26     rm -rf $tmp.* $testdir
27 }
28
29 # get standard environment, filters and checks
30 . ./common/rc
31 . ./common/filter
32 . ./common/reflink
33
34 # real QA test starts here
35 _require_test_reflink
36 _require_cp_reflink
37 _require_odirect
38
39 rm -f $seqres.full
40
41 testdir=$TEST_DIR/test-$seq
42 rm -rf $testdir
43 mkdir $testdir
44
45 echo "Create the original file blocks"
46 blksz=65536
47 nr=9
48 filesize=$((blksz * nr))
49 _pwrite_byte 0x61 0 $((blksz * 256)) $testdir/file1 >> $seqres.full
50 _test_cycle_mount
51
52 md5sum $testdir/file1 | _filter_test_dir
53 csum=$(_md5_checksum $testdir/file1)
54
55 echo "Create the reflink copies"
56 seq 2 $nr | while read i; do
57         _cp_reflink $testdir/file1 $testdir/file$i
58 done
59 _test_cycle_mount
60
61 echo "Rewrite the copies"
62 seq 2 $nr | while read i; do
63         _pwrite_byte 0x62 0 $((blksz * 256)) $testdir/file$i -d >> $seqres.full
64 done
65 _test_cycle_mount
66
67 echo "Examine original file"
68 md5sum $testdir/file1 | _filter_test_dir
69 md5sum $testdir/file2 | _filter_test_dir
70
71 mod_csum=$(_md5_checksum $testdir/file2)
72 new_csum=$(_md5_checksum $testdir/file1)
73 test ${csum} != ${mod_csum} || echo "checksums do not match"
74 test ${csum} = ${new_csum} || echo "checksums do not match"
75
76 # success, all done
77 status=0
78 exit