blob: 8c6f8c04c0cbd05ec035e911ddd90d3f3dc07f19 [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Paul Vinciguerra6e4c6ad2018-11-25 10:35:29 -08002import binascii
Matej Klotton16a14cd2016-12-07 15:09:13 +01003import random
Klement Sekeraf62ae122016-10-11 11:47:09 +02004import socket
Matej Klotton16a14cd2016-12-07 15:09:13 +01005import unittest
Klement Sekeraf62ae122016-10-11 11:47:09 +02006
Paul Vinciguerraa7427ec2019-03-10 10:04:23 -07007import scapy.compat
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -08008from scapy.contrib.mpls import MPLS
9from scapy.layers.inet import IP, UDP, TCP, ICMP, icmptypes, icmpcodes
10from scapy.layers.l2 import Ether, Dot1Q, ARP
11from scapy.packet import Raw
12from six import moves
13
Damjan Marionf56b77a2016-10-03 19:44:57 +020014from framework import VppTestCase, VppTestRunner
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -080015from util import ppp
Neale Ranns180279b2017-03-16 15:49:09 -040016from vpp_ip_route import VppIpRoute, VppRoutePath, VppIpMRoute, \
Neale Ranns15002542017-09-10 04:39:11 -070017 VppMRoutePath, MRouteItfFlags, MRouteEntryFlags, VppMplsIpBind, \
Matthew Smith6c92f5b2019-08-07 11:46:30 -050018 VppMplsTable, VppIpTable, FibPathType, find_route, \
Neale Ranns9db6ada2019-11-08 12:42:31 +000019 VppIpInterfaceAddress, find_route_in_dump, find_mroute_in_dump
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -080020from vpp_sub_interface import VppSubInterface, VppDot1QSubint, VppDot1ADSubint
Neale Ranns68577d22019-06-04 13:31:23 +000021from vpp_papi import VppEnum
Neale Ranns0b6a8572019-10-30 17:34:14 +000022from vpp_neighbor import VppNeighbor
Neale Ranns9efcee62019-11-26 19:30:08 +000023from vpp_lo_interface import VppLoInterface
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010024from vpp_policer import VppPolicer
Damjan Marionf56b77a2016-10-03 19:44:57 +020025
Paul Vinciguerra4271c972019-05-14 13:25:49 -040026NUM_PKTS = 67
27
Damjan Marionf56b77a2016-10-03 19:44:57 +020028
Klement Sekeraf62ae122016-10-11 11:47:09 +020029class TestIPv4(VppTestCase):
Damjan Marionf56b77a2016-10-03 19:44:57 +020030 """ IPv4 Test Case """
31
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -070032 @classmethod
33 def setUpClass(cls):
34 super(TestIPv4, cls).setUpClass()
35
36 @classmethod
37 def tearDownClass(cls):
38 super(TestIPv4, cls).tearDownClass()
39
Klement Sekeraf62ae122016-10-11 11:47:09 +020040 def setUp(self):
Matej Klotton86d87c42016-11-11 11:38:55 +010041 """
42 Perform test setup before test case.
43
44 **Config:**
45 - create 3 pg interfaces
46 - untagged pg0 interface
47 - Dot1Q subinterface on pg1
48 - Dot1AD subinterface on pg2
49 - setup interfaces:
50 - put it into UP state
51 - set IPv4 addresses
52 - resolve neighbor address using ARP
53 - configure 200 fib entries
54
55 :ivar list interfaces: pg interfaces and subinterfaces.
56 :ivar dict flows: IPv4 packet flows in test.
Matej Klotton86d87c42016-11-11 11:38:55 +010057 """
Klement Sekeraf62ae122016-10-11 11:47:09 +020058 super(TestIPv4, self).setUp()
Damjan Marionf56b77a2016-10-03 19:44:57 +020059
Klement Sekeraf62ae122016-10-11 11:47:09 +020060 # create 3 pg interfaces
61 self.create_pg_interfaces(range(3))
Damjan Marionf56b77a2016-10-03 19:44:57 +020062
Klement Sekeraf62ae122016-10-11 11:47:09 +020063 # create 2 subinterfaces for pg1 and pg2
64 self.sub_interfaces = [
65 VppDot1QSubint(self, self.pg1, 100),
66 VppDot1ADSubint(self, self.pg2, 200, 300, 400)]
Damjan Marionf56b77a2016-10-03 19:44:57 +020067
Klement Sekeraf62ae122016-10-11 11:47:09 +020068 # packet flows mapping pg0 -> pg1.sub, pg2.sub, etc.
69 self.flows = dict()
70 self.flows[self.pg0] = [self.pg1.sub_if, self.pg2.sub_if]
71 self.flows[self.pg1.sub_if] = [self.pg0, self.pg2.sub_if]
72 self.flows[self.pg2.sub_if] = [self.pg0, self.pg1.sub_if]
Damjan Marionf56b77a2016-10-03 19:44:57 +020073
Klement Sekeraf62ae122016-10-11 11:47:09 +020074 # packet sizes
Jan Geletye6c78ee2018-06-26 12:24:03 +020075 self.pg_if_packet_sizes = [64, 1500, 9020]
Damjan Marionf56b77a2016-10-03 19:44:57 +020076
Klement Sekeraf62ae122016-10-11 11:47:09 +020077 self.interfaces = list(self.pg_interfaces)
78 self.interfaces.extend(self.sub_interfaces)
Damjan Marionf56b77a2016-10-03 19:44:57 +020079
Klement Sekeraf62ae122016-10-11 11:47:09 +020080 # setup all interfaces
81 for i in self.interfaces:
82 i.admin_up()
83 i.config_ip4()
84 i.resolve_arp()
85
Matej Klotton86d87c42016-11-11 11:38:55 +010086 # config 2M FIB entries
Damjan Marionf56b77a2016-10-03 19:44:57 +020087
88 def tearDown(self):
Matej Klotton86d87c42016-11-11 11:38:55 +010089 """Run standard test teardown and log ``show ip arp``."""
Klement Sekeraf62ae122016-10-11 11:47:09 +020090 super(TestIPv4, self).tearDown()
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -070091
92 def show_commands_at_teardown(self):
Neale Rannscbe25aa2019-09-30 10:53:31 +000093 self.logger.info(self.vapi.cli("show ip4 neighbors"))
Paul Vinciguerra90cf21b2019-03-13 09:23:05 -070094 # info(self.vapi.cli("show ip fib")) # many entries
Damjan Marionf56b77a2016-10-03 19:44:57 +020095
Jan Geletye6c78ee2018-06-26 12:24:03 +020096 def modify_packet(self, src_if, packet_size, pkt):
97 """Add load, set destination IP and extend packet to required packet
98 size for defined interface.
99
100 :param VppInterface src_if: Interface to create packet for.
101 :param int packet_size: Required packet size.
102 :param Scapy pkt: Packet to be modified.
103 """
Ole Troan6ed154f2019-10-15 19:31:55 +0200104 dst_if_idx = int(packet_size / 10 % 2)
Jan Geletye6c78ee2018-06-26 12:24:03 +0200105 dst_if = self.flows[src_if][dst_if_idx]
106 info = self.create_packet_info(src_if, dst_if)
107 payload = self.info_to_payload(info)
108 p = pkt/Raw(payload)
109 p[IP].dst = dst_if.remote_ip4
110 info.data = p.copy()
111 if isinstance(src_if, VppSubInterface):
112 p = src_if.add_dot1_layer(p)
113 self.extend_packet(p, packet_size)
114
115 return p
116
117 def create_stream(self, src_if):
Matej Klotton86d87c42016-11-11 11:38:55 +0100118 """Create input packet stream for defined interface.
119
120 :param VppInterface src_if: Interface to create packet stream for.
Matej Klotton86d87c42016-11-11 11:38:55 +0100121 """
Jan Geletye6c78ee2018-06-26 12:24:03 +0200122 hdr_ext = 4 if isinstance(src_if, VppSubInterface) else 0
123 pkt_tmpl = (Ether(dst=src_if.local_mac, src=src_if.remote_mac) /
124 IP(src=src_if.remote_ip4) /
125 UDP(sport=1234, dport=1234))
126
127 pkts = [self.modify_packet(src_if, i, pkt_tmpl)
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -0800128 for i in moves.range(self.pg_if_packet_sizes[0],
129 self.pg_if_packet_sizes[1], 10)]
Jan Geletye6c78ee2018-06-26 12:24:03 +0200130 pkts_b = [self.modify_packet(src_if, i, pkt_tmpl)
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -0800131 for i in moves.range(self.pg_if_packet_sizes[1] + hdr_ext,
132 self.pg_if_packet_sizes[2] + hdr_ext,
133 50)]
Jan Geletye6c78ee2018-06-26 12:24:03 +0200134 pkts.extend(pkts_b)
135
Damjan Marionf56b77a2016-10-03 19:44:57 +0200136 return pkts
137
Klement Sekeraf62ae122016-10-11 11:47:09 +0200138 def verify_capture(self, dst_if, capture):
Matej Klotton86d87c42016-11-11 11:38:55 +0100139 """Verify captured input packet stream for defined interface.
140
141 :param VppInterface dst_if: Interface to verify captured packet stream
Jan Geletye6c78ee2018-06-26 12:24:03 +0200142 for.
Matej Klotton86d87c42016-11-11 11:38:55 +0100143 :param list capture: Captured packet stream.
144 """
145 self.logger.info("Verifying capture on interface %s" % dst_if.name)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200146 last_info = dict()
Damjan Marionf56b77a2016-10-03 19:44:57 +0200147 for i in self.interfaces:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200148 last_info[i.sw_if_index] = None
149 is_sub_if = False
150 dst_sw_if_index = dst_if.sw_if_index
151 if hasattr(dst_if, 'parent'):
152 is_sub_if = True
Damjan Marionf56b77a2016-10-03 19:44:57 +0200153 for packet in capture:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200154 if is_sub_if:
155 # Check VLAN tags and Ethernet header
156 packet = dst_if.remove_dot1_layer(packet)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200157 self.assertTrue(Dot1Q not in packet)
158 try:
159 ip = packet[IP]
160 udp = packet[UDP]
Paul Vinciguerraeaea4212019-03-06 11:58:06 -0800161 payload_info = self.payload_to_info(packet[Raw])
Damjan Marionf56b77a2016-10-03 19:44:57 +0200162 packet_index = payload_info.index
Klement Sekeraf62ae122016-10-11 11:47:09 +0200163 self.assertEqual(payload_info.dst, dst_sw_if_index)
Klement Sekerada505f62017-01-04 12:58:53 +0100164 self.logger.debug(
165 "Got packet on port %s: src=%u (id=%u)" %
166 (dst_if.name, payload_info.src, packet_index))
Klement Sekeraf62ae122016-10-11 11:47:09 +0200167 next_info = self.get_next_packet_info_for_interface2(
168 payload_info.src, dst_sw_if_index,
169 last_info[payload_info.src])
170 last_info[payload_info.src] = next_info
Damjan Marionf56b77a2016-10-03 19:44:57 +0200171 self.assertTrue(next_info is not None)
172 self.assertEqual(packet_index, next_info.index)
173 saved_packet = next_info.data
174 # Check standard fields
175 self.assertEqual(ip.src, saved_packet[IP].src)
176 self.assertEqual(ip.dst, saved_packet[IP].dst)
177 self.assertEqual(udp.sport, saved_packet[UDP].sport)
178 self.assertEqual(udp.dport, saved_packet[UDP].dport)
179 except:
Klement Sekera7bb873a2016-11-18 07:38:42 +0100180 self.logger.error(ppp("Unexpected or invalid packet:", packet))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200181 raise
182 for i in self.interfaces:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200183 remaining_packet = self.get_next_packet_info_for_interface2(
184 i.sw_if_index, dst_sw_if_index, last_info[i.sw_if_index])
Klement Sekera7bb873a2016-11-18 07:38:42 +0100185 self.assertTrue(remaining_packet is None,
186 "Interface %s: Packet expected from interface %s "
187 "didn't arrive" % (dst_if.name, i.name))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200188
189 def test_fib(self):
Matej Klotton86d87c42016-11-11 11:38:55 +0100190 """ IPv4 FIB test
191
192 Test scenario:
193
194 - Create IPv4 stream for pg0 interface
Jan Geletye6c78ee2018-06-26 12:24:03 +0200195 - Create IPv4 tagged streams for pg1's and pg2's sub-interface.
Matej Klotton86d87c42016-11-11 11:38:55 +0100196 - Send and verify received packets on each interface.
197 """
Damjan Marionf56b77a2016-10-03 19:44:57 +0200198
Jan Geletye6c78ee2018-06-26 12:24:03 +0200199 pkts = self.create_stream(self.pg0)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200200 self.pg0.add_stream(pkts)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200201
Klement Sekeraf62ae122016-10-11 11:47:09 +0200202 for i in self.sub_interfaces:
Jan Geletye6c78ee2018-06-26 12:24:03 +0200203 pkts = self.create_stream(i)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200204 i.parent.add_stream(pkts)
205
206 self.pg_enable_capture(self.pg_interfaces)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200207 self.pg_start()
208
Klement Sekeraf62ae122016-10-11 11:47:09 +0200209 pkts = self.pg0.get_capture()
210 self.verify_capture(self.pg0, pkts)
211
212 for i in self.sub_interfaces:
213 pkts = i.parent.get_capture()
214 self.verify_capture(i, pkts)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200215
216
Christian Hoppsf5d38e02020-05-04 10:28:03 -0400217class TestIPv4RouteLookup(VppTestCase):
218 """ IPv4 Route Lookup Test Case """
219 routes = []
220
221 def route_lookup(self, prefix, exact):
222 return self.vapi.api(self.vapi.papi.ip_route_lookup,
223 {
224 'table_id': 0,
225 'exact': exact,
226 'prefix': prefix,
227 })
228
229 @classmethod
230 def setUpClass(cls):
231 super(TestIPv4RouteLookup, cls).setUpClass()
232
233 @classmethod
234 def tearDownClass(cls):
235 super(TestIPv4RouteLookup, cls).tearDownClass()
236
237 def setUp(self):
238 super(TestIPv4RouteLookup, self).setUp()
239
240 drop_nh = VppRoutePath("127.0.0.1", 0xffffffff,
241 type=FibPathType.FIB_PATH_TYPE_DROP)
242
243 # Add 3 routes
244 r = VppIpRoute(self, "1.1.0.0", 16, [drop_nh])
245 r.add_vpp_config()
246 self.routes.append(r)
247
248 r = VppIpRoute(self, "1.1.1.0", 24, [drop_nh])
249 r.add_vpp_config()
250 self.routes.append(r)
251
252 r = VppIpRoute(self, "1.1.1.1", 32, [drop_nh])
253 r.add_vpp_config()
254 self.routes.append(r)
255
256 def tearDown(self):
257 # Remove the routes we added
258 for r in self.routes:
259 r.remove_vpp_config()
260
261 super(TestIPv4RouteLookup, self).tearDown()
262
263 def test_exact_match(self):
264 # Verify we find the host route
265 prefix = "1.1.1.1/32"
266 result = self.route_lookup(prefix, True)
267 assert (prefix == str(result.route.prefix))
268
269 # Verify we find a middle prefix route
270 prefix = "1.1.1.0/24"
271 result = self.route_lookup(prefix, True)
272 assert (prefix == str(result.route.prefix))
273
274 # Verify we do not find an available LPM.
275 with self.vapi.assert_negative_api_retval():
276 self.route_lookup("1.1.1.2/32", True)
277
278 def test_longest_prefix_match(self):
279 # verify we find lpm
280 lpm_prefix = "1.1.1.0/24"
281 result = self.route_lookup("1.1.1.2/32", False)
282 assert (lpm_prefix == str(result.route.prefix))
283
284 # Verify we find the exact when not requested
285 result = self.route_lookup(lpm_prefix, False)
286 assert (lpm_prefix == str(result.route.prefix))
287
288 # Can't seem to delete the default route so no negative LPM test.
289
290
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500291class TestIPv4IfAddrRoute(VppTestCase):
Matthew G Smith88d29a92019-07-17 10:01:17 -0500292 """ IPv4 Interface Addr Route Test Case """
293
294 @classmethod
295 def setUpClass(cls):
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500296 super(TestIPv4IfAddrRoute, cls).setUpClass()
Matthew G Smith88d29a92019-07-17 10:01:17 -0500297
298 @classmethod
299 def tearDownClass(cls):
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500300 super(TestIPv4IfAddrRoute, cls).tearDownClass()
Matthew G Smith88d29a92019-07-17 10:01:17 -0500301
302 def setUp(self):
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500303 super(TestIPv4IfAddrRoute, self).setUp()
Matthew G Smith88d29a92019-07-17 10:01:17 -0500304
305 # create 1 pg interface
306 self.create_pg_interfaces(range(1))
307
308 for i in self.pg_interfaces:
309 i.admin_up()
310 i.config_ip4()
311 i.resolve_arp()
312
313 def tearDown(self):
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500314 super(TestIPv4IfAddrRoute, self).tearDown()
Matthew G Smith88d29a92019-07-17 10:01:17 -0500315 for i in self.pg_interfaces:
316 i.unconfig_ip4()
317 i.admin_down()
318
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500319 def test_ipv4_ifaddrs_same_prefix(self):
320 """ IPv4 Interface Addresses Same Prefix test
321
322 Test scenario:
323
324 - Verify no route in FIB for prefix 10.10.10.0/24
325 - Configure IPv4 address 10.10.10.10/24 on an interface
326 - Verify route in FIB for prefix 10.10.10.0/24
327 - Configure IPv4 address 10.10.10.20/24 on an interface
328 - Delete 10.10.10.10/24 from interface
329 - Verify route in FIB for prefix 10.10.10.0/24
330 - Delete 10.10.10.20/24 from interface
331 - Verify no route in FIB for prefix 10.10.10.0/24
332 """
333
334 # create two addresses, verify route not present
Neale Rannsefd7bc22019-11-11 08:32:34 +0000335 if_addr1 = VppIpInterfaceAddress(self, self.pg0, "10.10.10.10", 24)
336 if_addr2 = VppIpInterfaceAddress(self, self.pg0, "10.10.10.20", 24)
337 self.assertFalse(if_addr1.query_vpp_config()) # 10.10.10.10/24
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500338 self.assertFalse(find_route(self, "10.10.10.10", 32))
339 self.assertFalse(find_route(self, "10.10.10.20", 32))
340 self.assertFalse(find_route(self, "10.10.10.255", 32))
341 self.assertFalse(find_route(self, "10.10.10.0", 32))
342
343 # configure first address, verify route present
344 if_addr1.add_vpp_config()
Neale Rannsefd7bc22019-11-11 08:32:34 +0000345 self.assertTrue(if_addr1.query_vpp_config()) # 10.10.10.10/24
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500346 self.assertTrue(find_route(self, "10.10.10.10", 32))
347 self.assertFalse(find_route(self, "10.10.10.20", 32))
348 self.assertTrue(find_route(self, "10.10.10.255", 32))
349 self.assertTrue(find_route(self, "10.10.10.0", 32))
350
351 # configure second address, delete first, verify route not removed
352 if_addr2.add_vpp_config()
353 if_addr1.remove_vpp_config()
Neale Rannsefd7bc22019-11-11 08:32:34 +0000354 self.assertFalse(if_addr1.query_vpp_config()) # 10.10.10.10/24
355 self.assertTrue(if_addr2.query_vpp_config()) # 10.10.10.20/24
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500356 self.assertFalse(find_route(self, "10.10.10.10", 32))
357 self.assertTrue(find_route(self, "10.10.10.20", 32))
358 self.assertTrue(find_route(self, "10.10.10.255", 32))
359 self.assertTrue(find_route(self, "10.10.10.0", 32))
360
361 # delete second address, verify route removed
362 if_addr2.remove_vpp_config()
Neale Rannsefd7bc22019-11-11 08:32:34 +0000363 self.assertFalse(if_addr2.query_vpp_config()) # 10.10.10.20/24
Matthew Smith6c92f5b2019-08-07 11:46:30 -0500364 self.assertFalse(find_route(self, "10.10.10.10", 32))
365 self.assertFalse(find_route(self, "10.10.10.20", 32))
366 self.assertFalse(find_route(self, "10.10.10.255", 32))
367 self.assertFalse(find_route(self, "10.10.10.0", 32))
368
Matthew G Smith88d29a92019-07-17 10:01:17 -0500369 def test_ipv4_ifaddr_route(self):
370 """ IPv4 Interface Address Route test
371
372 Test scenario:
373
374 - Create loopback
375 - Configure IPv4 address on loopback
376 - Verify that address is not in the FIB
377 - Bring loopback up
378 - Verify that address is in the FIB now
379 - Bring loopback down
380 - Verify that address is not in the FIB anymore
381 - Bring loopback up
382 - Configure IPv4 address on loopback
383 - Verify that address is in the FIB now
384 """
385
386 # create a loopback and configure IPv4
387 loopbacks = self.create_loopback_interfaces(1)
388 lo_if = self.lo_interfaces[0]
389
390 lo_if.local_ip4_prefix_len = 32
391 lo_if.config_ip4()
392
393 # The intf was down when addr was added -> entry not in FIB
394 fib4_dump = self.vapi.ip_route_dump(0)
395 self.assertFalse(lo_if.is_ip4_entry_in_fib_dump(fib4_dump))
396
397 # When intf is brought up, entry is added
398 lo_if.admin_up()
399 fib4_dump = self.vapi.ip_route_dump(0)
400 self.assertTrue(lo_if.is_ip4_entry_in_fib_dump(fib4_dump))
401
402 # When intf is brought down, entry is removed
403 lo_if.admin_down()
404 fib4_dump = self.vapi.ip_route_dump(0)
405 self.assertFalse(lo_if.is_ip4_entry_in_fib_dump(fib4_dump))
406
407 # Remove addr, bring up interface, re-add -> entry in FIB
408 lo_if.unconfig_ip4()
409 lo_if.admin_up()
410 lo_if.config_ip4()
411 fib4_dump = self.vapi.ip_route_dump(0)
412 self.assertTrue(lo_if.is_ip4_entry_in_fib_dump(fib4_dump))
413
yedgdbd366b2020-05-14 10:51:53 +0800414 def test_ipv4_ifaddr_del(self):
415 """ Delete an interface address that does not exist """
416
417 loopbacks = self.create_loopback_interfaces(1)
418 lo = self.lo_interfaces[0]
419
420 lo.config_ip4()
421 lo.admin_up()
422
423 #
424 # try and remove pg0's subnet from lo
425 #
426 with self.vapi.assert_negative_api_retval():
427 self.vapi.sw_interface_add_del_address(
428 sw_if_index=lo.sw_if_index,
429 prefix=self.pg0.local_ip4_prefix,
430 is_add=0)
431
Matthew G Smith88d29a92019-07-17 10:01:17 -0500432
Jan Geletye6c78ee2018-06-26 12:24:03 +0200433class TestICMPEcho(VppTestCase):
434 """ ICMP Echo Test Case """
435
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700436 @classmethod
437 def setUpClass(cls):
438 super(TestICMPEcho, cls).setUpClass()
439
440 @classmethod
441 def tearDownClass(cls):
442 super(TestICMPEcho, cls).tearDownClass()
443
Jan Geletye6c78ee2018-06-26 12:24:03 +0200444 def setUp(self):
445 super(TestICMPEcho, self).setUp()
446
447 # create 1 pg interface
448 self.create_pg_interfaces(range(1))
449
450 for i in self.pg_interfaces:
451 i.admin_up()
452 i.config_ip4()
453 i.resolve_arp()
454
455 def tearDown(self):
456 super(TestICMPEcho, self).tearDown()
457 for i in self.pg_interfaces:
458 i.unconfig_ip4()
459 i.admin_down()
460
461 def test_icmp_echo(self):
462 """ VPP replies to ICMP Echo Request
463
464 Test scenario:
465
466 - Receive ICMP Echo Request message on pg0 interface.
467 - Check outgoing ICMP Echo Reply message on pg0 interface.
468 """
469
470 icmp_id = 0xb
471 icmp_seq = 5
Ole Troan6ed154f2019-10-15 19:31:55 +0200472 icmp_load = b'\x0a' * 18
Jan Geletye6c78ee2018-06-26 12:24:03 +0200473 p_echo_request = (Ether(src=self.pg0.remote_mac,
474 dst=self.pg0.local_mac) /
475 IP(src=self.pg0.remote_ip4, dst=self.pg0.local_ip4) /
476 ICMP(id=icmp_id, seq=icmp_seq) /
477 Raw(load=icmp_load))
478
479 self.pg0.add_stream(p_echo_request)
480 self.pg_enable_capture(self.pg_interfaces)
481 self.pg_start()
482
483 rx = self.pg0.get_capture(1)
484 rx = rx[0]
485 ether = rx[Ether]
486 ipv4 = rx[IP]
487 icmp = rx[ICMP]
488
489 self.assertEqual(ether.src, self.pg0.local_mac)
490 self.assertEqual(ether.dst, self.pg0.remote_mac)
491
492 self.assertEqual(ipv4.src, self.pg0.local_ip4)
493 self.assertEqual(ipv4.dst, self.pg0.remote_ip4)
494
495 self.assertEqual(icmptypes[icmp.type], "echo-reply")
496 self.assertEqual(icmp.id, icmp_id)
497 self.assertEqual(icmp.seq, icmp_seq)
498 self.assertEqual(icmp[Raw].load, icmp_load)
499
500
Matej Klotton16a14cd2016-12-07 15:09:13 +0100501class TestIPv4FibCrud(VppTestCase):
502 """ FIB - add/update/delete - ip4 routes
503
504 Test scenario:
505 - add 1k,
506 - del 100,
507 - add new 1k,
508 - del 1.5k
509
Klement Sekerada505f62017-01-04 12:58:53 +0100510 ..note:: Python API is too slow to add many routes, needs replacement.
Matej Klotton16a14cd2016-12-07 15:09:13 +0100511 """
512
Neale Ranns097fa662018-05-01 05:17:55 -0700513 def config_fib_many_to_one(self, start_dest_addr, next_hop_addr,
514 count, start=0):
Matej Klotton16a14cd2016-12-07 15:09:13 +0100515 """
516
517 :param start_dest_addr:
518 :param next_hop_addr:
519 :param count:
520 :return list: added ips with 32 prefix
521 """
Neale Ranns097fa662018-05-01 05:17:55 -0700522 routes = []
523 for i in range(count):
524 r = VppIpRoute(self, start_dest_addr % (i + start), 32,
525 [VppRoutePath(next_hop_addr, 0xffffffff)])
526 r.add_vpp_config()
527 routes.append(r)
528 return routes
Matej Klotton16a14cd2016-12-07 15:09:13 +0100529
Neale Ranns097fa662018-05-01 05:17:55 -0700530 def unconfig_fib_many_to_one(self, start_dest_addr, next_hop_addr,
531 count, start=0):
Matej Klotton16a14cd2016-12-07 15:09:13 +0100532
Neale Ranns097fa662018-05-01 05:17:55 -0700533 routes = []
534 for i in range(count):
535 r = VppIpRoute(self, start_dest_addr % (i + start), 32,
536 [VppRoutePath(next_hop_addr, 0xffffffff)])
537 r.remove_vpp_config()
538 routes.append(r)
539 return routes
Matej Klotton16a14cd2016-12-07 15:09:13 +0100540
Neale Ranns097fa662018-05-01 05:17:55 -0700541 def create_stream(self, src_if, dst_if, routes, count):
Matej Klotton16a14cd2016-12-07 15:09:13 +0100542 pkts = []
543
544 for _ in range(count):
Neale Rannsefd7bc22019-11-11 08:32:34 +0000545 dst_addr = random.choice(routes).prefix.network_address
Klement Sekeradab231a2016-12-21 08:50:14 +0100546 info = self.create_packet_info(src_if, dst_if)
Matej Klotton16a14cd2016-12-07 15:09:13 +0100547 payload = self.info_to_payload(info)
548 p = (Ether(dst=src_if.local_mac, src=src_if.remote_mac) /
Neale Rannsefd7bc22019-11-11 08:32:34 +0000549 IP(src=src_if.remote_ip4, dst=str(dst_addr)) /
Matej Klotton16a14cd2016-12-07 15:09:13 +0100550 UDP(sport=1234, dport=1234) /
551 Raw(payload))
552 info.data = p.copy()
Matej Klotton16a14cd2016-12-07 15:09:13 +0100553 self.extend_packet(p, random.choice(self.pg_if_packet_sizes))
554 pkts.append(p)
555
556 return pkts
557
558 def _find_ip_match(self, find_in, pkt):
559 for p in find_in:
Paul Vinciguerraeaea4212019-03-06 11:58:06 -0800560 if self.payload_to_info(p[Raw]) == \
561 self.payload_to_info(pkt[Raw]):
Matej Klotton16a14cd2016-12-07 15:09:13 +0100562 if p[IP].src != pkt[IP].src:
563 break
564 if p[IP].dst != pkt[IP].dst:
565 break
566 if p[UDP].sport != pkt[UDP].sport:
567 break
568 if p[UDP].dport != pkt[UDP].dport:
569 break
570 return p
571 return None
572
Matej Klotton16a14cd2016-12-07 15:09:13 +0100573 def verify_capture(self, dst_interface, received_pkts, expected_pkts):
574 self.assertEqual(len(received_pkts), len(expected_pkts))
575 to_verify = list(expected_pkts)
576 for p in received_pkts:
577 self.assertEqual(p.src, dst_interface.local_mac)
578 self.assertEqual(p.dst, dst_interface.remote_mac)
579 x = self._find_ip_match(to_verify, p)
580 to_verify.remove(x)
581 self.assertListEqual(to_verify, [])
582
Neale Ranns097fa662018-05-01 05:17:55 -0700583 def verify_route_dump(self, routes):
584 for r in routes:
Neale Rannsefd7bc22019-11-11 08:32:34 +0000585 self.assertTrue(find_route(self,
586 r.prefix.network_address,
587 r.prefix.prefixlen))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100588
Neale Ranns097fa662018-05-01 05:17:55 -0700589 def verify_not_in_route_dump(self, routes):
590 for r in routes:
Neale Rannsefd7bc22019-11-11 08:32:34 +0000591 self.assertFalse(find_route(self,
592 r.prefix.network_address,
593 r.prefix.prefixlen))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100594
595 @classmethod
596 def setUpClass(cls):
597 """
598 #. Create and initialize 3 pg interfaces.
599 #. initialize class attributes configured_routes and deleted_routes
600 to store information between tests.
601 """
602 super(TestIPv4FibCrud, cls).setUpClass()
603
604 try:
605 # create 3 pg interfaces
606 cls.create_pg_interfaces(range(3))
607
608 cls.interfaces = list(cls.pg_interfaces)
609
610 # setup all interfaces
611 for i in cls.interfaces:
612 i.admin_up()
613 i.config_ip4()
614 i.resolve_arp()
615
616 cls.configured_routes = []
617 cls.deleted_routes = []
618 cls.pg_if_packet_sizes = [64, 512, 1518, 9018]
619
620 except Exception:
621 super(TestIPv4FibCrud, cls).tearDownClass()
622 raise
623
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700624 @classmethod
625 def tearDownClass(cls):
626 super(TestIPv4FibCrud, cls).tearDownClass()
627
Matej Klotton16a14cd2016-12-07 15:09:13 +0100628 def setUp(self):
629 super(TestIPv4FibCrud, self).setUp()
Klement Sekeradab231a2016-12-21 08:50:14 +0100630 self.reset_packet_infos()
Matej Klotton16a14cd2016-12-07 15:09:13 +0100631
Paul Vinciguerra4eed7472018-12-16 14:52:36 -0800632 self.configured_routes = []
633 self.deleted_routes = []
634
Matej Klotton16a14cd2016-12-07 15:09:13 +0100635 def test_1_add_routes(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700636 """ Add 1k routes """
Matej Klotton16a14cd2016-12-07 15:09:13 +0100637
Neale Ranns097fa662018-05-01 05:17:55 -0700638 # add 100 routes check with traffic script.
Matej Klotton16a14cd2016-12-07 15:09:13 +0100639 self.configured_routes.extend(self.config_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700640 "10.0.0.%d", self.pg0.remote_ip4, 100))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100641
Neale Ranns097fa662018-05-01 05:17:55 -0700642 self.verify_route_dump(self.configured_routes)
Matej Klotton16a14cd2016-12-07 15:09:13 +0100643
644 self.stream_1 = self.create_stream(
645 self.pg1, self.pg0, self.configured_routes, 100)
646 self.stream_2 = self.create_stream(
647 self.pg2, self.pg0, self.configured_routes, 100)
648 self.pg1.add_stream(self.stream_1)
649 self.pg2.add_stream(self.stream_2)
650
651 self.pg_enable_capture(self.pg_interfaces)
652 self.pg_start()
653
Klement Sekeradab231a2016-12-21 08:50:14 +0100654 pkts = self.pg0.get_capture(len(self.stream_1) + len(self.stream_2))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100655 self.verify_capture(self.pg0, pkts, self.stream_1 + self.stream_2)
656
Matej Klotton16a14cd2016-12-07 15:09:13 +0100657 def test_2_del_routes(self):
658 """ Delete 100 routes
659
660 - delete 10 routes check with traffic script.
661 """
Paul Vinciguerra4eed7472018-12-16 14:52:36 -0800662 # config 1M FIB entries
663 self.configured_routes.extend(self.config_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700664 "10.0.0.%d", self.pg0.remote_ip4, 100))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100665 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700666 "10.0.0.%d", self.pg0.remote_ip4, 10, start=10))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100667 for x in self.deleted_routes:
668 self.configured_routes.remove(x)
669
Neale Ranns097fa662018-05-01 05:17:55 -0700670 self.verify_route_dump(self.configured_routes)
Matej Klotton16a14cd2016-12-07 15:09:13 +0100671
672 self.stream_1 = self.create_stream(
673 self.pg1, self.pg0, self.configured_routes, 100)
674 self.stream_2 = self.create_stream(
675 self.pg2, self.pg0, self.configured_routes, 100)
676 self.stream_3 = self.create_stream(
677 self.pg1, self.pg0, self.deleted_routes, 100)
678 self.stream_4 = self.create_stream(
679 self.pg2, self.pg0, self.deleted_routes, 100)
680 self.pg1.add_stream(self.stream_1 + self.stream_3)
681 self.pg2.add_stream(self.stream_2 + self.stream_4)
682 self.pg_enable_capture(self.pg_interfaces)
683 self.pg_start()
684
Klement Sekeradab231a2016-12-21 08:50:14 +0100685 pkts = self.pg0.get_capture(len(self.stream_1) + len(self.stream_2))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100686 self.verify_capture(self.pg0, pkts, self.stream_1 + self.stream_2)
687
688 def test_3_add_new_routes(self):
689 """ Add 1k routes
690
691 - re-add 5 routes check with traffic script.
692 - add 100 routes check with traffic script.
693 """
Paul Vinciguerra4eed7472018-12-16 14:52:36 -0800694 # config 1M FIB entries
695 self.configured_routes.extend(self.config_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700696 "10.0.0.%d", self.pg0.remote_ip4, 100))
Paul Vinciguerra4eed7472018-12-16 14:52:36 -0800697 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700698 "10.0.0.%d", self.pg0.remote_ip4, 10, start=10))
Paul Vinciguerra4eed7472018-12-16 14:52:36 -0800699 for x in self.deleted_routes:
700 self.configured_routes.remove(x)
701
Matej Klotton16a14cd2016-12-07 15:09:13 +0100702 tmp = self.config_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700703 "10.0.0.%d", self.pg0.remote_ip4, 5, start=10)
Matej Klotton16a14cd2016-12-07 15:09:13 +0100704 self.configured_routes.extend(tmp)
705 for x in tmp:
706 self.deleted_routes.remove(x)
707
708 self.configured_routes.extend(self.config_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700709 "10.0.1.%d", self.pg0.remote_ip4, 100))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100710
Neale Ranns097fa662018-05-01 05:17:55 -0700711 self.verify_route_dump(self.configured_routes)
Matej Klotton16a14cd2016-12-07 15:09:13 +0100712
713 self.stream_1 = self.create_stream(
714 self.pg1, self.pg0, self.configured_routes, 300)
715 self.stream_2 = self.create_stream(
716 self.pg2, self.pg0, self.configured_routes, 300)
717 self.stream_3 = self.create_stream(
718 self.pg1, self.pg0, self.deleted_routes, 100)
719 self.stream_4 = self.create_stream(
720 self.pg2, self.pg0, self.deleted_routes, 100)
721
722 self.pg1.add_stream(self.stream_1 + self.stream_3)
723 self.pg2.add_stream(self.stream_2 + self.stream_4)
724 self.pg_enable_capture(self.pg_interfaces)
725 self.pg_start()
726
Klement Sekeradab231a2016-12-21 08:50:14 +0100727 pkts = self.pg0.get_capture(len(self.stream_1) + len(self.stream_2))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100728 self.verify_capture(self.pg0, pkts, self.stream_1 + self.stream_2)
729
Neale Ranns097fa662018-05-01 05:17:55 -0700730 # delete 5 routes check with traffic script.
731 # add 100 routes check with traffic script.
Matej Klotton16a14cd2016-12-07 15:09:13 +0100732 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700733 "10.0.0.%d", self.pg0.remote_ip4, 15))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100734 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700735 "10.0.0.%d", self.pg0.remote_ip4, 85))
Matej Klotton16a14cd2016-12-07 15:09:13 +0100736 self.deleted_routes.extend(self.unconfig_fib_many_to_one(
Neale Ranns097fa662018-05-01 05:17:55 -0700737 "10.0.1.%d", self.pg0.remote_ip4, 100))
738 self.verify_not_in_route_dump(self.deleted_routes)
Matej Klotton16a14cd2016-12-07 15:09:13 +0100739
740
Neale Ranns37be7362017-02-21 17:30:26 -0800741class TestIPNull(VppTestCase):
742 """ IPv4 routes via NULL """
743
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700744 @classmethod
745 def setUpClass(cls):
746 super(TestIPNull, cls).setUpClass()
747
748 @classmethod
749 def tearDownClass(cls):
750 super(TestIPNull, cls).tearDownClass()
751
Neale Ranns37be7362017-02-21 17:30:26 -0800752 def setUp(self):
753 super(TestIPNull, self).setUp()
754
755 # create 2 pg interfaces
Neale Ranns3b93be52018-09-07 01:48:54 -0700756 self.create_pg_interfaces(range(2))
Neale Ranns37be7362017-02-21 17:30:26 -0800757
758 for i in self.pg_interfaces:
759 i.admin_up()
760 i.config_ip4()
761 i.resolve_arp()
762
763 def tearDown(self):
764 super(TestIPNull, self).tearDown()
765 for i in self.pg_interfaces:
766 i.unconfig_ip4()
767 i.admin_down()
768
769 def test_ip_null(self):
770 """ IP NULL route """
771
772 #
773 # A route via IP NULL that will reply with ICMP unreachables
774 #
Neale Ranns097fa662018-05-01 05:17:55 -0700775 ip_unreach = VppIpRoute(
776 self, "10.0.0.1", 32,
777 [VppRoutePath("0.0.0.0",
778 0xffffffff,
779 type=FibPathType.FIB_PATH_TYPE_ICMP_UNREACH)])
Neale Ranns37be7362017-02-21 17:30:26 -0800780 ip_unreach.add_vpp_config()
781
782 p_unreach = (Ether(src=self.pg0.remote_mac,
783 dst=self.pg0.local_mac) /
784 IP(src=self.pg0.remote_ip4, dst="10.0.0.1") /
785 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +0200786 Raw(b'\xa5' * 100))
Neale Ranns37be7362017-02-21 17:30:26 -0800787 self.pg0.add_stream(p_unreach)
788 self.pg_enable_capture(self.pg_interfaces)
789 self.pg_start()
790
791 rx = self.pg0.get_capture(1)
792 rx = rx[0]
793 icmp = rx[ICMP]
794
795 self.assertEqual(icmptypes[icmp.type], "dest-unreach")
796 self.assertEqual(icmpcodes[icmp.type][icmp.code], "host-unreachable")
797 self.assertEqual(icmp.src, self.pg0.remote_ip4)
798 self.assertEqual(icmp.dst, "10.0.0.1")
799
800 #
801 # ICMP replies are rate limited. so sit and spin.
802 #
803 self.sleep(1)
804
805 #
806 # A route via IP NULL that will reply with ICMP prohibited
807 #
Neale Ranns097fa662018-05-01 05:17:55 -0700808 ip_prohibit = VppIpRoute(
809 self, "10.0.0.2", 32,
810 [VppRoutePath("0.0.0.0",
811 0xffffffff,
812 type=FibPathType.FIB_PATH_TYPE_ICMP_PROHIBIT)])
Neale Ranns37be7362017-02-21 17:30:26 -0800813 ip_prohibit.add_vpp_config()
814
815 p_prohibit = (Ether(src=self.pg0.remote_mac,
816 dst=self.pg0.local_mac) /
817 IP(src=self.pg0.remote_ip4, dst="10.0.0.2") /
818 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +0200819 Raw(b'\xa5' * 100))
Neale Ranns37be7362017-02-21 17:30:26 -0800820
821 self.pg0.add_stream(p_prohibit)
822 self.pg_enable_capture(self.pg_interfaces)
823 self.pg_start()
824
825 rx = self.pg0.get_capture(1)
826
827 rx = rx[0]
828 icmp = rx[ICMP]
829
830 self.assertEqual(icmptypes[icmp.type], "dest-unreach")
831 self.assertEqual(icmpcodes[icmp.type][icmp.code], "host-prohibited")
832 self.assertEqual(icmp.src, self.pg0.remote_ip4)
833 self.assertEqual(icmp.dst, "10.0.0.2")
834
Neale Ranns3b93be52018-09-07 01:48:54 -0700835 def test_ip_drop(self):
836 """ IP Drop Routes """
837
838 p = (Ether(src=self.pg0.remote_mac,
839 dst=self.pg0.local_mac) /
840 IP(src=self.pg0.remote_ip4, dst="1.1.1.1") /
841 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +0200842 Raw(b'\xa5' * 100))
Neale Ranns3b93be52018-09-07 01:48:54 -0700843
844 r1 = VppIpRoute(self, "1.1.1.0", 24,
845 [VppRoutePath(self.pg1.remote_ip4,
846 self.pg1.sw_if_index)])
847 r1.add_vpp_config()
848
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400849 rx = self.send_and_expect(self.pg0, p * NUM_PKTS, self.pg1)
Neale Ranns3b93be52018-09-07 01:48:54 -0700850
851 #
852 # insert a more specific as a drop
853 #
Neale Ranns097fa662018-05-01 05:17:55 -0700854 r2 = VppIpRoute(self, "1.1.1.1", 32,
855 [VppRoutePath("0.0.0.0",
856 0xffffffff,
857 type=FibPathType.FIB_PATH_TYPE_DROP)])
Neale Ranns3b93be52018-09-07 01:48:54 -0700858 r2.add_vpp_config()
859
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400860 self.send_and_assert_no_replies(self.pg0, p * NUM_PKTS, "Drop Route")
Neale Ranns3b93be52018-09-07 01:48:54 -0700861 r2.remove_vpp_config()
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400862 rx = self.send_and_expect(self.pg0, p * NUM_PKTS, self.pg1)
Neale Ranns3b93be52018-09-07 01:48:54 -0700863
Neale Ranns37be7362017-02-21 17:30:26 -0800864
Neale Ranns180279b2017-03-16 15:49:09 -0400865class TestIPDisabled(VppTestCase):
866 """ IPv4 disabled """
867
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700868 @classmethod
869 def setUpClass(cls):
870 super(TestIPDisabled, cls).setUpClass()
871
872 @classmethod
873 def tearDownClass(cls):
874 super(TestIPDisabled, cls).tearDownClass()
875
Neale Ranns180279b2017-03-16 15:49:09 -0400876 def setUp(self):
877 super(TestIPDisabled, self).setUp()
878
879 # create 2 pg interfaces
880 self.create_pg_interfaces(range(2))
881
882 # PG0 is IP enalbed
883 self.pg0.admin_up()
884 self.pg0.config_ip4()
885 self.pg0.resolve_arp()
886
887 # PG 1 is not IP enabled
888 self.pg1.admin_up()
889
890 def tearDown(self):
891 super(TestIPDisabled, self).tearDown()
892 for i in self.pg_interfaces:
893 i.unconfig_ip4()
894 i.admin_down()
895
Neale Ranns180279b2017-03-16 15:49:09 -0400896 def test_ip_disabled(self):
897 """ IP Disabled """
898
899 #
900 # An (S,G).
901 # one accepting interface, pg0, 2 forwarding interfaces
902 #
903 route_232_1_1_1 = VppIpMRoute(
904 self,
905 "0.0.0.0",
906 "232.1.1.1", 32,
907 MRouteEntryFlags.MFIB_ENTRY_FLAG_NONE,
908 [VppMRoutePath(self.pg1.sw_if_index,
909 MRouteItfFlags.MFIB_ITF_FLAG_ACCEPT),
910 VppMRoutePath(self.pg0.sw_if_index,
911 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD)])
912 route_232_1_1_1.add_vpp_config()
913
914 pu = (Ether(src=self.pg1.remote_mac,
915 dst=self.pg1.local_mac) /
916 IP(src="10.10.10.10", dst=self.pg0.remote_ip4) /
917 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +0200918 Raw(b'\xa5' * 100))
Neale Ranns180279b2017-03-16 15:49:09 -0400919 pm = (Ether(src=self.pg1.remote_mac,
920 dst=self.pg1.local_mac) /
921 IP(src="10.10.10.10", dst="232.1.1.1") /
922 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +0200923 Raw(b'\xa5' * 100))
Neale Ranns180279b2017-03-16 15:49:09 -0400924
925 #
926 # PG1 does not forward IP traffic
927 #
928 self.send_and_assert_no_replies(self.pg1, pu, "IP disabled")
929 self.send_and_assert_no_replies(self.pg1, pm, "IP disabled")
930
931 #
932 # IP enable PG1
933 #
934 self.pg1.config_ip4()
935
936 #
937 # Now we get packets through
938 #
939 self.pg1.add_stream(pu)
940 self.pg_enable_capture(self.pg_interfaces)
941 self.pg_start()
942 rx = self.pg0.get_capture(1)
943
944 self.pg1.add_stream(pm)
945 self.pg_enable_capture(self.pg_interfaces)
946 self.pg_start()
947 rx = self.pg0.get_capture(1)
948
949 #
950 # Disable PG1
951 #
952 self.pg1.unconfig_ip4()
953
954 #
955 # PG1 does not forward IP traffic
956 #
957 self.send_and_assert_no_replies(self.pg1, pu, "IP disabled")
958 self.send_and_assert_no_replies(self.pg1, pm, "IP disabled")
959
960
Neale Ranns9a69a602017-03-26 10:56:33 -0700961class TestIPSubNets(VppTestCase):
962 """ IPv4 Subnets """
963
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700964 @classmethod
965 def setUpClass(cls):
966 super(TestIPSubNets, cls).setUpClass()
967
968 @classmethod
969 def tearDownClass(cls):
970 super(TestIPSubNets, cls).tearDownClass()
971
Neale Ranns9a69a602017-03-26 10:56:33 -0700972 def setUp(self):
973 super(TestIPSubNets, self).setUp()
974
975 # create a 2 pg interfaces
976 self.create_pg_interfaces(range(2))
977
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700978 # pg0 we will use to experiment
Neale Ranns9a69a602017-03-26 10:56:33 -0700979 self.pg0.admin_up()
980
981 # pg1 is setup normally
982 self.pg1.admin_up()
983 self.pg1.config_ip4()
984 self.pg1.resolve_arp()
985
986 def tearDown(self):
987 super(TestIPSubNets, self).tearDown()
988 for i in self.pg_interfaces:
989 i.admin_down()
990
Neale Ranns9a69a602017-03-26 10:56:33 -0700991 def test_ip_sub_nets(self):
992 """ IP Sub Nets """
993
994 #
995 # Configure a covering route to forward so we know
996 # when we are dropping
997 #
998 cover_route = VppIpRoute(self, "10.0.0.0", 8,
999 [VppRoutePath(self.pg1.remote_ip4,
1000 self.pg1.sw_if_index)])
1001 cover_route.add_vpp_config()
1002
1003 p = (Ether(src=self.pg1.remote_mac,
1004 dst=self.pg1.local_mac) /
1005 IP(dst="10.10.10.10", src=self.pg0.local_ip4) /
1006 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001007 Raw(b'\xa5' * 100))
Neale Ranns9a69a602017-03-26 10:56:33 -07001008
1009 self.pg1.add_stream(p)
1010 self.pg_enable_capture(self.pg_interfaces)
1011 self.pg_start()
1012 rx = self.pg1.get_capture(1)
1013
1014 #
1015 # Configure some non-/24 subnets on an IP interface
1016 #
1017 ip_addr_n = socket.inet_pton(socket.AF_INET, "10.10.10.10")
1018
Ole Troan9a475372019-03-05 16:58:24 +01001019 self.vapi.sw_interface_add_del_address(
Jakub Grajciar053204a2019-03-18 13:17:53 +01001020 sw_if_index=self.pg0.sw_if_index,
Neale Rannsefd7bc22019-11-11 08:32:34 +00001021 prefix="10.10.10.10/16")
Neale Ranns9a69a602017-03-26 10:56:33 -07001022
1023 pn = (Ether(src=self.pg1.remote_mac,
1024 dst=self.pg1.local_mac) /
1025 IP(dst="10.10.0.0", src=self.pg0.local_ip4) /
1026 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001027 Raw(b'\xa5' * 100))
Neale Ranns9a69a602017-03-26 10:56:33 -07001028 pb = (Ether(src=self.pg1.remote_mac,
1029 dst=self.pg1.local_mac) /
1030 IP(dst="10.10.255.255", src=self.pg0.local_ip4) /
1031 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001032 Raw(b'\xa5' * 100))
Neale Ranns9a69a602017-03-26 10:56:33 -07001033
1034 self.send_and_assert_no_replies(self.pg1, pn, "IP Network address")
1035 self.send_and_assert_no_replies(self.pg1, pb, "IP Broadcast address")
1036
1037 # remove the sub-net and we are forwarding via the cover again
Ole Troan9a475372019-03-05 16:58:24 +01001038 self.vapi.sw_interface_add_del_address(
Jakub Grajciar053204a2019-03-18 13:17:53 +01001039 sw_if_index=self.pg0.sw_if_index,
Neale Rannsefd7bc22019-11-11 08:32:34 +00001040 prefix="10.10.10.10/16",
1041 is_add=0)
Jakub Grajciar053204a2019-03-18 13:17:53 +01001042
Neale Ranns9a69a602017-03-26 10:56:33 -07001043 self.pg1.add_stream(pn)
1044 self.pg_enable_capture(self.pg_interfaces)
1045 self.pg_start()
1046 rx = self.pg1.get_capture(1)
1047 self.pg1.add_stream(pb)
1048 self.pg_enable_capture(self.pg_interfaces)
1049 self.pg_start()
1050 rx = self.pg1.get_capture(1)
1051
1052 #
1053 # A /31 is a special case where the 'other-side' is an attached host
1054 # packets to that peer generate ARP requests
1055 #
1056 ip_addr_n = socket.inet_pton(socket.AF_INET, "10.10.10.10")
1057
Ole Troan9a475372019-03-05 16:58:24 +01001058 self.vapi.sw_interface_add_del_address(
Jakub Grajciar053204a2019-03-18 13:17:53 +01001059 sw_if_index=self.pg0.sw_if_index,
Neale Rannsefd7bc22019-11-11 08:32:34 +00001060 prefix="10.10.10.10/31")
Neale Ranns9a69a602017-03-26 10:56:33 -07001061
1062 pn = (Ether(src=self.pg1.remote_mac,
1063 dst=self.pg1.local_mac) /
1064 IP(dst="10.10.10.11", src=self.pg0.local_ip4) /
1065 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001066 Raw(b'\xa5' * 100))
Neale Ranns9a69a602017-03-26 10:56:33 -07001067
1068 self.pg1.add_stream(pn)
1069 self.pg_enable_capture(self.pg_interfaces)
1070 self.pg_start()
1071 rx = self.pg0.get_capture(1)
1072 rx[ARP]
1073
1074 # remove the sub-net and we are forwarding via the cover again
Ole Troan9a475372019-03-05 16:58:24 +01001075 self.vapi.sw_interface_add_del_address(
Jakub Grajciar053204a2019-03-18 13:17:53 +01001076 sw_if_index=self.pg0.sw_if_index,
Neale Rannsefd7bc22019-11-11 08:32:34 +00001077 prefix="10.10.10.10/31", is_add=0)
Jakub Grajciar053204a2019-03-18 13:17:53 +01001078
Neale Ranns9a69a602017-03-26 10:56:33 -07001079 self.pg1.add_stream(pn)
1080 self.pg_enable_capture(self.pg_interfaces)
1081 self.pg_start()
1082 rx = self.pg1.get_capture(1)
1083
1084
Neale Ranns227038a2017-04-21 01:07:59 -07001085class TestIPLoadBalance(VppTestCase):
1086 """ IPv4 Load-Balancing """
1087
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001088 @classmethod
1089 def setUpClass(cls):
1090 super(TestIPLoadBalance, cls).setUpClass()
1091
1092 @classmethod
1093 def tearDownClass(cls):
1094 super(TestIPLoadBalance, cls).tearDownClass()
1095
Neale Ranns227038a2017-04-21 01:07:59 -07001096 def setUp(self):
1097 super(TestIPLoadBalance, self).setUp()
1098
1099 self.create_pg_interfaces(range(5))
Neale Ranns15002542017-09-10 04:39:11 -07001100 mpls_tbl = VppMplsTable(self, 0)
1101 mpls_tbl.add_vpp_config()
Neale Ranns227038a2017-04-21 01:07:59 -07001102
1103 for i in self.pg_interfaces:
1104 i.admin_up()
1105 i.config_ip4()
1106 i.resolve_arp()
Neale Ranns71275e32017-05-25 12:38:58 -07001107 i.enable_mpls()
Neale Ranns227038a2017-04-21 01:07:59 -07001108
1109 def tearDown(self):
Neale Ranns227038a2017-04-21 01:07:59 -07001110 for i in self.pg_interfaces:
Neale Ranns71275e32017-05-25 12:38:58 -07001111 i.disable_mpls()
Neale Ranns227038a2017-04-21 01:07:59 -07001112 i.unconfig_ip4()
1113 i.admin_down()
Neale Ranns15002542017-09-10 04:39:11 -07001114 super(TestIPLoadBalance, self).tearDown()
Neale Ranns227038a2017-04-21 01:07:59 -07001115
1116 def send_and_expect_load_balancing(self, input, pkts, outputs):
1117 input.add_stream(pkts)
1118 self.pg_enable_capture(self.pg_interfaces)
1119 self.pg_start()
Neale Ranns63480742019-03-13 06:41:52 -07001120 rxs = []
Neale Ranns227038a2017-04-21 01:07:59 -07001121 for oo in outputs:
1122 rx = oo._get_capture(1)
1123 self.assertNotEqual(0, len(rx))
Neale Ranns63480742019-03-13 06:41:52 -07001124 for r in rx:
1125 rxs.append(r)
1126 return rxs
Neale Ranns227038a2017-04-21 01:07:59 -07001127
Neale Ranns42e6b092017-07-31 02:56:03 -07001128 def send_and_expect_one_itf(self, input, pkts, itf):
1129 input.add_stream(pkts)
1130 self.pg_enable_capture(self.pg_interfaces)
1131 self.pg_start()
1132 rx = itf.get_capture(len(pkts))
1133
Neale Ranns227038a2017-04-21 01:07:59 -07001134 def test_ip_load_balance(self):
1135 """ IP Load-Balancing """
1136
1137 #
1138 # An array of packets that differ only in the destination port
1139 #
Neale Ranns71275e32017-05-25 12:38:58 -07001140 port_ip_pkts = []
1141 port_mpls_pkts = []
Neale Ranns227038a2017-04-21 01:07:59 -07001142
1143 #
1144 # An array of packets that differ only in the source address
1145 #
Neale Ranns71275e32017-05-25 12:38:58 -07001146 src_ip_pkts = []
1147 src_mpls_pkts = []
Neale Ranns227038a2017-04-21 01:07:59 -07001148
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001149 for ii in range(NUM_PKTS):
Neale Ranns71275e32017-05-25 12:38:58 -07001150 port_ip_hdr = (IP(dst="10.0.0.1", src="20.0.0.1") /
1151 UDP(sport=1234, dport=1234 + ii) /
Ole Troan5e56f752019-10-21 21:06:52 +02001152 Raw(b'\xa5' * 100))
Neale Ranns71275e32017-05-25 12:38:58 -07001153 port_ip_pkts.append((Ether(src=self.pg0.remote_mac,
1154 dst=self.pg0.local_mac) /
1155 port_ip_hdr))
1156 port_mpls_pkts.append((Ether(src=self.pg0.remote_mac,
1157 dst=self.pg0.local_mac) /
1158 MPLS(label=66, ttl=2) /
1159 port_ip_hdr))
1160
1161 src_ip_hdr = (IP(dst="10.0.0.1", src="20.0.0.%d" % ii) /
1162 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001163 Raw(b'\xa5' * 100))
Neale Ranns71275e32017-05-25 12:38:58 -07001164 src_ip_pkts.append((Ether(src=self.pg0.remote_mac,
1165 dst=self.pg0.local_mac) /
1166 src_ip_hdr))
1167 src_mpls_pkts.append((Ether(src=self.pg0.remote_mac,
1168 dst=self.pg0.local_mac) /
1169 MPLS(label=66, ttl=2) /
1170 src_ip_hdr))
Neale Ranns227038a2017-04-21 01:07:59 -07001171
1172 route_10_0_0_1 = VppIpRoute(self, "10.0.0.1", 32,
1173 [VppRoutePath(self.pg1.remote_ip4,
1174 self.pg1.sw_if_index),
1175 VppRoutePath(self.pg2.remote_ip4,
1176 self.pg2.sw_if_index)])
1177 route_10_0_0_1.add_vpp_config()
1178
Neale Ranns71275e32017-05-25 12:38:58 -07001179 binding = VppMplsIpBind(self, 66, "10.0.0.1", 32)
1180 binding.add_vpp_config()
1181
Neale Ranns227038a2017-04-21 01:07:59 -07001182 #
1183 # inject the packet on pg0 - expect load-balancing across the 2 paths
1184 # - since the default hash config is to use IP src,dst and port
1185 # src,dst
1186 # We are not going to ensure equal amounts of packets across each link,
1187 # since the hash algorithm is statistical and therefore this can never
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07001188 # be guaranteed. But with 64 different packets we do expect some
Neale Ranns227038a2017-04-21 01:07:59 -07001189 # balancing. So instead just ensure there is traffic on each link.
1190 #
Neale Ranns71275e32017-05-25 12:38:58 -07001191 self.send_and_expect_load_balancing(self.pg0, port_ip_pkts,
Neale Ranns227038a2017-04-21 01:07:59 -07001192 [self.pg1, self.pg2])
Neale Ranns71275e32017-05-25 12:38:58 -07001193 self.send_and_expect_load_balancing(self.pg0, src_ip_pkts,
1194 [self.pg1, self.pg2])
1195 self.send_and_expect_load_balancing(self.pg0, port_mpls_pkts,
1196 [self.pg1, self.pg2])
1197 self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
Neale Ranns227038a2017-04-21 01:07:59 -07001198 [self.pg1, self.pg2])
1199
1200 #
1201 # change the flow hash config so it's only IP src,dst
1202 # - now only the stream with differing source address will
1203 # load-balance
1204 #
Ole Troana5b2eec2019-03-11 19:23:25 +01001205 self.vapi.set_ip_flow_hash(vrf_id=0, src=1, dst=1, sport=0, dport=0)
Neale Ranns227038a2017-04-21 01:07:59 -07001206
Neale Ranns71275e32017-05-25 12:38:58 -07001207 self.send_and_expect_load_balancing(self.pg0, src_ip_pkts,
1208 [self.pg1, self.pg2])
1209 self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
Neale Ranns227038a2017-04-21 01:07:59 -07001210 [self.pg1, self.pg2])
1211
Neale Ranns42e6b092017-07-31 02:56:03 -07001212 self.send_and_expect_one_itf(self.pg0, port_ip_pkts, self.pg2)
Neale Ranns227038a2017-04-21 01:07:59 -07001213
1214 #
1215 # change the flow hash config back to defaults
1216 #
Ole Troana5b2eec2019-03-11 19:23:25 +01001217 self.vapi.set_ip_flow_hash(vrf_id=0, src=1, dst=1, sport=1, dport=1)
Neale Ranns227038a2017-04-21 01:07:59 -07001218
1219 #
1220 # Recursive prefixes
1221 # - testing that 2 stages of load-balancing occurs and there is no
1222 # polarisation (i.e. only 2 of 4 paths are used)
1223 #
1224 port_pkts = []
1225 src_pkts = []
1226
1227 for ii in range(257):
1228 port_pkts.append((Ether(src=self.pg0.remote_mac,
1229 dst=self.pg0.local_mac) /
1230 IP(dst="1.1.1.1", src="20.0.0.1") /
1231 UDP(sport=1234, dport=1234 + ii) /
Ole Troan5e56f752019-10-21 21:06:52 +02001232 Raw(b'\xa5' * 100)))
Neale Ranns227038a2017-04-21 01:07:59 -07001233 src_pkts.append((Ether(src=self.pg0.remote_mac,
1234 dst=self.pg0.local_mac) /
1235 IP(dst="1.1.1.1", src="20.0.0.%d" % ii) /
1236 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001237 Raw(b'\xa5' * 100)))
Neale Ranns227038a2017-04-21 01:07:59 -07001238
1239 route_10_0_0_2 = VppIpRoute(self, "10.0.0.2", 32,
1240 [VppRoutePath(self.pg3.remote_ip4,
1241 self.pg3.sw_if_index),
1242 VppRoutePath(self.pg4.remote_ip4,
1243 self.pg4.sw_if_index)])
1244 route_10_0_0_2.add_vpp_config()
1245
1246 route_1_1_1_1 = VppIpRoute(self, "1.1.1.1", 32,
1247 [VppRoutePath("10.0.0.2", 0xffffffff),
1248 VppRoutePath("10.0.0.1", 0xffffffff)])
1249 route_1_1_1_1.add_vpp_config()
1250
1251 #
1252 # inject the packet on pg0 - expect load-balancing across all 4 paths
1253 #
1254 self.vapi.cli("clear trace")
1255 self.send_and_expect_load_balancing(self.pg0, port_pkts,
1256 [self.pg1, self.pg2,
1257 self.pg3, self.pg4])
1258 self.send_and_expect_load_balancing(self.pg0, src_pkts,
1259 [self.pg1, self.pg2,
1260 self.pg3, self.pg4])
1261
Neale Ranns42e6b092017-07-31 02:56:03 -07001262 #
Neale Ranns63480742019-03-13 06:41:52 -07001263 # bring down pg1 expect LB to adjust to use only those that are pu
1264 #
1265 self.pg1.link_down()
1266
1267 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1268 [self.pg2, self.pg3,
1269 self.pg4])
1270 self.assertEqual(len(src_pkts), len(rx))
1271
1272 #
1273 # bring down pg2 expect LB to adjust to use only those that are pu
1274 #
1275 self.pg2.link_down()
1276
1277 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1278 [self.pg3, self.pg4])
1279 self.assertEqual(len(src_pkts), len(rx))
1280
1281 #
1282 # bring the links back up - expect LB over all again
1283 #
1284 self.pg1.link_up()
1285 self.pg2.link_up()
1286
1287 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1288 [self.pg1, self.pg2,
1289 self.pg3, self.pg4])
1290 self.assertEqual(len(src_pkts), len(rx))
1291
1292 #
1293 # The same link-up/down but this time admin state
1294 #
1295 self.pg1.admin_down()
1296 self.pg2.admin_down()
1297 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1298 [self.pg3, self.pg4])
1299 self.assertEqual(len(src_pkts), len(rx))
1300 self.pg1.admin_up()
1301 self.pg2.admin_up()
1302 self.pg1.resolve_arp()
1303 self.pg2.resolve_arp()
1304 rx = self.send_and_expect_load_balancing(self.pg0, src_pkts,
1305 [self.pg1, self.pg2,
1306 self.pg3, self.pg4])
1307 self.assertEqual(len(src_pkts), len(rx))
1308
1309 #
Neale Ranns42e6b092017-07-31 02:56:03 -07001310 # Recursive prefixes
1311 # - testing that 2 stages of load-balancing, no choices
1312 #
1313 port_pkts = []
1314
1315 for ii in range(257):
1316 port_pkts.append((Ether(src=self.pg0.remote_mac,
1317 dst=self.pg0.local_mac) /
1318 IP(dst="1.1.1.2", src="20.0.0.2") /
1319 UDP(sport=1234, dport=1234 + ii) /
Ole Troan5e56f752019-10-21 21:06:52 +02001320 Raw(b'\xa5' * 100)))
Neale Ranns42e6b092017-07-31 02:56:03 -07001321
1322 route_10_0_0_3 = VppIpRoute(self, "10.0.0.3", 32,
1323 [VppRoutePath(self.pg3.remote_ip4,
1324 self.pg3.sw_if_index)])
1325 route_10_0_0_3.add_vpp_config()
1326
1327 route_1_1_1_2 = VppIpRoute(self, "1.1.1.2", 32,
1328 [VppRoutePath("10.0.0.3", 0xffffffff)])
1329 route_1_1_1_2.add_vpp_config()
1330
1331 #
Neale Ranns63480742019-03-13 06:41:52 -07001332 # inject the packet on pg0 - rx only on via routes output interface
Neale Ranns42e6b092017-07-31 02:56:03 -07001333 #
1334 self.vapi.cli("clear trace")
1335 self.send_and_expect_one_itf(self.pg0, port_pkts, self.pg3)
1336
Neale Ranns63480742019-03-13 06:41:52 -07001337 #
1338 # Add a LB route in the presence of a down link - expect no
1339 # packets over the down link
1340 #
1341 self.pg3.link_down()
1342
1343 route_10_0_0_3 = VppIpRoute(self, "10.0.0.3", 32,
1344 [VppRoutePath(self.pg3.remote_ip4,
1345 self.pg3.sw_if_index),
1346 VppRoutePath(self.pg4.remote_ip4,
1347 self.pg4.sw_if_index)])
1348 route_10_0_0_3.add_vpp_config()
1349
1350 port_pkts = []
1351 for ii in range(257):
1352 port_pkts.append(Ether(src=self.pg0.remote_mac,
1353 dst=self.pg0.local_mac) /
1354 IP(dst="10.0.0.3", src="20.0.0.2") /
1355 UDP(sport=1234, dport=1234 + ii) /
Ole Troan5e56f752019-10-21 21:06:52 +02001356 Raw(b'\xa5' * 100))
Neale Ranns63480742019-03-13 06:41:52 -07001357
1358 self.send_and_expect_one_itf(self.pg0, port_pkts, self.pg4)
1359
1360 # bring the link back up
1361 self.pg3.link_up()
1362
1363 rx = self.send_and_expect_load_balancing(self.pg0, port_pkts,
1364 [self.pg3, self.pg4])
1365 self.assertEqual(len(src_pkts), len(rx))
1366
Neale Ranns30d0fd42017-05-30 07:30:04 -07001367
1368class TestIPVlan0(VppTestCase):
1369 """ IPv4 VLAN-0 """
1370
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001371 @classmethod
1372 def setUpClass(cls):
1373 super(TestIPVlan0, cls).setUpClass()
1374
1375 @classmethod
1376 def tearDownClass(cls):
1377 super(TestIPVlan0, cls).tearDownClass()
1378
Neale Ranns30d0fd42017-05-30 07:30:04 -07001379 def setUp(self):
1380 super(TestIPVlan0, self).setUp()
1381
1382 self.create_pg_interfaces(range(2))
Neale Ranns15002542017-09-10 04:39:11 -07001383 mpls_tbl = VppMplsTable(self, 0)
1384 mpls_tbl.add_vpp_config()
Neale Ranns30d0fd42017-05-30 07:30:04 -07001385
1386 for i in self.pg_interfaces:
1387 i.admin_up()
1388 i.config_ip4()
1389 i.resolve_arp()
1390 i.enable_mpls()
1391
1392 def tearDown(self):
Neale Ranns30d0fd42017-05-30 07:30:04 -07001393 for i in self.pg_interfaces:
1394 i.disable_mpls()
1395 i.unconfig_ip4()
1396 i.admin_down()
Neale Ranns15002542017-09-10 04:39:11 -07001397 super(TestIPVlan0, self).tearDown()
Neale Ranns30d0fd42017-05-30 07:30:04 -07001398
Neale Ranns30d0fd42017-05-30 07:30:04 -07001399 def test_ip_vlan_0(self):
1400 """ IP VLAN-0 """
1401
1402 pkts = (Ether(src=self.pg0.remote_mac,
1403 dst=self.pg0.local_mac) /
1404 Dot1Q(vlan=0) /
1405 IP(dst=self.pg1.remote_ip4,
1406 src=self.pg0.remote_ip4) /
1407 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001408 Raw(b'\xa5' * 100)) * NUM_PKTS
Neale Ranns30d0fd42017-05-30 07:30:04 -07001409
1410 #
1411 # Expect that packets sent on VLAN-0 are forwarded on the
1412 # main interface.
1413 #
1414 self.send_and_expect(self.pg0, pkts, self.pg1)
1415
1416
Neale Rannsd91c1db2017-07-31 02:30:50 -07001417class TestIPPunt(VppTestCase):
1418 """ IPv4 Punt Police/Redirect """
1419
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001420 @classmethod
1421 def setUpClass(cls):
1422 super(TestIPPunt, cls).setUpClass()
1423
1424 @classmethod
1425 def tearDownClass(cls):
1426 super(TestIPPunt, cls).tearDownClass()
1427
Neale Rannsd91c1db2017-07-31 02:30:50 -07001428 def setUp(self):
1429 super(TestIPPunt, self).setUp()
1430
Pavel Kotucek609e1212018-11-27 09:59:44 +01001431 self.create_pg_interfaces(range(4))
Neale Rannsd91c1db2017-07-31 02:30:50 -07001432
1433 for i in self.pg_interfaces:
1434 i.admin_up()
1435 i.config_ip4()
1436 i.resolve_arp()
1437
1438 def tearDown(self):
1439 super(TestIPPunt, self).tearDown()
1440 for i in self.pg_interfaces:
1441 i.unconfig_ip4()
1442 i.admin_down()
1443
Neale Rannsd91c1db2017-07-31 02:30:50 -07001444 def test_ip_punt(self):
1445 """ IP punt police and redirect """
1446
Neale Ranns68577d22019-06-04 13:31:23 +00001447 # use UDP packet that have a port we need to explicitly
1448 # register to get punted.
1449 pt_l4 = VppEnum.vl_api_punt_type_t.PUNT_API_TYPE_L4
1450 af_ip4 = VppEnum.vl_api_address_family_t.ADDRESS_IP4
1451 udp_proto = VppEnum.vl_api_ip_proto_t.IP_API_PROTO_UDP
1452 punt_udp = {
1453 'type': pt_l4,
1454 'punt': {
1455 'l4': {
1456 'af': af_ip4,
1457 'protocol': udp_proto,
1458 'port': 1234,
1459 }
1460 }
1461 }
1462
1463 self.vapi.set_punt(is_add=1, punt=punt_udp)
1464
Neale Rannsd91c1db2017-07-31 02:30:50 -07001465 p = (Ether(src=self.pg0.remote_mac,
1466 dst=self.pg0.local_mac) /
1467 IP(src=self.pg0.remote_ip4, dst=self.pg0.local_ip4) /
Neale Ranns68577d22019-06-04 13:31:23 +00001468 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001469 Raw(b'\xa5' * 100))
Neale Rannsd91c1db2017-07-31 02:30:50 -07001470
1471 pkts = p * 1025
1472
1473 #
1474 # Configure a punt redirect via pg1.
1475 #
Ole Troan0bcad322018-12-11 13:04:01 +01001476 nh_addr = self.pg1.remote_ip4
Neale Rannsd91c1db2017-07-31 02:30:50 -07001477 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
1478 self.pg1.sw_if_index,
1479 nh_addr)
1480
1481 self.send_and_expect(self.pg0, pkts, self.pg1)
1482
1483 #
1484 # add a policer
1485 #
Jakub Grajciarcd01fb42020-03-02 13:16:53 +01001486 policer = VppPolicer(self, "ip4-punt", 400, 0, 10, 0, rate_type=1)
1487 policer.add_vpp_config()
Neale Rannsd91c1db2017-07-31 02:30:50 -07001488 self.vapi.ip_punt_police(policer.policer_index)
1489
1490 self.vapi.cli("clear trace")
1491 self.pg0.add_stream(pkts)
1492 self.pg_enable_capture(self.pg_interfaces)
1493 self.pg_start()
1494
1495 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07001496 # the number of packet received should be greater than 0,
Neale Rannsd91c1db2017-07-31 02:30:50 -07001497 # but not equal to the number sent, since some were policed
1498 #
1499 rx = self.pg1._get_capture(1)
Paul Vinciguerra3d2df212018-11-24 23:19:53 -08001500 self.assertGreater(len(rx), 0)
1501 self.assertLess(len(rx), len(pkts))
Neale Rannsd91c1db2017-07-31 02:30:50 -07001502
1503 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07001504 # remove the policer. back to full rx
Neale Rannsd91c1db2017-07-31 02:30:50 -07001505 #
1506 self.vapi.ip_punt_police(policer.policer_index, is_add=0)
Jakub Grajciarcd01fb42020-03-02 13:16:53 +01001507 policer.remove_vpp_config()
Neale Rannsd91c1db2017-07-31 02:30:50 -07001508 self.send_and_expect(self.pg0, pkts, self.pg1)
1509
1510 #
1511 # remove the redirect. expect full drop.
1512 #
1513 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
1514 self.pg1.sw_if_index,
1515 nh_addr,
1516 is_add=0)
1517 self.send_and_assert_no_replies(self.pg0, pkts,
1518 "IP no punt config")
1519
1520 #
1521 # Add a redirect that is not input port selective
1522 #
1523 self.vapi.ip_punt_redirect(0xffffffff,
1524 self.pg1.sw_if_index,
1525 nh_addr)
1526 self.send_and_expect(self.pg0, pkts, self.pg1)
1527
1528 self.vapi.ip_punt_redirect(0xffffffff,
1529 self.pg1.sw_if_index,
1530 nh_addr,
1531 is_add=0)
1532
Pavel Kotucek609e1212018-11-27 09:59:44 +01001533 def test_ip_punt_dump(self):
1534 """ IP4 punt redirect dump"""
1535
1536 #
1537 # Configure a punt redirects
1538 #
Ole Troan0bcad322018-12-11 13:04:01 +01001539 nh_address = self.pg3.remote_ip4
Pavel Kotucek609e1212018-11-27 09:59:44 +01001540 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
1541 self.pg3.sw_if_index,
1542 nh_address)
1543 self.vapi.ip_punt_redirect(self.pg1.sw_if_index,
1544 self.pg3.sw_if_index,
1545 nh_address)
1546 self.vapi.ip_punt_redirect(self.pg2.sw_if_index,
1547 self.pg3.sw_if_index,
Ole Troan0bcad322018-12-11 13:04:01 +01001548 '0.0.0.0')
Pavel Kotucek609e1212018-11-27 09:59:44 +01001549
1550 #
1551 # Dump pg0 punt redirects
1552 #
1553 punts = self.vapi.ip_punt_redirect_dump(self.pg0.sw_if_index)
1554 for p in punts:
1555 self.assertEqual(p.punt.rx_sw_if_index, self.pg0.sw_if_index)
1556
1557 #
1558 # Dump punt redirects for all interfaces
1559 #
1560 punts = self.vapi.ip_punt_redirect_dump(0xffffffff)
1561 self.assertEqual(len(punts), 3)
1562 for p in punts:
1563 self.assertEqual(p.punt.tx_sw_if_index, self.pg3.sw_if_index)
Ole Troan0bcad322018-12-11 13:04:01 +01001564 self.assertNotEqual(punts[1].punt.nh, self.pg3.remote_ip4)
1565 self.assertEqual(str(punts[2].punt.nh), '0.0.0.0')
Pavel Kotucek609e1212018-11-27 09:59:44 +01001566
Neale Rannsd91c1db2017-07-31 02:30:50 -07001567
Neale Ranns054c03a2017-10-13 05:15:07 -07001568class TestIPDeag(VppTestCase):
1569 """ IPv4 Deaggregate Routes """
1570
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001571 @classmethod
1572 def setUpClass(cls):
1573 super(TestIPDeag, cls).setUpClass()
1574
1575 @classmethod
1576 def tearDownClass(cls):
1577 super(TestIPDeag, cls).tearDownClass()
1578
Neale Ranns054c03a2017-10-13 05:15:07 -07001579 def setUp(self):
1580 super(TestIPDeag, self).setUp()
1581
1582 self.create_pg_interfaces(range(3))
1583
1584 for i in self.pg_interfaces:
1585 i.admin_up()
1586 i.config_ip4()
1587 i.resolve_arp()
1588
1589 def tearDown(self):
1590 super(TestIPDeag, self).tearDown()
1591 for i in self.pg_interfaces:
1592 i.unconfig_ip4()
1593 i.admin_down()
1594
Neale Ranns054c03a2017-10-13 05:15:07 -07001595 def test_ip_deag(self):
1596 """ IP Deag Routes """
1597
1598 #
1599 # Create a table to be used for:
1600 # 1 - another destination address lookup
1601 # 2 - a source address lookup
1602 #
1603 table_dst = VppIpTable(self, 1)
1604 table_src = VppIpTable(self, 2)
1605 table_dst.add_vpp_config()
1606 table_src.add_vpp_config()
1607
1608 #
1609 # Add a route in the default table to point to a deag/
1610 # second lookup in each of these tables
1611 #
1612 route_to_dst = VppIpRoute(self, "1.1.1.1", 32,
1613 [VppRoutePath("0.0.0.0",
1614 0xffffffff,
1615 nh_table_id=1)])
Neale Ranns097fa662018-05-01 05:17:55 -07001616 route_to_src = VppIpRoute(
1617 self, "1.1.1.2", 32,
1618 [VppRoutePath("0.0.0.0",
1619 0xffffffff,
1620 nh_table_id=2,
1621 type=FibPathType.FIB_PATH_TYPE_SOURCE_LOOKUP)])
Neale Ranns054c03a2017-10-13 05:15:07 -07001622 route_to_dst.add_vpp_config()
1623 route_to_src.add_vpp_config()
1624
1625 #
1626 # packets to these destination are dropped, since they'll
1627 # hit the respective default routes in the second table
1628 #
1629 p_dst = (Ether(src=self.pg0.remote_mac,
1630 dst=self.pg0.local_mac) /
1631 IP(src="5.5.5.5", dst="1.1.1.1") /
1632 TCP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001633 Raw(b'\xa5' * 100))
Neale Ranns054c03a2017-10-13 05:15:07 -07001634 p_src = (Ether(src=self.pg0.remote_mac,
1635 dst=self.pg0.local_mac) /
1636 IP(src="2.2.2.2", dst="1.1.1.2") /
1637 TCP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001638 Raw(b'\xa5' * 100))
Neale Ranns054c03a2017-10-13 05:15:07 -07001639 pkts_dst = p_dst * 257
1640 pkts_src = p_src * 257
1641
1642 self.send_and_assert_no_replies(self.pg0, pkts_dst,
1643 "IP in dst table")
1644 self.send_and_assert_no_replies(self.pg0, pkts_src,
1645 "IP in src table")
1646
1647 #
1648 # add a route in the dst table to forward via pg1
1649 #
1650 route_in_dst = VppIpRoute(self, "1.1.1.1", 32,
1651 [VppRoutePath(self.pg1.remote_ip4,
1652 self.pg1.sw_if_index)],
1653 table_id=1)
1654 route_in_dst.add_vpp_config()
Neale Ranns097fa662018-05-01 05:17:55 -07001655
Neale Ranns054c03a2017-10-13 05:15:07 -07001656 self.send_and_expect(self.pg0, pkts_dst, self.pg1)
1657
1658 #
1659 # add a route in the src table to forward via pg2
1660 #
1661 route_in_src = VppIpRoute(self, "2.2.2.2", 32,
1662 [VppRoutePath(self.pg2.remote_ip4,
1663 self.pg2.sw_if_index)],
1664 table_id=2)
1665 route_in_src.add_vpp_config()
1666 self.send_and_expect(self.pg0, pkts_src, self.pg2)
1667
Neale Rannsce9e0b42018-08-01 12:53:17 -07001668 #
1669 # loop in the lookup DP
1670 #
1671 route_loop = VppIpRoute(self, "2.2.2.3", 32,
1672 [VppRoutePath("0.0.0.0",
1673 0xffffffff,
1674 nh_table_id=0)])
1675 route_loop.add_vpp_config()
1676
1677 p_l = (Ether(src=self.pg0.remote_mac,
1678 dst=self.pg0.local_mac) /
1679 IP(src="2.2.2.4", dst="2.2.2.3") /
1680 TCP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001681 Raw(b'\xa5' * 100))
Neale Rannsce9e0b42018-08-01 12:53:17 -07001682
1683 self.send_and_assert_no_replies(self.pg0, p_l * 257,
1684 "IP lookup loop")
1685
Neale Ranns054c03a2017-10-13 05:15:07 -07001686
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001687class TestIPInput(VppTestCase):
1688 """ IPv4 Input Exceptions """
1689
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001690 @classmethod
1691 def setUpClass(cls):
1692 super(TestIPInput, cls).setUpClass()
1693
1694 @classmethod
1695 def tearDownClass(cls):
1696 super(TestIPInput, cls).tearDownClass()
1697
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001698 def setUp(self):
1699 super(TestIPInput, self).setUp()
1700
1701 self.create_pg_interfaces(range(2))
1702
1703 for i in self.pg_interfaces:
1704 i.admin_up()
1705 i.config_ip4()
1706 i.resolve_arp()
1707
1708 def tearDown(self):
1709 super(TestIPInput, self).tearDown()
1710 for i in self.pg_interfaces:
1711 i.unconfig_ip4()
1712 i.admin_down()
1713
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001714 def test_ip_input(self):
1715 """ IP Input Exceptions """
1716
1717 # i can't find a way in scapy to construct an IP packet
1718 # with a length less than the IP header length
1719
1720 #
1721 # Packet too short - this is forwarded
1722 #
1723 p_short = (Ether(src=self.pg0.remote_mac,
1724 dst=self.pg0.local_mac) /
1725 IP(src=self.pg0.remote_ip4,
1726 dst=self.pg1.remote_ip4,
1727 len=40) /
1728 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001729 Raw(b'\xa5' * 100))
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001730
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001731 rx = self.send_and_expect(self.pg0, p_short * NUM_PKTS, self.pg1)
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001732
1733 #
1734 # Packet too long - this is dropped
1735 #
1736 p_long = (Ether(src=self.pg0.remote_mac,
1737 dst=self.pg0.local_mac) /
1738 IP(src=self.pg0.remote_ip4,
1739 dst=self.pg1.remote_ip4,
1740 len=400) /
1741 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001742 Raw(b'\xa5' * 100))
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001743
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001744 rx = self.send_and_assert_no_replies(self.pg0, p_long * NUM_PKTS,
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001745 "too long")
1746
1747 #
1748 # bad chksum - this is dropped
1749 #
1750 p_chksum = (Ether(src=self.pg0.remote_mac,
1751 dst=self.pg0.local_mac) /
1752 IP(src=self.pg0.remote_ip4,
1753 dst=self.pg1.remote_ip4,
1754 chksum=400) /
1755 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001756 Raw(b'\xa5' * 100))
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001757
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001758 rx = self.send_and_assert_no_replies(self.pg0, p_chksum * NUM_PKTS,
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001759 "bad checksum")
1760
1761 #
1762 # bad version - this is dropped
1763 #
1764 p_ver = (Ether(src=self.pg0.remote_mac,
1765 dst=self.pg0.local_mac) /
1766 IP(src=self.pg0.remote_ip4,
1767 dst=self.pg1.remote_ip4,
1768 version=3) /
1769 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001770 Raw(b'\xa5' * 100))
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001771
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001772 rx = self.send_and_assert_no_replies(self.pg0, p_ver * NUM_PKTS,
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001773 "funky version")
1774
1775 #
1776 # fragment offset 1 - this is dropped
1777 #
1778 p_frag = (Ether(src=self.pg0.remote_mac,
1779 dst=self.pg0.local_mac) /
1780 IP(src=self.pg0.remote_ip4,
1781 dst=self.pg1.remote_ip4,
1782 frag=1) /
1783 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001784 Raw(b'\xa5' * 100))
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001785
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001786 rx = self.send_and_assert_no_replies(self.pg0, p_frag * NUM_PKTS,
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001787 "frag offset")
1788
1789 #
1790 # TTL expired packet
1791 #
1792 p_ttl = (Ether(src=self.pg0.remote_mac,
1793 dst=self.pg0.local_mac) /
1794 IP(src=self.pg0.remote_ip4,
1795 dst=self.pg1.remote_ip4,
1796 ttl=1) /
1797 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001798 Raw(b'\xa5' * 100))
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001799
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001800 rx = self.send_and_expect(self.pg0, p_ttl * NUM_PKTS, self.pg0)
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001801
1802 rx = rx[0]
1803 icmp = rx[ICMP]
1804
1805 self.assertEqual(icmptypes[icmp.type], "time-exceeded")
1806 self.assertEqual(icmpcodes[icmp.type][icmp.code],
1807 "ttl-zero-during-transit")
1808 self.assertEqual(icmp.src, self.pg0.remote_ip4)
1809 self.assertEqual(icmp.dst, self.pg1.remote_ip4)
1810
Neale Rannsffd78d12018-02-09 06:05:16 -08001811 #
1812 # MTU exceeded
1813 #
1814 p_mtu = (Ether(src=self.pg0.remote_mac,
1815 dst=self.pg0.local_mac) /
1816 IP(src=self.pg0.remote_ip4,
1817 dst=self.pg1.remote_ip4,
Ole Troan8a9c8f12018-05-18 11:01:31 +02001818 ttl=10, flags='DF') /
Neale Rannsffd78d12018-02-09 06:05:16 -08001819 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001820 Raw(b'\xa5' * 2000))
Neale Rannsffd78d12018-02-09 06:05:16 -08001821
Ole Troand7231612018-06-07 10:17:57 +02001822 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index, [1500, 0, 0, 0])
Neale Rannsffd78d12018-02-09 06:05:16 -08001823
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001824 rx = self.send_and_expect(self.pg0, p_mtu * NUM_PKTS, self.pg0)
Neale Rannsffd78d12018-02-09 06:05:16 -08001825 rx = rx[0]
1826 icmp = rx[ICMP]
1827
1828 self.assertEqual(icmptypes[icmp.type], "dest-unreach")
1829 self.assertEqual(icmpcodes[icmp.type][icmp.code],
1830 "fragmentation-needed")
1831 self.assertEqual(icmp.src, self.pg0.remote_ip4)
1832 self.assertEqual(icmp.dst, self.pg1.remote_ip4)
1833
Ole Troand7231612018-06-07 10:17:57 +02001834 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index, [2500, 0, 0, 0])
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001835 rx = self.send_and_expect(self.pg0, p_mtu * NUM_PKTS, self.pg1)
Neale Rannsffd78d12018-02-09 06:05:16 -08001836
Ole Troand7231612018-06-07 10:17:57 +02001837 # Reset MTU for subsequent tests
1838 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index, [9000, 0, 0, 0])
Neale Ranns4c7c8e52017-10-21 09:37:55 -07001839
Neale Rannsbe2286b2018-12-09 12:54:51 -08001840 #
1841 # source address 0.0.0.0 and 25.255.255.255 and for-us
1842 #
1843 p_s0 = (Ether(src=self.pg0.remote_mac,
1844 dst=self.pg0.local_mac) /
1845 IP(src="0.0.0.0",
1846 dst=self.pg0.local_ip4) /
1847 ICMP(id=4, seq=4) /
Ole Troan5e56f752019-10-21 21:06:52 +02001848 Raw(load=b'\x0a' * 18))
Neale Rannsbe2286b2018-12-09 12:54:51 -08001849 rx = self.send_and_assert_no_replies(self.pg0, p_s0 * 17)
1850
1851 p_s0 = (Ether(src=self.pg0.remote_mac,
1852 dst=self.pg0.local_mac) /
1853 IP(src="255.255.255.255",
1854 dst=self.pg0.local_ip4) /
1855 ICMP(id=4, seq=4) /
Ole Troan5e56f752019-10-21 21:06:52 +02001856 Raw(load=b'\x0a' * 18))
Neale Rannsbe2286b2018-12-09 12:54:51 -08001857 rx = self.send_and_assert_no_replies(self.pg0, p_s0 * 17)
1858
Neale Ranns1855b8e2018-07-11 10:31:26 -07001859
1860class TestIPDirectedBroadcast(VppTestCase):
1861 """ IPv4 Directed Broadcast """
1862
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001863 @classmethod
1864 def setUpClass(cls):
1865 super(TestIPDirectedBroadcast, cls).setUpClass()
1866
1867 @classmethod
1868 def tearDownClass(cls):
1869 super(TestIPDirectedBroadcast, cls).tearDownClass()
1870
Neale Ranns1855b8e2018-07-11 10:31:26 -07001871 def setUp(self):
1872 super(TestIPDirectedBroadcast, self).setUp()
1873
1874 self.create_pg_interfaces(range(2))
1875
1876 for i in self.pg_interfaces:
1877 i.admin_up()
1878
1879 def tearDown(self):
1880 super(TestIPDirectedBroadcast, self).tearDown()
1881 for i in self.pg_interfaces:
1882 i.admin_down()
1883
1884 def test_ip_input(self):
1885 """ IP Directed Broadcast """
1886
1887 #
1888 # set the directed broadcast on pg0 first, then config IP4 addresses
1889 # for pg1 directed broadcast is always disabled
1890 self.vapi.sw_interface_set_ip_directed_broadcast(
1891 self.pg0.sw_if_index, 1)
1892
1893 p0 = (Ether(src=self.pg1.remote_mac,
1894 dst=self.pg1.local_mac) /
1895 IP(src="1.1.1.1",
1896 dst=self.pg0._local_ip4_bcast) /
1897 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001898 Raw(b'\xa5' * 2000))
Neale Ranns1855b8e2018-07-11 10:31:26 -07001899 p1 = (Ether(src=self.pg0.remote_mac,
1900 dst=self.pg0.local_mac) /
1901 IP(src="1.1.1.1",
1902 dst=self.pg1._local_ip4_bcast) /
1903 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001904 Raw(b'\xa5' * 2000))
Neale Ranns1855b8e2018-07-11 10:31:26 -07001905
1906 self.pg0.config_ip4()
1907 self.pg0.resolve_arp()
1908 self.pg1.config_ip4()
1909 self.pg1.resolve_arp()
1910
1911 #
1912 # test packet is L2 broadcast
1913 #
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001914 rx = self.send_and_expect(self.pg1, p0 * NUM_PKTS, self.pg0)
Neale Ranns1855b8e2018-07-11 10:31:26 -07001915 self.assertTrue(rx[0][Ether].dst, "ff:ff:ff:ff:ff:ff")
1916
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001917 self.send_and_assert_no_replies(self.pg0, p1 * NUM_PKTS,
Neale Ranns1855b8e2018-07-11 10:31:26 -07001918 "directed broadcast disabled")
1919
1920 #
1921 # toggle directed broadcast on pg0
1922 #
1923 self.vapi.sw_interface_set_ip_directed_broadcast(
1924 self.pg0.sw_if_index, 0)
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001925 self.send_and_assert_no_replies(self.pg1, p0 * NUM_PKTS,
Neale Ranns1855b8e2018-07-11 10:31:26 -07001926 "directed broadcast disabled")
1927
1928 self.vapi.sw_interface_set_ip_directed_broadcast(
1929 self.pg0.sw_if_index, 1)
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001930 rx = self.send_and_expect(self.pg1, p0 * NUM_PKTS, self.pg0)
Neale Ranns1855b8e2018-07-11 10:31:26 -07001931
1932 self.pg0.unconfig_ip4()
1933 self.pg1.unconfig_ip4()
1934
1935
mu.duojiao59a82952018-10-11 14:27:30 +08001936class TestIPLPM(VppTestCase):
1937 """ IPv4 longest Prefix Match """
1938
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001939 @classmethod
1940 def setUpClass(cls):
1941 super(TestIPLPM, cls).setUpClass()
1942
1943 @classmethod
1944 def tearDownClass(cls):
1945 super(TestIPLPM, cls).tearDownClass()
1946
mu.duojiao59a82952018-10-11 14:27:30 +08001947 def setUp(self):
1948 super(TestIPLPM, self).setUp()
1949
1950 self.create_pg_interfaces(range(4))
1951
1952 for i in self.pg_interfaces:
1953 i.admin_up()
1954 i.config_ip4()
1955 i.resolve_arp()
1956
1957 def tearDown(self):
1958 super(TestIPLPM, self).tearDown()
1959 for i in self.pg_interfaces:
1960 i.admin_down()
1961 i.unconfig_ip4()
1962
1963 def test_ip_lpm(self):
1964 """ IP longest Prefix Match """
1965
1966 s_24 = VppIpRoute(self, "10.1.2.0", 24,
1967 [VppRoutePath(self.pg1.remote_ip4,
1968 self.pg1.sw_if_index)])
1969 s_24.add_vpp_config()
1970 s_8 = VppIpRoute(self, "10.0.0.0", 8,
1971 [VppRoutePath(self.pg2.remote_ip4,
1972 self.pg2.sw_if_index)])
1973 s_8.add_vpp_config()
1974
1975 p_8 = (Ether(src=self.pg0.remote_mac,
1976 dst=self.pg0.local_mac) /
1977 IP(src="1.1.1.1",
1978 dst="10.1.1.1") /
1979 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001980 Raw(b'\xa5' * 2000))
mu.duojiao59a82952018-10-11 14:27:30 +08001981 p_24 = (Ether(src=self.pg0.remote_mac,
1982 dst=self.pg0.local_mac) /
1983 IP(src="1.1.1.1",
1984 dst="10.1.2.1") /
1985 UDP(sport=1234, dport=1234) /
Ole Troan5e56f752019-10-21 21:06:52 +02001986 Raw(b'\xa5' * 2000))
mu.duojiao59a82952018-10-11 14:27:30 +08001987
1988 self.logger.info(self.vapi.cli("sh ip fib mtrie"))
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001989 rx = self.send_and_expect(self.pg0, p_8 * NUM_PKTS, self.pg2)
1990 rx = self.send_and_expect(self.pg0, p_24 * NUM_PKTS, self.pg1)
mu.duojiao59a82952018-10-11 14:27:30 +08001991
1992
Juraj Sloboda68b7cb82018-10-16 12:18:21 +02001993class TestIPv4Frag(VppTestCase):
1994 """ IPv4 fragmentation """
1995
1996 @classmethod
1997 def setUpClass(cls):
1998 super(TestIPv4Frag, cls).setUpClass()
1999
2000 cls.create_pg_interfaces([0, 1])
2001 cls.src_if = cls.pg0
2002 cls.dst_if = cls.pg1
2003
2004 # setup all interfaces
2005 for i in cls.pg_interfaces:
2006 i.admin_up()
2007 i.config_ip4()
2008 i.resolve_arp()
2009
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07002010 @classmethod
2011 def tearDownClass(cls):
2012 super(TestIPv4Frag, cls).tearDownClass()
2013
Juraj Sloboda68b7cb82018-10-16 12:18:21 +02002014 def test_frag_large_packets(self):
2015 """ Fragmentation of large packets """
2016
Neale Ranns0b6a8572019-10-30 17:34:14 +00002017 self.vapi.cli("adjacency counters enable")
2018
Juraj Sloboda68b7cb82018-10-16 12:18:21 +02002019 p = (Ether(dst=self.src_if.local_mac, src=self.src_if.remote_mac) /
2020 IP(src=self.src_if.remote_ip4, dst=self.dst_if.remote_ip4) /
2021 UDP(sport=1234, dport=5678) / Raw())
2022 self.extend_packet(p, 6000, "abcde")
2023 saved_payload = p[Raw].load
2024
Neale Ranns0b6a8572019-10-30 17:34:14 +00002025 nbr = VppNeighbor(self,
2026 self.dst_if.sw_if_index,
2027 self.dst_if.remote_mac,
2028 self.dst_if.remote_ip4).add_vpp_config()
2029
Juraj Sloboda68b7cb82018-10-16 12:18:21 +02002030 # Force fragmentation by setting MTU of output interface
2031 # lower than packet size
2032 self.vapi.sw_interface_set_mtu(self.dst_if.sw_if_index,
2033 [5000, 0, 0, 0])
2034
2035 self.pg_enable_capture()
2036 self.src_if.add_stream(p)
2037 self.pg_start()
2038
2039 # Expecting 3 fragments because size of created fragments currently
2040 # cannot be larger then VPP buffer size (which is 2048)
2041 packets = self.dst_if.get_capture(3)
2042
Neale Ranns0b6a8572019-10-30 17:34:14 +00002043 # we should show 3 packets thru the neighbor
2044 self.assertEqual(3, nbr.get_stats()['packets'])
2045
Juraj Sloboda68b7cb82018-10-16 12:18:21 +02002046 # Assume VPP sends the fragments in order
Ole Troan6ed154f2019-10-15 19:31:55 +02002047 payload = b''
Juraj Sloboda68b7cb82018-10-16 12:18:21 +02002048 for p in packets:
2049 payload_offset = p.frag * 8
2050 if payload_offset > 0:
2051 payload_offset -= 8 # UDP header is not in payload
2052 self.assert_equal(payload_offset, len(payload))
2053 payload += p[Raw].load
2054 self.assert_equal(payload, saved_payload, "payload")
2055
2056
Neale Ranns9db6ada2019-11-08 12:42:31 +00002057class TestIPReplace(VppTestCase):
2058 """ IPv4 Table Replace """
2059
2060 @classmethod
2061 def setUpClass(cls):
2062 super(TestIPReplace, cls).setUpClass()
2063
2064 @classmethod
2065 def tearDownClass(cls):
2066 super(TestIPReplace, cls).tearDownClass()
2067
2068 def setUp(self):
2069 super(TestIPReplace, self).setUp()
2070
2071 self.create_pg_interfaces(range(4))
2072
2073 table_id = 1
2074 self.tables = []
2075
2076 for i in self.pg_interfaces:
2077 i.admin_up()
2078 i.config_ip4()
2079 i.resolve_arp()
2080 i.generate_remote_hosts(2)
2081 self.tables.append(VppIpTable(self, table_id).add_vpp_config())
2082 table_id += 1
2083
2084 def tearDown(self):
2085 super(TestIPReplace, self).tearDown()
2086 for i in self.pg_interfaces:
2087 i.admin_down()
2088 i.unconfig_ip4()
2089
2090 def test_replace(self):
2091 """ IP Table Replace """
2092
2093 N_ROUTES = 20
2094 links = [self.pg0, self.pg1, self.pg2, self.pg3]
2095 routes = [[], [], [], []]
2096
2097 # load up the tables with some routes
2098 for ii, t in enumerate(self.tables):
2099 for jj in range(N_ROUTES):
2100 uni = VppIpRoute(
2101 self, "10.0.0.%d" % jj, 32,
2102 [VppRoutePath(links[ii].remote_hosts[0].ip4,
2103 links[ii].sw_if_index),
2104 VppRoutePath(links[ii].remote_hosts[1].ip4,
2105 links[ii].sw_if_index)],
2106 table_id=t.table_id).add_vpp_config()
2107 multi = VppIpMRoute(
2108 self, "0.0.0.0",
2109 "239.0.0.%d" % jj, 32,
2110 MRouteEntryFlags.MFIB_ENTRY_FLAG_NONE,
2111 [VppMRoutePath(self.pg0.sw_if_index,
2112 MRouteItfFlags.MFIB_ITF_FLAG_ACCEPT),
2113 VppMRoutePath(self.pg1.sw_if_index,
2114 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD),
2115 VppMRoutePath(self.pg2.sw_if_index,
2116 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD),
2117 VppMRoutePath(self.pg3.sw_if_index,
2118 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD)],
2119 table_id=t.table_id).add_vpp_config()
2120 routes[ii].append({'uni': uni,
2121 'multi': multi})
2122
2123 #
2124 # replace the tables a few times
2125 #
2126 for kk in range(3):
2127 # replace_begin each table
2128 for t in self.tables:
2129 t.replace_begin()
2130
2131 # all the routes are still there
2132 for ii, t in enumerate(self.tables):
2133 dump = t.dump()
2134 mdump = t.mdump()
2135 for r in routes[ii]:
2136 self.assertTrue(find_route_in_dump(dump, r['uni'], t))
2137 self.assertTrue(find_mroute_in_dump(mdump, r['multi'], t))
2138
2139 # redownload the even numbered routes
2140 for ii, t in enumerate(self.tables):
2141 for jj in range(0, N_ROUTES, 2):
2142 routes[ii][jj]['uni'].add_vpp_config()
2143 routes[ii][jj]['multi'].add_vpp_config()
2144
2145 # signal each table replace_end
2146 for t in self.tables:
2147 t.replace_end()
2148
2149 # we should find the even routes, but not the odd
2150 for ii, t in enumerate(self.tables):
2151 dump = t.dump()
2152 mdump = t.mdump()
2153 for jj in range(0, N_ROUTES, 2):
2154 self.assertTrue(find_route_in_dump(
2155 dump, routes[ii][jj]['uni'], t))
2156 self.assertTrue(find_mroute_in_dump(
2157 mdump, routes[ii][jj]['multi'], t))
2158 for jj in range(1, N_ROUTES - 1, 2):
2159 self.assertFalse(find_route_in_dump(
2160 dump, routes[ii][jj]['uni'], t))
2161 self.assertFalse(find_mroute_in_dump(
2162 mdump, routes[ii][jj]['multi'], t))
2163
2164 # reload all the routes
2165 for ii, t in enumerate(self.tables):
2166 for r in routes[ii]:
2167 r['uni'].add_vpp_config()
2168 r['multi'].add_vpp_config()
2169
2170 # all the routes are still there
2171 for ii, t in enumerate(self.tables):
2172 dump = t.dump()
2173 mdump = t.mdump()
2174 for r in routes[ii]:
2175 self.assertTrue(find_route_in_dump(dump, r['uni'], t))
2176 self.assertTrue(find_mroute_in_dump(mdump, r['multi'], t))
2177
2178 #
2179 # finally flush the tables for good measure
2180 #
2181 for t in self.tables:
2182 t.flush()
2183 self.assertEqual(len(t.dump()), 5)
Neale Ranns03c254e2020-03-17 14:25:10 +00002184 self.assertEqual(len(t.mdump()), 3)
Neale Ranns9db6ada2019-11-08 12:42:31 +00002185
2186
Neale Ranns9efcee62019-11-26 19:30:08 +00002187class TestIPCover(VppTestCase):
2188 """ IPv4 Table Cover """
2189
2190 @classmethod
2191 def setUpClass(cls):
2192 super(TestIPCover, cls).setUpClass()
2193
2194 @classmethod
2195 def tearDownClass(cls):
2196 super(TestIPCover, cls).tearDownClass()
2197
2198 def setUp(self):
2199 super(TestIPCover, self).setUp()
2200
2201 self.create_pg_interfaces(range(4))
2202
2203 table_id = 1
2204 self.tables = []
2205
2206 for i in self.pg_interfaces:
2207 i.admin_up()
2208 i.config_ip4()
2209 i.resolve_arp()
2210 i.generate_remote_hosts(2)
2211 self.tables.append(VppIpTable(self, table_id).add_vpp_config())
2212 table_id += 1
2213
2214 def tearDown(self):
2215 super(TestIPCover, self).tearDown()
2216 for i in self.pg_interfaces:
2217 i.admin_down()
2218 i.unconfig_ip4()
2219
2220 def test_cover(self):
2221 """ IP Table Cover """
2222
2223 # add a loop back with a /32 prefix
2224 lo = VppLoInterface(self)
2225 lo.admin_up()
2226 a = VppIpInterfaceAddress(self, lo, "127.0.0.1", 32).add_vpp_config()
2227
2228 # add a neighbour that matches the loopback's /32
2229 nbr = VppNeighbor(self,
2230 lo.sw_if_index,
2231 lo.remote_mac,
2232 "127.0.0.1").add_vpp_config()
2233
2234 # add the default route which will be the cover for /32
2235 r = VppIpRoute(self, "0.0.0.0", 0,
2236 [VppRoutePath("127.0.0.1",
2237 lo.sw_if_index)],
2238 register=False).add_vpp_config()
2239
2240 # add/remove/add a longer mask cover
2241 r = VppIpRoute(self, "127.0.0.0", 8,
2242 [VppRoutePath("127.0.0.1",
2243 lo.sw_if_index)]).add_vpp_config()
2244 r.remove_vpp_config()
2245 r.add_vpp_config()
2246
2247 # remove the default route
2248 r.remove_vpp_config()
2249
Neale Ranns59f71132020-04-08 12:19:38 +00002250
2251class TestIP4Replace(VppTestCase):
2252 """ IPv4 Interface Address Replace """
2253
2254 @classmethod
2255 def setUpClass(cls):
2256 super(TestIP4Replace, cls).setUpClass()
2257
2258 @classmethod
2259 def tearDownClass(cls):
2260 super(TestIP4Replace, cls).tearDownClass()
2261
2262 def setUp(self):
2263 super(TestIP4Replace, self).setUp()
2264
2265 self.create_pg_interfaces(range(4))
2266
2267 for i in self.pg_interfaces:
2268 i.admin_up()
2269
2270 def tearDown(self):
2271 super(TestIP4Replace, self).tearDown()
2272 for i in self.pg_interfaces:
2273 i.admin_down()
2274
2275 def get_n_pfxs(self, intf):
2276 return len(self.vapi.ip_address_dump(intf.sw_if_index))
2277
2278 def test_replace(self):
2279 """ IP interface address replace """
2280
2281 intf_pfxs = [[], [], [], []]
2282
2283 # add prefixes to each of the interfaces
2284 for i in range(len(self.pg_interfaces)):
2285 intf = self.pg_interfaces[i]
2286
2287 # 172.16.x.1/24
2288 addr = "172.16.%d.1" % intf.sw_if_index
2289 a = VppIpInterfaceAddress(self, intf, addr, 24).add_vpp_config()
2290 intf_pfxs[i].append(a)
2291
2292 # 172.16.x.2/24 - a different address in the same subnet as above
2293 addr = "172.16.%d.2" % intf.sw_if_index
2294 a = VppIpInterfaceAddress(self, intf, addr, 24).add_vpp_config()
2295 intf_pfxs[i].append(a)
2296
2297 # 172.15.x.2/24 - a different address and subnet
2298 addr = "172.15.%d.2" % intf.sw_if_index
2299 a = VppIpInterfaceAddress(self, intf, addr, 24).add_vpp_config()
2300 intf_pfxs[i].append(a)
2301
2302 # a dump should n_address in it
2303 for intf in self.pg_interfaces:
2304 self.assertEqual(self.get_n_pfxs(intf), 3)
2305
2306 #
2307 # remove all the address thru a replace
2308 #
2309 self.vapi.sw_interface_address_replace_begin()
2310 self.vapi.sw_interface_address_replace_end()
2311 for intf in self.pg_interfaces:
2312 self.assertEqual(self.get_n_pfxs(intf), 0)
2313
2314 #
2315 # add all the interface addresses back
2316 #
2317 for p in intf_pfxs:
2318 for v in p:
2319 v.add_vpp_config()
2320 for intf in self.pg_interfaces:
2321 self.assertEqual(self.get_n_pfxs(intf), 3)
2322
2323 #
2324 # replace again, but this time update/re-add the address on the first
2325 # two interfaces
2326 #
2327 self.vapi.sw_interface_address_replace_begin()
2328
2329 for p in intf_pfxs[:2]:
2330 for v in p:
2331 v.add_vpp_config()
2332
2333 self.vapi.sw_interface_address_replace_end()
2334
2335 # on the first two the address still exist,
2336 # on the other two they do not
2337 for intf in self.pg_interfaces[:2]:
2338 self.assertEqual(self.get_n_pfxs(intf), 3)
2339 for p in intf_pfxs[:2]:
2340 for v in p:
2341 self.assertTrue(v.query_vpp_config())
2342 for intf in self.pg_interfaces[2:]:
2343 self.assertEqual(self.get_n_pfxs(intf), 0)
2344
2345 #
2346 # add all the interface addresses back on the last two
2347 #
2348 for p in intf_pfxs[2:]:
2349 for v in p:
2350 v.add_vpp_config()
2351 for intf in self.pg_interfaces:
2352 self.assertEqual(self.get_n_pfxs(intf), 3)
2353
2354 #
2355 # replace again, this time add different prefixes on all the interfaces
2356 #
2357 self.vapi.sw_interface_address_replace_begin()
2358
2359 pfxs = []
2360 for intf in self.pg_interfaces:
2361 # 172.18.x.1/24
2362 addr = "172.18.%d.1" % intf.sw_if_index
2363 pfxs.append(VppIpInterfaceAddress(self, intf, addr,
2364 24).add_vpp_config())
2365
2366 self.vapi.sw_interface_address_replace_end()
2367
2368 # only .18 should exist on each interface
2369 for intf in self.pg_interfaces:
2370 self.assertEqual(self.get_n_pfxs(intf), 1)
2371 for pfx in pfxs:
2372 self.assertTrue(pfx.query_vpp_config())
2373
2374 #
2375 # remove everything
2376 #
2377 self.vapi.sw_interface_address_replace_begin()
2378 self.vapi.sw_interface_address_replace_end()
2379 for intf in self.pg_interfaces:
2380 self.assertEqual(self.get_n_pfxs(intf), 0)
2381
2382 #
2383 # add prefixes to each interface. post-begin add the prefix from
2384 # interface X onto interface Y. this would normally be an error
2385 # since it would generate a 'duplicate address' warning. but in
2386 # this case, since what is newly downloaded is sane, it's ok
2387 #
2388 for intf in self.pg_interfaces:
2389 # 172.18.x.1/24
2390 addr = "172.18.%d.1" % intf.sw_if_index
2391 VppIpInterfaceAddress(self, intf, addr, 24).add_vpp_config()
2392
2393 self.vapi.sw_interface_address_replace_begin()
2394
2395 pfxs = []
2396 for intf in self.pg_interfaces:
2397 # 172.18.x.1/24
2398 addr = "172.18.%d.1" % (intf.sw_if_index + 1)
2399 pfxs.append(VppIpInterfaceAddress(self, intf,
2400 addr, 24).add_vpp_config())
2401
2402 self.vapi.sw_interface_address_replace_end()
2403
2404 self.logger.info(self.vapi.cli("sh int addr"))
2405
2406 for intf in self.pg_interfaces:
2407 self.assertEqual(self.get_n_pfxs(intf), 1)
2408 for pfx in pfxs:
2409 self.assertTrue(pfx.query_vpp_config())
2410
2411
Damjan Marionf56b77a2016-10-03 19:44:57 +02002412if __name__ == '__main__':
Klement Sekeraf62ae122016-10-11 11:47:09 +02002413 unittest.main(testRunner=VppTestRunner)