xfs
[Top] [All Lists]

[PATCH 05/15] xfs_db: dump reflink btree data

To: david@xxxxxxxxxxxxx, darrick.wong@xxxxxxxxxx
Subject: [PATCH 05/15] xfs_db: dump reflink btree data
From: "Darrick J. Wong" <darrick.wong@xxxxxxxxxx>
Date: Mon, 29 Jun 2015 20:26:11 -0700
Cc: xfs@xxxxxxxxxxx
Delivered-to: xfs@xxxxxxxxxxx
In-reply-to: <20150630032538.572.20293.stgit@xxxxxxxxxxxxxxxx>
References: <20150630032538.572.20293.stgit@xxxxxxxxxxxxxxxx>
User-agent: StGit/0.17.1-dirty
Add the ability to walk and dump the reflink btree in xfs_db.

Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx>
---
 db/agf.c          |   10 ++++++++--
 db/btblock.c      |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 db/btblock.h      |    5 +++++
 db/field.c        |    9 +++++++++
 db/field.h        |    4 ++++
 db/sb.c           |    2 ++
 db/type.c         |    3 +++
 db/type.h         |    2 +-
 man/man8/xfs_db.8 |   45 ++++++++++++++++++++++++++++++++++++++++++++-
 9 files changed, 126 insertions(+), 4 deletions(-)


