CVE-2025-22030
Last modified
CVE-2025-22030 is a medium-severity vulnerability rated 5.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: mm: zswap: fix crypto_free_acomp() deadlock in zswap_cpu_comp_dead() Currently, zswap_cpu_comp_dead() calls crypto_free_acomp() while holding the per-CPU acomp_ctx mutex. crypto_free_acomp() then holds scomp_lock (through crypto_exit_scomp_ops_async()). On the other hand, crypto_alloc_acomp_node() holds the scomp_lock (through crypto_scomp_init_tfm()), and then allocates memory. EPSS estimates a 0.16% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: mm: zswap: fix crypto_free_acomp() deadlock in zswap_cpu_comp_dead() Currently, zswap_cpu_comp_dead() calls crypto_free_acomp() while holding the per-CPU acomp_ctx mutex. crypto_free_acomp() then holds scomp_lock (through crypto_exit_scomp_ops_async()). On the other hand, crypto_alloc_acomp_node() holds the scomp_lock (through crypto_scomp_init_tfm()), and then allocates memory. If the allocation results in reclaim, we may attempt to hold the per-CPU acomp_ctx mutex. The above dependencies can cause an ABBA deadlock. For example in the following scenario: (1) Task A running on CPU #1: crypto_alloc_acomp_node() Holds scomp_lock Enters reclaim Reads per_cpu_ptr(pool->acomp_ctx, 1) (2) Task A is descheduled (3) CPU #1 goes offline zswap_cpu_comp_dead(CPU #1) Holds per_cpu_ptr(pool->acomp_ctx, 1)) Calls crypto_free_acomp() Waits for scomp_lock (4) Task A running on CPU #2: Waits for per_cpu_ptr(pool->acomp_ctx, 1) // Read on CPU #1 DEADLOCK Since there is no requirement to call crypto_free_acomp() with the per-CPU acomp_ctx mutex held in zswap_cpu_comp_dead(), move it after the mutex is unlocked. Also move the acomp_request_free() and kfree() calls for consistency and to avoid any potential sublte locking dependencies in the future. With this, only setting acomp_ctx fields to NULL occurs with the mutex held. This is similar to how zswap_cpu_comp_prepare() only initializes acomp_ctx fields with the mutex held, after performing all allocations before holding the mutex. Opportunistically, move the NULL check on acomp_ctx so that it takes place before the mutex dereference.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 6.12.12, < 6.12.23 |
| Linux | Linux Kernel | >= 6.13.1, < 6.13.11 |
| Linux | Linux Kernel | >= 6.14, < 6.14.2 |
| Linux | Linux Kernel | 6.13 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2025-22030?
How severe is CVE-2025-22030?
How do I fix CVE-2025-22030?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2025
- CVE-2025-22025In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2025-22026In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2025-22027In the Linux kernel, the following vulnerability has been re…4.7
- CVE-2025-22028In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2025-22029Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2025-2203The FunnelKit WordPress plugin before 3.10.2 does not sanit…6.1
- CVE-2025-22031In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2025-22032In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2025-22033In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2025-22034In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2025-22035In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2025-22036In the Linux kernel, the following vulnerability has been re…7
Are you affected by CVE-2025-22030?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
