xfs/419: remove irrelevant swapfile test
[xfstests-dev.git] / tests / xfs / 133
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Oracle, Inc.  All Rights Reserved.
4 #
5 # FSQA Test No. 133
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 xfs
36 _require_scratch_nocheck
37 _disable_dmesg_check
38
39 rm -f $seqres.full
40
41 echo "Format and mount"
42 _scratch_mkfs  >> $seqres.full 2>&1
43 _scratch_mount
44
45 testdir=$SCRATCH_MNT
46 echo m > $testdir/a
47 inum=$(stat -c "%i" $testdir/a)
48
49 echo "Corrupt filesystem"
50 _scratch_unmount
51
52 # run two xfs_db commands to set core.size regardless of the special argument "--"
53 # is needed or not.
54 _scratch_xfs_db -x -c "inode ${inum}" -c 'write core.size -- -1' >> $seqres.full 2>&1
55 _scratch_xfs_db -x -c "inode ${inum}" -c 'write core.size -1' >> $seqres.full 2>&1
56
57 # check core.size and _notrun if it's not set correctly
58 i_size=`_scratch_xfs_db -c "inode ${inum}" -c "print core.size" | $AWK_PROG '{print $3}'`
59 if [ $i_size -ne -1 ]; then
60         _notrun "Could not set i_size to -1 successfully, skip test."
61 fi
62
63 echo "Remount, try to append"
64 _scratch_mount
65 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)."
66 sync
67
68 # success, all done
69 status=0
70 exit