ba7448854996fb8675cda6f6406c31aadda5a21d
[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
64 rm -f $tmp.backup1 $tmp.backup2 $seqres.full
65
66 # real QA test starts here
67 _scratch_mkfs > /dev/null 2>&1 || _fail "mkfs failed"
68 _scratch_mount
69 _create_test_bed
70
71 # In kernels before 3.0, getxattr() fails with EPERM for an attribute which
72 # cannot exist.  Later kernels fail with ENODATA.  Accept both results.
73 invalid_attribute_filter() {
74         sed -e "s:\(No such attribute\|Operation not permitted\):No such attribute or operation not permitted:"
75 }
76
77 if [ "$USE_ATTR_SECURE" = yes ]; then
78     ATTR_MODES="user security trusted"
79 else
80     ATTR_MODES="user trusted"
81 fi
82 for nsp in $ATTR_MODES; do
83         for inode in reg dir lnk dev/b dev/c dev/p; do
84
85                 echo; echo "=== TYPE $inode; NAMESPACE $nsp"; echo
86                 echo "*** set/get one initially empty attribute"
87     
88                 setfattr -h -n $nsp.name $SCRATCH_MNT/$inode
89                 getfattr -m $nsp $SCRATCH_MNT/$inode
90
91                 echo "*** overwrite empty, set several new attributes"
92                 setfattr -h -n $nsp.name -v 0xbabe $SCRATCH_MNT/$inode
93                 setfattr -h -n $nsp.name2 -v 0xdeadbeef $SCRATCH_MNT/$inode
94                 setfattr -h -n $nsp.name3 -v 0xdeface $SCRATCH_MNT/$inode
95
96                 echo "*** fetch several attribute names and values (hex)"
97                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
98
99                 echo "*** fetch several attribute names and values (base64)"
100                 getfattr -m $nsp -e base64 $SCRATCH_MNT/$inode
101                 
102                 echo "*** shrink value of an existing attribute"
103                 setfattr -h -n $nsp.name2 -v 0xdeaf $SCRATCH_MNT/$inode
104                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
105
106                 echo "*** grow value of existing attribute"
107                 setfattr -h -n $nsp.name2 -v 0xdecade $SCRATCH_MNT/$inode
108                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
109                 
110                 echo "*** set an empty value for second attribute"
111                 setfattr -h -n $nsp.name2 $SCRATCH_MNT/$inode
112                 getfattr -m $nsp -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
113
114                 echo "*** overwrite empty value"
115                 setfattr -h -n $nsp.name2 -v 0xcafe $SCRATCH_MNT/$inode
116                 getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
117
118                 echo "*** remove attribute"
119                 setfattr -h -x $nsp.name2 $SCRATCH_MNT/$inode
120                 getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
121
122                 echo "*** final list (strings, type=$inode, nsp=$nsp)"
123                 getfattr -m '.' -e hex $SCRATCH_MNT/$inode
124         
125         done
126 done
127
128
129 # Test the directory descent code
130
131 echo; echo
132
133 _extend_test_bed()
134 {
135         echo "*** extend test bed"
136         # must set some descents' attributes to be useful
137         mkdir -p $SCRATCH_MNT/here/up/ascend
138         mkdir -p $SCRATCH_MNT/descend/down/here
139         find $SCRATCH_MNT/descend | xargs setfattr -n user.x -v yz
140         find $SCRATCH_MNT/descend | xargs setfattr -n user.1 -v 23
141         find $SCRATCH_MNT/here | xargs setfattr -n trusted.a -v bc
142         find $SCRATCH_MNT/here | xargs setfattr -n trusted.9 -v 87
143         # whack a symlink in the middle, just to be difficult
144         ln -s $SCRATCH_MNT/here/up $SCRATCH_MNT/descend/and
145         # dump out our new starting point
146         find $SCRATCH_MNT | LC_COLLATE=POSIX sort | _filter_scratch | grep -v "lost+found"
147 }
148
149 _extend_test_bed
150
151 echo
152 echo "*** directory descent with us following symlinks"
153 getfattr -h -L -R -m '.' -e hex $SCRATCH_MNT | _sort_getfattr_output
154
155 echo
156 echo "*** directory descent without following symlinks"
157 getfattr -h -P -R -m '.' -e hex $SCRATCH_MNT | _sort_getfattr_output
158
159
160 # Test the backup/restore code
161
162 echo; echo
163
164 _backup()
165 {
166         # Note: we don't filter scratch here since we need to restore too.  But
167         # we *do* sort the output by path, since it otherwise would depend on
168         # readdir order, which on some filesystems may change after re-creating
169         # the files.
170         _getfattr --absolute-names -dh -R -m '.' $SCRATCH_MNT | _sort_getfattr_output >$1
171         echo BACKUP $1 >>$seqres.full
172         cat $1 >> $seqres.full
173         [ ! -s $1 ] && echo "warning: $1 (backup file) is empty"
174 }
175
176 echo "*** backup everything"
177 _backup $tmp.backup1
178
179 echo "*** clear out the scratch device"
180 rm -rf $(find $SCRATCH_MNT/* | grep -v "lost+found")
181 echo "AFTER REMOVE" >>$seqres.full
182 getfattr -L -R -m '.' $SCRATCH_MNT >>$seqres.full
183
184 echo "*** reset test bed with no extended attributes"
185 _create_test_bed
186 _extend_test_bed
187
188 echo "*** restore everything"
189 setfattr -h --restore=$tmp.backup1
190 _backup $tmp.backup2
191
192 echo "AFTER RESTORE" >>$seqres.full
193 getfattr -L -R -m '.' $SCRATCH_MNT >>$seqres.full
194
195 echo "*** compare before and after backups"
196 diff $tmp.backup1 $tmp.backup2
197 if [ $? -ne 0 ]; then
198         echo "urk, failed - creating $seq.backup1 and $seq.backup2"
199         cp $tmp.backup1 $seq.backup1 && cp $tmp.backup2 $seq.backup2
200         status=1
201         exit
202 fi
203
204 # success, all done
205 status=0
206 exit