[PATCH mptcp-next v6 00/14] mptcp: APIs and self-tests for userspace path management

Kishen Maloor posted 14 patches 2 years ago
Failed in applying to current master (apply log)
There is a newer version of this series
include/uapi/linux/mptcp.h                    |   7 +
net/mptcp/Makefile                            |   2 +-
net/mptcp/pm.c                                |   1 +
net/mptcp/pm_netlink.c                        | 249 ++++--
net/mptcp/pm_userspace.c                      | 368 +++++++++
net/mptcp/protocol.c                          |   1 +
net/mptcp/protocol.h                          |  35 +-
net/mptcp/subflow.c                           |   2 +-
tools/testing/selftests/net/mptcp/pm_nl_ctl.c | 645 ++++++++++++++-
.../selftests/net/mptcp/userspace_pm.sh       | 771 ++++++++++++++++++
10 files changed, 1989 insertions(+), 92 deletions(-)
create mode 100644 net/mptcp/pm_userspace.c
create mode 100755 tools/testing/selftests/net/mptcp/userspace_pm.sh
[PATCH mptcp-next v6 00/14] mptcp: APIs and self-tests for userspace path management
Posted by Kishen Maloor 2 years ago
This patch series brings together the base functionality
and new netlink APIs for flexible path management from userspace.
Further it extends the MPTCP self-testing framework to support the new
netlink APIs along with the ability to capture MPTCP netlink events
to aid in functional/behavioral validations. Lastly, it adds a
self-testing script with a suite of test cases covering the entire
range of the new userspace path management capabilities.

Note: This series depends on the prior patchset "mptcp: fixes and
enhancements related to path management".

v5:
-Primary change over v4 is the reliance on userspace
managed listener sockets for receiving MPJ requests.
-Addressed CI reported issues.

v6:
-Put all distinct userspace PM related code into a separate compilation
unit: pm_userspace.c.
-Made a few internal helpers non-static (now declared in protocol.h) to
facilitate the above change.
-Use the pm spinlock instead of mptcp_data_lock() to synchronize
access to the per-msk local_addr_list.

Florian Westphal (2):
  mptcp: netlink: split mptcp_pm_parse_addr into two functions
  mptcp: netlink: allow userspace-driven subflow establishment

Kishen Maloor (12):
  mptcp: allow ADD_ADDR reissuance by userspace PMs
  mptcp: handle local addrs announced by userspace PMs
  mptcp: read attributes of addr entries managed by userspace PMs
  mptcp: netlink: Add MPTCP_PM_CMD_ANNOUNCE
  selftests: mptcp: support MPTCP_PM_CMD_ANNOUNCE
  mptcp: netlink: Add MPTCP_PM_CMD_REMOVE
  selftests: mptcp: support MPTCP_PM_CMD_REMOVE
  selftests: mptcp: support MPTCP_PM_CMD_SUBFLOW_CREATE
  selftests: mptcp: support MPTCP_PM_CMD_SUBFLOW_DESTROY
  selftests: mptcp: capture netlink events
  selftests: mptcp: create listeners to receive MPJs
  selftests: mptcp: functional tests for the userspace PM type

 include/uapi/linux/mptcp.h                    |   7 +
 net/mptcp/Makefile                            |   2 +-
 net/mptcp/pm.c                                |   1 +
 net/mptcp/pm_netlink.c                        | 249 ++++--
 net/mptcp/pm_userspace.c                      | 368 +++++++++
 net/mptcp/protocol.c                          |   1 +
 net/mptcp/protocol.h                          |  35 +-
 net/mptcp/subflow.c                           |   2 +-
 tools/testing/selftests/net/mptcp/pm_nl_ctl.c | 645 ++++++++++++++-
 .../selftests/net/mptcp/userspace_pm.sh       | 771 ++++++++++++++++++
 10 files changed, 1989 insertions(+), 92 deletions(-)
 create mode 100644 net/mptcp/pm_userspace.c
 create mode 100755 tools/testing/selftests/net/mptcp/userspace_pm.sh


base-commit: 8e1fca01ac83e646133bd647abdae74d6d6449ba
prerequisite-patch-id: ae42506131e46e03f020b722a856ace3304d53cc
prerequisite-patch-id: 5b76b4bf6d57927ad5590a1a9252fafda8d2a71a
prerequisite-patch-id: 4b1b25e0f761f6adf36c3d270faf86723019c2b4
prerequisite-patch-id: f7595549285182f6af1e46cb58e5ec317306a203
prerequisite-patch-id: 60e0fae2bad56928af787f76cfbf80a6e4a0f790
prerequisite-patch-id: a347386be396a7513fa37db5655441d459230ac6
--
2.31.1