btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / xfs / 002
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2014 Red Hat, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 002
6 #
7 # Test that garbage in old v4 superblocks doesn't trip verifiers during growfs
8 #
9 # Older kernels sometimes left garbage in the unused portions
10 # of the superblock during growfs; with the new verifiers this initially
11 # caused failures during a subsequent growfs; see
12 # 10e6e65 xfs: be more forgiving of a v4 secondary sb w/ junk in v5 fields
13 # for further explanation.  (NB: while the commit log was good, the
14 # patch had a bug which was subsequently fixed)
15 #
16 seq=`basename $0`
17 seqres=$RESULT_DIR/$seq
18 echo "QA output created by $seq"
19
20 here=`pwd`
21 tmp=/tmp/$$
22 status=1        # failure is the default!
23 trap "_cleanup; exit \$status" 0 1 2 3 15
24
25 _cleanup()
26 {
27     cd /
28     rm -f $tmp.*
29 }
30
31 # get standard environment, filters and checks
32 . ./common/rc
33 . ./common/filter
34
35 # Modify as appropriate.
36 _supported_fs xfs
37 _require_scratch_nocheck
38 _require_no_large_scratch_dev
39
40 # So we can explicitly turn it _off_:
41 _require_xfs_mkfs_crc
42
43 rm -f $seqres.full
44
45 _scratch_mkfs_xfs -m crc=0 -d size=128m >> $seqres.full 2>&1 || _fail "mkfs failed"
46
47 # Scribble past a couple V4 secondary superblocks to populate sb_crc
48 # (We can't write to the structure member because it doesn't exist
49 # on a v4 superblock, so we use the data type & "write fill")
50 _scratch_xfs_db -x -c "sb 1" -c "type data" -c "write fill 0xff 224 4"
51 _scratch_xfs_db -x -c "sb 2" -c "type data" -c "write fill 0xff 224 4"
52
53 _scratch_mount
54
55 # This should pass
56 $XFS_GROWFS_PROG $SCRATCH_MNT >> $seqres.full 2>&1 || _fail "growfs failed"
57
58 # success, all done
59 status=0
60 exit