CVE-2026-23249: xfs: check for deleted cursors when revalidating two btrees
In the Linux kernel, the following vulnerability has been resolved:
xfs: check for deleted cursors when revalidating two btrees
The free space and inode btree repair functions will rebuild both btrees at the same time, after which it needs to evaluate both btrees to confirm that the corruptions are gone.
However, Jiaming Zhang ran syzbot and produced a crash in the second xchkallocbt call. His root-cause analysis is as follows (with minor corrections):
In xreprevalidateallocbt(), xchkallocbt() is called twice (first for BNOBT, second for CNTBT). The cause of this issue is that the first call nullified the cursor required by the second call.
Let's first enter xreprevalidateallocbt() via following call chain:
xfsfileioctl() -> xfsiocscrubvmetadata() -> xfsscrubmetadata() -> sc->ops->repaireval(sc) -> xreprevalidateallocbt()
xchkallocbt() is called twice in this function. In the first call:
/ Note that sc->sm->smtype is XFSSCRUBTYPEBNOPT now / xchkallocbt() -> xchkbtree() -> bs->scrubrec(bs, recp) -> xchkallocbtrec() -> xchkallocbtxref() -> xchkallocbtxrefother()
since smtype is XFSSCRUBTYPEBNOBT, pur is set to &sc->sa.cntcur. Kernel called xfsallocgetrec() and returned -EFSCORRUPTED. Call chain:
xfsallocgetrec() -> xfsbtreegetrec() -> xfsbtreecheckblock() -> (XFSISCORRUPT || XFSTESTERROR), the former is false and the latter is true, return -EFSCORRUPTED. This should be caused by ioctl$XFSIOCERRORINJECTION I guess.
Back to xchkallocbtxrefother(), after receiving -EFSCORRUPTED from xfsallocgetrec(), kernel called xchkshouldcheckxref(). In this function, curpp (points to sc->sa.cntcur) is nullified.
Back to xreprevalidateallocbt(), since sc->sa.cntcur has been nullified, it then triggered null-ptr-deref via xchkallocbt() (second call) -> xchkbtree().
So. The bnobt revalidation failed on a cross-reference attempt, so we deleted the cntbt cursor, and then crashed when we tried to revalidate the cntbt. Therefore, check for a null cntbt cursor before that revalidation, and mark the repair incomplete. Also we can ignore the second tree entirely if the first tree was rebuilt but is already corrupt.
Apply the same fix to xreprevalidateiallocbt because it has the same problem.
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2026-23249?
CVE-2026-23249 has been classified as a moderate severity vulnerability.
How do I fix CVE-2026-23249?
To fix CVE-2026-23249, update your Linux kernel to the latest version that includes the security patch.
What software is affected by CVE-2026-23249?
CVE-2026-23249 affects the Linux kernel, specifically the xfs filesystem components.
What does CVE-2026-23249 affect in the xfs filesystem?
CVE-2026-23249 affects the handling of deleted cursors during the revalidation of two btrees.
Is there any risk of data loss related to CVE-2026-23249?
There is a potential risk of data corruption if the vulnerability is exploited on a system using affected versions of the Linux kernel.