CVE-2026-93229
Last modified
CVE-2026-93229 is a high-severity vulnerability rated 7.1/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: nfsd: add missing read barrier to rpc_status_get dumpit seqcount retry The hand-rolled seqcount-like protocol in nfsd_nl_rpc_status_get_dumpit() is missing a read memory barrier (smp_rmb) before its second counter check. The standard kernel read_seqcount_retry() includes smp_rmb() to ensure that all data reads complete before the counter is re-checked. Without this barrier, on weakly-ordered architectures (ARM, POWER), the CPU may reorder field reads past the second counter check, making the retry logic ineffective: it could observe a consistent counter pair while reading fields that have been concurrently modified by the writer. Add smp_rmb() before the second counter check to order the field reads ahead of it, matching the barrier semantics of the standard seqcount read-side.
Description
In the Linux kernel, the following vulnerability has been resolved: nfsd: add missing read barrier to rpc_status_get dumpit seqcount retry The hand-rolled seqcount-like protocol in nfsd_nl_rpc_status_get_dumpit() is missing a read memory barrier (smp_rmb) before its second counter check. The standard kernel read_seqcount_retry() includes smp_rmb() to ensure that all data reads complete before the counter is re-checked. Without this barrier, on weakly-ordered architectures (ARM, POWER), the CPU may reorder field reads past the second counter check, making the retry logic ineffective: it could observe a consistent counter pair while reading fields that have been concurrently modified by the writer. Add smp_rmb() before the second counter check to order the field reads ahead of it, matching the barrier semantics of the standard seqcount read-side. The begin-side smp_load_acquire() already pairs with the smp_store_release() in nfsd_dispatch(); with the smp_rmb() now ordering the field reads, the retry check no longer needs acquire semantics and reads the counter with a plain READ_ONCE(), as read_seqcount_retry() does. [ cel: Use READ_ONCE instead of smp_load_acquire() ]
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= bd9d6a3efa9709e653aafbeb859289feccb8e70c, < f501f2f4ec1d2dfe39e21c98630314074a9b30b0; >= bd9d6a3efa9709e653aafbeb859289feccb8e70c, < 1aea0482b98ecd7d0249204665f2ad4ad517f66b; >= bd9d6a3efa9709e653aafbeb859289feccb8e70c, < 9b5f6475006cd8e3b5b99b8eb3cd74dbb1ce9df8; >= bd9d6a3efa9709e653aafbeb859289feccb8e70c, < a71f161a857117e8e0264deb7d14fff5c98adcf5 |
| Linux | Linux | 6.7 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-93229?
How severe is CVE-2026-93229?
How do I fix CVE-2026-93229?
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-93223In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93224In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-93225In the Linux kernel, the following vulnerability has been re…7.4
- CVE-2026-93226In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93227In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93228In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-9323The urwid web display backend (urwid/display/web.py) generat…8.1
- CVE-2026-93230In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93231In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93232In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93233In the Linux kernel, the following vulnerability has been re…
- CVE-2026-93234In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-93229?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
