CVE-2026-89663
Last modified
CVE-2026-89663 is a high-severity vulnerability rated 8.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: nfsd: revoke copy-notify stateids before dropping their reference Copy-notify stateids live in the s2s_cp_stateids IDR and on their parent stid's sc_cp_list, pinned by a single membership reference. _free_cpntf_state_locked() only unlinks an entry once its refcount reaches zero, so any revoke path that runs while a concurrent find_cpntf_state()/manage_cpntf_state() holder has elevated cs_count drops the reference without unlinking, leaving the entry discoverable with its membership reference already consumed. A second revoke or a laundromat tick then frees it while the reader still holds the pointer -- a KASAN-detectable use-after-free at the reader's nfs4_put_cpntf_state(). This affected all three revoke paths: - The parent-stid drain (nfs4_free_cpntf_statelist()) repeatedly called _free_cpntf_state_locked() on the first list entry; a holder that had bumped cs_count made it return early, so the next iteration re-decremented and burned the holder's reference. - OFFLOAD_CANCEL (manage_cpntf_state()) and laundromat expiry likewise used _free_cpntf_state_locked() and could drop 2->1 without unlinking. Add revoke_cpntf_state_locked(), which unhashes the entry from the IDR and sc_cp_list first (deferring the final free to any holder), and use it from all three revoke paths. EPSS estimates a 0.40% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: nfsd: revoke copy-notify stateids before dropping their reference Copy-notify stateids live in the s2s_cp_stateids IDR and on their parent stid's sc_cp_list, pinned by a single membership reference. _free_cpntf_state_locked() only unlinks an entry once its refcount reaches zero, so any revoke path that runs while a concurrent find_cpntf_state()/manage_cpntf_state() holder has elevated cs_count drops the reference without unlinking, leaving the entry discoverable with its membership reference already consumed. A second revoke or a laundromat tick then frees it while the reader still holds the pointer -- a KASAN-detectable use-after-free at the reader's nfs4_put_cpntf_state(). This affected all three revoke paths: - The parent-stid drain (nfs4_free_cpntf_statelist()) repeatedly called _free_cpntf_state_locked() on the first list entry; a holder that had bumped cs_count made it return early, so the next iteration re-decremented and burned the holder's reference. - OFFLOAD_CANCEL (manage_cpntf_state()) and laundromat expiry likewise used _free_cpntf_state_locked() and could drop 2->1 without unlinking. Add revoke_cpntf_state_locked(), which unhashes the entry from the IDR and sc_cp_list first (deferring the final free to any holder), and use it from all three revoke paths. The drain now walks with list_for_each_entry_safe() and revokes each entry unconditionally, so it terminates in one pass per entry regardless of cs_count. The unhash is gated on !list_empty(&cps->cp_list); the idr_remove() gate matters because idr_alloc_cyclic() may have recycled the so_id by then. Keep _free_cpntf_state_locked() for the reference-holder put path only, where a concurrent revoke may already have unlinked the entry (its list_del_init() then a no-op).
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 624322f1adc58acd0b69f77a6ddc764207e97241, < 5f00e0ab4de45d4f9e4bd0883cf2517acf63fc0d; >= 624322f1adc58acd0b69f77a6ddc764207e97241, < 06a62f6dbc60791f4229c6950b1eec6b18df9af1; >= 624322f1adc58acd0b69f77a6ddc764207e97241, < a1fca0f7bbb7b100a39c7ba8dd7922c87c4237a3; >= 624322f1adc58acd0b69f77a6ddc764207e97241, < caddbeffab1eaba1d2bcf5ceda35547863466705; >= 624322f1adc58acd0b69f77a6ddc764207e97241, < 6b8149448cdcb476fba4559d1ecc247efee9971b; >= 624322f1adc58acd0b69f77a6ddc764207e97241, < b56d2c5f01cddbeca7d11cce81d97db4ec9a464f; >= 624322f1adc58acd0b69f77a6ddc764207e97241, < ff8a3cff02b92b2a82f1a9876038fcf953ae9c25; >= 624322f1adc58acd0b69f77a6ddc764207e97241, < 3b0c3595db99bb4bebd7c8aa8a36f3c50e411bb7 |
| Linux | Linux | 5.6 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89663?
How severe is CVE-2026-89663?
How do I fix CVE-2026-89663?
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-89658In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89659In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-8966Information disclosure in the IP Protection component. This …7.5
- CVE-2026-89660In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89661In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89662In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89664In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-89665In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-89666In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89667In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-89668In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89669In the Linux kernel, the following vulnerability has been re…9.8
Are you affected by CVE-2026-89663?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
