FD.io VPP  v21.01.1
Vector Packet Processing
interface.c
Go to the documentation of this file.
1 /*
2  * gre_interface.c: gre interfaces
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 <vnet/vnet.h>
19 #include <vnet/gre/gre.h>
20 #include <vnet/ip/format.h>
21 #include <vnet/fib/fib_table.h>
22 #include <vnet/adj/adj_midchain.h>
23 #include <vnet/adj/adj_nbr.h>
24 #include <vnet/mpls/mpls.h>
25 #include <vnet/l2/l2_input.h>
26 #include <vnet/teib/teib.h>
27 
28 u8 *
29 format_gre_tunnel_type (u8 * s, va_list * args)
30 {
31  gre_tunnel_type_t type = va_arg (*args, int);
32 
33  switch (type)
34  {
35 #define _(n, v) case GRE_TUNNEL_TYPE_##n: \
36  s = format (s, "%s", v); \
37  break;
39 #undef _
40  }
41 
42  return (s);
43 }
44 
45 static u8 *
46 format_gre_tunnel (u8 * s, va_list * args)
47 {
48  gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *);
49 
50  s = format (s, "[%d] instance %d src %U dst %U fib-idx %d sw-if-idx %d ",
55 
56  s = format (s, "payload %U ", format_gre_tunnel_type, t->type);
57  s = format (s, "%U ", format_tunnel_mode, t->mode);
58 
59  if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
60  s = format (s, "session %d ", t->session_id);
61 
62  if (t->type != GRE_TUNNEL_TYPE_L3)
63  s = format (s, "l2-adj-idx %d ", t->l2_adj_index);
64 
65  return s;
66 }
67 
68 static gre_tunnel_t *
70  u32 outer_fib_index, gre_tunnel_key_t * key)
71 {
73  uword *p;
74 
75  if (!a->is_ipv6)
76  {
77  gre_mk_key4 (a->src.ip4, a->dst.ip4, outer_fib_index,
78  a->type, a->mode, a->session_id, &key->gtk_v4);
79  p = hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4);
80  }
81  else
82  {
83  gre_mk_key6 (&a->src.ip6, &a->dst.ip6, outer_fib_index,
84  a->type, a->mode, a->session_id, &key->gtk_v6);
85  p = hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6);
86  }
87 
88  if (NULL == p)
89  return (NULL);
90 
91  return (pool_elt_at_index (gm->tunnels, p[0]));
92 }
93 
94 static void
96 {
98 
100  {
102  }
103  else
104  {
106  }
107 }
108 
109 static void
111 {
112  gre_main_t *gm = &gre_main;
113 
115  {
117  }
118  else
119  {
121  }
122 }
123 
124 /**
125  * gre_tunnel_stack
126  *
127  * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
128  */
129 void
131 {
132  gre_main_t *gm = &gre_main;
133  ip_adjacency_t *adj;
134  gre_tunnel_t *gt;
136 
137  adj = adj_get (ai);
138  sw_if_index = adj->rewrite_header.sw_if_index;
139 
140  if ((vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index) ||
141  (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
142  return;
143 
144  gt = pool_elt_at_index (gm->tunnels,
145  gm->tunnel_index_by_sw_if_index[sw_if_index]);
146 
149  {
151  }
152  else
153  {
155  }
156 }
157 
158 /**
159  * @brief Call back when restacking all adjacencies on a GRE interface
160  */
161 static adj_walk_rc_t
163 {
164  gre_tunnel_stack (ai);
165 
166  return (ADJ_WALK_RC_CONTINUE);
167 }
168 
169 static void
171 {
173 
174  /*
175  * walk all the adjacencies on th GRE interface and restack them
176  */
178  {
179  adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL);
180  }
181 }
182 
183 static void
185  const teib_entry_t * ne, gre_tunnel_key_t * key)
186 {
187  const fib_prefix_t *nh;
188 
189  nh = teib_entry_get_nh (ne);
190 
191  /* construct the key using mode P2P so it can be found in the DP */
192  if (FIB_PROTOCOL_IP4 == nh->fp_proto)
193  gre_mk_key4 (t->tunnel_src.ip4,
194  nh->fp_addr.ip4,
196  t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v4);
197  else
198  gre_mk_key6 (&t->tunnel_src.ip6,
199  &nh->fp_addr.ip6,
201  t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v6);
202 }
203 
204 /**
205  * An TEIB entry has been added
206  */
207 static void
209 {
210  gre_main_t *gm = &gre_main;
211  const ip_address_t *nh;
213  gre_tunnel_t *t;
215  u32 t_idx;
216 
217  sw_if_index = teib_entry_get_sw_if_index (ne);
218  if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
219  return;
220 
222 
223  if (INDEX_INVALID == t_idx)
224  return;
225 
226  /* entry has been added on an interface for which there is a GRE tunnel */
227  t = pool_elt_at_index (gm->tunnels, t_idx);
228 
229  if (t->mode != TUNNEL_MODE_MP)
230  return;
231 
232  /* the next-hop (underlay) of the NHRP entry will form part of the key for
233  * ingress lookup to match packets to this interface */
234  gre_teib_mk_key (t, ne, &key);
235  gre_tunnel_db_add (t, &key);
236 
237  /* update the rewrites for each of the adjacencies for this peer (overlay)
238  * using the next-hop (underlay) */
239  mgre_walk_ctx_t ctx = {
240  .t = t,
241  .ne = ne
242  };
243  nh = teib_entry_get_peer (ne);
245  (AF_IP4 == ip_addr_version (nh) ?
248  &ip_addr_46 (nh), mgre_mk_complete_walk, &ctx);
249 }
250 
251 static void
253 {
254  gre_main_t *gm = &gre_main;
255  const ip_address_t *nh;
257  gre_tunnel_t *t;
259  u32 t_idx;
260 
261  sw_if_index = teib_entry_get_sw_if_index (ne);
262  if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
263  return;
264 
266 
267  if (INDEX_INVALID == t_idx)
268  return;
269 
270  t = pool_elt_at_index (gm->tunnels, t_idx);
271 
272  /* remove the next-hop as an ingress lookup key */
273  gre_teib_mk_key (t, ne, &key);
274  gre_tunnel_db_remove (t, &key);
275 
276  nh = teib_entry_get_peer (ne);
277 
278  /* make all the adjacencies incomplete */
280  (AF_IP4 == ip_addr_version (nh) ?
284 }
285 
286 static walk_rc_t
288 {
289  gre_tunnel_t *t = ctx;
291 
292  gre_teib_mk_key (t, teib_entry_get (nei), &key);
293  gre_tunnel_db_remove (t, &key);
294 
295  return (WALK_CONTINUE);
296 }
297 
298 static walk_rc_t
300 {
301  gre_tunnel_t *t = ctx;
303 
304  gre_teib_mk_key (t, teib_entry_get (nei), &key);
305  gre_tunnel_db_add (t, &key);
306 
307  return (WALK_CONTINUE);
308 }
309 
310 static int
312  u32 outer_fib_index, u32 * sw_if_indexp)
313 {
314  gre_main_t *gm = &gre_main;
315  vnet_main_t *vnm = gm->vnet_main;
316  ip4_main_t *im4 = &ip4_main;
317  ip6_main_t *im6 = &ip6_main;
318  gre_tunnel_t *t;
320  u32 hw_if_index, sw_if_index;
322  u8 is_ipv6 = a->is_ipv6;
324 
325  t = gre_tunnel_db_find (a, outer_fib_index, &key);
326  if (NULL != t)
327  return VNET_API_ERROR_IF_ALREADY_EXISTS;
328 
330  clib_memset (t, 0, sizeof (*t));
331 
332  /* Reconcile the real dev_instance and a possible requested instance */
333  u32 t_idx = t - gm->tunnels; /* tunnel index (or instance) */
334  u32 u_idx = a->instance; /* user specified instance */
335  if (u_idx == ~0)
336  u_idx = t_idx;
337  if (hash_get (gm->instance_used, u_idx))
338  {
339  pool_put (gm->tunnels, t);
340  return VNET_API_ERROR_INSTANCE_IN_USE;
341  }
342  hash_set (gm->instance_used, u_idx, 1);
343 
344  t->dev_instance = t_idx; /* actual */
345  t->user_instance = u_idx; /* name */
346 
347  t->type = a->type;
348  t->mode = a->mode;
349  t->flags = a->flags;
350  if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
351  t->session_id = a->session_id;
352 
353  if (t->type == GRE_TUNNEL_TYPE_L3)
354  {
355  if (t->mode == TUNNEL_MODE_P2P)
356  hw_if_index =
357  vnet_register_interface (vnm, gre_device_class.index, t_idx,
358  gre_hw_interface_class.index, t_idx);
359  else
360  hw_if_index =
361  vnet_register_interface (vnm, gre_device_class.index, t_idx,
362  mgre_hw_interface_class.index, t_idx);
363  }
364  else
365  {
366  /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
367  u8 address[6] =
368  { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx };
369  error =
371  address, &hw_if_index, 0);
372  if (error)
373  {
374  clib_error_report (error);
375  return VNET_API_ERROR_INVALID_REGISTRATION;
376  }
377  }
378 
379  /* Set GRE tunnel interface output node (not used for L3 payload) */
380  if (GRE_TUNNEL_TYPE_ERSPAN == t->type)
381  vnet_set_interface_output_node (vnm, hw_if_index,
382  gre_erspan_encap_node.index);
383  else
384  vnet_set_interface_output_node (vnm, hw_if_index,
385  gre_teb_encap_node.index);
386 
387  hi = vnet_get_hw_interface (vnm, hw_if_index);
388  sw_if_index = hi->sw_if_index;
389 
390  t->hw_if_index = hw_if_index;
391  t->outer_fib_index = outer_fib_index;
394 
397 
398  if (!is_ipv6)
399  {
400  vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
401  hi->min_packet_bytes =
402  64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
403  }
404  else
405  {
406  vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
407  hi->min_packet_bytes =
408  64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
409  }
410 
411  /* Standard default gre MTU. */
412  vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000);
413 
414  /*
415  * source the FIB entry for the tunnel's destination
416  * and become a child thereof. The tunnel will then get poked
417  * when the forwarding for the entry updates, and the tunnel can
418  * re-stack accordingly
419  */
420 
421  clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
422  t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
424  t->tunnel_dst.fp_addr = a->dst;
425 
426  gre_tunnel_db_add (t, &key);
427 
428  if (t->mode == TUNNEL_MODE_MP)
430 
431  if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
432  {
433  gre_sn_key_t skey;
434  gre_sn_t *gre_sn;
435 
436  gre_mk_sn_key (t, &skey);
437  gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey);
438  if (gre_sn != NULL)
439  {
440  gre_sn->ref_count++;
441  t->gre_sn = gre_sn;
442  }
443  else
444  {
445  gre_sn = clib_mem_alloc (sizeof (gre_sn_t));
446  gre_sn->seq_num = 0;
447  gre_sn->ref_count = 1;
448  t->gre_sn = gre_sn;
449  hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn);
450  }
451  }
452 
453  if (t->type != GRE_TUNNEL_TYPE_L3)
454  {
456  (t->tunnel_dst.fp_proto, VNET_LINK_ETHERNET, &zero_addr, sw_if_index);
458  }
459 
460  if (sw_if_indexp)
461  *sw_if_indexp = sw_if_index;
462 
463  /* register gre46-input nodes */
464  ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index);
465  ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index);
466 
467  return 0;
468 }
469 
470 static int
472  u32 outer_fib_index, u32 * sw_if_indexp)
473 {
474  gre_main_t *gm = &gre_main;
475  vnet_main_t *vnm = gm->vnet_main;
476  gre_tunnel_t *t;
479 
480  t = gre_tunnel_db_find (a, outer_fib_index, &key);
481  if (NULL == t)
482  return VNET_API_ERROR_NO_SUCH_ENTRY;
483 
484  if (t->mode == TUNNEL_MODE_MP)
486 
487  sw_if_index = t->sw_if_index;
488  vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
489 
490  /* make sure tunnel is removed from l2 bd or xconnect */
491  set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0,
492  L2_BD_PORT_TYPE_NORMAL, 0, 0);
494 
495  if (t->type == GRE_TUNNEL_TYPE_L3)
497  else
499 
501  {
504  }
505 
506  ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL));
507  if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1))
508  {
509  gre_sn_key_t skey;
510  gre_mk_sn_key (t, &skey);
511  hash_unset_mem_free (&gm->seq_num_by_key, &skey);
512  clib_mem_free (t->gre_sn);
513  }
514 
516  gre_tunnel_db_remove (t, &key);
517  pool_put (gm->tunnels, t);
518 
519  if (sw_if_indexp)
520  *sw_if_indexp = sw_if_index;
521 
522  return 0;
523 }
524 
525 int
527  u32 * sw_if_indexp)
528 {
529  u32 outer_fib_index;
530 
531  outer_fib_index = fib_table_find ((a->is_ipv6 ?
534 
535  if (~0 == outer_fib_index)
536  return VNET_API_ERROR_NO_SUCH_FIB;
537 
539  return VNET_API_ERROR_INVALID_SESSION_ID;
540 
541  if (a->mode == TUNNEL_MODE_MP && !ip46_address_is_zero (&a->dst))
542  return (VNET_API_ERROR_INVALID_DST_ADDRESS);
543 
544  if (a->is_add)
545  return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp));
546  else
547  return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp));
548 }
549 
550 clib_error_t *
552 {
553  gre_main_t *gm = &gre_main;
555  gre_tunnel_t *t;
556  u32 ti;
557 
558  hi = vnet_get_hw_interface (vnm, hw_if_index);
559 
560  if (NULL == gm->tunnel_index_by_sw_if_index ||
562  return (NULL);
563 
565 
566  if (~0 == ti)
567  /* not one of ours */
568  return (NULL);
569 
570  t = pool_elt_at_index (gm->tunnels, ti);
571 
573  vnet_hw_interface_set_flags (vnm, hw_if_index,
575  else
576  vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
577 
578  gre_tunnel_restack (t);
579 
580  return /* no error */ 0;
581 }
582 
583 static clib_error_t *
585  unformat_input_t * input,
586  vlib_cli_command_t * cmd)
587 {
588  unformat_input_t _line_input, *line_input = &_line_input;
590  ip46_address_t src = ip46_address_initializer, dst =
592  u32 instance = ~0;
593  u32 outer_table_id = 0;
594  gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3;
595  tunnel_mode_t t_mode = TUNNEL_MODE_P2P;
596  tunnel_encap_decap_flags_t flags = TUNNEL_ENCAP_DECAP_FLAG_NONE;
597  u32 session_id = 0;
598  int rv;
599  u8 is_add = 1;
601  clib_error_t *error = NULL;
602 
603  /* Get a line of input. */
604  if (!unformat_user (input, unformat_line_input, line_input))
605  return 0;
606 
607  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
608  {
609  if (unformat (line_input, "del"))
610  is_add = 0;
611  else if (unformat (line_input, "instance %d", &instance))
612  ;
613  else if (unformat (line_input, "src %U", unformat_ip46_address, &src))
614  ;
615  else if (unformat (line_input, "dst %U", unformat_ip46_address, &dst))
616  ;
617  else if (unformat (line_input, "outer-table-id %d", &outer_table_id))
618  ;
619  else if (unformat (line_input, "multipoint"))
620  t_mode = TUNNEL_MODE_MP;
621  else if (unformat (line_input, "teb"))
622  t_type = GRE_TUNNEL_TYPE_TEB;
623  else if (unformat (line_input, "erspan %d", &session_id))
624  t_type = GRE_TUNNEL_TYPE_ERSPAN;
625  else
626  if (unformat
627  (line_input, "flags %U", unformat_tunnel_encap_decap_flags,
628  &flags))
629  ;
630  else
631  {
632  error = clib_error_return (0, "unknown input `%U'",
633  format_unformat_error, line_input);
634  goto done;
635  }
636  }
637 
638  if (ip46_address_is_equal (&src, &dst))
639  {
640  error = clib_error_return (0, "src and dst are identical");
641  goto done;
642  }
643 
644  if (t_mode != TUNNEL_MODE_MP && ip46_address_is_zero (&dst))
645  {
646  error = clib_error_return (0, "destination address not specified");
647  goto done;
648  }
649 
650  if (ip46_address_is_zero (&src))
651  {
652  error = clib_error_return (0, "source address not specified");
653  goto done;
654  }
655 
656  if (ip46_address_is_ip4 (&src) != ip46_address_is_ip4 (&dst))
657  {
658  error =
659  clib_error_return (0, "src and dst address must be the same AF");
660  goto done;
661  }
662 
663  clib_memset (a, 0, sizeof (*a));
664  a->is_add = is_add;
666  a->type = t_type;
667  a->mode = t_mode;
668  a->session_id = session_id;
669  a->is_ipv6 = !ip46_address_is_ip4 (&src);
670  a->instance = instance;
671  a->flags = flags;
672  clib_memcpy (&a->src, &src, sizeof (a->src));
673  clib_memcpy (&a->dst, &dst, sizeof (a->dst));
674 
675  rv = vnet_gre_tunnel_add_del (a, &sw_if_index);
676 
677  switch (rv)
678  {
679  case 0:
681  vnet_get_main (), sw_if_index);
682  break;
683  case VNET_API_ERROR_IF_ALREADY_EXISTS:
684  error = clib_error_return (0, "GRE tunnel already exists...");
685  goto done;
686  case VNET_API_ERROR_NO_SUCH_FIB:
687  error = clib_error_return (0, "outer table ID %d doesn't exist\n",
688  outer_table_id);
689  goto done;
690  case VNET_API_ERROR_NO_SUCH_ENTRY:
691  error = clib_error_return (0, "GRE tunnel doesn't exist");
692  goto done;
693  case VNET_API_ERROR_INVALID_SESSION_ID:
694  error = clib_error_return (0, "session ID %d out of range\n",
695  session_id);
696  goto done;
697  case VNET_API_ERROR_INSTANCE_IN_USE:
698  error = clib_error_return (0, "Instance is in use");
699  goto done;
700  default:
701  error =
702  clib_error_return (0, "vnet_gre_tunnel_add_del returned %d", rv);
703  goto done;
704  }
705 
706 done:
707  unformat_free (line_input);
708 
709  return error;
710 }
711 
712 /* *INDENT-OFF* */
713 VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = {
714  .path = "create gre tunnel",
715  .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] "
716  "[outer-fib-id <fib>] [teb | erspan <session-id>] [del] "
717  "[multipoint]",
718  .function = create_gre_tunnel_command_fn,
719 };
720 /* *INDENT-ON* */
721 
722 static clib_error_t *
724  unformat_input_t * input,
725  vlib_cli_command_t * cmd)
726 {
727  gre_main_t *gm = &gre_main;
728  gre_tunnel_t *t;
729  u32 ti = ~0;
730 
731  if (pool_elts (gm->tunnels) == 0)
732  vlib_cli_output (vm, "No GRE tunnels configured...");
733 
735  {
736  if (unformat (input, "%d", &ti))
737  ;
738  else
739  break;
740  }
741 
742  if (~0 == ti)
743  {
744  /* *INDENT-OFF* */
745  pool_foreach (t, gm->tunnels)
746  {
747  vlib_cli_output (vm, "%U", format_gre_tunnel, t);
748  }
749  /* *INDENT-ON* */
750  }
751  else
752  {
753  t = pool_elt_at_index (gm->tunnels, ti);
754 
755  vlib_cli_output (vm, "%U", format_gre_tunnel, t);
756  }
757 
758  return 0;
759 }
760 
761 /* *INDENT-OFF* */
762 VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = {
763  .path = "show gre tunnel",
764  .function = show_gre_tunnel_command_fn,
765 };
766 /* *INDENT-ON* */
767 
768 const static teib_vft_t gre_teib_vft = {
770  .nv_deleted = gre_teib_entry_deleted,
771 };
772 
773 /* force inclusion from application's main.c */
774 clib_error_t *
776 {
777  teib_register (&gre_teib_vft);
778 
779  return (NULL);
780 }
781 
783 
784 /*
785  * fd.io coding-style-patch-verification: ON
786  *
787  * Local Variables:
788  * eval: (c-set-style "gnu")
789  * End:
790  */
vnet_main_t * vnet_main
Definition: gre.h:285
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:509
static int vnet_gre_tunnel_add(vnet_gre_tunnel_add_del_args_t *a, u32 outer_fib_index, u32 *sw_if_indexp)
Definition: interface.c:311
void vnet_set_interface_output_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
Set interface output node - for interface registered without its output/tx nodes created because its ...
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:211
uword * seq_num_by_key
Hash mapping tunnel src/dst addr and fib-idx to sequence number.
Definition: gre.h:272
void adj_nbr_walk_nh(u32 sw_if_index, fib_protocol_t adj_nh_proto, const ip46_address_t *nh, adj_walk_cb_t cb, void *ctx)
Walk adjacencies on a link with a given next-hop.
Definition: adj_nbr.c:663
static void gre_mk_key6(const ip6_address_t *src, const ip6_address_t *dst, u32 fib_index, gre_tunnel_type_t ttype, tunnel_mode_t tmode, u16 session_id, gre_tunnel_key6_t *key)
Definition: gre.h:404
vlib_node_registration_t gre4_input_node
(constructor) VLIB_REGISTER_NODE (gre4_input_node)
Definition: node.c:454
#define hash_set(h, key, value)
Definition: hash.h:255
uword * tunnel_by_key6
Hash mapping to tunnels with ipv6 src/dst addr.
Definition: gre.h:267
GRE related global data.
Definition: gre.h:242
static adj_walk_rc_t gre_adj_walk_cb(adj_index_t ai, void *ctx)
Call back when restacking all adjacencies on a GRE interface.
Definition: interface.c:162
u32 hw_if_index
Definition: gre.h:204
#define ip_addr_46(_a)
Definition: ip_types.h:90
teib_entry_t * teib_entry_get(index_t tei)
Definition: teib.c:108
#define hash_unset(h, key)
Definition: hash.h:261
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
a
Definition: bitmap.h:544
void ip6_register_protocol(u32 protocol, u32 node_index)
Definition: ip6_forward.c:1668
clib_error_t * vnet_sw_interface_set_flags(vnet_main_t *vnm, u32 sw_if_index, vnet_sw_interface_flags_t flags)
Definition: interface.c:519
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:527
void vnet_sw_interface_set_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu)
Definition: interface.c:686
vl_api_fib_path_nh_t nh
Definition: fib_types.api:126
uword unformat_tunnel_encap_decap_flags(unformat_input_t *input, va_list *args)
Definition: tunnel.c:66
void adj_midchain_delegate_stack(adj_index_t ai, u32 fib_index, const fib_prefix_t *pfx)
create/attach a midchain delegate and stack it on the prefix passed
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
IP unicast adjacency.
Definition: adj.h:235
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
tunnel_mode_t mode
Definition: gre.h:368
u32 outer_fib_index
The FIB in which the src.dst address are present.
Definition: gre.h:203
static void gre_tunnel_db_add(gre_tunnel_t *t, gre_tunnel_key_t *key)
Definition: interface.c:95
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
clib_error_t * gre_interface_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:551
vl_api_address_t src
Definition: gre.api:54
static gre_tunnel_t * gre_tunnel_db_find(const vnet_gre_tunnel_add_del_args_t *a, u32 outer_fib_index, gre_tunnel_key_t *key)
Definition: interface.c:69
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
u32 vnet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, u32 hw_class_index, u32 hw_instance)
Definition: interface.c:794
vlib_main_t * vm
Definition: in2out_ed.c:1580
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:123
void ip4_register_protocol(u32 protocol, u32 node_index)
Definition: ip4_forward.c:1894
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
Definition: interface.c:509
#define ip_addr_version(_a)
Definition: ip_types.h:93
static u8 ip46_address_is_ip4(const ip46_address_t *ip46)
Definition: ip46_address.h:55
format_function_t format_vnet_sw_if_index_name
unsigned char u8
Definition: types.h:56
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
u32 * tunnel_index_by_sw_if_index
Mapping from sw_if_index to tunnel index.
Definition: gre.h:277
void teib_walk_itf(u32 sw_if_index, teib_walk_cb_t fn, void *ctx)
Definition: teib.c:328
void gre_tunnel_stack(adj_index_t ai)
gre_tunnel_stack
Definition: interface.c:130
static void gre_mk_key4(ip4_address_t src, ip4_address_t dst, u32 fib_index, gre_tunnel_type_t ttype, tunnel_mode_t tmode, u16 session_id, gre_tunnel_key4_t *key)
Definition: gre.h:381
#define clib_memcpy(d, s, n)
Definition: string.h:180
u32 seq_num
Definition: gre.h:168
vnet_hw_interface_class_t mgre_hw_interface_class
u32 teib_entry_get_fib_index(const teib_entry_t *te)
Definition: teib.c:84
Hash key for GRE header seq number generation for ERSPAN encap.
Definition: gre.h:175
enum walk_rc_t_ walk_rc_t
Walk return code.
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:467
u32 sw_if_index
Definition: gre.h:205
static void gre_teib_entry_added(const teib_entry_t *ne)
An TEIB entry has been added.
Definition: interface.c:208
u32 dev_instance
Definition: gre.h:229
adj_walk_rc_t mgre_mk_complete_walk(adj_index_t ai, void *data)
Definition: gre.c:433
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
static void gre_tunnel_db_remove(gre_tunnel_t *t, gre_tunnel_key_t *key)
Definition: interface.c:110
teib_entry_added_t nv_added
Definition: teib.h:74
enum adj_walk_rc_t_ adj_walk_rc_t
return codes from a adjacency walker callback function
description fragment has unexpected format
Definition: map.api:433
Aggregate type for a prefix.
Definition: fib_types.h:202
#define clib_error_return(e, args...)
Definition: error.h:99
ip46_address_t src
Definition: gre.h:371
static clib_error_t * create_gre_tunnel_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: interface.c:584
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
Definition: adj.c:347
unsigned int u32
Definition: types.h:88
adj_index_t l2_adj_index
an L2 tunnel always rquires an L2 midchain.
Definition: gre.h:213
u32 fib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1106
u16 fp_len
The mask length.
Definition: fib_types.h:206
ip46_address_t tunnel_src
The tunnel&#39;s source/local address.
Definition: gre.h:195
static u8 * format_gre_tunnel(u8 *s, va_list *args)
Definition: interface.c:46
unformat_function_t unformat_line_input
Definition: format.h:282
vl_api_fib_path_type_t type
Definition: fib_types.api:123
static void gre_teib_mk_key(const gre_tunnel_t *t, const teib_entry_t *ne, gre_tunnel_key_t *key)
Definition: interface.c:184
Definition: cJSON.c:84
#define hash_get(h, key)
Definition: hash.h:249
uword * tunnel_by_key4
Hash mapping to tunnels with ipv4 src/dst addr.
Definition: gre.h:262
#define ADJ_INDEX_INVALID
Invalid ADJ index - used when no adj is known likewise blazoned capitals INVALID speak volumes where ...
Definition: adj_types.h:36
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:546
A representation of a GRE tunnel.
Definition: gre.h:185
uword * instance_used
Definition: gre.h:288
static uword vnet_hw_interface_get_flags(vnet_main_t *vnm, u32 hw_if_index)
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:225
u32 teib_entry_get_sw_if_index(const teib_entry_t *te)
accessors for the opaque struct
Definition: teib.c:72
vl_api_ip_proto_t proto
Definition: acl_types.api:51
#define gm
Definition: dlmalloc.c:1219
static u8 ip46_address_is_zero(const ip46_address_t *ip46)
Definition: ip46_address.h:87
long ctx[MAX_CONNS]
Definition: main.c:144
struct _unformat_input_t unformat_input_t
u32 session_id
Definition: flow_types.api:131
static clib_error_t * show_gre_tunnel_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: interface.c:723
void ethernet_delete_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:393
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:301
gre_tunnel_key4_t gtk_v4
Definition: gre.h:154
void gre_update_adj(vnet_main_t *vnm, u32 sw_if_index, adj_index_t ai)
Definition: gre.c:404
clib_error_t * gre_interface_init(vlib_main_t *vm)
Definition: interface.c:775
u32 outer_table_id
Definition: gre.api:52
ip6_main_t ip6_main
Definition: ip6_forward.c:2785
vl_api_address_t dst
Definition: gre.api:55
enum tunnel_encap_decap_flags_t_ tunnel_encap_decap_flags_t
static void gre_tunnel_restack(gre_tunnel_t *gt)
Definition: interface.c:170
static u8 ip46_address_is_equal(const ip46_address_t *ip46_1, const ip46_address_t *ip46_2)
Definition: ip46_address.h:93
#define GTK_SESSION_ID_MAX
The session ID is only a 10 bit value.
Definition: gre.h:161
u8 * format_gre_tunnel_type(u8 *s, va_list *args)
Definition: interface.c:29
format_function_t format_ip46_address
Definition: ip46_address.h:50
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
Definition: pool.h:245
gre_tunnel_type_t type
Definition: gre.h:206
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
Definition: teib.c:33
const ip_address_t * teib_entry_get_peer(const teib_entry_t *te)
Definition: teib.c:90
gre_sn_t * gre_sn
GRE header sequence number (SN) used for ERSPAN type 2 header, must be bumped automically to be threa...
Definition: gre.h:226
gre_tunnel_key6_t gtk_v6
Definition: gre.h:155
clib_error_t * ethernet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, const u8 *address, u32 *hw_if_index_return, ethernet_flag_change_function_t flag_change)
Definition: interface.c:348
int vnet_gre_tunnel_add_del(vnet_gre_tunnel_add_del_args_t *a, u32 *sw_if_indexp)
Definition: interface.c:526
Used for GRE header seq number generation for ERSPAN encap.
Definition: gre.h:166
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
static int vnet_gre_tunnel_delete(vnet_gre_tunnel_add_del_args_t *a, u32 outer_fib_index, u32 *sw_if_indexp)
Definition: interface.c:471
void adj_nbr_walk(u32 sw_if_index, fib_protocol_t adj_nh_proto, adj_walk_cb_t cb, void *ctx)
Walk all adjacencies on a link for a given next-hop protocol.
Definition: adj_nbr.c:571
adj_walk_rc_t mgre_mk_incomplete_walk(adj_index_t ai, void *data)
Definition: gre.c:459
void adj_midchain_delegate_unstack(adj_index_t ai)
unstack a midchain delegate (this stacks it on a drop)
ip46_address_t dst
Definition: gre.h:371
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
gre_tunnel_type_t type
Definition: gre.h:367
#define ASSERT(truth)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:696
manual_print typedef address
Definition: ip_types.api:96
void vnet_delete_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:1011
gre_tunnel_t * tunnels
pool of tunnel instances
Definition: gre.h:247
IPv4 main type.
Definition: ip4.h:107
static void clib_mem_free(void *p)
Definition: mem.h:311
tunnel_mode_t mode
Definition: gre.h:207
u32 set_int_l2_mode(vlib_main_t *vm, vnet_main_t *vnet_main, u32 mode, u32 sw_if_index, u32 bd_index, l2_bd_port_type_t port_type, u32 shg, u32 xc_sw_if_index)
Set the subinterface to run in l2 or l3 mode.
Definition: l2_input.c:256
#define clib_error_report(e)
Definition: error.h:113
static void hash_unset_mem_free(uword **h, const void *key)
Definition: hash.h:295
Union of the two possible key types.
Definition: gre.h:152
static void * clib_mem_alloc(uword size)
Definition: mem.h:253
vnet_hw_interface_class_t gre_hw_interface_class
unformat_function_t unformat_ip46_address
Definition: format.h:63
u32 user_instance
Definition: gre.h:230
vl_api_ip4_address_t hi
Definition: arp.api:37
typedef key
Definition: ipsec_types.api:86
vnet_device_class_t gre_device_class
vlib_node_registration_t gre_teb_encap_node
(constructor) VLIB_REGISTER_NODE (gre_teb_encap_node)
Definition: gre.c:681
static walk_rc_t gre_tunnel_delete_teib_walk(index_t nei, void *ctx)
Definition: interface.c:287
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u32 instance
Definition: gre.api:51
#define INDEX_INVALID
Invalid index - used when no index is known blazoned capitals INVALID speak volumes where ~0 does not...
Definition: dpo.h:47
u64 uword
Definition: types.h:112
u32 ref_count
Definition: gre.h:169
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
#define FOR_EACH_FIB_IP_PROTOCOL(_item)
Definition: fib_types.h:69
#define hash_get_mem(h, key)
Definition: hash.h:269
tunnel_encap_decap_flags_t flags
Definition: gre.h:374
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
static void gre_teib_entry_deleted(const teib_entry_t *ne)
Definition: interface.c:252
vlib_node_registration_t gre_erspan_encap_node
(constructor) VLIB_REGISTER_NODE (gre_erspan_encap_node)
Definition: gre.c:694
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1105
vlib_node_registration_t gre6_input_node
(constructor) VLIB_REGISTER_NODE (gre6_input_node)
Definition: node.c:474
enum gre_tunnel_type_t_ gre_tunnel_type_t
The GRE tunnel type.
fib_prefix_t tunnel_dst
The tunnel&#39;s destination/remote address.
Definition: gre.h:199
u8 * format_tunnel_mode(u8 *s, va_list *args)
Definition: tunnel.c:21
adj_index_t adj_nbr_add_or_lock(fib_protocol_t nh_proto, vnet_link_t link_type, const ip46_address_t *nh_addr, u32 sw_if_index)
Neighbour Adjacency sub-type.
Definition: adj_nbr.c:236
vlib_main_t * vlib_main
Definition: gre.h:284
static void hash_set_mem_alloc(uword **h, const void *key, uword v)
Definition: hash.h:279
bool is_ipv6
Definition: dhcp.api:202
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:556
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
void teib_register(const teib_vft_t *vft)
Definition: teib.c:408
u32 * fib_index_by_sw_if_index
Definition: ip6.h:127
gre_main_t gre_main
Definition: gre.c:26
enum tunnel_mode_t_ tunnel_mode_t
u16 session_id
ERSPAN type 2 session ID, least significant 10 bits of u16.
Definition: gre.h:218
static void gre_mk_sn_key(const gre_tunnel_t *gt, gre_sn_key_t *key)
Definition: gre.h:428
tunnel_encap_decap_flags_t flags
Definition: gre.h:208
#define ip46_address_initializer
Definition: ip46_address.h:52
const ip46_address_t zero_addr
#include <vnet/feature/feature.h>
Definition: lookup.c:180
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static walk_rc_t gre_tunnel_add_teib_walk(index_t nei, void *ctx)
Definition: interface.c:299
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
#define MODE_L3
Definition: l2_input.h:282
const fib_prefix_t * teib_entry_get_nh(const teib_entry_t *te)
Definition: teib.c:96
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:127