xfs: provide a centralized method for verifying inline fork data
Replace the current haphazard dir2 shortform verifier callsites with a centralized verifier function that can be called either with the default verifier functions or with a custom set. This helps us strengthen integrity checking while providing us with flexibility for repair tools. xfs_repair wants this to be able to supply its own verifier functions when trying to fix possibly corrupt metadata. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Dave Chinner <dchinner@redhat.com>
This commit is contained in:
@@ -473,6 +473,11 @@ xfs_iget_cache_miss(
|
||||
if (error)
|
||||
goto out_destroy;
|
||||
|
||||
if (!xfs_inode_verify_forks(ip)) {
|
||||
error = -EFSCORRUPTED;
|
||||
goto out_destroy;
|
||||
}
|
||||
|
||||
trace_xfs_iget_miss(ip);
|
||||
|
||||
if ((VFS_I(ip)->i_mode == 0) && !(flags & XFS_IGET_CREATE)) {
|
||||
|
||||
Reference in New Issue
Block a user