xfs: Check for extent overflow when trivally adding a new extent
[xfstests-dev.git] / tests / xfs / 041
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 041
6 #
7 # growfs QA tests - repeatedly fill/grow the filesystem
8 # check the filesystem contents after each operation
9 #
10 set +x
11
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19
20 _cleanup()
21 {
22     cd /
23     _scratch_unmount
24     rm -f $tmp.*
25 }
26 trap "_cleanup ; exit \$status" 0 1 2 3 15
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/filter
31
32 # real QA test starts here
33 _supported_fs xfs
34
35 _require_scratch
36 _require_no_large_scratch_dev
37 _scratch_unmount 2>/dev/null
38
39 _fill()
40 {
41     if [ $# -ne 1 ]; then echo "Usage: _fill \"path\"" 1>&2 ; exit 1; fi
42     _do "Fill filesystem" \
43         "$here/src/fill2fs --verbose --dir=$1 --seed=0 --filesize=65536 --stddev=32768 --list=- >>$tmp.manifest"
44 }
45
46 _do_die_on_error=message_only
47 rm -f $seqres.full
48 agsize=32
49 echo -n "Make $agsize megabyte filesystem on SCRATCH_DEV and mount... "
50 _scratch_mkfs_xfs -dsize=${agsize}m,agcount=1 2>&1 >/dev/null || _fail "mkfs failed"
51 bsize=`_scratch_mkfs_xfs -dsize=${agsize}m,agcount=1 2>&1 | _filter_mkfs 2>&1 \
52                 | perl -ne 'if (/dbsize=(\d+)/) {print $1;}'`
53 onemeginblocks=`expr 1048576 / $bsize`
54 _scratch_mount
55
56 echo "done"
57
58 # full allocation group -> partial; partial -> expand partial + new partial;
59 # partial -> expand partial; partial -> full
60 # cycle through 33m -> 67m -> 75m -> 96m
61 for size in 33 67 75 96
62 do
63     grow_size=`expr $size \* $onemeginblocks`
64     _fill $SCRATCH_MNT/fill_$size
65     _do "Grow filesystem to ${size}m" "xfs_growfs -D $grow_size $SCRATCH_MNT"
66     echo -n "Flush filesystem... "
67     _do "_scratch_unmount"
68     _do "_try_scratch_mount"
69     echo "done"
70     echo -n "Check files... "
71     if ! _do "$here/src/fill2fs_check $tmp.manifest"; then
72       echo "fail (see $seqres.full)"
73       _do "cat $tmp.manifest"
74       _do "ls -altrR $SCRATCH_MNT"
75       _do "dd if=$SCRATCH_DEV bs=4096 count=$grow_size | gzip -9 > $seq.fsimage.gz"
76       status=1 ; exit
77     fi
78     echo "done"
79 done
80
81 # success, all done
82 echo "Growfs tests passed."
83 status=0 ; exit