fstests: convert remaining tests to SPDX license tags
[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_os Linux
34 _supported_fs xfs
35 _require_scratch_nocheck
36 # We corrupt XFS on purpose, and check if assert failures would crash system.
37 _require_no_xfs_bug_on_assert
38
39 rm -f "$seqres.full"
40
41 # Format
42 _scratch_mkfs > $seqres.full 2>&1 || _fail "mkfs failed"
43
44 # Set logsunit to a value which is not a multiple of the fs blocksize
45 blksz=$(_scratch_xfs_get_sb_field blocksize)
46 _scratch_xfs_set_sb_field logsunit $((blksz - 1)) >> $seqres.full 2>&1
47
48 # Check if logsunit is set correctly
49 lsunit=$(_scratch_xfs_get_sb_field logsunit)
50 [ $lsunit -ne $((blksz - 1)) ] && _notrun "failed to set sb_logsunit"
51
52 # Mount and writing log may trigger a crash on buggy kernel
53 # The fix applied kernel refuses to mount, so a mount failure is
54 # expected
55 if _try_scratch_mount >> $seqres.full 2>&1; then
56         for i in $(seq 1 1000); do
57                 echo > ${SCRATCH_MNT}/$i
58         done
59         _scratch_unmount
60 fi
61
62 # We may trigger assert related WARNINGs if we corrupt log on a CONFIG_XFS_WARN
63 # or CONFIG_XFS_DEBUG (when bug_on_assert is disabled) build, so filter them.
64 _check_dmesg _filter_assert_dmesg
65
66 echo "Silence is golden"
67
68 # success, all done
69 status=0
70 exit