xfs: force file creation to the data device for certain layout tests
[xfstests-dev.git] / tests / xfs / 439
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 FUJITSU.  All Rights Reserved.
4 #
5 # FS QA Test No. 439
6 #
7 # Regression test for commit:
8 # 9c92ee2 ("xfs: validate sb_logsunit is a multiple of the fs blocksize")
9 #
10 # If log stripe unit isn't a multiple of the fs blocksize and mounting,
11 # the invalid sb_logsunit leads to crash as soon as we try to write to
12 # the log.
13 #
14 seq=`basename "$0"`
15 seqres="$RESULT_DIR/$seq"
16 echo "QA output created by $seq"
17
18 here=`pwd`
19 tmp=/tmp/$$
20 status=1    # failure is the default!
21 trap "_cleanup; exit \$status" 0 1 2 3 15
22
23 _cleanup()
24 {
25         rm -rf $tmp.*
26 }
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 _require_scratch_nocheck
35 # We corrupt XFS on purpose, and check if assert failures would crash system.
36 _require_no_xfs_bug_on_assert
37
38 rm -f "$seqres.full"
39
40 # Format
41 _scratch_mkfs > $seqres.full 2>&1 || _fail "mkfs failed"
42
43 # Set logsunit to a value which is not a multiple of the fs blocksize
44 blksz=$(_scratch_xfs_get_sb_field blocksize)
45 _scratch_xfs_set_sb_field logsunit $((blksz - 1)) >> $seqres.full 2>&1
46
47 # Check if logsunit is set correctly
48 lsunit=$(_scratch_xfs_get_sb_field logsunit)
49 [ $lsunit -ne $((blksz - 1)) ] && _notrun "failed to set sb_logsunit"
50
51 # Mount and writing log may trigger a crash on buggy kernel
52 # The fix applied kernel refuses to mount, so a mount failure is
53 # expected
54 if _try_scratch_mount >> $seqres.full 2>&1; then
55         for i in $(seq 1 1000); do
56                 echo > ${SCRATCH_MNT}/$i
57         done
58         _scratch_unmount
59 fi
60
61 # We may trigger assert related WARNINGs if we corrupt log on a CONFIG_XFS_WARN
62 # or CONFIG_XFS_DEBUG (when bug_on_assert is disabled) build, so filter them.
63 _check_dmesg _filter_assert_dmesg
64
65 echo "Silence is golden"
66
67 # success, all done
68 status=0
69 exit