FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
decap.c
Go to the documentation of this file.
1 /*
2  * decap.c: vxlan gbp tunnel decap packet processing
3  *
4  * Copyright (c) 2018 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 
21 
22 typedef struct
23 {
31 
32 static u8 *
33 format_vxlan_gbp_rx_trace (u8 * s, va_list * args)
34 {
35  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
36  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
37  vxlan_gbp_rx_trace_t *t = va_arg (*args, vxlan_gbp_rx_trace_t *);
38 
39  if (t->tunnel_index == ~0)
40  return format (s,
41  "VXLAN_GBP decap error - tunnel for vni %d does not exist",
42  t->vni);
43  return format (s,
44  "VXLAN_GBP decap from vxlan_gbp_tunnel%d vni %d sclass %d"
45  " flags %U next %d error %d",
46  t->tunnel_index, t->vni, t->sclass,
48  t->next_index, t->error);
49 }
50 
53 {
54  u32 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
55  if (sw_if_index != (u32) ~ 0)
56  return sw_if_index;
57 
58  u32 *fib_index_by_sw_if_index = is_ip4 ?
60  sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_RX];
61 
62  return vec_elt (fib_index_by_sw_if_index, sw_if_index);
63 }
64 
66 
69  u32 fib_index, ip4_header_t * ip4_0,
70  vxlan_gbp_header_t * vxlan_gbp0)
71 {
72  /*
73  * Check unicast first since that's where most of the traffic comes from
74  * Make sure VXLAN_GBP tunnel exist according to packet SIP, DIP and VNI
75  */
77  int rv;
78 
79  key4.key[1] = (((u64) fib_index << 32) |
80  (vxlan_gbp0->vni_reserved &
81  clib_host_to_net_u32 (0xffffff00)));
82  key4.key[0] =
83  (((u64) ip4_0->dst_address.as_u32 << 32) | ip4_0->src_address.as_u32);
84 
85  if (PREDICT_FALSE (key4.key[0] != cache->key[0] ||
86  key4.key[1] != cache->key[1]))
87  {
88  rv = clib_bihash_search_inline_16_8 (&vxm->vxlan4_gbp_tunnel_by_key,
89  &key4);
90  if (PREDICT_FALSE (rv == 0))
91  {
92  *cache = key4;
93  return (pool_elt_at_index (vxm->tunnels, cache->value));
94  }
95  }
96  else
97  {
98  return (pool_elt_at_index (vxm->tunnels, cache->value));
99  }
100 
101  /* No unicast match - try multicast */
103  return (NULL);
104 
105  key4.key[0] = ip4_0->dst_address.as_u32;
106  /* Make sure mcast VXLAN_GBP tunnel exist by packet DIP and VNI */
107  rv = clib_bihash_search_inline_16_8 (&vxm->vxlan4_gbp_tunnel_by_key, &key4);
108 
109  if (PREDICT_FALSE (rv != 0))
110  return (NULL);
111 
112  return (pool_elt_at_index (vxm->tunnels, key4.value));
113 }
114 
116 
119  u32 fib_index, ip6_header_t * ip6_0,
120  vxlan_gbp_header_t * vxlan_gbp0)
121 {
122  /* Make sure VXLAN_GBP tunnel exist according to packet SIP and VNI */
123  vxlan6_gbp_tunnel_key_t key6 = {
124  .key = {
125  [0] = ip6_0->src_address.as_u64[0],
126  [1] = ip6_0->src_address.as_u64[1],
127  [2] = ((((u64) fib_index) << 32) |
128  (vxlan_gbp0->vni_reserved &
129  clib_host_to_net_u32 (0xffffff00))),
130  }
131  };
132  int rv;
133 
134  if (PREDICT_FALSE
135  (clib_bihash_key_compare_24_8 (key6.key, cache->key) == 0))
136  {
137  rv = clib_bihash_search_inline_24_8 (&vxm->vxlan6_gbp_tunnel_by_key,
138  &key6);
139  if (PREDICT_FALSE (rv != 0))
140  return NULL;
141 
142  *cache = key6;
143  }
144  vxlan_gbp_tunnel_t *t0 = pool_elt_at_index (vxm->tunnels, cache->value);
145 
146  /* Validate VXLAN_GBP tunnel SIP against packet DIP */
147  if (PREDICT_FALSE
148  (!ip6_address_is_equal (&ip6_0->dst_address, &t0->src.ip6)))
149  {
150  /* try multicast */
152  return 0;
153 
154  /* Make sure mcast VXLAN_GBP tunnel exist by packet DIP and VNI */
155  key6.key[0] = ip6_0->dst_address.as_u64[0];
156  key6.key[1] = ip6_0->dst_address.as_u64[1];
157  rv = clib_bihash_search_inline_24_8 (&vxm->vxlan6_gbp_tunnel_by_key,
158  &key6);
159  if (PREDICT_FALSE (rv != 0))
160  return 0;
161 
162  }
163 
164  return t0;
165 }
166 
169 {
170  if (VXLAN_GBP_TUNNEL_MODE_L2 == t->mode)
171  return (VXLAN_GBP_INPUT_NEXT_L2_INPUT);
172  else
173  {
174  ethernet_header_t *e0;
175  u16 type0;
176 
177  e0 = vlib_buffer_get_current (b0);
178  vlib_buffer_advance (b0, sizeof (*e0));
179  type0 = clib_net_to_host_u16 (e0->type);
180  switch (type0)
181  {
182  case ETHERNET_TYPE_IP4:
183  return (VXLAN_GBP_INPUT_NEXT_IP4_INPUT);
184  case ETHERNET_TYPE_IP6:
185  return (VXLAN_GBP_INPUT_NEXT_IP6_INPUT);
186  }
187  }
188  return (VXLAN_GBP_INPUT_NEXT_DROP);
189 }
190 
193  vlib_node_runtime_t * node,
194  vlib_frame_t * from_frame, u8 is_ip4)
195 {
197  vnet_main_t *vnm = vxm->vnet_main;
199  vlib_combined_counter_main_t *rx_counter =
201  vlib_combined_counter_main_t *drop_counter =
203  last_tunnel_cache4 last4;
204  last_tunnel_cache6 last6;
205  u32 pkts_decapsulated = 0;
206  u32 thread_index = vlib_get_thread_index ();
207 
208  if (is_ip4)
209  clib_memset (&last4, 0xff, sizeof last4);
210  else
211  clib_memset (&last6, 0xff, sizeof last6);
212 
213  u32 next_index = node->cached_next_index;
214 
215  u32 *from = vlib_frame_vector_args (from_frame);
216  u32 n_left_from = from_frame->n_vectors;
217 
218  while (n_left_from > 0)
219  {
220  u32 *to_next, n_left_to_next;
221  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
222 
223  while (n_left_from >= 4 && n_left_to_next >= 2)
224  {
225  /* Prefetch next iteration. */
226  {
227  vlib_buffer_t *p2, *p3;
228 
229  p2 = vlib_get_buffer (vm, from[2]);
230  p3 = vlib_get_buffer (vm, from[3]);
231 
232  vlib_prefetch_buffer_header (p2, LOAD);
233  vlib_prefetch_buffer_header (p3, LOAD);
234 
235  CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
236  CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
237  }
238 
239  u32 bi0 = to_next[0] = from[0];
240  u32 bi1 = to_next[1] = from[1];
241  from += 2;
242  to_next += 2;
243  n_left_to_next -= 2;
244  n_left_from -= 2;
245 
246  vlib_buffer_t *b0, *b1;
247  b0 = vlib_get_buffer (vm, bi0);
248  b1 = vlib_get_buffer (vm, bi1);
249 
250  /* udp leaves current_data pointing at the vxlan_gbp header */
251  void *cur0 = vlib_buffer_get_current (b0);
252  void *cur1 = vlib_buffer_get_current (b1);
253  vxlan_gbp_header_t *vxlan_gbp0 = cur0;
254  vxlan_gbp_header_t *vxlan_gbp1 = cur1;
255 
256  ip4_header_t *ip4_0, *ip4_1;
257  ip6_header_t *ip6_0, *ip6_1;
258  if (is_ip4)
259  {
260  ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t);
261  ip4_1 = cur1 - sizeof (udp_header_t) - sizeof (ip4_header_t);
262  }
263  else
264  {
265  ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t);
266  ip6_1 = cur1 - sizeof (udp_header_t) - sizeof (ip6_header_t);
267  }
268 
269  u32 fi0 = buf_fib_index (b0, is_ip4);
270  u32 fi1 = buf_fib_index (b1, is_ip4);
271 
272  vxlan_gbp_tunnel_t *t0, *t1;
273  if (is_ip4)
274  {
275  t0 =
276  vxlan4_gbp_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan_gbp0);
277  t1 =
278  vxlan4_gbp_find_tunnel (vxm, &last4, fi1, ip4_1, vxlan_gbp1);
279  }
280  else
281  {
282  t0 =
283  vxlan6_gbp_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan_gbp0);
284  t1 =
285  vxlan6_gbp_find_tunnel (vxm, &last6, fi1, ip6_1, vxlan_gbp1);
286  }
287 
288  u32 len0 = vlib_buffer_length_in_chain (vm, b0);
289  u32 len1 = vlib_buffer_length_in_chain (vm, b1);
290 
291  vxlan_gbp_input_next_t next0, next1;
292  u8 error0 = 0, error1 = 0;
293  u8 flags0 = vxlan_gbp_get_flags (vxlan_gbp0);
294  u8 flags1 = vxlan_gbp_get_flags (vxlan_gbp1);
295  /* Required to make the l2 tag push / pop code work on l2 subifs */
296  /* pop vxlan_gbp */
297  vlib_buffer_advance (b0, sizeof *vxlan_gbp0);
298  vlib_buffer_advance (b1, sizeof *vxlan_gbp1);
299 
300  u8 i_and_g0 = ((flags0 & VXLAN_GBP_FLAGS_GI) == VXLAN_GBP_FLAGS_GI);
301  u8 i_and_g1 = ((flags1 & VXLAN_GBP_FLAGS_GI) == VXLAN_GBP_FLAGS_GI);
302 
303  /* Validate VXLAN_GBP tunnel encap-fib index against packet */
304  if (PREDICT_FALSE (t0 == NULL || !i_and_g0))
305  {
306  if (t0 != NULL && !i_and_g0)
307  {
308  error0 = VXLAN_GBP_ERROR_BAD_FLAGS;
310  (drop_counter, thread_index, t0->sw_if_index, 1, len0);
311  next0 = VXLAN_GBP_INPUT_NEXT_DROP;
312  }
313  else
314  {
315  error0 = VXLAN_GBP_ERROR_NO_SUCH_TUNNEL;
316  next0 = VXLAN_GBP_INPUT_NEXT_PUNT;
317  if (is_ip4)
318  b0->punt_reason =
320  else
321  b0->punt_reason =
323  }
324  b0->error = node->errors[error0];
325  }
326  else
327  {
328  next0 = vxlan_gbp_tunnel_get_next (t0, b0);
329 
330  /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */
331  vnet_buffer (b0)->sw_if_index[VLIB_RX] = t0->sw_if_index;
333  (rx_counter, thread_index, t0->sw_if_index, 1, len0);
334  pkts_decapsulated++;
335  }
336 
337  vnet_buffer2 (b0)->gbp.flags = (vxlan_gbp_get_gpflags (vxlan_gbp0) |
338  VXLAN_GBP_GPFLAGS_R);
339  vnet_buffer2 (b0)->gbp.sclass = vxlan_gbp_get_sclass (vxlan_gbp0);
340 
341 
342  if (PREDICT_FALSE (t1 == NULL || !i_and_g1))
343  {
344  if (t1 != NULL && !i_and_g1)
345  {
346  error1 = VXLAN_GBP_ERROR_BAD_FLAGS;
348  (drop_counter, thread_index, t1->sw_if_index, 1, len1);
349  next1 = VXLAN_GBP_INPUT_NEXT_DROP;
350  }
351  else
352  {
353  error1 = VXLAN_GBP_ERROR_NO_SUCH_TUNNEL;
354  next1 = VXLAN_GBP_INPUT_NEXT_PUNT;
355  if (is_ip4)
356  b1->punt_reason =
358  else
359  b1->punt_reason =
361  }
362  b1->error = node->errors[error1];
363  }
364  else
365  {
366  next1 = vxlan_gbp_tunnel_get_next (t1, b1);
367 
368  /* Set packet input sw_if_index to unicast VXLAN_GBP tunnel for learning */
369  vnet_buffer (b1)->sw_if_index[VLIB_RX] = t1->sw_if_index;
370  pkts_decapsulated++;
371 
373  (rx_counter, thread_index, t1->sw_if_index, 1, len1);
374  }
375 
376  vnet_buffer2 (b1)->gbp.flags = (vxlan_gbp_get_gpflags (vxlan_gbp1) |
377  VXLAN_GBP_GPFLAGS_R);
378 
379  vnet_buffer2 (b1)->gbp.sclass = vxlan_gbp_get_sclass (vxlan_gbp1);
380 
381  vnet_update_l2_len (b0);
382  vnet_update_l2_len (b1);
383 
384  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
385  {
387  vlib_add_trace (vm, node, b0, sizeof (*tr));
388  tr->next_index = next0;
389  tr->error = error0;
390  tr->tunnel_index = t0 == 0 ? ~0 : t0 - vxm->tunnels;
391  tr->vni = vxlan_gbp_get_vni (vxlan_gbp0);
392  tr->sclass = vxlan_gbp_get_sclass (vxlan_gbp0);
393  tr->flags = vxlan_gbp_get_gpflags (vxlan_gbp0);
394  }
395  if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED))
396  {
398  vlib_add_trace (vm, node, b1, sizeof (*tr));
399  tr->next_index = next1;
400  tr->error = error1;
401  tr->tunnel_index = t1 == 0 ? ~0 : t1 - vxm->tunnels;
402  tr->vni = vxlan_gbp_get_vni (vxlan_gbp1);
403  tr->sclass = vxlan_gbp_get_sclass (vxlan_gbp1);
404  tr->flags = vxlan_gbp_get_gpflags (vxlan_gbp1);
405  }
406 
407  vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
408  to_next, n_left_to_next,
409  bi0, bi1, next0, next1);
410  }
411 
412  while (n_left_from > 0 && n_left_to_next > 0)
413  {
414  u32 bi0 = to_next[0] = from[0];
415  from += 1;
416  to_next += 1;
417  n_left_from -= 1;
418  n_left_to_next -= 1;
419 
420  vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
421 
422  /* udp leaves current_data pointing at the vxlan_gbp header */
423  void *cur0 = vlib_buffer_get_current (b0);
424  vxlan_gbp_header_t *vxlan_gbp0 = cur0;
425  ip4_header_t *ip4_0;
426  ip6_header_t *ip6_0;
427  if (is_ip4)
428  ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t);
429  else
430  ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t);
431 
432  u32 fi0 = buf_fib_index (b0, is_ip4);
433 
434  vxlan_gbp_tunnel_t *t0;
435  if (is_ip4)
436  t0 = vxlan4_gbp_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan_gbp0);
437  else
438  t0 = vxlan6_gbp_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan_gbp0);
439 
440  uword len0 = vlib_buffer_length_in_chain (vm, b0);
441 
443  u8 error0 = 0;
444  u8 flags0 = vxlan_gbp_get_flags (vxlan_gbp0);
445 
446  /* pop (ip, udp, vxlan_gbp) */
447  vlib_buffer_advance (b0, sizeof (*vxlan_gbp0));
448 
449  u8 i_and_g0 = ((flags0 & VXLAN_GBP_FLAGS_GI) == VXLAN_GBP_FLAGS_GI);
450 
451  /* Validate VXLAN_GBP tunnel encap-fib index against packet */
452  if (PREDICT_FALSE (t0 == NULL || !i_and_g0))
453  {
454  if (t0 != NULL && !i_and_g0)
455  {
456  error0 = VXLAN_GBP_ERROR_BAD_FLAGS;
458  (drop_counter, thread_index, t0->sw_if_index, 1, len0);
459  next0 = VXLAN_GBP_INPUT_NEXT_DROP;
460  }
461  else
462  {
463  error0 = VXLAN_GBP_ERROR_NO_SUCH_TUNNEL;
464  next0 = VXLAN_GBP_INPUT_NEXT_PUNT;
465  if (is_ip4)
466  b0->punt_reason =
468  else
469  b0->punt_reason =
471  }
472  b0->error = node->errors[error0];
473  }
474  else
475  {
476  next0 = vxlan_gbp_tunnel_get_next (t0, b0);
477  /* Set packet input sw_if_index to unicast VXLAN_GBP tunnel for learning */
478  vnet_buffer (b0)->sw_if_index[VLIB_RX] = t0->sw_if_index;
479  pkts_decapsulated++;
480 
482  (rx_counter, thread_index, t0->sw_if_index, 1, len0);
483  }
484  vnet_buffer2 (b0)->gbp.flags = (vxlan_gbp_get_gpflags (vxlan_gbp0) |
485  VXLAN_GBP_GPFLAGS_R);
486 
487  vnet_buffer2 (b0)->gbp.sclass = vxlan_gbp_get_sclass (vxlan_gbp0);
488 
489  /* Required to make the l2 tag push / pop code work on l2 subifs */
490  vnet_update_l2_len (b0);
491 
492  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
493  {
495  = vlib_add_trace (vm, node, b0, sizeof (*tr));
496  tr->next_index = next0;
497  tr->error = error0;
498  tr->tunnel_index = t0 == 0 ? ~0 : t0 - vxm->tunnels;
499  tr->vni = vxlan_gbp_get_vni (vxlan_gbp0);
500  tr->sclass = vxlan_gbp_get_sclass (vxlan_gbp0);
501  tr->flags = vxlan_gbp_get_gpflags (vxlan_gbp0);
502  }
503  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
504  to_next, n_left_to_next,
505  bi0, next0);
506  }
507 
508  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
509  }
510  /* Do we still need this now that tunnel tx stats is kept? */
511  u32 node_idx =
512  is_ip4 ? vxlan4_gbp_input_node.index : vxlan6_gbp_input_node.index;
513  vlib_node_increment_counter (vm, node_idx, VXLAN_GBP_ERROR_DECAPSULATED,
514  pkts_decapsulated);
515 
516  return from_frame->n_vectors;
517 }
518 
520  vlib_node_runtime_t * node,
521  vlib_frame_t * from_frame)
522 {
523  return vxlan_gbp_input (vm, node, from_frame, /* is_ip4 */ 1);
524 }
525 
527  vlib_node_runtime_t * node,
528  vlib_frame_t * from_frame)
529 {
530  return vxlan_gbp_input (vm, node, from_frame, /* is_ip4 */ 0);
531 }
532 
533 static char *vxlan_gbp_error_strings[] = {
534 #define vxlan_gbp_error(n,s) s,
536 #undef vxlan_gbp_error
537 #undef _
538 };
539 
540 /* *INDENT-OFF* */
542 {
543  .name = "vxlan4-gbp-input",
544  .vector_size = sizeof (u32),
545  .n_errors = VXLAN_GBP_N_ERROR,
546  .error_strings = vxlan_gbp_error_strings,
547  .n_next_nodes = VXLAN_GBP_INPUT_N_NEXT,
548  .format_trace = format_vxlan_gbp_rx_trace,
549  .next_nodes = {
550 #define _(s,n) [VXLAN_GBP_INPUT_NEXT_##s] = n,
552 #undef _
553  },
554 };
555 
557 {
558  .name = "vxlan6-gbp-input",
559  .vector_size = sizeof (u32),
560  .n_errors = VXLAN_GBP_N_ERROR,
561  .error_strings = vxlan_gbp_error_strings,
562  .n_next_nodes = VXLAN_GBP_INPUT_N_NEXT,
563  .next_nodes = {
564 #define _(s,n) [VXLAN_GBP_INPUT_NEXT_##s] = n,
566 #undef _
567  },
568  .format_trace = format_vxlan_gbp_rx_trace,
569 };
570 /* *INDENT-ON* */
571 
572 typedef enum
573 {
578 
581  vlib_node_runtime_t * node,
582  vlib_frame_t * frame, u32 is_ip4)
583 {
585  u32 *from, *to_next, n_left_from, n_left_to_next, next_index;
586  vlib_node_runtime_t *error_node =
588  ip4_address_t addr4; /* last IPv4 address matching a local VTEP address */
589  ip6_address_t addr6; /* last IPv6 address matching a local VTEP address */
590 
591  from = vlib_frame_vector_args (frame);
592  n_left_from = frame->n_vectors;
593  next_index = node->cached_next_index;
594 
595  if (node->flags & VLIB_NODE_FLAG_TRACE)
596  ip4_forward_next_trace (vm, node, frame, VLIB_TX);
597 
598  if (is_ip4)
599  addr4.data_u32 = ~0;
600  else
601  ip6_address_set_zero (&addr6);
602 
603  while (n_left_from > 0)
604  {
605  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
606 
607  while (n_left_from >= 4 && n_left_to_next >= 2)
608  {
609  vlib_buffer_t *b0, *b1;
610  ip4_header_t *ip40, *ip41;
611  ip6_header_t *ip60, *ip61;
612  udp_header_t *udp0, *udp1;
613  u32 bi0, ip_len0, udp_len0, flags0, next0;
614  u32 bi1, ip_len1, udp_len1, flags1, next1;
615  i32 len_diff0, len_diff1;
616  u8 error0, good_udp0, proto0;
617  u8 error1, good_udp1, proto1;
618 
619  /* Prefetch next iteration. */
620  {
621  vlib_buffer_t *p2, *p3;
622 
623  p2 = vlib_get_buffer (vm, from[2]);
624  p3 = vlib_get_buffer (vm, from[3]);
625 
626  vlib_prefetch_buffer_header (p2, LOAD);
627  vlib_prefetch_buffer_header (p3, LOAD);
628 
629  CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
630  CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
631  }
632 
633  bi0 = to_next[0] = from[0];
634  bi1 = to_next[1] = from[1];
635  from += 2;
636  n_left_from -= 2;
637  to_next += 2;
638  n_left_to_next -= 2;
639 
640  b0 = vlib_get_buffer (vm, bi0);
641  b1 = vlib_get_buffer (vm, bi1);
642  if (is_ip4)
643  {
644  ip40 = vlib_buffer_get_current (b0);
645  ip41 = vlib_buffer_get_current (b1);
646  }
647  else
648  {
649  ip60 = vlib_buffer_get_current (b0);
650  ip61 = vlib_buffer_get_current (b1);
651  }
652 
653  /* Setup packet for next IP feature */
654  vnet_feature_next (&next0, b0);
655  vnet_feature_next (&next1, b1);
656 
657  if (is_ip4)
658  {
659  /* Treat IP frag packets as "experimental" protocol for now
660  until support of IP frag reassembly is implemented */
661  proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol;
662  proto1 = ip4_is_fragment (ip41) ? 0xfe : ip41->protocol;
663  }
664  else
665  {
666  proto0 = ip60->protocol;
667  proto1 = ip61->protocol;
668  }
669 
670  /* Process packet 0 */
671  if (proto0 != IP_PROTOCOL_UDP)
672  goto exit0; /* not UDP packet */
673 
674  if (is_ip4)
675  udp0 = ip4_next_header (ip40);
676  else
677  udp0 = ip6_next_header (ip60);
678 
679  if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan_gbp))
680  goto exit0; /* not VXLAN_GBP packet */
681 
682  /* Validate DIP against VTEPs */
683  if (is_ip4)
684  {
685  if (addr4.as_u32 != ip40->dst_address.as_u32)
686  {
687  if (!hash_get (vxm->vtep4, ip40->dst_address.as_u32))
688  goto exit0; /* no local VTEP for VXLAN_GBP packet */
689  addr4 = ip40->dst_address;
690  }
691  }
692  else
693  {
694  if (!ip6_address_is_equal (&addr6, &ip60->dst_address))
695  {
696  if (!hash_get_mem (vxm->vtep6, &ip60->dst_address))
697  goto exit0; /* no local VTEP for VXLAN_GBP packet */
698  addr6 = ip60->dst_address;
699  }
700  }
701 
702  flags0 = b0->flags;
703  good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
704 
705  /* Don't verify UDP checksum for packets with explicit zero checksum. */
706  good_udp0 |= udp0->checksum == 0;
707 
708  /* Verify UDP length */
709  if (is_ip4)
710  ip_len0 = clib_net_to_host_u16 (ip40->length);
711  else
712  ip_len0 = clib_net_to_host_u16 (ip60->payload_length);
713  udp_len0 = clib_net_to_host_u16 (udp0->length);
714  len_diff0 = ip_len0 - udp_len0;
715 
716  /* Verify UDP checksum */
717  if (PREDICT_FALSE (!good_udp0))
718  {
719  if ((flags0 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
720  {
721  if (is_ip4)
722  flags0 = ip4_tcp_udp_validate_checksum (vm, b0);
723  else
724  flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
725  good_udp0 =
726  (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
727  }
728  }
729 
730  if (is_ip4)
731  {
732  error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM;
733  error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH;
734  }
735  else
736  {
737  error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM;
738  error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH;
739  }
740 
741  next0 = error0 ?
744  b0->error = error0 ? error_node->errors[error0] : 0;
745 
746  /* vxlan-gbp-input node expect current at VXLAN_GBP header */
747  if (is_ip4)
749  sizeof (ip4_header_t) +
750  sizeof (udp_header_t));
751  else
753  sizeof (ip6_header_t) +
754  sizeof (udp_header_t));
755 
756  exit0:
757  /* Process packet 1 */
758  if (proto1 != IP_PROTOCOL_UDP)
759  goto exit1; /* not UDP packet */
760 
761  if (is_ip4)
762  udp1 = ip4_next_header (ip41);
763  else
764  udp1 = ip6_next_header (ip61);
765 
766  if (udp1->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan_gbp))
767  goto exit1; /* not VXLAN_GBP packet */
768 
769  /* Validate DIP against VTEPs */
770  if (is_ip4)
771  {
772  if (addr4.as_u32 != ip41->dst_address.as_u32)
773  {
774  if (!hash_get (vxm->vtep4, ip41->dst_address.as_u32))
775  goto exit1; /* no local VTEP for VXLAN_GBP packet */
776  addr4 = ip41->dst_address;
777  }
778  }
779  else
780  {
781  if (!ip6_address_is_equal (&addr6, &ip61->dst_address))
782  {
783  if (!hash_get_mem (vxm->vtep6, &ip61->dst_address))
784  goto exit1; /* no local VTEP for VXLAN_GBP packet */
785  addr6 = ip61->dst_address;
786  }
787  }
788 
789  flags1 = b1->flags;
790  good_udp1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
791 
792  /* Don't verify UDP checksum for packets with explicit zero checksum. */
793  good_udp1 |= udp1->checksum == 0;
794 
795  /* Verify UDP length */
796  if (is_ip4)
797  ip_len1 = clib_net_to_host_u16 (ip41->length);
798  else
799  ip_len1 = clib_net_to_host_u16 (ip61->payload_length);
800  udp_len1 = clib_net_to_host_u16 (udp1->length);
801  len_diff1 = ip_len1 - udp_len1;
802 
803  /* Verify UDP checksum */
804  if (PREDICT_FALSE (!good_udp1))
805  {
806  if ((flags1 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
807  {
808  if (is_ip4)
809  flags1 = ip4_tcp_udp_validate_checksum (vm, b1);
810  else
811  flags1 = ip6_tcp_udp_icmp_validate_checksum (vm, b1);
812  good_udp1 =
813  (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
814  }
815  }
816 
817  if (is_ip4)
818  {
819  error1 = good_udp1 ? 0 : IP4_ERROR_UDP_CHECKSUM;
820  error1 = (len_diff1 >= 0) ? error1 : IP4_ERROR_UDP_LENGTH;
821  }
822  else
823  {
824  error1 = good_udp1 ? 0 : IP6_ERROR_UDP_CHECKSUM;
825  error1 = (len_diff1 >= 0) ? error1 : IP6_ERROR_UDP_LENGTH;
826  }
827 
828  next1 = error1 ?
831  b1->error = error1 ? error_node->errors[error1] : 0;
832 
833  /* vxlan_gbp-input node expect current at VXLAN_GBP header */
834  if (is_ip4)
836  sizeof (ip4_header_t) +
837  sizeof (udp_header_t));
838  else
840  sizeof (ip6_header_t) +
841  sizeof (udp_header_t));
842 
843  exit1:
844  vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
845  to_next, n_left_to_next,
846  bi0, bi1, next0, next1);
847  }
848 
849  while (n_left_from > 0 && n_left_to_next > 0)
850  {
851  vlib_buffer_t *b0;
852  ip4_header_t *ip40;
853  ip6_header_t *ip60;
854  udp_header_t *udp0;
855  u32 bi0, ip_len0, udp_len0, flags0, next0;
856  i32 len_diff0;
857  u8 error0, good_udp0, proto0;
858 
859  bi0 = to_next[0] = from[0];
860  from += 1;
861  n_left_from -= 1;
862  to_next += 1;
863  n_left_to_next -= 1;
864 
865  b0 = vlib_get_buffer (vm, bi0);
866  if (is_ip4)
867  ip40 = vlib_buffer_get_current (b0);
868  else
869  ip60 = vlib_buffer_get_current (b0);
870 
871  /* Setup packet for next IP feature */
872  vnet_feature_next (&next0, b0);
873 
874  if (is_ip4)
875  /* Treat IP4 frag packets as "experimental" protocol for now
876  until support of IP frag reassembly is implemented */
877  proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol;
878  else
879  proto0 = ip60->protocol;
880 
881  if (proto0 != IP_PROTOCOL_UDP)
882  goto exit; /* not UDP packet */
883 
884  if (is_ip4)
885  udp0 = ip4_next_header (ip40);
886  else
887  udp0 = ip6_next_header (ip60);
888 
889  if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan_gbp))
890  goto exit; /* not VXLAN_GBP packet */
891 
892  /* Validate DIP against VTEPs */
893  if (is_ip4)
894  {
895  if (addr4.as_u32 != ip40->dst_address.as_u32)
896  {
897  if (!hash_get (vxm->vtep4, ip40->dst_address.as_u32))
898  goto exit; /* no local VTEP for VXLAN_GBP packet */
899  addr4 = ip40->dst_address;
900  }
901  }
902  else
903  {
904  if (!ip6_address_is_equal (&addr6, &ip60->dst_address))
905  {
906  if (!hash_get_mem (vxm->vtep6, &ip60->dst_address))
907  goto exit; /* no local VTEP for VXLAN_GBP packet */
908  addr6 = ip60->dst_address;
909  }
910  }
911 
912  flags0 = b0->flags;
913  good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
914 
915  /* Don't verify UDP checksum for packets with explicit zero checksum. */
916  good_udp0 |= udp0->checksum == 0;
917 
918  /* Verify UDP length */
919  if (is_ip4)
920  ip_len0 = clib_net_to_host_u16 (ip40->length);
921  else
922  ip_len0 = clib_net_to_host_u16 (ip60->payload_length);
923  udp_len0 = clib_net_to_host_u16 (udp0->length);
924  len_diff0 = ip_len0 - udp_len0;
925 
926  /* Verify UDP checksum */
927  if (PREDICT_FALSE (!good_udp0))
928  {
929  if ((flags0 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0)
930  {
931  if (is_ip4)
932  flags0 = ip4_tcp_udp_validate_checksum (vm, b0);
933  else
934  flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
935  good_udp0 =
936  (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
937  }
938  }
939 
940  if (is_ip4)
941  {
942  error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM;
943  error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH;
944  }
945  else
946  {
947  error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM;
948  error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH;
949  }
950 
951  next0 = error0 ?
954  b0->error = error0 ? error_node->errors[error0] : 0;
955 
956  /* vxlan_gbp-input node expect current at VXLAN_GBP header */
957  if (is_ip4)
959  sizeof (ip4_header_t) +
960  sizeof (udp_header_t));
961  else
963  sizeof (ip6_header_t) +
964  sizeof (udp_header_t));
965 
966  exit:
967  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
968  to_next, n_left_to_next,
969  bi0, next0);
970  }
971 
972  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
973  }
974 
975  return frame->n_vectors;
976 }
977 
979  vlib_node_runtime_t * node,
980  vlib_frame_t * frame)
981 {
982  return ip_vxlan_gbp_bypass_inline (vm, node, frame, /* is_ip4 */ 1);
983 }
984 
985 /* *INDENT-OFF* */
987 {
988  .name = "ip4-vxlan-gbp-bypass",
989  .vector_size = sizeof (u32),
990  .n_next_nodes = IP_VXLAN_GBP_BYPASS_N_NEXT,
991  .next_nodes = {
992  [IP_VXLAN_GBP_BYPASS_NEXT_DROP] = "error-drop",
993  [IP_VXLAN_GBP_BYPASS_NEXT_VXLAN_GBP] = "vxlan4-gbp-input",
994  },
995  .format_buffer = format_ip4_header,
996  .format_trace = format_ip4_forward_next_trace,
997 };
998 /* *INDENT-ON* */
999 
1000 #ifndef CLIB_MARCH_VARIANT
1001 /* Dummy init function to get us linked in. */
1002 clib_error_t *
1004 {
1005  return 0;
1006 }
1007 
1009 #endif /* CLIB_MARCH_VARIANT */
1010 
1012  vlib_node_runtime_t * node,
1013  vlib_frame_t * frame)
1014 {
1015  return ip_vxlan_gbp_bypass_inline (vm, node, frame, /* is_ip4 */ 0);
1016 }
1017 
1018 /* *INDENT-OFF* */
1020 {
1021  .name = "ip6-vxlan-gbp-bypass",
1022  .vector_size = sizeof (u32),
1023  .n_next_nodes = IP_VXLAN_GBP_BYPASS_N_NEXT,
1024  .next_nodes = {
1025  [IP_VXLAN_GBP_BYPASS_NEXT_DROP] = "error-drop",
1026  [IP_VXLAN_GBP_BYPASS_NEXT_VXLAN_GBP] = "vxlan6-gbp-input",
1027  },
1028  .format_buffer = format_ip6_header,
1029  .format_trace = format_ip6_forward_next_trace,
1030 };
1031 /* *INDENT-ON* */
1032 
1033 #ifndef CLIB_MARCH_VARIANT
1034 /* Dummy init function to get us linked in. */
1035 clib_error_t *
1037 {
1038  return 0;
1039 }
1040 
1042 #endif /* CLIB_MARCH_VARIANT */
1043 
1044 /*
1045  * fd.io coding-style-patch-verification: ON
1046  *
1047  * Local Variables:
1048  * eval: (c-set-style "gnu")
1049  * End:
1050  */
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
#define CLIB_UNUSED(x)
Definition: clib.h:82
clib_bihash_24_8_t vxlan6_gbp_tunnel_by_key
Definition: vxlan_gbp.h:170
static uword vxlan_gbp_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, u8 is_ip4)
Definition: decap.c:192
static void vlib_increment_combined_counter(vlib_combined_counter_main_t *cm, u32 thread_index, u32 index, u64 n_packets, u64 n_bytes)
Increment a combined counter.
Definition: counter.h:220
ip4_address_t src_address
Definition: ip4_packet.h:170
#define vnet_buffer2(b)
Definition: buffer.h:420
static vxlan_gbp_flags_t vxlan_gbp_get_flags(vxlan_gbp_header_t *h)
vnet_interface_main_t interface_main
Definition: vnet.h:56
format_function_t format_ip4_header
Definition: format.h:83
#define PREDICT_TRUE(x)
Definition: clib.h:112
u64 as_u64[2]
Definition: ip6_packet.h:51
unsigned long u64
Definition: types.h:89
vxlan_gbp_input_next_t
Definition: vxlan_gbp.h:140
#define NULL
Definition: clib.h:58
static u32 buf_fib_index(vlib_buffer_t *b, u32 is_ip4)
Definition: decap.c:52
vlib_node_registration_t ip4_vxlan_gbp_bypass_node
(constructor) VLIB_REGISTER_NODE (ip4_vxlan_gbp_bypass_node)
Definition: decap.c:986
u8 data[0]
Packet data.
Definition: buffer.h:181
#define foreach_vxlan_gbp_input_next
Definition: vxlan_gbp.h:133
vxlan_gbp_main_t vxlan_gbp_main
Definition: vxlan_gbp.c:34
static vxlan_gbp_tunnel_t * vxlan6_gbp_find_tunnel(vxlan_gbp_main_t *vxm, last_tunnel_cache6 *cache, u32 fib_index, ip6_header_t *ip6_0, vxlan_gbp_header_t *vxlan_gbp0)
Definition: decap.c:118
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:121
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
#define VLIB_NODE_FN(node)
Definition: node.h:201
static uword ip4_address_is_multicast(const ip4_address_t *a)
Definition: ip4_packet.h:318
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:468
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:366
ip6_address_t src_address
Definition: ip6_packet.h:383
unsigned char u8
Definition: types.h:56
static int ip4_is_fragment(const ip4_header_t *i)
Definition: ip4_packet.h:213
static int clib_bihash_key_compare_24_8(u64 *a, u64 *b)
Definition: bihash_24_8.h:69
vl_api_interface_index_t sw_if_index
Definition: gre.api:50
static u8 * format_vxlan_gbp_rx_trace(u8 *s, va_list *args)
Definition: decap.c:33
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
#define always_inline
Definition: clib.h:98
ip4_address_t dst_address
Definition: ip4_packet.h:170
u8 * format_vxlan_gbp_header_gpflags(u8 *s, va_list *args)
vlib_combined_counter_main_t * combined_sw_if_counters
Definition: interface.h:842
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:203
static void * ip4_next_header(ip4_header_t *i)
Definition: ip4_packet.h:241
unsigned int u32
Definition: types.h:88
static char * vxlan_gbp_error_strings[]
Definition: decap.c:533
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:136
static vxlan_gbp_gpflags_t vxlan_gbp_get_gpflags(vxlan_gbp_header_t *h)
#define hash_get(h, key)
Definition: hash.h:249
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
vlib_punt_reason_t punt_no_such_tunnel[FIB_PROTOCOL_IP_MAX]
Punt reasons for no such tunnel.
Definition: vxlan_gbp.h:196
vlib_node_registration_t ip4_input_node
Global ip4 input node.
Definition: ip4_input.c:317
clib_bihash_16_8_t vxlan4_gbp_tunnel_by_key
Definition: vxlan_gbp.h:169
static uword ip_vxlan_gbp_bypass_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, u32 is_ip4)
Definition: decap.c:580
unsigned short u16
Definition: types.h:57
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:229
static vxlan_gbp_input_next_t vxlan_gbp_tunnel_get_next(const vxlan_gbp_tunnel_t *t, vlib_buffer_t *b0)
Definition: decap.c:168
ip_vxlan_gbp_bypass_next_t
Definition: decap.c:572
#define PREDICT_FALSE(x)
Definition: clib.h:111
u32 ip4_tcp_udp_validate_checksum(vlib_main_t *vm, vlib_buffer_t *p0)
Definition: ip4_forward.c:1217
#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
vxlan4_tunnel_key_t last_tunnel_cache4
Definition: decap.c:63
clib_error_t * ip6_vxlan_gbp_bypass_init(vlib_main_t *vm)
Definition: decap.c:1036
#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:218
#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:338
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1150
u32 punt_reason
Definition: buffer.h:149
#define VXLAN_GBP_FLAGS_GI
vlib_node_registration_t vxlan4_gbp_input_node
(constructor) VLIB_REGISTER_NODE (vxlan4_gbp_input_node)
Definition: decap.c:541
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
static u16 vxlan_gbp_get_sclass(vxlan_gbp_header_t *h)
u16 n_vectors
Definition: node.h:395
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:213
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
vlib_main_t * vm
Definition: buffer.c:312
static void ip6_address_set_zero(ip6_address_t *a)
Definition: ip6_packet.h:276
static_always_inline void vnet_feature_next(u32 *next0, vlib_buffer_t *b0)
Definition: feature.h:295
static u32 vxlan_gbp_get_vni(vxlan_gbp_header_t *h)
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
Definition: node_funcs.h:89
vlib_node_registration_t vxlan6_gbp_input_node
(constructor) VLIB_REGISTER_NODE (vxlan6_gbp_input_node)
Definition: decap.c:556
vxlan6_tunnel_key_t last_tunnel_cache6
Definition: decap.c:134
clib_error_t * ip4_vxlan_gbp_bypass_init(vlib_main_t *vm)
Definition: decap.c:1003
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:458
static void * ip6_next_header(ip6_header_t *i)
Definition: ip6_packet.h:410
signed int i32
Definition: types.h:77
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:513
ip6_main_t ip6_main
Definition: ip6_forward.c:2671
static vxlan_gbp_tunnel_t * vxlan4_gbp_find_tunnel(vxlan_gbp_main_t *vxm, last_tunnel_cache4 *cache, u32 fib_index, ip4_header_t *ip4_0, vxlan_gbp_header_t *vxlan_gbp0)
Definition: decap.c:68
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:248
format_function_t format_ip6_header
Definition: format.h:97
static uword ip6_address_is_equal(const ip6_address_t *a, const ip6_address_t *b)
Definition: ip6_packet.h:240
static uword ip6_address_is_multicast(const ip6_address_t *a)
Definition: ip6_packet.h:187
ip46_address_t src
Definition: vxlan_gbp.h:85
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
#define vec_elt(v, i)
Get vector value at index i.
Definition: defs.h:47
vlib_node_registration_t ip6_vxlan_gbp_bypass_node
(constructor) VLIB_REGISTER_NODE (ip6_vxlan_gbp_bypass_node)
Definition: decap.c:1019
u16 payload_length
Definition: ip6_packet.h:374
u32 ip6_tcp_udp_icmp_validate_checksum(vlib_main_t *vm, vlib_buffer_t *p0)
Definition: ip6_forward.c:1004
static void vnet_update_l2_len(vlib_buffer_t *b)
Definition: l2_input.h:235
void ip4_forward_next_trace(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, vlib_rx_or_tx_t which_adj_index)
Definition: ip4_forward.c:1056
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
u8 * format_ip4_forward_next_trace(u8 *s, va_list *args)
Definition: ip4_forward.c:1006
A collection of combined counters.
Definition: counter.h:188
vxlan_gbp_tunnel_t * tunnels
Definition: vxlan_gbp.h:166
#define hash_get_mem(h, key)
Definition: hash.h:269
#define vnet_buffer(b)
Definition: buffer.h:361
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:921
u16 flags
Copy of main node flags.
Definition: node.h:507
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:301
vxlan_gbp_tunnel_mode_t mode
Tunnel mode.
Definition: vxlan_gbp.h:105
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
u32 * fib_index_by_sw_if_index
Definition: ip6.h:194
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85
Definition: defs.h:46
ip6_address_t dst_address
Definition: ip6_packet.h:383
vnet_main_t * vnet_main
Definition: vxlan_gbp.h:188
u8 * format_ip6_forward_next_trace(u8 *s, va_list *args)
Definition: ip6_forward.c:762