From: Darrick J. Wong <djwong@xxxxxxxxxx> Check our work to make sure we found all the parent pointers that the original file had. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- fs/xfs/scrub/parent_repair.c | 52 ++++++++++++++++++++++++++++++++++++++++-- fs/xfs/scrub/trace.h | 1 + 2 files changed, 50 insertions(+), 3 deletions(-) diff --git a/fs/xfs/scrub/parent_repair.c b/fs/xfs/scrub/parent_repair.c index 4aec32081c6d..56b47bf2807b 100644 --- a/fs/xfs/scrub/parent_repair.c +++ b/fs/xfs/scrub/parent_repair.c @@ -127,6 +127,9 @@ struct xrep_pptrs { /* Parent pointer names. */ struct xfblob *pptr_names; + + /* Buffer for validation. */ + unsigned char namebuf[MAXNAMELEN]; }; /* Tear down all the incore stuff we created. */ @@ -490,7 +493,10 @@ xrep_pptr_scan_dirtree( return 0; } -/* Dump a parent pointer from the temporary file. */ +/* + * Dump a parent pointer from the temporary file and check it against the file + * we're rebuilding. We are not committing any of this. + */ STATIC int xrep_pptr_dump_tempptr( struct xfs_scrub *sc, @@ -504,13 +510,45 @@ xrep_pptr_dump_tempptr( { struct xrep_pptrs *rp = priv; const struct xfs_parent_name_rec *rec = (const void *)name; + struct xfs_inode *other_ip; + int pptr_namelen; if (!(attr_flags & XFS_ATTR_PARENT)) return 0; + if (ip == sc->ip) + other_ip = sc->tempip; + else if (ip == sc->tempip) + other_ip = sc->ip; + else + return -EFSCORRUPTED; + xfs_parent_irec_from_disk(&rp->pptr, rec, value, valuelen); trace_xrep_pptr_dumpname(sc->tempip, &rp->pptr); + + pptr_namelen = xfs_parent_lookup(sc->tp, other_ip, &rp->pptr, + rp->namebuf, MAXNAMELEN, &rp->pptr_scratch); + if (pptr_namelen == -ENOATTR) { + trace_xrep_pptr_checkname(other_ip, &rp->pptr); + ASSERT(pptr_namelen != -ENOATTR); + return -EFSCORRUPTED; + } + if (pptr_namelen < 0) + return pptr_namelen; + + if (pptr_namelen != rp->pptr.p_namelen) { + trace_xrep_pptr_checkname(other_ip, &rp->pptr); + ASSERT(pptr_namelen == rp->pptr.p_namelen); + return -EFSCORRUPTED; + } + + if (memcmp(rp->namebuf, rp->pptr.p_name, rp->pptr.p_namelen)) { + trace_xrep_pptr_checkname(other_ip, &rp->pptr); + ASSERT(0); + return -EFSCORRUPTED; + } + return 0; } @@ -566,8 +604,16 @@ xrep_pptr_rebuild_tree( trace_xrep_pptr_rebuild_tree(sc->ip, 0); - xrep_tempfile_ilock(sc); - return xchk_xattr_walk(sc, sc->tempip, xrep_pptr_dump_tempptr, rp); + xchk_ilock(sc, XFS_ILOCK_EXCL); + error = xrep_tempfile_ilock_polled(sc); + if (error) + return error; + + error = xchk_xattr_walk(sc, sc->tempip, xrep_pptr_dump_tempptr, rp); + if (error) + return error; + + return xchk_xattr_walk(sc, sc->ip, xrep_pptr_dump_tempptr, rp); } /* diff --git a/fs/xfs/scrub/trace.h b/fs/xfs/scrub/trace.h index 283a1cedf368..e536d070f9c7 100644 --- a/fs/xfs/scrub/trace.h +++ b/fs/xfs/scrub/trace.h @@ -1356,6 +1356,7 @@ DEFINE_EVENT(xrep_pptr_class, name, \ DEFINE_XREP_PPTR_CLASS(xrep_pptr_createname); DEFINE_XREP_PPTR_CLASS(xrep_pptr_removename); DEFINE_XREP_PPTR_CLASS(xrep_pptr_dumpname); +DEFINE_XREP_PPTR_CLASS(xrep_pptr_checkname); DECLARE_EVENT_CLASS(xrep_pptr_scan_class, TP_PROTO(struct xfs_inode *ip, const struct xfs_inode *dp,