blob: 65d50fff395e0688784ec330283d6053046cf7ad [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>
Florin Corasa0396202020-04-01 00:11:16 +000024#include <vppinfra/sparse_vec.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050025
Filip Tehlar2c49ffe2019-03-06 07:16:08 -080026udp_main_t udp_main;
27
Florin Corasa0396202020-04-01 00:11:16 +000028static void
29udp_connection_register_port (vlib_main_t * vm, u16 lcl_port, u8 is_ip4)
30{
31 udp_main_t *um = &udp_main;
32 udp_dst_port_info_t *pi;
33 u16 *n;
34
35 pi = udp_get_dst_port_info (um, lcl_port, is_ip4);
36 if (!pi)
37 {
38 udp_add_dst_port (um, lcl_port, 0, is_ip4);
39 pi = udp_get_dst_port_info (um, lcl_port, is_ip4);
40 pi->n_connections = 1;
41 }
42 else
43 {
44 pi->n_connections += 1;
45 /* Do not return. The fact that the pi is valid does not mean
46 * it's up to date */
47 }
48
49 pi->node_index = is_ip4 ? udp4_input_node.index : udp6_input_node.index;
50 pi->next_index = um->local_to_input_edge[is_ip4];
51
52 /* Setup udp protocol -> next index sparse vector mapping. */
53 if (is_ip4)
54 n = sparse_vec_validate (um->next_by_dst_port4,
55 clib_host_to_net_u16 (lcl_port));
56 else
57 n = sparse_vec_validate (um->next_by_dst_port6,
58 clib_host_to_net_u16 (lcl_port));
59
60 n[0] = pi->next_index;
61}
62
63static void
64udp_connection_unregister_port (u16 lcl_port, u8 is_ip4)
65{
66 udp_main_t *um = &udp_main;
67 udp_dst_port_info_t *pi;
68
69 pi = udp_get_dst_port_info (um, lcl_port, is_ip4);
70 if (!pi)
71 return;
72
73 if (!pi->n_connections)
74 {
75 clib_warning ("no connections using port %u", lcl_port);
76 return;
77 }
78
79 if (!clib_atomic_sub_fetch (&pi->n_connections, 1))
80 udp_unregister_dst_port (0, lcl_port, is_ip4);
81}
82
83void
84udp_connection_share_port (u16 lcl_port, u8 is_ip4)
85{
86 udp_main_t *um = &udp_main;
87 udp_dst_port_info_t *pi;
88
89 /* Done without a lock but the operation is atomic. Writers to pi hash
90 * table and vector should be guarded by a barrier sync */
91 pi = udp_get_dst_port_info (um, lcl_port, is_ip4);
92 clib_atomic_fetch_add_rel (&pi->n_connections, 1);
93}
94
Florin Coras3cbc04b2017-10-02 00:18:51 -070095udp_connection_t *
96udp_connection_alloc (u32 thread_index)
97{
98 udp_main_t *um = &udp_main;
99 udp_connection_t *uc;
100 u32 will_expand = 0;
101 pool_get_aligned_will_expand (um->connections[thread_index], will_expand,
102 CLIB_CACHE_LINE_BYTES);
103
104 if (PREDICT_FALSE (will_expand))
105 {
106 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks
107 [thread_index]);
108 pool_get_aligned (udp_main.connections[thread_index], uc,
109 CLIB_CACHE_LINE_BYTES);
110 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
111 [thread_index]);
112 }
113 else
114 {
115 pool_get_aligned (um->connections[thread_index], uc,
116 CLIB_CACHE_LINE_BYTES);
117 }
Dave Barachb7b92992018-10-17 10:38:51 -0400118 clib_memset (uc, 0, sizeof (*uc));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700119 uc->c_c_index = uc - um->connections[thread_index];
120 uc->c_thread_index = thread_index;
121 uc->c_proto = TRANSPORT_PROTO_UDP;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700122 clib_spinlock_init (&uc->rx_lock);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700123 return uc;
124}
125
126void
127udp_connection_free (udp_connection_t * uc)
128{
Benoît Ganned4aeb842019-07-18 18:38:42 +0200129 u32 thread_index = uc->c_thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700130 if (CLIB_DEBUG)
Dave Barachb7b92992018-10-17 10:38:51 -0400131 clib_memset (uc, 0xFA, sizeof (*uc));
Benoît Ganned4aeb842019-07-18 18:38:42 +0200132 pool_put (udp_main.connections[thread_index], uc);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700133}
Dave Barach68b0fb02017-02-28 15:15:56 -0500134
Florin Coras57a5a2d2020-04-01 23:16:11 +0000135static void
136udp_connection_cleanup (udp_connection_t * uc)
137{
138 transport_endpoint_cleanup (TRANSPORT_PROTO_UDP, &uc->c_lcl_ip,
139 uc->c_lcl_port);
140 udp_connection_unregister_port (clib_net_to_host_u16 (uc->c_lcl_port),
141 uc->c_is_ip4);
142 udp_connection_free (uc);
143}
144
Florin Corasc7542392019-07-22 08:08:43 -0700145void
146udp_connection_delete (udp_connection_t * uc)
147{
Florin Corasc7542392019-07-22 08:08:43 -0700148 session_transport_delete_notify (&uc->connection);
Florin Coras57a5a2d2020-04-01 23:16:11 +0000149 udp_connection_cleanup (uc);
Florin Corasc7542392019-07-22 08:08:43 -0700150}
151
Dave Barach68b0fb02017-02-28 15:15:56 -0500152u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700153udp_session_bind (u32 session_index, transport_endpoint_t * lcl)
Dave Barach68b0fb02017-02-28 15:15:56 -0500154{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700155 udp_main_t *um = vnet_get_udp_main ();
156 vlib_main_t *vm = vlib_get_main ();
Florin Coras87b7e3d2020-03-27 15:06:07 +0000157 transport_endpoint_cfg_t *lcl_ext;
Dave Barach68b0fb02017-02-28 15:15:56 -0500158 udp_connection_t *listener;
Florin Coras87b7e3d2020-03-27 15:06:07 +0000159 udp_dst_port_info_t *pi;
Florin Coras57a5a2d2020-04-01 23:16:11 +0000160 u16 lcl_port_ho;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700161 void *iface_ip;
Dave Barach68b0fb02017-02-28 15:15:56 -0500162
Florin Coras57a5a2d2020-04-01 23:16:11 +0000163 lcl_port_ho = clib_net_to_host_u16 (lcl->port);
164 pi = udp_get_dst_port_info (um, lcl_port_ho, lcl->is_ip4);
Florin Corasa0396202020-04-01 00:11:16 +0000165
Florin Coras57a5a2d2020-04-01 23:16:11 +0000166 if (pi && !pi->n_connections
167 && udp_is_valid_dst_port (lcl_port_ho, lcl->is_ip4))
Florin Corasa0396202020-04-01 00:11:16 +0000168 {
169 clib_warning ("port already used");
170 return -1;
171 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700172
173 pool_get (um->listener_pool, listener);
Dave Barachb7b92992018-10-17 10:38:51 -0400174 clib_memset (listener, 0, sizeof (udp_connection_t));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700175
Florin Coras0e495682017-09-19 22:27:18 -0700176 listener->c_lcl_port = lcl->port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700177 listener->c_c_index = listener - um->listener_pool;
178
179 /* If we are provided a sw_if_index, bind using one of its ips */
180 if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX)
181 {
182 if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index,
183 lcl->is_ip4)))
184 ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
185 }
186 ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
187 listener->c_is_ip4 = lcl->is_ip4;
188 listener->c_proto = TRANSPORT_PROTO_UDP;
189 listener->c_s_index = session_index;
190 listener->c_fib_index = lcl->fib_index;
Florin Coras9c4ec6f2020-04-01 02:50:13 +0000191 listener->flags |= UDP_CONN_F_OWNS_PORT | UDP_CONN_F_LISTEN;
Florin Coras87b7e3d2020-03-27 15:06:07 +0000192 lcl_ext = (transport_endpoint_cfg_t *) lcl;
193 if (lcl_ext->transport_flags & TRANSPORT_CFG_F_CONNECTED)
194 listener->flags |= UDP_CONN_F_CONNECTED;
195 else
196 listener->c_flags |= TRANSPORT_CONNECTION_F_CLESS;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700197 clib_spinlock_init (&listener->rx_lock);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700198
Florin Coras57a5a2d2020-04-01 23:16:11 +0000199 udp_connection_register_port (vm, lcl_port_ho, lcl->is_ip4);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700200 return listener->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500201}
202
203u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700204udp_session_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500205{
Florin Corasa0396202020-04-01 00:11:16 +0000206 udp_main_t *um = &udp_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500207 udp_connection_t *listener;
Florin Corasa0396202020-04-01 00:11:16 +0000208
Dave Barach68b0fb02017-02-28 15:15:56 -0500209 listener = udp_listener_get (listener_index);
Florin Corasa0396202020-04-01 00:11:16 +0000210 udp_connection_unregister_port (clib_net_to_host_u16 (listener->c_lcl_port),
211 listener->c_is_ip4);
212 pool_put (um->listener_pool, listener);
Dave Barach68b0fb02017-02-28 15:15:56 -0500213 return 0;
214}
215
216transport_connection_t *
217udp_session_get_listener (u32 listener_index)
218{
219 udp_connection_t *us;
220
221 us = udp_listener_get (listener_index);
222 return &us->connection;
223}
224
225u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700226udp_push_header (transport_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500227{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700228 udp_connection_t *uc;
229 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500230
Florin Coras3cbc04b2017-10-02 00:18:51 -0700231 uc = udp_get_connection_from_transport (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500232
Florin Coras3cbc04b2017-10-02 00:18:51 -0700233 vlib_buffer_push_udp (b, uc->c_lcl_port, uc->c_rmt_port, 1);
234 if (tc->is_ip4)
235 vlib_buffer_push_ip4 (vm, b, &uc->c_lcl_ip4, &uc->c_rmt_ip4,
236 IP_PROTOCOL_UDP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500237 else
238 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700239 ip6_header_t *ih;
240 ih = vlib_buffer_push_ip6 (vm, b, &uc->c_lcl_ip6, &uc->c_rmt_ip6,
241 IP_PROTOCOL_UDP);
242 vnet_buffer (b)->l3_hdr_offset = (u8 *) ih - b->data;
Dave Barach68b0fb02017-02-28 15:15:56 -0500243 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700244 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700245 vnet_buffer (b)->sw_if_index[VLIB_TX] = uc->c_fib_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700246 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
247
Florin Corasc7542392019-07-22 08:08:43 -0700248 if (PREDICT_FALSE (uc->flags & UDP_CONN_F_CLOSING))
249 {
250 if (!transport_max_tx_dequeue (&uc->connection))
251 udp_connection_delete (uc);
252 }
253
Florin Coras3cbc04b2017-10-02 00:18:51 -0700254 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500255}
256
257transport_connection_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700258udp_session_get (u32 connection_index, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500259{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700260 udp_connection_t *uc;
261 uc = udp_connection_get (connection_index, thread_index);
262 if (uc)
263 return &uc->connection;
264 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500265}
266
267void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700268udp_session_close (u32 connection_index, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500269{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700270 udp_connection_t *uc;
Florin Corasc7542392019-07-22 08:08:43 -0700271
Florin Coras3cbc04b2017-10-02 00:18:51 -0700272 uc = udp_connection_get (connection_index, thread_index);
Florin Corasc7542392019-07-22 08:08:43 -0700273 if (!uc)
274 return;
275
276 if (!transport_max_tx_dequeue (&uc->connection))
277 udp_connection_delete (uc);
278 else
279 uc->flags |= UDP_CONN_F_CLOSING;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700280}
281
282void
283udp_session_cleanup (u32 connection_index, u32 thread_index)
284{
285 udp_connection_t *uc;
286 uc = udp_connection_get (connection_index, thread_index);
Florin Corasd85666f2020-04-03 00:58:48 +0000287 if (!uc)
288 return;
289 if (uc->flags & UDP_CONN_F_MIGRATED)
290 udp_connection_free (uc);
291 else
Florin Coras57a5a2d2020-04-01 23:16:11 +0000292 udp_connection_cleanup (uc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500293}
294
295u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700296format_udp_connection_id (u8 * s, va_list * args)
297{
298 udp_connection_t *uc = va_arg (*args, udp_connection_t *);
299 if (!uc)
300 return s;
301 if (uc->c_is_ip4)
Florin Coras9c4ec6f2020-04-01 02:50:13 +0000302 s = format (s, "[%u:%u][%s] %U:%d->%U:%d", uc->c_thread_index,
303 uc->c_s_index, "U", format_ip4_address, &uc->c_lcl_ip4,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700304 clib_net_to_host_u16 (uc->c_lcl_port), format_ip4_address,
305 &uc->c_rmt_ip4, clib_net_to_host_u16 (uc->c_rmt_port));
306 else
Florin Coras9c4ec6f2020-04-01 02:50:13 +0000307 s = format (s, "[%u:%u][%s] %U:%d->%U:%d", uc->c_thread_index,
308 uc->c_s_index, "U", format_ip6_address, &uc->c_lcl_ip6,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700309 clib_net_to_host_u16 (uc->c_lcl_port), format_ip6_address,
310 &uc->c_rmt_ip6, clib_net_to_host_u16 (uc->c_rmt_port));
311 return s;
312}
313
Florin Coras9c4ec6f2020-04-01 02:50:13 +0000314const char *udp_connection_flags_str[] = {
315#define _(sym, str) str,
316 foreach_udp_connection_flag
317#undef _
318};
319
320static u8 *
321format_udp_connection_flags (u8 * s, va_list * args)
322{
323 udp_connection_t *uc = va_arg (*args, udp_connection_t *);
324 int i, last = -1;
325
326 for (i = 0; i < UDP_CONN_N_FLAGS; i++)
327 if (uc->flags & (1 << i))
328 last = i;
329 for (i = 0; i < last; i++)
330 {
331 if (uc->flags & (1 << i))
332 s = format (s, "%s, ", udp_connection_flags_str[i]);
333 }
334 if (last >= 0)
335 s = format (s, "%s", udp_connection_flags_str[last]);
336 return s;
337}
338
339static u8 *
340format_udp_vars (u8 * s, va_list * args)
341{
342 udp_connection_t *uc = va_arg (*args, udp_connection_t *);
343 s = format (s, " index %u flags: %U", uc->c_c_index,
344 format_udp_connection_flags, uc);
345
346 if (!(uc->flags & UDP_CONN_F_LISTEN))
347 s = format (s, "\n");
348 return s;
349}
350
Florin Coras3cbc04b2017-10-02 00:18:51 -0700351u8 *
352format_udp_connection (u8 * s, va_list * args)
353{
354 udp_connection_t *uc = va_arg (*args, udp_connection_t *);
355 u32 verbose = va_arg (*args, u32);
356 if (!uc)
357 return s;
358 s = format (s, "%-50U", format_udp_connection_id, uc);
359 if (verbose)
360 {
Florin Coras9c4ec6f2020-04-01 02:50:13 +0000361 s = format (s, "%-15s",
362 (uc->flags & UDP_CONN_F_LISTEN) ? "LISTEN" : "OPENED", uc);
363 if (verbose > 1)
364 s = format (s, "\n%U", format_udp_vars, uc);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700365 }
366 return s;
367}
368
369u8 *
370format_udp_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500371{
372 u32 uci = va_arg (*args, u32);
373 u32 thread_index = va_arg (*args, u32);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700374 u32 verbose = va_arg (*args, u32);
375 udp_connection_t *uc;
Dave Barach68b0fb02017-02-28 15:15:56 -0500376
Florin Coras3cbc04b2017-10-02 00:18:51 -0700377 uc = udp_connection_get (uci, thread_index);
378 return format (s, "%U", format_udp_connection, uc, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -0500379}
380
381u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700382format_udp_half_open_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500383{
Dave Wallace3df56822019-05-22 18:56:57 -0400384 u32 __clib_unused tci = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +0200385 u32 __clib_unused thread_index = va_arg (*args, u32);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700386 clib_warning ("BUG");
387 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500388}
389
390u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700391format_udp_listener_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500392{
393 u32 tci = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +0200394 u32 __clib_unused thread_index = va_arg (*args, u32);
Aloys Augustin95dd1fe2019-07-12 17:11:04 +0200395 u32 verbose = va_arg (*args, u32);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700396 udp_connection_t *uc = udp_listener_get (tci);
Aloys Augustin95dd1fe2019-07-12 17:11:04 +0200397 return format (s, "%U", format_udp_connection, uc, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -0500398}
399
Florin Coras70f879d2020-03-13 17:54:42 +0000400static int
401udp_session_send_params (transport_connection_t * tconn,
402 transport_send_params_t * sp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500403{
404 /* No constraint on TX window */
Florin Coras70f879d2020-03-13 17:54:42 +0000405 sp->snd_space = ~0;
406 /* TODO figure out MTU of output interface */
407 sp->snd_mss = 1460;
408 sp->tx_offset = 0;
409 sp->flags = 0;
410 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500411}
412
413int
Florin Coras5665ced2018-10-25 18:03:45 -0700414udp_open_connection (transport_endpoint_cfg_t * rmt)
Dave Barach68b0fb02017-02-28 15:15:56 -0500415{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700416 vlib_main_t *vm = vlib_get_main ();
Damjan Marion067cd622018-07-11 12:47:43 +0200417 u32 thread_index = vm->thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700418 udp_connection_t *uc;
419 ip46_address_t lcl_addr;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700420 u16 lcl_port;
Florin Coras00e01d32019-10-21 16:07:46 -0700421 int rv;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700422
Florin Coras00e01d32019-10-21 16:07:46 -0700423 rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_UDP, rmt, &lcl_addr,
424 &lcl_port);
425 if (rv)
426 return rv;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700427
Florin Corasa0396202020-04-01 00:11:16 +0000428 if (udp_is_valid_dst_port (lcl_port, rmt->is_ip4))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700429 {
Florin Corasa0396202020-04-01 00:11:16 +0000430 /* If specific source port was requested abort */
431 if (rmt->peer.port)
Florin Coras00e01d32019-10-21 16:07:46 -0700432 return SESSION_E_PORTINUSE;
Florin Corasa0396202020-04-01 00:11:16 +0000433
434 /* Try to find a port that's not used */
435 while (udp_is_valid_dst_port (lcl_port, rmt->is_ip4))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700436 {
Florin Corasa0396202020-04-01 00:11:16 +0000437 lcl_port = transport_alloc_local_port (TRANSPORT_PROTO_UDP,
438 &lcl_addr);
439 if (lcl_port < 1)
Florin Coras00e01d32019-10-21 16:07:46 -0700440 return SESSION_E_PORTINUSE;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700441 }
442 }
443
Florin Corasa0396202020-04-01 00:11:16 +0000444 udp_connection_register_port (vm, lcl_port, rmt->is_ip4);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700445
Florin Coras40903ac2018-06-10 14:41:23 -0700446 /* We don't poll main thread if we have workers */
447 if (vlib_num_workers ())
448 thread_index = 1;
449
Florin Coras3cbc04b2017-10-02 00:18:51 -0700450 uc = udp_connection_alloc (thread_index);
451 ip_copy (&uc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
452 ip_copy (&uc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
453 uc->c_rmt_port = rmt->port;
454 uc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
455 uc->c_is_ip4 = rmt->is_ip4;
456 uc->c_proto = TRANSPORT_PROTO_UDP;
457 uc->c_fib_index = rmt->fib_index;
Florin Corasc7542392019-07-22 08:08:43 -0700458 uc->flags |= UDP_CONN_F_OWNS_PORT;
Florin Coras87b7e3d2020-03-27 15:06:07 +0000459 if (rmt->transport_flags & TRANSPORT_CFG_F_CONNECTED)
460 uc->flags |= UDP_CONN_F_CONNECTED;
461 else
462 uc->c_flags |= TRANSPORT_CONNECTION_F_CLESS;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700463
464 return uc->c_c_index;
465}
466
467transport_connection_t *
Florin Coras40903ac2018-06-10 14:41:23 -0700468udp_session_get_half_open (u32 conn_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700469{
470 udp_connection_t *uc;
Florin Coras40903ac2018-06-10 14:41:23 -0700471 u32 thread_index;
472
473 /* We don't poll main thread if we have workers */
474 thread_index = vlib_num_workers ()? 1 : 0;
475 uc = udp_connection_get (conn_index, thread_index);
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200476 if (!uc)
477 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700478 return &uc->connection;
Dave Barach68b0fb02017-02-28 15:15:56 -0500479}
480
481/* *INDENT-OFF* */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200482static const transport_proto_vft_t udp_proto = {
Florin Coras1ee78302019-02-05 15:51:15 -0800483 .start_listen = udp_session_bind,
484 .connect = udp_open_connection,
485 .stop_listen = udp_session_unbind,
Dave Barach68b0fb02017-02-28 15:15:56 -0500486 .push_header = udp_push_header,
487 .get_connection = udp_session_get,
488 .get_listener = udp_session_get_listener,
Florin Coras40903ac2018-06-10 14:41:23 -0700489 .get_half_open = udp_session_get_half_open,
Dave Barach68b0fb02017-02-28 15:15:56 -0500490 .close = udp_session_close,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700491 .cleanup = udp_session_cleanup,
Florin Coras70f879d2020-03-13 17:54:42 +0000492 .send_params = udp_session_send_params,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700493 .format_connection = format_udp_session,
494 .format_half_open = format_udp_half_open_session,
Florin Coras371ca502018-02-21 12:07:41 -0800495 .format_listener = format_udp_listener_session,
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200496 .transport_options = {
Florin Coras07063b82020-03-13 04:44:51 +0000497 .name = "udp",
498 .short_name = "U",
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200499 .tx_type = TRANSPORT_TX_DGRAM,
500 .service_type = TRANSPORT_SERVICE_CL,
501 },
Florin Coras7fb0fe12018-04-09 09:24:52 -0700502};
503/* *INDENT-ON* */
504
505
506int
Florin Coras5665ced2018-10-25 18:03:45 -0700507udpc_connection_open (transport_endpoint_cfg_t * rmt)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700508{
509 udp_connection_t *uc;
Aloys Augustin8e584992019-04-24 13:21:43 +0200510 /* Reproduce the logic of udp_open_connection to find the correct thread */
511 u32 thread_index = vlib_num_workers ()? 1 : vlib_get_main ()->thread_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700512 u32 uc_index;
513 uc_index = udp_open_connection (rmt);
Nathan Skrzypczak50f4a412019-07-04 14:20:17 +0200514 if (uc_index == (u32) ~ 0)
515 return -1;
Aloys Augustin8e584992019-04-24 13:21:43 +0200516 uc = udp_connection_get (uc_index, thread_index);
Florin Corasc7542392019-07-22 08:08:43 -0700517 uc->flags |= UDP_CONN_F_CONNECTED;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700518 return uc_index;
519}
520
521u32
522udpc_connection_listen (u32 session_index, transport_endpoint_t * lcl)
523{
524 udp_connection_t *listener;
Nathan Skrzypczak50f4a412019-07-04 14:20:17 +0200525 u32 li_index;
526 li_index = udp_session_bind (session_index, lcl);
527 if (li_index == (u32) ~ 0)
528 return -1;
529 listener = udp_listener_get (li_index);
Florin Corasc7542392019-07-22 08:08:43 -0700530 listener->flags |= UDP_CONN_F_CONNECTED;
Florin Coras95cd8642019-12-30 21:53:19 -0800531 /* Fake udp listener, i.e., make sure session layer adds a udp instead of
532 * udpc listener to the lookup table */
533 ((session_endpoint_cfg_t *) lcl)->transport_proto = TRANSPORT_PROTO_UDP;
Nathan Skrzypczak50f4a412019-07-04 14:20:17 +0200534 return li_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700535}
536
537/* *INDENT-OFF* */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200538static const transport_proto_vft_t udpc_proto = {
Florin Coras1ee78302019-02-05 15:51:15 -0800539 .start_listen = udpc_connection_listen,
540 .stop_listen = udp_session_unbind,
541 .connect = udpc_connection_open,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700542 .push_header = udp_push_header,
543 .get_connection = udp_session_get,
544 .get_listener = udp_session_get_listener,
Florin Coras40903ac2018-06-10 14:41:23 -0700545 .get_half_open = udp_session_get_half_open,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700546 .close = udp_session_close,
547 .cleanup = udp_session_cleanup,
Florin Coras70f879d2020-03-13 17:54:42 +0000548 .send_params = udp_session_send_params,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700549 .format_connection = format_udp_session,
550 .format_half_open = format_udp_half_open_session,
551 .format_listener = format_udp_listener_session,
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200552 .transport_options = {
Florin Coras07063b82020-03-13 04:44:51 +0000553 .name = "udpc",
554 .short_name = "U",
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200555 .tx_type = TRANSPORT_TX_DGRAM,
556 .service_type = TRANSPORT_SERVICE_VC,
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +0200557 .half_open_has_fifos = 1
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200558 },
Dave Barach68b0fb02017-02-28 15:15:56 -0500559};
560/* *INDENT-ON* */
561
562static clib_error_t *
563udp_init (vlib_main_t * vm)
564{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700565 udp_main_t *um = vnet_get_udp_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500566 ip_main_t *im = &ip_main;
567 vlib_thread_main_t *tm = vlib_get_thread_main ();
568 u32 num_threads;
Dave Barach68b0fb02017-02-28 15:15:56 -0500569 ip_protocol_info_t *pi;
Florin Coras29ca16f2017-11-02 18:14:17 -0400570 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500571
Dave Barach68b0fb02017-02-28 15:15:56 -0500572 /*
573 * Registrations
574 */
575
576 /* IP registration */
577 pi = ip_get_protocol_info (im, IP_PROTOCOL_UDP);
578 if (pi == 0)
579 return clib_error_return (0, "UDP protocol info AWOL");
580 pi->format_header = format_udp_header;
581 pi->unformat_pg_edit = unformat_pg_udp_header;
582
Dave Barach68b0fb02017-02-28 15:15:56 -0500583 /* Register as transport with URI */
Florin Coras561af9b2017-12-09 10:19:43 -0800584 transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto,
585 FIB_PROTOCOL_IP4, ip4_lookup_node.index);
586 transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto,
587 FIB_PROTOCOL_IP6, ip6_lookup_node.index);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700588 transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto,
589 FIB_PROTOCOL_IP4, ip4_lookup_node.index);
590 transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto,
591 FIB_PROTOCOL_IP6, ip6_lookup_node.index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500592
593 /*
594 * Initialize data structures
595 */
596
597 num_threads = 1 /* main thread */ + tm->n_threads;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700598 vec_validate (um->connections, num_threads - 1);
599 vec_validate (um->connection_peekers, num_threads - 1);
600 vec_validate (um->peekers_readers_locks, num_threads - 1);
601 vec_validate (um->peekers_write_locks, num_threads - 1);
Florin Coras29ca16f2017-11-02 18:14:17 -0400602
603 if (num_threads > 1)
604 for (i = 0; i < num_threads; i++)
605 {
606 clib_spinlock_init (&um->peekers_readers_locks[i]);
607 clib_spinlock_init (&um->peekers_write_locks[i]);
608 }
Florin Corasa0396202020-04-01 00:11:16 +0000609
610 um->local_to_input_edge[UDP_IP4] =
611 vlib_node_add_next (vm, udp4_local_node.index, udp4_input_node.index);
612 um->local_to_input_edge[UDP_IP6] =
613 vlib_node_add_next (vm, udp6_local_node.index, udp6_input_node.index);
Dave Barachf8d50682019-05-14 18:01:44 -0400614 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500615}
616
Dave Barachf8d50682019-05-14 18:01:44 -0400617/* *INDENT-OFF* */
618VLIB_INIT_FUNCTION (udp_init) =
619{
620 .runs_after = VLIB_INITS("ip_main_init", "ip4_lookup_init",
621 "ip6_lookup_init"),
622};
623/* *INDENT-ON* */
624
Dave Barach68b0fb02017-02-28 15:15:56 -0500625
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100626static clib_error_t *
627show_udp_punt_fn (vlib_main_t * vm, unformat_input_t * input,
628 vlib_cli_command_t * cmd_arg)
629{
630 udp_main_t *um = vnet_get_udp_main ();
631
632 clib_error_t *error = NULL;
633
634 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
635 return clib_error_return (0, "unknown input `%U'", format_unformat_error,
636 input);
637
638 udp_dst_port_info_t *port_info;
639 if (um->punt_unknown4)
640 {
641 vlib_cli_output (vm, "IPv4 UDP punt: enabled");
642 }
643 else
644 {
645 u8 *s = NULL;
646 vec_foreach (port_info, um->dst_port_infos[UDP_IP4])
647 {
648 if (udp_is_valid_dst_port (port_info->dst_port, 1))
649 {
650 s = format (s, (!s) ? "%d" : ", %d", port_info->dst_port);
651 }
652 }
653 s = format (s, "%c", 0);
654 vlib_cli_output (vm, "IPV4 UDP ports punt : %s", s);
655 }
656
657 if (um->punt_unknown6)
658 {
659 vlib_cli_output (vm, "IPv6 UDP punt: enabled");
660 }
661 else
662 {
663 u8 *s = NULL;
664 vec_foreach (port_info, um->dst_port_infos[UDP_IP6])
665 {
666 if (udp_is_valid_dst_port (port_info->dst_port, 01))
667 {
668 s = format (s, (!s) ? "%d" : ", %d", port_info->dst_port);
669 }
670 }
671 s = format (s, "%c", 0);
672 vlib_cli_output (vm, "IPV6 UDP ports punt : %s", s);
673 }
674
675 return (error);
676}
677/* *INDENT-OFF* */
678VLIB_CLI_COMMAND (show_tcp_punt_command, static) =
679{
680 .path = "show udp punt",
681 .short_help = "show udp punt [ipv4|ipv6]",
682 .function = show_udp_punt_fn,
683};
684/* *INDENT-ON* */
685
Dave Barach68b0fb02017-02-28 15:15:56 -0500686/*
687 * fd.io coding-style-patch-verification: ON
688 *
689 * Local Variables:
690 * eval: (c-set-style "gnu")
691 * End:
692 */