| To: | Eric Sandeen <sandeen@xxxxxxxxxxx> |
|---|---|
| Subject: | [PATCH, RFC] xfs: be more forgiving of a v4 secondary sb w/ junk in v5 fields |
| From: | Eric Sandeen <sandeen@xxxxxxxxxx> |
| Date: | Thu, 15 Aug 2013 17:41:49 -0500 |
| Cc: | Dave Chinner <david@xxxxxxxxxxxxx>, "'linux-xfs@xxxxxxxxxxx'" <linux-xfs@xxxxxxxxxxx> |
| Delivered-to: | linux-xfs@xxxxxxxxxxx |
| In-reply-to: | <520D44E7.1000905@xxxxxxxxxxx> |
| References: | <520D1BA3.1050500@xxxxxxxxxx> <20130815210018.GR6023@dastard> <520D44E7.1000905@xxxxxxxxxxx> |
| User-agent: | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 |
Today, if xfs_sb_read_verify encounters a v4 superblock
with junk past v4 fields which includes data in sb_crc,
it will be treated as a failing checksum and significant
corruption.
There are known prior bugs which leave junk at the end
of the superblock; we don't need to actually fail the
verification in this case if other checks pan out ok.
So if this is a secondary superblock, and the primary
superblock is not V5, don't treat this as a serious
checksum failure.
We should probably check the garbage condition as
we do in xfs_repair, and possibly warn about it
or self-heal, but that's a different scope of work.
Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx>
---
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c
index 2b0ba35..5ce25ae 100644
--- a/fs/xfs/xfs_mount.c
+++ b/fs/xfs/xfs_mount.c
@@ -769,8 +769,12 @@ xfs_sb_read_verify(
if (!xfs_verify_cksum(bp->b_addr, be16_to_cpu(dsb->sb_sectsize),
offsetof(struct xfs_sb, sb_crc))) {
- error = EFSCORRUPTED;
- goto out_error;
+ /* Only fail here for a real V5 filesystem */
+ if (bp->b_bn != XFS_SB_DADDR &&
+ xfs_sb_version_hascrc(&mp->m_sb)) {
+ error = EFSCORRUPTED;
+ goto out_error;
+ }
}
}
error = xfs_sb_verify(bp, true);
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 48/49] xfs: Add read-only support for dirent filetype field, Ben Myers |
|---|---|
| Next by Date: | Re: [PATCH, RFC] xfs: be more forgiving of a v4 secondary sb w/ junk in v5 fields, Dave Chinner |
| Previous by Thread: | Re: [PATCH, RFC] xfs: don't verify checksum on non-V5 superblocks, Eric Sandeen |
| Next by Thread: | Re: [PATCH, RFC] xfs: be more forgiving of a v4 secondary sb w/ junk in v5 fields, Dave Chinner |
| Indexes: | [Date] [Thread] [Top] [All Lists] |