common/fuzzy: if the fuzz verb is random, keep fuzzing until we get a new value
[xfstests-dev.git] / common / attr
1 ##/bin/bash
2 #-----------------------------------------------------------------------
3 #  Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
4 #  This program is free software; you can redistribute it and/or modify
5 #  it under the terms of the GNU General Public License as published by
6 #  the Free Software Foundation; either version 2 of the License, or
7 #  (at your option) any later version.
8 #
9 #  This program is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #  GNU General Public License for more details.
13 #
14 #  You should have received a copy of the GNU General Public License
15 #  along with this program; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
17 #  USA
18 #
19 #  Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
20 #  Mountain View, CA 94043, USA, or: http://www.sgi.com
21 #-----------------------------------------------------------------------
22 # common extended attribute and ACL support
23
24 # filesystems that want to test maximum supported acl counts need to
25 # add support in here
26 _acl_get_max()
27 {
28         case $FSTYP in
29         xfs)
30                 # CRC format filesystems have much larger ACL counts. The actual
31                 # number is into the thousands, but testing that meany takes too
32                 # long, so just test well past the old limit of 25.
33                 xfs_info $TEST_DIR | _filter_mkfs > /dev/null 2> $tmp.info
34                 . $tmp.info
35                 rm $tmp.info
36                 if [ $_fs_has_crcs -eq 0 ]; then
37                         echo 25
38                 else
39                         echo 5461
40                 fi
41                 ;;
42         jfs)
43                 echo 8191
44                 ;;
45         f2fs)
46                 _fs_options $TEST_DEV | grep "inline_xattr" >/dev/null 2>&1
47                 if [ $? -eq 0 ]; then
48                         echo 531
49                 else
50                         echo 506
51                 fi
52                 ;;
53         *)
54                 echo 0
55                 ;;
56         esac
57 }
58
59 _require_acl_get_max()
60 {
61         if [ $(_acl_get_max) -eq 0 ]; then
62                 _notrun "$FSTYP does not define maximum ACL count"
63         fi
64 }
65
66 # pick three unused user/group ids, store them as $acl[1-3]
67 #
68 _acl_setup_ids()
69 {
70     eval `(_cat_passwd; _cat_group) | awk -F: '
71       { ids[$3]=1 }
72       END {
73         j=1
74         for(i=1; i<1000000 && j<=3;i++){
75           if (! (i in ids)) {
76              printf "acl%d=%d;", j, i;           
77              j++
78           }
79         }       
80       }'`
81 }
82
83 # filter for the acl ids selected above
84 #
85 _acl_filter_id()
86 {
87     sed \
88        -e "s/u:$acl1/u:id1/" \
89        -e "s/u:$acl2/u:id2/" \
90        -e "s/u:$acl3/u:id3/" \
91        -e "s/g:$acl1/g:id1/" \
92        -e "s/g:$acl2/g:id2/" \
93        -e "s/g:$acl3/g:id3/" \
94        -e "s/ $acl1 / id1 /" \
95        -e "s/ $acl2 / id2 /" \
96        -e "s/ $acl3 / id3 /"
97 }
98
99 _getfacl_filter_id()
100 {
101     sed \
102        -e "s/user:$acl1/user:id1/" \
103        -e "s/user:$acl2/user:id2/" \
104        -e "s/user:$acl3/user:id3/" \
105        -e "s/group:$acl1/group:id1/" \
106        -e "s/group:$acl2/group:id2/" \
107        -e "s/group:$acl3/group:id3/" \
108        -e "s/: $acl1/: id1/" \
109        -e "s/: $acl2/: id2/" \
110        -e "s/: $acl3/: id3/"
111 }
112
113 # filtered ls
114 #
115 _acl_ls()
116 {
117     _ls_l -n $* | awk '{ print $1, $3, $4, $NF }' | _acl_filter_id
118
119
120 # create an ACL with n ACEs in it
121 #
122 _create_n_aces()
123 {
124     let n=$1-4
125     acl='u::rwx,g::rwx,o::rwx,m::rwx' # 4 ace acl start
126     while [ $n -ne 0 ]; do
127         acl="$acl,u:$n:rwx"
128         let n=$n-1
129     done
130     echo $acl
131 }
132
133 # filter user ace names to user ids
134 #
135 _filter_aces()
136 {
137     tmp_file=`mktemp /tmp/ace.XXXXXX`
138
139     (_cat_passwd; _cat_group) > $tmp_file
140
141     $AWK_PROG -v tmpfile=$tmp_file '
142         BEGIN {
143             FS=":"
144             while ( getline <tmpfile > 0 ) {
145                 idlist[$1] = $3 
146             }
147         }
148         /^user/ { if ($2 in idlist) sub($2, idlist[$2]); print; next}
149         /^u/ { if ($2 in idlist) sub($2, idlist[$2]); print; next}
150         /^default:user/ { if ($3 in idlist) sub($3, idlist[$3]); print; next}
151         {print}
152     '
153     rm -f $tmp_file
154 }
155
156 _filter_aces_notypes()
157 {
158     tr '\[' '\012' | tr ']' '\012' | tr ',' '\012' | _filter_aces|\
159     sed -e 's/u:/user:/' -e 's/g:/group:/' -e 's/o:/other:/' -e 's/m:/mask:/'
160 }
161
162 _require_acls()
163 {
164     [ -n "$CHACL_PROG" ] || _notrun "chacl command not found"
165
166     #
167     # Test if chacl is able to list ACLs on the target filesystems.  On really
168     # old kernels the system calls might not be implemented at all, but the
169     # more common case is that the tested filesystem simply doesn't support
170     # ACLs.
171     #
172     touch $TEST_DIR/syscalltest
173     chacl -l $TEST_DIR/syscalltest > $TEST_DIR/syscalltest.out 2>&1
174     cat $TEST_DIR/syscalltest.out >> $seqres.full
175
176     if grep -q 'Function not implemented' $TEST_DIR/syscalltest.out; then
177       _notrun "kernel does not support ACLs"
178     fi
179     if grep -q 'Operation not supported' $TEST_DIR/syscalltest.out; then
180       _notrun "ACLs not supported by this filesystem type: $FSTYP"
181     fi
182
183     rm -f $TEST_DIR/syscalltest.out
184 }
185
186 _list_acl()
187 {
188     file=$1
189
190     ls -dD $file | _acl_filter_id
191 }
192
193 _require_attrs()
194 {
195     [ -n "$ATTR_PROG" ] || _notrun "attr command not found"
196     [ -n "$GETFATTR_PROG" ] || _notrun "getfattr command not found"
197     [ -n "$SETFATTR_PROG" ] || _notrun "setfattr command not found"
198
199     #
200     # Test if chacl is able to write an attribute on the target filesystems.
201     # On really old kernels the system calls might not be implemented at all,
202     # but the more common case is that the tested filesystem simply doesn't
203     # support attributes.  Note that we can't simply list attributes as
204     # various security modules generate synthetic attributes not actually
205     # stored on disk.
206     #
207     touch $TEST_DIR/syscalltest
208     attr -s "user.xfstests" -V "attr" $TEST_DIR/syscalltest > $TEST_DIR/syscalltest.out 2>&1
209     cat $TEST_DIR/syscalltest.out >> $seqres.full
210
211     if grep -q 'Function not implemented' $TEST_DIR/syscalltest.out; then
212       _notrun "kernel does not support attrs"
213     fi
214     if grep -q 'Operation not supported' $TEST_DIR/syscalltest.out; then
215       _notrun "attrs not supported by this filesystem type: $FSTYP"
216     fi
217
218     rm -f $TEST_DIR/syscalltest.out
219 }
220
221 _require_attr_v1()
222 {
223         _scratch_mkfs_xfs_supported -i attr=1 >/dev/null 2>&1 \
224                 || _notrun "attr v1 not supported on $SCRATCH_DEV"
225 }
226
227 # check if we support the noattr2 mount option
228 _require_noattr2()
229 {
230         _scratch_mkfs_xfs > /dev/null 2>&1 \
231                 || _fail "_scratch_mkfs_xfs failed on $SCRATCH_DEV"
232         _scratch_mount -o noattr2 > /dev/null 2>&1 \
233                 || _notrun "noattr2 mount option not supported on $SCRATCH_DEV"
234         _scratch_unmount
235 }
236
237 # getfattr -R returns info in readdir order which varies from fs to fs.
238 # This sorts the output by filename
239 _sort_getfattr_output()
240 {
241     awk '{a[FNR]=$0}END{n = asort(a); for(i=1; i <= n; i++) print a[i]"\n"}' RS=''
242 }
243
244 # set maximum total attr space based on fs type
245 case "$FSTYP" in
246 xfs|udf|pvfs2|ceph)
247         MAX_ATTRS=1000
248         ;;
249 *)
250         # Assume max ~1 block of attrs
251         BLOCK_SIZE=`_get_block_size $TEST_DIR`
252         # user.attribute_XXX="value.XXX" is about 32 bytes; leave some overhead
253         let MAX_ATTRS=$BLOCK_SIZE/40
254 esac
255
256 export MAX_ATTRS
257
258 # Set max attr value size based on fs type
259 case "$FSTYP" in
260 xfs|udf|btrfs)
261         MAX_ATTRVAL_SIZE=64
262         ;;
263 pvfs2)
264         MAX_ATTRVAL_SIZE=8192
265         ;;
266 ceph)
267         MAX_ATTRVAL_SIZE=65536
268         ;;
269 *)
270         # Assume max ~1 block of attrs
271         BLOCK_SIZE=`_get_block_size $TEST_DIR`
272         # leave a little overhead
273         let MAX_ATTRVAL_SIZE=$BLOCK_SIZE-256
274 esac
275
276 export MAX_ATTRVAL_SIZE
277 # make sure this script returns success
278 /bin/true