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