FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
fib_entry_src.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include <vnet/adj/adj.h>
17 #include <vnet/dpo/load_balance.h>
19 #include <vnet/dpo/drop_dpo.h>
20 #include <vnet/dpo/replicate_dpo.h>
21 
22 #include <vnet/fib/fib_entry_src.h>
23 #include <vnet/fib/fib_table.h>
24 #include <vnet/fib/fib_path_ext.h>
25 #include <vnet/fib/fib_urpf_list.h>
27 
28 /*
29  * per-source type vft
30  */
31 static fib_entry_src_vft_t fib_entry_src_vft[FIB_SOURCE_MAX];
32 
33 /**
34  * Get the VFT for a given source. This is a combination of the source
35  * enum and the interposer flags
36  */
39 {
41  {
42  return (&fib_entry_src_vft[FIB_SOURCE_INTERPOSE]);
43  }
44 
45  return (&fib_entry_src_vft[esrc->fes_src]);
46 }
47 
48 static void
50  const fib_entry_t *fib_entry,
51  fib_entry_src_t *copy_src)
52 {
53  clib_memcpy(&copy_src->u, &orig_src->u, sizeof(copy_src->u));
54 }
55 
56 void
58  const fib_entry_src_vft_t *vft)
59 {
60  fib_entry_src_vft[source] = *vft;
61 
62  if (NULL == fib_entry_src_vft[source].fesv_copy)
63  {
64  fib_entry_src_vft[source].fesv_copy = fib_entry_src_copy_default;
65  }
66 }
67 
68 static int
70  void * v2)
71 {
72  fib_entry_src_t *esrc1 = v1, *esrc2 = v2;
73 
74  return (esrc1->fes_src - esrc2->fes_src);
75 }
76 
77 static void
79  fib_source_t source,
81 {
82  fib_entry_src_t esrc = {
84  .fes_flags = FIB_ENTRY_SRC_FLAG_NONE,
85  .fes_src = source,
86  .fes_entry_flags = flags,
87  };
88 
89  FIB_ENTRY_SRC_VFT_INVOKE(&esrc, fesv_init, (&esrc));
90 
91  vec_add1(fib_entry->fe_srcs, esrc);
94 }
95 
96 static fib_entry_src_t *
98  fib_source_t source,
99  u32 *index)
100 
101 {
102  fib_entry_src_t *esrc;
103  int ii;
104 
105  ii = 0;
106  vec_foreach(esrc, fib_entry->fe_srcs)
107  {
108  if (esrc->fes_src == source)
109  {
110  if (NULL != index)
111  {
112  *index = ii;
113  }
114  return (esrc);
115  }
116  else
117  {
118  ii++;
119  }
120  }
121 
122  return (NULL);
123 }
124 
125 static fib_entry_src_t *
126 fib_entry_src_find (const fib_entry_t *fib_entry,
127  fib_source_t source)
128 
129 {
130  return (fib_entry_src_find_i(fib_entry, source, NULL));
131 }
132 
133 int
135  fib_source_t source)
136 {
137  fib_entry_t *fib_entry;
138 
139  fib_entry = fib_entry_get(fib_entry_index);
140 
141  return (NULL != fib_entry_src_find(fib_entry, source));
142 }
143 
144 static fib_entry_src_t *
146  fib_source_t source,
148 {
149  fib_entry_src_t *esrc;
150 
151  esrc = fib_entry_src_find(fib_entry, source);
152 
153  if (NULL == esrc)
154  {
155  fib_entry_src_action_init(fib_entry, source, flags);
156  }
157 
158  return (fib_entry_src_find(fib_entry, source));
159 }
160 
161 static void
163  fib_source_t source)
164 
165 {
166  fib_entry_src_t *esrc;
167  u32 index = ~0;
168 
169  esrc = fib_entry_src_find_i(fib_entry, source, &index);
170 
171  ASSERT(NULL != esrc);
172 
173  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_deinit, (esrc));
174 
176  vec_del1(fib_entry->fe_srcs, index);
177  vec_sort_with_function(fib_entry->fe_srcs,
179 }
180 
183  fib_entry_src_t *esrc)
184 {
185  FIB_ENTRY_SRC_VFT_INVOKE_AND_RETURN(esrc, fesv_cover_change,
186  (esrc, fib_entry));
187 
189  .install = !0,
190  .bw_reason = FIB_NODE_BW_REASON_FLAG_NONE,
191  };
192  return (res);
193 }
194 
197  fib_entry_src_t *esrc)
198 {
199  FIB_ENTRY_SRC_VFT_INVOKE_AND_RETURN(esrc, fesv_cover_update,
200  (esrc, fib_entry));
201 
203  .install = !0,
204  .bw_reason = FIB_NODE_BW_REASON_FLAG_NONE,
205  };
206  return (res);
207 }
208 
210 {
218 
219 /**
220  * @brief Determine whether this FIB entry should use a load-balance MAP
221  * to support PIC edge fast convergence
222  */
225 {
226  /**
227  * We'll use a LB map if the path-list has multiple recursive paths.
228  * recursive paths implies BGP, and hence scale.
229  */
230  if (ctx->n_recursive_constrained > 1 &&
232  {
234  }
235  return (LOAD_BALANCE_FLAG_NONE);
236 }
237 
238 static int
240 {
241  return ((MPLS_LABEL_IS_REAL(label) ||
242  MPLS_LABEL_POP == label ||
246 }
247 
248 /**
249  * @brief Turn the chain type requested by the client into the one they
250  * really wanted
251  */
255 {
256  /*
257  * The EOS chain is a tricky since one cannot know the adjacency
258  * to link to without knowing what the packets payload protocol
259  * will be once the label is popped.
260  */
262 
263  if (FIB_FORW_CHAIN_TYPE_MPLS_EOS != fct)
264  {
265  return (fct);
266  }
267 
268  dfct = fib_entry_get_default_chain_type(entry);
269 
270  if (FIB_FORW_CHAIN_TYPE_MPLS_EOS == dfct)
271  {
272  /*
273  * If the entry being asked is a eos-MPLS label entry,
274  * then use the payload-protocol field, that we stashed there
275  * for just this purpose
276  */
278  entry->fe_prefix.fp_payload_proto));
279  }
280  /*
281  * else give them what this entry would be by default. i.e. if it's a v6
282  * entry, then the label its local labelled should be carrying v6 traffic.
283  * If it's a non-EOS label entry, then there are more labels and we want
284  * a non-eos chain.
285  */
286  return (dfct);
287 }
288 
289 static dpo_proto_t
291 {
292  switch (pfx->fp_proto)
293  {
294  case FIB_PROTOCOL_IP4:
295  return (DPO_PROTO_IP4);
296  case FIB_PROTOCOL_IP6:
297  return (DPO_PROTO_IP6);
298  case FIB_PROTOCOL_MPLS:
299  return (pfx->fp_payload_proto);
300  }
301 
302  ASSERT(0);
303  return (DPO_PROTO_IP4);
304 }
305 
306 static void
309 {
311 
312  /*
313  * no extension => no out-going label for this path. that's OK
314  * in the case of an IP or EOS chain, but not for non-EOS
315  */
316  switch (ctx->fct)
317  {
323  /*
324  * EOS traffic with no label to stack, we need the IP Adj
325  */
326  vec_add2(ctx->next_hops, nh, 1);
327 
328  nh->path_index = path_index;
329  nh->path_weight = fib_path_get_weight(path_index);
330  fib_path_contribute_forwarding(path_index, ctx->fct, &nh->path_dpo);
331 
332  break;
334  if (fib_path_is_exclusive(path_index) ||
335  fib_path_is_deag(path_index))
336  {
337  vec_add2(ctx->next_hops, nh, 1);
338 
339  nh->path_index = path_index;
340  nh->path_weight = fib_path_get_weight(path_index);
343  &nh->path_dpo);
344  }
345  break;
347  {
348  /*
349  * no label. we need a chain based on the payload. fixup.
350  */
351  vec_add2(ctx->next_hops, nh, 1);
352 
353  nh->path_index = path_index;
354  nh->path_weight = fib_path_get_weight(path_index);
357  ctx->fct),
358  &nh->path_dpo);
359  fib_path_stack_mpls_disp(path_index,
362  &nh->path_dpo);
363 
364  break;
365  }
368  ASSERT(0);
369  break;
370  }
371 }
372 
375  fib_node_index_t path_index,
376  void *arg)
377 {
379  fib_path_ext_t *path_ext;
380  u32 n_nhs;
381 
382  ctx = arg;
383  n_nhs = vec_len(ctx->next_hops);
384 
385  /*
386  * if the path is not resolved, don't include it.
387  */
388  if (!fib_path_is_resolved(path_index))
389  {
391  }
392 
393  if (fib_path_is_recursive_constrained(path_index))
394  {
395  ctx->n_recursive_constrained += 1;
396  }
397  if (0xffff == ctx->preference)
398  {
399  /*
400  * not set a preference yet, so the first path we encounter
401  * sets the preference we are collecting.
402  */
403  ctx->preference = fib_path_get_preference(path_index);
404  }
405  else if (ctx->preference != fib_path_get_preference(path_index))
406  {
407  /*
408  * this path does not belong to the same preference as the
409  * previous paths encountered. we are done now.
410  */
411  return (FIB_PATH_LIST_WALK_STOP);
412  }
413 
414  /*
415  * get the matching path-extension for the path being visited.
416  */
418  path_index);
419 
420  if (NULL != path_ext)
421  {
422  switch (path_ext->fpe_type)
423  {
424  case FIB_PATH_EXT_MPLS:
425  if (fib_entry_src_valid_out_label(path_ext->fpe_label_stack[0].fml_value))
426  {
427  /*
428  * found a matching extension. stack it to obtain the forwarding
429  * info for this path.
430  */
431  ctx->next_hops =
432  fib_path_ext_stack(path_ext,
433  ctx->fct,
435  ctx->fct),
436  ctx->next_hops);
437  }
438  else
439  {
440  fib_entry_src_get_path_forwarding(path_index, ctx);
441  }
442  break;
443  case FIB_PATH_EXT_ADJ:
445  {
446  fib_entry_src_get_path_forwarding(path_index, ctx);
447  }
448  /*
449  * else
450  * the path does not refine the cover, meaning that
451  * the adjacency does/does not match the sub-net on the link.
452  * So this path does not contribute forwarding.
453  */
454  break;
455  }
456  }
457  else
458  {
459  fib_entry_src_get_path_forwarding(path_index, ctx);
460  }
461 
462  /*
463  * a this point 'ctx' has the DPO the path contributed, plus
464  * any labels from path extensions.
465  * check if there are any interpose sources that want to contribute
466  */
467  if (n_nhs < vec_len(ctx->next_hops))
468  {
469  /*
470  * the path contributed a new choice.
471  */
472  const fib_entry_src_vft_t *vft;
473 
474  vft = fib_entry_src_get_vft(ctx->esrc);
475 
476  if (NULL != vft->fesv_contribute_interpose)
477  {
478  const dpo_id_t *interposer;
479 
480  interposer = vft->fesv_contribute_interpose(ctx->esrc,
481  ctx->fib_entry);
482 
483  if (NULL != interposer)
484  {
485  dpo_id_t clone = DPO_INVALID;
486 
487  dpo_mk_interpose(interposer,
488  &ctx->next_hops[n_nhs].path_dpo,
489  &clone);
490 
491  dpo_copy(&ctx->next_hops[n_nhs].path_dpo, &clone);
492  dpo_reset(&clone);
493  }
494  }
495  }
496 
498 }
499 
500 void
502  const fib_entry_src_t *esrc,
504  dpo_id_t *dpo_lb)
505 {
506  dpo_proto_t lb_proto;
507 
508  /*
509  * If the entry has path extensions then we construct a load-balance
510  * by stacking the extensions on the forwarding chains of the paths.
511  * Otherwise we use the load-balance of the path-list
512  */
514  .esrc = esrc,
515  .fib_entry = fib_entry,
516  .next_hops = NULL,
517  .n_recursive_constrained = 0,
518  .fct = fct,
519  .preference = 0xffff,
520  };
521 
522  /*
523  * As an optimisation we allocate the vector of next-hops to be sized
524  * equal to the maximum number of paths we will need, which is also the
525  * most likely number we will need, since in most cases the paths are 'up'.
526  */
529 
530  lb_proto = fib_forw_chain_type_to_dpo_proto(fct);
531 
534  &ctx);
535 
537  {
538  /*
539  * the client provided the DPO that the entry should link to.
540  * all entries must link to a LB, so if it is an LB already
541  * then we can use it.
542  */
543  if ((1 == vec_len(ctx.next_hops)) &&
545  {
546  dpo_copy(dpo_lb, &ctx.next_hops[0].path_dpo);
547  dpo_reset(&ctx.next_hops[0].path_dpo);
548  return;
549  }
550  }
551 
552  if (!dpo_id_is_valid(dpo_lb))
553  {
554  /*
555  * first time create
556  */
558  {
559  dpo_set(dpo_lb,
561  lb_proto,
562  MPLS_IS_REPLICATE | replicate_create(0, lb_proto));
563  }
564  else
565  {
566  fib_protocol_t flow_hash_proto;
567  flow_hash_config_t fhc;
568 
569  /*
570  * if the protocol for the LB we are building does not match that
571  * of the fib_entry (i.e. we are build the [n]EOS LB for an IPv[46]
572  * then the fib_index is not an index that relates to the table
573  * type we need. So get the default flow-hash config instead.
574  */
575  flow_hash_proto = dpo_proto_to_fib(lb_proto);
576  if (fib_entry->fe_prefix.fp_proto != flow_hash_proto)
577  {
578  fhc = fib_table_get_default_flow_hash_config(flow_hash_proto);
579  }
580  else
581  {
583  flow_hash_proto);
584  }
585 
586  dpo_set(dpo_lb,
588  lb_proto,
589  load_balance_create(0, lb_proto, fhc));
590  }
591  }
592 
594  {
595  /*
596  * MPLS multicast
597  */
599  }
600  else
601  {
603  ctx.next_hops,
605  vec_free(ctx.next_hops);
606 
607  /*
608  * if this entry is sourced by the uRPF-exempt source then we
609  * append the always present local0 interface (index 0) to the
610  * uRPF list so it is not empty. that way packets pass the loose check.
611  */
613 
617  (0 == fib_urpf_check_size(ui)))
618  {
619  /*
620  * The uRPF list we get from the path-list is shared by all
621  * other users of the list, but the uRPF exemption applies
622  * only to this prefix. So we need our own list.
623  */
625  fib_urpf_list_append(ui, 0);
626  fib_urpf_list_bake(ui);
627  load_balance_set_urpf(dpo_lb->dpoi_index, ui);
629  }
630  else
631  {
632  load_balance_set_urpf(dpo_lb->dpoi_index, ui);
633  }
635  fib_entry_get_flags_i(fib_entry));
636  }
637 }
638 
639 void
641  fib_source_t source)
642 {
643  /*
644  * Install the forwarding chain for the given source into the forwarding
645  * tables
646  */
649  int insert;
650 
651  fct = fib_entry_get_default_chain_type(fib_entry);
652  esrc = fib_entry_src_find(fib_entry, source);
653 
654  /*
655  * Every entry has its own load-balance object. All changes to the entry's
656  * forwarding result in an inplace modify of the load-balance. This means
657  * the load-balance object only needs to be added to the forwarding
658  * DB once, when it is created.
659  */
660  insert = !dpo_id_is_valid(&fib_entry->fe_lb);
661 
662  fib_entry_src_mk_lb(fib_entry, esrc, fct, &fib_entry->fe_lb);
663 
664  ASSERT(dpo_id_is_valid(&fib_entry->fe_lb));
665  FIB_ENTRY_DBG(fib_entry, "install: %d", fib_entry->fe_lb);
666 
667  /*
668  * insert the adj into the data-plane forwarding trie
669  */
670  if (insert)
671  {
673  &fib_entry->fe_prefix,
674  &fib_entry->fe_lb);
675  }
676 
677  /*
678  * if any of the other chain types are already created they will need
679  * updating too
680  */
683 
684  FOR_EACH_DELEGATE_CHAIN(fib_entry, fdt, fed,
685  {
686  fib_entry_src_mk_lb(fib_entry, esrc,
688  &fed->fd_dpo);
689  });
690 }
691 
692 void
694 {
695  /*
696  * uninstall the forwarding chain from the forwarding tables
697  */
698  FIB_ENTRY_DBG(fib_entry, "uninstall");
699 
700  if (dpo_id_is_valid(&fib_entry->fe_lb))
701  {
703  fib_entry->fe_fib_index,
704  &fib_entry->fe_prefix,
705  &fib_entry->fe_lb);
706 
707  dpo_reset(&fib_entry->fe_lb);
708  }
709 }
710 
711 static void
713 {
715 
716  fib_path_list_recursive_loop_detect(path_list_index, &entries);
717 
718  vec_free(entries);
719 }
720 
721 /*
722  * fib_entry_src_action_copy
723  *
724  * copy a source data from another entry to this one
725  */
726 static fib_entry_t *
728  const fib_entry_src_t *orig_src)
729 {
731 
732  esrc = fib_entry_src_find_or_create(fib_entry,
733  orig_src->fes_src,
734  orig_src->fes_entry_flags);
735 
736  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_copy,
737  (orig_src, fib_entry, esrc));
738 
740 
741  /*
742  * copy over all the data ...
743  */
744  esrc->fes_flags = orig_src->fes_flags;
745  esrc->fes_pl = orig_src->fes_pl;
746 
747  /*
748  * ... then update
749  */
750  esrc->fes_ref_count = 1;
755 
756  /*
757  * the source owns a lock on the entry
758  */
759  fib_path_list_lock(esrc->fes_pl);
761 
762  return (fib_entry);
763 }
764 
765 /*
766  * fib_entry_src_action_update
767  *
768  * copy a source data from another entry to this one
769  */
770 static fib_entry_src_t *
772  const fib_entry_src_t *orig_src)
773 {
775 
776  esrc = fib_entry_src_find_or_create(fib_entry,
777  orig_src->fes_src,
778  orig_src->fes_entry_flags);
779 
780  /*
781  * the source owns a lock on the entry
782  */
784  esrc->fes_pl = orig_src->fes_pl;
785  fib_path_list_lock(esrc->fes_pl);
786 
787  return (esrc);
788 }
789 
790 static fib_table_walk_rc_t
792  const fib_entry_src_t *cover_src)
793 {
795 
796  esrc = fib_entry_src_find(fib_entry, cover_src->fes_src);
797 
798  if (cover_src == esrc)
799  {
800  return (FIB_TABLE_WALK_CONTINUE);
801  }
802 
803  if (NULL != esrc)
804  {
805  /*
806  * the covered entry already has this source.
807  */
809  {
810  /*
811  * the covered source is itself a COVERED_INHERIT, i.e.
812  * it also pushes this source down the sub-tree.
813  * We consider this more specific covered to be the owner
814  * of the sub-tree from this point down.
815  */
817  }
819  {
820  /*
821  * The covered's source data has been inherited, presumably
822  * from this cover, i.e. this is a modify.
823  */
824  esrc = fib_entry_src_action_update_from_cover(fib_entry, cover_src);
825  fib_entry_source_change(fib_entry, esrc->fes_src, esrc->fes_src);
826  }
827  else
828  {
829  /*
830  * The covered's source was not inherited and it is also
831  * not inheriting. Nevertheless, it still owns the sub-tree from
832  * this point down.
833  */
835  }
836  }
837  else
838  {
839  /*
840  * The covered does not have this source - add it.
841  */
842  fib_source_t best_source;
843 
844  best_source = fib_entry_get_best_source(
845  fib_entry_get_index(fib_entry));
846 
847  fib_entry_src_action_copy(fib_entry, cover_src);
848  fib_entry_source_change(fib_entry, best_source, cover_src->fes_src);
849 
850  }
851  return (FIB_TABLE_WALK_CONTINUE);
852 }
853 
854 static fib_table_walk_rc_t
856  void *ctx)
857 {
859 }
860 
861 static fib_table_walk_rc_t
863  void *ctx)
864 {
865  fib_entry_src_t *cover_src, *esrc;
867 
868  fib_entry = fib_entry_get(fei);
869 
870  cover_src = ctx;
871  esrc = fib_entry_src_find(fib_entry, cover_src->fes_src);
872 
873  if (cover_src == esrc)
874  {
875  return (FIB_TABLE_WALK_CONTINUE);
876  }
877 
878  if (NULL != esrc)
879  {
880  /*
881  * the covered entry already has this source.
882  */
884  {
885  /*
886  * the covered source is itself a COVERED_INHERIT, i.e.
887  * it also pushes this source down the sub-tree.
888  * We consider this more specific covered to be the owner
889  * of the sub-tree from this point down.
890  */
892  }
894  {
895  /*
896  * The covered's source data has been inherited, presumably
897  * from this cover
898  */
899  fib_entry_src_flag_t remaining;
900 
901  remaining = fib_entry_special_remove(fei, cover_src->fes_src);
902 
903  ASSERT(FIB_ENTRY_SRC_FLAG_ADDED == remaining);
904  }
905  else
906  {
907  /*
908  * The covered's source was not inherited and it is also
909  * not inheriting. Nevertheless, it still owns the sub-tree from
910  * this point down.
911  */
913  }
914  }
915  else
916  {
917  /*
918  * The covered does not have this source - that's an error,
919  * since it should have inherited, but there is nothing we can do
920  * about it now.
921  */
922  }
923  return (FIB_TABLE_WALK_CONTINUE);
924 }
925 
926 void
928  fib_entry_t *covered)
929 {
930  CLIB_UNUSED(fib_source_t source);
931  const fib_entry_src_t *src;
932 
933  FOR_EACH_SRC_ADDED(cover, src, source,
934  ({
937  {
938  fib_entry_src_covered_inherit_add_i(covered, src);
939  }
940  }))
941 }
942 
943 static void
945  fib_source_t source)
946 
947 {
949 
950  esrc = fib_entry_src_find(fib_entry, source);
951 
953 
956  {
958  fib_entry->fe_prefix.fp_proto,
959  &fib_entry->fe_prefix,
961  esrc);
962  }
963 }
964 
965 static void
968 
969 {
971 
973  {
975  fib_entry->fe_prefix.fp_proto,
976  &fib_entry->fe_prefix,
978  esrc);
979  }
980 }
981 
982 void
984  fib_source_t source)
985 
986 {
987  int houston_we_are_go_for_install;
988  const fib_entry_src_vft_t *vft;
990 
991  esrc = fib_entry_src_find(fib_entry, source);
992 
995 
998  vft = fib_entry_src_get_vft(esrc);
999 
1000  if (NULL != vft->fesv_activate)
1001  {
1002  houston_we_are_go_for_install = vft->fesv_activate(esrc, fib_entry);
1003  }
1004  else
1005  {
1006  /*
1007  * the source is not providing an activate function, we'll assume
1008  * therefore it has no objection to installing the entry
1009  */
1010  houston_we_are_go_for_install = !0;
1011  }
1012 
1013  /*
1014  * link to the path-list provided by the source, and go check
1015  * if that forms any loops in the graph.
1016  */
1017  fib_entry->fe_parent = esrc->fes_pl;
1018  fib_entry->fe_sibling =
1021  fib_entry_get_index(fib_entry));
1022 
1024 
1025  FIB_ENTRY_DBG(fib_entry, "activate: %d",
1026  fib_entry->fe_parent);
1027 
1028  /*
1029  * If this source should push its state to covered prefixs, do that now.
1030  */
1031  fib_entry_src_covered_inherit_add(fib_entry, source);
1032 
1033  if (0 != houston_we_are_go_for_install)
1034  {
1035  fib_entry_src_action_install(fib_entry, source);
1036  }
1037  else
1038  {
1039  fib_entry_src_action_uninstall(fib_entry);
1040  }
1041 }
1042 
1043 void
1045  fib_source_t source)
1046 
1047 {
1048  fib_node_index_t path_list_index;
1050 
1051  esrc = fib_entry_src_find(fib_entry, source);
1052 
1054 
1055  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_deactivate,
1056  (esrc, fib_entry));
1057 
1060 
1061  FIB_ENTRY_DBG(fib_entry, "deactivate: %d", fib_entry->fe_parent);
1062 
1063  /*
1064  * If this source should pull its state from covered prefixs, do that now.
1065  * If this source also has the INHERITED flag set then it has a cover
1066  * that wants to push down forwarding. We only want the covereds to see
1067  * one update.
1068  */
1069  fib_entry_src_covered_inherit_remove(fib_entry, esrc);
1070 
1071  /*
1072  * un-link from an old path-list. Check for any loops this will clear
1073  */
1074  path_list_index = fib_entry->fe_parent;
1075  fib_entry->fe_parent = FIB_NODE_INDEX_INVALID;
1076 
1077  fib_entry_recursive_loop_detect_i(path_list_index);
1078 
1079  /*
1080  * this will unlock the path-list, so it may be invalid thereafter.
1081  */
1082  fib_path_list_child_remove(path_list_index, fib_entry->fe_sibling);
1083  fib_entry->fe_sibling = FIB_NODE_INDEX_INVALID;
1084 }
1085 
1086 static void
1088  fib_source_t source)
1089 {
1091 
1092  vec_foreach(esrc, fib_entry->fe_srcs)
1093  {
1094  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_fwd_update,
1095  (esrc, fib_entry, source));
1096  }
1097 }
1098 
1099 void
1101  fib_source_t source)
1102 {
1103  fib_node_index_t path_list_index;
1104  const fib_entry_src_vft_t *vft;
1106  int remain_installed;
1107 
1108  esrc = fib_entry_src_find(fib_entry, source);
1109 
1111 
1112  FIB_ENTRY_DBG(fib_entry, "reactivate: %d to %d",
1113  fib_entry->fe_parent,
1114  esrc->fes_pl);
1115 
1116  /*
1117  * call the source to reactive and get the go/no-go to remain installed
1118  */
1119  vft = fib_entry_src_get_vft(esrc);
1120 
1121  if (NULL != vft->fesv_reactivate)
1122  {
1123  remain_installed = vft->fesv_reactivate(esrc, fib_entry);
1124  }
1125  else
1126  {
1127  remain_installed = 1;
1128  }
1129 
1130  if (fib_entry->fe_parent != esrc->fes_pl)
1131  {
1132  /*
1133  * un-link from an old path-list. Check for any loops this will clear
1134  */
1135  path_list_index = fib_entry->fe_parent;
1136  fib_entry->fe_parent = FIB_NODE_INDEX_INVALID;
1137 
1138  /*
1139  * temporary lock so it doesn't get deleted when this entry is no
1140  * longer a child.
1141  */
1142  fib_path_list_lock(path_list_index);
1143 
1144  /*
1145  * this entry is no longer a child. after unlinking check if any loops
1146  * were broken
1147  */
1148  fib_path_list_child_remove(path_list_index,
1149  fib_entry->fe_sibling);
1150 
1151  fib_entry_recursive_loop_detect_i(path_list_index);
1152 
1153  /*
1154  * link to the path-list provided by the source, and go check
1155  * if that forms any loops in the graph.
1156  */
1157  fib_entry->fe_parent = esrc->fes_pl;
1158  fib_entry->fe_sibling =
1161  fib_entry_get_index(fib_entry));
1162 
1164  fib_path_list_unlock(path_list_index);
1165 
1166  /*
1167  * If this source should push its state to covered prefixs, do that now.
1168  */
1169  fib_entry_src_covered_inherit_add(fib_entry, source);
1170  }
1171 
1172  if (!remain_installed)
1173  {
1174  fib_entry_src_action_uninstall(fib_entry);
1175  }
1176  else
1177  {
1178  fib_entry_src_action_install(fib_entry, source);
1179  }
1180  fib_entry_src_action_fwd_update(fib_entry, source);
1181 }
1182 
1183 void
1185  fib_source_t source)
1186 {
1188 
1189  esrc = fib_entry_src_find(fib_entry, source);
1190 
1191  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_installed,
1192  (esrc, fib_entry));
1193 
1194  fib_entry_src_action_fwd_update(fib_entry, source);
1195 }
1196 
1197 /*
1198  * fib_entry_src_action_add
1199  *
1200  * Adding a source can result in a new fib_entry being created, which
1201  * can inturn mean the pool is realloc'd and thus the entry passed as
1202  * an argument it also realloc'd
1203  * @return the original entry
1204  */
1205 fib_entry_t *
1207  fib_source_t source,
1209  const dpo_id_t *dpo)
1210 {
1211  fib_node_index_t fib_entry_index;
1213 
1214  esrc = fib_entry_src_find_or_create(fib_entry, source, flags);
1215 
1216  ASSERT(esrc->fes_ref_count < 255);
1217  esrc->fes_ref_count++;
1218 
1219  if (flags != esrc->fes_entry_flags)
1220  {
1221  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_flags_change,
1222  (esrc, fib_entry, flags));
1223  }
1224  esrc->fes_entry_flags = flags;
1225 
1226  if (1 != esrc->fes_ref_count)
1227  {
1228  /*
1229  * we only want to add the source on the 0->1 transition
1230  */
1231  return (fib_entry);
1232  }
1233 
1234  /*
1235  * save variable so we can recover from a fib_entry realloc.
1236  */
1237  fib_entry_index = fib_entry_get_index(fib_entry);
1238 
1239  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_add,
1240  (esrc,
1241  fib_entry,
1242  flags,
1243  fib_entry_get_dpo_proto(fib_entry),
1244  dpo));
1245 
1246  fib_entry = fib_entry_get(fib_entry_index);
1247 
1249 
1250  fib_path_list_lock(esrc->fes_pl);
1251 
1252  /*
1253  * the source owns a lock on the entry
1254  */
1255  fib_entry_lock(fib_entry_get_index(fib_entry));
1256 
1257  return (fib_entry);
1258 }
1259 
1260 /*
1261  * fib_entry_src_action_update
1262  *
1263  * Adding a source can result in a new fib_entry being created, which
1264  * can inturn mean the pool is realloc'd and thus the entry passed as
1265  * an argument it also realloc'd
1266  * @return the original entry
1267  */
1268 fib_entry_t *
1270  fib_source_t source,
1272  const dpo_id_t *dpo)
1273 {
1274  fib_node_index_t fib_entry_index, old_path_list_index;
1276 
1277  esrc = fib_entry_src_find_or_create(fib_entry, source, flags);
1278 
1279  if (NULL == esrc)
1280  {
1281  return (fib_entry_src_action_add(fib_entry, source, flags, dpo));
1282  }
1283 
1284  old_path_list_index = esrc->fes_pl;
1285  esrc->fes_entry_flags = flags;
1286 
1287  /*
1288  * save variable so we can recover from a fib_entry realloc.
1289  */
1290  fib_entry_index = fib_entry_get_index(fib_entry);
1291 
1292  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_add,
1293  (esrc,
1294  fib_entry,
1295  flags,
1296  fib_entry_get_dpo_proto(fib_entry),
1297  dpo));
1298 
1299  fib_entry = fib_entry_get(fib_entry_index);
1300 
1302 
1303  fib_path_list_lock(esrc->fes_pl);
1304  fib_path_list_unlock(old_path_list_index);
1305 
1306  return (fib_entry);
1307 }
1308 
1311  fib_source_t source)
1312 {
1314 
1315  esrc = fib_entry_src_find(fib_entry, source);
1316 
1317  if (NULL == esrc)
1318  return (FIB_ENTRY_SRC_FLAG_ACTIVE);
1319 
1322  {
1323  fib_entry_src_t *cover_src;
1324  fib_node_index_t coveri;
1325  fib_entry_t *cover;
1326 
1327  /*
1328  * this source was pushing inherited state, but so is its
1329  * cover. Now that this source is going away, we need to
1330  * pull the covers forwarding and use it to update the covereds.
1331  * Go grab the path-list from the cover, rather than start a walk from
1332  * the cover, so we don't recursively update this entry.
1333  */
1334  coveri = fib_table_get_less_specific(fib_entry->fe_fib_index,
1335  &fib_entry->fe_prefix);
1336 
1337  /*
1338  * only the default route has itself as its own cover, but the
1339  * default route cannot have inherited from something else.
1340  */
1341  ASSERT(coveri != fib_entry_get_index(fib_entry));
1342 
1343  cover = fib_entry_get(coveri);
1344  cover_src = fib_entry_src_find(cover, source);
1345 
1346  ASSERT(NULL != cover_src);
1347 
1348  esrc = fib_entry_src_action_update_from_cover(fib_entry, cover_src);
1350 
1351  /*
1352  * Now push the new state from the cover down to the covereds
1353  */
1354  fib_entry_src_covered_inherit_add(fib_entry, source);
1355 
1356  return (esrc->fes_flags);
1357  }
1358  else
1359  {
1360  return (fib_entry_src_action_remove(fib_entry, source));
1361  }
1362 }
1363 
1366  fib_source_t source)
1367 
1368 {
1369  fib_node_index_t old_path_list;
1370  fib_entry_src_flag_t sflags;
1372 
1373  esrc = fib_entry_src_find(fib_entry, source);
1374 
1375  if (NULL == esrc)
1376  return (FIB_ENTRY_SRC_FLAG_ACTIVE);
1377 
1378  esrc->fes_ref_count--;
1379  sflags = esrc->fes_flags;
1380 
1381  if (0 != esrc->fes_ref_count)
1382  {
1383  /*
1384  * only remove the source on the 1->0 transisition
1385  */
1386  return (sflags);
1387  }
1388 
1390  {
1391  fib_entry_src_action_deactivate(fib_entry, source);
1392  }
1393  else if (esrc->fes_flags & FIB_ENTRY_SRC_FLAG_CONTRIBUTING)
1394  {
1395  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_deactivate,
1396  (esrc, fib_entry));
1398  }
1399 
1400  old_path_list = esrc->fes_pl;
1401 
1402  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_remove, (esrc));
1403 
1404  fib_path_list_unlock(old_path_list);
1406 
1407  sflags &= ~FIB_ENTRY_SRC_FLAG_ADDED;
1408  fib_entry_src_action_deinit(fib_entry, source);
1409 
1410  return (sflags);
1411 }
1412 
1413 /*
1414  * fib_route_attached_cross_table
1415  *
1416  * Return true the the route is attached via an interface that
1417  * is not in the same table as the route
1418  */
1419 static inline int
1421  const fib_route_path_t *rpath)
1422 {
1423  /*
1424  * - All zeros next-hop
1425  * - a valid interface
1426  * - entry's fib index not equeal to interface's index
1427  */
1428  if (ip46_address_is_zero(&rpath->frp_addr) &&
1429  (~0 != rpath->frp_sw_if_index) &&
1430  !(rpath->frp_flags & FIB_ROUTE_PATH_DVR) &&
1431  (fib_entry->fe_fib_index !=
1433  rpath->frp_sw_if_index)))
1434  {
1435  return (!0);
1436  }
1437  return (0);
1438 }
1439 
1440 /*
1441  * Return true if the path is attached
1442  */
1443 static inline int
1445 {
1446  /*
1447  * DVR paths are not attached, since we are not playing the
1448  * L3 game with these
1449  */
1450  if (rpath->frp_flags & FIB_ROUTE_PATH_DVR)
1451  {
1452  return (0);
1453  }
1454 
1455  /*
1456  * - All zeros next-hop
1457  * - a valid interface
1458  */
1459  if (ip46_address_is_zero(&rpath->frp_addr) &&
1460  (~0 != rpath->frp_sw_if_index))
1461  {
1462  return (!0);
1463  }
1464  else if (rpath->frp_flags & FIB_ROUTE_PATH_ATTACHED)
1465  {
1466  return (!0);
1467  }
1468  return (0);
1469 }
1470 
1473 {
1475 
1476  if (eflags & FIB_ENTRY_FLAG_DROP)
1477  {
1478  plf |= FIB_PATH_LIST_FLAG_DROP;
1479  }
1480  if (eflags & FIB_ENTRY_FLAG_EXCLUSIVE)
1481  {
1483  }
1484  if (eflags & FIB_ENTRY_FLAG_LOCAL)
1485  {
1486  plf |= FIB_PATH_LIST_FLAG_LOCAL;
1487  }
1488 
1489  return (plf);
1490 }
1491 
1492 static void
1494  const fib_route_path_t *rpaths,
1495  fib_path_list_flags_t *pl_flags,
1497 {
1498  const fib_route_path_t *rpath;
1499 
1500  vec_foreach(rpath, rpaths)
1501  {
1502  if ((esrc->fes_src == FIB_SOURCE_API) ||
1503  (esrc->fes_src == FIB_SOURCE_CLI))
1504  {
1505  if (fib_path_is_attached(rpath))
1506  {
1508  }
1509  else
1510  {
1512  }
1513  if (rpath->frp_flags & FIB_ROUTE_PATH_DEAG)
1514  {
1516  }
1517  }
1518  if (fib_route_attached_cross_table(fib_entry, rpath) &&
1520  {
1522  }
1523  else
1524  {
1526  }
1527  }
1528 }
1529 
1530 /*
1531  * fib_entry_src_action_add
1532  *
1533  * Adding a source can result in a new fib_entry being created, which
1534  * can inturn mean the pool is realloc'd and thus the entry passed as
1535  * an argument it also realloc'd
1536  * @return the entry
1537  */
1538 fib_entry_t*
1540  fib_source_t source,
1542  const fib_route_path_t *rpaths)
1543 {
1544  fib_node_index_t old_path_list, fib_entry_index;
1545  fib_path_list_flags_t pl_flags;
1547 
1548  /*
1549  * save variable so we can recover from a fib_entry realloc.
1550  */
1551  fib_entry_index = fib_entry_get_index(fib_entry);
1552 
1553  esrc = fib_entry_src_find(fib_entry, source);
1554  if (NULL == esrc)
1555  {
1556  const dpo_id_t *dpo;
1557 
1558  if (flags == FIB_ENTRY_FLAG_EXCLUSIVE) {
1559  dpo = &rpaths->dpo;
1560  } else {
1561  dpo = drop_dpo_get(fib_entry_get_dpo_proto(fib_entry));
1562  }
1563 
1564  fib_entry =
1565  fib_entry_src_action_add(fib_entry,
1566  source,
1567  flags,
1568  dpo);
1569  esrc = fib_entry_src_find(fib_entry, source);
1570  }
1571 
1572  /*
1573  * we are no doubt modifying a path-list. If the path-list
1574  * is shared, and hence not modifiable, then the index returned
1575  * will be for a different path-list. This FIB entry to needs
1576  * to maintain its lock appropriately.
1577  */
1578  old_path_list = esrc->fes_pl;
1579 
1580  ASSERT(FIB_ENTRY_SRC_VFT_EXISTS(esrc, fesv_path_add));
1581 
1583  fib_entry_flags_update(fib_entry, rpaths, &pl_flags, esrc);
1584 
1585  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_path_add,
1586  (esrc, fib_entry, pl_flags, rpaths));
1587  fib_entry = fib_entry_get(fib_entry_index);
1588 
1589  fib_path_list_lock(esrc->fes_pl);
1590  fib_path_list_unlock(old_path_list);
1591 
1592  return (fib_entry);
1593 }
1594 
1595 /*
1596  * fib_entry_src_action_swap
1597  *
1598  * The source is providing new paths to replace the old ones.
1599  * Adding a source can result in a new fib_entry being created, which
1600  * can inturn mean the pool is realloc'd and thus the entry passed as
1601  * an argument it also realloc'd
1602  * @return the entry
1603  */
1604 fib_entry_t*
1606  fib_source_t source,
1608  const fib_route_path_t *rpaths)
1609 {
1610  fib_node_index_t old_path_list, fib_entry_index;
1611  fib_path_list_flags_t pl_flags;
1613 
1614  esrc = fib_entry_src_find(fib_entry, source);
1615 
1616  /*
1617  * save variable so we can recover from a fib_entry realloc.
1618  */
1619  fib_entry_index = fib_entry_get_index(fib_entry);
1620 
1621  if (NULL == esrc)
1622  {
1623  const dpo_id_t *dpo;
1624 
1625  if (flags == FIB_ENTRY_FLAG_EXCLUSIVE) {
1626  dpo = &rpaths->dpo;
1627  } else {
1628  dpo = drop_dpo_get(fib_entry_get_dpo_proto(fib_entry));
1629  }
1630 
1631  fib_entry = fib_entry_src_action_add(fib_entry,
1632  source,
1633  flags,
1634  dpo);
1635  esrc = fib_entry_src_find(fib_entry, source);
1636  }
1637  else
1638  {
1639  if (flags != esrc->fes_entry_flags)
1640  {
1641  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_flags_change,
1642  (esrc, fib_entry, flags));
1643  }
1644  esrc->fes_entry_flags = flags;
1645  }
1646 
1647  /*
1648  * swapping paths may create a new path-list (or may use an existing shared)
1649  * but we are certainly getting a different one. This FIB entry to needs
1650  * to maintain its lock appropriately.
1651  */
1652  old_path_list = esrc->fes_pl;
1653 
1654  ASSERT(FIB_ENTRY_SRC_VFT_EXISTS(esrc, fesv_path_swap));
1655 
1656  pl_flags = fib_entry_src_flags_2_path_list_flags(flags);
1657 
1658  fib_entry_flags_update(fib_entry, rpaths, &pl_flags, esrc);
1659 
1660  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_path_swap,
1661  (esrc, fib_entry,
1662  pl_flags, rpaths));
1663 
1664  fib_entry = fib_entry_get(fib_entry_index);
1665 
1666  fib_path_list_lock(esrc->fes_pl);
1667  fib_path_list_unlock(old_path_list);
1668 
1669  return (fib_entry);
1670 }
1671 
1674  fib_source_t source,
1675  const fib_route_path_t *rpaths)
1676 {
1677  fib_path_list_flags_t pl_flags;
1678  fib_node_index_t old_path_list;
1680 
1681  esrc = fib_entry_src_find(fib_entry, source);
1682 
1683  ASSERT(NULL != esrc);
1685 
1686  /*
1687  * we no doubt modifying a path-list. If the path-list
1688  * is shared, and hence not modifiable, then the index returned
1689  * will be for a different path-list. This FIB entry to needs
1690  * to maintain its lock appropriately.
1691  */
1692  old_path_list = esrc->fes_pl;
1693 
1694  ASSERT(FIB_ENTRY_SRC_VFT_EXISTS(esrc, fesv_path_remove));
1695 
1697  fib_entry_flags_update(fib_entry, rpaths, &pl_flags, esrc);
1698 
1699  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_path_remove,
1700  (esrc, pl_flags, rpaths));
1701 
1702  /*
1703  * lock the new path-list, unlock the old if it had one
1704  */
1705  fib_path_list_unlock(old_path_list);
1706 
1707  if (FIB_NODE_INDEX_INVALID != esrc->fes_pl) {
1708  fib_path_list_lock(esrc->fes_pl);
1709  return (FIB_ENTRY_SRC_FLAG_ADDED);
1710  }
1711  else
1712  {
1713  /*
1714  * no more paths left from this source
1715  */
1717  return (FIB_ENTRY_SRC_FLAG_NONE);
1718  }
1719 }
1720 
1721 u8*
1723  fib_source_t source,
1724  u8* s)
1725 {
1727 
1728  esrc = fib_entry_src_find(fib_entry, source);
1729 
1730  FIB_ENTRY_SRC_VFT_INVOKE_AND_RETURN(esrc, fesv_format, (esrc, s));
1731 
1732  return (s);
1733 }
1734 
1737  fib_source_t source)
1738 {
1741 
1742  if (FIB_NODE_INDEX_INVALID == fib_entry_index)
1743  return (ADJ_INDEX_INVALID);
1744 
1745  fib_entry = fib_entry_get(fib_entry_index);
1746  esrc = fib_entry_src_find(fib_entry, source);
1747 
1748  if (NULL != esrc)
1749  {
1750  if (FIB_NODE_INDEX_INVALID != esrc->fes_pl)
1751  {
1752  return (fib_path_list_get_adj(
1753  esrc->fes_pl,
1754  fib_entry_get_default_chain_type(fib_entry)));
1755  }
1756  }
1757  return (ADJ_INDEX_INVALID);
1758 }
1759 
1760 const int
1762  fib_source_t source,
1763  dpo_id_t *dpo)
1764 {
1767 
1768  if (FIB_NODE_INDEX_INVALID == fib_entry_index)
1769  return (0);
1770 
1771  fib_entry = fib_entry_get(fib_entry_index);
1772  esrc = fib_entry_src_find(fib_entry, source);
1773 
1774  if (NULL != esrc)
1775  {
1776  if (FIB_NODE_INDEX_INVALID != esrc->fes_pl)
1777  {
1779  esrc->fes_pl,
1782  dpo);
1783 
1784  return (dpo_id_is_valid(dpo));
1785  }
1786  }
1787  return (0);
1788 }
1789 
1790 u32
1792  fib_source_t source)
1793 {
1796 
1797  fib_entry = fib_entry_get(entry_index);
1798 
1799  esrc = fib_entry_src_find(fib_entry, source);
1800 
1801  if (NULL != esrc)
1802  {
1803  if (FIB_NODE_INDEX_INVALID != esrc->fes_pl)
1804  {
1806  }
1807  }
1808  return (~0);
1809 }
1810 
1813  fib_source_t source)
1814 {
1817 
1818  fib_entry = fib_entry_get(entry_index);
1819 
1820  esrc = fib_entry_src_find(fib_entry, source);
1821 
1822  if (NULL != esrc)
1823  {
1824  return (esrc->fes_entry_flags);
1825  }
1826 
1827  return (FIB_ENTRY_FLAG_NONE);
1828 }
1829 
1832 {
1833  /* the vector of sources is deliberately arranged in priority order */
1834  if (0 == vec_len(fib_entry->fe_srcs))
1835  return (FIB_SOURCE_INVALID);
1836  return (vec_elt(fib_entry->fe_srcs, 0).fes_src);
1837 }
1838 
1841 {
1842  /* the vector of sources is deliberately arranged in priority order */
1843  if (0 == vec_len(fib_entry->fe_srcs))
1844  return (FIB_ENTRY_FLAG_NONE);
1845  return (vec_elt(fib_entry->fe_srcs, 0).fes_entry_flags);
1846 }
1847 
1848 void
1850  fib_source_t source,
1851  const void *data)
1852 {
1855 
1856  fib_entry = fib_entry_get(fib_entry_index);
1857  esrc = fib_entry_src_find(fib_entry, source);
1858 
1859  if (NULL != esrc)
1860  {
1861  FIB_ENTRY_SRC_VFT_INVOKE(esrc, fesv_set_data,
1862  (esrc, fib_entry, data));
1863  }
1864 }
1865 
1866 const void*
1868  fib_source_t source)
1869 {
1872 
1873  fib_entry = fib_entry_get(fib_entry_index);
1874  esrc = fib_entry_src_find(fib_entry, source);
1875 
1876  if (NULL != esrc)
1877  {
1878  FIB_ENTRY_SRC_VFT_INVOKE_AND_RETURN(esrc, fesv_get_data,
1879  (esrc, fib_entry));
1880  }
1881  return (NULL);
1882 }
1883 
1884 void
1886 {
1896 }
static int fib_entry_src_cmp_for_sort(void *v1, void *v2)
Definition: fib_entry_src.c:69
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:439
int fib_path_is_resolved(fib_node_index_t path_index)
Definition: fib_path.c:2669
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:212
Contribute an object that is to be used to forward BIER packets.
Definition: fib_types.h:122
Contribute an object that is to be used to forward IP6 packets.
Definition: fib_types.h:137
#define FIB_ENTRY_DBG(_e, _fmt, _args...)
Definition: fib_entry_src.h:28
ip46_address_t frp_addr
The next-hop address.
Definition: fib_types.h:495
Continue on to the next entry.
Definition: fib_table.h:868
void fib_table_fwding_dpo_remove(u32 fib_index, const fib_prefix_t *prefix, const dpo_id_t *dpo)
remove an entry in the FIB&#39;s forwarding table
Definition: fib_table.c:278
fib_path_ext_type_t fpe_type
The type of path extension.
Definition: fib_path_ext.h:126
void fib_entry_unlock(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1632
A path that resolves via a DVR DPO.
Definition: fib_types.h:381
Contribute an object that is to be used to forward IP6 packets.
Definition: fib_types.h:113
u32 flags
Definition: vhost_user.h:141
Pipe Mode - the default.
Definition: fib_types.h:413
An entry in a FIB table.
Definition: fib_entry.h:468
fib_node_index_t path_index
The index of the FIB path.
Definition: load_balance.h:71
#define CLIB_UNUSED(x)
Definition: clib.h:82
static int fib_entry_src_valid_out_label(mpls_label_t label)
void fib_path_contribute_forwarding(fib_node_index_t path_index, fib_forward_chain_type_t fct, dpo_id_t *dpo)
Definition: fib_path.c:2400
struct fib_entry_src_collect_forwarding_ctx_t_ fib_entry_src_collect_forwarding_ctx_t
static int fib_urpf_check_size(index_t ui)
Data-Plane function to check the size of an uRPF list, (i.e.
void fib_path_list_child_remove(fib_node_index_t path_list_index, u32 si)
fib_entry_src_copy_t fesv_copy
fib_protocol_t fib_entry_get_proto(const fib_entry_t *fib_entry)
Definition: fib_entry.c:70
fib_entry_flag_t fib_entry_get_flags_i(const fib_entry_t *fib_entry)
A representation of a path as described by a route producer.
Definition: fib_types.h:479
dpo_id_t path_dpo
ID of the Data-path object.
Definition: load_balance.h:66
fib_forward_chain_type_t fct
#define FIB_ENTRY_SRC_VFT_INVOKE_AND_RETURN(esrc, func, args)
fib_entry_t * fib_entry_src_action_path_add(fib_entry_t *fib_entry, fib_source_t source, fib_entry_flag_t flags, const fib_route_path_t *rpaths)
static void fib_entry_src_action_fwd_update(const fib_entry_t *fib_entry, fib_source_t source)
adj_index_t fib_path_list_get_adj(fib_node_index_t path_list_index, fib_forward_chain_type_t type)
vl_api_fib_path_nh_t nh
Definition: fib_types.api:126
Virtual function table each FIB entry source will register.
u32 fib_path_list_get_resolving_interface(fib_node_index_t path_list_index)
Definition: fib_entry.h:344
Definition: fib_entry.h:343
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
static void fib_entry_src_action_deinit(fib_entry_t *fib_entry, fib_source_t source)
Definition: fib_entry.h:292
#define NULL
Definition: clib.h:58
Information related to the source of a FIB entry.
Definition: fib_entry.h:360
u32 fib_table_get_index_for_sw_if_index(fib_protocol_t proto, u32 sw_if_index)
Get the index of the FIB bound to the interface.
Definition: fib_table.c:967
Definition: fib_entry.h:287
void load_balance_set_urpf(index_t lbi, index_t urpf)
Definition: load_balance.c:310
An MPLS extension that maintains the path&#39;s outgoing labels,.
Definition: fib_path_ext.h:31
int fib_path_is_exclusive(fib_node_index_t path_index)
Definition: fib_path.c:2649
void fib_entry_src_action_deactivate(fib_entry_t *fib_entry, fib_source_t source)
load_balance_path_t * next_hops
enum fib_entry_delegate_type_t_ fib_entry_delegate_type_t
Delegate types.
u32 mpls_label_t
A label value only, i.e.
Definition: packet.h:26
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:410
#define MPLS_IETF_IMPLICIT_NULL_LABEL
Definition: mpls_types.h:30
static fib_table_walk_rc_t fib_entry_src_covered_inherit_add_i(fib_entry_t *fib_entry, const fib_entry_src_t *cover_src)
From the CLI.
Definition: fib_entry.h:83
void dpo_copy(dpo_id_t *dst, const dpo_id_t *src)
atomic copy a data-plane object.
Definition: dpo.c:262
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
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
vl_api_address_t src
Definition: gre.api:51
fib_entry_src_flag_t fib_entry_src_action_path_remove(fib_entry_t *fib_entry, fib_source_t source, const fib_route_path_t *rpaths)
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:560
Result from a cover update/change.
Definition: fib_entry_src.h:91
void fib_path_list_walk(fib_node_index_t path_list_index, fib_path_list_walk_fn_t func, void *ctx)
Contribute an object that is to be used to forward IP4 packets.
Definition: fib_types.h:109
fib_entry_src_contribute_interpose_t fesv_contribute_interpose
static fib_entry_src_t * fib_entry_src_find_or_create(fib_entry_t *fib_entry, fib_source_t source, fib_entry_flag_t flags)
u8 data[128]
Definition: ipsec.api:249
Definition: fib_entry.h:290
u32 fe_fib_index
The index of the FIB table this entry is in.
Definition: fib_entry.h:481
uRPF bypass/exemption.
Definition: fib_entry.h:135
Definition: fib_entry.h:283
fib_entry_src_t * fe_srcs
Vector of source infos.
Definition: fib_entry.h:500
static void fib_entry_recursive_loop_detect_i(fib_node_index_t path_list_index)
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)
dpo_id_t fd_dpo
Valid for the forwarding chain delegates.
unsigned char u8
Definition: types.h:56
fib_node_index_t fe_parent
the path-list for which this entry is a child.
Definition: fib_entry.h:505
fib_source_t fib_entry_get_source_i(const fib_entry_t *fib_entry)
void fib_entry_src_mpls_register(void)
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
flow_hash_config_t fib_table_get_flow_hash_config(u32 fib_index, fib_protocol_t proto)
Get the flow hash configured used by the table.
Definition: fib_table.c:983
#define clib_memcpy(d, s, n)
Definition: string.h:180
index_t load_balance_create(u32 n_buckets, dpo_proto_t lb_proto, flow_hash_config_t fhc)
Definition: load_balance.c:239
const dpo_id_t * drop_dpo_get(dpo_proto_t proto)
Definition: drop_dpo.c:25
void fib_entry_src_adj_register(void)
dpo_proto_t fp_payload_proto
This protocol determines the payload protocol of packets that will be forwarded by this entry once th...
Definition: fib_types.h:236
u32 fe_sibling
index of this entry in the parent&#39;s child list.
Definition: fib_entry.h:511
Definition: fib_entry.h:289
flow_hash_config_t fib_table_get_default_flow_hash_config(fib_protocol_t proto)
Get the flow hash configured used by the protocol.
Definition: fib_table.c:994
fib_entry_flag_t fib_entry_get_flags_for_source(fib_node_index_t entry_index, fib_source_t source)
const int fib_entry_get_dpo_for_source(fib_node_index_t fib_entry_index, fib_source_t source, dpo_id_t *dpo)
u32 fib_entry_get_resolving_interface_for_source(fib_node_index_t entry_index, fib_source_t source)
static fib_entry_src_t * fib_entry_src_find(const fib_entry_t *fib_entry, fib_source_t source)
void fib_entry_src_lisp_register(void)
u32 frp_sw_if_index
The interface.
Definition: fib_types.h:519
index_t fib_urpf_list_alloc_and_lock(void)
Definition: fib_urpf_list.c:55
static fib_entry_src_t * fib_entry_src_action_update_from_cover(fib_entry_t *fib_entry, const fib_entry_src_t *orig_src)
#define MPLS_IS_REPLICATE
The top bit of the index, which is the result of the MPLS lookup is used to determine if the DPO is a...
Definition: mpls_types.h:66
Aggregrate type for a prefix.
Definition: fib_types.h:203
fib_node_index_t fib_entry_get_index(const fib_entry_t *fib_entry)
Definition: fib_entry.c:64
void dpo_mk_interpose(const dpo_id_t *original, const dpo_id_t *parent, dpo_id_t *clone)
Make an interpose DPO from an original.
Definition: dpo.c:353
static void fib_entry_flags_update(const fib_entry_t *fib_entry, const fib_route_path_t *rpaths, fib_path_list_flags_t *pl_flags, fib_entry_src_t *esrc)
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
union fib_entry_src_t_::@137 u
Source specific info.
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.
fib_protocol_t dpo_proto_to_fib(dpo_proto_t dpo_proto)
Definition: fib_types.c:253
void fib_entry_src_api_register(void)
u16 fib_path_get_weight(fib_node_index_t path_index)
Definition: fib_path.c:2225
void fib_urpf_list_append(index_t ui, u32 sw_if_index)
Append another interface to the list.
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
u16 install
Definition: fib_entry_src.h:92
Definition: fib_entry.h:281
u16 preference
#define FOR_EACH_SRC_ADDED(_entry, _src, _source, action)
A adj-source extension indicating the path&#39;s refinement criteria result.
Definition: fib_path_ext.h:36
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
Contribute an object that is to be used to forward end-of-stack MPLS packets.
Definition: fib_types.h:129
Definition: fib_entry.h:286
void fib_entry_src_mk_lb(fib_entry_t *fib_entry, const fib_entry_src_t *esrc, fib_forward_chain_type_t fct, dpo_id_t *dpo_lb)
void fib_path_ext_list_flush(fib_path_ext_list_t *list)
Definition: fib_path_ext.c:448
void fib_entry_src_default_route_register(void)
Definition: fib_entry.h:285
static fib_table_walk_rc_t fib_entry_src_covered_inherit_walk_remove(fib_node_index_t fei, void *ctx)
#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
fib_entry_t * fib_entry_src_action_add(fib_entry_t *fib_entry, fib_source_t source, fib_entry_flag_t flags, const dpo_id_t *dpo)
static int fib_route_attached_cross_table(const fib_entry_t *fib_entry, const fib_route_path_t *rpath)
enum fib_source_t_ fib_source_t
The different sources that can create a route.
An invalid source This is not a real source, so don&#39;t use it to source a prefix.
Definition: fib_entry.h:35
#define FOR_EACH_DELEGATE_CHAIN(_entry, _fdt, _fed, _body)
dpo_type_t dpoi_type
the type
Definition: dpo.h:174
#define FIB_ENTRY_SRC_VFT_INVOKE(esrc, func, args)
long ctx[MAX_CONNS]
Definition: main.c:144
unsigned short u16
Definition: types.h:57
Definition: fib_entry.h:345
void load_balance_set_fib_entry_flags(index_t lbi, fib_entry_flag_t flags)
Definition: load_balance.c:299
load-balancing over a choice of [un]equal cost paths
Definition: dpo.h:102
void fib_entry_src_interpose_register(void)
#define MPLS_LABEL_IS_REAL(_lbl)
Definition: mpls_types.h:58
#define FIB_ENTRY_SRC_VFT_EXISTS(esrc, func)
u8 n_nhs
Definition: gbp.api:288
const fib_entry_src_vft_t * fib_entry_src_get_vft(const fib_entry_src_t *esrc)
Get the VFT for a given source.
Definition: fib_entry_src.c:38
#define vec_del1(v, i)
Delete the element at index I.
Definition: vec.h:804
void fib_table_fwding_dpo_update(u32 fib_index, const fib_prefix_t *prefix, const dpo_id_t *dpo)
Add or update an entry in the FIB&#39;s forwarding table.
Definition: fib_table.c:251
static void fib_entry_src_get_path_forwarding(fib_node_index_t path_index, fib_entry_src_collect_forwarding_ctx_t *ctx)
void fib_path_list_lock(fib_node_index_t path_list_index)
u32 label
Definition: fib_types.api:25
static fib_entry_src_t * fib_entry_src_find_i(const fib_entry_t *fib_entry, fib_source_t source, u32 *index)
Definition: fib_entry_src.c:97
void fib_path_stack_mpls_disp(fib_node_index_t path_index, dpo_proto_t payload_proto, fib_mpls_lsp_mode_t mode, dpo_id_t *dpo)
Definition: fib_path.c:2339
dpo_id_t dpo
Exclusive DPO.
Definition: fib_types.h:544
#define FIB_SOURCE_MAX
The maximum number of sources.
Definition: fib_entry.h:162
fib_entry_src_flag_t fib_entry_src_action_remove_or_update_inherit(fib_entry_t *fib_entry, fib_source_t source)
fib_entry_src_flag_t fib_entry_src_action_remove(fib_entry_t *fib_entry, fib_source_t source)
void replicate_multipath_update(const dpo_id_t *dpo, load_balance_path_t *next_hops)
int fib_path_list_is_popular(fib_node_index_t path_list_index)
void fib_entry_src_action_installed(const fib_entry_t *fib_entry, fib_source_t source)
Definition: fib_entry.h:341
Contribute an object that is to be used to forward NSH packets.
Definition: fib_types.h:147
enum fib_table_walk_rc_t_ fib_table_walk_rc_t
return code controlling how a table walk proceeds
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
void fib_entry_src_action_activate(fib_entry_t *fib_entry, fib_source_t source)
void fib_urpf_list_bake(index_t ui)
Convert the uRPF list from the itf set obtained during the walk to a unique list. ...
void fib_entry_source_change(fib_entry_t *fib_entry, fib_source_t old_source, fib_source_t new_source)
Definition: fib_entry.c:857
void fib_entry_src_rr_register(void)
#define MPLS_IETF_IPV4_EXPLICIT_NULL_LABEL
Definition: mpls_types.h:27
fib_path_list_flags_t fib_entry_src_flags_2_path_list_flags(fib_entry_flag_t eflags)
Definition: fib_entry.h:291
fib_entry_src_cover_res_t fib_entry_src_action_cover_change(fib_entry_t *fib_entry, fib_entry_src_t *esrc)
Definition: fib_entry.h:284
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
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
fib_forward_chain_type_t fib_entry_delegate_type_to_chain_type(fib_entry_delegate_type_t fdt)
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)
fib_entry_t * fib_entry_get(fib_node_index_t index)
Definition: fib_entry.c:52
static fib_table_walk_rc_t fib_entry_src_covered_inherit_walk_add(fib_node_index_t fei, void *ctx)
enum fib_entry_flag_t_ fib_entry_flag_t
void fib_entry_src_interface_register(void)
void fib_entry_lock(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1622
int fib_path_list_recursive_loop_detect(fib_node_index_t path_list_index, fib_node_index_t **entry_indicies)
static void fib_entry_src_covered_inherit_add(fib_entry_t *fib_entry, fib_source_t source)
fib_entry_flag_t fes_entry_flags
Flags the source contributes to the entry.
Definition: fib_entry.h:374
int n_recursive_constrained
fib_source_t fes_src
Which source this info block is for.
Definition: fib_entry.h:379
#define ASSERT(truth)
fib_entry_src_flag_t fes_flags
Flags on the source.
Definition: fib_entry.h:384
void fib_entry_src_special_register(void)
fib_entry_t * fib_entry_src_action_path_swap(fib_entry_t *fib_entry, fib_source_t source, fib_entry_flag_t flags, const fib_route_path_t *rpaths)
int fib_path_is_deag(fib_node_index_t path_index)
Definition: fib_path.c:2659
void fib_entry_src_module_init(void)
void fib_entry_src_register(fib_source_t source, const fib_entry_src_vft_t *vft)
Definition: fib_entry_src.c:57
enum fib_forward_chain_type_t_ fib_forward_chain_type_t
FIB output chain type.
fib_route_path_flags_t frp_flags
flags on the path
Definition: fib_types.h:589
fib_entry_t * fib_entry_src_action_update(fib_entry_t *fib_entry, fib_source_t source, fib_entry_flag_t flags, const dpo_id_t *dpo)
The interpose source.
Definition: fib_entry.h:149
Definition: fib_entry.h:342
From the control plane API.
Definition: fib_entry.h:79
enum fib_entry_src_flag_t_ fib_entry_src_flag_t
#define MPLS_LABEL_POP
A value that is explicit about the end of the LSP.
Definition: mpls_types.h:56
A path that resolves via another table.
Definition: fib_types.h:377
u32 flow_hash_config_t
A flow hash configuration is a mask of the flow hash options.
Definition: lookup.h:84
Do no traverse down this sub-tree.
Definition: fib_table.h:872
int fib_entry_is_sourced(fib_node_index_t fib_entry_index, fib_source_t source)
u32 entries
dpo_id_t fe_lb
The load-balance used for forwarding.
Definition: fib_entry.h:494
#define vec_elt(v, i)
Get vector value at index i.
fib_node_index_t fes_pl
The path-list created by the source.
Definition: fib_entry.h:369
void fib_entry_src_inherit(const fib_entry_t *cover, fib_entry_t *covered)
static dpo_proto_t fib_prefix_get_payload_proto(const fib_prefix_t *pfx)
enum load_balance_flags_t_ load_balance_flags_t
int fib_path_is_recursive_constrained(fib_node_index_t path_index)
Definition: fib_path.c:2637
static void fib_entry_src_covered_inherit_remove(fib_entry_t *fib_entry, fib_entry_src_t *esrc)
fib_path_ext_adj_flags_t fpe_adj_flags
For an ADJ type extension.
Definition: fib_path_ext.h:114
const fib_entry_src_t * esrc
enum fib_path_list_walk_rc_t_ fib_path_list_walk_rc_t
return code to control pat-hlist walk
static void fib_entry_src_action_init(fib_entry_t *fib_entry, fib_source_t source, fib_entry_flag_t flags)
Definition: fib_entry_src.c:78
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
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u32 path_weight
weight for the path.
Definition: load_balance.h:76
u16 fib_path_get_preference(fib_node_index_t path_index)
Definition: fib_path.c:2237
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
Definition: vec.h:980
fib_entry_src_activate_t fesv_activate
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
Definition: dpo.h:197
void fib_urpf_list_unlock(index_t ui)
Definition: fib_urpf_list.c:68
#define MPLS_IETF_IPV6_EXPLICIT_NULL_LABEL
Definition: mpls_types.h:29
One path from an [EU]CMP set that the client wants to add to a load-balance object.
Definition: load_balance.h:62
u8 * fib_entry_src_format(fib_entry_t *fib_entry, fib_source_t source, u8 *s)
void fib_path_list_contribute_forwarding(fib_node_index_t path_list_index, fib_forward_chain_type_t fct, fib_path_list_fwd_flags_t flags, dpo_id_t *dpo)
void fib_entry_set_source_data(fib_node_index_t fib_entry_index, fib_source_t source, const void *data)
index_t fib_path_list_get_urpf(fib_node_index_t path_list_index)
Return the the child the RPF list pre-built for this path list.
fib_forward_chain_type_t fib_entry_chain_type_fixup(const fib_entry_t *entry, fib_forward_chain_type_t fct)
Turn the chain type requested by the client into the one they really wanted.
void fib_entry_src_action_reactivate(fib_entry_t *fib_entry, fib_source_t source)
load_balance_flags_t fib_entry_calc_lb_flags(fib_entry_src_collect_forwarding_ctx_t *ctx)
Determine whether this FIB entry should use a load-balance MAP to support PIC edge fast convergence...
const fib_entry_t * fib_entry
static fib_path_list_walk_rc_t fib_entry_src_collect_forwarding(fib_node_index_t pl_index, fib_node_index_t path_index, void *arg)
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
adj_index_t fib_entry_get_adj_for_source(fib_node_index_t fib_entry_index, fib_source_t source)
u8 fes_ref_count
1 bytes ref count.
Definition: fib_entry.h:391
fib_path_ext_list_t fes_path_exts
A vector of path extensions.
Definition: fib_entry.h:364
dpo_proto_t fib_entry_get_dpo_proto(const fib_entry_t *fib_entry)
Definition: fib_entry.c:76
static int fib_path_is_attached(const fib_route_path_t *rpath)
static void fib_entry_src_copy_default(const fib_entry_src_t *orig_src, const fib_entry_t *fib_entry, fib_entry_src_t *copy_src)
Definition: fib_entry_src.c:49
Contribute an object that is to be used to forward non-end-of-stack MPLS packets. ...
Definition: fib_types.h:118
const void * fib_entry_get_source_data(fib_node_index_t fib_entry_index, fib_source_t source)
Attached path.
Definition: fib_types.h:336
enum fib_path_list_flags_t_ fib_path_list_flags_t
A Delagate is a means to implmenet the Delagation design pattern; the extension of an objects functio...
void fib_table_sub_tree_walk(u32 fib_index, fib_protocol_t proto, const fib_prefix_t *root, fib_table_walk_fn_t fn, void *ctx)
Walk all entries in a sub-tree FIB table.
Definition: fib_table.c:1228
fib_source_t fib_entry_get_best_source(fib_node_index_t entry_index)
Definition: fib_entry.c:1458
#define ip46_address_is_zero(ip46)
Definition: ip6_packet.h:93
Contribute an object that is to be used to forward IP4 packets.
Definition: fib_types.h:133
Definition: fib_entry.h:288
fib_forward_chain_type_t fib_forw_chain_type_from_dpo_proto(dpo_proto_t proto)
Convert from a payload-protocol to a chain type.
Definition: fib_types.c:321
fib_forward_chain_type_t fib_entry_get_default_chain_type(const fib_entry_t *fib_entry)
Definition: fib_entry.c:82
void fib_entry_src_action_install(fib_entry_t *fib_entry, fib_source_t source)
fib_entry_src_cover_res_t fib_entry_src_action_cover_update(fib_entry_t *fib_entry, fib_entry_src_t *esrc)
const fib_prefix_t fe_prefix
The prefix of the route.
Definition: fib_entry.h:477
fib_entry_src_flag_t fib_entry_special_remove(fib_node_index_t fib_entry_index, fib_source_t source)
Definition: fib_entry.c:1095
fib_entry_src_reactivate_t fesv_reactivate
void fib_entry_src_action_uninstall(fib_entry_t *fib_entry)
static fib_entry_t * fib_entry_src_action_copy(fib_entry_t *fib_entry, const fib_entry_src_t *orig_src)
fib_node_index_t fib_table_get_less_specific(u32 fib_index, const fib_prefix_t *prefix)
Get the less specific (covering) prefix.
Definition: fib_table.c:131
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