FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
fib_entry.h
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 #ifndef __FIB_ENTRY_H__
17 #define __FIB_ENTRY_H__
18 
19 #include <vnet/fib/fib_node.h>
21 #include <vnet/adj/adj.h>
22 #include <vnet/ip/ip.h>
23 #include <vnet/dpo/dpo.h>
24 
25 /**
26  * The different sources that can create a route.
27  * The sources are defined here the thier relative priority order.
28  * The lower the value the higher the priority
29  */
30 typedef enum fib_source_t_ {
31  /**
32  * Marker. Add new values after this one.
33  */
35  /**
36  * Special sources. These are for entries that are added to all
37  * FIBs by default, and should never be over-ridden (hence they
38  * are the highest priority)
39  */
41  /**
42  * Classify. A route that links directly to a classify adj
43  */
45  /**
46  * A route the is being 'proxied' on behalf of another device
47  */
49  /**
50  * Route added as a result of interface configuration.
51  * this will also come from the API/CLI, but the distinction is
52  * that is from confiiguration on an interface, not a 'ip route' command
53  */
55  /**
56  * SRv6 and SR-MPLS
57  */
59  /**
60  * A high priority source a plugin can use
61  */
63  /**
64  * From the BIER subsystem
65  */
67  /**
68  * From 6RD.
69  */
71  /**
72  * From the control plane API
73  */
75  /**
76  * From the CLI.
77  */
79  /**
80  * A low (below routing) priority source a plugin can use
81  */
83  /**
84  * LISP
85  */
87  /**
88  * IPv[46] Mapping
89  */
91  /**
92  * DHCP
93  */
95  /**
96  * IPv6 Proxy ND
97  */
99  /**
100  * IPv6 ND (seen in the link-local tables)
101  */
103  /**
104  * Adjacency source.
105  * routes created as a result of ARP/ND entries. This is lower priority
106  * then the API/CLI. This is on purpose. trust me.
107  */
109  /**
110  * MPLS label. The prefix has been assigned a local label. This source
111  * never provides forwarding information, instead it acts as a place-holder
112  * so the association of label to prefix can be maintained
113  */
115  /**
116  * Attached Export source.
117  * routes created as a result of attahced export. routes thus sourced
118  * will be present in the export tables
119  */
121  /**
122  * Recursive resolution source.
123  * Used to install an entry that is the resolution traget of another.
124  */
126  /**
127  * uRPF bypass/exemption.
128  * Used to install an entry that is exempt from the loose uRPF check
129  */
131  /**
132  * The default route source.
133  * The default route is always added to the FIB table (like the
134  * special sources) but we need to be able to over-ride it with
135  * 'ip route' sources when provided
136  */
138  /**
139  * The interpose source.
140  * This is not a real source, so don't use it to source a prefix.
141  * It exists here to provide a value against which to register to the
142  * VFT for providing the interpose actions to a real source.
143  */
145  /**
146  * Marker. add new entries before this one.
147  */
149 } __attribute__ ((packed)) fib_source_t;
150 
151 STATIC_ASSERT (sizeof(fib_source_t) == 1,
152  "FIB too many sources");
153 
154 /**
155  * The maximum number of sources
156  */
157 #define FIB_SOURCE_MAX (FIB_SOURCE_LAST+1)
158 
159 #define FIB_SOURCES { \
160  [FIB_SOURCE_SPECIAL] = "special", \
161  [FIB_SOURCE_INTERFACE] = "interface", \
162  [FIB_SOURCE_PROXY] = "proxy", \
163  [FIB_SOURCE_BIER] = "BIER", \
164  [FIB_SOURCE_6RD] = "6RD", \
165  [FIB_SOURCE_API] = "API", \
166  [FIB_SOURCE_CLI] = "CLI", \
167  [FIB_SOURCE_ADJ] = "adjacency", \
168  [FIB_SOURCE_MAP] = "MAP", \
169  [FIB_SOURCE_SR] = "SR", \
170  [FIB_SOURCE_LISP] = "LISP", \
171  [FIB_SOURCE_CLASSIFY] = "classify", \
172  [FIB_SOURCE_DHCP] = "DHCP", \
173  [FIB_SOURCE_IP6_ND_PROXY] = "IPv6-proxy-nd", \
174  [FIB_SOURCE_IP6_ND] = "IPv6-nd", \
175  [FIB_SOURCE_RR] = "recursive-resolution", \
176  [FIB_SOURCE_AE] = "attached_export", \
177  [FIB_SOURCE_MPLS] = "mpls", \
178  [FIB_SOURCE_URPF_EXEMPT] = "urpf-exempt", \
179  [FIB_SOURCE_DEFAULT_ROUTE] = "default-route", \
180  [FIB_SOURCE_PLUGIN_HI] = "plugin-hi", \
181  [FIB_SOURCE_PLUGIN_LOW] = "plugin-low", \
182  [FIB_SOURCE_INTERPOSE] = "interpose", \
183 }
184 
185 #define FOR_EACH_FIB_SOURCE(_item) \
186  for (_item = FIB_SOURCE_FIRST; _item < FIB_SOURCE_MAX; _item++)
187 
188 /**
189  * The different sources that can create a route.
190  * The sources are defined here the thier relative priority order.
191  * The lower the value the higher the priority
192  */
194  /**
195  * Marker. Add new values after this one.
196  */
198  /**
199  * Connected. The prefix is configured on an interface.
200  */
202  /**
203  * Attached. The prefix is attached to an interface.
204  */
206  /**
207  * The route is an explicit drop.
208  */
210  /**
211  * The route is exclusive. The client creating the route is
212  * providing an exclusive adjacency.
213  */
215  /**
216  * The route is attached cross tables and thus imports covered
217  * prefixes from the other table.
218  */
220  /**
221  * The prefix/address is local to this device
222  */
224  /**
225  * The prefix/address is a multicast prefix.
226  * this aplies only to MPLS. IP multicast is handled by mfib
227  */
229  /**
230  * The prefix/address exempted from loose uRPF check
231  * To be used with caution
232  */
234  /**
235  * The prefix/address exempted from attached export
236  */
238  /**
239  * This FIB entry imposes its source information on all prefixes
240  * that is covers
241  */
243  /**
244  * The interpose attribute.
245  * place the forwarding provided by the source infront of the forwarding
246  * provided by the best source, or failing that, by the cover.
247  */
249  /**
250  * Marker. add new entries before this one.
251  */
254 
255 #define FIB_ENTRY_ATTRIBUTES { \
256  [FIB_ENTRY_ATTRIBUTE_CONNECTED] = "connected", \
257  [FIB_ENTRY_ATTRIBUTE_ATTACHED] = "attached", \
258  [FIB_ENTRY_ATTRIBUTE_IMPORT] = "import", \
259  [FIB_ENTRY_ATTRIBUTE_DROP] = "drop", \
260  [FIB_ENTRY_ATTRIBUTE_EXCLUSIVE] = "exclusive", \
261  [FIB_ENTRY_ATTRIBUTE_LOCAL] = "local", \
262  [FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT] = "uRPF-exempt", \
263  [FIB_ENTRY_ATTRIBUTE_MULTICAST] = "multicast", \
264  [FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT] = "no-attached-export", \
265  [FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT] = "covered-inherit", \
266  [FIB_ENTRY_ATTRIBUTE_INTERPOSE] = "interpose", \
267 }
268 
269 #define FOR_EACH_FIB_ATTRIBUTE(_item) \
270  for (_item = FIB_ENTRY_ATTRIBUTE_FIRST; \
271  _item <= FIB_ENTRY_ATTRIBUTE_LAST; \
272  _item++)
273 
274 typedef enum fib_entry_flag_t_ {
287 } __attribute__((packed)) fib_entry_flag_t;
288 
289 extern u8 * format_fib_entry_flags(u8 *s, va_list *args);
290 
291 /**
292  * Flags for the source data
293  */
295  /**
296  * Marker. Add new values after this one.
297  */
299  /**
300  * the source has been added to the entry
301  */
303  /**
304  * the source is contributing forwarding
305  */
307  /**
308  * the source is active/best
309  */
311  /**
312  * the source is inherited from its cover
313  */
315  /**
316  * Marker. add new entries before this one.
317  */
320 
321 
322 #define FIB_ENTRY_SRC_ATTRIBUTES { \
323  [FIB_ENTRY_SRC_ATTRIBUTE_ADDED] = "added", \
324  [FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING] = "contributing", \
325  [FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE] = "active", \
326  [FIB_ENTRY_SRC_ATTRIBUTE_INHERITED] = "inherited", \
327 }
328 
329 #define FOR_EACH_FIB_SRC_ATTRIBUTE(_item) \
330  for (_item = FIB_ENTRY_SRC_ATTRIBUTE_FIRST; \
331  _item <= FIB_ENTRY_SRC_ATTRIBUTE_LAST; \
332  _item++)
333 
334 typedef enum fib_entry_src_flag_t_ {
340 } __attribute__ ((packed)) fib_entry_src_flag_t;
341 
342 extern u8 * format_fib_entry_src_flags(u8 *s, va_list *args);
343 
344 /*
345  * Keep the size of the flags field to 2 bytes, so it
346  * can be placed next to the 2 bytes reference count
347  */
348 STATIC_ASSERT (sizeof(fib_entry_src_flag_t) <= 2,
349  "FIB entry flags field size too big");
350 
351 /**
352  * Information related to the source of a FIB entry
353  */
354 typedef struct fib_entry_src_t_ {
355  /**
356  * A vector of path extensions
357  */
359 
360  /**
361  * The path-list created by the source
362  */
364 
365  /**
366  * Flags the source contributes to the entry
367  */
369 
370  /**
371  * Which source this info block is for
372  */
373  fib_source_t fes_src;
374 
375  /**
376  * Flags on the source
377  */
379 
380  /**
381  * 1 bytes ref count. This is not the number of users of the Entry
382  * (which is itself not large, due to path-list sharing), but the number
383  * of times a given source has been added. Which is even fewer
384  */
386 
387  /**
388  * Source specific info
389  */
390  union {
391  struct {
392  /**
393  * the index of the FIB entry that is the covering entry
394  */
396  /**
397  * This source's index in the cover's list
398  */
400  } rr;
401  struct {
402  /**
403  * the index of the FIB entry that is the covering entry
404  */
406  /**
407  * This source's index in the cover's list
408  */
410  /**
411  * DPO type to interpose. The dpo type needs to have registered
412  * it's 'contribute interpose' callback function.
413  */
415  } interpose;
416  struct {
417  /**
418  * the index of the FIB entry that is the covering entry
419  */
421  /**
422  * This source's index in the cover's list
423  */
425  } adj;
426  struct {
427  /**
428  * the index of the FIB entry that is the covering entry
429  */
431  /**
432  * This source's index in the cover's list
433  */
435  } interface;
436  struct {
437  /**
438  * This MPLS local label associated with the prefix.
439  */
441 
442  /**
443  * the indicies of the LFIB entries created
444  */
446  } mpls;
447  struct {
448  /**
449  * The source FIB index.
450  */
452  } lisp;
453  } u;
455 
456 /**
457  * An entry in a FIB table.
458  *
459  * This entry represents a route added to the FIB that is stored
460  * in one of the FIB tables.
461  */
462 typedef struct fib_entry_t_ {
463  /**
464  * Base class. The entry's node representation in the graph.
465  */
467  /**
468  * The prefix of the route. this is const just to be sure.
469  * It is the entry's key/identity and so should never change.
470  */
472  /**
473  * The index of the FIB table this entry is in
474  */
476  /**
477  * The load-balance used for forwarding.
478  *
479  * We don't share the EOS and non-EOS even in case when they could be
480  * because:
481  * - complexity & reliability v. memory
482  * determining the conditions where sharing is possible is non-trivial.
483  * - separate LBs means we can get the EOS bit right in the MPLS label DPO
484  * and so save a few clock cycles in the DP imposition node since we can
485  * paint the header straight on without the need to check the packet
486  * type to derive the EOS bit value.
487  */
489  /**
490  * Vector of source infos.
491  * Most entries will only have 1 source. So we optimise for memory usage,
492  * which is preferable since we have many entries.
493  */
495  /**
496  * the path-list for which this entry is a child. This is also the path-list
497  * that is contributing forwarding for this entry.
498  */
500  /**
501  * index of this entry in the parent's child list.
502  * This is set when this entry is added as a child, but can also
503  * be changed by the parent as it manages its list.
504  */
506 
507  /**
508  * A vector of delegates.
509  */
511 } fib_entry_t;
512 
513 #define FOR_EACH_FIB_ENTRY_FLAG(_item) \
514  for (_item = FIB_ENTRY_FLAG_FIRST; _item < FIB_ENTRY_FLAG_MAX; _item++)
515 
516 #define FIB_ENTRY_FORMAT_BRIEF (0x0)
517 #define FIB_ENTRY_FORMAT_DETAIL (0x1)
518 #define FIB_ENTRY_FORMAT_DETAIL2 (0x2)
519 
520 extern u8 *format_fib_entry (u8 * s, va_list * args);
521 extern u8 *format_fib_source (u8 * s, va_list * args);
522 
524  const fib_prefix_t *prefix,
525  fib_source_t source,
527  const dpo_id_t *dpo);
528 
529 extern fib_node_index_t fib_entry_create (u32 fib_index,
530  const fib_prefix_t *prefix,
531  fib_source_t source,
533  const fib_route_path_t *paths);
534 extern void fib_entry_update (fib_node_index_t fib_entry_index,
535  fib_source_t source,
537  const fib_route_path_t *paths);
538 
539 extern void fib_entry_path_add(fib_node_index_t fib_entry_index,
540  fib_source_t source,
542  const fib_route_path_t *rpath);
543 extern void fib_entry_special_add(fib_node_index_t fib_entry_index,
544  fib_source_t source,
546  const dpo_id_t *dpo);
547 extern void fib_entry_special_update(fib_node_index_t fib_entry_index,
548  fib_source_t source,
550  const dpo_id_t *dpo);
552  fib_source_t source);
553 
555  fib_source_t source,
556  const fib_route_path_t *rpath);
557 
558 extern void fib_entry_inherit(fib_node_index_t cover,
559  fib_node_index_t covered);
560 
562  fib_source_t source);
563 
565  fib_node_index_t fib_entry_index);
566 extern void fib_entry_contribute_urpf(fib_node_index_t path_index,
567  index_t urpf);
569  fib_node_index_t fib_entry_index,
571  dpo_id_t *dpo);
573  fib_node_index_t fib_entry_index);
575  fib_node_index_t fib_entry_index,
576  fib_source_t source);
577 extern const int fib_entry_get_dpo_for_source (
578  fib_node_index_t fib_entry_index,
579  fib_source_t source,
580  dpo_id_t *dpo);
581 
582 extern adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index);
583 
584 extern int fib_entry_cmp_for_sort(void *i1, void *i2);
585 
586 extern void fib_entry_cover_changed(fib_node_index_t fib_entry);
587 extern void fib_entry_cover_updated(fib_node_index_t fib_entry);
589  fib_node_index_t **entry_indicies);
590 
591 extern void fib_entry_lock(fib_node_index_t fib_entry_index);
592 extern void fib_entry_unlock(fib_node_index_t fib_entry_index);
593 
594 extern u32 fib_entry_child_add(fib_node_index_t fib_entry_index,
595  fib_node_type_t type,
596  fib_node_index_t child_index);
597 extern void fib_entry_child_remove(fib_node_index_t fib_entry_index,
598  u32 sibling_index);
601  fib_node_index_t fib_entry_index,
602  fib_source_t source);
603 
604 extern void fib_entry_encode(fib_node_index_t fib_entry_index,
605  fib_route_path_encode_t **api_rpaths);
606 extern const fib_prefix_t *fib_entry_get_prefix(fib_node_index_t fib_entry_index);
607 extern u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index);
608 extern void fib_entry_set_source_data(fib_node_index_t fib_entry_index,
609  fib_source_t source,
610  const void *data);
611 extern const void* fib_entry_get_source_data(fib_node_index_t fib_entry_index,
612  fib_source_t source);
613 
616  fib_node_index_t fib_entry_index,
617  fib_source_t source);
618 extern fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index);
619 extern int fib_entry_is_sourced(fib_node_index_t fib_entry_index,
620  fib_source_t source);
621 
623 extern int fib_entry_is_resolved(fib_node_index_t fib_entry_index);
624 extern int fib_entry_is_host(fib_node_index_t fib_entry_index);
625 extern void fib_entry_set_flow_hash_config(fib_node_index_t fib_entry_index,
626  flow_hash_config_t hash_config);
627 
628 extern void fib_entry_module_init(void);
629 
630 extern u32 fib_entry_get_stats_index(fib_node_index_t fib_entry_index);
631 
632 /*
633  * unsafe... beware the raw pointer.
634  */
635 extern fib_node_index_t fib_entry_get_index(const fib_entry_t * fib_entry);
636 extern fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index);
637 
638 /*
639  * for testing purposes.
640  */
641 extern u32 fib_entry_pool_size(void);
642 
643 #endif
void fib_entry_special_add(fib_node_index_t fib_entry_index, fib_source_t source, fib_entry_flag_t flags, const dpo_id_t *dpo)
Definition: fib_entry.c:870
STATIC_ASSERT(sizeof(fib_source_t)==1, "FIB too many sources")
the source is active/best
Definition: fib_entry.h:310
Recursive resolution source.
Definition: fib_entry.h:125
void fib_entry_contribute_urpf(fib_node_index_t path_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
u32 fib_entry_child_add(fib_node_index_t fib_entry_index, fib_node_type_t type, fib_node_index_t child_index)
Definition: fib_entry.c:555
u32 flags
Definition: vhost_user.h:115
An entry in a FIB table.
Definition: fib_entry.h:462
struct fib_entry_src_t_::@124::@126 interpose
A representation of a fib path for fib_path_encode to convey the information to the caller...
Definition: fib_types.h:588
const fib_prefix_t * fib_entry_get_prefix(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1678
u32 fib_entry_get_resolving_interface_for_source(fib_node_index_t fib_entry_index, fib_source_t source)
A representation of a path as described by a route producer.
Definition: fib_types.h:470
The prefix/address exempted from loose uRPF check To be used with caution.
Definition: fib_entry.h:233
int fib_entry_is_host(fib_node_index_t fib_entry_index)
Return !0 is the entry represents a host prefix.
Definition: fib_entry.c:1476
fib_entry_src_flag_t fib_entry_special_remove(fib_node_index_t fib_entry_index, fib_source_t source)
Definition: fib_entry.c:1098
Definition: fib_entry.h:338
void fib_entry_cover_updated(fib_node_index_t fib_entry)
Definition: fib_entry.c:1332
Definition: fib_entry.h:337
fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1461
Definition: fib_entry.h:286
Information related to the source of a FIB entry.
Definition: fib_entry.h:354
Definition: fib_entry.h:281
u32 mpls_label_t
A label value only, i.e.
Definition: packet.h:24
fib_entry_src_flag_t fib_entry_path_remove(fib_node_index_t fib_entry_index, fib_source_t source, const fib_route_path_t *rpath)
Definition: fib_entry.c:1004
From the CLI.
Definition: fib_entry.h:78
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
Connected.
Definition: fib_entry.h:201
Marker.
Definition: fib_entry.h:318
The prefix/address is local to this device.
Definition: fib_entry.h:223
Attached Export source.
Definition: fib_entry.h:120
fib_source_t_
The different sources that can create a route.
Definition: fib_entry.h:30
Definition: fib_entry.h:284
u32 fe_fib_index
The index of the FIB table this entry is in.
Definition: fib_entry.h:475
uRPF bypass/exemption.
Definition: fib_entry.h:130
mpls_label_t fesm_label
This MPLS local label associated with the prefix.
Definition: fib_entry.h:440
Definition: fib_entry.h:277
fib_entry_src_t * fe_srcs
Vector of source infos.
Definition: fib_entry.h:494
Marker.
Definition: fib_entry.h:252
void fib_entry_set_flow_hash_config(fib_node_index_t fib_entry_index, flow_hash_config_t hash_config)
Definition: fib_entry.c:1512
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:499
u32 fib_entry_get_resolving_interface(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1451
IPv[46] Mapping.
Definition: fib_entry.h:90
u32 fesi_sibling
This source&#39;s index in the cover&#39;s list.
Definition: fib_entry.h:409
u32 fe_sibling
index of this entry in the parent&#39;s child list.
Definition: fib_entry.h:505
Definition: fib_entry.h:283
enum fib_entry_src_attribute_t_ fib_entry_src_attribute_t
Flags for the source data.
void fib_entry_child_remove(fib_node_index_t fib_entry_index, u32 sibling_index)
Definition: fib_entry.c:566
Marker.
Definition: fib_entry.h:148
A high priority source a plugin can use.
Definition: fib_entry.h:62
u32 fib_entry_pool_size(void)
Definition: fib_entry.c:1698
int fib_entry_cmp_for_sort(void *i1, void *i2)
Definition: fib_entry.c:1616
This FIB entry imposes its source information on all prefixes that is covers.
Definition: fib_entry.h:242
The route is attached cross tables and thus imports covered prefixes from the other table...
Definition: fib_entry.h:219
Aggregrate type for a prefix.
Definition: fib_types.h:203
fib_entry_flag_t_
Definition: fib_entry.h:274
u32 fesa_sibling
This source&#39;s index in the cover&#39;s list.
Definition: fib_entry.h:424
unsigned int u32
Definition: types.h:88
const dpo_id_t * fib_entry_contribute_ip_forwarding(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:506
void fib_entry_contribute_forwarding(fib_node_index_t fib_entry_index, fib_forward_chain_type_t type, dpo_id_t *dpo)
Definition: fib_entry.c:447
Definition: fib_entry.h:275
const int fib_entry_get_dpo_for_source(fib_node_index_t fib_entry_index, fib_source_t source, dpo_id_t *dpo)
MPLS label.
Definition: fib_entry.h:114
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
Definition: fib_entry.h:280
IPv6 ND (seen in the link-local tables)
Definition: fib_entry.h:102
Definition: fib_entry.h:279
u32 fesr_sibling
This source&#39;s index in the cover&#39;s list.
Definition: fib_entry.h:399
Adjacency source.
Definition: fib_entry.h:108
enum fib_source_t_ fib_source_t
The different sources that can create a route.
struct fib_entry_src_t_ fib_entry_src_t
Information related to the source of a FIB entry.
void fib_entry_unlock(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1635
From the BIER subsystem.
Definition: fib_entry.h:66
Definition: fib_entry.h:339
void fib_entry_update(fib_node_index_t fib_entry_index, fib_source_t source, fib_entry_flag_t flags, const fib_route_path_t *paths)
fib_entry_update
Definition: fib_entry.c:1225
fib_node_index_t fib_entry_get_index(const fib_entry_t *fib_entry)
Definition: fib_entry.c:62
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
fib_node_index_t fesl_fib_index
The source FIB index.
Definition: fib_entry.h:451
A list of path-extensions.
Definition: fib_types.h:605
enum fib_entry_attribute_t_ fib_entry_attribute_t
The different sources that can create a route.
union fib_entry_src_t_::@124 u
Source specific info.
void fib_entry_cover_changed(fib_node_index_t fib_entry)
Definition: fib_entry.c:1258
An node in the FIB graph.
Definition: fib_node.h:291
struct fib_entry_src_t_::@124::@127 adj
struct fib_entry_t_ fib_entry_t
An entry in a FIB table.
The prefix/address exempted from attached export.
Definition: fib_entry.h:237
adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:526
void fib_entry_encode(fib_node_index_t fib_entry_index, fib_route_path_encode_t **api_rpaths)
Definition: fib_entry.c:1652
fib_node_index_t fib_entry_get_path_list(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:545
Attached.
Definition: fib_entry.h:205
int fib_entry_is_sourced(fib_node_index_t fib_entry_index, fib_source_t source)
Definition: fib_entry.h:335
From 6RD.
Definition: fib_entry.h:70
fib_entry_attribute_t_
The different sources that can create a route.
Definition: fib_entry.h:193
the source is contributing forwarding
Definition: fib_entry.h:306
Definition: fib_entry.h:285
Definition: fib_entry.h:278
struct fib_entry_src_t_::@124::@125 rr
u32 fib_entry_get_stats_index(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1541
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_node_index_t fib_entry_create_special(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, const dpo_id_t *dpo)
Definition: fib_entry.c:754
Marker.
Definition: fib_entry.h:197
enum fib_entry_flag_t_ fib_entry_flag_t
int fib_entry_recursive_loop_detect(fib_node_index_t entry_index, fib_node_index_t **entry_indicies)
Definition: fib_entry.c:1400
void fib_entry_inherit(fib_node_index_t cover, fib_node_index_t covered)
fib_entry_inherit
Definition: fib_entry.c:1200
fib_entry_flag_t fes_entry_flags
Flags the source contributes to the entry.
Definition: fib_entry.h:368
fib_source_t fes_src
Which source this info block is for.
Definition: fib_entry.h:373
fib_entry_src_flag_t fes_flags
Flags on the source.
Definition: fib_entry.h:378
const void * fib_entry_get_source_data(fib_node_index_t fib_entry_index, fib_source_t source)
adj_index_t fib_entry_get_adj_for_source(fib_node_index_t fib_entry_index, fib_source_t source)
struct fib_entry_src_t_::@124::@128 interface
The default route source.
Definition: fib_entry.h:137
Classify.
Definition: fib_entry.h:44
u8 * format_fib_source(u8 *s, va_list *args)
Definition: fib_entry.c:99
void fib_entry_special_update(fib_node_index_t fib_entry_index, fib_source_t source, fib_entry_flag_t flags, const dpo_id_t *dpo)
Definition: fib_entry.c:887
fib_node_t fe_node
Base class.
Definition: fib_entry.h:466
fib_entry_src_flag_t fib_entry_delete(fib_node_index_t fib_entry_index, fib_source_t source)
fib_entry_delete
Definition: fib_entry.c:1213
enum fib_forward_chain_type_t_ fib_forward_chain_type_t
FIB output chain type.
The interpose source.
Definition: fib_entry.h:144
Definition: fib_entry.h:336
the source is inherited from its cover
Definition: fib_entry.h:314
fib_node_index_t fesr_cover
the index of the FIB entry that is the covering entry
Definition: fib_entry.h:395
struct fib_entry_src_t_::@124::@129 mpls
dpo_id_t fesi_dpo
DPO type to interpose.
Definition: fib_entry.h:414
From the control plane API.
Definition: fib_entry.h:74
enum fib_entry_src_flag_t_ fib_entry_src_flag_t
Route added as a result of interface configuration.
Definition: fib_entry.h:54
u32 flow_hash_config_t
A flow hash configuration is a mask of the flow hash options.
Definition: lookup.h:84
fib_node_index_t fib_entry_create(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, const fib_route_path_t *paths)
Definition: fib_entry.c:715
Marker.
Definition: fib_entry.h:298
fib_node_index_t fesm_lfes[2]
the indicies of the LFIB entries created
Definition: fib_entry.h:445
dpo_id_t fe_lb
The load-balance used for forwarding.
Definition: fib_entry.h:488
The interpose attribute.
Definition: fib_entry.h:248
fib_entry_delegate_t * fe_delegates
A vector of delegates.
Definition: fib_entry.h:510
fib_node_index_t fes_pl
The path-list created by the source.
Definition: fib_entry.h:363
fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:50
fib_entry_flag_t fib_entry_get_flags_for_source(fib_node_index_t fib_entry_index, fib_source_t source)
SRv6 and SR-MPLS.
Definition: fib_entry.h:58
Marker.
Definition: fib_entry.h:34
void fib_entry_module_init(void)
Definition: fib_entry.c:1645
u8 * format_fib_entry_src_flags(u8 *s, va_list *args)
Definition: fib_entry.c:124
fib_entry_src_attribute_t_
Flags for the source data.
Definition: fib_entry.h:294
DHCP.
Definition: fib_entry.h:94
the source has been added to the entry
Definition: fib_entry.h:302
Definition: fib_entry.h:276
A route the is being &#39;proxied&#39; on behalf of another device.
Definition: fib_entry.h:48
Special sources.
Definition: fib_entry.h:40
typedef prefix
Definition: ip_types.api:35
void fib_entry_recalculate_forwarding(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:804
u8 * format_fib_entry_flags(u8 *s, va_list *args)
Definition: fib_entry.c:109
enum fib_node_type_t_ fib_node_type_t
The types of nodes in a FIB graph.
struct fib_entry_src_t_::@124::@130 lisp
LISP.
Definition: fib_entry.h:86
void fib_entry_path_add(fib_node_index_t fib_entry_index, fib_source_t source, fib_entry_flag_t flags, const fib_route_path_t *rpath)
Definition: fib_entry.c:906
void fib_entry_lock(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1625
u8 * format_fib_entry(u8 *s, va_list *args)
Definition: fib_entry.c:139
fib_node_index_t fesa_cover
the index of the FIB entry that is the covering entry
Definition: fib_entry.h:420
fib_node_index_t fesi_cover
the index of the FIB entry that is the covering entry
Definition: fib_entry.h:405
u8 fes_ref_count
1 bytes ref count.
Definition: fib_entry.h:385
fib_path_ext_list_t fes_path_exts
A vector of path extensions.
Definition: fib_entry.h:358
The route is an explicit drop.
Definition: fib_entry.h:209
The route is exclusive.
Definition: fib_entry.h:214
A Delagate is a means to implmenet the Delagation design pattern; the extension of an objects functio...
Definition: fib_entry.h:282
fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:301
void fib_entry_set_source_data(fib_node_index_t fib_entry_index, fib_source_t source, const void *data)
A low (below routing) priority source a plugin can use.
Definition: fib_entry.h:82
const fib_prefix_t fe_prefix
The prefix of the route.
Definition: fib_entry.h:471
u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1688
The prefix/address is a multicast prefix.
Definition: fib_entry.h:228
IPv6 Proxy ND.
Definition: fib_entry.h:98
fib_entry_src_flag_t_
Definition: fib_entry.h:334