mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 01:59:54 +00:00
f2fs-tools: rebuild the quota inode if it is corrupted
If the following process returns an error, the quota inode, not the quota file, is damaged. (fsck_chk_quota_node-->fsck_chk_node_blk-->sanity_check_nid) The fsck does not have a process to rebuild the quota inode. Because sanity_check_nid is not passed, fsck->nat_area_bitmap can not be cleared, and then the NAT of quota will be nullify during fix_nat_entries. During the next fsck check, the quota inode check fails because the address of the quota inode changes to 0. In addition, in fsck_chk_quota_files-->f2fs_filesize_update, data is written to address 0. Therefore, when the quota inode is corrupted, we need to rebuild it. Signed-off-by: Wang Xiaojun <wangxiaojun11@huawei.com> Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
9ee091e819
commit
1228009520
@ -1900,6 +1900,8 @@ int fsck_chk_quota_node(struct f2fs_sb_info *sbi)
|
||||
ASSERT_MSG("wrong quota inode, qtype [%d] ino [0x%x]",
|
||||
qtype, ino);
|
||||
qf_szchk_type[qtype] = QF_SZCHK_ERR;
|
||||
if (c.fix_on)
|
||||
f2fs_rebuild_qf_inode(sbi, qtype);
|
||||
}
|
||||
}
|
||||
cur_qtype = -1;
|
||||
|
@ -286,6 +286,7 @@ void f2fs_alloc_nid(struct f2fs_sb_info *, nid_t *);
|
||||
void set_data_blkaddr(struct dnode_of_data *);
|
||||
block_t new_node_block(struct f2fs_sb_info *,
|
||||
struct dnode_of_data *, unsigned int);
|
||||
int f2fs_rebuild_qf_inode(struct f2fs_sb_info *sbi, int qtype);
|
||||
|
||||
/* segment.c */
|
||||
struct quota_file;
|
||||
|
47
fsck/node.c
47
fsck/node.c
@ -40,6 +40,53 @@ void f2fs_release_nid(struct f2fs_sb_info *sbi, nid_t nid)
|
||||
f2fs_clear_bit(nid, nm_i->nid_bitmap);
|
||||
}
|
||||
|
||||
int f2fs_rebuild_qf_inode(struct f2fs_sb_info *sbi, int qtype)
|
||||
{
|
||||
struct f2fs_node *raw_node = NULL;
|
||||
struct f2fs_super_block *sb = F2FS_RAW_SUPER(sbi);
|
||||
struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
|
||||
struct f2fs_summary sum;
|
||||
struct node_info ni;
|
||||
nid_t ino = QUOTA_INO(sb, qtype);
|
||||
block_t blkaddr = NULL_ADDR;
|
||||
__u64 cp_ver = cur_cp_version(ckpt);
|
||||
int ret = 0;
|
||||
|
||||
raw_node = calloc(F2FS_BLKSIZE, 1);
|
||||
if (raw_node == NULL) {
|
||||
MSG(1, "\tError: Calloc Failed for raw_node!!!\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
f2fs_init_qf_inode(sb, raw_node, qtype, time(NULL));
|
||||
|
||||
if (is_set_ckpt_flags(ckpt, CP_CRC_RECOVERY_FLAG))
|
||||
cp_ver |= (cur_cp_crc(ckpt) << 32);
|
||||
raw_node->footer.cp_ver = cpu_to_le64(cp_ver);
|
||||
|
||||
get_node_info(sbi, ino, &ni);
|
||||
set_summary(&sum, ino, 0, ni.version);
|
||||
ret = reserve_new_block(sbi, &blkaddr, &sum, CURSEG_HOT_NODE, 1);
|
||||
if (ret) {
|
||||
MSG(1, "\tError: Failed to reserve new block!\n");
|
||||
goto err_out;
|
||||
}
|
||||
|
||||
ret = write_inode(raw_node, blkaddr);
|
||||
if (ret < 0) {
|
||||
MSG(1, "\tError: While rebuilding the quota inode to disk!\n");
|
||||
goto err_out;
|
||||
}
|
||||
update_nat_blkaddr(sbi, ino, ino, blkaddr);
|
||||
|
||||
f2fs_clear_bit(ino, F2FS_FSCK(sbi)->nat_area_bitmap);
|
||||
f2fs_set_bit(ino, NM_I(sbi)->nid_bitmap);
|
||||
DBG(1, "Rebuild quota inode ([%3d] ino [0x%x]) at offset:0x%x\n",
|
||||
qtype, ino, blkaddr);
|
||||
err_out:
|
||||
free(raw_node);
|
||||
return ret;
|
||||
}
|
||||
|
||||
void set_data_blkaddr(struct dnode_of_data *dn)
|
||||
{
|
||||
__le32 *addr_array;
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
@ -1556,6 +1557,45 @@ static inline void show_version(const char *prog)
|
||||
#endif
|
||||
}
|
||||
|
||||
static inline void f2fs_init_qf_inode(struct f2fs_super_block *sb,
|
||||
struct f2fs_node *raw_node, int qtype, time_t mtime)
|
||||
{
|
||||
raw_node->footer.nid = sb->qf_ino[qtype];
|
||||
raw_node->footer.ino = sb->qf_ino[qtype];
|
||||
raw_node->footer.cp_ver = cpu_to_le64(1);
|
||||
raw_node->i.i_mode = cpu_to_le16(0x8180);
|
||||
raw_node->i.i_links = cpu_to_le32(1);
|
||||
raw_node->i.i_uid = cpu_to_le32(c.root_uid);
|
||||
raw_node->i.i_gid = cpu_to_le32(c.root_gid);
|
||||
|
||||
raw_node->i.i_size = cpu_to_le64(1024 * 6); /* Hard coded */
|
||||
raw_node->i.i_blocks = cpu_to_le64(1);
|
||||
|
||||
raw_node->i.i_atime = cpu_to_le32(mtime);
|
||||
raw_node->i.i_atime_nsec = 0;
|
||||
raw_node->i.i_ctime = cpu_to_le32(mtime);
|
||||
raw_node->i.i_ctime_nsec = 0;
|
||||
raw_node->i.i_mtime = cpu_to_le32(mtime);
|
||||
raw_node->i.i_mtime_nsec = 0;
|
||||
raw_node->i.i_generation = 0;
|
||||
raw_node->i.i_xattr_nid = 0;
|
||||
raw_node->i.i_flags = FS_IMMUTABLE_FL;
|
||||
raw_node->i.i_current_depth = cpu_to_le32(0);
|
||||
raw_node->i.i_dir_level = DEF_DIR_LEVEL;
|
||||
|
||||
if (c.feature & cpu_to_le32(F2FS_FEATURE_EXTRA_ATTR)) {
|
||||
raw_node->i.i_inline = F2FS_EXTRA_ATTR;
|
||||
raw_node->i.i_extra_isize = cpu_to_le16(calc_extra_isize());
|
||||
}
|
||||
|
||||
if (c.feature & cpu_to_le32(F2FS_FEATURE_PRJQUOTA))
|
||||
raw_node->i.i_projid = cpu_to_le32(F2FS_DEF_PROJID);
|
||||
|
||||
raw_node->i.i_ext.fofs = 0;
|
||||
raw_node->i.i_ext.blk_addr = 0;
|
||||
raw_node->i.i_ext.len = 0;
|
||||
}
|
||||
|
||||
struct feature {
|
||||
char *name;
|
||||
u32 mask;
|
||||
|
@ -1373,43 +1373,14 @@ static int f2fs_write_qf_inode(int qtype)
|
||||
MSG(1, "\tError: Calloc Failed for raw_node!!!\n");
|
||||
return -1;
|
||||
}
|
||||
f2fs_init_qf_inode(sb, raw_node, qtype, mkfs_time);
|
||||
|
||||
raw_node->footer.nid = sb->qf_ino[qtype];
|
||||
raw_node->footer.ino = sb->qf_ino[qtype];
|
||||
raw_node->footer.cp_ver = cpu_to_le64(1);
|
||||
raw_node->footer.next_blkaddr = cpu_to_le32(
|
||||
get_sb(main_blkaddr) +
|
||||
c.cur_seg[CURSEG_HOT_NODE] *
|
||||
c.blks_per_seg + 1 + qtype + 1);
|
||||
|
||||
raw_node->i.i_mode = cpu_to_le16(0x8180);
|
||||
raw_node->i.i_links = cpu_to_le32(1);
|
||||
raw_node->i.i_uid = cpu_to_le32(c.root_uid);
|
||||
raw_node->i.i_gid = cpu_to_le32(c.root_gid);
|
||||
|
||||
raw_node->i.i_size = cpu_to_le64(1024 * 6); /* Hard coded */
|
||||
raw_node->i.i_blocks = cpu_to_le64(1 + QUOTA_DATA(qtype));
|
||||
|
||||
raw_node->i.i_atime = cpu_to_le32(mkfs_time);
|
||||
raw_node->i.i_atime_nsec = 0;
|
||||
raw_node->i.i_ctime = cpu_to_le32(mkfs_time);
|
||||
raw_node->i.i_ctime_nsec = 0;
|
||||
raw_node->i.i_mtime = cpu_to_le32(mkfs_time);
|
||||
raw_node->i.i_mtime_nsec = 0;
|
||||
raw_node->i.i_generation = 0;
|
||||
raw_node->i.i_xattr_nid = 0;
|
||||
raw_node->i.i_flags = FS_IMMUTABLE_FL;
|
||||
raw_node->i.i_current_depth = cpu_to_le32(0);
|
||||
raw_node->i.i_dir_level = DEF_DIR_LEVEL;
|
||||
|
||||
if (c.feature & cpu_to_le32(F2FS_FEATURE_EXTRA_ATTR)) {
|
||||
raw_node->i.i_inline = F2FS_EXTRA_ATTR;
|
||||
raw_node->i.i_extra_isize = cpu_to_le16(calc_extra_isize());
|
||||
}
|
||||
|
||||
if (c.feature & cpu_to_le32(F2FS_FEATURE_PRJQUOTA))
|
||||
raw_node->i.i_projid = cpu_to_le32(F2FS_DEF_PROJID);
|
||||
|
||||
data_blk_nor = get_sb(main_blkaddr) +
|
||||
c.cur_seg[CURSEG_HOT_DATA] * c.blks_per_seg + 1;
|
||||
|
||||
@ -1434,9 +1405,6 @@ static int f2fs_write_qf_inode(int qtype)
|
||||
for (i = 0; i < QUOTA_DATA(qtype); i++)
|
||||
raw_node->i.i_addr[get_extra_isize(raw_node) + i] =
|
||||
cpu_to_le32(data_blk_nor + i);
|
||||
raw_node->i.i_ext.fofs = 0;
|
||||
raw_node->i.i_ext.blk_addr = 0;
|
||||
raw_node->i.i_ext.len = 0;
|
||||
|
||||
main_area_node_seg_blk_offset = get_sb(main_blkaddr);
|
||||
main_area_node_seg_blk_offset += c.cur_seg[CURSEG_HOT_NODE] *
|
||||
|
Loading…
Reference in New Issue
Block a user