In the Linux kernel, the following vulnerability has been resolved:
mptcp: move subflow cleanup in mptcpdestroycommon()
If the mptcp socket creation fails due to a CGROUPINETSOCKCREATE eBPF program, the MPTCP protocol ends-up leaking all the subflows: the related cleanup happens in _mptcpdestroysock() that is not invoked in such code path.
Address the issue moving the subflow sockets cleanup in the mptcpdestroycommon() helper, which is invoked in every msk cleanup path.
Additionally get rid of the intermediate listspliceinit step, which is an unneeded relic from the past.
The issue is present since before the reported root cause commit, but any attempt to backport the fix before that hash will require a complete rewrite.