CVE-2026-89478 PUBLISHED

sctp: drop a chunk if its transport was removed

Assigner: Linux
Reserved: 11.09.2026 Published: 11.09.2026 Updated: 13.09.2026

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

sctp: drop a chunk if its transport was removed

sctp_rcv() resolves the transport once per packet and leaves it in chunk->transport. The lookup reference, or the one sctp_add_backlog() takes if the socket is owned by userspace, keeps it around until the chunk has been processed.

An authenticated ASCONF DEL-IP can remove it in the meantime. sctp_assoc_rm_peer() takes the transport out of the association and calls sctp_transport_free(), which tags it dead and drops the reference the association held. There is a window on both paths: the packet can sit on the socket backlog, and on the direct path the lookup completes before bh_lock_sock().

The DATA chunk in that packet puts the removed transport back into asoc->peer.last_data_from. Once the packet is done that reference goes away and the transport is freed by RCU, so the next delayed SACK carries the pointer into the SACK chunk and sctp_outq_select_transport() reads the freed transport's state.

Drop the chunk in sctp_inq_push(), next to the existing rcvr->dead check. Both paths reach it with the association's socket lock held. The peer retransmits it.

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 - A remote SCTP peer reaches the bug via received packets in sctp_rcv() on internet-facing SCTP servers and telecom endpoints; DATA that already resolved a transport is processed after an authenticated ASCONF DEL-IP (or COOKIE-ECHO restart) has removed that peer. AC:L - The attacker controls both sides of the race by sending ASCONF DEL-IP (or a restart that calls sctp_assoc_rm_peer) and a DATA chunk whose lookup already holds the doomed transport; the backlog path is FIFO-deterministic while the socket is in a syscall, and the direct path is a bh_lock_sock race the attacker creates. PR:N - Exploitation requires only a network-reachable established SCTP association; no local Linux credentials, capabilities, or namespaces are needed, and SCTP-AUTH keys used for ASCONF come from the handshake the peer itself performs. UI:N - Inbound SCTP packets are processed automatically in softirq or socket backlog on a listening or already-associated endpoint; no victim user action such as opening a file or mounting a device is required. S:U - Impact is kernel memory corruption and potential privilege escalation within the host SCTP stack; it does not cross a VM, IOMMU, or other security-authority boundary. C:H - DATA processing plants the removed transport into asoc->peer.last_data_from; after the lookup reference is dropped the object is RCU-freed, and the next delayed SACK dereferences the freed sctp_transport in sctp_outq_select_transport(), a UAF that enables arbitrary kernel disclosure via heap grooming. I:H - sctp_outq_select_transport() does list_add_tail() into the freed send_ready field, and sctp_packet_config()/sctp_transport_burst_limited() write vtag, pathmtu, cwnd, and burst_limited into the reclaimed slab object, yielding arbitrary write and control-flow hijack primitives. A:H - Dereferencing the freed transport during delayed SACK transmission can immediately oops or panic the kernel, and the UAF can be triggered repeatedly by a malicious SCTP peer.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 to c6c86a5e62a4fec36692ddd64b9144b660f71f96 (excl.)
  • affected from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 to 1035bdef1efb9b1076d1a57b81e08c637ff08ecc (excl.)
  • affected from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 to 3537961df2163258bddc230db0e18dc14e925ea6 (excl.)
  • affected from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 to 03a9d10ecf71f54b2af8020935f2033d4a132be5 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 2.6.12 is affected
  • unaffected from 0 to 2.6.12 (excl.)
  • unaffected from 6.12.109 to 6.12.* (incl.)
  • unaffected from 6.18.50 to 6.18.* (incl.)
  • unaffected from 7.2.4 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References