2019-10-31 13:31:07 -05:00
|
|
|
#!/usr/bin/env python3
|
2017-02-20 18:23:41 -08:00
|
|
|
|
2019-05-24 06:36:26 -04:00
|
|
|
import ipaddress
|
2017-02-20 18:23:41 -08:00
|
|
|
import unittest
|
|
|
|
|
2023-08-31 00:47:44 -04:00
|
|
|
from framework import VppTestCase
|
|
|
|
from asfframework import VppTestRunner
|
2019-02-28 09:00:09 -08:00
|
|
|
from vpp_ip import DpoProto
|
2018-09-05 15:42:26 -07:00
|
|
|
from vpp_ip_route import VppIpRoute, VppRoutePath
|
2019-10-01 13:00:22 +00:00
|
|
|
from util import fragment_rfc791, fragment_rfc8200
|
2024-03-11 10:38:46 +00:00
|
|
|
from config import config
|
2019-03-10 10:04:23 -07:00
|
|
|
|
|
|
|
import scapy.compat
|
2019-12-13 23:39:35 +00:00
|
|
|
from scapy.layers.l2 import Ether
|
|
|
|
from scapy.packet import Raw
|
2020-01-17 08:31:04 -05:00
|
|
|
from scapy.layers.inet import IP, UDP, ICMP, TCP
|
2022-04-26 19:02:15 +02:00
|
|
|
from scapy.layers.inet6 import (
|
|
|
|
IPv6,
|
|
|
|
ICMPv6TimeExceeded,
|
|
|
|
IPv6ExtHdrFragment,
|
|
|
|
ICMPv6EchoRequest,
|
|
|
|
ICMPv6DestUnreach,
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
|
|
|
|
2024-03-11 10:38:46 +00:00
|
|
|
@unittest.skipIf("map" in config.excluded_plugins, "Exclude MAP plugin tests")
|
2017-02-20 18:23:41 -08:00
|
|
|
class TestMAP(VppTestCase):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""MAP Test Case"""
|
2017-02-20 18:23:41 -08:00
|
|
|
|
2019-03-12 19:23:27 -07:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
super(TestMAP, cls).setUpClass()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
super(TestMAP, cls).tearDownClass()
|
|
|
|
|
2017-02-20 18:23:41 -08:00
|
|
|
def setUp(self):
|
|
|
|
super(TestMAP, self).setUp()
|
|
|
|
|
|
|
|
# create 2 pg interfaces
|
|
|
|
self.create_pg_interfaces(range(4))
|
|
|
|
|
|
|
|
# pg0 is 'inside' IPv4
|
|
|
|
self.pg0.admin_up()
|
|
|
|
self.pg0.config_ip4()
|
|
|
|
self.pg0.resolve_arp()
|
2020-02-11 09:57:09 -05:00
|
|
|
self.pg0.generate_remote_hosts(2)
|
|
|
|
self.pg0.configure_ipv4_neighbors()
|
2017-02-20 18:23:41 -08:00
|
|
|
|
|
|
|
# pg1 is 'outside' IPv6
|
|
|
|
self.pg1.admin_up()
|
|
|
|
self.pg1.config_ip6()
|
|
|
|
self.pg1.generate_remote_hosts(4)
|
|
|
|
self.pg1.configure_ipv6_neighbors()
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
super(TestMAP, self).tearDown()
|
2023-08-01 11:29:15 +02:00
|
|
|
|
2017-02-20 18:23:41 -08:00
|
|
|
for i in self.pg_interfaces:
|
2023-08-01 11:29:15 +02:00
|
|
|
for t in (0, 1):
|
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=0, sw_if_index=i.sw_if_index, is_translation=t
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
i.unconfig_ip4()
|
|
|
|
i.unconfig_ip6()
|
|
|
|
i.admin_down()
|
|
|
|
|
2019-08-21 10:53:14 +00:00
|
|
|
def send_and_assert_encapped(self, packets, ip6_src, ip6_dst, dmac=None):
|
2017-02-20 18:23:41 -08:00
|
|
|
if not dmac:
|
|
|
|
dmac = self.pg1.remote_mac
|
|
|
|
|
2019-08-21 10:53:14 +00:00
|
|
|
self.pg0.add_stream(packets)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
|
|
|
self.pg_enable_capture(self.pg_interfaces)
|
|
|
|
self.pg_start()
|
|
|
|
|
2019-08-21 10:53:14 +00:00
|
|
|
capture = self.pg1.get_capture(len(packets))
|
|
|
|
for rx, tx in zip(capture, packets):
|
|
|
|
self.assertEqual(rx[Ether].dst, dmac)
|
|
|
|
self.assertEqual(rx[IP].src, tx[IP].src)
|
|
|
|
self.assertEqual(rx[IPv6].src, ip6_src)
|
|
|
|
self.assertEqual(rx[IPv6].dst, ip6_dst)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
def send_and_assert_encapped_one(self, packet, ip6_src, ip6_dst, dmac=None):
|
2019-08-21 10:53:14 +00:00
|
|
|
return self.send_and_assert_encapped([packet], ip6_src, ip6_dst, dmac)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
2019-05-24 06:36:26 -04:00
|
|
|
def test_api_map_domain_dump(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
map_dst = "2001::/64"
|
|
|
|
map_src = "3000::1/128"
|
|
|
|
client_pfx = "192.168.0.0/16"
|
|
|
|
tag = "MAP-E tag."
|
|
|
|
index = self.vapi.map_add_domain(
|
|
|
|
ip4_prefix=client_pfx, ip6_prefix=map_dst, ip6_src=map_src, tag=tag
|
|
|
|
).index
|
2019-05-24 06:36:26 -04:00
|
|
|
rv = self.vapi.map_domain_dump()
|
|
|
|
|
|
|
|
# restore the state early so as to not impact subsequent tests.
|
|
|
|
# If an assert fails, we will not get the chance to do it at the end.
|
|
|
|
self.vapi.map_del_domain(index=index)
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
self.assertGreater(len(rv), 0, "Expected output from 'map_domain_dump'")
|
2019-05-24 06:36:26 -04:00
|
|
|
|
|
|
|
# typedefs are returned as ipaddress objects.
|
|
|
|
# wrap results in str() ugh! to avoid the need to call unicode.
|
|
|
|
self.assertEqual(str(rv[0].ip4_prefix), client_pfx)
|
|
|
|
self.assertEqual(str(rv[0].ip6_prefix), map_dst)
|
|
|
|
self.assertEqual(str(rv[0].ip6_src), map_src)
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
self.assertEqual(rv[0].tag, tag, "output produced incorrect tag value.")
|
2019-05-24 06:36:26 -04:00
|
|
|
|
2020-05-20 15:47:06 +02:00
|
|
|
def create_domains(self, ip4_pfx_str, ip6_pfx_str, ip6_src_str):
|
|
|
|
ip4_pfx = ipaddress.ip_network(ip4_pfx_str)
|
|
|
|
ip6_dst = ipaddress.ip_network(ip6_pfx_str)
|
|
|
|
mod = ip4_pfx.num_addresses / 1024
|
|
|
|
indicies = []
|
|
|
|
for i in range(ip4_pfx.num_addresses):
|
2022-04-26 19:02:15 +02:00
|
|
|
rv = self.vapi.map_add_domain(
|
|
|
|
ip6_prefix=ip6_pfx_str,
|
|
|
|
ip4_prefix=str(ip4_pfx[i]) + "/32",
|
|
|
|
ip6_src=ip6_src_str,
|
|
|
|
)
|
2020-05-20 15:47:06 +02:00
|
|
|
indicies.append(rv.index)
|
|
|
|
return indicies
|
|
|
|
|
|
|
|
def test_api_map_domains_get(self):
|
|
|
|
# Create a bunch of domains
|
2021-03-03 10:40:05 +01:00
|
|
|
no_domains = 4096 # This must be large enough to ensure VPP suspends
|
2022-04-26 19:02:15 +02:00
|
|
|
domains = self.create_domains("130.67.0.0/20", "2001::/32", "2001::1/128")
|
2021-03-03 10:40:05 +01:00
|
|
|
self.assertEqual(len(domains), no_domains)
|
2020-05-20 15:47:06 +02:00
|
|
|
|
|
|
|
d = []
|
|
|
|
cursor = 0
|
|
|
|
|
|
|
|
# Invalid cursor
|
2022-04-26 19:02:15 +02:00
|
|
|
rv, details = self.vapi.map_domains_get(cursor=no_domains + 10)
|
2020-05-20 15:47:06 +02:00
|
|
|
self.assertEqual(rv.retval, -7)
|
|
|
|
|
|
|
|
# Delete a domain in the middle of walk
|
|
|
|
rv, details = self.vapi.map_domains_get(cursor=0)
|
|
|
|
self.assertEqual(rv.retval, -165)
|
|
|
|
self.vapi.map_del_domain(index=rv.cursor)
|
|
|
|
domains.remove(rv.cursor)
|
|
|
|
|
|
|
|
# Continue at point of deleted cursor
|
|
|
|
rv, details = self.vapi.map_domains_get(cursor=rv.cursor)
|
2021-03-30 00:51:41 +02:00
|
|
|
self.assertIn(rv.retval, [0, -165])
|
2020-05-20 15:47:06 +02:00
|
|
|
|
|
|
|
d = list(self.vapi.vpp.details_iter(self.vapi.map_domains_get))
|
2021-03-03 10:40:05 +01:00
|
|
|
self.assertEqual(len(d), no_domains - 1)
|
2020-05-20 15:47:06 +02:00
|
|
|
|
|
|
|
# Clean up
|
|
|
|
for i in domains:
|
|
|
|
self.vapi.map_del_domain(index=i)
|
|
|
|
|
2019-11-14 16:44:40 -06:00
|
|
|
def test_map_e_udp(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""MAP-E UDP"""
|
2017-02-20 18:23:41 -08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add a route to the MAP-BR
|
|
|
|
#
|
|
|
|
map_br_pfx = "2001::"
|
2019-08-21 10:53:14 +00:00
|
|
|
map_br_pfx_len = 32
|
2022-04-26 19:02:15 +02:00
|
|
|
map_route = VppIpRoute(
|
|
|
|
self,
|
|
|
|
map_br_pfx,
|
|
|
|
map_br_pfx_len,
|
|
|
|
[VppRoutePath(self.pg1.remote_ip6, self.pg1.sw_if_index)],
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
map_route.add_vpp_config()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Add a domain that maps from pg0 to pg1
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
map_dst = "2001::/32"
|
|
|
|
map_src = "3000::1/128"
|
|
|
|
client_pfx = "192.168.0.0/16"
|
|
|
|
map_translated_addr = "2001:0:101:7000:0:c0a8:101:7"
|
|
|
|
tag = "MAP-E tag."
|
|
|
|
self.vapi.map_add_domain(
|
|
|
|
ip4_prefix=client_pfx,
|
|
|
|
ip6_prefix=map_dst,
|
|
|
|
ip6_src=map_src,
|
|
|
|
ea_bits_len=20,
|
|
|
|
psid_offset=4,
|
|
|
|
psid_length=4,
|
|
|
|
tag=tag,
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
2019-08-21 10:53:14 +00:00
|
|
|
self.vapi.map_param_set_security_check(enable=1, fragments=1)
|
|
|
|
|
2018-12-20 11:47:30 -06:00
|
|
|
# Enable MAP on interface.
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg0.sw_if_index, is_translation=0
|
|
|
|
)
|
2018-12-20 11:47:30 -06:00
|
|
|
|
|
|
|
# Ensure MAP doesn't steal all packets!
|
2022-04-26 19:02:15 +02:00
|
|
|
v4 = (
|
|
|
|
Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac)
|
|
|
|
/ IP(src=self.pg0.remote_ip4, dst=self.pg0.remote_ip4)
|
|
|
|
/ UDP(sport=20000, dport=10000)
|
|
|
|
/ Raw(b"\xa5" * 100)
|
|
|
|
)
|
2019-10-09 13:33:19 +02:00
|
|
|
rx = self.send_and_expect(self.pg0, v4 * 4, self.pg0)
|
2018-12-20 11:47:30 -06:00
|
|
|
v4_reply = v4[1]
|
|
|
|
v4_reply.ttl -= 1
|
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], v4_reply)
|
|
|
|
|
2017-02-20 18:23:41 -08:00
|
|
|
#
|
|
|
|
# Fire in a v4 packet that will be encapped to the BR
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
v4 = (
|
|
|
|
Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac)
|
|
|
|
/ IP(src=self.pg0.remote_ip4, dst="192.168.1.1")
|
|
|
|
/ UDP(sport=20000, dport=10000)
|
|
|
|
/ Raw(b"\xa5" * 100)
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
2019-10-09 13:33:19 +02:00
|
|
|
self.send_and_assert_encapped(v4 * 4, "3000::1", map_translated_addr)
|
2019-08-21 10:53:14 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Verify reordered fragments are able to pass as well
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
v4 = (
|
|
|
|
Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac)
|
|
|
|
/ IP(id=1, src=self.pg0.remote_ip4, dst="192.168.1.1")
|
|
|
|
/ UDP(sport=20000, dport=10000)
|
|
|
|
/ Raw(b"\xa5" * 1000)
|
|
|
|
)
|
2019-08-21 10:53:14 +00:00
|
|
|
|
|
|
|
frags = fragment_rfc791(v4, 400)
|
|
|
|
frags.reverse()
|
|
|
|
|
|
|
|
self.send_and_assert_encapped(frags, "3000::1", map_translated_addr)
|
|
|
|
|
2018-12-20 11:47:30 -06:00
|
|
|
# Enable MAP on interface.
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg1.sw_if_index, is_translation=0
|
|
|
|
)
|
2018-12-20 11:47:30 -06:00
|
|
|
|
|
|
|
# Ensure MAP doesn't steal all packets
|
2022-04-26 19:02:15 +02:00
|
|
|
v6 = (
|
|
|
|
Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
|
|
|
/ IPv6(src=self.pg1.remote_ip6, dst=self.pg1.remote_ip6)
|
|
|
|
/ UDP(sport=20000, dport=10000)
|
|
|
|
/ Raw(b"\xa5" * 100)
|
|
|
|
)
|
|
|
|
rx = self.send_and_expect(self.pg1, v6 * 1, self.pg1)
|
2018-12-20 11:47:30 -06:00
|
|
|
v6_reply = v6[1]
|
|
|
|
v6_reply.hlim -= 1
|
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], v6_reply)
|
|
|
|
|
2017-02-20 18:23:41 -08:00
|
|
|
#
|
|
|
|
# Fire in a V6 encapped packet.
|
2019-08-21 10:53:14 +00:00
|
|
|
# expect a decapped packet on the inside ip4 link
|
2017-02-20 18:23:41 -08:00
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
p = (
|
|
|
|
Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
|
|
|
/ IPv6(dst="3000::1", src=map_translated_addr)
|
|
|
|
/ IP(dst=self.pg0.remote_ip4, src="192.168.1.1")
|
|
|
|
/ UDP(sport=10000, dport=20000)
|
|
|
|
/ Raw(b"\xa5" * 100)
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
|
|
|
self.pg1.add_stream(p)
|
|
|
|
|
|
|
|
self.pg_enable_capture(self.pg_interfaces)
|
|
|
|
self.pg_start()
|
|
|
|
|
|
|
|
rx = self.pg0.get_capture(1)
|
|
|
|
rx = rx[0]
|
|
|
|
|
|
|
|
self.assertFalse(rx.haslayer(IPv6))
|
|
|
|
self.assertEqual(rx[IP].src, p[IP].src)
|
|
|
|
self.assertEqual(rx[IP].dst, p[IP].dst)
|
|
|
|
|
2019-08-21 10:53:14 +00:00
|
|
|
#
|
|
|
|
# Verify encapped reordered fragments pass as well
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
p = (
|
|
|
|
IP(id=1, dst=self.pg0.remote_ip4, src="192.168.1.1")
|
|
|
|
/ UDP(sport=10000, dport=20000)
|
|
|
|
/ Raw(b"\xa5" * 1500)
|
|
|
|
)
|
2019-08-21 10:53:14 +00:00
|
|
|
frags = fragment_rfc791(p, 400)
|
|
|
|
frags.reverse()
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
stream = (
|
|
|
|
Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
|
|
|
/ IPv6(dst="3000::1", src=map_translated_addr)
|
|
|
|
/ x
|
|
|
|
for x in frags
|
|
|
|
)
|
2019-08-21 10:53:14 +00:00
|
|
|
|
|
|
|
self.pg1.add_stream(stream)
|
|
|
|
|
|
|
|
self.pg_enable_capture(self.pg_interfaces)
|
|
|
|
self.pg_start()
|
2019-10-01 13:00:22 +00:00
|
|
|
|
|
|
|
rx = self.pg0.get_capture(len(frags))
|
|
|
|
|
|
|
|
for r in rx:
|
|
|
|
self.assertFalse(r.haslayer(IPv6))
|
|
|
|
self.assertEqual(r[IP].src, p[IP].src)
|
|
|
|
self.assertEqual(r[IP].dst, p[IP].dst)
|
|
|
|
|
|
|
|
# Verify that fragments pass even if ipv6 layer is fragmented
|
2022-04-26 19:02:15 +02:00
|
|
|
stream = (IPv6(dst="3000::1", src=map_translated_addr) / x for x in frags)
|
2019-10-01 13:00:22 +00:00
|
|
|
|
|
|
|
v6_stream = [
|
|
|
|
Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) / x
|
|
|
|
for i in range(len(frags))
|
|
|
|
for x in fragment_rfc8200(
|
2022-04-26 19:02:15 +02:00
|
|
|
IPv6(dst="3000::1", src=map_translated_addr) / frags[i], i, 200
|
|
|
|
)
|
|
|
|
]
|
2019-10-01 13:00:22 +00:00
|
|
|
|
|
|
|
self.pg1.add_stream(v6_stream)
|
|
|
|
|
|
|
|
self.pg_enable_capture(self.pg_interfaces)
|
|
|
|
self.pg_start()
|
2019-08-21 10:53:14 +00:00
|
|
|
|
|
|
|
rx = self.pg0.get_capture(len(frags))
|
|
|
|
|
|
|
|
for r in rx:
|
|
|
|
self.assertFalse(r.haslayer(IPv6))
|
|
|
|
self.assertEqual(r[IP].src, p[IP].src)
|
|
|
|
self.assertEqual(r[IP].dst, p[IP].dst)
|
|
|
|
|
2017-02-20 18:23:41 -08:00
|
|
|
#
|
|
|
|
# Pre-resolve. No API for this!!
|
|
|
|
#
|
|
|
|
self.vapi.ppcli("map params pre-resolve ip6-nh 4001::1")
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
self.send_and_assert_no_replies(self.pg0, v4, "resolved via default route")
|
2017-02-20 18:23:41 -08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add a route to 4001::1. Expect the encapped traffic to be
|
|
|
|
# sent via that routes next-hop
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
pre_res_route = VppIpRoute(
|
|
|
|
self,
|
|
|
|
"4001::1",
|
|
|
|
128,
|
|
|
|
[VppRoutePath(self.pg1.remote_hosts[2].ip6, self.pg1.sw_if_index)],
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
pre_res_route.add_vpp_config()
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
self.send_and_assert_encapped_one(
|
|
|
|
v4, "3000::1", map_translated_addr, dmac=self.pg1.remote_hosts[2].mac
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
|
|
|
#
|
|
|
|
# change the route to the pre-solved next-hop
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
pre_res_route.modify(
|
|
|
|
[VppRoutePath(self.pg1.remote_hosts[3].ip6, self.pg1.sw_if_index)]
|
|
|
|
)
|
2017-03-10 03:04:12 -08:00
|
|
|
pre_res_route.add_vpp_config()
|
2017-02-20 18:23:41 -08:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
self.send_and_assert_encapped_one(
|
|
|
|
v4, "3000::1", map_translated_addr, dmac=self.pg1.remote_hosts[3].mac
|
|
|
|
)
|
2017-02-20 18:23:41 -08:00
|
|
|
|
2017-03-10 03:04:12 -08:00
|
|
|
#
|
|
|
|
# cleanup. The test infra's object registry will ensure
|
|
|
|
# the route is really gone and thus that the unresolve worked.
|
|
|
|
#
|
|
|
|
pre_res_route.remove_vpp_config()
|
|
|
|
self.vapi.ppcli("map params pre-resolve del ip6-nh 4001::1")
|
|
|
|
|
2019-10-09 13:33:19 +02:00
|
|
|
def test_map_e_inner_frag(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""MAP-E Inner fragmentation"""
|
2019-10-09 13:33:19 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add a route to the MAP-BR
|
|
|
|
#
|
|
|
|
map_br_pfx = "2001::"
|
|
|
|
map_br_pfx_len = 32
|
2022-04-26 19:02:15 +02:00
|
|
|
map_route = VppIpRoute(
|
|
|
|
self,
|
|
|
|
map_br_pfx,
|
|
|
|
map_br_pfx_len,
|
|
|
|
[VppRoutePath(self.pg1.remote_ip6, self.pg1.sw_if_index)],
|
|
|
|
)
|
2019-10-09 13:33:19 +02:00
|
|
|
map_route.add_vpp_config()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Add a domain that maps from pg0 to pg1
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
map_dst = "2001::/32"
|
|
|
|
map_src = "3000::1/128"
|
|
|
|
client_pfx = "192.168.0.0/16"
|
|
|
|
map_translated_addr = "2001:0:101:7000:0:c0a8:101:7"
|
|
|
|
tag = "MAP-E tag."
|
|
|
|
self.vapi.map_add_domain(
|
|
|
|
ip4_prefix=client_pfx,
|
|
|
|
ip6_prefix=map_dst,
|
|
|
|
ip6_src=map_src,
|
|
|
|
ea_bits_len=20,
|
|
|
|
psid_offset=4,
|
|
|
|
psid_length=4,
|
|
|
|
mtu=1000,
|
|
|
|
tag=tag,
|
|
|
|
)
|
2019-10-09 13:33:19 +02:00
|
|
|
|
|
|
|
# Enable MAP on interface.
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg0.sw_if_index, is_translation=0
|
|
|
|
)
|
2019-10-09 13:33:19 +02:00
|
|
|
|
|
|
|
# Enable inner fragmentation
|
|
|
|
self.vapi.map_param_set_fragmentation(inner=1)
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
v4 = (
|
|
|
|
Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac)
|
|
|
|
/ IP(src=self.pg0.remote_ip4, dst="192.168.1.1")
|
|
|
|
/ UDP(sport=20000, dport=10000)
|
|
|
|
/ Raw(b"\xa5" * 1300)
|
|
|
|
)
|
2019-10-09 13:33:19 +02:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
self.pg_send(self.pg0, v4 * 1)
|
2019-10-09 13:33:19 +02:00
|
|
|
rx = self.pg1.get_capture(2)
|
|
|
|
|
2022-03-08 13:24:28 +00:00
|
|
|
# 1000-sizeof(ip6_header_t) = 960.
|
|
|
|
frags = fragment_rfc791(v4[1], 960)
|
2019-10-09 13:33:19 +02:00
|
|
|
frags[0].id = 0
|
|
|
|
frags[1].id = 0
|
|
|
|
frags[0].ttl -= 1
|
|
|
|
frags[1].ttl -= 1
|
|
|
|
frags[0].chksum = 0
|
|
|
|
frags[1].chksum = 0
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
v6_reply1 = IPv6(src="3000::1", dst=map_translated_addr, hlim=63) / frags[0]
|
|
|
|
v6_reply2 = IPv6(src="3000::1", dst=map_translated_addr, hlim=63) / frags[1]
|
2019-10-09 13:33:19 +02:00
|
|
|
rx[0][1].fl = 0
|
|
|
|
rx[1][1].fl = 0
|
|
|
|
rx[0][1][IP].id = 0
|
|
|
|
rx[1][1][IP].id = 0
|
|
|
|
rx[0][1][IP].chksum = 0
|
|
|
|
rx[1][1][IP].chksum = 0
|
|
|
|
|
|
|
|
self.validate(rx[0][1], v6_reply1)
|
|
|
|
self.validate(rx[1][1], v6_reply2)
|
|
|
|
|
2019-11-14 16:44:40 -06:00
|
|
|
def test_map_e_tcp_mss(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""MAP-E TCP MSS"""
|
2019-11-14 16:44:40 -06:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add a route to the MAP-BR
|
|
|
|
#
|
|
|
|
map_br_pfx = "2001::"
|
|
|
|
map_br_pfx_len = 32
|
2022-04-26 19:02:15 +02:00
|
|
|
map_route = VppIpRoute(
|
|
|
|
self,
|
|
|
|
map_br_pfx,
|
|
|
|
map_br_pfx_len,
|
|
|
|
[VppRoutePath(self.pg1.remote_ip6, self.pg1.sw_if_index)],
|
|
|
|
)
|
2019-11-14 16:44:40 -06:00
|
|
|
map_route.add_vpp_config()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Add a domain that maps from pg0 to pg1
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
map_dst = "2001::/32"
|
|
|
|
map_src = "3000::1/128"
|
|
|
|
client_pfx = "192.168.0.0/16"
|
|
|
|
map_translated_addr = "2001:0:101:5000:0:c0a8:101:5"
|
|
|
|
tag = "MAP-E TCP tag."
|
|
|
|
self.vapi.map_add_domain(
|
|
|
|
ip4_prefix=client_pfx,
|
|
|
|
ip6_prefix=map_dst,
|
|
|
|
ip6_src=map_src,
|
|
|
|
ea_bits_len=20,
|
|
|
|
psid_offset=4,
|
|
|
|
psid_length=4,
|
|
|
|
tag=tag,
|
|
|
|
)
|
2019-11-14 16:44:40 -06:00
|
|
|
|
|
|
|
# Enable MAP on pg0 interface.
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg0.sw_if_index, is_translation=0
|
|
|
|
)
|
2019-11-14 16:44:40 -06:00
|
|
|
|
|
|
|
# Enable MAP on pg1 interface.
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg1.sw_if_index, is_translation=0
|
|
|
|
)
|
2019-11-14 16:44:40 -06:00
|
|
|
|
|
|
|
# TCP MSS clamping
|
|
|
|
mss_clamp = 1300
|
|
|
|
self.vapi.map_param_set_tcp(mss_clamp)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Send a v4 packet that will be encapped.
|
|
|
|
#
|
ethernet: check destination mac for L3 in ethernet-input node
When the NIC does not support mac filter, we rely on ethernet-input
node to do the destination mac check, ie, when the interface is in L3,
the mac address for the packet must be the mac address of the
interface where the packet arrives. This works fine in ethernet-input
node when all packets in the frame might have different interfaces, ie,
ETH_INPUT_FRAME_F_SINGLE_SW_IF_ID is not set in the frame. However,
when all packets are having the same interface,
ETH_INPUT_FRAME_F_SINGLE_SW_IF_ID is set, ethernet-input node goes
through the optimized routine eth_input_single_int -> eth_input_process_frame.
That is where dmac check has a bug when all packets in the frame are
either, ip4, ip6, or mpls without vlan tags. Because without vlan tags,
the code handles all packets in fast path and ignores dmac check.
With vlan tags, the code goes to slow path where dmac check is handled
properly.
The fix is to check if we have a bad dmac in the fast path and force the
code to go to slow path which will handle dmac check properly.
Also do a wholesale correction on all the testcases which do not use
the proper dmac when sending L3 packets.
Type: fix
Change-Id: I73153a805cecdc24c4eefcc781676de04737ae2c
Signed-off-by: Steven Luong <sluong@cisco.com>
2024-04-19 09:49:20 -07:00
|
|
|
p_ether = Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip4 = IP(src=self.pg0.remote_ip4, dst="192.168.1.1")
|
|
|
|
p_tcp = TCP(sport=20000, dport=30000, flags="S", options=[("MSS", 1455)])
|
2019-11-14 16:44:40 -06:00
|
|
|
p4 = p_ether / p_ip4 / p_tcp
|
|
|
|
|
|
|
|
self.pg1.add_stream(p4)
|
|
|
|
self.pg_enable_capture(self.pg_interfaces)
|
|
|
|
self.pg_start()
|
|
|
|
|
|
|
|
rx = self.pg1.get_capture(1)
|
|
|
|
rx = rx[0]
|
|
|
|
|
|
|
|
self.assertTrue(rx.haslayer(IPv6))
|
|
|
|
self.assertEqual(rx[IP].src, p4[IP].src)
|
|
|
|
self.assertEqual(rx[IP].dst, p4[IP].dst)
|
|
|
|
self.assertEqual(rx[IPv6].src, "3000::1")
|
2022-04-26 19:02:15 +02:00
|
|
|
self.assertEqual(rx[TCP].options, TCP(options=[("MSS", mss_clamp)]).options)
|
2019-11-14 16:44:40 -06:00
|
|
|
|
2018-09-28 14:28:00 +02:00
|
|
|
def validate(self, rx, expected):
|
2019-03-10 10:04:23 -07:00
|
|
|
self.assertEqual(rx, expected.__class__(scapy.compat.raw(expected)))
|
2018-09-28 14:28:00 +02:00
|
|
|
|
2020-02-26 14:41:46 +03:00
|
|
|
def validate_frag6(self, p6_frag, p_ip6_expected):
|
2020-01-17 08:31:04 -05:00
|
|
|
self.assertFalse(p6_frag.haslayer(IP))
|
|
|
|
self.assertTrue(p6_frag.haslayer(IPv6))
|
|
|
|
self.assertTrue(p6_frag.haslayer(IPv6ExtHdrFragment))
|
|
|
|
self.assertEqual(p6_frag[IPv6].src, p_ip6_expected.src)
|
|
|
|
self.assertEqual(p6_frag[IPv6].dst, p_ip6_expected.dst)
|
|
|
|
|
2020-02-26 14:41:46 +03:00
|
|
|
def validate_frag_payload_len6(self, rx, proto, payload_len_expected):
|
2020-01-17 08:31:04 -05:00
|
|
|
payload_total = 0
|
|
|
|
for p in rx:
|
|
|
|
payload_total += p[IPv6].plen
|
|
|
|
|
|
|
|
# First fragment has proto
|
|
|
|
payload_total -= len(proto())
|
|
|
|
|
|
|
|
# Every fragment has IPv6 fragment header
|
|
|
|
payload_total -= len(IPv6ExtHdrFragment()) * len(rx)
|
|
|
|
|
|
|
|
self.assertEqual(payload_total, payload_len_expected)
|
|
|
|
|
2020-02-26 14:41:46 +03:00
|
|
|
def validate_frag4(self, p4_frag, p_ip4_expected):
|
|
|
|
self.assertFalse(p4_frag.haslayer(IPv6))
|
|
|
|
self.assertTrue(p4_frag.haslayer(IP))
|
|
|
|
self.assertTrue(p4_frag[IP].frag != 0 or p4_frag[IP].flags.MF)
|
|
|
|
self.assertEqual(p4_frag[IP].src, p_ip4_expected.src)
|
|
|
|
self.assertEqual(p4_frag[IP].dst, p_ip4_expected.dst)
|
|
|
|
|
|
|
|
def validate_frag_payload_len4(self, rx, proto, payload_len_expected):
|
|
|
|
payload_total = 0
|
|
|
|
for p in rx:
|
|
|
|
payload_total += len(p[IP].payload)
|
|
|
|
|
|
|
|
# First fragment has proto
|
|
|
|
payload_total -= len(proto())
|
|
|
|
|
|
|
|
self.assertEqual(payload_total, payload_len_expected)
|
|
|
|
|
2018-09-28 14:28:00 +02:00
|
|
|
def payload(self, len):
|
2022-04-26 19:02:15 +02:00
|
|
|
return "x" * len
|
2018-09-28 14:28:00 +02:00
|
|
|
|
|
|
|
def test_map_t(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""MAP-T"""
|
2018-09-28 14:28:00 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add a domain that maps from pg0 to pg1
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
map_dst = "2001:db8::/32"
|
|
|
|
map_src = "1234:5678:90ab:cdef::/64"
|
|
|
|
ip4_pfx = "192.168.0.0/24"
|
|
|
|
tag = "MAP-T Tag."
|
|
|
|
|
|
|
|
self.vapi.map_add_domain(
|
|
|
|
ip6_prefix=map_dst,
|
|
|
|
ip4_prefix=ip4_pfx,
|
|
|
|
ip6_src=map_src,
|
|
|
|
ea_bits_len=16,
|
|
|
|
psid_offset=6,
|
|
|
|
psid_length=4,
|
|
|
|
mtu=1500,
|
|
|
|
tag=tag,
|
|
|
|
)
|
2018-09-28 14:28:00 +02:00
|
|
|
|
|
|
|
# Enable MAP-T on interfaces.
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg0.sw_if_index, is_translation=1
|
|
|
|
)
|
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg1.sw_if_index, is_translation=1
|
|
|
|
)
|
2018-09-28 14:28:00 +02:00
|
|
|
|
2018-12-20 11:47:30 -06:00
|
|
|
# Ensure MAP doesn't steal all packets!
|
2022-04-26 19:02:15 +02:00
|
|
|
v4 = (
|
|
|
|
Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac)
|
|
|
|
/ IP(src=self.pg0.remote_ip4, dst=self.pg0.remote_ip4)
|
|
|
|
/ UDP(sport=20000, dport=10000)
|
|
|
|
/ Raw(b"\xa5" * 100)
|
|
|
|
)
|
|
|
|
rx = self.send_and_expect(self.pg0, v4 * 1, self.pg0)
|
2018-12-20 11:47:30 -06:00
|
|
|
v4_reply = v4[1]
|
|
|
|
v4_reply.ttl -= 1
|
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], v4_reply)
|
|
|
|
# Ensure MAP doesn't steal all packets
|
2022-04-26 19:02:15 +02:00
|
|
|
v6 = (
|
|
|
|
Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
|
|
|
/ IPv6(src=self.pg1.remote_ip6, dst=self.pg1.remote_ip6)
|
|
|
|
/ UDP(sport=20000, dport=10000)
|
|
|
|
/ Raw(b"\xa5" * 100)
|
|
|
|
)
|
|
|
|
rx = self.send_and_expect(self.pg1, v6 * 1, self.pg1)
|
2018-12-20 11:47:30 -06:00
|
|
|
v6_reply = v6[1]
|
|
|
|
v6_reply.hlim -= 1
|
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], v6_reply)
|
2018-09-28 14:28:00 +02:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
map_route = VppIpRoute(
|
|
|
|
self,
|
|
|
|
"2001:db8::",
|
|
|
|
32,
|
|
|
|
[
|
|
|
|
VppRoutePath(
|
|
|
|
self.pg1.remote_ip6,
|
|
|
|
self.pg1.sw_if_index,
|
|
|
|
proto=DpoProto.DPO_PROTO_IP6,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
2018-09-28 14:28:00 +02:00
|
|
|
map_route.add_vpp_config()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Send a v4 packet that will be translated
|
|
|
|
#
|
|
|
|
p_ether = Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip4 = IP(src=self.pg0.remote_ip4, dst="192.168.0.1")
|
|
|
|
payload = TCP(sport=0xABCD, dport=0xABCD)
|
|
|
|
|
|
|
|
p4 = p_ether / p_ip4 / payload
|
|
|
|
p6_translated = (
|
|
|
|
IPv6(src="1234:5678:90ab:cdef:ac:1001:200:0", dst="2001:db8:1f0::c0a8:1:f")
|
|
|
|
/ payload
|
|
|
|
)
|
2018-09-28 14:28:00 +02:00
|
|
|
p6_translated.hlim -= 1
|
2022-04-26 19:02:15 +02:00
|
|
|
rx = self.send_and_expect(self.pg0, p4 * 1, self.pg1)
|
2018-09-28 14:28:00 +02:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], p6_translated)
|
|
|
|
|
|
|
|
# Send back an IPv6 packet that will be "untranslated"
|
|
|
|
p_ether6 = Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip6 = IPv6(
|
|
|
|
src="2001:db8:1f0::c0a8:1:f", dst="1234:5678:90ab:cdef:ac:1001:200:0"
|
|
|
|
)
|
|
|
|
p6 = p_ether6 / p_ip6 / payload
|
|
|
|
p4_translated = IP(src="192.168.0.1", dst=self.pg0.remote_ip4) / payload
|
2018-09-28 14:28:00 +02:00
|
|
|
p4_translated.id = 0
|
|
|
|
p4_translated.ttl -= 1
|
2022-04-26 19:02:15 +02:00
|
|
|
rx = self.send_and_expect(self.pg1, p6 * 1, self.pg0)
|
2018-09-28 14:28:00 +02:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], p4_translated)
|
|
|
|
|
2020-01-23 08:09:40 -05:00
|
|
|
# IPv4 TTL=0
|
2022-04-26 19:02:15 +02:00
|
|
|
ip4_ttl_expired = IP(src=self.pg0.remote_ip4, dst="192.168.0.1", ttl=0)
|
|
|
|
p4 = p_ether / ip4_ttl_expired / payload
|
|
|
|
|
|
|
|
icmp4_reply = (
|
2024-02-12 10:08:03 +01:00
|
|
|
IP(id=0, ttl=255, src=self.pg0.local_ip4, dst=self.pg0.remote_ip4)
|
2022-04-26 19:02:15 +02:00
|
|
|
/ ICMP(type="time-exceeded", code="ttl-zero-during-transit")
|
|
|
|
/ IP(src=self.pg0.remote_ip4, dst="192.168.0.1", ttl=0)
|
|
|
|
/ payload
|
|
|
|
)
|
|
|
|
rx = self.send_and_expect(self.pg0, p4 * 1, self.pg0)
|
2018-09-28 14:28:00 +02:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], icmp4_reply)
|
|
|
|
|
2020-01-23 08:09:40 -05:00
|
|
|
# IPv4 TTL=1
|
2022-04-26 19:02:15 +02:00
|
|
|
ip4_ttl_expired = IP(src=self.pg0.remote_ip4, dst="192.168.0.1", ttl=1)
|
|
|
|
p4 = p_ether / ip4_ttl_expired / payload
|
|
|
|
|
|
|
|
icmp4_reply = (
|
2024-02-12 10:08:03 +01:00
|
|
|
IP(id=0, ttl=255, src=self.pg0.local_ip4, dst=self.pg0.remote_ip4)
|
2022-04-26 19:02:15 +02:00
|
|
|
/ ICMP(type="time-exceeded", code="ttl-zero-during-transit")
|
|
|
|
/ IP(src=self.pg0.remote_ip4, dst="192.168.0.1", ttl=1)
|
|
|
|
/ payload
|
|
|
|
)
|
|
|
|
rx = self.send_and_expect(self.pg0, p4 * 1, self.pg0)
|
2018-09-28 14:28:00 +02:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], icmp4_reply)
|
|
|
|
|
2020-03-18 08:20:08 -04:00
|
|
|
# IPv6 Hop limit at BR
|
2022-04-26 19:02:15 +02:00
|
|
|
ip6_hlim_expired = IPv6(
|
|
|
|
hlim=1,
|
|
|
|
src="2001:db8:1ab::c0a8:1:ab",
|
|
|
|
dst="1234:5678:90ab:cdef:ac:1001:200:0",
|
|
|
|
)
|
|
|
|
p6 = p_ether6 / ip6_hlim_expired / payload
|
|
|
|
|
|
|
|
icmp6_reply = (
|
|
|
|
IPv6(hlim=255, src=self.pg1.local_ip6, dst="2001:db8:1ab::c0a8:1:ab")
|
|
|
|
/ ICMPv6TimeExceeded(code=0)
|
|
|
|
/ IPv6(
|
|
|
|
src="2001:db8:1ab::c0a8:1:ab",
|
|
|
|
dst="1234:5678:90ab:cdef:ac:1001:200:0",
|
|
|
|
hlim=1,
|
|
|
|
)
|
|
|
|
/ payload
|
|
|
|
)
|
|
|
|
rx = self.send_and_expect(self.pg1, p6 * 1, self.pg1)
|
2020-03-18 08:20:08 -04:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], icmp6_reply)
|
|
|
|
|
|
|
|
# IPv6 Hop limit beyond BR
|
2022-04-26 19:02:15 +02:00
|
|
|
ip6_hlim_expired = IPv6(
|
|
|
|
hlim=0,
|
|
|
|
src="2001:db8:1ab::c0a8:1:ab",
|
|
|
|
dst="1234:5678:90ab:cdef:ac:1001:200:0",
|
|
|
|
)
|
|
|
|
p6 = p_ether6 / ip6_hlim_expired / payload
|
|
|
|
|
|
|
|
icmp6_reply = (
|
|
|
|
IPv6(hlim=255, src=self.pg1.local_ip6, dst="2001:db8:1ab::c0a8:1:ab")
|
|
|
|
/ ICMPv6TimeExceeded(code=0)
|
|
|
|
/ IPv6(
|
|
|
|
src="2001:db8:1ab::c0a8:1:ab",
|
|
|
|
dst="1234:5678:90ab:cdef:ac:1001:200:0",
|
|
|
|
hlim=0,
|
|
|
|
)
|
|
|
|
/ payload
|
|
|
|
)
|
|
|
|
rx = self.send_and_expect(self.pg1, p6 * 1, self.pg1)
|
2018-09-28 14:28:00 +02:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], icmp6_reply)
|
|
|
|
|
|
|
|
# IPv4 Well-known port
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip4 = IP(src=self.pg0.remote_ip4, dst="192.168.0.1")
|
2018-09-28 14:28:00 +02:00
|
|
|
payload = UDP(sport=200, dport=200)
|
2022-04-26 19:02:15 +02:00
|
|
|
p4 = p_ether / p_ip4 / payload
|
|
|
|
self.send_and_assert_no_replies(self.pg0, p4 * 1)
|
2018-09-28 14:28:00 +02:00
|
|
|
|
|
|
|
# IPv6 Well-known port
|
|
|
|
payload = UDP(sport=200, dport=200)
|
2022-04-26 19:02:15 +02:00
|
|
|
p6 = p_ether6 / p_ip6 / payload
|
|
|
|
self.send_and_assert_no_replies(self.pg1, p6 * 1)
|
2018-09-28 14:28:00 +02:00
|
|
|
|
2020-01-31 09:19:49 -05:00
|
|
|
# UDP packet fragmentation
|
2020-01-17 08:31:04 -05:00
|
|
|
payload_len = 1453
|
|
|
|
payload = UDP(sport=40000, dport=4000) / self.payload(payload_len)
|
2022-04-26 19:02:15 +02:00
|
|
|
p4 = p_ether / p_ip4 / payload
|
2018-09-28 14:28:00 +02:00
|
|
|
self.pg_enable_capture()
|
|
|
|
self.pg0.add_stream(p4)
|
|
|
|
self.pg_start()
|
|
|
|
rx = self.pg1.get_capture(2)
|
2020-01-17 08:31:04 -05:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip6_translated = IPv6(
|
|
|
|
src="1234:5678:90ab:cdef:ac:1001:200:0", dst="2001:db8:1e0::c0a8:1:e"
|
|
|
|
)
|
2018-09-28 14:28:00 +02:00
|
|
|
for p in rx:
|
2020-02-26 14:41:46 +03:00
|
|
|
self.validate_frag6(p, p_ip6_translated)
|
2020-01-17 08:31:04 -05:00
|
|
|
|
2020-02-26 14:41:46 +03:00
|
|
|
self.validate_frag_payload_len6(rx, UDP, payload_len)
|
2018-09-28 14:28:00 +02:00
|
|
|
|
2020-01-31 09:19:49 -05:00
|
|
|
# UDP packet fragmentation send fragments
|
2020-02-26 14:41:46 +03:00
|
|
|
payload_len = 1453
|
2020-01-17 08:31:04 -05:00
|
|
|
payload = UDP(sport=40000, dport=4000) / self.payload(payload_len)
|
2022-04-26 19:02:15 +02:00
|
|
|
p4 = p_ether / p_ip4 / payload
|
2020-01-17 08:31:04 -05:00
|
|
|
frags = fragment_rfc791(p4, fragsize=1000)
|
2018-09-28 14:28:00 +02:00
|
|
|
self.pg_enable_capture()
|
|
|
|
self.pg0.add_stream(frags)
|
|
|
|
self.pg_start()
|
|
|
|
rx = self.pg1.get_capture(2)
|
2020-01-17 08:31:04 -05:00
|
|
|
|
2018-09-28 14:28:00 +02:00
|
|
|
for p in rx:
|
2020-02-26 14:41:46 +03:00
|
|
|
self.validate_frag6(p, p_ip6_translated)
|
|
|
|
|
|
|
|
self.validate_frag_payload_len6(rx, UDP, payload_len)
|
|
|
|
|
|
|
|
# Send back an fragmented IPv6 UDP packet that will be "untranslated"
|
|
|
|
payload = UDP(sport=4000, dport=40000) / self.payload(payload_len)
|
|
|
|
p_ether6 = Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip6 = IPv6(
|
|
|
|
src="2001:db8:1e0::c0a8:1:e", dst="1234:5678:90ab:cdef:ac:1001:200:0"
|
|
|
|
)
|
|
|
|
p6 = p_ether6 / p_ip6 / payload
|
|
|
|
frags6 = fragment_rfc8200(p6, identification=0xDCBA, fragsize=1000)
|
|
|
|
|
|
|
|
p_ip4_translated = IP(src="192.168.0.1", dst=self.pg0.remote_ip4)
|
|
|
|
p4_translated = p_ip4_translated / payload
|
2020-02-26 14:41:46 +03:00
|
|
|
p4_translated.id = 0
|
|
|
|
p4_translated.ttl -= 1
|
|
|
|
|
|
|
|
self.pg_enable_capture()
|
|
|
|
self.pg1.add_stream(frags6)
|
|
|
|
self.pg_start()
|
|
|
|
rx = self.pg0.get_capture(2)
|
|
|
|
|
|
|
|
for p in rx:
|
|
|
|
self.validate_frag4(p, p4_translated)
|
2020-01-17 08:31:04 -05:00
|
|
|
|
2020-02-26 14:41:46 +03:00
|
|
|
self.validate_frag_payload_len4(rx, UDP, payload_len)
|
2019-09-23 09:00:30 +00:00
|
|
|
|
2020-01-31 09:19:49 -05:00
|
|
|
# ICMP packet fragmentation
|
|
|
|
payload = ICMP(id=6529) / self.payload(payload_len)
|
2022-04-26 19:02:15 +02:00
|
|
|
p4 = p_ether / p_ip4 / payload
|
2020-01-31 09:19:49 -05:00
|
|
|
self.pg_enable_capture()
|
|
|
|
self.pg0.add_stream(p4)
|
|
|
|
self.pg_start()
|
|
|
|
rx = self.pg1.get_capture(2)
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip6_translated = IPv6(
|
|
|
|
src="1234:5678:90ab:cdef:ac:1001:200:0", dst="2001:db8:160::c0a8:1:6"
|
|
|
|
)
|
2020-01-31 09:19:49 -05:00
|
|
|
for p in rx:
|
2020-02-26 14:41:46 +03:00
|
|
|
self.validate_frag6(p, p_ip6_translated)
|
2020-01-31 09:19:49 -05:00
|
|
|
|
2020-02-26 14:41:46 +03:00
|
|
|
self.validate_frag_payload_len6(rx, ICMPv6EchoRequest, payload_len)
|
2020-01-31 09:19:49 -05:00
|
|
|
|
|
|
|
# ICMP packet fragmentation send fragments
|
|
|
|
payload = ICMP(id=6529) / self.payload(payload_len)
|
2022-04-26 19:02:15 +02:00
|
|
|
p4 = p_ether / p_ip4 / payload
|
2020-01-31 09:19:49 -05:00
|
|
|
frags = fragment_rfc791(p4, fragsize=1000)
|
|
|
|
self.pg_enable_capture()
|
|
|
|
self.pg0.add_stream(frags)
|
|
|
|
self.pg_start()
|
|
|
|
rx = self.pg1.get_capture(2)
|
|
|
|
|
|
|
|
for p in rx:
|
2020-02-26 14:41:46 +03:00
|
|
|
self.validate_frag6(p, p_ip6_translated)
|
2020-01-31 09:19:49 -05:00
|
|
|
|
2020-02-26 14:41:46 +03:00
|
|
|
self.validate_frag_payload_len6(rx, ICMPv6EchoRequest, payload_len)
|
2018-09-28 14:28:00 +02:00
|
|
|
|
2018-12-20 11:47:30 -06:00
|
|
|
# TCP MSS clamping
|
|
|
|
self.vapi.map_param_set_tcp(1300)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Send a v4 TCP SYN packet that will be translated and MSS clamped
|
|
|
|
#
|
|
|
|
p_ether = Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip4 = IP(src=self.pg0.remote_ip4, dst="192.168.0.1")
|
|
|
|
payload = TCP(sport=0xABCD, dport=0xABCD, flags="S", options=[("MSS", 1460)])
|
|
|
|
|
|
|
|
p4 = p_ether / p_ip4 / payload
|
|
|
|
p6_translated = (
|
|
|
|
IPv6(src="1234:5678:90ab:cdef:ac:1001:200:0", dst="2001:db8:1f0::c0a8:1:f")
|
|
|
|
/ payload
|
|
|
|
)
|
2018-12-20 11:47:30 -06:00
|
|
|
p6_translated.hlim -= 1
|
2022-04-26 19:02:15 +02:00
|
|
|
p6_translated[TCP].options = [("MSS", 1300)]
|
|
|
|
rx = self.send_and_expect(self.pg0, p4 * 1, self.pg1)
|
2018-12-20 11:47:30 -06:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], p6_translated)
|
|
|
|
|
|
|
|
# Send back an IPv6 packet that will be "untranslated"
|
|
|
|
p_ether6 = Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip6 = IPv6(
|
|
|
|
src="2001:db8:1f0::c0a8:1:f", dst="1234:5678:90ab:cdef:ac:1001:200:0"
|
|
|
|
)
|
|
|
|
p6 = p_ether6 / p_ip6 / payload
|
|
|
|
p4_translated = IP(src="192.168.0.1", dst=self.pg0.remote_ip4) / payload
|
2018-12-20 11:47:30 -06:00
|
|
|
p4_translated.id = 0
|
|
|
|
p4_translated.ttl -= 1
|
2022-04-26 19:02:15 +02:00
|
|
|
p4_translated[TCP].options = [("MSS", 1300)]
|
|
|
|
rx = self.send_and_expect(self.pg1, p6 * 1, self.pg0)
|
2018-12-20 11:47:30 -06:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], p4_translated)
|
|
|
|
|
2020-02-05 09:05:06 -05:00
|
|
|
# TCP MSS clamping cleanup
|
|
|
|
self.vapi.map_param_set_tcp(0)
|
|
|
|
|
|
|
|
# Enable icmp6 param to get back ICMPv6 unreachable messages in case
|
|
|
|
# of security check fails
|
|
|
|
self.vapi.map_param_set_icmp6(enable_unreachable=1)
|
|
|
|
|
|
|
|
# Send back an IPv6 packet that will be droppped due to security
|
|
|
|
# check fail
|
|
|
|
p_ether6 = Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip6_sec_check_fail = IPv6(
|
|
|
|
src="2001:db8:1fe::c0a8:1:f", dst="1234:5678:90ab:cdef:ac:1001:200:0"
|
|
|
|
)
|
|
|
|
payload = TCP(sport=0xABCD, dport=0xABCD)
|
|
|
|
p6 = p_ether6 / p_ip6_sec_check_fail / payload
|
2020-02-05 09:05:06 -05:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
self.pg_send(self.pg1, p6 * 1)
|
2020-02-05 09:05:06 -05:00
|
|
|
self.pg0.get_capture(0, timeout=1)
|
|
|
|
rx = self.pg1.get_capture(1)
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
icmp6_reply = (
|
|
|
|
IPv6(hlim=255, src=self.pg1.local_ip6, dst="2001:db8:1fe::c0a8:1:f")
|
|
|
|
/ ICMPv6DestUnreach(code=5)
|
|
|
|
/ p_ip6_sec_check_fail
|
|
|
|
/ payload
|
|
|
|
)
|
2020-02-05 09:05:06 -05:00
|
|
|
|
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], icmp6_reply)
|
|
|
|
|
|
|
|
# ICMPv6 unreachable messages cleanup
|
|
|
|
self.vapi.map_param_set_icmp6(enable_unreachable=0)
|
|
|
|
|
2019-12-04 15:02:46 -06:00
|
|
|
def test_map_t_ip6_psid(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""MAP-T v6->v4 PSID validation"""
|
2019-12-04 15:02:46 -06:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add a domain that maps from pg0 to pg1
|
|
|
|
#
|
2022-04-26 19:02:15 +02:00
|
|
|
map_dst = "2001:db8::/32"
|
|
|
|
map_src = "1234:5678:90ab:cdef::/64"
|
|
|
|
ip4_pfx = "192.168.0.0/24"
|
|
|
|
tag = "MAP-T Test Domain"
|
|
|
|
|
|
|
|
self.vapi.map_add_domain(
|
|
|
|
ip6_prefix=map_dst,
|
|
|
|
ip4_prefix=ip4_pfx,
|
|
|
|
ip6_src=map_src,
|
|
|
|
ea_bits_len=16,
|
|
|
|
psid_offset=6,
|
|
|
|
psid_length=4,
|
|
|
|
mtu=1500,
|
|
|
|
tag=tag,
|
|
|
|
)
|
2019-12-04 15:02:46 -06:00
|
|
|
|
|
|
|
# Enable MAP-T on interfaces.
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg0.sw_if_index, is_translation=1
|
|
|
|
)
|
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg1.sw_if_index, is_translation=1
|
|
|
|
)
|
|
|
|
|
|
|
|
map_route = VppIpRoute(
|
|
|
|
self,
|
|
|
|
"2001:db8::",
|
|
|
|
32,
|
|
|
|
[
|
|
|
|
VppRoutePath(
|
|
|
|
self.pg1.remote_ip6,
|
|
|
|
self.pg1.sw_if_index,
|
|
|
|
proto=DpoProto.DPO_PROTO_IP6,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
2019-12-04 15:02:46 -06:00
|
|
|
map_route.add_vpp_config()
|
|
|
|
|
|
|
|
p_ether6 = Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip6 = IPv6(
|
|
|
|
src="2001:db8:1f0::c0a8:1:f", dst="1234:5678:90ab:cdef:ac:1001:200:0"
|
|
|
|
)
|
2019-12-04 15:02:46 -06:00
|
|
|
|
|
|
|
# Send good IPv6 source port, ensure translated IPv4 received
|
2022-04-26 19:02:15 +02:00
|
|
|
payload = TCP(sport=0xABCD, dport=80)
|
|
|
|
p6 = p_ether6 / p_ip6 / payload
|
|
|
|
p4_translated = IP(src="192.168.0.1", dst=self.pg0.remote_ip4) / payload
|
2019-12-04 15:02:46 -06:00
|
|
|
p4_translated.id = 0
|
|
|
|
p4_translated.ttl -= 1
|
2022-04-26 19:02:15 +02:00
|
|
|
rx = self.send_and_expect(self.pg1, p6 * 1, self.pg0)
|
2019-12-04 15:02:46 -06:00
|
|
|
for p in rx:
|
|
|
|
self.validate(p[1], p4_translated)
|
|
|
|
|
|
|
|
# Send bad IPv6 source port, ensure translated IPv4 not received
|
2022-04-26 19:02:15 +02:00
|
|
|
payload = TCP(sport=0xDCBA, dport=80)
|
|
|
|
p6 = p_ether6 / p_ip6 / payload
|
|
|
|
self.send_and_assert_no_replies(self.pg1, p6 * 1)
|
2018-09-28 14:28:00 +02:00
|
|
|
|
2020-02-11 09:57:09 -05:00
|
|
|
def test_map_t_pre_resolve(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""MAP-T pre-resolve"""
|
2020-02-11 09:57:09 -05:00
|
|
|
|
|
|
|
# Add a domain that maps from pg0 to pg1
|
2022-04-26 19:02:15 +02:00
|
|
|
map_dst = "2001:db8::/32"
|
|
|
|
map_src = "1234:5678:90ab:cdef::/64"
|
|
|
|
ip4_pfx = "192.168.0.0/24"
|
|
|
|
tag = "MAP-T Test Domain."
|
|
|
|
|
|
|
|
self.vapi.map_add_domain(
|
|
|
|
ip6_prefix=map_dst,
|
|
|
|
ip4_prefix=ip4_pfx,
|
|
|
|
ip6_src=map_src,
|
|
|
|
ea_bits_len=16,
|
|
|
|
psid_offset=6,
|
|
|
|
psid_length=4,
|
|
|
|
mtu=1500,
|
|
|
|
tag=tag,
|
|
|
|
)
|
2020-02-11 09:57:09 -05:00
|
|
|
|
|
|
|
# Enable MAP-T on interfaces.
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg0.sw_if_index, is_translation=1
|
|
|
|
)
|
|
|
|
self.vapi.map_if_enable_disable(
|
|
|
|
is_enable=1, sw_if_index=self.pg1.sw_if_index, is_translation=1
|
|
|
|
)
|
2020-02-11 09:57:09 -05:00
|
|
|
|
|
|
|
# Enable pre-resolve option
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_param_add_del_pre_resolve(
|
|
|
|
ip4_nh_address="10.1.2.3", ip6_nh_address="4001::1", is_add=1
|
|
|
|
)
|
2020-02-11 09:57:09 -05:00
|
|
|
|
|
|
|
# Add a route to 4001::1 and expect the translated traffic to be
|
|
|
|
# sent via that route next-hop.
|
2022-04-26 19:02:15 +02:00
|
|
|
pre_res_route6 = VppIpRoute(
|
|
|
|
self,
|
|
|
|
"4001::1",
|
|
|
|
128,
|
|
|
|
[VppRoutePath(self.pg1.remote_hosts[2].ip6, self.pg1.sw_if_index)],
|
|
|
|
)
|
2020-02-11 09:57:09 -05:00
|
|
|
pre_res_route6.add_vpp_config()
|
|
|
|
|
|
|
|
# Add a route to 10.1.2.3 and expect the "untranslated" traffic to be
|
|
|
|
# sent via that route next-hop.
|
2022-04-26 19:02:15 +02:00
|
|
|
pre_res_route4 = VppIpRoute(
|
|
|
|
self,
|
|
|
|
"10.1.2.3",
|
|
|
|
32,
|
|
|
|
[VppRoutePath(self.pg0.remote_hosts[1].ip4, self.pg0.sw_if_index)],
|
|
|
|
)
|
2020-02-11 09:57:09 -05:00
|
|
|
pre_res_route4.add_vpp_config()
|
|
|
|
|
|
|
|
# Send an IPv4 packet that will be translated
|
|
|
|
p_ether = Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip4 = IP(src=self.pg0.remote_ip4, dst="192.168.0.1")
|
|
|
|
payload = TCP(sport=0xABCD, dport=0xABCD)
|
|
|
|
p4 = p_ether / p_ip4 / payload
|
|
|
|
|
|
|
|
p6_translated = (
|
|
|
|
IPv6(src="1234:5678:90ab:cdef:ac:1001:200:0", dst="2001:db8:1f0::c0a8:1:f")
|
|
|
|
/ payload
|
|
|
|
)
|
2020-02-11 09:57:09 -05:00
|
|
|
p6_translated.hlim -= 1
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
rx = self.send_and_expect(self.pg0, p4 * 1, self.pg1)
|
2020-02-11 09:57:09 -05:00
|
|
|
for p in rx:
|
|
|
|
self.assertEqual(p[Ether].dst, self.pg1.remote_hosts[2].mac)
|
|
|
|
self.validate(p[1], p6_translated)
|
|
|
|
|
|
|
|
# Send back an IPv6 packet that will be "untranslated"
|
|
|
|
p_ether6 = Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac)
|
2022-04-26 19:02:15 +02:00
|
|
|
p_ip6 = IPv6(
|
|
|
|
src="2001:db8:1f0::c0a8:1:f", dst="1234:5678:90ab:cdef:ac:1001:200:0"
|
|
|
|
)
|
|
|
|
p6 = p_ether6 / p_ip6 / payload
|
2020-02-11 09:57:09 -05:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
p4_translated = IP(src="192.168.0.1", dst=self.pg0.remote_ip4) / payload
|
2020-02-11 09:57:09 -05:00
|
|
|
p4_translated.id = 0
|
|
|
|
p4_translated.ttl -= 1
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
rx = self.send_and_expect(self.pg1, p6 * 1, self.pg0)
|
2020-02-11 09:57:09 -05:00
|
|
|
for p in rx:
|
|
|
|
self.assertEqual(p[Ether].dst, self.pg0.remote_hosts[1].mac)
|
|
|
|
self.validate(p[1], p4_translated)
|
|
|
|
|
|
|
|
# Cleanup pre-resolve option
|
2022-04-26 19:02:15 +02:00
|
|
|
self.vapi.map_param_add_del_pre_resolve(
|
|
|
|
ip4_nh_address="10.1.2.3", ip6_nh_address="4001::1", is_add=0
|
|
|
|
)
|
2020-02-11 09:57:09 -05:00
|
|
|
|
2020-05-20 15:47:06 +02:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
if __name__ == "__main__":
|
2017-02-20 18:23:41 -08:00
|
|
|
unittest.main(testRunner=VppTestRunner)
|