* [PATCH] btrfs-progs: misc-tests: Primary Superblock corruption and recovery using backup Superblock.
@ 2017-02-14 21:31 Lakshmipathi.G
[not found] ` <da0d119a-68eb-a8ed-5cd4-81202da17e8f@cn.fujitsu.com>
0 siblings, 1 reply; 3+ messages in thread
From: Lakshmipathi.G @ 2017-02-14 21:31 UTC (permalink / raw)
To: linux-btrfs
Signed-off-by: Lakshmipathi.G <Lakshmipathi.G@giis.co.in>
---
.../019-fix-corrupted-superblock/test.sh | 37 ++++++++++++++++++++++
1 file changed, 37 insertions(+)
create mode 100755 tests/misc-tests/019-fix-corrupted-superblock/test.sh
diff --git a/tests/misc-tests/019-fix-corrupted-superblock/test.sh b/tests/misc-tests/019-fix-corrupted-superblock/test.sh
new file mode 100755
index 0000000..806c775
--- /dev/null
+++ b/tests/misc-tests/019-fix-corrupted-superblock/test.sh
@@ -0,0 +1,37 @@
+#!/bin/bash
+#
+# Corrupt primary superblock and restore it using backup superblock.
+#
+
+source $TOP/tests/common
+
+check_prereq btrfs-select-super
+
+setup_root_helper
+prepare_test_dev 512M
+
+superblock_offset=65536
+
+test_superblock_restore()
+{
+ run_check $SUDO_HELPER $TOP/mkfs.btrfs -f $TEST_DEV
+
+ # Corrupt superblock checksum
+ dd if=/dev/zero of=$TEST_DEV seek=$superblock_offset bs=1 \
+ count=4 conv=notrunc &> /dev/null
+ run_check_stdout $SUDO_HELPER mount $TEST_DEV $TEST_MNT | \
+ grep -q 'wrong fs type'
+ if [ $? -ne 0 ]; then
+ _fail "Failed to corrupt superblock."
+ fi
+
+ # Copy backup superblock to primary
+ run_check $TOP/btrfs-select-super -s 1 $TEST_DEV
+ run_check $SUDO_HELPER mount $TEST_DEV $TEST_MNT
+ if [ $? -ne 0 ]; then
+ _fail "Failed to fix superblock."
+ fi
+ run_check_umount_test_dev
+}
+
+test_superblock_restore
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] btrfs-progs: misc-tests: Primary Superblock corruption and recovery using backup Superblock.
[not found] ` <da0d119a-68eb-a8ed-5cd4-81202da17e8f@cn.fujitsu.com>
@ 2017-02-15 9:14 ` Lakshmipathi.G
2017-03-13 17:22 ` David Sterba
0 siblings, 1 reply; 3+ messages in thread
From: Lakshmipathi.G @ 2017-02-15 9:14 UTC (permalink / raw)
To: Qu Wenruo, linux-btrfs
On Wed, Feb 15, 2017 at 09:36:03AM +0800, Qu Wenruo wrote:
>
>
> >+ # Corrupt superblock checksum
> >+ dd if=/dev/zero of=$TEST_DEV seek=$superblock_offset bs=1 \
> >+ count=4 conv=notrunc &> /dev/null
> >+ run_check_stdout $SUDO_HELPER mount $TEST_DEV $TEST_MNT | \
> >+ grep -q 'wrong fs type'
>
> What about using btrfs check instead of trying to mount it?
>
> This could emit the need to use $SUDO_HELPER, and could catch super error
> more accurate.
>
> >+ if [ $? -ne 0 ]; then
> >+ _fail "Failed to corrupt superblock."
> >+ fi
> >+
> >+ # Copy backup superblock to primary
> >+ run_check $TOP/btrfs-select-super -s 1 $TEST_DEV
> >+ run_check $SUDO_HELPER mount $TEST_DEV $TEST_MNT
> Same here.
I started with 'btrfs check' and 'btrfs check --repair' but it seems like
--repair don't fix the corruption. So just moved away from using it.
After you mentioned, now I see 'btrfs check' will be helpful. Will make
these changes.
Cheers.
Lakshmipathi.G
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] btrfs-progs: misc-tests: Primary Superblock corruption and recovery using backup Superblock.
2017-02-15 9:14 ` Lakshmipathi.G
@ 2017-03-13 17:22 ` David Sterba
0 siblings, 0 replies; 3+ messages in thread
From: David Sterba @ 2017-03-13 17:22 UTC (permalink / raw)
To: Lakshmipathi.G; +Cc: Qu Wenruo, linux-btrfs
On Wed, Feb 15, 2017 at 02:44:05PM +0530, Lakshmipathi.G wrote:
> On Wed, Feb 15, 2017 at 09:36:03AM +0800, Qu Wenruo wrote:
> >
> >
> > >+ # Corrupt superblock checksum
> > >+ dd if=/dev/zero of=$TEST_DEV seek=$superblock_offset bs=1 \
> > >+ count=4 conv=notrunc &> /dev/null
> > >+ run_check_stdout $SUDO_HELPER mount $TEST_DEV $TEST_MNT | \
> > >+ grep -q 'wrong fs type'
> >
> > What about using btrfs check instead of trying to mount it?
> >
> > This could emit the need to use $SUDO_HELPER, and could catch super error
> > more accurate.
> >
> > >+ if [ $? -ne 0 ]; then
> > >+ _fail "Failed to corrupt superblock."
> > >+ fi
> > >+
> > >+ # Copy backup superblock to primary
> > >+ run_check $TOP/btrfs-select-super -s 1 $TEST_DEV
> > >+ run_check $SUDO_HELPER mount $TEST_DEV $TEST_MNT
> > Same here.
> I started with 'btrfs check' and 'btrfs check --repair' but it seems like
> --repair don't fix the corruption. So just moved away from using it.
Check --repair will not fix the superblock checksum as it's not clear
whether the rest of the superblock is ok or not.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-03-13 17:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-14 21:31 [PATCH] btrfs-progs: misc-tests: Primary Superblock corruption and recovery using backup Superblock Lakshmipathi.G
[not found] ` <da0d119a-68eb-a8ed-5cd4-81202da17e8f@cn.fujitsu.com>
2017-02-15 9:14 ` Lakshmipathi.G
2017-03-13 17:22 ` David Sterba
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).