Use upstream version of fstrim instead of the local one
[xfstests-dev.git] / 062
1 #! /bin/bash
2 # FS QA Test No. 062
3 #
4 # Exercises the getfattr/setfattr tools
5 # Derived from tests originally written by Andreas Gruenbacher for ext2
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25 # creator
26 owner=nathans@sgi.com
27
28 seq=`basename $0`
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
38 . ./common.attr
39
40 _cleanup()
41 {
42         cd /
43         echo; echo "*** unmount"
44         umount $SCRATCH_MNT 2>/dev/null
45         rm -f $tmp.*
46 }
47 trap "_cleanup; exit \$status" 0 1 2 3 15
48
49 getfattr()
50 {
51     $GETFATTR_PROG --absolute-names -dh $@ 2>&1 | _filter_scratch
52 }
53
54 setfattr()
55 {
56     $SETFATTR_PROG $@ 2>&1 | _filter_scratch
57 }
58
59 _create_test_bed()
60 {
61         echo "*** create test bed"
62         touch $SCRATCH_MNT/reg
63         mkdir -p $SCRATCH_MNT/dir
64         ln -s $SCRATCH_MNT/dir $SCRATCH_MNT/lnk
65         mkdir $SCRATCH_MNT/dev
66         mknod $SCRATCH_MNT/dev/b b 0 0
67         mknod $SCRATCH_MNT/dev/c c 0 0
68         mknod $SCRATCH_MNT/dev/p p
69         # sanity check
70         find $SCRATCH_MNT | LC_COLLATE=POSIX sort | _filter_scratch | grep -v "lost+found"
71 }
72
73 # real QA test starts here
74 _supported_fs generic
75 _supported_os Linux
76
77 _require_scratch
78 _require_attrs
79
80 rm -f $tmp.backup1 $tmp.backup2 $seq.full
81
82 # real QA test starts here
83 _scratch_mkfs > /dev/null 2>&1 || _fail "mkfs failed"
84 _scratch_mount || _fail "mount failed"
85 _create_test_bed
86
87 # In kernels before 3.0, getxattr() fails with EPERM for an attribute which
88 # cannot exist.  Later kernels fail with ENODATA.  Accept both results.
89 invalid_attribute_filter() {
90         sed -e "s:\(No such attribute\|Operation not permitted\):No such attribute or operation not permitted:"
91 }
92
93 if [ "$USE_ATTR_SECURE" = yes ]; then
94     ATTR_MODES="user security trusted"
95 else
96     ATTR_MODES="user trusted"
97 fi
98 for nsp in $ATTR_MODES; do
99         for inode in reg dir lnk dev/b dev/c dev/p; do
100
101                 echo; echo "=== TYPE $inode; NAMESPACE $nsp"; echo
102                 echo "*** set/get one initially empty attribute"
103     
104                 setfattr -h -n $nsp.name $SCRATCH_MNT/$inode
105                 getfattr -m $nsp $SCRATCH_MNT/$inode
106
107                 echo "*** overwrite empty, set several new attributes"
108                 setfattr -h -n $nsp.name -v 0xbabe $SCRATCH_MNT/$inode
109                 setfattr -h -n $nsp.name2 -v 0xdeadbeef $SCRATCH_MNT/$inode
110                 setfattr -h -n $nsp.name3 -v 0xdeface $SCRATCH_MNT/$inode
111
112                 echo "*** fetch several attribute names and values (hex)"
113                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
114
115                 echo "*** fetch several attribute names and values (base64)"
116                 getfattr -m $nsp -e base64 $SCRATCH_MNT/$inode
117                 
118                 echo "*** shrink value of an existing attribute"
119                 setfattr -h -n $nsp.name2 -v 0xdeaf $SCRATCH_MNT/$inode
120                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
121
122                 echo "*** grow value of existing attribute"
123                 setfattr -h -n $nsp.name2 -v 0xdecade $SCRATCH_MNT/$inode
124                 getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
125                 
126                 echo "*** set an empty value for second attribute"
127                 setfattr -h -n $nsp.name2 $SCRATCH_MNT/$inode
128                 getfattr -m $nsp -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
129
130                 echo "*** overwrite empty value"
131                 setfattr -h -n $nsp.name2 -v 0xcafe $SCRATCH_MNT/$inode
132                 getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
133
134                 echo "*** remove attribute"
135                 setfattr -h -x $nsp.name2 $SCRATCH_MNT/$inode
136                 getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode 2>&1 | invalid_attribute_filter
137
138                 echo "*** final list (strings, type=$inode, nsp=$nsp)"
139                 getfattr -m '.' -e hex $SCRATCH_MNT/$inode
140         
141         done
142 done
143
144
145
146 # Test the directory descent code
147
148 echo; echo
149
150 _extend_test_bed()
151 {
152         echo "*** extend test bed"
153         # must set some descents' attributes to be useful
154         mkdir -p $SCRATCH_MNT/here/up/ascend
155         mkdir -p $SCRATCH_MNT/descend/down/here
156         find $SCRATCH_MNT/descend | xargs setfattr -n user.x -v yz
157         find $SCRATCH_MNT/descend | xargs setfattr -n user.1 -v 23
158         find $SCRATCH_MNT/here | xargs setfattr -n trusted.a -v bc
159         find $SCRATCH_MNT/here | xargs setfattr -n trusted.9 -v 87
160         # whack a symlink in the middle, just to be difficult
161         ln -s $SCRATCH_MNT/here/up $SCRATCH_MNT/descend/and
162         # dump out our new starting point
163         find $SCRATCH_MNT | LC_COLLATE=POSIX sort | _filter_scratch | grep -v "lost+found"
164 }
165
166 _extend_test_bed
167
168 echo
169 echo "*** directory descent with us following symlinks"
170 getfattr -h -L -R -m '.' -e hex $SCRATCH_MNT | _sort_getfattr_output
171
172 echo
173 echo "*** directory descent without following symlinks"
174 getfattr -h -P -R -m '.' -e hex $SCRATCH_MNT | _sort_getfattr_output
175
176
177
178 # Test the backup/restore code
179
180 echo; echo
181
182 _backup()
183 {
184         # NB: no filtering of scratch here... (need to restore too)
185         $GETFATTR_PROG --absolute-names -dh -R -m '.' $SCRATCH_MNT >$1
186         echo BACKUP $1 >>$seq.full
187         cat $1 >> $seq.full
188         [ ! -s $1 ] && echo "warning: $1 (backup file) is empty"
189 }
190
191 echo "*** backup everything"
192 _backup $tmp.backup1
193
194 echo "*** clear out the scratch device"
195 rm -fr $SCRATCH_MNT/*
196 echo "AFTER REMOVE" >>$seq.full
197 getfattr -L -R -m '.' $SCRATCH_MNT >>$seq.full
198
199 echo "*** reset test bed with no extended attributes"
200 _create_test_bed
201 _extend_test_bed
202
203 echo "*** restore everything"
204 setfattr -h --restore=$tmp.backup1
205 _backup $tmp.backup2
206
207 echo "AFTER RESTORE" >>$seq.full
208 getfattr -L -R -m '.' $SCRATCH_MNT >>$seq.full
209
210 echo "*** compare before and after backups"
211 diff $tmp.backup1 $tmp.backup2
212 if [ $? -ne 0 ]; then
213         echo "urk, failed - creating $seq.backup1 and $seq.backup2"
214         cp $tmp.backup1 $seq.backup1 && cp $tmp.backup2 $seq.backup2
215         status=1
216         exit
217 fi
218
219 # success, all done
220 status=0
221 exit