blob: b0c6ee9c46ae5f04b0958be348cbfac8b84ac09e [file] [log] [blame]
Neale Ranns810086d2017-11-05 16:26:46 -08001#!/usr/bin/env python
Klement Sekerab9ef2732018-06-24 22:49:33 +02002import unittest
Neale Ranns810086d2017-11-05 16:26:46 -08003from framework import VppTestCase, VppTestRunner
Neale Rannsd0df49f2018-08-08 01:06:40 -07004from vpp_udp_encap import *
Neale Ranns31ed7442018-02-23 05:29:09 -08005from vpp_ip_route import VppIpRoute, VppRoutePath, VppIpTable, VppMplsLabel
Neale Ranns810086d2017-11-05 16:26:46 -08006
7from scapy.packet import Raw
Klement Sekerab9ef2732018-06-24 22:49:33 +02008from scapy.layers.l2 import Ether
Neale Ranns810086d2017-11-05 16:26:46 -08009from scapy.layers.inet import IP, UDP
10from scapy.layers.inet6 import IPv6
11from scapy.contrib.mpls import MPLS
12
13
14class TestUdpEncap(VppTestCase):
15 """ UDP Encap Test Case """
16
17 def setUp(self):
18 super(TestUdpEncap, self).setUp()
19
20 # create 2 pg interfaces
21 self.create_pg_interfaces(range(4))
22
23 # setup interfaces
24 # assign them different tables.
25 table_id = 0
26 self.tables = []
27
28 for i in self.pg_interfaces:
29 i.admin_up()
30
31 if table_id != 0:
32 tbl = VppIpTable(self, table_id)
33 tbl.add_vpp_config()
34 self.tables.append(tbl)
35 tbl = VppIpTable(self, table_id, is_ip6=1)
36 tbl.add_vpp_config()
37 self.tables.append(tbl)
38
39 i.set_table_ip4(table_id)
40 i.set_table_ip6(table_id)
41 i.config_ip4()
42 i.resolve_arp()
43 i.config_ip6()
44 i.resolve_ndp()
45 table_id += 1
46
47 def tearDown(self):
48 for i in self.pg_interfaces:
49 i.unconfig_ip4()
50 i.unconfig_ip6()
51 i.ip6_disable()
52 i.set_table_ip4(0)
53 i.set_table_ip6(0)
54 i.admin_down()
55 super(TestUdpEncap, self).tearDown()
56
57 def validate_outer4(self, rx, encap_obj):
58 self.assertEqual(rx[IP].src, encap_obj.src_ip_s)
59 self.assertEqual(rx[IP].dst, encap_obj.dst_ip_s)
60 self.assertEqual(rx[UDP].sport, encap_obj.src_port)
61 self.assertEqual(rx[UDP].dport, encap_obj.dst_port)
62
63 def validate_outer6(self, rx, encap_obj):
64 self.assertEqual(rx[IPv6].src, encap_obj.src_ip_s)
65 self.assertEqual(rx[IPv6].dst, encap_obj.dst_ip_s)
66 self.assertEqual(rx[UDP].sport, encap_obj.src_port)
67 self.assertEqual(rx[UDP].dport, encap_obj.dst_port)
68
69 def validate_inner4(self, rx, tx, ttl=None):
Neale Ranns31ed7442018-02-23 05:29:09 -080070 self.assertEqual(rx[IP].src, tx[IP].src)
71 self.assertEqual(rx[IP].dst, tx[IP].dst)
Neale Ranns810086d2017-11-05 16:26:46 -080072 if ttl:
Neale Ranns31ed7442018-02-23 05:29:09 -080073 self.assertEqual(rx[IP].ttl, ttl)
Neale Ranns810086d2017-11-05 16:26:46 -080074 else:
Neale Ranns31ed7442018-02-23 05:29:09 -080075 self.assertEqual(rx[IP].ttl, tx[IP].ttl)
Neale Ranns810086d2017-11-05 16:26:46 -080076
77 def validate_inner6(self, rx, tx):
78 self.assertEqual(rx.src, tx[IPv6].src)
79 self.assertEqual(rx.dst, tx[IPv6].dst)
80 self.assertEqual(rx.hlim, tx[IPv6].hlim)
81
Neale Ranns810086d2017-11-05 16:26:46 -080082 def test_udp_encap(self):
83 """ UDP Encap test
84 """
85
86 #
87 # construct a UDP encap object through each of the peers
88 # v4 through the first two peears, v6 through the second.
89 #
90 udp_encap_0 = VppUdpEncap(self, 0,
91 self.pg0.local_ip4,
92 self.pg0.remote_ip4,
93 330, 440)
94 udp_encap_1 = VppUdpEncap(self, 1,
95 self.pg1.local_ip4,
96 self.pg1.remote_ip4,
97 331, 441,
98 table_id=1)
99 udp_encap_2 = VppUdpEncap(self, 2,
100 self.pg2.local_ip6,
101 self.pg2.remote_ip6,
102 332, 442,
Neale Rannsd0df49f2018-08-08 01:06:40 -0700103 table_id=2)
Neale Ranns810086d2017-11-05 16:26:46 -0800104 udp_encap_3 = VppUdpEncap(self, 3,
105 self.pg3.local_ip6,
106 self.pg3.remote_ip6,
107 333, 443,
Neale Rannsd0df49f2018-08-08 01:06:40 -0700108 table_id=3)
Neale Ranns810086d2017-11-05 16:26:46 -0800109 udp_encap_0.add_vpp_config()
110 udp_encap_1.add_vpp_config()
111 udp_encap_2.add_vpp_config()
112 udp_encap_3.add_vpp_config()
113
Neale Rannsd0df49f2018-08-08 01:06:40 -0700114 self.logger.info(self.vapi.cli("sh udp encap"))
115
116 self.assertTrue(find_udp_encap(self, udp_encap_2))
117 self.assertTrue(find_udp_encap(self, udp_encap_3))
118 self.assertTrue(find_udp_encap(self, udp_encap_0))
119 self.assertTrue(find_udp_encap(self, udp_encap_1))
120
Neale Ranns810086d2017-11-05 16:26:46 -0800121 #
122 # Routes via each UDP encap object - all combinations of v4 and v6.
123 #
124 route_4o4 = VppIpRoute(self, "1.1.0.1", 32,
125 [VppRoutePath("0.0.0.0",
126 0xFFFFFFFF,
127 is_udp_encap=1,
128 next_hop_id=0)])
129 route_4o6 = VppIpRoute(self, "1.1.2.1", 32,
130 [VppRoutePath("0.0.0.0",
131 0xFFFFFFFF,
132 is_udp_encap=1,
133 next_hop_id=2)])
134 route_6o4 = VppIpRoute(self, "2001::1", 128,
135 [VppRoutePath("0.0.0.0",
136 0xFFFFFFFF,
137 is_udp_encap=1,
138 next_hop_id=1)],
139 is_ip6=1)
140 route_6o6 = VppIpRoute(self, "2001::3", 128,
141 [VppRoutePath("0.0.0.0",
142 0xFFFFFFFF,
143 is_udp_encap=1,
144 next_hop_id=3)],
145 is_ip6=1)
146 route_4o4.add_vpp_config()
147 route_4o6.add_vpp_config()
148 route_6o6.add_vpp_config()
149 route_6o4.add_vpp_config()
150
151 #
152 # 4o4 encap
153 #
154 p_4o4 = (Ether(src=self.pg0.remote_mac,
155 dst=self.pg0.local_mac) /
156 IP(src="2.2.2.2", dst="1.1.0.1") /
157 UDP(sport=1234, dport=1234) /
158 Raw('\xa5' * 100))
Neale Ranns52fae862018-01-08 04:41:42 -0800159 rx = self.send_and_expect(self.pg0, p_4o4*65, self.pg0)
Neale Ranns810086d2017-11-05 16:26:46 -0800160 for p in rx:
161 self.validate_outer4(p, udp_encap_0)
162 p = IP(p["UDP"].payload.load)
163 self.validate_inner4(p, p_4o4)
164
165 #
166 # 4o6 encap
167 #
168 p_4o6 = (Ether(src=self.pg0.remote_mac,
169 dst=self.pg0.local_mac) /
170 IP(src="2.2.2.2", dst="1.1.2.1") /
171 UDP(sport=1234, dport=1234) /
172 Raw('\xa5' * 100))
Neale Ranns52fae862018-01-08 04:41:42 -0800173 rx = self.send_and_expect(self.pg0, p_4o6*65, self.pg2)
Neale Ranns810086d2017-11-05 16:26:46 -0800174 for p in rx:
175 self.validate_outer6(p, udp_encap_2)
176 p = IP(p["UDP"].payload.load)
177 self.validate_inner4(p, p_4o6)
178
179 #
180 # 6o4 encap
181 #
182 p_6o4 = (Ether(src=self.pg0.remote_mac,
183 dst=self.pg0.local_mac) /
184 IPv6(src="2001::100", dst="2001::1") /
185 UDP(sport=1234, dport=1234) /
186 Raw('\xa5' * 100))
Neale Ranns52fae862018-01-08 04:41:42 -0800187 rx = self.send_and_expect(self.pg0, p_6o4*65, self.pg1)
Neale Ranns810086d2017-11-05 16:26:46 -0800188 for p in rx:
189 self.validate_outer4(p, udp_encap_1)
190 p = IPv6(p["UDP"].payload.load)
191 self.validate_inner6(p, p_6o4)
192
193 #
194 # 6o6 encap
195 #
196 p_6o6 = (Ether(src=self.pg0.remote_mac,
197 dst=self.pg0.local_mac) /
198 IPv6(src="2001::100", dst="2001::3") /
199 UDP(sport=1234, dport=1234) /
200 Raw('\xa5' * 100))
Neale Ranns52fae862018-01-08 04:41:42 -0800201 rx = self.send_and_expect(self.pg0, p_6o6*65, self.pg3)
Neale Ranns810086d2017-11-05 16:26:46 -0800202 for p in rx:
203 self.validate_outer6(p, udp_encap_3)
204 p = IPv6(p["UDP"].payload.load)
205 self.validate_inner6(p, p_6o6)
206
207 #
208 # A route with an output label
209 # the TTL of the inner packet is decremented on LSP ingress
210 #
211 route_4oMPLSo4 = VppIpRoute(self, "1.1.2.22", 32,
212 [VppRoutePath("0.0.0.0",
213 0xFFFFFFFF,
214 is_udp_encap=1,
215 next_hop_id=1,
Neale Ranns31ed7442018-02-23 05:29:09 -0800216 labels=[VppMplsLabel(66)])])
Neale Ranns810086d2017-11-05 16:26:46 -0800217 route_4oMPLSo4.add_vpp_config()
218
219 p_4omo4 = (Ether(src=self.pg0.remote_mac,
220 dst=self.pg0.local_mac) /
221 IP(src="2.2.2.2", dst="1.1.2.22") /
222 UDP(sport=1234, dport=1234) /
223 Raw('\xa5' * 100))
Neale Ranns52fae862018-01-08 04:41:42 -0800224 rx = self.send_and_expect(self.pg0, p_4omo4*65, self.pg1)
Neale Ranns810086d2017-11-05 16:26:46 -0800225 for p in rx:
226 self.validate_outer4(p, udp_encap_1)
227 p = MPLS(p["UDP"].payload.load)
228 self.validate_inner4(p, p_4omo4, ttl=63)
229
230
Florin Coras40903ac2018-06-10 14:41:23 -0700231class TestUDP(VppTestCase):
232 """ UDP Test Case """
233
234 @classmethod
235 def setUpClass(cls):
236 super(TestUDP, cls).setUpClass()
237
238 def setUp(self):
239 super(TestUDP, self).setUp()
240 self.vapi.session_enable_disable(is_enabled=1)
Klement Sekerab9ef2732018-06-24 22:49:33 +0200241 self.create_loopback_interfaces(2)
Florin Coras40903ac2018-06-10 14:41:23 -0700242
243 table_id = 0
244
245 for i in self.lo_interfaces:
246 i.admin_up()
247
248 if table_id != 0:
249 tbl = VppIpTable(self, table_id)
250 tbl.add_vpp_config()
251
252 i.set_table_ip4(table_id)
253 i.config_ip4()
254 table_id += 1
255
256 # Configure namespaces
257 self.vapi.app_namespace_add(namespace_id="0",
258 sw_if_index=self.loop0.sw_if_index)
259 self.vapi.app_namespace_add(namespace_id="1",
260 sw_if_index=self.loop1.sw_if_index)
261
262 def tearDown(self):
263 for i in self.lo_interfaces:
264 i.unconfig_ip4()
265 i.set_table_ip4(0)
266 i.admin_down()
267 self.vapi.session_enable_disable(is_enabled=0)
268 super(TestUDP, self).tearDown()
269
270 def test_udp_transfer(self):
271 """ UDP echo client/server transfer """
272
273 # Add inter-table routes
274 ip_t01 = VppIpRoute(self, self.loop1.local_ip4, 32,
275 [VppRoutePath("0.0.0.0",
276 0xffffffff,
277 nh_table_id=1)])
278 ip_t10 = VppIpRoute(self, self.loop0.local_ip4, 32,
279 [VppRoutePath("0.0.0.0",
280 0xffffffff,
281 nh_table_id=0)], table_id=1)
282 ip_t01.add_vpp_config()
283 ip_t10.add_vpp_config()
284
285 # Start builtin server and client
286 uri = "udp://" + self.loop0.local_ip4 + "/1234"
287 error = self.vapi.cli("test echo server appns 0 fifo-size 4 no-echo" +
288 "uri " + uri)
289 if error:
290 self.logger.critical(error)
291 self.assertEqual(error.find("failed"), -1)
292
293 error = self.vapi.cli("test echo client mbytes 10 appns 1 " +
294 "fifo-size 4 no-output test-bytes " +
295 "syn-timeout 2 no-return uri " + uri)
296 if error:
297 self.logger.critical(error)
298 self.assertEqual(error.find("failed"), -1)
299
300 # Delete inter-table routes
301 ip_t01.remove_vpp_config()
302 ip_t10.remove_vpp_config()
303
304
Neale Ranns810086d2017-11-05 16:26:46 -0800305if __name__ == '__main__':
306 unittest.main(testRunner=VppTestRunner)