PT-2026-90261 · Linux · Linux
CVE-2026-89545
·
Published
2026-09-11
·
Updated
2026-09-11
None
No severity ratings or metrics are available. When they are, we'll update the corresponding info on the page.
In the Linux kernel, the following vulnerability has been resolved:
sunrpc: defer rq argp and rq resp free until after RCU grace period
svc rqst free() frees rqstp->rq argp and rqstp->rq resp synchronously
via kfree(), but defers the rqstp struct free via kfree rcu(). After
svc exit thread() calls list del rcu() and svc rqst free(), there is
a window where RCU readers that started before list del rcu() can still
traverse the thread list and find the rqstp. These readers (e.g.
nfsd nl rpc status get dumpit()) dereference rqstp->rq argp, which has
already been freed — a use-after-free.
Fix this by moving the kfree of rq argp and rq resp into an explicit
call rcu() callback alongside the struct free. Resources not accessed
by RCU readers (bvec, buffer pages, scratch folio, auth data) remain
synchronously freed.
Found an issue in the description? Have something to add? Feel free to write us 👾
Related Identifiers
Affected Products
Linux