xfstests: change test case file mode to 0755
[xfstests-dev.git] / tests / xfs / 287
1 #! /bin/bash
2 # FS QA Test No. 285
3 #
4 # Test to verify project quota xfs_admin, xfsdump/xfsrestore and
5 # xfs_db functionality
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2012 Red Hat, 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
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29 tmp=/tmp/$$
30 here=`pwd`
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33 rm -f $seqres.full
34
35 # get standard environment, filters and checks
36 . ./common/rc
37 . ./common/quota
38
39 _cleanup()
40 {
41         cd /
42         umount $SCRATCH_MNT 2>/dev/null
43         rm -rf $tmp.*
44 }
45
46 _print_projid()
47 {
48         $XFS_DB_PROG -c "inode $1" \
49                 -c "print core.projid_lo" \
50                 -c "print core.projid_hi" \
51                 $SCRATCH_DEV
52 }
53
54 # real QA test starts here
55 _supported_fs xfs
56 _require_xfs_quota
57 _require_scratch
58 _require_projid32bit
59
60 # create xfs fs without projid32bit ability, will be gained by xfs_admin
61 _scratch_mkfs_xfs -i projid32bit=0 -d size=200m >> $seqres.full \
62                 || _fail "mkfs failed"
63 _qmount_option "pquota"
64 _qmount
65 # require project quotas
66 _require_prjquota $SCRATCH_DEV
67
68 dir=$SCRATCH_MNT/pquota
69
70 status=1
71
72 mkdir -p $dir
73 touch $dir/{16,32}bit
74 inode16a=$(ls -i $dir/16bit | cut -d ' ' -f 1)
75 inode32a=$(ls -i $dir/32bit | cut -d ' ' -f 1)
76 $XFS_QUOTA_PROG -x -c "project -s -p $dir/16bit 1234" $SCRATCH_DEV \
77                 >> $seqres.full
78 $XFS_QUOTA_PROG -x -c "project -s -p $dir/32bit 2123456789" $SCRATCH_DEV \
79                 >> $seqres.full 2>&1
80
81 echo "No 32bit project quotas:"
82 $XFS_IO_PROG -r -c "lsproj" $dir/16bit
83 $XFS_IO_PROG -r -c "lsproj" $dir/32bit
84
85 umount $SCRATCH_MNT
86
87 # Now, enable projid32bit support by xfs_admin
88 xfs_admin -p $SCRATCH_DEV >> $seqres.full 2>&1 || _fail "xfs_admin failed"
89
90 # Now mount the fs, 32bit project quotas shall be supported, now
91 _qmount_option "pquota"
92 _qmount
93 $XFS_QUOTA_PROG -x -c "project -s -p $dir/32bit 2123456789" $SCRATCH_DEV \
94                 >> $seqres.full
95
96 # These will be checked by $seq.out
97 echo "With 32bit project quota support:"
98 $XFS_IO_PROG -r -c "lsproj" $dir/16bit
99 $XFS_IO_PROG -r -c "lsproj" $dir/32bit
100
101 # Dump the fs to a temporary file
102 rm -f $tmp.dump.img
103 $XFSDUMP_PROG -f $tmp.dump -L label -M media -l 0 $SCRATCH_MNT >> $seqres.full \
104                 || _fail "dump failed"
105
106 # Prepare the device to restore the dumped file system
107 restore_dir=$SCRATCH_MNT/restore/pquota
108
109 # Just make the restore dir, the pquota dir will be created by xfsrestore
110 mkdir -p $SCRATCH_MNT/restore
111
112 # Restore
113 $XFSRESTORE_PROG -f $tmp.dump $SCRATCH_MNT/restore >> $seqres.full 2>&1 \
114                 || _fail "xfsrestore failed"
115
116 # Check that they are the same
117 diff -urpN $SCRATCH_MNT/{,restore}/pquota || _fail "diff failed"
118
119 touch $restore_dir/32bitv2
120 inode16b=$(ls -i $restore_dir/16bit | cut -d ' ' -f 1)
121 inode32b=$(ls -i $restore_dir/32bit | cut -d ' ' -f 1)
122 inode32v2=$(ls -i $restore_dir/32bitv2 | cut -d ' ' -f 1)
123 $XFS_QUOTA_PROG -x -c "project -s -p $restore_dir/32bitv2 2123456789" \
124                 $SCRATCH_MNT >> $seqres.full
125 echo "The restored file system + one additional file:"
126 $XFS_IO_PROG -r -c "lsproj" $restore_dir/16bit
127 $XFS_IO_PROG -r -c "lsproj" $restore_dir/32bit
128 $XFS_IO_PROG -r -c "lsproj" $restore_dir/32bitv2
129
130 umount $SCRATCH_MNT
131
132 # Now, we can examine the file systems with xfs_db
133 echo "These two values of 16bit project quota ids shall be the same"
134 _print_projid $inode16a
135 _print_projid $inode16b
136
137 echo "These three values of 32bit project quota ids shall be the same"
138 _print_projid $inode32b
139 _print_projid $inode32a
140 _print_projid $inode32v2
141
142 status=0
143 exit