FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
icmp4.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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  * ip/icmp4.c: ipv4 icmp
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #include <vlib/vlib.h>
41 #include <vnet/ip/ip.h>
42 #include <vnet/pg/pg.h>
43 
44 static char *icmp_error_strings[] = {
45 #define _(f,s) s,
47 #undef _
48 };
49 
50 static u8 *
51 format_ip4_icmp_type_and_code (u8 * s, va_list * args)
52 {
53  icmp4_type_t type = va_arg (*args, int);
54  u8 code = va_arg (*args, int);
55  char *t = 0;
56 
57 #define _(n,f) case n: t = #f; break;
58 
59  switch (type)
60  {
62 
63  default:
64  break;
65  }
66 
67 #undef _
68 
69  if (!t)
70  return format (s, "unknown 0x%x", type);
71 
72  s = format (s, "%s", t);
73 
74  t = 0;
75  switch ((type << 8) | code)
76  {
77 #define _(a,n,f) case (ICMP4_##a << 8) | (n): t = #f; break;
78 
80 
81 #undef _
82  }
83 
84  if (t)
85  s = format (s, " %s", t);
86 
87  return s;
88 }
89 
90 static u8 *
91 format_ip4_icmp_header (u8 * s, va_list * args)
92 {
93  icmp46_header_t *icmp = va_arg (*args, icmp46_header_t *);
94  u32 max_header_bytes = va_arg (*args, u32);
95 
96  /* Nothing to do. */
97  if (max_header_bytes < sizeof (icmp[0]))
98  return format (s, "ICMP header truncated");
99 
100  s = format (s, "ICMP %U checksum 0x%x",
102  clib_net_to_host_u16 (icmp->checksum));
103 
104  if ((ICMP4_echo_request == icmp->type || ICMP4_echo_reply == icmp->type)
105  && sizeof (icmp[0]) + sizeof (u16) < max_header_bytes)
106  {
107  s = format (s, " id %u", clib_net_to_host_u16 (*(u16 *) (icmp + 1)));
108  }
109 
110  return s;
111 }
112 
113 static u8 *
114 format_icmp_input_trace (u8 * s, va_list * va)
115 {
116  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
117  CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
118  icmp_input_trace_t *t = va_arg (*va, icmp_input_trace_t *);
119 
120  s = format (s, "%U",
121  format_ip4_header, t->packet_data, sizeof (t->packet_data));
122 
123  return s;
124 }
125 
126 typedef enum
127 {
131 
132 typedef struct
133 {
135 
137 
138  /* Vector dispatch table indexed by [icmp type]. */
139  u8 ip4_input_next_index_by_type[256];
140 } icmp4_main_t;
141 
143 
144 static uword
147 {
149  uword n_packets = frame->n_vectors;
150  u32 *from, *to_next;
151  u32 n_left_from, n_left_to_next, next;
152 
154  n_left_from = n_packets;
155  next = node->cached_next_index;
156 
157  if (node->flags & VLIB_NODE_FLAG_TRACE)
159  /* stride */ 1,
160  sizeof (icmp_input_trace_t));
161 
162  while (n_left_from > 0)
163  {
164  vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
165 
166  while (n_left_from > 0 && n_left_to_next > 0)
167  {
168  vlib_buffer_t *p0;
169  ip4_header_t *ip0;
170  icmp46_header_t *icmp0;
171  icmp4_type_t type0;
172  u32 bi0, next0;
173 
174  if (PREDICT_TRUE (n_left_from > 2))
175  {
177  p0 = vlib_get_buffer (vm, from[1]);
178  ip0 = vlib_buffer_get_current (p0);
180  }
181 
182  bi0 = to_next[0] = from[0];
183 
184  from += 1;
185  n_left_from -= 1;
186  to_next += 1;
187  n_left_to_next -= 1;
188 
189  p0 = vlib_get_buffer (vm, bi0);
190  ip0 = vlib_buffer_get_current (p0);
191  icmp0 = ip4_next_header (ip0);
192  type0 = icmp0->type;
193  next0 = im->ip4_input_next_index_by_type[type0];
194 
195  p0->error = node->errors[ICMP4_ERROR_UNKNOWN_TYPE];
196 
197  /* Verify speculative enqueue, maybe switch current next frame */
199  n_left_to_next, bi0, next0);
200  }
201 
202  vlib_put_next_frame (vm, node, next, n_left_to_next);
203  }
204 
205  return frame->n_vectors;
206 }
207 
208 /* *INDENT-OFF* */
210  .function = ip4_icmp_input,
211  .name = "ip4-icmp-input",
212 
213  .vector_size = sizeof (u32),
214 
215  .format_trace = format_icmp_input_trace,
216 
217  .n_errors = ARRAY_LEN (icmp_error_strings),
218  .error_strings = icmp_error_strings,
219 
220  .n_next_nodes = 1,
221  .next_nodes = {
222  [ICMP_INPUT_NEXT_ERROR] = "ip4-punt",
223  },
224 };
225 /* *INDENT-ON* */
226 
227 typedef enum
228 {
233 
234 static u8
236 {
237  switch (type)
238  {
239  case ICMP4_destination_unreachable:
240  return ICMP4_ERROR_DEST_UNREACH_SENT;
241  case ICMP4_time_exceeded:
242  return ICMP4_ERROR_TTL_EXPIRE_SENT;
243  case ICMP4_parameter_problem:
244  return ICMP4_ERROR_PARAM_PROBLEM_SENT;
245  default:
246  return ICMP4_ERROR_DROP;
247  }
248 }
249 
250 static uword
253 {
254  u32 *from, *to_next;
255  uword n_left_from, n_left_to_next;
257  ip4_main_t *im = &ip4_main;
258  ip_lookup_main_t *lm = &im->lookup_main;
259 
261  n_left_from = frame->n_vectors;
262  next_index = node->cached_next_index;
263 
264  if (node->flags & VLIB_NODE_FLAG_TRACE)
266  /* stride */ 1,
267  sizeof (icmp_input_trace_t));
268 
269  while (n_left_from > 0)
270  {
271  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
272 
273  while (n_left_from > 0 && n_left_to_next > 0)
274  {
275  /*
276  * Duplicate first buffer and free the original chain. Keep
277  * as much of the original packet as possible, within the
278  * minimum MTU. We chat "a little" here by keeping whatever
279  * is available in the first buffer.
280  */
281 
282  u32 pi0 = ~0;
283  u32 org_pi0 = from[0];
285  u8 error0 = ICMP4_ERROR_NONE;
286  vlib_buffer_t *p0, *org_p0;
287  ip4_header_t *ip0, *out_ip0;
288  icmp46_header_t *icmp0;
289  u32 sw_if_index0, if_add_index0;
290  ip_csum_t sum;
291 
292  org_p0 = vlib_get_buffer (vm, org_pi0);
293  p0 = vlib_buffer_copy_no_chain (vm, org_p0, &pi0);
294  if (!p0 || pi0 == ~0) /* Out of buffers */
295  continue;
296 
297  /* Speculatively enqueue p0 to the current next frame */
298  to_next[0] = pi0;
299  from += 1;
300  to_next += 1;
301  n_left_from -= 1;
302  n_left_to_next -= 1;
303 
304  ip0 = vlib_buffer_get_current (p0);
305  sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
306 
307  /* Add IP header and ICMPv4 header including a 4 byte data field */
309  -sizeof (ip4_header_t) -
310  sizeof (icmp46_header_t) - 4);
311 
312  p0->current_length =
313  p0->current_length > 576 ? 576 : p0->current_length;
314  out_ip0 = vlib_buffer_get_current (p0);
315  icmp0 = (icmp46_header_t *) & out_ip0[1];
316 
317  /* Fill ip header fields */
318  out_ip0->ip_version_and_header_length = 0x45;
319  out_ip0->tos = 0;
320  out_ip0->length = clib_host_to_net_u16 (p0->current_length);
321  out_ip0->fragment_id = 0;
322  out_ip0->flags_and_fragment_offset = 0;
323  out_ip0->ttl = 0xff;
324  out_ip0->protocol = IP_PROTOCOL_ICMP;
325  out_ip0->dst_address = ip0->src_address;
326  if_add_index0 = ~0;
328  > sw_if_index0))
329  if_add_index0 =
330  lm->if_address_pool_index_by_sw_if_index[sw_if_index0];
331  if (PREDICT_TRUE (if_add_index0 != ~0))
332  {
333  ip_interface_address_t *if_add =
334  pool_elt_at_index (lm->if_address_pool, if_add_index0);
335  ip4_address_t *if_ip =
337  out_ip0->src_address = *if_ip;
338  }
339  else
340  {
341  /* interface has no IP4 address - should not happen */
342  next0 = IP4_ICMP_ERROR_NEXT_DROP;
343  error0 = ICMP4_ERROR_DROP;
344  }
345  out_ip0->checksum = ip4_header_checksum (out_ip0);
346 
347  /* Fill icmp header fields */
348  icmp0->type = vnet_buffer (p0)->ip.icmp.type;
349  icmp0->code = vnet_buffer (p0)->ip.icmp.code;
350  *((u32 *) (icmp0 + 1)) =
351  clib_host_to_net_u32 (vnet_buffer (p0)->ip.icmp.data);
352  icmp0->checksum = 0;
353  sum =
354  ip_incremental_checksum (0, icmp0,
355  p0->current_length -
356  sizeof (ip4_header_t));
357  icmp0->checksum = ~ip_csum_fold (sum);
358 
359  /* Update error status */
360  if (error0 == ICMP4_ERROR_NONE)
361  error0 = icmp4_icmp_type_to_error (icmp0->type);
362 
363  vlib_error_count (vm, node->node_index, error0, 1);
364 
365  /* Verify speculative enqueue, maybe switch current next frame */
367  to_next, n_left_to_next,
368  pi0, next0);
369  }
370  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
371  }
372 
373  /*
374  * push the original buffers to error-drop, so that
375  * they can get the error counters handled, then freed
376  */
380  frame->n_vectors);
381 
382  return frame->n_vectors;
383 }
384 
385 /* *INDENT-OFF* */
387  .function = ip4_icmp_error,
388  .name = "ip4-icmp-error",
389  .vector_size = sizeof (u32),
390 
391  .n_errors = ARRAY_LEN (icmp_error_strings),
392  .error_strings = icmp_error_strings,
393 
394  .n_next_nodes = IP4_ICMP_ERROR_N_NEXT,
395  .next_nodes = {
396  [IP4_ICMP_ERROR_NEXT_DROP] = "ip4-drop",
397  [IP4_ICMP_ERROR_NEXT_LOOKUP] = "ip4-lookup",
398  },
399 
400  .format_trace = format_icmp_input_trace,
401 };
402 /* *INDENT-ON* */
403 
404 
405 static uword
407 {
408  icmp46_header_t *h = va_arg (*args, icmp46_header_t *);
410  u32 i;
411 
413  cm->type_and_code_by_name, &i))
414  {
415  h->type = (i >> 8) & 0xff;
416  h->code = (i >> 0) & 0xff;
417  }
419  cm->type_by_name, &i))
420  {
421  h->type = i;
422  h->code = 0;
423  }
424  else
425  return 0;
426 
427  return 1;
428 }
429 
430 static void
432  pg_stream_t * s,
433  pg_edit_group_t * g, u32 * packets, u32 n_packets)
434 {
436  u32 ip_offset, icmp_offset;
437 
438  icmp_offset = g->start_byte_offset;
439  ip_offset = (g - 1)->start_byte_offset;
440 
441  while (n_packets >= 1)
442  {
443  vlib_buffer_t *p0;
444  ip4_header_t *ip0;
445  icmp46_header_t *icmp0;
446  u32 len0;
447 
448  p0 = vlib_get_buffer (vm, packets[0]);
449  n_packets -= 1;
450  packets += 1;
451 
452  ASSERT (p0->current_data == 0);
453  ip0 = (void *) (p0->data + ip_offset);
454  icmp0 = (void *) (p0->data + icmp_offset);
455 
456  /* if IP length has been specified, then calculate the length based on buffer */
457  if (ip0->length == 0)
458  len0 = vlib_buffer_length_in_chain (vm, p0) - icmp_offset;
459  else
460  len0 = clib_net_to_host_u16 (ip0->length) - icmp_offset;
461 
462  icmp0->checksum =
463  ~ip_csum_fold (ip_incremental_checksum (0, icmp0, len0));
464  }
465 }
466 
467 typedef struct
468 {
472 
473 always_inline void
475 {
476  /* Initialize fields that are not bit fields in the IP header. */
477 #define _(f) pg_edit_init (&p->f, icmp46_header_t, f);
478  _(type);
479  _(code);
480  _(checksum);
481 #undef _
482 }
483 
484 static uword
485 unformat_pg_icmp_header (unformat_input_t * input, va_list * args)
486 {
487  pg_stream_t *s = va_arg (*args, pg_stream_t *);
489  u32 group_index;
490 
491  p = pg_create_edit_group (s, sizeof (p[0]), sizeof (icmp46_header_t),
492  &group_index);
494 
496 
497  {
498  icmp46_header_t tmp;
499 
500  if (!unformat (input, "ICMP %U", unformat_icmp_type_and_code, &tmp))
501  goto error;
502 
503  pg_edit_set_fixed (&p->type, tmp.type);
504  pg_edit_set_fixed (&p->code, tmp.code);
505  }
506 
507  /* Parse options. */
508  while (1)
509  {
510  if (unformat (input, "checksum %U",
512  ;
513 
514  /* Can't parse input: try next protocol level. */
515  else
516  break;
517  }
518 
519  if (!unformat_user (input, unformat_pg_payload, s))
520  goto error;
521 
523  {
524  pg_edit_group_t *g = pg_stream_get_group (s, group_index);
526  g->edit_function_opaque = 0;
527  }
528 
529  return 1;
530 
531 error:
532  /* Free up any edits we may have added. */
533  pg_free_edit_group (s);
534  return 0;
535 }
536 
537 void
539 {
541  u32 old_next_index;
542 
543  ASSERT ((int) type < ARRAY_LEN (im->ip4_input_next_index_by_type));
544  old_next_index = im->ip4_input_next_index_by_type[type];
545 
546  im->ip4_input_next_index_by_type[type]
548 
549  if (old_next_index &&
550  (old_next_index != im->ip4_input_next_index_by_type[type]))
551  clib_warning ("WARNING: changed next_by_type[%d]", (int) type);
552 }
553 
554 static clib_error_t *
556 {
557  ip_main_t *im = &ip_main;
558  ip_protocol_info_t *pi;
561 
563 
564  if (error)
565  return error;
566 
567  pi = ip_get_protocol_info (im, IP_PROTOCOL_ICMP);
570 
571  cm->type_by_name = hash_create_string (0, sizeof (uword));
572 #define _(n,t) hash_set_mem (cm->type_by_name, #t, (n));
574 #undef _
575 
576  cm->type_and_code_by_name = hash_create_string (0, sizeof (uword));
577 #define _(a,n,t) hash_set_mem (cm->type_by_name, #t, (n) | (ICMP4_##a << 8));
579 #undef _
580 
581  clib_memset (cm->ip4_input_next_index_by_type,
583  sizeof (cm->ip4_input_next_index_by_type));
584 
585  return 0;
586 }
587 
589 
590 /*
591  * fd.io coding-style-patch-verification: ON
592  *
593  * Local Variables:
594  * eval: (c-set-style "gnu")
595  * End:
596  */
vlib.h
tmp
u32 * tmp
Definition: interface_output.c:1078
icmp_input_trace_t
Definition: icmp4.h:41
format_icmp_input_trace
static u8 * format_icmp_input_trace(u8 *s, va_list *va)
Definition: icmp4.c:114
im
vnet_interface_main_t * im
Definition: interface_output.c:395
pg_icmp46_header_t
Definition: icmp4.c:467
ip_interface_address_get_address
static void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: ip_interface.h:43
pg_edit_set_fixed
static void pg_edit_set_fixed(pg_edit_t *e, u64 value)
Definition: edit.h:153
unformat_user
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
pg_edit_group_t::start_byte_offset
u32 start_byte_offset
Definition: pg.h:69
frame
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: nat44_ei.c:3048
vlib_node_add_next
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1177
pg_icmp46_header_t::checksum
pg_edit_t checksum
Definition: icmp4.c:470
next_index
nat44_ei_hairpin_src_next_t next_index
Definition: nat44_ei_hairpinning.c:412
ip4_main
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1105
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
icmp4_main_t
Definition: icmp4.c:132
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:553
next
u16 * next
Definition: nat44_ei_out2in.c:718
vlib_trace_frame_buffers_only
void vlib_trace_frame_buffers_only(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, uword n_buffers, uword next_buffer_stride, uword n_buffer_data_bytes_in_trace)
Definition: trace.c:48
foreach_icmp4_error
@ foreach_icmp4_error
Definition: icmp4.h:37
ICMP_INPUT_NEXT_ERROR
@ ICMP_INPUT_NEXT_ERROR
Definition: icmp4.c:128
icmp4_main_t::type_by_name
uword * type_by_name
Definition: icmp4.c:136
PG_EDIT_UNSPECIFIED
@ PG_EDIT_UNSPECIFIED
Definition: edit.h:61
node
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
icmp_input_trace_t::packet_data
u8 packet_data[64]
Definition: icmp4.h:43
ip_main
ip_main_t ip_main
Definition: ip_init.c:42
ip_get_protocol_info
static ip_protocol_info_t * ip_get_protocol_info(ip_main_t *im, u32 protocol)
Definition: ip.h:134
ip_protocol_info_t::format_header
format_function_t * format_header
Definition: ip.h:79
u16
unsigned short u16
Definition: types.h:57
vlib_call_init_function
#define vlib_call_init_function(vm, x)
Definition: init.h:259
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
format_ip4_icmp_header
static u8 * format_ip4_icmp_header(u8 *s, va_list *args)
Definition: icmp4.c:91
hash_create_string
#define hash_create_string(elts, value_bytes)
Definition: hash.h:689
VLIB_RX
@ VLIB_RX
Definition: defs.h:46
node_index
node node_index
Definition: interface_output.c:420
unformat_pg_number
uword unformat_pg_number(unformat_input_t *input, va_list *args)
Definition: edit.c:85
unformat_input_t
struct _unformat_input_t unformat_input_t
ip4_icmp_error_next_t
ip4_icmp_error_next_t
Definition: icmp4.c:227
vlib_error_count
static void vlib_error_count(vlib_main_t *vm, uword node_index, uword counter, uword increment)
Definition: error_funcs.h:57
vlib_frame_t
Definition: node.h:372
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
ip4_header_t
Definition: ip4_packet.h:87
ip4_header_t::tos
ip_dscp_t tos
Definition: ip4_packet.h:96
h
h
Definition: flowhash_template.h:372
error
Definition: cJSON.c:88
ip4_header_t::length
u16 length
Definition: ip4_packet.h:99
ip4_icmp_register_type
void ip4_icmp_register_type(vlib_main_t *vm, icmp4_type_t type, u32 node_index)
Definition: icmp4.c:538
unformat
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
icmp4_pg_edit_function
static void icmp4_pg_edit_function(pg_main_t *pg, pg_stream_t *s, pg_edit_group_t *g, u32 *packets, u32 n_packets)
Definition: icmp4.c:431
CLIB_PREFETCH
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
vlib_buffer_t::current_data
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:119
ip_lookup_main_t::if_address_pool_index_by_sw_if_index
u32 * if_address_pool_index_by_sw_if_index
Head of doubly linked list of interface addresses for each software interface.
Definition: lookup.h:131
vlib_buffer_enqueue_to_single_next
static_always_inline void vlib_buffer_enqueue_to_single_next(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u16 next_index, u32 count)
Definition: buffer_node.h:348
pg_edit_group_t::edit_function_opaque
uword edit_function_opaque
Definition: pg.h:81
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
pg_edit_group_t
Definition: pg.h:56
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
IP4_ICMP_ERROR_N_NEXT
@ IP4_ICMP_ERROR_N_NEXT
Definition: icmp4.c:231
IP4_ICMP_ERROR_NEXT_LOOKUP
@ IP4_ICMP_ERROR_NEXT_LOOKUP
Definition: icmp4.c:230
CLIB_UNUSED
#define CLIB_UNUSED(x)
Definition: clib.h:90
vnet_buffer
#define vnet_buffer(b)
Definition: buffer.h:437
VLIB_NODE_FLAG_TRACE
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:291
ip_incremental_checksum
static ip_csum_t ip_incremental_checksum(ip_csum_t sum, void *_data, uword n_bytes)
Definition: ip_packet.h:319
ARRAY_LEN
#define ARRAY_LEN(x)
Definition: clib.h:70
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
pg_edit_t::type
pg_edit_type_t type
Definition: edit.h:66
vlib_prefetch_buffer_with_index
#define vlib_prefetch_buffer_with_index(vm, bi, type)
Prefetch buffer metadata by buffer index The first 64 bytes of buffer contains most header informatio...
Definition: buffer_funcs.h:507
uword
u64 uword
Definition: types.h:112
icmp4_icmp_type_to_error
static u8 icmp4_icmp_type_to_error(u8 type)
Definition: icmp4.c:235
i
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
cm
vnet_feature_config_main_t * cm
Definition: nat44_ei_hairpinning.c:591
ip4_header_t::checksum
u16 checksum
Definition: ip4_packet.h:118
ip4_address_t
Definition: ip4_packet.h:50
pg_stream_get_group
static pg_edit_group_t * pg_stream_get_group(pg_stream_t *s, u32 group_index)
Definition: pg.h:233
pg_free_edit_group
static void pg_free_edit_group(pg_stream_t *s)
Definition: pg.h:292
ip_main_init
clib_error_t * ip_main_init(vlib_main_t *vm)
Definition: ip_init.c:45
CLIB_CACHE_LINE_BYTES
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
vlib_buffer_copy_no_chain
static vlib_buffer_t * vlib_buffer_copy_no_chain(vlib_main_t *vm, vlib_buffer_t *b, u32 *di)
Definition: buffer_funcs.h:1140
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
ip4_header_t::dst_address
ip4_address_t dst_address
Definition: ip4_packet.h:125
unformat_pg_edit
uword unformat_pg_edit(unformat_input_t *input, va_list *args)
Definition: edit.c:106
vlib_buffer_t::current_length
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
ip4_header_t::fragment_id
u16 fragment_id
Definition: ip4_packet.h:102
unformat_pg_payload
uword unformat_pg_payload(unformat_input_t *input, va_list *args)
Definition: edit.c:127
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
ip4_header_t::src_address
ip4_address_t src_address
Definition: ip4_packet.h:125
icmp
icmp
Definition: map.api:387
icmp4_init
static clib_error_t * icmp4_init(vlib_main_t *vm)
Definition: icmp4.c:555
pg_main_t
Definition: pg.h:330
pg_icmp46_header_t::code
pg_edit_t code
Definition: icmp4.c:469
format
description fragment has unexpected format
Definition: map.api:433
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
pg_create_edit_group
static void * pg_create_edit_group(pg_stream_t *s, int n_edit_bytes, int n_packet_bytes, u32 *group_index)
Definition: pg.h:239
vlib_put_next_frame
vlib_put_next_frame(vm, node, next_index, 0)
ip.h
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
ip4_header_t::ttl
u8 ttl
Definition: ip4_packet.h:112
ip_protocol_info_t
Definition: ip.h:70
format_ip4_icmp_type_and_code
static u8 * format_ip4_icmp_type_and_code(u8 *s, va_list *args)
Definition: icmp4.c:51
icmp4_main_t::type_and_code_by_name
uword * type_and_code_by_name
Definition: icmp4.c:134
ip4_header_t::flags_and_fragment_offset
u16 flags_and_fragment_offset
Definition: ip4_packet.h:106
pg_icmp_header_init
static void pg_icmp_header_init(pg_icmp46_header_t *p)
Definition: icmp4.c:474
format_ip4_header
format_function_t format_ip4_header
Definition: format.h:81
ip_lookup_main_t
Definition: lookup.h:121
ip_lookup_main_t::if_address_pool
ip_interface_address_t * if_address_pool
Pool of addresses that are assigned to interfaces.
Definition: lookup.h:124
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
ip4_icmp_error
static uword ip4_icmp_error(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: icmp4.c:251
ip4_header_t::ip_version_and_header_length
u8 ip_version_and_header_length
Definition: ip4_packet.h:93
vlib_node_t
Definition: node.h:247
foreach_icmp4_code
@ foreach_icmp4_code
Definition: icmp46_packet.h:172
ip4_icmp_input_node
vlib_node_registration_t ip4_icmp_input_node
(constructor) VLIB_REGISTER_NODE (ip4_icmp_input_node)
Definition: icmp4.c:209
vlib_get_main
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
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
foreach_icmp4_type
@ foreach_icmp4_type
Definition: icmp46_packet.h:165
ip4_header_checksum
static u16 ip4_header_checksum(ip4_header_t *i)
Definition: ip4_packet.h:314
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
ip_csum_t
uword ip_csum_t
Definition: ip_packet.h:245
vlib_buffer_t::data
u8 data[]
Packet data.
Definition: buffer.h:204
unformat_pg_icmp_header
static uword unformat_pg_icmp_header(unformat_input_t *input, va_list *args)
Definition: icmp4.c:485
clib_warning
#define clib_warning(format, args...)
Definition: error.h:59
pg_edit_t
Definition: edit.h:64
icmp_input_next_t
icmp_input_next_t
Definition: icmp4.c:126
ICMP_INPUT_N_NEXT
@ ICMP_INPUT_N_NEXT
Definition: icmp4.c:129
pg_stream_t
Definition: pg.h:96
icmp4_main
icmp4_main_t icmp4_main
Definition: icmp4.c:142
icmp4_type_t
icmp4_type_t
Definition: icmp46_packet.h:162
ip_main_t
Definition: ip.h:107
ip_interface_address_t
Definition: lookup.h:89
vlib_node_runtime_t
Definition: node.h:454
pg_icmp46_header_t::type
pg_edit_t type
Definition: icmp4.c:469
from
from
Definition: nat44_ei_hairpinning.c:415
ip4_icmp_input
static uword ip4_icmp_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: icmp4.c:145
PREDICT_TRUE
#define PREDICT_TRUE(x)
Definition: clib.h:125
ip4_main_t
IPv4 main type.
Definition: ip4.h:107
unformat_vlib_number_by_name
uword unformat_vlib_number_by_name(unformat_input_t *input, va_list *args)
Definition: format.c:157
pg_edit_group_t::edit_function
void(* edit_function)(struct pg_main_t *pg, struct pg_stream_t *s, struct pg_edit_group_t *g, u32 *buffers, u32 n_buffers)
Definition: pg.h:75
icmp_error_strings
static char * icmp_error_strings[]
Definition: icmp4.c:44
unformat_icmp_type_and_code
static uword unformat_icmp_type_and_code(unformat_input_t *input, va_list *args)
Definition: icmp4.c:406
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
ip_csum_fold
static u16 ip_csum_fold(ip_csum_t c)
Definition: ip_packet.h:301
ip_protocol_info_t::unformat_pg_edit
unformat_function_t * unformat_pg_edit
Definition: ip.h:88
IP4_ICMP_ERROR_NEXT_DROP
@ IP4_ICMP_ERROR_NEXT_DROP
Definition: icmp4.c:229
n_left_from
n_left_from
Definition: nat44_ei_hairpinning.c:416
type
vl_api_fib_path_type_t type
Definition: fib_types.api:123
ip4_header_t::protocol
u8 protocol
Definition: ip4_packet.h:115
ip4_next_header
static void * ip4_next_header(ip4_header_t *i)
Definition: ip4_packet.h:196
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
packets
units packets
Definition: map.api:366
ip4_icmp_error_node
vlib_node_registration_t ip4_icmp_error_node
(constructor) VLIB_REGISTER_NODE (ip4_icmp_error_node)
Definition: icmp4.c:386
VLIB_REGISTER_NODE
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169