From: Darrick J. Wong <djwong@xxxxxxxxxx> If parent pointers are enabled, compute the path to the file while we're doing the fsmap scan and report that, instead of walking the entire directory tree to print the paths of the (hopefully few) files that lost data. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- scrub/phase6.c | 62 +++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 50 insertions(+), 12 deletions(-) diff --git a/scrub/phase6.c b/scrub/phase6.c index c52d0f1a445..cdadcfb64b8 100644 --- a/scrub/phase6.c +++ b/scrub/phase6.c @@ -21,6 +21,7 @@ #include "read_verify.h" #include "spacemap.h" #include "vfs.h" +#include "libfrog/bulkstat.h" /* * Phase 6: Verify data file integrity. @@ -371,6 +372,11 @@ report_dirent_loss( return error; } +struct ioerr_filerange { + uint64_t physical; + uint64_t length; +}; + /* Use a fsmap to report metadata lost to a media error. */ static int report_ioerr_fsmap( @@ -379,16 +385,18 @@ report_ioerr_fsmap( void *arg) { const char *type; + struct xfs_bulkstat bs = { }; char buf[DESCR_BUFSZ]; - uint64_t err_physical = *(uint64_t *)arg; + struct ioerr_filerange *fr = arg; uint64_t err_off; + int ret; /* Don't care about unwritten extents. */ if (map->fmr_flags & FMR_OF_PREALLOC) return 0; - if (err_physical > map->fmr_physical) - err_off = err_physical - map->fmr_physical; + if (fr->physical > map->fmr_physical) + err_off = fr->physical - map->fmr_physical; else err_off = 0; @@ -411,23 +419,43 @@ report_ioerr_fsmap( } } + if (ctx->mnt.fsgeom.flags & XFS_FSOP_GEOM_FLAGS_PARENT) { + ret = -xfrog_bulkstat_single(&ctx->mnt, map->fmr_owner, 0, &bs); + if (ret) + str_liberror(ctx, ret, + _("bulkstat for media error report")); + } + /* Report extent maps */ if (map->fmr_flags & FMR_OF_EXTENT_MAP) { bool attr = (map->fmr_flags & FMR_OF_ATTR_FORK); scrub_render_ino_descr(ctx, buf, DESCR_BUFSZ, - map->fmr_owner, 0, " %s", + map->fmr_owner, bs.bs_gen, " %s", attr ? _("extended attribute") : _("file data")); str_corrupt(ctx, buf, _("media error in extent map")); } /* - * XXX: If we had a getparent() call we could report IO errors - * efficiently. Until then, we'll have to scan the dir tree - * to find the bad file's pathname. + * If directory parent pointers are available, use that to find the + * pathname to a file, and report that path as having lost its + * extended attributes, or the precise offset of the lost file data. */ + if (!(ctx->mnt.fsgeom.flags & XFS_FSOP_GEOM_FLAGS_PARENT)) + return 0; + scrub_render_ino_descr(ctx, buf, DESCR_BUFSZ, map->fmr_owner, + bs.bs_gen, NULL); + + if (map->fmr_flags & FMR_OF_ATTR_FORK) { + str_corrupt(ctx, buf, _("media error in extended attributes")); + return 0; + } + + str_unfixable_error(ctx, buf, + _("media error at data offset %llu length %llu."), + err_off, fr->length); return 0; } @@ -442,6 +470,10 @@ report_ioerr( void *arg) { struct fsmap keys[2]; + struct ioerr_filerange fr = { + .physical = start, + .length = length, + }; struct disk_ioerr_report *dioerr = arg; dev_t dev; @@ -457,7 +489,7 @@ report_ioerr( (keys + 1)->fmr_offset = ULLONG_MAX; (keys + 1)->fmr_flags = UINT_MAX; return -scrub_iterate_fsmap(dioerr->ctx, keys, report_ioerr_fsmap, - &start); + &fr); } /* Report all the media errors found on a disk. */ @@ -501,10 +533,16 @@ report_all_media_errors( return ret; } - /* Scan the directory tree to get file paths. */ - ret = scan_fs_tree(ctx, report_dir_loss, report_dirent_loss, vs); - if (ret) - return ret; + /* + * Scan the directory tree to get file paths if we didn't already use + * directory parent pointers to report the loss. + */ + if (!(ctx->mnt.fsgeom.flags & XFS_FSOP_GEOM_FLAGS_PARENT)) { + ret = scan_fs_tree(ctx, report_dir_loss, report_dirent_loss, + vs); + if (ret) + return ret; + } /* Scan for unlinked files. */ return scrub_scan_all_inodes(ctx, report_inode_loss, vs);