Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B3F0DC433FE for ; Tue, 4 Jan 2022 12:09:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232894AbiADMJU (ORCPT ); Tue, 4 Jan 2022 07:09:20 -0500 Received: from szxga08-in.huawei.com ([45.249.212.255]:31067 "EHLO szxga08-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231607AbiADMJS (ORCPT ); Tue, 4 Jan 2022 07:09:18 -0500 Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.57]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4JSrt71Frmz1DKSR; Tue, 4 Jan 2022 20:05:51 +0800 (CST) Received: from dggpeml100016.china.huawei.com (7.185.36.216) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Tue, 4 Jan 2022 20:09:16 +0800 Received: from [10.174.176.102] (10.174.176.102) by dggpeml100016.china.huawei.com (7.185.36.216) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Tue, 4 Jan 2022 20:09:16 +0800 Message-ID: Date: Tue, 4 Jan 2022 20:09:16 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.3.2 To: Theodore Ts'o CC: , , , riteshh From: zhanchengbin Subject: [PATCH v3] setup_tdb : fix memory leak Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.174.176.102] X-ClientProxiedBy: dggpeml500023.china.huawei.com (7.185.36.114) To dggpeml100016.china.huawei.com (7.185.36.216) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org In setup_tdb(), need free tdb_dir and db->tdb_fn before return, otherwise it will cause memory leak. Signed-off-by: zhanchengbin Signed-off-by: Zhiqiang Liu Reviewed-by: Ritesh Harjani --- e2fsck/dirinfo.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/e2fsck/dirinfo.c b/e2fsck/dirinfo.c index 49d624c5..5b1088d4 100644 --- a/e2fsck/dirinfo.c +++ b/e2fsck/dirinfo.c @@ -49,7 +49,7 @@ static void setup_tdb(e2fsck_t ctx, ext2_ino_t num_dirs) ext2_ino_t threshold; errcode_t retval; mode_t save_umask; - char *tdb_dir, uuid[40]; + char *tdb_dir = NULL, uuid[40]; int fd, enable; profile_get_string(ctx->profile, "scratch_files", "directory", 0, 0, @@ -61,11 +61,11 @@ static void setup_tdb(e2fsck_t ctx, ext2_ino_t num_dirs) if (!enable || !tdb_dir || access(tdb_dir, W_OK) || (threshold && num_dirs <= threshold)) - return; + goto tdb_dir_error; retval = ext2fs_get_mem(strlen(tdb_dir) + 64, &db->tdb_fn); if (retval) - return; + goto tdb_dir_error; uuid_unparse(ctx->fs->super->s_uuid, uuid); sprintf(db->tdb_fn, "%s/%s-dirinfo-XXXXXX", tdb_dir, uuid); @@ -74,7 +74,7 @@ static void setup_tdb(e2fsck_t ctx, ext2_ino_t num_dirs) umask(save_umask); if (fd < 0) { db->tdb = NULL; - return; + goto tdb_fn_error; } if (num_dirs < 99991) @@ -83,6 +83,15 @@ static void setup_tdb(e2fsck_t ctx, ext2_ino_t num_dirs) db->tdb = tdb_open(db->tdb_fn, num_dirs, TDB_NOLOCK | TDB_NOSYNC, O_RDWR | O_CREAT | O_TRUNC, 0600); close(fd); + + return; + +tdb_fn_error: + ext2fs_free_mem(&db->tdb_fn); +tdb_dir_error: + if (tdb_dir) { + free(tdb_dir); + } } #endif -- 2.27.0