FD.io VPP  v17.04.2-2-ga8f93f8
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  * Route added as a result of interface configuration.
47  * this will also come from the API/CLI, but the distinction is
48  * that is from confiiguration on an interface, not a 'ip route' command
49  */
51  /**
52  * A high priority source a plugin can use
53  */
55  /**
56  * From the control plane API
57  */
59  /**
60  * From the CLI.
61  */
63  /**
64  * LISP
65  */
67  /**
68  * SRv6
69  */
71  /**
72  * IPv[46] Mapping
73  */
75  /**
76  * SIXRD
77  */
79  /**
80  * DHCP
81  */
83  /**
84  * IPv6 Proxy ND
85  */
87  /**
88  * Adjacency source.
89  * routes created as a result of ARP/ND entries. This is lower priority
90  * then the API/CLI. This is on purpose. trust me.
91  */
93  /**
94  * MPLS label. The prefix has been assigned a local label. This source
95  * never provides forwarding information, instead it acts as a place-holder
96  * so the association of label to prefix can be maintained
97  */
99  /**
100  * Attached Export source.
101  * routes created as a result of attahced export. routes thus sourced
102  * will be present in the export tables
103  */
105  /**
106  * Recursive resolution source.
107  * Used to install an entry that is the resolution traget of another.
108  */
110  /**
111  * uRPF bypass/exemption.
112  * Used to install an entry that is exempt from the loose uRPF check
113  */
115  /**
116  * The default route source.
117  * The default route is always added to the FIB table (like the
118  * special sources) but we need to be able to over-ride it with
119  * 'ip route' sources when provided
120  */
122  /**
123  * Marker. add new entries before this one.
124  */
126 } __attribute__ ((packed)) fib_source_t;
127 
128 STATIC_ASSERT (sizeof(fib_source_t) == 1,
129  "FIB too many sources");
130 
131 /**
132  * The maximum number of sources
133  */
134 #define FIB_SOURCE_MAX (FIB_SOURCE_LAST+1)
135 
136 #define FIB_SOURCES { \
137  [FIB_SOURCE_SPECIAL] = "special", \
138  [FIB_SOURCE_INTERFACE] = "interface", \
139  [FIB_SOURCE_API] = "API", \
140  [FIB_SOURCE_CLI] = "CLI", \
141  [FIB_SOURCE_ADJ] = "adjacency", \
142  [FIB_SOURCE_MAP] = "MAP", \
143  [FIB_SOURCE_SR] = "SR", \
144  [FIB_SOURCE_SIXRD] = "SixRD", \
145  [FIB_SOURCE_LISP] = "LISP", \
146  [FIB_SOURCE_CLASSIFY] = "classify", \
147  [FIB_SOURCE_DHCP] = "DHCP", \
148  [FIB_SOURCE_IP6_ND_PROXY] = "IPv6-proxy-nd", \
149  [FIB_SOURCE_RR] = "recursive-resolution", \
150  [FIB_SOURCE_AE] = "attached_export", \
151  [FIB_SOURCE_MPLS] = "mpls", \
152  [FIB_SOURCE_URPF_EXEMPT] = "urpf-exempt", \
153  [FIB_SOURCE_DEFAULT_ROUTE] = "default-route", \
154 }
155 
156 #define FOR_EACH_FIB_SOURCE(_item) \
157  for (_item = FIB_SOURCE_FIRST; _item < FIB_SOURCE_MAX; _item++)
158 
159 /**
160  * The different sources that can create a route.
161  * The sources are defined here the thier relative priority order.
162  * The lower the value the higher the priority
163  */
165  /**
166  * Marker. Add new values after this one.
167  */
169  /**
170  * Connected. The prefix is configured on an interface.
171  */
173  /**
174  * Attached. The prefix is attached to an interface.
175  */
177  /**
178  * The route is an explicit drop.
179  */
181  /**
182  * The route is exclusive. The client creating the route is
183  * providing an exclusive adjacency.
184  */
186  /**
187  * The route is attached cross tables and thus imports covered
188  * prefixes from the other table.
189  */
191  /**
192  * The prefix/address is local to this device
193  */
195  /**
196  * The prefix/address exempted from loose uRPF check
197  * To be used with caution
198  */
200  /**
201  * Marker. add new entries before this one.
202  */
205 
206 /**
207  * The maximum number of sources
208  */
209 #define FIB_ENTRY_ATTRIBUTE_MAX (FIB_ENTRY_ATTRIBUTE_LAST+1)
210 
211 #define FIB_ENTRY_ATTRIBUTES { \
212  [FIB_ENTRY_ATTRIBUTE_CONNECTED] = "connected", \
213  [FIB_ENTRY_ATTRIBUTE_ATTACHED] = "attached", \
214  [FIB_ENTRY_ATTRIBUTE_IMPORT] = "import", \
215  [FIB_ENTRY_ATTRIBUTE_DROP] = "drop", \
216  [FIB_ENTRY_ATTRIBUTE_EXCLUSIVE] = "exclusive", \
217  [FIB_ENTRY_ATTRIBUTE_LOCAL] = "local", \
218  [FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT] = "uRPF-exempt" \
219 }
220 
221 #define FOR_EACH_FIB_ATTRIBUTE(_item) \
222  for (_item = FIB_ENTRY_ATTRIBUTE_FIRST; \
223  _item < FIB_ENTRY_ATTRIBUTE_MAX; \
224  _item++)
225 
226 typedef enum fib_entry_flag_t_ {
235 } __attribute__((packed)) fib_entry_flag_t;
236 
237 /**
238  * Flags for the source data
239  */
241  /**
242  * Marker. Add new values after this one.
243  */
245  /**
246  * the source has been added to the entry
247  */
249  /**
250  * the source is active/best
251  */
253  /**
254  * Marker. add new entries before this one.
255  */
258 
259 #define FIB_ENTRY_SRC_ATTRIBUTE_MAX (FIB_ENTRY_SRC_ATTRIBUTE_LAST+1)
260 
261 #define FIB_ENTRY_SRC_ATTRIBUTES { \
262  [FIB_ENTRY_SRC_ATTRIBUTE_ADDED] = "added", \
263  [FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE] = "active", \
264 }
265 
266 typedef enum fib_entry_src_flag_t_ {
270 } __attribute__ ((packed)) fib_entry_src_flag_t;
271 
272 /*
273  * Keep the size of the flags field to 2 bytes, so it
274  * can be placed next to the 2 bytes reference count
275  */
276 STATIC_ASSERT (sizeof(fib_entry_src_flag_t) <= 2,
277  "FIB entry flags field size too big");
278 
279 /**
280  * Information related to the source of a FIB entry
281  */
282 typedef struct fib_entry_src_t_ {
283  /**
284  * A vector of path extensions
285  */
287 
288  /**
289  * The path-list created by the source
290  */
292  /**
293  * Which source this info block is for
294  */
295  fib_source_t fes_src;
296  /**
297  * Flags on the source
298  */
299  fib_entry_src_flag_t fes_flags;
300 
301  /**
302  * 1 bytes ref count. This is not the number of users of the Entry
303  * (which is itself not large, due to path-list sharing), but the number
304  * of times a given source has been added. Which is even fewer
305  */
307 
308  /**
309  * Flags the source contributes to the entry
310  */
312 
313  /**
314  * Source specific info
315  */
316  union {
317  struct {
318  /**
319  * the index of the FIB entry that is the covering entry
320  */
322  /**
323  * This source's index in the cover's list
324  */
326  } rr;
327  struct {
328  /**
329  * the index of the FIB entry that is the covering entry
330  */
332  /**
333  * This source's index in the cover's list
334  */
336  } adj;
337  struct {
338  /**
339  * the index of the FIB entry that is the covering entry
340  */
342  /**
343  * This source's index in the cover's list
344  */
346  } interface;
347  struct {
348  /**
349  * This MPLS local label associated with the prefix.
350  */
352 
353  /**
354  * the indicies of the LFIB entries created
355  */
356  fib_node_index_t fesm_lfes[2];
357  } mpls;
358  struct {
359  /**
360  * The source FIB index.
361  */
363  } lisp;
364  };
366 
367 /**
368  * An entry in a FIB table.
369  *
370  * This entry represents a route added to the FIB that is stored
371  * in one of the FIB tables.
372  */
373 typedef struct fib_entry_t_ {
374  /**
375  * Base class. The entry's node representation in the graph.
376  */
378  /**
379  * The prefix of the route. this is const just to be sure.
380  * It is the entry's key/identity and so should never change.
381  */
383  /**
384  * The index of the FIB table this entry is in
385  */
387  /**
388  * The load-balance used for forwarding.
389  *
390  * We don't share the EOS and non-EOS even in case when they could be
391  * because:
392  * - complexity & reliability v. memory
393  * determining the conditions where sharing is possible is non-trivial.
394  * - separate LBs means we can get the EOS bit right in the MPLS label DPO
395  * and so save a few clock cycles in the DP imposition node since we can
396  * paint the header straight on without the need to check the packet
397  * type to derive the EOS bit value.
398  */
399  dpo_id_t fe_lb; // [FIB_FORW_CHAIN_MPLS_NUM];
400  /**
401  * Vector of source infos.
402  * Most entries will only have 1 source. So we optimise for memory usage,
403  * which is preferable since we have many entries.
404  */
406  /**
407  * the path-list for which this entry is a child. This is also the path-list
408  * that is contributing forwarding for this entry.
409  */
411  /**
412  * index of this entry in the parent's child list.
413  * This is set when this entry is added as a child, but can also
414  * be changed by the parent as it manages its list.
415  */
417 
418  /**
419  * A vector of delegates.
420  */
422 } fib_entry_t;
423 
424 #define FOR_EACH_FIB_ENTRY_FLAG(_item) \
425  for (_item = FIB_ENTRY_FLAG_FIRST; _item < FIB_ENTRY_FLAG_MAX; _item++)
426 
427 #define FIB_ENTRY_FORMAT_BRIEF (0x0)
428 #define FIB_ENTRY_FORMAT_DETAIL (0x1)
429 #define FIB_ENTRY_FORMAT_DETAIL2 (0x2)
430 
431 extern u8 *format_fib_entry (u8 * s, va_list * args);
432 
434  const fib_prefix_t *prefix,
435  fib_source_t source,
437  const dpo_id_t *dpo);
438 
439 extern fib_node_index_t fib_entry_create (u32 fib_index,
440  const fib_prefix_t *prefix,
441  fib_source_t source,
443  const fib_route_path_t *paths);
444 extern void fib_entry_update (fib_node_index_t fib_entry_index,
445  fib_source_t source,
447  const fib_route_path_t *paths);
448 
449 extern void fib_entry_path_add(fib_node_index_t fib_entry_index,
450  fib_source_t source,
452  const fib_route_path_t *rpath);
453 extern void fib_entry_special_add(fib_node_index_t fib_entry_index,
454  fib_source_t source,
456  const dpo_id_t *dpo);
457 extern void fib_entry_special_update(fib_node_index_t fib_entry_index,
458  fib_source_t source,
460  const dpo_id_t *dpo);
462  fib_source_t source);
463 
465  fib_source_t source,
466  const fib_route_path_t *rpath);
468  fib_source_t source);
469 
470 extern void fib_entry_contribute_urpf(fib_node_index_t path_index,
471  index_t urpf);
473  fib_node_index_t fib_entry_index,
475  dpo_id_t *dpo);
477  fib_node_index_t fib_entry_index);
479  fib_node_index_t fib_entry_index,
480  fib_source_t source);
481 extern const int fib_entry_get_dpo_for_source (
482  fib_node_index_t fib_entry_index,
483  fib_source_t source,
484  dpo_id_t *dpo);
485 
486 extern adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index);
487 
488 extern int fib_entry_cmp_for_sort(void *i1, void *i2);
489 
490 extern void fib_entry_cover_changed(fib_node_index_t fib_entry);
491 extern void fib_entry_cover_updated(fib_node_index_t fib_entry);
493  fib_node_index_t **entry_indicies);
494 
495 extern void fib_entry_lock(fib_node_index_t fib_entry_index);
496 extern void fib_entry_unlock(fib_node_index_t fib_entry_index);
497 
498 extern u32 fib_entry_child_add(fib_node_index_t fib_entry_index,
499  fib_node_type_t type,
500  fib_node_index_t child_index);
501 extern void fib_entry_child_remove(fib_node_index_t fib_entry_index,
502  u32 sibling_index);
505  fib_node_index_t fib_entry_index,
506  fib_source_t source);
507 
508 extern void fib_entry_encode(fib_node_index_t fib_entry_index,
509  fib_route_path_encode_t **api_rpaths);
510 extern void fib_entry_get_prefix(fib_node_index_t fib_entry_index,
511  fib_prefix_t *pfx);
512 extern u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index);
513 extern void fib_entry_set_source_data(fib_node_index_t fib_entry_index,
514  fib_source_t source,
515  const void *data);
516 extern const void* fib_entry_get_source_data(fib_node_index_t fib_entry_index,
517  fib_source_t source);
518 
521  fib_node_index_t fib_entry_index,
522  fib_source_t source);
523 extern fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index);
524 extern int fib_entry_is_sourced(fib_node_index_t fib_entry_index,
525  fib_source_t source);
526 
528 
529 extern void fib_entry_module_init(void);
530 
531 /*
532  * unsafe... beware the raw pointer.
533  */
534 extern fib_node_index_t fib_entry_get_index(const fib_entry_t * fib_entry);
535 extern fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index);
536 
537 /*
538  * for testing purposes.
539  */
540 extern u32 fib_entry_pool_size(void);
541 
542 #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:762
the source is active/best
Definition: fib_entry.h:252
Recursive resolution source.
Definition: fib_entry.h:109
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:375
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:472
An entry in a FIB table.
Definition: fib_entry.h:373
A representation of a fib path for fib_path_encode to convey the information to the caller...
Definition: fib_types.h:358
enum fib_node_type_t_ fib_node_type_t
The types of nodes in a FIB graph.
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:308
The prefix/address exempted from loose uRPF check To be used with caution.
Definition: fib_entry.h:199
fib_entry_src_flag_t fib_entry_special_remove(fib_node_index_t fib_entry_index, fib_source_t source)
Definition: fib_entry.c:965
Definition: fib_entry.h:269
void fib_entry_cover_updated(fib_node_index_t fib_entry)
Definition: fib_entry.c:1204
fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1331
Information related to the source of a FIB entry.
Definition: fib_entry.h:282
Definition: fib_entry.h:233
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:868
From the CLI.
Definition: fib_entry.h:62
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:172
Marker.
Definition: fib_entry.h:256
The prefix/address is local to this device.
Definition: fib_entry.h:194
Attached Export source.
Definition: fib_entry.h:104
fib_source_t_
The different sources that can create a route.
Definition: fib_entry.h:30
u32 fe_fib_index
The index of the FIB table this entry is in.
Definition: fib_entry.h:386
uRPF bypass/exemption.
Definition: fib_entry.h:114
mpls_label_t fesm_label
This MPLS local label associated with the prefix.
Definition: fib_entry.h:351
Definition: fib_entry.h:229
fib_entry_src_t * fe_srcs
Vector of source infos.
Definition: fib_entry.h:405
Marker.
Definition: fib_entry.h:203
fib_node_index_t fe_parent
the path-list for which this entry is a child.
Definition: fib_entry.h:410
SIXRD.
Definition: fib_entry.h:78
u32 fib_entry_get_resolving_interface(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1321
IPv[46] Mapping.
Definition: fib_entry.h:74
u32 fesi_sibling
This source&#39;s index in the cover&#39;s list.
Definition: fib_entry.h:345
u32 fe_sibling
index of this entry in the parent&#39;s child list.
Definition: fib_entry.h:416
Definition: fib_entry.h:234
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:483
Marker.
Definition: fib_entry.h:125
A high priority source a plugin can use.
Definition: fib_entry.h:54
u32 fib_entry_pool_size(void)
Definition: fib_entry.c:1476
int fib_entry_cmp_for_sort(void *i1, void *i2)
Definition: fib_entry.c:1408
The route is attached cross tables and thus imports covered prefixes from the other table...
Definition: fib_entry.h:190
Aggregrate type for a prefix.
Definition: fib_types.h:160
void fib_entry_get_prefix(fib_node_index_t fib_entry_index, fib_prefix_t *pfx)
Definition: fib_entry.c:1456
fib_entry_flag_t_
Definition: fib_entry.h:226
u32 fesa_sibling
This source&#39;s index in the cover&#39;s list.
Definition: fib_entry.h:335
const dpo_id_t * fib_entry_contribute_ip_forwarding(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:432
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:391
Definition: fib_entry.h:227
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:98
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:146
Definition: fib_entry.h:232
Definition: fib_entry.h:231
struct fib_path_ext_t_ * fes_path_exts
A vector of path extensions.
Definition: fib_entry.h:286
u32 fesr_sibling
This source&#39;s index in the cover&#39;s list.
Definition: fib_entry.h:325
Adjacency source.
Definition: fib_entry.h:92
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:1427
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:1065
fib_node_index_t fib_entry_get_index(const fib_entry_t *fib_entry)
Definition: fib_entry.c:56
fib_node_index_t fesl_fib_index
The source FIB index.
Definition: fib_entry.h:362
enum fib_entry_attribute_t_ fib_entry_attribute_t
The different sources that can create a route.
void fib_entry_cover_changed(fib_node_index_t fib_entry)
Definition: fib_entry.c:1132
An node in the FIB graph.
Definition: fib_node.h:277
struct fib_entry_t_ fib_entry_t
An entry in a FIB table.
adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:447
void fib_entry_encode(fib_node_index_t fib_entry_index, fib_route_path_encode_t **api_rpaths)
Definition: fib_entry.c:1443
fib_node_index_t fib_entry_get_path_list(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:462
Attached.
Definition: fib_entry.h:176
int fib_entry_is_sourced(fib_node_index_t fib_entry_index, fib_source_t source)
Definition: fib_entry.h:267
fib_entry_attribute_t_
The different sources that can create a route.
Definition: fib_entry.h:164
Definition: fib_entry.h:230
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:28
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:673
Marker.
Definition: fib_entry.h:168
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:1270
fib_entry_flag_t fes_entry_flags
Flags the source contributes to the entry.
Definition: fib_entry.h:311
fib_source_t fes_src
Which source this info block is for.
Definition: fib_entry.h:295
fib_entry_src_flag_t fes_flags
Flags on the source.
Definition: fib_entry.h:299
const void * fib_entry_get_source_data(fib_node_index_t fib_entry_index, fib_source_t source)
unsigned int u32
Definition: types.h:88
adj_index_t fib_entry_get_adj_for_source(fib_node_index_t fib_entry_index, fib_source_t source)
The default route source.
Definition: fib_entry.h:121
Classify.
Definition: fib_entry.h:44
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:783
fib_node_t fe_node
Base class.
Definition: fib_entry.h:377
u64 size
Definition: vhost-user.h:77
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:1053
enum fib_forward_chain_type_t_ fib_forward_chain_type_t
FIB output chain type.
Definition: fib_entry.h:268
fib_node_index_t fesr_cover
the index of the FIB entry that is the covering entry
Definition: fib_entry.h:321
From the control plane API.
Definition: fib_entry.h:58
enum fib_entry_src_flag_t_ fib_entry_src_flag_t
Route added as a result of interface configuration.
Definition: fib_entry.h:50
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:636
Marker.
Definition: fib_entry.h:244
dpo_id_t fe_lb
The load-balance used for forwarding.
Definition: fib_entry.h:399
fib_entry_delegate_t * fe_delegates
A vector of delegates.
Definition: fib_entry.h:421
fib_node_index_t fes_pl
The path-list created by the source.
Definition: fib_entry.h:291
fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:44
fib_entry_flag_t fib_entry_get_flags_for_source(fib_node_index_t fib_entry_index, fib_source_t source)
SRv6.
Definition: fib_entry.h:70
Marker.
Definition: fib_entry.h:34
void fib_entry_module_init(void)
Definition: fib_entry.c:1437
fib_entry_src_attribute_t_
Flags for the source data.
Definition: fib_entry.h:240
unsigned char u8
Definition: types.h:56
DHCP.
Definition: fib_entry.h:82
the source has been added to the entry
Definition: fib_entry.h:248
Definition: fib_entry.h:228
STATIC_ASSERT(sizeof(fib_source_t)==1,"FIB too many sources")
Special sources.
Definition: fib_entry.h:40
LISP.
Definition: fib_entry.h:66
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:805
void fib_entry_lock(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1417
u8 * format_fib_entry(u8 *s, va_list *args)
Definition: fib_entry.c:93
fib_node_index_t fesa_cover
the index of the FIB entry that is the covering entry
Definition: fib_entry.h:331
A path extension is a per-entry addition to the forwarding information when packets are sent for that...
Definition: fib_path_ext.h:32
fib_node_index_t fesi_cover
the index of the FIB entry that is the covering entry
Definition: fib_entry.h:341
u8 fes_ref_count
1 bytes ref count.
Definition: fib_entry.h:306
The route is an explicit drop.
Definition: fib_entry.h:180
The route is exclusive.
Definition: fib_entry.h:185
A Delagate is a means to implmenet the Delagation design pattern; the extension of an objects functio...
u32 flags
Definition: vhost-user.h:78
fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:278
void fib_entry_set_source_data(fib_node_index_t fib_entry_index, fib_source_t source, const void *data)
const fib_prefix_t fe_prefix
The prefix of the route.
Definition: fib_entry.h:382
u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1466
IPv6 Proxy ND.
Definition: fib_entry.h:86
fib_entry_src_flag_t_
Definition: fib_entry.h:266