87c3180540a65be3264da9a18f996b2c3b37d805
[xfstests-dev.git] / tests / generic / 077
1 #! /bin/bash
2 # FS QA Test No. 077
3 #
4 # Check use of ACLs (extended attributes) on a full filesystem
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 seqres=$RESULT_DIR/$seq
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1
34 # Something w/ enough data to fill 50M of fs...
35 filler=/lib/modules/
36
37 _cleanup()
38 {
39         cd /
40         echo "*** unmount"
41         umount $SCRATCH_MNT 2>/dev/null
42 }
43 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
44
45 # get standard environment, filters and checks
46 . ./common/rc
47 . ./common/filter
48 . ./common/attr
49
50 # real QA test starts here
51 _supported_fs generic
52 _supported_os Linux
53
54 [ ! -d $filler ] && _notrun "No directory to source files from"
55
56 _require_attrs
57 _require_acls
58 _require_user
59
60 echo "*** create filesystem"
61
62 rm -f $seqres.full
63 umount $SCRATCH_DEV >/dev/null 2>&1
64 echo "*** MKFS ***"                         >>$seqres.full
65 echo ""                                     >>$seqres.full
66 SIZE=`expr 50 \* 1024 \* 1024`
67 _scratch_mkfs_sized $SIZE                   >>$seqres.full 2>&1 \
68         || _fail "mkfs failed"
69 _scratch_mount                              >>$seqres.full 2>&1 \
70         || _fail "mount failed"
71 mkdir $SCRATCH_MNT/subdir
72
73 echo "*** set default ACL"
74 setfacl -R -dm u:fsgqa:rwx,g::rwx,o::r-x,m::rwx $SCRATCH_MNT/subdir
75
76 echo "*** populate filesystem, pass #1" | tee -a $seqres.full
77 cp -rf $filler $SCRATCH_MNT/subdir >$seqres.full 2>&1
78
79 echo "*** populate filesystem, pass #2" | tee -a $seqres.full
80 cp -rf $filler $SCRATCH_MNT/subdir >$seqres.full 2>&1
81
82 _check_scratch_fs
83
84 echo "*** all done"
85 rm -f $seqres.full
86 status=0
87 exit