[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tencent_A84BB764577146D01363A3640961A3B06405@qq.com>
Date: Wed, 4 Sep 2024 10:28:33 +0800
From: Edward Adam Davis <eadavis@...com>
To: syzbot+3bfd2cc059ab93efcdb4@...kaller.appspotmail.com
Cc: almaz.alexandrovich@...agon-software.com,
linux-kernel@...r.kernel.org,
ntfs3@...ts.linux.dev,
syzkaller-bugs@...glegroups.com
Subject: Re: [syzbot] [ntfs3?] INFO: trying to register non-static key in mark_as_free_ex
Before call this path, sbi->used.bitmap.sb has not been initialized in ntfs_fill_super.
#syz test
diff --git a/fs/ntfs3/run.c b/fs/ntfs3/run.c
index cb8cf0161177..8970101147c7 100644
--- a/fs/ntfs3/run.c
+++ b/fs/ntfs3/run.c
@@ -1057,11 +1057,14 @@ int run_unpack_ex(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino,
bool ok;
struct wnd_bitmap *wnd;
+ if (!sbi->used.bitmap.sb)
+ return -EINVAL;
+
ret = run_unpack(run, sbi, ino, svcn, evcn, vcn, run_buf, run_buf_size);
if (ret <= 0)
return ret;
- if (!sbi->used.bitmap.sb || !run || run == RUN_DEALLOCATE)
+ if (!run || run == RUN_DEALLOCATE)
return ret;
if (ino == MFT_REC_BADCLUST)
Powered by blists - more mailing lists