CVE & CISA-KEV Catalog

CVE-2024-47741

HIGH
7.0
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: btrfs: fix race setting file private on concurrent lseek using same fd When doing concurrent lseek(2) system calls against the same file descriptor, using multiple threads belonging to the same process, we have a short time window where a race happens and can result in a memory leak. The race happens like this: 1) A program opens a file descriptor for a file and then spawns two threads (with the pthreads library for example), lets call them task A and task B; 2) Task A calls lseek with SEEK_DATA or SEEK_HOLE and ends up at file.c:find_desired_extent() while holding a read lock on the inode; 3) At the start of find_desired_extent(), it extracts the file's private_data pointer into a local variable named 'private', which has a value of NULL; 4) Task B also calls lseek with SEEK_DATA or SEEK_HOLE, locks the inode in shared mode and enters file.c:find_desired_extent(), where it also extracts file->private_data into its local variable 'private', which has a NULL value; 5) Because it saw a NULL file private, task A allocates a private structure and assigns to the file structure; 6) Task B also saw a NULL file private so it also allocates its own file private and then assigns it to the same file structure, since both tasks are using the same file descriptor. At this point we leak the private structure allocated by task A. Besides the memory leak, there's also the detail that both tasks end up using the same cached state record in the private structure (struct btrfs_file_private::llseek_cached_state), which can result in a use-after-free problem since one task can free it while the other is still using it (only one task took a reference count on it). Also, sharing the cached state is not a good idea since it could result in incorrect results in the future - right now it should not be a problem because it end ups being used only in extent-io-tree.c:count_range_bits() where we do range validation before using the cached state. Fix this by protecting the private assignment and check of a file while holding the inode's spinlock and keep track of the task that allocated the private, so that it's used only by that task in order to prevent user-after-free issues with the cached state record as well as potentially using it incorrectly in the future.

How to fix

