mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
1ff4192932
Fully scripted conversion, see script in initial SPDX license commit message. Signed-off-by: Dave Chinner <dchinner@redhat.com>
84 lines
2.4 KiB
Bash
Executable File
84 lines
2.4 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2015 SUSE Linux Products GmbH. All Rights Reserved.
|
|
#
|
|
# FSQA Test No. 106
|
|
#
|
|
# Regression test for file read corruption when using compressed extents
|
|
# that represent file ranges with a length that is a multiple of 16 pages
|
|
# and that are shared by multiple consecutive ranges of the same file.
|
|
#
|
|
seq=`basename $0`
|
|
seqres=$RESULT_DIR/$seq
|
|
echo "QA output created by $seq"
|
|
tmp=/tmp/$$
|
|
status=1 # failure is the default!
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
_cleanup()
|
|
{
|
|
cd /
|
|
rm -f $tmp.*
|
|
}
|
|
|
|
# get standard environment, filters and checks
|
|
. ./common/rc
|
|
. ./common/filter
|
|
|
|
# real QA test starts here
|
|
_supported_fs btrfs
|
|
_supported_os Linux
|
|
_require_scratch
|
|
_require_cloner
|
|
|
|
rm -f $seqres.full
|
|
|
|
test_clone_and_read_compressed_extent()
|
|
{
|
|
local mount_opts=$1
|
|
|
|
_scratch_mkfs >>$seqres.full 2>&1
|
|
_scratch_mount $mount_opts
|
|
|
|
PAGE_SIZE=$(get_page_size)
|
|
|
|
# Create our test file with 16 pages worth of data in a single extent
|
|
# that is going to be compressed no matter which compression algorithm
|
|
# is used (zlib/lzo).
|
|
$XFS_IO_PROG -f -c "pwrite -S 0xaa 0K $((16 * $PAGE_SIZE))" \
|
|
$SCRATCH_MNT/foo | _filter_xfs_io_pages_modified
|
|
|
|
# Now clone the compressed extent into an adjacent file offset.
|
|
$CLONER_PROG -s 0 -d $((16 * $PAGE_SIZE)) -l $((16 * $PAGE_SIZE)) \
|
|
$SCRATCH_MNT/foo $SCRATCH_MNT/foo
|
|
|
|
echo "File contents before unmount:"
|
|
od -t x1 $SCRATCH_MNT/foo | _filter_od
|
|
|
|
# Remount the fs or clear the page cache to trigger the bug in btrfs.
|
|
# Because the extent has an uncompressed length that is a multiple of 16
|
|
# pages, all the pages belonging to the second range of the file that is
|
|
# mapped by the page index range [16, 31], which points to the same
|
|
# extent as the first file range mapped by the page index range [0, 15],
|
|
# had their contents full of zeroes instead of the byte 0xaa. This was a
|
|
# bug exclusively in the read path of compressed extents, the correct
|
|
# data was stored on disk, btrfs just failed to fill in the pages
|
|
# correctly.
|
|
_scratch_cycle_mount
|
|
|
|
echo "File contents after remount:"
|
|
# Must match the digest we got before.
|
|
od -t x1 $SCRATCH_MNT/foo | _filter_od
|
|
}
|
|
|
|
echo -e "\nTesting with zlib compression..."
|
|
test_clone_and_read_compressed_extent "-o compress=zlib"
|
|
|
|
_scratch_unmount
|
|
|
|
echo -e "\nTesting with lzo compression..."
|
|
test_clone_and_read_compressed_extent "-o compress=lzo"
|
|
|
|
status=0
|
|
exit
|