CVE-2022-49272 Details
Description
In the Linux kernel, the following vulnerability has been resolved: ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock syzbot caught a potential deadlock between the PCM runtime->buffer_mutex and the mm->mmap_lock. It was brought by the recent fix to cover the racy read/write and other ioctls, and in that commit, I overlooked a (hopefully only) corner case that may take the revert lock, namely, the OSS mmap. The OSS mmap operation exceptionally allows to re-configure the parameters inside the OSS mmap syscall, where mm->mmap_mutex is already held. Meanwhile, the copy_from/to_user calls at read/write operations also take the mm->mmap_lock internally, hence it may lead to a AB/BA deadlock. A similar problem was already seen in the past and we fixed it with a refcount (in commit b248371628aa). The former fix covered only the call paths with OSS read/write and OSS ioctls, while we need to cover the concurrent access via both ALSA and OSS APIs now. This patch addresses the problem above by replacing the buffer_mutex lock in the read/write operations with a refcount similar as we've used for OSS. The new field, runtime->buffer_accessing, keeps the number of concurrent read/write operations. Unlike the former buffer_mutex protection, this protects only around the copy_from/to_user() calls; the other codes are basically protected by the PCM stream lock. The refcount can be a negative, meaning blocked by the ioctls. If a negative value is seen, the read/write aborts with -EBUSY. In the ioctl side, OTOH, they check this refcount, too, and set to a negative value for blocking unless it's already being accessed.
A vulnerability in the Linux kernel's Advanced Linux Sound Architecture (ALSA) PCM subsystem could lead to a deadlock. This issue arises from a conflict between the runtime buffer mutex and the memory management mmap lock. The problem was introduced by a recent fix that addressed race conditions in read/write operations and other ioctls, which inadvertently overlooked a corner case involving the OSS mmap operation. The OSS mmap syscall allows reconfiguration of parameters while holding the mmap mutex, creating a potential AB/BA deadlock when combined with concurrent read/write operations that also engage the mmap lock. This vulnerability affects several versions of the Linux kernel.
Users can apply the latest patches available in the Linux kernel repository to address this vulnerability. Instructions for applying these patches can be found in the Linux kernel documentation.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/40f4cffbe13a51faf136faf5f9ef6847782cd595 | kernel.org | Patch |
| https://git.kernel.org/stable/c/7777744e92a0b30e3e0cce2758d911837011ebd9 | kernel.org | Patch |
| https://git.kernel.org/stable/c/7e9133607e1501c94881be35e118d8f84d96dcb4 | kernel.org | Patch |
| https://git.kernel.org/stable/c/9017201e8d8c6d1472273361389ed431188584a0 | kernel.org | Patch |
| https://git.kernel.org/stable/c/9661bf674d6a82b76e4ae424438a8ce1e3ed855d | kernel.org | Patch |
| https://git.kernel.org/stable/c/abedf0d08c79d76da0d6fa0d5dbbc98871dcbc2e | kernel.org | Patch |
| https://git.kernel.org/stable/c/bc55cfd5718c7c23e5524582e9fa70b4d10f2433 | kernel.org | Patch |
| https://git.kernel.org/stable/c/be9813ad2fc8f0885f5ce6925af0d993ce5da4e5 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-667 | Improper Locking | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | 5.10.109 5.15.32 5.16.18 5.17.1 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jun 17, 2026 | CVE Modified | kernel.org |
| Sep 22, 2025 | Initial Analysis | [email protected] |
| Feb 26, 2025 | New CVE Received | kernel.org |