FD.io VPP  v20.01-48-g3e0dafb74
Vector Packet Processing
mpls_tunnel.c
Go to the documentation of this file.
1 /*
2  * mpls_tunnel.c: MPLS tunnel interfaces (i.e. for RSVP-TE)
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/pg/pg.h>
20 #include <vnet/mpls/mpls_tunnel.h>
21 #include <vnet/mpls/mpls_types.h>
22 #include <vnet/ip/ip.h>
23 #include <vnet/fib/fib_path_list.h>
24 #include <vnet/adj/adj_midchain.h>
25 #include <vnet/adj/adj_mcast.h>
26 #include <vnet/dpo/replicate_dpo.h>
27 #include <vnet/fib/mpls_fib.h>
28 
29 /**
30  * @brief pool of tunnel instances
31  */
33 
34 /**
35  * @brief DB of SW index to tunnel index
36  */
38 
39 /**
40  * @brief MPLS tunnel flags strings
41  */
43 
44 /**
45  * @brief Get a tunnel object from a SW interface index
46  */
47 static mpls_tunnel_t*
49 {
50  if ((vec_len(mpls_tunnel_db) <= sw_if_index) ||
51  (~0 == mpls_tunnel_db[sw_if_index]))
52  return (NULL);
53 
54  return (pool_elt_at_index(mpls_tunnel_pool,
55  mpls_tunnel_db[sw_if_index]));
56 }
57 
58 /**
59  * @brief Build a rewrite string for the MPLS tunnel.
60  */
61 static u8*
63 {
64  /*
65  * passing the adj code a NULL rewrite means 'i don't have one cos
66  * t'other end is unresolved'. That's not the case here. For the mpls
67  * tunnel there are just no bytes of encap to apply in the adj. We'll impose
68  * the label stack once we choose a path. So return a zero length rewrite.
69  */
70  u8 *rewrite = NULL;
71 
72  vec_validate(rewrite, 0);
73  vec_reset_length(rewrite);
74 
75  return (rewrite);
76 }
77 
78 /**
79  * @brief Build a rewrite string for the MPLS tunnel.
80  */
81 static u8*
84  vnet_link_t link_type,
85  const void *dst_address)
86 {
87  return (mpls_tunnel_build_rewrite_i());
88 }
89 
91 {
93  const mpls_tunnel_t *mt;
96 
99  fib_node_index_t path_index,
100  void *arg)
101 {
103  fib_path_ext_t *path_ext;
104 
105  ctx = arg;
106 
107  /*
108  * if the path is not resolved, don't include it.
109  */
110  if (!fib_path_is_resolved(path_index))
111  {
113  }
114 
115  /*
116  * get the matching path-extension for the path being visited.
117  */
119  path_index);
120 
121  /*
122  * we don't want IP TTL decrements for packets hitting the MPLS labels
123  * we stack on, since the IP TTL decrement is done by the adj
124  */
126 
127  /*
128  * found a matching extension. stack it to obtain the forwarding
129  * info for this path.
130  */
131  ctx->next_hops = fib_path_ext_stack(path_ext,
132  ctx->fct,
133  ctx->fct,
134  ctx->next_hops);
135 
137 }
138 
139 static void
141  vnet_link_t linkt,
143  dpo_id_t *dpo_lb)
144 {
145  dpo_proto_t lb_proto;
146 
147  /*
148  * If the entry has path extensions then we construct a load-balance
149  * by stacking the extensions on the forwarding chains of the paths.
150  * Otherwise we use the load-balance of the path-list
151  */
153  .mt = mt,
154  .next_hops = NULL,
155  .fct = fct,
156  };
157 
158  /*
159  * As an optimisation we allocate the vector of next-hops to be sized
160  * equal to the maximum nuber of paths we will need, which is also the
161  * most likely number we will need, since in most cases the paths are 'up'.
162  */
165 
166  lb_proto = fib_forw_chain_type_to_dpo_proto(fct);
167 
169  {
172  &ctx);
173  }
174 
175  if (!dpo_id_is_valid(dpo_lb))
176  {
177  /*
178  * first time create
179  */
181  {
182  dpo_set(dpo_lb,
184  lb_proto,
185  replicate_create(0, lb_proto));
186  }
187  else
188  {
189  flow_hash_config_t fhc;
190 
191  switch (linkt)
192  {
193  case VNET_LINK_MPLS:
195  break;
196  case VNET_LINK_IP4:
197  case VNET_LINK_IP6:
198  fhc = IP_FLOW_HASH_DEFAULT;
199  break;
200  default:
201  fhc = 0;
202  break;
203  }
204 
205  dpo_set(dpo_lb,
207  lb_proto,
208  load_balance_create(0, lb_proto, fhc));
209  }
210  }
211 
213  {
214  /*
215  * MPLS multicast
216  */
218  }
219  else
220  {
222  ctx.next_hops,
224  vec_free(ctx.next_hops);
225  }
226 }
227 
228 /**
229  * mpls_tunnel_stack
230  *
231  * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
232  */
233 static void
235 {
236  ip_adjacency_t *adj;
237  mpls_tunnel_t *mt;
239 
240  adj = adj_get(ai);
241  sw_if_index = adj->rewrite_header.sw_if_index;
242 
243  mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
244 
245  if (NULL == mt || FIB_NODE_INDEX_INVALID == mt->mt_path_list)
246  return;
247 
249  {
251  return;
252  }
253 
254  /*
255  * while we're stacking the adj, remove the tunnel from the child list
256  * of the path list. this breaks a circular dependency of walk updates
257  * where the create of adjacencies in the children can lead to walks
258  * that get back here.
259  */
261 
263  mt->mt_sibling_index);
264 
265  /*
266  * Construct the DPO (load-balance or replicate) that we can stack
267  * the tunnel's midchain on
268  */
270  mt->mt_hw_if_index) &
272  {
273  dpo_id_t dpo = DPO_INVALID;
274 
276  adj->ia_link,
278  adj_get_link_type(ai)),
279  &dpo);
280 
281  adj_nbr_midchain_stack(ai, &dpo);
282  dpo_reset(&dpo);
283  }
284  else
285  {
287  }
288 
291  mt - mpls_tunnel_pool);
292 
294 }
295 
296 /**
297  * @brief Call back when restacking all adjacencies on a MPLS interface
298  */
299 static adj_walk_rc_t
301  void *ctx)
302 {
303  mpls_tunnel_stack(ai);
304 
305  return (ADJ_WALK_RC_CONTINUE);
306 }
307 
308 static void
310 {
312 
313  /*
314  * walk all the adjacencies on the MPLS interface and restack them
315  */
316  if (mt->mt_flags & MPLS_TUNNEL_FLAG_L2)
317  {
318  /*
319  * Stack a load-balance that drops, whilst we have no paths
320  */
322  dpo_id_t dpo = DPO_INVALID;
323 
327  &dpo);
328 
331  &mt->mt_l2_lb,
332  &dpo);
333  dpo_reset(&dpo);
334  }
335  else
336  {
337  FOR_EACH_FIB_PROTOCOL(proto)
338  {
340  proto,
342  NULL);
343  }
344  }
345 }
346 
347 static clib_error_t *
349  u32 hw_if_index,
350  u32 flags)
351 {
353  mpls_tunnel_t *mt;
354 
355  hi = vnet_get_hw_interface (vnm, hw_if_index);
356 
358 
359  if (NULL == mt)
360  return (NULL);
361 
363  vnet_hw_interface_set_flags (vnm, hw_if_index,
365  else
366  vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */);
367 
369 
370  return (NULL);
371 }
372 
373 /**
374  * @brief Fixup the adj rewrite post encap. This is a no-op since the
375  * rewrite is a stack of labels.
376  */
377 static void
379  const ip_adjacency_t *adj,
380  vlib_buffer_t *b0,
381  const void*data)
382 {
383  /*
384  * A no-op w.r.t. the header. but reset the 'have we pushed any
385  * MPLS labels onto the packet' flag. That way when we enter the
386  * tunnel we'll get a TTL set to 255
387  */
388  vnet_buffer(b0)->mpls.first = 0;
389 }
390 
391 static void
394  adj_index_t ai)
395 {
396  ip_adjacency_t *adj;
397 
398  ASSERT(ADJ_INDEX_INVALID != ai);
399 
400  adj = adj_get(ai);
401 
402  switch (adj->lookup_next_index)
403  {
404  case IP_LOOKUP_NEXT_ARP:
408  NULL,
411  break;
413  /*
414  * Construct a partial rewrite from the known ethernet mcast dest MAC
415  * There's no MAC fixup, so the last 2 parameters are 0
416  */
418  NULL,
421  0, 0);
422  break;
423 
424  case IP_LOOKUP_NEXT_DROP:
425  case IP_LOOKUP_NEXT_PUNT:
431  case IP_LOOKUP_N_NEXT:
432  ASSERT (0);
433  break;
434  }
435 
436  mpls_tunnel_stack(ai);
437 }
438 
439 static u8 *
440 format_mpls_tunnel_name (u8 * s, va_list * args)
441 {
442  u32 dev_instance = va_arg (*args, u32);
443  return format (s, "mpls-tunnel%d", dev_instance);
444 }
445 
446 static u8 *
447 format_mpls_tunnel_device (u8 * s, va_list * args)
448 {
449  u32 dev_instance = va_arg (*args, u32);
450  CLIB_UNUSED (int verbose) = va_arg (*args, int);
451 
452  return (format (s, "MPLS-tunnel: id %d\n", dev_instance));
453 }
454 
455 /**
456  * @brief Packet trace structure
457  */
458 typedef struct mpls_tunnel_trace_t_
459 {
460  /**
461  * Tunnel-id / index in tunnel vector
462  */
465 
466 static u8 *
468  va_list * args)
469 {
470  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
471  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
472  mpls_tunnel_trace_t * t = va_arg (*args, mpls_tunnel_trace_t *);
473 
474  s = format (s, "MPLS: tunnel %d", t->tunnel_id);
475  return s;
476 }
477 
478 /**
479  * @brief TX function. Only called L2. L3 traffic uses the adj-midchains
480  */
481 static uword
485 {
486  u32 next_index;
487  u32 * from, * to_next, n_left_from, n_left_to_next;
488  vnet_interface_output_runtime_t * rd = (void *) node->runtime_data;
489  const mpls_tunnel_t *mt;
490 
491  mt = pool_elt_at_index(mpls_tunnel_pool, rd->dev_instance);
492 
493  /* Vector of buffer / pkt indices we're supposed to process */
494  from = vlib_frame_vector_args (frame);
495 
496  /* Number of buffers / pkts */
497  n_left_from = frame->n_vectors;
498 
499  /* Speculatively send the first buffer to the last disposition we used */
500  next_index = node->cached_next_index;
501 
502  while (n_left_from > 0)
503  {
504  /* set up to enqueue to our disposition with index = next_index */
505  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
506 
507  /*
508  * FIXME DUAL LOOP
509  */
510  while (n_left_from > 0 && n_left_to_next > 0)
511  {
512  vlib_buffer_t * b0;
513  u32 bi0;
514 
515  bi0 = from[0];
516  to_next[0] = bi0;
517  from += 1;
518  to_next += 1;
519  n_left_from -= 1;
520  n_left_to_next -= 1;
521 
522  b0 = vlib_get_buffer(vm, bi0);
523 
524  vnet_buffer(b0)->ip.adj_index[VLIB_TX] = mt->mt_l2_lb.dpoi_index;
525  /* since we are coming out of the L2 world, where the vlib_buffer
526  * union is used for other things, make sure it is clean for
527  * MPLS from now on.
528  */
529  vnet_buffer(b0)->mpls.first = 0;
530 
531  if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
532  {
533  mpls_tunnel_trace_t *tr = vlib_add_trace (vm, node,
534  b0, sizeof (*tr));
535  tr->tunnel_id = rd->dev_instance;
536  }
537 
538  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
539  to_next, n_left_to_next,
540  bi0, mt->mt_l2_lb.dpoi_next_node);
541  }
542 
543  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
544  }
545 
546  return frame->n_vectors;
547 }
548 
549 VNET_DEVICE_CLASS (mpls_tunnel_class) = {
550  .name = "MPLS tunnel device",
551  .format_device_name = format_mpls_tunnel_name,
552  .format_device = format_mpls_tunnel_device,
553  .format_tx_trace = format_mpls_tunnel_tx_trace,
554  .tx_function = mpls_tunnel_tx,
555  .admin_up_down_function = mpls_tunnel_admin_up_down,
556 };
557 
558 VNET_HW_INTERFACE_CLASS (mpls_tunnel_hw_interface_class) = {
559  .name = "MPLS-Tunnel",
560  .update_adjacency = mpls_tunnel_update_adj,
561  .build_rewrite = mpls_tunnel_build_rewrite,
563 };
564 
565 const mpls_tunnel_t *
567 {
568  return (pool_elt_at_index(mpls_tunnel_pool, mti));
569 }
570 
571 /**
572  * @brief Walk all the MPLS tunnels
573  */
574 void
576  void *ctx)
577 {
578  u32 mti;
579 
580  pool_foreach_index(mti, mpls_tunnel_pool,
581  ({
582  cb(mti, ctx);
583  }));
584 }
585 
586 void
588 {
589  mpls_tunnel_t *mt;
590 
591  mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
592 
593  if (NULL == mt)
594  return;
595 
598  mt->mt_sibling_index);
599  dpo_reset(&mt->mt_l2_lb);
600 
602 
603  pool_put(mpls_tunnel_pool, mt);
605 }
606 
607 u32
609  u8 is_multicast)
610 {
612  mpls_tunnel_t *mt;
613  vnet_main_t * vnm;
614  u32 mti;
615 
616  vnm = vnet_get_main();
617  pool_get(mpls_tunnel_pool, mt);
618  clib_memset (mt, 0, sizeof (*mt));
619  mti = mt - mpls_tunnel_pool;
623 
624  if (is_multicast)
626  if (l2_only)
628 
629  /*
630  * Create a new tunnel HW interface
631  */
633  vnm,
634  mpls_tunnel_class.index,
635  mti,
636  mpls_tunnel_hw_interface_class.index,
637  mti);
638  hi = vnet_get_hw_interface (vnm, mt->mt_hw_if_index);
639 
640  /* Standard default MPLS tunnel MTU. */
641  vnet_sw_interface_set_mtu (vnm, hi->sw_if_index, 9000);
642 
643  /*
644  * Add the new tunnel to the tunnel DB - key:SW if index
645  */
646  mt->mt_sw_if_index = hi->sw_if_index;
648  mpls_tunnel_db[mt->mt_sw_if_index] = mti;
649 
650  return (mt->mt_sw_if_index);
651 }
652 
653 void
655  fib_route_path_t *rpaths)
656 {
657  fib_route_path_t *rpath;
658  mpls_tunnel_t *mt;
659  u32 mti;
660 
661  mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
662 
663  if (NULL == mt)
664  return;
665 
666  mti = mt - mpls_tunnel_pool;
667 
668  /*
669  * construct a path-list from the path provided
670  */
672  {
676  mti);
677  }
678  else
679  {
680  fib_node_index_t old_pl_index;
681 
682  old_pl_index = mt->mt_path_list;
683 
684  mt->mt_path_list =
685  fib_path_list_copy_and_path_add(old_pl_index,
687  rpaths);
688 
689  fib_path_list_child_remove(old_pl_index,
690  mt->mt_sibling_index);
693  mti);
694  /*
695  * re-resolve all the path-extensions with the new path-list
696  */
698  }
699  vec_foreach(rpath, rpaths)
700  {
702  mt->mt_path_list,
704  rpath);
705  }
707 }
708 
709 int
711  fib_route_path_t *rpaths)
712 {
713  mpls_tunnel_t *mt;
714  u32 mti;
715 
716  mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
717 
718  if (NULL == mt)
719  return (0);
720 
721  mti = mt - mpls_tunnel_pool;
722 
723  /*
724  * construct a path-list from the path provided
725  */
727  {
728  /* can't remove a path if we have onoe */
729  return (0);
730  }
731  else
732  {
733  fib_node_index_t old_pl_index;
734 
735  old_pl_index = mt->mt_path_list;
736 
737  fib_path_list_lock(old_pl_index);
738  mt->mt_path_list =
741  rpaths);
742 
743  fib_path_list_child_remove(old_pl_index,
744  mt->mt_sibling_index);
745 
747  {
748  /* no paths left */
749  fib_path_list_unlock(old_pl_index);
750  return (0);
751  }
752  else
753  {
754  mt->mt_sibling_index =
757  mti);
758  }
759  /*
760  * find the matching path extension and remove it
761  */
764  rpaths);
765 
766  /*
767  * re-resolve all the path-extensions with the new path-list
768  */
770  mt->mt_path_list);
771 
773  fib_path_list_unlock(old_pl_index);
774  }
775 
777 }
778 
779 int
781 {
782  mpls_tunnel_t *mt;
783 
784  mt = mpls_tunnel_get_from_sw_if_index(sw_if_index);
785 
786  if (NULL == mt)
787  return (~0);
788 
789  return (mt - mpls_tunnel_pool);
790 }
791 
792 static clib_error_t *
794  unformat_input_t * input,
795  vlib_cli_command_t * cmd)
796 {
797  unformat_input_t _line_input, * line_input = &_line_input;
798  vnet_main_t * vnm = vnet_get_main();
799  u8 is_del = 0, l2_only = 0, is_multicast =0;
800  fib_route_path_t rpath, *rpaths = NULL;
801  u32 sw_if_index = ~0, payload_proto;
802  clib_error_t *error = NULL;
803 
804  clib_memset(&rpath, 0, sizeof(rpath));
805  payload_proto = DPO_PROTO_MPLS;
806 
807  /* Get a line of input. */
808  if (! unformat_user (input, unformat_line_input, line_input))
809  return 0;
810 
811  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
812  {
813  if (unformat (line_input, "del %U",
815  &sw_if_index))
816  is_del = 1;
817  else if (unformat (line_input, "add %U",
819  &sw_if_index))
820  is_del = 0;
821  else if (unformat (line_input, "add"))
822  is_del = 0;
823  else if (unformat (line_input, "l2-only"))
824  l2_only = 1;
825  else if (unformat (line_input, "multicast"))
826  is_multicast = 1;
827  else if (unformat (line_input, "via %U",
829  &rpath, &payload_proto))
830  vec_add1(rpaths, rpath);
831  else
832  {
833  error = clib_error_return (0, "unknown input '%U'",
834  format_unformat_error, line_input);
835  goto done;
836  }
837  }
838 
839  if (is_del)
840  {
841  if (NULL == rpaths)
842  {
843  vnet_mpls_tunnel_del(sw_if_index);
844  }
845  else if (!vnet_mpls_tunnel_path_remove(sw_if_index, rpaths))
846  {
847  vnet_mpls_tunnel_del(sw_if_index);
848  }
849  }
850  else
851  {
852  if (0 == vec_len(rpath.frp_label_stack))
853  {
854  error = clib_error_return (0, "No Output Labels '%U'",
855  format_unformat_error, line_input);
856  goto done;
857  }
858 
859  if (~0 == sw_if_index)
860  {
861  sw_if_index = vnet_mpls_tunnel_create(l2_only, is_multicast);
862  }
863  vnet_mpls_tunnel_path_add(sw_if_index, rpaths);
864  }
865 
866 done:
867  vec_free(rpaths);
868  unformat_free (line_input);
869 
870  return error;
871 }
872 
873 /*?
874  * This command create a uni-directional MPLS tunnel
875  *
876  * @cliexpar
877  * @cliexstart{create mpls tunnel}
878  * create mpls tunnel via 10.0.0.1 GigEthernet0/8/0 out-label 33 out-label 34
879  * @cliexend
880  ?*/
881 VLIB_CLI_COMMAND (create_mpls_tunnel_command, static) = {
882  .path = "mpls tunnel",
883  .short_help =
884  "mpls tunnel [multicast] [l2-only] via [next-hop-address] [next-hop-interface] [next-hop-table <value>] [weight <value>] [preference <value>] [udp-encap-id <value>] [ip4-lookup-in-table <value>] [ip6-lookup-in-table <value>] [mpls-lookup-in-table <value>] [resolve-via-host] [resolve-via-connected] [rx-ip4 <interface>] [out-labels <value value value>]",
886 };
887 
888 static u8 *
889 format_mpls_tunnel (u8 * s, va_list * args)
890 {
891  mpls_tunnel_t *mt = va_arg (*args, mpls_tunnel_t *);
893 
894  s = format(s, "mpls-tunnel%d: sw_if_index:%d hw_if_index:%d",
895  mt - mpls_tunnel_pool,
896  mt->mt_sw_if_index,
897  mt->mt_hw_if_index);
898  if (MPLS_TUNNEL_FLAG_NONE != mt->mt_flags) {
899  s = format(s, " \n flags:");
901  if ((1<<attr) & mt->mt_flags) {
902  s = format (s, "%s,", mpls_tunnel_attribute_names[attr]);
903  }
904  }
905  }
906  s = format(s, "\n via:\n");
908  s = format(s, "%U", format_fib_path_ext_list, &mt->mt_path_exts);
909  s = format(s, "\n");
910 
911  if (mt->mt_flags & MPLS_TUNNEL_FLAG_L2)
912  {
913  s = format(s, " forwarding: %U\n",
916  s = format(s, " %U\n", format_dpo_id, &mt->mt_l2_lb, 2);
917  }
918 
919  return (s);
920 }
921 
922 static clib_error_t *
924  unformat_input_t * input,
925  vlib_cli_command_t * cmd)
926 {
927  mpls_tunnel_t * mt;
928  u32 mti = ~0;
929 
930  if (pool_elts (mpls_tunnel_pool) == 0)
931  vlib_cli_output (vm, "No MPLS tunnels configured...");
932 
934  {
935  if (unformat (input, "%d", &mti))
936  ;
937  else
938  break;
939  }
940 
941  if (~0 == mti)
942  {
943  pool_foreach (mt, mpls_tunnel_pool,
944  ({
945  vlib_cli_output (vm, "[@%d] %U",
946  mt - mpls_tunnel_pool,
947  format_mpls_tunnel, mt);
948  }));
949  }
950  else
951  {
952  if (pool_is_free_index(mpls_tunnel_pool, mti))
953  return clib_error_return (0, "Not a tunnel index %d", mti);
954 
955  mt = pool_elt_at_index(mpls_tunnel_pool, mti);
956 
957  vlib_cli_output (vm, "[@%d] %U",
958  mt - mpls_tunnel_pool,
959  format_mpls_tunnel, mt);
960  }
961 
962  return 0;
963 }
964 
965 /*?
966  * This command to show MPLS tunnels
967  *
968  * @cliexpar
969  * @cliexstart{sh mpls tunnel 2}
970  * [@2] mpls_tunnel2: sw_if_index:5 hw_if_index:5
971  * label-stack:
972  * 3,
973  * via:
974  * index:26 locks:1 proto:ipv4 uPRF-list:26 len:1 itfs:[2, ]
975  * index:26 pl-index:26 ipv4 weight=1 attached-nexthop: oper-flags:resolved,
976  * 10.0.0.2 loop0
977  * [@0]: ipv4 via 10.0.0.2 loop0: IP4: de:ad:00:00:00:00 -> 00:00:11:aa:bb:cc
978  * @cliexend
979  ?*/
980 VLIB_CLI_COMMAND (show_mpls_tunnel_command, static) = {
981  .path = "show mpls tunnel",
982  .function = show_mpls_tunnel_command_fn,
983 };
984 
985 static mpls_tunnel_t *
987 {
989  return ((mpls_tunnel_t*) (((char*)node) -
990  STRUCT_OFFSET_OF(mpls_tunnel_t, mt_node)));
991 }
992 
993 /**
994  * Function definition to backwalk a FIB node
995  */
999 {
1001 
1002  return (FIB_NODE_BACK_WALK_CONTINUE);
1003 }
1004 
1005 /**
1006  * Function definition to get a FIB node from its index
1007  */
1008 static fib_node_t*
1010 {
1011  mpls_tunnel_t * mt;
1012 
1013  mt = pool_elt_at_index(mpls_tunnel_pool, index);
1014 
1015  return (&mt->mt_node);
1016 }
1017 
1018 /**
1019  * Function definition to inform the FIB node that its last lock has gone.
1020  */
1021 static void
1023 {
1024  /*
1025  * The MPLS MPLS tunnel is a root of the graph. As such
1026  * it never has children and thus is never locked.
1027  */
1028  ASSERT(0);
1029 }
1030 
1031 /*
1032  * Virtual function table registered by MPLS MPLS tunnels
1033  * for participation in the FIB object graph.
1034  */
1035 const static fib_node_vft_t mpls_vft = {
1037  .fnv_last_lock = mpls_tunnel_last_lock_gone,
1038  .fnv_back_walk = mpls_tunnel_back_walk,
1039 };
1040 
1041 static clib_error_t *
1043 {
1045 
1046  return 0;
1047 }
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:440
int fib_path_is_resolved(fib_node_index_t path_index)
Definition: fib_path.c:2682
void dpo_stack_from_node(u32 child_node_index, dpo_id_t *dpo, const dpo_id_t *parent)
Stack one DPO object on another, and thus establish a child parent relationship.
Definition: dpo.c:531
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
static u8 * format_mpls_tunnel_tx_trace(u8 *s, va_list *args)
Definition: mpls_tunnel.c:467
Packet trace structure.
Definition: mpls_tunnel.c:458
u8 proto
Definition: acl_types.api:47
fib_forward_chain_type_t fib_forw_chain_type_from_link_type(vnet_link_t link_type)
Convert from a adjacency&#39;s link type to chain type.
Definition: fib_types.c:410
#define CLIB_UNUSED(x)
Definition: clib.h:82
static void mpls_tunnel_fixup(vlib_main_t *vm, const ip_adjacency_t *adj, vlib_buffer_t *b0, const void *data)
Fixup the adj rewrite post encap.
Definition: mpls_tunnel.c:378
void fib_path_list_child_remove(fib_node_index_t path_list_index, u32 si)
u8 runtime_data[0]
Function dependent node-runtime data.
Definition: node.h:523
A representation of a path as described by a route producer.
Definition: fib_types.h:485
static fib_path_list_walk_rc_t mpls_tunnel_collect_forwarding(fib_node_index_t pl_index, fib_node_index_t path_index, void *arg)
Definition: mpls_tunnel.c:98
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
fib_node_index_t mt_path_list
The path-list over which the tunnel&#39;s destination is reachable.
Definition: mpls_tunnel.h:86
void fib_node_init(fib_node_t *node, fib_node_type_t type)
Definition: fib_node.c:185
uword unformat_fib_route_path(unformat_input_t *input, va_list *args)
Unformat a fib_route_path_t from CLI input.
Definition: fib_types.c:457
static int dpo_id_is_valid(const dpo_id_t *dpoi)
Return true if the DPO object is valid, i.e.
Definition: dpo.h:209
#define FOR_EACH_MPLS_TUNNEL_ATTRIBUTE(_item)
Definition: mpls_tunnel.h:40
Multicast Adjacency.
Definition: adj.h:82
vnet_link_t adj_get_link_type(adj_index_t ai)
Return the link type of the adjacency.
Definition: adj.c:475
#define NULL
Definition: clib.h:58
mpls_tunnel_flags_t mt_flags
Tunnel flags.
Definition: mpls_tunnel.h:65
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
Broadcasr Adjacency.
Definition: adj.h:85
IP unicast adjacency.
Definition: adj.h:221
An MPLS extension that maintains the path&#39;s outgoing labels,.
Definition: fib_path_ext.h:31
enum fib_node_back_walk_rc_t_ fib_node_back_walk_rc_t
Return code from a back walk function.
A uni-directional MPLS tunnel.
Definition: mpls_tunnel.h:55
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
dpo_proto_t fib_forw_chain_type_to_dpo_proto(fib_forward_chain_type_t fct)
Convert from a chain type to the DPO proto it will install.
Definition: fib_types.c:433
This packet is to be rewritten and forwarded to the next processing node.
Definition: adj.h:73
static clib_error_t * mpls_tunnel_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: mpls_tunnel.c:348
struct mpls_tunnel_collect_forwarding_ctx_t_ mpls_tunnel_collect_forwarding_ctx_t
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:523
fib_node_t mt_node
The tunnel hooks into the FIB control plane graph.
Definition: mpls_tunnel.h:60
void fib_path_list_walk(fib_node_index_t path_list_index, fib_path_list_walk_fn_t func, void *ctx)
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
#define STRUCT_OFFSET_OF(t, f)
Definition: clib.h:65
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
unformat_function_t unformat_vnet_sw_interface
static uword mpls_tunnel_tx(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
TX function.
Definition: mpls_tunnel.c:482
static u8 * format_mpls_tunnel_name(u8 *s, va_list *args)
Definition: mpls_tunnel.c:440
const mpls_tunnel_t * mpls_tunnel_get(u32 mti)
Definition: mpls_tunnel.c:566
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:237
u32 fib_path_list_child_add(fib_node_index_t path_list_index, fib_node_type_t child_type, fib_node_index_t child_index)
static u8 * format_mpls_tunnel_device(u8 *s, va_list *args)
Definition: mpls_tunnel.c:447
void(* mpls_tunnel_walk_cb_t)(u32 index, void *ctx)
Callback function invoked while walking MPLS tunnels.
Definition: mpls_tunnel.h:134
unsigned char u8
Definition: types.h:56
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
static fib_node_back_walk_rc_t mpls_tunnel_back_walk(fib_node_t *node, fib_node_back_walk_ctx_t *ctx)
Function definition to backwalk a FIB node.
Definition: mpls_tunnel.c:997
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
void fib_node_register_type(fib_node_type_t type, const fib_node_vft_t *vft)
fib_node_register_type
Definition: fib_node.c:60
vnet_link_t ia_link
link/ether-type 1 bytes
Definition: adj.h:242
index_t load_balance_create(u32 n_buckets, dpo_proto_t lb_proto, flow_hash_config_t fhc)
Definition: load_balance.c:239
Adjacency to punt this packet.
Definition: adj.h:55
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:431
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:498
vl_api_interface_index_t sw_if_index
Definition: gre.api:59
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
static u32 * mpls_tunnel_db
DB of SW index to tunnel index.
Definition: mpls_tunnel.c:37
enum adj_walk_rc_t_ adj_walk_rc_t
return codes from a adjacency walker callback function
VNET_HW_INTERFACE_CLASS(mpls_tunnel_hw_interface_class)
#define clib_error_return(e, args...)
Definition: error.h:99
fib_path_ext_list_t mt_path_exts
A vector of path extensions o hold the label stack for each path.
Definition: mpls_tunnel.h:96
void load_balance_multipath_update(const dpo_id_t *dpo, const load_balance_path_t *raw_nhs, load_balance_flags_t flags)
Definition: load_balance.c:602
unsigned int u32
Definition: types.h:88
Contribute an object that is to be used to forward Ethernet packets.
Definition: fib_types.h:141
enum dpo_proto_t_ dpo_proto_t
Data path protocol.
static u8 * format_mpls_tunnel(u8 *s, va_list *args)
Definition: mpls_tunnel.c:889
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:762
#define MPLS_TUNNEL_ATTRIBUTES
Definition: mpls_tunnel.h:36
fib_path_ext_t * fib_path_ext_list_find_by_path_index(const fib_path_ext_list_t *list, fib_node_index_t path_index)
Definition: fib_path_ext.c:326
fib_path_ext_mpls_flags_t fpe_mpls_flags
For an MPLS type extension.
Definition: fib_path_ext.h:120
unformat_function_t unformat_line_input
Definition: format.h:283
fib_node_index_t fib_path_list_copy_and_path_add(fib_node_index_t orig_path_list_index, fib_path_list_flags_t flags, const fib_route_path_t *rpaths)
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:170
void vnet_mpls_tunnel_del(u32 sw_if_index)
Delete an MPLS tunnel.
Definition: mpls_tunnel.c:587
#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:519
fib_node_index_t fib_path_list_create(fib_path_list_flags_t flags, const fib_route_path_t *rpaths)
static const char * mpls_tunnel_attribute_names[]
MPLS tunnel flags strings.
Definition: mpls_tunnel.c:42
int vnet_mpls_tunnel_get_index(u32 sw_if_index)
return the tunnel index from the sw_if_index
Definition: mpls_tunnel.c:780
static uword vnet_hw_interface_get_flags(vnet_main_t *vnm, u32 hw_if_index)
long ctx[MAX_CONNS]
Definition: main.c:144
struct _unformat_input_t unformat_input_t
load-balancing over a choice of [un]equal cost paths
Definition: dpo.h:102
#define MPLS_FLOW_HASH_DEFAULT
There are no options for controlling the MPLS flow hash.
Definition: mpls_fib.h:39
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:287
#define FOR_EACH_FIB_PROTOCOL(_item)
Definition: fib_types.h:65
static mpls_tunnel_t * mpls_tunnel_get_from_sw_if_index(u32 sw_if_index)
Get a tunnel object from a SW interface index.
Definition: mpls_tunnel.c:48
#define PREDICT_FALSE(x)
Definition: clib.h:111
fib_mpls_label_t * frp_label_stack
The outgoing MPLS label Stack.
Definition: fib_types.h:546
This packet matches an "interface route" and packets need to be passed to ARP to find rewrite string ...
Definition: adj.h:68
void fib_path_list_lock(fib_node_index_t path_list_index)
u32 mt_sibling_index
sibling index on the path-list so notifications are received.
Definition: mpls_tunnel.h:91
fib_node_type_t fn_type
The node&#39;s type.
Definition: fib_node.h:299
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:218
An node in the FIB graph.
Definition: fib_node.h:295
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:338
vlib_main_t * vm
Definition: in2out_ed.c:1810
static adj_walk_rc_t mpls_adj_walk_cb(adj_index_t ai, void *ctx)
Call back when restacking all adjacencies on a MPLS interface.
Definition: mpls_tunnel.c:300
fib_node_index_t fib_path_list_copy_and_path_remove(fib_node_index_t orig_path_list_index, fib_path_list_flags_t flags, const fib_route_path_t *rpaths)
void replicate_multipath_update(const dpo_id_t *dpo, load_balance_path_t *next_hops)
This packet matches an "incomplete adjacency" and packets need to be passed to ARP to find rewrite st...
Definition: adj.h:63
u32 tunnel_id
Tunnel-id / index in tunnel vector.
Definition: mpls_tunnel.c:463
Adjacency to drop this packet.
Definition: adj.h:53
#define UNFORMAT_END_OF_INPUT
Definition: format.h:145
u32 flags
Definition: vhost_user.h:141
u16 n_vectors
Definition: node.h:397
static u8 * mpls_tunnel_build_rewrite_i(void)
Build a rewrite string for the MPLS tunnel.
Definition: mpls_tunnel.c:62
VNET_DEVICE_CLASS(mpls_tunnel_class)
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:342
Multicast Midchain Adjacency.
Definition: adj.h:89
static void mpls_tunnel_restack(mpls_tunnel_t *mt)
Definition: mpls_tunnel.c:309
void adj_nbr_midchain_update_rewrite(adj_index_t adj_index, adj_midchain_fixup_t fixup, const void *fixup_data, adj_flags_t flags, u8 *rewrite)
adj_nbr_midchain_update_rewrite
Definition: adj_midchain.c:532
fib_node_get_t fnv_get
Definition: fib_node.h:283
void fib_path_ext_list_remove(fib_path_ext_list_t *list, fib_path_ext_type_t ext_type, const fib_route_path_t *rpath)
Definition: fib_path_ext.c:428
u32 fib_path_list_get_n_paths(fib_node_index_t path_list_index)
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
void mpls_tunnel_walk(mpls_tunnel_walk_cb_t cb, void *ctx)
Walk all the MPLS tunnels.
Definition: mpls_tunnel.c:575
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:284
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:456
void adj_mcast_midchain_update_rewrite(adj_index_t adj_index, adj_midchain_fixup_t fixup, const void *fixup_data, adj_flags_t flags, u8 *rewrite, u8 offset, u32 mask)
adj_mcast_midchain_update_rewrite
Definition: adj_mcast.c:139
void dpo_set(dpo_id_t *dpo, dpo_type_t type, dpo_proto_t proto, index_t index)
Set/create a DPO ID The DPO will be locked.
Definition: dpo.c:186
void fib_path_list_unlock(fib_node_index_t path_list_index)
index_t replicate_create(u32 n_buckets, dpo_proto_t rep_proto)
void adj_nbr_walk(u32 sw_if_index, fib_protocol_t adj_nh_proto, adj_walk_cb_t cb, void *ctx)
Walk the neighbour Adjacencies on a given interface.
Definition: adj_nbr.c:588
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1810
static clib_error_t * mpls_tunnel_init(vlib_main_t *vm)
Definition: mpls_tunnel.c:1042
Context passed between object during a back walk.
Definition: fib_node.h:208
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:152
static mpls_tunnel_t * mpls_tunnel_pool
pool of tunnel instances
Definition: mpls_tunnel.c:32
This packets follow a mid-chain adjacency.
Definition: adj.h:76
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:515
u32 vnet_mpls_tunnel_create(u8 l2_only, u8 is_multicast)
Create a new MPLS tunnel.
Definition: mpls_tunnel.c:608
#define ASSERT(truth)
int vnet_mpls_tunnel_path_remove(u32 sw_if_index, fib_route_path_t *rpaths)
remove a path from a tunnel.
Definition: mpls_tunnel.c:710
void adj_nbr_midchain_stack(adj_index_t adj_index, const dpo_id_t *next)
adj_nbr_midchain_stack
Definition: adj_midchain.c:674
u8 data[128]
Definition: ipsec_types.api:87
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
enum fib_forward_chain_type_t_ fib_forward_chain_type_t
FIB output chain type.
u32 mt_hw_if_index
The HW interface index of the tunnel interfaces.
Definition: mpls_tunnel.h:76
u8 * format_fib_forw_chain_type(u8 *s, va_list *args)
Definition: fib_types.c:49
#define IP_FLOW_HASH_DEFAULT
Default: 5-tuple without the "reverse" bit.
Definition: lookup.h:70
void adj_nbr_midchain_unstack(adj_index_t adj_index)
adj_nbr_midchain_unstack
Definition: adj_midchain.c:571
u8 * format_dpo_id(u8 *s, va_list *args)
Format a DPO_id_t oject
Definition: dpo.c:148
u32 flow_hash_config_t
A flow hash configuration is a mask of the flow hash options.
Definition: lookup.h:84
vl_api_ip4_address_t hi
Definition: arp.api:37
void vnet_delete_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:974
static u8 * mpls_tunnel_build_rewrite(vnet_main_t *vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_address)
Build a rewrite string for the MPLS tunnel.
Definition: mpls_tunnel.c:82
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
This packets needs to go to ICMP error.
Definition: adj.h:79
This packet is for one of our own IP addresses.
Definition: adj.h:58
Definition: defs.h:47
enum fib_path_list_walk_rc_t_ fib_path_list_walk_rc_t
return code to control pat-hlist walk
void vnet_mpls_tunnel_path_add(u32 sw_if_index, fib_route_path_t *rpaths)
Add a path to an MPLS tunnel.
Definition: mpls_tunnel.c:654
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:186
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:31
void fib_path_ext_list_resolve(fib_path_ext_list_t *list, fib_node_index_t path_list_index)
Definition: fib_path_ext.c:416
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
Definition: adj.h:236
static clib_error_t * vnet_create_mpls_tunnel_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: mpls_tunnel.c:793
static void mpls_tunnel_stack(adj_index_t ai)
mpls_tunnel_stack
Definition: mpls_tunnel.c:234
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:492
VLIB buffer representation.
Definition: buffer.h:102
u8 * fib_path_list_format(fib_node_index_t path_list_index, u8 *s)
u64 uword
Definition: types.h:112
static void unformat_free(unformat_input_t *i)
Definition: format.h:163
struct mpls_tunnel_trace_t_ mpls_tunnel_trace_t
Packet trace structure.
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
Definition: dpo.h:197
a point 2 point interface
Definition: interface.h:375
static void mpls_tunnel_last_lock_gone(fib_node_t *node)
Function definition to inform the FIB node that its last lock has gone.
Definition: mpls_tunnel.c:1022
One path from an [EU]CMP set that the client wants to add to a load-balance object.
Definition: load_balance.h:62
void vnet_sw_interface_set_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu)
Definition: interface.c:664
A FIB graph nodes virtual function table.
Definition: fib_node.h:282
#define vnet_buffer(b)
Definition: buffer.h:408
load_balance_path_t * next_hops
Definition: mpls_tunnel.c:92
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
void dpo_reset(dpo_id_t *dpo)
reset a DPO ID The DPO will be unlocked.
Definition: dpo.c:232
#define vec_foreach(var, vec)
Vector iterator.
A path extension is a per-entry addition to the forwarding information when packets are sent for that...
Definition: fib_path_ext.h:98
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: in2out_ed.c:1811
u8 * format_fib_path_ext_list(u8 *s, va_list *args)
Definition: fib_path_ext.c:461
u32 mt_sw_if_index
The SW interface index of the tunnel interfaces.
Definition: mpls_tunnel.h:81
dpo_id_t mt_l2_lb
If the tunnel is an L2 tunnel, this is the link type ETHERNET load-balance.
Definition: mpls_tunnel.h:71
static fib_node_t * mpls_tunnel_fib_node_get(fib_node_index_t index)
Function definition to get a FIB node from its index.
Definition: mpls_tunnel.c:1009
u16 dpoi_next_node
The next VLIB node to follow.
Definition: dpo.h:182
enum mpls_tunnel_attribute_t_ mpls_tunnel_attribute_t
#define pool_foreach_index(i, v, body)
Iterate pool by index.
Definition: pool.h:543
#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:487
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:689
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:171
static clib_error_t * show_mpls_tunnel_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: mpls_tunnel.c:923
fib_forward_chain_type_t fct
Definition: mpls_tunnel.c:94
fib_path_ext_t * fib_path_ext_list_insert(fib_path_ext_list_t *list, fib_node_index_t path_list_index, fib_path_ext_type_t ext_type, const fib_route_path_t *rpath)
Definition: fib_path_ext.c:372
static void mpls_tunnel_mk_lb(mpls_tunnel_t *mt, vnet_link_t linkt, fib_forward_chain_type_t fct, dpo_id_t *dpo_lb)
Definition: mpls_tunnel.c:140
load_balance_path_t * fib_path_ext_stack(fib_path_ext_t *path_ext, fib_forward_chain_type_t child_fct, fib_forward_chain_type_t imp_null_fct, load_balance_path_t *nhs)
Definition: fib_path_ext.c:165
static void mpls_tunnel_update_adj(vnet_main_t *vnm, u32 sw_if_index, adj_index_t ai)
Definition: mpls_tunnel.c:392
static mpls_tunnel_t * mpls_tunnel_from_fib_node(fib_node_t *node)
Definition: mpls_tunnel.c:986
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:128