FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
fib_path.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 <vlib/vlib.h>
17 #include <vnet/vnet.h>
18 #include <vnet/ip/format.h>
19 #include <vnet/ip/ip.h>
20 #include <vnet/dpo/drop_dpo.h>
21 #include <vnet/dpo/receive_dpo.h>
23 #include <vnet/dpo/lookup_dpo.h>
26 #include <vnet/dpo/dvr_dpo.h>
27 #include <vnet/dpo/drop_dpo.h>
28 
29 #include <vnet/adj/adj.h>
30 #include <vnet/adj/adj_mcast.h>
31 
32 #include <vnet/fib/fib_path.h>
33 #include <vnet/fib/fib_node.h>
34 #include <vnet/fib/fib_table.h>
35 #include <vnet/fib/fib_entry.h>
36 #include <vnet/fib/fib_path_list.h>
37 #include <vnet/fib/fib_internal.h>
38 #include <vnet/fib/fib_urpf_list.h>
39 #include <vnet/fib/mpls_fib.h>
40 #include <vnet/fib/fib_path_ext.h>
41 #include <vnet/udp/udp_encap.h>
42 #include <vnet/bier/bier_fmask.h>
43 #include <vnet/bier/bier_table.h>
44 #include <vnet/bier/bier_imp.h>
46 
47 /**
48  * Enurmeration of path types
49  */
50 typedef enum fib_path_type_t_ {
51  /**
52  * Marker. Add new types after this one.
53  */
55  /**
56  * Attached-nexthop. An interface and a nexthop are known.
57  */
59  /**
60  * attached. Only the interface is known.
61  */
63  /**
64  * recursive. Only the next-hop is known.
65  */
67  /**
68  * special. nothing is known. so we drop.
69  */
71  /**
72  * exclusive. user provided adj.
73  */
75  /**
76  * deag. Link to a lookup adj in the next table
77  */
79  /**
80  * interface receive.
81  */
83  /**
84  * Path resolves via a UDP encap object.
85  */
87  /**
88  * receive. it's for-us.
89  */
91  /**
92  * bier-imp. it's via a BIER imposition.
93  */
95  /**
96  * bier-fmask. it's via a BIER ECMP-table.
97  */
99  /**
100  * bier-fmask. it's via a BIER f-mask.
101  */
103  /**
104  * via a DVR.
105  */
107  /**
108  * Marker. Add new types before this one, then update it.
109  */
111 } __attribute__ ((packed)) fib_path_type_t;
112 
113 /**
114  * The maximum number of path_types
115  */
116 #define FIB_PATH_TYPE_MAX (FIB_PATH_TYPE_LAST + 1)
117 
118 #define FIB_PATH_TYPES { \
119  [FIB_PATH_TYPE_ATTACHED_NEXT_HOP] = "attached-nexthop", \
120  [FIB_PATH_TYPE_ATTACHED] = "attached", \
121  [FIB_PATH_TYPE_RECURSIVE] = "recursive", \
122  [FIB_PATH_TYPE_SPECIAL] = "special", \
123  [FIB_PATH_TYPE_EXCLUSIVE] = "exclusive", \
124  [FIB_PATH_TYPE_DEAG] = "deag", \
125  [FIB_PATH_TYPE_INTF_RX] = "intf-rx", \
126  [FIB_PATH_TYPE_UDP_ENCAP] = "udp-encap", \
127  [FIB_PATH_TYPE_RECEIVE] = "receive", \
128  [FIB_PATH_TYPE_BIER_IMP] = "bier-imp", \
129  [FIB_PATH_TYPE_BIER_TABLE] = "bier-table", \
130  [FIB_PATH_TYPE_BIER_FMASK] = "bier-fmask", \
131  [FIB_PATH_TYPE_DVR] = "dvr", \
132 }
133 
134 #define FOR_EACH_FIB_PATH_TYPE(_item) \
135  for (_item = FIB_PATH_TYPE_FIRST; \
136  _item <= FIB_PATH_TYPE_LAST; \
137  _item++)
138 
139 /**
140  * Enurmeration of path operational (i.e. derived) attributes
141  */
143  /**
144  * Marker. Add new types after this one.
145  */
147  /**
148  * The path forms part of a recursive loop.
149  */
151  /**
152  * The path is resolved
153  */
155  /**
156  * The path is attached, despite what the next-hop may say.
157  */
159  /**
160  * The path has become a permanent drop.
161  */
163  /**
164  * Marker. Add new types before this one, then update it.
165  */
167 } __attribute__ ((packed)) fib_path_oper_attribute_t;
168 
169 /**
170  * The maximum number of path operational attributes
171  */
172 #define FIB_PATH_OPER_ATTRIBUTE_MAX (FIB_PATH_OPER_ATTRIBUTE_LAST + 1)
173 
174 #define FIB_PATH_OPER_ATTRIBUTES { \
175  [FIB_PATH_OPER_ATTRIBUTE_RECURSIVE_LOOP] = "recursive-loop", \
176  [FIB_PATH_OPER_ATTRIBUTE_RESOLVED] = "resolved", \
177  [FIB_PATH_OPER_ATTRIBUTE_DROP] = "drop", \
178 }
179 
180 #define FOR_EACH_FIB_PATH_OPER_ATTRIBUTE(_item) \
181  for (_item = FIB_PATH_OPER_ATTRIBUTE_FIRST; \
182  _item <= FIB_PATH_OPER_ATTRIBUTE_LAST; \
183  _item++)
184 
185 /**
186  * Path flags from the attributes
187  */
194 } __attribute__ ((packed)) fib_path_oper_flags_t;
195 
196 /**
197  * A FIB path
198  */
199 typedef struct fib_path_t_ {
200  /**
201  * A path is a node in the FIB graph.
202  */
204 
205  /**
206  * The index of the path-list to which this path belongs
207  */
209 
210  /**
211  * This marks the start of the memory area used to hash
212  * the path
213  */
214  STRUCT_MARK(path_hash_start);
215 
216  /**
217  * Configuration Flags
218  */
220 
221  /**
222  * The type of the path. This is the selector for the union
223  */
224  fib_path_type_t fp_type;
225 
226  /**
227  * The protocol of the next-hop, i.e. the address family of the
228  * next-hop's address. We can't derive this from the address itself
229  * since the address can be all zeros
230  */
232 
233  /**
234  * UCMP [unnormalised] weigth
235  */
237 
238  /**
239  * A path preference. 0 is the best.
240  * Only paths of the best preference, that are 'up', are considered
241  * for forwarding.
242  */
244 
245  /**
246  * per-type union of the data required to resolve the path
247  */
248  union {
249  struct {
250  /**
251  * The next-hop
252  */
253  ip46_address_t fp_nh;
254  /**
255  * The interface
256  */
259  struct {
260  /**
261  * The interface
262  */
264  } attached;
265  struct {
266  union
267  {
268  /**
269  * The next-hop
270  */
271  ip46_address_t fp_ip;
272  struct {
273  /**
274  * The local label to resolve through.
275  */
277  /**
278  * The EOS bit of the resolving label
279  */
281  };
282  } fp_nh;
283  union {
284  /**
285  * The FIB table index in which to find the next-hop.
286  */
288  /**
289  * The BIER FIB the fmask is in
290  */
292  };
293  } recursive;
294  struct {
295  /**
296  * BIER FMask ID
297  */
299  } bier_fmask;
300  struct {
301  /**
302  * The BIER table's ID
303  */
305  } bier_table;
306  struct {
307  /**
308  * The BIER imposition object
309  * this is part of the path's key, since the index_t
310  * of an imposition object is the object's key.
311  */
313  } bier_imp;
314  struct {
315  /**
316  * The FIB index in which to perfom the next lookup
317  */
319  /**
320  * The RPF-ID to tag the packets with
321  */
323  } deag;
324  struct {
325  } special;
326  struct {
327  /**
328  * The user provided 'exclusive' DPO
329  */
331  } exclusive;
332  struct {
333  /**
334  * The interface on which the local address is configured
335  */
337  /**
338  * The next-hop
339  */
340  ip46_address_t fp_addr;
341  } receive;
342  struct {
343  /**
344  * The interface on which the packets will be input.
345  */
347  } intf_rx;
348  struct {
349  /**
350  * The UDP Encap object this path resolves through
351  */
353  } udp_encap;
354  struct {
355  /**
356  * The interface
357  */
359  } dvr;
360  };
361  STRUCT_MARK(path_hash_end);
362 
363  /**
364  * Memebers in this last section represent information that is
365  * dervied during resolution. It should not be copied to new paths
366  * nor compared.
367  */
368 
369  /**
370  * Operational Flags
371  */
373 
374  union {
375  /**
376  * the resolving via fib. not part of the union, since it it not part
377  * of the path's hash.
378  */
380  /**
381  * the resolving bier-table
382  */
384  /**
385  * the resolving bier-fmask
386  */
388  };
389 
390  /**
391  * The Data-path objects through which this path resolves for IP.
392  */
394 
395  /**
396  * the index of this path in the parent's child list.
397  */
399 } fib_path_t;
400 
401 /*
402  * Array of strings/names for the path types and attributes
403  */
404 static const char *fib_path_type_names[] = FIB_PATH_TYPES;
405 static const char *fib_path_oper_attribute_names[] = FIB_PATH_OPER_ATTRIBUTES;
406 static const char *fib_path_cfg_attribute_names[] = FIB_PATH_CFG_ATTRIBUTES;
407 
408 /*
409  * The memory pool from which we allocate all the paths
410  */
412 
413 /**
414  * the logger
415  */
417 
418 /*
419  * Debug macro
420  */
421 #define FIB_PATH_DBG(_p, _fmt, _args...) \
422 { \
423  vlib_log_debug (fib_path_logger, \
424  "[%U]: " _fmt, \
425  format_fib_path, fib_path_get_index(_p), 0, \
426  FIB_PATH_FORMAT_FLAGS_ONE_LINE, \
427  ##_args); \
428 }
429 
430 static fib_path_t *
432 {
433  return (pool_elt_at_index(fib_path_pool, index));
434 }
435 
436 static fib_node_index_t
438 {
439  return (path - fib_path_pool);
440 }
441 
442 static fib_node_t *
444 {
445  return ((fib_node_t*)fib_path_get(index));
446 }
447 
448 static fib_path_t*
450 {
452  return ((fib_path_t*)node);
453 }
454 
455 u8 *
456 format_fib_path (u8 * s, va_list * args)
457 {
458  fib_node_index_t path_index = va_arg (*args, fib_node_index_t);
459  u32 indent = va_arg (*args, u32);
461  vnet_main_t * vnm = vnet_get_main();
462  fib_path_oper_attribute_t oattr;
464  fib_path_t *path;
465  const char *eol;
466 
467  if (flags & FIB_PATH_FORMAT_FLAGS_ONE_LINE)
468  {
469  eol = "";
470  }
471  else
472  {
473  eol = "\n";
474  }
475 
476  path = fib_path_get(path_index);
477 
478  s = format (s, "%Upath:[%d] ", format_white_space, indent,
479  fib_path_get_index(path));
480  s = format (s, "pl-index:%d ", path->fp_pl_index);
481  s = format (s, "%U ", format_dpo_proto, path->fp_nh_proto);
482  s = format (s, "weight=%d ", path->fp_weight);
483  s = format (s, "pref=%d ", path->fp_preference);
484  s = format (s, "%s: ", fib_path_type_names[path->fp_type]);
485  if (FIB_PATH_OPER_FLAG_NONE != path->fp_oper_flags) {
486  s = format(s, " oper-flags:");
488  if ((1<<oattr) & path->fp_oper_flags) {
489  s = format (s, "%s,", fib_path_oper_attribute_names[oattr]);
490  }
491  }
492  }
493  if (FIB_PATH_CFG_FLAG_NONE != path->fp_cfg_flags) {
494  s = format(s, " cfg-flags:");
496  if ((1<<cattr) & path->fp_cfg_flags) {
497  s = format (s, "%s,", fib_path_cfg_attribute_names[cattr]);
498  }
499  }
500  }
501  if (!(flags & FIB_PATH_FORMAT_FLAGS_ONE_LINE))
502  s = format(s, "\n%U", format_white_space, indent+2);
503 
504  switch (path->fp_type)
505  {
507  s = format (s, "%U", format_ip46_address,
508  &path->attached_next_hop.fp_nh,
509  IP46_TYPE_ANY);
511  {
512  s = format (s, " if_index:%d", path->attached_next_hop.fp_interface);
513  }
514  else
515  {
516  s = format (s, " %U",
518  vnm,
520  vnm,
521  path->attached_next_hop.fp_interface));
523  path->attached_next_hop.fp_interface))
524  {
525  s = format (s, " (p2p)");
526  }
527  }
528  if (!dpo_id_is_valid(&path->fp_dpo))
529  {
530  s = format(s, "%s%Uunresolved", eol, format_white_space, indent+2);
531  }
532  else
533  {
534  s = format(s, "%s%U%U", eol,
535  format_white_space, indent,
537  &path->fp_dpo, 13);
538  }
539  break;
542  {
543  s = format (s, "if_index:%d", path->attached_next_hop.fp_interface);
544  }
545  else
546  {
547  s = format (s, " %U",
549  vnm,
551  vnm,
552  path->attached.fp_interface));
553  }
554  break;
556  if (DPO_PROTO_MPLS == path->fp_nh_proto)
557  {
558  s = format (s, "via %U %U",
560  path->recursive.fp_nh.fp_local_label,
562  path->recursive.fp_nh.fp_eos);
563  }
564  else
565  {
566  s = format (s, "via %U",
568  &path->recursive.fp_nh.fp_ip,
569  IP46_TYPE_ANY);
570  }
571  s = format (s, " in fib:%d",
572  path->recursive.fp_tbl_id,
573  path->fp_via_fib);
574  s = format (s, " via-fib:%d", path->fp_via_fib);
575  s = format (s, " via-dpo:[%U:%d]",
577  path->fp_dpo.dpoi_index);
578 
579  break;
581  s = format (s, "UDP-encap ID:%d", path->udp_encap.fp_udp_encap_id);
582  break;
584  s = format (s, "via bier-table:[%U}",
586  &path->bier_table.fp_bier_tbl);
587  s = format (s, " via-dpo:[%U:%d]",
589  path->fp_dpo.dpoi_index);
590  break;
592  s = format (s, "via-fmask:%d", path->bier_fmask.fp_bier_fmask);
593  s = format (s, " via-dpo:[%U:%d]",
595  path->fp_dpo.dpoi_index);
596  break;
598  s = format (s, "via %U", format_bier_imp,
599  path->bier_imp.fp_bier_imp, 0, BIER_SHOW_BRIEF);
600  break;
601  case FIB_PATH_TYPE_DVR:
602  s = format (s, " %U",
604  vnm,
606  vnm,
607  path->dvr.fp_interface));
608  break;
609  case FIB_PATH_TYPE_DEAG:
610  s = format (s, " %sfib-index:%d",
611  (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID ? "m" : ""),
612  path->deag.fp_tbl_id);
613  break;
618  if (dpo_id_is_valid(&path->fp_dpo))
619  {
620  s = format(s, "%U", format_dpo_id,
621  &path->fp_dpo, indent+2);
622  }
623  break;
624  }
625  return (s);
626 }
627 
628 /*
629  * fib_path_last_lock_gone
630  *
631  * We don't share paths, we share path lists, so the [un]lock functions
632  * are no-ops
633  */
634 static void
636 {
637  ASSERT(0);
638 }
639 
640 static const adj_index_t
642  vnet_link_t link)
643 {
645  path->attached_next_hop.fp_interface))
646  {
647  /*
648  * if the interface is p2p then the adj for the specific
649  * neighbour on that link will never exist. on p2p links
650  * the subnet address (the attached route) links to the
651  * auto-adj (see below), we want that adj here too.
652  */
654  link,
655  &zero_addr,
656  path->attached_next_hop.fp_interface));
657  }
658  else
659  {
661  link,
662  &path->attached_next_hop.fp_nh,
663  path->attached_next_hop.fp_interface));
664  }
665 }
666 
667 static void
669 {
670  /*
671  * resolve directly via the adjacnecy discribed by the
672  * interface and next-hop
673  */
674  dpo_set(&path->fp_dpo,
676  path->fp_nh_proto,
678  path,
680 
681  /*
682  * become a child of the adjacency so we receive updates
683  * when its rewrite changes
684  */
687  fib_path_get_index(path));
688 
690  path->attached_next_hop.fp_interface) ||
691  !adj_is_up(path->fp_dpo.dpoi_index))
692  {
694  }
695 }
696 
697 static const adj_index_t
699  vnet_link_t link)
700 {
702  path->attached.fp_interface))
703  {
704  /*
705  * point-2-point interfaces do not require a glean, since
706  * there is nothing to ARP. Install a rewrite/nbr adj instead
707  */
709  link,
710  &zero_addr,
711  path->attached.fp_interface));
712  }
713  else
714  {
716  link,
717  path->attached.fp_interface,
718  NULL));
719  }
720 }
721 
722 /*
723  * create of update the paths recursive adj
724  */
725 static void
728  dpo_id_t *dpo)
729 {
730  dpo_id_t via_dpo = DPO_INVALID;
731 
732  /*
733  * get the DPO to resolve through from the via-entry
734  */
736  fct,
737  &via_dpo);
738 
739 
740  /*
741  * hope for the best - clear if restrictions apply.
742  */
744 
745  /*
746  * Validate any recursion constraints and over-ride the via
747  * adj if not met
748  */
750  {
752  dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
753  }
755  {
756  /*
757  * the via FIB must be a host route.
758  * note the via FIB just added will always be a host route
759  * since it is an RR source added host route. So what we need to
760  * check is whether the route has other sources. If it does then
761  * some other source has added it as a host route. If it doesn't
762  * then it was added only here and inherits forwarding from a cover.
763  * the cover is not a host route.
764  * The RR source is the lowest priority source, so we check if it
765  * is the best. if it is there are no other sources.
766  */
768  {
770  dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
771 
772  /*
773  * PIC edge trigger. let the load-balance maps know
774  */
776  }
777  }
779  {
780  /*
781  * RR source entries inherit the flags from the cover, so
782  * we can check the via directly
783  */
785  {
787  dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
788 
789  /*
790  * PIC edge trigger. let the load-balance maps know
791  */
793  }
794  }
795  /*
796  * check for over-riding factors on the FIB entry itself
797  */
798  if (!fib_entry_is_resolved(path->fp_via_fib))
799  {
801  dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
802 
803  /*
804  * PIC edge trigger. let the load-balance maps know
805  */
807  }
808 
809  /*
810  * If this path is contributing a drop, then it's not resolved
811  */
812  if (dpo_is_drop(&via_dpo) || load_balance_is_drop(&via_dpo))
813  {
815  }
816 
817  /*
818  * update the path's contributed DPO
819  */
820  dpo_copy(dpo, &via_dpo);
821 
822  FIB_PATH_DBG(path, "recursive update:");
823 
824  dpo_reset(&via_dpo);
825 }
826 
827 /*
828  * re-evaulate the forwarding state for a via fmask path
829  */
830 static void
832  dpo_id_t *dpo)
833 {
834  bier_fmask_contribute_forwarding(path->bier_fmask.fp_bier_fmask, dpo);
835 
836  /*
837  * if we are stakcing on the drop, then the path is not resolved
838  */
839  if (dpo_is_drop(dpo))
840  {
842  }
843  else
844  {
846  }
847 }
848 
849 /*
850  * fib_path_is_permanent_drop
851  *
852  * Return !0 if the path is configured to permanently drop,
853  * despite other attributes.
854  */
855 static int
857 {
858  return ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP) ||
860 }
861 
862 /*
863  * fib_path_unresolve
864  *
865  * Remove our dependency on the resolution target
866  */
867 static void
869 {
870  /*
871  * the forced drop path does not need unresolving
872  */
873  if (fib_path_is_permanent_drop(path))
874  {
875  return;
876  }
877 
878  switch (path->fp_type)
879  {
881  if (FIB_NODE_INDEX_INVALID != path->fp_via_fib)
882  {
884  path->fp_sibling);
887  FIB_SOURCE_RR);
888  fib_table_unlock(path->recursive.fp_tbl_id,
890  FIB_SOURCE_RR);
892  }
893  break;
896  path->fp_sibling);
897  break;
900  break;
903  break;
906  path->fp_sibling);
908  break;
911  path->fp_sibling);
913  break;
916  break;
918  dpo_reset(&path->exclusive.fp_ex_dpo);
919  break;
923  case FIB_PATH_TYPE_DEAG:
924  case FIB_PATH_TYPE_DVR:
925  /*
926  * these hold only the path's DPO, which is reset below.
927  */
928  break;
929  }
930 
931  /*
932  * release the adj we were holding and pick up the
933  * drop just in case.
934  */
935  dpo_reset(&path->fp_dpo);
937 
938  return;
939 }
940 
943 {
944  if (DPO_PROTO_MPLS == path->fp_nh_proto)
945  {
946  if (FIB_PATH_TYPE_RECURSIVE == path->fp_type &&
947  MPLS_EOS == path->recursive.fp_nh.fp_eos)
948  {
950  }
951  else
952  {
954  }
955  }
956  else
957  {
959  }
960 }
961 
962 /*
963  * fib_path_back_walk_notify
964  *
965  * A back walk has reach this path.
966  */
970 {
971  fib_path_t *path;
972 
973  path = fib_path_from_fib_node(node);
974 
975  FIB_PATH_DBG(path, "bw:%U",
977 
978  switch (path->fp_type)
979  {
982  {
983  /*
984  * modify the recursive adjacency to use the new forwarding
985  * of the via-fib.
986  * this update is visible to packets in flight in the DP.
987  */
989  path,
991  &path->fp_dpo);
992  }
995  {
996  /*
997  * ADJ updates (complete<->incomplete) do not need to propagate to
998  * recursive entries.
999  * The only reason its needed as far back as here, is that the adj
1000  * and the incomplete adj are a different DPO type, so the LBs need
1001  * to re-stack.
1002  * If this walk was quashed in the fib_entry, then any non-fib_path
1003  * children (like tunnels that collapse out the LB when they stack)
1004  * would not see the update.
1005  */
1006  return (FIB_NODE_BACK_WALK_CONTINUE);
1007  }
1008  break;
1011  {
1012  /*
1013  * update to use the BIER fmask's new forwading
1014  */
1015  fib_path_bier_fmask_update(path, &path->fp_dpo);
1016  }
1019  {
1020  /*
1021  * ADJ updates (complete<->incomplete) do not need to propagate to
1022  * recursive entries.
1023  * The only reason its needed as far back as here, is that the adj
1024  * and the incomplete adj are a different DPO type, so the LBs need
1025  * to re-stack.
1026  * If this walk was quashed in the fib_entry, then any non-fib_path
1027  * children (like tunnels that collapse out the LB when they stack)
1028  * would not see the update.
1029  */
1030  return (FIB_NODE_BACK_WALK_CONTINUE);
1031  }
1032  break;
1034  /*
1035 FIXME comment
1036  * ADJ_UPDATE backwalk pass silently through here and up to
1037  * the path-list when the multipath adj collapse occurs.
1038  * The reason we do this is that the assumtption is that VPP
1039  * runs in an environment where the Control-Plane is remote
1040  * and hence reacts slowly to link up down. In order to remove
1041  * this down link from the ECMP set quickly, we back-walk.
1042  * VPP also has dedicated CPUs, so we are not stealing resources
1043  * from the CP to do so.
1044  */
1046  {
1048  {
1049  /*
1050  * alreday resolved. no need to walk back again
1051  */
1052  return (FIB_NODE_BACK_WALK_CONTINUE);
1053  }
1055  }
1057  {
1059  {
1060  /*
1061  * alreday unresolved. no need to walk back again
1062  */
1063  return (FIB_NODE_BACK_WALK_CONTINUE);
1064  }
1066  }
1068  {
1069  /*
1070  * The interface this path resolves through has been deleted.
1071  * This will leave the path in a permanent drop state. The route
1072  * needs to be removed and readded (and hence the path-list deleted)
1073  * before it can forward again.
1074  */
1075  fib_path_unresolve(path);
1077  }
1079  {
1080  /*
1081  * restack the DPO to pick up the correct DPO sub-type
1082  */
1083  uword if_is_up;
1084  adj_index_t ai;
1085 
1086  if_is_up = vnet_sw_interface_is_up(
1087  vnet_get_main(),
1088  path->attached_next_hop.fp_interface);
1089 
1091  path,
1093 
1095  if (if_is_up && adj_is_up(ai))
1096  {
1098  }
1099 
1100  dpo_set(&path->fp_dpo, DPO_ADJACENCY, path->fp_nh_proto, ai);
1101  adj_unlock(ai);
1102 
1103  if (!if_is_up)
1104  {
1105  /*
1106  * If the interface is not up there is no reason to walk
1107  * back to children. if we did they would only evalute
1108  * that this path is unresolved and hence it would
1109  * not contribute the adjacency - so it would be wasted
1110  * CPU time.
1111  */
1112  return (FIB_NODE_BACK_WALK_CONTINUE);
1113  }
1114  }
1116  {
1118  {
1119  /*
1120  * alreday unresolved. no need to walk back again
1121  */
1122  return (FIB_NODE_BACK_WALK_CONTINUE);
1123  }
1124  /*
1125  * the adj has gone down. the path is no longer resolved.
1126  */
1128  }
1129  break;
1131  case FIB_PATH_TYPE_DVR:
1132  /*
1133  * FIXME; this could schedule a lower priority walk, since attached
1134  * routes are not usually in ECMP configurations so the backwalk to
1135  * the FIB entry does not need to be high priority
1136  */
1138  {
1140  }
1142  {
1144  }
1146  {
1147  fib_path_unresolve(path);
1149  }
1150  break;
1152  {
1153  dpo_id_t via_dpo = DPO_INVALID;
1154 
1155  /*
1156  * hope for the best - clear if restrictions apply.
1157  */
1159 
1160  udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
1161  path->fp_nh_proto,
1162  &via_dpo);
1163  /*
1164  * If this path is contributing a drop, then it's not resolved
1165  */
1166  if (dpo_is_drop(&via_dpo) || load_balance_is_drop(&via_dpo))
1167  {
1169  }
1170 
1171  /*
1172  * update the path's contributed DPO
1173  */
1174  dpo_copy(&path->fp_dpo, &via_dpo);
1175  dpo_reset(&via_dpo);
1176  break;
1177  }
1178  case FIB_PATH_TYPE_INTF_RX:
1179  ASSERT(0);
1180  case FIB_PATH_TYPE_DEAG:
1181  /*
1182  * FIXME When VRF delete is allowed this will need a poke.
1183  */
1184  case FIB_PATH_TYPE_SPECIAL:
1185  case FIB_PATH_TYPE_RECEIVE:
1189  /*
1190  * these path types have no parents. so to be
1191  * walked from one is unexpected.
1192  */
1193  ASSERT(0);
1194  break;
1195  }
1196 
1197  /*
1198  * propagate the backwalk further to the path-list
1199  */
1201 
1202  return (FIB_NODE_BACK_WALK_CONTINUE);
1203 }
1204 
1205 static void
1207 {
1208  fib_show_memory_usage("Path",
1209  pool_elts(fib_path_pool),
1210  pool_len(fib_path_pool),
1211  sizeof(fib_path_t));
1212 }
1213 
1214 /*
1215  * The FIB path's graph node virtual function table
1216  */
1217 static const fib_node_vft_t fib_path_vft = {
1219  .fnv_last_lock = fib_path_last_lock_gone,
1220  .fnv_back_walk = fib_path_back_walk_notify,
1221  .fnv_mem_show = fib_path_memory_show,
1222 };
1223 
1224 static fib_path_cfg_flags_t
1226 {
1228 
1230  cfg_flags |= FIB_PATH_CFG_FLAG_RESOLVE_HOST;
1233  if (rpath->frp_flags & FIB_ROUTE_PATH_LOCAL)
1234  cfg_flags |= FIB_PATH_CFG_FLAG_LOCAL;
1235  if (rpath->frp_flags & FIB_ROUTE_PATH_ATTACHED)
1236  cfg_flags |= FIB_PATH_CFG_FLAG_ATTACHED;
1237  if (rpath->frp_flags & FIB_ROUTE_PATH_INTF_RX)
1238  cfg_flags |= FIB_PATH_CFG_FLAG_INTF_RX;
1239  if (rpath->frp_flags & FIB_ROUTE_PATH_RPF_ID)
1240  cfg_flags |= FIB_PATH_CFG_FLAG_RPF_ID;
1241  if (rpath->frp_flags & FIB_ROUTE_PATH_EXCLUSIVE)
1242  cfg_flags |= FIB_PATH_CFG_FLAG_EXCLUSIVE;
1243  if (rpath->frp_flags & FIB_ROUTE_PATH_DROP)
1244  cfg_flags |= FIB_PATH_CFG_FLAG_DROP;
1246  cfg_flags |= FIB_PATH_CFG_FLAG_DEAG_SRC;
1247 
1248  return (cfg_flags);
1249 }
1250 
1251 /*
1252  * fib_path_create
1253  *
1254  * Create and initialise a new path object.
1255  * return the index of the path.
1256  */
1259  const fib_route_path_t *rpath)
1260 {
1261  fib_path_t *path;
1262 
1263  pool_get(fib_path_pool, path);
1264  clib_memset(path, 0, sizeof(*path));
1265 
1266  fib_node_init(&path->fp_node,
1268 
1269  dpo_reset(&path->fp_dpo);
1270  path->fp_pl_index = pl_index;
1271  path->fp_nh_proto = rpath->frp_proto;
1273  path->fp_weight = rpath->frp_weight;
1274  if (0 == path->fp_weight)
1275  {
1276  /*
1277  * a weight of 0 is a meaningless value. We could either reject it, and thus force
1278  * clients to always use 1, or we can accept it and fixup approrpiately.
1279  */
1280  path->fp_weight = 1;
1281  }
1282  path->fp_preference = rpath->frp_preference;
1284 
1285  /*
1286  * deduce the path's tpye from the parementers and save what is needed.
1287  */
1289  {
1291  path->receive.fp_interface = rpath->frp_sw_if_index;
1292  path->receive.fp_addr = rpath->frp_addr;
1293  }
1294  else if (rpath->frp_flags & FIB_ROUTE_PATH_UDP_ENCAP)
1295  {
1297  path->udp_encap.fp_udp_encap_id = rpath->frp_udp_encap_id;
1298  }
1299  else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_INTF_RX)
1300  {
1302  path->intf_rx.fp_interface = rpath->frp_sw_if_index;
1303  }
1304  else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID)
1305  {
1306  path->fp_type = FIB_PATH_TYPE_DEAG;
1307  path->deag.fp_tbl_id = rpath->frp_fib_index;
1308  path->deag.fp_rpf_id = rpath->frp_rpf_id;
1309  }
1310  else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_FMASK)
1311  {
1313  path->bier_fmask.fp_bier_fmask = rpath->frp_bier_fmask;
1314  }
1315  else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_IMP)
1316  {
1318  path->bier_imp.fp_bier_imp = rpath->frp_bier_imp;
1319  }
1320  else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_TABLE)
1321  {
1323  path->bier_table.fp_bier_tbl = rpath->frp_bier_tbl;
1324  }
1325  else if (rpath->frp_flags & FIB_ROUTE_PATH_DEAG)
1326  {
1327  path->fp_type = FIB_PATH_TYPE_DEAG;
1328  path->deag.fp_tbl_id = rpath->frp_fib_index;
1329  }
1330  else if (rpath->frp_flags & FIB_ROUTE_PATH_DVR)
1331  {
1332  path->fp_type = FIB_PATH_TYPE_DVR;
1333  path->dvr.fp_interface = rpath->frp_sw_if_index;
1334  }
1335  else if (rpath->frp_flags & FIB_ROUTE_PATH_EXCLUSIVE)
1336  {
1338  dpo_copy(&path->exclusive.fp_ex_dpo, &rpath->dpo);
1339  }
1340  else if (~0 != rpath->frp_sw_if_index)
1341  {
1342  if (ip46_address_is_zero(&rpath->frp_addr))
1343  {
1345  path->attached.fp_interface = rpath->frp_sw_if_index;
1346  }
1347  else
1348  {
1350  path->attached_next_hop.fp_interface = rpath->frp_sw_if_index;
1351  path->attached_next_hop.fp_nh = rpath->frp_addr;
1352  }
1353  }
1354  else
1355  {
1356  if (ip46_address_is_zero(&rpath->frp_addr))
1357  {
1358  if (~0 == rpath->frp_fib_index)
1359  {
1361  }
1362  else
1363  {
1364  path->fp_type = FIB_PATH_TYPE_DEAG;
1365  path->deag.fp_tbl_id = rpath->frp_fib_index;
1366  path->deag.fp_rpf_id = ~0;
1367  }
1368  }
1369  else
1370  {
1372  if (DPO_PROTO_MPLS == path->fp_nh_proto)
1373  {
1374  path->recursive.fp_nh.fp_local_label = rpath->frp_local_label;
1375  path->recursive.fp_nh.fp_eos = rpath->frp_eos;
1376  }
1377  else
1378  {
1379  path->recursive.fp_nh.fp_ip = rpath->frp_addr;
1380  }
1381  path->recursive.fp_tbl_id = rpath->frp_fib_index;
1382  }
1383  }
1384 
1385  FIB_PATH_DBG(path, "create");
1386 
1387  return (fib_path_get_index(path));
1388 }
1389 
1390 /*
1391  * fib_path_create_special
1392  *
1393  * Create and initialise a new path object.
1394  * return the index of the path.
1395  */
1398  dpo_proto_t nh_proto,
1400  const dpo_id_t *dpo)
1401 {
1402  fib_path_t *path;
1403 
1404  pool_get(fib_path_pool, path);
1405  clib_memset(path, 0, sizeof(*path));
1406 
1407  fib_node_init(&path->fp_node,
1409  dpo_reset(&path->fp_dpo);
1410 
1411  path->fp_pl_index = pl_index;
1412  path->fp_weight = 1;
1413  path->fp_preference = 0;
1414  path->fp_nh_proto = nh_proto;
1416  path->fp_cfg_flags = flags;
1417 
1418  if (FIB_PATH_CFG_FLAG_DROP & flags)
1419  {
1421  }
1422  else if (FIB_PATH_CFG_FLAG_LOCAL & flags)
1423  {
1425  path->attached.fp_interface = FIB_NODE_INDEX_INVALID;
1426  }
1427  else
1428  {
1430  ASSERT(NULL != dpo);
1431  dpo_copy(&path->exclusive.fp_ex_dpo, dpo);
1432  }
1433 
1434  return (fib_path_get_index(path));
1435 }
1436 
1437 /*
1438  * fib_path_copy
1439  *
1440  * Copy a path. return index of new path.
1441  */
1444  fib_node_index_t path_list_index)
1445 {
1446  fib_path_t *path, *orig_path;
1447 
1448  pool_get(fib_path_pool, path);
1449 
1450  orig_path = fib_path_get(path_index);
1451  ASSERT(NULL != orig_path);
1452 
1453  memcpy(path, orig_path, sizeof(*path));
1454 
1455  FIB_PATH_DBG(path, "create-copy:%d", path_index);
1456 
1457  /*
1458  * reset the dynamic section
1459  */
1462  path->fp_pl_index = path_list_index;
1464  clib_memset(&path->fp_dpo, 0, sizeof(path->fp_dpo));
1465  dpo_reset(&path->fp_dpo);
1466 
1467  return (fib_path_get_index(path));
1468 }
1469 
1470 /*
1471  * fib_path_destroy
1472  *
1473  * destroy a path that is no longer required
1474  */
1475 void
1477 {
1478  fib_path_t *path;
1479 
1480  path = fib_path_get(path_index);
1481 
1482  ASSERT(NULL != path);
1483  FIB_PATH_DBG(path, "destroy");
1484 
1485  fib_path_unresolve(path);
1486 
1487  fib_node_deinit(&path->fp_node);
1488  pool_put(fib_path_pool, path);
1489 }
1490 
1491 /*
1492  * fib_path_destroy
1493  *
1494  * destroy a path that is no longer required
1495  */
1496 uword
1498 {
1499  fib_path_t *path;
1500 
1501  path = fib_path_get(path_index);
1502 
1503  return (hash_memory(STRUCT_MARK_PTR(path, path_hash_start),
1504  (STRUCT_OFFSET_OF(fib_path_t, path_hash_end) -
1505  STRUCT_OFFSET_OF(fib_path_t, path_hash_start)),
1506  0));
1507 }
1508 
1509 /*
1510  * fib_path_cmp_i
1511  *
1512  * Compare two paths for equivalence.
1513  */
1514 static int
1516  const fib_path_t *path2)
1517 {
1518  int res;
1519 
1520  res = 1;
1521 
1522  /*
1523  * paths of different types and protocol are not equal.
1524  * different weights and/or preference only are the same path.
1525  */
1526  if (path1->fp_type != path2->fp_type)
1527  {
1528  res = (path1->fp_type - path2->fp_type);
1529  }
1530  else if (path1->fp_nh_proto != path2->fp_nh_proto)
1531  {
1532  res = (path1->fp_nh_proto - path2->fp_nh_proto);
1533  }
1534  else
1535  {
1536  /*
1537  * both paths are of the same type.
1538  * consider each type and its attributes in turn.
1539  */
1540  switch (path1->fp_type)
1541  {
1543  res = ip46_address_cmp(&path1->attached_next_hop.fp_nh,
1544  &path2->attached_next_hop.fp_nh);
1545  if (0 == res) {
1546  res = (path1->attached_next_hop.fp_interface -
1547  path2->attached_next_hop.fp_interface);
1548  }
1549  break;
1551  res = (path1->attached.fp_interface -
1552  path2->attached.fp_interface);
1553  break;
1555  res = ip46_address_cmp(&path1->recursive.fp_nh,
1556  &path2->recursive.fp_nh);
1557 
1558  if (0 == res)
1559  {
1560  res = (path1->recursive.fp_tbl_id - path2->recursive.fp_tbl_id);
1561  }
1562  break;
1564  res = (path1->bier_fmask.fp_bier_fmask -
1565  path2->bier_fmask.fp_bier_fmask);
1566  break;
1568  res = (path1->bier_imp.fp_bier_imp -
1569  path2->bier_imp.fp_bier_imp);
1570  break;
1572  res = bier_table_id_cmp(&path1->bier_table.fp_bier_tbl,
1573  &path2->bier_table.fp_bier_tbl);
1574  break;
1575  case FIB_PATH_TYPE_DEAG:
1576  res = (path1->deag.fp_tbl_id - path2->deag.fp_tbl_id);
1577  if (0 == res)
1578  {
1579  res = (path1->deag.fp_rpf_id - path2->deag.fp_rpf_id);
1580  }
1581  break;
1582  case FIB_PATH_TYPE_INTF_RX:
1583  res = (path1->intf_rx.fp_interface - path2->intf_rx.fp_interface);
1584  break;
1586  res = (path1->udp_encap.fp_udp_encap_id - path2->udp_encap.fp_udp_encap_id);
1587  break;
1588  case FIB_PATH_TYPE_DVR:
1589  res = (path1->dvr.fp_interface - path2->dvr.fp_interface);
1590  break;
1592  res = dpo_cmp(&path1->exclusive.fp_ex_dpo, &path2->exclusive.fp_ex_dpo);
1593  break;
1594  case FIB_PATH_TYPE_SPECIAL:
1595  case FIB_PATH_TYPE_RECEIVE:
1596  res = 0;
1597  break;
1598  }
1599  }
1600  return (res);
1601 }
1602 
1603 /*
1604  * fib_path_cmp_for_sort
1605  *
1606  * Compare two paths for equivalence. Used during path sorting.
1607  * As usual 0 means equal.
1608  */
1609 int
1611  void * v2)
1612 {
1613  fib_node_index_t *pi1 = v1, *pi2 = v2;
1614  fib_path_t *path1, *path2;
1615 
1616  path1 = fib_path_get(*pi1);
1617  path2 = fib_path_get(*pi2);
1618 
1619  /*
1620  * when sorting paths we want the highest preference paths
1621  * first, so that the choices set built is in prefernce order
1622  */
1623  if (path1->fp_preference != path2->fp_preference)
1624  {
1625  return (path1->fp_preference - path2->fp_preference);
1626  }
1627 
1628  return (fib_path_cmp_i(path1, path2));
1629 }
1630 
1631 /*
1632  * fib_path_cmp
1633  *
1634  * Compare two paths for equivalence.
1635  */
1636 int
1638  fib_node_index_t pi2)
1639 {
1640  fib_path_t *path1, *path2;
1641 
1642  path1 = fib_path_get(pi1);
1643  path2 = fib_path_get(pi2);
1644 
1645  return (fib_path_cmp_i(path1, path2));
1646 }
1647 
1648 int
1650  const fib_route_path_t *rpath)
1651 {
1652  fib_path_t *path;
1653  int res;
1654 
1655  path = fib_path_get(path_index);
1656 
1657  res = 1;
1658 
1659  if (path->fp_weight != rpath->frp_weight)
1660  {
1661  res = (path->fp_weight - rpath->frp_weight);
1662  }
1663  else
1664  {
1665  /*
1666  * both paths are of the same type.
1667  * consider each type and its attributes in turn.
1668  */
1669  switch (path->fp_type)
1670  {
1672  res = ip46_address_cmp(&path->attached_next_hop.fp_nh,
1673  &rpath->frp_addr);
1674  if (0 == res)
1675  {
1676  res = (path->attached_next_hop.fp_interface -
1677  rpath->frp_sw_if_index);
1678  }
1679  break;
1681  res = (path->attached.fp_interface - rpath->frp_sw_if_index);
1682  break;
1684  if (DPO_PROTO_MPLS == path->fp_nh_proto)
1685  {
1686  res = path->recursive.fp_nh.fp_local_label - rpath->frp_local_label;
1687 
1688  if (res == 0)
1689  {
1690  res = path->recursive.fp_nh.fp_eos - rpath->frp_eos;
1691  }
1692  }
1693  else
1694  {
1695  res = ip46_address_cmp(&path->recursive.fp_nh.fp_ip,
1696  &rpath->frp_addr);
1697  }
1698 
1699  if (0 == res)
1700  {
1701  res = (path->recursive.fp_tbl_id - rpath->frp_fib_index);
1702  }
1703  break;
1705  res = (path->bier_fmask.fp_bier_fmask - rpath->frp_bier_fmask);
1706  break;
1708  res = (path->bier_imp.fp_bier_imp - rpath->frp_bier_imp);
1709  break;
1711  res = bier_table_id_cmp(&path->bier_table.fp_bier_tbl,
1712  &rpath->frp_bier_tbl);
1713  break;
1714  case FIB_PATH_TYPE_INTF_RX:
1715  res = (path->intf_rx.fp_interface - rpath->frp_sw_if_index);
1716  break;
1718  res = (path->udp_encap.fp_udp_encap_id - rpath->frp_udp_encap_id);
1719  break;
1720  case FIB_PATH_TYPE_DEAG:
1721  res = (path->deag.fp_tbl_id - rpath->frp_fib_index);
1722  if (0 == res)
1723  {
1724  res = (path->deag.fp_rpf_id - rpath->frp_rpf_id);
1725  }
1726  break;
1727  case FIB_PATH_TYPE_DVR:
1728  res = (path->dvr.fp_interface - rpath->frp_sw_if_index);
1729  break;
1731  res = dpo_cmp(&path->exclusive.fp_ex_dpo, &rpath->dpo);
1732  break;
1733  case FIB_PATH_TYPE_SPECIAL:
1734  case FIB_PATH_TYPE_RECEIVE:
1735  res = 0;
1736  break;
1737  }
1738  }
1739  return (res);
1740 }
1741 
1742 /*
1743  * fib_path_recursive_loop_detect
1744  *
1745  * A forward walk of the FIB object graph to detect for a cycle/loop. This
1746  * walk is initiated when an entry is linking to a new path list or from an old.
1747  * The entry vector passed contains all the FIB entrys that are children of this
1748  * path (it is all the entries encountered on the walk so far). If this vector
1749  * contains the entry this path resolve via, then a loop is about to form.
1750  * The loop must be allowed to form, since we need the dependencies in place
1751  * so that we can track when the loop breaks.
1752  * However, we MUST not produce a loop in the forwarding graph (else packets
1753  * would loop around the switch path until the loop breaks), so we mark recursive
1754  * paths as looped so that they do not contribute forwarding information.
1755  * By marking the path as looped, an etry such as;
1756  * X/Y
1757  * via a.a.a.a (looped)
1758  * via b.b.b.b (not looped)
1759  * can still forward using the info provided by b.b.b.b only
1760  */
1761 int
1763  fib_node_index_t **entry_indicies)
1764 {
1765  fib_path_t *path;
1766 
1767  path = fib_path_get(path_index);
1768 
1769  /*
1770  * the forced drop path is never looped, cos it is never resolved.
1771  */
1772  if (fib_path_is_permanent_drop(path))
1773  {
1774  return (0);
1775  }
1776 
1777  switch (path->fp_type)
1778  {
1780  {
1781  fib_node_index_t *entry_index, *entries;
1782  int looped = 0;
1783  entries = *entry_indicies;
1784 
1785  vec_foreach(entry_index, entries) {
1786  if (*entry_index == path->fp_via_fib)
1787  {
1788  /*
1789  * the entry that is about to link to this path-list (or
1790  * one of this path-list's children) is the same entry that
1791  * this recursive path resolves through. this is a cycle.
1792  * abort the walk.
1793  */
1794  looped = 1;
1795  break;
1796  }
1797  }
1798 
1799  if (looped)
1800  {
1801  FIB_PATH_DBG(path, "recursive loop formed");
1803 
1804  dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
1805  }
1806  else
1807  {
1808  /*
1809  * no loop here yet. keep forward walking the graph.
1810  */
1811  if (fib_entry_recursive_loop_detect(path->fp_via_fib, entry_indicies))
1812  {
1813  FIB_PATH_DBG(path, "recursive loop formed");
1815  }
1816  else
1817  {
1818  FIB_PATH_DBG(path, "recursive loop cleared");
1820  }
1821  }
1822  break;
1823  }
1827  entry_indicies))
1828  {
1829  FIB_PATH_DBG(path, "recursive loop formed");
1831  }
1832  else
1833  {
1834  FIB_PATH_DBG(path, "recursive loop cleared");
1836  }
1837  break;
1838  case FIB_PATH_TYPE_SPECIAL:
1839  case FIB_PATH_TYPE_DEAG:
1840  case FIB_PATH_TYPE_DVR:
1841  case FIB_PATH_TYPE_RECEIVE:
1842  case FIB_PATH_TYPE_INTF_RX:
1848  /*
1849  * these path types cannot be part of a loop, since they are the leaves
1850  * of the graph.
1851  */
1852  break;
1853  }
1854 
1855  return (fib_path_is_looped(path_index));
1856 }
1857 
1858 int
1860 {
1861  fib_path_t *path;
1862 
1863  path = fib_path_get(path_index);
1864 
1865  /*
1866  * hope for the best.
1867  */
1869 
1870  /*
1871  * the forced drop path resolves via the drop adj
1872  */
1873  if (fib_path_is_permanent_drop(path))
1874  {
1875  dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
1877  return (fib_path_is_resolved(path_index));
1878  }
1879 
1880  switch (path->fp_type)
1881  {
1884  break;
1886  /*
1887  * path->attached.fp_interface
1888  */
1890  path->attached.fp_interface))
1891  {
1893  }
1894  dpo_set(&path->fp_dpo,
1895  DPO_ADJACENCY,
1896  path->fp_nh_proto,
1898  dpo_proto_to_link(path->fp_nh_proto)));
1899 
1900  /*
1901  * become a child of the adjacency so we receive updates
1902  * when the interface state changes
1903  */
1904  path->fp_sibling = adj_child_add(path->fp_dpo.dpoi_index,
1906  fib_path_get_index(path));
1907  break;
1909  {
1910  /*
1911  * Create a RR source entry in the table for the address
1912  * that this path recurses through.
1913  * This resolve action is recursive, hence we may create
1914  * more paths in the process. more creates mean maybe realloc
1915  * of this path.
1916  */
1917  fib_node_index_t fei;
1918  fib_prefix_t pfx;
1919 
1921 
1922  if (DPO_PROTO_MPLS == path->fp_nh_proto)
1923  {
1924  fib_prefix_from_mpls_label(path->recursive.fp_nh.fp_local_label,
1925  path->recursive.fp_nh.fp_eos,
1926  &pfx);
1927  }
1928  else
1929  {
1930  fib_prefix_from_ip46_addr(&path->recursive.fp_nh.fp_ip, &pfx);
1931  }
1932 
1933  fib_table_lock(path->recursive.fp_tbl_id,
1935  FIB_SOURCE_RR);
1936  fei = fib_table_entry_special_add(path->recursive.fp_tbl_id,
1937  &pfx,
1938  FIB_SOURCE_RR,
1940 
1941  path = fib_path_get(path_index);
1942  path->fp_via_fib = fei;
1943 
1944  /*
1945  * become a dependent child of the entry so the path is
1946  * informed when the forwarding for the entry changes.
1947  */
1950  fib_path_get_index(path));
1951 
1952  /*
1953  * create and configure the IP DPO
1954  */
1956  path,
1957  fib_path_to_chain_type(path),
1958  &path->fp_dpo);
1959 
1960  break;
1961  }
1963  {
1964  /*
1965  * become a dependent child of the entry so the path is
1966  * informed when the forwarding for the entry changes.
1967  */
1968  path->fp_sibling = bier_fmask_child_add(path->bier_fmask.fp_bier_fmask,
1970  fib_path_get_index(path));
1971 
1972  path->fp_via_bier_fmask = path->bier_fmask.fp_bier_fmask;
1973  fib_path_bier_fmask_update(path, &path->fp_dpo);
1974 
1975  break;
1976  }
1978  bier_imp_lock(path->bier_imp.fp_bier_imp);
1979  bier_imp_contribute_forwarding(path->bier_imp.fp_bier_imp,
1980  DPO_PROTO_IP4,
1981  &path->fp_dpo);
1982  break;
1984  {
1985  /*
1986  * Find/create the BIER table to link to
1987  */
1989 
1990  path->fp_via_bier_tbl =
1991  bier_table_ecmp_create_and_lock(&path->bier_table.fp_bier_tbl);
1992 
1994  &path->fp_dpo);
1995  break;
1996  }
1997  case FIB_PATH_TYPE_SPECIAL:
1998  /*
1999  * Resolve via the drop
2000  */
2001  dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
2002  break;
2003  case FIB_PATH_TYPE_DEAG:
2004  {
2005  if (DPO_PROTO_BIER == path->fp_nh_proto)
2006  {
2008  &path->fp_dpo);
2009  }
2010  else
2011  {
2012  /*
2013  * Resolve via a lookup DPO.
2014  * FIXME. control plane should add routes with a table ID
2015  */
2016  lookup_input_t input;
2017  lookup_cast_t cast;
2018 
2019  cast = (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID ?
2021  LOOKUP_UNICAST);
2022  input = (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DEAG_SRC ?
2025 
2026  lookup_dpo_add_or_lock_w_fib_index(path->deag.fp_tbl_id,
2027  path->fp_nh_proto,
2028  cast,
2029  input,
2031  &path->fp_dpo);
2032  }
2033  break;
2034  }
2035  case FIB_PATH_TYPE_DVR:
2036  dvr_dpo_add_or_lock(path->attached.fp_interface,
2037  path->fp_nh_proto,
2038  &path->fp_dpo);
2039  break;
2040  case FIB_PATH_TYPE_RECEIVE:
2041  /*
2042  * Resolve via a receive DPO.
2043  */
2045  path->receive.fp_interface,
2046  &path->receive.fp_addr,
2047  &path->fp_dpo);
2048  break;
2050  udp_encap_lock(path->udp_encap.fp_udp_encap_id);
2051  udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
2052  path->fp_nh_proto,
2053  &path->fp_dpo);
2054  break;
2055  case FIB_PATH_TYPE_INTF_RX: {
2056  /*
2057  * Resolve via a receive DPO.
2058  */
2060  path->intf_rx.fp_interface,
2061  &path->fp_dpo);
2062  break;
2063  }
2065  /*
2066  * Resolve via the user provided DPO
2067  */
2068  dpo_copy(&path->fp_dpo, &path->exclusive.fp_ex_dpo);
2069  break;
2070  }
2071 
2072  return (fib_path_is_resolved(path_index));
2073 }
2074 
2075 u32
2077 {
2078  fib_path_t *path;
2079 
2080  path = fib_path_get(path_index);
2081 
2082  switch (path->fp_type)
2083  {
2085  return (path->attached_next_hop.fp_interface);
2087  return (path->attached.fp_interface);
2088  case FIB_PATH_TYPE_RECEIVE:
2089  return (path->receive.fp_interface);
2091  if (fib_path_is_resolved(path_index))
2092  {
2094  }
2095  break;
2096  case FIB_PATH_TYPE_DVR:
2097  return (path->dvr.fp_interface);
2098  case FIB_PATH_TYPE_INTF_RX:
2100  case FIB_PATH_TYPE_SPECIAL:
2101  case FIB_PATH_TYPE_DEAG:
2106  break;
2107  }
2108  return (dpo_get_urpf(&path->fp_dpo));
2109 }
2110 
2111 index_t
2113 {
2114  fib_path_t *path;
2115 
2116  path = fib_path_get(path_index);
2117 
2118  switch (path->fp_type)
2119  {
2122  case FIB_PATH_TYPE_RECEIVE:
2123  case FIB_PATH_TYPE_INTF_RX:
2124  case FIB_PATH_TYPE_SPECIAL:
2125  case FIB_PATH_TYPE_DEAG:
2126  case FIB_PATH_TYPE_DVR:
2128  break;
2130  return (path->udp_encap.fp_udp_encap_id);
2132  return (path->fp_via_fib);
2134  return (path->bier_fmask.fp_bier_fmask);
2136  return (path->fp_via_bier_tbl);
2138  return (path->bier_imp.fp_bier_imp);
2139  }
2140  return (~0);
2141 }
2142 
2145 {
2146  fib_path_t *path;
2147 
2148  path = fib_path_get(path_index);
2149 
2150  ASSERT(dpo_is_adj(&path->fp_dpo));
2151  if (dpo_is_adj(&path->fp_dpo))
2152  {
2153  return (path->fp_dpo.dpoi_index);
2154  }
2155  return (ADJ_INDEX_INVALID);
2156 }
2157 
2158 u16
2160 {
2161  fib_path_t *path;
2162 
2163  path = fib_path_get(path_index);
2164 
2165  ASSERT(path);
2166 
2167  return (path->fp_weight);
2168 }
2169 
2170 u16
2172 {
2173  fib_path_t *path;
2174 
2175  path = fib_path_get(path_index);
2176 
2177  ASSERT(path);
2178 
2179  return (path->fp_preference);
2180 }
2181 
2182 u32
2184 {
2185  fib_path_t *path;
2186 
2187  path = fib_path_get(path_index);
2188 
2189  ASSERT(path);
2190 
2192  {
2193  return (path->deag.fp_rpf_id);
2194  }
2195 
2196  return (~0);
2197 }
2198 
2199 /**
2200  * @brief Contribute the path's adjacency to the list passed.
2201  * By calling this function over all paths, recursively, a child
2202  * can construct its full set of forwarding adjacencies, and hence its
2203  * uRPF list.
2204  */
2205 void
2207  index_t urpf)
2208 {
2209  fib_path_t *path;
2210 
2211  path = fib_path_get(path_index);
2212 
2213  /*
2214  * resolved and unresolved paths contribute to the RPF list.
2215  */
2216  switch (path->fp_type)
2217  {
2219  fib_urpf_list_append(urpf, path->attached_next_hop.fp_interface);
2220  break;
2221 
2223  fib_urpf_list_append(urpf, path->attached.fp_interface);
2224  break;
2225 
2227  if (FIB_NODE_INDEX_INVALID != path->fp_via_fib &&
2228  !fib_path_is_looped(path_index))
2229  {
2230  /*
2231  * there's unresolved due to constraints, and there's unresolved
2232  * due to ain't got no via. can't do nowt w'out via.
2233  */
2235  }
2236  break;
2237 
2239  case FIB_PATH_TYPE_SPECIAL:
2240  {
2241  /*
2242  * these path types may link to an adj, if that's what
2243  * the clinet gave
2244  */
2245  u32 rpf_sw_if_index;
2246 
2247  rpf_sw_if_index = dpo_get_urpf(&path->fp_dpo);
2248 
2249  if (~0 != rpf_sw_if_index)
2250  {
2251  fib_urpf_list_append(urpf, rpf_sw_if_index);
2252  }
2253  break;
2254  }
2255  case FIB_PATH_TYPE_DVR:
2256  fib_urpf_list_append(urpf, path->dvr.fp_interface);
2257  break;
2258  case FIB_PATH_TYPE_DEAG:
2259  case FIB_PATH_TYPE_RECEIVE:
2260  case FIB_PATH_TYPE_INTF_RX:
2265  /*
2266  * these path types don't link to an adj
2267  */
2268  break;
2269  }
2270 }
2271 
2272 void
2274  dpo_proto_t payload_proto,
2276  dpo_id_t *dpo)
2277 {
2278  fib_path_t *path;
2279 
2280  path = fib_path_get(path_index);
2281 
2282  ASSERT(path);
2283 
2284  switch (path->fp_type)
2285  {
2287  {
2288  dpo_id_t tmp = DPO_INVALID;
2289 
2290  dpo_copy(&tmp, dpo);
2291 
2292  mpls_disp_dpo_create(payload_proto, ~0, mode, &tmp, dpo);
2293  dpo_reset(&tmp);
2294  break;
2295  }
2296  case FIB_PATH_TYPE_DEAG:
2297  {
2298  dpo_id_t tmp = DPO_INVALID;
2299 
2300  dpo_copy(&tmp, dpo);
2301 
2302  mpls_disp_dpo_create(payload_proto,
2303  path->deag.fp_rpf_id,
2304  mode, &tmp, dpo);
2305  dpo_reset(&tmp);
2306  break;
2307  }
2308  case FIB_PATH_TYPE_RECEIVE:
2311  case FIB_PATH_TYPE_INTF_RX:
2314  case FIB_PATH_TYPE_SPECIAL:
2318  case FIB_PATH_TYPE_DVR:
2319  break;
2320  }
2321 }
2322 
2323 void
2326  dpo_id_t *dpo)
2327 {
2328  fib_path_t *path;
2329 
2330  path = fib_path_get(path_index);
2331 
2332  ASSERT(path);
2334 
2335  /*
2336  * The DPO stored in the path was created when the path was resolved.
2337  * This then represents the path's 'native' protocol; IP.
2338  * For all others will need to go find something else.
2339  */
2340  if (fib_path_to_chain_type(path) == fct)
2341  {
2342  dpo_copy(dpo, &path->fp_dpo);
2343  }
2344  else
2345  {
2346  switch (path->fp_type)
2347  {
2349  switch (fct)
2350  {
2359  {
2360  adj_index_t ai;
2361 
2362  /*
2363  * get a appropriate link type adj.
2364  */
2366  path,
2368  dpo_set(dpo, DPO_ADJACENCY,
2370  adj_unlock(ai);
2371 
2372  break;
2373  }
2375  break;
2376  }
2377  break;
2379  switch (fct)
2380  {
2388  fib_path_recursive_adj_update(path, fct, dpo);
2389  break;
2392  ASSERT(0);
2393  break;
2394  }
2395  break;
2397  switch (fct)
2398  {
2401  break;
2410  ASSERT(0);
2411  break;
2412  }
2413  break;
2415  switch (fct)
2416  {
2418  fib_path_bier_fmask_update(path, dpo);
2419  break;
2428  ASSERT(0);
2429  break;
2430  }
2431  break;
2433  bier_imp_contribute_forwarding(path->bier_imp.fp_bier_imp,
2435  dpo);
2436  break;
2437  case FIB_PATH_TYPE_DEAG:
2438  switch (fct)
2439  {
2446  dpo);
2447  break;
2451  dpo_copy(dpo, &path->fp_dpo);
2452  break;
2456  break;
2459  ASSERT(0);
2460  break;
2461  }
2462  break;
2464  dpo_copy(dpo, &path->exclusive.fp_ex_dpo);
2465  break;
2467  switch (fct)
2468  {
2476  {
2477  adj_index_t ai;
2478 
2479  /*
2480  * get a appropriate link type adj.
2481  */
2483  path,
2485  dpo_set(dpo, DPO_ADJACENCY,
2487  adj_unlock(ai);
2488  break;
2489  }
2492  {
2493  adj_index_t ai;
2494 
2495  /*
2496  * Create the adj needed for sending IP multicast traffic
2497  */
2500  path->attached.fp_interface);
2501  dpo_set(dpo, DPO_ADJACENCY,
2503  ai);
2504  adj_unlock(ai);
2505  }
2506  break;
2507  }
2508  break;
2509  case FIB_PATH_TYPE_INTF_RX:
2510  /*
2511  * Create the adj needed for sending IP multicast traffic
2512  */
2514  path->attached.fp_interface,
2515  dpo);
2516  break;
2518  udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
2519  path->fp_nh_proto,
2520  dpo);
2521  break;
2522  case FIB_PATH_TYPE_RECEIVE:
2523  case FIB_PATH_TYPE_SPECIAL:
2524  case FIB_PATH_TYPE_DVR:
2525  dpo_copy(dpo, &path->fp_dpo);
2526  break;
2527  }
2528  }
2529 }
2530 
2534  load_balance_path_t *hash_key)
2535 {
2536  load_balance_path_t *mnh;
2537  fib_path_t *path;
2538 
2539  path = fib_path_get(path_index);
2540 
2541  ASSERT(path);
2542 
2543  vec_add2(hash_key, mnh, 1);
2544 
2545  mnh->path_weight = path->fp_weight;
2546  mnh->path_index = path_index;
2547 
2548  if (fib_path_is_resolved(path_index))
2549  {
2550  fib_path_contribute_forwarding(path_index, fct, &mnh->path_dpo);
2551  }
2552  else
2553  {
2554  dpo_copy(&mnh->path_dpo,
2556  }
2557  return (hash_key);
2558 }
2559 
2560 int
2562 {
2563  fib_path_t *path;
2564 
2565  path = fib_path_get(path_index);
2566 
2567  return ((FIB_PATH_TYPE_RECURSIVE == path->fp_type) &&
2570 }
2571 
2572 int
2574 {
2575  fib_path_t *path;
2576 
2577  path = fib_path_get(path_index);
2578 
2579  return (FIB_PATH_TYPE_EXCLUSIVE == path->fp_type);
2580 }
2581 
2582 int
2584 {
2585  fib_path_t *path;
2586 
2587  path = fib_path_get(path_index);
2588 
2589  return (FIB_PATH_TYPE_DEAG == path->fp_type);
2590 }
2591 
2592 int
2594 {
2595  fib_path_t *path;
2596 
2597  path = fib_path_get(path_index);
2598 
2599  return (dpo_id_is_valid(&path->fp_dpo) &&
2601  !fib_path_is_looped(path_index) &&
2603 }
2604 
2605 int
2607 {
2608  fib_path_t *path;
2609 
2610  path = fib_path_get(path_index);
2611 
2613 }
2614 
2617  fib_node_index_t path_index,
2618  const fib_path_ext_t *path_ext,
2619  void *ctx)
2620 {
2621  fib_route_path_encode_t **api_rpaths = ctx;
2622  fib_route_path_encode_t *api_rpath;
2623  fib_path_t *path;
2624 
2625  path = fib_path_get(path_index);
2626  if (!path)
2627  return (FIB_PATH_LIST_WALK_CONTINUE);
2628  vec_add2(*api_rpaths, api_rpath, 1);
2629  api_rpath->rpath.frp_weight = path->fp_weight;
2630  api_rpath->rpath.frp_preference = path->fp_preference;
2631  api_rpath->rpath.frp_proto = path->fp_nh_proto;
2632  api_rpath->rpath.frp_sw_if_index = ~0;
2633  api_rpath->rpath.frp_fib_index = 0;
2634  api_rpath->dpo = path->fp_dpo;
2635 
2636  switch (path->fp_type)
2637  {
2638  case FIB_PATH_TYPE_RECEIVE:
2639  api_rpath->rpath.frp_addr = path->receive.fp_addr;
2640  api_rpath->rpath.frp_sw_if_index = path->receive.fp_interface;
2641  break;
2643  api_rpath->rpath.frp_sw_if_index = path->attached.fp_interface;
2644  break;
2646  api_rpath->rpath.frp_sw_if_index = path->attached_next_hop.fp_interface;
2647  api_rpath->rpath.frp_addr = path->attached_next_hop.fp_nh;
2648  break;
2650  api_rpath->rpath.frp_bier_fmask = path->bier_fmask.fp_bier_fmask;
2651  break;
2652  case FIB_PATH_TYPE_SPECIAL:
2653  break;
2654  case FIB_PATH_TYPE_DEAG:
2655  api_rpath->rpath.frp_fib_index = path->deag.fp_tbl_id;
2657  {
2658  api_rpath->rpath.frp_flags |= FIB_ROUTE_PATH_RPF_ID;
2659  }
2660  break;
2662  api_rpath->rpath.frp_addr = path->recursive.fp_nh.fp_ip;
2663  api_rpath->rpath.frp_fib_index = path->recursive.fp_tbl_id;
2664  break;
2665  case FIB_PATH_TYPE_DVR:
2666  api_rpath->rpath.frp_sw_if_index = path->dvr.fp_interface;
2667  api_rpath->rpath.frp_flags |= FIB_ROUTE_PATH_DVR;
2668  break;
2670  api_rpath->rpath.frp_udp_encap_id = path->udp_encap.fp_udp_encap_id;
2672  break;
2673  case FIB_PATH_TYPE_INTF_RX:
2674  api_rpath->rpath.frp_sw_if_index = path->receive.fp_interface;
2675  api_rpath->rpath.frp_flags |= FIB_ROUTE_PATH_INTF_RX;
2676  break;
2677  default:
2678  break;
2679  }
2680 
2681  if (path_ext && path_ext->fpe_type == FIB_PATH_EXT_MPLS)
2682  {
2683  api_rpath->rpath.frp_label_stack = path_ext->fpe_path.frp_label_stack;
2684  }
2685 
2686  return (FIB_PATH_LIST_WALK_CONTINUE);
2687 }
2688 
2691 {
2692  fib_path_t *path;
2693 
2694  path = fib_path_get(path_index);
2695 
2696  return (path->fp_nh_proto);
2697 }
2698 
2699 void
2701 {
2702  fib_node_register_type (FIB_NODE_TYPE_PATH, &fib_path_vft);
2703  fib_path_logger = vlib_log_register_class ("fib", "path");
2704 }
2705 
2706 static clib_error_t *
2708  unformat_input_t * input,
2709  vlib_cli_command_t * cmd)
2710 {
2711  fib_node_index_t pi;
2712  fib_path_t *path;
2713 
2714  if (unformat (input, "%d", &pi))
2715  {
2716  /*
2717  * show one in detail
2718  */
2719  if (!pool_is_free_index(fib_path_pool, pi))
2720  {
2721  path = fib_path_get(pi);
2722  u8 *s = format(NULL, "%U", format_fib_path, pi, 1,
2724  s = format(s, "\n children:");
2726  vlib_cli_output (vm, "%s", s);
2727  vec_free(s);
2728  }
2729  else
2730  {
2731  vlib_cli_output (vm, "path %d invalid", pi);
2732  }
2733  }
2734  else
2735  {
2736  vlib_cli_output (vm, "FIB Paths");
2737  pool_foreach_index (pi, fib_path_pool,
2738  ({
2739  vlib_cli_output (vm, "%U", format_fib_path, pi, 0,
2741  }));
2742  }
2743 
2744  return (NULL);
2745 }
2746 
2747 VLIB_CLI_COMMAND (show_fib_path, static) = {
2748  .path = "show fib paths",
2749  .function = show_fib_path_command,
2750  .short_help = "show fib paths",
2751 };
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
Definition: log.c:227
int fib_path_is_resolved(fib_node_index_t path_index)
Definition: fib_path.c:2593
static uword vnet_sw_interface_is_up(vnet_main_t *vnm, u32 sw_if_index)
Contribute an object that is to be used to forward BIER packets.
Definition: fib_types.h:122
int fib_path_resolve(fib_node_index_t path_index)
Definition: fib_path.c:1859
Contribute an object that is to be used to forward IP6 packets.
Definition: fib_types.h:137
ip46_address_t frp_addr
The next-hop address.
Definition: fib_types.h:486
fib_path_ext_type_t fpe_type
The type of path extension.
Definition: fib_path_ext.h:126
Recursive resolution source.
Definition: fib_entry.h:125
A path that resolves via a DVR DPO.
Definition: fib_types.h:381
void mpls_disp_dpo_create(dpo_proto_t payload_proto, fib_rpf_id_t rpf_id, fib_mpls_lsp_mode_t mode, const dpo_id_t *parent, dpo_id_t *dpo)
Create an MPLS label object.
u32 vlib_log_class_t
Definition: log.h:21
Contribute an object that is to be used to forward IP6 packets.
Definition: fib_types.h:113
u32 flags
Definition: vhost_user.h:115
void receive_dpo_add_or_lock(dpo_proto_t proto, u32 sw_if_index, const ip46_address_t *nh_addr, dpo_id_t *dpo)
Definition: receive_dpo.c:62
static fib_path_t * fib_path_from_fib_node(fib_node_t *node)
Definition: fib_path.c:449
void bier_imp_contribute_forwarding(index_t bii, dpo_proto_t proto, dpo_id_t *dpo)
Definition: bier_imp.c:174
uword fib_path_hash(fib_node_index_t path_index)
Definition: fib_path.c:1497
fib_node_index_t path_index
The index of the FIB path.
Definition: load_balance.h:71
A representation of a fib path for fib_path_encode to convey the information to the caller...
Definition: fib_types.h:588
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:2324
enum fib_path_format_flags_t_ fib_format_path_flags_t
index_t fp_bier_fmask
BIER FMask ID.
Definition: fib_path.c:298
void lookup_dpo_add_or_lock_w_table_id(u32 table_id, dpo_proto_t proto, lookup_cast_t cast, lookup_input_t input, lookup_table_t table_config, dpo_id_t *dpo)
Definition: lookup_dpo.c:159
mpls_eos_bit_t frp_eos
EOS bit for the resolving label.
Definition: fib_types.h:497
fib_path_oper_attribute_t_
Enurmeration of path operational (i.e.
Definition: fib_path.c:142
int fib_entry_is_resolved(fib_node_index_t fib_entry_index)
Return !0 is the entry is reoslved, i.e.
Definition: fib_entry.c:1486
index_t fib_path_get_resolving_index(fib_node_index_t path_index)
Definition: fib_path.c:2112
void fib_path_contribute_urpf(fib_node_index_t path_index, index_t urpf)
Contribute the path&#39;s adjacency to the list passed.
Definition: fib_path.c:2206
A representation of a path as described by a route producer.
Definition: fib_types.h:470
u8 * format_dpo_type(u8 *s, va_list *args)
format a DPO type
Definition: dpo.c:137
dpo_id_t path_dpo
ID of the Data-path object.
Definition: load_balance.h:66
struct fib_path_t_::@133::@147 intf_rx
int dpo_is_adj(const dpo_id_t *dpo)
Return TRUE is the DPO is any type of adjacency.
Definition: dpo.c:277
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
u8 * format_bier_table_id(u8 *s, va_list *ap)
Format a BIER table ID.
Definition: bier_types.c:193
#define FIB_PATH_OPER_ATTRIBUTES
Definition: fib_path.c:174
#define STRUCT_MARK_PTR(v, f)
Definition: clib.h:71
int fib_path_cmp(fib_node_index_t pi1, fib_node_index_t pi2)
Definition: fib_path.c:1637
A Drop path - resolve the path on the drop DPO.
Definition: fib_types.h:340
void bier_fmask_contribute_forwarding(index_t bfmi, dpo_id_t *dpo)
Definition: bier_fmask.c:120
struct fib_path_t_::@133::@141 bier_table
void fib_node_init(fib_node_t *node, fib_node_type_t type)
Definition: fib_node.c:185
index_t fp_bier_imp
The BIER imposition object this is part of the path&#39;s key, since the index_t of an imposition object ...
Definition: fib_path.c:312
u32 fib_entry_child_add(fib_node_index_t fib_entry_index, fib_node_type_t child_type, fib_node_index_t child_index)
Definition: fib_entry.c:555
static int dpo_id_is_valid(const dpo_id_t *dpoi)
Return true if the DPO object is valid, i.e.
Definition: dpo.h:207
#define NULL
Definition: clib.h:58
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
A path that resolves via a BIER impostion object.
Definition: fib_types.h:373
struct fib_path_t_::@133::@138 attached
An MPLS extension that maintains the path&#39;s outgoing labels,.
Definition: fib_path_ext.h:31
void fib_path_module_init(void)
Definition: fib_path.c:2700
int fib_path_is_exclusive(fib_node_index_t path_index)
Definition: fib_path.c:2573
void bier_imp_lock(index_t bii)
Definition: bier_imp.c:48
enum fib_node_back_walk_rc_t_ fib_node_back_walk_rc_t
Return code from a back walk function.
void fib_entry_contribute_forwarding(fib_node_index_t fib_entry_index, fib_forward_chain_type_t fct, dpo_id_t *dpo)
Definition: fib_entry.c:447
static void fib_path_bier_fmask_update(fib_path_t *path, dpo_id_t *dpo)
Definition: fib_path.c:831
index_t frp_bier_imp
A path via a BIER imposition object.
Definition: fib_types.h:546
void bier_table_ecmp_unlock(index_t bti)
Definition: bier_table.c:462
u32 mpls_label_t
A label value only, i.e.
Definition: packet.h:24
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
void load_balance_map_path_state_change(fib_node_index_t path_index)
the state of a path has changed (it has no doubt gone down).
void fib_entry_child_remove(fib_node_index_t fib_entry_index, u32 sibling_index)
Definition: fib_entry.c:566
fib_node_index_t fp_tbl_id
The FIB table index in which to find the next-hop.
Definition: fib_path.c:287
void dpo_copy(dpo_id_t *dst, const dpo_id_t *src)
atomic copy a data-plane object.
Definition: dpo.c:261
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
enum fib_path_type_t_ fib_path_type_t
Enurmeration of path types.
u32 dpo_get_urpf(const dpo_id_t *dpo)
Get a uRPF interface for the DPO.
Definition: dpo.c:381
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:564
struct fib_path_t_::@133::@149 dvr
A path that resolves via a BIER [ECMP] Table.
Definition: fib_types.h:369
The path is resolved.
Definition: fib_path.c:154
format_function_t format_ip46_address
Definition: format.h:61
Contribute an object that is to be used to forward IP4 packets.
Definition: fib_types.h:109
#define STRUCT_OFFSET_OF(t, f)
Definition: clib.h:65
void fib_node_deinit(fib_node_t *node)
Definition: fib_node.c:197
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
const fib_prefix_t * fib_entry_get_prefix(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1678
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
dpo_proto_t frp_proto
The protocol of the address below.
Definition: fib_types.h:475
bier_table_id_t frp_bier_tbl
A path that resolves via a BIER Table.
Definition: fib_types.h:540
A path that result in received traffic being recieved/recirculated so that it appears to have arrived...
Definition: fib_types.h:349
dpo_id_t fp_ex_dpo
The user provided &#39;exclusive&#39; DPO.
Definition: fib_path.c:330
int fib_path_is_looped(fib_node_index_t path_index)
Definition: fib_path.c:2606
Definition: fib_entry.h:277
The ID of a table.
Definition: bier_types.h:394
void adj_child_remove(adj_index_t adj_index, u32 sibling_index)
Remove a child dependent.
Definition: adj.c:354
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:236
struct fib_path_t_::@133::@137 attached_next_hop
The path has become a permanent drop.
Definition: fib_path.c:162
int fib_path_cmp_for_sort(void *v1, void *v2)
Definition: fib_path.c:1610
#define ip46_address_cmp(ip46_1, ip46_2)
Definition: ip6_packet.h:92
unsigned char u8
Definition: types.h:56
#define pool_len(p)
Number of elements in pool vector.
Definition: pool.h:140
ip46_address_t fp_ip
The next-hop.
Definition: fib_path.c:271
load_balance_path_t * fib_path_append_nh_for_multipath_hash(fib_node_index_t path_index, fib_forward_chain_type_t fct, load_balance_path_t *hash_key)
Definition: fib_path.c:2532
struct fib_path_t_::@133::@139 recursive
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
const dpo_id_t * drop_dpo_get(dpo_proto_t proto)
Definition: drop_dpo.c:25
fib_rpf_id_t frp_rpf_id
The RPF-ID.
Definition: fib_types.h:509
A local path with a RPF-ID => multicast traffic.
Definition: fib_types.h:353
#define FIB_PATH_TYPES
Definition: fib_path.c:118
fib_path_type_t fp_type
The type of the path.
Definition: fib_path.c:224
u32 frp_sw_if_index
The interface.
Definition: fib_types.h:505
mpls_eos_bit_t fp_eos
The EOS bit of the resolving label.
Definition: fib_path.c:280
void fib_table_entry_special_remove(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source)
Remove a &#39;special&#39; entry from the FIB.
Definition: fib_table.c:407
static const adj_index_t fib_path_attached_next_hop_get_adj(fib_path_t *path, vnet_link_t link)
Definition: fib_path.c:641
void bier_table_contribute_forwarding(index_t bti, dpo_id_t *dpo)
Definition: bier_table.c:728
u8 * format_white_space(u8 *s, va_list *va)
Definition: std-formats.c:113
Recursion constraint of via a host prefix.
Definition: fib_types.h:324
struct fib_path_t_::@133::@148 udp_encap
fib_node_index_t fib_path_copy(fib_node_index_t path_index, fib_node_index_t path_list_index)
Definition: fib_path.c:1443
u8 * format_bier_imp(u8 *s, va_list *args)
Definition: bier_imp.c:137
void bier_fmask_child_remove(fib_node_index_t bfmi, u32 sibling_index)
Definition: bier_fmask.c:152
Aggregrate type for a prefix.
Definition: fib_types.h:203
fib_path_cfg_flags_t fp_cfg_flags
Configuration Flags.
Definition: fib_path.c:219
void fib_entry_contribute_urpf(fib_node_index_t entry_index, index_t urpf)
Contribute the set of Adjacencies that this entry forwards with to build the uRPF list of its childre...
Definition: fib_entry.c:401
struct fib_path_t_::@133::@144 special
struct fib_path_t_::@133::@146 receive
void fib_show_memory_usage(const char *name, u32 in_use_elts, u32 allocd_elts, size_t size_elt)
Show the memory usage for a type.
Definition: fib_node.c:220
fib_node_t fp_node
A path is a node in the FIB graph.
Definition: fib_path.c:203
interface receive.
Definition: fib_path.c:82
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
Definition: adj.c:318
A path via a UDP encap object.
Definition: fib_types.h:361
dpo_id_t fp_dpo
The Data-path objects through which this path resolves for IP.
Definition: fib_path.c:393
struct fib_path_t_::@133::@145 exclusive
unsigned int u32
Definition: types.h:88
#define FIB_PATH_CFG_ATTRIBUTES
Definition: fib_path.h:97
Contribute an object that is to be used to forward Ethernet packets.
Definition: fib_types.h:141
struct fib_path_t_::@133::@140 bier_fmask
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
int load_balance_is_drop(const dpo_id_t *dpo)
Definition: load_balance.c:250
u16 fib_path_get_weight(fib_node_index_t path_index)
Definition: fib_path.c:2159
enum lookup_cast_t_ lookup_cast_t
Switch to use the packet&#39;s source or destination address for lookup.
void fib_urpf_list_append(index_t ui, u32 sw_if_index)
Append another interface to the list.
static void fib_path_attached_next_hop_set(fib_path_t *path)
Definition: fib_path.c:668
fib_node_index_t fib_path_create_special(fib_node_index_t pl_index, dpo_proto_t nh_proto, fib_path_cfg_flags_t flags, const dpo_id_t *dpo)
Definition: fib_path.c:1397
Definition: fib_entry.h:275
fib_rpf_id_t fp_rpf_id
The RPF-ID to tag the packets with.
Definition: fib_path.c:322
void bier_disp_table_contribute_forwarding(index_t bdti, dpo_id_t *dpo)
index_t frp_bier_fmask
Resolving via a BIER Fmask.
Definition: fib_types.h:556
u8 * format_fib_path(u8 *s, va_list *args)
Definition: fib_path.c:456
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:168
u32 fp_sibling
the index of this path in the parent&#39;s child list.
Definition: fib_path.c:398
Contribute an object that is to be used to forward end-of-stack MPLS packets.
Definition: fib_types.h:129
fib_node_bw_reason_flag_t fnbw_reason
The reason/trigger for the backwalk.
Definition: fib_node.h:208
format_function_t format_mpls_eos_bit
Definition: mpls.h:67
format_function_t format_vnet_sw_interface_name
#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:511
int adj_is_up(adj_index_t ai)
Return true if the adjacency is &#39;UP&#39;, i.e.
Definition: adj.c:495
u8 * format_fib_node_bw_reason(u8 *s, va_list *args)
Definition: fib_walk.c:973
dpo_proto_t fp_nh_proto
The protocol of the next-hop, i.e.
Definition: fib_path.c:231
struct fib_path_t_ fib_path_t
A FIB path.
dpo_type_t dpoi_type
the type
Definition: dpo.h:172
int vnet_sw_interface_is_p2p(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface.c:1211
long ctx[MAX_CONNS]
Definition: main.c:144
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
STRUCT_MARK(path_hash_start)
This marks the start of the memory area used to hash the path.
adj_index_t fib_path_get_adj(fib_node_index_t path_index)
Definition: fib_path.c:2144
enum fib_mpls_lsp_mode_t_ fib_mpls_lsp_mode_t
MPLS LSP mode - only valid at the head and tail.
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:286
index_t fp_via_bier_tbl
the resolving bier-table
Definition: fib_path.c:383
fib_mpls_label_t * frp_label_stack
The outgoing MPLS label Stack.
Definition: fib_types.h:525
Recursion constraint of via an attahced prefix.
Definition: fib_types.h:328
void lookup_dpo_add_or_lock_w_fib_index(fib_node_index_t fib_index, dpo_proto_t proto, lookup_cast_t cast, lookup_input_t input, lookup_table_t table_config, dpo_id_t *dpo)
Definition: lookup_dpo.c:133
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:2273
fib_node_type_t fn_type
The node&#39;s type.
Definition: fib_node.h:295
enum fib_path_cfg_attribute_t_ fib_path_cfg_attribute_t
Given a route of the form; q.r.s.t/Y via <interface> <next-hop>
An node in the FIB graph.
Definition: fib_node.h:291
dpo_id_t dpo
Exclusive DPO.
Definition: fib_types.h:530
void fib_table_unlock(u32 fib_index, fib_protocol_t proto, fib_source_t source)
Take a reference counting lock on the table.
Definition: fib_table.c:1237
static fib_path_t * fib_path_pool
Definition: fib_path.c:411
static fib_path_t * fib_path_get(fib_node_index_t index)
Definition: fib_path.c:431
ip46_address_t fp_nh
The next-hop.
Definition: fib_path.c:253
void dvr_dpo_add_or_lock(u32 sw_if_index, dpo_proto_t dproto, dpo_id_t *dpo)
Definition: dvr_dpo.c:87
u32 fib_entry_get_resolving_interface(fib_node_index_t entry_index)
Definition: fib_entry.c:1451
fib_path_oper_flags_t_
Path flags from the attributes.
Definition: fib_path.c:188
fib_node_index_t fib_table_entry_special_add(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags)
Add a &#39;special&#39; entry to the FIB.
Definition: fib_table.c:388
#define FOR_EACH_FIB_PATH_OPER_ATTRIBUTE(_item)
Definition: fib_path.c:180
#define MPLS_FIB_DEFAULT_TABLE_ID
Definition: mpls_fib.h:28
The path forms part of a recursive loop.
Definition: fib_path.c:150
vnet_link_t fib_forw_chain_type_to_link_type(fib_forward_chain_type_t fct)
Convert from a chain type to the adjacency&#39;s link type.
Definition: fib_types.c:359
fib_node_list_t fn_children
Vector of nodes that depend upon/use/share this node.
Definition: fib_node.h:305
int adj_recursive_loop_detect(adj_index_t ai, fib_node_index_t **entry_indicies)
descend the FIB graph looking for loops
Definition: adj.c:196
vlib_main_t * vm
Definition: buffer.c:301
int bier_table_id_cmp(const bier_table_id_t *btid1, const bier_table_id_t *btid2)
Compare to BIER table IDs for equality.
Definition: bier_types.c:112
via a DVR.
Definition: fib_path.c:106
void udp_encap_lock(index_t uei)
Definition: udp_encap.c:152
Contribute an object that is to be used to forward NSH packets.
Definition: fib_types.h:147
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
u32 fp_udp_encap_id
The UDP Encap object this path resolves through.
Definition: fib_path.c:352
static void fib_path_last_lock_gone(fib_node_t *node)
Definition: fib_path.c:635
static fib_node_index_t fib_path_get_index(fib_path_t *path)
Definition: fib_path.c:437
A FIB path.
Definition: fib_path.c:199
int fib_entry_recursive_loop_detect(fib_node_index_t entry_index, fib_node_index_t **entry_indicies)
Definition: fib_entry.c:1400
fib_node_get_t fnv_get
Definition: fib_node.h:279
enum fib_path_oper_flags_t_ fib_path_oper_flags_t
Path flags from the attributes.
index_t fp_via_bier_fmask
the resolving bier-fmask
Definition: fib_path.c:387
u32 fib_path_get_rpf_id(fib_node_index_t path_index)
Definition: fib_path.c:2183
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
void interface_rx_dpo_add_or_lock(dpo_proto_t proto, u32 sw_if_index, dpo_id_t *dpo)
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:283
Don&#39;t resolve the path, use the DPO the client provides.
Definition: fib_types.h:344
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
void fib_prefix_from_ip46_addr(const ip46_address_t *addr, fib_prefix_t *pfx)
Host prefix from ip.
Definition: fib_types.c:80
static void fib_path_memory_show(void)
Definition: fib_path.c:1206
The path is attached, despite what the next-hop may say.
Definition: fib_path.c:158
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:185
void fib_prefix_from_mpls_label(mpls_label_t label, mpls_eos_bit_t eos, fib_prefix_t *prf)
Definition: fib_types.c:94
static fib_node_back_walk_rc_t fib_path_back_walk_notify(fib_node_t *node, fib_node_back_walk_ctx_t *ctx)
Definition: fib_path.c:968
Path resolves via a UDP encap object.
Definition: fib_path.c:86
enum lookup_input_t_ lookup_input_t
Switch to use the packet&#39;s source or destination address for lookup.
void fib_table_lock(u32 fib_index, fib_protocol_t proto, fib_source_t source)
Release a reference counting lock on the table.
Definition: fib_table.c:1266
Context passed between object during a back walk.
Definition: fib_node.h:204
u32 fib_rpf_id_t
An RPF-ID is numerical value that is used RPF validate.
Definition: fib_types.h:391
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
u32 fp_pl_index
The index of the path-list to which this path belongs.
Definition: fib_path.c:208
static void fib_path_recursive_adj_update(fib_path_t *path, fib_forward_chain_type_t fct, dpo_id_t *dpo)
Definition: fib_path.c:726
static const adj_index_t fib_path_attached_get_adj(fib_path_t *path, vnet_link_t link)
Definition: fib_path.c:698
#define ASSERT(truth)
int fib_path_is_deag(fib_node_index_t path_index)
Definition: fib_path.c:2583
vnet_link_t dpo_proto_to_link(dpo_proto_t dp)
format a DPO protocol
Definition: dpo.c:117
fib_node_index_t fp_via_fib
the resolving via fib.
Definition: fib_path.c:379
static int fib_path_is_permanent_drop(fib_path_t *path)
Definition: fib_path.c:856
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
index_t bier_table_ecmp_create_and_lock(const bier_table_id_t *btid)
Definition: bier_table.c:456
ip46_address_t fp_addr
The next-hop.
Definition: fib_path.c:340
static fib_forward_chain_type_t fib_path_to_chain_type(const fib_path_t *path)
Definition: fib_path.c:942
u8 frp_preference
A path preference.
Definition: fib_types.h:567
bier_table_id_t fp_bier_tbl
The BIER table&#39;s ID.
Definition: fib_path.c:304
uword hash_memory(void *p, word n_bytes, uword state)
Definition: hash.c:224
A deag path using the packet&#39;s source not destination address.
Definition: fib_types.h:357
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:571
u32 fp_interface
The interface.
Definition: fib_path.c:257
static clib_error_t * show_fib_path_command(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: fib_path.c:2707
vlib_log_class_t fib_path_logger
the logger
Definition: fib_path.c:416
int dpo_cmp(const dpo_id_t *dpo1, const dpo_id_t *dpo2)
Compare two Data-path objects.
Definition: dpo.c:248
A path that resolves via a BIER F-Mask.
Definition: fib_types.h:365
u8 * format_dpo_id(u8 *s, va_list *args)
Format a DPO_id_t oject
Definition: dpo.c:147
A path that resolves via another table.
Definition: fib_types.h:377
u32 entries
format_function_t format_mpls_unicast_label
Definition: mpls.h:69
static void fib_path_unresolve(fib_path_t *path)
Definition: fib_path.c:868
mpls_label_t frp_local_label
The MPLS local Label to reursively resolve through.
Definition: fib_types.h:493
dpo_proto_t fib_path_get_proto(fib_node_index_t path_index)
Definition: fib_path.c:2690
fib_path_oper_flags_t fp_oper_flags
Memebers in this last section represent information that is dervied during resolution.
Definition: fib_path.c:372
int fib_path_is_recursive_constrained(fib_node_index_t path_index)
Definition: fib_path.c:2561
void fib_path_list_back_walk(fib_node_index_t path_list_index, fib_node_back_walk_ctx_t *ctx)
Attached-nexthop.
Definition: fib_path.c:58
enum fib_path_list_walk_rc_t_ fib_path_list_walk_rc_t
return code to control pat-hlist walk
u32 fib_path_get_resolving_interface(fib_node_index_t path_index)
Definition: fib_path.c:2076
struct fib_path_t_::@133::@143 deag
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:184
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:31
A for-us/local path.
Definition: fib_types.h:332
u32 path_weight
weight for the path.
Definition: load_balance.h:76
u32 adj_child_add(adj_index_t adj_index, fib_node_type_t child_type, fib_node_index_t child_index)
Add a child dependent to an adjacency.
Definition: adj.c:337
u16 fib_path_get_preference(fib_node_index_t path_index)
Definition: fib_path.c:2171
u64 uword
Definition: types.h:112
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
Definition: dpo.h:195
#define FIB_PATH_DBG(_p, _fmt, _args...)
Definition: fib_path.c:421
adj_index_t adj_glean_add_or_lock(fib_protocol_t proto, vnet_link_t linkt, u32 sw_if_index, const ip46_address_t *nh_addr)
Glean Adjacency.
Definition: adj_glean.c:50
fib_node_index_t fib_path_create(fib_node_index_t pl_index, const fib_route_path_t *rpath)
Definition: fib_path.c:1258
u8 fp_weight
UCMP [unnormalised] weigth.
Definition: fib_path.c:236
One path from an [EU]CMP set that the client wants to add to a load-balance object.
Definition: load_balance.h:62
enum fib_path_cfg_flags_t_ fib_path_cfg_flags_t
Path config flags from the attributes.
struct fib_path_t_::@133::@142 bier_imp
u8 * format_dpo_proto(u8 *s, va_list *args)
format a DPO protocol
Definition: dpo.c:177
int fib_path_recursive_loop_detect(fib_node_index_t path_index, fib_node_index_t **entry_indicies)
Definition: fib_path.c:1762
A FIB graph nodes virtual function table.
Definition: fib_node.h:278
static fib_path_cfg_flags_t fib_path_route_flags_to_cfg_flags(const fib_route_path_t *rpath)
Definition: fib_path.c:1225
vl_api_gbp_vxlan_tunnel_mode_t mode
Definition: gbp.api:349
int dpo_is_drop(const dpo_id_t *dpo)
The Drop DPO will drop all packets, no questions asked.
Definition: drop_dpo.c:33
adj_index_t adj_mcast_add_or_lock(fib_protocol_t proto, vnet_link_t link_type, u32 sw_if_index)
Mcast Adjacency.
Definition: adj_mcast.c:51
adj_index_t adj_nbr_add_or_lock(fib_protocol_t nh_proto, vnet_link_t link_type, const ip46_address_t *nh_addr, u32 sw_if_index)
Neighbour Adjacency sub-type.
Definition: adj_nbr.c:218
void dpo_reset(dpo_id_t *dpo)
reset a DPO ID The DPO will be unlocked.
Definition: dpo.c:231
mpls_label_t fp_local_label
The local label to resolve through.
Definition: fib_path.c:276
#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
fib_path_list_walk_rc_t fib_path_encode(fib_node_index_t path_list_index, fib_node_index_t path_index, const fib_path_ext_t *path_ext, void *ctx)
Definition: fib_path.c:2616
fib_route_path_t rpath
Definition: fib_types.h:589
fib_path_type_t_
Enurmeration of path types.
Definition: fib_path.c:50
Contribute an object that is to be used to forward non-end-of-stack MPLS packets. ...
Definition: fib_types.h:118
Attached path.
Definition: fib_types.h:336
void udp_encap_unlock(index_t uei)
Definition: udp_encap.c:165
#define pool_foreach_index(i, v, body)
Iterate pool by index.
Definition: pool.h:535
u8 * fib_node_children_format(fib_node_list_t list, u8 *s)
Definition: fib_node.c:176
u8 fp_preference
A path preference.
Definition: fib_path.c:243
u8 frp_weight
[un]equal cost path weight
Definition: fib_types.h:561
fib_source_t fib_entry_get_best_source(fib_node_index_t entry_index)
Definition: fib_entry.c:1461
u32 frp_udp_encap_id
UDP encap ID.
Definition: fib_types.h:551
enum fib_path_oper_attribute_t_ fib_path_oper_attribute_t
Enurmeration of path operational (i.e.
#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
u32 bier_fmask_child_add(fib_node_index_t bfmi, fib_node_type_t child_type, fib_node_index_t child_index)
Definition: bier_fmask.c:141
void bier_imp_unlock(index_t bii)
Definition: bier_imp.c:110
u32 frp_fib_index
The FIB index to lookup the nexthop Only valid for recursive paths.
Definition: fib_types.h:516
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:762
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
void fib_path_destroy(fib_node_index_t path_index)
Definition: fib_path.c:1476
#define FOR_EACH_FIB_PATH_CFG_ATTRIBUTE(_item)
Definition: fib_path.h:109
static int fib_path_cmp_i(const fib_path_t *path1, const fib_path_t *path2)
Definition: fib_path.c:1515
const ip46_address_t zero_addr
Definition: lookup.c:318
int fib_path_cmp_w_route_path(fib_node_index_t path_index, const fib_route_path_t *rpath)
Definition: fib_path.c:1649
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
fib_route_path_t fpe_path
A description of the path that is being extended.
Definition: fib_path_ext.h:105
void udp_encap_contribute_forwarding(index_t uei, dpo_proto_t proto, dpo_id_t *dpo)
Definition: udp_encap.c:134
static fib_node_t * fib_path_get_node(fib_node_index_t index)
Definition: fib_path.c:443
enum mpls_eos_bit_t_ mpls_eos_bit_t
index_t fp_bier_fib
The BIER FIB the fmask is in.
Definition: fib_path.c:291
fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:301
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:128