common: kill _supported_os
[xfstests-dev.git] / tests / ext4 / 040
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Oracle, Inc.  All Rights Reserved.
4 #
5 # FSQA Test No. ext4/040 (was shared/005)
6 #
7 # Since loff_t is a signed type, it is invalid for a filesystem to load
8 # an inode with i_size = -1ULL.  Unfortunately, nobody checks this,
9 # which means that we can trivially DoS the VFS by creating such a file
10 # and appending to it.  This causes an integer overflow in the routines
11 # underlying writeback, which results in the kernel locking up.
12 #
13 # So, create this malformed inode and try a buffered append to make
14 # sure we catch this situation.
15 #
16 seq=`basename $0`
17 seqres=$RESULT_DIR/$seq
18 echo "QA output created by $seq"
19
20 PIDS=""
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         rm -f $tmp.*
28 }
29
30 # get standard environment, filters and checks
31 . ./common/rc
32 . ./common/filter
33
34 # real QA test starts here
35 _supported_fs ext2 ext3 ext4
36 _require_scratch_nocheck
37 _disable_dmesg_check
38 _require_command "$DEBUGFS_PROG"
39
40 rm -f $seqres.full
41
42 echo "Format and mount"
43 _scratch_mkfs  >> $seqres.full 2>&1
44 _scratch_mount
45
46 testdir=$SCRATCH_MNT
47 echo m > $testdir/a
48
49 echo "Corrupt filesystem"
50 _scratch_unmount
51 $DEBUGFS_PROG -w -R "sif /a size -1" $SCRATCH_DEV >> $seqres.full 2>&1
52
53 # check whether debugfs succeeds to set i_size to -1 or not
54 $DEBUGFS_PROG -R "stat /a" $SCRATCH_DEV 2>&1 | grep -q "Size: 18446744073709551615" || \
55         _notrun "Could not set i_size to -1 successfully, skip test."
56
57 echo "Remount, try to append"
58 _scratch_mount
59 dd if=/dev/zero of=$testdir/a bs=512 count=1 oflag=append conv=notrunc >> $seqres.full 2>&1 || echo "Write did not succeed (ok)."
60 sync
61
62 # success, all done
63 status=0
64 exit