]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
exfat: resolve memory leak from exfat_create_upcase_table()
authorDaniel Yang <danielyangkang@gmail.com>
Mon, 16 Sep 2024 23:05:06 +0000 (16:05 -0700)
committerNamjae Jeon <linkinjeon@kernel.org>
Mon, 23 Sep 2024 12:38:13 +0000 (21:38 +0900)
If exfat_load_upcase_table reaches end and returns -EINVAL,
allocated memory doesn't get freed and while
exfat_load_default_upcase_table allocates more memory, leading to a
memory leak.

Here's link to syzkaller crash report illustrating this issue:
https://syzkaller.appspot.com/text?tag=CrashReport&x=1406c201980000

Reported-by: syzbot+e1c69cadec0f1a078e3d@syzkaller.appspotmail.com
Fixes: a13d1a4de3b0 ("exfat: move freeing sbi, upcase table and dropping nls into rcu-delayed helper")
Cc: stable@vger.kernel.org
Signed-off-by: Daniel Yang <danielyangkang@gmail.com>
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
fs/exfat/nls.c

index afdf13c34ff526fb423f322d3503b571e2d153e8..1ac011088ce76eb4a4ea568d8d8460b5930fbb64 100644 (file)
@@ -779,8 +779,11 @@ int exfat_create_upcase_table(struct super_block *sb)
                                le32_to_cpu(ep->dentry.upcase.checksum));
 
                        brelse(bh);
-                       if (ret && ret != -EIO)
+                       if (ret && ret != -EIO) {
+                               /* free memory from exfat_load_upcase_table call */
+                               exfat_free_upcase_table(sbi);
                                goto load_default;
+                       }
 
                        /* load successfully */
                        return ret;