CVE-2026-89788 PUBLISHED

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

Assigner: Linux
Reserved: 11.09.2026 Published: 16.09.2026 Updated: 16.09.2026

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

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

ksmbd_tree_conn_connect() publishes a new tree connection in sess->tree_conns with a single reference and returns its pointer to smb2_tree_connect(). 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 smb2_tree_connect+0xe3d/0xf90 smb2_tree_connect (fs/smb/server/smb2pdu.c:2872) handle_ksmbd_work process_one_work worker_thread kthread

After xa_store() succeeds, take a second reference before releasing tree_conns_lock. The original reference belongs to the xarray entry and the second belongs to the creating smb2_tree_connect() handler.

Keep the references balanced in every path:

  • On normal exit or an error after publication, smb2_tree_connect() drops its creator reference. Error cleanup also calls ksmbd_tree_conn_disconnect(), which drops the xarray reference only if it removes the exact entry.
  • SMB2 TREE_DISCONNECT 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 tree_conns_lock. 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 TREE_CONNECTED.

Metrics

CVSS Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CVSS Score: 9.8

AV:N - ksmbd is the in-kernel SMB server on TCP/445; the UAF is reached from remote SMB2 TREE_CONNECT racing SESSION_LOGOFF via ksmbd_conn_handler_loop() through handle_ksmbd_work(), smb2_tree_connect(), ksmbd_tree_conn_connect(), and ksmbd_tree_conn_session_logoff(). AC:L - The attacker drives both sides by issuing concurrent SMB2 TREE_CONNECT and SESSION_LOGOFF on their own connections (SMB3 multi-channel or parallel ksmbd-io work items). After xa_store() the object has one xarray ref, so logoff can free it while the handler still uses it; no victim timing or rare kernel config is required. PR:N - TREE_CONNECT and LOGOFF need a valid SMB2 session, but ksmbd supports guest/anonymous users and guest-ok shares (including IPC$); guest session setup skips NTLMSSP password verification, so a reasonable NAS/IoT deployment lets an unauthenticated client reach this path. UI:N - No victim action is required; the attacker programmatically issues SESSION_SETUP, TREE_CONNECT, and LOGOFF on their own SMB connections to trigger the race. S:U - The UAF corrupts ksmbd/kernel heap on the SMB server host and can escalate privileges within that kernel; it does not cross a VM, guest-to-host, container, or IOMMU/DMA security boundary. C:H - Use-after-free of struct ksmbd_tree_connect and its share_conf pointer: after logoff kfree's the published object, smb2_tree_connect still reads share flags and fields, enabling arbitrary kernel disclosure via heap reuse. I:H - The handler writes t_state, maximal_access, and posix_extensions into the freed object after xa_store(); with heap spray this yields arbitrary kernel writes and control-flow hijacking, matching High integrity for tree_conn UAF. A:H - KASAN reports slab-use-after-free in smb2_tree_connect on the ksmbd-io worker; the dangling tree_conn pointer causes a kernel oops or panic and is repeatable by resending TREE_CONNECT concurrently with LOGOFF.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 33b235a6e6ebe0f05f3586a71e8d281d00f71e2e to 4e30fbd26e84efa2e5cbec4eb11e126ac0c79313 (excl.)
  • affected from 33b235a6e6ebe0f05f3586a71e8d281d00f71e2e to b5ec6c462aab1062cf5d1e667ba7c6442f737055 (excl.)
  • Version dd45db4d9bbc8f122a9b4db5ce94ae29fcf03d3c is affected
  • Version 7b58ee8d0b91359554cf219cd4f33872ea2afd66 is affected
  • affected from 5.15.145 to 5.16 (excl.)
  • affected from 6.1.71 to 6.2 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 6.6 is affected
  • unaffected from 0 to 6.6 (excl.)
  • unaffected from 7.2.6 to 7.2.* (incl.)
  • unaffected from 7.3-rc2 to * (incl.)

References