btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / generic / 569
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0-or-newer
3 # Copyright (c) 2019, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 569
6 #
7 # Check that we can't modify a file that's an active swap file.
8
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         cd /
21         swapoff $testfile
22         rm -rf $tmp.* $testfile
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28
29 # real QA test starts here
30 _supported_fs generic
31 _require_xfs_io_command "falloc"
32 _require_test_program swapon
33 _require_scratch_swapfile
34
35 rm -f $seqres.full
36
37 _scratch_mkfs > $seqres.full 2>&1
38 _scratch_mount >> $seqres.full 2>&1
39
40 testfile=$SCRATCH_MNT/$seq.swap
41
42 _format_swapfile $testfile 20m
43
44 # Can you modify the swapfile via previously open file descriptors?
45 for verb in 1 2 3 4; do
46         echo "verb $verb"
47         "$here/src/swapon" -v $verb $testfile
48         swapoff $testfile
49 done
50
51 # Now try writing with a new file descriptor.
52 swapon $testfile 2>&1 | _filter_scratch
53
54 # Can we write to it?
55 $XFS_IO_PROG -c 'pwrite -S 0x59 64k 64k' $testfile 2>&1 | _filter_xfs_io_error
56 $XFS_IO_PROG -d -c 'pwrite -S 0x60 64k 64k' $testfile 2>&1 | _filter_xfs_io_error
57 $XFS_IO_PROG -c 'mmap -rw 64k 64k' -c 'mwrite -S 0x61 64k 64k' $testfile
58
59 # Can we change the file size?
60 $XFS_IO_PROG -c 'truncate 18m' $testfile
61
62 # Can you fallocate the file?
63 $XFS_IO_PROG -c 'falloc 0 32m' $testfile
64
65 # We test that you can't reflink, dedupe, or copy_file_range into a swapfile
66 # in other tests.
67
68 # success, all done
69 status=0
70 exit