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