aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/xfs/xfs_bmap.c22
-rw-r--r--fs/xfs/xfs_bmap_btree.h7
2 files changed, 19 insertions, 10 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c
index 7796a0c140eb..db289050692f 100644
--- a/fs/xfs/xfs_bmap.c
+++ b/fs/xfs/xfs_bmap.c
@@ -4524,6 +4524,22 @@ xfs_bmap_one_block(
4524 return rval; 4524 return rval;
4525} 4525}
4526 4526
4527STATIC int
4528xfs_bmap_sanity_check(
4529 struct xfs_mount *mp,
4530 struct xfs_buf *bp,
4531 int level)
4532{
4533 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
4534
4535 if (be32_to_cpu(block->bb_magic) != XFS_BMAP_MAGIC ||
4536 be16_to_cpu(block->bb_level) != level ||
4537 be16_to_cpu(block->bb_numrecs) == 0 ||
4538 be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
4539 return 0;
4540 return 1;
4541}
4542
4527/* 4543/*
4528 * Read in the extents to if_extents. 4544 * Read in the extents to if_extents.
4529 * All inode fields are set up by caller, we just traverse the btree 4545 * All inode fields are set up by caller, we just traverse the btree
@@ -4575,7 +4591,7 @@ xfs_bmap_read_extents(
4575 return error; 4591 return error;
4576 block = XFS_BUF_TO_BLOCK(bp); 4592 block = XFS_BUF_TO_BLOCK(bp);
4577 XFS_WANT_CORRUPTED_GOTO( 4593 XFS_WANT_CORRUPTED_GOTO(
4578 XFS_BMAP_SANITY_CHECK(mp, block, level), 4594 xfs_bmap_sanity_check(mp, bp, level),
4579 error0); 4595 error0);
4580 if (level == 0) 4596 if (level == 0)
4581 break; 4597 break;
@@ -4611,7 +4627,7 @@ xfs_bmap_read_extents(
4611 goto error0; 4627 goto error0;
4612 } 4628 }
4613 XFS_WANT_CORRUPTED_GOTO( 4629 XFS_WANT_CORRUPTED_GOTO(
4614 XFS_BMAP_SANITY_CHECK(mp, block, 0), 4630 xfs_bmap_sanity_check(mp, bp, 0),
4615 error0); 4631 error0);
4616 /* 4632 /*
4617 * Read-ahead the next leaf block, if any. 4633 * Read-ahead the next leaf block, if any.
@@ -6287,7 +6303,7 @@ xfs_bmap_check_leaf_extents(
6287 goto error_norelse; 6303 goto error_norelse;
6288 block = XFS_BUF_TO_BLOCK(bp); 6304 block = XFS_BUF_TO_BLOCK(bp);
6289 XFS_WANT_CORRUPTED_GOTO( 6305 XFS_WANT_CORRUPTED_GOTO(
6290 XFS_BMAP_SANITY_CHECK(mp, block, level), 6306 xfs_bmap_sanity_check(mp, bp, level),
6291 error0); 6307 error0);
6292 if (level == 0) 6308 if (level == 0)
6293 break; 6309 break;
diff --git a/fs/xfs/xfs_bmap_btree.h b/fs/xfs/xfs_bmap_btree.h
index 735a42418c99..a4555abb6622 100644
--- a/fs/xfs/xfs_bmap_btree.h
+++ b/fs/xfs/xfs_bmap_btree.h
@@ -213,13 +213,6 @@ typedef __be64 xfs_bmbt_ptr_t, xfs_bmdr_ptr_t;
213 */ 213 */
214#define XFS_BM_MAXLEVELS(mp,w) ((mp)->m_bm_maxlevels[(w)]) 214#define XFS_BM_MAXLEVELS(mp,w) ((mp)->m_bm_maxlevels[(w)])
215 215
216#define XFS_BMAP_SANITY_CHECK(mp,bb,level) \
217 (be32_to_cpu((bb)->bb_magic) == XFS_BMAP_MAGIC && \
218 be16_to_cpu((bb)->bb_level) == level && \
219 be16_to_cpu((bb)->bb_numrecs) > 0 && \
220 be16_to_cpu((bb)->bb_numrecs) <= (mp)->m_bmap_dmxr[(level) != 0])
221
222
223/* 216/*
224 * Prototypes for xfs_bmap.c to call. 217 * Prototypes for xfs_bmap.c to call.
225 */ 218 */