Nikita Zhandarovich
ca71f20471
net/9p: fix uninit-value in p9_client_rpc()
...
commit 25460d6f39024cc3b8241b14c7ccf0d6f11a736a upstream.
Syzbot with the help of KMSAN reported the following error:
BUG: KMSAN: uninit-value in trace_9p_client_res include/trace/events/9p.h:146 [inline]
BUG: KMSAN: uninit-value in p9_client_rpc+0x1314/0x1340 net/9p/client.c:754
trace_9p_client_res include/trace/events/9p.h:146 [inline]
p9_client_rpc+0x1314/0x1340 net/9p/client.c:754
p9_client_create+0x1551/0x1ff0 net/9p/client.c:1031
v9fs_session_init+0x1b9/0x28e0 fs/9p/v9fs.c:410
v9fs_mount+0xe2/0x12b0 fs/9p/vfs_super.c:122
legacy_get_tree+0x114/0x290 fs/fs_context.c:662
vfs_get_tree+0xa7/0x570 fs/super.c:1797
do_new_mount+0x71f/0x15e0 fs/namespace.c:3352
path_mount+0x742/0x1f20 fs/namespace.c:3679
do_mount fs/namespace.c:3692 [inline]
__do_sys_mount fs/namespace.c:3898 [inline]
__se_sys_mount+0x725/0x810 fs/namespace.c:3875
__x64_sys_mount+0xe4/0x150 fs/namespace.c:3875
do_syscall_64+0xd5/0x1f0
entry_SYSCALL_64_after_hwframe+0x6d/0x75
Uninit was created at:
__alloc_pages+0x9d6/0xe70 mm/page_alloc.c:4598
__alloc_pages_node include/linux/gfp.h:238 [inline]
alloc_pages_node include/linux/gfp.h:261 [inline]
alloc_slab_page mm/slub.c:2175 [inline]
allocate_slab mm/slub.c:2338 [inline]
new_slab+0x2de/0x1400 mm/slub.c:2391
___slab_alloc+0x1184/0x33d0 mm/slub.c:3525
__slab_alloc mm/slub.c:3610 [inline]
__slab_alloc_node mm/slub.c:3663 [inline]
slab_alloc_node mm/slub.c:3835 [inline]
kmem_cache_alloc+0x6d3/0xbe0 mm/slub.c:3852
p9_tag_alloc net/9p/client.c:278 [inline]
p9_client_prepare_req+0x20a/0x1770 net/9p/client.c:641
p9_client_rpc+0x27e/0x1340 net/9p/client.c:688
p9_client_create+0x1551/0x1ff0 net/9p/client.c:1031
v9fs_session_init+0x1b9/0x28e0 fs/9p/v9fs.c:410
v9fs_mount+0xe2/0x12b0 fs/9p/vfs_super.c:122
legacy_get_tree+0x114/0x290 fs/fs_context.c:662
vfs_get_tree+0xa7/0x570 fs/super.c:1797
do_new_mount+0x71f/0x15e0 fs/namespace.c:3352
path_mount+0x742/0x1f20 fs/namespace.c:3679
do_mount fs/namespace.c:3692 [inline]
__do_sys_mount fs/namespace.c:3898 [inline]
__se_sys_mount+0x725/0x810 fs/namespace.c:3875
__x64_sys_mount+0xe4/0x150 fs/namespace.c:3875
do_syscall_64+0xd5/0x1f0
entry_SYSCALL_64_after_hwframe+0x6d/0x75
If p9_check_errors() fails early in p9_client_rpc(), req->rc.tag
will not be properly initialized. However, trace_9p_client_res()
ends up trying to print it out anyway before p9_client_rpc()
finishes.
Fix this issue by assigning default values to p9_fcall fields
such as 'tag' and (just in case KMSAN unearths something new) 'id'
during the tag allocation stage.
Reported-and-tested-by: syzbot+ff14db38f56329ef68df@syzkaller.appspotmail.com
Fixes: 348b59012e5c ("net/9p: Convert net/9p protocol dumps to tracepoints")
Signed-off-by: Nikita Zhandarovich <n.zhandarovich@fintech.ru>
Reviewed-by: Christian Schoenebeck <linux_oss@crudebyte.com>
Cc: stable@vger.kernel.org
Message-ID: <20240408141039.30428-1-n.zhandarovich@fintech.ru>
Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-06-16 13:41:38 +02:00
..
2024-06-16 13:41:38 +02:00
2022-12-31 13:33:02 +01:00
2024-01-31 16:17:04 -08:00
2023-12-20 17:00:19 +01:00
2023-12-20 17:00:17 +01:00
2024-06-12 11:03:20 +02:00
2024-04-17 11:18:22 +02:00
2024-06-12 11:03:20 +02:00
2023-03-17 08:50:32 +01:00
2024-06-12 11:03:32 +02:00
2023-03-17 08:50:24 +01:00
2024-02-23 09:12:47 +01:00
2023-10-19 23:08:56 +02:00
2024-06-12 11:03:14 +02:00
2023-08-11 12:08:17 +02:00
2023-11-20 11:52:16 +01:00
2023-09-23 11:11:01 +02:00
2024-01-25 15:27:38 -08:00
2024-04-27 17:07:17 +02:00
2024-05-02 16:29:29 +02:00
2024-01-25 15:27:51 -08:00
2024-05-17 11:56:13 +02:00
2022-10-07 09:29:17 +02:00
2024-01-01 12:38:56 +00:00
2024-06-12 11:03:57 +02:00
2024-06-16 13:41:38 +02:00
2024-03-26 18:20:25 -04:00
2024-03-26 18:20:42 -04:00
2023-08-23 17:52:32 +02:00
2024-05-17 11:55:59 +02:00
2024-02-05 20:13:01 +00:00
2024-06-12 11:02:58 +02:00
2024-04-03 15:19:31 +02:00
2024-03-26 18:20:37 -04:00
2024-04-13 13:05:27 +02:00
2024-06-16 13:41:32 +02:00
2024-01-25 15:27:24 -08:00
2024-06-12 11:03:58 +02:00
2024-01-25 15:27:20 -08:00
2024-03-06 14:45:06 +00:00
2024-06-12 11:03:32 +02:00
2024-06-12 11:03:53 +02:00
2024-05-17 11:55:59 +02:00
2024-06-12 11:03:51 +02:00
2024-06-12 11:03:32 +02:00
2024-05-17 11:56:12 +02:00
2023-12-13 18:39:11 +01:00
2024-06-12 11:03:32 +02:00
2024-04-10 16:28:25 +02:00
2024-01-01 12:39:04 +00:00
2024-01-01 12:38:57 +00:00
2024-02-16 19:06:27 +01:00
2024-04-10 16:28:26 +02:00
2024-01-25 15:27:30 -08:00
2024-05-17 11:56:13 +02:00
2024-06-12 11:03:51 +02:00
2024-03-01 13:26:35 +01:00
2024-05-17 11:56:20 +02:00
2024-06-12 11:03:53 +02:00
2024-06-12 11:03:56 +02:00
2024-04-10 16:28:25 +02:00
2024-06-12 11:02:58 +02:00
2024-03-26 18:20:42 -04:00
2024-04-17 11:18:23 +02:00
2024-05-17 11:56:10 +02:00
2023-02-09 11:28:04 +01:00
2023-08-30 16:11:00 +02:00
2024-01-10 17:10:27 +01:00