X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;ds=sidebyside;f=e2fsck%2Fpass4.c;h=8c2d2f1fca1234320fd28ffe65882a53aa168504;hb=b84eee32d54b20679b27cdff231cd72619e4cc44;hp=4b845f6893c8dae72d69038b585800a4c5ebc2e3;hpb=624e4a6466dba9889f5f80dc168f2bb7c2a3f5d0;p=tools%2Fe2fsprogs.git diff --git a/e2fsck/pass4.c b/e2fsck/pass4.c index 4b845f6..8c2d2f1 100644 --- a/e2fsck/pass4.c +++ b/e2fsck/pass4.c @@ -11,8 +11,10 @@ * Pass 4 frees the following data structures: * - A bitmap of which inodes are in bad blocks. (inode_bb_map) * - A bitmap of which inodes are imagic inodes. (inode_imagic_map) + * - Ref counts for ea_inodes. (ea_inode_refs) */ +#include "config.h" #include "e2fsck.h" #include "problem.h" #include @@ -25,23 +27,22 @@ * rest of the pass 4 tests. */ static int disconnect_inode(e2fsck_t ctx, ext2_ino_t i, - struct ext2_inode *inode) + struct ext2_inode_large *inode) { ext2_filsys fs = ctx->fs; struct problem_context pctx; __u32 eamagic = 0; int extra_size = 0; - if (EXT2_INODE_SIZE(fs->super) > EXT2_GOOD_OLD_INODE_SIZE) { - e2fsck_read_inode_full(ctx, i, inode,EXT2_INODE_SIZE(fs->super), - "pass4: disconnect_inode"); - extra_size = ((struct ext2_inode_large *)inode)->i_extra_isize; - } else { - e2fsck_read_inode(ctx, i, inode, "pass4: disconnect_inode"); - } + e2fsck_read_inode_full(ctx, i, EXT2_INODE(inode), + EXT2_INODE_SIZE(fs->super), + "pass4: disconnect_inode"); + if (EXT2_INODE_SIZE(fs->super) > EXT2_GOOD_OLD_INODE_SIZE) + extra_size = inode->i_extra_isize; + clear_problem_context(&pctx); pctx.ino = i; - pctx.inode = inode; + pctx.inode = EXT2_INODE(inode); if (EXT2_INODE_SIZE(fs->super) -EXT2_GOOD_OLD_INODE_SIZE -extra_size >0) eamagic = *(__u32 *)(((char *)inode) +EXT2_GOOD_OLD_INODE_SIZE + @@ -55,7 +56,7 @@ static int disconnect_inode(e2fsck_t ctx, ext2_ino_t i, if (!inode->i_blocks && eamagic != EXT2_EXT_ATTR_MAGIC && (LINUX_S_ISREG(inode->i_mode) || LINUX_S_ISDIR(inode->i_mode))) { if (fix_problem(ctx, PR_4_ZERO_LEN_INODE, &pctx)) { - e2fsck_clear_inode(ctx, i, inode, 0, + e2fsck_clear_inode(ctx, i, EXT2_INODE(inode), 0, "disconnect_inode"); /* * Fix up the bitmaps... @@ -86,43 +87,101 @@ static int disconnect_inode(e2fsck_t ctx, ext2_ino_t i, return 0; } +static void check_ea_inode(e2fsck_t ctx, ext2_ino_t i, + struct ext2_inode_large *inode, __u16 *link_counted) +{ + __u64 actual_refs = 0; + __u64 ref_count; + + /* + * This function is called when link_counted is zero. So this may not + * be an xattr inode at all. Return immediately if EA_INODE flag is not + * set. + */ + e2fsck_read_inode_full(ctx, i, EXT2_INODE(inode), + EXT2_INODE_SIZE(ctx->fs->super), + "pass4: check_ea_inode"); + if (!(inode->i_flags & EXT4_EA_INODE_FL)) + return; + + if (ctx->ea_inode_refs) + ea_refcount_fetch(ctx->ea_inode_refs, i, &actual_refs); + if (!actual_refs) + return; + + /* + * There are some attribute references, link_counted is now considered + * to be 1. + */ + *link_counted = 1; + + ref_count = ext2fs_get_ea_inode_ref(EXT2_INODE(inode)); + + /* Old Lustre-style xattr inodes do not have a stored refcount. + * However, their i_ctime and i_atime should be the same. + */ + if (ref_count != actual_refs && inode->i_ctime != inode->i_atime) { + struct problem_context pctx; + + clear_problem_context(&pctx); + pctx.ino = i; + pctx.num = ref_count; + pctx.num2 = actual_refs; + if (fix_problem(ctx, PR_4_EA_INODE_REF_COUNT, &pctx)) { + ext2fs_set_ea_inode_ref(EXT2_INODE(inode), actual_refs); + e2fsck_write_inode(ctx, i, EXT2_INODE(inode), "pass4"); + } + } +} void e2fsck_pass4(e2fsck_t ctx) { ext2_filsys fs = ctx->fs; ext2_ino_t i; - struct ext2_inode *inode; + struct ext2_inode_large *inode; + int inode_size = EXT2_INODE_SIZE(fs->super); #ifdef RESOURCE_TRACK struct resource_track rtrack; #endif struct problem_context pctx; __u16 link_count, link_counted; + int dir_nlink_fs; char *buf = 0; - int group, maxgroup; + dgrp_t group, maxgroup; init_resource_track(&rtrack, ctx->fs->io); #ifdef MTRACE mtrace_print("Pass 4"); #endif + /* + * Since pass4 is mostly CPU bound, start readahead of bitmaps + * ahead of pass 5 if we haven't already loaded them. + */ + if (ctx->readahead_kb && + (fs->block_map == NULL || fs->inode_map == NULL)) + e2fsck_readahead(fs, E2FSCK_READA_BBITMAP | + E2FSCK_READA_IBITMAP, + 0, fs->group_desc_count); clear_problem_context(&pctx); if (!(ctx->options & E2F_OPT_PREEN)) fix_problem(ctx, PR_4_PASS_HEADER, &pctx); + dir_nlink_fs = ext2fs_has_feature_dir_nlink(fs->super); + group = 0; maxgroup = fs->group_desc_count; if (ctx->progress) if ((ctx->progress)(ctx, 4, 0, maxgroup)) return; - inode = e2fsck_allocate_memory(ctx, EXT2_INODE_SIZE(fs->super), - "scratch inode"); + inode = e2fsck_allocate_memory(ctx, inode_size, "scratch inode"); /* Protect loop from wrap-around if s_inodes_count maxed */ for (i=1; i <= fs->super->s_inodes_count && i > 0; i++) { - int isdir = ext2fs_test_inode_bitmap2(ctx->inode_dir_map, i); + int isdir; if (ctx->flags & E2F_FLAG_SIGNAL_MASK) goto errout; @@ -132,7 +191,8 @@ void e2fsck_pass4(e2fsck_t ctx) if ((ctx->progress)(ctx, 4, group, maxgroup)) goto errout; } - if (i == EXT2_BAD_INO || + if (i == quota_type2inum(PRJQUOTA, ctx->fs->super) || + i == EXT2_BAD_INO || (i > EXT2_ROOT_INO && i < EXT2_FIRST_INODE(fs->super))) continue; if (!(ext2fs_test_inode_bitmap2(ctx->inode_used_map, i)) || @@ -143,6 +203,16 @@ void e2fsck_pass4(e2fsck_t ctx) continue; ext2fs_icount_fetch(ctx->inode_link_info, i, &link_count); ext2fs_icount_fetch(ctx->inode_count, i, &link_counted); + + if (link_counted == 0) { + /* + * link_counted is expected to be 0 for an ea_inode. + * check_ea_inode() will update link_counted if + * necessary. + */ + check_ea_inode(ctx, i, inode, &link_counted); + } + if (link_counted == 0) { if (!buf) buf = e2fsck_allocate_memory(ctx, @@ -156,12 +226,23 @@ void e2fsck_pass4(e2fsck_t ctx) ext2fs_icount_fetch(ctx->inode_count, i, &link_counted); } - if (isdir && (link_counted > EXT2_LINK_MAX)) + isdir = ext2fs_test_inode_bitmap2(ctx->inode_dir_map, i); + if (isdir && (link_counted > EXT2_LINK_MAX)) { + if (!dir_nlink_fs && + fix_problem(ctx, PR_4_DIR_NLINK_FEATURE, &pctx)) { + ext2fs_set_feature_dir_nlink(fs->super); + ext2fs_mark_super_dirty(fs); + dir_nlink_fs = 1; + } link_counted = 1; + } if (link_counted != link_count) { - e2fsck_read_inode(ctx, i, inode, "pass4"); + int fix_nlink = 0; + + e2fsck_read_inode_full(ctx, i, EXT2_INODE(inode), + inode_size, "pass4"); pctx.ino = i; - pctx.inode = inode; + pctx.inode = EXT2_INODE(inode); if ((link_count != inode->i_links_count) && !isdir && (inode->i_links_count <= EXT2_LINK_MAX)) { pctx.num = link_count; @@ -171,12 +252,24 @@ void e2fsck_pass4(e2fsck_t ctx) pctx.num = link_counted; /* i_link_count was previously exceeded, but no longer * is, fix this but don't consider it an error */ - if ((isdir && link_counted > 1 && - (inode->i_flags & EXT2_INDEX_FL) && - link_count == 1 && !(ctx->options & E2F_OPT_NO)) || - fix_problem(ctx, PR_4_BAD_REF_COUNT, &pctx)) { + if (isdir && link_counted > 1 && + (inode->i_flags & EXT2_INDEX_FL) && + link_count == 1) { + if ((ctx->options & E2F_OPT_READONLY) == 0) { + fix_nlink = + fix_problem(ctx, + PR_4_DIR_OVERFLOW_REF_COUNT, + &pctx); + } + } else { + fix_nlink = fix_problem(ctx, PR_4_BAD_REF_COUNT, + &pctx); + } + if (fix_nlink) { inode->i_links_count = link_counted; - e2fsck_write_inode(ctx, i, inode, "pass4"); + e2fsck_write_inode_full(ctx, i, + EXT2_INODE(inode), + inode_size, "pass4"); } } } @@ -184,6 +277,8 @@ void e2fsck_pass4(e2fsck_t ctx) ext2fs_free_icount(ctx->inode_count); ctx->inode_count = 0; ext2fs_free_inode_bitmap(ctx->inode_bb_map); ctx->inode_bb_map = 0; + ea_refcount_free(ctx->ea_inode_refs); + ctx->ea_inode_refs = 0; ext2fs_free_inode_bitmap(ctx->inode_imagic_map); ctx->inode_imagic_map = 0; errout: