* [PATCH v3] generic: shutdown might leave NULL files with nonzero di_size
@ 2022-11-09 13:07 Zorro Lang
2022-11-09 16:51 ` Darrick J. Wong
0 siblings, 1 reply; 2+ messages in thread
From: Zorro Lang @ 2022-11-09 13:07 UTC (permalink / raw)
To: fstests; +Cc: linux-xfs
An old issue might cause on-disk inode sizes are logged prematurely
via the free eofblocks path on file close. Then fs shutdown might
leave NULL files but their di_size > 0.
Signed-off-by: Zorro Lang <zlang@kernel.org>
---
Hi,
V2 replace xfs_io fiemap command with stat command.
V3 replace the stat with the filefrag command, and change the supported_fs
from xfs to generic.
Thanks,
Zorro
tests/generic/999 | 46 +++++++++++++++++++++++++++++++++++++++++++
tests/generic/999.out | 5 +++++
2 files changed, 51 insertions(+)
create mode 100755 tests/generic/999
create mode 100644 tests/generic/999.out
diff --git a/tests/generic/999 b/tests/generic/999
new file mode 100755
index 00000000..ca666de7
--- /dev/null
+++ b/tests/generic/999
@@ -0,0 +1,46 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2022 Red Hat, Inc. All Rights Reserved.
+#
+# FS QA Test No. 999
+#
+# Test an issue in the truncate codepath where on-disk inode sizes are logged
+# prematurely via the free eofblocks path on file close.
+#
+. ./common/preamble
+_begin_fstest auto shutdown
+
+# real QA test starts here
+_supported_fs generic
+_require_scratch
+_require_scratch_shutdown
+_require_command "$FILEFRAG_PROG" filefrag
+_scratch_mkfs > $seqres.full 2>&1
+_scratch_mount
+
+echo "Create many small files with one extent at least"
+for ((i=0; i<10000; i++));do
+ $XFS_IO_PROG -f -c "pwrite 0 4k" $SCRATCH_MNT/file.$i >/dev/null 2>&1
+done
+
+echo "Shutdown the fs suddently"
+_scratch_shutdown
+
+echo "Cycle mount"
+_scratch_cycle_mount
+
+echo "Check file's (di_size > 0) extents"
+for f in $(find $SCRATCH_MNT -type f -size +0);do
+ # Check if the file has any extent
+ $FILEFRAG_PROG -v $f > $tmp.filefrag
+ grep -Eq ': 0 extents found' $tmp.filefrag
+ if [ $? -eq 0 ];then
+ echo " - $f get no extents, but its di_size > 0"
+ cat $tmp.filefrag
+ break
+ fi
+done
+
+# success, all done
+status=0
+exit
diff --git a/tests/generic/999.out b/tests/generic/999.out
new file mode 100644
index 00000000..50008783
--- /dev/null
+++ b/tests/generic/999.out
@@ -0,0 +1,5 @@
+QA output created by 999
+Create many small files with one extent at least
+Shutdown the fs suddently
+Cycle mount
+Check file's (di_size > 0) extents
--
2.31.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v3] generic: shutdown might leave NULL files with nonzero di_size
2022-11-09 13:07 [PATCH v3] generic: shutdown might leave NULL files with nonzero di_size Zorro Lang
@ 2022-11-09 16:51 ` Darrick J. Wong
0 siblings, 0 replies; 2+ messages in thread
From: Darrick J. Wong @ 2022-11-09 16:51 UTC (permalink / raw)
To: Zorro Lang; +Cc: fstests, linux-xfs
On Wed, Nov 09, 2022 at 09:07:46PM +0800, Zorro Lang wrote:
> An old issue might cause on-disk inode sizes are logged prematurely
> via the free eofblocks path on file close. Then fs shutdown might
> leave NULL files but their di_size > 0.
>
> Signed-off-by: Zorro Lang <zlang@kernel.org>
> ---
>
> Hi,
>
> V2 replace xfs_io fiemap command with stat command.
> V3 replace the stat with the filefrag command, and change the supported_fs
> from xfs to generic.
>
> Thanks,
> Zorro
>
> tests/generic/999 | 46 +++++++++++++++++++++++++++++++++++++++++++
> tests/generic/999.out | 5 +++++
> 2 files changed, 51 insertions(+)
> create mode 100755 tests/generic/999
> create mode 100644 tests/generic/999.out
>
> diff --git a/tests/generic/999 b/tests/generic/999
> new file mode 100755
> index 00000000..ca666de7
> --- /dev/null
> +++ b/tests/generic/999
> @@ -0,0 +1,46 @@
> +#! /bin/bash
> +# SPDX-License-Identifier: GPL-2.0
> +# Copyright (c) 2022 Red Hat, Inc. All Rights Reserved.
> +#
> +# FS QA Test No. 999
> +#
> +# Test an issue in the truncate codepath where on-disk inode sizes are logged
> +# prematurely via the free eofblocks path on file close.
> +#
> +. ./common/preamble
> +_begin_fstest auto shutdown
> +
> +# real QA test starts here
> +_supported_fs generic
> +_require_scratch
> +_require_scratch_shutdown
> +_require_command "$FILEFRAG_PROG" filefrag
> +_scratch_mkfs > $seqres.full 2>&1
> +_scratch_mount
> +
> +echo "Create many small files with one extent at least"
> +for ((i=0; i<10000; i++));do
> + $XFS_IO_PROG -f -c "pwrite 0 4k" $SCRATCH_MNT/file.$i >/dev/null 2>&1
> +done
> +
> +echo "Shutdown the fs suddently"
> +_scratch_shutdown
> +
> +echo "Cycle mount"
> +_scratch_cycle_mount
> +
> +echo "Check file's (di_size > 0) extents"
> +for f in $(find $SCRATCH_MNT -type f -size +0);do
> + # Check if the file has any extent
> + $FILEFRAG_PROG -v $f > $tmp.filefrag
> + grep -Eq ': 0 extents found' $tmp.filefrag
> + if [ $? -eq 0 ];then
Bash nit: You could compress these two lines to:
if grep -E -q ': 0 extents found' $tmp.filefrag; then
But otherwise this looks good.
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
--D
> + echo " - $f get no extents, but its di_size > 0"
> + cat $tmp.filefrag
> + break
> + fi
> +done
> +
> +# success, all done
> +status=0
> +exit
> diff --git a/tests/generic/999.out b/tests/generic/999.out
> new file mode 100644
> index 00000000..50008783
> --- /dev/null
> +++ b/tests/generic/999.out
> @@ -0,0 +1,5 @@
> +QA output created by 999
> +Create many small files with one extent at least
> +Shutdown the fs suddently
> +Cycle mount
> +Check file's (di_size > 0) extents
> --
> 2.31.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-09 16:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-09 13:07 [PATCH v3] generic: shutdown might leave NULL files with nonzero di_size Zorro Lang
2022-11-09 16:51 ` Darrick J. Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox