fstests: convert remaining tests to SPDX license tags
[xfstests-dev.git] / tests / xfs / 436
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 436
6 #
7 # Ensure that we don't leak inodes when CoW recovery fails.
8 #
9 # Use xfs_fsr to inject bmap redo items in the log for a linked file and
10 # an unlinked file; and then corrupt the refcount btree to ensure that
11 # the CoW garbage collection (and therefore the mount) fail.
12 #
13 # On a subsequent mount attempt, we should be able to replay the bmap
14 # items for the linked and unlinked files without prematurely truncating
15 # the unlinked inode and without leaking the linked inode, and we should
16 # be able to release all the inodes when we're aborting the mount.
17 #
18 seq=`basename "$0"`
19 seqres="$RESULT_DIR/$seq"
20 echo "QA output created by $seq"
21
22 here=`pwd`
23 tmp=/tmp/$$
24 status=1    # failure is the default!
25 trap "_cleanup; exit \$status" 0 1 2 3 15
26
27 _cleanup()
28 {
29         cd /
30         rm -rf "$tmp".*
31 }
32
33 # get standard environment, filters and checks
34 . ./common/rc
35 . ./common/filter
36 . ./common/attr
37 . ./common/reflink
38 . ./common/inject
39 . ./common/module
40
41 # real QA test starts here
42 _supported_os Linux
43 _supported_fs xfs
44 _require_loadable_fs_module "xfs"
45 _require_scratch_reflink
46 _require_cp_reflink
47 _require_command "$XFS_FSR_PROG" "xfs_fsr"
48 _require_xfs_io_error_injection "bmap_finish_one"
49 _require_xfs_scratch_rmapbt
50
51 rm -f "$seqres.full"
52
53 echo "Format and mount"
54 _scratch_mkfs > "$seqres.full" 2>&1
55 _scratch_mount -o noquota >> "$seqres.full" 2>&1
56
57 testdir="$SCRATCH_MNT/test-$seq"
58 blksz=65536
59 blks=3
60 mkdir "$testdir"
61
62 echo "Create a many-block file"
63 _pwrite_byte 0x62 0 $((blksz * blks)) $testdir/file1 >> $seqres.full
64 _pwrite_byte 0x63 0 $blksz $testdir/file2 >> $seqres.full
65 _reflink_range $testdir/file2 0 $testdir/file1 $blksz $blksz >> $seqres.full
66 _scratch_cycle_mount noquota
67
68 echo "Inject error"
69 _scratch_inject_error "bmap_finish_one"
70
71 echo "Defrag the file"
72 $XFS_FSR_PROG -v -d $testdir/file1 >> $seqres.full 2>&1
73
74 echo "FS should be shut down, touch will fail"
75 touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch
76
77 echo "Remount to replay log" | tee /dev/ttyprintk
78 _scratch_unmount
79 _scratch_dump_log >> $seqres.full
80 _scratch_xfs_db -x -c 'agf 0' -c 'addr refcntroot' -c 'fuzz -d recs[1].startblock ones' >> $seqres.full
81 _scratch_xfs_db -x -c 'agf 0' -c 'addr refcntroot' -c p >> $seqres.full
82 _try_scratch_mount -o noquota >> $seqres.full 2>&1
83 _scratch_unmount 2> /dev/null
84 rm -f ${RESULT_DIR}/require_scratch
85
86 echo "See if we leak"
87 _reload_fs_module "xfs"
88
89 # success, all done
90 status=0
91 exit