blob: ea669b708a6294b86ce97ad4fc779612819e5898 [file] [log] [blame]
Damjan Marionf56b77a2016-10-03 19:44:57 +02001#!/usr/bin/env python
2
Damjan Marionf56b77a2016-10-03 19:44:57 +02003import unittest
Klement Sekeraf62ae122016-10-11 11:47:09 +02004import socket
Klement Sekeraf62ae122016-10-11 11:47:09 +02005
Damjan Marionf56b77a2016-10-03 19:44:57 +02006from framework import VppTestCase, VppTestRunner
Matej Klotton86d87c42016-11-11 11:38:55 +01007from vpp_sub_interface import VppSubInterface, VppDot1QSubint
Damjan Marionf56b77a2016-10-03 19:44:57 +02008
9from scapy.packet import Raw
10from scapy.layers.l2 import Ether, Dot1Q
Klement Sekerada505f62017-01-04 12:58:53 +010011from scapy.layers.inet6 import IPv6, UDP, ICMPv6ND_NS, ICMPv6ND_RS, \
12 ICMPv6ND_RA, ICMPv6NDOptSrcLLAddr, getmacbyip6, ICMPv6MRD_Solicitation
Klement Sekera7bb873a2016-11-18 07:38:42 +010013from util import ppp
Neale Ranns75152282017-01-09 01:00:45 -080014from scapy.utils6 import in6_getnsma, in6_getnsmac, in6_ptop, in6_islladdr, \
15 in6_mactoifaceid
16from scapy.utils import inet_pton, inet_ntop
17
18
19def mk_ll_addr(mac):
20 euid = in6_mactoifaceid(mac)
21 addr = "fe80::" + euid
22 return addr
Damjan Marionf56b77a2016-10-03 19:44:57 +020023
24
Klement Sekeraf62ae122016-10-11 11:47:09 +020025class TestIPv6(VppTestCase):
Damjan Marionf56b77a2016-10-03 19:44:57 +020026 """ IPv6 Test Case """
27
28 @classmethod
29 def setUpClass(cls):
30 super(TestIPv6, cls).setUpClass()
31
Klement Sekeraf62ae122016-10-11 11:47:09 +020032 def setUp(self):
Matej Klotton86d87c42016-11-11 11:38:55 +010033 """
34 Perform test setup before test case.
35
36 **Config:**
37 - create 3 pg interfaces
38 - untagged pg0 interface
39 - Dot1Q subinterface on pg1
40 - Dot1AD subinterface on pg2
41 - setup interfaces:
42 - put it into UP state
43 - set IPv6 addresses
44 - resolve neighbor address using NDP
45 - configure 200 fib entries
46
47 :ivar list interfaces: pg interfaces and subinterfaces.
48 :ivar dict flows: IPv4 packet flows in test.
49 :ivar list pg_if_packet_sizes: packet sizes in test.
50
51 *TODO:* Create AD sub interface
52 """
Klement Sekeraf62ae122016-10-11 11:47:09 +020053 super(TestIPv6, self).setUp()
Damjan Marionf56b77a2016-10-03 19:44:57 +020054
Klement Sekeraf62ae122016-10-11 11:47:09 +020055 # create 3 pg interfaces
56 self.create_pg_interfaces(range(3))
Damjan Marionf56b77a2016-10-03 19:44:57 +020057
Klement Sekeraf62ae122016-10-11 11:47:09 +020058 # create 2 subinterfaces for p1 and pg2
59 self.sub_interfaces = [
60 VppDot1QSubint(self, self.pg1, 100),
Matej Klotton86d87c42016-11-11 11:38:55 +010061 VppDot1QSubint(self, self.pg2, 200)
Klement Sekeraf62ae122016-10-11 11:47:09 +020062 # TODO: VppDot1ADSubint(self, self.pg2, 200, 300, 400)
Matej Klotton86d87c42016-11-11 11:38:55 +010063 ]
Damjan Marionf56b77a2016-10-03 19:44:57 +020064
Klement Sekeraf62ae122016-10-11 11:47:09 +020065 # packet flows mapping pg0 -> pg1.sub, pg2.sub, etc.
66 self.flows = dict()
67 self.flows[self.pg0] = [self.pg1.sub_if, self.pg2.sub_if]
68 self.flows[self.pg1.sub_if] = [self.pg0, self.pg2.sub_if]
69 self.flows[self.pg2.sub_if] = [self.pg0, self.pg1.sub_if]
Damjan Marionf56b77a2016-10-03 19:44:57 +020070
Klement Sekeraf62ae122016-10-11 11:47:09 +020071 # packet sizes
72 self.pg_if_packet_sizes = [64, 512, 1518, 9018]
73 self.sub_if_packet_sizes = [64, 512, 1518 + 4, 9018 + 4]
Damjan Marionf56b77a2016-10-03 19:44:57 +020074
Klement Sekeraf62ae122016-10-11 11:47:09 +020075 self.interfaces = list(self.pg_interfaces)
76 self.interfaces.extend(self.sub_interfaces)
Damjan Marionf56b77a2016-10-03 19:44:57 +020077
Klement Sekeraf62ae122016-10-11 11:47:09 +020078 # setup all interfaces
79 for i in self.interfaces:
80 i.admin_up()
81 i.config_ip6()
82 i.resolve_ndp()
83
Matej Klotton86d87c42016-11-11 11:38:55 +010084 # config 2M FIB entries
Klement Sekeraf62ae122016-10-11 11:47:09 +020085 self.config_fib_entries(200)
Damjan Marionf56b77a2016-10-03 19:44:57 +020086
87 def tearDown(self):
Matej Klotton86d87c42016-11-11 11:38:55 +010088 """Run standard test teardown and log ``show ip6 neighbors``."""
Neale Ranns75152282017-01-09 01:00:45 -080089 for i in self.sub_interfaces:
90 i.unconfig_ip6()
91 i.ip6_disable()
92 i.admin_down()
93 i.remove_vpp_config()
94
Klement Sekeraf62ae122016-10-11 11:47:09 +020095 super(TestIPv6, self).tearDown()
96 if not self.vpp_dead:
Matej Klotton86d87c42016-11-11 11:38:55 +010097 self.logger.info(self.vapi.cli("show ip6 neighbors"))
Klement Sekeraf62ae122016-10-11 11:47:09 +020098 # info(self.vapi.cli("show ip6 fib")) # many entries
Damjan Marionf56b77a2016-10-03 19:44:57 +020099
Klement Sekeraf62ae122016-10-11 11:47:09 +0200100 def config_fib_entries(self, count):
Matej Klotton86d87c42016-11-11 11:38:55 +0100101 """For each interface add to the FIB table *count* routes to
102 "fd02::1/128" destination with interface's local address as next-hop
103 address.
104
105 :param int count: Number of FIB entries.
106
107 - *TODO:* check if the next-hop address shouldn't be remote address
108 instead of local address.
109 """
Klement Sekeraf62ae122016-10-11 11:47:09 +0200110 n_int = len(self.interfaces)
111 percent = 0
112 counter = 0.0
113 dest_addr = socket.inet_pton(socket.AF_INET6, "fd02::1")
114 dest_addr_len = 128
115 for i in self.interfaces:
116 next_hop_address = i.local_ip6n
117 for j in range(count / n_int):
118 self.vapi.ip_add_del_route(
119 dest_addr, dest_addr_len, next_hop_address, is_ipv6=1)
Matej Klotton86d87c42016-11-11 11:38:55 +0100120 counter += 1
Klement Sekeraf62ae122016-10-11 11:47:09 +0200121 if counter / count * 100 > percent:
Matej Klotton86d87c42016-11-11 11:38:55 +0100122 self.logger.info("Configure %d FIB entries .. %d%% done" %
Klement Sekera7bb873a2016-11-18 07:38:42 +0100123 (count, percent))
Matej Klotton86d87c42016-11-11 11:38:55 +0100124 percent += 1
Damjan Marionf56b77a2016-10-03 19:44:57 +0200125
Klement Sekeraf62ae122016-10-11 11:47:09 +0200126 def create_stream(self, src_if, packet_sizes):
Matej Klotton86d87c42016-11-11 11:38:55 +0100127 """Create input packet stream for defined interface.
128
129 :param VppInterface src_if: Interface to create packet stream for.
130 :param list packet_sizes: Required packet sizes.
131 """
Damjan Marionf56b77a2016-10-03 19:44:57 +0200132 pkts = []
133 for i in range(0, 257):
Klement Sekeraf62ae122016-10-11 11:47:09 +0200134 dst_if = self.flows[src_if][i % 2]
Klement Sekeradab231a2016-12-21 08:50:14 +0100135 info = self.create_packet_info(src_if, dst_if)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200136 payload = self.info_to_payload(info)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200137 p = (Ether(dst=src_if.local_mac, src=src_if.remote_mac) /
138 IPv6(src=src_if.remote_ip6, dst=dst_if.remote_ip6) /
Damjan Marionf56b77a2016-10-03 19:44:57 +0200139 UDP(sport=1234, dport=1234) /
140 Raw(payload))
141 info.data = p.copy()
Klement Sekeraf62ae122016-10-11 11:47:09 +0200142 if isinstance(src_if, VppSubInterface):
143 p = src_if.add_dot1_layer(p)
144 size = packet_sizes[(i // 2) % len(packet_sizes)]
Damjan Marionf56b77a2016-10-03 19:44:57 +0200145 self.extend_packet(p, size)
146 pkts.append(p)
147 return pkts
148
Klement Sekeraf62ae122016-10-11 11:47:09 +0200149 def verify_capture(self, dst_if, capture):
Matej Klotton86d87c42016-11-11 11:38:55 +0100150 """Verify captured input packet stream for defined interface.
151
152 :param VppInterface dst_if: Interface to verify captured packet stream
153 for.
154 :param list capture: Captured packet stream.
155 """
156 self.logger.info("Verifying capture on interface %s" % dst_if.name)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200157 last_info = dict()
Damjan Marionf56b77a2016-10-03 19:44:57 +0200158 for i in self.interfaces:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200159 last_info[i.sw_if_index] = None
160 is_sub_if = False
161 dst_sw_if_index = dst_if.sw_if_index
162 if hasattr(dst_if, 'parent'):
163 is_sub_if = True
Damjan Marionf56b77a2016-10-03 19:44:57 +0200164 for packet in capture:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200165 if is_sub_if:
166 # Check VLAN tags and Ethernet header
167 packet = dst_if.remove_dot1_layer(packet)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200168 self.assertTrue(Dot1Q not in packet)
169 try:
170 ip = packet[IPv6]
171 udp = packet[UDP]
172 payload_info = self.payload_to_info(str(packet[Raw]))
173 packet_index = payload_info.index
Klement Sekeraf62ae122016-10-11 11:47:09 +0200174 self.assertEqual(payload_info.dst, dst_sw_if_index)
Klement Sekerada505f62017-01-04 12:58:53 +0100175 self.logger.debug(
176 "Got packet on port %s: src=%u (id=%u)" %
177 (dst_if.name, payload_info.src, packet_index))
Klement Sekeraf62ae122016-10-11 11:47:09 +0200178 next_info = self.get_next_packet_info_for_interface2(
179 payload_info.src, dst_sw_if_index,
180 last_info[payload_info.src])
181 last_info[payload_info.src] = next_info
Damjan Marionf56b77a2016-10-03 19:44:57 +0200182 self.assertTrue(next_info is not None)
183 self.assertEqual(packet_index, next_info.index)
184 saved_packet = next_info.data
185 # Check standard fields
186 self.assertEqual(ip.src, saved_packet[IPv6].src)
187 self.assertEqual(ip.dst, saved_packet[IPv6].dst)
188 self.assertEqual(udp.sport, saved_packet[UDP].sport)
189 self.assertEqual(udp.dport, saved_packet[UDP].dport)
190 except:
Klement Sekera7bb873a2016-11-18 07:38:42 +0100191 self.logger.error(ppp("Unexpected or invalid packet:", packet))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200192 raise
193 for i in self.interfaces:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200194 remaining_packet = self.get_next_packet_info_for_interface2(
195 i.sw_if_index, dst_sw_if_index, last_info[i.sw_if_index])
Klement Sekera7bb873a2016-11-18 07:38:42 +0100196 self.assertTrue(remaining_packet is None,
197 "Interface %s: Packet expected from interface %s "
198 "didn't arrive" % (dst_if.name, i.name))
Damjan Marionf56b77a2016-10-03 19:44:57 +0200199
200 def test_fib(self):
Matej Klotton86d87c42016-11-11 11:38:55 +0100201 """ IPv6 FIB test
202
203 Test scenario:
204 - Create IPv6 stream for pg0 interface
205 - Create IPv6 tagged streams for pg1's and pg2's subinterface.
206 - Send and verify received packets on each interface.
207 """
Damjan Marionf56b77a2016-10-03 19:44:57 +0200208
Klement Sekeraf62ae122016-10-11 11:47:09 +0200209 pkts = self.create_stream(self.pg0, self.pg_if_packet_sizes)
210 self.pg0.add_stream(pkts)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200211
Klement Sekeraf62ae122016-10-11 11:47:09 +0200212 for i in self.sub_interfaces:
213 pkts = self.create_stream(i, self.sub_if_packet_sizes)
214 i.parent.add_stream(pkts)
215
216 self.pg_enable_capture(self.pg_interfaces)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200217 self.pg_start()
218
Klement Sekeraf62ae122016-10-11 11:47:09 +0200219 pkts = self.pg0.get_capture()
220 self.verify_capture(self.pg0, pkts)
221
222 for i in self.sub_interfaces:
223 pkts = i.parent.get_capture()
224 self.verify_capture(i, pkts)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200225
Neale Ranns75152282017-01-09 01:00:45 -0800226 def send_and_assert_no_replies(self, intf, pkts, remark):
227 intf.add_stream(pkts)
228 self.pg_enable_capture(self.pg_interfaces)
229 self.pg_start()
230 intf.assert_nothing_captured(remark=remark)
231
232 def test_ns(self):
Klement Sekerada505f62017-01-04 12:58:53 +0100233 """ IPv6 Neighbour Solicitation Exceptions
Neale Ranns75152282017-01-09 01:00:45 -0800234
Klement Sekerada505f62017-01-04 12:58:53 +0100235 Test scenario:
Neale Ranns75152282017-01-09 01:00:45 -0800236 - Send an NS Sourced from an address not covered by the link sub-net
237 - Send an NS to an mcast address the router has not joined
238 - Send NS for a target address the router does not onn.
239 """
240
241 #
242 # An NS from a non link source address
243 #
244 nsma = in6_getnsma(inet_pton(socket.AF_INET6, self.pg0.local_ip6))
245 d = inet_ntop(socket.AF_INET6, nsma)
246
247 p = (Ether(dst=in6_getnsmac(nsma)) /
248 IPv6(dst=d, src="2002::2") /
249 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
250 ICMPv6NDOptSrcLLAddr(lladdr=self.pg0.remote_mac))
251 pkts = [p]
252
Klement Sekerada505f62017-01-04 12:58:53 +0100253 self.send_and_assert_no_replies(
254 self.pg0, pkts,
255 "No response to NS source by address not on sub-net")
Neale Ranns75152282017-01-09 01:00:45 -0800256
257 #
Klement Sekerada505f62017-01-04 12:58:53 +0100258 # An NS for sent to a solicited mcast group the router is
259 # not a member of FAILS
Neale Ranns75152282017-01-09 01:00:45 -0800260 #
261 if 0:
262 nsma = in6_getnsma(inet_pton(socket.AF_INET6, "fd::ffff"))
263 d = inet_ntop(socket.AF_INET6, nsma)
264
265 p = (Ether(dst=in6_getnsmac(nsma)) /
266 IPv6(dst=d, src=self.pg0.remote_ip6) /
267 ICMPv6ND_NS(tgt=self.pg0.local_ip6) /
268 ICMPv6NDOptSrcLLAddr(lladdr=self.pg0.remote_mac))
269 pkts = [p]
270
Klement Sekerada505f62017-01-04 12:58:53 +0100271 self.send_and_assert_no_replies(
272 self.pg0, pkts,
273 "No response to NS sent to unjoined mcast address")
Neale Ranns75152282017-01-09 01:00:45 -0800274
275 #
276 # An NS whose target address is one the router does not own
277 #
278 nsma = in6_getnsma(inet_pton(socket.AF_INET6, self.pg0.local_ip6))
279 d = inet_ntop(socket.AF_INET6, nsma)
280
281 p = (Ether(dst=in6_getnsmac(nsma)) /
282 IPv6(dst=d, src=self.pg0.remote_ip6) /
283 ICMPv6ND_NS(tgt="fd::ffff") /
284 ICMPv6NDOptSrcLLAddr(lladdr=self.pg0.remote_mac))
285 pkts = [p]
286
287 self.send_and_assert_no_replies(self.pg0, pkts,
288 "No response to NS for unknown target")
289
290 def send_and_expect_ra(self, intf, pkts, remark, src_ip=None):
291 if not src_ip:
292 src_ip = intf.remote_ip6
293 intf.add_stream(pkts)
294 self.pg0.add_stream(pkts)
295 self.pg_enable_capture(self.pg_interfaces)
296 self.pg_start()
297 rx = intf.get_capture(1)
298
299 self.assertEqual(len(rx), 1)
300 rx = rx[0]
301
302 # the rx'd RA should be addressed to the sender's source
303 self.assertTrue(rx.haslayer(ICMPv6ND_RA))
304 self.assertEqual(in6_ptop(rx[IPv6].dst),
305 in6_ptop(src_ip))
306
307 # and come from the router's link local
308 self.assertTrue(in6_islladdr(rx[IPv6].src))
309 self.assertEqual(in6_ptop(rx[IPv6].src),
310 in6_ptop(mk_ll_addr(intf.local_mac)))
311
312 def test_rs(self):
Klement Sekerada505f62017-01-04 12:58:53 +0100313 """ IPv6 Router Solicitation Exceptions
Neale Ranns75152282017-01-09 01:00:45 -0800314
Klement Sekerada505f62017-01-04 12:58:53 +0100315 Test scenario:
Neale Ranns75152282017-01-09 01:00:45 -0800316 """
317
318 #
Klement Sekerada505f62017-01-04 12:58:53 +0100319 # Before we begin change the IPv6 RA responses to use the unicast
320 # address - that way we will not confuse them with the periodic
321 # RAs which go to the mcast address
Neale Ranns75152282017-01-09 01:00:45 -0800322 #
323 self.pg0.ip6_ra_config(send_unicast=1)
324
325 #
326 # An RS from a link source address
327 # - expect an RA in return
328 #
329 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
330 IPv6(dst=self.pg0.local_ip6, src=self.pg0.remote_ip6) /
331 ICMPv6ND_RS())
332 pkts = [p]
333 self.send_and_expect_ra(self.pg0, pkts, "Genuine RS")
334
335 #
336 # For the next RS sent the RA should be rate limited
337 #
338 self.send_and_assert_no_replies(self.pg0, pkts, "RA rate limited")
339
340 #
341 # When we reconfiure the IPv6 RA config, we reset the RA rate limiting,
Klement Sekerada505f62017-01-04 12:58:53 +0100342 # so we need to do this before each test below so as not to drop
343 # packets for rate limiting reasons. Test this works here.
Neale Ranns75152282017-01-09 01:00:45 -0800344 #
345 self.pg0.ip6_ra_config(send_unicast=1)
346 self.send_and_expect_ra(self.pg0, pkts, "Rate limit reset RS")
347
348 #
349 # An RS sent from a non-link local source
350 #
351 self.pg0.ip6_ra_config(send_unicast=1)
352 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
353 IPv6(dst=self.pg0.local_ip6, src="2002::ffff") /
354 ICMPv6ND_RS())
355 pkts = [p]
356 self.send_and_assert_no_replies(self.pg0, pkts,
357 "RS from non-link source")
358
359 #
360 # Source an RS from a link local address
361 #
362 self.pg0.ip6_ra_config(send_unicast=1)
363 ll = mk_ll_addr(self.pg0.remote_mac)
364 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
365 IPv6(dst=self.pg0.local_ip6, src=ll) /
366 ICMPv6ND_RS())
367 pkts = [p]
368 self.send_and_expect_ra(
369 self.pg0, pkts, "RS sourced from link-local", src_ip=ll)
370
371 #
Klement Sekerada505f62017-01-04 12:58:53 +0100372 # Source from the unspecified address ::. This happens when the RS
373 # is sent before the host has a configured address/sub-net,
374 # i.e. auto-config. Since the sender has no IP address, the reply
375 # comes back mcast - so the capture needs to not filter this.
376 # If we happen to pick up the periodic RA at this point then so be it,
377 # it's not an error.
Neale Ranns75152282017-01-09 01:00:45 -0800378 #
379 self.pg0.ip6_ra_config(send_unicast=1)
380 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
381 IPv6(dst=self.pg0.local_ip6, src="::") /
382 ICMPv6ND_RS())
383 pkts = [p]
384
385 self.pg0.add_stream(pkts)
386 self.pg0.add_stream(pkts)
387 self.pg_enable_capture(self.pg_interfaces)
388 self.pg_start()
389 capture = self.pg0.get_capture(1, filter_out_fn=None)
390 found = 0
391 for rx in capture:
392 if (rx.haslayer(ICMPv6ND_RA)):
393 # and come from the router's link local
394 self.assertTrue(in6_islladdr(rx[IPv6].src))
395 self.assertEqual(in6_ptop(rx[IPv6].src),
396 in6_ptop(mk_ll_addr(self.pg0.local_mac)))
397 # sent to the all hosts mcast
398 self.assertEqual(in6_ptop(rx[IPv6].dst), "ff02::1")
399
400 found = 1
401 self.assertTrue(found)
402
403 @unittest.skip("Unsupported")
404 def test_mrs(self):
Klement Sekerada505f62017-01-04 12:58:53 +0100405 """ IPv6 Multicast Router Solicitation Exceptions
Neale Ranns75152282017-01-09 01:00:45 -0800406
Klement Sekerada505f62017-01-04 12:58:53 +0100407 Test scenario:
Neale Ranns75152282017-01-09 01:00:45 -0800408 """
409
410 #
411 # An RS from a link source address
412 # - expect an RA in return
413 #
414 nsma = in6_getnsma(inet_pton(socket.AF_INET6, self.pg0.local_ip6))
415 d = inet_ntop(socket.AF_INET6, nsma)
416
417 p = (Ether(dst=getmacbyip6("ff02::2")) /
418 IPv6(dst=d, src=self.pg0.remote_ip6) /
419 ICMPv6MRD_Solicitation())
420 pkts = [p]
421
422 self.pg0.add_stream(pkts)
423 self.pg_enable_capture(self.pg_interfaces)
424 self.pg_start()
425 self.pg0.assert_nothing_captured(
426 remark="No response to NS source by address not on sub-net")
427
428 #
429 # An RS from a non link source address
430 #
431 nsma = in6_getnsma(inet_pton(socket.AF_INET6, self.pg0.local_ip6))
432 d = inet_ntop(socket.AF_INET6, nsma)
433
434 p = (Ether(dst=getmacbyip6("ff02::2")) /
435 IPv6(dst=d, src="2002::2") /
436 ICMPv6MRD_Solicitation())
437 pkts = [p]
438
439 self.send_and_assert_no_replies(self.pg0, pkts,
440 "RA rate limited")
441 self.pg0.add_stream(pkts)
442 self.pg_enable_capture(self.pg_interfaces)
443 self.pg_start()
444 self.pg0.assert_nothing_captured(
445 remark="No response to NS source by address not on sub-net")
446
Damjan Marionf56b77a2016-10-03 19:44:57 +0200447
448if __name__ == '__main__':
Klement Sekeraf62ae122016-10-11 11:47:09 +0200449 unittest.main(testRunner=VppTestRunner)