CVE-2022-49947
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
18/06/2025
Last modified:
18/06/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
binder: fix alloc->vma_vm_mm null-ptr dereference<br />
<br />
Syzbot reported a couple issues introduced by commit 44e602b4e52f<br />
("binder_alloc: add missing mmap_lock calls when using the VMA"), in<br />
which we attempt to acquire the mmap_lock when alloc->vma_vm_mm has not<br />
been initialized yet.<br />
<br />
This can happen if a binder_proc receives a transaction without having<br />
previously called mmap() to setup the binder_proc->alloc space in [1].<br />
Also, a similar issue occurs via binder_alloc_print_pages() when we try<br />
to dump the debugfs binder stats file in [2].<br />
<br />
Sample of syzbot&#39;s crash report:<br />
==================================================================<br />
KASAN: null-ptr-deref in range [0x0000000000000128-0x000000000000012f]<br />
CPU: 0 PID: 3755 Comm: syz-executor229 Not tainted 6.0.0-rc1-next-20220819-syzkaller #0<br />
syz-executor229[3755] cmdline: ./syz-executor2294415195<br />
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 07/22/2022<br />
RIP: 0010:__lock_acquire+0xd83/0x56d0 kernel/locking/lockdep.c:4923<br />
[...]<br />
Call Trace:<br />
<br />
lock_acquire kernel/locking/lockdep.c:5666 [inline]<br />
lock_acquire+0x1ab/0x570 kernel/locking/lockdep.c:5631<br />
down_read+0x98/0x450 kernel/locking/rwsem.c:1499<br />
mmap_read_lock include/linux/mmap_lock.h:117 [inline]<br />
binder_alloc_new_buf_locked drivers/android/binder_alloc.c:405 [inline]<br />
binder_alloc_new_buf+0xa5/0x19e0 drivers/android/binder_alloc.c:593<br />
binder_transaction+0x242e/0x9a80 drivers/android/binder.c:3199<br />
binder_thread_write+0x664/0x3220 drivers/android/binder.c:3986<br />
binder_ioctl_write_read drivers/android/binder.c:5036 [inline]<br />
binder_ioctl+0x3470/0x6d00 drivers/android/binder.c:5323<br />
vfs_ioctl fs/ioctl.c:51 [inline]<br />
__do_sys_ioctl fs/ioctl.c:870 [inline]<br />
__se_sys_ioctl fs/ioctl.c:856 [inline]<br />
__x64_sys_ioctl+0x193/0x200 fs/ioctl.c:856<br />
do_syscall_x64 arch/x86/entry/common.c:50 [inline]<br />
do_syscall_64+0x35/0xb0 arch/x86/entry/common.c:80<br />
entry_SYSCALL_64_after_hwframe+0x63/0xcd<br />
[...]<br />
==================================================================<br />
<br />
Fix these issues by setting up alloc->vma_vm_mm pointer during open()<br />
and caching directly from current->mm. This guarantees we have a valid<br />
reference to take the mmap_lock during scenarios described above.<br />
<br />
[1] https://syzkaller.appspot.com/bug?extid=f7dc54e5be28950ac459<br />
[2] https://syzkaller.appspot.com/bug?extid=a75ebe0452711c9e56d9