Liu Shixin via Jfs-discussion
ef7311101c
jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount
...
[ Upstream commit 6e2bda2c19
]
syzbot found an invalid-free in diUnmount:
BUG: KASAN: double-free in slab_free mm/slub.c:3661 [inline]
BUG: KASAN: double-free in __kmem_cache_free+0x71/0x110 mm/slub.c:3674
Free of addr ffff88806f410000 by task syz-executor131/3632
CPU: 0 PID: 3632 Comm: syz-executor131 Not tainted 6.1.0-rc7-syzkaller-00012-gca57f02295f1 #0
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 10/26/2022
Call Trace:
<TASK>
__dump_stack lib/dump_stack.c:88 [inline]
dump_stack_lvl+0x1b1/0x28e lib/dump_stack.c:106
print_address_description+0x74/0x340 mm/kasan/report.c:284
print_report+0x107/0x1f0 mm/kasan/report.c:395
kasan_report_invalid_free+0xac/0xd0 mm/kasan/report.c:460
____kasan_slab_free+0xfb/0x120
kasan_slab_free include/linux/kasan.h:177 [inline]
slab_free_hook mm/slub.c:1724 [inline]
slab_free_freelist_hook+0x12e/0x1a0 mm/slub.c:1750
slab_free mm/slub.c:3661 [inline]
__kmem_cache_free+0x71/0x110 mm/slub.c:3674
diUnmount+0xef/0x100 fs/jfs/jfs_imap.c:195
jfs_umount+0x108/0x370 fs/jfs/jfs_umount.c:63
jfs_put_super+0x86/0x190 fs/jfs/super.c:194
generic_shutdown_super+0x130/0x310 fs/super.c:492
kill_block_super+0x79/0xd0 fs/super.c:1428
deactivate_locked_super+0xa7/0xf0 fs/super.c:332
cleanup_mnt+0x494/0x520 fs/namespace.c:1186
task_work_run+0x243/0x300 kernel/task_work.c:179
exit_task_work include/linux/task_work.h:38 [inline]
do_exit+0x664/0x2070 kernel/exit.c:820
do_group_exit+0x1fd/0x2b0 kernel/exit.c:950
__do_sys_exit_group kernel/exit.c:961 [inline]
__se_sys_exit_group kernel/exit.c:959 [inline]
__x64_sys_exit_group+0x3b/0x40 kernel/exit.c:959
do_syscall_x64 arch/x86/entry/common.c:50 [inline]
do_syscall_64+0x3d/0xb0 arch/x86/entry/common.c:80
entry_SYSCALL_64_after_hwframe+0x63/0xcd
[...]
JFS_IP(ipimap)->i_imap is not setting to NULL after free in diUnmount.
If jfs_remount() free JFS_IP(ipimap)->i_imap but then failed at diMount().
JFS_IP(ipimap)->i_imap will be freed once again.
Fix this problem by setting JFS_IP(ipimap)->i_imap to NULL after free.
Reported-by: syzbot+90a11e6b1e810785c6ff@syzkaller.appspotmail.com
Signed-off-by: Liu Shixin <liushixin2@huawei.com >
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2023-09-23 11:09:58 +02:00
..
2022-08-17 14:24:07 +02:00
2023-02-01 08:27:06 +01:00
2023-06-21 15:59:18 +02:00
2023-09-23 11:09:54 +02:00
2021-08-19 09:02:55 +09:00
2023-09-23 11:09:54 +02:00
2022-07-02 16:41:14 +02:00
2023-08-11 15:13:56 +02:00
2023-08-26 14:23:36 +02:00
2023-03-10 09:39:50 +01:00
2022-12-31 13:14:15 +01:00
2022-11-10 18:15:37 +01:00
2022-12-31 13:14:03 +01:00
2022-02-01 17:27:01 +01:00
2023-09-19 12:22:52 +02:00
2022-07-02 16:41:14 +02:00
2023-09-06 21:28:37 +01:00
2023-08-26 14:23:37 +02:00
2022-06-09 10:23:32 +02:00
2023-09-23 11:09:57 +02:00
2023-09-19 12:23:01 +02:00
2023-07-23 13:47:46 +02:00
2022-06-09 10:22:42 +02:00
2021-10-04 22:13:12 +01:00
2023-09-19 12:23:01 +02:00
2023-09-19 12:22:56 +02:00
2023-03-10 09:39:57 +01:00
2023-05-24 17:36:43 +01:00
2021-08-26 22:28:02 +02:00
2022-12-31 13:14:44 +01:00
2022-06-09 10:22:55 +02:00
2021-11-12 15:05:50 +01:00
2023-09-19 12:23:01 +02:00
2023-07-23 13:47:34 +02:00
2023-09-23 11:09:58 +02:00
2023-07-23 13:47:23 +02:00
2023-09-19 12:22:27 +02:00
2023-09-19 12:22:43 +02:00
2022-04-13 20:59:10 +02:00
2021-12-29 12:28:59 +01:00
2023-09-19 12:22:56 +02:00
2021-10-04 22:02:17 +01:00
2023-09-19 12:22:43 +02:00
2023-09-06 21:28:40 +01:00
2023-09-19 12:22:27 +02:00
2023-07-23 13:47:36 +02:00
2022-11-26 09:24:52 +01:00
2023-08-26 14:23:25 +02:00
2023-09-19 12:22:34 +02:00
2022-12-31 13:14:44 +01:00
2023-09-19 12:22:28 +02:00
2023-09-19 12:22:52 +02:00
2023-09-19 12:22:52 +02:00
2021-09-21 08:36:48 -07:00
2023-09-19 12:22:35 +02:00
2023-07-23 13:47:33 +02:00
2023-09-19 12:22:30 +02:00
2021-12-14 10:57:12 +01:00
2023-02-22 12:57:07 +01:00
2021-08-06 13:05:28 +02:00
2023-08-11 15:13:58 +02:00
2022-09-20 12:39:43 +02:00
2023-05-17 11:50:14 +02:00
2023-09-19 12:22:53 +02:00
2021-08-19 09:02:55 +09:00
2021-09-27 11:26:21 -07:00
2023-09-19 12:22:52 +02:00
2023-06-14 11:13:09 +02:00
2023-04-05 11:25:01 +02:00
2023-02-22 12:57:05 +01:00
2023-08-30 16:18:19 +02:00
2021-08-18 22:08:24 +02:00
2021-09-05 10:15:05 -07:00
2023-01-12 11:58:46 +01:00
2022-11-03 23:59:12 +09:00
2022-06-09 10:22:26 +02:00
2022-12-31 13:14:39 +01:00
2022-11-26 09:24:51 +01:00
2022-12-31 13:14:30 +01:00
2022-04-08 14:24:18 +02:00
2021-09-02 10:07:29 -07:00
2022-09-28 11:11:56 +02:00
2021-09-03 09:58:10 -07:00
2023-09-19 12:22:30 +02:00
2023-06-21 15:59:14 +02:00
2022-11-03 23:59:12 +09:00
2021-09-03 10:08:28 -07:00
2022-10-26 12:34:58 +02:00
2023-08-11 15:13:58 +02:00
2021-08-23 01:25:40 -04:00
2023-07-23 13:47:34 +02:00
2021-09-07 16:07:47 -04:00
2023-05-17 11:50:16 +02:00
2023-07-23 13:47:33 +02:00
2023-08-30 16:18:19 +02:00
2022-05-25 09:57:26 +02:00
2021-09-12 10:10:21 -07:00
2021-10-18 20:22:03 -10:00
2022-12-31 13:14:03 +01:00
2023-09-23 11:09:55 +02:00
2022-12-14 11:37:31 +01:00
2023-01-12 11:59:20 +01:00
2023-09-19 12:22:30 +02:00
2023-04-13 16:48:25 +02:00
2023-08-11 15:13:57 +02:00
2022-06-06 08:43:37 +02:00
2023-01-12 11:58:47 +01:00
2022-07-02 16:41:17 +02:00
2022-07-02 16:41:14 +02:00
2022-12-19 12:36:39 +01:00
2022-07-21 21:24:14 +02:00
2022-01-29 10:58:25 +01:00
2022-07-12 16:35:08 +02:00
2021-12-14 10:57:15 +01:00
2022-10-26 12:34:17 +02:00
2022-04-27 14:38:57 +02:00
2023-05-24 17:36:54 +01:00
2023-08-11 15:13:58 +02:00
2022-04-27 14:38:50 +02:00
2021-08-10 17:57:22 +02:00
2022-10-26 12:34:36 +02:00
2022-12-31 13:14:01 +01:00