fstests: convert remaining tests to SPDX license tags
[xfstests-dev.git] / tests / xfs / 339
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 339
6 #
7 # Link rrmapino into the rootdir on an rtrmap fs and see if repair fixes it.
8 #
9 seq=`basename "$0"`
10 seqres="$RESULT_DIR/$seq"
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         cd /
21         rm -rf "$tmp".*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27
28 # real QA test starts here
29 _supported_os Linux
30 _supported_fs xfs
31 _require_realtime
32 _require_xfs_scratch_rmapbt
33
34 rm -f "$seqres.full"
35
36 echo "Format and mount"
37 _scratch_mkfs > "$seqres.full" 2>&1
38 _scratch_mount
39
40 echo "Create some files"
41 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f1 >> $seqres.full
42 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f2 >> $seqres.full
43 echo garbage > $SCRATCH_MNT/f3
44 ln $SCRATCH_MNT/f3 $SCRATCH_MNT/f4
45 _scratch_unmount
46
47 echo "Corrupt fs"
48 rrmapino=`_scratch_xfs_get_sb_field rrmapino`
49 _scratch_xfs_set_metadata_field "u3.sfdir3.list[3].inumber.i4" $rrmapino \
50         'sb 0' 'addr rootino' >> $seqres.full
51 _scratch_mount
52
53 echo "Check files"
54 md5sum $SCRATCH_MNT/f1 2>&1 | _filter_scratch
55
56 echo "Try to create more files"
57 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f5 >> $seqres.full 2>&1
58
59 echo "Repair fs"
60 _scratch_unmount 2>&1 | _filter_scratch
61 _repair_scratch_fs >> $seqres.full 2>&1
62
63 echo "Try to create more files (again)"
64 _scratch_mount
65 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f4 >> $seqres.full
66
67 # success, all done
68 status=0
69 exit