diff mbox series

[RFC] xfs: support magic value in xfs_buf_ops

Message ID 20190124155440.46469-1-bfoster@redhat.com (mailing list archive)
State New, archived
Headers show
Series [RFC] xfs: support magic value in xfs_buf_ops | expand

Commit Message

Brian Foster Jan. 24, 2019, 3:54 p.m. UTC
Add a field to specify the v4 and v5 magic values in xfs_buf_ops.
This allows otherwise identical verifiers to distinguish between
and verify different magic values (inobt vs. finobt buffers). This
also facilitates verification of the appropriate magic value based
on superblock version.

The magic field is optional and is free to be used as appropriate
for each particular verifier.

Signed-off-by: Brian Foster <bfoster@redhat.com>
---

Hi all,

What do folks think of something like this as a lightweight (and
untested) means to do proper [f]inobt magic verification? For reference,
the initial version of this put together to help root cause a user
report is here[1]. I was hoping to do the same thing with less code
duplication. A couple things that come to mind:

1. I know scrub has at least one place where we invoke the verifier with
->b_ops == NULL, which will cause this to explode. Could we fix that up
to assign and reset ->b_ops to accommodate something like this, or is
that problematic?

2. We have some other verifiers around that actually use the buffer
magic to set a more specific verifier. See xfs_da3_node_read_verify()
for an example. I'm not sure this is all that useful for such higher
level verifiers, but I think we'd at least be able to use it for the
underlying verifiers. That might provide some extra sb version vs. magic
sanity checking for places that might not already look at the sb version
(otherwise it's just refactoring).

Thoughts or other ideas before I try to apply this more broadly? Thanks.

Brian

[1] https://marc.info/?l=linux-xfs&m=154809431726435&w=2

 fs/xfs/libxfs/xfs_ialloc_btree.c | 27 +++++++++++++++++----------
 fs/xfs/xfs_buf.h                 |  1 +
 2 files changed, 18 insertions(+), 10 deletions(-)

Comments

Darrick J. Wong Jan. 24, 2019, 7:08 p.m. UTC | #1
On Thu, Jan 24, 2019 at 10:54:40AM -0500, Brian Foster wrote:
> Add a field to specify the v4 and v5 magic values in xfs_buf_ops.
> This allows otherwise identical verifiers to distinguish between
> and verify different magic values (inobt vs. finobt buffers). This
> also facilitates verification of the appropriate magic value based
> on superblock version.
> 
> The magic field is optional and is free to be used as appropriate
> for each particular verifier.
> 
> Signed-off-by: Brian Foster <bfoster@redhat.com>
> ---
> 
> Hi all,
> 
> What do folks think of something like this as a lightweight (and
> untested) means to do proper [f]inobt magic verification? For reference,
> the initial version of this put together to help root cause a user
> report is here[1]. I was hoping to do the same thing with less code
> duplication. A couple things that come to mind:
> 
> 1. I know scrub has at least one place where we invoke the verifier with
> ->b_ops == NULL, which will cause this to explode. Could we fix that up
> to assign and reset ->b_ops to accommodate something like this, or is
> that problematic?

IIRC one of the scrub findroot reviewers didn't like the idea of scrub
setting b_ops until it was absolutely sure it wanted to.  I think it's
actually ok to patch it in temporarily while running the read verifier
since we have the buffer locked and patch it out afterwards.

> 2. We have some other verifiers around that actually use the buffer
> magic to set a more specific verifier. See xfs_da3_node_read_verify()
> for an example. I'm not sure this is all that useful for such higher
> level verifiers, but I think we'd at least be able to use it for the
> underlying verifiers. That might provide some extra sb version vs. magic
> sanity checking for places that might not already look at the sb version
> (otherwise it's just refactoring).
> 
> Thoughts or other ideas before I try to apply this more broadly? Thanks.

Hmm... not sure if I like the idea that you have to find the b_ops
declaration to figure out which magic number the verifier function is
checking, but I don't really have a cogent objection.

--D

> Brian
> 
> [1] https://marc.info/?l=linux-xfs&m=154809431726435&w=2
> 
>  fs/xfs/libxfs/xfs_ialloc_btree.c | 27 +++++++++++++++++----------
>  fs/xfs/xfs_buf.h                 |  1 +
>  2 files changed, 18 insertions(+), 10 deletions(-)
> 
> diff --git a/fs/xfs/libxfs/xfs_ialloc_btree.c b/fs/xfs/libxfs/xfs_ialloc_btree.c
> index 9b25e7a0df47..59b0cf1d759a 100644
> --- a/fs/xfs/libxfs/xfs_ialloc_btree.c
> +++ b/fs/xfs/libxfs/xfs_ialloc_btree.c
> @@ -259,6 +259,12 @@ xfs_inobt_verify(
>  	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
>  	xfs_failaddr_t		fa;
>  	unsigned int		level;
> +	uint32_t		magic;
> +
> +	ASSERT(bp->b_ops);
> +	magic = bp->b_ops->magic[xfs_sb_version_hascrc(&mp->m_sb)];
> +	if (block->bb_magic != cpu_to_be32(magic))
> +		return __this_address;
>  
>  	/*
>  	 * During growfs operations, we can't verify the exact owner as the
> @@ -270,18 +276,10 @@ xfs_inobt_verify(
>  	 * but beware of the landmine (i.e. need to check pag->pagi_init) if we
>  	 * ever do.
>  	 */
> -	switch (block->bb_magic) {
> -	case cpu_to_be32(XFS_IBT_CRC_MAGIC):
> -	case cpu_to_be32(XFS_FIBT_CRC_MAGIC):
> +	if (xfs_sb_version_hascrc(&mp->m_sb)) {
>  		fa = xfs_btree_sblock_v5hdr_verify(bp);
>  		if (fa)
>  			return fa;
> -		/* fall through */
> -	case cpu_to_be32(XFS_IBT_MAGIC):
> -	case cpu_to_be32(XFS_FIBT_MAGIC):
> -		break;
> -	default:
> -		return __this_address;
>  	}
>  
>  	/* level verification */
> @@ -328,6 +326,15 @@ xfs_inobt_write_verify(
>  
>  const struct xfs_buf_ops xfs_inobt_buf_ops = {
>  	.name = "xfs_inobt",
> +	.magic = { XFS_IBT_MAGIC, XFS_IBT_CRC_MAGIC },
> +	.verify_read = xfs_inobt_read_verify,
> +	.verify_write = xfs_inobt_write_verify,
> +	.verify_struct = xfs_inobt_verify,
> +};
> +
> +const struct xfs_buf_ops xfs_finobt_buf_ops = {
> +	.name = "xfs_finobt",
> +	.magic = { XFS_FIBT_MAGIC, XFS_FIBT_CRC_MAGIC },
>  	.verify_read = xfs_inobt_read_verify,
>  	.verify_write = xfs_inobt_write_verify,
>  	.verify_struct = xfs_inobt_verify,
> @@ -389,7 +396,7 @@ static const struct xfs_btree_ops xfs_finobt_ops = {
>  	.init_rec_from_cur	= xfs_inobt_init_rec_from_cur,
>  	.init_ptr_from_cur	= xfs_finobt_init_ptr_from_cur,
>  	.key_diff		= xfs_inobt_key_diff,
> -	.buf_ops		= &xfs_inobt_buf_ops,
> +	.buf_ops		= &xfs_finobt_buf_ops,
>  	.diff_two_keys		= xfs_inobt_diff_two_keys,
>  	.keys_inorder		= xfs_inobt_keys_inorder,
>  	.recs_inorder		= xfs_inobt_recs_inorder,
> diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h
> index b9f5511ea998..ce61e6b94725 100644
> --- a/fs/xfs/xfs_buf.h
> +++ b/fs/xfs/xfs_buf.h
> @@ -125,6 +125,7 @@ struct xfs_buf_map {
>  
>  struct xfs_buf_ops {
>  	char *name;
> +	uint32_t magic[2];
>  	void (*verify_read)(struct xfs_buf *);
>  	void (*verify_write)(struct xfs_buf *);
>  	xfs_failaddr_t (*verify_struct)(struct xfs_buf *bp);
> -- 
> 2.17.2
>
Dave Chinner Jan. 24, 2019, 10:19 p.m. UTC | #2
On Thu, Jan 24, 2019 at 11:08:46AM -0800, Darrick J. Wong wrote:
> On Thu, Jan 24, 2019 at 10:54:40AM -0500, Brian Foster wrote:
> > Add a field to specify the v4 and v5 magic values in xfs_buf_ops.
> > This allows otherwise identical verifiers to distinguish between
> > and verify different magic values (inobt vs. finobt buffers). This
> > also facilitates verification of the appropriate magic value based
> > on superblock version.
> > 
> > The magic field is optional and is free to be used as appropriate
> > for each particular verifier.
> > 
> > Signed-off-by: Brian Foster <bfoster@redhat.com>
> > ---
> > 
> > Hi all,
> > 
> > What do folks think of something like this as a lightweight (and
> > untested) means to do proper [f]inobt magic verification? For reference,
> > the initial version of this put together to help root cause a user
> > report is here[1]. I was hoping to do the same thing with less code
> > duplication. A couple things that come to mind:
> > 
> > 1. I know scrub has at least one place where we invoke the verifier with
> > ->b_ops == NULL, which will cause this to explode. Could we fix that up
> > to assign and reset ->b_ops to accommodate something like this, or is
> > that problematic?
> 
> IIRC one of the scrub findroot reviewers didn't like the idea of scrub
> setting b_ops until it was absolutely sure it wanted to.  I think it's
> actually ok to patch it in temporarily while running the read verifier
> since we have the buffer locked and patch it out afterwards.

How does this interact with xfs_buf_ensure_ops()?

[ side note: the comments about this function are poor - I have no
idea what problem it is avoiding from reading the code. Yes, I know
it protects against transactions with buffers and no ops, but the
comments don't tell me *how or when that occurs* so I do not know
where to go looking for potential issues here. ]

> > 2. We have some other verifiers around that actually use the buffer
> > magic to set a more specific verifier. See xfs_da3_node_read_verify()
> > for an example. I'm not sure this is all that useful for such higher
> > level verifiers, but I think we'd at least be able to use it for the
> > underlying verifiers. That might provide some extra sb version vs. magic
> > sanity checking for places that might not already look at the sb version
> > (otherwise it's just refactoring).
> > 
> > Thoughts or other ideas before I try to apply this more broadly? Thanks.
> 
> Hmm... not sure if I like the idea that you have to find the b_ops
> declaration to figure out which magic number the verifier function is
> checking, but I don't really have a cogent objection.

Yeah, I don't really like it either (especially the added CPU
overhead that we avoided by doing compile time byte swapping),
but I'm struggling to come up with a better option.

Cheers,

Dave.
Brian Foster Jan. 25, 2019, 2:43 p.m. UTC | #3
On Fri, Jan 25, 2019 at 09:19:17AM +1100, Dave Chinner wrote:
> On Thu, Jan 24, 2019 at 11:08:46AM -0800, Darrick J. Wong wrote:
> > On Thu, Jan 24, 2019 at 10:54:40AM -0500, Brian Foster wrote:
> > > Add a field to specify the v4 and v5 magic values in xfs_buf_ops.
> > > This allows otherwise identical verifiers to distinguish between
> > > and verify different magic values (inobt vs. finobt buffers). This
> > > also facilitates verification of the appropriate magic value based
> > > on superblock version.
> > > 
> > > The magic field is optional and is free to be used as appropriate
> > > for each particular verifier.
> > > 
> > > Signed-off-by: Brian Foster <bfoster@redhat.com>
> > > ---
> > > 
> > > Hi all,
> > > 
> > > What do folks think of something like this as a lightweight (and
> > > untested) means to do proper [f]inobt magic verification? For reference,
> > > the initial version of this put together to help root cause a user
> > > report is here[1]. I was hoping to do the same thing with less code
> > > duplication. A couple things that come to mind:
> > > 
> > > 1. I know scrub has at least one place where we invoke the verifier with
> > > ->b_ops == NULL, which will cause this to explode. Could we fix that up
> > > to assign and reset ->b_ops to accommodate something like this, or is
> > > that problematic?
> > 
> > IIRC one of the scrub findroot reviewers didn't like the idea of scrub
> > setting b_ops until it was absolutely sure it wanted to.  I think it's
> > actually ok to patch it in temporarily while running the read verifier
> > since we have the buffer locked and patch it out afterwards.
> 
> How does this interact with xfs_buf_ensure_ops()?
> 
> [ side note: the comments about this function are poor - I have no
> idea what problem it is avoiding from reading the code. Yes, I know
> it protects against transactions with buffers and no ops, but the
> comments don't tell me *how or when that occurs* so I do not know
> where to go looking for potential issues here. ]
> 

I think the when and how behind this logic is the scrub case (i.e.,
xrep_findroot_block()) called out above: we read the buffer with a NULL
b_ops param because we don't know which buf_ops actually applies. If a
->b_ops is not ultimately attached, the buf sits around in cache without
->b_ops and is never verified (even if read with a non-NULL b_ops) until
it cycles out of cache. So without this logic, the aforementioned case
would have to drop the buffer from the cache if it was ultimately read
with a NULL b_ops.

With regard to verifiers depending on ->b_ops != NULL, I don't think
this would change anything at this level. The higher level scrub code
would just be required to assign ->b_ops in order to run a verifier and
thus would have to make sure to reset ->b_ops in the event of a failure.

> > > 2. We have some other verifiers around that actually use the buffer
> > > magic to set a more specific verifier. See xfs_da3_node_read_verify()
> > > for an example. I'm not sure this is all that useful for such higher
> > > level verifiers, but I think we'd at least be able to use it for the
> > > underlying verifiers. That might provide some extra sb version vs. magic
> > > sanity checking for places that might not already look at the sb version
> > > (otherwise it's just refactoring).
> > > 
> > > Thoughts or other ideas before I try to apply this more broadly? Thanks.
> > 
> > Hmm... not sure if I like the idea that you have to find the b_ops
> > declaration to figure out which magic number the verifier function is
> > checking, but I don't really have a cogent objection.
> 
> Yeah, I don't really like it either (especially the added CPU
> overhead that we avoided by doing compile time byte swapping),
> but I'm struggling to come up with a better option.
> 

I suppose we could store the on-disk magics in the xfs_buf_ops
structures (it works on x86_64 at least, I'd have to verify other
arches), but that is pretty ugly. Given all of the other conversions and
checks, I'm not sure it's worth it.

Hmm, I suppose we could also define a separate set of on-disk magic
directives:

#define XFS_FIBT_CRC_MAGIC_DISK        cpu_to_be32(XFS_FIBT_CRC_MAGIC)

... and start using those in various places to avoid the ugliness. I
think that's a separate change though (and again, it's not immediately
clear to me the benefit justifies the additional code).

Brian

> Cheers,
> 
> Dave.
> -- 
> Dave Chinner
> david@fromorbit.com
Darrick J. Wong Jan. 27, 2019, 5:49 p.m. UTC | #4
On Fri, Jan 25, 2019 at 09:43:25AM -0500, Brian Foster wrote:
> On Fri, Jan 25, 2019 at 09:19:17AM +1100, Dave Chinner wrote:
> > On Thu, Jan 24, 2019 at 11:08:46AM -0800, Darrick J. Wong wrote:
> > > On Thu, Jan 24, 2019 at 10:54:40AM -0500, Brian Foster wrote:
> > > > Add a field to specify the v4 and v5 magic values in xfs_buf_ops.
> > > > This allows otherwise identical verifiers to distinguish between
> > > > and verify different magic values (inobt vs. finobt buffers). This
> > > > also facilitates verification of the appropriate magic value based
> > > > on superblock version.
> > > > 
> > > > The magic field is optional and is free to be used as appropriate
> > > > for each particular verifier.
> > > > 
> > > > Signed-off-by: Brian Foster <bfoster@redhat.com>
> > > > ---
> > > > 
> > > > Hi all,
> > > > 
> > > > What do folks think of something like this as a lightweight (and
> > > > untested) means to do proper [f]inobt magic verification? For reference,
> > > > the initial version of this put together to help root cause a user
> > > > report is here[1]. I was hoping to do the same thing with less code
> > > > duplication. A couple things that come to mind:
> > > > 
> > > > 1. I know scrub has at least one place where we invoke the verifier with
> > > > ->b_ops == NULL, which will cause this to explode. Could we fix that up
> > > > to assign and reset ->b_ops to accommodate something like this, or is
> > > > that problematic?
> > > 
> > > IIRC one of the scrub findroot reviewers didn't like the idea of scrub
> > > setting b_ops until it was absolutely sure it wanted to.  I think it's
> > > actually ok to patch it in temporarily while running the read verifier
> > > since we have the buffer locked and patch it out afterwards.
> > 
> > How does this interact with xfs_buf_ensure_ops()?
> > 
> > [ side note: the comments about this function are poor - I have no
> > idea what problem it is avoiding from reading the code. Yes, I know
> > it protects against transactions with buffers and no ops, but the
> > comments don't tell me *how or when that occurs* so I do not know
> > where to go looking for potential issues here. ]
> > 
> 
> I think the when and how behind this logic is the scrub case (i.e.,
> xrep_findroot_block()) called out above: we read the buffer with a NULL
> b_ops param because we don't know which buf_ops actually applies. If a
> ->b_ops is not ultimately attached, the buf sits around in cache without
> ->b_ops and is never verified (even if read with a non-NULL b_ops) until
> it cycles out of cache. So without this logic, the aforementioned case
> would have to drop the buffer from the cache if it was ultimately read
> with a NULL b_ops.
> 
> With regard to verifiers depending on ->b_ops != NULL, I don't think
> this would change anything at this level. The higher level scrub code
> would just be required to assign ->b_ops in order to run a verifier and
> thus would have to make sure to reset ->b_ops in the event of a failure.

Ok, easy enough.  I'll also try to fix Dave's complaints about
insufficient commenting for xfs_buf_ensure_ops.

--D

> > > > 2. We have some other verifiers around that actually use the buffer
> > > > magic to set a more specific verifier. See xfs_da3_node_read_verify()
> > > > for an example. I'm not sure this is all that useful for such higher
> > > > level verifiers, but I think we'd at least be able to use it for the
> > > > underlying verifiers. That might provide some extra sb version vs. magic
> > > > sanity checking for places that might not already look at the sb version
> > > > (otherwise it's just refactoring).
> > > > 
> > > > Thoughts or other ideas before I try to apply this more broadly? Thanks.
> > > 
> > > Hmm... not sure if I like the idea that you have to find the b_ops
> > > declaration to figure out which magic number the verifier function is
> > > checking, but I don't really have a cogent objection.
> > 
> > Yeah, I don't really like it either (especially the added CPU
> > overhead that we avoided by doing compile time byte swapping),
> > but I'm struggling to come up with a better option.
> > 
> 
> I suppose we could store the on-disk magics in the xfs_buf_ops
> structures (it works on x86_64 at least, I'd have to verify other
> arches), but that is pretty ugly. Given all of the other conversions and
> checks, I'm not sure it's worth it.
> 
> Hmm, I suppose we could also define a separate set of on-disk magic
> directives:
> 
> #define XFS_FIBT_CRC_MAGIC_DISK        cpu_to_be32(XFS_FIBT_CRC_MAGIC)
> 
> ... and start using those in various places to avoid the ugliness. I
> think that's a separate change though (and again, it's not immediately
> clear to me the benefit justifies the additional code).
> 
> Brian
> 
> > Cheers,
> > 
> > Dave.
> > -- 
> > Dave Chinner
> > david@fromorbit.com
Dave Chinner Jan. 28, 2019, 9:06 p.m. UTC | #5
On Fri, Jan 25, 2019 at 09:43:25AM -0500, Brian Foster wrote:
> On Fri, Jan 25, 2019 at 09:19:17AM +1100, Dave Chinner wrote:
> > On Thu, Jan 24, 2019 at 11:08:46AM -0800, Darrick J. Wong wrote:
> > > On Thu, Jan 24, 2019 at 10:54:40AM -0500, Brian Foster wrote:
> > > > Add a field to specify the v4 and v5 magic values in xfs_buf_ops.
> > > > This allows otherwise identical verifiers to distinguish between
> > > > and verify different magic values (inobt vs. finobt buffers). This
> > > > also facilitates verification of the appropriate magic value based
> > > > on superblock version.
> > > > 
> > > > The magic field is optional and is free to be used as appropriate
> > > > for each particular verifier.
> > > > 
> > > > Signed-off-by: Brian Foster <bfoster@redhat.com>
> > > > ---
> > > > 
> > > > Hi all,
> > > > 
> > > > What do folks think of something like this as a lightweight (and
> > > > untested) means to do proper [f]inobt magic verification? For reference,
> > > > the initial version of this put together to help root cause a user
> > > > report is here[1]. I was hoping to do the same thing with less code
> > > > duplication. A couple things that come to mind:
> > > > 
> > > > 1. I know scrub has at least one place where we invoke the verifier with
> > > > ->b_ops == NULL, which will cause this to explode. Could we fix that up
> > > > to assign and reset ->b_ops to accommodate something like this, or is
> > > > that problematic?
> > > 
> > > IIRC one of the scrub findroot reviewers didn't like the idea of scrub
> > > setting b_ops until it was absolutely sure it wanted to.  I think it's
> > > actually ok to patch it in temporarily while running the read verifier
> > > since we have the buffer locked and patch it out afterwards.
> > 
> > How does this interact with xfs_buf_ensure_ops()?
> > 
> > [ side note: the comments about this function are poor - I have no
> > idea what problem it is avoiding from reading the code. Yes, I know
> > it protects against transactions with buffers and no ops, but the
> > comments don't tell me *how or when that occurs* so I do not know
> > where to go looking for potential issues here. ]
> > 
> 
> I think the when and how behind this logic is the scrub case (i.e.,
> xrep_findroot_block()) called out above: we read the buffer with a NULL
> b_ops param because we don't know which buf_ops actually applies. If a
> ->b_ops is not ultimately attached, the buf sits around in cache without
> ->b_ops and is never verified (even if read with a non-NULL b_ops) until
> it cycles out of cache.

IOWs, it is marked XBF_DONE, which prevents it from being verified
on future reads accesses even if a buf_ops is provided.

So, really, it is just very badly named - it's named for it's
implementation, not for the purpose it serves. i.e. it should be
named something like xfs_buf_reverify(bp, ops)?  Or even:

	if (xfs_buf_need_verify(bp, ops))
		xfs_buf_reverify(bp, ops);

> > > Hmm... not sure if I like the idea that you have to find the b_ops
> > > declaration to figure out which magic number the verifier function is
> > > checking, but I don't really have a cogent objection.
> > 
> > Yeah, I don't really like it either (especially the added CPU
> > overhead that we avoided by doing compile time byte swapping),
> > but I'm struggling to come up with a better option.
> 
> I suppose we could store the on-disk magics in the xfs_buf_ops
> structures (it works on x86_64 at least, I'd have to verify other
> arches), but that is pretty ugly. Given all of the other conversions and
> checks, I'm not sure it's worth it.
> 
> Hmm, I suppose we could also define a separate set of on-disk magic
> directives:
> 
> #define XFS_FIBT_CRC_MAGIC_DISK        cpu_to_be32(XFS_FIBT_CRC_MAGIC)
> 
> ... and start using those in various places to avoid the ugliness. I
> think that's a separate change though (and again, it's not immediately
> clear to me the benefit justifies the additional code).

I'd prefer we don't have to duplicate every magic number in XFS -
that feels like going backwards to the bad old days of crufty irix
code that we have cleaned up over the years.... Just use
cpu_to_be32(XFS_FIBT_CRC_MAGIC) where necessary.

Cheers,

Dave.
diff mbox series

Patch

diff --git a/fs/xfs/libxfs/xfs_ialloc_btree.c b/fs/xfs/libxfs/xfs_ialloc_btree.c
index 9b25e7a0df47..59b0cf1d759a 100644
--- a/fs/xfs/libxfs/xfs_ialloc_btree.c
+++ b/fs/xfs/libxfs/xfs_ialloc_btree.c
@@ -259,6 +259,12 @@  xfs_inobt_verify(
 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
 	xfs_failaddr_t		fa;
 	unsigned int		level;
+	uint32_t		magic;
+
+	ASSERT(bp->b_ops);
+	magic = bp->b_ops->magic[xfs_sb_version_hascrc(&mp->m_sb)];
+	if (block->bb_magic != cpu_to_be32(magic))
+		return __this_address;
 
 	/*
 	 * During growfs operations, we can't verify the exact owner as the
@@ -270,18 +276,10 @@  xfs_inobt_verify(
 	 * but beware of the landmine (i.e. need to check pag->pagi_init) if we
 	 * ever do.
 	 */
-	switch (block->bb_magic) {
-	case cpu_to_be32(XFS_IBT_CRC_MAGIC):
-	case cpu_to_be32(XFS_FIBT_CRC_MAGIC):
+	if (xfs_sb_version_hascrc(&mp->m_sb)) {
 		fa = xfs_btree_sblock_v5hdr_verify(bp);
 		if (fa)
 			return fa;
-		/* fall through */
-	case cpu_to_be32(XFS_IBT_MAGIC):
-	case cpu_to_be32(XFS_FIBT_MAGIC):
-		break;
-	default:
-		return __this_address;
 	}
 
 	/* level verification */
@@ -328,6 +326,15 @@  xfs_inobt_write_verify(
 
 const struct xfs_buf_ops xfs_inobt_buf_ops = {
 	.name = "xfs_inobt",
+	.magic = { XFS_IBT_MAGIC, XFS_IBT_CRC_MAGIC },
+	.verify_read = xfs_inobt_read_verify,
+	.verify_write = xfs_inobt_write_verify,
+	.verify_struct = xfs_inobt_verify,
+};
+
+const struct xfs_buf_ops xfs_finobt_buf_ops = {
+	.name = "xfs_finobt",
+	.magic = { XFS_FIBT_MAGIC, XFS_FIBT_CRC_MAGIC },
 	.verify_read = xfs_inobt_read_verify,
 	.verify_write = xfs_inobt_write_verify,
 	.verify_struct = xfs_inobt_verify,
@@ -389,7 +396,7 @@  static const struct xfs_btree_ops xfs_finobt_ops = {
 	.init_rec_from_cur	= xfs_inobt_init_rec_from_cur,
 	.init_ptr_from_cur	= xfs_finobt_init_ptr_from_cur,
 	.key_diff		= xfs_inobt_key_diff,
-	.buf_ops		= &xfs_inobt_buf_ops,
+	.buf_ops		= &xfs_finobt_buf_ops,
 	.diff_two_keys		= xfs_inobt_diff_two_keys,
 	.keys_inorder		= xfs_inobt_keys_inorder,
 	.recs_inorder		= xfs_inobt_recs_inorder,
diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h
index b9f5511ea998..ce61e6b94725 100644
--- a/fs/xfs/xfs_buf.h
+++ b/fs/xfs/xfs_buf.h
@@ -125,6 +125,7 @@  struct xfs_buf_map {
 
 struct xfs_buf_ops {
 	char *name;
+	uint32_t magic[2];
 	void (*verify_read)(struct xfs_buf *);
 	void (*verify_write)(struct xfs_buf *);
 	xfs_failaddr_t (*verify_struct)(struct xfs_buf *bp);