fstests: check for filesystem FS_IOC_FSSETXATTR support
[xfstests-dev.git] / tests / xfs / 126
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015 Oracle, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 126
6 #
7 # Create and populate an XFS filesystem, corrupt a leaf xattr's data extent,
8 # then see how the kernel and xfs_repair deal with it.
9 #
10 seq=`basename $0`
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
13
14 here=`pwd`
15 tmp=/tmp/$$
16 status=1        # failure is the default!
17 trap "_cleanup; exit \$status" 0 1 2 3 15
18
19 _cleanup()
20 {
21     cd /
22     #rm -f $tmp.*
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28 . ./common/attr
29 . ./common/populate
30
31 # real QA test starts here
32 _supported_fs xfs
33 _supported_os Linux
34
35 _require_scratch
36 test -n "${FORCE_FUZZ}" || _require_scratch_xfs_crc
37 _require_attrs
38 _require_populate_commands
39 _require_xfs_db_blocktrash_z_command
40 test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-n 8 -3"
41
42 rm -f $seqres.full
43
44 echo "+ create scratch fs"
45 _scratch_mkfs_xfs > /dev/null
46
47 echo "+ mount fs image"
48 _scratch_mount
49 blksz="$(stat -f -c '%s' "${SCRATCH_MNT}")"
50 nr="$((8 * blksz / 40))"
51
52 echo "+ make some files"
53 touch "${SCRATCH_MNT}/attrfile"
54 seq 0 "${nr}" | while read d; do
55         setfattr -n "user.x$(printf "%.08d" "$d")" -v "0000000000000000" "${SCRATCH_MNT}/attrfile"
56 done
57 seq 1 2 "${nr}" | while read d; do
58         setfattr -x "user.x$(printf "%.08d" "$d")" "${SCRATCH_MNT}/attrfile"
59 done
60 inode="$(stat -c '%i' "${SCRATCH_MNT}/attrfile")"
61 umount "${SCRATCH_MNT}"
62
63 echo "+ check fs"
64 _scratch_xfs_repair -n >> $seqres.full 2>&1 || _fail "xfs_repair should not fail"
65
66 echo "+ check xattr"
67 _scratch_xfs_db -x -c "inode ${inode}" -c "bmap" >> $seqres.full
68 _scratch_xfs_db -x -c "inode ${inode}" -c "ablock 0" -c "stack" | grep -q 'file attr block is unmapped' && _fail "failed to create a leaf xattr (index)"
69 _scratch_xfs_db -x -c "inode ${inode}" -c "ablock 1" -c "stack" | grep -q 'file attr block is unmapped' && _fail "failed to create a leaf xattr (data)"
70
71 echo "+ corrupt xattr"
72 loff=1
73 while true; do
74         _scratch_xfs_db -x -c "inode ${inode}" -c "ablock ${loff}" -c "stack" | grep -q 'file attr block is unmapped' && break
75         _scratch_xfs_db -x -c "inode ${inode}" -c "ablock ${loff}" -c "stack" -c "blocktrash -x 32 -y $((blksz * 8)) -z ${FUZZ_ARGS}" >> $seqres.full
76         loff="$((loff + 1))"
77 done
78
79 echo "+ mount image && modify xattr"
80 if _try_scratch_mount >> $seqres.full 2>&1; then
81
82         setfattr -x "user.x00000000" "${SCRATCH_MNT}/attrfile" 2> /dev/null && _fail "modified corrupt xattr"
83         umount "${SCRATCH_MNT}"
84 fi
85
86 echo "+ repair fs"
87 _scratch_xfs_repair >> $seqres.full 2>&1
88 _scratch_xfs_repair >> $seqres.full 2>&1
89
90 echo "+ mount image (2)"
91 _scratch_mount
92
93 echo "+ chattr -R -i"
94 $CHATTR_PROG -R -f -i "${SCRATCH_MNT}/"
95
96 echo "+ modify xattr (2)"
97 getfattr "${SCRATCH_MNT}/attrfile" -n "user.x00000000" 2> /dev/null && (setfattr -x "user.x00000000" "${SCRATCH_MNT}/attrfile" || _fail "modified corrupt xattr")
98 umount "${SCRATCH_MNT}"
99
100 echo "+ check fs (2)"
101 _scratch_xfs_repair -n >> $seqres.full 2>&1 || _fail "xfs_repair should not fail"
102
103 status=0
104 exit