Remediation Available
linuxDebian
Fixed in:6.11.2-1CVE-2024-47741
Fixed in:6.11.2-1CVE-2024-47741
linuxUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-awsUbuntu
Fixed in:6.8.0-1023.25USN-7311-1
linux-aws-6.8Ubuntu
Fixed in:6.8.0-1023.25~22.04.1USN-7311-1
linux-azureUbuntu
Fixed in:6.8.0-1025.30USN-7384-1
linux-azure-6.8Ubuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-gcpUbuntu
Fixed in:6.8.0-1024.26USN-7304-1
linux-gcp-6.8Ubuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
linux-gkeUbuntu
Fixed in:6.8.0-1019.23USN-7304-1
linux-gkeopUbuntu
Fixed in:6.8.0-1006.8USN-7304-1
linux-hwe-6.8Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-ibmUbuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-6.11.0-1015-oemUbuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-image-6.8.0-1006-gkeopUbuntu
Fixed in:6.8.0-1006.8USN-7304-1
linux-image-6.8.0-1019-gkeUbuntu
Fixed in:6.8.0-1019.23USN-7304-1
linux-image-6.8.0-1019-raspiUbuntu
Fixed in:6.8.0-1019.23USN-7303-3
linux-image-6.8.0-1020-oracleUbuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-6.8.0-1020-oracle-64kUbuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-6.8.0-1022-ibmUbuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-6.8.0-1022-nvidiaUbuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
Fixed in:6.8.0-1022.25USN-7303-1
linux-image-6.8.0-1022-nvidia-64kUbuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
Fixed in:6.8.0-1022.25USN-7303-1
linux-image-6.8.0-1022-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-image-6.8.0-1022-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-image-6.8.0-1023-awsUbuntu
Fixed in:6.8.0-1023.25~22.04.1USN-7311-1
Fixed in:6.8.0-1023.25USN-7311-1
linux-image-6.8.0-1024-gcpUbuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-6.8.0-1024-gcp-64kUbuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-6.8.0-1024-oemUbuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-6.8.0-1025-azureUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-6.8.0-1025-azure-fdeUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-6.8.0-54-genericUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-6.8.0-54-generic-64kUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-6.8.0-54-lowlatencyUbuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
Fixed in:6.8.0-54.56.1USN-7301-1
linux-image-6.8.0-54-lowlatency-64kUbuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
Fixed in:6.8.0-54.56.1USN-7301-1
linux-image-6.8.0-57-genericUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-6.8.0-57-generic-64kUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-awsUbuntu
Fixed in:6.8.0-1023.25~22.04.1USN-7311-1
Fixed in:6.8.0-1023.25USN-7311-1
linux-image-aws-lts-24.04Ubuntu
Fixed in:6.8.0-1023.25USN-7311-1
linux-image-azureUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-image-azure-fdeUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-image-azure-fde-lts-24.04Ubuntu
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-azure-lts-24.04Ubuntu
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-gcpUbuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-gcp-64kUbuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-gcp-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-gcp-lts-24.04Ubuntu
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-genericUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-generic-64kUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-generic-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-generic-lpaeUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-gkeUbuntu
Fixed in:6.8.0-1019.23USN-7304-1
linux-image-gkeopUbuntu
Fixed in:6.8.0-1006.8USN-7304-1
linux-image-gkeop-6.8Ubuntu
Fixed in:6.8.0-1006.8USN-7304-1
linux-image-ibmUbuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-ibm-classicUbuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-ibm-lts-24.04Ubuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-kvmUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-lowlatencyUbuntu
Fixed in:6.8.0-54.56.1USN-7301-1
linux-image-lowlatency-64kUbuntu
Fixed in:6.8.0-54.56.1USN-7301-1
linux-image-lowlatency-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
linux-image-lowlatency-hwe-22.04Ubuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
linux-image-nvidiaUbuntu
Fixed in:6.8.0-1022.25USN-7303-1
linux-image-nvidia-6.8Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-image-nvidia-64kUbuntu
Fixed in:6.8.0-1022.25USN-7303-1
linux-image-nvidia-64k-6.8Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-image-nvidia-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-image-nvidia-hwe-22.04Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-image-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-image-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-image-oem-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04aUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04bUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04cUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04dUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-24.04Ubuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-oem-24.04aUbuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-oem-24.04bUbuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-image-oracleUbuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-oracle-64kUbuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-oracle-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-oracle-lts-24.04Ubuntu
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-raspiUbuntu
Fixed in:6.8.0-1019.23USN-7303-3
linux-image-virtualUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-lowlatencyUbuntu
Fixed in:6.8.0-54.56.1USN-7301-1
linux-lowlatency-hwe-6.8Ubuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
linux-nvidiaUbuntu
Fixed in:6.8.0-1022.25USN-7303-1
linux-nvidia-6.8Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-oem-6.11Ubuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-oem-6.8Ubuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-oracleUbuntu
Fixed in:6.8.0-1020.21USN-7303-2
linux-oracle-6.8Ubuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
linux-raspiUbuntu
Fixed in:6.8.0-1019.23USN-7303-3

Remediation is compiled from vendor and distribution security advisories. Always confirm against the linked source for your exact version and platform.

CVSS v3 Vector

Exploitability

Attack VectorLocal
Attack ComplexityHigh
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityHigh
IntegrityHigh
AvailabilityHigh

CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H

Exploit Intelligence

0.16%probability of exploitation in 30 days
6thpercentile

Low risk: more likely to be exploited than 6% of all known CVEs.

References

Related Vulnerabilities

Other CWE-362 (Race Condition) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2024-6387High8.1100%-Fix
CVE-2023-36884High7.599%KEV + RansomFix
CVE-2018-15473Medium5.399%-Fix
CVE-2024-27983High8.287%-Fix
CVE-2014-0226Medium6.886%-Fix
CVE-2016-5195High7.084%KEVFix
Embed a live status badge for CVE-2024-47741
CVE-2024-47741 severity badge

Markdown

[![CVE-2024-47741](https://tridentstack.com/cve/badge/CVE-2024-47741.svg)](https://tridentstack.com/cve/CVE-2024-47741)

HTML

<a href="https://tridentstack.com/cve/CVE-2024-47741"><img src="https://tridentstack.com/cve/badge/CVE-2024-47741.svg" alt="CVE-2024-47741"></a>

Find and fix vulnerabilities across your fleet

TridentStack Control continuously scans your Windows, macOS, and Linux fleet for known vulnerabilities, prioritizes them by severity and active exploitation, and patches them automatically.

Start free

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2024-10-23.