blob: 8c3830c2d816e073024cc6c84ed243a2c42ddeb1 [file] [log] [blame]
Matej Klotton0178d522016-11-04 11:11:44 +01001#!/usr/bin/env python
Matej Klotton86d87c42016-11-11 11:38:55 +01002"""IRB Test Case HLD:
3
4**config**
5 - L2 MAC learning enabled in l2bd
6 - 2 routed interfaces untagged, bvi (Bridge Virtual Interface)
7 - 2 bridged interfaces in l2bd with bvi
8
9**test**
10 - sending ip4 eth pkts between routed interfaces
11 - 2 routed interfaces
12 - 2 bridged interfaces
13
14 - 64B, 512B, 1518B, 9200B (ether_size)
15
16 - burst of pkts per interface
17 - 257pkts per burst
18 - routed pkts hitting different FIB entries
19 - bridged pkts hitting different MAC entries
20
21**verify**
22 - all packets received correctly
23
24"""
25
Matej Klotton0178d522016-11-04 11:11:44 +010026import unittest
Matej Klotton86d87c42016-11-11 11:38:55 +010027from random import choice
Matej Klotton0178d522016-11-04 11:11:44 +010028
29from scapy.packet import Raw
30from scapy.layers.l2 import Ether
31from scapy.layers.inet import IP, UDP
Matej Klotton0178d522016-11-04 11:11:44 +010032
33from framework import VppTestCase, VppTestRunner
Ole Troan8006c6a2018-12-17 12:02:26 +010034from vpp_papi import MACAddress
Neale Rannsb4743802018-09-05 09:13:57 -070035from vpp_papi_provider import L2_PORT_TYPE
Matej Klotton0178d522016-11-04 11:11:44 +010036
Matej Klotton0178d522016-11-04 11:11:44 +010037
38class TestIpIrb(VppTestCase):
Matej Klotton86d87c42016-11-11 11:38:55 +010039 """IRB Test Case"""
Matej Klotton0178d522016-11-04 11:11:44 +010040
41 @classmethod
42 def setUpClass(cls):
Matej Klotton86d87c42016-11-11 11:38:55 +010043 """
44 #. Create BD with MAC learning enabled and put interfaces to this BD.
45 #. Configure IPv4 addresses on loopback interface and routed interface.
46 #. Configure MAC address binding to IPv4 neighbors on loop0.
47 #. Configure MAC address on pg2.
48 #. Loopback BVI interface has remote hosts, one half of hosts are
49 behind pg0 second behind pg1.
50 """
Matej Klotton0178d522016-11-04 11:11:44 +010051 super(TestIpIrb, cls).setUpClass()
52
53 cls.pg_if_packet_sizes = [64, 512, 1518, 9018] # packet sizes
54 cls.bd_id = 10
55 cls.remote_hosts_count = 250
56
57 # create 3 pg interfaces, 1 loopback interface
58 cls.create_pg_interfaces(range(3))
Klement Sekerab9ef2732018-06-24 22:49:33 +020059 cls.create_loopback_interfaces(1)
Matej Klotton0178d522016-11-04 11:11:44 +010060
61 cls.interfaces = list(cls.pg_interfaces)
62 cls.interfaces.extend(cls.lo_interfaces)
63
64 for i in cls.interfaces:
65 i.admin_up()
66
67 # Create BD with MAC learning enabled and put interfaces to this BD
68 cls.vapi.sw_interface_set_l2_bridge(
Neale Rannsb4743802018-09-05 09:13:57 -070069 cls.loop0.sw_if_index, bd_id=cls.bd_id,
70 port_type=L2_PORT_TYPE.BVI)
Matej Klotton0178d522016-11-04 11:11:44 +010071 cls.vapi.sw_interface_set_l2_bridge(
72 cls.pg0.sw_if_index, bd_id=cls.bd_id)
73 cls.vapi.sw_interface_set_l2_bridge(
74 cls.pg1.sw_if_index, bd_id=cls.bd_id)
75
Matej Klotton86d87c42016-11-11 11:38:55 +010076 # Configure IPv4 addresses on loopback interface and routed interface
Matej Klotton0178d522016-11-04 11:11:44 +010077 cls.loop0.config_ip4()
78 cls.pg2.config_ip4()
79
Matej Klotton86d87c42016-11-11 11:38:55 +010080 # Configure MAC address binding to IPv4 neighbors on loop0
Matej Klotton0178d522016-11-04 11:11:44 +010081 cls.loop0.generate_remote_hosts(cls.remote_hosts_count)
Matej Klotton86d87c42016-11-11 11:38:55 +010082 cls.loop0.configure_ipv4_neighbors()
Matej Klotton0178d522016-11-04 11:11:44 +010083 # configure MAC address on pg2
84 cls.pg2.resolve_arp()
85
Matej Klotton86d87c42016-11-11 11:38:55 +010086 # Loopback BVI interface has remote hosts, one half of hosts are behind
87 # pg0 second behind pg1
Matej Klotton0178d522016-11-04 11:11:44 +010088 half = cls.remote_hosts_count // 2
89 cls.pg0.remote_hosts = cls.loop0.remote_hosts[:half]
90 cls.pg1.remote_hosts = cls.loop0.remote_hosts[half:]
91
92 def tearDown(self):
Matej Klotton86d87c42016-11-11 11:38:55 +010093 """Run standard test teardown and log ``show l2patch``,
94 ``show l2fib verbose``,``show bridge-domain <bd_id> detail``,
95 ``show ip arp``.
96 """
Matej Klotton0178d522016-11-04 11:11:44 +010097 super(TestIpIrb, self).tearDown()
98 if not self.vpp_dead:
Matej Klotton86d87c42016-11-11 11:38:55 +010099 self.logger.info(self.vapi.cli("show l2patch"))
100 self.logger.info(self.vapi.cli("show l2fib verbose"))
101 self.logger.info(self.vapi.cli("show bridge-domain %s detail" %
102 self.bd_id))
103 self.logger.info(self.vapi.cli("show ip arp"))
Matej Klotton0178d522016-11-04 11:11:44 +0100104
105 def create_stream(self, src_ip_if, dst_ip_if, packet_sizes):
106 pkts = []
107 for i in range(0, 257):
108 remote_dst_host = choice(dst_ip_if.remote_hosts)
Klement Sekeradab231a2016-12-21 08:50:14 +0100109 info = self.create_packet_info(src_ip_if, dst_ip_if)
Matej Klotton0178d522016-11-04 11:11:44 +0100110 payload = self.info_to_payload(info)
111 p = (Ether(dst=src_ip_if.local_mac, src=src_ip_if.remote_mac) /
112 IP(src=src_ip_if.remote_ip4,
113 dst=remote_dst_host.ip4) /
114 UDP(sport=1234, dport=1234) /
115 Raw(payload))
116 info.data = p.copy()
117 size = packet_sizes[(i // 2) % len(packet_sizes)]
118 self.extend_packet(p, size)
119 pkts.append(p)
120 return pkts
121
122 def create_stream_l2_to_ip(self, src_l2_if, src_ip_if, dst_ip_if,
123 packet_sizes):
124 pkts = []
125 for i in range(0, 257):
Klement Sekeradab231a2016-12-21 08:50:14 +0100126 info = self.create_packet_info(src_ip_if, dst_ip_if)
Matej Klotton0178d522016-11-04 11:11:44 +0100127 payload = self.info_to_payload(info)
128
129 host = choice(src_l2_if.remote_hosts)
130
131 p = (Ether(src=host.mac,
Klement Sekeradab231a2016-12-21 08:50:14 +0100132 dst=src_ip_if.local_mac) /
Matej Klotton0178d522016-11-04 11:11:44 +0100133 IP(src=host.ip4,
134 dst=dst_ip_if.remote_ip4) /
135 UDP(sport=1234, dport=1234) /
136 Raw(payload))
137
138 info.data = p.copy()
139 size = packet_sizes[(i // 2) % len(packet_sizes)]
140 self.extend_packet(p, size)
141
142 pkts.append(p)
143 return pkts
144
145 def verify_capture_l2_to_ip(self, dst_ip_if, src_ip_if, capture):
146 last_info = dict()
147 for i in self.interfaces:
148 last_info[i.sw_if_index] = None
149
150 dst_ip_sw_if_index = dst_ip_if.sw_if_index
151
152 for packet in capture:
153 ip = packet[IP]
154 udp = packet[IP][UDP]
155 payload_info = self.payload_to_info(str(packet[IP][UDP][Raw]))
Matej Klotton0178d522016-11-04 11:11:44 +0100156
157 self.assertEqual(payload_info.dst, dst_ip_sw_if_index)
158
159 next_info = self.get_next_packet_info_for_interface2(
160 payload_info.src, dst_ip_sw_if_index,
161 last_info[payload_info.src])
162 last_info[payload_info.src] = next_info
163 self.assertTrue(next_info is not None)
164 saved_packet = next_info.data
165 self.assertTrue(next_info is not None)
166
167 # MAC: src, dst
168 self.assertEqual(packet.src, dst_ip_if.local_mac)
169 self.assertEqual(packet.dst, dst_ip_if.remote_mac)
170
171 # IP: src, dst
172 host = src_ip_if.host_by_ip4(ip.src)
173 self.assertIsNotNone(host)
174 self.assertEqual(ip.dst, saved_packet[IP].dst)
175 self.assertEqual(ip.dst, dst_ip_if.remote_ip4)
176
177 # UDP:
178 self.assertEqual(udp.sport, saved_packet[UDP].sport)
179 self.assertEqual(udp.dport, saved_packet[UDP].dport)
180
181 def verify_capture(self, dst_ip_if, src_ip_if, capture):
182 last_info = dict()
183 for i in self.interfaces:
184 last_info[i.sw_if_index] = None
185
186 dst_ip_sw_if_index = dst_ip_if.sw_if_index
187
188 for packet in capture:
189 ip = packet[IP]
190 udp = packet[IP][UDP]
191 payload_info = self.payload_to_info(str(packet[IP][UDP][Raw]))
192 packet_index = payload_info.index
193
194 self.assertEqual(payload_info.dst, dst_ip_sw_if_index)
195
196 next_info = self.get_next_packet_info_for_interface2(
197 payload_info.src, dst_ip_sw_if_index,
198 last_info[payload_info.src])
199 last_info[payload_info.src] = next_info
200 self.assertTrue(next_info is not None)
201 self.assertEqual(packet_index, next_info.index)
202 saved_packet = next_info.data
203 self.assertTrue(next_info is not None)
204
205 # MAC: src, dst
206 self.assertEqual(packet.src, dst_ip_if.local_mac)
207 host = dst_ip_if.host_by_mac(packet.dst)
208
209 # IP: src, dst
210 self.assertEqual(ip.src, src_ip_if.remote_ip4)
211 self.assertEqual(ip.dst, saved_packet[IP].dst)
212 self.assertEqual(ip.dst, host.ip4)
213
214 # UDP:
215 self.assertEqual(udp.sport, saved_packet[UDP].sport)
216 self.assertEqual(udp.dport, saved_packet[UDP].dport)
217
218 def test_ip4_irb_1(self):
219 """ IPv4 IRB test 1
220
221 Test scenario:
Matej Klotton86d87c42016-11-11 11:38:55 +0100222 - ip traffic from pg2 interface must ends in both pg0 and pg1
223 - arp entry present in loop0 interface for destination IP
Matej Klotton0178d522016-11-04 11:11:44 +0100224 - no l2 entree configured, pg0 and pg1 are same
225 """
226
227 stream = self.create_stream(
228 self.pg2, self.loop0, self.pg_if_packet_sizes)
229 self.pg2.add_stream(stream)
230
231 self.pg_enable_capture(self.pg_interfaces)
232 self.pg_start()
233
Klement Sekeradab231a2016-12-21 08:50:14 +0100234 packet_count = self.get_packet_count_for_if_idx(self.loop0.sw_if_index)
235
236 rcvd1 = self.pg0.get_capture(packet_count)
237 rcvd2 = self.pg1.get_capture(packet_count)
Matej Klotton0178d522016-11-04 11:11:44 +0100238
239 self.verify_capture(self.loop0, self.pg2, rcvd1)
240 self.verify_capture(self.loop0, self.pg2, rcvd2)
241
242 self.assertListEqual(rcvd1.res, rcvd2.res)
243
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700244 def send_and_verify_l2_to_ip(self):
Matej Klotton0178d522016-11-04 11:11:44 +0100245 stream1 = self.create_stream_l2_to_ip(
246 self.pg0, self.loop0, self.pg2, self.pg_if_packet_sizes)
247 stream2 = self.create_stream_l2_to_ip(
248 self.pg1, self.loop0, self.pg2, self.pg_if_packet_sizes)
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700249 self.vapi.cli("clear trace")
Matej Klotton0178d522016-11-04 11:11:44 +0100250 self.pg0.add_stream(stream1)
251 self.pg1.add_stream(stream2)
252
253 self.pg_enable_capture(self.pg_interfaces)
254 self.pg_start()
255
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700256 rcvd = self.pg2.get_capture(514)
Matej Klotton0178d522016-11-04 11:11:44 +0100257 self.verify_capture_l2_to_ip(self.pg2, self.loop0, rcvd)
258
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700259 def test_ip4_irb_2(self):
260 """ IPv4 IRB test 2
261
262 Test scenario:
263 - ip traffic from pg0 and pg1 ends on pg2
264 """
265 self.send_and_verify_l2_to_ip()
266
267 # change the BVI's mac and resed traffic
Ole Troan8006c6a2018-12-17 12:02:26 +0100268 self.loop0.set_mac(MACAddress("00:00:00:11:11:33"))
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700269
270 self.send_and_verify_l2_to_ip()
271 # check it wasn't flooded
272 self.pg1.assert_nothing_captured(remark="UU Flood")
273
Matej Klotton0178d522016-11-04 11:11:44 +0100274
275if __name__ == '__main__':
276 unittest.main(testRunner=VppTestRunner)