udp session: jumbo frames and configurable mtu
[vpp.git] / src / vnet / udp / udp.c
1 /*
2  * Copyright (c) 2016-2019 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 #include <vppinfra/sparse_vec.h>
25
26 udp_main_t udp_main;
27
28 static void
29 udp_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
63 static void
64 udp_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
83 void
84 udp_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
95 udp_connection_t *
96 udp_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     }
118   clib_memset (uc, 0, sizeof (*uc));
119   uc->c_c_index = uc - um->connections[thread_index];
120   uc->c_thread_index = thread_index;
121   uc->c_proto = TRANSPORT_PROTO_UDP;
122   clib_spinlock_init (&uc->rx_lock);
123   return uc;
124 }
125
126 void
127 udp_connection_free (udp_connection_t * uc)
128 {
129   u32 thread_index = uc->c_thread_index;
130   if (CLIB_DEBUG)
131     clib_memset (uc, 0xFA, sizeof (*uc));
132   pool_put (udp_main.connections[thread_index], uc);
133 }
134
135 static void
136 udp_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
145 void
146 udp_connection_delete (udp_connection_t * uc)
147 {
148   session_transport_delete_notify (&uc->connection);
149   udp_connection_cleanup (uc);
150 }
151
152 static u8
153 udp_connection_port_used_extern (u16 lcl_port, u8 is_ip4)
154 {
155   udp_main_t *um = vnet_get_udp_main ();
156   udp_dst_port_info_t *pi;
157
158   pi = udp_get_dst_port_info (um, lcl_port, is_ip4);
159   return (pi && !pi->n_connections
160           && udp_is_valid_dst_port (lcl_port, is_ip4));
161 }
162
163 u32
164 udp_session_bind (u32 session_index, transport_endpoint_t * lcl)
165 {
166   udp_main_t *um = vnet_get_udp_main ();
167   vlib_main_t *vm = vlib_get_main ();
168   transport_endpoint_cfg_t *lcl_ext;
169   udp_connection_t *listener;
170   u16 lcl_port_ho;
171   void *iface_ip;
172
173   lcl_port_ho = clib_net_to_host_u16 (lcl->port);
174
175   if (udp_connection_port_used_extern (lcl_port_ho, lcl->is_ip4))
176     {
177       clib_warning ("port already used");
178       return SESSION_E_PORTINUSE;
179     }
180
181   pool_get (um->listener_pool, listener);
182   clib_memset (listener, 0, sizeof (udp_connection_t));
183
184   listener->c_lcl_port = lcl->port;
185   listener->c_c_index = listener - um->listener_pool;
186
187   /* If we are provided a sw_if_index, bind using one of its ips */
188   if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX)
189     {
190       if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index,
191                                                  lcl->is_ip4)))
192         ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
193     }
194   ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
195   listener->c_is_ip4 = lcl->is_ip4;
196   listener->c_proto = TRANSPORT_PROTO_UDP;
197   listener->c_s_index = session_index;
198   listener->c_fib_index = lcl->fib_index;
199   listener->mss = um->default_mtu - sizeof (udp_header_t);
200   listener->flags |= UDP_CONN_F_OWNS_PORT | UDP_CONN_F_LISTEN;
201   lcl_ext = (transport_endpoint_cfg_t *) lcl;
202   if (lcl_ext->transport_flags & TRANSPORT_CFG_F_CONNECTED)
203     listener->flags |= UDP_CONN_F_CONNECTED;
204   else
205     listener->c_flags |= TRANSPORT_CONNECTION_F_CLESS;
206   clib_spinlock_init (&listener->rx_lock);
207
208   udp_connection_register_port (vm, lcl_port_ho, lcl->is_ip4);
209   return listener->c_c_index;
210 }
211
212 u32
213 udp_session_unbind (u32 listener_index)
214 {
215   udp_main_t *um = &udp_main;
216   udp_connection_t *listener;
217
218   listener = udp_listener_get (listener_index);
219   udp_connection_unregister_port (clib_net_to_host_u16 (listener->c_lcl_port),
220                                   listener->c_is_ip4);
221   pool_put (um->listener_pool, listener);
222   return 0;
223 }
224
225 transport_connection_t *
226 udp_session_get_listener (u32 listener_index)
227 {
228   udp_connection_t *us;
229
230   us = udp_listener_get (listener_index);
231   return &us->connection;
232 }
233
234 u32
235 udp_push_header (transport_connection_t * tc, vlib_buffer_t * b)
236 {
237   udp_connection_t *uc;
238   vlib_main_t *vm = vlib_get_main ();
239
240   uc = udp_get_connection_from_transport (tc);
241
242   vlib_buffer_push_udp (b, uc->c_lcl_port, uc->c_rmt_port, 1);
243   if (tc->is_ip4)
244     vlib_buffer_push_ip4 (vm, b, &uc->c_lcl_ip4, &uc->c_rmt_ip4,
245                           IP_PROTOCOL_UDP, 1);
246   else
247     {
248       ip6_header_t *ih;
249       ih = vlib_buffer_push_ip6 (vm, b, &uc->c_lcl_ip6, &uc->c_rmt_ip6,
250                                  IP_PROTOCOL_UDP);
251       vnet_buffer (b)->l3_hdr_offset = (u8 *) ih - b->data;
252     }
253   vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
254   vnet_buffer (b)->sw_if_index[VLIB_TX] = uc->c_fib_index;
255   b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
256
257   if (PREDICT_FALSE (uc->flags & UDP_CONN_F_CLOSING))
258     {
259       if (!transport_max_tx_dequeue (&uc->connection))
260         udp_connection_delete (uc);
261     }
262
263   return 0;
264 }
265
266 transport_connection_t *
267 udp_session_get (u32 connection_index, u32 thread_index)
268 {
269   udp_connection_t *uc;
270   uc = udp_connection_get (connection_index, thread_index);
271   if (uc)
272     return &uc->connection;
273   return 0;
274 }
275
276 void
277 udp_session_close (u32 connection_index, u32 thread_index)
278 {
279   udp_connection_t *uc;
280
281   uc = udp_connection_get (connection_index, thread_index);
282   if (!uc)
283     return;
284
285   if (!transport_max_tx_dequeue (&uc->connection))
286     udp_connection_delete (uc);
287   else
288     uc->flags |= UDP_CONN_F_CLOSING;
289 }
290
291 void
292 udp_session_cleanup (u32 connection_index, u32 thread_index)
293 {
294   udp_connection_t *uc;
295   uc = udp_connection_get (connection_index, thread_index);
296   if (!uc)
297     return;
298   if (uc->flags & UDP_CONN_F_MIGRATED)
299     udp_connection_free (uc);
300   else
301     udp_connection_cleanup (uc);
302 }
303
304 u8 *
305 format_udp_connection_id (u8 * s, va_list * args)
306 {
307   udp_connection_t *uc = va_arg (*args, udp_connection_t *);
308   if (!uc)
309     return s;
310   if (uc->c_is_ip4)
311     s = format (s, "[%u:%u][%s] %U:%d->%U:%d", uc->c_thread_index,
312                 uc->c_s_index, "U", format_ip4_address, &uc->c_lcl_ip4,
313                 clib_net_to_host_u16 (uc->c_lcl_port), format_ip4_address,
314                 &uc->c_rmt_ip4, clib_net_to_host_u16 (uc->c_rmt_port));
315   else
316     s = format (s, "[%u:%u][%s] %U:%d->%U:%d", uc->c_thread_index,
317                 uc->c_s_index, "U", format_ip6_address, &uc->c_lcl_ip6,
318                 clib_net_to_host_u16 (uc->c_lcl_port), format_ip6_address,
319                 &uc->c_rmt_ip6, clib_net_to_host_u16 (uc->c_rmt_port));
320   return s;
321 }
322
323 const char *udp_connection_flags_str[] = {
324 #define _(sym, str) str,
325   foreach_udp_connection_flag
326 #undef _
327 };
328
329 static u8 *
330 format_udp_connection_flags (u8 * s, va_list * args)
331 {
332   udp_connection_t *uc = va_arg (*args, udp_connection_t *);
333   int i, last = -1;
334
335   for (i = 0; i < UDP_CONN_N_FLAGS; i++)
336     if (uc->flags & (1 << i))
337       last = i;
338   for (i = 0; i < last; i++)
339     {
340       if (uc->flags & (1 << i))
341         s = format (s, "%s, ", udp_connection_flags_str[i]);
342     }
343   if (last >= 0)
344     s = format (s, "%s", udp_connection_flags_str[last]);
345   return s;
346 }
347
348 static u8 *
349 format_udp_vars (u8 * s, va_list * args)
350 {
351   udp_connection_t *uc = va_arg (*args, udp_connection_t *);
352   s = format (s, " index %u flags: %U", uc->c_c_index,
353               format_udp_connection_flags, uc);
354
355   if (!(uc->flags & UDP_CONN_F_LISTEN))
356     s = format (s, "\n");
357   return s;
358 }
359
360 u8 *
361 format_udp_connection (u8 * s, va_list * args)
362 {
363   udp_connection_t *uc = va_arg (*args, udp_connection_t *);
364   u32 verbose = va_arg (*args, u32);
365   if (!uc)
366     return s;
367   s = format (s, "%-50U", format_udp_connection_id, uc);
368   if (verbose)
369     {
370       s = format (s, "%-15s",
371                   (uc->flags & UDP_CONN_F_LISTEN) ? "LISTEN" : "OPENED", uc);
372       if (verbose > 1)
373         s = format (s, "\n%U", format_udp_vars, uc);
374     }
375   return s;
376 }
377
378 u8 *
379 format_udp_session (u8 * s, va_list * args)
380 {
381   u32 uci = va_arg (*args, u32);
382   u32 thread_index = va_arg (*args, u32);
383   u32 verbose = va_arg (*args, u32);
384   udp_connection_t *uc;
385
386   uc = udp_connection_get (uci, thread_index);
387   return format (s, "%U", format_udp_connection, uc, verbose);
388 }
389
390 u8 *
391 format_udp_half_open_session (u8 * s, va_list * args)
392 {
393   u32 __clib_unused tci = va_arg (*args, u32);
394   u32 __clib_unused thread_index = va_arg (*args, u32);
395   clib_warning ("BUG");
396   return 0;
397 }
398
399 u8 *
400 format_udp_listener_session (u8 * s, va_list * args)
401 {
402   u32 tci = va_arg (*args, u32);
403   u32 __clib_unused thread_index = va_arg (*args, u32);
404   u32 verbose = va_arg (*args, u32);
405   udp_connection_t *uc = udp_listener_get (tci);
406   return format (s, "%U", format_udp_connection, uc, verbose);
407 }
408
409 static int
410 udp_session_send_params (transport_connection_t * tconn,
411                          transport_send_params_t * sp)
412 {
413   udp_connection_t *uc;
414
415   uc = udp_get_connection_from_transport (tconn);
416
417   /* No constraint on TX window */
418   sp->snd_space = ~0;
419   /* TODO figure out MTU of output interface */
420   sp->snd_mss = uc->mss;
421   sp->tx_offset = 0;
422   sp->flags = 0;
423   return 0;
424 }
425
426 int
427 udp_open_connection (transport_endpoint_cfg_t * rmt)
428 {
429   vlib_main_t *vm = vlib_get_main ();
430   u32 thread_index = vm->thread_index;
431   udp_main_t *um = &udp_main;
432   ip46_address_t lcl_addr;
433   udp_connection_t *uc;
434   u16 lcl_port;
435   int rv;
436
437   rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_UDP, rmt, &lcl_addr,
438                                        &lcl_port);
439   if (rv)
440     {
441       if (rv != SESSION_E_PORTINUSE)
442         return rv;
443
444       if (udp_connection_port_used_extern (lcl_port, rmt->is_ip4))
445         return SESSION_E_PORTINUSE;
446
447       /* If port in use, check if 5-tuple is also in use */
448       if (session_lookup_connection (rmt->fib_index, &lcl_addr, &rmt->ip,
449                                      lcl_port, rmt->port, TRANSPORT_PROTO_UDP,
450                                      rmt->is_ip4))
451         return SESSION_E_PORTINUSE;
452
453       /* 5-tuple is available so increase lcl endpoint refcount and proceed
454        * with connection allocation */
455       transport_share_local_endpoint (TRANSPORT_PROTO_UDP, &lcl_addr,
456                                       lcl_port);
457       goto conn_alloc;
458     }
459
460   if (udp_is_valid_dst_port (lcl_port, rmt->is_ip4))
461     {
462       /* If specific source port was requested abort */
463       if (rmt->peer.port)
464         return SESSION_E_PORTINUSE;
465
466       /* Try to find a port that's not used */
467       while (udp_is_valid_dst_port (lcl_port, rmt->is_ip4))
468         {
469           lcl_port = transport_alloc_local_port (TRANSPORT_PROTO_UDP,
470                                                  &lcl_addr);
471           if (lcl_port < 1)
472             return SESSION_E_PORTINUSE;
473         }
474     }
475
476 conn_alloc:
477
478   udp_connection_register_port (vm, lcl_port, rmt->is_ip4);
479
480   /* We don't poll main thread if we have workers */
481   if (vlib_num_workers ())
482     thread_index = 1;
483
484   uc = udp_connection_alloc (thread_index);
485   ip_copy (&uc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
486   ip_copy (&uc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
487   uc->c_rmt_port = rmt->port;
488   uc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
489   uc->c_is_ip4 = rmt->is_ip4;
490   uc->c_proto = TRANSPORT_PROTO_UDP;
491   uc->c_fib_index = rmt->fib_index;
492   uc->mss = rmt->mss ? rmt->mss : (um->default_mtu - sizeof (udp_header_t));
493   uc->flags |= UDP_CONN_F_OWNS_PORT;
494   if (rmt->transport_flags & TRANSPORT_CFG_F_CONNECTED)
495     uc->flags |= UDP_CONN_F_CONNECTED;
496   else
497     uc->c_flags |= TRANSPORT_CONNECTION_F_CLESS;
498
499   return uc->c_c_index;
500 }
501
502 transport_connection_t *
503 udp_session_get_half_open (u32 conn_index)
504 {
505   udp_connection_t *uc;
506   u32 thread_index;
507
508   /* We don't poll main thread if we have workers */
509   thread_index = vlib_num_workers ()? 1 : 0;
510   uc = udp_connection_get (conn_index, thread_index);
511   if (!uc)
512     return 0;
513   return &uc->connection;
514 }
515
516 /* *INDENT-OFF* */
517 static const transport_proto_vft_t udp_proto = {
518   .start_listen = udp_session_bind,
519   .connect = udp_open_connection,
520   .stop_listen = udp_session_unbind,
521   .push_header = udp_push_header,
522   .get_connection = udp_session_get,
523   .get_listener = udp_session_get_listener,
524   .get_half_open = udp_session_get_half_open,
525   .close = udp_session_close,
526   .cleanup = udp_session_cleanup,
527   .send_params = udp_session_send_params,
528   .format_connection = format_udp_session,
529   .format_half_open = format_udp_half_open_session,
530   .format_listener = format_udp_listener_session,
531   .transport_options = {
532     .name = "udp",
533     .short_name = "U",
534     .tx_type = TRANSPORT_TX_DGRAM,
535     .service_type = TRANSPORT_SERVICE_CL,
536   },
537 };
538 /* *INDENT-ON* */
539
540
541 int
542 udpc_connection_open (transport_endpoint_cfg_t * rmt)
543 {
544   udp_connection_t *uc;
545   /* Reproduce the logic of udp_open_connection to find the correct thread */
546   u32 thread_index = vlib_num_workers ()? 1 : vlib_get_main ()->thread_index;
547   u32 uc_index;
548   uc_index = udp_open_connection (rmt);
549   if (uc_index == (u32) ~ 0)
550     return -1;
551   uc = udp_connection_get (uc_index, thread_index);
552   uc->flags |= UDP_CONN_F_CONNECTED;
553   return uc_index;
554 }
555
556 u32
557 udpc_connection_listen (u32 session_index, transport_endpoint_t * lcl)
558 {
559   udp_connection_t *listener;
560   u32 li_index;
561   li_index = udp_session_bind (session_index, lcl);
562   if (li_index == (u32) ~ 0)
563     return -1;
564   listener = udp_listener_get (li_index);
565   listener->flags |= UDP_CONN_F_CONNECTED;
566   /* Fake udp listener, i.e., make sure session layer adds a udp instead of
567    * udpc listener to the lookup table */
568   ((session_endpoint_cfg_t *) lcl)->transport_proto = TRANSPORT_PROTO_UDP;
569   return li_index;
570 }
571
572 /* *INDENT-OFF* */
573 static const transport_proto_vft_t udpc_proto = {
574   .start_listen = udpc_connection_listen,
575   .stop_listen = udp_session_unbind,
576   .connect = udpc_connection_open,
577   .push_header = udp_push_header,
578   .get_connection = udp_session_get,
579   .get_listener = udp_session_get_listener,
580   .get_half_open = udp_session_get_half_open,
581   .close = udp_session_close,
582   .cleanup = udp_session_cleanup,
583   .send_params = udp_session_send_params,
584   .format_connection = format_udp_session,
585   .format_half_open = format_udp_half_open_session,
586   .format_listener = format_udp_listener_session,
587   .transport_options = {
588     .name = "udpc",
589     .short_name = "U",
590     .tx_type = TRANSPORT_TX_DGRAM,
591     .service_type = TRANSPORT_SERVICE_VC,
592     .half_open_has_fifos = 1
593   },
594 };
595 /* *INDENT-ON* */
596
597 static clib_error_t *
598 udp_init (vlib_main_t * vm)
599 {
600   udp_main_t *um = vnet_get_udp_main ();
601   ip_main_t *im = &ip_main;
602   vlib_thread_main_t *tm = vlib_get_thread_main ();
603   u32 num_threads;
604   ip_protocol_info_t *pi;
605   int i;
606
607   /*
608    * Registrations
609    */
610
611   /* IP registration */
612   pi = ip_get_protocol_info (im, IP_PROTOCOL_UDP);
613   if (pi == 0)
614     return clib_error_return (0, "UDP protocol info AWOL");
615   pi->format_header = format_udp_header;
616   pi->unformat_pg_edit = unformat_pg_udp_header;
617
618   /* Register as transport with URI */
619   transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto,
620                                FIB_PROTOCOL_IP4, ip4_lookup_node.index);
621   transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto,
622                                FIB_PROTOCOL_IP6, ip6_lookup_node.index);
623   transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto,
624                                FIB_PROTOCOL_IP4, ip4_lookup_node.index);
625   transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto,
626                                FIB_PROTOCOL_IP6, ip6_lookup_node.index);
627
628   /*
629    * Initialize data structures
630    */
631
632   num_threads = 1 /* main thread */  + tm->n_threads;
633   vec_validate (um->connections, num_threads - 1);
634   vec_validate (um->connection_peekers, num_threads - 1);
635   vec_validate (um->peekers_readers_locks, num_threads - 1);
636   vec_validate (um->peekers_write_locks, num_threads - 1);
637
638   if (num_threads > 1)
639     for (i = 0; i < num_threads; i++)
640       {
641         clib_spinlock_init (&um->peekers_readers_locks[i]);
642         clib_spinlock_init (&um->peekers_write_locks[i]);
643       }
644
645   um->local_to_input_edge[UDP_IP4] =
646     vlib_node_add_next (vm, udp4_local_node.index, udp4_input_node.index);
647   um->local_to_input_edge[UDP_IP6] =
648     vlib_node_add_next (vm, udp6_local_node.index, udp6_input_node.index);
649
650   um->default_mtu = 1500;
651   return 0;
652 }
653
654 /* *INDENT-OFF* */
655 VLIB_INIT_FUNCTION (udp_init) =
656 {
657   .runs_after = VLIB_INITS("ip_main_init", "ip4_lookup_init",
658                            "ip6_lookup_init"),
659 };
660 /* *INDENT-ON* */
661
662 static clib_error_t *
663 udp_config_fn (vlib_main_t * vm, unformat_input_t * input)
664 {
665   udp_main_t *um = &udp_main;
666   u32 tmp;
667
668   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
669     {
670       if (unformat (input, "mtu %u", &tmp))
671         um->default_mtu = tmp;
672       else
673         return clib_error_return (0, "unknown input `%U'",
674                                   format_unformat_error, input);
675     }
676   return 0;
677 }
678
679 VLIB_CONFIG_FUNCTION (udp_config_fn, "udp");
680
681 static clib_error_t *
682 show_udp_punt_fn (vlib_main_t * vm, unformat_input_t * input,
683                   vlib_cli_command_t * cmd_arg)
684 {
685   udp_main_t *um = vnet_get_udp_main ();
686
687   clib_error_t *error = NULL;
688
689   if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
690     return clib_error_return (0, "unknown input `%U'", format_unformat_error,
691                               input);
692
693   udp_dst_port_info_t *port_info;
694   if (um->punt_unknown4)
695     {
696       vlib_cli_output (vm, "IPv4 UDP punt: enabled");
697     }
698   else
699     {
700       u8 *s = NULL;
701       vec_foreach (port_info, um->dst_port_infos[UDP_IP4])
702       {
703         if (udp_is_valid_dst_port (port_info->dst_port, 1))
704           {
705             s = format (s, (!s) ? "%d" : ", %d", port_info->dst_port);
706           }
707       }
708       s = format (s, "%c", 0);
709       vlib_cli_output (vm, "IPV4 UDP ports punt : %s", s);
710     }
711
712   if (um->punt_unknown6)
713     {
714       vlib_cli_output (vm, "IPv6 UDP punt: enabled");
715     }
716   else
717     {
718       u8 *s = NULL;
719       vec_foreach (port_info, um->dst_port_infos[UDP_IP6])
720       {
721         if (udp_is_valid_dst_port (port_info->dst_port, 01))
722           {
723             s = format (s, (!s) ? "%d" : ", %d", port_info->dst_port);
724           }
725       }
726       s = format (s, "%c", 0);
727       vlib_cli_output (vm, "IPV6 UDP ports punt : %s", s);
728     }
729
730   return (error);
731 }
732 /* *INDENT-OFF* */
733 VLIB_CLI_COMMAND (show_tcp_punt_command, static) =
734 {
735   .path = "show udp punt",
736   .short_help = "show udp punt [ipv4|ipv6]",
737   .function = show_udp_punt_fn,
738 };
739 /* *INDENT-ON* */
740
741 /*
742  * fd.io coding-style-patch-verification: ON
743  *
744  * Local Variables:
745  * eval: (c-set-style "gnu")
746  * End:
747  */