From: Darrick J. Wong Date: Mon, 29 Jul 2024 23:22:50 +0000 (-0700) Subject: xfs: check dirents have parent pointers X-Git-Tag: v6.10.0~24^2~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=055af989dece4d8c70759477c28d42d11cc61d1d;p=thirdparty%2Fxfsprogs-dev.git xfs: check dirents have parent pointers Source kernel commit: 61b3f0df5c235806d372aaf696ce9aee7746d18f If the fs has parent pointers, we need to check that each child dirent points to a file that has a parent pointer pointing back at us. Signed-off-by: Darrick J. Wong Reviewed-by: Christoph Hellwig --- diff --git a/libxfs/xfs_parent.c b/libxfs/xfs_parent.c index bb046519..8c29ba61 100644 --- a/libxfs/xfs_parent.c +++ b/libxfs/xfs_parent.c @@ -288,3 +288,25 @@ xfs_parent_from_attr( *parent_gen = be32_to_cpu(rec->p_gen); return 0; } + +/* + * Look up a parent pointer record (@parent_name -> @pptr) of @ip. + * + * Caller must hold at least ILOCK_SHARED. The scratchpad need not be + * initialized. + * + * Returns 0 if the pointer is found, -ENOATTR if there is no match, or a + * negative errno. + */ +int +xfs_parent_lookup( + struct xfs_trans *tp, + struct xfs_inode *ip, + const struct xfs_name *parent_name, + struct xfs_parent_rec *pptr, + struct xfs_da_args *scratch) +{ + memset(scratch, 0, sizeof(struct xfs_da_args)); + xfs_parent_da_args_init(scratch, tp, pptr, ip, ip->i_ino, parent_name); + return xfs_attr_get_ilocked(scratch); +} diff --git a/libxfs/xfs_parent.h b/libxfs/xfs_parent.h index d7ab09e7..97788582 100644 --- a/libxfs/xfs_parent.h +++ b/libxfs/xfs_parent.h @@ -96,4 +96,9 @@ int xfs_parent_from_attr(struct xfs_mount *mp, unsigned int attr_flags, const void *value, unsigned int valuelen, xfs_ino_t *parent_ino, uint32_t *parent_gen); +/* Repair functions */ +int xfs_parent_lookup(struct xfs_trans *tp, struct xfs_inode *ip, + const struct xfs_name *name, struct xfs_parent_rec *pptr, + struct xfs_da_args *scratch); + #endif /* __XFS_PARENT_H__ */