blob: 1a4431b1b57ab199b6aa6cd64e0ed14f445faad9 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Corasc5df8c72019-04-08 07:42:30 -07002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16/** @file
17 udp state machine, etc.
18*/
19
20#include <vnet/udp/udp.h>
21#include <vnet/session/session.h>
22#include <vnet/dpo/load_balance.h>
23#include <vnet/fib/ip4_fib.h>
24
Filip Tehlar2c49ffe2019-03-06 07:16:08 -080025udp_main_t udp_main;
26
Florin Coras3cbc04b2017-10-02 00:18:51 -070027udp_connection_t *
28udp_connection_alloc (u32 thread_index)
29{
30 udp_main_t *um = &udp_main;
31 udp_connection_t *uc;
32 u32 will_expand = 0;
33 pool_get_aligned_will_expand (um->connections[thread_index], will_expand,
34 CLIB_CACHE_LINE_BYTES);
35
36 if (PREDICT_FALSE (will_expand))
37 {
38 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks
39 [thread_index]);
40 pool_get_aligned (udp_main.connections[thread_index], uc,
41 CLIB_CACHE_LINE_BYTES);
42 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
43 [thread_index]);
44 }
45 else
46 {
47 pool_get_aligned (um->connections[thread_index], uc,
48 CLIB_CACHE_LINE_BYTES);
49 }
Dave Barachb7b92992018-10-17 10:38:51 -040050 clib_memset (uc, 0, sizeof (*uc));
Florin Coras3cbc04b2017-10-02 00:18:51 -070051 uc->c_c_index = uc - um->connections[thread_index];
52 uc->c_thread_index = thread_index;
53 uc->c_proto = TRANSPORT_PROTO_UDP;
Florin Coras7fb0fe12018-04-09 09:24:52 -070054 clib_spinlock_init (&uc->rx_lock);
Florin Coras3cbc04b2017-10-02 00:18:51 -070055 return uc;
56}
57
58void
59udp_connection_free (udp_connection_t * uc)
60{
61 pool_put (udp_main.connections[uc->c_thread_index], uc);
62 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -040063 clib_memset (uc, 0xFA, sizeof (*uc));
Florin Coras3cbc04b2017-10-02 00:18:51 -070064}
Dave Barach68b0fb02017-02-28 15:15:56 -050065
66u32
Florin Coras3cbc04b2017-10-02 00:18:51 -070067udp_session_bind (u32 session_index, transport_endpoint_t * lcl)
Dave Barach68b0fb02017-02-28 15:15:56 -050068{
Florin Coras3cbc04b2017-10-02 00:18:51 -070069 udp_main_t *um = vnet_get_udp_main ();
70 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -050071 udp_connection_t *listener;
Florin Coras3cbc04b2017-10-02 00:18:51 -070072 u32 node_index;
73 void *iface_ip;
74 udp_dst_port_info_t *pi;
Dave Barach68b0fb02017-02-28 15:15:56 -050075
Florin Coras3cbc04b2017-10-02 00:18:51 -070076 pi = udp_get_dst_port_info (um, lcl->port, lcl->is_ip4);
77 if (pi)
78 return -1;
79
80 pool_get (um->listener_pool, listener);
Dave Barachb7b92992018-10-17 10:38:51 -040081 clib_memset (listener, 0, sizeof (udp_connection_t));
Florin Coras3cbc04b2017-10-02 00:18:51 -070082
Florin Coras0e495682017-09-19 22:27:18 -070083 listener->c_lcl_port = lcl->port;
Florin Coras3cbc04b2017-10-02 00:18:51 -070084 listener->c_c_index = listener - um->listener_pool;
85
86 /* If we are provided a sw_if_index, bind using one of its ips */
87 if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX)
88 {
89 if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index,
90 lcl->is_ip4)))
91 ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
92 }
93 ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
94 listener->c_is_ip4 = lcl->is_ip4;
95 listener->c_proto = TRANSPORT_PROTO_UDP;
96 listener->c_s_index = session_index;
97 listener->c_fib_index = lcl->fib_index;
Nathan Skrzypczak161638f2019-05-13 16:25:50 +020098 listener->owns_port = 1;
Florin Coras7fb0fe12018-04-09 09:24:52 -070099 clib_spinlock_init (&listener->rx_lock);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700100
101 node_index = lcl->is_ip4 ? udp4_input_node.index : udp6_input_node.index;
102 udp_register_dst_port (vm, clib_net_to_host_u16 (lcl->port), node_index,
103 1 /* is_ipv4 */ );
104 return listener->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500105}
106
107u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700108udp_session_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500109{
Florin Corase69f4952017-03-07 10:06:24 -0800110 vlib_main_t *vm = vlib_get_main ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700111
Dave Barach68b0fb02017-02-28 15:15:56 -0500112 udp_connection_t *listener;
113 listener = udp_listener_get (listener_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700114 udp_unregister_dst_port (vm, clib_net_to_host_u16 (listener->c_lcl_port),
115 listener->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500116 return 0;
117}
118
119transport_connection_t *
120udp_session_get_listener (u32 listener_index)
121{
122 udp_connection_t *us;
123
124 us = udp_listener_get (listener_index);
125 return &us->connection;
126}
127
128u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700129udp_push_header (transport_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500130{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700131 udp_connection_t *uc;
132 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500133
Florin Coras3cbc04b2017-10-02 00:18:51 -0700134 uc = udp_get_connection_from_transport (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500135
Florin Coras3cbc04b2017-10-02 00:18:51 -0700136 vlib_buffer_push_udp (b, uc->c_lcl_port, uc->c_rmt_port, 1);
137 if (tc->is_ip4)
138 vlib_buffer_push_ip4 (vm, b, &uc->c_lcl_ip4, &uc->c_rmt_ip4,
139 IP_PROTOCOL_UDP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500140 else
141 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700142 ip6_header_t *ih;
143 ih = vlib_buffer_push_ip6 (vm, b, &uc->c_lcl_ip6, &uc->c_rmt_ip6,
144 IP_PROTOCOL_UDP);
145 vnet_buffer (b)->l3_hdr_offset = (u8 *) ih - b->data;
Dave Barach68b0fb02017-02-28 15:15:56 -0500146 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700147 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700148 vnet_buffer (b)->sw_if_index[VLIB_TX] = uc->c_fib_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700149 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
150
151 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500152}
153
154transport_connection_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700155udp_session_get (u32 connection_index, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500156{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700157 udp_connection_t *uc;
158 uc = udp_connection_get (connection_index, thread_index);
159 if (uc)
160 return &uc->connection;
161 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500162}
163
164void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700165udp_session_close (u32 connection_index, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500166{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700167 vlib_main_t *vm = vlib_get_main ();
168 udp_connection_t *uc;
169 uc = udp_connection_get (connection_index, thread_index);
170 if (uc)
171 {
Nathan Skrzypczak161638f2019-05-13 16:25:50 +0200172 if (uc->owns_port || !uc->is_connected)
173 udp_unregister_dst_port (vm, clib_net_to_host_u16 (uc->c_lcl_port),
174 uc->c_is_ip4);
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800175 session_transport_delete_notify (&uc->connection);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700176 udp_connection_free (uc);
177 }
178}
179
180void
181udp_session_cleanup (u32 connection_index, u32 thread_index)
182{
183 udp_connection_t *uc;
184 uc = udp_connection_get (connection_index, thread_index);
185 if (uc)
186 udp_connection_free (uc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500187}
188
189u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700190format_udp_connection_id (u8 * s, va_list * args)
191{
192 udp_connection_t *uc = va_arg (*args, udp_connection_t *);
193 if (!uc)
194 return s;
195 if (uc->c_is_ip4)
196 s = format (s, "[#%d][%s] %U:%d->%U:%d", uc->c_thread_index, "U",
197 format_ip4_address, &uc->c_lcl_ip4,
198 clib_net_to_host_u16 (uc->c_lcl_port), format_ip4_address,
199 &uc->c_rmt_ip4, clib_net_to_host_u16 (uc->c_rmt_port));
200 else
201 s = format (s, "[#%d][%s] %U:%d->%U:%d", uc->c_thread_index, "U",
202 format_ip6_address, &uc->c_lcl_ip6,
203 clib_net_to_host_u16 (uc->c_lcl_port), format_ip6_address,
204 &uc->c_rmt_ip6, clib_net_to_host_u16 (uc->c_rmt_port));
205 return s;
206}
207
208u8 *
209format_udp_connection (u8 * s, va_list * args)
210{
211 udp_connection_t *uc = va_arg (*args, udp_connection_t *);
212 u32 verbose = va_arg (*args, u32);
213 if (!uc)
214 return s;
215 s = format (s, "%-50U", format_udp_connection_id, uc);
216 if (verbose)
217 {
218 if (verbose == 1)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700219 s = format (s, "%-15s\n", "-");
Florin Coras3cbc04b2017-10-02 00:18:51 -0700220 else
221 s = format (s, "\n");
222 }
223 return s;
224}
225
226u8 *
227format_udp_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500228{
229 u32 uci = va_arg (*args, u32);
230 u32 thread_index = va_arg (*args, u32);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700231 u32 verbose = va_arg (*args, u32);
232 udp_connection_t *uc;
Dave Barach68b0fb02017-02-28 15:15:56 -0500233
Florin Coras3cbc04b2017-10-02 00:18:51 -0700234 uc = udp_connection_get (uci, thread_index);
235 return format (s, "%U", format_udp_connection, uc, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -0500236}
237
238u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700239format_udp_half_open_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500240{
Dave Wallace3df56822019-05-22 18:56:57 -0400241 u32 __clib_unused tci = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +0200242 u32 __clib_unused thread_index = va_arg (*args, u32);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700243 clib_warning ("BUG");
244 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500245}
246
247u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700248format_udp_listener_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500249{
250 u32 tci = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +0200251 u32 __clib_unused thread_index = va_arg (*args, u32);
Dave Wallace3df56822019-05-22 18:56:57 -0400252 u32 __clib_unused verbose = va_arg (*args, u32);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700253 udp_connection_t *uc = udp_listener_get (tci);
254 return format (s, "%U", format_udp_connection, uc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500255}
256
257u16
Florin Coras3cbc04b2017-10-02 00:18:51 -0700258udp_send_mss (transport_connection_t * t)
Dave Barach68b0fb02017-02-28 15:15:56 -0500259{
260 /* TODO figure out MTU of output interface */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700261 return 1460;
Dave Barach68b0fb02017-02-28 15:15:56 -0500262}
263
264u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700265udp_send_space (transport_connection_t * t)
Dave Barach68b0fb02017-02-28 15:15:56 -0500266{
267 /* No constraint on TX window */
268 return ~0;
269}
270
271int
Florin Coras5665ced2018-10-25 18:03:45 -0700272udp_open_connection (transport_endpoint_cfg_t * rmt)
Dave Barach68b0fb02017-02-28 15:15:56 -0500273{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700274 udp_main_t *um = vnet_get_udp_main ();
275 vlib_main_t *vm = vlib_get_main ();
Damjan Marion067cd622018-07-11 12:47:43 +0200276 u32 thread_index = vm->thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700277 udp_connection_t *uc;
278 ip46_address_t lcl_addr;
279 u32 node_index;
280 u16 lcl_port;
281
282 if (transport_alloc_local_endpoint (TRANSPORT_PROTO_UDP, rmt, &lcl_addr,
283 &lcl_port))
284 return -1;
285
286 while (udp_get_dst_port_info (um, lcl_port, rmt->is_ip4))
287 {
288 lcl_port = transport_alloc_local_port (TRANSPORT_PROTO_UDP, &lcl_addr);
289 if (lcl_port < 1)
290 {
291 clib_warning ("Failed to allocate src port");
292 return -1;
293 }
294 }
295
296 node_index = rmt->is_ip4 ? udp4_input_node.index : udp6_input_node.index;
297 udp_register_dst_port (vm, lcl_port, node_index, 1 /* is_ipv4 */ );
298
Florin Coras40903ac2018-06-10 14:41:23 -0700299 /* We don't poll main thread if we have workers */
300 if (vlib_num_workers ())
301 thread_index = 1;
302
Florin Coras3cbc04b2017-10-02 00:18:51 -0700303 uc = udp_connection_alloc (thread_index);
304 ip_copy (&uc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
305 ip_copy (&uc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
306 uc->c_rmt_port = rmt->port;
307 uc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
308 uc->c_is_ip4 = rmt->is_ip4;
309 uc->c_proto = TRANSPORT_PROTO_UDP;
310 uc->c_fib_index = rmt->fib_index;
Nathan Skrzypczak161638f2019-05-13 16:25:50 +0200311 uc->owns_port = 1;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700312
313 return uc->c_c_index;
314}
315
316transport_connection_t *
Florin Coras40903ac2018-06-10 14:41:23 -0700317udp_session_get_half_open (u32 conn_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700318{
319 udp_connection_t *uc;
Florin Coras40903ac2018-06-10 14:41:23 -0700320 u32 thread_index;
321
322 /* We don't poll main thread if we have workers */
323 thread_index = vlib_num_workers ()? 1 : 0;
324 uc = udp_connection_get (conn_index, thread_index);
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200325 if (!uc)
326 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700327 return &uc->connection;
Dave Barach68b0fb02017-02-28 15:15:56 -0500328}
329
330/* *INDENT-OFF* */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200331static const transport_proto_vft_t udp_proto = {
Florin Coras1ee78302019-02-05 15:51:15 -0800332 .start_listen = udp_session_bind,
333 .connect = udp_open_connection,
334 .stop_listen = udp_session_unbind,
Dave Barach68b0fb02017-02-28 15:15:56 -0500335 .push_header = udp_push_header,
336 .get_connection = udp_session_get,
337 .get_listener = udp_session_get_listener,
Florin Coras40903ac2018-06-10 14:41:23 -0700338 .get_half_open = udp_session_get_half_open,
Dave Barach68b0fb02017-02-28 15:15:56 -0500339 .close = udp_session_close,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700340 .cleanup = udp_session_cleanup,
341 .send_mss = udp_send_mss,
342 .send_space = udp_send_space,
343 .format_connection = format_udp_session,
344 .format_half_open = format_udp_half_open_session,
Florin Coras371ca502018-02-21 12:07:41 -0800345 .format_listener = format_udp_listener_session,
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200346 .transport_options = {
347 .tx_type = TRANSPORT_TX_DGRAM,
348 .service_type = TRANSPORT_SERVICE_CL,
349 },
Florin Coras7fb0fe12018-04-09 09:24:52 -0700350};
351/* *INDENT-ON* */
352
353
354int
Florin Coras5665ced2018-10-25 18:03:45 -0700355udpc_connection_open (transport_endpoint_cfg_t * rmt)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700356{
357 udp_connection_t *uc;
Aloys Augustin8e584992019-04-24 13:21:43 +0200358 /* Reproduce the logic of udp_open_connection to find the correct thread */
359 u32 thread_index = vlib_num_workers ()? 1 : vlib_get_main ()->thread_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700360 u32 uc_index;
361 uc_index = udp_open_connection (rmt);
Nathan Skrzypczak50f4a412019-07-04 14:20:17 +0200362 if (uc_index == (u32) ~ 0)
363 return -1;
Aloys Augustin8e584992019-04-24 13:21:43 +0200364 uc = udp_connection_get (uc_index, thread_index);
Nathan Skrzypczak50f4a412019-07-04 14:20:17 +0200365 uc->is_connected = 1;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700366 return uc_index;
367}
368
369u32
370udpc_connection_listen (u32 session_index, transport_endpoint_t * lcl)
371{
372 udp_connection_t *listener;
Nathan Skrzypczak50f4a412019-07-04 14:20:17 +0200373 u32 li_index;
374 li_index = udp_session_bind (session_index, lcl);
375 if (li_index == (u32) ~ 0)
376 return -1;
377 listener = udp_listener_get (li_index);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700378 listener->is_connected = 1;
Nathan Skrzypczak50f4a412019-07-04 14:20:17 +0200379 return li_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700380}
381
382/* *INDENT-OFF* */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200383static const transport_proto_vft_t udpc_proto = {
Florin Coras1ee78302019-02-05 15:51:15 -0800384 .start_listen = udpc_connection_listen,
385 .stop_listen = udp_session_unbind,
386 .connect = udpc_connection_open,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700387 .push_header = udp_push_header,
388 .get_connection = udp_session_get,
389 .get_listener = udp_session_get_listener,
Florin Coras40903ac2018-06-10 14:41:23 -0700390 .get_half_open = udp_session_get_half_open,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700391 .close = udp_session_close,
392 .cleanup = udp_session_cleanup,
393 .send_mss = udp_send_mss,
394 .send_space = udp_send_space,
395 .format_connection = format_udp_session,
396 .format_half_open = format_udp_half_open_session,
397 .format_listener = format_udp_listener_session,
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200398 .transport_options = {
399 .tx_type = TRANSPORT_TX_DGRAM,
400 .service_type = TRANSPORT_SERVICE_VC,
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200401 .half_open_has_fifos = 1
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200402 },
Dave Barach68b0fb02017-02-28 15:15:56 -0500403};
404/* *INDENT-ON* */
405
406static clib_error_t *
407udp_init (vlib_main_t * vm)
408{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700409 udp_main_t *um = vnet_get_udp_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500410 ip_main_t *im = &ip_main;
411 vlib_thread_main_t *tm = vlib_get_thread_main ();
412 u32 num_threads;
Dave Barach68b0fb02017-02-28 15:15:56 -0500413 ip_protocol_info_t *pi;
Florin Coras29ca16f2017-11-02 18:14:17 -0400414 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500415
Dave Barach68b0fb02017-02-28 15:15:56 -0500416 /*
417 * Registrations
418 */
419
420 /* IP registration */
421 pi = ip_get_protocol_info (im, IP_PROTOCOL_UDP);
422 if (pi == 0)
423 return clib_error_return (0, "UDP protocol info AWOL");
424 pi->format_header = format_udp_header;
425 pi->unformat_pg_edit = unformat_pg_udp_header;
426
Dave Barach68b0fb02017-02-28 15:15:56 -0500427 /* Register as transport with URI */
Florin Coras561af9b2017-12-09 10:19:43 -0800428 transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto,
429 FIB_PROTOCOL_IP4, ip4_lookup_node.index);
430 transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto,
431 FIB_PROTOCOL_IP6, ip6_lookup_node.index);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700432 transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto,
433 FIB_PROTOCOL_IP4, ip4_lookup_node.index);
434 transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto,
435 FIB_PROTOCOL_IP6, ip6_lookup_node.index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500436
437 /*
438 * Initialize data structures
439 */
440
441 num_threads = 1 /* main thread */ + tm->n_threads;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700442 vec_validate (um->connections, num_threads - 1);
443 vec_validate (um->connection_peekers, num_threads - 1);
444 vec_validate (um->peekers_readers_locks, num_threads - 1);
445 vec_validate (um->peekers_write_locks, num_threads - 1);
Florin Coras29ca16f2017-11-02 18:14:17 -0400446
447 if (num_threads > 1)
448 for (i = 0; i < num_threads; i++)
449 {
450 clib_spinlock_init (&um->peekers_readers_locks[i]);
451 clib_spinlock_init (&um->peekers_write_locks[i]);
452 }
Dave Barachf8d50682019-05-14 18:01:44 -0400453 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500454}
455
Dave Barachf8d50682019-05-14 18:01:44 -0400456/* *INDENT-OFF* */
457VLIB_INIT_FUNCTION (udp_init) =
458{
459 .runs_after = VLIB_INITS("ip_main_init", "ip4_lookup_init",
460 "ip6_lookup_init"),
461};
462/* *INDENT-ON* */
463
Dave Barach68b0fb02017-02-28 15:15:56 -0500464
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100465static clib_error_t *
466show_udp_punt_fn (vlib_main_t * vm, unformat_input_t * input,
467 vlib_cli_command_t * cmd_arg)
468{
469 udp_main_t *um = vnet_get_udp_main ();
470
471 clib_error_t *error = NULL;
472
473 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
474 return clib_error_return (0, "unknown input `%U'", format_unformat_error,
475 input);
476
477 udp_dst_port_info_t *port_info;
478 if (um->punt_unknown4)
479 {
480 vlib_cli_output (vm, "IPv4 UDP punt: enabled");
481 }
482 else
483 {
484 u8 *s = NULL;
485 vec_foreach (port_info, um->dst_port_infos[UDP_IP4])
486 {
487 if (udp_is_valid_dst_port (port_info->dst_port, 1))
488 {
489 s = format (s, (!s) ? "%d" : ", %d", port_info->dst_port);
490 }
491 }
492 s = format (s, "%c", 0);
493 vlib_cli_output (vm, "IPV4 UDP ports punt : %s", s);
494 }
495
496 if (um->punt_unknown6)
497 {
498 vlib_cli_output (vm, "IPv6 UDP punt: enabled");
499 }
500 else
501 {
502 u8 *s = NULL;
503 vec_foreach (port_info, um->dst_port_infos[UDP_IP6])
504 {
505 if (udp_is_valid_dst_port (port_info->dst_port, 01))
506 {
507 s = format (s, (!s) ? "%d" : ", %d", port_info->dst_port);
508 }
509 }
510 s = format (s, "%c", 0);
511 vlib_cli_output (vm, "IPV6 UDP ports punt : %s", s);
512 }
513
514 return (error);
515}
516/* *INDENT-OFF* */
517VLIB_CLI_COMMAND (show_tcp_punt_command, static) =
518{
519 .path = "show udp punt",
520 .short_help = "show udp punt [ipv4|ipv6]",
521 .function = show_udp_punt_fn,
522};
523/* *INDENT-ON* */
524
Dave Barach68b0fb02017-02-28 15:15:56 -0500525/*
526 * fd.io coding-style-patch-verification: ON
527 *
528 * Local Variables:
529 * eval: (c-set-style "gnu")
530 * End:
531 */