fstests: add _require_mknod
[xfstests-dev.git] / tests / generic / 062
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 062
6 #
7 # Exercises the getfattr/setfattr tools
8 # Derived from tests originally written by Andreas Gruenbacher for ext2
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
18 # get standard environment, filters and checks
19 . ./common/rc
20 . ./common/filter
21 . ./common/attr
22
23 _cleanup()
24 {
25         cd /
26         echo; echo "*** unmount"
27         _scratch_unmount 2>/dev/null
28         rm -f $tmp.*
29 }
30 trap "_cleanup; exit \$status" 0 1 2 3 15
31
32 getfattr()
33 {
34     _getfattr --absolute-names -dh $@ 2>&1 | _filter_scratch
35 }
36
37 setfattr()
38 {
39     $SETFATTR_PROG $@ 2>&1 | _filter_scratch
40 }
41
42 _create_test_bed()
43 {
44         echo "*** create test bed"
45         touch $SCRATCH_MNT/reg
46         mkdir -p $SCRATCH_MNT/dir
47         ln -s $SCRATCH_MNT/dir $SCRATCH_MNT/lnk
48         mkdir $SCRATCH_MNT/dev
49         mknod $SCRATCH_MNT/dev/b b 0 0
50         mknod $SCRATCH_MNT/dev/c c 1 3
51         mknod $SCRATCH_MNT/dev/p p
52         # sanity check
53         find $SCRATCH_MNT | LC_COLLATE=POSIX sort | _filter_scratch | grep -v "lost+found"
54 }
55
56 # real QA test starts here
57 _supported_fs generic
58 _supported_os Linux
59
60 _require_scratch
61 _require_attrs
62 _require_symlinks
63 _require_mknod
64
65 rm -f $tmp.backup1 $tmp.backup2 $seqres.full
66
67 # real QA test starts here
68 _scratch_mkfs > /dev/null 2>&1 || _fail "mkfs failed"
69 _scratch_mount
70 _create_test_bed
71
72 # In kernels before 3.0, getxattr() fails with EPERM for an attribute which
73 # cannot exist.  Later kernels fail with ENODATA.  Accept both results.
74 invalid_attribute_filter() {
75         sed -e "s:\(No such attribute\|Operation not permitted\):No such attribute or operation not permitted:"
76 }
77
78 if [ "$USE_ATTR_SECURE" = yes ]; then
79     ATTR_MODES="user security trusted"
80 else
81     ATTR_MODES="user trusted"
82 fi
83 for nsp in $ATTR_MODES; do
84         for inode in reg dir lnk dev/b dev/c dev/p; do
85
86                 echo; echo "=== TYPE $inode; NAMESPACE $nsp"; echo
87                 echo "*** set/get one initially empty attribute"
88     
89                 setfattr -h -n $nsp.name $SCRATCH_MNT/$inode
90                 getfattr -m $nsp $SCRATCH_MNT/$inode
91
92                 echo "*** overwrite empty, set several new attributes"
93                 setfattr -h -n $nsp.name -v 0xbabe $SCRATCH_MNT/$inode
94                 setfattr -h -n $nsp.name2 -v 0xdeadbeef $SCRATCH_MNT/$inode
95                 setfattr -h -n $nsp.name3 -v 0xdeface $SCRATCH_MNT/$inode
96
97                 echo "*** fetch several attribute names and values (hex)"
98                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
99
100                 echo "*** fetch several attribute names and values (base64)"
101                 getfattr -m $nsp -e base64 $SCRATCH_MNT/$inode
102                 
103                 echo "*** shrink value of an existing attribute"
104                 setfattr -h -n $nsp.name2 -v 0xdeaf $SCRATCH_MNT/$inode
105                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
106
107                 echo "*** grow value of existing attribute"
108                 setfattr -h -n $nsp.name2 -v 0xdecade $SCRATCH_MNT/$inode
109                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
110                 
111                 echo "*** set an empty value for second attribute"
112                 setfattr -h -n $nsp.name2 $SCRATCH_MNT/$inode
113                 getfattr -m $nsp -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
114
115                 echo "*** overwrite empty value"
116                 setfattr -h -n $nsp.name2 -v 0xcafe $SCRATCH_MNT/$inode
117                 getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
118
119                 echo "*** remove attribute"
120                 setfattr -h -x $nsp.name2 $SCRATCH_MNT/$inode
121                 getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
122
123                 echo "*** final list (strings, type=$inode, nsp=$nsp)"
124                 getfattr -m '.' -e hex $SCRATCH_MNT/$inode
125         
126         done
127 done
128
129
130 # Test the directory descent code
131
132 echo; echo
133
134 _extend_test_bed()
135 {
136         echo "*** extend test bed"
137         # must set some descents' attributes to be useful
138         mkdir -p $SCRATCH_MNT/here/up/ascend
139         mkdir -p $SCRATCH_MNT/descend/down/here
140         find $SCRATCH_MNT/descend | xargs setfattr -n user.x -v yz
141         find $SCRATCH_MNT/descend | xargs setfattr -n user.1 -v 23
142         find $SCRATCH_MNT/here | xargs setfattr -n trusted.a -v bc
143         find $SCRATCH_MNT/here | xargs setfattr -n trusted.9 -v 87
144         # whack a symlink in the middle, just to be difficult
145         ln -s $SCRATCH_MNT/here/up $SCRATCH_MNT/descend/and
146         # dump out our new starting point
147         find $SCRATCH_MNT | LC_COLLATE=POSIX sort | _filter_scratch | grep -v "lost+found"
148 }
149
150 _extend_test_bed
151
152 echo
153 echo "*** directory descent with us following symlinks"
154 getfattr -h -L -R -m '.' -e hex $SCRATCH_MNT | _sort_getfattr_output
155
156 echo
157 echo "*** directory descent without following symlinks"
158 getfattr -h -P -R -m '.' -e hex $SCRATCH_MNT | _sort_getfattr_output
159
160
161 # Test the backup/restore code
162
163 echo; echo
164
165 _backup()
166 {
167         # Note: we don't filter scratch here since we need to restore too.  But
168         # we *do* sort the output by path, since it otherwise would depend on
169         # readdir order, which on some filesystems may change after re-creating
170         # the files.
171         _getfattr --absolute-names -dh -R -m '.' $SCRATCH_MNT | _sort_getfattr_output >$1
172         echo BACKUP $1 >>$seqres.full
173         cat $1 >> $seqres.full
174         [ ! -s $1 ] && echo "warning: $1 (backup file) is empty"
175 }
176
177 echo "*** backup everything"
178 _backup $tmp.backup1
179
180 echo "*** clear out the scratch device"
181 rm -rf $(find $SCRATCH_MNT/* | grep -v "lost+found")
182 echo "AFTER REMOVE" >>$seqres.full
183 getfattr -L -R -m '.' $SCRATCH_MNT >>$seqres.full
184
185 echo "*** reset test bed with no extended attributes"
186 _create_test_bed
187 _extend_test_bed
188
189 echo "*** restore everything"
190 setfattr -h --restore=$tmp.backup1
191 _backup $tmp.backup2
192
193 echo "AFTER RESTORE" >>$seqres.full
194 getfattr -L -R -m '.' $SCRATCH_MNT >>$seqres.full
195
196 echo "*** compare before and after backups"
197 diff $tmp.backup1 $tmp.backup2
198 if [ $? -ne 0 ]; then
199         echo "urk, failed - creating $seq.backup1 and $seq.backup2"
200         cp $tmp.backup1 $seq.backup1 && cp $tmp.backup2 $seq.backup2
201         status=1
202         exit
203 fi
204
205 # success, all done
206 status=0
207 exit