xfstests: have getfacl(1) report numeric id's
[xfstests-dev.git] / 118
1 #! /bin/bash
2 # FS QA Test No. 118
3 #
4 # To test out pv#940675 crash in xfs_trans_brelse + quotas
5 # Without the fix, this will create an ASSERT failure in debug kernels
6 # and crash a non-debug kernel.
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2000-2005 Silicon Graphics, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 #-----------------------------------------------------------------------
25 #
26 # creator
27 owner=tes@crackle.melbourne.sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     cd /
40     rm -f $tmp.*
41 }
42
43 # get standard environment, filters and checks
44 . ./common.rc
45 . ./common.filter
46 . ./common.quota
47
48 # real QA test starts here
49
50 # Modify as appropriate.
51 _supported_fs xfs
52 _supported_os IRIX Linux
53
54 _require_scratch
55 _require_xfs_quota
56
57 _chowning_file()
58 {
59         file=file.chown
60         let start=$1
61         let limit=$2
62         let delta=$3
63
64         cd $SCRATCH_MNT
65         let count=$start
66         while (( count < limit )); do
67             touch $file
68             chown $count.$count $file
69             echo -n "."
70             let count=count+delta
71         done
72         echo ""
73 }
74
75
76 echo "mkfs on scratch"
77 _scratch_mkfs_xfs >$seq.full
78
79 echo "mount with quotas"
80 export MOUNT_OPTIONS="-o uquota"
81 _scratch_mount
82
83 echo "creating quota file with holes"
84 _chowning_file 1000 2000 100
85
86 echo "now fill in the holes"
87 _chowning_file 1000 2000 1
88
89 echo "look at the final file ownership for fun"
90 ls -l $SCRATCH_MNT/* \
91 | $AWK_PROG 'NF > 2 {print $3, $4, $NF}' \
92 | sed "s#$SCRATCH_MNT#SCRATCH_MNT#g"
93
94 # success, all done
95 status=0
96 exit