f2fs-tools: fix to check return value of {c,m}alloc()
authorChao Yu <yuchao0@huawei.com>
Mon, 26 Nov 2018 13:36:00 +0000 (21:36 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Tue, 27 Nov 2018 00:09:40 +0000 (16:09 -0800)
It needs to fix to handle error case of {c,m}alloc().

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fsck/dump.c
fsck/fsck.c
fsck/mount.c
lib/libf2fs.c
lib/libf2fs_io.c

index 8cf431c..d0e3355 100644 (file)
@@ -277,6 +277,8 @@ static void dump_node_blk(struct f2fs_sb_info *sbi, int ntype,
        get_node_info(sbi, nid, &ni);
 
        node_blk = calloc(BLOCK_SZ, 1);
+       ASSERT(node_blk);
+
        dev_read_block(node_blk, ni.blk_addr);
 
        for (i = 0; i < idx; i++, (*ofs)++) {
@@ -475,6 +477,8 @@ void dump_node(struct f2fs_sb_info *sbi, nid_t nid, int force)
        get_node_info(sbi, nid, &ni);
 
        node_blk = calloc(BLOCK_SZ, 1);
+       ASSERT(node_blk);
+
        dev_read_block(node_blk, ni.blk_addr);
 
        DBG(1, "Node ID               [0x%x]\n", nid);
index 366ba13..970d150 100644 (file)
@@ -1420,6 +1420,8 @@ static int __chk_dentries(struct f2fs_sb_info *sbi, struct child_info *child,
                        continue;
                }
                name = calloc(name_len + 1, 1);
+               ASSERT(name);
+
                memcpy(name, filenames[i], name_len);
                slots = (name_len + F2FS_SLOT_LEN - 1) / F2FS_SLOT_LEN;
 
index 861e5fb..d853fcf 100644 (file)
@@ -664,6 +664,8 @@ int validate_super_block(struct f2fs_sb_info *sbi, enum SB_ADDR sb_addr)
        char buf[F2FS_BLKSIZE];
 
        sbi->raw_super = malloc(sizeof(struct f2fs_super_block));
+       if (!sbi->raw_super)
+               return -ENOMEM;
 
        if (dev_read_block(buf, sb_addr))
                return -1;
@@ -779,6 +781,8 @@ void *validate_checkpoint(struct f2fs_sb_info *sbi, block_t cp_addr,
 
        /* Read the 1st cp block in this CP pack */
        cp_page_1 = malloc(PAGE_SIZE);
+       ASSERT(cp_page_1);
+
        if (dev_read_block(cp_page_1, cp_addr) < 0)
                goto invalid_cp1;
 
@@ -798,6 +802,8 @@ void *validate_checkpoint(struct f2fs_sb_info *sbi, block_t cp_addr,
 
        /* Read the 2nd cp block in this CP pack */
        cp_page_2 = malloc(PAGE_SIZE);
+       ASSERT(cp_page_2);
+
        cp_addr += get_cp(cp_pack_total_block_count) - 1;
 
        if (dev_read_block(cp_page_2, cp_addr) < 0)
@@ -1320,6 +1326,9 @@ int build_sit_info(struct f2fs_sb_info *sbi)
        src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
 
        dst_bitmap = malloc(bitmap_size);
+       if (!dst_bitmap)
+               return -ENOMEM;
+
        memcpy(dst_bitmap, src_bitmap, bitmap_size);
 
        sit_i->sit_base_addr = get_sb(sit_blkaddr);
@@ -1361,6 +1370,8 @@ static void read_compacted_summaries(struct f2fs_sb_info *sbi)
        start = start_sum_block(sbi);
 
        kaddr = (char *)malloc(PAGE_SIZE);
+       ASSERT(kaddr);
+
        ret = dev_read_block(kaddr, start++);
        ASSERT(ret >= 0);
 
@@ -1452,6 +1463,8 @@ static void read_normal_summaries(struct f2fs_sb_info *sbi, int type)
        }
 
        sum_blk = (struct f2fs_summary_block *)malloc(PAGE_SIZE);
+       ASSERT(sum_blk);
+
        ret = dev_read_block(sum_blk, blk_addr);
        ASSERT(ret >= 0);
 
index cc335db..a0079ad 100644 (file)
@@ -566,6 +566,8 @@ char *get_rootdev()
        }
 
        uevent = malloc(ret + 1);
+       ASSERT(uevent);
+
        uevent[ret] = '\0';
 
        ret = read(fd, uevent, ret);
@@ -709,6 +711,8 @@ int f2fs_dev_is_umounted(char *path)
         * the file system. In this case, we should not format.
         */
        st_buf = malloc(sizeof(struct stat));
+       ASSERT(st_buf);
+
        if (stat(path, st_buf) == 0 && S_ISBLK(st_buf->st_mode)) {
                int fd = open(path, O_RDONLY | O_EXCL);
 
index 47917ab..b40c3d2 100644 (file)
@@ -302,6 +302,10 @@ int f2fs_init_sparse_file(void)
        }
        blocks_count = c.device_size / F2FS_BLKSIZE;
        blocks = calloc(blocks_count, sizeof(char *));
+       if (!blocks) {
+               MSG(0, "\tError: Calloc Failed for blocks!!!\n");
+               return -1;
+       }
 
        return sparse_file_foreach_chunk(f2fs_sparse_file, true, false,
                                sparse_import_segment, NULL);