From: Dave Chinner <dchinner@xxxxxxxxxx> repair doesn't currently verifier errors in directory blocks - they cause repair to ignore blocks and hence fail because it can't read critical blocks from the directory. Fix this by having the directory buffer read code detect a verifier error and retry the read without the verifier if the verifier has detected an error. Then pass the verifer error with the successfully read buffer back to the caller, so the caller can handle the error appropriately. In most cases, this is simply marking the directory as needing a rebuild, so once the directory entries have been checked and repaired, it will rewrite all the directory buffers (including the clean ones) and in the process recalculate all the the CRC on the directory blocks. Hence pure CRC errors in directory blocks are now handled correctly by xfs_repair. Signed-off-by: Dave Chinner <dchinner@xxxxxxxxxx> --- libxfs/rdwr.c | 3 +- repair/phase6.c | 108 ++++++++++++++++++++++++++++++++++++++++++++++---------- 2 files changed, 90 insertions(+), 21 deletions(-) diff --git a/libxfs/rdwr.c b/libxfs/rdwr.c index a8f06aa..314c45d 100644 --- a/libxfs/rdwr.c +++ b/libxfs/rdwr.c @@ -724,9 +724,9 @@ libxfs_readbuf(struct xfs_buftarg *btp, xfs_daddr_t blkno, int len, int flags, * validated. Hence if we are supplied an ops function and the * buffer is marked as unchecked, we need to validate it now. */ + bp->b_error = 0; if ((bp->b_flags & (LIBXFS_B_UPTODATE|LIBXFS_B_DIRTY))) { if (ops && (bp->b_flags & LIBXFS_B_UNCHECKED)) { - bp->b_error = 0; bp->b_ops = ops; bp->b_ops->verify_read(bp); bp->b_flags &= ~LIBXFS_B_UNCHECKED; @@ -741,7 +741,6 @@ libxfs_readbuf(struct xfs_buftarg *btp, xfs_daddr_t blkno, int len, int flags, * it again, but it won't get called again and set to match the buffer * contents. *cough* xfs_da_node_buf_ops *cough*. */ - bp->b_error = 0; bp->b_ops = ops; error = libxfs_readbufr(btp, blkno, bp, len, flags); if (error) diff --git a/repair/phase6.c b/repair/phase6.c index 0c35e1c..6c5ff53 100644 --- a/repair/phase6.c +++ b/repair/phase6.c @@ -125,6 +125,43 @@ typedef struct freetab { #define DIR_HASH_CK_TOTAL 6 /* + * Need to handle CRC and validation errors specially here. If + * there is a validator error, re-read without the verifier so + * that we get a buffer we can check and repair. Re-attach the + * ops to the buffer after the read so that when it is rewritten + * the CRC is recalculated. + * + * Returns a positive error on failure, 0 for success, and negative + * error if a verifier error occurred and we reread the block without + * the verifier successfully. + */ +static int +dir_read_buf( + struct xfs_inode *ip, + xfs_dablk_t bno, + xfs_daddr_t mappedbno, + struct xfs_buf **bpp, + const struct xfs_buf_ops *ops) +{ + int error; + int error2; + + error = libxfs_da_read_buf(NULL, ip, bno, mappedbno, bpp, + XFS_DATA_FORK, ops); + + if (error != EFSBADCRC && error != EFSCORRUPTED) + return error; + + error2 = libxfs_da_read_buf(NULL, ip, bno, mappedbno, bpp, + XFS_DATA_FORK, NULL); + if (error2) + return error2; + + (*bpp)->b_ops = ops; + return -error; +} + +/* * Returns 0 if the name already exists (ie. a duplicate) */ static int @@ -1906,15 +1943,22 @@ longform_dir2_check_leaf( int seeval; struct xfs_dir2_leaf_entry *ents; struct xfs_dir3_icleaf_hdr leafhdr; + int error; + int fixit = 0; da_bno = mp->m_dirleafblk; - if (libxfs_da_read_buf(NULL, ip, da_bno, -1, &bp, XFS_DATA_FORK, - &xfs_dir3_leaf1_buf_ops)) { + error = dir_read_buf(ip, da_bno, -1, &bp, &xfs_dir3_leaf1_buf_ops); + if (error < 0) { + fixit++; + error = 0; + } + if (error) { do_error( - _("can't read block %u for directory inode %" PRIu64 "\n"), - da_bno, ip->i_ino); + _("can't read block %u for directory inode %" PRIu64 ", error %d\n"), + da_bno, ip->i_ino, error); /* NOTREACHED */ } + leaf = bp->b_addr; xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf); ents = xfs_dir3_leaf_ents_p(leaf); @@ -1951,7 +1995,7 @@ longform_dir2_check_leaf( return 1; } libxfs_putbuf(bp); - return 0; + return fixit; } /* @@ -1978,6 +2022,8 @@ longform_dir2_check_node( struct xfs_dir3_icleaf_hdr leafhdr; struct xfs_dir3_icfree_hdr freehdr; __be16 *bests; + int error; + int fixit = 0; for (da_bno = mp->m_dirleafblk, next_da_bno = 0; next_da_bno != NULLFILEOFF && da_bno < mp->m_dirfreeblk; @@ -1993,11 +2039,16 @@ longform_dir2_check_node( * a node block, then we'll skip it below based on a magic * number check. */ - if (libxfs_da_read_buf(NULL, ip, da_bno, -1, &bp, - XFS_DATA_FORK, &xfs_da3_node_buf_ops)) { + error = dir_read_buf(ip, da_bno, -1, &bp, + &xfs_da3_node_buf_ops); + if (error < 0) { + fixit++; + error = 0; + } + if (error) { do_warn( - _("can't read leaf block %u for directory inode %" PRIu64 "\n"), - da_bno, ip->i_ino); + _("can't read leaf block %u for directory inode %" PRIu64 ", error %d\n"), + da_bno, ip->i_ino, error); return 1; } leaf = bp->b_addr; @@ -2016,6 +2067,12 @@ longform_dir2_check_node( libxfs_putbuf(bp); return 1; } + + /* + * If there's a validator error, we need to ensure that we got + * the right ops on the buffer for when we write it back out. + */ + bp->b_ops = &xfs_dir3_leafn_buf_ops; if (leafhdr.count > xfs_dir3_max_leaf_ents(mp, leaf) || leafhdr.count < leafhdr.stale) { do_warn( @@ -2039,11 +2096,17 @@ longform_dir2_check_node( next_da_bno = da_bno + mp->m_dirblkfsbs - 1; if (bmap_next_offset(NULL, ip, &next_da_bno, XFS_DATA_FORK)) break; - if (libxfs_da_read_buf(NULL, ip, da_bno, -1, &bp, - XFS_DATA_FORK, &xfs_dir3_free_buf_ops)) { + + error = dir_read_buf(ip, da_bno, -1, &bp, + &xfs_dir3_free_buf_ops); + if (error < 0) { + fixit++; + error = 0; + } + if (error) { do_warn( - _("can't read freespace block %u for directory inode %" PRIu64 "\n"), - da_bno, ip->i_ino); + _("can't read freespace block %u for directory inode %" PRIu64 ", error %d\n"), + da_bno, ip->i_ino, error); return 1; } free = bp->b_addr; @@ -2093,7 +2156,7 @@ longform_dir2_check_node( return 1; } } - return 0; + return fixit; } /* @@ -2148,6 +2211,7 @@ longform_dir2_entry_check(xfs_mount_t *mp, next_da_bno != NULLFILEOFF && da_bno < mp->m_dirleafblk; da_bno = (xfs_dablk_t)next_da_bno) { const struct xfs_buf_ops *ops; + int error; next_da_bno = da_bno + mp->m_dirblkfsbs - 1; if (bmap_next_offset(NULL, ip, &next_da_bno, XFS_DATA_FORK)) @@ -2167,11 +2231,17 @@ longform_dir2_entry_check(xfs_mount_t *mp, ops = &xfs_dir3_block_buf_ops; else ops = &xfs_dir3_data_buf_ops; - if (libxfs_da_read_buf(NULL, ip, da_bno, -1, &bplist[db], - XFS_DATA_FORK, ops)) { + + error = dir_read_buf(ip, da_bno, -1, &bplist[db], ops); + if (error < 0) { + fixit++; + error = 0; + } + + if (error) { do_warn( - _("can't read data block %u for directory inode %" PRIu64 "\n"), - da_bno, ino); + _("can't read data block %u for directory inode %" PRIu64 " error %d\n"), + da_bno, ino, error); *num_illegal += 1; /* @@ -2189,7 +2259,7 @@ longform_dir2_entry_check(xfs_mount_t *mp, irec, ino_offset, &bplist[db], hashtab, &freetab, da_bno, isblock); } - fixit = (*num_illegal != 0) || dir2_is_badino(ino) || *need_dot; + fixit |= (*num_illegal != 0) || dir2_is_badino(ino) || *need_dot; if (!dotdot_update) { /* check btree and freespace */ -- 1.9.0 _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs