FD.io VPP  v19.04.2-12-g66b1689
Vector Packet Processing
node.c
Go to the documentation of this file.
1 /*
2  * node.c: gre packet processing
3  *
4  * Copyright (c) 2012 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/gre/gre.h>
21 #include <vnet/mpls/mpls.h>
22 #include <vppinfra/sparse_vec.h>
23 
24 #define foreach_gre_input_next \
25 _(PUNT, "error-punt") \
26 _(DROP, "error-drop") \
27 _(ETHERNET_INPUT, "ethernet-input") \
28 _(IP4_INPUT, "ip4-input") \
29 _(IP6_INPUT, "ip6-input") \
30 _(MPLS_INPUT, "mpls-input")
31 
32 typedef enum
33 {
34 #define _(s,n) GRE_INPUT_NEXT_##s,
36 #undef _
39 
40 typedef struct
41 {
44  ip46_address_t src;
45  ip46_address_t dst;
47 
48 extern u8 *format_gre_rx_trace (u8 * s, va_list * args);
49 
50 #ifndef CLIB_MARCH_VARIANT
51 u8 *
52 format_gre_rx_trace (u8 * s, va_list * args)
53 {
54  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
55  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
56  gre_rx_trace_t *t = va_arg (*args, gre_rx_trace_t *);
57 
58  s = format (s, "GRE: tunnel %d len %d src %U dst %U",
59  t->tunnel_id, clib_net_to_host_u16 (t->length),
62  return s;
63 }
64 #endif /* CLIB_MARCH_VARIANT */
65 
66 typedef struct
67 {
68  /* Sparse vector mapping gre protocol in network byte order
69  to next index. */
72 
73 always_inline void
75  u32 tun_sw_if_index, const ip6_header_t * ip6,
76  const ip4_header_t * ip4, int is_ipv6)
77 {
78  gre_rx_trace_t *tr = vlib_add_trace (vm, node,
79  b, sizeof (*tr));
80  tr->tunnel_id = tun_sw_if_index;
81  if (is_ipv6)
82  {
83  tr->length = ip6->payload_length;
84  tr->src.ip6.as_u64[0] = ip6->src_address.as_u64[0];
85  tr->src.ip6.as_u64[1] = ip6->src_address.as_u64[1];
86  tr->dst.ip6.as_u64[0] = ip6->dst_address.as_u64[0];
87  tr->dst.ip6.as_u64[1] = ip6->dst_address.as_u64[1];
88  }
89  else
90  {
91  tr->length = ip4->length;
92  tr->src.as_u64[0] = tr->src.as_u64[1] = 0;
93  tr->dst.as_u64[0] = tr->dst.as_u64[1] = 0;
94  tr->src.ip4.as_u32 = ip4->src_address.as_u32;
95  tr->dst.ip4.as_u32 = ip4->dst_address.as_u32;
96  }
97 }
98 
99 always_inline void
101  vlib_buffer_t * b, u16 * next, const gre_tunnel_key_t * key,
102  gre_tunnel_key_t * cached_key, u32 * tun_sw_if_index,
103  u32 * cached_tun_sw_if_index, int is_ipv6)
104 {
105  const uword *p;
106  p = is_ipv6 ? hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6)
107  : hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4);
108  if (PREDICT_FALSE (!p))
109  {
110  *next = GRE_INPUT_NEXT_DROP;
111  b->error = node->errors[GRE_ERROR_NO_SUCH_TUNNEL];
112  *tun_sw_if_index = ~0;
113  }
114  else
115  {
116  const gre_tunnel_t *tun;
117  tun = pool_elt_at_index (gm->tunnels, *p);
118  *cached_tun_sw_if_index = *tun_sw_if_index = tun->sw_if_index;
119  if (is_ipv6)
120  cached_key->gtk_v6 = key->gtk_v6;
121  else
122  cached_key->gtk_v4 = key->gtk_v4;
123  }
124 }
125 
128  vlib_node_runtime_t * node, vlib_frame_t * frame,
129  const int is_ipv6)
130 {
131  gre_main_t *gm = &gre_main;
132  u32 *from, n_left_from;
133  vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
134  u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
135  u16 cached_protocol = ~0;
136  u32 cached_next_index = SPARSE_VEC_INVALID_INDEX;
137  u32 cached_tun_sw_if_index = ~0;
138  gre_tunnel_key_t cached_key;
139 
140  from = vlib_frame_vector_args (frame);
141  n_left_from = frame->n_vectors;
142  vlib_get_buffers (vm, from, bufs, n_left_from);
143 
144  if (is_ipv6)
145  clib_memset (&cached_key.gtk_v6, 0xff, sizeof (cached_key.gtk_v6));
146  else
147  clib_memset (&cached_key.gtk_v4, 0xff, sizeof (cached_key.gtk_v4));
148 
149  while (n_left_from >= 2)
150  {
151  const ip6_header_t *ip6[2];
152  const ip4_header_t *ip4[2];
153  const gre_header_t *gre[2];
154  u32 nidx[2];
155  next_info_t ni[2];
156  u8 type[2];
157  u16 version[2];
158  u32 len[2];
160  u8 matched[2];
161  u32 tun_sw_if_index[2];
162 
163  if (PREDICT_TRUE (n_left_from >= 6))
164  {
165  vlib_prefetch_buffer_data (b[2], LOAD);
166  vlib_prefetch_buffer_data (b[3], LOAD);
167  vlib_prefetch_buffer_header (b[4], STORE);
168  vlib_prefetch_buffer_header (b[5], STORE);
169  }
170 
171  if (is_ipv6)
172  {
173  /* ip6_local hands us the ip header, not the gre header */
174  ip6[0] = vlib_buffer_get_current (b[0]);
175  ip6[1] = vlib_buffer_get_current (b[1]);
176  gre[0] = (void *) (ip6[0] + 1);
177  gre[1] = (void *) (ip6[1] + 1);
178  vlib_buffer_advance (b[0], sizeof (*ip6[0]) + sizeof (*gre[0]));
179  vlib_buffer_advance (b[1], sizeof (*ip6[0]) + sizeof (*gre[0]));
180  }
181  else
182  {
183  /* ip4_local hands us the ip header, not the gre header */
184  ip4[0] = vlib_buffer_get_current (b[0]);
185  ip4[1] = vlib_buffer_get_current (b[1]);
186  gre[0] = (void *) (ip4[0] + 1);
187  gre[1] = (void *) (ip4[1] + 1);
188  vlib_buffer_advance (b[0], sizeof (*ip4[0]) + sizeof (*gre[0]));
189  vlib_buffer_advance (b[1], sizeof (*ip4[0]) + sizeof (*gre[0]));
190  }
191 
192  if (PREDICT_TRUE (cached_protocol == gre[0]->protocol))
193  {
194  nidx[0] = cached_next_index;
195  }
196  else
197  {
198  cached_next_index = nidx[0] =
200  cached_protocol = gre[0]->protocol;
201  }
202  if (PREDICT_TRUE (cached_protocol == gre[1]->protocol))
203  {
204  nidx[1] = cached_next_index;
205  }
206  else
207  {
208  cached_next_index = nidx[1] =
210  cached_protocol = gre[1]->protocol;
211  }
212 
213  ni[0] = vec_elt (gm->next_by_protocol, nidx[0]);
214  ni[1] = vec_elt (gm->next_by_protocol, nidx[1]);
215  next[0] = ni[0].next_index;
216  next[1] = ni[1].next_index;
217  type[0] = ni[0].tunnel_type;
218  type[1] = ni[1].tunnel_type;
219 
220  b[0]->error = nidx[0] == SPARSE_VEC_INVALID_INDEX
221  ? node->errors[GRE_ERROR_UNKNOWN_PROTOCOL]
222  : node->errors[GRE_ERROR_NONE];
223  b[1]->error = nidx[1] == SPARSE_VEC_INVALID_INDEX
224  ? node->errors[GRE_ERROR_UNKNOWN_PROTOCOL]
225  : node->errors[GRE_ERROR_NONE];
226 
227  version[0] = clib_net_to_host_u16 (gre[0]->flags_and_version);
228  version[1] = clib_net_to_host_u16 (gre[1]->flags_and_version);
229  version[0] &= GRE_VERSION_MASK;
230  version[1] &= GRE_VERSION_MASK;
231 
232  b[0]->error = version[0]
233  ? node->errors[GRE_ERROR_UNSUPPORTED_VERSION] : b[0]->error;
234  next[0] = version[0] ? GRE_INPUT_NEXT_DROP : next[0];
235  b[1]->error = version[1]
236  ? node->errors[GRE_ERROR_UNSUPPORTED_VERSION] : b[1]->error;
237  next[1] = version[1] ? GRE_INPUT_NEXT_DROP : next[1];
238 
239  len[0] = vlib_buffer_length_in_chain (vm, b[0]);
240  len[1] = vlib_buffer_length_in_chain (vm, b[1]);
241 
242  if (is_ipv6)
243  {
244  gre_mk_key6 (&ip6[0]->dst_address,
245  &ip6[0]->src_address,
246  vnet_buffer (b[0])->ip.fib_index,
247  type[0], 0, &key[0].gtk_v6);
248  gre_mk_key6 (&ip6[1]->dst_address,
249  &ip6[1]->src_address,
250  vnet_buffer (b[1])->ip.fib_index,
251  type[1], 0, &key[1].gtk_v6);
252  matched[0] = gre_match_key6 (&cached_key.gtk_v6, &key[0].gtk_v6);
253  matched[1] = gre_match_key6 (&cached_key.gtk_v6, &key[1].gtk_v6);
254  }
255  else
256  {
257  gre_mk_key4 (ip4[0]->dst_address,
258  ip4[0]->src_address,
259  vnet_buffer (b[0])->ip.fib_index,
260  type[0], 0, &key[0].gtk_v4);
261  gre_mk_key4 (ip4[1]->dst_address,
262  ip4[1]->src_address,
263  vnet_buffer (b[1])->ip.fib_index,
264  type[1], 0, &key[1].gtk_v4);
265  matched[0] = gre_match_key4 (&cached_key.gtk_v4, &key[0].gtk_v4);
266  matched[1] = gre_match_key4 (&cached_key.gtk_v4, &key[1].gtk_v4);
267  }
268 
269  tun_sw_if_index[0] = cached_tun_sw_if_index;
270  tun_sw_if_index[1] = cached_tun_sw_if_index;
271  if (PREDICT_FALSE (!matched[0]))
272  gre_tunnel_get (gm, node, b[0], &next[0], &key[0], &cached_key,
273  &tun_sw_if_index[0], &cached_tun_sw_if_index,
274  is_ipv6);
275  if (PREDICT_FALSE (!matched[1]))
276  gre_tunnel_get (gm, node, b[1], &next[1], &key[1], &cached_key,
277  &tun_sw_if_index[1], &cached_tun_sw_if_index,
278  is_ipv6);
279 
280  if (PREDICT_TRUE (next[0] > GRE_INPUT_NEXT_DROP))
281  {
283  interface_main.combined_sw_if_counters
285  vm->thread_index,
286  tun_sw_if_index[0],
287  1 /* packets */ ,
288  len[0] /* bytes */ );
289  vnet_buffer (b[0])->sw_if_index[VLIB_RX] = tun_sw_if_index[0];
290  }
291  if (PREDICT_TRUE (next[1] > GRE_INPUT_NEXT_DROP))
292  {
294  interface_main.combined_sw_if_counters
296  vm->thread_index,
297  tun_sw_if_index[1],
298  1 /* packets */ ,
299  len[1] /* bytes */ );
300  vnet_buffer (b[1])->sw_if_index[VLIB_RX] = tun_sw_if_index[1];
301  }
302 
303  if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
304  gre_trace (vm, node, b[0], tun_sw_if_index[0], ip6[0], ip4[0],
305  is_ipv6);
306  if (PREDICT_FALSE (b[1]->flags & VLIB_BUFFER_IS_TRACED))
307  gre_trace (vm, node, b[1], tun_sw_if_index[1], ip6[1], ip4[1],
308  is_ipv6);
309 
310  b += 2;
311  next += 2;
312  n_left_from -= 2;
313  }
314 
315  while (n_left_from >= 1)
316  {
317  const ip6_header_t *ip6[1];
318  const ip4_header_t *ip4[1];
319  const gre_header_t *gre[1];
320  u32 nidx[1];
321  next_info_t ni[1];
322  u8 type[1];
323  u16 version[1];
324  u32 len[1];
326  u8 matched[1];
327  u32 tun_sw_if_index[1];
328 
329  if (PREDICT_TRUE (n_left_from >= 3))
330  {
331  vlib_prefetch_buffer_data (b[1], LOAD);
332  vlib_prefetch_buffer_header (b[2], STORE);
333  }
334 
335  if (is_ipv6)
336  {
337  /* ip6_local hands us the ip header, not the gre header */
338  ip6[0] = vlib_buffer_get_current (b[0]);
339  gre[0] = (void *) (ip6[0] + 1);
340  vlib_buffer_advance (b[0], sizeof (*ip6[0]) + sizeof (*gre[0]));
341  }
342  else
343  {
344  /* ip4_local hands us the ip header, not the gre header */
345  ip4[0] = vlib_buffer_get_current (b[0]);
346  gre[0] = (void *) (ip4[0] + 1);
347  vlib_buffer_advance (b[0], sizeof (*ip4[0]) + sizeof (*gre[0]));
348  }
349 
350  if (PREDICT_TRUE (cached_protocol == gre[0]->protocol))
351  {
352  nidx[0] = cached_next_index;
353  }
354  else
355  {
356  cached_next_index = nidx[0] =
358  cached_protocol = gre[0]->protocol;
359  }
360 
361  ni[0] = vec_elt (gm->next_by_protocol, nidx[0]);
362  next[0] = ni[0].next_index;
363  type[0] = ni[0].tunnel_type;
364 
365  b[0]->error = nidx[0] == SPARSE_VEC_INVALID_INDEX
366  ? node->errors[GRE_ERROR_UNKNOWN_PROTOCOL]
367  : node->errors[GRE_ERROR_NONE];
368 
369  version[0] = clib_net_to_host_u16 (gre[0]->flags_and_version);
370  version[0] &= GRE_VERSION_MASK;
371 
372  b[0]->error = version[0]
373  ? node->errors[GRE_ERROR_UNSUPPORTED_VERSION] : b[0]->error;
374  next[0] = version[0] ? GRE_INPUT_NEXT_DROP : next[0];
375 
376  len[0] = vlib_buffer_length_in_chain (vm, b[0]);
377 
378  if (is_ipv6)
379  {
380  gre_mk_key6 (&ip6[0]->dst_address,
381  &ip6[0]->src_address,
382  vnet_buffer (b[0])->ip.fib_index,
383  type[0], 0, &key[0].gtk_v6);
384  matched[0] = gre_match_key6 (&cached_key.gtk_v6, &key[0].gtk_v6);
385  }
386  else
387  {
388  gre_mk_key4 (ip4[0]->dst_address,
389  ip4[0]->src_address,
390  vnet_buffer (b[0])->ip.fib_index,
391  type[0], 0, &key[0].gtk_v4);
392  matched[0] = gre_match_key4 (&cached_key.gtk_v4, &key[0].gtk_v4);
393  }
394 
395  tun_sw_if_index[0] = cached_tun_sw_if_index;
396  if (PREDICT_FALSE (!matched[0]))
397  gre_tunnel_get (gm, node, b[0], &next[0], &key[0], &cached_key,
398  &tun_sw_if_index[0], &cached_tun_sw_if_index,
399  is_ipv6);
400 
401  if (PREDICT_TRUE (next[0] > GRE_INPUT_NEXT_DROP))
402  {
404  interface_main.combined_sw_if_counters
406  vm->thread_index,
407  tun_sw_if_index[0],
408  1 /* packets */ ,
409  len[0] /* bytes */ );
410  vnet_buffer (b[0])->sw_if_index[VLIB_RX] = tun_sw_if_index[0];
411  }
412 
413  if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
414  gre_trace (vm, node, b[0], tun_sw_if_index[0], ip6[0], ip4[0],
415  is_ipv6);
416 
417  b += 1;
418  next += 1;
419  n_left_from -= 1;
420  }
421 
422  vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
423 
425  is_ipv6 ? gre6_input_node.index :
426  gre4_input_node.index, GRE_ERROR_PKTS_DECAP,
427  n_left_from);
428 
429  return frame->n_vectors;
430 }
431 
433  vlib_node_runtime_t * node,
434  vlib_frame_t * from_frame)
435 {
436  return gre_input (vm, node, from_frame, /* is_ip6 */ 0);
437 }
438 
440  vlib_node_runtime_t * node,
441  vlib_frame_t * from_frame)
442 {
443  return gre_input (vm, node, from_frame, /* is_ip6 */ 1);
444 }
445 
446 static char *gre_error_strings[] = {
447 #define gre_error(n,s) s,
448 #include "error.def"
449 #undef gre_error
450 };
451 
452 /* *INDENT-OFF* */
454  .name = "gre4-input",
455  /* Takes a vector of packets. */
456  .vector_size = sizeof (u32),
457 
458  .n_errors = GRE_N_ERROR,
459  .error_strings = gre_error_strings,
460 
461  .n_next_nodes = GRE_INPUT_N_NEXT,
462  .next_nodes = {
463 #define _(s,n) [GRE_INPUT_NEXT_##s] = n,
465 #undef _
466  },
467 
468  .format_buffer = format_gre_header_with_length,
469  .format_trace = format_gre_rx_trace,
470  .unformat_buffer = unformat_gre_header,
471 };
472 
474  .name = "gre6-input",
475  /* Takes a vector of packets. */
476  .vector_size = sizeof (u32),
477 
478  .runtime_data_bytes = sizeof (gre_input_runtime_t),
479 
480  .n_errors = GRE_N_ERROR,
481  .error_strings = gre_error_strings,
482 
483  .n_next_nodes = GRE_INPUT_N_NEXT,
484  .next_nodes = {
485 #define _(s,n) [GRE_INPUT_NEXT_##s] = n,
487 #undef _
488  },
489 
490  .format_buffer = format_gre_header_with_length,
491  .format_trace = format_gre_rx_trace,
492  .unformat_buffer = unformat_gre_header,
493 };
494 /* *INDENT-ON* */
495 
496 #ifndef CLIB_MARCH_VARIANT
497 void
499  gre_protocol_t protocol, u32 node_index,
500  gre_tunnel_type_t tunnel_type)
501 {
502  gre_main_t *em = &gre_main;
504  next_info_t *n;
505  u32 i;
506 
507  {
509  if (error)
510  clib_error_report (error);
511  }
512 
513  pi = gre_get_protocol_info (em, protocol);
514  pi->node_index = node_index;
515  pi->tunnel_type = tunnel_type;
516  pi->next_index = vlib_node_add_next (vm, gre4_input_node.index, node_index);
517  i = vlib_node_add_next (vm, gre6_input_node.index, node_index);
518  ASSERT (i == pi->next_index);
519 
520  /* Setup gre protocol -> next index sparse vector mapping. */
522  clib_host_to_net_u16 (protocol));
523  n->next_index = pi->next_index;
524  n->tunnel_type = tunnel_type;
525 }
526 
527 static void
528 gre_setup_node (vlib_main_t * vm, u32 node_index)
529 {
530  vlib_node_t *n = vlib_get_node (vm, node_index);
531  pg_node_t *pn = pg_get_node (node_index);
532 
536 }
537 
538 static clib_error_t *
540 {
541  gre_main_t *gm = &gre_main;
542  vlib_node_t *ethernet_input, *ip4_input, *ip6_input, *mpls_unicast_input;
543 
544  {
545  clib_error_t *error;
546  error = vlib_call_init_function (vm, gre_init);
547  if (error)
548  clib_error_report (error);
549  }
550 
551  gre_setup_node (vm, gre4_input_node.index);
552  gre_setup_node (vm, gre6_input_node.index);
553 
555  ( /* elt bytes */ sizeof (gm->next_by_protocol[0]),
556  /* bits in index */ BITS (((gre_header_t *) 0)->protocol));
557 
558  /* These could be moved to the supported protocol input node defn's */
559  ethernet_input = vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
560  ASSERT (ethernet_input);
561  ip4_input = vlib_get_node_by_name (vm, (u8 *) "ip4-input");
562  ASSERT (ip4_input);
563  ip6_input = vlib_get_node_by_name (vm, (u8 *) "ip6-input");
564  ASSERT (ip6_input);
565  mpls_unicast_input = vlib_get_node_by_name (vm, (u8 *) "mpls-input");
566  ASSERT (mpls_unicast_input);
567 
568  gre_register_input_protocol (vm, GRE_PROTOCOL_teb,
569  ethernet_input->index, GRE_TUNNEL_TYPE_TEB);
570 
571  gre_register_input_protocol (vm, GRE_PROTOCOL_ip4,
572  ip4_input->index, GRE_TUNNEL_TYPE_L3);
573 
574  gre_register_input_protocol (vm, GRE_PROTOCOL_ip6,
575  ip6_input->index, GRE_TUNNEL_TYPE_L3);
576 
577  gre_register_input_protocol (vm, GRE_PROTOCOL_mpls_unicast,
578  mpls_unicast_input->index, GRE_TUNNEL_TYPE_L3);
579 
580  ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index);
581  ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index);
582 
583  return 0;
584 }
585 
587 
588 #endif /* CLIB_MARCH_VARIANT */
589 /*
590  * fd.io coding-style-patch-verification: ON
591  *
592  * Local Variables:
593  * eval: (c-set-style "gnu")
594  * End:
595  */
vnet_main_t * vnet_main
Definition: gre.h:280
uword * tunnel_by_key6
Hash mapping to tunnels with ipv6 src/dst addr.
Definition: gre.h:262
GRE related global data.
Definition: gre.h:237
u32 flags
Definition: vhost_user.h:115
format_function_t format_gre_header_with_length
Definition: gre.h:324
#define CLIB_UNUSED(x)
Definition: clib.h:82
Transparent Ethernet Bridging - the tunnel is in L2 mode.
Definition: gre.h:50
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
void ip6_register_protocol(u32 protocol, u32 node_index)
Definition: ip6_forward.c:1474
ip4_address_t src_address
Definition: ip4_packet.h:170
#define PREDICT_TRUE(x)
Definition: clib.h:112
u64 as_u64[2]
Definition: ip6_packet.h:51
u32 index
Definition: node.h:279
static void gre_tunnel_get(const gre_main_t *gm, vlib_node_runtime_t *node, vlib_buffer_t *b, u16 *next, const gre_tunnel_key_t *key, gre_tunnel_key_t *cached_key, u32 *tun_sw_if_index, u32 *cached_tun_sw_if_index, int is_ipv6)
Definition: node.c:100
A GRE payload protocol registration.
Definition: gre.h:71
u32 thread_index
Definition: main.h:197
static uword gre_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, const int is_ipv6)
Definition: node.c:127
int i
format_function_t format_ip46_address
Definition: format.h:61
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
u16 * next_by_protocol
Definition: node.c:70
#define VLIB_NODE_FN(node)
Definition: node.h:201
u32 tunnel_id
Definition: node.c:42
void ip4_register_protocol(u32 protocol, u32 node_index)
Definition: ip4_forward.c:1702
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:469
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:385
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1122
unsigned char u8
Definition: types.h:56
static pg_node_t * pg_get_node(uword node_index)
Definition: pg.h:357
enum gre_tunnel_type_t_ gre_tunnel_type_t
The GRE tunnel type.
vlib_node_registration_t gre6_input_node
(constructor) VLIB_REGISTER_NODE (gre6_input_node)
Definition: node.c:473
static void gre_setup_node(vlib_main_t *vm, u32 node_index)
Definition: node.c:528
u32 sw_if_index
Definition: gre.h:202
#define foreach_gre_input_next
Definition: node.c:24
static char * gre_error_strings[]
Definition: node.c:446
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
#define always_inline
Definition: clib.h:98
ip4_address_t dst_address
Definition: ip4_packet.h:170
#define sparse_vec_validate(v, i)
Definition: sparse_vec.h:231
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:203
gre_tunnel_type_t tunnel_type
GRE tunnel type.
Definition: gre.h:80
#define GRE_VERSION_MASK
Definition: packet.h:52
gre_input_next_t
Definition: node.c:32
unsigned int u32
Definition: types.h:88
ip46_address_t dst
Definition: node.c:45
unformat_function_t unformat_gre_header
Definition: gre.h:337
#define vlib_call_init_function(vm, x)
Definition: init.h:260
#define VLIB_FRAME_SIZE
Definition: node.h:376
u8 * format_gre_rx_trace(u8 *s, va_list *args)
Definition: node.c:52
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:136
uword * tunnel_by_key4
Hash mapping to tunnels with ipv4 src/dst addr.
Definition: gre.h:257
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
A representation of a GRE tunnel.
Definition: gre.h:176
#define gm
Definition: dlmalloc.c:1217
unsigned short u16
Definition: types.h:57
static int gre_match_key4(const gre_tunnel_key4_t *key1, const gre_tunnel_key4_t *key2)
Definition: gre.h:373
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:229
gre_tunnel_key4_t gtk_v4
Definition: gre.h:150
u32 node_index
Node which handles this type.
Definition: gre.h:83
#define PREDICT_FALSE(x)
Definition: clib.h:111
u32 length
Definition: node.c:43
vl_api_address_union_t src_address
Definition: ip_types.api:44
format_function_t * format_buffer
Definition: node.h:356
static int gre_match_key6(const gre_tunnel_key6_t *key1, const gre_tunnel_key6_t *key2)
Definition: gre.h:392
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1180
u8 len
Definition: ip_types.api:49
static clib_error_t * gre_input_init(vlib_main_t *vm)
Definition: node.c:539
static clib_error_t * gre_init(vlib_main_t *vm)
Definition: gre.c:574
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
u16 n_vectors
Definition: node.h:395
vlib_main_t * vm
Definition: buffer.c:312
void gre_register_input_protocol(vlib_main_t *vm, gre_protocol_t protocol, u32 node_index, gre_tunnel_type_t tunnel_type)
Definition: node.c:498
static_always_inline void vlib_buffer_enqueue_to_next(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u16 *nexts, uword count)
Definition: buffer_node.h:332
gre_tunnel_key6_t gtk_v6
Definition: gre.h:151
u8 tunnel_type
Definition: gre.h:231
u16 protocol
Definition: packet.h:55
gre_protocol_t
Definition: packet.h:30
unformat_function_t * unformat_buffer
Definition: node.h:357
static void gre_mk_key4(ip4_address_t src, ip4_address_t dst, u32 fib_index, u8 ttype, u16 session_id, gre_tunnel_key4_t *key)
Definition: gre.h:362
unformat_function_t * unformat_edit
Definition: pg.h:310
ip46_address_t src
Definition: node.c:44
#define vlib_prefetch_buffer_data(b, type)
Definition: buffer.h:204
vlib_node_registration_t gre4_input_node
(constructor) VLIB_REGISTER_NODE (gre4_input_node)
Definition: node.c:453
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
static uword sparse_vec_index(void *v, uword sparse_index)
Definition: sparse_vec.h:161
#define ASSERT(truth)
u32 next_index
Next index for this type.
Definition: gre.h:86
gre_tunnel_t * tunnels
pool of tunnel instances
Definition: gre.h:242
option version
Definition: memclnt.api:17
#define clib_error_report(e)
Definition: error.h:113
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:248
next_info_t * next_by_protocol
Definition: gre.h:276
Union of the two possible key types.
Definition: gre.h:148
static void gre_mk_key6(const ip6_address_t *src, const ip6_address_t *dst, u32 fib_index, u8 ttype, u16 session_id, gre_tunnel_key6_t *key)
Definition: gre.h:381
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:57
#define vec_elt(v, i)
Get vector value at index i.
u16 payload_length
Definition: ip6_packet.h:376
L3 GRE (i.e.
Definition: gre.h:46
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:274
typedef key
Definition: ipsec.api:244
unformat_function_t unformat_pg_gre_header
Definition: gre.h:338
vl_api_gbp_endpoint_tun_t tun
Definition: gbp.api:121
#define hash_get_mem(h, key)
Definition: hash.h:269
u8 next_index
Definition: gre.h:230
#define vnet_buffer(b)
Definition: buffer.h:369
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:59
static gre_protocol_info_t * gre_get_protocol_info(gre_main_t *em, gre_protocol_t protocol)
Definition: gre.h:307
static_always_inline void vlib_get_buffers(vlib_main_t *vm, u32 *bi, vlib_buffer_t **b, int count)
Translate array of buffer indices into buffer pointers.
Definition: buffer_funcs.h:244
static void * sparse_vec_new(uword elt_bytes, uword sparse_index_bits)
Definition: sparse_vec.h:71
#define BITS(x)
Definition: clib.h:61
gre_main_t gre_main
Definition: gre.c:25
Definition: pg.h:307
static void gre_trace(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_buffer_t *b, u32 tun_sw_if_index, const ip6_header_t *ip6, const ip4_header_t *ip4, int is_ipv6)
Definition: node.c:74
Definition: defs.h:46
u8 protocol
Definition: ipsec.api:96
ip6_address_t dst_address
Definition: ip6_packet.h:385
#define SPARSE_VEC_INVALID_INDEX
Definition: sparse_vec.h:68