FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
udp_local.c
Go to the documentation of this file.
1 /*
2  * node.c: udp packet processing
3  *
4  * Copyright (c) 2013-2019 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #include <vlib/vlib.h>
19 #include <vnet/pg/pg.h>
20 #include <vnet/udp/udp.h>
21 #include <vnet/udp/udp_packet.h>
22 #include <vppinfra/sparse_vec.h>
23 
24 typedef enum
25 {
31 
32 typedef struct
33 {
38 
39 #define UDP_NO_NODE_SET ((u16) ~0)
40 
41 #ifndef CLIB_MARCH_VARIANT
42 u8 *
43 format_udp_rx_trace (u8 * s, va_list * args)
44 {
45  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
46  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
47  udp_local_rx_trace_t *t = va_arg (*args, udp_local_rx_trace_t *);
48 
49  s = format (s, "UDP: src-port %d dst-port %d%s",
50  clib_net_to_host_u16 (t->src_port),
51  clib_net_to_host_u16 (t->dst_port),
52  t->bound ? "" : " (no listener)");
53  return s;
54 }
55 #endif /* CLIB_MARCH_VARIANT */
56 
57 always_inline void
59  u8 is_ip4, u32 *next)
60 {
61  udp_main_t *um = &udp_main;
62  u8 punt_unknown = is_ip4 ? um->punt_unknown4 : um->punt_unknown6;
63 
64  if (PREDICT_FALSE (punt_unknown))
65  {
66  vlib_buffer_advance (b, -(word) advance);
67  b->error = node->errors[UDP_ERROR_PUNT];
69  }
70  else if (um->icmp_send_unreachable_disabled)
71  {
73  b->error = node->errors[UDP_ERROR_NO_LISTENER];
74  }
75  else
76  {
77  /* move the pointer back so icmp-error can find the ip packet header */
78  vlib_buffer_advance (b, -(word) advance);
79 
80  if (is_ip4)
81  {
83  b, ICMP4_destination_unreachable,
84  ICMP4_destination_unreachable_port_unreachable, 0);
85  b->error = node->errors[UDP_ERROR_NO_LISTENER];
87  }
88  else
89  {
91  b, ICMP6_destination_unreachable,
92  ICMP6_destination_unreachable_port_unreachable, 0);
93  b->error = node->errors[UDP_ERROR_NO_LISTENER];
95  }
96  }
97 }
98 
102  vlib_frame_t * from_frame, int is_ip4)
103 {
104  udp_main_t *um = &udp_main;
105  __attribute__ ((unused)) u32 n_left_from, next_index, *from, *to_next;
106  u16 *next_by_dst_port = (is_ip4 ?
109  n_left_from = from_frame->n_vectors;
110 
111  next_index = node->cached_next_index;
112 
113  while (n_left_from > 0)
114  {
115  u32 n_left_to_next;
116 
117  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
118 
119  while (n_left_from >= 4 && n_left_to_next >= 2)
120  {
121  u32 bi0, bi1;
122  vlib_buffer_t *b0, *b1;
123  udp_header_t *h0 = 0, *h1 = 0;
124  u32 i0, i1, dst_port0, dst_port1;
125  u32 advance0, advance1;
126  u32 error0, next0, error1, next1;
127 
128  /* Prefetch next iteration. */
129  {
130  vlib_buffer_t *p2, *p3;
131 
132  p2 = vlib_get_buffer (vm, from[2]);
133  p3 = vlib_get_buffer (vm, from[3]);
134 
135  vlib_prefetch_buffer_header (p2, LOAD);
136  vlib_prefetch_buffer_header (p3, LOAD);
137 
138  CLIB_PREFETCH (p2->data, sizeof (h0[0]), LOAD);
139  CLIB_PREFETCH (p3->data, sizeof (h1[0]), LOAD);
140  }
141 
142  bi0 = from[0];
143  bi1 = from[1];
144  to_next[0] = bi0;
145  to_next[1] = bi1;
146  from += 2;
147  to_next += 2;
148  n_left_to_next -= 2;
149  n_left_from -= 2;
150 
151  b0 = vlib_get_buffer (vm, bi0);
152  b1 = vlib_get_buffer (vm, bi1);
153 
154  /* ip4/6_local hands us the ip header, not the udp header */
155  if (is_ip4)
156  {
157  advance0 = ip4_header_bytes (vlib_buffer_get_current (b0));
158  advance1 = ip4_header_bytes (vlib_buffer_get_current (b1));
159  }
160  else
161  {
162  advance0 = sizeof (ip6_header_t);
163  advance1 = sizeof (ip6_header_t);
164  }
165 
166  if (PREDICT_FALSE (b0->current_length < advance0 + sizeof (*h0)))
167  {
168  error0 = UDP_ERROR_LENGTH_ERROR;
169  next0 = UDP_LOCAL_NEXT_DROP;
170  }
171  else
172  {
173  vlib_buffer_advance (b0, advance0);
174  h0 = vlib_buffer_get_current (b0);
175  error0 = UDP_ERROR_NONE;
176  next0 = UDP_LOCAL_NEXT_PUNT;
177  if (PREDICT_FALSE (clib_net_to_host_u16 (h0->length) >
179  {
180  error0 = UDP_ERROR_LENGTH_ERROR;
181  next0 = UDP_LOCAL_NEXT_DROP;
182  }
183  }
184 
185  if (PREDICT_FALSE (b1->current_length < advance1 + sizeof (*h1)))
186  {
187  error1 = UDP_ERROR_LENGTH_ERROR;
188  next1 = UDP_LOCAL_NEXT_DROP;
189  }
190  else
191  {
192  vlib_buffer_advance (b1, advance1);
193  h1 = vlib_buffer_get_current (b1);
194  error1 = UDP_ERROR_NONE;
195  next1 = UDP_LOCAL_NEXT_PUNT;
196  if (PREDICT_FALSE (clib_net_to_host_u16 (h1->length) >
198  {
199  error1 = UDP_ERROR_LENGTH_ERROR;
200  next1 = UDP_LOCAL_NEXT_DROP;
201  }
202  }
203 
204  /* Index sparse array with network byte order. */
205  dst_port0 = (error0 == 0) ? h0->dst_port : 0;
206  dst_port1 = (error1 == 0) ? h1->dst_port : 0;
207  sparse_vec_index2 (next_by_dst_port, dst_port0, dst_port1, &i0,
208  &i1);
209  next0 = (error0 == 0) ? vec_elt (next_by_dst_port, i0) : next0;
210  next1 = (error1 == 0) ? vec_elt (next_by_dst_port, i1) : next1;
211 
213  next0 == UDP_NO_NODE_SET))
214  {
215  udp_dispatch_error (node, b0, advance0, is_ip4, &next0);
216  }
217  else
218  {
219  b0->error = node->errors[UDP_ERROR_NONE];
220  // advance to the payload
221  vlib_buffer_advance (b0, sizeof (*h0));
222  }
223 
225  next1 == UDP_NO_NODE_SET))
226  {
227  udp_dispatch_error (node, b1, advance1, is_ip4, &next1);
228  }
229  else
230  {
231  b1->error = node->errors[UDP_ERROR_NONE];
232  // advance to the payload
233  vlib_buffer_advance (b1, sizeof (*h1));
234  }
235 
236  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
237  {
239  b0, sizeof (*tr));
240  if (b0->error != node->errors[UDP_ERROR_LENGTH_ERROR])
241  {
242  tr->src_port = h0 ? h0->src_port : 0;
243  tr->dst_port = h0 ? h0->dst_port : 0;
244  tr->bound = (next0 != UDP_LOCAL_NEXT_ICMP);
245  }
246  }
247  if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED))
248  {
250  b1, sizeof (*tr));
251  if (b1->error != node->errors[UDP_ERROR_LENGTH_ERROR])
252  {
253  tr->src_port = h1 ? h1->src_port : 0;
254  tr->dst_port = h1 ? h1->dst_port : 0;
255  tr->bound = (next1 != UDP_LOCAL_NEXT_ICMP);
256  }
257  }
258 
260  to_next, n_left_to_next,
261  bi0, bi1, next0, next1);
262  }
263 
264  while (n_left_from > 0 && n_left_to_next > 0)
265  {
266  u32 bi0;
267  vlib_buffer_t *b0;
268  udp_header_t *h0 = 0;
269  u32 i0, next0;
270  u32 advance0;
271 
272  bi0 = from[0];
273  to_next[0] = bi0;
274  from += 1;
275  to_next += 1;
276  n_left_from -= 1;
277  n_left_to_next -= 1;
278 
279  b0 = vlib_get_buffer (vm, bi0);
280 
281  /* ip4/6_local hands us the ip header, not the udp header */
282  if (is_ip4)
283  advance0 = ip4_header_bytes (vlib_buffer_get_current (b0));
284  else
285  advance0 = sizeof (ip6_header_t);
286 
287  if (PREDICT_FALSE (b0->current_length < advance0 + sizeof (*h0)))
288  {
289  b0->error = node->errors[UDP_ERROR_LENGTH_ERROR];
290  next0 = UDP_LOCAL_NEXT_DROP;
291  goto trace_x1;
292  }
293 
294  vlib_buffer_advance (b0, advance0);
295 
296  h0 = vlib_buffer_get_current (b0);
297 
298  if (PREDICT_TRUE (clib_net_to_host_u16 (h0->length) <=
300  {
301  i0 = sparse_vec_index (next_by_dst_port, h0->dst_port);
302  next0 = vec_elt (next_by_dst_port, i0);
303 
305  next0 == UDP_NO_NODE_SET))
306  {
307  udp_dispatch_error (node, b0, advance0, is_ip4, &next0);
308  }
309  else
310  {
311  b0->error = node->errors[UDP_ERROR_NONE];
312  // advance to the payload
313  vlib_buffer_advance (b0, sizeof (*h0));
314  }
315  }
316  else
317  {
318  b0->error = node->errors[UDP_ERROR_LENGTH_ERROR];
319  next0 = UDP_LOCAL_NEXT_DROP;
320  }
321 
322  trace_x1:
323  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
324  {
326  b0, sizeof (*tr));
327  if (b0->error != node->errors[UDP_ERROR_LENGTH_ERROR])
328  {
329  tr->src_port = h0->src_port;
330  tr->dst_port = h0->dst_port;
331  tr->bound = (next0 != UDP_LOCAL_NEXT_ICMP);
332  }
333  }
334 
336  to_next, n_left_to_next,
337  bi0, next0);
338  }
339 
340  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
341  }
342  return from_frame->n_vectors;
343 }
344 
345 static char *udp_error_strings[] = {
346 #define udp_error(n,s) s,
347 #include "udp_error.def"
348 #undef udp_error
349 };
350 
354 {
355  return udp46_local_inline (vm, node, from_frame, 1 /* is_ip4 */ );
356 }
357 
361 {
362  return udp46_local_inline (vm, node, from_frame, 0 /* is_ip4 */ );
363 }
364 
365 /* *INDENT-OFF* */
367  .name = "ip4-udp-lookup",
368  /* Takes a vector of packets. */
369  .vector_size = sizeof (u32),
370 
371  .n_errors = UDP_N_ERROR,
372  .error_strings = udp_error_strings,
373 
374  .n_next_nodes = UDP_LOCAL_N_NEXT,
375  .next_nodes = {
376  [UDP_LOCAL_NEXT_PUNT]= "ip4-punt",
377  [UDP_LOCAL_NEXT_DROP]= "ip4-drop",
378  [UDP_LOCAL_NEXT_ICMP]= "ip4-icmp-error",
379  },
380 
381  .format_buffer = format_udp_header,
382  .format_trace = format_udp_rx_trace,
383  .unformat_buffer = unformat_udp_header,
384 };
385 /* *INDENT-ON* */
386 
387 /* *INDENT-OFF* */
389  .name = "ip6-udp-lookup",
390  /* Takes a vector of packets. */
391  .vector_size = sizeof (u32),
392 
393  .n_errors = UDP_N_ERROR,
394  .error_strings = udp_error_strings,
395 
396  .n_next_nodes = UDP_LOCAL_N_NEXT,
397  .next_nodes = {
398  [UDP_LOCAL_NEXT_PUNT]= "ip6-punt",
399  [UDP_LOCAL_NEXT_DROP]= "ip6-drop",
400  [UDP_LOCAL_NEXT_ICMP]= "ip6-icmp-error",
401  },
402 
403  .format_buffer = format_udp_header,
404  .format_trace = format_udp_rx_trace,
405  .unformat_buffer = unformat_udp_header,
406 };
407 /* *INDENT-ON* */
408 
409 #ifndef CLIB_MARCH_VARIANT
410 void
412  char *dst_port_name, u8 is_ip4)
413 {
415  u32 i;
416 
417  vec_add2 (um->dst_port_infos[is_ip4], pi, 1);
418  i = pi - um->dst_port_infos[is_ip4];
419 
420  pi->name = dst_port_name;
421  pi->dst_port = dst_port;
422  pi->next_index = pi->node_index = ~0;
423 
425 
426  if (pi->name)
427  hash_set_mem (um->dst_port_info_by_name[is_ip4], pi->name, i);
428 }
429 
430 void
433 {
434  udp_main_t *um = &udp_main;
436  u16 *n;
437 
438  {
440  if (error)
442  }
443 
444  pi = udp_get_dst_port_info (um, dst_port, is_ip4);
445  if (!pi)
446  {
447  udp_add_dst_port (um, dst_port, 0, is_ip4);
448  pi = udp_get_dst_port_info (um, dst_port, is_ip4);
449  ASSERT (pi);
450  }
451 
452  pi->node_index = node_index;
454  is_ip4 ? udp4_local_node.index
455  : udp6_local_node.index, node_index);
456 
457  /* Setup udp protocol -> next index sparse vector mapping. */
458  if (is_ip4)
460  clib_host_to_net_u16 (dst_port));
461  else
463  clib_host_to_net_u16 (dst_port));
464 
465  n[0] = pi->next_index;
466 }
467 
468 void
470 {
471  udp_main_t *um = &udp_main;
473  u16 *n;
474 
475  pi = udp_get_dst_port_info (um, dst_port, is_ip4);
476  /* Not registered? Fagedaboudit */
477  if (!pi)
478  return;
479 
480  /* Kill the mapping. Don't bother killing the pi, it may be back. */
481  if (is_ip4)
483  clib_host_to_net_u16 (dst_port));
484  else
486  clib_host_to_net_u16 (dst_port));
487 
488  n[0] = UDP_NO_NODE_SET;
489 }
490 
491 u8
493 {
494  udp_main_t *um = &udp_main;
495  u16 *n;
496 
497  if (is_ip4)
499  clib_host_to_net_u16 (dst_port));
500  else
502  clib_host_to_net_u16 (dst_port));
503 
504  return (n[0] != SPARSE_VEC_INVALID_INDEX && n[0] != UDP_NO_NODE_SET);
505 }
506 
507 void
508 udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
509 {
510  udp_main_t *um = &udp_main;
511  {
513  if (error)
515  }
516 
517  if (is_ip4)
518  um->punt_unknown4 = is_add;
519  else
520  um->punt_unknown6 = is_add;
521 }
522 
523 /* Parse a UDP header. */
524 uword
525 unformat_udp_header (unformat_input_t * input, va_list * args)
526 {
527  u8 **result = va_arg (*args, u8 **);
528  udp_header_t *udp;
529  __attribute__ ((unused)) int old_length;
531 
532  /* Allocate space for IP header. */
533  {
534  void *p;
535 
536  old_length = vec_len (*result);
537  vec_add2 (*result, p, sizeof (ip4_header_t));
538  udp = p;
539  }
540 
541  clib_memset (udp, 0, sizeof (udp[0]));
542  if (unformat (input, "src-port %d dst-port %d", &src_port, &dst_port))
543  {
544  udp->src_port = clib_host_to_net_u16 (src_port);
545  udp->dst_port = clib_host_to_net_u16 (dst_port);
546  return 1;
547  }
548  return 0;
549 }
550 
551 static void
553 {
556 
560 }
561 
562 clib_error_t *
564 {
565  udp_main_t *um = &udp_main;
566  int i;
567 
568  {
571  if (error)
573  }
574 
575 
576  for (i = 0; i < 2; i++)
577  {
578  um->dst_port_info_by_name[i] = hash_create_string (0, sizeof (uword));
579  um->dst_port_info_by_dst_port[i] = hash_create (0, sizeof (uword));
580  }
581 
584 
585  um->punt_unknown4 = 0;
586  um->punt_unknown6 = 0;
587 
589  ( /* elt bytes */ sizeof (um->next_by_dst_port4[0]),
590  /* bits in index */ BITS (((udp_header_t *) 0)->dst_port));
591 
593  ( /* elt bytes */ sizeof (um->next_by_dst_port6[0]),
594  /* bits in index */ BITS (((udp_header_t *) 0)->dst_port));
595 
596 #define _(n,s) udp_add_dst_port (um, UDP_DST_PORT_##s, #s, 1 /* is_ip4 */);
598 #undef _
599 #define _(n,s) udp_add_dst_port (um, UDP_DST_PORT_##s, #s, 0 /* is_ip4 */);
601 #undef _
602  ip4_register_protocol (IP_PROTOCOL_UDP, udp4_local_node.index);
603  /* Note: ip6 differs from ip4, UDP is hotwired to ip6-udp-lookup */
604  return 0;
605 }
606 
608 #endif /* CLIB_MARCH_VARIANT */
609 
610 /*
611  * fd.io coding-style-patch-verification: ON
612  *
613  * Local Variables:
614  * eval: (c-set-style "gnu")
615  * End:
616  */
vlib.h
udp_dst_port_t
udp_dst_port_t
Definition: udp_local.h:58
udp_header_t::src_port
u16 src_port
Definition: udp_packet.h:48
udp_header_t::length
u16 length
Definition: udp_packet.h:51
hash_set
#define hash_set(h, key, value)
Definition: hash.h:255
udp_local_rx_trace_t::dst_port
u16 dst_port
Definition: udp_local.c:35
udp_dst_port_info_t
Definition: udp.h:69
dst_port
vl_api_ip_port_and_mask_t dst_port
Definition: flow_types.api:92
vlib_prefetch_buffer_header
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:231
icmp6_error_set_vnet_buffer
void icmp6_error_set_vnet_buffer(vlib_buffer_t *b, u8 type, u8 code, u32 data)
Definition: icmp6.c:451
vlib_node_add_next
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1177
next_index
nat44_ei_hairpin_src_next_t next_index
Definition: nat44_ei_hairpinning.c:412
unformat_udp_header
uword unformat_udp_header(unformat_input_t *input, va_list *args)
Definition: udp_local.c:525
pg.h
vlib_get_buffer
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:111
next
u16 * next
Definition: nat44_ei_out2in.c:718
node
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
foreach_udp4_dst_port
#define foreach_udp4_dst_port
Definition: udp_local.h:21
hash_create_string
#define hash_create_string(elts, value_bytes)
Definition: hash.h:689
udp_init
static clib_error_t * udp_init(vlib_main_t *vm)
Definition: udp.c:473
u16
unsigned short u16
Definition: types.h:57
udp_main_t::punt_unknown4
u8 punt_unknown4
Definition: udp.h:109
hash_set_mem
#define hash_set_mem(h, key, value)
Definition: hash.h:275
vlib_call_init_function
#define vlib_call_init_function(vm, x)
Definition: init.h:259
udp46_local_inline
static uword udp46_local_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, int is_ip4)
Definition: udp_local.c:100
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
UDP_NO_NODE_SET
#define UDP_NO_NODE_SET
Definition: udp_local.c:39
node_index
node node_index
Definition: interface_output.c:440
udp_setup_node
static void udp_setup_node(vlib_main_t *vm, u32 node_index)
Definition: udp_local.c:552
from_frame
vlib_main_t vlib_node_runtime_t vlib_frame_t * from_frame
Definition: esp_encrypt.c:1328
ip4_register_protocol
void ip4_register_protocol(u32 protocol, u32 node_index)
Definition: ip4_forward.c:1872
format_udp_rx_trace
u8 * format_udp_rx_trace(u8 *s, va_list *args)
Definition: udp_local.c:43
clib_error_report
#define clib_error_report(e)
Definition: error.h:113
unformat_input_t
struct _unformat_input_t unformat_input_t
vlib_node_t::unformat_buffer
unformat_function_t * unformat_buffer
Definition: node.h:349
vlib_frame_t
Definition: node.h:372
SPARSE_VEC_INVALID_INDEX
#define SPARSE_VEC_INVALID_INDEX
Definition: sparse_vec.h:68
vlib_buffer_length_in_chain
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
Definition: buffer_funcs.h:433
udp_header_t
Definition: udp_packet.h:45
ip4_header_t
Definition: ip4_packet.h:87
error
Definition: cJSON.c:88
udp_main_t::next_by_dst_port4
u16 * next_by_dst_port4
Definition: udp.h:107
format_udp_header
format_function_t format_udp_header
Definition: format.h:100
udp_punt_unknown
void udp_punt_unknown(vlib_main_t *vm, u8 is_ip4, u8 is_add)
Definition: udp_local.c:508
pg_node_t
Definition: pg.h:332
udp_main_t::dst_port_info_by_name
uword * dst_port_info_by_name[N_UDP_AF]
Definition: udp.h:102
unformat
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
udp_dst_port_info_t::node_index
u32 node_index
Definition: udp.h:78
vec_elt
#define vec_elt(v, i)
Get vector value at index i.
Definition: vec_bootstrap.h:210
UDP_LOCAL_NEXT_PUNT
@ UDP_LOCAL_NEXT_PUNT
Definition: udp_local.c:26
udp_main_t::dst_port_infos
udp_dst_port_info_t * dst_port_infos[N_UDP_AF]
Definition: udp.h:99
CLIB_PREFETCH
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:76
udp_main_t::punt_unknown6
u8 punt_unknown6
Definition: udp.h:110
vlib_buffer_advance
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:276
vlib_node_t::format_buffer
format_function_t * format_buffer
Definition: node.h:348
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
vlib_buffer_t::error
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:145
sparse_vec_validate
#define sparse_vec_validate(v, i)
Definition: sparse_vec.h:231
VLIB_NODE_FN
#define VLIB_NODE_FN(node)
Definition: node.h:202
vec_add2
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:644
pg_node_t::unformat_edit
unformat_function_t * unformat_edit
Definition: pg.h:335
udp_local_init
clib_error_t * udp_local_init(vlib_main_t *vm)
Definition: udp_local.c:563
CLIB_UNUSED
#define CLIB_UNUSED(x)
Definition: clib.h:90
PREDICT_FALSE
#define PREDICT_FALSE(x)
Definition: clib.h:124
unformat_pg_udp_header
unformat_function_t unformat_pg_udp_header
Definition: format.h:102
BITS
#define BITS(x)
Definition: clib.h:69
udp_dst_port_info_t::dst_port
udp_dst_port_t dst_port
Definition: udp.h:75
vlib_frame_vector_args
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:301
udp4_local_node
vlib_node_registration_t udp4_local_node
(constructor) VLIB_REGISTER_NODE (udp4_local_node)
Definition: udp_local.c:366
udp_packet.h
uword
u64 uword
Definition: types.h:112
pg_get_node
static pg_node_t * pg_get_node(uword node_index)
Definition: pg.h:391
udp_error_strings
static char * udp_error_strings[]
Definition: udp_local.c:345
udp_dst_port_info_t::name
char * name
Definition: udp.h:72
sparse_vec_index
static uword sparse_vec_index(void *v, uword sparse_index)
Definition: sparse_vec.h:161
sparse_vec.h
foreach_udp6_dst_port
@ foreach_udp6_dst_port
Definition: udp_local.h:61
vlib_get_node
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:86
udp_register_dst_port
void udp_register_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
Definition: udp_local.c:431
src_port
vl_api_ip_port_and_mask_t src_port
Definition: flow_types.api:91
udp_main_t::icmp_send_unreachable_disabled
u8 icmp_send_unreachable_disabled
Definition: udp.h:127
udp_unregister_dst_port
void udp_unregister_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u8 is_ip4)
Definition: udp_local.c:469
UDP_N_ERROR
@ UDP_N_ERROR
Definition: udp.h:33
udp_is_valid_dst_port
u8 udp_is_valid_dst_port(udp_dst_port_t dst_port, u8 is_ip4)
Definition: udp_local.c:492
UDP_LOCAL_N_NEXT
@ UDP_LOCAL_N_NEXT
Definition: udp_local.c:29
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
vlib_buffer_t::current_length
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
udp_local_next_t
udp_local_next_t
Definition: udp_local.c:24
icmp4_error_set_vnet_buffer
static_always_inline void icmp4_error_set_vnet_buffer(vlib_buffer_t *b, u8 type, u8 code, u32 data)
Definition: icmp4.h:51
udp_local_rx_trace_t
Definition: udp_local.c:32
udp_main_t::next_by_dst_port6
u16 * next_by_dst_port6
Definition: udp.h:108
vlib_validate_buffer_enqueue_x1
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:224
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
sparse_vec_index2
static void sparse_vec_index2(void *v, u32 si0, u32 si1, u32 *i0_return, u32 *i1_return)
Definition: sparse_vec.h:169
udp_main
udp_main_t udp_main
Definition: udp.c:23
format
description fragment has unexpected format
Definition: map.api:433
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
vlib_put_next_frame
vlib_put_next_frame(vm, node, next_index, 0)
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
udp_error.def
udp_header_t::dst_port
u16 dst_port
Definition: udp_packet.h:48
udp_dst_port_info_t::next_index
u32 next_index
Definition: udp.h:81
UDP_LOCAL_NEXT_DROP
@ UDP_LOCAL_NEXT_DROP
Definition: udp_local.c:27
UDP_LOCAL_NEXT_ICMP
@ UDP_LOCAL_NEXT_ICMP
Definition: udp_local.c:28
udp.h
ip6_header_t
Definition: ip6_packet.h:294
udp_dispatch_error
static void udp_dispatch_error(vlib_node_runtime_t *node, vlib_buffer_t *b, u32 advance, u8 is_ip4, u32 *next)
Definition: udp_local.c:58
udp_main_t::dst_port_info_by_dst_port
uword * dst_port_info_by_dst_port[N_UDP_AF]
Definition: udp.h:103
udp_get_dst_port_info
static udp_dst_port_info_t * udp_get_dst_port_info(udp_main_t *um, udp_dst_port_t dst_port, u8 is_ip4)
Definition: udp.h:231
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
udp_main_t
Definition: udp.h:97
vlib_node_t
Definition: node.h:247
vlib_add_trace
void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace.c:628
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
vlib_buffer_get_current
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:257
udp_local_rx_trace_t::bound
u8 bound
Definition: udp_local.c:36
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
vlib_buffer_t::data
u8 data[]
Packet data.
Definition: buffer.h:204
i
int i
Definition: flowhash_template.h:376
word
i64 word
Definition: types.h:111
ip4_header_bytes
static int ip4_header_bytes(const ip4_header_t *i)
Definition: ip4_packet.h:190
vlib_validate_buffer_enqueue_x2
#define vlib_validate_buffer_enqueue_x2(vm, node, next_index, to_next, n_left_to_next, bi0, bi1, next0, next1)
Finish enqueueing two buffers forward in the graph.
Definition: buffer_node.h:70
vlib_node_runtime_t
Definition: node.h:454
udp_add_dst_port
void udp_add_dst_port(udp_main_t *um, udp_dst_port_t dst_port, char *dst_port_name, u8 is_ip4)
Definition: udp_local.c:411
from
from
Definition: nat44_ei_hairpinning.c:415
PREDICT_TRUE
#define PREDICT_TRUE(x)
Definition: clib.h:125
vlib_get_next_frame
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:395
hash_create
#define hash_create(elts, value_bytes)
Definition: hash.h:695
udp6_local_node
vlib_node_registration_t udp6_local_node
(constructor) VLIB_REGISTER_NODE (udp6_local_node)
Definition: udp_local.c:388
n_left_from
n_left_from
Definition: nat44_ei_hairpinning.c:416
udp_local_rx_trace_t::src_port
u16 src_port
Definition: udp_local.c:34
vlib_buffer_t::flags
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,...
Definition: buffer.h:133
sparse_vec_new
static void * sparse_vec_new(uword elt_bytes, uword sparse_index_bits)
Definition: sparse_vec.h:71
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
VLIB_REGISTER_NODE
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169