From: Dave Chinner <david@fromorbit.com>
To: "Darrick J. Wong" <darrick.wong@oracle.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH v2 17/21] xfs: cross-reference reverse-mapping btree
Date: Tue, 16 Jan 2018 10:04:17 +1100 [thread overview]
Message-ID: <20180115230417.GC16421@dastard> (raw)
In-Reply-To: <20180109212449.GL5602@magnolia>
On Tue, Jan 09, 2018 at 01:24:49PM -0800, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
>
> When scrubbing various btrees, we should cross-reference the records
> with the reverse mapping btree and ensure that traversing the btree
> finds the same number of blocks that the rmapbt thinks are owned by
> that btree.
>
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---
> v2: streamline scrubber arguments, remove stack allocated objects
> ---
.....
> diff --git a/fs/xfs/scrub/alloc.c b/fs/xfs/scrub/alloc.c
> index 2a58558..b4defa4 100644
> --- a/fs/xfs/scrub/alloc.c
> +++ b/fs/xfs/scrub/alloc.c
> @@ -105,6 +105,7 @@ xfs_scrub_allocbt_xref(
>
> xfs_scrub_allocbt_xref_other(sc, agbno, len);
> xfs_scrub_xref_not_inodes(sc, agbno, len);
> + xfs_scrub_xref_no_rmap(sc, agbno, len);
Hmmm - this is actually checking the rmap considers it free space,
right? so rather than cross referencing is as "no rmap record"
(which bleeds implementation into the API), wouldn't it be better
to name this consistently with the other used/free space xref
checks? e.g. xfs_scrub_xref_rmap_is_free_space()?
> diff --git a/fs/xfs/scrub/bmap.c b/fs/xfs/scrub/bmap.c
> index d2b4747..ef7b461 100644
> --- a/fs/xfs/scrub/bmap.c
> +++ b/fs/xfs/scrub/bmap.c
> @@ -99,6 +99,109 @@ struct xfs_scrub_bmap_info {
> int whichfork;
> };
>
> +/* Make sure that we have rmapbt records for this extent. */
> +STATIC void
> +xfs_scrub_bmap_xref_rmap(
> + struct xfs_scrub_bmap_info *info,
> + struct xfs_bmbt_irec *irec,
> + xfs_fsblock_t bno)
> +{
> + struct xfs_rmap_irec rmap;
> + uint64_t owner;
> + xfs_fileoff_t offset;
> + unsigned long long rmap_end;
> + unsigned int rflags;
> + int has_rmap;
> + int error;
> +
> + if (!info->sc->sa.rmap_cur)
> + return;
> + if (info->whichfork == XFS_COW_FORK) {
> + owner = XFS_RMAP_OWN_COW;
> + offset = 0;
> + } else {
> + owner = info->sc->ip->i_ino;
> + offset = irec->br_startoff;
> + }
> +
> + /* Look for a corresponding rmap. */
> + rflags = 0;
> + if (info->whichfork == XFS_ATTR_FORK)
> + rflags |= XFS_RMAP_ATTR_FORK;
> +
> + if (info->is_shared) {
What's this mean?
> + error = xfs_rmap_lookup_le_range(info->sc->sa.rmap_cur, bno,
> + owner, offset, rflags, &rmap, &has_rmap);
> + if (!xfs_scrub_should_check_xref(info->sc, &error,
> + &info->sc->sa.rmap_cur))
> + return;
> + if (!has_rmap) {
> + xfs_scrub_fblock_xref_set_corrupt(info->sc,
> + info->whichfork, irec->br_startoff);
> + return;
> + }
> + } else {
> + error = xfs_rmap_lookup_le(info->sc->sa.rmap_cur, bno, 0, owner,
> + offset, rflags, &has_rmap);
> + if (!xfs_scrub_should_check_xref(info->sc, &error,
> + &info->sc->sa.rmap_cur))
> + return;
> + if (!has_rmap) {
> + xfs_scrub_fblock_xref_set_corrupt(info->sc,
> + info->whichfork, irec->br_startoff);
> + return;
> + }
> +
> + error = xfs_rmap_get_rec(info->sc->sa.rmap_cur, &rmap,
> + &has_rmap);
> + if (!xfs_scrub_should_check_xref(info->sc, &error,
> + &info->sc->sa.rmap_cur))
> + return;
> + if (!has_rmap) {
> + xfs_scrub_fblock_xref_set_corrupt(info->sc,
> + info->whichfork, irec->br_startoff);
> + return;
> + }
> + }
i.e. why is one branch doing a range lookup, and the other not?
Perhaps this should also be put in a helper function....
> +
> + /* Check the rmap. */
> + rmap_end = (unsigned long long)rmap.rm_startblock + rmap.rm_blockcount;
> + if (rmap.rm_startblock > bno ||
> + bno + irec->br_blockcount > rmap_end)
> + xfs_scrub_fblock_xref_set_corrupt(info->sc, info->whichfork,
> + irec->br_startoff);
> +
> + if (owner != XFS_RMAP_OWN_COW) {
> + rmap_end = (unsigned long long)rmap.rm_offset +
> + rmap.rm_blockcount;
> + if (rmap.rm_offset > offset ||
> + offset + irec->br_blockcount > rmap_end)
> + xfs_scrub_fblock_xref_set_corrupt(info->sc,
> + info->whichfork, irec->br_startoff);
> + } else {
> + /*
> + * We don't set the unwritten flag for CoW
> + * staging extent rmaps; everything is unwritten.
> + */
> + irec->br_state = XFS_EXT_NORM;
> + }
There are two unrelated things in the different branches. Shouldn't
this irec mod be done right at the start where we are setting up for
cow vs non-cow fork checks?
.....
> diff --git a/fs/xfs/scrub/common.c b/fs/xfs/scrub/common.c
> index 68fea09..d3aaa6a 100644
> --- a/fs/xfs/scrub/common.c
> +++ b/fs/xfs/scrub/common.c
> @@ -325,6 +325,53 @@ xfs_scrub_set_incomplete(
> }
>
> /*
> + * rmap scrubbing -- compute the number of blocks with a given owner,
> + * at least according to the reverse mapping data.
> + */
> +
> +struct xfs_scrub_rmap_ownedby_info {
> + struct xfs_owner_info *oinfo;
> + xfs_filblks_t *blocks;
> +};
> +
> +STATIC int
> +xfs_scrub_count_rmap_ownedby_helper(
xfs_scrub_count_rmap_ownedby_irec()
> + struct xfs_btree_cur *cur,
> + struct xfs_rmap_irec *rec,
> + void *priv)
> +{
> + struct xfs_scrub_rmap_ownedby_info *sroi = priv;
> +
> + if (rec->rm_owner == sroi->oinfo->oi_owner &&
> + (XFS_RMAP_NON_INODE_OWNER(rec->rm_owner) ||
> + !!(rec->rm_flags & XFS_RMAP_ATTR_FORK) ==
> + !!(sroi->oinfo->oi_flags & XFS_OWNER_INFO_ATTR_FORK)))
Urk! that takes some parsing. Perhaps something like this?
bool irec_attr = (rec->rm_flags & XFS_RMAP_ATTR_FORK);
bool oinfo_attr = (sroi->oinfo->oi_flags & XFS_OWNER_INFO_ATTR_FORK);
if (rec->rm_owner != sroi->oinfo->oi_owner)
return 0;
if (XFS_RMAP_NON_INODE_OWNER(rec->rm_owner) ||
irec_attr == oinfo_attr)
(*sroi->blocks) += rec->rm_blockcount;
return 0;
?
> }
> +
> + xfs_rmap_ag_owner(&oinfo, XFS_RMAP_OWN_INODES);
> + xfs_scrub_xref_owned_by(sc, agbno, len, &oinfo);
> }
>
> /* Is this chunk worth checking? */
> @@ -228,6 +232,13 @@ xfs_scrub_iallocbt_check_freemask(
> continue;
> }
>
> + if (ir_holemask == 0)
> + xfs_scrub_xref_owned_by(bs->sc, agbno,
> + blks_per_cluster, &oinfo);
> + else
> + xfs_scrub_xref_not_owned_by(bs->sc, agbno,
> + blks_per_cluster, &oinfo);
> +
> /* If any part of this is a hole, skip it. */
> if (ir_holemask)
> continue;
I think these two conditions should be combined, along with an
update to the comment about holes not containing inode chunks?
> @@ -266,6 +277,7 @@ xfs_scrub_iallocbt_rec(
> union xfs_btree_rec *rec)
> {
> struct xfs_mount *mp = bs->cur->bc_mp;
> + xfs_filblks_t *inode_blocks = bs->private;
> struct xfs_inobt_rec_incore irec;
> uint64_t holes;
> xfs_agnumber_t agno = bs->cur->bc_private.a.agno;
> @@ -302,6 +314,8 @@ xfs_scrub_iallocbt_rec(
> if ((agbno & (xfs_ialloc_cluster_alignment(mp) - 1)) ||
> (agbno & (xfs_icluster_size_fsb(mp) - 1)))
> xfs_scrub_btree_set_corrupt(bs->sc, bs->cur, 0);
> + *inode_blocks += XFS_B_TO_FSB(mp,
> + irec.ir_count * mp->m_sb.sb_inodesize);
Line of whitespace to separate the corruption checks from the
accounting logic?
>
> /* Handle non-sparse inodes */
> if (!xfs_inobt_issparse(irec.ir_holemask)) {
> @@ -347,6 +361,56 @@ xfs_scrub_iallocbt_rec(
> return error;
> }
>
> +/*
> + * Make sure the inode btrees are as large as the rmap thinks they are.
> + * Don't bother if we're missing btree cursors, as we're already corrupt.
> + */
> +STATIC void
> +xfs_scrub_iallocbt_xref_rmap(
> + struct xfs_scrub_context *sc,
> + int which,
> + struct xfs_owner_info *oinfo,
> + xfs_filblks_t inode_blocks)
> +{
> + xfs_filblks_t blocks;
> + xfs_extlen_t inobt_blocks = 0;
> + xfs_extlen_t finobt_blocks = 0;
> + int error;
> +
> + if (!sc->sa.ino_cur || !sc->sa.rmap_cur)
> + return;
> +
> + /* Check that we saw as many inobt blocks as the rmap says. */
> + error = xfs_btree_count_blocks(sc->sa.ino_cur, &inobt_blocks);
> + if (error)
> + return;
Shouldn't a failure set some kind of corruption flag here rather
than silently failing?
> +
> + if (xfs_sb_version_hasfinobt(&sc->mp->m_sb)) {
> + if (!sc->sa.fino_cur)
> + return;
Put this check at the start with the other cursor checks.
.....
> @@ -355,10 +419,20 @@ xfs_scrub_iallocbt(
> {
> struct xfs_btree_cur *cur;
> struct xfs_owner_info oinfo;
> + xfs_filblks_t inode_blocks = 0;
> + int error;
>
> xfs_rmap_ag_owner(&oinfo, XFS_RMAP_OWN_INOBT);
> cur = which == XFS_BTNUM_INO ? sc->sa.ino_cur : sc->sa.fino_cur;
> - return xfs_scrub_btree(sc, cur, xfs_scrub_iallocbt_rec, &oinfo, NULL);
> + error = xfs_scrub_btree(sc, cur, xfs_scrub_iallocbt_rec, &oinfo,
> + &inode_blocks);
> + if (error)
> + return error;
> +
> + if (which == XFS_BTNUM_INO)
> + xfs_scrub_iallocbt_xref_rmap(sc, which, &oinfo, inode_blocks);
Why do we only xref the inobt?
.....
> diff --git a/fs/xfs/scrub/rmap.c b/fs/xfs/scrub/rmap.c
> index 02704b0..8421c6e 100644
> --- a/fs/xfs/scrub/rmap.c
> +++ b/fs/xfs/scrub/rmap.c
> @@ -157,3 +157,66 @@ xfs_scrub_rmapbt(
> return xfs_scrub_btree(sc, sc->sa.rmap_cur, xfs_scrub_rmapbt_rec,
> &oinfo, NULL);
> }
> +
> +/* xref check that the extent is owned by a given owner */
> +static inline void
> +xfs_scrub_xref_check_owner(
> + struct xfs_scrub_context *sc,
> + xfs_agblock_t bno,
> + xfs_extlen_t len,
> + struct xfs_owner_info *oinfo,
> + bool fs_ok)
Not sure about this variable name. "record_should_exist"?
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
next prev parent reply other threads:[~2018-01-15 23:13 UTC|newest]
Thread overview: 94+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-23 0:42 [PATCH v11 00/21] xfs: online scrub xref support Darrick J. Wong
2017-12-23 0:42 ` [PATCH 01/21] xfs: ignore agfl read errors when not scrubbing agfl Darrick J. Wong
2018-01-05 1:12 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 02/21] xfs: catch a few more error codes when scrubbing secondary sb Darrick J. Wong
2018-01-05 1:17 ` Dave Chinner
2018-01-05 1:24 ` Darrick J. Wong
2018-01-05 2:10 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 03/21] xfs: xfs_scrub_bmap should use for_each_xfs_iext Darrick J. Wong
2018-01-05 1:17 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 04/21] xfs: always grab transaction when scrubbing inode Darrick J. Wong
2018-01-05 1:18 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 05/21] xfs: distinguish between corrupt inode and invalid inum in xfs_scrub_get_inode Darrick J. Wong
2018-01-05 1:23 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 06/21] xfs: add scrub cross-referencing helpers for the free space btrees Darrick J. Wong
2018-01-05 1:29 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 07/21] xfs: add scrub cross-referencing helpers for the inode btrees Darrick J. Wong
2018-01-05 1:36 ` Dave Chinner
2018-01-05 2:19 ` Darrick J. Wong
2018-01-05 21:51 ` [PATCH v2 " Darrick J. Wong
2018-01-16 23:05 ` Darrick J. Wong
2018-01-17 0:36 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 08/21] xfs: add scrub cross-referencing helpers for the rmap btrees Darrick J. Wong
2018-01-05 1:40 ` Dave Chinner
2018-01-05 2:49 ` Darrick J. Wong
2018-01-05 3:38 ` Dave Chinner
2018-01-05 21:53 ` [PATCH v2 " Darrick J. Wong
2018-01-06 20:46 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 09/21] xfs: add scrub cross-referencing helpers for the refcount btrees Darrick J. Wong
2018-01-05 1:41 ` Dave Chinner
2017-12-23 0:43 ` [PATCH 10/21] xfs: set up scrub cross-referencing helpers Darrick J. Wong
2018-01-05 2:08 ` Dave Chinner
2018-01-05 3:05 ` Darrick J. Wong
2018-01-05 21:54 ` [PATCH v2 " Darrick J. Wong
2018-01-16 23:06 ` Darrick J. Wong
2018-01-17 0:41 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 11/21] xfs: fix a few erroneous process_error calls in the scrubbers Darrick J. Wong
2018-01-05 2:11 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 12/21] xfs: check btree block ownership with bnobt/rmapbt when scrubbing btree Darrick J. Wong
2018-01-05 2:24 ` Dave Chinner
2018-01-05 2:53 ` Darrick J. Wong
2018-01-05 3:39 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 13/21] xfs: introduce scrubber cross-referencing stubs Darrick J. Wong
2018-01-08 23:36 ` Dave Chinner
2018-01-08 23:59 ` Darrick J. Wong
2018-01-09 21:00 ` [PATCH v2 " Darrick J. Wong
2018-01-10 0:12 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 14/21] xfs: cross-reference with the bnobt Darrick J. Wong
2018-01-08 23:51 ` Dave Chinner
2018-01-09 0:34 ` Darrick J. Wong
2018-01-09 0:57 ` Dave Chinner
2018-01-09 21:15 ` [PATCH v2 " Darrick J. Wong
2018-01-10 0:15 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 15/21] xfs: cross-reference bnobt records with cntbt Darrick J. Wong
2018-01-08 23:55 ` Dave Chinner
2018-01-09 0:37 ` Darrick J. Wong
2018-01-09 21:20 ` [PATCH v2 " Darrick J. Wong
2018-01-10 0:19 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 16/21] xfs: cross-reference inode btrees during scrub Darrick J. Wong
2018-01-09 21:22 ` [PATCH v2 " Darrick J. Wong
2018-01-15 22:17 ` Dave Chinner
2018-01-16 6:30 ` Darrick J. Wong
2018-01-16 23:23 ` [PATCH v3 " Darrick J. Wong
2018-01-17 0:44 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 17/21] xfs: cross-reference reverse-mapping btree Darrick J. Wong
2018-01-09 21:24 ` [PATCH v2 " Darrick J. Wong
2018-01-15 23:04 ` Dave Chinner [this message]
2018-01-16 6:38 ` Darrick J. Wong
2018-01-16 23:25 ` [PATCH v3 " Darrick J. Wong
2018-01-17 0:52 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 18/21] xfs: cross-reference the rmapbt data with the refcountbt Darrick J. Wong
2018-01-09 21:25 ` [PATCH v2 " Darrick J. Wong
2018-01-15 23:49 ` Dave Chinner
2018-01-16 6:49 ` Darrick J. Wong
2018-01-16 19:47 ` Darrick J. Wong
2018-01-16 23:26 ` [PATCH v3 " Darrick J. Wong
2018-01-17 1:00 ` Dave Chinner
2018-01-17 1:11 ` Darrick J. Wong
2017-12-23 0:44 ` [PATCH 19/21] xfs: cross-reference refcount btree during scrub Darrick J. Wong
2018-01-09 21:25 ` [PATCH v2 " Darrick J. Wong
2018-01-16 2:44 ` Dave Chinner
2018-01-16 6:52 ` Darrick J. Wong
2018-01-16 20:26 ` Darrick J. Wong
2018-01-16 23:27 ` [PATCH v3 " Darrick J. Wong
2018-01-17 1:02 ` Dave Chinner
2017-12-23 0:44 ` [PATCH 20/21] xfs: cross-reference the realtime bitmap Darrick J. Wong
2018-01-09 21:26 ` [PATCH v2 " Darrick J. Wong
2018-01-16 2:57 ` Dave Chinner
2018-01-16 6:55 ` Darrick J. Wong
2018-01-16 23:27 ` [PATCH v3 " Darrick J. Wong
2018-01-17 1:03 ` Dave Chinner
2017-12-23 0:45 ` [PATCH 21/21] xfs: cross-reference the block mappings when possible Darrick J. Wong
2018-01-09 21:26 ` [PATCH v2 " Darrick J. Wong
2018-01-16 2:58 ` Dave Chinner
2018-01-16 6:55 ` Darrick J. Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180115230417.GC16421@dastard \
--to=david@fromorbit.com \
--cc=darrick.wong@oracle.com \
--cc=linux-xfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).