blob: 2c318cdaf99b53c7cf688a8af9add4b6a586f461 [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Damjan Marionf56b77a2016-10-03 19:44:57 +02002
Paul Vinciguerra582eac52020-04-03 12:18:40 -04003import socket
snaramre5d4b8912019-12-13 23:39:35 +00004from socket import inet_pton, inet_ntop
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -08005import unittest
6
Neale Rannsae809832018-11-23 09:00:27 -08007from parameterized import parameterized
Paul Vinciguerraa7427ec2019-03-10 10:04:23 -07008import scapy.compat
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -08009import scapy.layers.inet6 as inet6
Neale Rannsdfef64b2021-05-20 16:28:12 +000010from scapy.layers.inet import UDP, IP
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -080011from scapy.contrib.mpls import MPLS
12from scapy.layers.inet6 import IPv6, ICMPv6ND_NS, ICMPv6ND_RS, \
13 ICMPv6ND_RA, ICMPv6NDOptMTU, ICMPv6NDOptSrcLLAddr, ICMPv6NDOptPrefixInfo, \
14 ICMPv6ND_NA, ICMPv6NDOptDstLLAddr, ICMPv6DestUnreach, icmp6types, \
Neale Rannsf267d112020-02-07 09:45:07 +000015 ICMPv6TimeExceeded, ICMPv6EchoRequest, ICMPv6EchoReply, \
16 IPv6ExtHdrHopByHop, ICMPv6MLReport2, ICMPv6MLDMultAddrRec
Neale Rannsdfef64b2021-05-20 16:28:12 +000017from scapy.layers.l2 import Ether, Dot1Q, GRE
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -080018from scapy.packet import Raw
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -080019from scapy.utils6 import in6_getnsma, in6_getnsmac, in6_ptop, in6_islladdr, \
20 in6_mactoifaceid
21from six import moves
Klement Sekeraf62ae122016-10-11 11:47:09 +020022
Andrew Yourtchenko06f32812021-01-14 10:19:08 +000023from framework import VppTestCase, VppTestRunner, tag_run_solo
Paul Vinciguerrae8fece82019-02-28 15:34:00 -080024from util import ppp, ip6_normalize, mk_ll_addr
Neale Ranns990f6942020-10-20 07:20:17 +000025from vpp_papi import VppEnum
Neale Ranns8f5fef22020-12-21 08:29:34 +000026from vpp_ip import DpoProto, VppIpPuntPolicer, VppIpPuntRedirect, VppIpPathMtu
Neale Ranns180279b2017-03-16 15:49:09 -040027from vpp_ip_route import VppIpRoute, VppRoutePath, find_route, VppIpMRoute, \
Neale Ranns990f6942020-10-20 07:20:17 +000028 VppMRoutePath, VppMplsIpBind, \
Neale Ranns9db6ada2019-11-08 12:42:31 +000029 VppMplsRoute, VppMplsTable, VppIpTable, FibPathType, FibPathProto, \
Neale Rannsec40a7d2020-04-23 07:36:12 +000030 VppIpInterfaceAddress, find_route_in_dump, find_mroute_in_dump, \
Neale Ranns976b2592019-12-04 06:11:00 +000031 VppIp6LinkLocalAddress, VppIpRouteV2
Neale Rannsb3b2de72017-03-08 05:17:22 -080032from vpp_neighbor import find_nbr, VppNeighbor
Neale Ranns8f5fef22020-12-21 08:29:34 +000033from vpp_ipip_tun_interface import VppIpIpTunInterface
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -080034from vpp_pg_interface import is_ipv6_misc
35from vpp_sub_interface import VppSubInterface, VppDot1QSubint
Brian Russell5214f3a2021-01-19 16:58:34 +000036from vpp_policer import VppPolicer, PolicerAction
Neale Rannsefd7bc22019-11-11 08:32:34 +000037from ipaddress import IPv6Network, IPv6Address
Neale Rannsdfef64b2021-05-20 16:28:12 +000038from vpp_gre_interface import VppGreInterface
39from vpp_teib import VppTeib
Neale Ranns75152282017-01-09 01:00:45 -080040
Juraj Sloboda4b9669d2018-01-15 10:39:21 +010041AF_INET6 = socket.AF_INET6
42
Paul Vinciguerra1e18eb22018-11-25 16:09:26 -080043try:
44 text_type = unicode
45except NameError:
46 text_type = str
47
Paul Vinciguerra4271c972019-05-14 13:25:49 -040048NUM_PKTS = 67
49
Juraj Sloboda4b9669d2018-01-15 10:39:21 +010050
Neale Ranns3f844d02017-02-18 00:03:54 -080051class TestIPv6ND(VppTestCase):
52 def validate_ra(self, intf, rx, dst_ip=None):
53 if not dst_ip:
54 dst_ip = intf.remote_ip6
55
56 # unicasted packets must come to the unicast mac
57 self.assertEqual(rx[Ether].dst, intf.remote_mac)
58
59 # and from the router's MAC
60 self.assertEqual(rx[Ether].src, intf.local_mac)
61
62 # the rx'd RA should be addressed to the sender's source
63 self.assertTrue(rx.haslayer(ICMPv6ND_RA))
64 self.assertEqual(in6_ptop(rx[IPv6].dst),
65 in6_ptop(dst_ip))
66
67 # and come from the router's link local
68 self.assertTrue(in6_islladdr(rx[IPv6].src))
69 self.assertEqual(in6_ptop(rx[IPv6].src),
70 in6_ptop(mk_ll_addr(intf.local_mac)))
71
72 def validate_na(self, intf, rx, dst_ip=None, tgt_ip=None):
73 if not dst_ip:
74 dst_ip = intf.remote_ip6
75 if not tgt_ip:
76 dst_ip = intf.local_ip6
77
78 # unicasted packets must come to the unicast mac
79 self.assertEqual(rx[Ether].dst, intf.remote_mac)
80
81 # and from the router's MAC
82 self.assertEqual(rx[Ether].src, intf.local_mac)
83
84 # the rx'd NA should be addressed to the sender's source
85 self.assertTrue(rx.haslayer(ICMPv6ND_NA))
86 self.assertEqual(in6_ptop(rx[IPv6].dst),
87 in6_ptop(dst_ip))
88
89 # and come from the target address
Paul Vinciguerra978aa642018-11-24 22:19:12 -080090 self.assertEqual(
91 in6_ptop(rx[IPv6].src), in6_ptop(tgt_ip))
Neale Ranns3f844d02017-02-18 00:03:54 -080092
93 # Dest link-layer options should have the router's MAC
94 dll = rx[ICMPv6NDOptDstLLAddr]
95 self.assertEqual(dll.lladdr, intf.local_mac)
96
Neale Rannsdcd6d622017-05-26 02:59:16 -070097 def validate_ns(self, intf, rx, tgt_ip):
98 nsma = in6_getnsma(inet_pton(AF_INET6, tgt_ip))
99 dst_ip = inet_ntop(AF_INET6, nsma)
100
101 # NS is broadcast
Neale Rannsc7b8f202018-04-25 06:34:31 -0700102 self.assertEqual(rx[Ether].dst, in6_getnsmac(nsma))
Neale Rannsdcd6d622017-05-26 02:59:16 -0700103
104 # and from the router's MAC
105 self.assertEqual(rx[Ether].src, intf.local_mac)
106
107 # the rx'd NS should be addressed to an mcast address
108 # derived from the target address
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800109 self.assertEqual(
110 in6_ptop(rx[IPv6].dst), in6_ptop(dst_ip))
Neale Rannsdcd6d622017-05-26 02:59:16 -0700111
112 # expect the tgt IP in the NS header
113 ns = rx[ICMPv6ND_NS]
114 self.assertEqual(in6_ptop(ns.tgt), in6_ptop(tgt_ip))
115
116 # packet is from the router's local address
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800117 self.assertEqual(
118 in6_ptop(rx[IPv6].src), intf.local_ip6)
Neale Rannsdcd6d622017-05-26 02:59:16 -0700119
120 # Src link-layer options should have the router's MAC
121 sll = rx[ICMPv6NDOptSrcLLAddr]
122 self.assertEqual(sll.lladdr, intf.local_mac)
123
Neale Ranns3f844d02017-02-18 00:03:54 -0800124 def send_and_expect_ra(self, intf, pkts, remark, dst_ip=None,
125 filter_out_fn=is_ipv6_misc):
126 intf.add_stream(pkts)
Neale Ranns3f844d02017-02-18 00:03:54 -0800127 self.pg_enable_capture(self.pg_interfaces)
128 self.pg_start()
129 rx = intf.get_capture(1, filter_out_fn=filter_out_fn)
130
131 self.assertEqual(len(rx), 1)
132 rx = rx[0]
133 self.validate_ra(intf, rx, dst_ip)
134
Neale Ranns2a3ea492017-04-19 05:24:40 -0700135 def send_and_expect_na(self, intf, pkts, remark, dst_ip=None,
136 tgt_ip=None,
137 filter_out_fn=is_ipv6_misc):
138 intf.add_stream(pkts)
139 self.pg_enable_capture(self.pg_interfaces)
140 self.pg_start()
141 rx = intf.get_capture(1, filter_out_fn=filter_out_fn)
142
143 self.assertEqual(len(rx), 1)
144 rx = rx[0]
145 self.validate_na(intf, rx, dst_ip, tgt_ip)
146
Neale Rannsdcd6d622017-05-26 02:59:16 -0700147 def send_and_expect_ns(self, tx_intf, rx_intf, pkts, tgt_ip,
148 filter_out_fn=is_ipv6_misc):
Neale Rannscbe25aa2019-09-30 10:53:31 +0000149 self.vapi.cli("clear trace")
Neale Rannsdcd6d622017-05-26 02:59:16 -0700150 tx_intf.add_stream(pkts)
151 self.pg_enable_capture(self.pg_interfaces)
152 self.pg_start()
153 rx = rx_intf.get_capture(1, filter_out_fn=filter_out_fn)
154
155 self.assertEqual(len(rx), 1)
156 rx = rx[0]
157 self.validate_ns(rx_intf, rx, tgt_ip)
158
Neale Rannsdcd6d622017-05-26 02:59:16 -0700159 def verify_ip(self, rx, smac, dmac, sip, dip):
160 ether = rx[Ether]
161 self.assertEqual(ether.dst, dmac)
162 self.assertEqual(ether.src, smac)
163
164 ip = rx[IPv6]
165 self.assertEqual(ip.src, sip)
166 self.assertEqual(ip.dst, dip)
167
Neale Ranns3f844d02017-02-18 00:03:54 -0800168
Andrew Yourtchenko06f32812021-01-14 10:19:08 +0000169@tag_run_solo
Neale Ranns3f844d02017-02-18 00:03:54 -0800170class TestIPv6(TestIPv6ND):
Damjan Marionf56b77a2016-10-03 19:44:57 +0200171 """ IPv6 Test Case """
172
173 @classmethod
174 def setUpClass(cls):
175 super(TestIPv6, cls).setUpClass()
176
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -0700177 @classmethod
178 def tearDownClass(cls):
179 super(TestIPv6, cls).tearDownClass()
180
Klement Sekeraf62ae122016-10-11 11:47:09 +0200181 def setUp(self):
Matej Klotton86d87c42016-11-11 11:38:55 +0100182 """
183 Perform test setup before test case.
184
185 **Config:**
186 - create 3 pg interfaces
187 - untagged pg0 interface
188 - Dot1Q subinterface on pg1
189 - Dot1AD subinterface on pg2
190 - setup interfaces:
191 - put it into UP state
192 - set IPv6 addresses
193 - resolve neighbor address using NDP
194 - configure 200 fib entries
195
196 :ivar list interfaces: pg interfaces and subinterfaces.
197 :ivar dict flows: IPv4 packet flows in test.
Matej Klotton86d87c42016-11-11 11:38:55 +0100198
199 *TODO:* Create AD sub interface
200 """
Klement Sekeraf62ae122016-10-11 11:47:09 +0200201 super(TestIPv6, self).setUp()
Damjan Marionf56b77a2016-10-03 19:44:57 +0200202
Klement Sekeraf62ae122016-10-11 11:47:09 +0200203 # create 3 pg interfaces
204 self.create_pg_interfaces(range(3))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200205
Klement Sekeraf62ae122016-10-11 11:47:09 +0200206 # create 2 subinterfaces for p1 and pg2
207 self.sub_interfaces = [
208 VppDot1QSubint(self, self.pg1, 100),
Matej Klotton86d87c42016-11-11 11:38:55 +0100209 VppDot1QSubint(self, self.pg2, 200)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200210 # TODO: VppDot1ADSubint(self, self.pg2, 200, 300, 400)
Matej Klotton86d87c42016-11-11 11:38:55 +0100211 ]
Damjan Marionf56b77a2016-10-03 19:44:57 +0200212
Klement Sekeraf62ae122016-10-11 11:47:09 +0200213 # packet flows mapping pg0 -> pg1.sub, pg2.sub, etc.
214 self.flows = dict()
215 self.flows[self.pg0] = [self.pg1.sub_if, self.pg2.sub_if]
216 self.flows[self.pg1.sub_if] = [self.pg0, self.pg2.sub_if]
217 self.flows[self.pg2.sub_if] = [self.pg0, self.pg1.sub_if]
Damjan Marionf56b77a2016-10-03 19:44:57 +0200218
Klement Sekeraf62ae122016-10-11 11:47:09 +0200219 # packet sizes
Jan Geletye6c78ee2018-06-26 12:24:03 +0200220 self.pg_if_packet_sizes = [64, 1500, 9020]
Damjan Marionf56b77a2016-10-03 19:44:57 +0200221
Klement Sekeraf62ae122016-10-11 11:47:09 +0200222 self.interfaces = list(self.pg_interfaces)
223 self.interfaces.extend(self.sub_interfaces)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200224
Klement Sekeraf62ae122016-10-11 11:47:09 +0200225 # setup all interfaces
226 for i in self.interfaces:
227 i.admin_up()
228 i.config_ip6()
229 i.resolve_ndp()
230
Damjan Marionf56b77a2016-10-03 19:44:57 +0200231 def tearDown(self):
Matej Klotton86d87c42016-11-11 11:38:55 +0100232 """Run standard test teardown and log ``show ip6 neighbors``."""
Neale Ranns744902e2017-08-14 10:35:44 -0700233 for i in self.interfaces:
Neale Ranns75152282017-01-09 01:00:45 -0800234 i.unconfig_ip6()
Neale Ranns75152282017-01-09 01:00:45 -0800235 i.admin_down()
Neale Ranns744902e2017-08-14 10:35:44 -0700236 for i in self.sub_interfaces:
Neale Ranns75152282017-01-09 01:00:45 -0800237 i.remove_vpp_config()
238
Klement Sekeraf62ae122016-10-11 11:47:09 +0200239 super(TestIPv6, self).tearDown()
240 if not self.vpp_dead:
Matej Klotton86d87c42016-11-11 11:38:55 +0100241 self.logger.info(self.vapi.cli("show ip6 neighbors"))
Klement Sekeraf62ae122016-10-11 11:47:09 +0200242 # info(self.vapi.cli("show ip6 fib")) # many entries
Damjan Marionf56b77a2016-10-03 19:44:57 +0200243
Jan Geletye6c78ee2018-06-26 12:24:03 +0200244 def modify_packet(self, src_if, packet_size, pkt):
245 """Add load, set destination IP and extend packet to required packet
246 size for defined interface.
247
248 :param VppInterface src_if: Interface to create packet for.
249 :param int packet_size: Required packet size.
250 :param Scapy pkt: Packet to be modified.
251 """
snaramre07a0f212019-10-11 21:28:56 +0000252 dst_if_idx = int(packet_size / 10 % 2)
Jan Geletye6c78ee2018-06-26 12:24:03 +0200253 dst_if = self.flows[src_if][dst_if_idx]
254 info = self.create_packet_info(src_if, dst_if)
255 payload = self.info_to_payload(info)
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800256 p = pkt / Raw(payload)
Jan Geletye6c78ee2018-06-26 12:24:03 +0200257 p[IPv6].dst = dst_if.remote_ip6
258 info.data = p.copy()
259 if isinstance(src_if, VppSubInterface):
260 p = src_if.add_dot1_layer(p)
261 self.extend_packet(p, packet_size)
262
263 return p
264
265 def create_stream(self, src_if):
Matej Klotton86d87c42016-11-11 11:38:55 +0100266 """Create input packet stream for defined interface.
267
268 :param VppInterface src_if: Interface to create packet stream for.
Matej Klotton86d87c42016-11-11 11:38:55 +0100269 """
Jan Geletye6c78ee2018-06-26 12:24:03 +0200270 hdr_ext = 4 if isinstance(src_if, VppSubInterface) else 0
271 pkt_tmpl = (Ether(dst=src_if.local_mac, src=src_if.remote_mac) /
272 IPv6(src=src_if.remote_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800273 inet6.UDP(sport=1234, dport=1234))
Jan Geletye6c78ee2018-06-26 12:24:03 +0200274
275 pkts = [self.modify_packet(src_if, i, pkt_tmpl)
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -0800276 for i in moves.range(self.pg_if_packet_sizes[0],
277 self.pg_if_packet_sizes[1], 10)]
Jan Geletye6c78ee2018-06-26 12:24:03 +0200278 pkts_b = [self.modify_packet(src_if, i, pkt_tmpl)
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -0800279 for i in moves.range(self.pg_if_packet_sizes[1] + hdr_ext,
280 self.pg_if_packet_sizes[2] + hdr_ext,
281 50)]
Jan Geletye6c78ee2018-06-26 12:24:03 +0200282 pkts.extend(pkts_b)
283
Damjan Marionf56b77a2016-10-03 19:44:57 +0200284 return pkts
285
Klement Sekeraf62ae122016-10-11 11:47:09 +0200286 def verify_capture(self, dst_if, capture):
Matej Klotton86d87c42016-11-11 11:38:55 +0100287 """Verify captured input packet stream for defined interface.
288
289 :param VppInterface dst_if: Interface to verify captured packet stream
290 for.
291 :param list capture: Captured packet stream.
292 """
293 self.logger.info("Verifying capture on interface %s" % dst_if.name)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200294 last_info = dict()
Damjan Marionf56b77a2016-10-03 19:44:57 +0200295 for i in self.interfaces:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200296 last_info[i.sw_if_index] = None
297 is_sub_if = False
298 dst_sw_if_index = dst_if.sw_if_index
299 if hasattr(dst_if, 'parent'):
300 is_sub_if = True
Damjan Marionf56b77a2016-10-03 19:44:57 +0200301 for packet in capture:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200302 if is_sub_if:
303 # Check VLAN tags and Ethernet header
304 packet = dst_if.remove_dot1_layer(packet)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200305 self.assertTrue(Dot1Q not in packet)
306 try:
307 ip = packet[IPv6]
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800308 udp = packet[inet6.UDP]
Paul Vinciguerraeaea4212019-03-06 11:58:06 -0800309 payload_info = self.payload_to_info(packet[Raw])
Damjan Marionf56b77a2016-10-03 19:44:57 +0200310 packet_index = payload_info.index
Klement Sekeraf62ae122016-10-11 11:47:09 +0200311 self.assertEqual(payload_info.dst, dst_sw_if_index)
Klement Sekerada505f62017-01-04 12:58:53 +0100312 self.logger.debug(
313 "Got packet on port %s: src=%u (id=%u)" %
314 (dst_if.name, payload_info.src, packet_index))
Klement Sekeraf62ae122016-10-11 11:47:09 +0200315 next_info = self.get_next_packet_info_for_interface2(
316 payload_info.src, dst_sw_if_index,
317 last_info[payload_info.src])
318 last_info[payload_info.src] = next_info
Damjan Marionf56b77a2016-10-03 19:44:57 +0200319 self.assertTrue(next_info is not None)
320 self.assertEqual(packet_index, next_info.index)
321 saved_packet = next_info.data
322 # Check standard fields
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800323 self.assertEqual(
324 ip.src, saved_packet[IPv6].src)
325 self.assertEqual(
326 ip.dst, saved_packet[IPv6].dst)
327 self.assertEqual(
328 udp.sport, saved_packet[inet6.UDP].sport)
329 self.assertEqual(
330 udp.dport, saved_packet[inet6.UDP].dport)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200331 except:
Klement Sekera7bb873a2016-11-18 07:38:42 +0100332 self.logger.error(ppp("Unexpected or invalid packet:", packet))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200333 raise
334 for i in self.interfaces:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200335 remaining_packet = self.get_next_packet_info_for_interface2(
336 i.sw_if_index, dst_sw_if_index, last_info[i.sw_if_index])
Klement Sekera7bb873a2016-11-18 07:38:42 +0100337 self.assertTrue(remaining_packet is None,
338 "Interface %s: Packet expected from interface %s "
339 "didn't arrive" % (dst_if.name, i.name))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200340
Klement Sekerae8498652019-06-17 12:23:15 +0000341 def test_next_header_anomaly(self):
342 """ IPv6 next header anomaly test
343
344 Test scenario:
345 - ipv6 next header field = Fragment Header (44)
346 - next header is ICMPv6 Echo Request
347 - wait for reassembly
348 """
349 pkt = (Ether(src=self.pg0.local_mac, dst=self.pg0.remote_mac) /
350 IPv6(src=self.pg0.remote_ip6, dst=self.pg0.local_ip6, nh=44) /
351 ICMPv6EchoRequest())
352
353 self.pg0.add_stream(pkt)
354 self.pg_start()
355
356 # wait for reassembly
357 self.sleep(10)
358
Damjan Marionf56b77a2016-10-03 19:44:57 +0200359 def test_fib(self):
Matej Klotton86d87c42016-11-11 11:38:55 +0100360 """ IPv6 FIB test
361
362 Test scenario:
363 - Create IPv6 stream for pg0 interface
364 - Create IPv6 tagged streams for pg1's and pg2's subinterface.
365 - Send and verify received packets on each interface.
366 """
Damjan Marionf56b77a2016-10-03 19:44:57 +0200367
Jan Geletye6c78ee2018-06-26 12:24:03 +0200368 pkts = self.create_stream(self.pg0)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200369 self.pg0.add_stream(pkts)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200370
Klement Sekeraf62ae122016-10-11 11:47:09 +0200371 for i in self.sub_interfaces:
Jan Geletye6c78ee2018-06-26 12:24:03 +0200372 pkts = self.create_stream(i)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200373 i.parent.add_stream(pkts)
374
375 self.pg_enable_capture(self.pg_interfaces)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200376 self.pg_start()
377
Klement Sekeraf62ae122016-10-11 11:47:09 +0200378 pkts = self.pg0.get_capture()
379 self.verify_capture(self.pg0, pkts)
380
381 for i in self.sub_interfaces:
382 pkts = i.parent.get_capture()
383 self.verify_capture(i, pkts)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200384
Neale Ranns75152282017-01-09 01:00:45 -0800385 def test_ns(self):
Klement Sekerada505f62017-01-04 12:58:53 +0100386 """ IPv6 Neighbour Solicitation Exceptions
Neale Ranns75152282017-01-09 01:00:45 -0800387
Klement Sekerada505f62017-01-04 12:58:53 +0100388 Test scenario:
Neale Ranns75152282017-01-09 01:00:45 -0800389 - Send an NS Sourced from an address not covered by the link sub-net
390 - Send an NS to an mcast address the router has not joined
391 - Send NS for a target address the router does not onn.
392 """
393
394 #
395 # An NS from a non link source address
396 #
Neale Ranns3f844d02017-02-18 00:03:54 -0800397 nsma = in6_getnsma(inet_pton(AF_INET6, self.pg0.local_ip6))
398 d = inet_ntop(AF_INET6, nsma)
Neale Ranns75152282017-01-09 01:00:45 -0800399
400 p = (Ether(dst=in6_getnsmac(nsma)) /
401 IPv6(dst=d, src="2002::2") /
402 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800403 ICMPv6NDOptSrcLLAddr(
404 lladdr=self.pg0.remote_mac))
Neale Ranns75152282017-01-09 01:00:45 -0800405 pkts = [p]
406
Klement Sekerada505f62017-01-04 12:58:53 +0100407 self.send_and_assert_no_replies(
408 self.pg0, pkts,
409 "No response to NS source by address not on sub-net")
Neale Ranns75152282017-01-09 01:00:45 -0800410
411 #
Klement Sekerada505f62017-01-04 12:58:53 +0100412 # An NS for sent to a solicited mcast group the router is
413 # not a member of FAILS
Neale Ranns75152282017-01-09 01:00:45 -0800414 #
415 if 0:
Neale Ranns3f844d02017-02-18 00:03:54 -0800416 nsma = in6_getnsma(inet_pton(AF_INET6, "fd::ffff"))
417 d = inet_ntop(AF_INET6, nsma)
Neale Ranns75152282017-01-09 01:00:45 -0800418
419 p = (Ether(dst=in6_getnsmac(nsma)) /
420 IPv6(dst=d, src=self.pg0.remote_ip6) /
421 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800422 ICMPv6NDOptSrcLLAddr(
423 lladdr=self.pg0.remote_mac))
Neale Ranns75152282017-01-09 01:00:45 -0800424 pkts = [p]
425
Klement Sekerada505f62017-01-04 12:58:53 +0100426 self.send_and_assert_no_replies(
427 self.pg0, pkts,
428 "No response to NS sent to unjoined mcast address")
Neale Ranns75152282017-01-09 01:00:45 -0800429
430 #
431 # An NS whose target address is one the router does not own
432 #
Neale Ranns3f844d02017-02-18 00:03:54 -0800433 nsma = in6_getnsma(inet_pton(AF_INET6, self.pg0.local_ip6))
434 d = inet_ntop(AF_INET6, nsma)
Neale Ranns75152282017-01-09 01:00:45 -0800435
436 p = (Ether(dst=in6_getnsmac(nsma)) /
437 IPv6(dst=d, src=self.pg0.remote_ip6) /
438 ICMPv6ND_NS(tgt="fd::ffff") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800439 ICMPv6NDOptSrcLLAddr(
440 lladdr=self.pg0.remote_mac))
Neale Ranns75152282017-01-09 01:00:45 -0800441 pkts = [p]
442
443 self.send_and_assert_no_replies(self.pg0, pkts,
444 "No response to NS for unknown target")
445
Neale Rannsb3b2de72017-03-08 05:17:22 -0800446 #
447 # A neighbor entry that has no associated FIB-entry
448 #
449 self.pg0.generate_remote_hosts(4)
450 nd_entry = VppNeighbor(self,
451 self.pg0.sw_if_index,
452 self.pg0.remote_hosts[2].mac,
453 self.pg0.remote_hosts[2].ip6,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800454 is_no_fib_entry=1)
455 nd_entry.add_vpp_config()
456
457 #
458 # check we have the neighbor, but no route
459 #
460 self.assertTrue(find_nbr(self,
461 self.pg0.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700462 self.pg0._remote_hosts[2].ip6))
Neale Rannsb3b2de72017-03-08 05:17:22 -0800463 self.assertFalse(find_route(self,
464 self.pg0._remote_hosts[2].ip6,
Neale Ranns097fa662018-05-01 05:17:55 -0700465 128))
Neale Rannsb3b2de72017-03-08 05:17:22 -0800466
Neale Ranns2a3ea492017-04-19 05:24:40 -0700467 #
468 # send an NS from a link local address to the interface's global
469 # address
470 #
471 p = (Ether(dst=in6_getnsmac(nsma), src=self.pg0.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800472 IPv6(
473 dst=d, src=self.pg0._remote_hosts[2].ip6_ll) /
Neale Ranns2a3ea492017-04-19 05:24:40 -0700474 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800475 ICMPv6NDOptSrcLLAddr(
476 lladdr=self.pg0.remote_mac))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700477
478 self.send_and_expect_na(self.pg0, p,
479 "NS from link-local",
480 dst_ip=self.pg0._remote_hosts[2].ip6_ll,
481 tgt_ip=self.pg0.local_ip6)
482
483 #
484 # we should have learned an ND entry for the peer's link-local
485 # but not inserted a route to it in the FIB
486 #
487 self.assertTrue(find_nbr(self,
488 self.pg0.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700489 self.pg0._remote_hosts[2].ip6_ll))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700490 self.assertFalse(find_route(self,
491 self.pg0._remote_hosts[2].ip6_ll,
Neale Ranns097fa662018-05-01 05:17:55 -0700492 128))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700493
494 #
495 # An NS to the router's own Link-local
496 #
497 p = (Ether(dst=in6_getnsmac(nsma), src=self.pg0.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800498 IPv6(
499 dst=d, src=self.pg0._remote_hosts[3].ip6_ll) /
Neale Ranns2a3ea492017-04-19 05:24:40 -0700500 ICMPv6ND_NS(tgt=self.pg0.local_ip6_ll) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800501 ICMPv6NDOptSrcLLAddr(
502 lladdr=self.pg0.remote_mac))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700503
504 self.send_and_expect_na(self.pg0, p,
505 "NS to/from link-local",
506 dst_ip=self.pg0._remote_hosts[3].ip6_ll,
507 tgt_ip=self.pg0.local_ip6_ll)
508
509 #
Neale Rannse2b67362021-04-02 07:34:39 +0000510 # do not respond to a NS for the peer's address
511 #
512 p = (Ether(dst=in6_getnsmac(nsma), src=self.pg0.remote_mac) /
513 IPv6(dst=d,
514 src=self.pg0._remote_hosts[3].ip6_ll) /
515 ICMPv6ND_NS(tgt=self.pg0._remote_hosts[3].ip6_ll) /
516 ICMPv6NDOptSrcLLAddr(
517 lladdr=self.pg0.remote_mac))
518
519 self.send_and_assert_no_replies(self.pg0, p)
520
521 #
Neale Ranns2a3ea492017-04-19 05:24:40 -0700522 # we should have learned an ND entry for the peer's link-local
523 # but not inserted a route to it in the FIB
524 #
525 self.assertTrue(find_nbr(self,
526 self.pg0.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700527 self.pg0._remote_hosts[3].ip6_ll))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700528 self.assertFalse(find_route(self,
529 self.pg0._remote_hosts[3].ip6_ll,
Neale Ranns097fa662018-05-01 05:17:55 -0700530 128))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700531
Neale Rannsdcd6d622017-05-26 02:59:16 -0700532 def test_ns_duplicates(self):
Neale Rannsda78f952017-05-24 09:15:43 -0700533 """ ND Duplicates"""
Neale Rannsdcd6d622017-05-26 02:59:16 -0700534
535 #
536 # Generate some hosts on the LAN
537 #
538 self.pg1.generate_remote_hosts(3)
539
540 #
541 # Add host 1 on pg1 and pg2
542 #
543 ns_pg1 = VppNeighbor(self,
544 self.pg1.sw_if_index,
545 self.pg1.remote_hosts[1].mac,
Neale Ranns37029302018-08-10 05:30:06 -0700546 self.pg1.remote_hosts[1].ip6)
Neale Rannsdcd6d622017-05-26 02:59:16 -0700547 ns_pg1.add_vpp_config()
548 ns_pg2 = VppNeighbor(self,
549 self.pg2.sw_if_index,
550 self.pg2.remote_mac,
Neale Ranns37029302018-08-10 05:30:06 -0700551 self.pg1.remote_hosts[1].ip6)
Neale Rannsdcd6d622017-05-26 02:59:16 -0700552 ns_pg2.add_vpp_config()
553
554 #
555 # IP packet destined for pg1 remote host arrives on pg1 again.
556 #
557 p = (Ether(dst=self.pg0.local_mac,
558 src=self.pg0.remote_mac) /
559 IPv6(src=self.pg0.remote_ip6,
560 dst=self.pg1.remote_hosts[1].ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800561 inet6.UDP(sport=1234, dport=1234) /
Neale Rannsdcd6d622017-05-26 02:59:16 -0700562 Raw())
563
564 self.pg0.add_stream(p)
565 self.pg_enable_capture(self.pg_interfaces)
566 self.pg_start()
567
568 rx1 = self.pg1.get_capture(1)
569
570 self.verify_ip(rx1[0],
571 self.pg1.local_mac,
572 self.pg1.remote_hosts[1].mac,
573 self.pg0.remote_ip6,
574 self.pg1.remote_hosts[1].ip6)
575
576 #
577 # remove the duplicate on pg1
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700578 # packet stream should generate NSs out of pg1
Neale Rannsdcd6d622017-05-26 02:59:16 -0700579 #
580 ns_pg1.remove_vpp_config()
581
582 self.send_and_expect_ns(self.pg0, self.pg1,
583 p, self.pg1.remote_hosts[1].ip6)
584
585 #
586 # Add it back
587 #
588 ns_pg1.add_vpp_config()
589
590 self.pg0.add_stream(p)
591 self.pg_enable_capture(self.pg_interfaces)
592 self.pg_start()
593
594 rx1 = self.pg1.get_capture(1)
595
596 self.verify_ip(rx1[0],
597 self.pg1.local_mac,
598 self.pg1.remote_hosts[1].mac,
599 self.pg0.remote_ip6,
600 self.pg1.remote_hosts[1].ip6)
601
Neale Rannscbe25aa2019-09-30 10:53:31 +0000602 def validate_ra(self, intf, rx, dst_ip=None, src_ip=None,
603 mtu=9000, pi_opt=None):
Neale Ranns32e1c012016-11-22 17:07:28 +0000604 if not dst_ip:
605 dst_ip = intf.remote_ip6
Neale Rannscbe25aa2019-09-30 10:53:31 +0000606 if not src_ip:
607 src_ip = mk_ll_addr(intf.local_mac)
Neale Ranns75152282017-01-09 01:00:45 -0800608
Neale Ranns5737d882017-02-03 06:14:49 -0800609 # unicasted packets must come to the unicast mac
Neale Ranns32e1c012016-11-22 17:07:28 +0000610 self.assertEqual(rx[Ether].dst, intf.remote_mac)
611
612 # and from the router's MAC
613 self.assertEqual(rx[Ether].src, intf.local_mac)
Neale Ranns75152282017-01-09 01:00:45 -0800614
615 # the rx'd RA should be addressed to the sender's source
616 self.assertTrue(rx.haslayer(ICMPv6ND_RA))
617 self.assertEqual(in6_ptop(rx[IPv6].dst),
Neale Ranns32e1c012016-11-22 17:07:28 +0000618 in6_ptop(dst_ip))
Neale Ranns75152282017-01-09 01:00:45 -0800619
620 # and come from the router's link local
621 self.assertTrue(in6_islladdr(rx[IPv6].src))
Neale Rannscbe25aa2019-09-30 10:53:31 +0000622 self.assertEqual(in6_ptop(rx[IPv6].src), in6_ptop(src_ip))
Neale Ranns75152282017-01-09 01:00:45 -0800623
Neale Ranns87df12d2017-02-18 08:16:41 -0800624 # it should contain the links MTU
625 ra = rx[ICMPv6ND_RA]
626 self.assertEqual(ra[ICMPv6NDOptMTU].mtu, mtu)
627
628 # it should contain the source's link layer address option
629 sll = ra[ICMPv6NDOptSrcLLAddr]
630 self.assertEqual(sll.lladdr, intf.local_mac)
631
632 if not pi_opt:
633 # the RA should not contain prefix information
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800634 self.assertFalse(ra.haslayer(
635 ICMPv6NDOptPrefixInfo))
Neale Ranns87df12d2017-02-18 08:16:41 -0800636 else:
637 raos = rx.getlayer(ICMPv6NDOptPrefixInfo, 1)
638
639 # the options are nested in the scapy packet in way that i cannot
640 # decipher how to decode. this 1st layer of option always returns
641 # nested classes, so a direct obj1=obj2 comparison always fails.
Paul Vinciguerraab055082019-06-06 14:07:55 -0400642 # however, the getlayer(.., 2) does give one instance.
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700643 # so we cheat here and construct a new opt instance for comparison
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800644 rd = ICMPv6NDOptPrefixInfo(
645 prefixlen=raos.prefixlen,
646 prefix=raos.prefix,
647 L=raos.L,
648 A=raos.A)
Neale Ranns87df12d2017-02-18 08:16:41 -0800649 if type(pi_opt) is list:
650 for ii in range(len(pi_opt)):
651 self.assertEqual(pi_opt[ii], rd)
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800652 rd = rx.getlayer(
653 ICMPv6NDOptPrefixInfo, ii + 2)
Neale Ranns87df12d2017-02-18 08:16:41 -0800654 else:
Paul Vinciguerraab055082019-06-06 14:07:55 -0400655 self.assertEqual(pi_opt, raos, 'Expected: %s, received: %s'
656 % (pi_opt.show(dump=True),
657 raos.show(dump=True)))
Neale Ranns87df12d2017-02-18 08:16:41 -0800658
Neale Ranns32e1c012016-11-22 17:07:28 +0000659 def send_and_expect_ra(self, intf, pkts, remark, dst_ip=None,
Neale Ranns87df12d2017-02-18 08:16:41 -0800660 filter_out_fn=is_ipv6_misc,
Neale Rannscbe25aa2019-09-30 10:53:31 +0000661 opt=None,
662 src_ip=None):
663 self.vapi.cli("clear trace")
Neale Ranns32e1c012016-11-22 17:07:28 +0000664 intf.add_stream(pkts)
Neale Ranns32e1c012016-11-22 17:07:28 +0000665 self.pg_enable_capture(self.pg_interfaces)
666 self.pg_start()
667 rx = intf.get_capture(1, filter_out_fn=filter_out_fn)
668
669 self.assertEqual(len(rx), 1)
670 rx = rx[0]
Neale Rannscbe25aa2019-09-30 10:53:31 +0000671 self.validate_ra(intf, rx, dst_ip, src_ip=src_ip, pi_opt=opt)
Neale Ranns32e1c012016-11-22 17:07:28 +0000672
Neale Ranns75152282017-01-09 01:00:45 -0800673 def test_rs(self):
Klement Sekerada505f62017-01-04 12:58:53 +0100674 """ IPv6 Router Solicitation Exceptions
Neale Ranns75152282017-01-09 01:00:45 -0800675
Klement Sekerada505f62017-01-04 12:58:53 +0100676 Test scenario:
Neale Ranns75152282017-01-09 01:00:45 -0800677 """
678
679 #
Klement Sekerada505f62017-01-04 12:58:53 +0100680 # Before we begin change the IPv6 RA responses to use the unicast
681 # address - that way we will not confuse them with the periodic
682 # RAs which go to the mcast address
Neale Ranns32e1c012016-11-22 17:07:28 +0000683 # Sit and wait for the first periodic RA.
684 #
685 # TODO
Neale Ranns75152282017-01-09 01:00:45 -0800686 #
687 self.pg0.ip6_ra_config(send_unicast=1)
688
689 #
690 # An RS from a link source address
691 # - expect an RA in return
692 #
693 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
Neale Rannscbe25aa2019-09-30 10:53:31 +0000694 IPv6(dst=self.pg0.local_ip6, src=self.pg0.remote_ip6) /
Neale Ranns75152282017-01-09 01:00:45 -0800695 ICMPv6ND_RS())
696 pkts = [p]
697 self.send_and_expect_ra(self.pg0, pkts, "Genuine RS")
698
699 #
700 # For the next RS sent the RA should be rate limited
701 #
702 self.send_and_assert_no_replies(self.pg0, pkts, "RA rate limited")
703
704 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700705 # When we reconfigure the IPv6 RA config,
706 # we reset the RA rate limiting,
Klement Sekerada505f62017-01-04 12:58:53 +0100707 # so we need to do this before each test below so as not to drop
708 # packets for rate limiting reasons. Test this works here.
Neale Ranns75152282017-01-09 01:00:45 -0800709 #
710 self.pg0.ip6_ra_config(send_unicast=1)
711 self.send_and_expect_ra(self.pg0, pkts, "Rate limit reset RS")
712
713 #
714 # An RS sent from a non-link local source
715 #
716 self.pg0.ip6_ra_config(send_unicast=1)
717 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800718 IPv6(dst=self.pg0.local_ip6,
719 src="2002::ffff") /
Neale Ranns75152282017-01-09 01:00:45 -0800720 ICMPv6ND_RS())
721 pkts = [p]
722 self.send_and_assert_no_replies(self.pg0, pkts,
723 "RS from non-link source")
724
725 #
726 # Source an RS from a link local address
727 #
728 self.pg0.ip6_ra_config(send_unicast=1)
729 ll = mk_ll_addr(self.pg0.remote_mac)
730 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
731 IPv6(dst=self.pg0.local_ip6, src=ll) /
732 ICMPv6ND_RS())
733 pkts = [p]
Neale Ranns32e1c012016-11-22 17:07:28 +0000734 self.send_and_expect_ra(self.pg0, pkts,
735 "RS sourced from link-local",
736 dst_ip=ll)
737
738 #
Ole Troan5d280d52021-08-06 09:58:09 +0200739 # Source an RS from a link local address
740 # Ensure suppress also applies to solicited RS
741 #
742 self.pg0.ip6_ra_config(send_unicast=1, suppress=1)
743 ll = mk_ll_addr(self.pg0.remote_mac)
744 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
745 IPv6(dst=self.pg0.local_ip6, src=ll) /
746 ICMPv6ND_RS())
747 pkts = [p]
748 self.send_and_assert_no_replies(self.pg0, pkts,
749 "Suppressed RS from link-local")
750
751 #
Neale Ranns32e1c012016-11-22 17:07:28 +0000752 # Send the RS multicast
753 #
Ole Troan5d280d52021-08-06 09:58:09 +0200754 self.pg0.ip6_ra_config(no=1, suppress=1) # Reset suppress flag to zero
Neale Ranns32e1c012016-11-22 17:07:28 +0000755 self.pg0.ip6_ra_config(send_unicast=1)
Neale Ranns3f844d02017-02-18 00:03:54 -0800756 dmac = in6_getnsmac(inet_pton(AF_INET6, "ff02::2"))
Neale Ranns32e1c012016-11-22 17:07:28 +0000757 ll = mk_ll_addr(self.pg0.remote_mac)
758 p = (Ether(dst=dmac, src=self.pg0.remote_mac) /
759 IPv6(dst="ff02::2", src=ll) /
760 ICMPv6ND_RS())
761 pkts = [p]
762 self.send_and_expect_ra(self.pg0, pkts,
763 "RS sourced from link-local",
764 dst_ip=ll)
Neale Ranns75152282017-01-09 01:00:45 -0800765
766 #
Klement Sekerada505f62017-01-04 12:58:53 +0100767 # Source from the unspecified address ::. This happens when the RS
768 # is sent before the host has a configured address/sub-net,
769 # i.e. auto-config. Since the sender has no IP address, the reply
770 # comes back mcast - so the capture needs to not filter this.
771 # If we happen to pick up the periodic RA at this point then so be it,
772 # it's not an error.
Neale Ranns75152282017-01-09 01:00:45 -0800773 #
Ole Troan5d280d52021-08-06 09:58:09 +0200774 self.pg0.ip6_ra_config(send_unicast=1, suppress=0)
Neale Ranns32e1c012016-11-22 17:07:28 +0000775 p = (Ether(dst=dmac, src=self.pg0.remote_mac) /
776 IPv6(dst="ff02::2", src="::") /
Neale Ranns75152282017-01-09 01:00:45 -0800777 ICMPv6ND_RS())
778 pkts = [p]
Neale Ranns32e1c012016-11-22 17:07:28 +0000779 self.send_and_expect_ra(self.pg0, pkts,
780 "RS sourced from unspecified",
781 dst_ip="ff02::1",
782 filter_out_fn=None)
Neale Ranns75152282017-01-09 01:00:45 -0800783
784 #
Neale Ranns87df12d2017-02-18 08:16:41 -0800785 # Configure The RA to announce the links prefix
786 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400787 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg0.local_ip6,
788 self.pg0.local_ip6_prefix_len))
Neale Ranns87df12d2017-02-18 08:16:41 -0800789
790 #
791 # RAs should now contain the prefix information option
792 #
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800793 opt = ICMPv6NDOptPrefixInfo(
794 prefixlen=self.pg0.local_ip6_prefix_len,
795 prefix=self.pg0.local_ip6,
796 L=1,
797 A=1)
Neale Ranns87df12d2017-02-18 08:16:41 -0800798
799 self.pg0.ip6_ra_config(send_unicast=1)
800 ll = mk_ll_addr(self.pg0.remote_mac)
801 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
802 IPv6(dst=self.pg0.local_ip6, src=ll) /
803 ICMPv6ND_RS())
804 self.send_and_expect_ra(self.pg0, p,
805 "RA with prefix-info",
806 dst_ip=ll,
807 opt=opt)
808
809 #
810 # Change the prefix info to not off-link
811 # L-flag is clear
812 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400813 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg0.local_ip6,
814 self.pg0.local_ip6_prefix_len),
Neale Ranns87df12d2017-02-18 08:16:41 -0800815 off_link=1)
816
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800817 opt = ICMPv6NDOptPrefixInfo(
818 prefixlen=self.pg0.local_ip6_prefix_len,
819 prefix=self.pg0.local_ip6,
820 L=0,
821 A=1)
Neale Ranns87df12d2017-02-18 08:16:41 -0800822
823 self.pg0.ip6_ra_config(send_unicast=1)
824 self.send_and_expect_ra(self.pg0, p,
825 "RA with Prefix info with L-flag=0",
826 dst_ip=ll,
827 opt=opt)
828
829 #
830 # Change the prefix info to not off-link, no-autoconfig
831 # L and A flag are clear in the advert
832 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400833 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg0.local_ip6,
834 self.pg0.local_ip6_prefix_len),
Neale Ranns87df12d2017-02-18 08:16:41 -0800835 off_link=1,
836 no_autoconfig=1)
837
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800838 opt = ICMPv6NDOptPrefixInfo(
839 prefixlen=self.pg0.local_ip6_prefix_len,
840 prefix=self.pg0.local_ip6,
841 L=0,
842 A=0)
Neale Ranns87df12d2017-02-18 08:16:41 -0800843
844 self.pg0.ip6_ra_config(send_unicast=1)
845 self.send_and_expect_ra(self.pg0, p,
846 "RA with Prefix info with A & L-flag=0",
847 dst_ip=ll,
848 opt=opt)
849
850 #
851 # Change the flag settings back to the defaults
852 # L and A flag are set in the advert
853 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400854 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg0.local_ip6,
855 self.pg0.local_ip6_prefix_len))
Neale Ranns87df12d2017-02-18 08:16:41 -0800856
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800857 opt = ICMPv6NDOptPrefixInfo(
858 prefixlen=self.pg0.local_ip6_prefix_len,
859 prefix=self.pg0.local_ip6,
860 L=1,
861 A=1)
Neale Ranns87df12d2017-02-18 08:16:41 -0800862
863 self.pg0.ip6_ra_config(send_unicast=1)
864 self.send_and_expect_ra(self.pg0, p,
865 "RA with Prefix info",
866 dst_ip=ll,
867 opt=opt)
868
869 #
870 # Change the prefix info to not off-link, no-autoconfig
871 # L and A flag are clear in the advert
872 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400873 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg0.local_ip6,
874 self.pg0.local_ip6_prefix_len),
Neale Ranns87df12d2017-02-18 08:16:41 -0800875 off_link=1,
876 no_autoconfig=1)
877
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800878 opt = ICMPv6NDOptPrefixInfo(
879 prefixlen=self.pg0.local_ip6_prefix_len,
880 prefix=self.pg0.local_ip6,
881 L=0,
882 A=0)
Neale Ranns87df12d2017-02-18 08:16:41 -0800883
884 self.pg0.ip6_ra_config(send_unicast=1)
885 self.send_and_expect_ra(self.pg0, p,
886 "RA with Prefix info with A & L-flag=0",
887 dst_ip=ll,
888 opt=opt)
889
890 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700891 # Use the reset to defaults option to revert to defaults
Neale Ranns87df12d2017-02-18 08:16:41 -0800892 # L and A flag are clear in the advert
893 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400894 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg0.local_ip6,
895 self.pg0.local_ip6_prefix_len),
Neale Ranns87df12d2017-02-18 08:16:41 -0800896 use_default=1)
897
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800898 opt = ICMPv6NDOptPrefixInfo(
899 prefixlen=self.pg0.local_ip6_prefix_len,
900 prefix=self.pg0.local_ip6,
901 L=1,
902 A=1)
Neale Ranns87df12d2017-02-18 08:16:41 -0800903
904 self.pg0.ip6_ra_config(send_unicast=1)
905 self.send_and_expect_ra(self.pg0, p,
906 "RA with Prefix reverted to defaults",
907 dst_ip=ll,
908 opt=opt)
909
910 #
911 # Advertise Another prefix. With no L-flag/A-flag
912 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400913 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg1.local_ip6,
914 self.pg1.local_ip6_prefix_len),
Neale Ranns87df12d2017-02-18 08:16:41 -0800915 off_link=1,
916 no_autoconfig=1)
917
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800918 opt = [ICMPv6NDOptPrefixInfo(
919 prefixlen=self.pg0.local_ip6_prefix_len,
920 prefix=self.pg0.local_ip6,
921 L=1,
922 A=1),
923 ICMPv6NDOptPrefixInfo(
924 prefixlen=self.pg1.local_ip6_prefix_len,
925 prefix=self.pg1.local_ip6,
926 L=0,
927 A=0)]
Neale Ranns87df12d2017-02-18 08:16:41 -0800928
929 self.pg0.ip6_ra_config(send_unicast=1)
930 ll = mk_ll_addr(self.pg0.remote_mac)
931 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
932 IPv6(dst=self.pg0.local_ip6, src=ll) /
933 ICMPv6ND_RS())
934 self.send_and_expect_ra(self.pg0, p,
935 "RA with multiple Prefix infos",
936 dst_ip=ll,
937 opt=opt)
938
939 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700940 # Remove the first prefix-info - expect the second is still in the
Neale Ranns87df12d2017-02-18 08:16:41 -0800941 # advert
942 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400943 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg0.local_ip6,
944 self.pg0.local_ip6_prefix_len),
Neale Ranns87df12d2017-02-18 08:16:41 -0800945 is_no=1)
946
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800947 opt = ICMPv6NDOptPrefixInfo(
948 prefixlen=self.pg1.local_ip6_prefix_len,
949 prefix=self.pg1.local_ip6,
950 L=0,
951 A=0)
Neale Ranns87df12d2017-02-18 08:16:41 -0800952
953 self.pg0.ip6_ra_config(send_unicast=1)
954 self.send_and_expect_ra(self.pg0, p,
955 "RA with Prefix reverted to defaults",
956 dst_ip=ll,
957 opt=opt)
958
959 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700960 # Remove the second prefix-info - expect no prefix-info in the adverts
Neale Ranns87df12d2017-02-18 08:16:41 -0800961 #
Paul Vinciguerraab055082019-06-06 14:07:55 -0400962 self.pg0.ip6_ra_prefix('%s/%s' % (self.pg1.local_ip6,
963 self.pg1.local_ip6_prefix_len),
Neale Ranns87df12d2017-02-18 08:16:41 -0800964 is_no=1)
965
Neale Rannscbe25aa2019-09-30 10:53:31 +0000966 #
967 # change the link's link local, so we know that works too.
968 #
969 self.vapi.sw_interface_ip6_set_link_local_address(
970 sw_if_index=self.pg0.sw_if_index,
971 ip="fe80::88")
972
Neale Ranns87df12d2017-02-18 08:16:41 -0800973 self.pg0.ip6_ra_config(send_unicast=1)
974 self.send_and_expect_ra(self.pg0, p,
975 "RA with Prefix reverted to defaults",
Neale Rannscbe25aa2019-09-30 10:53:31 +0000976 dst_ip=ll,
977 src_ip="fe80::88")
Neale Ranns87df12d2017-02-18 08:16:41 -0800978
979 #
Neale Ranns5737d882017-02-03 06:14:49 -0800980 # Reset the periodic advertisements back to default values
Neale Ranns75152282017-01-09 01:00:45 -0800981 #
Neale Ranns32e1c012016-11-22 17:07:28 +0000982 self.pg0.ip6_ra_config(no=1, suppress=1, send_unicast=0)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200983
Neale Rannsf267d112020-02-07 09:45:07 +0000984 def test_mld(self):
985 """ MLD Report """
986 #
987 # test one MLD is sent after applying an IPv6 Address on an interface
988 #
989 self.pg_enable_capture(self.pg_interfaces)
990 self.pg_start()
991
992 subitf = VppDot1QSubint(self, self.pg1, 99)
993
994 subitf.admin_up()
995 subitf.config_ip6()
996
Neale Ranns03c254e2020-03-17 14:25:10 +0000997 rxs = self.pg1._get_capture(timeout=4, filter_out_fn=None)
Neale Rannsf267d112020-02-07 09:45:07 +0000998
999 #
1000 # hunt for the MLD on vlan 99
1001 #
1002 for rx in rxs:
1003 # make sure ipv6 packets with hop by hop options have
1004 # correct checksums
1005 self.assert_packet_checksums_valid(rx)
1006 if rx.haslayer(IPv6ExtHdrHopByHop) and \
1007 rx.haslayer(Dot1Q) and \
1008 rx[Dot1Q].vlan == 99:
1009 mld = rx[ICMPv6MLReport2]
1010
1011 self.assertEqual(mld.records_number, 4)
1012
Neale Ranns3f844d02017-02-18 00:03:54 -08001013
Christian Hoppsf5d38e02020-05-04 10:28:03 -04001014class TestIPv6RouteLookup(VppTestCase):
1015 """ IPv6 Route Lookup Test Case """
1016 routes = []
1017
1018 def route_lookup(self, prefix, exact):
1019 return self.vapi.api(self.vapi.papi.ip_route_lookup,
1020 {
1021 'table_id': 0,
1022 'exact': exact,
1023 'prefix': prefix,
1024 })
1025
1026 @classmethod
1027 def setUpClass(cls):
1028 super(TestIPv6RouteLookup, cls).setUpClass()
1029
1030 @classmethod
1031 def tearDownClass(cls):
1032 super(TestIPv6RouteLookup, cls).tearDownClass()
1033
1034 def setUp(self):
1035 super(TestIPv6RouteLookup, self).setUp()
1036
1037 drop_nh = VppRoutePath("::1", 0xffffffff,
1038 type=FibPathType.FIB_PATH_TYPE_DROP)
1039
1040 # Add 3 routes
1041 r = VppIpRoute(self, "2001:1111::", 32, [drop_nh])
1042 r.add_vpp_config()
1043 self.routes.append(r)
1044
1045 r = VppIpRoute(self, "2001:1111:2222::", 48, [drop_nh])
1046 r.add_vpp_config()
1047 self.routes.append(r)
1048
1049 r = VppIpRoute(self, "2001:1111:2222::1", 128, [drop_nh])
1050 r.add_vpp_config()
1051 self.routes.append(r)
1052
1053 def tearDown(self):
1054 # Remove the routes we added
1055 for r in self.routes:
1056 r.remove_vpp_config()
1057
1058 super(TestIPv6RouteLookup, self).tearDown()
1059
1060 def test_exact_match(self):
1061 # Verify we find the host route
1062 prefix = "2001:1111:2222::1/128"
1063 result = self.route_lookup(prefix, True)
1064 assert (prefix == str(result.route.prefix))
1065
1066 # Verify we find a middle prefix route
1067 prefix = "2001:1111:2222::/48"
1068 result = self.route_lookup(prefix, True)
1069 assert (prefix == str(result.route.prefix))
1070
1071 # Verify we do not find an available LPM.
1072 with self.vapi.assert_negative_api_retval():
1073 self.route_lookup("2001::2/128", True)
1074
1075 def test_longest_prefix_match(self):
1076 # verify we find lpm
1077 lpm_prefix = "2001:1111:2222::/48"
1078 result = self.route_lookup("2001:1111:2222::2/128", False)
1079 assert (lpm_prefix == str(result.route.prefix))
1080
1081 # Verify we find the exact when not requested
1082 result = self.route_lookup(lpm_prefix, False)
1083 assert (lpm_prefix == str(result.route.prefix))
1084
1085 # Can't seem to delete the default route so no negative LPM test.
1086
1087
Matthew Smith6c92f5b2019-08-07 11:46:30 -05001088class TestIPv6IfAddrRoute(VppTestCase):
1089 """ IPv6 Interface Addr Route Test Case """
1090
1091 @classmethod
1092 def setUpClass(cls):
1093 super(TestIPv6IfAddrRoute, cls).setUpClass()
1094
1095 @classmethod
1096 def tearDownClass(cls):
1097 super(TestIPv6IfAddrRoute, cls).tearDownClass()
1098
1099 def setUp(self):
1100 super(TestIPv6IfAddrRoute, self).setUp()
1101
1102 # create 1 pg interface
1103 self.create_pg_interfaces(range(1))
1104
1105 for i in self.pg_interfaces:
1106 i.admin_up()
1107 i.config_ip6()
1108 i.resolve_ndp()
1109
1110 def tearDown(self):
1111 super(TestIPv6IfAddrRoute, self).tearDown()
1112 for i in self.pg_interfaces:
1113 i.unconfig_ip6()
1114 i.admin_down()
1115
1116 def test_ipv6_ifaddrs_same_prefix(self):
1117 """ IPv6 Interface Addresses Same Prefix test
1118
1119 Test scenario:
1120
1121 - Verify no route in FIB for prefix 2001:10::/64
1122 - Configure IPv4 address 2001:10::10/64 on an interface
1123 - Verify route in FIB for prefix 2001:10::/64
1124 - Configure IPv4 address 2001:10::20/64 on an interface
1125 - Delete 2001:10::10/64 from interface
1126 - Verify route in FIB for prefix 2001:10::/64
1127 - Delete 2001:10::20/64 from interface
1128 - Verify no route in FIB for prefix 2001:10::/64
1129 """
1130
1131 addr1 = "2001:10::10"
1132 addr2 = "2001:10::20"
1133
Neale Rannsefd7bc22019-11-11 08:32:34 +00001134 if_addr1 = VppIpInterfaceAddress(self, self.pg0, addr1, 64)
1135 if_addr2 = VppIpInterfaceAddress(self, self.pg0, addr2, 64)
1136 self.assertFalse(if_addr1.query_vpp_config())
Matthew Smith6c92f5b2019-08-07 11:46:30 -05001137 self.assertFalse(find_route(self, addr1, 128))
1138 self.assertFalse(find_route(self, addr2, 128))
1139
1140 # configure first address, verify route present
1141 if_addr1.add_vpp_config()
Neale Rannsefd7bc22019-11-11 08:32:34 +00001142 self.assertTrue(if_addr1.query_vpp_config())
Matthew Smith6c92f5b2019-08-07 11:46:30 -05001143 self.assertTrue(find_route(self, addr1, 128))
1144 self.assertFalse(find_route(self, addr2, 128))
1145
1146 # configure second address, delete first, verify route not removed
1147 if_addr2.add_vpp_config()
1148 if_addr1.remove_vpp_config()
Neale Rannsefd7bc22019-11-11 08:32:34 +00001149 self.assertFalse(if_addr1.query_vpp_config())
1150 self.assertTrue(if_addr2.query_vpp_config())
Matthew Smith6c92f5b2019-08-07 11:46:30 -05001151 self.assertFalse(find_route(self, addr1, 128))
1152 self.assertTrue(find_route(self, addr2, 128))
1153
1154 # delete second address, verify route removed
1155 if_addr2.remove_vpp_config()
Neale Rannsefd7bc22019-11-11 08:32:34 +00001156 self.assertFalse(if_addr1.query_vpp_config())
Matthew Smith6c92f5b2019-08-07 11:46:30 -05001157 self.assertFalse(find_route(self, addr1, 128))
1158 self.assertFalse(find_route(self, addr2, 128))
1159
yedgdbd366b2020-05-14 10:51:53 +08001160 def test_ipv6_ifaddr_del(self):
1161 """ Delete an interface address that does not exist """
1162
1163 loopbacks = self.create_loopback_interfaces(1)
1164 lo = self.lo_interfaces[0]
1165
1166 lo.config_ip6()
1167 lo.admin_up()
1168
1169 #
1170 # try and remove pg0's subnet from lo
1171 #
1172 with self.vapi.assert_negative_api_retval():
1173 self.vapi.sw_interface_add_del_address(
1174 sw_if_index=lo.sw_if_index,
1175 prefix=self.pg0.local_ip6_prefix,
1176 is_add=0)
1177
Matthew Smith6c92f5b2019-08-07 11:46:30 -05001178
Jan Geletye6c78ee2018-06-26 12:24:03 +02001179class TestICMPv6Echo(VppTestCase):
1180 """ ICMPv6 Echo Test Case """
1181
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001182 @classmethod
1183 def setUpClass(cls):
1184 super(TestICMPv6Echo, cls).setUpClass()
1185
1186 @classmethod
1187 def tearDownClass(cls):
1188 super(TestICMPv6Echo, cls).tearDownClass()
1189
Jan Geletye6c78ee2018-06-26 12:24:03 +02001190 def setUp(self):
1191 super(TestICMPv6Echo, self).setUp()
1192
1193 # create 1 pg interface
1194 self.create_pg_interfaces(range(1))
1195
1196 for i in self.pg_interfaces:
1197 i.admin_up()
1198 i.config_ip6()
BenoƮt Ganne2699fe22021-01-18 19:25:38 +01001199 i.resolve_ndp(link_layer=True)
Jan Geletye6c78ee2018-06-26 12:24:03 +02001200 i.resolve_ndp()
1201
1202 def tearDown(self):
1203 super(TestICMPv6Echo, self).tearDown()
1204 for i in self.pg_interfaces:
1205 i.unconfig_ip6()
Jan Geletye6c78ee2018-06-26 12:24:03 +02001206 i.admin_down()
1207
1208 def test_icmpv6_echo(self):
1209 """ VPP replies to ICMPv6 Echo Request
1210
1211 Test scenario:
1212
1213 - Receive ICMPv6 Echo Request message on pg0 interface.
1214 - Check outgoing ICMPv6 Echo Reply message on pg0 interface.
1215 """
1216
BenoƮt Ganne2699fe22021-01-18 19:25:38 +01001217 # test both with global and local ipv6 addresses
1218 dsts = (self.pg0.local_ip6, self.pg0.local_ip6_ll)
1219 id = 0xb
1220 seq = 5
1221 data = b'\x0a' * 18
1222 p = list()
1223 for dst in dsts:
1224 p.append((Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) /
1225 IPv6(src=self.pg0.remote_ip6, dst=dst) /
1226 ICMPv6EchoRequest(id=id, seq=seq, data=data)))
Jan Geletye6c78ee2018-06-26 12:24:03 +02001227
BenoƮt Ganne2699fe22021-01-18 19:25:38 +01001228 self.pg0.add_stream(p)
Jan Geletye6c78ee2018-06-26 12:24:03 +02001229 self.pg_enable_capture(self.pg_interfaces)
1230 self.pg_start()
BenoƮt Ganne2699fe22021-01-18 19:25:38 +01001231 rxs = self.pg0.get_capture(len(dsts))
Jan Geletye6c78ee2018-06-26 12:24:03 +02001232
BenoƮt Ganne2699fe22021-01-18 19:25:38 +01001233 for rx, dst in zip(rxs, dsts):
1234 ether = rx[Ether]
1235 ipv6 = rx[IPv6]
1236 icmpv6 = rx[ICMPv6EchoReply]
1237 self.assertEqual(ether.src, self.pg0.local_mac)
1238 self.assertEqual(ether.dst, self.pg0.remote_mac)
1239 self.assertEqual(ipv6.src, dst)
1240 self.assertEqual(ipv6.dst, self.pg0.remote_ip6)
1241 self.assertEqual(icmp6types[icmpv6.type], "Echo Reply")
1242 self.assertEqual(icmpv6.id, id)
1243 self.assertEqual(icmpv6.seq, seq)
1244 self.assertEqual(icmpv6.data, data)
Jan Geletye6c78ee2018-06-26 12:24:03 +02001245
1246
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001247class TestIPv6RD(TestIPv6ND):
1248 """ IPv6 Router Discovery Test Case """
1249
1250 @classmethod
1251 def setUpClass(cls):
1252 super(TestIPv6RD, cls).setUpClass()
1253
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001254 @classmethod
1255 def tearDownClass(cls):
1256 super(TestIPv6RD, cls).tearDownClass()
1257
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001258 def setUp(self):
1259 super(TestIPv6RD, self).setUp()
1260
1261 # create 2 pg interfaces
1262 self.create_pg_interfaces(range(2))
1263
1264 self.interfaces = list(self.pg_interfaces)
1265
1266 # setup all interfaces
1267 for i in self.interfaces:
1268 i.admin_up()
1269 i.config_ip6()
1270
1271 def tearDown(self):
Neale Ranns744902e2017-08-14 10:35:44 -07001272 for i in self.interfaces:
1273 i.unconfig_ip6()
1274 i.admin_down()
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001275 super(TestIPv6RD, self).tearDown()
1276
1277 def test_rd_send_router_solicitation(self):
1278 """ Verify router solicitation packets """
1279
1280 count = 2
1281 self.pg_enable_capture(self.pg_interfaces)
1282 self.pg_start()
1283 self.vapi.ip6nd_send_router_solicitation(self.pg1.sw_if_index,
1284 mrc=count)
1285 rx_list = self.pg1.get_capture(count, timeout=3)
1286 self.assertEqual(len(rx_list), count)
1287 for packet in rx_list:
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001288 self.assertEqual(packet.haslayer(IPv6), 1)
1289 self.assertEqual(packet[IPv6].haslayer(
1290 ICMPv6ND_RS), 1)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001291 dst = ip6_normalize(packet[IPv6].dst)
1292 dst2 = ip6_normalize("ff02::2")
1293 self.assert_equal(dst, dst2)
1294 src = ip6_normalize(packet[IPv6].src)
1295 src2 = ip6_normalize(self.pg1.local_ip6_ll)
1296 self.assert_equal(src, src2)
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001297 self.assertTrue(
1298 bool(packet[ICMPv6ND_RS].haslayer(
1299 ICMPv6NDOptSrcLLAddr)))
1300 self.assert_equal(
1301 packet[ICMPv6NDOptSrcLLAddr].lladdr,
1302 self.pg1.local_mac)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001303
1304 def verify_prefix_info(self, reported_prefix, prefix_option):
Neale Ranns37029302018-08-10 05:30:06 -07001305 prefix = IPv6Network(
Paul Vinciguerra1e18eb22018-11-25 16:09:26 -08001306 text_type(prefix_option.getfieldval("prefix") +
1307 "/" +
1308 text_type(prefix_option.getfieldval("prefixlen"))),
Neale Ranns37029302018-08-10 05:30:06 -07001309 strict=False)
1310 self.assert_equal(reported_prefix.prefix.network_address,
1311 prefix.network_address)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001312 L = prefix_option.getfieldval("L")
1313 A = prefix_option.getfieldval("A")
1314 option_flags = (L << 7) | (A << 6)
1315 self.assert_equal(reported_prefix.flags, option_flags)
1316 self.assert_equal(reported_prefix.valid_time,
1317 prefix_option.getfieldval("validlifetime"))
1318 self.assert_equal(reported_prefix.preferred_time,
1319 prefix_option.getfieldval("preferredlifetime"))
1320
1321 def test_rd_receive_router_advertisement(self):
1322 """ Verify events triggered by received RA packets """
1323
Neale Rannscbe25aa2019-09-30 10:53:31 +00001324 self.vapi.want_ip6_ra_events(enable=1)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001325
1326 prefix_info_1 = ICMPv6NDOptPrefixInfo(
1327 prefix="1::2",
1328 prefixlen=50,
1329 validlifetime=200,
1330 preferredlifetime=500,
1331 L=1,
1332 A=1,
1333 )
1334
1335 prefix_info_2 = ICMPv6NDOptPrefixInfo(
1336 prefix="7::4",
1337 prefixlen=20,
1338 validlifetime=70,
1339 preferredlifetime=1000,
1340 L=1,
1341 A=0,
1342 )
1343
1344 p = (Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
1345 IPv6(dst=self.pg1.local_ip6_ll,
1346 src=mk_ll_addr(self.pg1.remote_mac)) /
1347 ICMPv6ND_RA() /
1348 prefix_info_1 /
1349 prefix_info_2)
1350 self.pg1.add_stream([p])
1351 self.pg_start()
1352
1353 ev = self.vapi.wait_for_event(10, "ip6_ra_event")
1354
1355 self.assert_equal(ev.current_hop_limit, 0)
1356 self.assert_equal(ev.flags, 8)
1357 self.assert_equal(ev.router_lifetime_in_sec, 1800)
1358 self.assert_equal(ev.neighbor_reachable_time_in_msec, 0)
1359 self.assert_equal(
1360 ev.time_in_msec_between_retransmitted_neighbor_solicitations, 0)
1361
1362 self.assert_equal(ev.n_prefixes, 2)
1363
1364 self.verify_prefix_info(ev.prefixes[0], prefix_info_1)
1365 self.verify_prefix_info(ev.prefixes[1], prefix_info_2)
1366
1367
Juraj Slobodac0374232018-02-01 15:18:49 +01001368class TestIPv6RDControlPlane(TestIPv6ND):
1369 """ IPv6 Router Discovery Control Plane Test Case """
1370
1371 @classmethod
1372 def setUpClass(cls):
1373 super(TestIPv6RDControlPlane, cls).setUpClass()
1374
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001375 @classmethod
1376 def tearDownClass(cls):
1377 super(TestIPv6RDControlPlane, cls).tearDownClass()
1378
Juraj Slobodac0374232018-02-01 15:18:49 +01001379 def setUp(self):
1380 super(TestIPv6RDControlPlane, self).setUp()
1381
1382 # create 1 pg interface
1383 self.create_pg_interfaces(range(1))
1384
1385 self.interfaces = list(self.pg_interfaces)
1386
1387 # setup all interfaces
1388 for i in self.interfaces:
1389 i.admin_up()
1390 i.config_ip6()
1391
1392 def tearDown(self):
1393 super(TestIPv6RDControlPlane, self).tearDown()
1394
1395 @staticmethod
1396 def create_ra_packet(pg, routerlifetime=None):
1397 src_ip = pg.remote_ip6_ll
1398 dst_ip = pg.local_ip6
1399 if routerlifetime is not None:
1400 ra = ICMPv6ND_RA(routerlifetime=routerlifetime)
1401 else:
1402 ra = ICMPv6ND_RA()
1403 p = (Ether(dst=pg.local_mac, src=pg.remote_mac) /
1404 IPv6(dst=dst_ip, src=src_ip) / ra)
1405 return p
1406
1407 @staticmethod
1408 def get_default_routes(fib):
1409 list = []
1410 for entry in fib:
Neale Ranns097fa662018-05-01 05:17:55 -07001411 if entry.route.prefix.prefixlen == 0:
1412 for path in entry.route.paths:
Juraj Slobodac0374232018-02-01 15:18:49 +01001413 if path.sw_if_index != 0xFFFFFFFF:
Neale Ranns097fa662018-05-01 05:17:55 -07001414 defaut_route = {}
1415 defaut_route['sw_if_index'] = path.sw_if_index
1416 defaut_route['next_hop'] = path.nh.address.ip6
1417 list.append(defaut_route)
Juraj Slobodac0374232018-02-01 15:18:49 +01001418 return list
1419
1420 @staticmethod
1421 def get_interface_addresses(fib, pg):
1422 list = []
1423 for entry in fib:
Neale Ranns097fa662018-05-01 05:17:55 -07001424 if entry.route.prefix.prefixlen == 128:
1425 path = entry.route.paths[0]
Juraj Slobodac0374232018-02-01 15:18:49 +01001426 if path.sw_if_index == pg.sw_if_index:
Neale Ranns097fa662018-05-01 05:17:55 -07001427 list.append(str(entry.route.prefix.network_address))
Juraj Slobodac0374232018-02-01 15:18:49 +01001428 return list
1429
Neale Rannscbe25aa2019-09-30 10:53:31 +00001430 def wait_for_no_default_route(self, n_tries=50, s_time=1):
1431 while (n_tries):
1432 fib = self.vapi.ip_route_dump(0, True)
1433 default_routes = self.get_default_routes(fib)
Ole Troan6e6ad642020-02-04 13:28:13 +01001434 if 0 == len(default_routes):
Neale Rannscbe25aa2019-09-30 10:53:31 +00001435 return True
1436 n_tries = n_tries - 1
1437 self.sleep(s_time)
1438
1439 return False
1440
Juraj Slobodac0374232018-02-01 15:18:49 +01001441 def test_all(self):
1442 """ Test handling of SLAAC addresses and default routes """
1443
Neale Ranns097fa662018-05-01 05:17:55 -07001444 fib = self.vapi.ip_route_dump(0, True)
Juraj Slobodac0374232018-02-01 15:18:49 +01001445 default_routes = self.get_default_routes(fib)
1446 initial_addresses = set(self.get_interface_addresses(fib, self.pg0))
1447 self.assertEqual(default_routes, [])
Neale Ranns097fa662018-05-01 05:17:55 -07001448 router_address = IPv6Address(text_type(self.pg0.remote_ip6_ll))
Juraj Slobodac0374232018-02-01 15:18:49 +01001449
1450 self.vapi.ip6_nd_address_autoconfig(self.pg0.sw_if_index, 1, 1)
1451
1452 self.sleep(0.1)
1453
1454 # send RA
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001455 packet = (self.create_ra_packet(
1456 self.pg0) / ICMPv6NDOptPrefixInfo(
Juraj Slobodac0374232018-02-01 15:18:49 +01001457 prefix="1::",
1458 prefixlen=64,
1459 validlifetime=2,
1460 preferredlifetime=2,
1461 L=1,
1462 A=1,
1463 ) / ICMPv6NDOptPrefixInfo(
1464 prefix="7::",
1465 prefixlen=20,
1466 validlifetime=1500,
1467 preferredlifetime=1000,
1468 L=1,
1469 A=0,
1470 ))
1471 self.pg0.add_stream([packet])
1472 self.pg_start()
1473
Andrew Yourtchenko63cb8822019-10-13 18:56:03 +00001474 self.sleep_on_vpp_time(0.1)
Juraj Slobodac0374232018-02-01 15:18:49 +01001475
Neale Ranns097fa662018-05-01 05:17:55 -07001476 fib = self.vapi.ip_route_dump(0, True)
Juraj Slobodac0374232018-02-01 15:18:49 +01001477
1478 # check FIB for new address
1479 addresses = set(self.get_interface_addresses(fib, self.pg0))
1480 new_addresses = addresses.difference(initial_addresses)
1481 self.assertEqual(len(new_addresses), 1)
Neale Ranns097fa662018-05-01 05:17:55 -07001482 prefix = IPv6Network(text_type("%s/%d" % (list(new_addresses)[0], 20)),
1483 strict=False)
1484 self.assertEqual(prefix, IPv6Network(text_type('1::/20')))
Juraj Slobodac0374232018-02-01 15:18:49 +01001485
1486 # check FIB for new default route
1487 default_routes = self.get_default_routes(fib)
1488 self.assertEqual(len(default_routes), 1)
1489 dr = default_routes[0]
1490 self.assertEqual(dr['sw_if_index'], self.pg0.sw_if_index)
1491 self.assertEqual(dr['next_hop'], router_address)
1492
1493 # send RA to delete default route
1494 packet = self.create_ra_packet(self.pg0, routerlifetime=0)
1495 self.pg0.add_stream([packet])
1496 self.pg_start()
1497
Andrew Yourtchenko63cb8822019-10-13 18:56:03 +00001498 self.sleep_on_vpp_time(0.1)
Juraj Slobodac0374232018-02-01 15:18:49 +01001499
1500 # check that default route is deleted
Neale Ranns097fa662018-05-01 05:17:55 -07001501 fib = self.vapi.ip_route_dump(0, True)
Juraj Slobodac0374232018-02-01 15:18:49 +01001502 default_routes = self.get_default_routes(fib)
1503 self.assertEqual(len(default_routes), 0)
1504
Andrew Yourtchenko63cb8822019-10-13 18:56:03 +00001505 self.sleep_on_vpp_time(0.1)
Juraj Slobodac0374232018-02-01 15:18:49 +01001506
1507 # send RA
1508 packet = self.create_ra_packet(self.pg0)
1509 self.pg0.add_stream([packet])
1510 self.pg_start()
1511
Andrew Yourtchenko63cb8822019-10-13 18:56:03 +00001512 self.sleep_on_vpp_time(0.1)
Juraj Slobodac0374232018-02-01 15:18:49 +01001513
1514 # check FIB for new default route
Neale Ranns097fa662018-05-01 05:17:55 -07001515 fib = self.vapi.ip_route_dump(0, True)
Juraj Slobodac0374232018-02-01 15:18:49 +01001516 default_routes = self.get_default_routes(fib)
1517 self.assertEqual(len(default_routes), 1)
1518 dr = default_routes[0]
1519 self.assertEqual(dr['sw_if_index'], self.pg0.sw_if_index)
1520 self.assertEqual(dr['next_hop'], router_address)
1521
1522 # send RA, updating router lifetime to 1s
1523 packet = self.create_ra_packet(self.pg0, 1)
1524 self.pg0.add_stream([packet])
1525 self.pg_start()
1526
Andrew Yourtchenko63cb8822019-10-13 18:56:03 +00001527 self.sleep_on_vpp_time(0.1)
Juraj Slobodac0374232018-02-01 15:18:49 +01001528
1529 # check that default route still exists
Neale Ranns097fa662018-05-01 05:17:55 -07001530 fib = self.vapi.ip_route_dump(0, True)
Juraj Slobodac0374232018-02-01 15:18:49 +01001531 default_routes = self.get_default_routes(fib)
1532 self.assertEqual(len(default_routes), 1)
1533 dr = default_routes[0]
1534 self.assertEqual(dr['sw_if_index'], self.pg0.sw_if_index)
1535 self.assertEqual(dr['next_hop'], router_address)
1536
Andrew Yourtchenko63cb8822019-10-13 18:56:03 +00001537 self.sleep_on_vpp_time(1)
Juraj Slobodac0374232018-02-01 15:18:49 +01001538
1539 # check that default route is deleted
Neale Rannscbe25aa2019-09-30 10:53:31 +00001540 self.assertTrue(self.wait_for_no_default_route())
Juraj Slobodac0374232018-02-01 15:18:49 +01001541
1542 # check FIB still contains the SLAAC address
1543 addresses = set(self.get_interface_addresses(fib, self.pg0))
1544 new_addresses = addresses.difference(initial_addresses)
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001545
Juraj Slobodac0374232018-02-01 15:18:49 +01001546 self.assertEqual(len(new_addresses), 1)
Neale Ranns097fa662018-05-01 05:17:55 -07001547 prefix = IPv6Network(text_type("%s/%d" % (list(new_addresses)[0], 20)),
1548 strict=False)
1549 self.assertEqual(prefix, IPv6Network(text_type('1::/20')))
Juraj Slobodac0374232018-02-01 15:18:49 +01001550
Andrew Yourtchenko63cb8822019-10-13 18:56:03 +00001551 self.sleep_on_vpp_time(1)
Juraj Slobodac0374232018-02-01 15:18:49 +01001552
1553 # check that SLAAC address is deleted
Neale Ranns097fa662018-05-01 05:17:55 -07001554 fib = self.vapi.ip_route_dump(0, True)
Juraj Slobodac0374232018-02-01 15:18:49 +01001555 addresses = set(self.get_interface_addresses(fib, self.pg0))
1556 new_addresses = addresses.difference(initial_addresses)
1557 self.assertEqual(len(new_addresses), 0)
1558
1559
Neale Ranns3f844d02017-02-18 00:03:54 -08001560class IPv6NDProxyTest(TestIPv6ND):
1561 """ IPv6 ND ProxyTest Case """
1562
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001563 @classmethod
1564 def setUpClass(cls):
1565 super(IPv6NDProxyTest, cls).setUpClass()
1566
1567 @classmethod
1568 def tearDownClass(cls):
1569 super(IPv6NDProxyTest, cls).tearDownClass()
1570
Neale Ranns3f844d02017-02-18 00:03:54 -08001571 def setUp(self):
1572 super(IPv6NDProxyTest, self).setUp()
1573
1574 # create 3 pg interfaces
1575 self.create_pg_interfaces(range(3))
1576
1577 # pg0 is the master interface, with the configured subnet
1578 self.pg0.admin_up()
1579 self.pg0.config_ip6()
1580 self.pg0.resolve_ndp()
1581
1582 self.pg1.ip6_enable()
1583 self.pg2.ip6_enable()
1584
1585 def tearDown(self):
1586 super(IPv6NDProxyTest, self).tearDown()
1587
1588 def test_nd_proxy(self):
1589 """ IPv6 Proxy ND """
1590
1591 #
1592 # Generate some hosts in the subnet that we are proxying
1593 #
1594 self.pg0.generate_remote_hosts(8)
1595
1596 nsma = in6_getnsma(inet_pton(AF_INET6, self.pg0.local_ip6))
1597 d = inet_ntop(AF_INET6, nsma)
1598
1599 #
1600 # Send an NS for one of those remote hosts on one of the proxy links
1601 # expect no response since it's from an address that is not
1602 # on the link that has the prefix configured
1603 #
1604 ns_pg1 = (Ether(dst=in6_getnsmac(nsma), src=self.pg1.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001605 IPv6(dst=d,
1606 src=self.pg0._remote_hosts[2].ip6) /
Neale Ranns3f844d02017-02-18 00:03:54 -08001607 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001608 ICMPv6NDOptSrcLLAddr(
1609 lladdr=self.pg0._remote_hosts[2].mac))
Neale Ranns3f844d02017-02-18 00:03:54 -08001610
1611 self.send_and_assert_no_replies(self.pg1, ns_pg1, "Off link NS")
1612
1613 #
1614 # Add proxy support for the host
1615 #
Ole Troane1ade682019-03-04 23:55:43 +01001616 self.vapi.ip6nd_proxy_add_del(
Neale Rannscbe25aa2019-09-30 10:53:31 +00001617 is_add=1, ip=inet_pton(AF_INET6, self.pg0._remote_hosts[2].ip6),
Ole Troan9a475372019-03-05 16:58:24 +01001618 sw_if_index=self.pg1.sw_if_index)
Neale Ranns3f844d02017-02-18 00:03:54 -08001619
1620 #
1621 # try that NS again. this time we expect an NA back
1622 #
Neale Ranns2a3ea492017-04-19 05:24:40 -07001623 self.send_and_expect_na(self.pg1, ns_pg1,
1624 "NS to proxy entry",
1625 dst_ip=self.pg0._remote_hosts[2].ip6,
1626 tgt_ip=self.pg0.local_ip6)
Neale Ranns3f844d02017-02-18 00:03:54 -08001627
1628 #
1629 # ... and that we have an entry in the ND cache
1630 #
1631 self.assertTrue(find_nbr(self,
1632 self.pg1.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001633 self.pg0._remote_hosts[2].ip6))
Neale Ranns3f844d02017-02-18 00:03:54 -08001634
1635 #
1636 # ... and we can route traffic to it
1637 #
1638 t = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
1639 IPv6(dst=self.pg0._remote_hosts[2].ip6,
1640 src=self.pg0.remote_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001641 inet6.UDP(sport=10000, dport=20000) /
Ole Troan770a0de2019-11-07 13:52:21 +01001642 Raw(b'\xa5' * 100))
Neale Ranns3f844d02017-02-18 00:03:54 -08001643
1644 self.pg0.add_stream(t)
1645 self.pg_enable_capture(self.pg_interfaces)
1646 self.pg_start()
1647 rx = self.pg1.get_capture(1)
1648 rx = rx[0]
1649
1650 self.assertEqual(rx[Ether].dst, self.pg0._remote_hosts[2].mac)
1651 self.assertEqual(rx[Ether].src, self.pg1.local_mac)
1652
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001653 self.assertEqual(rx[IPv6].src,
1654 t[IPv6].src)
1655 self.assertEqual(rx[IPv6].dst,
1656 t[IPv6].dst)
Neale Ranns3f844d02017-02-18 00:03:54 -08001657
1658 #
1659 # Test we proxy for the host on the main interface
1660 #
1661 ns_pg0 = (Ether(dst=in6_getnsmac(nsma), src=self.pg0.remote_mac) /
1662 IPv6(dst=d, src=self.pg0.remote_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001663 ICMPv6ND_NS(
1664 tgt=self.pg0._remote_hosts[2].ip6) /
1665 ICMPv6NDOptSrcLLAddr(
1666 lladdr=self.pg0.remote_mac))
Neale Ranns3f844d02017-02-18 00:03:54 -08001667
Neale Ranns2a3ea492017-04-19 05:24:40 -07001668 self.send_and_expect_na(self.pg0, ns_pg0,
1669 "NS to proxy entry on main",
1670 tgt_ip=self.pg0._remote_hosts[2].ip6,
1671 dst_ip=self.pg0.remote_ip6)
Neale Ranns3f844d02017-02-18 00:03:54 -08001672
1673 #
1674 # Setup and resolve proxy for another host on another interface
1675 #
1676 ns_pg2 = (Ether(dst=in6_getnsmac(nsma), src=self.pg2.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001677 IPv6(dst=d,
1678 src=self.pg0._remote_hosts[3].ip6) /
Neale Ranns3f844d02017-02-18 00:03:54 -08001679 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001680 ICMPv6NDOptSrcLLAddr(
1681 lladdr=self.pg0._remote_hosts[2].mac))
Neale Ranns3f844d02017-02-18 00:03:54 -08001682
Ole Troane1ade682019-03-04 23:55:43 +01001683 self.vapi.ip6nd_proxy_add_del(
Neale Rannscbe25aa2019-09-30 10:53:31 +00001684 is_add=1, ip=inet_pton(AF_INET6, self.pg0._remote_hosts[3].ip6),
Ole Troan9a475372019-03-05 16:58:24 +01001685 sw_if_index=self.pg2.sw_if_index)
Neale Ranns3f844d02017-02-18 00:03:54 -08001686
Neale Ranns2a3ea492017-04-19 05:24:40 -07001687 self.send_and_expect_na(self.pg2, ns_pg2,
1688 "NS to proxy entry other interface",
1689 dst_ip=self.pg0._remote_hosts[3].ip6,
1690 tgt_ip=self.pg0.local_ip6)
Neale Ranns3f844d02017-02-18 00:03:54 -08001691
1692 self.assertTrue(find_nbr(self,
1693 self.pg2.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001694 self.pg0._remote_hosts[3].ip6))
Neale Ranns3f844d02017-02-18 00:03:54 -08001695
1696 #
1697 # hosts can communicate. pg2->pg1
1698 #
1699 t2 = (Ether(dst=self.pg2.local_mac,
1700 src=self.pg0.remote_hosts[3].mac) /
1701 IPv6(dst=self.pg0._remote_hosts[2].ip6,
1702 src=self.pg0._remote_hosts[3].ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001703 inet6.UDP(sport=10000, dport=20000) /
Ole Troan770a0de2019-11-07 13:52:21 +01001704 Raw(b'\xa5' * 100))
Neale Ranns3f844d02017-02-18 00:03:54 -08001705
1706 self.pg2.add_stream(t2)
1707 self.pg_enable_capture(self.pg_interfaces)
1708 self.pg_start()
1709 rx = self.pg1.get_capture(1)
1710 rx = rx[0]
1711
1712 self.assertEqual(rx[Ether].dst, self.pg0._remote_hosts[2].mac)
1713 self.assertEqual(rx[Ether].src, self.pg1.local_mac)
1714
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001715 self.assertEqual(rx[IPv6].src,
1716 t2[IPv6].src)
1717 self.assertEqual(rx[IPv6].dst,
1718 t2[IPv6].dst)
Neale Ranns3f844d02017-02-18 00:03:54 -08001719
1720 #
1721 # remove the proxy configs
1722 #
Ole Troane1ade682019-03-04 23:55:43 +01001723 self.vapi.ip6nd_proxy_add_del(
Ole Troan9a475372019-03-05 16:58:24 +01001724 ip=inet_pton(AF_INET6, self.pg0._remote_hosts[2].ip6),
Neale Rannscbe25aa2019-09-30 10:53:31 +00001725 sw_if_index=self.pg1.sw_if_index, is_add=0)
Ole Troane1ade682019-03-04 23:55:43 +01001726 self.vapi.ip6nd_proxy_add_del(
Ole Troan9a475372019-03-05 16:58:24 +01001727 ip=inet_pton(AF_INET6, self.pg0._remote_hosts[3].ip6),
Neale Rannscbe25aa2019-09-30 10:53:31 +00001728 sw_if_index=self.pg2.sw_if_index, is_add=0)
Neale Ranns3f844d02017-02-18 00:03:54 -08001729
1730 self.assertFalse(find_nbr(self,
1731 self.pg2.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001732 self.pg0._remote_hosts[3].ip6))
Neale Ranns3f844d02017-02-18 00:03:54 -08001733 self.assertFalse(find_nbr(self,
1734 self.pg1.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001735 self.pg0._remote_hosts[2].ip6))
Neale Ranns3f844d02017-02-18 00:03:54 -08001736
1737 #
1738 # no longer proxy-ing...
1739 #
1740 self.send_and_assert_no_replies(self.pg0, ns_pg0, "Proxy unconfigured")
1741 self.send_and_assert_no_replies(self.pg1, ns_pg1, "Proxy unconfigured")
1742 self.send_and_assert_no_replies(self.pg2, ns_pg2, "Proxy unconfigured")
1743
1744 #
1745 # no longer forwarding. traffic generates NS out of the glean/main
1746 # interface
1747 #
1748 self.pg2.add_stream(t2)
1749 self.pg_enable_capture(self.pg_interfaces)
1750 self.pg_start()
1751
1752 rx = self.pg0.get_capture(1)
1753
1754 self.assertTrue(rx[0].haslayer(ICMPv6ND_NS))
1755
1756
Neale Ranns37be7362017-02-21 17:30:26 -08001757class TestIPNull(VppTestCase):
1758 """ IPv6 routes via NULL """
1759
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001760 @classmethod
1761 def setUpClass(cls):
1762 super(TestIPNull, cls).setUpClass()
1763
1764 @classmethod
1765 def tearDownClass(cls):
1766 super(TestIPNull, cls).tearDownClass()
1767
Neale Ranns37be7362017-02-21 17:30:26 -08001768 def setUp(self):
1769 super(TestIPNull, self).setUp()
1770
1771 # create 2 pg interfaces
1772 self.create_pg_interfaces(range(1))
1773
1774 for i in self.pg_interfaces:
1775 i.admin_up()
1776 i.config_ip6()
1777 i.resolve_ndp()
1778
1779 def tearDown(self):
1780 super(TestIPNull, self).tearDown()
1781 for i in self.pg_interfaces:
1782 i.unconfig_ip6()
1783 i.admin_down()
1784
1785 def test_ip_null(self):
1786 """ IP NULL route """
1787
1788 p = (Ether(src=self.pg0.remote_mac,
1789 dst=self.pg0.local_mac) /
1790 IPv6(src=self.pg0.remote_ip6, dst="2001::1") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001791 inet6.UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01001792 Raw(b'\xa5' * 100))
Neale Ranns37be7362017-02-21 17:30:26 -08001793
1794 #
1795 # A route via IP NULL that will reply with ICMP unreachables
1796 #
Neale Ranns097fa662018-05-01 05:17:55 -07001797 ip_unreach = VppIpRoute(
1798 self, "2001::", 64,
1799 [VppRoutePath("::", 0xffffffff,
1800 type=FibPathType.FIB_PATH_TYPE_ICMP_UNREACH)])
Neale Ranns37be7362017-02-21 17:30:26 -08001801 ip_unreach.add_vpp_config()
1802
1803 self.pg0.add_stream(p)
1804 self.pg_enable_capture(self.pg_interfaces)
1805 self.pg_start()
1806
1807 rx = self.pg0.get_capture(1)
1808 rx = rx[0]
1809 icmp = rx[ICMPv6DestUnreach]
1810
1811 # 0 = "No route to destination"
1812 self.assertEqual(icmp.code, 0)
1813
1814 # ICMP is rate limited. pause a bit
1815 self.sleep(1)
1816
1817 #
1818 # A route via IP NULL that will reply with ICMP prohibited
1819 #
Neale Ranns097fa662018-05-01 05:17:55 -07001820 ip_prohibit = VppIpRoute(
1821 self, "2001::1", 128,
1822 [VppRoutePath("::", 0xffffffff,
1823 type=FibPathType.FIB_PATH_TYPE_ICMP_PROHIBIT)])
Neale Ranns37be7362017-02-21 17:30:26 -08001824 ip_prohibit.add_vpp_config()
1825
1826 self.pg0.add_stream(p)
1827 self.pg_enable_capture(self.pg_interfaces)
1828 self.pg_start()
1829
1830 rx = self.pg0.get_capture(1)
1831 rx = rx[0]
1832 icmp = rx[ICMPv6DestUnreach]
1833
1834 # 1 = "Communication with destination administratively prohibited"
1835 self.assertEqual(icmp.code, 1)
1836
1837
Neale Ranns180279b2017-03-16 15:49:09 -04001838class TestIPDisabled(VppTestCase):
1839 """ IPv6 disabled """
1840
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001841 @classmethod
1842 def setUpClass(cls):
1843 super(TestIPDisabled, cls).setUpClass()
1844
1845 @classmethod
1846 def tearDownClass(cls):
1847 super(TestIPDisabled, cls).tearDownClass()
1848
Neale Ranns180279b2017-03-16 15:49:09 -04001849 def setUp(self):
1850 super(TestIPDisabled, self).setUp()
1851
1852 # create 2 pg interfaces
1853 self.create_pg_interfaces(range(2))
1854
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07001855 # PG0 is IP enabled
Neale Ranns180279b2017-03-16 15:49:09 -04001856 self.pg0.admin_up()
1857 self.pg0.config_ip6()
1858 self.pg0.resolve_ndp()
1859
1860 # PG 1 is not IP enabled
1861 self.pg1.admin_up()
1862
1863 def tearDown(self):
1864 super(TestIPDisabled, self).tearDown()
1865 for i in self.pg_interfaces:
1866 i.unconfig_ip4()
1867 i.admin_down()
1868
Neale Ranns180279b2017-03-16 15:49:09 -04001869 def test_ip_disabled(self):
1870 """ IP Disabled """
1871
Neale Ranns990f6942020-10-20 07:20:17 +00001872 MRouteItfFlags = VppEnum.vl_api_mfib_itf_flags_t
1873 MRouteEntryFlags = VppEnum.vl_api_mfib_entry_flags_t
Neale Ranns180279b2017-03-16 15:49:09 -04001874 #
1875 # An (S,G).
1876 # one accepting interface, pg0, 2 forwarding interfaces
1877 #
1878 route_ff_01 = VppIpMRoute(
1879 self,
1880 "::",
1881 "ffef::1", 128,
Neale Ranns990f6942020-10-20 07:20:17 +00001882 MRouteEntryFlags.MFIB_API_ENTRY_FLAG_NONE,
Neale Ranns180279b2017-03-16 15:49:09 -04001883 [VppMRoutePath(self.pg1.sw_if_index,
Neale Ranns990f6942020-10-20 07:20:17 +00001884 MRouteItfFlags.MFIB_API_ITF_FLAG_ACCEPT),
Neale Ranns180279b2017-03-16 15:49:09 -04001885 VppMRoutePath(self.pg0.sw_if_index,
Neale Ranns990f6942020-10-20 07:20:17 +00001886 MRouteItfFlags.MFIB_API_ITF_FLAG_FORWARD)])
Neale Ranns180279b2017-03-16 15:49:09 -04001887 route_ff_01.add_vpp_config()
1888
1889 pu = (Ether(src=self.pg1.remote_mac,
1890 dst=self.pg1.local_mac) /
1891 IPv6(src="2001::1", dst=self.pg0.remote_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001892 inet6.UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01001893 Raw(b'\xa5' * 100))
Neale Ranns180279b2017-03-16 15:49:09 -04001894 pm = (Ether(src=self.pg1.remote_mac,
1895 dst=self.pg1.local_mac) /
1896 IPv6(src="2001::1", dst="ffef::1") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001897 inet6.UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01001898 Raw(b'\xa5' * 100))
Neale Ranns180279b2017-03-16 15:49:09 -04001899
1900 #
1901 # PG1 does not forward IP traffic
1902 #
1903 self.send_and_assert_no_replies(self.pg1, pu, "IPv6 disabled")
1904 self.send_and_assert_no_replies(self.pg1, pm, "IPv6 disabled")
1905
1906 #
1907 # IP enable PG1
1908 #
1909 self.pg1.config_ip6()
1910
1911 #
1912 # Now we get packets through
1913 #
1914 self.pg1.add_stream(pu)
1915 self.pg_enable_capture(self.pg_interfaces)
1916 self.pg_start()
1917 rx = self.pg0.get_capture(1)
1918
1919 self.pg1.add_stream(pm)
1920 self.pg_enable_capture(self.pg_interfaces)
1921 self.pg_start()
1922 rx = self.pg0.get_capture(1)
1923
1924 #
1925 # Disable PG1
1926 #
1927 self.pg1.unconfig_ip6()
1928
1929 #
1930 # PG1 does not forward IP traffic
1931 #
1932 self.send_and_assert_no_replies(self.pg1, pu, "IPv6 disabled")
1933 self.send_and_assert_no_replies(self.pg1, pm, "IPv6 disabled")
1934
1935
Neale Ranns227038a2017-04-21 01:07:59 -07001936class TestIP6LoadBalance(VppTestCase):
1937 """ IPv6 Load-Balancing """
1938
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07001939 @classmethod
1940 def setUpClass(cls):
1941 super(TestIP6LoadBalance, cls).setUpClass()
1942
1943 @classmethod
1944 def tearDownClass(cls):
1945 super(TestIP6LoadBalance, cls).tearDownClass()
1946
Neale Ranns227038a2017-04-21 01:07:59 -07001947 def setUp(self):
1948 super(TestIP6LoadBalance, self).setUp()
1949
1950 self.create_pg_interfaces(range(5))
1951
Neale Ranns15002542017-09-10 04:39:11 -07001952 mpls_tbl = VppMplsTable(self, 0)
1953 mpls_tbl.add_vpp_config()
1954
Neale Ranns227038a2017-04-21 01:07:59 -07001955 for i in self.pg_interfaces:
1956 i.admin_up()
1957 i.config_ip6()
1958 i.resolve_ndp()
Neale Ranns71275e32017-05-25 12:38:58 -07001959 i.enable_mpls()
Neale Ranns227038a2017-04-21 01:07:59 -07001960
1961 def tearDown(self):
Neale Ranns227038a2017-04-21 01:07:59 -07001962 for i in self.pg_interfaces:
1963 i.unconfig_ip6()
1964 i.admin_down()
Neale Ranns71275e32017-05-25 12:38:58 -07001965 i.disable_mpls()
Neale Ranns15002542017-09-10 04:39:11 -07001966 super(TestIP6LoadBalance, self).tearDown()
Neale Ranns227038a2017-04-21 01:07:59 -07001967
Neale Ranns227038a2017-04-21 01:07:59 -07001968 def test_ip6_load_balance(self):
1969 """ IPv6 Load-Balancing """
1970
1971 #
1972 # An array of packets that differ only in the destination port
Neale Ranns71275e32017-05-25 12:38:58 -07001973 # - IP only
1974 # - MPLS EOS
1975 # - MPLS non-EOS
1976 # - MPLS non-EOS with an entropy label
Neale Ranns227038a2017-04-21 01:07:59 -07001977 #
Neale Ranns71275e32017-05-25 12:38:58 -07001978 port_ip_pkts = []
1979 port_mpls_pkts = []
1980 port_mpls_neos_pkts = []
1981 port_ent_pkts = []
Neale Ranns227038a2017-04-21 01:07:59 -07001982
1983 #
1984 # An array of packets that differ only in the source address
1985 #
Neale Ranns71275e32017-05-25 12:38:58 -07001986 src_ip_pkts = []
1987 src_mpls_pkts = []
Neale Ranns227038a2017-04-21 01:07:59 -07001988
Paul Vinciguerra4271c972019-05-14 13:25:49 -04001989 for ii in range(NUM_PKTS):
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001990 port_ip_hdr = (
1991 IPv6(dst="3000::1", src="3000:1::1") /
1992 inet6.UDP(sport=1234, dport=1234 + ii) /
Ole Troan770a0de2019-11-07 13:52:21 +01001993 Raw(b'\xa5' * 100))
Neale Ranns71275e32017-05-25 12:38:58 -07001994 port_ip_pkts.append((Ether(src=self.pg0.remote_mac,
1995 dst=self.pg0.local_mac) /
1996 port_ip_hdr))
1997 port_mpls_pkts.append((Ether(src=self.pg0.remote_mac,
1998 dst=self.pg0.local_mac) /
1999 MPLS(label=66, ttl=2) /
2000 port_ip_hdr))
2001 port_mpls_neos_pkts.append((Ether(src=self.pg0.remote_mac,
2002 dst=self.pg0.local_mac) /
2003 MPLS(label=67, ttl=2) /
2004 MPLS(label=77, ttl=2) /
2005 port_ip_hdr))
2006 port_ent_pkts.append((Ether(src=self.pg0.remote_mac,
2007 dst=self.pg0.local_mac) /
2008 MPLS(label=67, ttl=2) /
2009 MPLS(label=14, ttl=2) /
2010 MPLS(label=999, ttl=2) /
2011 port_ip_hdr))
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002012 src_ip_hdr = (
2013 IPv6(dst="3000::1", src="3000:1::%d" % ii) /
2014 inet6.UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01002015 Raw(b'\xa5' * 100))
Neale Ranns71275e32017-05-25 12:38:58 -07002016 src_ip_pkts.append((Ether(src=self.pg0.remote_mac,
2017 dst=self.pg0.local_mac) /
2018 src_ip_hdr))
2019 src_mpls_pkts.append((Ether(src=self.pg0.remote_mac,
2020 dst=self.pg0.local_mac) /
2021 MPLS(label=66, ttl=2) /
2022 src_ip_hdr))
Neale Ranns227038a2017-04-21 01:07:59 -07002023
Neale Ranns71275e32017-05-25 12:38:58 -07002024 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07002025 # A route for the IP packets
Neale Ranns71275e32017-05-25 12:38:58 -07002026 #
Neale Ranns227038a2017-04-21 01:07:59 -07002027 route_3000_1 = VppIpRoute(self, "3000::1", 128,
2028 [VppRoutePath(self.pg1.remote_ip6,
Neale Ranns097fa662018-05-01 05:17:55 -07002029 self.pg1.sw_if_index),
Neale Ranns227038a2017-04-21 01:07:59 -07002030 VppRoutePath(self.pg2.remote_ip6,
Neale Ranns097fa662018-05-01 05:17:55 -07002031 self.pg2.sw_if_index)])
Neale Ranns227038a2017-04-21 01:07:59 -07002032 route_3000_1.add_vpp_config()
2033
2034 #
Neale Ranns71275e32017-05-25 12:38:58 -07002035 # a local-label for the EOS packets
2036 #
2037 binding = VppMplsIpBind(self, 66, "3000::1", 128, is_ip6=1)
2038 binding.add_vpp_config()
2039
2040 #
2041 # An MPLS route for the non-EOS packets
2042 #
2043 route_67 = VppMplsRoute(self, 67, 0,
2044 [VppRoutePath(self.pg1.remote_ip6,
2045 self.pg1.sw_if_index,
Neale Ranns097fa662018-05-01 05:17:55 -07002046 labels=[67]),
Neale Ranns71275e32017-05-25 12:38:58 -07002047 VppRoutePath(self.pg2.remote_ip6,
2048 self.pg2.sw_if_index,
Neale Ranns097fa662018-05-01 05:17:55 -07002049 labels=[67])])
Neale Ranns71275e32017-05-25 12:38:58 -07002050 route_67.add_vpp_config()
2051
2052 #
Neale Ranns227038a2017-04-21 01:07:59 -07002053 # inject the packet on pg0 - expect load-balancing across the 2 paths
2054 # - since the default hash config is to use IP src,dst and port
2055 # src,dst
2056 # We are not going to ensure equal amounts of packets across each link,
2057 # since the hash algorithm is statistical and therefore this can never
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07002058 # be guaranteed. But with 64 different packets we do expect some
Neale Ranns227038a2017-04-21 01:07:59 -07002059 # balancing. So instead just ensure there is traffic on each link.
2060 #
Neale Ranns3d5f08a2021-01-22 16:12:38 +00002061 rx = self.send_and_expect_load_balancing(self.pg0, port_ip_pkts,
2062 [self.pg1, self.pg2])
2063 n_ip_pg0 = len(rx[0])
Neale Ranns71275e32017-05-25 12:38:58 -07002064 self.send_and_expect_load_balancing(self.pg0, src_ip_pkts,
Neale Ranns227038a2017-04-21 01:07:59 -07002065 [self.pg1, self.pg2])
Neale Ranns71275e32017-05-25 12:38:58 -07002066 self.send_and_expect_load_balancing(self.pg0, port_mpls_pkts,
2067 [self.pg1, self.pg2])
2068 self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
2069 [self.pg1, self.pg2])
Neale Ranns3d5f08a2021-01-22 16:12:38 +00002070 rx = self.send_and_expect_load_balancing(self.pg0, port_mpls_neos_pkts,
2071 [self.pg1, self.pg2])
2072 n_mpls_pg0 = len(rx[0])
2073
2074 #
2075 # change the router ID and expect the distribution changes
2076 #
2077 self.vapi.set_ip_flow_hash_router_id(router_id=0x11111111)
2078
2079 rx = self.send_and_expect_load_balancing(self.pg0, port_ip_pkts,
2080 [self.pg1, self.pg2])
2081 self.assertNotEqual(n_ip_pg0, len(rx[0]))
2082
2083 rx = self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
2084 [self.pg1, self.pg2])
2085 self.assertNotEqual(n_mpls_pg0, len(rx[0]))
Neale Ranns71275e32017-05-25 12:38:58 -07002086
2087 #
2088 # The packets with Entropy label in should not load-balance,
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07002089 # since the Entropy value is fixed.
Neale Ranns71275e32017-05-25 12:38:58 -07002090 #
Neale Ranns699bea22022-02-17 09:22:16 +00002091 self.send_and_expect_only(self.pg0, port_ent_pkts, self.pg1)
Neale Ranns227038a2017-04-21 01:07:59 -07002092
2093 #
2094 # change the flow hash config so it's only IP src,dst
2095 # - now only the stream with differing source address will
2096 # load-balance
2097 #
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00002098 self.vapi.set_ip_flow_hash(vrf_id=0, src=1, dst=1, proto=1,
2099 sport=0, dport=0, is_ipv6=1)
Neale Ranns227038a2017-04-21 01:07:59 -07002100
Neale Ranns71275e32017-05-25 12:38:58 -07002101 self.send_and_expect_load_balancing(self.pg0, src_ip_pkts,
Neale Ranns227038a2017-04-21 01:07:59 -07002102 [self.pg1, self.pg2])
Neale Ranns71275e32017-05-25 12:38:58 -07002103 self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
2104 [self.pg1, self.pg2])
Neale Ranns699bea22022-02-17 09:22:16 +00002105 self.send_and_expect_only(self.pg0, port_ip_pkts, self.pg2)
Neale Ranns227038a2017-04-21 01:07:59 -07002106
2107 #
2108 # change the flow hash config back to defaults
2109 #
Ole Troana5b2eec2019-03-11 19:23:25 +01002110 self.vapi.set_ip_flow_hash(vrf_id=0, src=1, dst=1, sport=1, dport=1,
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00002111 proto=1, is_ipv6=1)
Neale Ranns227038a2017-04-21 01:07:59 -07002112
2113 #
2114 # Recursive prefixes
2115 # - testing that 2 stages of load-balancing occurs and there is no
2116 # polarisation (i.e. only 2 of 4 paths are used)
2117 #
2118 port_pkts = []
2119 src_pkts = []
2120
2121 for ii in range(257):
2122 port_pkts.append((Ether(src=self.pg0.remote_mac,
2123 dst=self.pg0.local_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002124 IPv6(dst="4000::1",
2125 src="4000:1::1") /
2126 inet6.UDP(sport=1234,
2127 dport=1234 + ii) /
Ole Troan770a0de2019-11-07 13:52:21 +01002128 Raw(b'\xa5' * 100)))
Neale Ranns227038a2017-04-21 01:07:59 -07002129 src_pkts.append((Ether(src=self.pg0.remote_mac,
2130 dst=self.pg0.local_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002131 IPv6(dst="4000::1",
2132 src="4000:1::%d" % ii) /
2133 inet6.UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01002134 Raw(b'\xa5' * 100)))
Neale Ranns227038a2017-04-21 01:07:59 -07002135
2136 route_3000_2 = VppIpRoute(self, "3000::2", 128,
2137 [VppRoutePath(self.pg3.remote_ip6,
Neale Ranns097fa662018-05-01 05:17:55 -07002138 self.pg3.sw_if_index),
Neale Ranns227038a2017-04-21 01:07:59 -07002139 VppRoutePath(self.pg4.remote_ip6,
Neale Ranns097fa662018-05-01 05:17:55 -07002140 self.pg4.sw_if_index)])
Neale Ranns227038a2017-04-21 01:07:59 -07002141 route_3000_2.add_vpp_config()
2142
2143 route_4000_1 = VppIpRoute(self, "4000::1", 128,
2144 [VppRoutePath("3000::1",
Neale Ranns097fa662018-05-01 05:17:55 -07002145 0xffffffff),
Neale Ranns227038a2017-04-21 01:07:59 -07002146 VppRoutePath("3000::2",
Neale Ranns097fa662018-05-01 05:17:55 -07002147 0xffffffff)])
Neale Ranns227038a2017-04-21 01:07:59 -07002148 route_4000_1.add_vpp_config()
2149
2150 #
2151 # inject the packet on pg0 - expect load-balancing across all 4 paths
2152 #
2153 self.vapi.cli("clear trace")
2154 self.send_and_expect_load_balancing(self.pg0, port_pkts,
2155 [self.pg1, self.pg2,
2156 self.pg3, self.pg4])
2157 self.send_and_expect_load_balancing(self.pg0, src_pkts,
2158 [self.pg1, self.pg2,
2159 self.pg3, self.pg4])
2160
Neale Ranns42e6b092017-07-31 02:56:03 -07002161 #
2162 # Recursive prefixes
2163 # - testing that 2 stages of load-balancing no choices
2164 #
2165 port_pkts = []
2166
2167 for ii in range(257):
2168 port_pkts.append((Ether(src=self.pg0.remote_mac,
2169 dst=self.pg0.local_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002170 IPv6(dst="6000::1",
2171 src="6000:1::1") /
2172 inet6.UDP(sport=1234,
2173 dport=1234 + ii) /
Ole Troan770a0de2019-11-07 13:52:21 +01002174 Raw(b'\xa5' * 100)))
Neale Ranns42e6b092017-07-31 02:56:03 -07002175
2176 route_5000_2 = VppIpRoute(self, "5000::2", 128,
2177 [VppRoutePath(self.pg3.remote_ip6,
Neale Ranns097fa662018-05-01 05:17:55 -07002178 self.pg3.sw_if_index)])
Neale Ranns42e6b092017-07-31 02:56:03 -07002179 route_5000_2.add_vpp_config()
2180
2181 route_6000_1 = VppIpRoute(self, "6000::1", 128,
2182 [VppRoutePath("5000::2",
Neale Ranns097fa662018-05-01 05:17:55 -07002183 0xffffffff)])
Neale Ranns42e6b092017-07-31 02:56:03 -07002184 route_6000_1.add_vpp_config()
2185
2186 #
2187 # inject the packet on pg0 - expect load-balancing across all 4 paths
2188 #
2189 self.vapi.cli("clear trace")
Neale Ranns699bea22022-02-17 09:22:16 +00002190 self.send_and_expect_only(self.pg0, port_pkts, self.pg3)
Neale Ranns42e6b092017-07-31 02:56:03 -07002191
Neale Ranns227038a2017-04-21 01:07:59 -07002192
Brian Russella1f36062021-01-19 16:58:14 +00002193class IP6PuntSetup(object):
2194 """ Setup for IPv6 Punt Police/Redirect """
Neale Rannsd91c1db2017-07-31 02:30:50 -07002195
Brian Russella1f36062021-01-19 16:58:14 +00002196 def punt_setup(self):
Pavel Kotucek609e1212018-11-27 09:59:44 +01002197 self.create_pg_interfaces(range(4))
Neale Rannsd91c1db2017-07-31 02:30:50 -07002198
2199 for i in self.pg_interfaces:
2200 i.admin_up()
2201 i.config_ip6()
2202 i.resolve_ndp()
2203
Brian Russella1f36062021-01-19 16:58:14 +00002204 self.pkt = (Ether(src=self.pg0.remote_mac,
2205 dst=self.pg0.local_mac) /
2206 IPv6(src=self.pg0.remote_ip6,
2207 dst=self.pg0.local_ip6) /
2208 inet6.TCP(sport=1234, dport=1234) /
2209 Raw(b'\xa5' * 100))
2210
2211 def punt_teardown(self):
Neale Rannsd91c1db2017-07-31 02:30:50 -07002212 for i in self.pg_interfaces:
2213 i.unconfig_ip6()
2214 i.admin_down()
2215
Brian Russella1f36062021-01-19 16:58:14 +00002216
2217class TestIP6Punt(IP6PuntSetup, VppTestCase):
2218 """ IPv6 Punt Police/Redirect """
2219
2220 def setUp(self):
2221 super(TestIP6Punt, self).setUp()
2222 super(TestIP6Punt, self).punt_setup()
2223
2224 def tearDown(self):
2225 super(TestIP6Punt, self).punt_teardown()
2226 super(TestIP6Punt, self).tearDown()
2227
Neale Rannsd91c1db2017-07-31 02:30:50 -07002228 def test_ip_punt(self):
2229 """ IP6 punt police and redirect """
2230
Brian Russella1f36062021-01-19 16:58:14 +00002231 pkts = self.pkt * 1025
Neale Rannsd91c1db2017-07-31 02:30:50 -07002232
2233 #
2234 # Configure a punt redirect via pg1.
2235 #
Ole Troan0bcad322018-12-11 13:04:01 +01002236 nh_addr = self.pg1.remote_ip6
Jakub Grajciar2df2f752020-12-01 11:23:44 +01002237 ip_punt_redirect = VppIpPuntRedirect(self, self.pg0.sw_if_index,
2238 self.pg1.sw_if_index, nh_addr)
2239 ip_punt_redirect.add_vpp_config()
Neale Rannsd91c1db2017-07-31 02:30:50 -07002240
2241 self.send_and_expect(self.pg0, pkts, self.pg1)
2242
2243 #
2244 # add a policer
2245 #
Jakub Grajciarcd01fb42020-03-02 13:16:53 +01002246 policer = VppPolicer(self, "ip6-punt", 400, 0, 10, 0, rate_type=1)
2247 policer.add_vpp_config()
Jakub Grajciar2df2f752020-12-01 11:23:44 +01002248 ip_punt_policer = VppIpPuntPolicer(self, policer.policer_index,
2249 is_ip6=True)
2250 ip_punt_policer.add_vpp_config()
Neale Rannsd91c1db2017-07-31 02:30:50 -07002251
2252 self.vapi.cli("clear trace")
2253 self.pg0.add_stream(pkts)
2254 self.pg_enable_capture(self.pg_interfaces)
2255 self.pg_start()
2256
2257 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07002258 # the number of packet received should be greater than 0,
Neale Rannsd91c1db2017-07-31 02:30:50 -07002259 # but not equal to the number sent, since some were policed
2260 #
2261 rx = self.pg1._get_capture(1)
Brian Russelle9887262021-01-27 14:45:22 +00002262 stats = policer.get_stats()
2263
2264 # Single rate policer - expect conform, violate but no exceed
2265 self.assertGreater(stats['conform_packets'], 0)
2266 self.assertEqual(stats['exceed_packets'], 0)
2267 self.assertGreater(stats['violate_packets'], 0)
2268
Paul Vinciguerra3d2df212018-11-24 23:19:53 -08002269 self.assertGreater(len(rx), 0)
2270 self.assertLess(len(rx), len(pkts))
Neale Rannsd91c1db2017-07-31 02:30:50 -07002271
2272 #
Paul Vinciguerraeb414432019-02-20 09:01:14 -08002273 # remove the policer. back to full rx
Neale Rannsd91c1db2017-07-31 02:30:50 -07002274 #
Jakub Grajciar2df2f752020-12-01 11:23:44 +01002275 ip_punt_policer.remove_vpp_config()
Jakub Grajciarcd01fb42020-03-02 13:16:53 +01002276 policer.remove_vpp_config()
Neale Rannsd91c1db2017-07-31 02:30:50 -07002277 self.send_and_expect(self.pg0, pkts, self.pg1)
2278
2279 #
2280 # remove the redirect. expect full drop.
2281 #
Jakub Grajciar2df2f752020-12-01 11:23:44 +01002282 ip_punt_redirect.remove_vpp_config()
Neale Rannsd91c1db2017-07-31 02:30:50 -07002283 self.send_and_assert_no_replies(self.pg0, pkts,
2284 "IP no punt config")
2285
2286 #
2287 # Add a redirect that is not input port selective
2288 #
Jakub Grajciar2df2f752020-12-01 11:23:44 +01002289 ip_punt_redirect = VppIpPuntRedirect(self, 0xffffffff,
2290 self.pg1.sw_if_index, nh_addr)
2291 ip_punt_redirect.add_vpp_config()
Neale Rannsd91c1db2017-07-31 02:30:50 -07002292 self.send_and_expect(self.pg0, pkts, self.pg1)
Jakub Grajciar2df2f752020-12-01 11:23:44 +01002293 ip_punt_redirect.remove_vpp_config()
Pavel Kotucek609e1212018-11-27 09:59:44 +01002294
2295 def test_ip_punt_dump(self):
2296 """ IP6 punt redirect dump"""
2297
2298 #
2299 # Configure a punt redirects
2300 #
Jakub Grajciar2df2f752020-12-01 11:23:44 +01002301 nh_address = self.pg3.remote_ip6
2302 ipr_03 = VppIpPuntRedirect(self, self.pg0.sw_if_index,
2303 self.pg3.sw_if_index, nh_address)
2304 ipr_13 = VppIpPuntRedirect(self, self.pg1.sw_if_index,
2305 self.pg3.sw_if_index, nh_address)
2306 ipr_23 = VppIpPuntRedirect(self, self.pg2.sw_if_index,
2307 self.pg3.sw_if_index, '0::0')
2308 ipr_03.add_vpp_config()
2309 ipr_13.add_vpp_config()
2310 ipr_23.add_vpp_config()
Pavel Kotucek609e1212018-11-27 09:59:44 +01002311
2312 #
2313 # Dump pg0 punt redirects
2314 #
Jakub Grajciar2df2f752020-12-01 11:23:44 +01002315 self.assertTrue(ipr_03.query_vpp_config())
2316 self.assertTrue(ipr_13.query_vpp_config())
2317 self.assertTrue(ipr_23.query_vpp_config())
Pavel Kotucek609e1212018-11-27 09:59:44 +01002318
2319 #
2320 # Dump punt redirects for all interfaces
2321 #
2322 punts = self.vapi.ip_punt_redirect_dump(0xffffffff, is_ipv6=1)
2323 self.assertEqual(len(punts), 3)
2324 for p in punts:
2325 self.assertEqual(p.punt.tx_sw_if_index, self.pg3.sw_if_index)
Ole Troan0bcad322018-12-11 13:04:01 +01002326 self.assertNotEqual(punts[1].punt.nh, self.pg3.remote_ip6)
2327 self.assertEqual(str(punts[2].punt.nh), '::')
Neale Rannsd91c1db2017-07-31 02:30:50 -07002328
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002329
Brian Russell5214f3a2021-01-19 16:58:34 +00002330class TestIP6PuntHandoff(IP6PuntSetup, VppTestCase):
2331 """ IPv6 Punt Police/Redirect """
Klement Sekera8d815022021-03-15 16:58:10 +01002332 vpp_worker_count = 2
Brian Russell5214f3a2021-01-19 16:58:34 +00002333
2334 def setUp(self):
2335 super(TestIP6PuntHandoff, self).setUp()
2336 super(TestIP6PuntHandoff, self).punt_setup()
2337
2338 def tearDown(self):
2339 super(TestIP6PuntHandoff, self).punt_teardown()
2340 super(TestIP6PuntHandoff, self).tearDown()
2341
2342 def test_ip_punt(self):
2343 """ IP6 punt policer thread handoff """
2344 pkts = self.pkt * NUM_PKTS
2345
2346 #
2347 # Configure a punt redirect via pg1.
2348 #
2349 nh_addr = self.pg1.remote_ip6
2350 ip_punt_redirect = VppIpPuntRedirect(self, self.pg0.sw_if_index,
2351 self.pg1.sw_if_index, nh_addr)
2352 ip_punt_redirect.add_vpp_config()
2353
2354 action_tx = PolicerAction(
2355 VppEnum.vl_api_sse2_qos_action_type_t.SSE2_QOS_ACTION_API_TRANSMIT,
2356 0)
2357 #
2358 # This policer drops no packets, we are just
2359 # testing that they get to the right thread.
2360 #
2361 policer = VppPolicer(self, "ip6-punt", 400, 0, 10, 0, 1,
2362 0, 0, False, action_tx, action_tx, action_tx)
2363 policer.add_vpp_config()
2364 ip_punt_policer = VppIpPuntPolicer(self, policer.policer_index,
2365 is_ip6=True)
2366 ip_punt_policer.add_vpp_config()
2367
2368 for worker in [0, 1]:
2369 self.send_and_expect(self.pg0, pkts, self.pg1, worker=worker)
2370 if worker == 0:
2371 self.logger.debug(self.vapi.cli("show trace max 100"))
2372
Brian Russelle9887262021-01-27 14:45:22 +00002373 # Combined stats, all threads
2374 stats = policer.get_stats()
2375
2376 # Single rate policer - expect conform, violate but no exceed
2377 self.assertGreater(stats['conform_packets'], 0)
2378 self.assertEqual(stats['exceed_packets'], 0)
2379 self.assertGreater(stats['violate_packets'], 0)
2380
2381 # Worker 0, should have done all the policing
2382 stats0 = policer.get_stats(worker=0)
2383 self.assertEqual(stats, stats0)
2384
2385 # Worker 1, should have handed everything off
2386 stats1 = policer.get_stats(worker=1)
2387 self.assertEqual(stats1['conform_packets'], 0)
2388 self.assertEqual(stats1['exceed_packets'], 0)
2389 self.assertEqual(stats1['violate_packets'], 0)
2390
Brian Russellbb983142021-02-10 13:56:06 +00002391 # Bind the policer to worker 1 and repeat
2392 policer.bind_vpp_config(1, True)
2393 for worker in [0, 1]:
2394 self.send_and_expect(self.pg0, pkts, self.pg1, worker=worker)
2395 self.logger.debug(self.vapi.cli("show trace max 100"))
2396
2397 # The 2 workers should now have policed the same amount
2398 stats = policer.get_stats()
2399 stats0 = policer.get_stats(worker=0)
2400 stats1 = policer.get_stats(worker=1)
2401
2402 self.assertGreater(stats0['conform_packets'], 0)
2403 self.assertEqual(stats0['exceed_packets'], 0)
2404 self.assertGreater(stats0['violate_packets'], 0)
2405
2406 self.assertGreater(stats1['conform_packets'], 0)
2407 self.assertEqual(stats1['exceed_packets'], 0)
2408 self.assertGreater(stats1['violate_packets'], 0)
2409
2410 self.assertEqual(stats0['conform_packets'] + stats1['conform_packets'],
2411 stats['conform_packets'])
2412
2413 self.assertEqual(stats0['violate_packets'] + stats1['violate_packets'],
2414 stats['violate_packets'])
2415
2416 # Unbind the policer and repeat
2417 policer.bind_vpp_config(1, False)
2418 for worker in [0, 1]:
2419 self.send_and_expect(self.pg0, pkts, self.pg1, worker=worker)
2420 self.logger.debug(self.vapi.cli("show trace max 100"))
2421
2422 # The policer should auto-bind to worker 0 when packets arrive
2423 stats = policer.get_stats()
2424 stats0new = policer.get_stats(worker=0)
2425 stats1new = policer.get_stats(worker=1)
2426
2427 self.assertGreater(stats0new['conform_packets'],
2428 stats0['conform_packets'])
2429 self.assertEqual(stats0new['exceed_packets'], 0)
2430 self.assertGreater(stats0new['violate_packets'],
2431 stats0['violate_packets'])
2432
2433 self.assertEqual(stats1, stats1new)
2434
Brian Russell5214f3a2021-01-19 16:58:34 +00002435 #
2436 # Clean up
2437 #
2438 ip_punt_policer.remove_vpp_config()
2439 policer.remove_vpp_config()
2440 ip_punt_redirect.remove_vpp_config()
2441
2442
Neale Rannsce9e0b42018-08-01 12:53:17 -07002443class TestIPDeag(VppTestCase):
2444 """ IPv6 Deaggregate Routes """
2445
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07002446 @classmethod
2447 def setUpClass(cls):
2448 super(TestIPDeag, cls).setUpClass()
2449
2450 @classmethod
2451 def tearDownClass(cls):
2452 super(TestIPDeag, cls).tearDownClass()
2453
Neale Rannsce9e0b42018-08-01 12:53:17 -07002454 def setUp(self):
2455 super(TestIPDeag, self).setUp()
2456
2457 self.create_pg_interfaces(range(3))
2458
2459 for i in self.pg_interfaces:
2460 i.admin_up()
2461 i.config_ip6()
2462 i.resolve_ndp()
2463
2464 def tearDown(self):
2465 super(TestIPDeag, self).tearDown()
2466 for i in self.pg_interfaces:
2467 i.unconfig_ip6()
2468 i.admin_down()
2469
2470 def test_ip_deag(self):
2471 """ IP Deag Routes """
2472
2473 #
2474 # Create a table to be used for:
2475 # 1 - another destination address lookup
2476 # 2 - a source address lookup
2477 #
2478 table_dst = VppIpTable(self, 1, is_ip6=1)
2479 table_src = VppIpTable(self, 2, is_ip6=1)
2480 table_dst.add_vpp_config()
2481 table_src.add_vpp_config()
2482
2483 #
2484 # Add a route in the default table to point to a deag/
2485 # second lookup in each of these tables
2486 #
2487 route_to_dst = VppIpRoute(self, "1::1", 128,
2488 [VppRoutePath("::",
2489 0xffffffff,
Neale Ranns097fa662018-05-01 05:17:55 -07002490 nh_table_id=1)])
2491 route_to_src = VppIpRoute(
2492 self, "1::2", 128,
2493 [VppRoutePath("::",
2494 0xffffffff,
2495 nh_table_id=2,
2496 type=FibPathType.FIB_PATH_TYPE_SOURCE_LOOKUP)])
2497
Neale Rannsce9e0b42018-08-01 12:53:17 -07002498 route_to_dst.add_vpp_config()
2499 route_to_src.add_vpp_config()
2500
2501 #
2502 # packets to these destination are dropped, since they'll
2503 # hit the respective default routes in the second table
2504 #
2505 p_dst = (Ether(src=self.pg0.remote_mac,
2506 dst=self.pg0.local_mac) /
2507 IPv6(src="5::5", dst="1::1") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002508 inet6.TCP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01002509 Raw(b'\xa5' * 100))
Neale Rannsce9e0b42018-08-01 12:53:17 -07002510 p_src = (Ether(src=self.pg0.remote_mac,
2511 dst=self.pg0.local_mac) /
2512 IPv6(src="2::2", dst="1::2") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002513 inet6.TCP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01002514 Raw(b'\xa5' * 100))
Neale Rannsce9e0b42018-08-01 12:53:17 -07002515 pkts_dst = p_dst * 257
2516 pkts_src = p_src * 257
2517
2518 self.send_and_assert_no_replies(self.pg0, pkts_dst,
2519 "IP in dst table")
2520 self.send_and_assert_no_replies(self.pg0, pkts_src,
2521 "IP in src table")
2522
2523 #
2524 # add a route in the dst table to forward via pg1
2525 #
2526 route_in_dst = VppIpRoute(self, "1::1", 128,
2527 [VppRoutePath(self.pg1.remote_ip6,
Neale Ranns097fa662018-05-01 05:17:55 -07002528 self.pg1.sw_if_index)],
Neale Rannsce9e0b42018-08-01 12:53:17 -07002529 table_id=1)
2530 route_in_dst.add_vpp_config()
2531
2532 self.send_and_expect(self.pg0, pkts_dst, self.pg1)
2533
2534 #
2535 # add a route in the src table to forward via pg2
2536 #
2537 route_in_src = VppIpRoute(self, "2::2", 128,
2538 [VppRoutePath(self.pg2.remote_ip6,
Neale Ranns097fa662018-05-01 05:17:55 -07002539 self.pg2.sw_if_index)],
Neale Rannsce9e0b42018-08-01 12:53:17 -07002540 table_id=2)
2541 route_in_src.add_vpp_config()
2542 self.send_and_expect(self.pg0, pkts_src, self.pg2)
2543
2544 #
2545 # loop in the lookup DP
2546 #
2547 route_loop = VppIpRoute(self, "3::3", 128,
2548 [VppRoutePath("::",
Neale Ranns097fa662018-05-01 05:17:55 -07002549 0xffffffff)])
Neale Rannsce9e0b42018-08-01 12:53:17 -07002550 route_loop.add_vpp_config()
2551
2552 p_l = (Ether(src=self.pg0.remote_mac,
2553 dst=self.pg0.local_mac) /
2554 IPv6(src="3::4", dst="3::3") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002555 inet6.TCP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01002556 Raw(b'\xa5' * 100))
Neale Rannsce9e0b42018-08-01 12:53:17 -07002557
2558 self.send_and_assert_no_replies(self.pg0, p_l * 257,
2559 "IP lookup loop")
2560
2561
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002562class TestIP6Input(VppTestCase):
Neale Rannsae809832018-11-23 09:00:27 -08002563 """ IPv6 Input Exception Test Cases """
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002564
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -07002565 @classmethod
2566 def setUpClass(cls):
2567 super(TestIP6Input, cls).setUpClass()
2568
2569 @classmethod
2570 def tearDownClass(cls):
2571 super(TestIP6Input, cls).tearDownClass()
2572
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002573 def setUp(self):
2574 super(TestIP6Input, self).setUp()
2575
2576 self.create_pg_interfaces(range(2))
2577
2578 for i in self.pg_interfaces:
2579 i.admin_up()
2580 i.config_ip6()
2581 i.resolve_ndp()
2582
2583 def tearDown(self):
2584 super(TestIP6Input, self).tearDown()
2585 for i in self.pg_interfaces:
2586 i.unconfig_ip6()
2587 i.admin_down()
2588
Neale Rannsae809832018-11-23 09:00:27 -08002589 def test_ip_input_icmp_reply(self):
2590 """ IP6 Input Exception - Return ICMP (3,0) """
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002591 #
Neale Rannsae809832018-11-23 09:00:27 -08002592 # hop limit - ICMP replies
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002593 #
2594 p_version = (Ether(src=self.pg0.remote_mac,
2595 dst=self.pg0.local_mac) /
2596 IPv6(src=self.pg0.remote_ip6,
2597 dst=self.pg1.remote_ip6,
2598 hlim=1) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002599 inet6.UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01002600 Raw(b'\xa5' * 100))
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002601
Paul Vinciguerra4271c972019-05-14 13:25:49 -04002602 rx = self.send_and_expect(self.pg0, p_version * NUM_PKTS, self.pg0)
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002603 rx = rx[0]
2604 icmp = rx[ICMPv6TimeExceeded]
Neale Rannsae809832018-11-23 09:00:27 -08002605
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002606 # 0: "hop limit exceeded in transit",
Neale Rannsae809832018-11-23 09:00:27 -08002607 self.assertEqual((icmp.type, icmp.code), (3, 0))
2608
2609 icmpv6_data = '\x0a' * 18
2610 all_0s = "::"
2611 all_1s = "FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF"
2612
2613 @parameterized.expand([
2614 # Name, src, dst, l4proto, msg, timeout
2615 ("src='iface', dst='iface'", None, None,
2616 inet6.UDP(sport=1234, dport=1234), "funky version", None),
2617 ("src='All 0's', dst='iface'", all_0s, None,
2618 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2619 ("src='iface', dst='All 0's'", None, all_0s,
2620 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2621 ("src='All 1's', dst='iface'", all_1s, None,
2622 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2623 ("src='iface', dst='All 1's'", None, all_1s,
2624 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2625 ("src='All 1's', dst='All 1's'", all_1s, all_1s,
2626 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2627
2628 ])
2629 def test_ip_input_no_replies(self, name, src, dst, l4, msg, timeout):
2630
2631 self._testMethodDoc = 'IPv6 Input Exception - %s' % name
2632
2633 p_version = (Ether(src=self.pg0.remote_mac,
2634 dst=self.pg0.local_mac) /
2635 IPv6(src=src or self.pg0.remote_ip6,
2636 dst=dst or self.pg1.remote_ip6,
2637 version=3) /
2638 l4 /
Ole Troan770a0de2019-11-07 13:52:21 +01002639 Raw(b'\xa5' * 100))
Neale Rannsae809832018-11-23 09:00:27 -08002640
Paul Vinciguerra4271c972019-05-14 13:25:49 -04002641 self.send_and_assert_no_replies(self.pg0, p_version * NUM_PKTS,
Neale Rannsae809832018-11-23 09:00:27 -08002642 remark=msg or "",
2643 timeout=timeout)
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002644
Dave Barach90800962019-05-24 13:03:01 -04002645 def test_hop_by_hop(self):
2646 """ Hop-by-hop header test """
2647
2648 p = (Ether(src=self.pg0.remote_mac,
2649 dst=self.pg0.local_mac) /
2650 IPv6(src=self.pg0.remote_ip6, dst=self.pg0.local_ip6) /
2651 IPv6ExtHdrHopByHop() /
2652 inet6.UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +01002653 Raw(b'\xa5' * 100))
Dave Barach90800962019-05-24 13:03:01 -04002654
2655 self.pg0.add_stream(p)
2656 self.pg_enable_capture(self.pg_interfaces)
2657 self.pg_start()
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002658
Neale Ranns9db6ada2019-11-08 12:42:31 +00002659
2660class TestIPReplace(VppTestCase):
2661 """ IPv6 Table Replace """
2662
2663 @classmethod
2664 def setUpClass(cls):
2665 super(TestIPReplace, cls).setUpClass()
2666
2667 @classmethod
2668 def tearDownClass(cls):
2669 super(TestIPReplace, cls).tearDownClass()
2670
2671 def setUp(self):
2672 super(TestIPReplace, self).setUp()
2673
2674 self.create_pg_interfaces(range(4))
2675
2676 table_id = 1
2677 self.tables = []
2678
2679 for i in self.pg_interfaces:
2680 i.admin_up()
2681 i.config_ip6()
Neale Ranns9db6ada2019-11-08 12:42:31 +00002682 i.generate_remote_hosts(2)
2683 self.tables.append(VppIpTable(self, table_id,
2684 True).add_vpp_config())
2685 table_id += 1
2686
2687 def tearDown(self):
2688 super(TestIPReplace, self).tearDown()
2689 for i in self.pg_interfaces:
2690 i.admin_down()
Neale Rannsec40a7d2020-04-23 07:36:12 +00002691 i.unconfig_ip6()
Neale Ranns9db6ada2019-11-08 12:42:31 +00002692
2693 def test_replace(self):
2694 """ IP Table Replace """
2695
Neale Ranns990f6942020-10-20 07:20:17 +00002696 MRouteItfFlags = VppEnum.vl_api_mfib_itf_flags_t
2697 MRouteEntryFlags = VppEnum.vl_api_mfib_entry_flags_t
Neale Ranns9db6ada2019-11-08 12:42:31 +00002698 N_ROUTES = 20
2699 links = [self.pg0, self.pg1, self.pg2, self.pg3]
2700 routes = [[], [], [], []]
2701
2702 # the sizes of 'empty' tables
2703 for t in self.tables:
2704 self.assertEqual(len(t.dump()), 2)
2705 self.assertEqual(len(t.mdump()), 5)
2706
2707 # load up the tables with some routes
2708 for ii, t in enumerate(self.tables):
2709 for jj in range(1, N_ROUTES):
2710 uni = VppIpRoute(
2711 self, "2001::%d" % jj if jj != 0 else "2001::", 128,
2712 [VppRoutePath(links[ii].remote_hosts[0].ip6,
2713 links[ii].sw_if_index),
2714 VppRoutePath(links[ii].remote_hosts[1].ip6,
2715 links[ii].sw_if_index)],
2716 table_id=t.table_id).add_vpp_config()
2717 multi = VppIpMRoute(
2718 self, "::",
2719 "ff:2001::%d" % jj, 128,
Neale Ranns990f6942020-10-20 07:20:17 +00002720 MRouteEntryFlags.MFIB_API_ENTRY_FLAG_NONE,
Neale Ranns9db6ada2019-11-08 12:42:31 +00002721 [VppMRoutePath(self.pg0.sw_if_index,
Neale Ranns990f6942020-10-20 07:20:17 +00002722 MRouteItfFlags.MFIB_API_ITF_FLAG_ACCEPT,
Neale Ranns9db6ada2019-11-08 12:42:31 +00002723 proto=FibPathProto.FIB_PATH_NH_PROTO_IP6),
2724 VppMRoutePath(self.pg1.sw_if_index,
Neale Ranns990f6942020-10-20 07:20:17 +00002725 MRouteItfFlags.MFIB_API_ITF_FLAG_FORWARD,
Neale Ranns9db6ada2019-11-08 12:42:31 +00002726 proto=FibPathProto.FIB_PATH_NH_PROTO_IP6),
2727 VppMRoutePath(self.pg2.sw_if_index,
Neale Ranns990f6942020-10-20 07:20:17 +00002728 MRouteItfFlags.MFIB_API_ITF_FLAG_FORWARD,
Neale Ranns9db6ada2019-11-08 12:42:31 +00002729 proto=FibPathProto.FIB_PATH_NH_PROTO_IP6),
2730 VppMRoutePath(self.pg3.sw_if_index,
Neale Ranns990f6942020-10-20 07:20:17 +00002731 MRouteItfFlags.MFIB_API_ITF_FLAG_FORWARD,
Neale Ranns9db6ada2019-11-08 12:42:31 +00002732 proto=FibPathProto.FIB_PATH_NH_PROTO_IP6)],
2733 table_id=t.table_id).add_vpp_config()
2734 routes[ii].append({'uni': uni,
2735 'multi': multi})
2736
2737 #
2738 # replace the tables a few times
2739 #
2740 for kk in range(3):
2741 # replace each table
2742 for t in self.tables:
2743 t.replace_begin()
2744
2745 # all the routes are still there
2746 for ii, t in enumerate(self.tables):
2747 dump = t.dump()
2748 mdump = t.mdump()
2749 for r in routes[ii]:
2750 self.assertTrue(find_route_in_dump(dump, r['uni'], t))
2751 self.assertTrue(find_mroute_in_dump(mdump, r['multi'], t))
2752
2753 # redownload the even numbered routes
2754 for ii, t in enumerate(self.tables):
2755 for jj in range(0, N_ROUTES, 2):
2756 routes[ii][jj]['uni'].add_vpp_config()
2757 routes[ii][jj]['multi'].add_vpp_config()
2758
2759 # signal each table converged
2760 for t in self.tables:
2761 t.replace_end()
2762
2763 # we should find the even routes, but not the odd
2764 for ii, t in enumerate(self.tables):
2765 dump = t.dump()
2766 mdump = t.mdump()
2767 for jj in range(0, N_ROUTES, 2):
2768 self.assertTrue(find_route_in_dump(
2769 dump, routes[ii][jj]['uni'], t))
2770 self.assertTrue(find_mroute_in_dump(
2771 mdump, routes[ii][jj]['multi'], t))
2772 for jj in range(1, N_ROUTES - 1, 2):
2773 self.assertFalse(find_route_in_dump(
2774 dump, routes[ii][jj]['uni'], t))
2775 self.assertFalse(find_mroute_in_dump(
2776 mdump, routes[ii][jj]['multi'], t))
2777
2778 # reload all the routes
2779 for ii, t in enumerate(self.tables):
2780 for r in routes[ii]:
2781 r['uni'].add_vpp_config()
2782 r['multi'].add_vpp_config()
2783
2784 # all the routes are still there
2785 for ii, t in enumerate(self.tables):
2786 dump = t.dump()
2787 mdump = t.mdump()
2788 for r in routes[ii]:
2789 self.assertTrue(find_route_in_dump(dump, r['uni'], t))
2790 self.assertTrue(find_mroute_in_dump(mdump, r['multi'], t))
2791
2792 #
2793 # finally flush the tables for good measure
2794 #
2795 for t in self.tables:
2796 t.flush()
2797 self.assertEqual(len(t.dump()), 2)
2798 self.assertEqual(len(t.mdump()), 5)
2799
2800
Neale Ranns59f71132020-04-08 12:19:38 +00002801class TestIP6Replace(VppTestCase):
2802 """ IPv4 Interface Address Replace """
2803
2804 @classmethod
2805 def setUpClass(cls):
2806 super(TestIP6Replace, cls).setUpClass()
2807
2808 @classmethod
2809 def tearDownClass(cls):
2810 super(TestIP6Replace, cls).tearDownClass()
2811
2812 def setUp(self):
2813 super(TestIP6Replace, self).setUp()
2814
2815 self.create_pg_interfaces(range(4))
2816
2817 for i in self.pg_interfaces:
2818 i.admin_up()
2819
2820 def tearDown(self):
2821 super(TestIP6Replace, self).tearDown()
2822 for i in self.pg_interfaces:
2823 i.admin_down()
2824
2825 def get_n_pfxs(self, intf):
2826 return len(self.vapi.ip_address_dump(intf.sw_if_index, True))
2827
2828 def test_replace(self):
2829 """ IP interface address replace """
2830
2831 intf_pfxs = [[], [], [], []]
2832
2833 # add prefixes to each of the interfaces
2834 for i in range(len(self.pg_interfaces)):
2835 intf = self.pg_interfaces[i]
2836
2837 # 2001:16:x::1/64
2838 addr = "2001:16:%d::1" % intf.sw_if_index
2839 a = VppIpInterfaceAddress(self, intf, addr, 64).add_vpp_config()
2840 intf_pfxs[i].append(a)
2841
2842 # 2001:16:x::2/64 - a different address in the same subnet as above
2843 addr = "2001:16:%d::2" % intf.sw_if_index
2844 a = VppIpInterfaceAddress(self, intf, addr, 64).add_vpp_config()
2845 intf_pfxs[i].append(a)
2846
2847 # 2001:15:x::2/64 - a different address and subnet
2848 addr = "2001:15:%d::2" % intf.sw_if_index
2849 a = VppIpInterfaceAddress(self, intf, addr, 64).add_vpp_config()
2850 intf_pfxs[i].append(a)
2851
2852 # a dump should n_address in it
2853 for intf in self.pg_interfaces:
2854 self.assertEqual(self.get_n_pfxs(intf), 3)
2855
2856 #
2857 # remove all the address thru a replace
2858 #
2859 self.vapi.sw_interface_address_replace_begin()
2860 self.vapi.sw_interface_address_replace_end()
2861 for intf in self.pg_interfaces:
2862 self.assertEqual(self.get_n_pfxs(intf), 0)
2863
2864 #
2865 # add all the interface addresses back
2866 #
2867 for p in intf_pfxs:
2868 for v in p:
2869 v.add_vpp_config()
2870 for intf in self.pg_interfaces:
2871 self.assertEqual(self.get_n_pfxs(intf), 3)
2872
2873 #
2874 # replace again, but this time update/re-add the address on the first
2875 # two interfaces
2876 #
2877 self.vapi.sw_interface_address_replace_begin()
2878
2879 for p in intf_pfxs[:2]:
2880 for v in p:
2881 v.add_vpp_config()
2882
2883 self.vapi.sw_interface_address_replace_end()
2884
2885 # on the first two the address still exist,
2886 # on the other two they do not
2887 for intf in self.pg_interfaces[:2]:
2888 self.assertEqual(self.get_n_pfxs(intf), 3)
2889 for p in intf_pfxs[:2]:
2890 for v in p:
2891 self.assertTrue(v.query_vpp_config())
2892 for intf in self.pg_interfaces[2:]:
2893 self.assertEqual(self.get_n_pfxs(intf), 0)
2894
2895 #
2896 # add all the interface addresses back on the last two
2897 #
2898 for p in intf_pfxs[2:]:
2899 for v in p:
2900 v.add_vpp_config()
2901 for intf in self.pg_interfaces:
2902 self.assertEqual(self.get_n_pfxs(intf), 3)
2903
2904 #
2905 # replace again, this time add different prefixes on all the interfaces
2906 #
2907 self.vapi.sw_interface_address_replace_begin()
2908
2909 pfxs = []
2910 for intf in self.pg_interfaces:
2911 # 2001:18:x::1/64
2912 addr = "2001:18:%d::1" % intf.sw_if_index
2913 pfxs.append(VppIpInterfaceAddress(self, intf, addr,
2914 64).add_vpp_config())
2915
2916 self.vapi.sw_interface_address_replace_end()
2917
2918 # only .18 should exist on each interface
2919 for intf in self.pg_interfaces:
2920 self.assertEqual(self.get_n_pfxs(intf), 1)
2921 for pfx in pfxs:
2922 self.assertTrue(pfx.query_vpp_config())
2923
2924 #
2925 # remove everything
2926 #
2927 self.vapi.sw_interface_address_replace_begin()
2928 self.vapi.sw_interface_address_replace_end()
2929 for intf in self.pg_interfaces:
2930 self.assertEqual(self.get_n_pfxs(intf), 0)
2931
2932 #
2933 # add prefixes to each interface. post-begin add the prefix from
2934 # interface X onto interface Y. this would normally be an error
2935 # since it would generate a 'duplicate address' warning. but in
2936 # this case, since what is newly downloaded is sane, it's ok
2937 #
2938 for intf in self.pg_interfaces:
2939 # 2001:18:x::1/64
2940 addr = "2001:18:%d::1" % intf.sw_if_index
2941 VppIpInterfaceAddress(self, intf, addr, 64).add_vpp_config()
2942
2943 self.vapi.sw_interface_address_replace_begin()
2944
2945 pfxs = []
2946 for intf in self.pg_interfaces:
2947 # 2001:18:x::1/64
2948 addr = "2001:18:%d::1" % (intf.sw_if_index + 1)
2949 pfxs.append(VppIpInterfaceAddress(self, intf,
2950 addr, 64).add_vpp_config())
2951
2952 self.vapi.sw_interface_address_replace_end()
2953
2954 self.logger.info(self.vapi.cli("sh int addr"))
2955
2956 for intf in self.pg_interfaces:
2957 self.assertEqual(self.get_n_pfxs(intf), 1)
2958 for pfx in pfxs:
2959 self.assertTrue(pfx.query_vpp_config())
2960
2961
Neale Rannsec40a7d2020-04-23 07:36:12 +00002962class TestIP6LinkLocal(VppTestCase):
2963 """ IPv6 Link Local """
2964
2965 @classmethod
2966 def setUpClass(cls):
2967 super(TestIP6LinkLocal, cls).setUpClass()
2968
2969 @classmethod
2970 def tearDownClass(cls):
2971 super(TestIP6LinkLocal, cls).tearDownClass()
2972
2973 def setUp(self):
2974 super(TestIP6LinkLocal, self).setUp()
2975
2976 self.create_pg_interfaces(range(2))
2977
2978 for i in self.pg_interfaces:
2979 i.admin_up()
2980
2981 def tearDown(self):
2982 super(TestIP6LinkLocal, self).tearDown()
2983 for i in self.pg_interfaces:
2984 i.admin_down()
2985
2986 def test_ip6_ll(self):
2987 """ IPv6 Link Local """
2988
2989 #
2990 # two APIs to add a link local address.
2991 # 1 - just like any other prefix
2992 # 2 - with the special set LL API
2993 #
2994
2995 #
2996 # First with the API to set a 'normal' prefix
2997 #
2998 ll1 = "fe80:1::1"
2999 ll2 = "fe80:2::2"
3000 ll3 = "fe80:3::3"
3001
Neale Rannsdfef64b2021-05-20 16:28:12 +00003002 VppNeighbor(self,
3003 self.pg0.sw_if_index,
3004 self.pg0.remote_mac,
3005 ll2).add_vpp_config()
3006
Neale Rannsec40a7d2020-04-23 07:36:12 +00003007 VppIpInterfaceAddress(self, self.pg0, ll1, 128).add_vpp_config()
3008
3009 #
3010 # should be able to ping the ll
3011 #
3012 p_echo_request_1 = (Ether(src=self.pg0.remote_mac,
3013 dst=self.pg0.local_mac) /
3014 IPv6(src=ll2,
3015 dst=ll1) /
3016 ICMPv6EchoRequest())
3017
3018 self.send_and_expect(self.pg0, [p_echo_request_1], self.pg0)
3019
3020 #
3021 # change the link-local on pg0
3022 #
3023 v_ll3 = VppIpInterfaceAddress(self, self.pg0,
3024 ll3, 128).add_vpp_config()
3025
3026 p_echo_request_3 = (Ether(src=self.pg0.remote_mac,
3027 dst=self.pg0.local_mac) /
3028 IPv6(src=ll2,
3029 dst=ll3) /
3030 ICMPv6EchoRequest())
3031
3032 self.send_and_expect(self.pg0, [p_echo_request_3], self.pg0)
3033
3034 #
3035 # set a normal v6 prefix on the link
3036 #
3037 self.pg0.config_ip6()
3038
3039 self.send_and_expect(self.pg0, [p_echo_request_3], self.pg0)
3040
3041 # the link-local cannot be removed
3042 with self.vapi.assert_negative_api_retval():
3043 v_ll3.remove_vpp_config()
3044
3045 #
3046 # Use the specific link-local API on pg1
3047 #
3048 VppIp6LinkLocalAddress(self, self.pg1, ll1).add_vpp_config()
3049 self.send_and_expect(self.pg1, [p_echo_request_1], self.pg1)
3050
3051 VppIp6LinkLocalAddress(self, self.pg1, ll3).add_vpp_config()
3052 self.send_and_expect(self.pg1, [p_echo_request_3], self.pg1)
3053
Neale Rannsdfef64b2021-05-20 16:28:12 +00003054 def test_ip6_ll_p2p(self):
3055 """ IPv6 Link Local P2P (GRE)"""
3056
3057 self.pg0.config_ip4()
3058 self.pg0.resolve_arp()
3059 gre_if = VppGreInterface(self,
3060 self.pg0.local_ip4,
3061 self.pg0.remote_ip4).add_vpp_config()
3062 gre_if.admin_up()
3063
3064 ll1 = "fe80:1::1"
3065 ll2 = "fe80:2::2"
3066
3067 VppIpInterfaceAddress(self, gre_if, ll1, 128).add_vpp_config()
3068
3069 self.logger.info(self.vapi.cli("sh ip6-ll gre0 fe80:2::2"))
3070
3071 p_echo_request_1 = (Ether(src=self.pg0.remote_mac,
3072 dst=self.pg0.local_mac) /
3073 IP(src=self.pg0.remote_ip4,
3074 dst=self.pg0.local_ip4) /
3075 GRE() /
3076 IPv6(src=ll2, dst=ll1) /
3077 ICMPv6EchoRequest())
3078 self.send_and_expect(self.pg0, [p_echo_request_1], self.pg0)
3079
3080 self.pg0.unconfig_ip4()
3081 gre_if.remove_vpp_config()
3082
3083 def test_ip6_ll_p2mp(self):
3084 """ IPv6 Link Local P2MP (GRE)"""
3085
3086 self.pg0.config_ip4()
3087 self.pg0.resolve_arp()
3088
3089 gre_if = VppGreInterface(
3090 self,
3091 self.pg0.local_ip4,
3092 "0.0.0.0",
3093 mode=(VppEnum.vl_api_tunnel_mode_t.
3094 TUNNEL_API_MODE_MP)).add_vpp_config()
3095 gre_if.admin_up()
3096
3097 ll1 = "fe80:1::1"
3098 ll2 = "fe80:2::2"
3099
3100 VppIpInterfaceAddress(self, gre_if, ll1, 128).add_vpp_config()
3101
3102 p_echo_request_1 = (Ether(src=self.pg0.remote_mac,
3103 dst=self.pg0.local_mac) /
3104 IP(src=self.pg0.remote_ip4,
3105 dst=self.pg0.local_ip4) /
3106 GRE() /
3107 IPv6(src=ll2, dst=ll1) /
3108 ICMPv6EchoRequest())
3109
3110 # no route back at this point
3111 self.send_and_assert_no_replies(self.pg0, [p_echo_request_1])
3112
3113 # add teib entry for the peer
3114 teib = VppTeib(self, gre_if, ll2, self.pg0.remote_ip4)
3115 teib.add_vpp_config()
3116
3117 self.logger.info(self.vapi.cli("sh ip6-ll gre0 %s" % ll2))
3118 self.send_and_expect(self.pg0, [p_echo_request_1], self.pg0)
3119
3120 # teardown
3121 self.pg0.unconfig_ip4()
3122
Neale Rannsec40a7d2020-04-23 07:36:12 +00003123
Neale Ranns8f5fef22020-12-21 08:29:34 +00003124class TestIPv6PathMTU(VppTestCase):
3125 """ IPv6 Path MTU """
3126
3127 def setUp(self):
3128 super(TestIPv6PathMTU, self).setUp()
3129
3130 self.create_pg_interfaces(range(2))
3131
3132 # setup all interfaces
3133 for i in self.pg_interfaces:
3134 i.admin_up()
3135 i.config_ip6()
3136 i.resolve_ndp()
3137
3138 def tearDown(self):
3139 super(TestIPv6PathMTU, self).tearDown()
3140 for i in self.pg_interfaces:
3141 i.unconfig_ip6()
3142 i.admin_down()
3143
3144 def test_path_mtu_local(self):
3145 """ Path MTU for attached neighbour """
3146
3147 self.vapi.cli("set log class ip level debug")
3148 #
3149 # The goal here is not test that fragmentation works correctly,
3150 # that's done elsewhere, the intent is to ensure that the Path MTU
3151 # settings are honoured.
3152 #
3153
3154 #
3155 # IPv6 will only frag locally generated packets, so use tunnelled
3156 # packets post encap
3157 #
3158 tun = VppIpIpTunInterface(
3159 self,
3160 self.pg1,
3161 self.pg1.local_ip6,
3162 self.pg1.remote_ip6)
3163 tun.add_vpp_config()
3164 tun.admin_up()
3165 tun.config_ip6()
3166
3167 # set the interface MTU to a reasonable value
3168 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index,
3169 [2800, 0, 0, 0])
3170
3171 p_2k = (Ether(dst=self.pg0.local_mac,
3172 src=self.pg0.remote_mac) /
3173 IPv6(src=self.pg0.remote_ip6,
3174 dst=tun.remote_ip6) /
3175 UDP(sport=1234, dport=5678) /
3176 Raw(b'0xa' * 1000))
3177 p_1k = (Ether(dst=self.pg0.local_mac,
3178 src=self.pg0.remote_mac) /
3179 IPv6(src=self.pg0.remote_ip6,
3180 dst=tun.remote_ip6) /
3181 UDP(sport=1234, dport=5678) /
3182 Raw(b'0xa' * 600))
3183
3184 nbr = VppNeighbor(self,
3185 self.pg1.sw_if_index,
3186 self.pg1.remote_mac,
3187 self.pg1.remote_ip6).add_vpp_config()
3188
3189 # this is now the interface MTU frags
3190 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=2)
3191 self.send_and_expect(self.pg0, [p_1k], self.pg1)
3192
3193 # drop the path MTU for this neighbour to below the interface MTU
3194 # expect more frags
3195 pmtu = VppIpPathMtu(self, self.pg1.remote_ip6, 1300).add_vpp_config()
3196
3197 # print/format the adj delegate and trackers
3198 self.logger.info(self.vapi.cli("sh ip pmtu"))
3199 self.logger.info(self.vapi.cli("sh adj 7"))
3200
3201 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3202 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3203
3204 # increase the path MTU to more than the interface
3205 # expect to use the interface MTU
3206 pmtu.modify(8192)
3207
3208 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=2)
3209 self.send_and_expect(self.pg0, [p_1k], self.pg1)
3210
3211 # go back to an MTU from the path
3212 pmtu.modify(1300)
3213
3214 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3215 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3216
3217 # raise the interface's MTU
3218 # should still use that of the path
3219 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index,
3220 [2000, 0, 0, 0])
3221 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3222 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3223
3224 # set path high and interface low
3225 pmtu.modify(2000)
3226 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index,
3227 [1300, 0, 0, 0])
3228 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3229 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3230
3231 # remove the path MTU
3232 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index,
3233 [2800, 0, 0, 0])
3234 pmtu.modify(0)
3235
3236 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=2)
3237 self.send_and_expect(self.pg0, [p_1k], self.pg1)
3238
3239 def test_path_mtu_remote(self):
3240 """ Path MTU for remote neighbour """
3241
3242 self.vapi.cli("set log class ip level debug")
3243 #
3244 # The goal here is not test that fragmentation works correctly,
3245 # that's done elsewhere, the intent is to ensure that the Path MTU
3246 # settings are honoured.
3247 #
3248 tun_dst = "2001::1"
3249
3250 route = VppIpRoute(
3251 self, tun_dst, 64,
3252 [VppRoutePath(self.pg1.remote_ip6,
3253 self.pg1.sw_if_index)]).add_vpp_config()
3254
3255 #
3256 # IPv6 will only frag locally generated packets, so use tunnelled
3257 # packets post encap
3258 #
3259 tun = VppIpIpTunInterface(
3260 self,
3261 self.pg1,
3262 self.pg1.local_ip6,
3263 tun_dst)
3264 tun.add_vpp_config()
3265 tun.admin_up()
3266 tun.config_ip6()
3267
3268 # set the interface MTU to a reasonable value
3269 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index,
3270 [2800, 0, 0, 0])
3271
3272 p_2k = (Ether(dst=self.pg0.local_mac,
3273 src=self.pg0.remote_mac) /
3274 IPv6(src=self.pg0.remote_ip6,
3275 dst=tun.remote_ip6) /
3276 UDP(sport=1234, dport=5678) /
3277 Raw(b'0xa' * 1000))
3278 p_1k = (Ether(dst=self.pg0.local_mac,
3279 src=self.pg0.remote_mac) /
3280 IPv6(src=self.pg0.remote_ip6,
3281 dst=tun.remote_ip6) /
3282 UDP(sport=1234, dport=5678) /
3283 Raw(b'0xa' * 600))
3284
3285 nbr = VppNeighbor(self,
3286 self.pg1.sw_if_index,
3287 self.pg1.remote_mac,
3288 self.pg1.remote_ip6).add_vpp_config()
3289
3290 # this is now the interface MTU frags
3291 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=2)
3292 self.send_and_expect(self.pg0, [p_1k], self.pg1)
3293
3294 # drop the path MTU for this neighbour to below the interface MTU
3295 # expect more frags
3296 pmtu = VppIpPathMtu(self, tun_dst, 1300).add_vpp_config()
3297
3298 # print/format the fib entry/dpo
3299 self.logger.info(self.vapi.cli("sh ip6 fib 2001::1"))
3300
3301 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3302 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3303
3304 # increase the path MTU to more than the interface
3305 # expect to use the interface MTU
3306 pmtu.modify(8192)
3307
3308 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=2)
3309 self.send_and_expect(self.pg0, [p_1k], self.pg1)
3310
3311 # go back to an MTU from the path
3312 pmtu.modify(1300)
3313
3314 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3315 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3316
3317 # raise the interface's MTU
3318 # should still use that of the path
3319 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index,
3320 [2000, 0, 0, 0])
3321 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3322 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3323
3324 # turn the tun_dst into an attached neighbour
3325 route.modify([VppRoutePath("::",
3326 self.pg1.sw_if_index)])
3327 nbr2 = VppNeighbor(self,
3328 self.pg1.sw_if_index,
3329 self.pg1.remote_mac,
3330 tun_dst).add_vpp_config()
3331
3332 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3333 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3334
3335 # add back to not attached
3336 nbr2.remove_vpp_config()
3337 route.modify([VppRoutePath(self.pg1.remote_ip6,
3338 self.pg1.sw_if_index)])
3339
3340 # set path high and interface low
3341 pmtu.modify(2000)
3342 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index,
3343 [1300, 0, 0, 0])
3344 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=3)
3345 self.send_and_expect(self.pg0, [p_1k], self.pg1, n_rx=2)
3346
3347 # remove the path MTU
3348 self.vapi.sw_interface_set_mtu(self.pg1.sw_if_index,
3349 [2800, 0, 0, 0])
3350 pmtu.remove_vpp_config()
3351 self.send_and_expect(self.pg0, [p_2k], self.pg1, n_rx=2)
3352 self.send_and_expect(self.pg0, [p_1k], self.pg1)
3353
3354
Neale Ranns976b2592019-12-04 06:11:00 +00003355class TestIPFibSource(VppTestCase):
3356 """ IPv6 Table FibSource """
3357
3358 @classmethod
3359 def setUpClass(cls):
3360 super(TestIPFibSource, cls).setUpClass()
3361
3362 @classmethod
3363 def tearDownClass(cls):
3364 super(TestIPFibSource, cls).tearDownClass()
3365
3366 def setUp(self):
3367 super(TestIPFibSource, self).setUp()
3368
3369 self.create_pg_interfaces(range(2))
3370
3371 for i in self.pg_interfaces:
3372 i.admin_up()
3373 i.config_ip6()
3374 i.resolve_arp()
3375 i.generate_remote_hosts(2)
3376 i.configure_ipv6_neighbors()
3377
3378 def tearDown(self):
3379 super(TestIPFibSource, self).tearDown()
3380 for i in self.pg_interfaces:
3381 i.admin_down()
3382 i.unconfig_ip4()
3383
3384 def test_fib_source(self):
3385 """ IP Table FibSource """
3386
3387 routes = self.vapi.ip_route_v2_dump(0, True)
3388
3389 # 2 interfaces (4 routes) + 2 specials + 4 neighbours = 10 routes
3390 self.assertEqual(len(routes), 10)
3391
3392 # dump all the sources in the FIB
3393 sources = self.vapi.fib_source_dump()
3394 for source in sources:
3395 if (source.src.name == "API"):
3396 api_source = source.src
3397 if (source.src.name == "interface"):
3398 intf_source = source.src
3399 if (source.src.name == "adjacency"):
3400 adj_source = source.src
3401 if (source.src.name == "special"):
3402 special_source = source.src
3403 if (source.src.name == "default-route"):
3404 dr_source = source.src
3405
3406 # dump the individual route types
3407 routes = self.vapi.ip_route_v2_dump(0, True, src=adj_source.id)
3408 self.assertEqual(len(routes), 4)
3409 routes = self.vapi.ip_route_v2_dump(0, True, src=intf_source.id)
3410 self.assertEqual(len(routes), 4)
3411 routes = self.vapi.ip_route_v2_dump(0, True, src=special_source.id)
3412 self.assertEqual(len(routes), 1)
3413 routes = self.vapi.ip_route_v2_dump(0, True, src=dr_source.id)
3414 self.assertEqual(len(routes), 1)
3415
3416 # add a new soure that'a better than the API
3417 self.vapi.fib_source_add(src={'name': "bgp",
3418 "priority": api_source.priority - 1})
3419
3420 # dump all the sources to check our new one is there
3421 sources = self.vapi.fib_source_dump()
3422
3423 for source in sources:
3424 if (source.src.name == "bgp"):
3425 bgp_source = source.src
3426
3427 self.assertTrue(bgp_source)
3428 self.assertEqual(bgp_source.priority,
3429 api_source.priority - 1)
3430
3431 # add a route with the default API source
3432 r1 = VppIpRouteV2(
3433 self, "2001::1", 128,
3434 [VppRoutePath(self.pg0.remote_ip6,
3435 self.pg0.sw_if_index)]).add_vpp_config()
3436
3437 r2 = VppIpRouteV2(self, "2001::1", 128,
3438 [VppRoutePath(self.pg1.remote_ip6,
3439 self.pg1.sw_if_index)],
3440 src=bgp_source.id).add_vpp_config()
3441
3442 # ensure the BGP source takes priority
3443 p = (Ether(src=self.pg0.remote_mac,
3444 dst=self.pg0.local_mac) /
3445 IPv6(src=self.pg0.remote_ip6, dst="2001::1") /
3446 inet6.UDP(sport=1234, dport=1234) /
3447 Raw(b'\xa5' * 100))
3448
3449 self.send_and_expect(self.pg0, [p], self.pg1)
3450
3451 r2.remove_vpp_config()
3452 r1.remove_vpp_config()
3453
3454 self.assertFalse(find_route(self, "2001::1", 128))
3455
3456
Neale Ranns91adf242021-05-27 12:18:52 +00003457class TestIPxAF(VppTestCase):
3458 """ IP cross AF """
3459
3460 @classmethod
3461 def setUpClass(cls):
3462 super(TestIPxAF, cls).setUpClass()
3463
3464 @classmethod
3465 def tearDownClass(cls):
3466 super(TestIPxAF, cls).tearDownClass()
3467
3468 def setUp(self):
3469 super(TestIPxAF, self).setUp()
3470
3471 self.create_pg_interfaces(range(2))
3472
3473 for i in self.pg_interfaces:
3474 i.admin_up()
3475 i.config_ip6()
3476 i.config_ip4()
3477 i.resolve_arp()
3478 i.resolve_ndp()
3479
3480 def tearDown(self):
3481 super(TestIPxAF, self).tearDown()
3482 for i in self.pg_interfaces:
3483 i.admin_down()
3484 i.unconfig_ip4()
3485 i.unconfig_ip6()
3486
3487 def test_x_af(self):
3488 """ Cross AF routing """
3489
3490 N_PKTS = 63
3491 # a v4 route via a v6 attached next-hop
3492 VppIpRoute(
3493 self, "1.1.1.1", 32,
3494 [VppRoutePath(self.pg1.remote_ip6,
3495 self.pg1.sw_if_index)]).add_vpp_config()
3496
3497 p = (Ether(src=self.pg0.remote_mac,
3498 dst=self.pg0.local_mac) /
3499 IP(src=self.pg0.remote_ip4, dst="1.1.1.1") /
3500 UDP(sport=1234, dport=1234) /
3501 Raw(b'\xa5' * 100))
3502 rxs = self.send_and_expect(self.pg0, p * N_PKTS, self.pg1)
3503
3504 for rx in rxs:
3505 self.assertEqual(rx[IP].dst, "1.1.1.1")
3506
3507 # a v6 route via a v4 attached next-hop
3508 VppIpRoute(
3509 self, "2001::1", 128,
3510 [VppRoutePath(self.pg1.remote_ip4,
3511 self.pg1.sw_if_index)]).add_vpp_config()
3512
3513 p = (Ether(src=self.pg0.remote_mac,
3514 dst=self.pg0.local_mac) /
3515 IPv6(src=self.pg0.remote_ip6, dst="2001::1") /
3516 UDP(sport=1234, dport=1234) /
3517 Raw(b'\xa5' * 100))
3518 rxs = self.send_and_expect(self.pg0, p * N_PKTS, self.pg1)
3519
3520 for rx in rxs:
3521 self.assertEqual(rx[IPv6].dst, "2001::1")
3522
3523 # a recursive v4 route via a v6 next-hop (from above)
3524 VppIpRoute(
3525 self, "2.2.2.2", 32,
3526 [VppRoutePath("2001::1",
3527 0xffffffff)]).add_vpp_config()
3528
3529 p = (Ether(src=self.pg0.remote_mac,
3530 dst=self.pg0.local_mac) /
3531 IP(src=self.pg0.remote_ip4, dst="2.2.2.2") /
3532 UDP(sport=1234, dport=1234) /
3533 Raw(b'\xa5' * 100))
3534 rxs = self.send_and_expect(self.pg0, p * N_PKTS, self.pg1)
3535
3536 # a recursive v4 route via a v6 next-hop
3537 VppIpRoute(
3538 self, "2.2.2.3", 32,
3539 [VppRoutePath(self.pg1.remote_ip6,
3540 0xffffffff)]).add_vpp_config()
3541
3542 p = (Ether(src=self.pg0.remote_mac,
3543 dst=self.pg0.local_mac) /
3544 IP(src=self.pg0.remote_ip4, dst="2.2.2.3") /
3545 UDP(sport=1234, dport=1234) /
3546 Raw(b'\xa5' * 100))
3547 rxs = self.send_and_expect(self.pg0, p * N_PKTS, self.pg1)
3548
3549 # a recursive v6 route via a v4 next-hop
3550 VppIpRoute(
3551 self, "3001::1", 128,
3552 [VppRoutePath(self.pg1.remote_ip4,
3553 0xffffffff)]).add_vpp_config()
3554
3555 p = (Ether(src=self.pg0.remote_mac,
3556 dst=self.pg0.local_mac) /
3557 IPv6(src=self.pg0.remote_ip6, dst="3001::1") /
3558 UDP(sport=1234, dport=1234) /
3559 Raw(b'\xa5' * 100))
3560 rxs = self.send_and_expect(self.pg0, p * N_PKTS, self.pg1)
3561
3562 for rx in rxs:
3563 self.assertEqual(rx[IPv6].dst, "3001::1")
3564
3565 VppIpRoute(
3566 self, "3001::2", 128,
3567 [VppRoutePath("1.1.1.1",
3568 0xffffffff)]).add_vpp_config()
3569
3570 p = (Ether(src=self.pg0.remote_mac,
3571 dst=self.pg0.local_mac) /
3572 IPv6(src=self.pg0.remote_ip6, dst="3001::2") /
3573 UDP(sport=1234, dport=1234) /
3574 Raw(b'\xa5' * 100))
3575 rxs = self.send_and_expect(self.pg0, p * N_PKTS, self.pg1)
3576
3577 for rx in rxs:
3578 self.assertEqual(rx[IPv6].dst, "3001::2")
3579
3580
BenoƮt Ganne7c7b5052021-10-04 12:03:20 +02003581class TestIPv6Punt(VppTestCase):
3582 """ IPv6 Punt Police/Redirect """
3583
3584 def setUp(self):
3585 super(TestIPv6Punt, self).setUp()
3586 self.create_pg_interfaces(range(4))
3587
3588 for i in self.pg_interfaces:
3589 i.admin_up()
3590 i.config_ip6()
3591 i.resolve_ndp()
3592
3593 def tearDown(self):
3594 super(TestIPv6Punt, self).tearDown()
3595 for i in self.pg_interfaces:
3596 i.unconfig_ip6()
3597 i.admin_down()
3598
3599 def test_ip6_punt(self):
3600 """ IPv6 punt police and redirect """
3601
3602 # use UDP packet that have a port we need to explicitly
3603 # register to get punted.
3604 pt_l4 = VppEnum.vl_api_punt_type_t.PUNT_API_TYPE_L4
3605 af_ip6 = VppEnum.vl_api_address_family_t.ADDRESS_IP6
3606 udp_proto = VppEnum.vl_api_ip_proto_t.IP_API_PROTO_UDP
3607 punt_udp = {
3608 'type': pt_l4,
3609 'punt': {
3610 'l4': {
3611 'af': af_ip6,
3612 'protocol': udp_proto,
3613 'port': 7654,
3614 }
3615 }
3616 }
3617
3618 self.vapi.set_punt(is_add=1, punt=punt_udp)
3619
3620 pkts = (Ether(src=self.pg0.remote_mac,
3621 dst=self.pg0.local_mac) /
3622 IPv6(src=self.pg0.remote_ip6, dst=self.pg0.local_ip6) /
3623 UDP(sport=1234, dport=7654) /
3624 Raw(b'\xa5' * 100)) * 1025
3625
3626 #
3627 # Configure a punt redirect via pg1.
3628 #
3629 nh_addr = self.pg1.remote_ip6
3630 ip_punt_redirect = VppIpPuntRedirect(self, self.pg0.sw_if_index,
3631 self.pg1.sw_if_index, nh_addr)
3632 ip_punt_redirect.add_vpp_config()
3633
3634 self.send_and_expect(self.pg0, pkts, self.pg1)
3635
3636 #
3637 # add a policer
3638 #
3639 policer = VppPolicer(self, "ip6-punt", 400, 0, 10, 0, rate_type=1)
3640 policer.add_vpp_config()
3641 ip_punt_policer = VppIpPuntPolicer(self, policer.policer_index,
3642 is_ip6=True)
3643 ip_punt_policer.add_vpp_config()
3644
3645 self.vapi.cli("clear trace")
3646 self.pg0.add_stream(pkts)
3647 self.pg_enable_capture(self.pg_interfaces)
3648 self.pg_start()
3649
3650 #
3651 # the number of packet received should be greater than 0,
3652 # but not equal to the number sent, since some were policed
3653 #
3654 rx = self.pg1._get_capture(1)
3655
3656 stats = policer.get_stats()
3657
3658 # Single rate policer - expect conform, violate but no exceed
3659 self.assertGreater(stats['conform_packets'], 0)
3660 self.assertEqual(stats['exceed_packets'], 0)
3661 self.assertGreater(stats['violate_packets'], 0)
3662
3663 self.assertGreater(len(rx), 0)
3664 self.assertLess(len(rx), len(pkts))
3665
3666 #
3667 # remove the policer. back to full rx
3668 #
3669 ip_punt_policer.remove_vpp_config()
3670 policer.remove_vpp_config()
3671 self.send_and_expect(self.pg0, pkts, self.pg1)
3672
3673 #
3674 # remove the redirect. expect full drop.
3675 #
3676 ip_punt_redirect.remove_vpp_config()
3677 self.send_and_assert_no_replies(self.pg0, pkts,
3678 "IP no punt config")
3679
3680 #
3681 # Add a redirect that is not input port selective
3682 #
3683 ip_punt_redirect = VppIpPuntRedirect(self, 0xffffffff,
3684 self.pg1.sw_if_index, nh_addr)
3685 ip_punt_redirect.add_vpp_config()
3686 self.send_and_expect(self.pg0, pkts, self.pg1)
3687 ip_punt_redirect.remove_vpp_config()
3688
3689 def test_ip6_punt_dump(self):
3690 """ IPv6 punt redirect dump"""
3691
3692 #
3693 # Configure a punt redirects
3694 #
3695 nh_address = self.pg3.remote_ip6
3696 ipr_03 = VppIpPuntRedirect(self, self.pg0.sw_if_index,
3697 self.pg3.sw_if_index, nh_address)
3698 ipr_13 = VppIpPuntRedirect(self, self.pg1.sw_if_index,
3699 self.pg3.sw_if_index, nh_address)
3700 ipr_23 = VppIpPuntRedirect(self, self.pg2.sw_if_index,
3701 self.pg3.sw_if_index, "::")
3702 ipr_03.add_vpp_config()
3703 ipr_13.add_vpp_config()
3704 ipr_23.add_vpp_config()
3705
3706 #
3707 # Dump pg0 punt redirects
3708 #
3709 self.assertTrue(ipr_03.query_vpp_config())
3710 self.assertTrue(ipr_13.query_vpp_config())
3711 self.assertTrue(ipr_23.query_vpp_config())
3712
3713 #
3714 # Dump punt redirects for all interfaces
3715 #
3716 punts = self.vapi.ip_punt_redirect_dump(sw_if_index=0xffffffff,
3717 is_ipv6=True)
3718 self.assertEqual(len(punts), 3)
3719 for p in punts:
3720 self.assertEqual(p.punt.tx_sw_if_index, self.pg3.sw_if_index)
3721 self.assertNotEqual(punts[1].punt.nh, self.pg3.remote_ip6)
3722 self.assertEqual(str(punts[2].punt.nh), '::')
3723
3724
Damjan Marionf56b77a2016-10-03 19:44:57 +02003725if __name__ == '__main__':
Klement Sekeraf62ae122016-10-11 11:47:09 +02003726 unittest.main(testRunner=VppTestRunner)