CVE-2026-53050
Last modified
CVE-2026-53050 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: quota: Fix race of dquot_scan_active() with quota deactivation dquot_scan_active() can race with quota deactivation in quota_release_workfn() like: CPU0 (quota_release_workfn) CPU1 (dquot_scan_active) ============================== ============================== spin_lock(&dq_list_lock); list_replace_init( &releasing_dquots, &rls_head); /* dquot X on rls_head, dq_count == 0, DQ_ACTIVE_B still set */ spin_unlock(&dq_list_lock); synchronize_srcu(&dquot_srcu); spin_lock(&dq_list_lock); list_for_each_entry(dquot, &inuse_list, dq_inuse) { /* finds dquot X */ dquot_active(X) -> true atomic_inc(&X->dq_count); } spin_unlock(&dq_list_lock); spin_lock(&dq_list_lock); dquot = list_first_entry(&rls_head); WARN_ON_ONCE(atomic_read(&dquot->dq_count)); The problem is not only a cosmetic one as under memory pressure the caller of dquot_scan_active() can end up working on freed dquot. Fix the problem by making sure the dquot is removed from releasing list when we acquire a reference to it.. EPSS estimates a 0.13% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: quota: Fix race of dquot_scan_active() with quota deactivation dquot_scan_active() can race with quota deactivation in quota_release_workfn() like: CPU0 (quota_release_workfn) CPU1 (dquot_scan_active) ============================== ============================== spin_lock(&dq_list_lock); list_replace_init( &releasing_dquots, &rls_head); /* dquot X on rls_head, dq_count == 0, DQ_ACTIVE_B still set */ spin_unlock(&dq_list_lock); synchronize_srcu(&dquot_srcu); spin_lock(&dq_list_lock); list_for_each_entry(dquot, &inuse_list, dq_inuse) { /* finds dquot X */ dquot_active(X) -> true atomic_inc(&X->dq_count); } spin_unlock(&dq_list_lock); spin_lock(&dq_list_lock); dquot = list_first_entry(&rls_head); WARN_ON_ONCE(atomic_read(&dquot->dq_count)); The problem is not only a cosmetic one as under memory pressure the caller of dquot_scan_active() can end up working on freed dquot. Fix the problem by making sure the dquot is removed from releasing list when we acquire a reference to it.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux Kernel | >= 4.19.297, < 4.20 |
| Linux | Linux Kernel | >= 5.4.259, < 5.5 |
| Linux | Linux Kernel | >= 5.10.199, < 5.10.258 |
| Linux | Linux Kernel | >= 5.15.136, < 5.15.209 |
| Linux | Linux Kernel | >= 6.1.59, < 6.1.175 |
| Linux | Linux Kernel | >= 6.5.8, < 6.6 |
| Linux | Linux Kernel | >= 6.6.1, < 6.6.141 |
| Linux | Linux Kernel | >= 6.7, < 6.12.91 |
| Linux | Linux Kernel | >= 6.13, < 6.18.33 |
| Linux | Linux Kernel | >= 6.19, < 7.0.10 |
| Linux | Linux Kernel | 6.6 |
References
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2026-53050?
How severe is CVE-2026-53050?
How do I fix CVE-2026-53050?
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 2026
- CVE-2026-53045In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-53046In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-53047In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-53048In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-53049In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-5305The Email Address Encoder WordPress plugin before 1.0.25, em…8.8
- CVE-2026-53051In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-53052In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-53053In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-53054In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-53055In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-53056In the Linux kernel, the following vulnerability has been re…5.5
Are you affected by CVE-2026-53050?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
