PatchSiren cyber security CVE debrief
CVE-2026-46158 Linux CVE debrief
A reference counting bug in the Linux kernel's Multipath TCP (MPTCP) path manager could lead to socket reference leaks during ADD_ADDR retransmission. When an ADD_ADDR message is retransmitted, the socket reference is held via sk_reset_timer(). The original code contained direct return paths that bypassed the required sock_put() call to release this reference, creating a potential resource leak. The fix consolidates cleanup to a single exit label ensuring __sock_put() is always invoked.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- Unknown
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-05-28
- Original CVE updated
- 2026-05-28
- Advisory published
- 2026-05-28
- Advisory updated
- 2026-05-28
Who should care
Linux kernel maintainers, network administrators running MPTCP-enabled systems, and security teams tracking kernel networking subsystem vulnerabilities
Technical summary
The MPTCP (Multipath TCP) path manager in the Linux kernel contains a socket reference counting error in ADD_ADDR retransmission handling. When sk_reset_timer() holds a socket reference during retransmission, certain error return paths failed to call sock_put(), causing reference leaks. The fix introduces a unified exit label ensuring __sock_put() executes in all cases. The patch also removes a redundant NULL check and marks remaining unlikely conditions explicitly.
Defensive priority
medium
Recommended defensive actions
- Apply kernel patches from stable kernel Git repositories to ensure proper socket reference counting in MPTCP ADD_ADDR retransmission paths
- Monitor for kernel updates addressing this fix in distribution security advisories
- Review MPTCP-enabled systems for potential resource exhaustion symptoms if unpatched kernels are in use
Evidence notes
The vulnerability description indicates this is a resource leak fix in MPTCP path manager ADD_ADDR retransmission handling. The fix ensures socket reference counting is properly decremented in all code paths by using a centralized exit label. The description notes the !msk check was removed as unreachable, and remaining checks marked as unlikely().
Official resources
-
CVE-2026-46158 CVE record
CVE.org
-
CVE-2026-46158 NVD detail
NVD
-
Source item URL
nvd_modified
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
2026-05-28