CVE-2024-27022

CVSS v3.1 7.8 (High)
78% Progress
EPSS 0.04 % (5th)
0.04% Progress
Affected Products 1
Advisories 11
NVD Status Modified

In the Linux kernel, the following vulnerability has been resolved:

fork: defer linking file vma until vma is fully initialized

Thorvald reported a WARNING [1]. And the root cause is below race:

CPU 1 CPU 2
fork hugetlbfs_fallocate
dup_mmap hugetlbfs_punch_hole
i_mmap_lock_write(mapping);
vma_interval_tree_insert_after -- Child vma is visible through i_mmap tree.
i_mmap_unlock_write(mapping);
hugetlb_dup_vma_private -- Clear vma_lock outside i_mmap_rwsem!
i_mmap_lock_write(mapping);
hugetlb_vmdelete_list
vma_interval_tree_foreach
hugetlb_vma_trylock_write -- Vma_lock is cleared.
tmp->vm_ops->open -- Alloc new vma_lock outside i_mmap_rwsem!
hugetlb_vma_unlock_write -- Vma_lock is assigned!!!
i_mmap_unlock_write(mapping);

hugetlb_dup_vma_private() and hugetlb_vm_op_open() are called outside
i_mmap_rwsem lock while vma lock can be used in the same time. Fix this
by deferring linking file vma until vma is fully initialized. Those vmas
should be initialized first before they can be used.

Weaknesses
CWE-908
Use of Uninitialized Resource
CVE Status
PUBLISHED
NVD Status
Modified
CNA
kernel.org
Published Date
2024-05-01 06:15:21
(4 months ago)
Updated Date
2024-06-21 14:15:11
(2 months ago)

Affected Products

Loading...
Loading...

Configuration #1

    CPE23 From Up To
  Linux Kernel from 6.1 version and prior 6.1.90 version cpe:2.3:o:linux:linux_kernel >= 6.1 < 6.1.90
  Linux Kernel from 6.2 version and prior 6.6.30 version cpe:2.3:o:linux:linux_kernel >= 6.2 < 6.6.30
  Linux Kernel from 6.7 version and prior 6.8.8 version cpe:2.3:o:linux:linux_kernel >= 6.7 < 6.8.8
  Linux Kernel 6.9 Rc1 cpe:2.3:o:linux:linux_kernel:6.9:rc1
  Linux Kernel 6.9 Rc2 cpe:2.3:o:linux:linux_kernel:6.9:rc2
  Linux Kernel 6.9 Rc3 cpe:2.3:o:linux:linux_kernel:6.9:rc3
  Linux Kernel 6.9 Rc4 cpe:2.3:o:linux:linux_kernel:6.9:rc4
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...