FD.io VPP  v21.10.1-2-g0a485f517
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  {
101  hash_set_mem_alloc (&gm->tunnel_by_key6, &key->gtk_v6, t->dev_instance);
102  }
103  else
104  {
105  hash_set_mem_alloc (&gm->tunnel_by_key4, &key->gtk_v4, t->dev_instance);
106  }
107 }
108 
109 static void
111 {
112  gre_main_t *gm = &gre_main;
113 
115  {
116  hash_unset_mem_free (&gm->tunnel_by_key6, &key->gtk_v6);
117  }
118  else
119  {
120  hash_unset_mem_free (&gm->tunnel_by_key4, &key->gtk_v4);
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  * mgre_tunnel_stack
160  *
161  * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
162  */
163 static void
165 {
166  gre_main_t *gm = &gre_main;
167  const ip_adjacency_t *adj;
168  const gre_tunnel_t *gt;
170 
171  adj = adj_get (ai);
172  sw_if_index = adj->rewrite_header.sw_if_index;
173 
174  if ((vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index) ||
175  (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
176  return;
177 
178  gt = pool_elt_at_index (gm->tunnels,
179  gm->tunnel_index_by_sw_if_index[sw_if_index]);
180 
183  {
185  }
186  else
187  {
188  const teib_entry_t *ne;
189 
191  &adj->sub_type.nbr.next_hop);
192  if (NULL != ne)
193  teib_entry_adj_stack (ne, ai);
194  }
195 }
196 
197 /**
198  * @brief Call back when restacking all adjacencies on a GRE interface
199  */
200 static adj_walk_rc_t
202 {
203  gre_tunnel_stack (ai);
204 
205  return (ADJ_WALK_RC_CONTINUE);
206 }
207 static adj_walk_rc_t
209 {
210  mgre_tunnel_stack (ai);
211 
212  return (ADJ_WALK_RC_CONTINUE);
213 }
214 
215 static void
217 {
219 
220  /*
221  * walk all the adjacencies on th GRE interface and restack them
222  */
224  {
225  switch (gt->mode)
226  {
227  case TUNNEL_MODE_P2P:
229  break;
230  case TUNNEL_MODE_MP:
232  break;
233  }
234  }
235 }
236 
237 static void
239  const teib_entry_t * ne, gre_tunnel_key_t * key)
240 {
241  const fib_prefix_t *nh;
242 
243  nh = teib_entry_get_nh (ne);
244 
245  /* construct the key using mode P2P so it can be found in the DP */
246  if (FIB_PROTOCOL_IP4 == nh->fp_proto)
247  gre_mk_key4 (t->tunnel_src.ip4,
248  nh->fp_addr.ip4,
250  t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v4);
251  else
252  gre_mk_key6 (&t->tunnel_src.ip6,
253  &nh->fp_addr.ip6,
255  t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v6);
256 }
257 
258 /**
259  * An TEIB entry has been added
260  */
261 static void
263 {
264  gre_main_t *gm = &gre_main;
265  const ip_address_t *nh;
267  gre_tunnel_t *t;
269  u32 t_idx;
270 
272  if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
273  return;
274 
275  t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index];
276 
277  if (INDEX_INVALID == t_idx)
278  return;
279 
280  /* entry has been added on an interface for which there is a GRE tunnel */
281  t = pool_elt_at_index (gm->tunnels, t_idx);
282 
283  if (t->mode != TUNNEL_MODE_MP)
284  return;
285 
286  /* the next-hop (underlay) of the NHRP entry will form part of the key for
287  * ingress lookup to match packets to this interface */
288  gre_teib_mk_key (t, ne, &key);
289  gre_tunnel_db_add (t, &key);
290 
291  /* update the rewrites for each of the adjacencies for this peer (overlay)
292  * using the next-hop (underlay) */
293  mgre_walk_ctx_t ctx = {
294  .t = t,
295  .ne = ne
296  };
297  nh = teib_entry_get_peer (ne);
299  (AF_IP4 == ip_addr_version (nh) ?
303 }
304 
305 static void
307 {
308  gre_main_t *gm = &gre_main;
309  const ip_address_t *nh;
311  gre_tunnel_t *t;
313  u32 t_idx;
314 
316  if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
317  return;
318 
319  t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index];
320 
321  if (INDEX_INVALID == t_idx)
322  return;
323 
324  t = pool_elt_at_index (gm->tunnels, t_idx);
325 
326  /* remove the next-hop as an ingress lookup key */
327  gre_teib_mk_key (t, ne, &key);
329 
330  nh = teib_entry_get_peer (ne);
331 
332  /* make all the adjacencies incomplete */
334  (AF_IP4 == ip_addr_version (nh) ?
338 }
339 
340 static walk_rc_t
342 {
343  gre_tunnel_t *t = ctx;
345 
346  gre_teib_mk_key (t, teib_entry_get (nei), &key);
348 
349  return (WALK_CONTINUE);
350 }
351 
352 static walk_rc_t
354 {
355  gre_tunnel_t *t = ctx;
357 
358  gre_teib_mk_key (t, teib_entry_get (nei), &key);
359  gre_tunnel_db_add (t, &key);
360 
361  return (WALK_CONTINUE);
362 }
363 
364 static int
366  u32 outer_fib_index, u32 * sw_if_indexp)
367 {
368  gre_main_t *gm = &gre_main;
369  vnet_main_t *vnm = gm->vnet_main;
370  gre_tunnel_t *t;
372  u32 hw_if_index, sw_if_index;
374  u8 is_ipv6 = a->is_ipv6;
376 
377  t = gre_tunnel_db_find (a, outer_fib_index, &key);
378  if (NULL != t)
379  return VNET_API_ERROR_IF_ALREADY_EXISTS;
380 
382  clib_memset (t, 0, sizeof (*t));
383 
384  /* Reconcile the real dev_instance and a possible requested instance */
385  u32 t_idx = t - gm->tunnels; /* tunnel index (or instance) */
386  u32 u_idx = a->instance; /* user specified instance */
387  if (u_idx == ~0)
388  u_idx = t_idx;
389  if (hash_get (gm->instance_used, u_idx))
390  {
391  pool_put (gm->tunnels, t);
392  return VNET_API_ERROR_INSTANCE_IN_USE;
393  }
394  hash_set (gm->instance_used, u_idx, 1);
395 
396  t->dev_instance = t_idx; /* actual */
397  t->user_instance = u_idx; /* name */
398 
399  t->type = a->type;
400  t->mode = a->mode;
401  t->flags = a->flags;
402  if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
403  t->session_id = a->session_id;
404 
405  if (t->type == GRE_TUNNEL_TYPE_L3)
406  {
407  if (t->mode == TUNNEL_MODE_P2P)
408  hw_if_index =
409  vnet_register_interface (vnm, gre_device_class.index, t_idx,
410  gre_hw_interface_class.index, t_idx);
411  else
412  hw_if_index =
413  vnet_register_interface (vnm, gre_device_class.index, t_idx,
414  mgre_hw_interface_class.index, t_idx);
415  }
416  else
417  {
418  /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
419  u8 address[6] =
420  { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx };
421  error =
423  address, &hw_if_index, 0);
424  if (error)
425  {
427  return VNET_API_ERROR_INVALID_REGISTRATION;
428  }
429  }
430 
431  /* Set GRE tunnel interface output node (not used for L3 payload) */
432  if (GRE_TUNNEL_TYPE_ERSPAN == t->type)
433  vnet_set_interface_output_node (vnm, hw_if_index,
434  gre_erspan_encap_node.index);
435  else
436  vnet_set_interface_output_node (vnm, hw_if_index,
437  gre_teb_encap_node.index);
438 
439  hi = vnet_get_hw_interface (vnm, hw_if_index);
440  sw_if_index = hi->sw_if_index;
441 
442  t->hw_if_index = hw_if_index;
443  t->outer_fib_index = outer_fib_index;
446 
447  vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
448  gm->tunnel_index_by_sw_if_index[sw_if_index] = t_idx;
449 
450  if (!is_ipv6)
451  {
452  hi->min_packet_bytes =
453  64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
454  }
455  else
456  {
457  hi->min_packet_bytes =
458  64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
459  }
460 
461  /* Standard default gre MTU. */
463 
464  /*
465  * source the FIB entry for the tunnel's destination
466  * and become a child thereof. The tunnel will then get poked
467  * when the forwarding for the entry updates, and the tunnel can
468  * re-stack accordingly
469  */
470 
471  clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
472  t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
474  t->tunnel_dst.fp_addr = a->dst;
475 
476  gre_tunnel_db_add (t, &key);
477 
478  if (t->mode == TUNNEL_MODE_MP)
480 
481  if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
482  {
483  gre_sn_key_t skey;
484  gre_sn_t *gre_sn;
485 
486  gre_mk_sn_key (t, &skey);
487  gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey);
488  if (gre_sn != NULL)
489  {
490  gre_sn->ref_count++;
491  t->gre_sn = gre_sn;
492  }
493  else
494  {
495  gre_sn = clib_mem_alloc (sizeof (gre_sn_t));
496  gre_sn->seq_num = 0;
497  gre_sn->ref_count = 1;
498  t->gre_sn = gre_sn;
499  hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn);
500  }
501  }
502 
503  if (t->type != GRE_TUNNEL_TYPE_L3)
504  {
508  }
509 
510  if (sw_if_indexp)
511  *sw_if_indexp = sw_if_index;
512 
513  /* register gre46-input nodes */
514  ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index);
515  ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index);
516 
517  return 0;
518 }
519 
520 static int
522  u32 outer_fib_index, u32 * sw_if_indexp)
523 {
524  gre_main_t *gm = &gre_main;
525  vnet_main_t *vnm = gm->vnet_main;
526  gre_tunnel_t *t;
529 
530  t = gre_tunnel_db_find (a, outer_fib_index, &key);
531  if (NULL == t)
532  return VNET_API_ERROR_NO_SUCH_ENTRY;
533 
534  if (t->mode == TUNNEL_MODE_MP)
536 
538  vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
539 
540  /* make sure tunnel is removed from l2 bd or xconnect */
541  set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0,
542  L2_BD_PORT_TYPE_NORMAL, 0, 0);
543  gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
544 
545  if (t->type == GRE_TUNNEL_TYPE_L3)
547  else
549 
551  {
554  }
555 
556  ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL));
557  if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1))
558  {
559  gre_sn_key_t skey;
560  gre_mk_sn_key (t, &skey);
561  hash_unset_mem_free (&gm->seq_num_by_key, &skey);
562  clib_mem_free (t->gre_sn);
563  }
564 
565  hash_unset (gm->instance_used, t->user_instance);
567  pool_put (gm->tunnels, t);
568 
569  if (sw_if_indexp)
570  *sw_if_indexp = sw_if_index;
571 
572  return 0;
573 }
574 
575 int
577  u32 * sw_if_indexp)
578 {
579  u32 outer_fib_index;
580 
581  outer_fib_index = fib_table_find ((a->is_ipv6 ?
583  FIB_PROTOCOL_IP4), a->outer_table_id);
584 
585  if (~0 == outer_fib_index)
586  return VNET_API_ERROR_NO_SUCH_FIB;
587 
588  if (a->session_id > GTK_SESSION_ID_MAX)
589  return VNET_API_ERROR_INVALID_SESSION_ID;
590 
591  if (a->mode == TUNNEL_MODE_MP && !ip46_address_is_zero (&a->dst))
592  return (VNET_API_ERROR_INVALID_DST_ADDRESS);
593 
594  if (a->is_add)
595  return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp));
596  else
597  return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp));
598 }
599 
600 clib_error_t *
602 {
603  gre_main_t *gm = &gre_main;
605  gre_tunnel_t *t;
606  u32 ti;
607 
608  hi = vnet_get_hw_interface (vnm, hw_if_index);
609 
610  if (NULL == gm->tunnel_index_by_sw_if_index ||
611  hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index))
612  return (NULL);
613 
614  ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index];
615 
616  if (~0 == ti)
617  /* not one of ours */
618  return (NULL);
619 
620  t = pool_elt_at_index (gm->tunnels, ti);
621 
623  vnet_hw_interface_set_flags (vnm, hw_if_index,
625  else
626  vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
627 
628  gre_tunnel_restack (t);
629 
630  return /* no error */ 0;
631 }
632 
633 static clib_error_t *
635  unformat_input_t * input,
636  vlib_cli_command_t * cmd)
637 {
638  unformat_input_t _line_input, *line_input = &_line_input;
640  ip46_address_t src = ip46_address_initializer, dst =
642  u32 instance = ~0;
643  u32 outer_table_id = 0;
644  gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3;
645  tunnel_mode_t t_mode = TUNNEL_MODE_P2P;
646  tunnel_encap_decap_flags_t flags = TUNNEL_ENCAP_DECAP_FLAG_NONE;
647  u32 session_id = 0;
648  int rv;
649  u8 is_add = 1;
651  clib_error_t *error = NULL;
652 
653  /* Get a line of input. */
654  if (!unformat_user (input, unformat_line_input, line_input))
655  return 0;
656 
657  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
658  {
659  if (unformat (line_input, "del"))
660  is_add = 0;
661  else if (unformat (line_input, "instance %d", &instance))
662  ;
663  else if (unformat (line_input, "src %U", unformat_ip46_address, &src))
664  ;
665  else if (unformat (line_input, "dst %U", unformat_ip46_address, &dst))
666  ;
667  else if (unformat (line_input, "outer-table-id %d", &outer_table_id))
668  ;
669  else if (unformat (line_input, "multipoint"))
670  t_mode = TUNNEL_MODE_MP;
671  else if (unformat (line_input, "teb"))
672  t_type = GRE_TUNNEL_TYPE_TEB;
673  else if (unformat (line_input, "erspan %d", &session_id))
674  t_type = GRE_TUNNEL_TYPE_ERSPAN;
675  else
676  if (unformat
677  (line_input, "flags %U", unformat_tunnel_encap_decap_flags,
678  &flags))
679  ;
680  else
681  {
682  error = clib_error_return (0, "unknown input `%U'",
683  format_unformat_error, line_input);
684  goto done;
685  }
686  }
687 
688  if (ip46_address_is_equal (&src, &dst))
689  {
690  error = clib_error_return (0, "src and dst are identical");
691  goto done;
692  }
693 
694  if (t_mode != TUNNEL_MODE_MP && ip46_address_is_zero (&dst))
695  {
696  error = clib_error_return (0, "destination address not specified");
697  goto done;
698  }
699 
700  if (ip46_address_is_zero (&src))
701  {
702  error = clib_error_return (0, "source address not specified");
703  goto done;
704  }
705 
707  {
708  error =
709  clib_error_return (0, "src and dst address must be the same AF");
710  goto done;
711  }
712 
713  clib_memset (a, 0, sizeof (*a));
714  a->is_add = is_add;
715  a->outer_table_id = outer_table_id;
716  a->type = t_type;
717  a->mode = t_mode;
718  a->session_id = session_id;
719  a->is_ipv6 = !ip46_address_is_ip4 (&src);
720  a->instance = instance;
721  a->flags = flags;
722  clib_memcpy (&a->src, &src, sizeof (a->src));
723  clib_memcpy (&a->dst, &dst, sizeof (a->dst));
724 
726 
727  switch (rv)
728  {
729  case 0:
732  break;
733  case VNET_API_ERROR_IF_ALREADY_EXISTS:
734  error = clib_error_return (0, "GRE tunnel already exists...");
735  goto done;
736  case VNET_API_ERROR_NO_SUCH_FIB:
737  error = clib_error_return (0, "outer table ID %d doesn't exist\n",
739  goto done;
740  case VNET_API_ERROR_NO_SUCH_ENTRY:
741  error = clib_error_return (0, "GRE tunnel doesn't exist");
742  goto done;
743  case VNET_API_ERROR_INVALID_SESSION_ID:
744  error = clib_error_return (0, "session ID %d out of range\n",
745  session_id);
746  goto done;
747  case VNET_API_ERROR_INSTANCE_IN_USE:
748  error = clib_error_return (0, "Instance is in use");
749  goto done;
750  default:
751  error =
752  clib_error_return (0, "vnet_gre_tunnel_add_del returned %d", rv);
753  goto done;
754  }
755 
756 done:
757  unformat_free (line_input);
758 
759  return error;
760 }
761 
762 /* *INDENT-OFF* */
764  .path = "create gre tunnel",
765  .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] "
766  "[outer-fib-id <fib>] [teb | erspan <session-id>] [del] "
767  "[multipoint]",
768  .function = create_gre_tunnel_command_fn,
769 };
770 /* *INDENT-ON* */
771 
772 static clib_error_t *
774  unformat_input_t * input,
775  vlib_cli_command_t * cmd)
776 {
777  gre_main_t *gm = &gre_main;
778  gre_tunnel_t *t;
779  u32 ti = ~0;
780 
781  if (pool_elts (gm->tunnels) == 0)
782  vlib_cli_output (vm, "No GRE tunnels configured...");
783 
785  {
786  if (unformat (input, "%d", &ti))
787  ;
788  else
789  break;
790  }
791 
792  if (~0 == ti)
793  {
794  /* *INDENT-OFF* */
795  pool_foreach (t, gm->tunnels)
796  {
798  }
799  /* *INDENT-ON* */
800  }
801  else
802  {
803  t = pool_elt_at_index (gm->tunnels, ti);
804 
806  }
807 
808  return 0;
809 }
810 
811 /* *INDENT-OFF* */
813  .path = "show gre tunnel",
814  .function = show_gre_tunnel_command_fn,
815 };
816 /* *INDENT-ON* */
817 
818 const static teib_vft_t gre_teib_vft = {
820  .nv_deleted = gre_teib_entry_deleted,
821 };
822 
823 /* force inclusion from application's main.c */
824 clib_error_t *
826 {
828 
829  return (NULL);
830 }
831 
833 
834 /*
835  * fd.io coding-style-patch-verification: ON
836  *
837  * Local Variables:
838  * eval: (c-set-style "gnu")
839  * End:
840  */
ip_address
Definition: ip_types.h:79
gre_tunnel_t::type
gre_tunnel_type_t type
Definition: gre.h:206
create_gre_tunnel_command
static vlib_cli_command_t create_gre_tunnel_command
(constructor) VLIB_CLI_COMMAND (create_gre_tunnel_command)
Definition: interface.c:763
vnet_gre_tunnel_add
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:365
ip_addr_46
#define ip_addr_46(_a)
Definition: ip_types.h:90
adj_midchain.h
gre_tunnel_t::sw_if_index
u32 sw_if_index
Definition: gre.h:205
ip_adjacency_t_::ia_nh_proto
fib_protocol_t ia_nh_proto
The protocol of the neighbor/peer.
Definition: adj.h:350
vnet_sw_interface_set_flags
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:523
gre_sn_t
Used for GRE header seq number generation for ERSPAN encap.
Definition: gre.h:166
unformat_user
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
hash_set
#define hash_set(h, key, value)
Definition: hash.h:255
teib_entry_find_46
teib_entry_t * teib_entry_find_46(u32 sw_if_index, fib_protocol_t fproto, const ip46_address_t *peer)
Definition: teib.c:131
gre_tunnel_add_teib_walk
static walk_rc_t gre_tunnel_add_teib_walk(index_t nei, void *ctx)
Definition: interface.c:353
gre_teib_vft
const static teib_vft_t gre_teib_vft
Definition: interface.c:818
tunnel_encap_decap_flags_t
enum tunnel_encap_decap_flags_t_ tunnel_encap_decap_flags_t
vnet_sw_interface_set_mtu
void vnet_sw_interface_set_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu)
Definition: interface.c:706
WALK_CONTINUE
@ WALK_CONTINUE
Definition: interface_funcs.h:174
gre_teib_entry_deleted
static void gre_teib_entry_deleted(const teib_entry_t *ne)
Definition: interface.c:306
is_ipv6
bool is_ipv6
Definition: dhcp.api:202
gre_main
gre_main_t gre_main
Definition: gre.c:26
gre_mk_sn_key
static void gre_mk_sn_key(const gre_tunnel_t *gt, gre_sn_key_t *key)
Definition: gre.h:428
clib_memcpy
#define clib_memcpy(d, s, n)
Definition: string.h:197
zero_addr
const ip46_address_t zero_addr
#include <vnet/feature/feature.h>
Definition: lookup.c:182
adj_nbr_add_or_lock
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:257
FOR_EACH_FIB_IP_PROTOCOL
#define FOR_EACH_FIB_IP_PROTOCOL(_item)
Definition: fib_types.h:69
VNET_LINK_ETHERNET
@ VNET_LINK_ETHERNET
Definition: interface.h:350
gre_main_t
GRE related global data.
Definition: gre.h:242
ip46_address_initializer
#define ip46_address_initializer
Definition: ip46_address.h:52
unformat_line_input
unformat_function_t unformat_line_input
Definition: format.h:275
ADJ_INDEX_INVALID
#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
gre_sn_t::seq_num
u32 seq_num
Definition: gre.h:168
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:549
pool_get_aligned
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
Definition: pool.h:249
clib_mem_free
static void clib_mem_free(void *p)
Definition: mem.h:314
adj_walk_rc_t
enum adj_walk_rc_t_ adj_walk_rc_t
return codes from a adjacency walker callback function
ip46_address_is_ip4
static u8 ip46_address_is_ip4(const ip46_address_t *ip46)
Definition: ip46_address.h:55
clib_error_return
#define clib_error_return(e, args...)
Definition: error.h:99
adj_midchain_delegate_stack
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
Definition: adj_midchain_delegate.c:101
u8
#define u8
Padding.
Definition: clib.h:121
gre_mk_key6
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_cli_command_t::path
char * path
Definition: cli.h:96
show_gre_tunnel_command
static vlib_cli_command_t show_gre_tunnel_command
(constructor) VLIB_CLI_COMMAND (show_gre_tunnel_command)
Definition: interface.c:812
gre_tunnel_db_add
static void gre_tunnel_db_add(gre_tunnel_t *t, gre_tunnel_key_t *key)
Definition: interface.c:95
mgre_mk_incomplete_walk
adj_walk_rc_t mgre_mk_incomplete_walk(adj_index_t ai, void *data)
Definition: gre.c:468
gre_interface_admin_up_down
clib_error_t * gre_interface_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:601
adj_unlock
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
Definition: adj.c:358
fib_table.h
mgre_adj_walk_cb
static adj_walk_rc_t mgre_adj_walk_cb(adj_index_t ai, void *ctx)
Definition: interface.c:208
gre_tunnel_db_find
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
fib_prefix_t_::fp_len
u16 fp_len
The mask length.
Definition: fib_types.h:206
gre_tunnel_t::flags
tunnel_encap_decap_flags_t flags
Definition: gre.h:208
VNET_SW_INTERFACE_FLAG_ADMIN_UP
@ VNET_SW_INTERFACE_FLAG_ADMIN_UP
Definition: interface.h:844
pool_put
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:305
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
AF_IP4
@ AF_IP4
Definition: ip_types.h:23
gre_tunnel_t::hw_if_index
u32 hw_if_index
Definition: gre.h:204
gre_teib_entry_added
static void gre_teib_entry_added(const teib_entry_t *ne)
An TEIB entry has been added.
Definition: interface.c:262
VNET_HW_INTERFACE_FLAG_LINK_UP
@ VNET_HW_INTERFACE_FLAG_LINK_UP
Definition: interface.h:509
gre_tunnel_stack
void gre_tunnel_stack(adj_index_t ai)
gre_tunnel_stack
Definition: interface.c:130
ip4_register_protocol
void ip4_register_protocol(u32 protocol, u32 node_index)
Definition: ip4_forward.c:1872
hi
vl_api_ip4_address_t hi
Definition: arp.api:37
mpls.h
clib_error_report
#define clib_error_report(e)
Definition: error.h:113
unformat_input_t
struct _unformat_input_t unformat_input_t
teib_entry_get_nh
const fib_prefix_t * teib_entry_get_nh(const teib_entry_t *te)
Definition: teib.c:96
ip4_header_t
Definition: ip4_packet.h:87
error
Definition: cJSON.c:88
hash_unset
#define hash_unset(h, key)
Definition: hash.h:261
key
typedef key
Definition: ipsec_types.api:91
teib_entry_get
teib_entry_t * teib_entry_get(index_t tei)
Definition: teib.c:108
format_gre_tunnel
static u8 * format_gre_tunnel(u8 *s, va_list *args)
Definition: interface.c:46
unformat
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
gre_tunnel_t::tunnel_dst
fib_prefix_t tunnel_dst
The tunnel's destination/remote address.
Definition: gre.h:199
teib.h
hash_set_mem_alloc
static void hash_set_mem_alloc(uword **h, const void *key, uword v)
Definition: hash.h:279
vnet_set_interface_output_node
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 ...
Definition: interface_output.c:1278
format_tunnel_mode
u8 * format_tunnel_mode(u8 *s, va_list *args)
Definition: tunnel.c:36
mgre_tunnel_stack
static void mgre_tunnel_stack(adj_index_t ai)
mgre_tunnel_stack
Definition: interface.c:164
ti
u32 ti
Definition: interface_output.c:425
ip_addr_version
#define ip_addr_version(_a)
Definition: ip_types.h:93
pool_foreach
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
mgre_mk_complete_walk
adj_walk_rc_t mgre_mk_complete_walk(adj_index_t ai, void *data)
Definition: gre.c:437
teib_entry_t_
Definition: teib.c:33
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
ip46_address_is_equal
static u8 ip46_address_is_equal(const ip46_address_t *ip46_1, const ip46_address_t *ip46_2)
Definition: ip46_address.h:93
unformat_free
static void unformat_free(unformat_input_t *i)
Definition: format.h:155
vnet_gre_tunnel_delete
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:521
vnet_gre_tunnel_add_del_args_t
Definition: gre.h:364
gre_tunnel_t::l2_adj_index
adj_index_t l2_adj_index
an L2 tunnel always rquires an L2 midchain.
Definition: gre.h:213
gre_tunnel_db_remove
static void gre_tunnel_db_remove(gre_tunnel_t *t, gre_tunnel_key_t *key)
Definition: interface.c:110
gre_tunnel_type_t
enum gre_tunnel_type_t_ gre_tunnel_type_t
The GRE tunnel type.
ethernet_register_interface
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
vnet_get_hw_interface
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface_funcs.h:44
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
format.h
mgre_walk_ctx_t_
Definition: gre.h:329
hash_get
#define hash_get(h, key)
Definition: hash.h:249
unformat_check_input
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:163
index_t
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:43
format_gre_tunnel_type
u8 * format_gre_tunnel_type(u8 *s, va_list *args)
Definition: interface.c:29
MODE_L3
#define MODE_L3
Definition: l2_input.h:284
uword
u64 uword
Definition: types.h:112
vnet_delete_hw_interface
void vnet_delete_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:1051
unformat_tunnel_encap_decap_flags
uword unformat_tunnel_encap_decap_flags(unformat_input_t *input, va_list *args)
Definition: tunnel.c:82
gre_teib_mk_key
static void gre_teib_mk_key(const gre_tunnel_t *t, const teib_entry_t *ne, gre_tunnel_key_t *key)
Definition: interface.c:238
gre_tunnel_t
A representation of a GRE tunnel.
Definition: gre.h:185
show_gre_tunnel_command_fn
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:773
unformat_ip46_address
unformat_function_t unformat_ip46_address
Definition: format.h:63
gre_interface_init
clib_error_t * gre_interface_init(vlib_main_t *vm)
Definition: interface.c:825
gre_tunnel_t::session_id
u16 session_id
ERSPAN type 2 session ID, least significant 10 bits of u16.
Definition: gre.h:218
session_id
u32 session_id
Definition: flow_types.api:131
format_unformat_error
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
teib_vft_t_
Definition: teib.h:72
address
manual_print typedef address
Definition: ip_types.api:96
VLIB_CLI_COMMAND
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:163
src
vl_api_address_t src
Definition: gre.api:54
nh
vl_api_fib_path_nh_t nh
Definition: fib_types.api:126
fib_protocol_t
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
gre_tunnel_t::mode
tunnel_mode_t mode
Definition: gre.h:207
gre_tunnel_restack
static void gre_tunnel_restack(gre_tunnel_t *gt)
Definition: interface.c:216
gre_tunnel_t::tunnel_src
ip46_address_t tunnel_src
The tunnel's source/local address.
Definition: gre.h:195
ip_adjacency_t_
IP unicast adjacency.
Definition: adj.h:235
FIB_PROTOCOL_IP4
@ FIB_PROTOCOL_IP4
Definition: fib_types.h:36
gre_teb_encap_node
vlib_node_registration_t gre_teb_encap_node
(constructor) VLIB_REGISTER_NODE (gre_teb_encap_node)
Definition: gre.c:695
gre_tunnel_t::dev_instance
u32 dev_instance
Definition: gre.h:229
teib_entry_get_fib_index
u32 teib_entry_get_fib_index(const teib_entry_t *te)
Definition: teib.c:84
CLIB_CACHE_LINE_BYTES
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:58
vlib_cli_output
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:716
fib_prefix_t_::fp_addr
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:225
l2_input.h
adj_midchain_delegate_unstack
void adj_midchain_delegate_unstack(adj_index_t ai)
unstack a midchain delegate (this stacks it on a drop)
Definition: adj_midchain_delegate.c:135
ethernet_delete_interface
void ethernet_delete_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:393
gm
#define gm
Definition: dlmalloc.c:1219
ip46_address_is_zero
static u8 ip46_address_is_zero(const ip46_address_t *ip46)
Definition: ip46_address.h:87
create_gre_tunnel_command_fn
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:634
set_int_l2_mode
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
hash_get_mem
#define hash_get_mem(h, key)
Definition: hash.h:269
vnet_hw_interface_t
Definition: interface.h:638
vnet_main_t
Definition: vnet.h:76
ip_adjacency_t_::sub_type
union ip_adjacency_t_::@144 sub_type
gre_hw_interface_class
vnet_hw_interface_class_t gre_hw_interface_class
teib_walk_itf
void teib_walk_itf(u32 sw_if_index, teib_walk_cb_t fn, void *ctx)
Definition: teib.c:328
teib_register
void teib_register(const teib_vft_t *vft)
Definition: teib.c:408
L2_BD_PORT_TYPE_NORMAL
@ L2_BD_PORT_TYPE_NORMAL
Definition: l2_bd.h:28
foreach_gre_tunnel_type
@ foreach_gre_tunnel_type
Definition: gre.h:59
format_vnet_sw_if_index_name
format_function_t format_vnet_sw_if_index_name
Definition: interface_funcs.h:458
format
description fragment has unexpected format
Definition: map.api:433
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
vec_validate_init_empty
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header,...
Definition: vec.h:570
format_ip46_address
format_function_t format_ip46_address
Definition: ip46_address.h:50
teib_entry_get_sw_if_index
u32 teib_entry_get_sw_if_index(const teib_entry_t *te)
accessors for the opaque struct
Definition: teib.c:72
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
teib_vft_t_::nv_added
teib_entry_added_t nv_added
Definition: teib.h:74
FIB_PROTOCOL_IP6
@ FIB_PROTOCOL_IP6
Definition: fib_types.h:37
dst
vl_api_ip4_address_t dst
Definition: pnat.api:41
ctx
long ctx[MAX_CONNS]
Definition: main.c:144
teib_entry_get_peer
const ip_address_t * teib_entry_get_peer(const teib_entry_t *te)
Definition: teib.c:90
instance
u32 instance
Definition: gre.api:51
outer_table_id
u32 outer_table_id
Definition: gre.api:52
pool_elts
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:127
gre6_input_node
vlib_node_registration_t gre6_input_node
(constructor) VLIB_REGISTER_NODE (gre6_input_node)
Definition: node.c:479
GTK_SESSION_ID_MAX
#define GTK_SESSION_ID_MAX
The session ID is only a 10 bit value.
Definition: gre.h:161
fib_prefix_t_::fp_proto
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:211
ip6_header_t
Definition: ip6_packet.h:294
gre_mk_key4
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
hash_unset_mem_free
static void hash_unset_mem_free(uword **h, const void *key)
Definition: hash.h:295
adj_nbr.h
gre_tunnel_key_t_
Union of the two possible key types.
Definition: gre.h:152
adj_index_t
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
tunnel_mode_t
enum tunnel_mode_t_ tunnel_mode_t
gre_sn_t::ref_count
u32 ref_count
Definition: gre.h:169
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
gre_header_t
Definition: packet.h:37
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
vnet_hw_interface_set_flags
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:513
a
a
Definition: bitmap.h:525
adj_nbr_walk_nh
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:684
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
teib_entry_adj_stack
void teib_entry_adj_stack(const teib_entry_t *te, adj_index_t ai)
Definition: teib.c:102
gre_tunnel_t::gre_sn
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
ADJ_WALK_RC_CONTINUE
@ ADJ_WALK_RC_CONTINUE
Definition: adj_types.h:44
ip_adjacency_t_::nbr
struct ip_adjacency_t_::@144::@145 nbr
IP_LOOKUP_NEXT_ARP/IP_LOOKUP_NEXT_REWRITE.
gre_adj_walk_cb
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:201
vnet_gre_tunnel_add_del
int vnet_gre_tunnel_add_del(vnet_gre_tunnel_add_del_args_t *a, u32 *sw_if_indexp)
Definition: interface.c:576
adj_nbr_walk
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:592
ip6_register_protocol
void ip6_register_protocol(u32 protocol, u32 node_index)
Definition: ip6_forward.c:1677
rv
int __clib_unused rv
Definition: application.c:491
IP46_TYPE_ANY
@ IP46_TYPE_ANY
Definition: ip46_address.h:24
vnet_hw_interface_get_flags
static uword vnet_hw_interface_get_flags(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface_funcs.h:299
gre4_input_node
vlib_node_registration_t gre4_input_node
(constructor) VLIB_REGISTER_NODE (gre4_input_node)
Definition: node.c:459
gre_tunnel_delete_teib_walk
static walk_rc_t gre_tunnel_delete_teib_walk(index_t nei, void *ctx)
Definition: interface.c:341
vnet.h
gre_sn_key_t
Hash key for GRE header seq number generation for ERSPAN encap.
Definition: gre.h:175
gre_tunnel_t::outer_fib_index
u32 outer_fib_index
The FIB in which the src.dst address are present.
Definition: gre.h:203
proto
vl_api_ip_proto_t proto
Definition: acl_types.api:51
vlib_cli_command_t
Definition: cli.h:92
gre_erspan_encap_node
vlib_node_registration_t gre_erspan_encap_node
(constructor) VLIB_REGISTER_NODE (gre_erspan_encap_node)
Definition: gre.c:708
INDEX_INVALID
#define INDEX_INVALID
Invalid index - used when no index is known blazoned capitals INVALID speak volumes where ~0 does not...
Definition: dpo.h:49
fib_table_find
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:1111
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
gre_tunnel_t::user_instance
u32 user_instance
Definition: gre.h:230
mgre_hw_interface_class
vnet_hw_interface_class_t mgre_hw_interface_class
walk_rc_t
enum walk_rc_t_ walk_rc_t
Walk return code.
adj_get
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:470
clib_mem_alloc
static void * clib_mem_alloc(uword size)
Definition: mem.h:256
fib_prefix_t_
Aggregate type for a prefix.
Definition: fib_types.h:202
type
vl_api_fib_path_type_t type
Definition: fib_types.api:123
vnet_register_interface
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:812
gre_update_adj
void gre_update_adj(vnet_main_t *vnm, u32 sw_if_index, adj_index_t ai)
Definition: gre.c:404
gre.h
UNFORMAT_END_OF_INPUT
#define UNFORMAT_END_OF_INPUT
Definition: format.h:137
gre_device_class
vnet_device_class_t gre_device_class
flags
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105