diff --git a/db/agf.c b/db/agf.c
index f0121ab..0eddcac 100644
--- a/db/agf.c
+++ b/db/agf.c
@@ -47,7 +47,7 @@ const field_t agf_flds[] = {
        { "versionnum", FLDT_UINT32D, OI(OFF(versionnum)), C1, 0, TYP_NONE },
        { "seqno", FLDT_AGNUMBER, OI(OFF(seqno)), C1, 0, TYP_NONE },
        { "length", FLDT_AGBLOCK, OI(OFF(length)), C1, 0, TYP_NONE },
-       { "roots", FLDT_AGBLOCK, OI(OFF(roots)), CI(XFS_BTNUM_AGF),
+       { "roots", FLDT_AGBLOCK, OI(OFF(roots)), CI(XFS_BTNUM_AGF) + 1,
          FLD_ARRAY|FLD_SKIPALL, TYP_NONE },
        { "bnoroot", FLDT_AGBLOCK,
          OI(OFF(roots) + XFS_BTNUM_BNO * SZ(roots[XFS_BTNUM_BNO])), C1, 0,
@@ -58,7 +58,10 @@ const field_t        agf_flds[] = {
        { "rmaproot", FLDT_AGBLOCK,
          OI(OFF(roots) + XFS_BTNUM_RMAP * SZ(roots[XFS_BTNUM_RMAP])), C1, 0,
          TYP_RMAPBT },
-       { "levels", FLDT_UINT32D, OI(OFF(levels)), CI(XFS_BTNUM_AGF),
+       { "rlroot", FLDT_AGBLOCK,
+         OI(OFF(reflink_root)), C1, 0,
+         TYP_RLBT },
+       { "levels", FLDT_UINT32D, OI(OFF(levels)), CI(XFS_BTNUM_AGF) + 1,
          FLD_ARRAY|FLD_SKIPALL, TYP_NONE },
        { "bnolevel", FLDT_UINT32D,
          OI(OFF(levels) + XFS_BTNUM_BNO * SZ(levels[XFS_BTNUM_BNO])), C1, 0,
@@ -69,6 +72,9 @@ const field_t agf_flds[] = {
        { "rmaplevel", FLDT_UINT32D,
          OI(OFF(levels) + XFS_BTNUM_RMAP * SZ(levels[XFS_BTNUM_RMAP])), C1, 0,
          TYP_NONE },
+       { "rllevel", FLDT_UINT32D,
+         OI(OFF(reflink_level)), C1, 0,
+         TYP_NONE },
        { "flfirst", FLDT_UINT32D, OI(OFF(flfirst)), C1, 0, TYP_NONE },
        { "fllast", FLDT_UINT32D, OI(OFF(fllast)), C1, 0, TYP_NONE },
        { "flcount", FLDT_UINT32D, OI(OFF(flcount)), C1, 0, TYP_NONE },
diff --git a/db/btblock.c b/db/btblock.c
index 556dfaf..cfa2fd3 100644
--- a/db/btblock.c
+++ b/db/btblock.c
@@ -102,6 +102,12 @@ struct xfs_db_btree {
                sizeof(struct xfs_rmap_rec),
                sizeof(__be32),
        },
+       {       XFS_RLBT_CRC_MAGIC,
+               XFS_BTREE_SBLOCK_CRC_LEN,
+               sizeof(xfs_reflink_key_t),
+               sizeof(xfs_reflink_rec_t),
+               sizeof(__be32),
+       },
        {       0,
        },
 };
@@ -658,3 +664,47 @@ const field_t      rmapbt_rec_flds[] = {
        { NULL }
 };
 #undef ROFF
+
+/* reflink btree blocks */
+const field_t  rlbt_crc_hfld[] = {
+       { "", FLDT_RLBT_CRC, OI(0), C1, 0, TYP_NONE },
+       { NULL }
+};
+
+#define        OFF(f)  bitize(offsetof(struct xfs_btree_block, bb_ ## f))
+const field_t  rlbt_crc_flds[] = {
+       { "magic", FLDT_UINT32X, OI(OFF(magic)), C1, 0, TYP_NONE },
+       { "level", FLDT_UINT16D, OI(OFF(level)), C1, 0, TYP_NONE },
+       { "numrecs", FLDT_UINT16D, OI(OFF(numrecs)), C1, 0, TYP_NONE },
+       { "leftsib", FLDT_AGBLOCK, OI(OFF(u.s.bb_leftsib)), C1, 0, TYP_RLBT },
+       { "rightsib", FLDT_AGBLOCK, OI(OFF(u.s.bb_rightsib)), C1, 0, TYP_RLBT },
+       { "bno", FLDT_DFSBNO, OI(OFF(u.s.bb_blkno)), C1, 0, TYP_RLBT },
+       { "lsn", FLDT_UINT64X, OI(OFF(u.s.bb_lsn)), C1, 0, TYP_NONE },
+       { "uuid", FLDT_UUID, OI(OFF(u.s.bb_uuid)), C1, 0, TYP_NONE },
+       { "owner", FLDT_AGNUMBER, OI(OFF(u.s.bb_owner)), C1, 0, TYP_NONE },
+       { "crc", FLDT_CRC, OI(OFF(u.s.bb_crc)), C1, 0, TYP_NONE },
+       { "recs", FLDT_RLBTREC, btblock_rec_offset, btblock_rec_count,
+         FLD_ARRAY|FLD_ABASE1|FLD_COUNT|FLD_OFFSET, TYP_NONE },
+       { "keys", FLDT_RLBTKEY, btblock_key_offset, btblock_key_count,
+         FLD_ARRAY|FLD_ABASE1|FLD_COUNT|FLD_OFFSET, TYP_NONE },
+       { "ptrs", FLDT_RLBTPTR, btblock_ptr_offset, btblock_key_count,
+         FLD_ARRAY|FLD_ABASE1|FLD_COUNT|FLD_OFFSET, TYP_RLBT },
+       { NULL }
+};
+#undef OFF
+
+#define        KOFF(f) bitize(offsetof(xfs_reflink_key_t, rr_ ## f))
+const field_t  rlbt_key_flds[] = {
+       { "startblock", FLDT_AGBLOCK, OI(KOFF(startblock)), C1, 0, TYP_DATA },
+       { NULL }
+};
+#undef KOFF
+
+#define        ROFF(f) bitize(offsetof(xfs_reflink_rec_t, rr_ ## f))
+const field_t  rlbt_rec_flds[] = {
+       { "startblock", FLDT_AGBLOCK, OI(ROFF(startblock)), C1, 0, TYP_DATA },
+       { "blockcount", FLDT_EXTLEN, OI(ROFF(blockcount)), C1, 0, TYP_NONE },
+       { "refcount", FLDT_UINT32D, OI(ROFF(nlinks)), C1, 0, TYP_DATA },
+       { NULL }
+};
+#undef ROFF
diff --git a/db/btblock.h b/db/btblock.h
index 35299b4..9ada5e1 100644
--- a/db/btblock.h
+++ b/db/btblock.h
@@ -59,4 +59,9 @@ extern const struct field     rmapbt_crc_hfld[];
 extern const struct field      rmapbt_key_flds[];
 extern const struct field      rmapbt_rec_flds[];
 
+extern const struct field      rlbt_crc_flds[];
+extern const struct field      rlbt_crc_hfld[];
+extern const struct field      rlbt_key_flds[];
+extern const struct field      rlbt_rec_flds[];
+
 extern int     btblock_size(void *obj, int startoff, int idx);
diff --git a/db/field.c b/db/field.c
index d7ccf67..b2ed9de 100644
--- a/db/field.c
+++ b/db/field.c
@@ -173,6 +173,15 @@ const ftattr_t     ftattrtab[] = {
        { FLDT_RMAPBTREC, "rmapbtrec", fp_sarray, (char *)rmapbt_rec_flds,
          SI(bitsz(struct xfs_rmap_rec)), 0, NULL, rmapbt_rec_flds },
 
+       { FLDT_RLBT_CRC, "rlbt", NULL, (char *)rlbt_crc_flds, btblock_size,
+         FTARG_SIZE, NULL, rlbt_crc_flds },
+       { FLDT_RLBTKEY, "rlbtkey", fp_sarray, (char *)rlbt_key_flds,
+         SI(bitsz(xfs_reflink_key_t)), 0, NULL, rlbt_key_flds },
+       { FLDT_RLBTPTR, "rlbtptr", fp_num, "%u", SI(bitsz(xfs_reflink_ptr_t)),
+         0, fa_agblock, NULL },
+       { FLDT_RLBTREC, "rlbtrec", fp_sarray, (char *)rlbt_rec_flds,
+         SI(bitsz(xfs_reflink_rec_t)), 0, NULL, rlbt_rec_flds },
+
 /* CRC field */
        { FLDT_CRC, "crc", fp_crc, "%#x (%s)", SI(bitsz(__uint32_t)),
          0, NULL, NULL },
diff --git a/db/field.h b/db/field.h
index aa8cbc8..ac104c9 100644
--- a/db/field.h
+++ b/db/field.h
@@ -84,6 +84,10 @@ typedef enum fldt    {
        FLDT_RMAPBTKEY,
        FLDT_RMAPBTPTR,
        FLDT_RMAPBTREC,
+       FLDT_RLBT_CRC,
+       FLDT_RLBTKEY,
+       FLDT_RLBTPTR,
+       FLDT_RLBTREC,
 
        /* CRC field type */
        FLDT_CRC,
diff --git a/db/sb.c b/db/sb.c
index b6c0c4e..67c9d08 100644
--- a/db/sb.c
+++ b/db/sb.c
@@ -653,6 +653,8 @@ version_string(
                strcat(s, ",FINOBT");
        if (xfs_sb_version_hassparseinodes(sbp))
                strcat(s, ",SPARSE_INODES");
+       if (xfs_sb_version_hasreflink(sbp))
+               strcat(s, ",REFLINK");
        return s;
 }
 
diff --git a/db/type.c b/db/type.c
index 99a83e2..73789ef 100644
--- a/db/type.c
+++ b/db/type.c
@@ -59,6 +59,7 @@ static const typ_t    __typtab[] = {
        { TYP_BNOBT, "bnobt", handle_struct, bnobt_hfld, NULL },
        { TYP_CNTBT, "cntbt", handle_struct, cntbt_hfld, NULL },
        { TYP_RMAPBT, NULL },
+       { TYP_RLBT, NULL },
        { TYP_DATA, "data", handle_block, NULL, NULL },
        { TYP_DIR2, "dir2", handle_struct, dir2_hfld, NULL },
        { TYP_DQBLK, "dqblk", handle_struct, dqblk_hfld, NULL },
@@ -91,6 +92,8 @@ static const typ_t    __typtab_crc[] = {
                &xfs_allocbt_buf_ops },
        { TYP_RMAPBT, "rmapbt", handle_struct, rmapbt_crc_hfld, 
                &xfs_rmapbt_buf_ops },
+       { TYP_RLBT, "rlbt", handle_struct, rlbt_crc_hfld,
+               &xfs_reflinkbt_buf_ops },
        { TYP_DATA, "data", handle_block, NULL, NULL },
        { TYP_DIR2, "dir3", handle_struct, dir3_hfld,
                &xfs_dir3_db_buf_ops },
diff --git a/db/type.h b/db/type.h
index 1bef8e6..0b239cb 100644
--- a/db/type.h
+++ b/db/type.h
@@ -24,7 +24,7 @@ struct field;
 typedef enum typnm
 {
        TYP_AGF, TYP_AGFL, TYP_AGI, TYP_ATTR, TYP_BMAPBTA,
-       TYP_BMAPBTD, TYP_BNOBT, TYP_CNTBT, TYP_RMAPBT, TYP_DATA,
+       TYP_BMAPBTD, TYP_BNOBT, TYP_CNTBT, TYP_RMAPBT, TYP_RLBT, TYP_DATA,
        TYP_DIR2, TYP_DQBLK, TYP_INOBT, TYP_INODATA, TYP_INODE,
        TYP_LOG, TYP_RTBITMAP, TYP_RTSUMMARY, TYP_SB, TYP_SYMLINK,
        TYP_TEXT, TYP_FINOBT, TYP_NONE
diff --git a/man/man8/xfs_db.8 b/man/man8/xfs_db.8
index d527230..9a91ad4 100644
--- a/man/man8/xfs_db.8
+++ b/man/man8/xfs_db.8
@@ -660,7 +660,7 @@ If no argument is given, show the current data type.
 The possible data types are:
 .BR agf ", " agfl ", " agi ", " attr ", " bmapbta ", " bmapbtd ,
 .BR bnobt ", " cntbt ", " data ", " dir ", " dir2 ", " dqblk ,
-.BR inobt ", " inode ", " log ", " rtbitmap ", " rtsummary ,
+.BR inobt ", " inode ", " log ", " rlbt ", " rtbitmap ", " rtsummary ,
 .BR sb ", " symlink " and " text .
 See the TYPES section below for more information on these data types.
 .TP
@@ -1640,6 +1640,49 @@ use
 .BR xfs_logprint (8)
 instead.
 .TP
+.B rlbt
+There is one set of filesystem blocks forming the reference count Btree for
+each allocation group. The root block of this Btree is designated by the
+.B rlroot
+field in the corresponding AGF block.  The blocks are linked to sibling left
+and right blocks at each level, as well as by pointers from parent to child
+blocks.  Each block has the following fields:
+.RS 1.4i
+.PD 0
+.TP 1.2i
+.B magic
+RLBT block magic number, 0x524C4233 ('RLB3').
+.TP
+.B level
+level number of this block, 0 is a leaf.
+.TP
+.B numrecs
+number of data entries in the block.
+.TP
+.B leftsib
+left (logically lower) sibling block, 0 if none.
+.TP
+.B rightsib
+right (logically higher) sibling block, 0 if none.
+.TP
+.B recs
+[leaf blocks only] array of reference count records. Each record contains
+.B startblock ,
+.B blockcount ,
+and
+.BR nlinks .
+.TP
+.B keys
+[non-leaf blocks only] array of key records. These are the first value
+of each block in the level below this one. Each record contains
+.B startblock .
+.TP
+.B ptrs
+[non-leaf blocks only] array of child block pointers. Each pointer is a
+block number within the allocation group to the next level in the Btree.
+.PD
+.RE
+.TP
 .B rtbitmap
 If the filesystem has a realtime subvolume, then the
 .B rbmino

<Prev in Thread] Current Thread [Next in Thread>