CVE-2026-53050
Severity CVSS v4.0:
Pending analysis
Type:
CWE-362
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
Publication date:
24/06/2026
Last modified:
21/07/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
quota: Fix race of dquot_scan_active() with quota deactivation<br />
<br />
dquot_scan_active() can race with quota deactivation in<br />
quota_release_workfn() like:<br />
<br />
CPU0 (quota_release_workfn) CPU1 (dquot_scan_active)<br />
============================== ==============================<br />
spin_lock(&dq_list_lock);<br />
list_replace_init(<br />
&releasing_dquots, &rls_head);<br />
/* dquot X on rls_head,<br />
dq_count == 0,<br />
DQ_ACTIVE_B still set */<br />
spin_unlock(&dq_list_lock);<br />
synchronize_srcu(&dquot_srcu);<br />
spin_lock(&dq_list_lock);<br />
list_for_each_entry(dquot,<br />
&inuse_list, dq_inuse) {<br />
/* finds dquot X */<br />
dquot_active(X) -> true<br />
atomic_inc(&X->dq_count);<br />
}<br />
spin_unlock(&dq_list_lock);<br />
spin_lock(&dq_list_lock);<br />
dquot = list_first_entry(&rls_head);<br />
WARN_ON_ONCE(atomic_read(&dquot->dq_count));<br />
<br />
The problem is not only a cosmetic one as under memory pressure the<br />
caller of dquot_scan_active() can end up working on freed dquot.<br />
<br />
Fix the problem by making sure the dquot is removed from releasing list<br />
when we acquire a reference to it.
Impact
Base Score 3.x
7.80
Severity 3.x
HIGH
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.19.297 (including) | 4.20 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.4.259 (including) | 5.5 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.10.199 (including) | 5.10.258 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.15.136 (including) | 5.15.209 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.1.59 (including) | 6.1.175 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.5.8 (including) | 6.6 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.6.1 (including) | 6.6.141 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (including) | 6.12.91 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.18.33 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (including) | 7.0.10 (excluding) |
| cpe:2.3:o:linux:linux_kernel:6.6:-:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.6:rc6:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.6:rc7:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/2bdc80f4619411e5bd4a3ef23f51e14021ed457c
- https://git.kernel.org/stable/c/61e25f664dc2a08299e07d84c85776abc2350f75
- https://git.kernel.org/stable/c/6678dde265708003c2b42551af4a2e3cb05decd5
- https://git.kernel.org/stable/c/82cbdb4c1ebb5ea7d7bd45c18d3483b5bd32ebc1
- https://git.kernel.org/stable/c/ac8a2e0d287ebf35e5d7e51e260b4e146648ba4a
- https://git.kernel.org/stable/c/e93ab401da4b2e2c1b8ef2424de2f238d51c8b2d
- https://git.kernel.org/stable/c/f9438cb8c8ec3adc84b2b450a3aab0123d074c3b
- https://git.kernel.org/stable/c/fdd424d7c35633ac577fd87d1b043d1b8a6cd350



