From 872ccc54ca2c5ca32b1255d32e3eac012d42e98c Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Fri, 17 Jun 2016 09:39:52 -0700 Subject: [PATCH] xfs: inject errors at various parts of the deferred op completion Use the error injection mechanism to test log recovery of deferred work. Signed-off-by: Darrick J. Wong Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- common/inject | 93 +++++++++++++++++++++++++++++++++++++++ common/log | 28 ++++++++++++ common/rc | 8 ++++ tests/xfs/312 | 102 +++++++++++++++++++++++++++++++++++++++++++ tests/xfs/312.out | 18 ++++++++ tests/xfs/313 | 102 +++++++++++++++++++++++++++++++++++++++++++ tests/xfs/313.out | 18 ++++++++ tests/xfs/314 | 106 ++++++++++++++++++++++++++++++++++++++++++++ tests/xfs/314.out | 18 ++++++++ tests/xfs/315 | 99 +++++++++++++++++++++++++++++++++++++++++ tests/xfs/315.out | 16 +++++++ tests/xfs/316 | 100 ++++++++++++++++++++++++++++++++++++++++++ tests/xfs/316.out | 16 +++++++ tests/xfs/317 | 95 ++++++++++++++++++++++++++++++++++++++++ tests/xfs/317.out | 16 +++++++ tests/xfs/318 | 93 +++++++++++++++++++++++++++++++++++++++ tests/xfs/318.out | 15 +++++++ tests/xfs/319 | 97 +++++++++++++++++++++++++++++++++++++++++ tests/xfs/319.out | 19 ++++++++ tests/xfs/320 | 95 ++++++++++++++++++++++++++++++++++++++++ tests/xfs/320.out | 18 ++++++++ tests/xfs/321 | 94 +++++++++++++++++++++++++++++++++++++++ tests/xfs/321.out | 17 ++++++++ tests/xfs/322 | 97 +++++++++++++++++++++++++++++++++++++++++ tests/xfs/322.out | 17 ++++++++ tests/xfs/323 | 94 +++++++++++++++++++++++++++++++++++++++ tests/xfs/323.out | 17 ++++++++ tests/xfs/324 | 101 ++++++++++++++++++++++++++++++++++++++++++ tests/xfs/324.out | 17 ++++++++ tests/xfs/325 | 95 ++++++++++++++++++++++++++++++++++++++++ tests/xfs/325.out | 15 +++++++ tests/xfs/326 | 109 ++++++++++++++++++++++++++++++++++++++++++++++ tests/xfs/326.out | 18 ++++++++ tests/xfs/group | 15 +++++++ 34 files changed, 1878 insertions(+) create mode 100644 common/inject create mode 100755 tests/xfs/312 create mode 100644 tests/xfs/312.out create mode 100755 tests/xfs/313 create mode 100644 tests/xfs/313.out create mode 100755 tests/xfs/314 create mode 100644 tests/xfs/314.out create mode 100755 tests/xfs/315 create mode 100644 tests/xfs/315.out create mode 100755 tests/xfs/316 create mode 100644 tests/xfs/316.out create mode 100755 tests/xfs/317 create mode 100644 tests/xfs/317.out create mode 100755 tests/xfs/318 create mode 100644 tests/xfs/318.out create mode 100755 tests/xfs/319 create mode 100644 tests/xfs/319.out create mode 100755 tests/xfs/320 create mode 100644 tests/xfs/320.out create mode 100755 tests/xfs/321 create mode 100644 tests/xfs/321.out create mode 100755 tests/xfs/322 create mode 100644 tests/xfs/322.out create mode 100755 tests/xfs/323 create mode 100644 tests/xfs/323.out create mode 100755 tests/xfs/324 create mode 100644 tests/xfs/324.out create mode 100755 tests/xfs/325 create mode 100644 tests/xfs/325.out create mode 100755 tests/xfs/326 create mode 100644 tests/xfs/326.out diff --git a/common/inject b/common/inject new file mode 100644 index 00000000..8ecc2901 --- /dev/null +++ b/common/inject @@ -0,0 +1,93 @@ +##/bin/bash +# Routines for injecting errors into filesystems +#----------------------------------------------------------------------- +# Copyright (c) 2016 Oracle. All Rights Reserved. +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA +# +# Contact information: Oracle Corporation, 500 Oracle Parkway, +# Redwood Shores, CA 94065, USA, or: http://www.oracle.com/ +#----------------------------------------------------------------------- +. ./common/log + +# Tests whether $FSTYP is one of the filesystems that supports error injection +_require_error_injection() +{ + case "$FSTYP" in + "xfs") + grep -q 'debug 1' /proc/fs/xfs/stat || \ + _notrun "XFS error injection requires CONFIG_XFS_DEBUG" + ;; + *) + _notrun "Error injection not supported on filesystem type: $FSTYP" + esac +} + +# Requires that xfs_io inject command knows about this error type +_require_xfs_io_error_injection() +{ + type="$1" + _require_error_injection + + # NOTE: We can't actually test error injection here because xfs + # hasn't always range checked the argument to xfs_errortag_add. + # We also don't want to trip an error before we're ready to deal + # with it. + + $XFS_IO_PROG -x -c 'inject' $TEST_DIR | grep -q "$type" || \ + _notrun "XFS error injection $type unknown." +} + +# Inject an error into the test fs +_test_inject_error() +{ + type="$1" + + $XFS_IO_PROG -x -c "inject $type" $TEST_DIR +} + +# Inject an error into the scratch fs +_scratch_inject_error() +{ + type="$1" + + $XFS_IO_PROG -x -c "inject $type" $SCRATCH_MNT +} + +# Unmount and remount the scratch device, dumping the log +_scratch_inject_logprint() +{ + local opts="$1" + + if test -n "$opts"; then + opts="-o $opts" + fi + _scratch_unmount + _scratch_dump_log + _scratch_mount "$opts" +} + +# Unmount and remount the test device, dumping the log +_test_inject_logprint() +{ + local opts="$1" + + if test -n "$opts"; then + opts="-o $opts" + fi + _test_unmount + _test_dump_log + _test_mount "$opts" +} diff --git a/common/log b/common/log index cb687d2c..82899c67 100644 --- a/common/log +++ b/common/log @@ -228,6 +228,34 @@ _scratch_f2fs_logstate() echo $? } +_scratch_dump_log() +{ + case "$FSTYP" in + xfs) + _scratch_xfs_logprint + ;; + f2fs) + $DUMP_F2FS_PROG $SCRATCH_DEV + ;; + *) + ;; + esac +} + +_test_dump_log() +{ + case "$FSTYP" in + xfs) + _test_xfs_logprint + ;; + f2fs) + $DUMP_F2FS_PROG $TEST_DEV + ;; + *) + ;; + esac +} + _print_logstate() { case "$FSTYP" in diff --git a/common/rc b/common/rc index 9f76ab28..0c68e4ff 100644 --- a/common/rc +++ b/common/rc @@ -1096,6 +1096,14 @@ _scratch_xfs_logprint() $XFS_LOGPRINT_PROG $SCRATCH_OPTIONS $* $SCRATCH_DEV } +_test_xfs_logprint() +{ + TEST_OPTIONS="" + [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_LOGDEV" ] && \ + TEST_OPTIONS="-l$TEST_LOGDEV" + $XFS_LOGPRINT_PROG $TEST_OPTIONS $* $TEST_DEV +} + _scratch_xfs_check() { SCRATCH_OPTIONS="" diff --git a/tests/xfs/312 b/tests/xfs/312 new file mode 100755 index 00000000..0c104414 --- /dev/null +++ b/tests/xfs/312 @@ -0,0 +1,102 @@ +#! /bin/bash +# FS QA Test No. 312 +# +# Reflink a file with a few dozen extents, CoW a few blocks, and rm. +# Inject an error during block remap to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_xfs_io_error_injection "bmap_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file3 + +# Punch holes in file3 +seq 1 2 $blks | while read off; do + $XFS_IO_PROG -c "fpunch $((off * blksz)) $blksz" $SCRATCH_MNT/file3 >> $seqres.full +done +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "bmap_finish_one" + +echo "CoW a few blocks" +$XFS_IO_PROG -c "pwrite -W -S 0x67 -b $sz $((10 * blksz)) $((10 * blksz))" $SCRATCH_MNT/file2 >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Check files again" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/312.out b/tests/xfs/312.out new file mode 100644 index 00000000..7fd5f8ab --- /dev/null +++ b/tests/xfs/312.out @@ -0,0 +1,18 @@ +QA output created by 312 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Inject error +CoW a few blocks +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +FS should be online, touch should succeed +Check files again +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +1e108771fba35e2f2961d1ad23efbff7 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Done diff --git a/tests/xfs/313 b/tests/xfs/313 new file mode 100755 index 00000000..1a2cff20 --- /dev/null +++ b/tests/xfs/313 @@ -0,0 +1,102 @@ +#! /bin/bash +# FS QA Test No. 313 +# +# Reflink a file with a few dozen extents, CoW a few blocks, and rm. +# Inject an error during refcount updates to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_xfs_io_error_injection "refcount_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file3 + +# Punch holes in file3 +seq 1 2 $blks | while read off; do + $XFS_IO_PROG -c "fpunch $((off * blksz)) $blksz" $SCRATCH_MNT/file3 >> $seqres.full +done +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "refcount_finish_one" + +echo "CoW a few blocks" +$XFS_IO_PROG -c "pwrite -W -S 0x67 -b $sz $((10 * blksz)) $((10 * blksz))" $SCRATCH_MNT/file2 >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Check files again" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/313.out b/tests/xfs/313.out new file mode 100644 index 00000000..83a0dc24 --- /dev/null +++ b/tests/xfs/313.out @@ -0,0 +1,18 @@ +QA output created by 313 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Inject error +CoW a few blocks +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +FS should be online, touch should succeed +Check files again +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Done diff --git a/tests/xfs/314 b/tests/xfs/314 new file mode 100755 index 00000000..6b867b85 --- /dev/null +++ b/tests/xfs/314 @@ -0,0 +1,106 @@ +#! /bin/bash +# FS QA Test No. 314 +# +# Reflink a file with a few dozen extents, CoW a few blocks, and rm. +# Inject an error during rmap updates to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_error_injection +_require_xfs_io_error_injection "rmap_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +is_rmap=$(xfs_info $SCRATCH_MNT | grep -c "rmapbt=1") +test $is_rmap -gt 0 || _notrun "rmap not supported on scratch fs" + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file3 + +# Punch holes in file3 +seq 1 2 $blks | while read off; do + $XFS_IO_PROG -c "fpunch $((off * blksz)) $blksz" $SCRATCH_MNT/file3 >> $seqres.full +done +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "rmap_finish_one" + +echo "CoW a few blocks" +$XFS_IO_PROG -c "pwrite -W -S 0x67 -b $sz $((10 * blksz)) $((10 * blksz))" $SCRATCH_MNT/file2 >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Check files again" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/314.out b/tests/xfs/314.out new file mode 100644 index 00000000..a0a3cbc5 --- /dev/null +++ b/tests/xfs/314.out @@ -0,0 +1,18 @@ +QA output created by 314 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Inject error +CoW a few blocks +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +FS should be online, touch should succeed +Check files again +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Done diff --git a/tests/xfs/315 b/tests/xfs/315 new file mode 100755 index 00000000..62d7fcfa --- /dev/null +++ b/tests/xfs/315 @@ -0,0 +1,99 @@ +#! /bin/bash +# FS QA Test No. 315 +# +# Reflink a file with a few dozen extents and CoW a few blocks. +# Inject an error during extent freeing to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_error_injection +_require_xfs_io_error_injection "free_extent" + +rm -f $seqres.full + +blksz=65536 +blks=4 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +$XFS_IO_PROG -c "cowextsize $sz" $SCRATCH_MNT + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_pwrite_byte 0x66 $((sz / 2)) $((sz / 2)) $SCRATCH_MNT/file2 >> $seqres.full +_reflink_range $SCRATCH_MNT/file1 0 $SCRATCH_MNT/file2 0 $((sz / 2)) >> $seqres.full +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "free_extent" + +echo "CoW a few blocks" +$XFS_IO_PROG -c "pwrite -W -S 0x67 -b $sz 0 $sz" $SCRATCH_MNT/file1 >> $seqres.full +sync + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Check files again" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/315.out b/tests/xfs/315.out new file mode 100644 index 00000000..915dbbf1 --- /dev/null +++ b/tests/xfs/315.out @@ -0,0 +1,16 @@ +QA output created by 315 +Format filesystem +Create files +Check files +cf41e243bf211225660f3fabe6db9eb6 SCRATCH_MNT/file1 +cf41e243bf211225660f3fabe6db9eb6 SCRATCH_MNT/file2 +Inject error +CoW a few blocks +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +FS should be online, touch should succeed +Check files again +fe9070b9c9deb97ed53811efda5c4ad5 SCRATCH_MNT/file1 +cf41e243bf211225660f3fabe6db9eb6 SCRATCH_MNT/file2 +Done diff --git a/tests/xfs/316 b/tests/xfs/316 new file mode 100755 index 00000000..68d94662 --- /dev/null +++ b/tests/xfs/316 @@ -0,0 +1,100 @@ +#! /bin/bash +# FS QA Test No. 316 +# +# Reflink a file with a few dozen extents, CoW a few blocks, and rm. +# Force XFS into "two refcount updates per transaction" mode. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_error_injection +_require_xfs_io_error_injection "refcount_continue_update" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file3 + +# Punch holes in file3 +seq 1 2 $blks | while read off; do + $XFS_IO_PROG -c "fpunch $((off * blksz)) $blksz" $SCRATCH_MNT/file3 >> $seqres.full +done +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "refcount_continue_update" + +echo "CoW all the blocks" +$XFS_IO_PROG -c "pwrite -W -S 0x67 -b $sz 0 $((blks * blksz))" $SCRATCH_MNT/file2 >> $seqres.full + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Check files again" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/316.out b/tests/xfs/316.out new file mode 100644 index 00000000..b87a1dee --- /dev/null +++ b/tests/xfs/316.out @@ -0,0 +1,16 @@ +QA output created by 316 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Inject error +CoW all the blocks +Remount to replay log +FS should be online, touch should succeed +Check files again +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +4155b81ac6d45c0182fa2bc03960f230 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Done diff --git a/tests/xfs/317 b/tests/xfs/317 new file mode 100755 index 00000000..ac9f3ae6 --- /dev/null +++ b/tests/xfs/317 @@ -0,0 +1,95 @@ +#! /bin/bash +# FS QA Test No. 317 +# +# Simulate rmap update errors with a file write and a file remove. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_scratch +_require_error_injection +_require_xfs_io_error_injection "rmap_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +is_rmap=$(xfs_info $SCRATCH_MNT | grep -c "rmapbt=1") +test $is_rmap -gt 0 || _notrun "rmap not supported on scratch fs" + +echo "Create files" +touch $SCRATCH_MNT/file1 +_pwrite_byte 0x67 0 $sz $SCRATCH_MNT/file0 >> $seqres.full +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file0 | _filter_scratch +md5sum $SCRATCH_MNT/file1 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "rmap_finish_one" + +echo "Write files" +$XFS_IO_PROG -c "pwrite -W -S 0x67 -b $sz 0 $sz" $SCRATCH_MNT/file1 >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "Check files" +md5sum $SCRATCH_MNT/file0 | _filter_scratch +md5sum $SCRATCH_MNT/file1 | _filter_scratch + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/317.out b/tests/xfs/317.out new file mode 100644 index 00000000..48400a33 --- /dev/null +++ b/tests/xfs/317.out @@ -0,0 +1,16 @@ +QA output created by 317 +Format filesystem +Create files +Check files +4155b81ac6d45c0182fa2bc03960f230 SCRATCH_MNT/file0 +d41d8cd98f00b204e9800998ecf8427e SCRATCH_MNT/file1 +Inject error +Write files +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +Check files +4155b81ac6d45c0182fa2bc03960f230 SCRATCH_MNT/file0 +d41d8cd98f00b204e9800998ecf8427e SCRATCH_MNT/file1 +FS should be online, touch should succeed +Done diff --git a/tests/xfs/318 b/tests/xfs/318 new file mode 100755 index 00000000..94638872 --- /dev/null +++ b/tests/xfs/318 @@ -0,0 +1,93 @@ +#! /bin/bash +# FS QA Test No. 318 +# +# Simulate free extent errors with a file write and a file remove. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_scratch +_require_error_injection +_require_xfs_io_error_injection "rmap_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +touch $SCRATCH_MNT/file1 + +echo "Write files" +$XFS_IO_PROG -c "pwrite -S 0x67 0 $sz" $SCRATCH_MNT/file1 >> $seqres.full +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 2>&1 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "free_extent" + +echo "Remove files" +rm -rf $SCRATCH_MNT/file1 +sync + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "Check files" +md5sum $SCRATCH_MNT/file1 2>&1 | _filter_scratch + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/318.out b/tests/xfs/318.out new file mode 100644 index 00000000..e877ebdc --- /dev/null +++ b/tests/xfs/318.out @@ -0,0 +1,15 @@ +QA output created by 318 +Format filesystem +Create files +Write files +Check files +4155b81ac6d45c0182fa2bc03960f230 SCRATCH_MNT/file1 +Inject error +Remove files +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +Check files +md5sum: SCRATCH_MNT/file1: No such file or directory +FS should be online, touch should succeed +Done diff --git a/tests/xfs/319 b/tests/xfs/319 new file mode 100755 index 00000000..bbe21dfa --- /dev/null +++ b/tests/xfs/319 @@ -0,0 +1,97 @@ +#! /bin/bash +# FS QA Test No. 319 +# +# Reflink a file. +# Inject an error during block remap to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_xfs_io_error_injection "bmap_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +_pwrite_byte 0x67 0 $sz $SCRATCH_MNT/file3 >> $seqres.full +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "bmap_finish_one" + +echo "Try to reflink" +_reflink_range $SCRATCH_MNT/file1 0 $SCRATCH_MNT/file3 0 $sz >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/319.out b/tests/xfs/319.out new file mode 100644 index 00000000..bccde848 --- /dev/null +++ b/tests/xfs/319.out @@ -0,0 +1,19 @@ +QA output created by 319 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +4155b81ac6d45c0182fa2bc03960f230 SCRATCH_MNT/file3 +Inject error +Try to reflink +XFS_IOC_CLONE_RANGE: Input/output error +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file3 +FS should be online, touch should succeed +Done diff --git a/tests/xfs/320 b/tests/xfs/320 new file mode 100755 index 00000000..90a37056 --- /dev/null +++ b/tests/xfs/320 @@ -0,0 +1,95 @@ +#! /bin/bash +# FS QA Test No. 320 +# +# Reflink a file. +# Inject an error during block remap to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_xfs_io_error_injection "bmap_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks - 17)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "bmap_finish_one" + +echo "Try to reflink" +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file3 2>&1 | _filter_scratch + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/320.out b/tests/xfs/320.out new file mode 100644 index 00000000..0aa2812a --- /dev/null +++ b/tests/xfs/320.out @@ -0,0 +1,18 @@ +QA output created by 320 +Format filesystem +Create files +Check files +a98e7df2a7a456009a493e47411c58d1 SCRATCH_MNT/file1 +a98e7df2a7a456009a493e47411c58d1 SCRATCH_MNT/file2 +Inject error +Try to reflink +cp: failed to clone 'SCRATCH_MNT/file3' from 'SCRATCH_MNT/file1': Input/output error +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +Check files +a98e7df2a7a456009a493e47411c58d1 SCRATCH_MNT/file1 +a98e7df2a7a456009a493e47411c58d1 SCRATCH_MNT/file2 +a98e7df2a7a456009a493e47411c58d1 SCRATCH_MNT/file3 +FS should be online, touch should succeed +Done diff --git a/tests/xfs/321 b/tests/xfs/321 new file mode 100755 index 00000000..1b9af732 --- /dev/null +++ b/tests/xfs/321 @@ -0,0 +1,94 @@ +#! /bin/bash +# FS QA Test No. 321 +# +# Reflink a file. +# Inject an error during refcount update to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_xfs_io_error_injection "refcount_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +$XFS_IO_PROG -f -c "truncate $sz" $SCRATCH_MNT/file3 >> $seqres.full +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "refcount_finish_one" + +echo "Try to reflink" +_reflink_range $SCRATCH_MNT/file1 0 $SCRATCH_MNT/file3 0 $sz >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/321.out b/tests/xfs/321.out new file mode 100644 index 00000000..c0abd52b --- /dev/null +++ b/tests/xfs/321.out @@ -0,0 +1,17 @@ +QA output created by 321 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +b5cfa9d6c8febd618f91ac2843d50a1c SCRATCH_MNT/file3 +Inject error +Try to reflink +XFS_IOC_CLONE_RANGE: Input/output error +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file3 +FS should be online, touch should succeed +Done diff --git a/tests/xfs/322 b/tests/xfs/322 new file mode 100755 index 00000000..0dddb1f0 --- /dev/null +++ b/tests/xfs/322 @@ -0,0 +1,97 @@ +#! /bin/bash +# FS QA Test No. 322 +# +# Reflink a file. +# Inject an error during rmap update to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_xfs_io_error_injection "rmap_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +is_rmap=$(xfs_info $SCRATCH_MNT | grep -c "rmapbt=1") +test $is_rmap -gt 0 || _notrun "rmap not supported on scratch fs" + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +$XFS_IO_PROG -f -c "truncate $sz" $SCRATCH_MNT/file3 >> $seqres.full +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "rmap_finish_one" + +echo "Try to reflink" +_reflink_range $SCRATCH_MNT/file1 0 $SCRATCH_MNT/file3 0 $sz >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/322.out b/tests/xfs/322.out new file mode 100644 index 00000000..b3fba5d0 --- /dev/null +++ b/tests/xfs/322.out @@ -0,0 +1,17 @@ +QA output created by 322 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +b5cfa9d6c8febd618f91ac2843d50a1c SCRATCH_MNT/file3 +Inject error +Try to reflink +XFS_IOC_CLONE_RANGE: Input/output error +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file3 +FS should be online, touch should succeed +Done diff --git a/tests/xfs/323 b/tests/xfs/323 new file mode 100755 index 00000000..c124f256 --- /dev/null +++ b/tests/xfs/323 @@ -0,0 +1,94 @@ +#! /bin/bash +# FS QA Test No. 323 +# +# Reflink a file. +# Inject an error during extent free to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_xfs_io_error_injection "free_extent" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_pwrite_byte 0x67 0 $sz $SCRATCH_MNT/file3 >> $seqres.full +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "free_extent" + +echo "Try to reflink" +_reflink_range $SCRATCH_MNT/file1 0 $SCRATCH_MNT/file3 0 $sz >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/323.out b/tests/xfs/323.out new file mode 100644 index 00000000..be41b7e0 --- /dev/null +++ b/tests/xfs/323.out @@ -0,0 +1,17 @@ +QA output created by 323 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +4155b81ac6d45c0182fa2bc03960f230 SCRATCH_MNT/file3 +Inject error +Try to reflink +XFS_IOC_CLONE_RANGE: Input/output error +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file3 +FS should be online, touch should succeed +Done diff --git a/tests/xfs/324 b/tests/xfs/324 new file mode 100755 index 00000000..9ac6c555 --- /dev/null +++ b/tests/xfs/324 @@ -0,0 +1,101 @@ +#! /bin/bash +# FS QA Test No. 324 +# +# Reflink a file with a few dozen extents. +# Force XFS into "two refcount updates per transaction" mode. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_error_injection +_require_xfs_io_error_injection "refcount_continue_update" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file3 + +# Punch holes in file3 +seq 1 2 $blks | while read off; do + $XFS_IO_PROG -c "fpunch $((off * blksz)) $blksz" $SCRATCH_MNT/file3 >> $seqres.full +done +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "refcount_continue_update" + +echo "Reflink all the blocks" +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file4 + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Check files again" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch +md5sum $SCRATCH_MNT/file4 | _filter_scratch + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/324.out b/tests/xfs/324.out new file mode 100644 index 00000000..9b09451c --- /dev/null +++ b/tests/xfs/324.out @@ -0,0 +1,17 @@ +QA output created by 324 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Inject error +Reflink all the blocks +Remount to replay log +FS should be online, touch should succeed +Check files again +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file4 +Done diff --git a/tests/xfs/325 b/tests/xfs/325 new file mode 100755 index 00000000..8a0cce2f --- /dev/null +++ b/tests/xfs/325 @@ -0,0 +1,95 @@ +#! /bin/bash +# FS QA Test No. 325 +# +# Reflink a file with a few dozen extents, CoW a few blocks, and rm. +# Inject an error during extent freeing to test log recovery. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_error_injection +_require_xfs_io_error_injection "free_extent" + +rm -f $seqres.full + +blksz=65536 +blks=30 +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +echo "Create files" +_pwrite_byte 0x66 0 $((blksz * blks)) $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch + +echo "Inject error" +_scratch_inject_error "free_extent" + +echo "CoW a few blocks" +$XFS_IO_PROG -c "pwrite -W -S 0x67 $((10 * blksz)) $((10 * blksz))" $SCRATCH_MNT/file2 >> $seqres.full +rm $SCRATCH_MNT/file1 +sync + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Check files again" +md5sum $SCRATCH_MNT/file2 | _filter_scratch + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/325.out b/tests/xfs/325.out new file mode 100644 index 00000000..4e25d2be --- /dev/null +++ b/tests/xfs/325.out @@ -0,0 +1,15 @@ +QA output created by 325 +Format filesystem +Create files +Check files +d5a0ed0305c8df4180cb2bf975ecffe8 SCRATCH_MNT/file1 +d5a0ed0305c8df4180cb2bf975ecffe8 SCRATCH_MNT/file2 +Inject error +CoW a few blocks +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +FS should be online, touch should succeed +Check files again +7629bd70d19d7291b448221ac44b26d9 SCRATCH_MNT/file2 +Done diff --git a/tests/xfs/326 b/tests/xfs/326 new file mode 100755 index 00000000..2cd6eda0 --- /dev/null +++ b/tests/xfs/326 @@ -0,0 +1,109 @@ +#! /bin/bash +# FS QA Test No. 326 +# +# Reflink a file with a few dozen extents, CoW a few blocks, and rm. +# Inject an error during refcount updates to test log recovery. Use +# cowextsize so that the refcount failure is somewhere in the CoW remap +# instead of when we're stashing the CoW orphan record. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016, Oracle and/or its affiliates. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + _scratch_unmount > /dev/null 2>&1 + rm -rf $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/inject + +# real QA test starts here +_supported_os Linux +_supported_fs xfs +_require_cp_reflink +_require_scratch_reflink +_require_xfs_io_error_injection "refcount_finish_one" + +rm -f $seqres.full + +blksz=65536 +blks=64 +sz=$((blksz * blks)) +echo "Format filesystem" +_scratch_mkfs >/dev/null 2>&1 +_scratch_mount >> $seqres.full + +$XFS_IO_PROG -c "cowextsize $sz" $SCRATCH_MNT + +echo "Create files" +_pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2 +_cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file3 + +# Punch holes in file3 +seq 1 2 $blks | while read off; do + $XFS_IO_PROG -c "fpunch $((off * blksz)) $blksz" $SCRATCH_MNT/file3 >> $seqres.full +done +sync + +echo "Check files" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +$XFS_IO_PROG -c "pwrite -W -S 0x67 $((10 * blksz)) 1" $SCRATCH_MNT/file2 >> $seqres.full +sync + +echo "Inject error" +_scratch_inject_error "refcount_finish_one" + +echo "CoW a few blocks" +$XFS_IO_PROG -c "pwrite -W -S 0x67 -b $sz $((10 * blksz)) $((10 * blksz))" $SCRATCH_MNT/file2 >> $seqres.full + +echo "FS should be shut down, touch will fail" +touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch + +echo "Remount to replay log" +_scratch_inject_logprint >> $seqres.full + +echo "FS should be online, touch should succeed" +touch $SCRATCH_MNT/goodfs + +echo "Check files again" +md5sum $SCRATCH_MNT/file1 | _filter_scratch +md5sum $SCRATCH_MNT/file2 | _filter_scratch +md5sum $SCRATCH_MNT/file3 | _filter_scratch + +echo "Done" + +# success, all done +status=0 +exit diff --git a/tests/xfs/326.out b/tests/xfs/326.out new file mode 100644 index 00000000..d76c23ae --- /dev/null +++ b/tests/xfs/326.out @@ -0,0 +1,18 @@ +QA output created by 326 +Format filesystem +Create files +Check files +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Inject error +CoW a few blocks +FS should be shut down, touch will fail +touch: cannot touch 'SCRATCH_MNT/badfs': Input/output error +Remount to replay log +FS should be online, touch should succeed +Check files again +2a4f043bf9730a9e8882c9264b9797b3 SCRATCH_MNT/file1 +1e108771fba35e2f2961d1ad23efbff7 SCRATCH_MNT/file2 +153498e22f8ff52d7f60b466a5e65285 SCRATCH_MNT/file3 +Done diff --git a/tests/xfs/group b/tests/xfs/group index 14274da1..21c2c935 100644 --- a/tests/xfs/group +++ b/tests/xfs/group @@ -292,3 +292,18 @@ 309 auto clone 310 auto clone rmap 311 auto dangerous quick +312 auto quick clone +313 auto quick clone +314 auto quick clone +315 auto quick clone +316 auto quick clone +317 auto quick rmap +318 auto quick rw +319 auto quick clone +320 auto quick clone +321 auto quick clone +322 auto quick clone +323 auto quick clone +324 auto quick clone +325 auto quick clone +326 auto quick clone -- 2.39.5