Scrub should make sure that each bnobt record has a corresponding cntbt record. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- fs/xfs/libxfs/xfs_alloc.c | 2 +- fs/xfs/libxfs/xfs_alloc.h | 7 +++++++ fs/xfs/repair/agheader.c | 20 ++++++++++++++++++++ fs/xfs/repair/alloc.c | 31 +++++++++++++++++++++++++++++++ 4 files changed, 59 insertions(+), 1 deletion(-) diff --git a/fs/xfs/libxfs/xfs_alloc.c b/fs/xfs/libxfs/xfs_alloc.c index ad8044b..4776f66 100644 --- a/fs/xfs/libxfs/xfs_alloc.c +++ b/fs/xfs/libxfs/xfs_alloc.c @@ -169,7 +169,7 @@ xfs_alloc_lookup_ge( * Lookup the first record less than or equal to [bno, len] * in the btree given by cur. */ -static int /* error */ +int /* error */ xfs_alloc_lookup_le( struct xfs_btree_cur *cur, /* btree cursor */ xfs_agblock_t bno, /* starting block of extent */ diff --git a/fs/xfs/libxfs/xfs_alloc.h b/fs/xfs/libxfs/xfs_alloc.h index 3fd6540..b79159c 100644 --- a/fs/xfs/libxfs/xfs_alloc.h +++ b/fs/xfs/libxfs/xfs_alloc.h @@ -202,6 +202,13 @@ xfs_free_extent( enum xfs_ag_resv_type type); /* block reservation type */ int /* error */ +xfs_alloc_lookup_le( + struct xfs_btree_cur *cur, /* btree cursor */ + xfs_agblock_t bno, /* starting block of extent */ + xfs_extlen_t len, /* length of extent */ + int *stat); /* success/failure */ + +int /* error */ xfs_alloc_lookup_ge( struct xfs_btree_cur *cur, /* btree cursor */ xfs_agblock_t bno, /* starting block of extent */ diff --git a/fs/xfs/repair/agheader.c b/fs/xfs/repair/agheader.c index bcb67c9..2bab685 100644 --- a/fs/xfs/repair/agheader.c +++ b/fs/xfs/repair/agheader.c @@ -300,6 +300,7 @@ xfs_scrub_agf( xfs_agblock_t fl_count; xfs_extlen_t blocks; bool is_freesp; + int have; int level; int error = 0; int err2; @@ -399,6 +400,25 @@ xfs_scrub_agf( } skip_bnobt: + /* Cross-reference with the cntbt. */ + if (psa->cnt_cur) { + err2 = xfs_alloc_lookup_le(psa->cnt_cur, 0, -1U, &have); + if (!xfs_scrub_should_xref(sc, err2, &psa->cnt_cur)) + goto skip_cntbt; + if (!have) { + XFS_SCRUB_AGF_CHECK(agf->agf_freeblks == + be32_to_cpu(0)); + goto skip_cntbt; + } + err2 = xfs_alloc_get_rec(psa->cnt_cur, &agbno, &blocks, &have); + if (!xfs_scrub_should_xref(sc, err2, &psa->cnt_cur)) + goto skip_cntbt; + XFS_SCRUB_AGF_CHECK(have); + XFS_SCRUB_AGF_CHECK(!have || + blocks == be32_to_cpu(agf->agf_longest)); + } +skip_cntbt: + out: return error; } diff --git a/fs/xfs/repair/alloc.c b/fs/xfs/repair/alloc.c index 9f9f4db9c..89f80f3 100644 --- a/fs/xfs/repair/alloc.c +++ b/fs/xfs/repair/alloc.c @@ -31,6 +31,7 @@ #include "xfs_trace.h" #include "xfs_sb.h" #include "xfs_rmap.h" +#include "xfs_alloc.h" #include "repair/common.h" #include "repair/btree.h" @@ -44,9 +45,15 @@ xfs_scrub_allocbt_helper( { struct xfs_mount *mp = bs->cur->bc_mp; struct xfs_agf *agf; + struct xfs_btree_cur **xcur; + struct xfs_scrub_ag *psa; + xfs_agblock_t fbno; xfs_agblock_t bno; + xfs_extlen_t flen; xfs_extlen_t len; + int has_otherrec; int error = 0; + int err2; bno = be32_to_cpu(rec->alloc.ar_startblock); len = be32_to_cpu(rec->alloc.ar_blockcount); @@ -60,6 +67,30 @@ xfs_scrub_allocbt_helper( XFS_SCRUB_BTREC_CHECK(bs, (unsigned long long)bno + len <= be32_to_cpu(agf->agf_length)); + if (error) + goto out; + + psa = &bs->sc->sa; + /* + * Ensure there's a corresponding cntbt/bnobt record matching + * this bnobt/cntbt record, respectively. + */ + xcur = bs->cur == psa->bno_cur ? &psa->cnt_cur : &psa->bno_cur; + if (*xcur) { + err2 = xfs_alloc_lookup_le(*xcur, bno, len, &has_otherrec); + if (xfs_scrub_btree_should_xref(bs, err2, xcur)) { + XFS_SCRUB_BTREC_GOTO(bs, has_otherrec, out); + err2 = xfs_alloc_get_rec(*xcur, &fbno, &flen, + &has_otherrec); + if (xfs_scrub_btree_should_xref(bs, err2, xcur)) { + XFS_SCRUB_BTREC_GOTO(bs, has_otherrec, out); + XFS_SCRUB_BTREC_CHECK(bs, fbno == bno); + XFS_SCRUB_BTREC_CHECK(bs, flen == len); + } + } + } + +out: return error; } -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html