[SRU][J][PATCH 2/2] f2fs: fix race in concurrent f2fs_stop_gc_thread
Massimiliano Pellizzer
massimiliano.pellizzer at canonical.com
Mon Oct 27 21:19:55 UTC 2025
From: Long Li <leo.lilong at huawei.com>
In my test case, concurrent calls to f2fs shutdown report the following
stack trace:
Oops: general protection fault, probably for non-canonical address 0xc6cfff63bb5513fc: 0000 [#1] PREEMPT SMP PTI
CPU: 0 UID: 0 PID: 678 Comm: f2fs_rep_shutdo Not tainted 6.12.0-rc5-next-20241029-g6fb2fa9805c5-dirty #85
Call Trace:
<TASK>
? show_regs+0x8b/0xa0
? __die_body+0x26/0xa0
? die_addr+0x54/0x90
? exc_general_protection+0x24b/0x5c0
? asm_exc_general_protection+0x26/0x30
? kthread_stop+0x46/0x390
f2fs_stop_gc_thread+0x6c/0x110
f2fs_do_shutdown+0x309/0x3a0
f2fs_ioc_shutdown+0x150/0x1c0
__f2fs_ioctl+0xffd/0x2ac0
f2fs_ioctl+0x76/0xe0
vfs_ioctl+0x23/0x60
__x64_sys_ioctl+0xce/0xf0
x64_sys_call+0x2b1b/0x4540
do_syscall_64+0xa7/0x240
entry_SYSCALL_64_after_hwframe+0x76/0x7e
The root cause is a race condition in f2fs_stop_gc_thread() called from
different f2fs shutdown paths:
[CPU0] [CPU1]
---------------------- -----------------------
f2fs_stop_gc_thread f2fs_stop_gc_thread
gc_th = sbi->gc_thread
gc_th = sbi->gc_thread
kfree(gc_th)
sbi->gc_thread = NULL
< gc_th != NULL >
kthread_stop(gc_th->f2fs_gc_task) //UAF
The commit c7f114d864ac ("f2fs: fix to avoid use-after-free in
f2fs_stop_gc_thread()") attempted to fix this issue by using a read
semaphore to prevent races between shutdown and remount threads, but
it fails to prevent all race conditions.
Fix it by converting to write lock of s_umount in f2fs_do_shutdown().
Fixes: 7950e9ac638e ("f2fs: stop gc/discard thread after fs shutdown")
Signed-off-by: Long Li <leo.lilong at huawei.com>
Reviewed-by: Chao Yu <chao at kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk at kernel.org>
(backported from commit 7b0033dbc48340a1c1c3f12448ba17d6587ca092)
[mpellizzer:
* Since commit ee745e4736fb (f2fs: support .shutdown in f2fs_sops)
is missing, the functions f2fs_shutdown() in fs/f2fs/super.c and
f2fs_do_shutdown() in fs/f2fs/file.c are missing. In order to
backport the commit is therefore necessary to take the lock in
f2fs_ioc_shutdown().]
CVE-2024-53218
Signed-off-by: Massimiliano Pellizzer <massimiliano.pellizzer at canonical.com>
---
fs/f2fs/file.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 133d478c4ca0..8bb9b1959506 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -2305,8 +2305,11 @@ static int f2fs_ioc_shutdown(struct file *filp, unsigned long arg)
goto out;
}
- /* grab sb->s_umount to avoid racing w/ remount() */
- down_read(&sbi->sb->s_umount);
+ /*
+ * grab sb->s_umount to avoid racing w/ remount() and other shutdown
+ * paths.
+ */
+ down_write(&sbi->sb->s_umount);
f2fs_stop_gc_thread(sbi);
f2fs_stop_discard_thread(sbi);
@@ -2314,7 +2317,7 @@ static int f2fs_ioc_shutdown(struct file *filp, unsigned long arg)
f2fs_drop_discard_cmd(sbi);
clear_opt(sbi, DISCARD);
- up_read(&sbi->sb->s_umount);
+ up_write(&sbi->sb->s_umount);
f2fs_update_time(sbi, REQ_TIME);
out:
--
2.51.0
More information about the kernel-team
mailing list