linux-cp: Basic MPLS support. 02/38702/19
authorAdrian Pistol <vifino@posteo.net>
Wed, 7 Jun 2023 13:28:17 +0000 (15:28 +0200)
committerMatthew Smith <mgsmith@netgate.com>
Tue, 11 Jul 2023 17:09:25 +0000 (17:09 +0000)
commit44b3abe86ab49a35403ba8d3938955549e392d22
treef8dda9648b065b20c8226a557dd2745861d2c095
parentff27c9f8ecb08ff0f5b98332975733e8bab125f1
linux-cp: Basic MPLS support.

1) Imports ENCAP_MPLS labels from IPv4/IPv6 routes.
Note that this requires libnl 3.6.0 or newer.

In previous patches, the fib_path_ext_t had a path ID of -1.
After a long investigation, it turned out to be caused by route weight
being set to 0. There is a comment explaining more details.

2) Handles MPLS routes.
MPLS routes were wrongly added as IPv4 routes before.

POP and SWAP are now both supported.
All the routes are installed as NON-EOS and EOS routes,
as the Linux kernel does not differentiate.

EOS POP used in PHP uses the next-hop address family
to determine the resulting address family.

This patch is sufficient for P setups.
PE setups with implicit null should also function okay, as long as a
seperate label gets programmed per address family.

PE setups with explicit null will also forward packets,
but punting is a bit odd and needs MPLS input enabled on the LCP host
device.

3) Propagate MPLS input state to LCP Pair and Linux.
Since the Linux kernel uses the MPLS routes itself,
the LCP pair tap needs MPLS enabled to allow host originated packets.

This also syncs the Linux `net.mpls.conf.<host_if>.input` sysctl to
allow punted packets to have MPLS labels, mostly explicit nulls.

In addition, a special feature is enabled to cross connect MPLS packets
coming from Linux directly to interface-output untouched.

Make sure to enable MPLS/add a table in VPP first and load the
MPLS kernel modules!!

Type: feature
Change-Id: Ie4184bb4cc96905bf8b483a27e7ca6d251697374
Signed-off-by: Adrian Pistol <vifino@posteo.net>
Signed-off-by: Pim van Pelt <pim@ipng.nl>
src/plugins/linux-cp/CMakeLists.txt
src/plugins/linux-cp/FEATURE.yaml
src/plugins/linux-cp/lcp_mpls_sync.c [new file with mode: 0644]
src/plugins/linux-cp/lcp_node.c
src/plugins/linux-cp/lcp_router.c