blob: 1d52edb7721f7b0250f0fe0d03ccb2a762aaa52e [file] [log] [blame]
Damjan Marionf56b77a2016-10-03 19:44:57 +02001#!/usr/bin/env python
2
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01003import socket
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -08004import unittest
5
Neale Rannsae809832018-11-23 09:00:27 -08006from parameterized import parameterized
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -08007import scapy.layers.inet6 as inet6
8from scapy.contrib.mpls import MPLS
9from scapy.layers.inet6 import IPv6, ICMPv6ND_NS, ICMPv6ND_RS, \
10 ICMPv6ND_RA, ICMPv6NDOptMTU, ICMPv6NDOptSrcLLAddr, ICMPv6NDOptPrefixInfo, \
11 ICMPv6ND_NA, ICMPv6NDOptDstLLAddr, ICMPv6DestUnreach, icmp6types, \
12 ICMPv6TimeExceeded, ICMPv6EchoRequest, ICMPv6EchoReply
13from scapy.layers.l2 import Ether, Dot1Q
14from scapy.packet import Raw
15from scapy.utils import inet_pton, inet_ntop
16from scapy.utils6 import in6_getnsma, in6_getnsmac, in6_ptop, in6_islladdr, \
17 in6_mactoifaceid
18from six import moves
Klement Sekeraf62ae122016-10-11 11:47:09 +020019
Damjan Marionf56b77a2016-10-03 19:44:57 +020020from framework import VppTestCase, VppTestRunner
Paul Vinciguerrae8fece82019-02-28 15:34:00 -080021from util import ppp, ip6_normalize, mk_ll_addr
Neale Rannsc0a93142018-09-05 15:42:26 -070022from vpp_ip import DpoProto
Neale Ranns180279b2017-03-16 15:49:09 -040023from vpp_ip_route import VppIpRoute, VppRoutePath, find_route, VppIpMRoute, \
Neale Ranns71275e32017-05-25 12:38:58 -070024 VppMRoutePath, MRouteItfFlags, MRouteEntryFlags, VppMplsIpBind, \
Ole Troan0bcad322018-12-11 13:04:01 +010025 VppMplsRoute, VppMplsTable, VppIpTable
Neale Rannsb3b2de72017-03-08 05:17:22 -080026from vpp_neighbor import find_nbr, VppNeighbor
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -080027from vpp_pg_interface import is_ipv6_misc
28from vpp_sub_interface import VppSubInterface, VppDot1QSubint
Neale Ranns37029302018-08-10 05:30:06 -070029from ipaddress import IPv6Network, IPv4Network
Neale Ranns75152282017-01-09 01:00:45 -080030
Juraj Sloboda4b9669d2018-01-15 10:39:21 +010031AF_INET6 = socket.AF_INET6
32
Paul Vinciguerra1e18eb22018-11-25 16:09:26 -080033try:
34 text_type = unicode
35except NameError:
36 text_type = str
37
Juraj Sloboda4b9669d2018-01-15 10:39:21 +010038
Neale Ranns3f844d02017-02-18 00:03:54 -080039class TestIPv6ND(VppTestCase):
40 def validate_ra(self, intf, rx, dst_ip=None):
41 if not dst_ip:
42 dst_ip = intf.remote_ip6
43
44 # unicasted packets must come to the unicast mac
45 self.assertEqual(rx[Ether].dst, intf.remote_mac)
46
47 # and from the router's MAC
48 self.assertEqual(rx[Ether].src, intf.local_mac)
49
50 # the rx'd RA should be addressed to the sender's source
51 self.assertTrue(rx.haslayer(ICMPv6ND_RA))
52 self.assertEqual(in6_ptop(rx[IPv6].dst),
53 in6_ptop(dst_ip))
54
55 # and come from the router's link local
56 self.assertTrue(in6_islladdr(rx[IPv6].src))
57 self.assertEqual(in6_ptop(rx[IPv6].src),
58 in6_ptop(mk_ll_addr(intf.local_mac)))
59
60 def validate_na(self, intf, rx, dst_ip=None, tgt_ip=None):
61 if not dst_ip:
62 dst_ip = intf.remote_ip6
63 if not tgt_ip:
64 dst_ip = intf.local_ip6
65
66 # unicasted packets must come to the unicast mac
67 self.assertEqual(rx[Ether].dst, intf.remote_mac)
68
69 # and from the router's MAC
70 self.assertEqual(rx[Ether].src, intf.local_mac)
71
72 # the rx'd NA should be addressed to the sender's source
73 self.assertTrue(rx.haslayer(ICMPv6ND_NA))
74 self.assertEqual(in6_ptop(rx[IPv6].dst),
75 in6_ptop(dst_ip))
76
77 # and come from the target address
Paul Vinciguerra978aa642018-11-24 22:19:12 -080078 self.assertEqual(
79 in6_ptop(rx[IPv6].src), in6_ptop(tgt_ip))
Neale Ranns3f844d02017-02-18 00:03:54 -080080
81 # Dest link-layer options should have the router's MAC
82 dll = rx[ICMPv6NDOptDstLLAddr]
83 self.assertEqual(dll.lladdr, intf.local_mac)
84
Neale Rannsdcd6d622017-05-26 02:59:16 -070085 def validate_ns(self, intf, rx, tgt_ip):
86 nsma = in6_getnsma(inet_pton(AF_INET6, tgt_ip))
87 dst_ip = inet_ntop(AF_INET6, nsma)
88
89 # NS is broadcast
Neale Rannsc7b8f202018-04-25 06:34:31 -070090 self.assertEqual(rx[Ether].dst, in6_getnsmac(nsma))
Neale Rannsdcd6d622017-05-26 02:59:16 -070091
92 # and from the router's MAC
93 self.assertEqual(rx[Ether].src, intf.local_mac)
94
95 # the rx'd NS should be addressed to an mcast address
96 # derived from the target address
Paul Vinciguerra978aa642018-11-24 22:19:12 -080097 self.assertEqual(
98 in6_ptop(rx[IPv6].dst), in6_ptop(dst_ip))
Neale Rannsdcd6d622017-05-26 02:59:16 -070099
100 # expect the tgt IP in the NS header
101 ns = rx[ICMPv6ND_NS]
102 self.assertEqual(in6_ptop(ns.tgt), in6_ptop(tgt_ip))
103
104 # packet is from the router's local address
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800105 self.assertEqual(
106 in6_ptop(rx[IPv6].src), intf.local_ip6)
Neale Rannsdcd6d622017-05-26 02:59:16 -0700107
108 # Src link-layer options should have the router's MAC
109 sll = rx[ICMPv6NDOptSrcLLAddr]
110 self.assertEqual(sll.lladdr, intf.local_mac)
111
Neale Ranns3f844d02017-02-18 00:03:54 -0800112 def send_and_expect_ra(self, intf, pkts, remark, dst_ip=None,
113 filter_out_fn=is_ipv6_misc):
114 intf.add_stream(pkts)
Neale Ranns3f844d02017-02-18 00:03:54 -0800115 self.pg_enable_capture(self.pg_interfaces)
116 self.pg_start()
117 rx = intf.get_capture(1, filter_out_fn=filter_out_fn)
118
119 self.assertEqual(len(rx), 1)
120 rx = rx[0]
121 self.validate_ra(intf, rx, dst_ip)
122
Neale Ranns2a3ea492017-04-19 05:24:40 -0700123 def send_and_expect_na(self, intf, pkts, remark, dst_ip=None,
124 tgt_ip=None,
125 filter_out_fn=is_ipv6_misc):
126 intf.add_stream(pkts)
127 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_na(intf, rx, dst_ip, tgt_ip)
134
Neale Rannsdcd6d622017-05-26 02:59:16 -0700135 def send_and_expect_ns(self, tx_intf, rx_intf, pkts, tgt_ip,
136 filter_out_fn=is_ipv6_misc):
137 tx_intf.add_stream(pkts)
138 self.pg_enable_capture(self.pg_interfaces)
139 self.pg_start()
140 rx = rx_intf.get_capture(1, filter_out_fn=filter_out_fn)
141
142 self.assertEqual(len(rx), 1)
143 rx = rx[0]
144 self.validate_ns(rx_intf, rx, tgt_ip)
145
Neale Rannsdcd6d622017-05-26 02:59:16 -0700146 def verify_ip(self, rx, smac, dmac, sip, dip):
147 ether = rx[Ether]
148 self.assertEqual(ether.dst, dmac)
149 self.assertEqual(ether.src, smac)
150
151 ip = rx[IPv6]
152 self.assertEqual(ip.src, sip)
153 self.assertEqual(ip.dst, dip)
154
Neale Ranns3f844d02017-02-18 00:03:54 -0800155
156class TestIPv6(TestIPv6ND):
Damjan Marionf56b77a2016-10-03 19:44:57 +0200157 """ IPv6 Test Case """
158
159 @classmethod
160 def setUpClass(cls):
161 super(TestIPv6, cls).setUpClass()
162
Klement Sekeraf62ae122016-10-11 11:47:09 +0200163 def setUp(self):
Matej Klotton86d87c42016-11-11 11:38:55 +0100164 """
165 Perform test setup before test case.
166
167 **Config:**
168 - create 3 pg interfaces
169 - untagged pg0 interface
170 - Dot1Q subinterface on pg1
171 - Dot1AD subinterface on pg2
172 - setup interfaces:
173 - put it into UP state
174 - set IPv6 addresses
175 - resolve neighbor address using NDP
176 - configure 200 fib entries
177
178 :ivar list interfaces: pg interfaces and subinterfaces.
179 :ivar dict flows: IPv4 packet flows in test.
Matej Klotton86d87c42016-11-11 11:38:55 +0100180
181 *TODO:* Create AD sub interface
182 """
Klement Sekeraf62ae122016-10-11 11:47:09 +0200183 super(TestIPv6, self).setUp()
Damjan Marionf56b77a2016-10-03 19:44:57 +0200184
Klement Sekeraf62ae122016-10-11 11:47:09 +0200185 # create 3 pg interfaces
186 self.create_pg_interfaces(range(3))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200187
Klement Sekeraf62ae122016-10-11 11:47:09 +0200188 # create 2 subinterfaces for p1 and pg2
189 self.sub_interfaces = [
190 VppDot1QSubint(self, self.pg1, 100),
Matej Klotton86d87c42016-11-11 11:38:55 +0100191 VppDot1QSubint(self, self.pg2, 200)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200192 # TODO: VppDot1ADSubint(self, self.pg2, 200, 300, 400)
Matej Klotton86d87c42016-11-11 11:38:55 +0100193 ]
Damjan Marionf56b77a2016-10-03 19:44:57 +0200194
Klement Sekeraf62ae122016-10-11 11:47:09 +0200195 # packet flows mapping pg0 -> pg1.sub, pg2.sub, etc.
196 self.flows = dict()
197 self.flows[self.pg0] = [self.pg1.sub_if, self.pg2.sub_if]
198 self.flows[self.pg1.sub_if] = [self.pg0, self.pg2.sub_if]
199 self.flows[self.pg2.sub_if] = [self.pg0, self.pg1.sub_if]
Damjan Marionf56b77a2016-10-03 19:44:57 +0200200
Klement Sekeraf62ae122016-10-11 11:47:09 +0200201 # packet sizes
Jan Geletye6c78ee2018-06-26 12:24:03 +0200202 self.pg_if_packet_sizes = [64, 1500, 9020]
Damjan Marionf56b77a2016-10-03 19:44:57 +0200203
Klement Sekeraf62ae122016-10-11 11:47:09 +0200204 self.interfaces = list(self.pg_interfaces)
205 self.interfaces.extend(self.sub_interfaces)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200206
Klement Sekeraf62ae122016-10-11 11:47:09 +0200207 # setup all interfaces
208 for i in self.interfaces:
209 i.admin_up()
210 i.config_ip6()
211 i.resolve_ndp()
212
Matej Klotton86d87c42016-11-11 11:38:55 +0100213 # config 2M FIB entries
Klement Sekeraf62ae122016-10-11 11:47:09 +0200214 self.config_fib_entries(200)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200215
216 def tearDown(self):
Matej Klotton86d87c42016-11-11 11:38:55 +0100217 """Run standard test teardown and log ``show ip6 neighbors``."""
Neale Ranns744902e2017-08-14 10:35:44 -0700218 for i in self.interfaces:
Neale Ranns75152282017-01-09 01:00:45 -0800219 i.unconfig_ip6()
220 i.ip6_disable()
221 i.admin_down()
Neale Ranns744902e2017-08-14 10:35:44 -0700222 for i in self.sub_interfaces:
Neale Ranns75152282017-01-09 01:00:45 -0800223 i.remove_vpp_config()
224
Klement Sekeraf62ae122016-10-11 11:47:09 +0200225 super(TestIPv6, self).tearDown()
226 if not self.vpp_dead:
Matej Klotton86d87c42016-11-11 11:38:55 +0100227 self.logger.info(self.vapi.cli("show ip6 neighbors"))
Klement Sekeraf62ae122016-10-11 11:47:09 +0200228 # info(self.vapi.cli("show ip6 fib")) # many entries
Damjan Marionf56b77a2016-10-03 19:44:57 +0200229
Klement Sekeraf62ae122016-10-11 11:47:09 +0200230 def config_fib_entries(self, count):
Matej Klotton86d87c42016-11-11 11:38:55 +0100231 """For each interface add to the FIB table *count* routes to
232 "fd02::1/128" destination with interface's local address as next-hop
233 address.
234
235 :param int count: Number of FIB entries.
236
237 - *TODO:* check if the next-hop address shouldn't be remote address
238 instead of local address.
239 """
Klement Sekeraf62ae122016-10-11 11:47:09 +0200240 n_int = len(self.interfaces)
241 percent = 0
242 counter = 0.0
Neale Ranns3f844d02017-02-18 00:03:54 -0800243 dest_addr = inet_pton(AF_INET6, "fd02::1")
Klement Sekeraf62ae122016-10-11 11:47:09 +0200244 dest_addr_len = 128
245 for i in self.interfaces:
246 next_hop_address = i.local_ip6n
247 for j in range(count / n_int):
248 self.vapi.ip_add_del_route(
249 dest_addr, dest_addr_len, next_hop_address, is_ipv6=1)
Matej Klotton86d87c42016-11-11 11:38:55 +0100250 counter += 1
Klement Sekeraf62ae122016-10-11 11:47:09 +0200251 if counter / count * 100 > percent:
Matej Klotton86d87c42016-11-11 11:38:55 +0100252 self.logger.info("Configure %d FIB entries .. %d%% done" %
Klement Sekera7bb873a2016-11-18 07:38:42 +0100253 (count, percent))
Matej Klotton86d87c42016-11-11 11:38:55 +0100254 percent += 1
Damjan Marionf56b77a2016-10-03 19:44:57 +0200255
Jan Geletye6c78ee2018-06-26 12:24:03 +0200256 def modify_packet(self, src_if, packet_size, pkt):
257 """Add load, set destination IP and extend packet to required packet
258 size for defined interface.
259
260 :param VppInterface src_if: Interface to create packet for.
261 :param int packet_size: Required packet size.
262 :param Scapy pkt: Packet to be modified.
263 """
264 dst_if_idx = packet_size / 10 % 2
265 dst_if = self.flows[src_if][dst_if_idx]
266 info = self.create_packet_info(src_if, dst_if)
267 payload = self.info_to_payload(info)
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800268 p = pkt / Raw(payload)
Jan Geletye6c78ee2018-06-26 12:24:03 +0200269 p[IPv6].dst = dst_if.remote_ip6
270 info.data = p.copy()
271 if isinstance(src_if, VppSubInterface):
272 p = src_if.add_dot1_layer(p)
273 self.extend_packet(p, packet_size)
274
275 return p
276
277 def create_stream(self, src_if):
Matej Klotton86d87c42016-11-11 11:38:55 +0100278 """Create input packet stream for defined interface.
279
280 :param VppInterface src_if: Interface to create packet stream for.
Matej Klotton86d87c42016-11-11 11:38:55 +0100281 """
Jan Geletye6c78ee2018-06-26 12:24:03 +0200282 hdr_ext = 4 if isinstance(src_if, VppSubInterface) else 0
283 pkt_tmpl = (Ether(dst=src_if.local_mac, src=src_if.remote_mac) /
284 IPv6(src=src_if.remote_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800285 inet6.UDP(sport=1234, dport=1234))
Jan Geletye6c78ee2018-06-26 12:24:03 +0200286
287 pkts = [self.modify_packet(src_if, i, pkt_tmpl)
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -0800288 for i in moves.range(self.pg_if_packet_sizes[0],
289 self.pg_if_packet_sizes[1], 10)]
Jan Geletye6c78ee2018-06-26 12:24:03 +0200290 pkts_b = [self.modify_packet(src_if, i, pkt_tmpl)
Paul Vinciguerraa6fe4632018-11-25 11:21:50 -0800291 for i in moves.range(self.pg_if_packet_sizes[1] + hdr_ext,
292 self.pg_if_packet_sizes[2] + hdr_ext,
293 50)]
Jan Geletye6c78ee2018-06-26 12:24:03 +0200294 pkts.extend(pkts_b)
295
Damjan Marionf56b77a2016-10-03 19:44:57 +0200296 return pkts
297
Klement Sekeraf62ae122016-10-11 11:47:09 +0200298 def verify_capture(self, dst_if, capture):
Matej Klotton86d87c42016-11-11 11:38:55 +0100299 """Verify captured input packet stream for defined interface.
300
301 :param VppInterface dst_if: Interface to verify captured packet stream
302 for.
303 :param list capture: Captured packet stream.
304 """
305 self.logger.info("Verifying capture on interface %s" % dst_if.name)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200306 last_info = dict()
Damjan Marionf56b77a2016-10-03 19:44:57 +0200307 for i in self.interfaces:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200308 last_info[i.sw_if_index] = None
309 is_sub_if = False
310 dst_sw_if_index = dst_if.sw_if_index
311 if hasattr(dst_if, 'parent'):
312 is_sub_if = True
Damjan Marionf56b77a2016-10-03 19:44:57 +0200313 for packet in capture:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200314 if is_sub_if:
315 # Check VLAN tags and Ethernet header
316 packet = dst_if.remove_dot1_layer(packet)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200317 self.assertTrue(Dot1Q not in packet)
318 try:
319 ip = packet[IPv6]
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800320 udp = packet[inet6.UDP]
Paul Vinciguerraeaea4212019-03-06 11:58:06 -0800321 payload_info = self.payload_to_info(packet[Raw])
Damjan Marionf56b77a2016-10-03 19:44:57 +0200322 packet_index = payload_info.index
Klement Sekeraf62ae122016-10-11 11:47:09 +0200323 self.assertEqual(payload_info.dst, dst_sw_if_index)
Klement Sekerada505f62017-01-04 12:58:53 +0100324 self.logger.debug(
325 "Got packet on port %s: src=%u (id=%u)" %
326 (dst_if.name, payload_info.src, packet_index))
Klement Sekeraf62ae122016-10-11 11:47:09 +0200327 next_info = self.get_next_packet_info_for_interface2(
328 payload_info.src, dst_sw_if_index,
329 last_info[payload_info.src])
330 last_info[payload_info.src] = next_info
Damjan Marionf56b77a2016-10-03 19:44:57 +0200331 self.assertTrue(next_info is not None)
332 self.assertEqual(packet_index, next_info.index)
333 saved_packet = next_info.data
334 # Check standard fields
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800335 self.assertEqual(
336 ip.src, saved_packet[IPv6].src)
337 self.assertEqual(
338 ip.dst, saved_packet[IPv6].dst)
339 self.assertEqual(
340 udp.sport, saved_packet[inet6.UDP].sport)
341 self.assertEqual(
342 udp.dport, saved_packet[inet6.UDP].dport)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200343 except:
Klement Sekera7bb873a2016-11-18 07:38:42 +0100344 self.logger.error(ppp("Unexpected or invalid packet:", packet))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200345 raise
346 for i in self.interfaces:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200347 remaining_packet = self.get_next_packet_info_for_interface2(
348 i.sw_if_index, dst_sw_if_index, last_info[i.sw_if_index])
Klement Sekera7bb873a2016-11-18 07:38:42 +0100349 self.assertTrue(remaining_packet is None,
350 "Interface %s: Packet expected from interface %s "
351 "didn't arrive" % (dst_if.name, i.name))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200352
353 def test_fib(self):
Matej Klotton86d87c42016-11-11 11:38:55 +0100354 """ IPv6 FIB test
355
356 Test scenario:
357 - Create IPv6 stream for pg0 interface
358 - Create IPv6 tagged streams for pg1's and pg2's subinterface.
359 - Send and verify received packets on each interface.
360 """
Damjan Marionf56b77a2016-10-03 19:44:57 +0200361
Jan Geletye6c78ee2018-06-26 12:24:03 +0200362 pkts = self.create_stream(self.pg0)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200363 self.pg0.add_stream(pkts)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200364
Klement Sekeraf62ae122016-10-11 11:47:09 +0200365 for i in self.sub_interfaces:
Jan Geletye6c78ee2018-06-26 12:24:03 +0200366 pkts = self.create_stream(i)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200367 i.parent.add_stream(pkts)
368
369 self.pg_enable_capture(self.pg_interfaces)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200370 self.pg_start()
371
Klement Sekeraf62ae122016-10-11 11:47:09 +0200372 pkts = self.pg0.get_capture()
373 self.verify_capture(self.pg0, pkts)
374
375 for i in self.sub_interfaces:
376 pkts = i.parent.get_capture()
377 self.verify_capture(i, pkts)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200378
Neale Ranns75152282017-01-09 01:00:45 -0800379 def test_ns(self):
Klement Sekerada505f62017-01-04 12:58:53 +0100380 """ IPv6 Neighbour Solicitation Exceptions
Neale Ranns75152282017-01-09 01:00:45 -0800381
Klement Sekerada505f62017-01-04 12:58:53 +0100382 Test scenario:
Neale Ranns75152282017-01-09 01:00:45 -0800383 - Send an NS Sourced from an address not covered by the link sub-net
384 - Send an NS to an mcast address the router has not joined
385 - Send NS for a target address the router does not onn.
386 """
387
388 #
389 # An NS from a non link source address
390 #
Neale Ranns3f844d02017-02-18 00:03:54 -0800391 nsma = in6_getnsma(inet_pton(AF_INET6, self.pg0.local_ip6))
392 d = inet_ntop(AF_INET6, nsma)
Neale Ranns75152282017-01-09 01:00:45 -0800393
394 p = (Ether(dst=in6_getnsmac(nsma)) /
395 IPv6(dst=d, src="2002::2") /
396 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800397 ICMPv6NDOptSrcLLAddr(
398 lladdr=self.pg0.remote_mac))
Neale Ranns75152282017-01-09 01:00:45 -0800399 pkts = [p]
400
Klement Sekerada505f62017-01-04 12:58:53 +0100401 self.send_and_assert_no_replies(
402 self.pg0, pkts,
403 "No response to NS source by address not on sub-net")
Neale Ranns75152282017-01-09 01:00:45 -0800404
405 #
Klement Sekerada505f62017-01-04 12:58:53 +0100406 # An NS for sent to a solicited mcast group the router is
407 # not a member of FAILS
Neale Ranns75152282017-01-09 01:00:45 -0800408 #
409 if 0:
Neale Ranns3f844d02017-02-18 00:03:54 -0800410 nsma = in6_getnsma(inet_pton(AF_INET6, "fd::ffff"))
411 d = inet_ntop(AF_INET6, nsma)
Neale Ranns75152282017-01-09 01:00:45 -0800412
413 p = (Ether(dst=in6_getnsmac(nsma)) /
414 IPv6(dst=d, src=self.pg0.remote_ip6) /
415 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800416 ICMPv6NDOptSrcLLAddr(
417 lladdr=self.pg0.remote_mac))
Neale Ranns75152282017-01-09 01:00:45 -0800418 pkts = [p]
419
Klement Sekerada505f62017-01-04 12:58:53 +0100420 self.send_and_assert_no_replies(
421 self.pg0, pkts,
422 "No response to NS sent to unjoined mcast address")
Neale Ranns75152282017-01-09 01:00:45 -0800423
424 #
425 # An NS whose target address is one the router does not own
426 #
Neale Ranns3f844d02017-02-18 00:03:54 -0800427 nsma = in6_getnsma(inet_pton(AF_INET6, self.pg0.local_ip6))
428 d = inet_ntop(AF_INET6, nsma)
Neale Ranns75152282017-01-09 01:00:45 -0800429
430 p = (Ether(dst=in6_getnsmac(nsma)) /
431 IPv6(dst=d, src=self.pg0.remote_ip6) /
432 ICMPv6ND_NS(tgt="fd::ffff") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800433 ICMPv6NDOptSrcLLAddr(
434 lladdr=self.pg0.remote_mac))
Neale Ranns75152282017-01-09 01:00:45 -0800435 pkts = [p]
436
437 self.send_and_assert_no_replies(self.pg0, pkts,
438 "No response to NS for unknown target")
439
Neale Rannsb3b2de72017-03-08 05:17:22 -0800440 #
441 # A neighbor entry that has no associated FIB-entry
442 #
443 self.pg0.generate_remote_hosts(4)
444 nd_entry = VppNeighbor(self,
445 self.pg0.sw_if_index,
446 self.pg0.remote_hosts[2].mac,
447 self.pg0.remote_hosts[2].ip6,
Neale Rannsb3b2de72017-03-08 05:17:22 -0800448 is_no_fib_entry=1)
449 nd_entry.add_vpp_config()
450
451 #
452 # check we have the neighbor, but no route
453 #
454 self.assertTrue(find_nbr(self,
455 self.pg0.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700456 self.pg0._remote_hosts[2].ip6))
Neale Rannsb3b2de72017-03-08 05:17:22 -0800457 self.assertFalse(find_route(self,
458 self.pg0._remote_hosts[2].ip6,
459 128,
460 inet=AF_INET6))
461
Neale Ranns2a3ea492017-04-19 05:24:40 -0700462 #
463 # send an NS from a link local address to the interface's global
464 # address
465 #
466 p = (Ether(dst=in6_getnsmac(nsma), src=self.pg0.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800467 IPv6(
468 dst=d, src=self.pg0._remote_hosts[2].ip6_ll) /
Neale Ranns2a3ea492017-04-19 05:24:40 -0700469 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800470 ICMPv6NDOptSrcLLAddr(
471 lladdr=self.pg0.remote_mac))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700472
473 self.send_and_expect_na(self.pg0, p,
474 "NS from link-local",
475 dst_ip=self.pg0._remote_hosts[2].ip6_ll,
476 tgt_ip=self.pg0.local_ip6)
477
478 #
479 # we should have learned an ND entry for the peer's link-local
480 # but not inserted a route to it in the FIB
481 #
482 self.assertTrue(find_nbr(self,
483 self.pg0.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700484 self.pg0._remote_hosts[2].ip6_ll))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700485 self.assertFalse(find_route(self,
486 self.pg0._remote_hosts[2].ip6_ll,
487 128,
488 inet=AF_INET6))
489
490 #
491 # An NS to the router's own Link-local
492 #
493 p = (Ether(dst=in6_getnsmac(nsma), src=self.pg0.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800494 IPv6(
495 dst=d, src=self.pg0._remote_hosts[3].ip6_ll) /
Neale Ranns2a3ea492017-04-19 05:24:40 -0700496 ICMPv6ND_NS(tgt=self.pg0.local_ip6_ll) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800497 ICMPv6NDOptSrcLLAddr(
498 lladdr=self.pg0.remote_mac))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700499
500 self.send_and_expect_na(self.pg0, p,
501 "NS to/from link-local",
502 dst_ip=self.pg0._remote_hosts[3].ip6_ll,
503 tgt_ip=self.pg0.local_ip6_ll)
504
505 #
506 # we should have learned an ND entry for the peer's link-local
507 # but not inserted a route to it in the FIB
508 #
509 self.assertTrue(find_nbr(self,
510 self.pg0.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700511 self.pg0._remote_hosts[3].ip6_ll))
Neale Ranns2a3ea492017-04-19 05:24:40 -0700512 self.assertFalse(find_route(self,
513 self.pg0._remote_hosts[3].ip6_ll,
514 128,
515 inet=AF_INET6))
516
Neale Rannsdcd6d622017-05-26 02:59:16 -0700517 def test_ns_duplicates(self):
Neale Rannsda78f952017-05-24 09:15:43 -0700518 """ ND Duplicates"""
Neale Rannsdcd6d622017-05-26 02:59:16 -0700519
520 #
521 # Generate some hosts on the LAN
522 #
523 self.pg1.generate_remote_hosts(3)
524
525 #
526 # Add host 1 on pg1 and pg2
527 #
528 ns_pg1 = VppNeighbor(self,
529 self.pg1.sw_if_index,
530 self.pg1.remote_hosts[1].mac,
Neale Ranns37029302018-08-10 05:30:06 -0700531 self.pg1.remote_hosts[1].ip6)
Neale Rannsdcd6d622017-05-26 02:59:16 -0700532 ns_pg1.add_vpp_config()
533 ns_pg2 = VppNeighbor(self,
534 self.pg2.sw_if_index,
535 self.pg2.remote_mac,
Neale Ranns37029302018-08-10 05:30:06 -0700536 self.pg1.remote_hosts[1].ip6)
Neale Rannsdcd6d622017-05-26 02:59:16 -0700537 ns_pg2.add_vpp_config()
538
539 #
540 # IP packet destined for pg1 remote host arrives on pg1 again.
541 #
542 p = (Ether(dst=self.pg0.local_mac,
543 src=self.pg0.remote_mac) /
544 IPv6(src=self.pg0.remote_ip6,
545 dst=self.pg1.remote_hosts[1].ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800546 inet6.UDP(sport=1234, dport=1234) /
Neale Rannsdcd6d622017-05-26 02:59:16 -0700547 Raw())
548
549 self.pg0.add_stream(p)
550 self.pg_enable_capture(self.pg_interfaces)
551 self.pg_start()
552
553 rx1 = self.pg1.get_capture(1)
554
555 self.verify_ip(rx1[0],
556 self.pg1.local_mac,
557 self.pg1.remote_hosts[1].mac,
558 self.pg0.remote_ip6,
559 self.pg1.remote_hosts[1].ip6)
560
561 #
562 # remove the duplicate on pg1
Neale Rannsda78f952017-05-24 09:15:43 -0700563 # packet stream shoud generate NSs out of pg1
Neale Rannsdcd6d622017-05-26 02:59:16 -0700564 #
565 ns_pg1.remove_vpp_config()
566
567 self.send_and_expect_ns(self.pg0, self.pg1,
568 p, self.pg1.remote_hosts[1].ip6)
569
570 #
571 # Add it back
572 #
573 ns_pg1.add_vpp_config()
574
575 self.pg0.add_stream(p)
576 self.pg_enable_capture(self.pg_interfaces)
577 self.pg_start()
578
579 rx1 = self.pg1.get_capture(1)
580
581 self.verify_ip(rx1[0],
582 self.pg1.local_mac,
583 self.pg1.remote_hosts[1].mac,
584 self.pg0.remote_ip6,
585 self.pg1.remote_hosts[1].ip6)
586
Neale Ranns87df12d2017-02-18 08:16:41 -0800587 def validate_ra(self, intf, rx, dst_ip=None, mtu=9000, pi_opt=None):
Neale Ranns32e1c012016-11-22 17:07:28 +0000588 if not dst_ip:
589 dst_ip = intf.remote_ip6
Neale Ranns75152282017-01-09 01:00:45 -0800590
Neale Ranns5737d882017-02-03 06:14:49 -0800591 # unicasted packets must come to the unicast mac
Neale Ranns32e1c012016-11-22 17:07:28 +0000592 self.assertEqual(rx[Ether].dst, intf.remote_mac)
593
594 # and from the router's MAC
595 self.assertEqual(rx[Ether].src, intf.local_mac)
Neale Ranns75152282017-01-09 01:00:45 -0800596
597 # the rx'd RA should be addressed to the sender's source
598 self.assertTrue(rx.haslayer(ICMPv6ND_RA))
599 self.assertEqual(in6_ptop(rx[IPv6].dst),
Neale Ranns32e1c012016-11-22 17:07:28 +0000600 in6_ptop(dst_ip))
Neale Ranns75152282017-01-09 01:00:45 -0800601
602 # and come from the router's link local
603 self.assertTrue(in6_islladdr(rx[IPv6].src))
604 self.assertEqual(in6_ptop(rx[IPv6].src),
605 in6_ptop(mk_ll_addr(intf.local_mac)))
606
Neale Ranns87df12d2017-02-18 08:16:41 -0800607 # it should contain the links MTU
608 ra = rx[ICMPv6ND_RA]
609 self.assertEqual(ra[ICMPv6NDOptMTU].mtu, mtu)
610
611 # it should contain the source's link layer address option
612 sll = ra[ICMPv6NDOptSrcLLAddr]
613 self.assertEqual(sll.lladdr, intf.local_mac)
614
615 if not pi_opt:
616 # the RA should not contain prefix information
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800617 self.assertFalse(ra.haslayer(
618 ICMPv6NDOptPrefixInfo))
Neale Ranns87df12d2017-02-18 08:16:41 -0800619 else:
620 raos = rx.getlayer(ICMPv6NDOptPrefixInfo, 1)
621
622 # the options are nested in the scapy packet in way that i cannot
623 # decipher how to decode. this 1st layer of option always returns
624 # nested classes, so a direct obj1=obj2 comparison always fails.
625 # however, the getlayer(.., 2) does give one instnace.
626 # so we cheat here and construct a new opt instnace for comparison
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800627 rd = ICMPv6NDOptPrefixInfo(
628 prefixlen=raos.prefixlen,
629 prefix=raos.prefix,
630 L=raos.L,
631 A=raos.A)
Neale Ranns87df12d2017-02-18 08:16:41 -0800632 if type(pi_opt) is list:
633 for ii in range(len(pi_opt)):
634 self.assertEqual(pi_opt[ii], rd)
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800635 rd = rx.getlayer(
636 ICMPv6NDOptPrefixInfo, ii + 2)
Neale Ranns87df12d2017-02-18 08:16:41 -0800637 else:
638 self.assertEqual(pi_opt, raos)
639
Neale Ranns32e1c012016-11-22 17:07:28 +0000640 def send_and_expect_ra(self, intf, pkts, remark, dst_ip=None,
Neale Ranns87df12d2017-02-18 08:16:41 -0800641 filter_out_fn=is_ipv6_misc,
642 opt=None):
Neale Ranns32e1c012016-11-22 17:07:28 +0000643 intf.add_stream(pkts)
Neale Ranns32e1c012016-11-22 17:07:28 +0000644 self.pg_enable_capture(self.pg_interfaces)
645 self.pg_start()
646 rx = intf.get_capture(1, filter_out_fn=filter_out_fn)
647
648 self.assertEqual(len(rx), 1)
649 rx = rx[0]
Neale Ranns87df12d2017-02-18 08:16:41 -0800650 self.validate_ra(intf, rx, dst_ip, pi_opt=opt)
Neale Ranns32e1c012016-11-22 17:07:28 +0000651
Neale Ranns75152282017-01-09 01:00:45 -0800652 def test_rs(self):
Klement Sekerada505f62017-01-04 12:58:53 +0100653 """ IPv6 Router Solicitation Exceptions
Neale Ranns75152282017-01-09 01:00:45 -0800654
Klement Sekerada505f62017-01-04 12:58:53 +0100655 Test scenario:
Neale Ranns75152282017-01-09 01:00:45 -0800656 """
657
658 #
Klement Sekerada505f62017-01-04 12:58:53 +0100659 # Before we begin change the IPv6 RA responses to use the unicast
660 # address - that way we will not confuse them with the periodic
661 # RAs which go to the mcast address
Neale Ranns32e1c012016-11-22 17:07:28 +0000662 # Sit and wait for the first periodic RA.
663 #
664 # TODO
Neale Ranns75152282017-01-09 01:00:45 -0800665 #
666 self.pg0.ip6_ra_config(send_unicast=1)
667
668 #
669 # An RS from a link source address
670 # - expect an RA in return
671 #
672 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800673 IPv6(
674 dst=self.pg0.local_ip6, src=self.pg0.remote_ip6) /
Neale Ranns75152282017-01-09 01:00:45 -0800675 ICMPv6ND_RS())
676 pkts = [p]
677 self.send_and_expect_ra(self.pg0, pkts, "Genuine RS")
678
679 #
680 # For the next RS sent the RA should be rate limited
681 #
682 self.send_and_assert_no_replies(self.pg0, pkts, "RA rate limited")
683
684 #
685 # When we reconfiure the IPv6 RA config, we reset the RA rate limiting,
Klement Sekerada505f62017-01-04 12:58:53 +0100686 # so we need to do this before each test below so as not to drop
687 # packets for rate limiting reasons. Test this works here.
Neale Ranns75152282017-01-09 01:00:45 -0800688 #
689 self.pg0.ip6_ra_config(send_unicast=1)
690 self.send_and_expect_ra(self.pg0, pkts, "Rate limit reset RS")
691
692 #
693 # An RS sent from a non-link local source
694 #
695 self.pg0.ip6_ra_config(send_unicast=1)
696 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800697 IPv6(dst=self.pg0.local_ip6,
698 src="2002::ffff") /
Neale Ranns75152282017-01-09 01:00:45 -0800699 ICMPv6ND_RS())
700 pkts = [p]
701 self.send_and_assert_no_replies(self.pg0, pkts,
702 "RS from non-link source")
703
704 #
705 # Source an RS from a link local address
706 #
707 self.pg0.ip6_ra_config(send_unicast=1)
708 ll = mk_ll_addr(self.pg0.remote_mac)
709 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
710 IPv6(dst=self.pg0.local_ip6, src=ll) /
711 ICMPv6ND_RS())
712 pkts = [p]
Neale Ranns32e1c012016-11-22 17:07:28 +0000713 self.send_and_expect_ra(self.pg0, pkts,
714 "RS sourced from link-local",
715 dst_ip=ll)
716
717 #
718 # Send the RS multicast
719 #
720 self.pg0.ip6_ra_config(send_unicast=1)
Neale Ranns3f844d02017-02-18 00:03:54 -0800721 dmac = in6_getnsmac(inet_pton(AF_INET6, "ff02::2"))
Neale Ranns32e1c012016-11-22 17:07:28 +0000722 ll = mk_ll_addr(self.pg0.remote_mac)
723 p = (Ether(dst=dmac, src=self.pg0.remote_mac) /
724 IPv6(dst="ff02::2", src=ll) /
725 ICMPv6ND_RS())
726 pkts = [p]
727 self.send_and_expect_ra(self.pg0, pkts,
728 "RS sourced from link-local",
729 dst_ip=ll)
Neale Ranns75152282017-01-09 01:00:45 -0800730
731 #
Klement Sekerada505f62017-01-04 12:58:53 +0100732 # Source from the unspecified address ::. This happens when the RS
733 # is sent before the host has a configured address/sub-net,
734 # i.e. auto-config. Since the sender has no IP address, the reply
735 # comes back mcast - so the capture needs to not filter this.
736 # If we happen to pick up the periodic RA at this point then so be it,
737 # it's not an error.
Neale Ranns75152282017-01-09 01:00:45 -0800738 #
Neale Ranns32e1c012016-11-22 17:07:28 +0000739 self.pg0.ip6_ra_config(send_unicast=1, suppress=1)
740 p = (Ether(dst=dmac, src=self.pg0.remote_mac) /
741 IPv6(dst="ff02::2", src="::") /
Neale Ranns75152282017-01-09 01:00:45 -0800742 ICMPv6ND_RS())
743 pkts = [p]
Neale Ranns32e1c012016-11-22 17:07:28 +0000744 self.send_and_expect_ra(self.pg0, pkts,
745 "RS sourced from unspecified",
746 dst_ip="ff02::1",
747 filter_out_fn=None)
Neale Ranns75152282017-01-09 01:00:45 -0800748
749 #
Neale Ranns87df12d2017-02-18 08:16:41 -0800750 # Configure The RA to announce the links prefix
751 #
Neale Ranns37029302018-08-10 05:30:06 -0700752 self.pg0.ip6_ra_prefix(self.pg0.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800753 self.pg0.local_ip6_prefix_len)
754
755 #
756 # RAs should now contain the prefix information option
757 #
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800758 opt = ICMPv6NDOptPrefixInfo(
759 prefixlen=self.pg0.local_ip6_prefix_len,
760 prefix=self.pg0.local_ip6,
761 L=1,
762 A=1)
Neale Ranns87df12d2017-02-18 08:16:41 -0800763
764 self.pg0.ip6_ra_config(send_unicast=1)
765 ll = mk_ll_addr(self.pg0.remote_mac)
766 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
767 IPv6(dst=self.pg0.local_ip6, src=ll) /
768 ICMPv6ND_RS())
769 self.send_and_expect_ra(self.pg0, p,
770 "RA with prefix-info",
771 dst_ip=ll,
772 opt=opt)
773
774 #
775 # Change the prefix info to not off-link
776 # L-flag is clear
777 #
Neale Ranns37029302018-08-10 05:30:06 -0700778 self.pg0.ip6_ra_prefix(self.pg0.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800779 self.pg0.local_ip6_prefix_len,
780 off_link=1)
781
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800782 opt = ICMPv6NDOptPrefixInfo(
783 prefixlen=self.pg0.local_ip6_prefix_len,
784 prefix=self.pg0.local_ip6,
785 L=0,
786 A=1)
Neale Ranns87df12d2017-02-18 08:16:41 -0800787
788 self.pg0.ip6_ra_config(send_unicast=1)
789 self.send_and_expect_ra(self.pg0, p,
790 "RA with Prefix info with L-flag=0",
791 dst_ip=ll,
792 opt=opt)
793
794 #
795 # Change the prefix info to not off-link, no-autoconfig
796 # L and A flag are clear in the advert
797 #
Neale Ranns37029302018-08-10 05:30:06 -0700798 self.pg0.ip6_ra_prefix(self.pg0.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800799 self.pg0.local_ip6_prefix_len,
800 off_link=1,
801 no_autoconfig=1)
802
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800803 opt = ICMPv6NDOptPrefixInfo(
804 prefixlen=self.pg0.local_ip6_prefix_len,
805 prefix=self.pg0.local_ip6,
806 L=0,
807 A=0)
Neale Ranns87df12d2017-02-18 08:16:41 -0800808
809 self.pg0.ip6_ra_config(send_unicast=1)
810 self.send_and_expect_ra(self.pg0, p,
811 "RA with Prefix info with A & L-flag=0",
812 dst_ip=ll,
813 opt=opt)
814
815 #
816 # Change the flag settings back to the defaults
817 # L and A flag are set in the advert
818 #
Neale Ranns37029302018-08-10 05:30:06 -0700819 self.pg0.ip6_ra_prefix(self.pg0.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800820 self.pg0.local_ip6_prefix_len)
821
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800822 opt = ICMPv6NDOptPrefixInfo(
823 prefixlen=self.pg0.local_ip6_prefix_len,
824 prefix=self.pg0.local_ip6,
825 L=1,
826 A=1)
Neale Ranns87df12d2017-02-18 08:16:41 -0800827
828 self.pg0.ip6_ra_config(send_unicast=1)
829 self.send_and_expect_ra(self.pg0, p,
830 "RA with Prefix info",
831 dst_ip=ll,
832 opt=opt)
833
834 #
835 # Change the prefix info to not off-link, no-autoconfig
836 # L and A flag are clear in the advert
837 #
Neale Ranns37029302018-08-10 05:30:06 -0700838 self.pg0.ip6_ra_prefix(self.pg0.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800839 self.pg0.local_ip6_prefix_len,
840 off_link=1,
841 no_autoconfig=1)
842
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800843 opt = ICMPv6NDOptPrefixInfo(
844 prefixlen=self.pg0.local_ip6_prefix_len,
845 prefix=self.pg0.local_ip6,
846 L=0,
847 A=0)
Neale Ranns87df12d2017-02-18 08:16:41 -0800848
849 self.pg0.ip6_ra_config(send_unicast=1)
850 self.send_and_expect_ra(self.pg0, p,
851 "RA with Prefix info with A & L-flag=0",
852 dst_ip=ll,
853 opt=opt)
854
855 #
856 # Use the reset to defults option to revert to defaults
857 # L and A flag are clear in the advert
858 #
Neale Ranns37029302018-08-10 05:30:06 -0700859 self.pg0.ip6_ra_prefix(self.pg0.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800860 self.pg0.local_ip6_prefix_len,
861 use_default=1)
862
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800863 opt = ICMPv6NDOptPrefixInfo(
864 prefixlen=self.pg0.local_ip6_prefix_len,
865 prefix=self.pg0.local_ip6,
866 L=1,
867 A=1)
Neale Ranns87df12d2017-02-18 08:16:41 -0800868
869 self.pg0.ip6_ra_config(send_unicast=1)
870 self.send_and_expect_ra(self.pg0, p,
871 "RA with Prefix reverted to defaults",
872 dst_ip=ll,
873 opt=opt)
874
875 #
876 # Advertise Another prefix. With no L-flag/A-flag
877 #
Neale Ranns37029302018-08-10 05:30:06 -0700878 self.pg0.ip6_ra_prefix(self.pg1.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800879 self.pg1.local_ip6_prefix_len,
880 off_link=1,
881 no_autoconfig=1)
882
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800883 opt = [ICMPv6NDOptPrefixInfo(
884 prefixlen=self.pg0.local_ip6_prefix_len,
885 prefix=self.pg0.local_ip6,
886 L=1,
887 A=1),
888 ICMPv6NDOptPrefixInfo(
889 prefixlen=self.pg1.local_ip6_prefix_len,
890 prefix=self.pg1.local_ip6,
891 L=0,
892 A=0)]
Neale Ranns87df12d2017-02-18 08:16:41 -0800893
894 self.pg0.ip6_ra_config(send_unicast=1)
895 ll = mk_ll_addr(self.pg0.remote_mac)
896 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
897 IPv6(dst=self.pg0.local_ip6, src=ll) /
898 ICMPv6ND_RS())
899 self.send_and_expect_ra(self.pg0, p,
900 "RA with multiple Prefix infos",
901 dst_ip=ll,
902 opt=opt)
903
904 #
905 # Remove the first refix-info - expect the second is still in the
906 # advert
907 #
Neale Ranns37029302018-08-10 05:30:06 -0700908 self.pg0.ip6_ra_prefix(self.pg0.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800909 self.pg0.local_ip6_prefix_len,
910 is_no=1)
911
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800912 opt = ICMPv6NDOptPrefixInfo(
913 prefixlen=self.pg1.local_ip6_prefix_len,
914 prefix=self.pg1.local_ip6,
915 L=0,
916 A=0)
Neale Ranns87df12d2017-02-18 08:16:41 -0800917
918 self.pg0.ip6_ra_config(send_unicast=1)
919 self.send_and_expect_ra(self.pg0, p,
920 "RA with Prefix reverted to defaults",
921 dst_ip=ll,
922 opt=opt)
923
924 #
925 # Remove the second prefix-info - expect no prefix-info i nthe adverts
926 #
Neale Ranns37029302018-08-10 05:30:06 -0700927 self.pg0.ip6_ra_prefix(self.pg1.local_ip6,
Neale Ranns87df12d2017-02-18 08:16:41 -0800928 self.pg1.local_ip6_prefix_len,
929 is_no=1)
930
931 self.pg0.ip6_ra_config(send_unicast=1)
932 self.send_and_expect_ra(self.pg0, p,
933 "RA with Prefix reverted to defaults",
934 dst_ip=ll)
935
936 #
Neale Ranns5737d882017-02-03 06:14:49 -0800937 # Reset the periodic advertisements back to default values
Neale Ranns75152282017-01-09 01:00:45 -0800938 #
Neale Ranns32e1c012016-11-22 17:07:28 +0000939 self.pg0.ip6_ra_config(no=1, suppress=1, send_unicast=0)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200940
Neale Ranns3f844d02017-02-18 00:03:54 -0800941
Jan Geletye6c78ee2018-06-26 12:24:03 +0200942class TestICMPv6Echo(VppTestCase):
943 """ ICMPv6 Echo Test Case """
944
945 def setUp(self):
946 super(TestICMPv6Echo, self).setUp()
947
948 # create 1 pg interface
949 self.create_pg_interfaces(range(1))
950
951 for i in self.pg_interfaces:
952 i.admin_up()
953 i.config_ip6()
954 i.resolve_ndp()
955
956 def tearDown(self):
957 super(TestICMPv6Echo, self).tearDown()
958 for i in self.pg_interfaces:
959 i.unconfig_ip6()
960 i.ip6_disable()
961 i.admin_down()
962
963 def test_icmpv6_echo(self):
964 """ VPP replies to ICMPv6 Echo Request
965
966 Test scenario:
967
968 - Receive ICMPv6 Echo Request message on pg0 interface.
969 - Check outgoing ICMPv6 Echo Reply message on pg0 interface.
970 """
971
972 icmpv6_id = 0xb
973 icmpv6_seq = 5
974 icmpv6_data = '\x0a' * 18
975 p_echo_request = (Ether(src=self.pg0.remote_mac,
976 dst=self.pg0.local_mac) /
977 IPv6(src=self.pg0.remote_ip6,
978 dst=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -0800979 ICMPv6EchoRequest(
980 id=icmpv6_id,
981 seq=icmpv6_seq,
982 data=icmpv6_data))
Jan Geletye6c78ee2018-06-26 12:24:03 +0200983
984 self.pg0.add_stream(p_echo_request)
985 self.pg_enable_capture(self.pg_interfaces)
986 self.pg_start()
987
988 rx = self.pg0.get_capture(1)
989 rx = rx[0]
990 ether = rx[Ether]
991 ipv6 = rx[IPv6]
992 icmpv6 = rx[ICMPv6EchoReply]
993
994 self.assertEqual(ether.src, self.pg0.local_mac)
995 self.assertEqual(ether.dst, self.pg0.remote_mac)
996
997 self.assertEqual(ipv6.src, self.pg0.local_ip6)
998 self.assertEqual(ipv6.dst, self.pg0.remote_ip6)
999
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001000 self.assertEqual(
1001 icmp6types[icmpv6.type], "Echo Reply")
Jan Geletye6c78ee2018-06-26 12:24:03 +02001002 self.assertEqual(icmpv6.id, icmpv6_id)
1003 self.assertEqual(icmpv6.seq, icmpv6_seq)
1004 self.assertEqual(icmpv6.data, icmpv6_data)
1005
1006
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001007class TestIPv6RD(TestIPv6ND):
1008 """ IPv6 Router Discovery Test Case """
1009
1010 @classmethod
1011 def setUpClass(cls):
1012 super(TestIPv6RD, cls).setUpClass()
1013
1014 def setUp(self):
1015 super(TestIPv6RD, self).setUp()
1016
1017 # create 2 pg interfaces
1018 self.create_pg_interfaces(range(2))
1019
1020 self.interfaces = list(self.pg_interfaces)
1021
1022 # setup all interfaces
1023 for i in self.interfaces:
1024 i.admin_up()
1025 i.config_ip6()
1026
1027 def tearDown(self):
Neale Ranns744902e2017-08-14 10:35:44 -07001028 for i in self.interfaces:
1029 i.unconfig_ip6()
1030 i.admin_down()
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001031 super(TestIPv6RD, self).tearDown()
1032
1033 def test_rd_send_router_solicitation(self):
1034 """ Verify router solicitation packets """
1035
1036 count = 2
1037 self.pg_enable_capture(self.pg_interfaces)
1038 self.pg_start()
1039 self.vapi.ip6nd_send_router_solicitation(self.pg1.sw_if_index,
1040 mrc=count)
1041 rx_list = self.pg1.get_capture(count, timeout=3)
1042 self.assertEqual(len(rx_list), count)
1043 for packet in rx_list:
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001044 self.assertEqual(packet.haslayer(IPv6), 1)
1045 self.assertEqual(packet[IPv6].haslayer(
1046 ICMPv6ND_RS), 1)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001047 dst = ip6_normalize(packet[IPv6].dst)
1048 dst2 = ip6_normalize("ff02::2")
1049 self.assert_equal(dst, dst2)
1050 src = ip6_normalize(packet[IPv6].src)
1051 src2 = ip6_normalize(self.pg1.local_ip6_ll)
1052 self.assert_equal(src, src2)
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001053 self.assertTrue(
1054 bool(packet[ICMPv6ND_RS].haslayer(
1055 ICMPv6NDOptSrcLLAddr)))
1056 self.assert_equal(
1057 packet[ICMPv6NDOptSrcLLAddr].lladdr,
1058 self.pg1.local_mac)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001059
1060 def verify_prefix_info(self, reported_prefix, prefix_option):
Neale Ranns37029302018-08-10 05:30:06 -07001061 prefix = IPv6Network(
Paul Vinciguerra1e18eb22018-11-25 16:09:26 -08001062 text_type(prefix_option.getfieldval("prefix") +
1063 "/" +
1064 text_type(prefix_option.getfieldval("prefixlen"))),
Neale Ranns37029302018-08-10 05:30:06 -07001065 strict=False)
1066 self.assert_equal(reported_prefix.prefix.network_address,
1067 prefix.network_address)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001068 L = prefix_option.getfieldval("L")
1069 A = prefix_option.getfieldval("A")
1070 option_flags = (L << 7) | (A << 6)
1071 self.assert_equal(reported_prefix.flags, option_flags)
1072 self.assert_equal(reported_prefix.valid_time,
1073 prefix_option.getfieldval("validlifetime"))
1074 self.assert_equal(reported_prefix.preferred_time,
1075 prefix_option.getfieldval("preferredlifetime"))
1076
1077 def test_rd_receive_router_advertisement(self):
1078 """ Verify events triggered by received RA packets """
1079
1080 self.vapi.want_ip6_ra_events()
1081
1082 prefix_info_1 = ICMPv6NDOptPrefixInfo(
1083 prefix="1::2",
1084 prefixlen=50,
1085 validlifetime=200,
1086 preferredlifetime=500,
1087 L=1,
1088 A=1,
1089 )
1090
1091 prefix_info_2 = ICMPv6NDOptPrefixInfo(
1092 prefix="7::4",
1093 prefixlen=20,
1094 validlifetime=70,
1095 preferredlifetime=1000,
1096 L=1,
1097 A=0,
1098 )
1099
1100 p = (Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
1101 IPv6(dst=self.pg1.local_ip6_ll,
1102 src=mk_ll_addr(self.pg1.remote_mac)) /
1103 ICMPv6ND_RA() /
1104 prefix_info_1 /
1105 prefix_info_2)
1106 self.pg1.add_stream([p])
1107 self.pg_start()
1108
1109 ev = self.vapi.wait_for_event(10, "ip6_ra_event")
1110
1111 self.assert_equal(ev.current_hop_limit, 0)
1112 self.assert_equal(ev.flags, 8)
1113 self.assert_equal(ev.router_lifetime_in_sec, 1800)
1114 self.assert_equal(ev.neighbor_reachable_time_in_msec, 0)
1115 self.assert_equal(
1116 ev.time_in_msec_between_retransmitted_neighbor_solicitations, 0)
1117
1118 self.assert_equal(ev.n_prefixes, 2)
1119
1120 self.verify_prefix_info(ev.prefixes[0], prefix_info_1)
1121 self.verify_prefix_info(ev.prefixes[1], prefix_info_2)
1122
1123
Juraj Slobodac0374232018-02-01 15:18:49 +01001124class TestIPv6RDControlPlane(TestIPv6ND):
1125 """ IPv6 Router Discovery Control Plane Test Case """
1126
1127 @classmethod
1128 def setUpClass(cls):
1129 super(TestIPv6RDControlPlane, cls).setUpClass()
1130
1131 def setUp(self):
1132 super(TestIPv6RDControlPlane, self).setUp()
1133
1134 # create 1 pg interface
1135 self.create_pg_interfaces(range(1))
1136
1137 self.interfaces = list(self.pg_interfaces)
1138
1139 # setup all interfaces
1140 for i in self.interfaces:
1141 i.admin_up()
1142 i.config_ip6()
1143
1144 def tearDown(self):
1145 super(TestIPv6RDControlPlane, self).tearDown()
1146
1147 @staticmethod
1148 def create_ra_packet(pg, routerlifetime=None):
1149 src_ip = pg.remote_ip6_ll
1150 dst_ip = pg.local_ip6
1151 if routerlifetime is not None:
1152 ra = ICMPv6ND_RA(routerlifetime=routerlifetime)
1153 else:
1154 ra = ICMPv6ND_RA()
1155 p = (Ether(dst=pg.local_mac, src=pg.remote_mac) /
1156 IPv6(dst=dst_ip, src=src_ip) / ra)
1157 return p
1158
1159 @staticmethod
1160 def get_default_routes(fib):
1161 list = []
1162 for entry in fib:
1163 if entry.address_length == 0:
1164 for path in entry.path:
1165 if path.sw_if_index != 0xFFFFFFFF:
1166 defaut_route = {}
1167 defaut_route['sw_if_index'] = path.sw_if_index
1168 defaut_route['next_hop'] = path.next_hop
1169 list.append(defaut_route)
1170 return list
1171
1172 @staticmethod
1173 def get_interface_addresses(fib, pg):
1174 list = []
1175 for entry in fib:
1176 if entry.address_length == 128:
1177 path = entry.path[0]
1178 if path.sw_if_index == pg.sw_if_index:
1179 list.append(entry.address)
1180 return list
1181
1182 def test_all(self):
1183 """ Test handling of SLAAC addresses and default routes """
1184
1185 fib = self.vapi.ip6_fib_dump()
1186 default_routes = self.get_default_routes(fib)
1187 initial_addresses = set(self.get_interface_addresses(fib, self.pg0))
1188 self.assertEqual(default_routes, [])
1189 router_address = self.pg0.remote_ip6n_ll
1190
1191 self.vapi.ip6_nd_address_autoconfig(self.pg0.sw_if_index, 1, 1)
1192
1193 self.sleep(0.1)
1194
1195 # send RA
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001196 packet = (self.create_ra_packet(
1197 self.pg0) / ICMPv6NDOptPrefixInfo(
Juraj Slobodac0374232018-02-01 15:18:49 +01001198 prefix="1::",
1199 prefixlen=64,
1200 validlifetime=2,
1201 preferredlifetime=2,
1202 L=1,
1203 A=1,
1204 ) / ICMPv6NDOptPrefixInfo(
1205 prefix="7::",
1206 prefixlen=20,
1207 validlifetime=1500,
1208 preferredlifetime=1000,
1209 L=1,
1210 A=0,
1211 ))
1212 self.pg0.add_stream([packet])
1213 self.pg_start()
1214
1215 self.sleep(0.1)
1216
1217 fib = self.vapi.ip6_fib_dump()
1218
1219 # check FIB for new address
1220 addresses = set(self.get_interface_addresses(fib, self.pg0))
1221 new_addresses = addresses.difference(initial_addresses)
1222 self.assertEqual(len(new_addresses), 1)
1223 prefix = list(new_addresses)[0][:8] + '\0\0\0\0\0\0\0\0'
1224 self.assertEqual(inet_ntop(AF_INET6, prefix), '1::')
1225
1226 # check FIB for new default route
1227 default_routes = self.get_default_routes(fib)
1228 self.assertEqual(len(default_routes), 1)
1229 dr = default_routes[0]
1230 self.assertEqual(dr['sw_if_index'], self.pg0.sw_if_index)
1231 self.assertEqual(dr['next_hop'], router_address)
1232
1233 # send RA to delete default route
1234 packet = self.create_ra_packet(self.pg0, routerlifetime=0)
1235 self.pg0.add_stream([packet])
1236 self.pg_start()
1237
1238 self.sleep(0.1)
1239
1240 # check that default route is deleted
1241 fib = self.vapi.ip6_fib_dump()
1242 default_routes = self.get_default_routes(fib)
1243 self.assertEqual(len(default_routes), 0)
1244
1245 self.sleep(0.1)
1246
1247 # send RA
1248 packet = self.create_ra_packet(self.pg0)
1249 self.pg0.add_stream([packet])
1250 self.pg_start()
1251
1252 self.sleep(0.1)
1253
1254 # check FIB for new default route
1255 fib = self.vapi.ip6_fib_dump()
1256 default_routes = self.get_default_routes(fib)
1257 self.assertEqual(len(default_routes), 1)
1258 dr = default_routes[0]
1259 self.assertEqual(dr['sw_if_index'], self.pg0.sw_if_index)
1260 self.assertEqual(dr['next_hop'], router_address)
1261
1262 # send RA, updating router lifetime to 1s
1263 packet = self.create_ra_packet(self.pg0, 1)
1264 self.pg0.add_stream([packet])
1265 self.pg_start()
1266
1267 self.sleep(0.1)
1268
1269 # check that default route still exists
1270 fib = self.vapi.ip6_fib_dump()
1271 default_routes = self.get_default_routes(fib)
1272 self.assertEqual(len(default_routes), 1)
1273 dr = default_routes[0]
1274 self.assertEqual(dr['sw_if_index'], self.pg0.sw_if_index)
1275 self.assertEqual(dr['next_hop'], router_address)
1276
1277 self.sleep(1)
1278
1279 # check that default route is deleted
1280 fib = self.vapi.ip6_fib_dump()
1281 default_routes = self.get_default_routes(fib)
1282 self.assertEqual(len(default_routes), 0)
1283
1284 # check FIB still contains the SLAAC address
1285 addresses = set(self.get_interface_addresses(fib, self.pg0))
1286 new_addresses = addresses.difference(initial_addresses)
1287 self.assertEqual(len(new_addresses), 1)
1288 prefix = list(new_addresses)[0][:8] + '\0\0\0\0\0\0\0\0'
1289 self.assertEqual(inet_ntop(AF_INET6, prefix), '1::')
1290
1291 self.sleep(1)
1292
1293 # check that SLAAC address is deleted
1294 fib = self.vapi.ip6_fib_dump()
1295 addresses = set(self.get_interface_addresses(fib, self.pg0))
1296 new_addresses = addresses.difference(initial_addresses)
1297 self.assertEqual(len(new_addresses), 0)
1298
1299
Neale Ranns3f844d02017-02-18 00:03:54 -08001300class IPv6NDProxyTest(TestIPv6ND):
1301 """ IPv6 ND ProxyTest Case """
1302
1303 def setUp(self):
1304 super(IPv6NDProxyTest, self).setUp()
1305
1306 # create 3 pg interfaces
1307 self.create_pg_interfaces(range(3))
1308
1309 # pg0 is the master interface, with the configured subnet
1310 self.pg0.admin_up()
1311 self.pg0.config_ip6()
1312 self.pg0.resolve_ndp()
1313
1314 self.pg1.ip6_enable()
1315 self.pg2.ip6_enable()
1316
1317 def tearDown(self):
1318 super(IPv6NDProxyTest, self).tearDown()
1319
1320 def test_nd_proxy(self):
1321 """ IPv6 Proxy ND """
1322
1323 #
1324 # Generate some hosts in the subnet that we are proxying
1325 #
1326 self.pg0.generate_remote_hosts(8)
1327
1328 nsma = in6_getnsma(inet_pton(AF_INET6, self.pg0.local_ip6))
1329 d = inet_ntop(AF_INET6, nsma)
1330
1331 #
1332 # Send an NS for one of those remote hosts on one of the proxy links
1333 # expect no response since it's from an address that is not
1334 # on the link that has the prefix configured
1335 #
1336 ns_pg1 = (Ether(dst=in6_getnsmac(nsma), src=self.pg1.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001337 IPv6(dst=d,
1338 src=self.pg0._remote_hosts[2].ip6) /
Neale Ranns3f844d02017-02-18 00:03:54 -08001339 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001340 ICMPv6NDOptSrcLLAddr(
1341 lladdr=self.pg0._remote_hosts[2].mac))
Neale Ranns3f844d02017-02-18 00:03:54 -08001342
1343 self.send_and_assert_no_replies(self.pg1, ns_pg1, "Off link NS")
1344
1345 #
1346 # Add proxy support for the host
1347 #
Ole Troane1ade682019-03-04 23:55:43 +01001348 self.vapi.ip6nd_proxy_add_del(
Ole Troan9a475372019-03-05 16:58:24 +01001349 ip=inet_pton(AF_INET6, self.pg0._remote_hosts[2].ip6),
1350 sw_if_index=self.pg1.sw_if_index)
Neale Ranns3f844d02017-02-18 00:03:54 -08001351
1352 #
1353 # try that NS again. this time we expect an NA back
1354 #
Neale Ranns2a3ea492017-04-19 05:24:40 -07001355 self.send_and_expect_na(self.pg1, ns_pg1,
1356 "NS to proxy entry",
1357 dst_ip=self.pg0._remote_hosts[2].ip6,
1358 tgt_ip=self.pg0.local_ip6)
Neale Ranns3f844d02017-02-18 00:03:54 -08001359
1360 #
1361 # ... and that we have an entry in the ND cache
1362 #
1363 self.assertTrue(find_nbr(self,
1364 self.pg1.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001365 self.pg0._remote_hosts[2].ip6))
Neale Ranns3f844d02017-02-18 00:03:54 -08001366
1367 #
1368 # ... and we can route traffic to it
1369 #
1370 t = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
1371 IPv6(dst=self.pg0._remote_hosts[2].ip6,
1372 src=self.pg0.remote_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001373 inet6.UDP(sport=10000, dport=20000) /
Neale Ranns3f844d02017-02-18 00:03:54 -08001374 Raw('\xa5' * 100))
1375
1376 self.pg0.add_stream(t)
1377 self.pg_enable_capture(self.pg_interfaces)
1378 self.pg_start()
1379 rx = self.pg1.get_capture(1)
1380 rx = rx[0]
1381
1382 self.assertEqual(rx[Ether].dst, self.pg0._remote_hosts[2].mac)
1383 self.assertEqual(rx[Ether].src, self.pg1.local_mac)
1384
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001385 self.assertEqual(rx[IPv6].src,
1386 t[IPv6].src)
1387 self.assertEqual(rx[IPv6].dst,
1388 t[IPv6].dst)
Neale Ranns3f844d02017-02-18 00:03:54 -08001389
1390 #
1391 # Test we proxy for the host on the main interface
1392 #
1393 ns_pg0 = (Ether(dst=in6_getnsmac(nsma), src=self.pg0.remote_mac) /
1394 IPv6(dst=d, src=self.pg0.remote_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001395 ICMPv6ND_NS(
1396 tgt=self.pg0._remote_hosts[2].ip6) /
1397 ICMPv6NDOptSrcLLAddr(
1398 lladdr=self.pg0.remote_mac))
Neale Ranns3f844d02017-02-18 00:03:54 -08001399
Neale Ranns2a3ea492017-04-19 05:24:40 -07001400 self.send_and_expect_na(self.pg0, ns_pg0,
1401 "NS to proxy entry on main",
1402 tgt_ip=self.pg0._remote_hosts[2].ip6,
1403 dst_ip=self.pg0.remote_ip6)
Neale Ranns3f844d02017-02-18 00:03:54 -08001404
1405 #
1406 # Setup and resolve proxy for another host on another interface
1407 #
1408 ns_pg2 = (Ether(dst=in6_getnsmac(nsma), src=self.pg2.remote_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001409 IPv6(dst=d,
1410 src=self.pg0._remote_hosts[3].ip6) /
Neale Ranns3f844d02017-02-18 00:03:54 -08001411 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001412 ICMPv6NDOptSrcLLAddr(
1413 lladdr=self.pg0._remote_hosts[2].mac))
Neale Ranns3f844d02017-02-18 00:03:54 -08001414
Ole Troane1ade682019-03-04 23:55:43 +01001415 self.vapi.ip6nd_proxy_add_del(
Ole Troan9a475372019-03-05 16:58:24 +01001416 ip=inet_pton(AF_INET6, self.pg0._remote_hosts[3].ip6),
1417 sw_if_index=self.pg2.sw_if_index)
Neale Ranns3f844d02017-02-18 00:03:54 -08001418
Neale Ranns2a3ea492017-04-19 05:24:40 -07001419 self.send_and_expect_na(self.pg2, ns_pg2,
1420 "NS to proxy entry other interface",
1421 dst_ip=self.pg0._remote_hosts[3].ip6,
1422 tgt_ip=self.pg0.local_ip6)
Neale Ranns3f844d02017-02-18 00:03:54 -08001423
1424 self.assertTrue(find_nbr(self,
1425 self.pg2.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001426 self.pg0._remote_hosts[3].ip6))
Neale Ranns3f844d02017-02-18 00:03:54 -08001427
1428 #
1429 # hosts can communicate. pg2->pg1
1430 #
1431 t2 = (Ether(dst=self.pg2.local_mac,
1432 src=self.pg0.remote_hosts[3].mac) /
1433 IPv6(dst=self.pg0._remote_hosts[2].ip6,
1434 src=self.pg0._remote_hosts[3].ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001435 inet6.UDP(sport=10000, dport=20000) /
Neale Ranns3f844d02017-02-18 00:03:54 -08001436 Raw('\xa5' * 100))
1437
1438 self.pg2.add_stream(t2)
1439 self.pg_enable_capture(self.pg_interfaces)
1440 self.pg_start()
1441 rx = self.pg1.get_capture(1)
1442 rx = rx[0]
1443
1444 self.assertEqual(rx[Ether].dst, self.pg0._remote_hosts[2].mac)
1445 self.assertEqual(rx[Ether].src, self.pg1.local_mac)
1446
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001447 self.assertEqual(rx[IPv6].src,
1448 t2[IPv6].src)
1449 self.assertEqual(rx[IPv6].dst,
1450 t2[IPv6].dst)
Neale Ranns3f844d02017-02-18 00:03:54 -08001451
1452 #
1453 # remove the proxy configs
1454 #
Ole Troane1ade682019-03-04 23:55:43 +01001455 self.vapi.ip6nd_proxy_add_del(
Ole Troan9a475372019-03-05 16:58:24 +01001456 ip=inet_pton(AF_INET6, self.pg0._remote_hosts[2].ip6),
1457 sw_if_index=self.pg1.sw_if_index, is_del=1)
Ole Troane1ade682019-03-04 23:55:43 +01001458 self.vapi.ip6nd_proxy_add_del(
Ole Troan9a475372019-03-05 16:58:24 +01001459 ip=inet_pton(AF_INET6, self.pg0._remote_hosts[3].ip6),
1460 sw_if_index=self.pg2.sw_if_index, is_del=1)
Neale Ranns3f844d02017-02-18 00:03:54 -08001461
1462 self.assertFalse(find_nbr(self,
1463 self.pg2.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001464 self.pg0._remote_hosts[3].ip6))
Neale Ranns3f844d02017-02-18 00:03:54 -08001465 self.assertFalse(find_nbr(self,
1466 self.pg1.sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -07001467 self.pg0._remote_hosts[2].ip6))
Neale Ranns3f844d02017-02-18 00:03:54 -08001468
1469 #
1470 # no longer proxy-ing...
1471 #
1472 self.send_and_assert_no_replies(self.pg0, ns_pg0, "Proxy unconfigured")
1473 self.send_and_assert_no_replies(self.pg1, ns_pg1, "Proxy unconfigured")
1474 self.send_and_assert_no_replies(self.pg2, ns_pg2, "Proxy unconfigured")
1475
1476 #
1477 # no longer forwarding. traffic generates NS out of the glean/main
1478 # interface
1479 #
1480 self.pg2.add_stream(t2)
1481 self.pg_enable_capture(self.pg_interfaces)
1482 self.pg_start()
1483
1484 rx = self.pg0.get_capture(1)
1485
1486 self.assertTrue(rx[0].haslayer(ICMPv6ND_NS))
1487
1488
Neale Ranns37be7362017-02-21 17:30:26 -08001489class TestIPNull(VppTestCase):
1490 """ IPv6 routes via NULL """
1491
1492 def setUp(self):
1493 super(TestIPNull, self).setUp()
1494
1495 # create 2 pg interfaces
1496 self.create_pg_interfaces(range(1))
1497
1498 for i in self.pg_interfaces:
1499 i.admin_up()
1500 i.config_ip6()
1501 i.resolve_ndp()
1502
1503 def tearDown(self):
1504 super(TestIPNull, self).tearDown()
1505 for i in self.pg_interfaces:
1506 i.unconfig_ip6()
1507 i.admin_down()
1508
1509 def test_ip_null(self):
1510 """ IP NULL route """
1511
1512 p = (Ether(src=self.pg0.remote_mac,
1513 dst=self.pg0.local_mac) /
1514 IPv6(src=self.pg0.remote_ip6, dst="2001::1") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001515 inet6.UDP(sport=1234, dport=1234) /
Neale Ranns37be7362017-02-21 17:30:26 -08001516 Raw('\xa5' * 100))
1517
1518 #
1519 # A route via IP NULL that will reply with ICMP unreachables
1520 #
1521 ip_unreach = VppIpRoute(self, "2001::", 64, [], is_unreach=1, is_ip6=1)
1522 ip_unreach.add_vpp_config()
1523
1524 self.pg0.add_stream(p)
1525 self.pg_enable_capture(self.pg_interfaces)
1526 self.pg_start()
1527
1528 rx = self.pg0.get_capture(1)
1529 rx = rx[0]
1530 icmp = rx[ICMPv6DestUnreach]
1531
1532 # 0 = "No route to destination"
1533 self.assertEqual(icmp.code, 0)
1534
1535 # ICMP is rate limited. pause a bit
1536 self.sleep(1)
1537
1538 #
1539 # A route via IP NULL that will reply with ICMP prohibited
1540 #
1541 ip_prohibit = VppIpRoute(self, "2001::1", 128, [],
1542 is_prohibit=1, is_ip6=1)
1543 ip_prohibit.add_vpp_config()
1544
1545 self.pg0.add_stream(p)
1546 self.pg_enable_capture(self.pg_interfaces)
1547 self.pg_start()
1548
1549 rx = self.pg0.get_capture(1)
1550 rx = rx[0]
1551 icmp = rx[ICMPv6DestUnreach]
1552
1553 # 1 = "Communication with destination administratively prohibited"
1554 self.assertEqual(icmp.code, 1)
1555
1556
Neale Ranns180279b2017-03-16 15:49:09 -04001557class TestIPDisabled(VppTestCase):
1558 """ IPv6 disabled """
1559
1560 def setUp(self):
1561 super(TestIPDisabled, self).setUp()
1562
1563 # create 2 pg interfaces
1564 self.create_pg_interfaces(range(2))
1565
1566 # PG0 is IP enalbed
1567 self.pg0.admin_up()
1568 self.pg0.config_ip6()
1569 self.pg0.resolve_ndp()
1570
1571 # PG 1 is not IP enabled
1572 self.pg1.admin_up()
1573
1574 def tearDown(self):
1575 super(TestIPDisabled, self).tearDown()
1576 for i in self.pg_interfaces:
1577 i.unconfig_ip4()
1578 i.admin_down()
1579
Neale Ranns180279b2017-03-16 15:49:09 -04001580 def test_ip_disabled(self):
1581 """ IP Disabled """
1582
1583 #
1584 # An (S,G).
1585 # one accepting interface, pg0, 2 forwarding interfaces
1586 #
1587 route_ff_01 = VppIpMRoute(
1588 self,
1589 "::",
1590 "ffef::1", 128,
1591 MRouteEntryFlags.MFIB_ENTRY_FLAG_NONE,
1592 [VppMRoutePath(self.pg1.sw_if_index,
1593 MRouteItfFlags.MFIB_ITF_FLAG_ACCEPT),
1594 VppMRoutePath(self.pg0.sw_if_index,
1595 MRouteItfFlags.MFIB_ITF_FLAG_FORWARD)],
1596 is_ip6=1)
1597 route_ff_01.add_vpp_config()
1598
1599 pu = (Ether(src=self.pg1.remote_mac,
1600 dst=self.pg1.local_mac) /
1601 IPv6(src="2001::1", dst=self.pg0.remote_ip6) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001602 inet6.UDP(sport=1234, dport=1234) /
Neale Ranns180279b2017-03-16 15:49:09 -04001603 Raw('\xa5' * 100))
1604 pm = (Ether(src=self.pg1.remote_mac,
1605 dst=self.pg1.local_mac) /
1606 IPv6(src="2001::1", dst="ffef::1") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001607 inet6.UDP(sport=1234, dport=1234) /
Neale Ranns180279b2017-03-16 15:49:09 -04001608 Raw('\xa5' * 100))
1609
1610 #
1611 # PG1 does not forward IP traffic
1612 #
1613 self.send_and_assert_no_replies(self.pg1, pu, "IPv6 disabled")
1614 self.send_and_assert_no_replies(self.pg1, pm, "IPv6 disabled")
1615
1616 #
1617 # IP enable PG1
1618 #
1619 self.pg1.config_ip6()
1620
1621 #
1622 # Now we get packets through
1623 #
1624 self.pg1.add_stream(pu)
1625 self.pg_enable_capture(self.pg_interfaces)
1626 self.pg_start()
1627 rx = self.pg0.get_capture(1)
1628
1629 self.pg1.add_stream(pm)
1630 self.pg_enable_capture(self.pg_interfaces)
1631 self.pg_start()
1632 rx = self.pg0.get_capture(1)
1633
1634 #
1635 # Disable PG1
1636 #
1637 self.pg1.unconfig_ip6()
1638
1639 #
1640 # PG1 does not forward IP traffic
1641 #
1642 self.send_and_assert_no_replies(self.pg1, pu, "IPv6 disabled")
1643 self.send_and_assert_no_replies(self.pg1, pm, "IPv6 disabled")
1644
1645
Neale Ranns227038a2017-04-21 01:07:59 -07001646class TestIP6LoadBalance(VppTestCase):
1647 """ IPv6 Load-Balancing """
1648
1649 def setUp(self):
1650 super(TestIP6LoadBalance, self).setUp()
1651
1652 self.create_pg_interfaces(range(5))
1653
Neale Ranns15002542017-09-10 04:39:11 -07001654 mpls_tbl = VppMplsTable(self, 0)
1655 mpls_tbl.add_vpp_config()
1656
Neale Ranns227038a2017-04-21 01:07:59 -07001657 for i in self.pg_interfaces:
1658 i.admin_up()
1659 i.config_ip6()
1660 i.resolve_ndp()
Neale Ranns71275e32017-05-25 12:38:58 -07001661 i.enable_mpls()
Neale Ranns227038a2017-04-21 01:07:59 -07001662
1663 def tearDown(self):
Neale Ranns227038a2017-04-21 01:07:59 -07001664 for i in self.pg_interfaces:
1665 i.unconfig_ip6()
1666 i.admin_down()
Neale Ranns71275e32017-05-25 12:38:58 -07001667 i.disable_mpls()
Neale Ranns15002542017-09-10 04:39:11 -07001668 super(TestIP6LoadBalance, self).tearDown()
Neale Ranns227038a2017-04-21 01:07:59 -07001669
Paul Vinciguerraeb414432019-02-20 09:01:14 -08001670 def pg_send(self, input, pkts):
Neale Ranns62fe07c2017-10-31 12:28:22 -07001671 self.vapi.cli("clear trace")
Neale Ranns227038a2017-04-21 01:07:59 -07001672 input.add_stream(pkts)
1673 self.pg_enable_capture(self.pg_interfaces)
1674 self.pg_start()
Paul Vinciguerraeb414432019-02-20 09:01:14 -08001675
1676 def send_and_expect_load_balancing(self, input, pkts, outputs):
1677 self.pg_send(input, pkts)
Neale Ranns227038a2017-04-21 01:07:59 -07001678 for oo in outputs:
1679 rx = oo._get_capture(1)
1680 self.assertNotEqual(0, len(rx))
1681
Neale Ranns71275e32017-05-25 12:38:58 -07001682 def send_and_expect_one_itf(self, input, pkts, itf):
Paul Vinciguerraeb414432019-02-20 09:01:14 -08001683 self.pg_send(input, pkts)
Neale Ranns71275e32017-05-25 12:38:58 -07001684 rx = itf.get_capture(len(pkts))
1685
Neale Ranns227038a2017-04-21 01:07:59 -07001686 def test_ip6_load_balance(self):
1687 """ IPv6 Load-Balancing """
1688
1689 #
1690 # An array of packets that differ only in the destination port
Neale Ranns71275e32017-05-25 12:38:58 -07001691 # - IP only
1692 # - MPLS EOS
1693 # - MPLS non-EOS
1694 # - MPLS non-EOS with an entropy label
Neale Ranns227038a2017-04-21 01:07:59 -07001695 #
Neale Ranns71275e32017-05-25 12:38:58 -07001696 port_ip_pkts = []
1697 port_mpls_pkts = []
1698 port_mpls_neos_pkts = []
1699 port_ent_pkts = []
Neale Ranns227038a2017-04-21 01:07:59 -07001700
1701 #
1702 # An array of packets that differ only in the source address
1703 #
Neale Ranns71275e32017-05-25 12:38:58 -07001704 src_ip_pkts = []
1705 src_mpls_pkts = []
Neale Ranns227038a2017-04-21 01:07:59 -07001706
1707 for ii in range(65):
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001708 port_ip_hdr = (
1709 IPv6(dst="3000::1", src="3000:1::1") /
1710 inet6.UDP(sport=1234, dport=1234 + ii) /
1711 Raw('\xa5' * 100))
Neale Ranns71275e32017-05-25 12:38:58 -07001712 port_ip_pkts.append((Ether(src=self.pg0.remote_mac,
1713 dst=self.pg0.local_mac) /
1714 port_ip_hdr))
1715 port_mpls_pkts.append((Ether(src=self.pg0.remote_mac,
1716 dst=self.pg0.local_mac) /
1717 MPLS(label=66, ttl=2) /
1718 port_ip_hdr))
1719 port_mpls_neos_pkts.append((Ether(src=self.pg0.remote_mac,
1720 dst=self.pg0.local_mac) /
1721 MPLS(label=67, ttl=2) /
1722 MPLS(label=77, ttl=2) /
1723 port_ip_hdr))
1724 port_ent_pkts.append((Ether(src=self.pg0.remote_mac,
1725 dst=self.pg0.local_mac) /
1726 MPLS(label=67, ttl=2) /
1727 MPLS(label=14, ttl=2) /
1728 MPLS(label=999, ttl=2) /
1729 port_ip_hdr))
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001730 src_ip_hdr = (
1731 IPv6(dst="3000::1", src="3000:1::%d" % ii) /
1732 inet6.UDP(sport=1234, dport=1234) /
1733 Raw('\xa5' * 100))
Neale Ranns71275e32017-05-25 12:38:58 -07001734 src_ip_pkts.append((Ether(src=self.pg0.remote_mac,
1735 dst=self.pg0.local_mac) /
1736 src_ip_hdr))
1737 src_mpls_pkts.append((Ether(src=self.pg0.remote_mac,
1738 dst=self.pg0.local_mac) /
1739 MPLS(label=66, ttl=2) /
1740 src_ip_hdr))
Neale Ranns227038a2017-04-21 01:07:59 -07001741
Neale Ranns71275e32017-05-25 12:38:58 -07001742 #
1743 # A route for the IP pacekts
1744 #
Neale Ranns227038a2017-04-21 01:07:59 -07001745 route_3000_1 = VppIpRoute(self, "3000::1", 128,
1746 [VppRoutePath(self.pg1.remote_ip6,
1747 self.pg1.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -07001748 proto=DpoProto.DPO_PROTO_IP6),
Neale Ranns227038a2017-04-21 01:07:59 -07001749 VppRoutePath(self.pg2.remote_ip6,
1750 self.pg2.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -07001751 proto=DpoProto.DPO_PROTO_IP6)],
Neale Ranns227038a2017-04-21 01:07:59 -07001752 is_ip6=1)
1753 route_3000_1.add_vpp_config()
1754
1755 #
Neale Ranns71275e32017-05-25 12:38:58 -07001756 # a local-label for the EOS packets
1757 #
1758 binding = VppMplsIpBind(self, 66, "3000::1", 128, is_ip6=1)
1759 binding.add_vpp_config()
1760
1761 #
1762 # An MPLS route for the non-EOS packets
1763 #
1764 route_67 = VppMplsRoute(self, 67, 0,
1765 [VppRoutePath(self.pg1.remote_ip6,
1766 self.pg1.sw_if_index,
1767 labels=[67],
Neale Rannsda78f952017-05-24 09:15:43 -07001768 proto=DpoProto.DPO_PROTO_IP6),
Neale Ranns71275e32017-05-25 12:38:58 -07001769 VppRoutePath(self.pg2.remote_ip6,
1770 self.pg2.sw_if_index,
1771 labels=[67],
Neale Rannsda78f952017-05-24 09:15:43 -07001772 proto=DpoProto.DPO_PROTO_IP6)])
Neale Ranns71275e32017-05-25 12:38:58 -07001773 route_67.add_vpp_config()
1774
1775 #
Neale Ranns227038a2017-04-21 01:07:59 -07001776 # inject the packet on pg0 - expect load-balancing across the 2 paths
1777 # - since the default hash config is to use IP src,dst and port
1778 # src,dst
1779 # We are not going to ensure equal amounts of packets across each link,
1780 # since the hash algorithm is statistical and therefore this can never
1781 # be guaranteed. But wuth 64 different packets we do expect some
1782 # balancing. So instead just ensure there is traffic on each link.
1783 #
Neale Ranns71275e32017-05-25 12:38:58 -07001784 self.send_and_expect_load_balancing(self.pg0, port_ip_pkts,
Neale Ranns227038a2017-04-21 01:07:59 -07001785 [self.pg1, self.pg2])
Neale Ranns71275e32017-05-25 12:38:58 -07001786 self.send_and_expect_load_balancing(self.pg0, src_ip_pkts,
Neale Ranns227038a2017-04-21 01:07:59 -07001787 [self.pg1, self.pg2])
Neale Ranns71275e32017-05-25 12:38:58 -07001788 self.send_and_expect_load_balancing(self.pg0, port_mpls_pkts,
1789 [self.pg1, self.pg2])
1790 self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
1791 [self.pg1, self.pg2])
1792 self.send_and_expect_load_balancing(self.pg0, port_mpls_neos_pkts,
1793 [self.pg1, self.pg2])
1794
1795 #
1796 # The packets with Entropy label in should not load-balance,
1797 # since the Entorpy value is fixed.
1798 #
1799 self.send_and_expect_one_itf(self.pg0, port_ent_pkts, self.pg1)
Neale Ranns227038a2017-04-21 01:07:59 -07001800
1801 #
1802 # change the flow hash config so it's only IP src,dst
1803 # - now only the stream with differing source address will
1804 # load-balance
1805 #
1806 self.vapi.set_ip_flow_hash(0, is_ip6=1, src=1, dst=1, sport=0, dport=0)
1807
Neale Ranns71275e32017-05-25 12:38:58 -07001808 self.send_and_expect_load_balancing(self.pg0, src_ip_pkts,
Neale Ranns227038a2017-04-21 01:07:59 -07001809 [self.pg1, self.pg2])
Neale Ranns71275e32017-05-25 12:38:58 -07001810 self.send_and_expect_load_balancing(self.pg0, src_mpls_pkts,
1811 [self.pg1, self.pg2])
1812 self.send_and_expect_one_itf(self.pg0, port_ip_pkts, self.pg2)
Neale Ranns227038a2017-04-21 01:07:59 -07001813
1814 #
1815 # change the flow hash config back to defaults
1816 #
1817 self.vapi.set_ip_flow_hash(0, is_ip6=1, src=1, dst=1, sport=1, dport=1)
1818
1819 #
1820 # Recursive prefixes
1821 # - testing that 2 stages of load-balancing occurs and there is no
1822 # polarisation (i.e. only 2 of 4 paths are used)
1823 #
1824 port_pkts = []
1825 src_pkts = []
1826
1827 for ii in range(257):
1828 port_pkts.append((Ether(src=self.pg0.remote_mac,
1829 dst=self.pg0.local_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001830 IPv6(dst="4000::1",
1831 src="4000:1::1") /
1832 inet6.UDP(sport=1234,
1833 dport=1234 + ii) /
Neale Ranns227038a2017-04-21 01:07:59 -07001834 Raw('\xa5' * 100)))
1835 src_pkts.append((Ether(src=self.pg0.remote_mac,
1836 dst=self.pg0.local_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001837 IPv6(dst="4000::1",
1838 src="4000:1::%d" % ii) /
1839 inet6.UDP(sport=1234, dport=1234) /
Neale Ranns227038a2017-04-21 01:07:59 -07001840 Raw('\xa5' * 100)))
1841
1842 route_3000_2 = VppIpRoute(self, "3000::2", 128,
1843 [VppRoutePath(self.pg3.remote_ip6,
1844 self.pg3.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -07001845 proto=DpoProto.DPO_PROTO_IP6),
Neale Ranns227038a2017-04-21 01:07:59 -07001846 VppRoutePath(self.pg4.remote_ip6,
1847 self.pg4.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -07001848 proto=DpoProto.DPO_PROTO_IP6)],
Neale Ranns227038a2017-04-21 01:07:59 -07001849 is_ip6=1)
1850 route_3000_2.add_vpp_config()
1851
1852 route_4000_1 = VppIpRoute(self, "4000::1", 128,
1853 [VppRoutePath("3000::1",
1854 0xffffffff,
Neale Rannsda78f952017-05-24 09:15:43 -07001855 proto=DpoProto.DPO_PROTO_IP6),
Neale Ranns227038a2017-04-21 01:07:59 -07001856 VppRoutePath("3000::2",
1857 0xffffffff,
Neale Rannsda78f952017-05-24 09:15:43 -07001858 proto=DpoProto.DPO_PROTO_IP6)],
Neale Ranns227038a2017-04-21 01:07:59 -07001859 is_ip6=1)
1860 route_4000_1.add_vpp_config()
1861
1862 #
1863 # inject the packet on pg0 - expect load-balancing across all 4 paths
1864 #
1865 self.vapi.cli("clear trace")
1866 self.send_and_expect_load_balancing(self.pg0, port_pkts,
1867 [self.pg1, self.pg2,
1868 self.pg3, self.pg4])
1869 self.send_and_expect_load_balancing(self.pg0, src_pkts,
1870 [self.pg1, self.pg2,
1871 self.pg3, self.pg4])
1872
Neale Ranns42e6b092017-07-31 02:56:03 -07001873 #
1874 # Recursive prefixes
1875 # - testing that 2 stages of load-balancing no choices
1876 #
1877 port_pkts = []
1878
1879 for ii in range(257):
1880 port_pkts.append((Ether(src=self.pg0.remote_mac,
1881 dst=self.pg0.local_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001882 IPv6(dst="6000::1",
1883 src="6000:1::1") /
1884 inet6.UDP(sport=1234,
1885 dport=1234 + ii) /
Neale Ranns42e6b092017-07-31 02:56:03 -07001886 Raw('\xa5' * 100)))
1887
1888 route_5000_2 = VppIpRoute(self, "5000::2", 128,
1889 [VppRoutePath(self.pg3.remote_ip6,
1890 self.pg3.sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -07001891 proto=DpoProto.DPO_PROTO_IP6)],
Neale Ranns42e6b092017-07-31 02:56:03 -07001892 is_ip6=1)
1893 route_5000_2.add_vpp_config()
1894
1895 route_6000_1 = VppIpRoute(self, "6000::1", 128,
1896 [VppRoutePath("5000::2",
1897 0xffffffff,
Neale Rannsda78f952017-05-24 09:15:43 -07001898 proto=DpoProto.DPO_PROTO_IP6)],
Neale Ranns42e6b092017-07-31 02:56:03 -07001899 is_ip6=1)
1900 route_6000_1.add_vpp_config()
1901
1902 #
1903 # inject the packet on pg0 - expect load-balancing across all 4 paths
1904 #
1905 self.vapi.cli("clear trace")
1906 self.send_and_expect_one_itf(self.pg0, port_pkts, self.pg3)
1907
Neale Ranns227038a2017-04-21 01:07:59 -07001908
Neale Rannsd91c1db2017-07-31 02:30:50 -07001909class TestIP6Punt(VppTestCase):
1910 """ IPv6 Punt Police/Redirect """
1911
1912 def setUp(self):
1913 super(TestIP6Punt, self).setUp()
1914
Pavel Kotucek609e1212018-11-27 09:59:44 +01001915 self.create_pg_interfaces(range(4))
Neale Rannsd91c1db2017-07-31 02:30:50 -07001916
1917 for i in self.pg_interfaces:
1918 i.admin_up()
1919 i.config_ip6()
1920 i.resolve_ndp()
1921
1922 def tearDown(self):
1923 super(TestIP6Punt, self).tearDown()
1924 for i in self.pg_interfaces:
1925 i.unconfig_ip6()
1926 i.admin_down()
1927
Neale Rannsd91c1db2017-07-31 02:30:50 -07001928 def test_ip_punt(self):
1929 """ IP6 punt police and redirect """
1930
1931 p = (Ether(src=self.pg0.remote_mac,
1932 dst=self.pg0.local_mac) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08001933 IPv6(src=self.pg0.remote_ip6,
1934 dst=self.pg0.local_ip6) /
1935 inet6.TCP(sport=1234, dport=1234) /
Neale Rannsd91c1db2017-07-31 02:30:50 -07001936 Raw('\xa5' * 100))
1937
1938 pkts = p * 1025
1939
1940 #
1941 # Configure a punt redirect via pg1.
1942 #
Ole Troan0bcad322018-12-11 13:04:01 +01001943 nh_addr = self.pg1.remote_ip6
Neale Rannsd91c1db2017-07-31 02:30:50 -07001944 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
1945 self.pg1.sw_if_index,
Pavel Kotucek609e1212018-11-27 09:59:44 +01001946 nh_addr)
Neale Rannsd91c1db2017-07-31 02:30:50 -07001947
1948 self.send_and_expect(self.pg0, pkts, self.pg1)
1949
1950 #
1951 # add a policer
1952 #
1953 policer = self.vapi.policer_add_del("ip6-punt", 400, 0, 10, 0,
1954 rate_type=1)
1955 self.vapi.ip_punt_police(policer.policer_index, is_ip6=1)
1956
1957 self.vapi.cli("clear trace")
1958 self.pg0.add_stream(pkts)
1959 self.pg_enable_capture(self.pg_interfaces)
1960 self.pg_start()
1961
1962 #
1963 # the number of packet recieved should be greater than 0,
1964 # but not equal to the number sent, since some were policed
1965 #
1966 rx = self.pg1._get_capture(1)
Paul Vinciguerra3d2df212018-11-24 23:19:53 -08001967 self.assertGreater(len(rx), 0)
1968 self.assertLess(len(rx), len(pkts))
Neale Rannsd91c1db2017-07-31 02:30:50 -07001969
1970 #
Paul Vinciguerraeb414432019-02-20 09:01:14 -08001971 # remove the policer. back to full rx
Neale Rannsd91c1db2017-07-31 02:30:50 -07001972 #
1973 self.vapi.ip_punt_police(policer.policer_index, is_add=0, is_ip6=1)
1974 self.vapi.policer_add_del("ip6-punt", 400, 0, 10, 0,
1975 rate_type=1, is_add=0)
1976 self.send_and_expect(self.pg0, pkts, self.pg1)
1977
1978 #
1979 # remove the redirect. expect full drop.
1980 #
1981 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
1982 self.pg1.sw_if_index,
1983 nh_addr,
Pavel Kotucek609e1212018-11-27 09:59:44 +01001984 is_add=0)
Neale Rannsd91c1db2017-07-31 02:30:50 -07001985 self.send_and_assert_no_replies(self.pg0, pkts,
1986 "IP no punt config")
1987
1988 #
1989 # Add a redirect that is not input port selective
1990 #
1991 self.vapi.ip_punt_redirect(0xffffffff,
1992 self.pg1.sw_if_index,
Pavel Kotucek609e1212018-11-27 09:59:44 +01001993 nh_addr)
Neale Rannsd91c1db2017-07-31 02:30:50 -07001994 self.send_and_expect(self.pg0, pkts, self.pg1)
1995
1996 self.vapi.ip_punt_redirect(0xffffffff,
1997 self.pg1.sw_if_index,
1998 nh_addr,
Pavel Kotucek609e1212018-11-27 09:59:44 +01001999 is_add=0)
2000
2001 def test_ip_punt_dump(self):
2002 """ IP6 punt redirect dump"""
2003
2004 #
2005 # Configure a punt redirects
2006 #
Ole Troan0bcad322018-12-11 13:04:01 +01002007 nh_addr = self.pg3.remote_ip6
Pavel Kotucek609e1212018-11-27 09:59:44 +01002008 self.vapi.ip_punt_redirect(self.pg0.sw_if_index,
2009 self.pg3.sw_if_index,
2010 nh_addr)
2011 self.vapi.ip_punt_redirect(self.pg1.sw_if_index,
2012 self.pg3.sw_if_index,
2013 nh_addr)
2014 self.vapi.ip_punt_redirect(self.pg2.sw_if_index,
2015 self.pg3.sw_if_index,
Ole Troan0bcad322018-12-11 13:04:01 +01002016 '0::0')
Pavel Kotucek609e1212018-11-27 09:59:44 +01002017
2018 #
2019 # Dump pg0 punt redirects
2020 #
2021 punts = self.vapi.ip_punt_redirect_dump(self.pg0.sw_if_index,
2022 is_ipv6=1)
2023 for p in punts:
2024 self.assertEqual(p.punt.rx_sw_if_index, self.pg0.sw_if_index)
2025
2026 #
2027 # Dump punt redirects for all interfaces
2028 #
2029 punts = self.vapi.ip_punt_redirect_dump(0xffffffff, is_ipv6=1)
2030 self.assertEqual(len(punts), 3)
2031 for p in punts:
2032 self.assertEqual(p.punt.tx_sw_if_index, self.pg3.sw_if_index)
Ole Troan0bcad322018-12-11 13:04:01 +01002033 self.assertNotEqual(punts[1].punt.nh, self.pg3.remote_ip6)
2034 self.assertEqual(str(punts[2].punt.nh), '::')
Neale Rannsd91c1db2017-07-31 02:30:50 -07002035
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002036
Neale Rannsce9e0b42018-08-01 12:53:17 -07002037class TestIPDeag(VppTestCase):
2038 """ IPv6 Deaggregate Routes """
2039
2040 def setUp(self):
2041 super(TestIPDeag, self).setUp()
2042
2043 self.create_pg_interfaces(range(3))
2044
2045 for i in self.pg_interfaces:
2046 i.admin_up()
2047 i.config_ip6()
2048 i.resolve_ndp()
2049
2050 def tearDown(self):
2051 super(TestIPDeag, self).tearDown()
2052 for i in self.pg_interfaces:
2053 i.unconfig_ip6()
2054 i.admin_down()
2055
2056 def test_ip_deag(self):
2057 """ IP Deag Routes """
2058
2059 #
2060 # Create a table to be used for:
2061 # 1 - another destination address lookup
2062 # 2 - a source address lookup
2063 #
2064 table_dst = VppIpTable(self, 1, is_ip6=1)
2065 table_src = VppIpTable(self, 2, is_ip6=1)
2066 table_dst.add_vpp_config()
2067 table_src.add_vpp_config()
2068
2069 #
2070 # Add a route in the default table to point to a deag/
2071 # second lookup in each of these tables
2072 #
2073 route_to_dst = VppIpRoute(self, "1::1", 128,
2074 [VppRoutePath("::",
2075 0xffffffff,
2076 nh_table_id=1,
2077 proto=DpoProto.DPO_PROTO_IP6)],
2078 is_ip6=1)
2079 route_to_src = VppIpRoute(self, "1::2", 128,
2080 [VppRoutePath("::",
2081 0xffffffff,
2082 nh_table_id=2,
2083 is_source_lookup=1,
2084 proto=DpoProto.DPO_PROTO_IP6)],
2085 is_ip6=1)
2086 route_to_dst.add_vpp_config()
2087 route_to_src.add_vpp_config()
2088
2089 #
2090 # packets to these destination are dropped, since they'll
2091 # hit the respective default routes in the second table
2092 #
2093 p_dst = (Ether(src=self.pg0.remote_mac,
2094 dst=self.pg0.local_mac) /
2095 IPv6(src="5::5", dst="1::1") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002096 inet6.TCP(sport=1234, dport=1234) /
Neale Rannsce9e0b42018-08-01 12:53:17 -07002097 Raw('\xa5' * 100))
2098 p_src = (Ether(src=self.pg0.remote_mac,
2099 dst=self.pg0.local_mac) /
2100 IPv6(src="2::2", dst="1::2") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002101 inet6.TCP(sport=1234, dport=1234) /
Neale Rannsce9e0b42018-08-01 12:53:17 -07002102 Raw('\xa5' * 100))
2103 pkts_dst = p_dst * 257
2104 pkts_src = p_src * 257
2105
2106 self.send_and_assert_no_replies(self.pg0, pkts_dst,
2107 "IP in dst table")
2108 self.send_and_assert_no_replies(self.pg0, pkts_src,
2109 "IP in src table")
2110
2111 #
2112 # add a route in the dst table to forward via pg1
2113 #
2114 route_in_dst = VppIpRoute(self, "1::1", 128,
2115 [VppRoutePath(self.pg1.remote_ip6,
2116 self.pg1.sw_if_index,
2117 proto=DpoProto.DPO_PROTO_IP6)],
2118 is_ip6=1,
2119 table_id=1)
2120 route_in_dst.add_vpp_config()
2121
2122 self.send_and_expect(self.pg0, pkts_dst, self.pg1)
2123
2124 #
2125 # add a route in the src table to forward via pg2
2126 #
2127 route_in_src = VppIpRoute(self, "2::2", 128,
2128 [VppRoutePath(self.pg2.remote_ip6,
2129 self.pg2.sw_if_index,
2130 proto=DpoProto.DPO_PROTO_IP6)],
2131 is_ip6=1,
2132 table_id=2)
2133 route_in_src.add_vpp_config()
2134 self.send_and_expect(self.pg0, pkts_src, self.pg2)
2135
2136 #
2137 # loop in the lookup DP
2138 #
2139 route_loop = VppIpRoute(self, "3::3", 128,
2140 [VppRoutePath("::",
2141 0xffffffff,
2142 proto=DpoProto.DPO_PROTO_IP6)],
2143 is_ip6=1)
2144 route_loop.add_vpp_config()
2145
2146 p_l = (Ether(src=self.pg0.remote_mac,
2147 dst=self.pg0.local_mac) /
2148 IPv6(src="3::4", dst="3::3") /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002149 inet6.TCP(sport=1234, dport=1234) /
Neale Rannsce9e0b42018-08-01 12:53:17 -07002150 Raw('\xa5' * 100))
2151
2152 self.send_and_assert_no_replies(self.pg0, p_l * 257,
2153 "IP lookup loop")
2154
2155
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002156class TestIP6Input(VppTestCase):
Neale Rannsae809832018-11-23 09:00:27 -08002157 """ IPv6 Input Exception Test Cases """
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002158
2159 def setUp(self):
2160 super(TestIP6Input, self).setUp()
2161
2162 self.create_pg_interfaces(range(2))
2163
2164 for i in self.pg_interfaces:
2165 i.admin_up()
2166 i.config_ip6()
2167 i.resolve_ndp()
2168
2169 def tearDown(self):
2170 super(TestIP6Input, self).tearDown()
2171 for i in self.pg_interfaces:
2172 i.unconfig_ip6()
2173 i.admin_down()
2174
Neale Rannsae809832018-11-23 09:00:27 -08002175 def test_ip_input_icmp_reply(self):
2176 """ IP6 Input Exception - Return ICMP (3,0) """
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002177 #
Neale Rannsae809832018-11-23 09:00:27 -08002178 # hop limit - ICMP replies
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002179 #
2180 p_version = (Ether(src=self.pg0.remote_mac,
2181 dst=self.pg0.local_mac) /
2182 IPv6(src=self.pg0.remote_ip6,
2183 dst=self.pg1.remote_ip6,
2184 hlim=1) /
Paul Vinciguerra978aa642018-11-24 22:19:12 -08002185 inet6.UDP(sport=1234, dport=1234) /
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002186 Raw('\xa5' * 100))
2187
2188 rx = self.send_and_expect(self.pg0, p_version * 65, self.pg0)
2189 rx = rx[0]
2190 icmp = rx[ICMPv6TimeExceeded]
Neale Rannsae809832018-11-23 09:00:27 -08002191
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002192 # 0: "hop limit exceeded in transit",
Neale Rannsae809832018-11-23 09:00:27 -08002193 self.assertEqual((icmp.type, icmp.code), (3, 0))
2194
2195 icmpv6_data = '\x0a' * 18
2196 all_0s = "::"
2197 all_1s = "FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF"
2198
2199 @parameterized.expand([
2200 # Name, src, dst, l4proto, msg, timeout
2201 ("src='iface', dst='iface'", None, None,
2202 inet6.UDP(sport=1234, dport=1234), "funky version", None),
2203 ("src='All 0's', dst='iface'", all_0s, None,
2204 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2205 ("src='iface', dst='All 0's'", None, all_0s,
2206 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2207 ("src='All 1's', dst='iface'", all_1s, None,
2208 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2209 ("src='iface', dst='All 1's'", None, all_1s,
2210 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2211 ("src='All 1's', dst='All 1's'", all_1s, all_1s,
2212 ICMPv6EchoRequest(id=0xb, seq=5, data=icmpv6_data), None, 0.1),
2213
2214 ])
2215 def test_ip_input_no_replies(self, name, src, dst, l4, msg, timeout):
2216
2217 self._testMethodDoc = 'IPv6 Input Exception - %s' % name
2218
2219 p_version = (Ether(src=self.pg0.remote_mac,
2220 dst=self.pg0.local_mac) /
2221 IPv6(src=src or self.pg0.remote_ip6,
2222 dst=dst or self.pg1.remote_ip6,
2223 version=3) /
2224 l4 /
2225 Raw('\xa5' * 100))
2226
2227 self.send_and_assert_no_replies(self.pg0, p_version * 65,
2228 remark=msg or "",
2229 timeout=timeout)
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002230
Neale Ranns4c7c8e52017-10-21 09:37:55 -07002231
Damjan Marionf56b77a2016-10-03 19:44:57 +02002232if __name__ == '__main__':
Klement Sekeraf62ae122016-10-11 11:47:09 +02002233 unittest.main(testRunner=VppTestRunner)