blob: 123cce9b7ba806172586ddd6a3f93957d3523f96 [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
Artem Glazychev839dcc02020-12-01 02:39:21 +07009from scapy.packet import Raw, bind_layers
Vladimir Isaev698eb872020-05-21 16:34:17 +030010from scapy.layers.inet6 import IP, IPv6, UDP
Eyal Baricef1e2a2018-06-18 13:01:59 +030011from scapy.layers.vxlan import VXLAN
Paul Vinciguerra2f156312020-05-02 22:34:40 -040012
13import util
Neale Ranns097fa662018-05-01 05:17:55 -070014from vpp_ip_route import VppIpRoute, VppRoutePath
Jakub Grajciar7c0eb562020-03-02 13:55:31 +010015from vpp_vxlan_tunnel import VppVxlanTunnel
Neale Ranns097fa662018-05-01 05:17:55 -070016from vpp_ip import INVALID_INDEX
Eyal Baricef1e2a2018-06-18 13:01:59 +030017
18
Eyal Baridd47eca2018-07-08 08:15:56 +030019class TestVxlan6(BridgeDomain, VppTestCase):
20 """ VXLAN over IPv6 Test Case """
Eyal Baricef1e2a2018-06-18 13:01:59 +030021
22 def __init__(self, *args):
23 BridgeDomain.__init__(self)
24 VppTestCase.__init__(self, *args)
25
26 def encapsulate(self, pkt, vni):
27 """
28 Encapsulate the original payload frame by adding VXLAN header with its
29 UDP, IP and Ethernet fields
30 """
31 return (Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) /
32 IPv6(src=self.pg0.remote_ip6, dst=self.pg0.local_ip6) /
33 UDP(sport=self.dport, dport=self.dport, chksum=0) /
34 VXLAN(vni=vni, flags=self.flags) /
35 pkt)
36
37 @classmethod
38 def ip_range(cls, s, e):
39 """ range of remote ip's """
40 tmp = cls.pg0.remote_ip6.rsplit(':', 1)[0]
41 return ("%s:%x" % (tmp, i) for i in range(s, e))
42
43 def encap_mcast(self, pkt, src_ip, src_mac, vni):
44 """
45 Encapsulate the original payload frame by adding VXLAN header with its
46 UDP, IP and Ethernet fields
47 """
48 return (Ether(src=src_mac, dst=self.mcast_mac) /
49 IPv6(src=src_ip, dst=self.mcast_ip6) /
50 UDP(sport=self.dport, dport=self.dport, chksum=0) /
51 VXLAN(vni=vni, flags=self.flags) /
52 pkt)
53
54 def decapsulate(self, pkt):
55 """
56 Decapsulate the original payload frame by removing VXLAN header
57 """
58 # check if is set I flag
59 self.assertEqual(pkt[VXLAN].flags, int('0x8', 16))
60 return pkt[VXLAN].payload
61
62 # Method for checking VXLAN encapsulation.
63 #
64 def check_encapsulation(self, pkt, vni, local_only=False, mcast_pkt=False):
65 # TODO: add error messages
66 # Verify source MAC is VPP_MAC and destination MAC is MY_MAC resolved
67 # by VPP using ARP.
68 self.assertEqual(pkt[Ether].src, self.pg0.local_mac)
69 if not local_only:
70 if not mcast_pkt:
71 self.assertEqual(pkt[Ether].dst, self.pg0.remote_mac)
72 else:
73 self.assertEqual(pkt[Ether].dst, type(self).mcast_mac)
74 # Verify VXLAN tunnel source IP is VPP_IP and destination IP is MY_IP.
75 self.assertEqual(pkt[IPv6].src, self.pg0.local_ip6)
76 if not local_only:
77 if not mcast_pkt:
78 self.assertEqual(pkt[IPv6].dst, self.pg0.remote_ip6)
79 else:
80 self.assertEqual(pkt[IPv6].dst, type(self).mcast_ip6)
81 # Verify UDP destination port is VXLAN 4789, source UDP port could be
82 # arbitrary.
Artem Glazychev839dcc02020-12-01 02:39:21 +070083 self.assertEqual(pkt[UDP].dport, self.dport)
Vladimir Isaev698eb872020-05-21 16:34:17 +030084 # Verify UDP checksum
85 self.assert_udp_checksum_valid(pkt, ignore_zero_checksum=False)
Eyal Baricef1e2a2018-06-18 13:01:59 +030086 # Verify VNI
87 self.assertEqual(pkt[VXLAN].vni, vni)
88
89 @classmethod
Artem Glazychev839dcc02020-12-01 02:39:21 +070090 def create_vxlan_flood_test_bd(cls, vni, n_ucast_tunnels, port):
Eyal Baricef1e2a2018-06-18 13:01:59 +030091 # Create 10 ucast vxlan tunnels under bd
92 start = 10
93 end = start + n_ucast_tunnels
Eyal Baricef1e2a2018-06-18 13:01:59 +030094 for dest_ip6 in cls.ip_range(start, end):
Eyal Baricef1e2a2018-06-18 13:01:59 +030095 # add host route so dest ip will not be resolved
Neale Ranns097fa662018-05-01 05:17:55 -070096 rip = VppIpRoute(cls, dest_ip6, 128,
97 [VppRoutePath(cls.pg0.remote_ip6, INVALID_INDEX)],
98 register=False)
99 rip.add_vpp_config()
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100100 r = VppVxlanTunnel(cls, src=cls.pg0.local_ip6,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700101 src_port=port, dst_port=port,
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100102 dst=dest_ip6, vni=vni)
103 r.add_vpp_config()
Neale Ranns097fa662018-05-01 05:17:55 -0700104 cls.vapi.sw_interface_set_l2_bridge(r.sw_if_index, bd_id=vni)
Eyal Baricef1e2a2018-06-18 13:01:59 +0300105
106 @classmethod
107 def add_mcast_tunnels_load(cls):
108 cls.add_del_mcast_tunnels_load(is_add=1)
109
110 @classmethod
111 def del_mcast_tunnels_load(cls):
112 cls.add_del_mcast_tunnels_load(is_add=0)
113
114 # Class method to start the VXLAN test case.
115 # Overrides setUpClass method in VppTestCase class.
116 # Python try..except statement is used to ensure that the tear down of
117 # the class will be executed even if exception is raised.
118 # @param cls The class pointer.
119 @classmethod
120 def setUpClass(cls):
Eyal Baridd47eca2018-07-08 08:15:56 +0300121 super(TestVxlan6, cls).setUpClass()
Eyal Baricef1e2a2018-06-18 13:01:59 +0300122
123 try:
Eyal Baricef1e2a2018-06-18 13:01:59 +0300124 cls.flags = 0x8
125
126 # Create 2 pg interfaces.
127 cls.create_pg_interfaces(range(4))
128 for pg in cls.pg_interfaces:
129 pg.admin_up()
130
Paul Vinciguerra2f156312020-05-02 22:34:40 -0400131 # Configure IPv6 addresses on VPP pg0.
Eyal Baricef1e2a2018-06-18 13:01:59 +0300132 cls.pg0.config_ip6()
133
134 # Resolve MAC address for VPP's IP address on pg0.
135 cls.pg0.resolve_ndp()
136
Paul Vinciguerra2f156312020-05-02 22:34:40 -0400137 # Our Multicast address
Eyal Baricef1e2a2018-06-18 13:01:59 +0300138 cls.mcast_ip6 = 'ff0e::1'
Paul Vinciguerra2f156312020-05-02 22:34:40 -0400139 cls.mcast_mac = util.mcast_ip_to_mac(cls.mcast_ip6)
Eyal Baricef1e2a2018-06-18 13:01:59 +0300140 except Exception:
Eyal Baridd47eca2018-07-08 08:15:56 +0300141 super(TestVxlan6, cls).tearDownClass()
Eyal Baricef1e2a2018-06-18 13:01:59 +0300142 raise
143
Paul Vinciguerra8d991d92019-01-25 14:05:48 -0800144 @classmethod
145 def tearDownClass(cls):
146 super(TestVxlan6, cls).tearDownClass()
147
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100148 def setUp(self):
149 super(TestVxlan6, self).setUp()
Artem Glazychev839dcc02020-12-01 02:39:21 +0700150
151 def createVxLANInterfaces(self, port=4789):
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100152 # Create VXLAN VTEP on VPP pg0, and put vxlan_tunnel0 and pg1
153 # into BD.
Artem Glazychev839dcc02020-12-01 02:39:21 +0700154 self.dport = port
155
Neale Ranns91fd9102020-04-03 07:46:28 +0000156 self.single_tunnel_vni = 0x12345
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100157 self.single_tunnel_bd = 1
158 r = VppVxlanTunnel(self, src=self.pg0.local_ip6,
Neale Ranns91fd9102020-04-03 07:46:28 +0000159 dst=self.pg0.remote_ip6,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700160 src_port=self.dport, dst_port=self.dport,
Neale Ranns91fd9102020-04-03 07:46:28 +0000161 vni=self.single_tunnel_vni)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100162 r.add_vpp_config()
163 self.vapi.sw_interface_set_l2_bridge(rx_sw_if_index=r.sw_if_index,
164 bd_id=self.single_tunnel_bd)
165 self.vapi.sw_interface_set_l2_bridge(
166 rx_sw_if_index=self.pg1.sw_if_index, bd_id=self.single_tunnel_bd)
167
168 # Setup vni 2 to test multicast flooding
169 self.n_ucast_tunnels = 10
170 self.mcast_flood_bd = 2
171 self.create_vxlan_flood_test_bd(self.mcast_flood_bd,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700172 self.n_ucast_tunnels,
173 self.dport)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100174 r = VppVxlanTunnel(self, src=self.pg0.local_ip6, dst=self.mcast_ip6,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700175 src_port=self.dport, dst_port=self.dport,
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100176 mcast_sw_if_index=1, vni=self.mcast_flood_bd)
177 r.add_vpp_config()
178 self.vapi.sw_interface_set_l2_bridge(rx_sw_if_index=r.sw_if_index,
179 bd_id=self.mcast_flood_bd)
180 self.vapi.sw_interface_set_l2_bridge(
181 rx_sw_if_index=self.pg2.sw_if_index, bd_id=self.mcast_flood_bd)
182
183 # Setup vni 3 to test unicast flooding
184 self.ucast_flood_bd = 3
185 self.create_vxlan_flood_test_bd(self.ucast_flood_bd,
Artem Glazychev839dcc02020-12-01 02:39:21 +0700186 self.n_ucast_tunnels,
187 self.dport)
Jakub Grajciar7c0eb562020-03-02 13:55:31 +0100188 self.vapi.sw_interface_set_l2_bridge(
189 rx_sw_if_index=self.pg3.sw_if_index, bd_id=self.ucast_flood_bd)
190
Artem Glazychev839dcc02020-12-01 02:39:21 +0700191 # Set scapy listen custom port for VxLAN
192 bind_layers(UDP, VXLAN, dport=self.dport)
193
Eyal Baricef1e2a2018-06-18 13:01:59 +0300194 # Method to define VPP actions before tear down of the test case.
195 # Overrides tearDown method in VppTestCase class.
196 # @param self The object pointer.
197 def tearDown(self):
Eyal Baridd47eca2018-07-08 08:15:56 +0300198 super(TestVxlan6, self).tearDown()
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -0700199
200 def show_commands_at_teardown(self):
201 self.logger.info(self.vapi.cli("show bridge-domain 1 detail"))
202 self.logger.info(self.vapi.cli("show bridge-domain 2 detail"))
203 self.logger.info(self.vapi.cli("show bridge-domain 3 detail"))
204 self.logger.info(self.vapi.cli("show vxlan tunnel"))
Eyal Baricef1e2a2018-06-18 13:01:59 +0300205
Artem Glazychev839dcc02020-12-01 02:39:21 +0700206 def encap_fragmented_packet(self):
Vladimir Isaev698eb872020-05-21 16:34:17 +0300207 frame = (Ether(src='00:00:00:00:00:02', dst='00:00:00:00:00:01') /
208 IP(src='4.3.2.1', dst='1.2.3.4') /
209 UDP(sport=20000, dport=10000) /
210 Raw(b'\xa5' * 1000))
211
212 frags = util.fragment_rfc791(frame, 400)
213
214 self.pg1.add_stream(frags)
215
216 self.pg0.enable_capture()
217
218 self.pg_start()
219
220 out = self.pg0.get_capture(3)
221
222 payload = []
223 for pkt in out:
224 payload.append(self.decapsulate(pkt))
225 self.check_encapsulation(pkt, self.single_tunnel_vni)
226
227 reassembled = util.reassemble4(payload)
228
229 self.assertEqual(Ether(raw(frame))[IP], reassembled[IP])
230
Artem Glazychev839dcc02020-12-01 02:39:21 +0700231 """
232 Tests with default port (4789)
233 """
234 def test_decap(self):
235 """ Decapsulation test
236 from BridgeDoman
237 """
238 self.createVxLANInterfaces()
239 super(TestVxlan6, self).test_decap()
240
241 def test_encap(self):
242 """ Encapsulation test
243 from BridgeDoman
244 """
245 self.createVxLANInterfaces()
246 super(TestVxlan6, self).test_encap()
247
248 def test_encap_fragmented_packet(self):
249 """ Encapsulation test send fragments from pg1
250 Verify receipt of encapsulated frames on pg0
251 """
252 self.createVxLANInterfaces()
253 self.encap_fragmented_packet()
254
255 def test_ucast_flood(self):
256 """ Unicast flood test
257 from BridgeDoman
258 """
259 self.createVxLANInterfaces()
260 super(TestVxlan6, self).test_ucast_flood()
261
262 def test_mcast_flood(self):
263 """ Multicast flood test
264 from BridgeDoman
265 """
266 self.createVxLANInterfaces()
267 super(TestVxlan6, self).test_mcast_flood()
268
269 def test_mcast_rcv(self):
270 """ Multicast receive test
271 from BridgeDoman
272 """
273 self.createVxLANInterfaces()
274 super(TestVxlan6, self).test_mcast_rcv()
275
276 """
277 Tests with custom port
278 """
279 def test_decap_custom_port(self):
280 """ Decapsulation test custom port
281 from BridgeDoman
282 """
283 self.createVxLANInterfaces(1111)
284 super(TestVxlan6, self).test_decap()
285
286 def test_encap_custom_port(self):
287 """ Encapsulation test custom port
288 from BridgeDoman
289 """
290 self.createVxLANInterfaces(1111)
291 super(TestVxlan6, self).test_encap()
292
293 def test_ucast_flood_custom_port(self):
294 """ Unicast flood test custom port
295 from BridgeDoman
296 """
297 self.createVxLANInterfaces(1111)
298 super(TestVxlan6, self).test_ucast_flood()
299
300 def test_mcast_flood_custom_port(self):
301 """ Multicast flood test custom port
302 from BridgeDoman
303 """
304 self.createVxLANInterfaces(1111)
305 super(TestVxlan6, self).test_mcast_flood()
306
307 def test_mcast_rcv_custom_port(self):
308 """ Multicast receive test custom port
309 from BridgeDoman
310 """
311 self.createVxLANInterfaces(1111)
312 super(TestVxlan6, self).test_mcast_rcv()
313
Eyal Baricef1e2a2018-06-18 13:01:59 +0300314
315if __name__ == '__main__':
316 unittest.main(testRunner=VppTestRunner)