CVE-2026-89788: ksmbd: fix tree connection use-after-free in smb2_tree_connect()

Published Sep 16, 2026
·
Updated

In the Linux kernel, the following vulnerability has been resolved:

ksmbd: fix tree connection use-after-free in smb2treeconnect()

ksmbdtreeconnconnect() publishes a new tree connection in sess->treeconns with a single reference and returns its pointer to smb2treeconnect(). The handler continues to initialize the object and build the response after publication. A concurrent session logoff can erase the connection and drop that reference, freeing the object while the handler still uses it.

BUG: KASAN: slab-use-after-free in smb2treeconnect+0xe3d/0xf90 smb2treeconnect (fs/smb/server/smb2pdu.c:2872) handleksmbdwork processonework workerthread kthread

After xastore() succeeds, take a second reference before releasing treeconnslock. The original reference belongs to the xarray entry and the second belongs to the creating smb2treeconnect() handler.

Keep the references balanced in every path:

- On normal exit or an error after publication, smb2treeconnect() drops its creator reference. Error cleanup also calls ksmbdtreeconndisconnect(), which drops the xarray reference only if it removes the exact entry. - SMB2 TREEDISCONNECT uses the same helper to remove the entry and drop its xarray reference. The request's existing lookup reference remains owned by the request and is released by the existing cleanup. - Session LOGOFF removes each entry and drops its xarray reference. If it wins the race, later cleanup sees that the entry is gone and does not drop that reference again.

To enforce this ownership, claim the disconnected state and erase the exact entry atomically under treeconnslock. This guarantees one drop for the xarray reference and one drop by each in-flight user, regardless of which teardown path wins. If logoff removes the entry before initialization completes, fail the connect instead of marking the detached object TREECONNECTED.

Affected Software

1 affected component
Linux Linux kernel=

Event History

Sep 16, 2026
CVE Published
via MITRE·08:48 AM
Data Sourced
via MITRE·08:48 AM
Description

Frequently Asked Questions

1

Which systems are exposed to this race condition?

Systems running the Linux kernel's ksmbd SMB server are exposed when they process SMB2 tree connections. The race requires a session logoff to occur concurrently with a tree-connect request.

2

What must occur for the use-after-free to be triggered?

A tree connection must be published in the session's tree connection table, then a concurrent session logoff must remove that connection and drop its reference while the SMB2 tree-connect handler is still initializing and using it.

3

How might an affected system present during testing or diagnostics?

The reported symptom is a KASAN slab-use-after-free in smb2_tree_connect(), with a stack involving handle_ksmbd_work, process_one_work, worker_thread, and kthread.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203