On 2021/7/19 16:52, Wang Xiaojun wrote:
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 <[email protected]>
---
v1->v2:
-Update footer.cp_ver based on CP_CRC_RECOVERY_FLAG.
-Add debug message in f2fs_rebuild_qf_inode.
-Add time_t parameter to the f2fs_init_qf_inode.
---
  fsck/fsck.c        |  2 ++
  fsck/fsck.h        |  1 +
  fsck/node.c        | 45 +++++++++++++++++++++++++++++++++++++++++++++
  include/f2fs_fs.h  | 40 ++++++++++++++++++++++++++++++++++++++++
  mkfs/f2fs_format.c | 34 +---------------------------------
  5 files changed, 89 insertions(+), 33 deletions(-)

diff --git a/fsck/fsck.c b/fsck/fsck.c
index 6ca85f0..af6d332 100644
--- a/fsck/fsck.c
+++ b/fsck/fsck.c
@@ -1899,6 +1899,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;
diff --git a/fsck/fsck.h b/fsck/fsck.h
index d79afef..67390f0 100644
--- a/fsck/fsck.h
+++ b/fsck/fsck.h
@@ -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;
diff --git a/fsck/node.c b/fsck/node.c
index c7988cb..e11f222 100644
--- a/fsck/node.c
+++ b/fsck/node.c
@@ -40,6 +40,51 @@ 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, "........");

Otherwise, it looks good to me, you can add below tag in next version:

Reivewed-by: Chao Yu <[email protected]>

Thanks,

+               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;
diff --git a/include/f2fs_fs.h b/include/f2fs_fs.h
index 45f7257..69a4bf8 100644
--- a/include/f2fs_fs.h
+++ b/include/f2fs_fs.h
@@ -20,6 +20,7 @@
  #include <stdio.h>
  #include <stdlib.h>
  #include <string.h>
+#include <time.h>
  #ifdef HAVE_CONFIG_H
  #include <config.h>
  #endif
@@ -1554,6 +1555,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;
diff --git a/mkfs/f2fs_format.c b/mkfs/f2fs_format.c
index 2132852..d6a92f8 100644
--- a/mkfs/f2fs_format.c
+++ b/mkfs/f2fs_format.c
@@ -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] *



_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to