blob: 6719400cb5c3a3900a5e39a945d4070b779b2379 [file] [log] [blame]
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001#!/usr/bin/env python
2import random
3import unittest
4import datetime
5import re
6
7from scapy.packet import Raw
8from scapy.layers.l2 import Ether
9from scapy.layers.inet import IP, UDP
10from scapy.layers.inet6 import IPv6
11
Gabriel Ganne7e665d62017-11-17 09:18:53 +010012from framework import VppTestCase, VppTestRunner
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020013from vpp_sub_interface import VppP2PSubint
Neale Rannsc0a93142018-09-05 15:42:26 -070014from vpp_ip import DpoProto
15from vpp_ip_route import VppIpRoute, VppRoutePath
Ole Troan8006c6a2018-12-17 12:02:26 +010016from vpp_papi import mac_pton
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020017
18
19class P2PEthernetAPI(VppTestCase):
20 """P2P Ethernet tests"""
21
22 p2p_sub_ifs = []
23
24 @classmethod
25 def setUpClass(cls):
26 super(P2PEthernetAPI, cls).setUpClass()
27
28 # Create pg interfaces
29 cls.create_pg_interfaces(range(4))
30
31 # Set up all interfaces
32 for i in cls.pg_interfaces:
33 i.admin_up()
34
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -070035 @classmethod
36 def tearDownClass(cls):
37 super(P2PEthernetAPI, cls).tearDownClass()
38
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020039 def create_p2p_ethernet(self, parent_if, sub_id, remote_mac):
Ole Troan8006c6a2018-12-17 12:02:26 +010040 p2p = VppP2PSubint(self, parent_if, sub_id, mac_pton(remote_mac))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020041 self.p2p_sub_ifs.append(p2p)
42
43 def delete_p2p_ethernet(self, parent_if, remote_mac):
Ole Troane1ade682019-03-04 23:55:43 +010044 self.vapi.p2p_ethernet_del(parent_if.sw_if_index,
45 mac_pton(remote_mac))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020046
47 def test_api(self):
48 """delete/create p2p subif"""
49 self.logger.info("FFP_TEST_START_0000")
50
51 self.create_p2p_ethernet(self.pg0, 1, "de:ad:00:00:00:01")
52 self.create_p2p_ethernet(self.pg0, 2, "de:ad:00:00:00:02")
53 intfs = self.vapi.cli("show interface")
54
Paul Vinciguerra9a6dafd2019-03-06 15:11:28 -080055 self.assertIn('pg0.1', intfs)
56 self.assertIn('pg0.2', intfs)
57 self.assertNotIn('pg0.5', intfs)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020058
59 # create pg2.5 subif
60 self.create_p2p_ethernet(self.pg0, 5, "de:ad:00:00:00:ff")
61 intfs = self.vapi.cli("show interface")
Paul Vinciguerra9a6dafd2019-03-06 15:11:28 -080062 self.assertIn('pg0.5', intfs)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020063 # delete pg2.5 subif
64 self.delete_p2p_ethernet(self.pg0, "de:ad:00:00:00:ff")
65
66 intfs = self.vapi.cli("show interface")
67
Paul Vinciguerra9a6dafd2019-03-06 15:11:28 -080068 self.assertIn('pg0.1', intfs)
69 self.assertIn('pg0.2', intfs)
70 self.assertNotIn('pg0.5', intfs)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020071
72 self.logger.info("FFP_TEST_FINISH_0000")
73
74 def test_p2p_subif_creation_1k(self):
75 """create 1k of p2p subifs"""
76 self.logger.info("FFP_TEST_START_0001")
77
78 macs = []
79 clients = 1000
80 mac = int("dead00000000", 16)
81
82 for i in range(1, clients+1):
83 try:
Paul Vinciguerraea2450f2019-03-06 08:23:58 -080084 macs.append(':'.join(re.findall('..', '{:02x}'.format(
85 mac+i))))
Ole Troane1ade682019-03-04 23:55:43 +010086 self.vapi.p2p_ethernet_add(self.pg2.sw_if_index,
87 mac_pton(macs[i-1]),
88 i)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020089 except Exception:
Paul Vinciguerra661f91f2018-11-28 19:06:41 -080090 self.logger.info("Failed to create subif %d %s" % (
91 i, macs[i-1]))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020092 raise
93
94 intfs = self.vapi.cli("show interface").split("\n")
95 count = 0
96 for intf in intfs:
97 if intf.startswith('pg2.'):
98 count += 1
99 self.assertEqual(count, clients)
100
101 self.logger.info("FFP_TEST_FINISH_0001")
102
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200103
104class P2PEthernetIPV6(VppTestCase):
105 """P2P Ethernet IPv6 tests"""
106
107 p2p_sub_ifs = []
108 packets = []
109
110 @classmethod
111 def setUpClass(cls):
112 super(P2PEthernetIPV6, cls).setUpClass()
113
114 # Create pg interfaces
115 cls.create_pg_interfaces(range(3))
116
117 # Packet sizes
118 cls.pg_if_packet_sizes = [64, 512, 1518, 9018]
119
120 # Set up all interfaces
121 for i in cls.pg_interfaces:
122 i.admin_up()
123
124 cls.pg0.generate_remote_hosts(3)
125 cls.pg0.configure_ipv6_neighbors()
126
127 cls.pg1.config_ip6()
128 cls.pg1.generate_remote_hosts(3)
129 cls.pg1.configure_ipv6_neighbors()
130 cls.pg1.disable_ipv6_ra()
131
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700132 @classmethod
133 def tearDownClass(cls):
134 super(P2PEthernetIPV6, cls).tearDownClass()
135
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200136 def setUp(self):
137 super(P2PEthernetIPV6, self).setUp()
138 for p in self.packets:
139 self.packets.remove(p)
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700140 self.p2p_sub_ifs.append(
141 self.create_p2p_ethernet(self.pg0, 1,
142 self.pg0._remote_hosts[0].mac))
143 self.p2p_sub_ifs.append(
144 self.create_p2p_ethernet(self.pg0, 2,
145 self.pg0._remote_hosts[1].mac))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200146 self.vapi.cli("trace add p2p-ethernet-input 50")
147
148 def tearDown(self):
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700149 while len(self.p2p_sub_ifs):
150 p2p = self.p2p_sub_ifs.pop()
151 self.delete_p2p_ethernet(p2p)
152
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200153 super(P2PEthernetIPV6, self).tearDown()
154
155 def create_p2p_ethernet(self, parent_if, sub_id, remote_mac):
Ole Troan8006c6a2018-12-17 12:02:26 +0100156 p2p = VppP2PSubint(self, parent_if, sub_id, mac_pton(remote_mac))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200157 p2p.admin_up()
158 p2p.config_ip6()
159 p2p.disable_ipv6_ra()
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700160 return p2p
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200161
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700162 def delete_p2p_ethernet(self, p2p):
163 p2p.unconfig_ip6()
164 p2p.admin_down()
Ole Troane1ade682019-03-04 23:55:43 +0100165 self.vapi.p2p_ethernet_del(p2p.parent.sw_if_index,
166 p2p.p2p_remote_mac)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200167
168 def create_stream(self, src_mac=None, dst_mac=None,
169 src_ip=None, dst_ip=None, size=None):
170 pkt_size = size
171 if size is None:
172 pkt_size = random.choice(self.pg_if_packet_sizes)
173 p = Ether(src=src_mac, dst=dst_mac)
174 p /= IPv6(src=src_ip, dst=dst_ip)
175 p /= (UDP(sport=1234, dport=4321) / Raw('\xa5' * 20))
176 self.extend_packet(p, pkt_size)
177 return p
178
179 def send_packets(self, src_if=None, dst_if=None, packets=None, count=None):
180 self.pg_enable_capture([dst_if])
181 if packets is None:
182 packets = self.packets
183 src_if.add_stream(packets)
184 self.pg_start()
185 if count is None:
186 count = len(packets)
187 return dst_if.get_capture(count)
188
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200189 def test_no_p2p_subif(self):
190 """standard routing without p2p subinterfaces"""
191 self.logger.info("FFP_TEST_START_0001")
192
193 route_8000 = VppIpRoute(self, "8000::", 64,
194 [VppRoutePath(self.pg0.remote_ip6,
195 self.pg0.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700196 proto=DpoProto.DPO_PROTO_IP6)],
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200197 is_ip6=1)
198 route_8000.add_vpp_config()
199
200 self.packets = [(Ether(dst=self.pg1.local_mac,
201 src=self.pg1.remote_mac) /
202 IPv6(src="3001::1", dst="8000::100") /
203 UDP(sport=1234, dport=1234) /
204 Raw('\xa5' * 100))]
205 self.send_packets(self.pg1, self.pg0)
206
207 self.logger.info("FFP_TEST_FINISH_0001")
208
209 def test_ip6_rx_p2p_subif(self):
210 """receive ipv6 packet via p2p subinterface"""
211 self.logger.info("FFP_TEST_START_0002")
212
213 route_9001 = VppIpRoute(self, "9001::", 64,
214 [VppRoutePath(self.pg1.remote_ip6,
215 self.pg1.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700216 proto=DpoProto.DPO_PROTO_IP6)],
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200217 is_ip6=1)
218 route_9001.add_vpp_config()
219
220 self.packets.append(
221 self.create_stream(src_mac=self.pg0._remote_hosts[0].mac,
222 dst_mac=self.pg0.local_mac,
223 src_ip=self.p2p_sub_ifs[0].remote_ip6,
224 dst_ip="9001::100"))
225
226 self.send_packets(self.pg0, self.pg1, self.packets)
Klement Sekeraf37c3ba2018-11-08 11:24:34 +0100227 self.assert_packet_counter_equal('p2p-ethernet-input', 1)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200228
229 route_9001.remove_vpp_config()
230 self.logger.info("FFP_TEST_FINISH_0002")
231
232 def test_ip6_rx_p2p_subif_route(self):
233 """route rx ip6 packet not matching p2p subinterface"""
234 self.logger.info("FFP_TEST_START_0003")
235
236 self.pg0.config_ip6()
237
238 route_3 = VppIpRoute(self, "9000::", 64,
239 [VppRoutePath(self.pg1._remote_hosts[0].ip6,
240 self.pg1.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700241 proto=DpoProto.DPO_PROTO_IP6)],
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200242 is_ip6=1)
243 route_3.add_vpp_config()
244
245 self.packets.append(
246 self.create_stream(src_mac="02:03:00:00:ff:ff",
247 dst_mac=self.pg0.local_mac,
248 src_ip="a000::100",
249 dst_ip="9000::100"))
250
251 self.send_packets(self.pg0, self.pg1)
252
253 self.pg0.unconfig_ip6()
254
255 route_3.remove_vpp_config()
256
257 self.logger.info("FFP_TEST_FINISH_0003")
258
259 def test_ip6_rx_p2p_subif_drop(self):
260 """drop rx packet not matching p2p subinterface"""
261 self.logger.info("FFP_TEST_START_0004")
262
263 route_9001 = VppIpRoute(self, "9000::", 64,
264 [VppRoutePath(self.pg1._remote_hosts[0].ip6,
265 self.pg1.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700266 proto=DpoProto.DPO_PROTO_IP6)],
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200267 is_ip6=1)
268 route_9001.add_vpp_config()
269
270 self.packets.append(
271 self.create_stream(src_mac="02:03:00:00:ff:ff",
272 dst_mac=self.pg0.local_mac,
273 src_ip="a000::100",
274 dst_ip="9000::100"))
275
276 # no packet received
277 self.send_packets(self.pg0, self.pg1, count=0)
278 self.logger.info("FFP_TEST_FINISH_0004")
279
280 def test_ip6_tx_p2p_subif(self):
281 """send packet via p2p subinterface"""
282 self.logger.info("FFP_TEST_START_0005")
283
284 route_8000 = VppIpRoute(self, "8000::", 64,
285 [VppRoutePath(self.pg0.remote_ip6,
286 self.pg0.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700287 proto=DpoProto.DPO_PROTO_IP6)],
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200288 is_ip6=1)
289 route_8000.add_vpp_config()
290 route_8001 = VppIpRoute(self, "8001::", 64,
291 [VppRoutePath(self.p2p_sub_ifs[0].remote_ip6,
292 self.p2p_sub_ifs[0].sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700293 proto=DpoProto.DPO_PROTO_IP6)],
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200294 is_ip6=1)
295 route_8001.add_vpp_config()
296 route_8002 = VppIpRoute(self, "8002::", 64,
297 [VppRoutePath(self.p2p_sub_ifs[1].remote_ip6,
298 self.p2p_sub_ifs[1].sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700299 proto=DpoProto.DPO_PROTO_IP6)],
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200300 is_ip6=1)
301 route_8002.add_vpp_config()
302
303 for i in range(0, 3):
304 self.packets.append(
305 self.create_stream(src_mac=self.pg1.remote_mac,
306 dst_mac=self.pg1.local_mac,
307 src_ip=self.pg1.remote_ip6,
308 dst_ip="800%d::100" % i))
309
310 self.send_packets(self.pg1, self.pg0, count=3)
311
312 route_8000.remove_vpp_config()
313 route_8001.remove_vpp_config()
314 route_8002.remove_vpp_config()
315
316 self.logger.info("FFP_TEST_FINISH_0005")
317
318 def test_ip6_tx_p2p_subif_drop(self):
319 """drop tx ip6 packet not matching p2p subinterface"""
320 self.logger.info("FFP_TEST_START_0006")
321
322 self.packets.append(
323 self.create_stream(src_mac="02:03:00:00:ff:ff",
324 dst_mac=self.pg0.local_mac,
325 src_ip="a000::100",
326 dst_ip="9000::100"))
327
328 # no packet received
329 self.send_packets(self.pg0, self.pg1, count=0)
330 self.logger.info("FFP_TEST_FINISH_0006")
331
332
333class P2PEthernetIPV4(VppTestCase):
334 """P2P Ethernet IPv4 tests"""
335
336 p2p_sub_ifs = []
337 packets = []
338
339 @classmethod
340 def setUpClass(cls):
341 super(P2PEthernetIPV4, cls).setUpClass()
342
343 # Create pg interfaces
344 cls.create_pg_interfaces(range(3))
345
346 # Packet sizes
347 cls.pg_if_packet_sizes = [64, 512, 1518, 9018]
348
349 # Set up all interfaces
350 for i in cls.pg_interfaces:
351 i.admin_up()
352
353 cls.pg0.config_ip4()
354 cls.pg0.generate_remote_hosts(5)
355 cls.pg0.configure_ipv4_neighbors()
356
357 cls.pg1.config_ip4()
358 cls.pg1.generate_remote_hosts(5)
359 cls.pg1.configure_ipv4_neighbors()
360
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700361 @classmethod
362 def tearDownClass(cls):
363 super(P2PEthernetIPV4, cls).tearDownClass()
364
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200365 def setUp(self):
366 super(P2PEthernetIPV4, self).setUp()
367 for p in self.packets:
368 self.packets.remove(p)
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700369 self.p2p_sub_ifs.append(
370 self.create_p2p_ethernet(self.pg0, 1,
371 self.pg0._remote_hosts[0].mac))
372 self.p2p_sub_ifs.append(
373 self.create_p2p_ethernet(self.pg0, 2,
374 self.pg0._remote_hosts[1].mac))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200375 self.vapi.cli("trace add p2p-ethernet-input 50")
376
377 def tearDown(self):
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700378 while len(self.p2p_sub_ifs):
379 p2p = self.p2p_sub_ifs.pop()
380 self.delete_p2p_ethernet(p2p)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200381 super(P2PEthernetIPV4, self).tearDown()
382
383 def create_stream(self, src_mac=None, dst_mac=None,
384 src_ip=None, dst_ip=None, size=None):
385 pkt_size = size
386 if size is None:
387 pkt_size = random.choice(self.pg_if_packet_sizes)
388 p = Ether(src=src_mac, dst=dst_mac)
389 p /= IP(src=src_ip, dst=dst_ip)
390 p /= (UDP(sport=1234, dport=4321) / Raw('\xa5' * 20))
391 self.extend_packet(p, pkt_size)
392 return p
393
394 def send_packets(self, src_if=None, dst_if=None, packets=None, count=None):
395 self.pg_enable_capture([dst_if])
396 if packets is None:
397 packets = self.packets
398 src_if.add_stream(packets)
399 self.pg_start()
400 if count is None:
401 count = len(packets)
402 return dst_if.get_capture(count)
403
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200404 def create_p2p_ethernet(self, parent_if, sub_id, remote_mac):
Ole Troan8006c6a2018-12-17 12:02:26 +0100405 p2p = VppP2PSubint(self, parent_if, sub_id, mac_pton(remote_mac))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200406 p2p.admin_up()
407 p2p.config_ip4()
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700408 return p2p
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200409
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700410 def delete_p2p_ethernet(self, p2p):
411 p2p.unconfig_ip4()
412 p2p.admin_down()
Ole Troane1ade682019-03-04 23:55:43 +0100413 self.vapi.p2p_ethernet_del(p2p.parent.sw_if_index,
414 p2p.p2p_remote_mac)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200415
416 def test_ip4_rx_p2p_subif(self):
417 """receive ipv4 packet via p2p subinterface"""
418 self.logger.info("FFP_TEST_START_0002")
419
420 route_9000 = VppIpRoute(self, "9.0.0.0", 16,
421 [VppRoutePath(self.pg1.remote_ip4,
422 self.pg1.sw_if_index)])
423 route_9000.add_vpp_config()
424
425 self.packets.append(
426 self.create_stream(src_mac=self.pg0._remote_hosts[0].mac,
427 dst_mac=self.pg0.local_mac,
428 src_ip=self.p2p_sub_ifs[0].remote_ip4,
429 dst_ip="9.0.0.100"))
430
431 self.send_packets(self.pg0, self.pg1, self.packets)
432
Klement Sekeraf37c3ba2018-11-08 11:24:34 +0100433 self.assert_packet_counter_equal('p2p-ethernet-input', 1)
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200434
435 route_9000.remove_vpp_config()
436 self.logger.info("FFP_TEST_FINISH_0002")
437
438 def test_ip4_rx_p2p_subif_route(self):
439 """route rx packet not matching p2p subinterface"""
440 self.logger.info("FFP_TEST_START_0003")
441
442 route_9001 = VppIpRoute(self, "9.0.0.0", 24,
443 [VppRoutePath(self.pg1.remote_ip4,
444 self.pg1.sw_if_index)])
445 route_9001.add_vpp_config()
446
447 self.packets.append(
448 self.create_stream(src_mac="02:01:00:00:ff:ff",
449 dst_mac=self.pg0.local_mac,
450 src_ip="8.0.0.100",
451 dst_ip="9.0.0.100"))
452
453 self.send_packets(self.pg0, self.pg1)
454
455 route_9001.remove_vpp_config()
456
457 self.logger.info("FFP_TEST_FINISH_0003")
458
459 def test_ip4_tx_p2p_subif(self):
460 """send ip4 packet via p2p subinterface"""
461 self.logger.info("FFP_TEST_START_0005")
462
463 route_9100 = VppIpRoute(self, "9.1.0.100", 24,
464 [VppRoutePath(self.pg0.remote_ip4,
465 self.pg0.sw_if_index,
466 )])
467 route_9100.add_vpp_config()
468 route_9200 = VppIpRoute(self, "9.2.0.100", 24,
469 [VppRoutePath(self.p2p_sub_ifs[0].remote_ip4,
470 self.p2p_sub_ifs[0].sw_if_index,
471 )])
472 route_9200.add_vpp_config()
473 route_9300 = VppIpRoute(self, "9.3.0.100", 24,
474 [VppRoutePath(self.p2p_sub_ifs[1].remote_ip4,
475 self.p2p_sub_ifs[1].sw_if_index
476 )])
477 route_9300.add_vpp_config()
478
479 for i in range(0, 3):
480 self.packets.append(
481 self.create_stream(src_mac=self.pg1.remote_mac,
482 dst_mac=self.pg1.local_mac,
483 src_ip=self.pg1.remote_ip4,
484 dst_ip="9.%d.0.100" % (i+1)))
485
486 self.send_packets(self.pg1, self.pg0)
487
488 # route_7000.remove_vpp_config()
489 route_9100.remove_vpp_config()
490 route_9200.remove_vpp_config()
491 route_9300.remove_vpp_config()
492
493 self.logger.info("FFP_TEST_FINISH_0005")
494
495 def test_ip4_tx_p2p_subif_drop(self):
496 """drop tx ip4 packet not matching p2p subinterface"""
497 self.logger.info("FFP_TEST_START_0006")
498
499 self.packets.append(
500 self.create_stream(src_mac="02:01:00:00:ff:ff",
501 dst_mac=self.pg0.local_mac,
502 src_ip="8.0.0.100",
503 dst_ip="9.0.0.100"))
504
505 # no packet received
506 self.send_packets(self.pg0, self.pg1, count=0)
507 self.logger.info("FFP_TEST_FINISH_0006")
508
509
510if __name__ == '__main__':
511 unittest.main(testRunner=VppTestRunner)