8 from scapy.contrib.mpls import MPLS
9 from scapy.layers.inet import IP, UDP, TCP, ICMP, icmptypes, icmpcodes
10 from scapy.layers.l2 import Ether, Dot1Q, ARP
11 from scapy.packet import Raw
14 from framework import VppTestCase, VppTestRunner
16 from vpp_ip_route import VppIpRoute, VppRoutePath, VppIpMRoute, \
17 VppMRoutePath, MRouteItfFlags, MRouteEntryFlags, VppMplsIpBind, \
18 VppMplsTable, VppIpTable, FibPathType, find_route, \
19 VppIpInterfaceAddress, find_route_in_dump, find_mroute_in_dump
20 from vpp_sub_interface import VppSubInterface, VppDot1QSubint, VppDot1ADSubint
21 from vpp_papi import VppEnum
22 from vpp_neighbor import VppNeighbor
23 from vpp_lo_interface import VppLoInterface
28 class TestIPv4(VppTestCase):
29 """ IPv4 Test Case """
33 super(TestIPv4, cls).setUpClass()
36 def tearDownClass(cls):
37 super(TestIPv4, cls).tearDownClass()
41 Perform test setup before test case.
44 - create 3 pg interfaces
45 - untagged pg0 interface
46 - Dot1Q subinterface on pg1
47 - Dot1AD subinterface on pg2
49 - put it into UP state
51 - resolve neighbor address using ARP
52 - configure 200 fib entries
54 :ivar list interfaces: pg interfaces and subinterfaces.
55 :ivar dict flows: IPv4 packet flows in test.
57 super(TestIPv4, self).setUp()
59 # create 3 pg interfaces
60 self.create_pg_interfaces(range(3))
62 # create 2 subinterfaces for pg1 and pg2
63 self.sub_interfaces = [
64 VppDot1QSubint(self, self.pg1, 100),
65 VppDot1ADSubint(self, self.pg2, 200, 300, 400)]
67 # packet flows mapping pg0 -> pg1.sub, pg2.sub, etc.
69 self.flows[self.pg0] = [self.pg1.sub_if, self.pg2.sub_if]
70 self.flows[self.pg1.sub_if] = [self.pg0, self.pg2.sub_if]
71 self.flows[self.pg2.sub_if] = [self.pg0, self.pg1.sub_if]
74 self.pg_if_packet_sizes = [64, 1500, 9020]
76 self.interfaces = list(self.pg_interfaces)
77 self.interfaces.extend(self.sub_interfaces)
79 # setup all interfaces
80 for i in self.interfaces:
85 # config 2M FIB entries
88 """Run standard test teardown and log ``show ip arp``."""
89 super(TestIPv4, self).tearDown()
91 def show_commands_at_teardown(self):
92 self.logger.info(self.vapi.cli("show ip arp"))
93 # info(self.vapi.cli("show ip fib")) # many entries
95 def modify_packet(self, src_if, packet_size, pkt):
96 """Add load, set destination IP and extend packet to required packet
97 size for defined interface.
99 :param VppInterface src_if: Interface to create packet for.
100 :param int packet_size: Required packet size.
101 :param Scapy pkt: Packet to be modified.
103 dst_if_idx = int(packet_size / 10 % 2)
104 dst_if = self.flows[src_if][dst_if_idx]
105 info = self.create_packet_info(src_if, dst_if)
106 payload = self.info_to_payload(info)
108 p[IP].dst = dst_if.remote_ip4
110 if isinstance(src_if, VppSubInterface):
111 p = src_if.add_dot1_layer(p)
112 self.extend_packet(p, packet_size)
116 def create_stream(self, src_if):
117 """Create input packet stream for defined interface.
119 :param VppInterface src_if: Interface to create packet stream for.
121 hdr_ext = 4 if isinstance(src_if, VppSubInterface) else 0
122 pkt_tmpl = (Ether(dst=src_if.local_mac, src=src_if.remote_mac) /
123 IP(src=src_if.remote_ip4) /
124 UDP(sport=1234, dport=1234))
126 pkts = [self.modify_packet(src_if, i, pkt_tmpl)
127 for i in moves.range(self.pg_if_packet_sizes[0],
128 self.pg_if_packet_sizes[1], 10)]
129 pkts_b = [self.modify_packet(src_if, i, pkt_tmpl)
130 for i in moves.range(self.pg_if_packet_sizes[1] + hdr_ext,
131 self.pg_if_packet_sizes[2] + hdr_ext,
137 def verify_capture(self, dst_if, capture):
138 """Verify captured input packet stream for defined interface.
140 :param VppInterface dst_if: Interface to verify captured packet stream
142 :param list capture: Captured packet stream.
144 self.logger.info("Verifying capture on interface %s" % dst_if.name)
146 for i in self.interfaces:
147 last_info[i.sw_if_index] = None
149 dst_sw_if_index = dst_if.sw_if_index
150 if hasattr(dst_if, 'parent'):
152 for packet in capture:
154 # Check VLAN tags and Ethernet header
155 packet = dst_if.remove_dot1_layer(packet)
156 self.assertTrue(Dot1Q not in packet)
160 payload_info = self.payload_to_info(packet[Raw])
161 packet_index = payload_info.index
162 self.assertEqual(payload_info.dst, dst_sw_if_index)
164 "Got packet on port %s: src=%u (id=%u)" %
165 (dst_if.name, payload_info.src, packet_index))
166 next_info = self.get_next_packet_info_for_interface2(
167 payload_info.src, dst_sw_if_index,
168 last_info[payload_info.src])
169 last_info[payload_info.src] = next_info
170 self.assertTrue(next_info is not None)
171 self.assertEqual(packet_index, next_info.index)
172 saved_packet = next_info.data
173 # Check standard fields
174 self.assertEqual(ip.src, saved_packet[IP].src)
175 self.assertEqual(ip.dst, saved_packet[IP].dst)
176 self.assertEqual(udp.sport, saved_packet[UDP].sport)
177 self.assertEqual(udp.dport, saved_packet[UDP].dport)
179 self.logger.error(ppp("Unexpected or invalid packet:", packet))
181 for i in self.interfaces:
182 remaining_packet = self.get_next_packet_info_for_interface2(
183 i.sw_if_index, dst_sw_if_index, last_info[i.sw_if_index])
184 self.assertTrue(remaining_packet is None,
185 "Interface %s: Packet expected from interface %s "
186 "didn't arrive" % (dst_if.name, i.name))
193 - Create IPv4 stream for pg0 interface
194 - Create IPv4 tagged streams for pg1's and pg2's sub-interface.
195 - Send and verify received packets on each interface.
198 pkts = self.create_stream(self.pg0)
199 self.pg0.add_stream(pkts)
201 for i in self.sub_interfaces:
202 pkts = self.create_stream(i)
203 i.parent.add_stream(pkts)
205 self.pg_enable_capture(self.pg_interfaces)
208 pkts = self.pg0.get_capture()
209 self.verify_capture(self.pg0, pkts)
211 for i in self.sub_interfaces:
212 pkts = i.parent.get_capture()
213 self.verify_capture(i, pkts)
216 class TestIPv4IfAddrRoute(VppTestCase):
217 """ IPv4 Interface Addr Route Test Case """
221 super(TestIPv4IfAddrRoute, cls).setUpClass()
224 def tearDownClass(cls):
225 super(TestIPv4IfAddrRoute, cls).tearDownClass()
228 super(TestIPv4IfAddrRoute, self).setUp()
230 # create 1 pg interface
231 self.create_pg_interfaces(range(1))
233 for i in self.pg_interfaces:
239 super(TestIPv4IfAddrRoute, self).tearDown()
240 for i in self.pg_interfaces:
244 def test_ipv4_ifaddrs_same_prefix(self):
245 """ IPv4 Interface Addresses Same Prefix test
249 - Verify no route in FIB for prefix 10.10.10.0/24
250 - Configure IPv4 address 10.10.10.10/24 on an interface
251 - Verify route in FIB for prefix 10.10.10.0/24
252 - Configure IPv4 address 10.10.10.20/24 on an interface
253 - Delete 10.10.10.10/24 from interface
254 - Verify route in FIB for prefix 10.10.10.0/24
255 - Delete 10.10.10.20/24 from interface
256 - Verify no route in FIB for prefix 10.10.10.0/24
259 # create two addresses, verify route not present
260 if_addr1 = VppIpInterfaceAddress(self, self.pg0, "10.10.10.10", 24)
261 if_addr2 = VppIpInterfaceAddress(self, self.pg0, "10.10.10.20", 24)
262 self.assertFalse(if_addr1.query_vpp_config()) # 10.10.10.10/24
263 self.assertFalse(find_route(self, "10.10.10.10", 32))
264 self.assertFalse(find_route(self, "10.10.10.20", 32))
265 self.assertFalse(find_route(self, "10.10.10.255", 32))
266 self.assertFalse(find_route(self, "10.10.10.0", 32))
268 # configure first address, verify route present
269 if_addr1.add_vpp_config()
270 self.assertTrue(if_addr1.query_vpp_config()) # 10.10.10.10/24
271 self.assertTrue(find_route(self, "10.10.10.10", 32))
272 self.assertFalse(find_route(self, "10.10.10.20", 32))
273 self.assertTrue(find_route(self, "10.10.10.255", 32))
274 self.assertTrue(find_route(self, "10.10.10.0", 32))
276 # configure second address, delete first, verify route not removed
277 if_addr2.add_vpp_config()
278 if_addr1.remove_vpp_config()
279 self.assertFalse(if_addr1.query_vpp_config()) # 10.10.10.10/24
280 self.assertTrue(if_addr2.query_vpp_config()) # 10.10.10.20/24
281 self.assertFalse(find_route(self, "10.10.10.10", 32))
282 self.assertTrue(find_route(self, "10.10.10.20", 32))
283 self.assertTrue(find_route(self, "10.10.10.255", 32))
284 self.assertTrue(find_route(self, "10.10.10.0", 32))
286 # delete second address, verify route removed
287 if_addr2.remove_vpp_config()
288 self.assertFalse(if_addr2.query_vpp_config()) # 10.10.10.20/24
289 self.assertFalse(find_route(self, "10.10.10.10", 32))
290 self.assertFalse(find_route(self, "10.10.10.20", 32))
291 self.assertFalse(find_route(self, "10.10.10.255", 32))
292 self.assertFalse(find_route(self, "10.10.10.0", 32))
294 def test_ipv4_ifaddr_route(self):
295 """ IPv4 Interface Address Route test
300 - Configure IPv4 address on loopback
301 - Verify that address is not in the FIB
303 - Verify that address is in the FIB now
304 - Bring loopback down
305 - Verify that address is not in the FIB anymore
307 - Configure IPv4 address on loopback
308 - Verify that address is in the FIB now
311 # create a loopback and configure IPv4
312 loopbacks = self.create_loopback_interfaces(1)
313 lo_if = self.lo_interfaces[0]
315 lo_if.local_ip4_prefix_len = 32
318 # The intf was down when addr was added -> entry not in FIB
319 fib4_dump = self.vapi.ip_route_dump(0)
320 self.assertFalse(lo_if.is_ip4_entry_in_fib_dump(fib4_dump))
322 # When intf is brought up, entry is added
324 fib4_dump = self.vapi.ip_route_dump(0)
325 self.assertTrue(lo_if.is_ip4_entry_in_fib_dump(fib4_dump))
327 # When intf is brought down, entry is removed
329 fib4_dump = self.vapi.ip_route_dump(0)
330 self.assertFalse(lo_if.is_ip4_entry_in_fib_dump(fib4_dump))
332 # Remove addr, bring up interface, re-add -> entry in FIB
336 fib4_dump = self.vapi.ip_route_dump(0)
337 self.assertTrue(lo_if.is_ip4_entry_in_fib_dump(fib4_dump))
340 class TestICMPEcho(VppTestCase):
341 """ ICMP Echo Test Case """
345 super(TestICMPEcho, cls).setUpClass()
348 def tearDownClass(cls):
349 super(TestICMPEcho, cls).tearDownClass()
352 super(TestICMPEcho, self).setUp()
354 # create 1 pg interface
355 self.create_pg_interfaces(range(1))
357 for i in self.pg_interfaces:
363 super(TestICMPEcho, self).tearDown()
364 for i in self.pg_interfaces:
368 def test_icmp_echo(self):
369 """ VPP replies to ICMP Echo Request
373 - Receive ICMP Echo Request message on pg0 interface.
374 - Check outgoing ICMP Echo Reply message on pg0 interface.
379 icmp_load = b'\x0a' * 18
380 p_echo_request = (Ether(src=self.pg0.remote_mac,
381 dst=self.pg0.local_mac) /
382 IP(src=self.pg0.remote_ip4, dst=self.pg0.local_ip4) /
383 ICMP(id=icmp_id, seq=icmp_seq) /
386 self.pg0.add_stream(p_echo_request)
387 self.pg_enable_capture(self.pg_interfaces)
390 rx = self.pg0.get_capture(1)
396 self.assertEqual(ether.src, self.pg0.local_mac)
397 self.assertEqual(ether.dst, self.pg0.remote_mac)
399 self.assertEqual(ipv4.src, self.pg0.local_ip4)
400 self.assertEqual(ipv4.dst, self.pg0.remote_ip4)
402 self.assertEqual(icmptypes[icmp.type], "echo-reply")
403 self.assertEqual(icmp.id, icmp_id)
404 self.assertEqual(icmp.seq, icmp_seq)
405 self.assertEqual(icmp[Raw].load, icmp_load)
408 class TestIPv4FibCrud(VppTestCase):
409 """ FIB - add/update/delete - ip4 routes
417 ..note:: Python API is too slow to add many routes, needs replacement.
420 def config_fib_many_to_one(self, start_dest_addr, next_hop_addr,
424 :param start_dest_addr:
425 :param next_hop_addr:
427 :return list: added ips with 32 prefix
430 for i in range(count):
431 r = VppIpRoute(self, start_dest_addr % (i + start), 32,
432 [VppRoutePath(next_hop_addr, 0xffffffff)])
437 def unconfig_fib_many_to_one(self, start_dest_addr, next_hop_addr,
441 for i in range(count):
442 r = VppIpRoute(self, start_dest_addr % (i + start), 32,
443 [VppRoutePath(next_hop_addr, 0xffffffff)])
444 r.remove_vpp_config()
448 def create_stream(self, src_if, dst_if, routes, count):
451 for _ in range(count):
452 dst_addr = random.choice(routes).prefix.network_address
453 info = self.create_packet_info(src_if, dst_if)
454 payload = self.info_to_payload(info)
455 p = (Ether(dst=src_if.local_mac, src=src_if.remote_mac) /
456 IP(src=src_if.remote_ip4, dst=str(dst_addr)) /
457 UDP(sport=1234, dport=1234) /
460 self.extend_packet(p, random.choice(self.pg_if_packet_sizes))
465 def _find_ip_match(self, find_in, pkt):
467 if self.payload_to_info(p[Raw]) == \
468 self.payload_to_info(pkt[Raw]):
469 if p[IP].src != pkt[IP].src:
471 if p[IP].dst != pkt[IP].dst:
473 if p[UDP].sport != pkt[UDP].sport:
475 if p[UDP].dport != pkt[UDP].dport:
480 def verify_capture(self, dst_interface, received_pkts, expected_pkts):
481 self.assertEqual(len(received_pkts), len(expected_pkts))
482 to_verify = list(expected_pkts)
483 for p in received_pkts:
484 self.assertEqual(p.src, dst_interface.local_mac)
485 self.assertEqual(p.dst, dst_interface.remote_mac)
486 x = self._find_ip_match(to_verify, p)
488 self.assertListEqual(to_verify, [])
490 def verify_route_dump(self, routes):
492 self.assertTrue(find_route(self,
493 r.prefix.network_address,
496 def verify_not_in_route_dump(self, routes):
498 self.assertFalse(find_route(self,
499 r.prefix.network_address,
505 #. Create and initialize 3 pg interfaces.
506 #. initialize class attributes configured_routes and deleted_routes
507 to store information between tests.
509 super(TestIPv4FibCrud, cls).setUpClass()
512 # create 3 pg interfaces
513 cls.create_pg_interfaces(range(3))
515 cls.interfaces = list(cls.pg_interfaces)
517 # setup all interfaces
518 for i in cls.interfaces:
523 cls.configured_routes = []
524 cls.deleted_routes = []
525 cls.pg_if_packet_sizes = [64, 512, 1518, 9018]
528 super(TestIPv4FibCrud, cls).tearDownClass()
532 def tearDownClass(cls):
533 super(TestIPv4FibCrud, cls).tearDownClass()
536 super(TestIPv4FibCrud, self).setUp()
537 self.reset_packet_infos()
539 self.configured_routes = []
540 self.deleted_routes = []
542 def test_1_add_routes(self):
543 """ Add 1k routes """
545 # add 100 routes check with traffic script.
546 self.configured_routes.extend(self.config_fib_many_to_one(
547 "10.0.0.%d", self.pg0.remote_ip4, 100))
549 self.verify_route_dump(self.configured_routes)
551 self.stream_1 = self.create_stream(
552 self.pg1, self.pg0, self.configured_routes, 100)
553 self.stream_2 = self.create_stream(
554 self.pg2, self.pg0, self.configured_routes, 100)
555 self.pg1.add_stream(self.stream_1)
556 self.pg2.add_stream(self.stream_2)
558 self.pg_enable_capture(self.pg_interfaces)
561 pkts = self.pg0.get_capture(len(self.stream_1) + len(self.stream_2))
562 self.verify_capture(self.pg0, pkts, self.stream_1 + self.stream_2)
564 def test_2_del_routes(self):
565 """ Delete 100 routes
567 - delete 10 routes check with traffic script.
569 # config 1M FIB entries
570 self.configured_routes.extend(self.config_fib_many_to_one(
571 "10.0.0.%d", self.pg0.remote_ip4, 100))
572 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
573 "10.0.0.%d", self.pg0.remote_ip4, 10, start=10))
574 for x in self.deleted_routes:
575 self.configured_routes.remove(x)
577 self.verify_route_dump(self.configured_routes)
579 self.stream_1 = self.create_stream(
580 self.pg1, self.pg0, self.configured_routes, 100)
581 self.stream_2 = self.create_stream(
582 self.pg2, self.pg0, self.configured_routes, 100)
583 self.stream_3 = self.create_stream(
584 self.pg1, self.pg0, self.deleted_routes, 100)
585 self.stream_4 = self.create_stream(
586 self.pg2, self.pg0, self.deleted_routes, 100)
587 self.pg1.add_stream(self.stream_1 + self.stream_3)
588 self.pg2.add_stream(self.stream_2 + self.stream_4)
589 self.pg_enable_capture(self.pg_interfaces)
592 pkts = self.pg0.get_capture(len(self.stream_1) + len(self.stream_2))
593 self.verify_capture(self.pg0, pkts, self.stream_1 + self.stream_2)
595 def test_3_add_new_routes(self):
598 - re-add 5 routes check with traffic script.
599 - add 100 routes check with traffic script.
601 # config 1M FIB entries
602 self.configured_routes.extend(self.config_fib_many_to_one(
603 "10.0.0.%d", self.pg0.remote_ip4, 100))
604 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
605 "10.0.0.%d", self.pg0.remote_ip4, 10, start=10))
606 for x in self.deleted_routes:
607 self.configured_routes.remove(x)
609 tmp = self.config_fib_many_to_one(
610 "10.0.0.%d", self.pg0.remote_ip4, 5, start=10)
611 self.configured_routes.extend(tmp)
613 self.deleted_routes.remove(x)
615 self.configured_routes.extend(self.config_fib_many_to_one(
616 "10.0.1.%d", self.pg0.remote_ip4, 100))
618 self.verify_route_dump(self.configured_routes)
620 self.stream_1 = self.create_stream(
621 self.pg1, self.pg0, self.configured_routes, 300)
622 self.stream_2 = self.create_stream(
623 self.pg2, self.pg0, self.configured_routes, 300)
624 self.stream_3 = self.create_stream(
625 self.pg1, self.pg0, self.deleted_routes, 100)
626 self.stream_4 = self.create_stream(
627 self.pg2, self.pg0, self.deleted_routes, 100)
629 self.pg1.add_stream(self.stream_1 + self.stream_3)
630 self.pg2.add_stream(self.stream_2 + self.stream_4)
631 self.pg_enable_capture(self.pg_interfaces)
634 pkts = self.pg0.get_capture(len(self.stream_1) + len(self.stream_2))
635 self.verify_capture(self.pg0, pkts, self.stream_1 + self.stream_2)
637 # delete 5 routes check with traffic script.
638 # add 100 routes check with traffic script.
639 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
640 "10.0.0.%d", self.pg0.remote_ip4, 15))
641 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
642 "10.0.0.%d", self.pg0.remote_ip4, 85))
643 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
644 "10.0.1.%d", self.pg0.remote_ip4, 100))
645 self.verify_not_in_route_dump(self.deleted_routes)
648 class TestIPNull(VppTestCase):
649 """ IPv4 routes via NULL """
653 super(TestIPNull, cls).setUpClass()
656 def tearDownClass(cls):
657 super(TestIPNull, cls).tearDownClass()
660 super(TestIPNull, self).setUp()
662 # create 2 pg interfaces
663 self.create_pg_interfaces(range(2))
665 for i in self.pg_interfaces:
671 super(TestIPNull, self).tearDown()
672 for i in self.pg_interfaces:
676 def test_ip_null(self):
677 """ IP NULL route """
680 # A route via IP NULL that will reply with ICMP unreachables
682 ip_unreach = VppIpRoute(
683 self, "10.0.0.1", 32,
684 [VppRoutePath("0.0.0.0",
686 type=FibPathType.FIB_PATH_TYPE_ICMP_UNREACH)])
687 ip_unreach.add_vpp_config()
689 p_unreach = (Ether(src=self.pg0.remote_mac,
690 dst=self.pg0.local_mac) /
691 IP(src=self.pg0.remote_ip4, dst="10.0.0.1") /
692 UDP(sport=1234, dport=1234) /
694 self.pg0.add_stream(p_unreach)
695 self.pg_enable_capture(self.pg_interfaces)
698 rx = self.pg0.get_capture(1)
702 self.assertEqual(icmptypes[icmp.type], "dest-unreach")
703 self.assertEqual(icmpcodes[icmp.type][icmp.code], "host-unreachable")
704 self.assertEqual(icmp.src, self.pg0.remote_ip4)
705 self.assertEqual(icmp.dst, "10.0.0.1")
708 # ICMP replies are rate limited. so sit and spin.
713 # A route via IP NULL that will reply with ICMP prohibited
715 ip_prohibit = VppIpRoute(
716 self, "10.0.0.2", 32,
717 [VppRoutePath("0.0.0.0",
719 type=FibPathType.FIB_PATH_TYPE_ICMP_PROHIBIT)])
720 ip_prohibit.add_vpp_config()
722 p_prohibit = (Ether(src=self.pg0.remote_mac,
723 dst=self.pg0.local_mac) /
724 IP(src=self.pg0.remote_ip4, dst="10.0.0.2") /
725 UDP(sport=1234, dport=1234) /
728 self.pg0.add_stream(p_prohibit)
729 self.pg_enable_capture(self.pg_interfaces)
732 rx = self.pg0.get_capture(1)
737 self.assertEqual(icmptypes[icmp.type], "dest-unreach")
738 self.assertEqual(icmpcodes[icmp.type][icmp.code], "host-prohibited")
739 self.assertEqual(icmp.src, self.pg0.remote_ip4)
740 self.assertEqual(icmp.dst, "10.0.0.2")
742 def test_ip_drop(self):
743 """ IP Drop Routes """
745 p = (Ether(src=self.pg0.remote_mac,
746 dst=self.pg0.local_mac) /
747 IP(src=self.pg0.remote_ip4, dst="1.1.1.1") /
748 UDP(sport=1234, dport=1234) /
751 r1 = VppIpRoute(self, "1.1.1.0", 24,
752 [VppRoutePath(self.pg1.remote_ip4,
753 self.pg1.sw_if_index)])
756 rx = self.send_and_expect(self.pg0, p * NUM_PKTS, self.pg1)
759 # insert a more specific as a drop
761 r2 = VppIpRoute(self, "1.1.1.1", 32,
762 [VppRoutePath("0.0.0.0",
764 type=FibPathType.FIB_PATH_TYPE_DROP)])
767 self.send_and_assert_no_replies(self.pg0, p * NUM_PKTS, "Drop Route")
768 r2.remove_vpp_config()
769 rx = self.send_and_expect(self.pg0, p * NUM_PKTS, self.pg1)
772 class TestIPDisabled(VppTestCase):
773 """ IPv4 disabled """
777 super(TestIPDisabled, cls).setUpClass()
780 def tearDownClass(cls):
781 super(TestIPDisabled, cls).tearDownClass()
784 super(TestIPDisabled, self).setUp()
786 # create 2 pg interfaces
787 self.create_pg_interfaces(range(2))
791 self.pg0.config_ip4()
792 self.pg0.resolve_arp()
794 # PG 1 is not IP enabled
798 super(TestIPDisabled, self).tearDown()
799 for i in self.pg_interfaces:
803 def test_ip_disabled(self):
808 # one accepting interface, pg0, 2 forwarding interfaces
810 route_232_1_1_1 = VppIpMRoute(
814 MRouteEntryFlags.MFIB_ENTRY_FLAG_NONE,
815 [VppMRoutePath(self.pg1.sw_if_index,
816 MRouteItfFlags.MFIB_ITF_FLAG_ACCEPT),
817 VppMRoutePath(self.pg0.sw_if_index,
818 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD)])
819 route_232_1_1_1.add_vpp_config()
821 pu = (Ether(src=self.pg1.remote_mac,
822 dst=self.pg1.local_mac) /
823 IP(src="10.10.10.10", dst=self.pg0.remote_ip4) /
824 UDP(sport=1234, dport=1234) /
826 pm = (Ether(src=self.pg1.remote_mac,
827 dst=self.pg1.local_mac) /
828 IP(src="10.10.10.10", dst="232.1.1.1") /
829 UDP(sport=1234, dport=1234) /
833 # PG1 does not forward IP traffic
835 self.send_and_assert_no_replies(self.pg1, pu, "IP disabled")
836 self.send_and_assert_no_replies(self.pg1, pm, "IP disabled")
841 self.pg1.config_ip4()
844 # Now we get packets through
846 self.pg1.add_stream(pu)
847 self.pg_enable_capture(self.pg_interfaces)
849 rx = self.pg0.get_capture(1)
851 self.pg1.add_stream(pm)
852 self.pg_enable_capture(self.pg_interfaces)
854 rx = self.pg0.get_capture(1)
859 self.pg1.unconfig_ip4()
862 # PG1 does not forward IP traffic
864 self.send_and_assert_no_replies(self.pg1, pu, "IP disabled")
865 self.send_and_assert_no_replies(self.pg1, pm, "IP disabled")
868 class TestIPSubNets(VppTestCase):
873 super(TestIPSubNets, cls).setUpClass()
876 def tearDownClass(cls):
877 super(TestIPSubNets, cls).tearDownClass()
880 super(TestIPSubNets, self).setUp()
882 # create a 2 pg interfaces
883 self.create_pg_interfaces(range(2))
885 # pg0 we will use to experiment
888 # pg1 is setup normally
890 self.pg1.config_ip4()
891 self.pg1.resolve_arp()
894 super(TestIPSubNets, self).tearDown()
895 for i in self.pg_interfaces:
898 def test_ip_sub_nets(self):
902 # Configure a covering route to forward so we know
903 # when we are dropping
905 cover_route = VppIpRoute(self, "10.0.0.0", 8,
906 [VppRoutePath(self.pg1.remote_ip4,
907 self.pg1.sw_if_index)])
908 cover_route.add_vpp_config()
910 p = (Ether(src=self.pg1.remote_mac,
911 dst=self.pg1.local_mac) /
912 IP(dst="10.10.10.10", src=self.pg0.local_ip4) /
913 UDP(sport=1234, dport=1234) /
916 self.pg1.add_stream(p)
917 self.pg_enable_capture(self.pg_interfaces)
919 rx = self.pg1.get_capture(1)
922 # Configure some non-/24 subnets on an IP interface
924 ip_addr_n = socket.inet_pton(socket.AF_INET, "10.10.10.10")
926 self.vapi.sw_interface_add_del_address(
927 sw_if_index=self.pg0.sw_if_index,
928 prefix="10.10.10.10/16")
930 pn = (Ether(src=self.pg1.remote_mac,
931 dst=self.pg1.local_mac) /
932 IP(dst="10.10.0.0", src=self.pg0.local_ip4) /
933 UDP(sport=1234, dport=1234) /
935 pb = (Ether(src=self.pg1.remote_mac,
936 dst=self.pg1.local_mac) /
937 IP(dst="10.10.255.255", src=self.pg0.local_ip4) /
938 UDP(sport=1234, dport=1234) /
941 self.send_and_assert_no_replies(self.pg1, pn, "IP Network address")
942 self.send_and_assert_no_replies(self.pg1, pb, "IP Broadcast address")
944 # remove the sub-net and we are forwarding via the cover again
945 self.vapi.sw_interface_add_del_address(
946 sw_if_index=self.pg0.sw_if_index,
947 prefix="10.10.10.10/16",
950 self.pg1.add_stream(pn)
951 self.pg_enable_capture(self.pg_interfaces)
953 rx = self.pg1.get_capture(1)
954 self.pg1.add_stream(pb)
955 self.pg_enable_capture(self.pg_interfaces)
957 rx = self.pg1.get_capture(1)
960 # A /31 is a special case where the 'other-side' is an attached host
961 # packets to that peer generate ARP requests
963 ip_addr_n = socket.inet_pton(socket.AF_INET, "10.10.10.10")
965 self.vapi.sw_interface_add_del_address(
966 sw_if_index=self.pg0.sw_if_index,
967 prefix="10.10.10.10/31")
969 pn = (Ether(src=self.pg1.remote_mac,
970 dst=self.pg1.local_mac) /
971 IP(dst="10.10.10.11", src=self.pg0.local_ip4) /
972 UDP(sport=1234, dport=1234) /
975 self.pg1.add_stream(pn)
976 self.pg_enable_capture(self.pg_interfaces)
978 rx = self.pg0.get_capture(1)
981 # remove the sub-net and we are forwarding via the cover again
982 self.vapi.sw_interface_add_del_address(
983 sw_if_index=self.pg0.sw_if_index,
984 prefix="10.10.10.10/31", is_add=0)
986 self.pg1.add_stream(pn)
987 self.pg_enable_capture(self.pg_interfaces)
989 rx = self.pg1.get_capture(1)
992 class TestIPLoadBalance(VppTestCase):
993 """ IPv4 Load-Balancing """
997 super(TestIPLoadBalance, cls).setUpClass()
1000 def tearDownClass(cls):
1001 super(TestIPLoadBalance, cls).tearDownClass()
1004 super(TestIPLoadBalance, self).setUp()
1006 self.create_pg_interfaces(range(5))
1007 mpls_tbl = VppMplsTable(self, 0)
1008 mpls_tbl.add_vpp_config()
1010 for i in self.pg_interfaces:
1017 for i in self.pg_interfaces:
1021 super(TestIPLoadBalance, self).tearDown()
1023 def send_and_expect_load_balancing(self, input, pkts, outputs):
1024 input.add_stream(pkts)
1025 self.pg_enable_capture(self.pg_interfaces)
1029 rx = oo._get_capture(1)
1030 self.assertNotEqual(0, len(rx))
1035 def send_and_expect_one_itf(self, input, pkts, itf):
1036 input.add_stream(pkts)
1037 self.pg_enable_capture(self.pg_interfaces)
1039 rx = itf.get_capture(len(pkts))
1041 def test_ip_load_balance(self):
1042 """ IP Load-Balancing """
1045 # An array of packets that differ only in the destination port
1051 # An array of packets that differ only in the source address
1056 for ii in range(NUM_PKTS):
1057 port_ip_hdr = (IP(dst="10.0.0.1", src="20.0.0.1") /
1058 UDP(sport=1234, dport=1234 + ii) /
1060 port_ip_pkts.append((Ether(src=self.pg0.remote_mac,
1061 dst=self.pg0.local_mac) /
1063 port_mpls_pkts.append((Ether(src=self.pg0.remote_mac,
1064 dst=self.pg0.local_mac) /
1065 MPLS(label=66, ttl=2) /
1068 src_ip_hdr = (IP(dst="10.0.0.1", src="20.0.0.%d" % ii) /
1069 UDP(sport=1234, dport=1234) /
1071 src_ip_pkts.append((Ether(src=self.pg0.remote_mac,
1072 dst=self.pg0.local_mac) /
1074 src_mpls_pkts.append((Ether(src=self.pg0.remote_mac,
1075 dst=self.pg0.local_mac) /
1076 MPLS(label=66, ttl=2) /
1079 route_10_0_0_1 = VppIpRoute(self, "10.0.0.1", 32,
1080 [VppRoutePath(self.pg1.remote_ip4,
1081 self.pg1.sw_if_index),
1082 VppRoutePath(self.pg2.remote_ip4,
1083 self.pg2.sw_if_index)])
1084 route_10_0_0_1.add_vpp_config()
1086 binding = VppMplsIpBind(self, 66, "10.0.0.1", 32)
1087 binding.add_vpp_config()
1090 # inject the packet on pg0 - expect load-balancing across the 2 paths
1091 # - since the default hash config is to use IP src,dst and port
1093 # We are not going to ensure equal amounts of packets across each link,
1094 # since the hash algorithm is statistical and therefore this can never
1095 # be guaranteed. But with 64 different packets we do expect some
1096 # balancing. So instead just ensure there is traffic on each link.
1098 self.send_and_expect_load_balancing(self.pg0, port_ip_pkts,
1099 [self.pg1, self.pg2])
1100 self.send_and_expect_load_balancing(self.pg0, src_ip_pkts,
1101 [self.pg1, self.pg2])
1102 self.send_and_expect_load_balancing(self.pg0, port_mpls_pkts,
1103 [self.pg1, self.pg2])
1104 self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
1105 [self.pg1, self.pg2])
1108 # change the flow hash config so it's only IP src,dst
1109 # - now only the stream with differing source address will
1112 self.vapi.set_ip_flow_hash(vrf_id=0, src=1, dst=1, sport=0, dport=0)
1114 self.send_and_expect_load_balancing(self.pg0, src_ip_pkts,
1115 [self.pg1, self.pg2])
1116 self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
1117 [self.pg1, self.pg2])
1119 self.send_and_expect_one_itf(self.pg0, port_ip_pkts, self.pg2)
1122 # change the flow hash config back to defaults
1124 self.vapi.set_ip_flow_hash(vrf_id=0, src=1, dst=1, sport=1, dport=1)
1127 # Recursive prefixes
1128 # - testing that 2 stages of load-balancing occurs and there is no
1129 # polarisation (i.e. only 2 of 4 paths are used)
1134 for ii in range(257):
1135 port_pkts.append((Ether(src=self.pg0.remote_mac,
1136 dst=self.pg0.local_mac) /
1137 IP(dst="1.1.1.1", src="20.0.0.1") /
1138 UDP(sport=1234, dport=1234 + ii) /
1139 Raw(b'\xa5' * 100)))
1140 src_pkts.append((Ether(src=self.pg0.remote_mac,
1141 dst=self.pg0.local_mac) /
1142 IP(dst="1.1.1.1", src="20.0.0.%d" % ii) /
1143 UDP(sport=1234, dport=1234) /
1144 Raw(b'\xa5' * 100)))
1146 route_10_0_0_2 = VppIpRoute(self, "10.0.0.2", 32,
1147 [VppRoutePath(self.pg3.remote_ip4,
1148 self.pg3.sw_if_index),
1149 VppRoutePath(self.pg4.remote_ip4,
1150 self.pg4.sw_if_index)])
1151 route_10_0_0_2.add_vpp_config()
1153 route_1_1_1_1 = VppIpRoute(self, "1.1.1.1", 32,
1154 [VppRoutePath("10.0.0.2", 0xffffffff),
1155 VppRoutePath("10.0.0.1", 0xffffffff)])
1156 route_1_1_1_1.add_vpp_config()
1159 # inject the packet on pg0 - expect load-balancing across all 4 paths
1161 self.vapi.cli("clear trace")
1162 self.send_and_expect_load_balancing(self.pg0, port_pkts,
1163 [self.pg1, self.pg2,
1164 self.pg3, self.pg4])
1165 self.send_and_expect_load_balancing(self.pg0, src_pkts,
1166 [self.pg1, self.pg2,
1167 self.pg3, self.pg4])
1170 # bring down pg1 expect LB to adjust to use only those that are pu
1172 self.pg1.link_down()
1174 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1175 [self.pg2, self.pg3,
1177 self.assertEqual(len(src_pkts), len(rx))
1180 # bring down pg2 expect LB to adjust to use only those that are pu
1182 self.pg2.link_down()
1184 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1185 [self.pg3, self.pg4])
1186 self.assertEqual(len(src_pkts), len(rx))
1189 # bring the links back up - expect LB over all again
1194 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1195 [self.pg1, self.pg2,
1196 self.pg3, self.pg4])
1197 self.assertEqual(len(src_pkts), len(rx))
1200 # The same link-up/down but this time admin state
1202 self.pg1.admin_down()
1203 self.pg2.admin_down()
1204 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1205 [self.pg3, self.pg4])
1206 self.assertEqual(len(src_pkts), len(rx))
1209 self.pg1.resolve_arp()
1210 self.pg2.resolve_arp()
1211 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1212 [self.pg1, self.pg2,
1213 self.pg3, self.pg4])
1214 self.assertEqual(len(src_pkts), len(rx))
1217 # Recursive prefixes
1218 # - testing that 2 stages of load-balancing, no choices
1222 for ii in range(257):
1223 port_pkts.append((Ether(src=self.pg0.remote_mac,
1224 dst=self.pg0.local_mac) /
1225 IP(dst="1.1.1.2", src="20.0.0.2") /
1226 UDP(sport=1234, dport=1234 + ii) /
1227 Raw(b'\xa5' * 100)))
1229 route_10_0_0_3 = VppIpRoute(self, "10.0.0.3", 32,
1230 [VppRoutePath(self.pg3.remote_ip4,
1231 self.pg3.sw_if_index)])
1232 route_10_0_0_3.add_vpp_config()
1234 route_1_1_1_2 = VppIpRoute(self, "1.1.1.2", 32,
1235 [VppRoutePath("10.0.0.3", 0xffffffff)])
1236 route_1_1_1_2.add_vpp_config()
1239 # inject the packet on pg0 - rx only on via routes output interface
1241 self.vapi.cli("clear trace")
1242 self.send_and_expect_one_itf(self.pg0, port_pkts, self.pg3)
1245 # Add a LB route in the presence of a down link - expect no
1246 # packets over the down link
1248 self.pg3.link_down()
1250 route_10_0_0_3 = VppIpRoute(self, "10.0.0.3", 32,
1251 [VppRoutePath(self.pg3.remote_ip4,
1252 self.pg3.sw_if_index),
1253 VppRoutePath(self.pg4.remote_ip4,
1254 self.pg4.sw_if_index)])
1255 route_10_0_0_3.add_vpp_config()
1258 for ii in range(257):
1259 port_pkts.append(Ether(src=self.pg0.remote_mac,
1260 dst=self.pg0.local_mac) /
1261 IP(dst="10.0.0.3", src="20.0.0.2") /
1262 UDP(sport=1234, dport=1234 + ii) /
1265 self.send_and_expect_one_itf(self.pg0, port_pkts, self.pg4)
1267 # bring the link back up
1270 rx = self.send_and_expect_load_balancing(self.pg0, port_pkts,
1271 [self.pg3, self.pg4])
1272 self.assertEqual(len(src_pkts), len(rx))
1275 class TestIPVlan0(VppTestCase):
1279 def setUpClass(cls):
1280 super(TestIPVlan0, cls).setUpClass()
1283 def tearDownClass(cls):
1284 super(TestIPVlan0, cls).tearDownClass()
1287 super(TestIPVlan0, self).setUp()
1289 self.create_pg_interfaces(range(2))
1290 mpls_tbl = VppMplsTable(self, 0)
1291 mpls_tbl.add_vpp_config()
1293 for i in self.pg_interfaces:
1300 for i in self.pg_interfaces:
1304 super(TestIPVlan0, self).tearDown()
1306 def test_ip_vlan_0(self):
1309 pkts = (Ether(src=self.pg0.remote_mac,
1310 dst=self.pg0.local_mac) /
1312 IP(dst=self.pg1.remote_ip4,
1313 src=self.pg0.remote_ip4) /
1314 UDP(sport=1234, dport=1234) /
1315 Raw(b'\xa5' * 100)) * NUM_PKTS
1318 # Expect that packets sent on VLAN-0 are forwarded on the
1321 self.send_and_expect(self.pg0, pkts, self.pg1)
1324 class TestIPPunt(VppTestCase):
1325 """ IPv4 Punt Police/Redirect """
1328 def setUpClass(cls):
1329 super(TestIPPunt, cls).setUpClass()
1332 def tearDownClass(cls):
1333 super(TestIPPunt, cls).tearDownClass()
1336 super(TestIPPunt, self).setUp()
1338 self.create_pg_interfaces(range(4))
1340 for i in self.pg_interfaces:
1346 super(TestIPPunt, self).tearDown()
1347 for i in self.pg_interfaces:
1351 def test_ip_punt(self):
1352 """ IP punt police and redirect """
1354 # use UDP packet that have a port we need to explicitly
1355 # register to get punted.
1356 pt_l4 = VppEnum.vl_api_punt_type_t.PUNT_API_TYPE_L4
1357 af_ip4 = VppEnum.vl_api_address_family_t.ADDRESS_IP4
1358 udp_proto = VppEnum.vl_api_ip_proto_t.IP_API_PROTO_UDP
1364 'protocol': udp_proto,
1370 self.vapi.set_punt(is_add=1, punt=punt_udp)
1372 p = (Ether(src=self.pg0.remote_mac,
1373 dst=self.pg0.local_mac) /
1374 IP(src=self.pg0.remote_ip4, dst=self.pg0.local_ip4) /
1375 UDP(sport=1234, dport=1234) /
1381 # Configure a punt redirect via pg1.
1383 nh_addr = self.pg1.remote_ip4
1384 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
1385 self.pg1.sw_if_index,
1388 self.send_and_expect(self.pg0, pkts, self.pg1)
1393 policer = self.vapi.policer_add_del(b"ip4-punt", 400, 0, 10, 0,
1395 self.vapi.ip_punt_police(policer.policer_index)
1397 self.vapi.cli("clear trace")
1398 self.pg0.add_stream(pkts)
1399 self.pg_enable_capture(self.pg_interfaces)
1403 # the number of packet received should be greater than 0,
1404 # but not equal to the number sent, since some were policed
1406 rx = self.pg1._get_capture(1)
1407 self.assertGreater(len(rx), 0)
1408 self.assertLess(len(rx), len(pkts))
1411 # remove the policer. back to full rx
1413 self.vapi.ip_punt_police(policer.policer_index, is_add=0)
1414 self.vapi.policer_add_del(b"ip4-punt", 400, 0, 10, 0,
1415 rate_type=1, is_add=0)
1416 self.send_and_expect(self.pg0, pkts, self.pg1)
1419 # remove the redirect. expect full drop.
1421 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
1422 self.pg1.sw_if_index,
1425 self.send_and_assert_no_replies(self.pg0, pkts,
1426 "IP no punt config")
1429 # Add a redirect that is not input port selective
1431 self.vapi.ip_punt_redirect(0xffffffff,
1432 self.pg1.sw_if_index,
1434 self.send_and_expect(self.pg0, pkts, self.pg1)
1436 self.vapi.ip_punt_redirect(0xffffffff,
1437 self.pg1.sw_if_index,
1441 def test_ip_punt_dump(self):
1442 """ IP4 punt redirect dump"""
1445 # Configure a punt redirects
1447 nh_address = self.pg3.remote_ip4
1448 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
1449 self.pg3.sw_if_index,
1451 self.vapi.ip_punt_redirect(self.pg1.sw_if_index,
1452 self.pg3.sw_if_index,
1454 self.vapi.ip_punt_redirect(self.pg2.sw_if_index,
1455 self.pg3.sw_if_index,
1459 # Dump pg0 punt redirects
1461 punts = self.vapi.ip_punt_redirect_dump(self.pg0.sw_if_index)
1463 self.assertEqual(p.punt.rx_sw_if_index, self.pg0.sw_if_index)
1466 # Dump punt redirects for all interfaces
1468 punts = self.vapi.ip_punt_redirect_dump(0xffffffff)
1469 self.assertEqual(len(punts), 3)
1471 self.assertEqual(p.punt.tx_sw_if_index, self.pg3.sw_if_index)
1472 self.assertNotEqual(punts[1].punt.nh, self.pg3.remote_ip4)
1473 self.assertEqual(str(punts[2].punt.nh), '0.0.0.0')
1476 class TestIPDeag(VppTestCase):
1477 """ IPv4 Deaggregate Routes """
1480 def setUpClass(cls):
1481 super(TestIPDeag, cls).setUpClass()
1484 def tearDownClass(cls):
1485 super(TestIPDeag, cls).tearDownClass()
1488 super(TestIPDeag, self).setUp()
1490 self.create_pg_interfaces(range(3))
1492 for i in self.pg_interfaces:
1498 super(TestIPDeag, self).tearDown()
1499 for i in self.pg_interfaces:
1503 def test_ip_deag(self):
1504 """ IP Deag Routes """
1507 # Create a table to be used for:
1508 # 1 - another destination address lookup
1509 # 2 - a source address lookup
1511 table_dst = VppIpTable(self, 1)
1512 table_src = VppIpTable(self, 2)
1513 table_dst.add_vpp_config()
1514 table_src.add_vpp_config()
1517 # Add a route in the default table to point to a deag/
1518 # second lookup in each of these tables
1520 route_to_dst = VppIpRoute(self, "1.1.1.1", 32,
1521 [VppRoutePath("0.0.0.0",
1524 route_to_src = VppIpRoute(
1525 self, "1.1.1.2", 32,
1526 [VppRoutePath("0.0.0.0",
1529 type=FibPathType.FIB_PATH_TYPE_SOURCE_LOOKUP)])
1530 route_to_dst.add_vpp_config()
1531 route_to_src.add_vpp_config()
1534 # packets to these destination are dropped, since they'll
1535 # hit the respective default routes in the second table
1537 p_dst = (Ether(src=self.pg0.remote_mac,
1538 dst=self.pg0.local_mac) /
1539 IP(src="5.5.5.5", dst="1.1.1.1") /
1540 TCP(sport=1234, dport=1234) /
1542 p_src = (Ether(src=self.pg0.remote_mac,
1543 dst=self.pg0.local_mac) /
1544 IP(src="2.2.2.2", dst="1.1.1.2") /
1545 TCP(sport=1234, dport=1234) /
1547 pkts_dst = p_dst * 257
1548 pkts_src = p_src * 257
1550 self.send_and_assert_no_replies(self.pg0, pkts_dst,
1552 self.send_and_assert_no_replies(self.pg0, pkts_src,
1556 # add a route in the dst table to forward via pg1
1558 route_in_dst = VppIpRoute(self, "1.1.1.1", 32,
1559 [VppRoutePath(self.pg1.remote_ip4,
1560 self.pg1.sw_if_index)],
1562 route_in_dst.add_vpp_config()
1564 self.send_and_expect(self.pg0, pkts_dst, self.pg1)
1567 # add a route in the src table to forward via pg2
1569 route_in_src = VppIpRoute(self, "2.2.2.2", 32,
1570 [VppRoutePath(self.pg2.remote_ip4,
1571 self.pg2.sw_if_index)],
1573 route_in_src.add_vpp_config()
1574 self.send_and_expect(self.pg0, pkts_src, self.pg2)
1577 # loop in the lookup DP
1579 route_loop = VppIpRoute(self, "2.2.2.3", 32,
1580 [VppRoutePath("0.0.0.0",
1583 route_loop.add_vpp_config()
1585 p_l = (Ether(src=self.pg0.remote_mac,
1586 dst=self.pg0.local_mac) /
1587 IP(src="2.2.2.4", dst="2.2.2.3") /
1588 TCP(sport=1234, dport=1234) /
1591 self.send_and_assert_no_replies(self.pg0, p_l * 257,
1595 class TestIPInput(VppTestCase):
1596 """ IPv4 Input Exceptions """
1599 def setUpClass(cls):
1600 super(TestIPInput, cls).setUpClass()
1603 def tearDownClass(cls):
1604 super(TestIPInput, cls).tearDownClass()
1607 super(TestIPInput, self).setUp()
1609 self.create_pg_interfaces(range(2))
1611 for i in self.pg_interfaces:
1617 super(TestIPInput, self).tearDown()
1618 for i in self.pg_interfaces:
1622 def test_ip_input(self):
1623 """ IP Input Exceptions """
1625 # i can't find a way in scapy to construct an IP packet
1626 # with a length less than the IP header length
1629 # Packet too short - this is forwarded
1631 p_short = (Ether(src=self.pg0.remote_mac,
1632 dst=self.pg0.local_mac) /
1633 IP(src=self.pg0.remote_ip4,
1634 dst=self.pg1.remote_ip4,
1636 UDP(sport=1234, dport=1234) /
1639 rx = self.send_and_expect(self.pg0, p_short * NUM_PKTS, self.pg1)
1642 # Packet too long - this is dropped
1644 p_long = (Ether(src=self.pg0.remote_mac,
1645 dst=self.pg0.local_mac) /
1646 IP(src=self.pg0.remote_ip4,
1647 dst=self.pg1.remote_ip4,
1649 UDP(sport=1234, dport=1234) /
1652 rx = self.send_and_assert_no_replies(self.pg0, p_long * NUM_PKTS,
1656 # bad chksum - this is dropped
1658 p_chksum = (Ether(src=self.pg0.remote_mac,
1659 dst=self.pg0.local_mac) /
1660 IP(src=self.pg0.remote_ip4,
1661 dst=self.pg1.remote_ip4,
1663 UDP(sport=1234, dport=1234) /
1666 rx = self.send_and_assert_no_replies(self.pg0, p_chksum * NUM_PKTS,
1670 # bad version - this is dropped
1672 p_ver = (Ether(src=self.pg0.remote_mac,
1673 dst=self.pg0.local_mac) /
1674 IP(src=self.pg0.remote_ip4,
1675 dst=self.pg1.remote_ip4,
1677 UDP(sport=1234, dport=1234) /
1680 rx = self.send_and_assert_no_replies(self.pg0, p_ver * NUM_PKTS,
1684 # fragment offset 1 - this is dropped
1686 p_frag = (Ether(src=self.pg0.remote_mac,
1687 dst=self.pg0.local_mac) /
1688 IP(src=self.pg0.remote_ip4,
1689 dst=self.pg1.remote_ip4,
1691 UDP(sport=1234, dport=1234) /
1694 rx = self.send_and_assert_no_replies(self.pg0, p_frag * NUM_PKTS,
1698 # TTL expired packet
1700 p_ttl = (Ether(src=self.pg0.remote_mac,
1701 dst=self.pg0.local_mac) /
1702 IP(src=self.pg0.remote_ip4,
1703 dst=self.pg1.remote_ip4,
1705 UDP(sport=1234, dport=1234) /
1708 rx = self.send_and_expect(self.pg0, p_ttl * NUM_PKTS, self.pg0)
1713 self.assertEqual(icmptypes[icmp.type], "time-exceeded")
1714 self.assertEqual(icmpcodes[icmp.type][icmp.code],
1715 "ttl-zero-during-transit")
1716 self.assertEqual(icmp.src, self.pg0.remote_ip4)
1717 self.assertEqual(icmp.dst, self.pg1.remote_ip4)
1722 p_mtu = (Ether(src=self.pg0.remote_mac,
1723 dst=self.pg0.local_mac) /
1724 IP(src=self.pg0.remote_ip4,
1725 dst=self.pg1.remote_ip4,
1726 ttl=10, flags='DF') /
1727 UDP(sport=1234, dport=1234) /
1728 Raw(b'\xa5' * 2000))
1730 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index, [1500, 0, 0, 0])
1732 rx = self.send_and_expect(self.pg0, p_mtu * NUM_PKTS, self.pg0)
1736 self.assertEqual(icmptypes[icmp.type], "dest-unreach")
1737 self.assertEqual(icmpcodes[icmp.type][icmp.code],
1738 "fragmentation-needed")
1739 self.assertEqual(icmp.src, self.pg0.remote_ip4)
1740 self.assertEqual(icmp.dst, self.pg1.remote_ip4)
1742 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index, [2500, 0, 0, 0])
1743 rx = self.send_and_expect(self.pg0, p_mtu * NUM_PKTS, self.pg1)
1745 # Reset MTU for subsequent tests
1746 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index, [9000, 0, 0, 0])
1749 # source address 0.0.0.0 and 25.255.255.255 and for-us
1751 p_s0 = (Ether(src=self.pg0.remote_mac,
1752 dst=self.pg0.local_mac) /
1754 dst=self.pg0.local_ip4) /
1756 Raw(load=b'\x0a' * 18))
1757 rx = self.send_and_assert_no_replies(self.pg0, p_s0 * 17)
1759 p_s0 = (Ether(src=self.pg0.remote_mac,
1760 dst=self.pg0.local_mac) /
1761 IP(src="255.255.255.255",
1762 dst=self.pg0.local_ip4) /
1764 Raw(load=b'\x0a' * 18))
1765 rx = self.send_and_assert_no_replies(self.pg0, p_s0 * 17)
1768 class TestIPDirectedBroadcast(VppTestCase):
1769 """ IPv4 Directed Broadcast """
1772 def setUpClass(cls):
1773 super(TestIPDirectedBroadcast, cls).setUpClass()
1776 def tearDownClass(cls):
1777 super(TestIPDirectedBroadcast, cls).tearDownClass()
1780 super(TestIPDirectedBroadcast, self).setUp()
1782 self.create_pg_interfaces(range(2))
1784 for i in self.pg_interfaces:
1788 super(TestIPDirectedBroadcast, self).tearDown()
1789 for i in self.pg_interfaces:
1792 def test_ip_input(self):
1793 """ IP Directed Broadcast """
1796 # set the directed broadcast on pg0 first, then config IP4 addresses
1797 # for pg1 directed broadcast is always disabled
1798 self.vapi.sw_interface_set_ip_directed_broadcast(
1799 self.pg0.sw_if_index, 1)
1801 p0 = (Ether(src=self.pg1.remote_mac,
1802 dst=self.pg1.local_mac) /
1804 dst=self.pg0._local_ip4_bcast) /
1805 UDP(sport=1234, dport=1234) /
1806 Raw(b'\xa5' * 2000))
1807 p1 = (Ether(src=self.pg0.remote_mac,
1808 dst=self.pg0.local_mac) /
1810 dst=self.pg1._local_ip4_bcast) /
1811 UDP(sport=1234, dport=1234) /
1812 Raw(b'\xa5' * 2000))
1814 self.pg0.config_ip4()
1815 self.pg0.resolve_arp()
1816 self.pg1.config_ip4()
1817 self.pg1.resolve_arp()
1820 # test packet is L2 broadcast
1822 rx = self.send_and_expect(self.pg1, p0 * NUM_PKTS, self.pg0)
1823 self.assertTrue(rx[0][Ether].dst, "ff:ff:ff:ff:ff:ff")
1825 self.send_and_assert_no_replies(self.pg0, p1 * NUM_PKTS,
1826 "directed broadcast disabled")
1829 # toggle directed broadcast on pg0
1831 self.vapi.sw_interface_set_ip_directed_broadcast(
1832 self.pg0.sw_if_index, 0)
1833 self.send_and_assert_no_replies(self.pg1, p0 * NUM_PKTS,
1834 "directed broadcast disabled")
1836 self.vapi.sw_interface_set_ip_directed_broadcast(
1837 self.pg0.sw_if_index, 1)
1838 rx = self.send_and_expect(self.pg1, p0 * NUM_PKTS, self.pg0)
1840 self.pg0.unconfig_ip4()
1841 self.pg1.unconfig_ip4()
1844 class TestIPLPM(VppTestCase):
1845 """ IPv4 longest Prefix Match """
1848 def setUpClass(cls):
1849 super(TestIPLPM, cls).setUpClass()
1852 def tearDownClass(cls):
1853 super(TestIPLPM, cls).tearDownClass()
1856 super(TestIPLPM, self).setUp()
1858 self.create_pg_interfaces(range(4))
1860 for i in self.pg_interfaces:
1866 super(TestIPLPM, self).tearDown()
1867 for i in self.pg_interfaces:
1871 def test_ip_lpm(self):
1872 """ IP longest Prefix Match """
1874 s_24 = VppIpRoute(self, "10.1.2.0", 24,
1875 [VppRoutePath(self.pg1.remote_ip4,
1876 self.pg1.sw_if_index)])
1877 s_24.add_vpp_config()
1878 s_8 = VppIpRoute(self, "10.0.0.0", 8,
1879 [VppRoutePath(self.pg2.remote_ip4,
1880 self.pg2.sw_if_index)])
1881 s_8.add_vpp_config()
1883 p_8 = (Ether(src=self.pg0.remote_mac,
1884 dst=self.pg0.local_mac) /
1887 UDP(sport=1234, dport=1234) /
1888 Raw(b'\xa5' * 2000))
1889 p_24 = (Ether(src=self.pg0.remote_mac,
1890 dst=self.pg0.local_mac) /
1893 UDP(sport=1234, dport=1234) /
1894 Raw(b'\xa5' * 2000))
1896 self.logger.info(self.vapi.cli("sh ip fib mtrie"))
1897 rx = self.send_and_expect(self.pg0, p_8 * NUM_PKTS, self.pg2)
1898 rx = self.send_and_expect(self.pg0, p_24 * NUM_PKTS, self.pg1)
1901 class TestIPv4Frag(VppTestCase):
1902 """ IPv4 fragmentation """
1905 def setUpClass(cls):
1906 super(TestIPv4Frag, cls).setUpClass()
1908 cls.create_pg_interfaces([0, 1])
1909 cls.src_if = cls.pg0
1910 cls.dst_if = cls.pg1
1912 # setup all interfaces
1913 for i in cls.pg_interfaces:
1919 def tearDownClass(cls):
1920 super(TestIPv4Frag, cls).tearDownClass()
1922 def test_frag_large_packets(self):
1923 """ Fragmentation of large packets """
1925 self.vapi.cli("adjacency counters enable")
1927 p = (Ether(dst=self.src_if.local_mac, src=self.src_if.remote_mac) /
1928 IP(src=self.src_if.remote_ip4, dst=self.dst_if.remote_ip4) /
1929 UDP(sport=1234, dport=5678) / Raw())
1930 self.extend_packet(p, 6000, "abcde")
1931 saved_payload = p[Raw].load
1933 nbr = VppNeighbor(self,
1934 self.dst_if.sw_if_index,
1935 self.dst_if.remote_mac,
1936 self.dst_if.remote_ip4).add_vpp_config()
1938 # Force fragmentation by setting MTU of output interface
1939 # lower than packet size
1940 self.vapi.sw_interface_set_mtu(self.dst_if.sw_if_index,
1943 self.pg_enable_capture()
1944 self.src_if.add_stream(p)
1947 # Expecting 3 fragments because size of created fragments currently
1948 # cannot be larger then VPP buffer size (which is 2048)
1949 packets = self.dst_if.get_capture(3)
1951 # we should show 3 packets thru the neighbor
1952 self.assertEqual(3, nbr.get_stats()['packets'])
1954 # Assume VPP sends the fragments in order
1957 payload_offset = p.frag * 8
1958 if payload_offset > 0:
1959 payload_offset -= 8 # UDP header is not in payload
1960 self.assert_equal(payload_offset, len(payload))
1961 payload += p[Raw].load
1962 self.assert_equal(payload, saved_payload, "payload")
1965 class TestIPReplace(VppTestCase):
1966 """ IPv4 Table Replace """
1969 def setUpClass(cls):
1970 super(TestIPReplace, cls).setUpClass()
1973 def tearDownClass(cls):
1974 super(TestIPReplace, cls).tearDownClass()
1977 super(TestIPReplace, self).setUp()
1979 self.create_pg_interfaces(range(4))
1984 for i in self.pg_interfaces:
1988 i.generate_remote_hosts(2)
1989 self.tables.append(VppIpTable(self, table_id).add_vpp_config())
1993 super(TestIPReplace, self).tearDown()
1994 for i in self.pg_interfaces:
1998 def test_replace(self):
1999 """ IP Table Replace """
2002 links = [self.pg0, self.pg1, self.pg2, self.pg3]
2003 routes = [[], [], [], []]
2005 # load up the tables with some routes
2006 for ii, t in enumerate(self.tables):
2007 for jj in range(N_ROUTES):
2009 self, "10.0.0.%d" % jj, 32,
2010 [VppRoutePath(links[ii].remote_hosts[0].ip4,
2011 links[ii].sw_if_index),
2012 VppRoutePath(links[ii].remote_hosts[1].ip4,
2013 links[ii].sw_if_index)],
2014 table_id=t.table_id).add_vpp_config()
2015 multi = VppIpMRoute(
2017 "239.0.0.%d" % jj, 32,
2018 MRouteEntryFlags.MFIB_ENTRY_FLAG_NONE,
2019 [VppMRoutePath(self.pg0.sw_if_index,
2020 MRouteItfFlags.MFIB_ITF_FLAG_ACCEPT),
2021 VppMRoutePath(self.pg1.sw_if_index,
2022 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD),
2023 VppMRoutePath(self.pg2.sw_if_index,
2024 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD),
2025 VppMRoutePath(self.pg3.sw_if_index,
2026 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD)],
2027 table_id=t.table_id).add_vpp_config()
2028 routes[ii].append({'uni': uni,
2032 # replace the tables a few times
2035 # replace_begin each table
2036 for t in self.tables:
2039 # all the routes are still there
2040 for ii, t in enumerate(self.tables):
2043 for r in routes[ii]:
2044 self.assertTrue(find_route_in_dump(dump, r['uni'], t))
2045 self.assertTrue(find_mroute_in_dump(mdump, r['multi'], t))
2047 # redownload the even numbered routes
2048 for ii, t in enumerate(self.tables):
2049 for jj in range(0, N_ROUTES, 2):
2050 routes[ii][jj]['uni'].add_vpp_config()
2051 routes[ii][jj]['multi'].add_vpp_config()
2053 # signal each table replace_end
2054 for t in self.tables:
2057 # we should find the even routes, but not the odd
2058 for ii, t in enumerate(self.tables):
2061 for jj in range(0, N_ROUTES, 2):
2062 self.assertTrue(find_route_in_dump(
2063 dump, routes[ii][jj]['uni'], t))
2064 self.assertTrue(find_mroute_in_dump(
2065 mdump, routes[ii][jj]['multi'], t))
2066 for jj in range(1, N_ROUTES - 1, 2):
2067 self.assertFalse(find_route_in_dump(
2068 dump, routes[ii][jj]['uni'], t))
2069 self.assertFalse(find_mroute_in_dump(
2070 mdump, routes[ii][jj]['multi'], t))
2072 # reload all the routes
2073 for ii, t in enumerate(self.tables):
2074 for r in routes[ii]:
2075 r['uni'].add_vpp_config()
2076 r['multi'].add_vpp_config()
2078 # all the routes are still there
2079 for ii, t in enumerate(self.tables):
2082 for r in routes[ii]:
2083 self.assertTrue(find_route_in_dump(dump, r['uni'], t))
2084 self.assertTrue(find_mroute_in_dump(mdump, r['multi'], t))
2087 # finally flush the tables for good measure
2089 for t in self.tables:
2091 self.assertEqual(len(t.dump()), 5)
2092 self.assertEqual(len(t.mdump()), 1)
2095 class TestIPCover(VppTestCase):
2096 """ IPv4 Table Cover """
2099 def setUpClass(cls):
2100 super(TestIPCover, cls).setUpClass()
2103 def tearDownClass(cls):
2104 super(TestIPCover, cls).tearDownClass()
2107 super(TestIPCover, self).setUp()
2109 self.create_pg_interfaces(range(4))
2114 for i in self.pg_interfaces:
2118 i.generate_remote_hosts(2)
2119 self.tables.append(VppIpTable(self, table_id).add_vpp_config())
2123 super(TestIPCover, self).tearDown()
2124 for i in self.pg_interfaces:
2128 def test_cover(self):
2129 """ IP Table Cover """
2131 # add a loop back with a /32 prefix
2132 lo = VppLoInterface(self)
2134 a = VppIpInterfaceAddress(self, lo, "127.0.0.1", 32).add_vpp_config()
2136 # add a neighbour that matches the loopback's /32
2137 nbr = VppNeighbor(self,
2140 "127.0.0.1").add_vpp_config()
2142 # add the default route which will be the cover for /32
2143 r = VppIpRoute(self, "0.0.0.0", 0,
2144 [VppRoutePath("127.0.0.1",
2146 register=False).add_vpp_config()
2148 # add/remove/add a longer mask cover
2149 r = VppIpRoute(self, "127.0.0.0", 8,
2150 [VppRoutePath("127.0.0.1",
2151 lo.sw_if_index)]).add_vpp_config()
2152 r.remove_vpp_config()
2155 # remove the default route
2156 r.remove_vpp_config()
2158 if __name__ == '__main__':
2159 unittest.main(testRunner=VppTestRunner)