From: Dave Chinner Date: Tue, 8 Jul 2014 00:36:39 +0000 (+1000) Subject: repair: fix quota inode handling in secondary superblocks X-Git-Tag: v3.2.1~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d085fb486f8b33304f2fdf704411313ffc8bcc0c;p=thirdparty%2Fxfsprogs-dev.git repair: fix quota inode handling in secondary superblocks Changes to support separate project quota inodes changed the way quota inodes got written to the superblock. The current code is tailored for the needs to the kernel, where the inodes should only be written if certain falgs are set saying a quota type is enabled. Unfortunately, when recovering a corrupt secondary superblock, we need to unconditionally write the quota inode fields after we unconditionally zero the quota flags field. The result of this bug is that the bad quota inode fields cannot be cleared and hence always are reported by bad by repair in subsequent runs. Fix this by directly clearing the quota inodes in the superblock buffers so that we do need to set special flags to get xfs_sb_to_disk() to do the right thing as setting flags leave bad flag values in the superblock instead of bad inode numbers.... Also, when clearing the inode numbers, write them as NULLFSINO rather than 0 as this is what the kernel will write them as if quota is turned off. Signed-off-by: Dave Chinner Reviewed-by: Christoph Hellwig Signed-off-by: Dave Chinner --- diff --git a/include/libxfs.h b/include/libxfs.h index 7203d7993..45a924fc9 100644 --- a/include/libxfs.h +++ b/include/libxfs.h @@ -759,6 +759,7 @@ bool xfs_dinode_verify(struct xfs_mount *mp, xfs_ino_t ino, /* xfs_sb.h */ #define libxfs_mod_sb xfs_mod_sb #define libxfs_sb_from_disk xfs_sb_from_disk +#define libxfs_sb_quota_from_disk xfs_sb_quota_from_disk #define libxfs_sb_to_disk xfs_sb_to_disk /* xfs_symlink.h */ diff --git a/libxfs/rdwr.c b/libxfs/rdwr.c index 9743d04a2..0294c98dd 100644 --- a/libxfs/rdwr.c +++ b/libxfs/rdwr.c @@ -944,10 +944,10 @@ libxfs_writebufr(xfs_buf_t *bp) } #ifdef IO_DEBUG - printf("%lx: %s: wrote %u bytes, blkno=%llu(%llu), %p\n", + printf("%lx: %s: wrote %u bytes, blkno=%llu(%llu), %p, error %d\n", pthread_self(), __FUNCTION__, bp->b_bcount, (long long)LIBXFS_BBTOOFF64(bp->b_bn), - (long long)bp->b_bn, bp); + (long long)bp->b_bn, bp, error); #endif if (!error) { bp->b_flags |= LIBXFS_B_UPTODATE; diff --git a/repair/agheader.c b/repair/agheader.c index fc5dac93e..416dbd833 100644 --- a/repair/agheader.c +++ b/repair/agheader.c @@ -245,13 +245,17 @@ compare_sb(xfs_mount_t *mp, xfs_sb_t *sb) * superblocks, not just the secondary superblocks. */ static int -secondary_sb_wack(xfs_mount_t *mp, xfs_buf_t *sbuf, xfs_sb_t *sb, - xfs_agnumber_t i) +secondary_sb_wack( + struct xfs_mount *mp, + struct xfs_buf *sbuf, + struct xfs_sb *sb, + xfs_agnumber_t i) { - int do_bzero; - int size; - char *ip; - int rval; + struct xfs_dsb *dsb = XFS_BUF_TO_SBP(sbuf); + int do_bzero = 0; + int size; + char *ip; + int rval = 0;; rval = do_bzero = 0; @@ -334,12 +338,18 @@ secondary_sb_wack(xfs_mount_t *mp, xfs_buf_t *sbuf, xfs_sb_t *sb, } /* - * quota inodes and flags in secondary superblocks - * are never set by mkfs. However, they could be set - * in a secondary if a fs with quotas was growfs'ed since - * growfs copies the new primary into the secondaries. + * quota inodes and flags in secondary superblocks are never set by + * mkfs. However, they could be set in a secondary if a fs with quotas + * was growfs'ed since growfs copies the new primary into the + * secondaries. + * + * Also, the in-core inode flags now have different meaning to the + * on-disk flags, and so libxfs_sb_to_disk cannot directly write the + * sb_gquotino/sb_pquotino fields without specific sb_qflags being set. + * Hence we need to zero those fields directly in the sb buffer here. */ - if (sb->sb_inprogress == 1 && sb->sb_uquotino) { + + if (sb->sb_inprogress == 1 && sb->sb_uquotino != NULLFSINO) { if (!no_modify) sb->sb_uquotino = 0; if (sb->sb_versionnum & XR_PART_SECSB_VNMASK || !do_bzero) { @@ -352,9 +362,11 @@ secondary_sb_wack(xfs_mount_t *mp, xfs_buf_t *sbuf, xfs_sb_t *sb, rval |= XR_AG_SB_SEC; } - if (sb->sb_inprogress == 1 && sb->sb_gquotino) { - if (!no_modify) + if (sb->sb_inprogress == 1 && sb->sb_gquotino != NULLFSINO) { + if (!no_modify) { sb->sb_gquotino = 0; + dsb->sb_gquotino = 0; + } if (sb->sb_versionnum & XR_PART_SECSB_VNMASK || !do_bzero) { rval |= XR_AG_SB; do_warn( @@ -365,9 +377,11 @@ secondary_sb_wack(xfs_mount_t *mp, xfs_buf_t *sbuf, xfs_sb_t *sb, rval |= XR_AG_SB_SEC; } - if (sb->sb_inprogress == 1 && sb->sb_pquotino) { - if (!no_modify) + if (sb->sb_inprogress == 1 && sb->sb_pquotino != NULLFSINO) { + if (!no_modify) { sb->sb_pquotino = 0; + dsb->sb_pquotino = 0; + } if (sb->sb_versionnum & XR_PART_SECSB_VNMASK || !do_bzero) { rval |= XR_AG_SB; do_warn( diff --git a/repair/sb.c b/repair/sb.c index 5e0b0f268..bc421cca7 100644 --- a/repair/sb.c +++ b/repair/sb.c @@ -138,6 +138,7 @@ find_secondary_sb(xfs_sb_t *rsb) for (i = 0; !done && i < bsize; i += BBSIZE) { c_bufsb = (char *)sb + i; libxfs_sb_from_disk(&bufsb, (xfs_dsb_t *)c_bufsb); + libxfs_sb_quota_from_disk(&bufsb); if (verify_sb(c_bufsb, &bufsb, 0) != XR_OK) continue; @@ -538,6 +539,7 @@ get_sb(xfs_sb_t *sbp, xfs_off_t off, int size, xfs_agnumber_t agno) do_error("%s\n", strerror(error)); } libxfs_sb_from_disk(sbp, buf); + libxfs_sb_quota_from_disk(sbp); rval = verify_sb((char *)buf, sbp, agno == 0); free(buf); diff --git a/repair/scan.c b/repair/scan.c index 1b64d8b84..f29ff8d6c 100644 --- a/repair/scan.c +++ b/repair/scan.c @@ -1496,6 +1496,7 @@ scan_ag( goto out_free_sb; } libxfs_sb_from_disk(sb, XFS_BUF_TO_SBP(sbbuf)); + libxfs_sb_quota_from_disk(sb); agfbuf = libxfs_readbuf(mp->m_dev, XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),