blob: 947cc1e38e17835b0a122db9a74cd775d99a0ba7 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * 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
Florin Coras3cbc04b2017-10-02 00:18:51 -070025udp_connection_t *
26udp_connection_alloc (u32 thread_index)
27{
28 udp_main_t *um = &udp_main;
29 udp_connection_t *uc;
30 u32 will_expand = 0;
31 pool_get_aligned_will_expand (um->connections[thread_index], will_expand,
32 CLIB_CACHE_LINE_BYTES);
33
34 if (PREDICT_FALSE (will_expand))
35 {
36 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks
37 [thread_index]);
38 pool_get_aligned (udp_main.connections[thread_index], uc,
39 CLIB_CACHE_LINE_BYTES);
40 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
41 [thread_index]);
42 }
43 else
44 {
45 pool_get_aligned (um->connections[thread_index], uc,
46 CLIB_CACHE_LINE_BYTES);
47 }
48 memset (uc, 0, sizeof (*uc));
49 uc->c_c_index = uc - um->connections[thread_index];
50 uc->c_thread_index = thread_index;
51 uc->c_proto = TRANSPORT_PROTO_UDP;
Florin Coras7fb0fe12018-04-09 09:24:52 -070052 clib_spinlock_init (&uc->rx_lock);
Florin Coras3cbc04b2017-10-02 00:18:51 -070053 return uc;
54}
55
56void
57udp_connection_free (udp_connection_t * uc)
58{
59 pool_put (udp_main.connections[uc->c_thread_index], uc);
60 if (CLIB_DEBUG)
61 memset (uc, 0xFA, sizeof (*uc));
62}
Dave Barach68b0fb02017-02-28 15:15:56 -050063
64u32
Florin Coras3cbc04b2017-10-02 00:18:51 -070065udp_session_bind (u32 session_index, transport_endpoint_t * lcl)
Dave Barach68b0fb02017-02-28 15:15:56 -050066{
Florin Coras3cbc04b2017-10-02 00:18:51 -070067 udp_main_t *um = vnet_get_udp_main ();
68 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -050069 udp_connection_t *listener;
Florin Coras3cbc04b2017-10-02 00:18:51 -070070 u32 node_index;
71 void *iface_ip;
72 udp_dst_port_info_t *pi;
Dave Barach68b0fb02017-02-28 15:15:56 -050073
Florin Coras3cbc04b2017-10-02 00:18:51 -070074 pi = udp_get_dst_port_info (um, lcl->port, lcl->is_ip4);
75 if (pi)
76 return -1;
77
78 pool_get (um->listener_pool, listener);
Dave Barach68b0fb02017-02-28 15:15:56 -050079 memset (listener, 0, sizeof (udp_connection_t));
Florin Coras3cbc04b2017-10-02 00:18:51 -070080
Florin Coras0e495682017-09-19 22:27:18 -070081 listener->c_lcl_port = lcl->port;
Florin Coras3cbc04b2017-10-02 00:18:51 -070082 listener->c_c_index = listener - um->listener_pool;
83
84 /* If we are provided a sw_if_index, bind using one of its ips */
85 if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX)
86 {
87 if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index,
88 lcl->is_ip4)))
89 ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
90 }
91 ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
92 listener->c_is_ip4 = lcl->is_ip4;
93 listener->c_proto = TRANSPORT_PROTO_UDP;
94 listener->c_s_index = session_index;
95 listener->c_fib_index = lcl->fib_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -070096 clib_spinlock_init (&listener->rx_lock);
Florin Coras3cbc04b2017-10-02 00:18:51 -070097
98 node_index = lcl->is_ip4 ? udp4_input_node.index : udp6_input_node.index;
99 udp_register_dst_port (vm, clib_net_to_host_u16 (lcl->port), node_index,
100 1 /* is_ipv4 */ );
101 return listener->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500102}
103
104u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700105udp_session_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500106{
Florin Corase69f4952017-03-07 10:06:24 -0800107 vlib_main_t *vm = vlib_get_main ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700108
Dave Barach68b0fb02017-02-28 15:15:56 -0500109 udp_connection_t *listener;
110 listener = udp_listener_get (listener_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700111 udp_unregister_dst_port (vm, clib_net_to_host_u16 (listener->c_lcl_port),
112 listener->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500113 return 0;
114}
115
116transport_connection_t *
117udp_session_get_listener (u32 listener_index)
118{
119 udp_connection_t *us;
120
121 us = udp_listener_get (listener_index);
122 return &us->connection;
123}
124
125u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700126udp_push_header (transport_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500127{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700128 udp_connection_t *uc;
129 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500130
Florin Coras3cbc04b2017-10-02 00:18:51 -0700131 uc = udp_get_connection_from_transport (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500132
Florin Coras3cbc04b2017-10-02 00:18:51 -0700133 vlib_buffer_push_udp (b, uc->c_lcl_port, uc->c_rmt_port, 1);
134 if (tc->is_ip4)
135 vlib_buffer_push_ip4 (vm, b, &uc->c_lcl_ip4, &uc->c_rmt_ip4,
136 IP_PROTOCOL_UDP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500137 else
138 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700139 ip6_header_t *ih;
140 ih = vlib_buffer_push_ip6 (vm, b, &uc->c_lcl_ip6, &uc->c_rmt_ip6,
141 IP_PROTOCOL_UDP);
142 vnet_buffer (b)->l3_hdr_offset = (u8 *) ih - b->data;
Dave Barach68b0fb02017-02-28 15:15:56 -0500143 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700144 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700145 vnet_buffer (b)->sw_if_index[VLIB_TX] = uc->c_fib_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700146 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
147
148 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500149}
150
151transport_connection_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700152udp_session_get (u32 connection_index, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500153{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700154 udp_connection_t *uc;
155 uc = udp_connection_get (connection_index, thread_index);
156 if (uc)
157 return &uc->connection;
158 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500159}
160
161void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700162udp_session_close (u32 connection_index, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500163{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700164 vlib_main_t *vm = vlib_get_main ();
165 udp_connection_t *uc;
166 uc = udp_connection_get (connection_index, thread_index);
167 if (uc)
168 {
169 udp_unregister_dst_port (vm, clib_net_to_host_u16 (uc->c_lcl_port),
170 uc->c_is_ip4);
171 stream_session_delete_notify (&uc->connection);
172 udp_connection_free (uc);
173 }
174}
175
176void
177udp_session_cleanup (u32 connection_index, u32 thread_index)
178{
179 udp_connection_t *uc;
180 uc = udp_connection_get (connection_index, thread_index);
181 if (uc)
182 udp_connection_free (uc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500183}
184
185u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700186format_udp_connection_id (u8 * s, va_list * args)
187{
188 udp_connection_t *uc = va_arg (*args, udp_connection_t *);
189 if (!uc)
190 return s;
191 if (uc->c_is_ip4)
192 s = format (s, "[#%d][%s] %U:%d->%U:%d", uc->c_thread_index, "U",
193 format_ip4_address, &uc->c_lcl_ip4,
194 clib_net_to_host_u16 (uc->c_lcl_port), format_ip4_address,
195 &uc->c_rmt_ip4, clib_net_to_host_u16 (uc->c_rmt_port));
196 else
197 s = format (s, "[#%d][%s] %U:%d->%U:%d", uc->c_thread_index, "U",
198 format_ip6_address, &uc->c_lcl_ip6,
199 clib_net_to_host_u16 (uc->c_lcl_port), format_ip6_address,
200 &uc->c_rmt_ip6, clib_net_to_host_u16 (uc->c_rmt_port));
201 return s;
202}
203
204u8 *
205format_udp_connection (u8 * s, va_list * args)
206{
207 udp_connection_t *uc = va_arg (*args, udp_connection_t *);
208 u32 verbose = va_arg (*args, u32);
209 if (!uc)
210 return s;
211 s = format (s, "%-50U", format_udp_connection_id, uc);
212 if (verbose)
213 {
214 if (verbose == 1)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700215 s = format (s, "%-15s\n", "-");
Florin Coras3cbc04b2017-10-02 00:18:51 -0700216 else
217 s = format (s, "\n");
218 }
219 return s;
220}
221
222u8 *
223format_udp_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500224{
225 u32 uci = va_arg (*args, u32);
226 u32 thread_index = va_arg (*args, u32);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700227 u32 verbose = va_arg (*args, u32);
228 udp_connection_t *uc;
Dave Barach68b0fb02017-02-28 15:15:56 -0500229
Florin Coras3cbc04b2017-10-02 00:18:51 -0700230 uc = udp_connection_get (uci, thread_index);
231 return format (s, "%U", format_udp_connection, uc, verbose);
Dave Barach68b0fb02017-02-28 15:15:56 -0500232}
233
234u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700235format_udp_half_open_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500236{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700237 clib_warning ("BUG");
238 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500239}
240
241u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700242format_udp_listener_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500243{
244 u32 tci = va_arg (*args, u32);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700245 udp_connection_t *uc = udp_listener_get (tci);
246 return format (s, "%U", format_udp_connection, uc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500247}
248
249u16
Florin Coras3cbc04b2017-10-02 00:18:51 -0700250udp_send_mss (transport_connection_t * t)
Dave Barach68b0fb02017-02-28 15:15:56 -0500251{
252 /* TODO figure out MTU of output interface */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700253 return 1460;
Dave Barach68b0fb02017-02-28 15:15:56 -0500254}
255
256u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700257udp_send_space (transport_connection_t * t)
Dave Barach68b0fb02017-02-28 15:15:56 -0500258{
259 /* No constraint on TX window */
260 return ~0;
261}
262
263int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700264udp_open_connection (transport_endpoint_t * rmt)
Dave Barach68b0fb02017-02-28 15:15:56 -0500265{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700266 udp_main_t *um = vnet_get_udp_main ();
267 vlib_main_t *vm = vlib_get_main ();
268 u32 thread_index = vlib_get_thread_index ();
269 udp_connection_t *uc;
270 ip46_address_t lcl_addr;
271 u32 node_index;
272 u16 lcl_port;
273
274 if (transport_alloc_local_endpoint (TRANSPORT_PROTO_UDP, rmt, &lcl_addr,
275 &lcl_port))
276 return -1;
277
278 while (udp_get_dst_port_info (um, lcl_port, rmt->is_ip4))
279 {
280 lcl_port = transport_alloc_local_port (TRANSPORT_PROTO_UDP, &lcl_addr);
281 if (lcl_port < 1)
282 {
283 clib_warning ("Failed to allocate src port");
284 return -1;
285 }
286 }
287
288 node_index = rmt->is_ip4 ? udp4_input_node.index : udp6_input_node.index;
289 udp_register_dst_port (vm, lcl_port, node_index, 1 /* is_ipv4 */ );
290
291 uc = udp_connection_alloc (thread_index);
292 ip_copy (&uc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
293 ip_copy (&uc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
294 uc->c_rmt_port = rmt->port;
295 uc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
296 uc->c_is_ip4 = rmt->is_ip4;
297 uc->c_proto = TRANSPORT_PROTO_UDP;
298 uc->c_fib_index = rmt->fib_index;
299
300 return uc->c_c_index;
301}
302
303transport_connection_t *
304udp_half_open_session_get_transport (u32 conn_index)
305{
306 udp_connection_t *uc;
307 uc = udp_connection_get (conn_index, vlib_get_thread_index ());
308 return &uc->connection;
Dave Barach68b0fb02017-02-28 15:15:56 -0500309}
310
311/* *INDENT-OFF* */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700312const static transport_proto_vft_t udp_proto = {
313 .bind = udp_session_bind,
Dave Barach68b0fb02017-02-28 15:15:56 -0500314 .open = udp_open_connection,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700315 .unbind = udp_session_unbind,
Dave Barach68b0fb02017-02-28 15:15:56 -0500316 .push_header = udp_push_header,
317 .get_connection = udp_session_get,
318 .get_listener = udp_session_get_listener,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700319 .get_half_open = udp_half_open_session_get_transport,
Dave Barach68b0fb02017-02-28 15:15:56 -0500320 .close = udp_session_close,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700321 .cleanup = udp_session_cleanup,
322 .send_mss = udp_send_mss,
323 .send_space = udp_send_space,
324 .format_connection = format_udp_session,
325 .format_half_open = format_udp_half_open_session,
Florin Coras371ca502018-02-21 12:07:41 -0800326 .format_listener = format_udp_listener_session,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700327 .tx_type = TRANSPORT_TX_DGRAM,
328 .service_type = TRANSPORT_SERVICE_CL,
329};
330/* *INDENT-ON* */
331
332
333int
334udpc_connection_open (transport_endpoint_t * rmt)
335{
336 udp_connection_t *uc;
337 u32 uc_index;
338 uc_index = udp_open_connection (rmt);
339 uc = udp_connection_get (uc_index, vlib_get_thread_index ());
340 uc->is_connected = 1;
341 return uc_index;
342}
343
344u32
345udpc_connection_listen (u32 session_index, transport_endpoint_t * lcl)
346{
347 udp_connection_t *listener;
348 u32 li;
349 li = udp_session_bind (session_index, lcl);
350 listener = udp_listener_get (li);
351 listener->is_connected = 1;
352 return li;
353}
354
355/* *INDENT-OFF* */
356const static transport_proto_vft_t udpc_proto = {
357 .bind = udpc_connection_listen,
358 .open = udpc_connection_open,
359 .unbind = udp_session_unbind,
360 .push_header = udp_push_header,
361 .get_connection = udp_session_get,
362 .get_listener = udp_session_get_listener,
363 .get_half_open = udp_half_open_session_get_transport,
364 .close = udp_session_close,
365 .cleanup = udp_session_cleanup,
366 .send_mss = udp_send_mss,
367 .send_space = udp_send_space,
368 .format_connection = format_udp_session,
369 .format_half_open = format_udp_half_open_session,
370 .format_listener = format_udp_listener_session,
Florin Coras371ca502018-02-21 12:07:41 -0800371 .tx_type = TRANSPORT_TX_DEQUEUE,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700372 .service_type = TRANSPORT_SERVICE_CL,
Dave Barach68b0fb02017-02-28 15:15:56 -0500373};
374/* *INDENT-ON* */
375
376static clib_error_t *
377udp_init (vlib_main_t * vm)
378{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700379 udp_main_t *um = vnet_get_udp_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500380 ip_main_t *im = &ip_main;
381 vlib_thread_main_t *tm = vlib_get_thread_main ();
382 u32 num_threads;
383 clib_error_t *error = 0;
384 ip_protocol_info_t *pi;
Florin Coras29ca16f2017-11-02 18:14:17 -0400385 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500386
Dave Barach68b0fb02017-02-28 15:15:56 -0500387 if ((error = vlib_call_init_function (vm, ip_main_init)))
388 return error;
389 if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
390 return error;
391 if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
392 return error;
393
394 /*
395 * Registrations
396 */
397
398 /* IP registration */
399 pi = ip_get_protocol_info (im, IP_PROTOCOL_UDP);
400 if (pi == 0)
401 return clib_error_return (0, "UDP protocol info AWOL");
402 pi->format_header = format_udp_header;
403 pi->unformat_pg_edit = unformat_pg_udp_header;
404
Dave Barach68b0fb02017-02-28 15:15:56 -0500405 /* Register as transport with URI */
Florin Coras561af9b2017-12-09 10:19:43 -0800406 transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto,
407 FIB_PROTOCOL_IP4, ip4_lookup_node.index);
408 transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto,
409 FIB_PROTOCOL_IP6, ip6_lookup_node.index);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700410 transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto,
411 FIB_PROTOCOL_IP4, ip4_lookup_node.index);
412 transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto,
413 FIB_PROTOCOL_IP6, ip6_lookup_node.index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500414
415 /*
416 * Initialize data structures
417 */
418
419 num_threads = 1 /* main thread */ + tm->n_threads;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700420 vec_validate (um->connections, num_threads - 1);
421 vec_validate (um->connection_peekers, num_threads - 1);
422 vec_validate (um->peekers_readers_locks, num_threads - 1);
423 vec_validate (um->peekers_write_locks, num_threads - 1);
Florin Coras29ca16f2017-11-02 18:14:17 -0400424
425 if (num_threads > 1)
426 for (i = 0; i < num_threads; i++)
427 {
428 clib_spinlock_init (&um->peekers_readers_locks[i]);
429 clib_spinlock_init (&um->peekers_write_locks[i]);
430 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500431 return error;
432}
433
434VLIB_INIT_FUNCTION (udp_init);
435
436/*
437 * fd.io coding-style-patch-verification: ON
438 *
439 * Local Variables:
440 * eval: (c-set-style "gnu")
441 * End:
442 */