blob: db4ad8078e0e808dfbab9551fc518d8fcb9ace20 [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Neale Rannsccc70f62018-10-02 07:28:16 -07002
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -07003import unittest
4
Neale Rannsccc70f62018-10-02 07:28:16 -07005from framework import VppTestCase, VppTestRunner
Neale Rannsccc70f62018-10-02 07:28:16 -07006from vpp_ip_route import VppIpTable
7
8from scapy.packet import Raw
9from scapy.layers.l2 import Ether
10from scapy.layers.inet import IP, UDP, ICMP
11from scapy.layers.inet6 import IPv6
12
Ole Troan0685da42018-10-16 14:42:50 +020013from vpp_papi import VppEnum
14
Paul Vinciguerra4271c972019-05-14 13:25:49 -040015NUM_PKTS = 67
16
Neale Rannsccc70f62018-10-02 07:28:16 -070017
18class TestSVS(VppTestCase):
19 """ SVS Test Case """
20
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -070021 @classmethod
22 def setUpClass(cls):
23 super(TestSVS, cls).setUpClass()
24
25 @classmethod
26 def tearDownClass(cls):
27 super(TestSVS, cls).tearDownClass()
28
Neale Rannsccc70f62018-10-02 07:28:16 -070029 def setUp(self):
30 super(TestSVS, self).setUp()
31
32 # create 2 pg interfaces
33 self.create_pg_interfaces(range(4))
34
35 table_id = 0
36
37 for i in self.pg_interfaces:
38 i.admin_up()
39
40 if table_id != 0:
41 tbl = VppIpTable(self, table_id)
42 tbl.add_vpp_config()
43 tbl = VppIpTable(self, table_id, is_ip6=1)
44 tbl.add_vpp_config()
45
46 i.set_table_ip4(table_id)
47 i.set_table_ip6(table_id)
48 i.config_ip4()
49 i.resolve_arp()
50 i.config_ip6()
51 i.resolve_ndp()
52 table_id += 1
53
54 def tearDown(self):
55 for i in self.pg_interfaces:
56 i.unconfig_ip4()
57 i.unconfig_ip6()
Neale Rannsccc70f62018-10-02 07:28:16 -070058 i.set_table_ip4(0)
59 i.set_table_ip6(0)
60 i.admin_down()
61 super(TestSVS, self).tearDown()
62
63 def test_svs4(self):
64 """ Source VRF Select IP4 """
65
66 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -070067 # packets destined out of the 3 non-default table interfaces
Neale Rannsccc70f62018-10-02 07:28:16 -070068 #
69 pkts_0 = [(Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
70 IP(src="1.1.1.1", dst=self.pg1.remote_ip4) /
71 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +010072 Raw(b'\xa5' * 100)),
Neale Rannsccc70f62018-10-02 07:28:16 -070073 (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
74 IP(src="2.2.2.2", dst=self.pg2.remote_ip4) /
75 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +010076 Raw(b'\xa5' * 100)),
Neale Rannsccc70f62018-10-02 07:28:16 -070077 (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
78 IP(src="3.3.3.3", dst=self.pg3.remote_ip4) /
79 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +010080 Raw(b'\xa5' * 100))]
Neale Rannsccc70f62018-10-02 07:28:16 -070081 pkts_1 = [(Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
82 IP(src="1.1.1.1", dst=self.pg1.remote_ip4) /
83 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +010084 Raw(b'\xa5' * 100)),
Neale Rannsccc70f62018-10-02 07:28:16 -070085 (Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
86 IP(src="2.2.2.2", dst=self.pg2.remote_ip4) /
87 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +010088 Raw(b'\xa5' * 100)),
Neale Rannsccc70f62018-10-02 07:28:16 -070089 (Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
90 IP(src="3.3.3.3", dst=self.pg3.remote_ip4) /
91 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +010092 Raw(b'\xa5' * 100))]
Neale Rannsccc70f62018-10-02 07:28:16 -070093
94 #
95 # before adding the SVS config all these packets are dropped when
96 # ingressing on pg0 since pg0 is in the default table
97 #
98 for p in pkts_0:
99 self.send_and_assert_no_replies(self.pg0, p * 1)
100
101 #
102 # Add table 1001 & 1002 into which we'll add the routes
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700103 # determining the source VRF selection
Neale Rannsccc70f62018-10-02 07:28:16 -0700104 #
105 table_ids = [101, 102]
106
107 for table_id in table_ids:
Ole Troan0685da42018-10-16 14:42:50 +0200108 self.vapi.svs_table_add_del(
Ole Troan5c2a2372020-11-19 16:01:23 +0100109 is_add=1,
110 af=VppEnum.vl_api_address_family_t.ADDRESS_IP4,
111 table_id=table_id)
Neale Rannsccc70f62018-10-02 07:28:16 -0700112
113 #
114 # map X.0.0.0/8 to each SVS table for lookup in table X
115 #
116 for i in range(1, 4):
117 self.vapi.svs_route_add_del(
Ole Troan5c2a2372020-11-19 16:01:23 +0100118 is_add=1,
119 prefix="%d.0.0.0/8" % i,
120 table_id=table_id,
121 source_table_id=i)
Neale Rannsccc70f62018-10-02 07:28:16 -0700122
123 #
124 # Enable SVS on pg0/pg1 using table 1001/1002
125 #
Ole Troan0685da42018-10-16 14:42:50 +0200126 self.vapi.svs_enable_disable(
Ole Troan5c2a2372020-11-19 16:01:23 +0100127 is_enable=1,
128 af=VppEnum.vl_api_address_family_t.ADDRESS_IP4,
129 table_id=table_ids[0],
130 sw_if_index=self.pg0.sw_if_index)
Ole Troan0685da42018-10-16 14:42:50 +0200131 self.vapi.svs_enable_disable(
Ole Troan5c2a2372020-11-19 16:01:23 +0100132 is_enable=1,
133 af=VppEnum.vl_api_address_family_t.ADDRESS_IP4,
134 table_id=table_ids[1],
135 sw_if_index=self.pg1.sw_if_index)
Neale Rannsccc70f62018-10-02 07:28:16 -0700136
137 #
138 # now all the packets should be delivered out the respective interface
139 #
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400140 self.send_and_expect(self.pg0, pkts_0[0] * NUM_PKTS, self.pg1)
141 self.send_and_expect(self.pg0, pkts_0[1] * NUM_PKTS, self.pg2)
142 self.send_and_expect(self.pg0, pkts_0[2] * NUM_PKTS, self.pg3)
143 self.send_and_expect(self.pg1, pkts_1[0] * NUM_PKTS, self.pg1)
144 self.send_and_expect(self.pg1, pkts_1[1] * NUM_PKTS, self.pg2)
145 self.send_and_expect(self.pg1, pkts_1[2] * NUM_PKTS, self.pg3)
Neale Rannsccc70f62018-10-02 07:28:16 -0700146
147 #
148 # check that if the SVS lookup does not match a route the packet
149 # is forwarded using the interface's routing table
150 #
151 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
152 IP(src=self.pg0.remote_ip4, dst=self.pg0.remote_ip4) /
153 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100154 Raw(b'\xa5' * 100))
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400155 self.send_and_expect(self.pg0, p * NUM_PKTS, self.pg0)
Neale Rannsccc70f62018-10-02 07:28:16 -0700156
157 p = (Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
158 IP(src=self.pg1.remote_ip4, dst=self.pg1.remote_ip4) /
159 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100160 Raw(b'\xa5' * 100))
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400161 self.send_and_expect(self.pg1, p * NUM_PKTS, self.pg1)
Neale Rannsccc70f62018-10-02 07:28:16 -0700162
163 #
164 # dump the SVS configs
165 #
166 ss = self.vapi.svs_dump()
167
168 self.assertEqual(ss[0].table_id, table_ids[0])
169 self.assertEqual(ss[0].sw_if_index, self.pg0.sw_if_index)
Ole Troan0685da42018-10-16 14:42:50 +0200170 self.assertEqual(ss[0].af, VppEnum.vl_api_address_family_t.ADDRESS_IP4)
Neale Rannsccc70f62018-10-02 07:28:16 -0700171 self.assertEqual(ss[1].table_id, table_ids[1])
172 self.assertEqual(ss[1].sw_if_index, self.pg1.sw_if_index)
Ole Troan0685da42018-10-16 14:42:50 +0200173 self.assertEqual(ss[1].af, VppEnum.vl_api_address_family_t.ADDRESS_IP4)
Neale Rannsccc70f62018-10-02 07:28:16 -0700174
175 #
176 # cleanup
177 #
Ole Troan0685da42018-10-16 14:42:50 +0200178 self.vapi.svs_enable_disable(
Ole Troan5c2a2372020-11-19 16:01:23 +0100179 is_enable=0,
180 af=VppEnum.vl_api_address_family_t.ADDRESS_IP4,
181 table_id=table_ids[0],
182 sw_if_index=self.pg0.sw_if_index)
Ole Troan0685da42018-10-16 14:42:50 +0200183 self.vapi.svs_enable_disable(
Ole Troan5c2a2372020-11-19 16:01:23 +0100184 is_enable=0,
185 af=VppEnum.vl_api_address_family_t.ADDRESS_IP4,
186 table_id=table_ids[1],
187 sw_if_index=self.pg1.sw_if_index)
Neale Rannsccc70f62018-10-02 07:28:16 -0700188
189 for table_id in table_ids:
190 for i in range(1, 4):
191 self.vapi.svs_route_add_del(
Ole Troan5c2a2372020-11-19 16:01:23 +0100192 is_add=0,
193 prefix="%d.0.0.0/8" % i,
194 table_id=table_id,
195 source_table_id=0)
196
Ole Troan0685da42018-10-16 14:42:50 +0200197 self.vapi.svs_table_add_del(
Ole Troan5c2a2372020-11-19 16:01:23 +0100198 is_add=0,
199 af=VppEnum.vl_api_address_family_t.ADDRESS_IP4,
200 table_id=table_id)
Neale Rannsccc70f62018-10-02 07:28:16 -0700201
202 def test_svs6(self):
203 """ Source VRF Select IP6 """
204
205 #
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700206 # packets destined out of the 3 non-default table interfaces
Neale Rannsccc70f62018-10-02 07:28:16 -0700207 #
208 pkts_0 = [(Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
209 IPv6(src="2001:1::1", dst=self.pg1.remote_ip6) /
210 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100211 Raw(b'\xa5' * 100)),
Neale Rannsccc70f62018-10-02 07:28:16 -0700212 (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
213 IPv6(src="2001:2::1", dst=self.pg2.remote_ip6) /
214 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100215 Raw(b'\xa5' * 100)),
Neale Rannsccc70f62018-10-02 07:28:16 -0700216 (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
217 IPv6(src="2001:3::1", dst=self.pg3.remote_ip6) /
218 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100219 Raw(b'\xa5' * 100))]
Neale Rannsccc70f62018-10-02 07:28:16 -0700220 pkts_1 = [(Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
221 IPv6(src="2001:1::1", dst=self.pg1.remote_ip6) /
222 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100223 Raw(b'\xa5' * 100)),
Neale Rannsccc70f62018-10-02 07:28:16 -0700224 (Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
225 IPv6(src="2001:2::1", dst=self.pg2.remote_ip6) /
226 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100227 Raw(b'\xa5' * 100)),
Neale Rannsccc70f62018-10-02 07:28:16 -0700228 (Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
229 IPv6(src="2001:3::1", dst=self.pg3.remote_ip6) /
230 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100231 Raw(b'\xa5' * 100))]
Neale Rannsccc70f62018-10-02 07:28:16 -0700232
233 #
234 # before adding the SVS config all these packets are dropped when
235 # ingressing on pg0 since pg0 is in the default table
236 #
237 for p in pkts_0:
238 self.send_and_assert_no_replies(self.pg0, p * 1)
239
240 #
241 # Add table 1001 & 1002 into which we'll add the routes
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700242 # determining the source VRF selection
Neale Rannsccc70f62018-10-02 07:28:16 -0700243 #
244 table_ids = [101, 102]
245
246 for table_id in table_ids:
Ole Troan0685da42018-10-16 14:42:50 +0200247 self.vapi.svs_table_add_del(
Ole Troan5c2a2372020-11-19 16:01:23 +0100248 is_add=1,
249 af=VppEnum.vl_api_address_family_t.ADDRESS_IP6,
250 table_id=table_id)
Neale Rannsccc70f62018-10-02 07:28:16 -0700251
252 #
253 # map X.0.0.0/8 to each SVS table for lookup in table X
254 #
255 for i in range(1, 4):
256 self.vapi.svs_route_add_del(
Ole Troan5c2a2372020-11-19 16:01:23 +0100257 is_add=1,
258 prefix="2001:%d::/32" % i,
259 table_id=table_id,
260 source_table_id=i)
Neale Rannsccc70f62018-10-02 07:28:16 -0700261
262 #
263 # Enable SVS on pg0/pg1 using table 1001/1002
264 #
Ole Troan0685da42018-10-16 14:42:50 +0200265 self.vapi.svs_enable_disable(
Ole Troan5c2a2372020-11-19 16:01:23 +0100266 is_enable=1,
267 af=VppEnum.vl_api_address_family_t.ADDRESS_IP6,
268 table_id=table_ids[0],
269 sw_if_index=self.pg0.sw_if_index)
Ole Troan0685da42018-10-16 14:42:50 +0200270 self.vapi.svs_enable_disable(
Ole Troan5c2a2372020-11-19 16:01:23 +0100271 is_enable=1,
272 af=VppEnum.vl_api_address_family_t.ADDRESS_IP6,
273 table_id=table_ids[1],
274 sw_if_index=self.pg1.sw_if_index)
Neale Rannsccc70f62018-10-02 07:28:16 -0700275
276 #
277 # now all the packets should be delivered out the respective interface
278 #
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400279 self.send_and_expect(self.pg0, pkts_0[0] * NUM_PKTS, self.pg1)
280 self.send_and_expect(self.pg0, pkts_0[1] * NUM_PKTS, self.pg2)
281 self.send_and_expect(self.pg0, pkts_0[2] * NUM_PKTS, self.pg3)
282 self.send_and_expect(self.pg1, pkts_1[0] * NUM_PKTS, self.pg1)
283 self.send_and_expect(self.pg1, pkts_1[1] * NUM_PKTS, self.pg2)
284 self.send_and_expect(self.pg1, pkts_1[2] * NUM_PKTS, self.pg3)
Neale Rannsccc70f62018-10-02 07:28:16 -0700285
286 #
287 # check that if the SVS lookup does not match a route the packet
288 # is forwarded using the interface's routing table
289 #
290 p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) /
291 IPv6(src=self.pg0.remote_ip6, dst=self.pg0.remote_ip6) /
292 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100293 Raw(b'\xa5' * 100))
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400294 self.send_and_expect(self.pg0, p * NUM_PKTS, self.pg0)
Neale Rannsccc70f62018-10-02 07:28:16 -0700295
296 p = (Ether(dst=self.pg1.local_mac, src=self.pg1.remote_mac) /
297 IPv6(src=self.pg1.remote_ip6, dst=self.pg1.remote_ip6) /
298 UDP(sport=1234, dport=1234) /
Ole Troan770a0de2019-11-07 13:52:21 +0100299 Raw(b'\xa5' * 100))
Paul Vinciguerra4271c972019-05-14 13:25:49 -0400300 self.send_and_expect(self.pg1, p * NUM_PKTS, self.pg1)
Neale Rannsccc70f62018-10-02 07:28:16 -0700301
302 #
303 # dump the SVS configs
304 #
305 ss = self.vapi.svs_dump()
306
307 self.assertEqual(ss[0].table_id, table_ids[0])
308 self.assertEqual(ss[0].sw_if_index, self.pg0.sw_if_index)
Ole Troan0685da42018-10-16 14:42:50 +0200309 self.assertEqual(ss[0].af, VppEnum.vl_api_address_family_t.ADDRESS_IP6)
Neale Rannsccc70f62018-10-02 07:28:16 -0700310 self.assertEqual(ss[1].table_id, table_ids[1])
311 self.assertEqual(ss[1].sw_if_index, self.pg1.sw_if_index)
Ole Troan0685da42018-10-16 14:42:50 +0200312 self.assertEqual(ss[1].af, VppEnum.vl_api_address_family_t.ADDRESS_IP6)
Neale Rannsccc70f62018-10-02 07:28:16 -0700313
314 #
315 # cleanup
316 #
Ole Troan0685da42018-10-16 14:42:50 +0200317 self.vapi.svs_enable_disable(
Ole Troan5c2a2372020-11-19 16:01:23 +0100318 is_enable=0,
319 af=VppEnum.vl_api_address_family_t.ADDRESS_IP6,
320 table_id=table_ids[0],
321 sw_if_index=self.pg0.sw_if_index)
Ole Troan0685da42018-10-16 14:42:50 +0200322 self.vapi.svs_enable_disable(
Ole Troan5c2a2372020-11-19 16:01:23 +0100323 is_enable=0,
324 af=VppEnum.vl_api_address_family_t.ADDRESS_IP6,
325 table_id=table_ids[1],
326 sw_if_index=self.pg1.sw_if_index)
327
Neale Rannsccc70f62018-10-02 07:28:16 -0700328 for table_id in table_ids:
329 for i in range(1, 4):
330 self.vapi.svs_route_add_del(
Ole Troan5c2a2372020-11-19 16:01:23 +0100331 is_add=0,
332 prefix="2001:%d::/32" % i,
333 table_id=table_id,
334 source_table_id=0)
Ole Troan0685da42018-10-16 14:42:50 +0200335
Ole Troan5c2a2372020-11-19 16:01:23 +0100336 self.vapi.svs_table_add_del(
337 is_add=0,
338 af=VppEnum.vl_api_address_family_t.ADDRESS_IP6,
339 table_id=table_id)
Neale Rannsccc70f62018-10-02 07:28:16 -0700340
341if __name__ == '__main__':
342 unittest.main(testRunner=VppTestRunner)