CVE-2026-53050
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedIn 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.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceA race condition in the Linux kernel's disk quota subsystem allows dquot_scan_active() to access a dquot structure that is simultaneously being released by quota_release_workfn(). The releasing dquot still has DQ_ACTIVE_B flag set while being removed from the active list, leading to a use-after-free vulnerability where the caller can work on a freed dquot under memory pressure.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data>= 4.19.297, < 4.20>= 5.4.259, < 5.5>= 5.10.199, < 5.10.258>= 5.15.136, < 5.15.209>= 6.1.59, < 6.1.175>= 6.5.8, < 6.6>= 6.6.1, < 6.6.141>= 6.7, < 6.12.91>= 6.13, < 6.18.33>= 6.19, < 7.0.10= 6.6CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Local
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify your kernel versionRun 'uname -r' or check /proc/version to obtain the running kernel versionAffected if The kernel version is older than the patched version containing the fix for the dquot race condition (specific version varies by distribution; compare against your distribution's security advisories)
-
Verify quota subsystem is enabledCheck if quota support is built into or loaded for your system: look for 'quota' in /proc/filesystems, or check for /etc/fstab entries with 'usrquota' or 'grpquota' options, or run 'quotacheck -cu' to see if quota is actively usedAffected if Quotas are enabled and in use on the system (the vulnerability only affects systems using disk quotas)
-
Confirm the dquot module or code path is presentVerify the kernel was built with CONFIG_QUOTA support: grep -i quota /boot/config-$(uname -r) or check /proc/config.gz if availableAffected if CONFIG_QUOTA is set to 'y' or 'm' in the kernel configuration (vulnerable code path exists)
-
Check for active quota usageRun 'quota -u <user>' or 'quota -g <group>' to see if quota accounting is active; also check 'repquota -a' to list users with quota usageAffected if There are actively tracked quotas (the race condition occurs during active quota release operations)
-
Review kernel dquot source for the fixInspect the kernel source code if accessible: look for the synchronized removal from the releasing list in dquot_scan_active() and quota_release_workfn() - the fix should show __list_del_entry or equivalent protection before reference acquisitionAffected if The source code shows the vulnerable pattern where reference acquisition happens before list removal (requires source inspection)
-
Check distribution security advisoriesConsult your Linux distribution's CVE database or security mailing list for announcements regarding this specific CVEAffected if Your distribution has issued a security advisory confirming your kernel version is affected
A system is affected if it runs a kernel version prior to the patched release, has CONFIG_QUOTA enabled, and actively uses disk quotas - the race condition occurs in the dquot reference handling during quota release operations.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scoped4.205.55.10.258
Update the Linux kernel to the version containing the fix. The fix ensures proper synchronization by removing the dquot from the releasing list when acquiring a reference, preventing the race condition.
Any stable Linux kernel version released after the fix was merged (check git.kernel.org for the specific commit)
- Upgrade the Linux kernel to a version that includes the fix for CVE-2026-53050
- The fix was merged into the Linux kernel source tree - obtain a kernel version that includes the commit resolving this quota race condition
- After kernel upgrade, verify the system is running the new kernel version using 'uname -r'
- Reboot the system to ensure the new kernel is loaded
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation3.0 h
- Implementation6.0 h
- Testing6.0 h
- Review / QA3.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,992.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-53050 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-53050 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data