blob: b582d38eb74c9544a1e956a8e0264d9c5ab424db [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Eyal Baricef1e2a2018-06-18 13:01:59 +03002
3import socket
4import unittest
5from framework import VppTestCase, VppTestRunner
6from template_bd import BridgeDomain
7
8from scapy.layers.l2 import Ether
9from scapy.layers.inet6 import IPv6, UDP
10from scapy.layers.vxlan import VXLAN
11from scapy.utils import atol
Neale Ranns097fa662018-05-01 05:17:55 -070012from vpp_ip_route import VppIpRoute, VppRoutePath
Jakub Grajciar7c0eb562020-03-02 13:55:31 +010013from vpp_vxlan_tunnel import VppVxlanTunnel
Neale Ranns097fa662018-05-01 05:17:55 -070014from vpp_ip import INVALID_INDEX
Eyal Baricef1e2a2018-06-18 13:01:59 +030015
16
Eyal Baridd47eca2018-07-08 08:15:56 +030017class TestVxlan6(BridgeDomain, VppTestCase):
18 """ VXLAN over IPv6 Test Case """
Eyal Baricef1e2a2018-06-18 13:01:59 +030019
20 def __init__(self, *args):
21 BridgeDomain.__init__(self)
22 VppTestCase.__init__(self, *args)
23
24 def encapsulate(self, pkt, vni):
25 """
26 Encapsulate the original payload frame by adding VXLAN header with its
27 UDP, IP and Ethernet fields
28 """
29 return (Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) /
30 IPv6(src=self.pg0.remote_ip6, dst=self.pg0.local_ip6) /
31 UDP(sport=self.dport, dport=self.dport, chksum=0) /
32 VXLAN(vni=vni, flags=self.flags) /
33 pkt)
34
35 @classmethod
36 def ip_range(cls, s, e):
37 """ range of remote ip's """
38 tmp = cls.pg0.remote_ip6.rsplit(':', 1)[0]
39 return ("%s:%x" % (tmp, i) for i in range(s, e))
40
41 def encap_mcast(self, pkt, src_ip, src_mac, vni):
42 """
43 Encapsulate the original payload frame by adding VXLAN header with its
44 UDP, IP and Ethernet fields
45 """
46 return (Ether(src=src_mac, dst=self.mcast_mac) /
47 IPv6(src=src_ip, dst=self.mcast_ip6) /
48 UDP(sport=self.dport, dport=self.dport, chksum=0) /
49 VXLAN(vni=vni, flags=self.flags) /
50 pkt)
51
52 def decapsulate(self, pkt):
53 """
54 Decapsulate the original payload frame by removing VXLAN header
55 """
56 # check if is set I flag
57 self.assertEqual(pkt[VXLAN].flags, int('0x8', 16))
58 return pkt[VXLAN].payload
59
60 # Method for checking VXLAN encapsulation.
61 #
62 def check_encapsulation(self, pkt, vni, local_only=False, mcast_pkt=False):
63 # TODO: add error messages
64 # Verify source MAC is VPP_MAC and destination MAC is MY_MAC resolved
65 # by VPP using ARP.
66 self.assertEqual(pkt[Ether].src, self.pg0.local_mac)
67 if not local_only:
68 if not mcast_pkt:
69 self.assertEqual(pkt[Ether].dst, self.pg0.remote_mac)
70 else:
71 self.assertEqual(pkt[Ether].dst, type(self).mcast_mac)
72 # Verify VXLAN tunnel source IP is VPP_IP and destination IP is MY_IP.
73 self.assertEqual(pkt[IPv6].src, self.pg0.local_ip6)
74 if not local_only:
75 if not mcast_pkt:
76 self.assertEqual(pkt[IPv6].dst, self.pg0.remote_ip6)
77 else:
78 self.assertEqual(pkt[IPv6].dst, type(self).mcast_ip6)
79 # Verify UDP destination port is VXLAN 4789, source UDP port could be
80 # arbitrary.
81 self.assertEqual(pkt[UDP].dport, type(self).dport)
82 # TODO: checksum check
83 # Verify VNI
84 self.assertEqual(pkt[VXLAN].vni, vni)
85
86 @classmethod
87 def create_vxlan_flood_test_bd(cls, vni, n_ucast_tunnels):
88 # Create 10 ucast vxlan tunnels under bd
89 start = 10
90 end = start + n_ucast_tunnels
Eyal Baricef1e2a2018-06-18 13:01:59 +030091 for dest_ip6 in cls.ip_range(start, end):
Eyal Baricef1e2a2018-06-18 13:01:59 +030092 # add host route so dest ip will not be resolved
Neale Ranns097fa662018-05-01 05:17:55 -070093 rip = VppIpRoute(cls, dest_ip6, 128,
94 [VppRoutePath(cls.pg0.remote_ip6, INVALID_INDEX)],
95 register=False)
96 rip.add_vpp_config()
Jakub Grajciar7c0eb562020-03-02 13:55:31 +010097 r = VppVxlanTunnel(cls, src=cls.pg0.local_ip6,
98 dst=dest_ip6, vni=vni)
99 r.add_vpp_config()
Neale Ranns097fa662018-05-01 05:17:55 -0700100 cls.vapi.sw_interface_set_l2_bridge(r.sw_if_index, bd_id=vni)
Eyal Baricef1e2a2018-06-18 13:01:59 +0300101
102 @classmethod
103 def add_mcast_tunnels_load(cls):
104 cls.add_del_mcast_tunnels_load(is_add=1)
105
106 @classmethod
107 def del_mcast_tunnels_load(cls):
108 cls.add_del_mcast_tunnels_load(is_add=0)
109
110 # Class method to start the VXLAN test case.
111 # Overrides setUpClass method in VppTestCase class.
112 # Python try..except statement is used to ensure that the tear down of
113 # the class will be executed even if exception is raised.
114 # @param cls The class pointer.
115 @classmethod
116 def setUpClass(cls):
Eyal Baridd47eca2018-07-08 08:15:56 +0300117 super(TestVxlan6, cls).setUpClass()
Eyal Baricef1e2a2018-06-18 13:01:59 +0300118
119 try:
120 cls.dport = 4789
121 cls.flags = 0x8
122
123 # Create 2 pg interfaces.
124 cls.create_pg_interfaces(range(4))
125 for pg in cls.pg_interfaces:
126 pg.admin_up()
127
128 # Configure IPv4 addresses on VPP pg0.
129 cls.pg0.config_ip6()
130
131 # Resolve MAC address for VPP's IP address on pg0.
132 cls.pg0.resolve_ndp()
133
134 cls.mcast_ip6 = 'ff0e::1'
135 cls.mcast_ip6n = socket.inet_pton(socket.AF_INET6, cls.mcast_ip6)
136 cls.mcast_mac = "33:33:00:00:00:%02x" % (1)
137
Eyal Baricef1e2a2018-06-18 13:01:59 +0300138 except Exception:
Eyal Baridd47eca2018-07-08 08:15:56 +0300139 super(TestVxlan6, cls).tearDownClass()
Eyal Baricef1e2a2018-06-18 13:01:59 +0300140 raise
141
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800142 @classmethod
143 def tearDownClass(cls):
144 super(TestVxlan6, cls).tearDownClass()
145
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100146 def setUp(self):
147 super(TestVxlan6, self).setUp()
148 # Create VXLAN VTEP on VPP pg0, and put vxlan_tunnel0 and pg1
149 # into BD.
Neale Ranns91fd9102020-04-03 07:46:28 +0000150 self.single_tunnel_vni = 0x12345
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100151 self.single_tunnel_bd = 1
152 r = VppVxlanTunnel(self, src=self.pg0.local_ip6,
Neale Ranns91fd9102020-04-03 07:46:28 +0000153 dst=self.pg0.remote_ip6,
154 vni=self.single_tunnel_vni)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100155 r.add_vpp_config()
156 self.vapi.sw_interface_set_l2_bridge(rx_sw_if_index=r.sw_if_index,
157 bd_id=self.single_tunnel_bd)
158 self.vapi.sw_interface_set_l2_bridge(
159 rx_sw_if_index=self.pg1.sw_if_index, bd_id=self.single_tunnel_bd)
160
161 # Setup vni 2 to test multicast flooding
162 self.n_ucast_tunnels = 10
163 self.mcast_flood_bd = 2
164 self.create_vxlan_flood_test_bd(self.mcast_flood_bd,
165 self.n_ucast_tunnels)
166 r = VppVxlanTunnel(self, src=self.pg0.local_ip6, dst=self.mcast_ip6,
167 mcast_sw_if_index=1, vni=self.mcast_flood_bd)
168 r.add_vpp_config()
169 self.vapi.sw_interface_set_l2_bridge(rx_sw_if_index=r.sw_if_index,
170 bd_id=self.mcast_flood_bd)
171 self.vapi.sw_interface_set_l2_bridge(
172 rx_sw_if_index=self.pg2.sw_if_index, bd_id=self.mcast_flood_bd)
173
174 # Setup vni 3 to test unicast flooding
175 self.ucast_flood_bd = 3
176 self.create_vxlan_flood_test_bd(self.ucast_flood_bd,
177 self.n_ucast_tunnels)
178 self.vapi.sw_interface_set_l2_bridge(
179 rx_sw_if_index=self.pg3.sw_if_index, bd_id=self.ucast_flood_bd)
180
Eyal Baricef1e2a2018-06-18 13:01:59 +0300181 # Method to define VPP actions before tear down of the test case.
182 # Overrides tearDown method in VppTestCase class.
183 # @param self The object pointer.
184 def tearDown(self):
Eyal Baridd47eca2018-07-08 08:15:56 +0300185 super(TestVxlan6, self).tearDown()
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700186
187 def show_commands_at_teardown(self):
188 self.logger.info(self.vapi.cli("show bridge-domain 1 detail"))
189 self.logger.info(self.vapi.cli("show bridge-domain 2 detail"))
190 self.logger.info(self.vapi.cli("show bridge-domain 3 detail"))
191 self.logger.info(self.vapi.cli("show vxlan tunnel"))
Eyal Baricef1e2a2018-06-18 13:01:59 +0300192
193
194if __name__ == '__main__':
195 unittest.main(testRunner=VppTestRunner)