From: Dave Chinner Date: Thu, 6 Mar 2014 23:24:56 +0000 (+1100) Subject: libxfs: xfs_sb_read_verify() doesn't flag bad crcs on primary sb X-Git-Tag: v3.2.0-rc1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3cddd915ab7a68b91d4969218932e6abae08f89;p=thirdparty%2Fxfsprogs-dev.git libxfs: xfs_sb_read_verify() doesn't flag bad crcs on primary sb [userspace port] My earlier commit 10e6e65 deserves a layer or two of brown paper bags. The logic in that commit means that a CRC failure on the primary superblock will *never* result in an error return. Hopefully this fixes it, so that we always return the error if it's a primary superblock, otherwise only if the filesystem has CRCs enabled. Signed-off-by: Dave Chinner Reviewed-by: Eric Sandeen Signed-off-by: Dave Chinner --- diff --git a/libxfs/xfs_sb.c b/libxfs/xfs_sb.c index 4be73661d..5c10c974a 100644 --- a/libxfs/xfs_sb.c +++ b/libxfs/xfs_sb.c @@ -569,7 +569,7 @@ xfs_sb_read_verify( if (!xfs_verify_cksum(bp->b_addr, be16_to_cpu(dsb->sb_sectsize), offsetof(struct xfs_sb, sb_crc))) { /* Only fail bad secondaries on a known V5 filesystem */ - if (bp->b_bn != XFS_SB_DADDR && + if (bp->b_bn == XFS_SB_DADDR || xfs_sb_version_hascrc(&mp->m_sb)) { error = EFSCORRUPTED; goto out_error;