Skip to content
Matthieu Baerts edited this page Feb 25, 2021 · 2 revisions

This list was maintained up to March 2020 and got confined at that too. This corresponds to what was needed to provide a base and having it included in the Linux kernel.

  • Community collaborated to merge single-subflow MPTCP for Linux v5.6

  • Florian contributed kselftests

  • Paolo worked on multiple subflow support, MPTCP-level reassembly, and MPTCP-level retransmissions.

  • Ossama released an mptcpd beta

  • Peter developed initial MP_JOIN support

  • Ossama updated mptcpd to match the generic netlink path management API used in mptcp_trunk

  • Matthieu set up code review and build automation using gerrithub.io

  • Paolo enhanced mptcp_sendmsg() to be faster, more efficient, and more robust.

  • Published RFC patch set to netdev.

  • Peter and Mat have published a patch set showing an MPTCP architecture with a separate socket type for the MPTCP connection and using in-kernel TCP sockets for subflows. This prototype can connect, receive, and transmit using a single-subflow IPv4 MPTCP connection. Patches are in git and gerrit (in gerrit, look at the "relation chain" in the upper left part of the page for the patch listing). RFCv10 was the basis for the code in https://github.com/multipath-tcp/mptcp_net-next, and we are now adding fixes and new functionality as additional commits. Fixes will be squashed later on to prepare for submission to netdev.

  • Florian has contributed a kselftest implementation.

  • Ossama has developed a userspace path manager implementation: https://github.com/intel/mptcpd

  • Florian merged skb extension capability in the upstream kernel.

  • Matthieu shared a Tessares-authored generic netlink path manager patch set to mptcp-dev, and it has been merged to mptcp_trunk.

  • Ossama shared a generic netlink path management API proposal, which has been discussed and refined to align better with the generic netlink implementation on mptcp_trunk.

  • Stephan shared a userspace path manager draft implementation at https://github.com/brenns10/pathmand

  • Mat developed an extensible TCP option framework patch, and Christoph refactored upstream TCP-MD5 and SMC functionality to use it. The idea was to integrate some extensions in to TCP that had utility for existing functionality, but would also help integrate MPTCP. This RFC patch set was turned down by Dave Miller, but did give us useful guidance. (Patches in git)

  • Mat published a proposal for optionally extending sk_buff shared_info to carry MPTCP metadata. This was dropped in favor of skb extensions.

  • Rao has published an RFC patch set based on the multipath-tcp.org MPTCP implementation and the current upstream kernel, with modifications to make the TCP implementation extensible in a way that's useful for MPTCP.