CVE-2026-89690
Reported by Linux · Published September 11, 2026
In the Linux kernel, the following vulnerability has been resolved: nfsd: defer vfree of compound ops to fix rpc_status UAF The rpc_status netlink dumpit walks every in-flight svc_rqst under rcu_read_lock and, for NFSv4 requests, reads opnums out of args->ops[]. But args->ops is a separate vmalloc buffer freed synchronously by vfree() in nfsd4_release_compoundargs() at the end of every compound. The dumpit's rcu_read_lock pins the svc_rqst struct itself (freed via kfree_rcu), but nothing defers the vfree of the ops buffer across the RCU grace period. A concurrent compound completion can therefore free the buffer while the dumpit is reading it — a use-after-free on vmalloc memory. The trailing seqcount recheck (smp_load_acquire of rq_status_counter) cannot undo a load that already retired against freed memory. Fix by replacing vfree(args->ops) with kvfree_rcu_mightsleep(), which defers the free until after an RCU grace period. This makes the existing rcu_read_lock in the dumpit sufficient to protect the read. The tradeoff is that completed compound ops buffers (up to 200 * sizeof(struct nfsd4_op)) persist in memory slightly longer, across one grace period, before being reclaimed.
EPSS 0.16% · 5.4th percentile
Risk Scores
Affected Products
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | bd9d6a3efa9709e653aafbeb859289feccb8e70c, bd9d6a3efa9709e653aafbeb859289feccb8e70c, bd9d6a3efa9709e653aafbeb859289feccb8e70c |
| Linux | Linux | 6.7, 0, 6.12.109 |
| Linux | Linux | 7.3-rc1, bd9d6a3efa9709e653aafbeb859289feccb8e70c, bd9d6a3efa9709e653aafbeb859289feccb8e70c |
| linux | linux_kernel | 6.7, 6.7, 6.7 |
Timeline
- Sep 11, 2026 Coalition ESS Score
- Sep 11, 2026 CVE Published
- Sep 12, 2026 EPSS Score
- Sep 13, 2026 EPSS Score
- Sep 13, 2026 CVE Updated