blob: 7331f803ec475142e3b6fabe11383ce8dd352579 [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
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>
Neale Ranns3bab8f92019-12-04 06:11:00 +000020#include <vnet/fib/fib_source.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010021#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.
Lijian.Zhang33af8c12019-09-16 16:22:36 +080027 * The sources are defined here with their relative priority order.
Neale Ranns0bfe5d82016-08-25 15:29:12 +010028 * The lower the value the higher the priority
29 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +010030typedef enum fib_entry_attribute_t_ {
31 /**
32 * Marker. Add new values after this one.
33 */
34 FIB_ENTRY_ATTRIBUTE_FIRST,
35 /**
36 * Connected. The prefix is configured on an interface.
37 */
38 FIB_ENTRY_ATTRIBUTE_CONNECTED = FIB_ENTRY_ATTRIBUTE_FIRST,
39 /**
40 * Attached. The prefix is attached to an interface.
41 */
42 FIB_ENTRY_ATTRIBUTE_ATTACHED,
43 /**
44 * The route is an explicit drop.
45 */
46 FIB_ENTRY_ATTRIBUTE_DROP,
47 /**
48 * The route is exclusive. The client creating the route is
49 * providing an exclusive adjacency.
50 */
51 FIB_ENTRY_ATTRIBUTE_EXCLUSIVE,
52 /**
53 * The route is attached cross tables and thus imports covered
54 * prefixes from the other table.
55 */
56 FIB_ENTRY_ATTRIBUTE_IMPORT,
57 /**
58 * The prefix/address is local to this device
59 */
60 FIB_ENTRY_ATTRIBUTE_LOCAL,
61 /**
Neale Ranns0f26c5a2017-03-01 15:12:11 -080062 * The prefix/address is a multicast prefix.
63 * this aplies only to MPLS. IP multicast is handled by mfib
64 */
65 FIB_ENTRY_ATTRIBUTE_MULTICAST,
66 /**
Shwetha Bhandari78372a92017-01-18 12:43:54 +053067 * The prefix/address exempted from loose uRPF check
68 * To be used with caution
69 */
70 FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT,
71 /**
Neale Ranns53da2212018-02-24 02:11:19 -080072 * The prefix/address exempted from attached export
73 */
74 FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT,
75 /**
Neale Ranns89541992017-04-06 04:41:02 -070076 * This FIB entry imposes its source information on all prefixes
77 * that is covers
78 */
79 FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT,
80 /**
Neale Ranns2303cb12018-02-21 04:57:17 -080081 * The interpose attribute.
82 * place the forwarding provided by the source infront of the forwarding
83 * provided by the best source, or failing that, by the cover.
84 */
85 FIB_ENTRY_ATTRIBUTE_INTERPOSE,
86 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010087 * Marker. add new entries before this one.
88 */
Neale Ranns2303cb12018-02-21 04:57:17 -080089 FIB_ENTRY_ATTRIBUTE_LAST = FIB_ENTRY_ATTRIBUTE_INTERPOSE,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010090} fib_entry_attribute_t;
91
Neale Ranns0bfe5d82016-08-25 15:29:12 +010092#define FIB_ENTRY_ATTRIBUTES { \
93 [FIB_ENTRY_ATTRIBUTE_CONNECTED] = "connected", \
94 [FIB_ENTRY_ATTRIBUTE_ATTACHED] = "attached", \
95 [FIB_ENTRY_ATTRIBUTE_IMPORT] = "import", \
96 [FIB_ENTRY_ATTRIBUTE_DROP] = "drop", \
97 [FIB_ENTRY_ATTRIBUTE_EXCLUSIVE] = "exclusive", \
98 [FIB_ENTRY_ATTRIBUTE_LOCAL] = "local", \
Neale Ranns0f26c5a2017-03-01 15:12:11 -080099 [FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT] = "uRPF-exempt", \
100 [FIB_ENTRY_ATTRIBUTE_MULTICAST] = "multicast", \
Neale Ranns53da2212018-02-24 02:11:19 -0800101 [FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT] = "no-attached-export", \
Neale Ranns89541992017-04-06 04:41:02 -0700102 [FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT] = "covered-inherit", \
Neale Ranns2303cb12018-02-21 04:57:17 -0800103 [FIB_ENTRY_ATTRIBUTE_INTERPOSE] = "interpose", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100104}
105
106#define FOR_EACH_FIB_ATTRIBUTE(_item) \
107 for (_item = FIB_ENTRY_ATTRIBUTE_FIRST; \
Neale Ranns808c5b22017-08-02 05:15:07 -0700108 _item <= FIB_ENTRY_ATTRIBUTE_LAST; \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100109 _item++)
110
111typedef enum fib_entry_flag_t_ {
112 FIB_ENTRY_FLAG_NONE = 0,
113 FIB_ENTRY_FLAG_CONNECTED = (1 << FIB_ENTRY_ATTRIBUTE_CONNECTED),
114 FIB_ENTRY_FLAG_ATTACHED = (1 << FIB_ENTRY_ATTRIBUTE_ATTACHED),
115 FIB_ENTRY_FLAG_DROP = (1 << FIB_ENTRY_ATTRIBUTE_DROP),
116 FIB_ENTRY_FLAG_EXCLUSIVE = (1 << FIB_ENTRY_ATTRIBUTE_EXCLUSIVE),
117 FIB_ENTRY_FLAG_LOCAL = (1 << FIB_ENTRY_ATTRIBUTE_LOCAL),
118 FIB_ENTRY_FLAG_IMPORT = (1 << FIB_ENTRY_ATTRIBUTE_IMPORT),
Neale Ranns53da2212018-02-24 02:11:19 -0800119 FIB_ENTRY_FLAG_NO_ATTACHED_EXPORT = (1 << FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT),
Shwetha Bhandari78372a92017-01-18 12:43:54 +0530120 FIB_ENTRY_FLAG_LOOSE_URPF_EXEMPT = (1 << FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800121 FIB_ENTRY_FLAG_MULTICAST = (1 << FIB_ENTRY_ATTRIBUTE_MULTICAST),
Neale Ranns89541992017-04-06 04:41:02 -0700122 FIB_ENTRY_FLAG_COVERED_INHERIT = (1 << FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT),
Neale Ranns2303cb12018-02-21 04:57:17 -0800123 FIB_ENTRY_FLAG_INTERPOSE = (1 << FIB_ENTRY_ATTRIBUTE_INTERPOSE),
Neale Ranns32e1c012016-11-22 17:07:28 +0000124} __attribute__((packed)) fib_entry_flag_t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100125
Neale Ranns710071b2018-09-24 12:36:26 +0000126extern u8 * format_fib_entry_flags(u8 *s, va_list *args);
127
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100128/**
129 * Flags for the source data
130 */
131typedef enum fib_entry_src_attribute_t_ {
132 /**
133 * Marker. Add new values after this one.
134 */
135 FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
136 /**
137 * the source has been added to the entry
138 */
139 FIB_ENTRY_SRC_ATTRIBUTE_ADDED = FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
140 /**
Neale Ranns2303cb12018-02-21 04:57:17 -0800141 * the source is contributing forwarding
142 */
143 FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING,
144 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100145 * the source is active/best
146 */
147 FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE,
148 /**
Neale Ranns9db6ada2019-11-08 12:42:31 +0000149 * the source is stale
150 */
151 FIB_ENTRY_SRC_ATTRIBUTE_STALE,
152 /**
Neale Ranns89541992017-04-06 04:41:02 -0700153 * the source is inherited from its cover
154 */
155 FIB_ENTRY_SRC_ATTRIBUTE_INHERITED,
156 /**
Matthew Smith9e5694b2023-09-26 13:08:26 +0000157 * the source is currently used as glean src address
158 */
159 FIB_ENTRY_SRC_ATTRIBUTE_PROVIDES_GLEAN,
160 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100161 * Marker. add new entries before this one.
162 */
Matthew Smith9e5694b2023-09-26 13:08:26 +0000163 FIB_ENTRY_SRC_ATTRIBUTE_LAST = FIB_ENTRY_SRC_ATTRIBUTE_PROVIDES_GLEAN,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100164} fib_entry_src_attribute_t;
165
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100166
167#define FIB_ENTRY_SRC_ATTRIBUTES { \
168 [FIB_ENTRY_SRC_ATTRIBUTE_ADDED] = "added", \
Neale Ranns2303cb12018-02-21 04:57:17 -0800169 [FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING] = "contributing", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100170 [FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE] = "active", \
Neale Ranns9db6ada2019-11-08 12:42:31 +0000171 [FIB_ENTRY_SRC_ATTRIBUTE_STALE] = "stale", \
Neale Ranns89541992017-04-06 04:41:02 -0700172 [FIB_ENTRY_SRC_ATTRIBUTE_INHERITED] = "inherited", \
Matthew Smith9e5694b2023-09-26 13:08:26 +0000173 [FIB_ENTRY_SRC_ATTRIBUTE_PROVIDES_GLEAN] = "provides-glean", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100174}
175
Neale Ranns89541992017-04-06 04:41:02 -0700176#define FOR_EACH_FIB_SRC_ATTRIBUTE(_item) \
177 for (_item = FIB_ENTRY_SRC_ATTRIBUTE_FIRST; \
Neale Ranns2303cb12018-02-21 04:57:17 -0800178 _item <= FIB_ENTRY_SRC_ATTRIBUTE_LAST; \
Neale Ranns89541992017-04-06 04:41:02 -0700179 _item++)
180
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100181typedef enum fib_entry_src_flag_t_ {
182 FIB_ENTRY_SRC_FLAG_NONE = 0,
183 FIB_ENTRY_SRC_FLAG_ADDED = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ADDED),
Neale Ranns2303cb12018-02-21 04:57:17 -0800184 FIB_ENTRY_SRC_FLAG_CONTRIBUTING = (1 << FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100185 FIB_ENTRY_SRC_FLAG_ACTIVE = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE),
Neale Ranns9db6ada2019-11-08 12:42:31 +0000186 FIB_ENTRY_SRC_FLAG_STALE = (1 << FIB_ENTRY_SRC_ATTRIBUTE_STALE),
Neale Ranns89541992017-04-06 04:41:02 -0700187 FIB_ENTRY_SRC_FLAG_INHERITED = (1 << FIB_ENTRY_SRC_ATTRIBUTE_INHERITED),
Matthew Smith9e5694b2023-09-26 13:08:26 +0000188 FIB_ENTRY_SRC_FLAG_PROVIDES_GLEAN = (1 << FIB_ENTRY_SRC_ATTRIBUTE_PROVIDES_GLEAN),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100189} __attribute__ ((packed)) fib_entry_src_flag_t;
190
Neale Ranns710071b2018-09-24 12:36:26 +0000191extern u8 * format_fib_entry_src_flags(u8 *s, va_list *args);
192
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100193/*
194 * Keep the size of the flags field to 2 bytes, so it
195 * can be placed next to the 2 bytes reference count
196 */
Damjan Marioncf478942016-11-07 14:57:50 +0100197STATIC_ASSERT (sizeof(fib_entry_src_flag_t) <= 2,
198 "FIB entry flags field size too big");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100199
200/**
201 * Information related to the source of a FIB entry
202 */
203typedef struct fib_entry_src_t_ {
204 /**
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100205 * A vector of path extensions
206 */
Neale Ranns81424992017-05-18 03:03:22 -0700207 fib_path_ext_list_t fes_path_exts;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100208
209 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100210 * The path-list created by the source
211 */
212 fib_node_index_t fes_pl;
Neale Ranns2303cb12018-02-21 04:57:17 -0800213
214 /**
215 * Flags the source contributes to the entry
216 */
217 fib_entry_flag_t fes_entry_flags;
218
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100219 /**
220 * Which source this info block is for
221 */
222 fib_source_t fes_src;
Neale Ranns2303cb12018-02-21 04:57:17 -0800223
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100224 /**
225 * Flags on the source
226 */
227 fib_entry_src_flag_t fes_flags;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100228
229 /**
230 * 1 bytes ref count. This is not the number of users of the Entry
231 * (which is itself not large, due to path-list sharing), but the number
232 * of times a given source has been added. Which is even fewer
233 */
234 u8 fes_ref_count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100235
236 /**
237 * Source specific info
238 */
239 union {
240 struct {
241 /**
242 * the index of the FIB entry that is the covering entry
243 */
244 fib_node_index_t fesr_cover;
245 /**
246 * This source's index in the cover's list
247 */
248 u32 fesr_sibling;
249 } rr;
250 struct {
251 /**
252 * the index of the FIB entry that is the covering entry
253 */
Neale Ranns2303cb12018-02-21 04:57:17 -0800254 fib_node_index_t fesi_cover;
255 /**
256 * This source's index in the cover's list
257 */
258 u32 fesi_sibling;
259 /**
260 * DPO type to interpose. The dpo type needs to have registered
261 * it's 'contribute interpose' callback function.
262 */
263 dpo_id_t fesi_dpo;
264 } interpose;
265 struct {
266 /**
267 * the index of the FIB entry that is the covering entry
268 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100269 fib_node_index_t fesa_cover;
270 /**
271 * This source's index in the cover's list
272 */
273 u32 fesa_sibling;
274 } adj;
275 struct {
276 /**
277 * the index of the FIB entry that is the covering entry
278 */
279 fib_node_index_t fesi_cover;
280 /**
281 * This source's index in the cover's list
282 */
283 u32 fesi_sibling;
284 } interface;
285 struct {
286 /**
287 * This MPLS local label associated with the prefix.
288 */
289 mpls_label_t fesm_label;
290
291 /**
292 * the indicies of the LFIB entries created
293 */
294 fib_node_index_t fesm_lfes[2];
295 } mpls;
296 struct {
297 /**
298 * The source FIB index.
299 */
300 fib_node_index_t fesl_fib_index;
301 } lisp;
Neale Ranns2303cb12018-02-21 04:57:17 -0800302 } u;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100303} fib_entry_src_t;
304
305/**
306 * An entry in a FIB table.
307 *
308 * This entry represents a route added to the FIB that is stored
309 * in one of the FIB tables.
310 */
311typedef struct fib_entry_t_ {
312 /**
313 * Base class. The entry's node representation in the graph.
314 */
315 fib_node_t fe_node;
316 /**
Neale Rannsad422ed2016-11-02 14:20:04 +0000317 * The prefix of the route. this is const just to be sure.
318 * It is the entry's key/identity and so should never change.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100319 */
Neale Rannsad422ed2016-11-02 14:20:04 +0000320 const fib_prefix_t fe_prefix;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100321 /**
322 * The index of the FIB table this entry is in
323 */
324 u32 fe_fib_index;
325 /**
326 * The load-balance used for forwarding.
327 *
328 * We don't share the EOS and non-EOS even in case when they could be
329 * because:
330 * - complexity & reliability v. memory
331 * determining the conditions where sharing is possible is non-trivial.
332 * - separate LBs means we can get the EOS bit right in the MPLS label DPO
333 * and so save a few clock cycles in the DP imposition node since we can
334 * paint the header straight on without the need to check the packet
335 * type to derive the EOS bit value.
336 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800337 dpo_id_t fe_lb;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100338 /**
Neale Rannsa4e77662017-12-04 20:00:30 +0000339 * Vector of source infos.
340 * Most entries will only have 1 source. So we optimise for memory usage,
341 * which is preferable since we have many entries.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100342 */
Neale Rannsa4e77662017-12-04 20:00:30 +0000343 fib_entry_src_t *fe_srcs;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100344 /**
345 * the path-list for which this entry is a child. This is also the path-list
346 * that is contributing forwarding for this entry.
347 */
348 fib_node_index_t fe_parent;
349 /**
350 * index of this entry in the parent's child list.
351 * This is set when this entry is added as a child, but can also
352 * be changed by the parent as it manages its list.
353 */
354 u32 fe_sibling;
Neale Rannsad422ed2016-11-02 14:20:04 +0000355
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100356 /**
Neale Ranns1f50bf82019-07-16 15:28:52 +0000357 * A vector of delegate indices.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100358 */
Neale Ranns1f50bf82019-07-16 15:28:52 +0000359 index_t *fe_delegates;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100360} fib_entry_t;
361
362#define FOR_EACH_FIB_ENTRY_FLAG(_item) \
363 for (_item = FIB_ENTRY_FLAG_FIRST; _item < FIB_ENTRY_FLAG_MAX; _item++)
364
365#define FIB_ENTRY_FORMAT_BRIEF (0x0)
366#define FIB_ENTRY_FORMAT_DETAIL (0x1)
367#define FIB_ENTRY_FORMAT_DETAIL2 (0x2)
368
369extern u8 *format_fib_entry (u8 * s, va_list * args);
Neale Ranns15002542017-09-10 04:39:11 -0700370extern u8 *format_fib_source (u8 * s, va_list * args);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100371
372extern fib_node_index_t fib_entry_create_special(u32 fib_index,
373 const fib_prefix_t *prefix,
374 fib_source_t source,
375 fib_entry_flag_t flags,
376 const dpo_id_t *dpo);
377
378extern fib_node_index_t fib_entry_create (u32 fib_index,
379 const fib_prefix_t *prefix,
380 fib_source_t source,
381 fib_entry_flag_t flags,
382 const fib_route_path_t *paths);
383extern void fib_entry_update (fib_node_index_t fib_entry_index,
384 fib_source_t source,
385 fib_entry_flag_t flags,
386 const fib_route_path_t *paths);
387
388extern void fib_entry_path_add(fib_node_index_t fib_entry_index,
389 fib_source_t source,
390 fib_entry_flag_t flags,
Neale Ranns097fa662018-05-01 05:17:55 -0700391 const fib_route_path_t *rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100392extern void fib_entry_special_add(fib_node_index_t fib_entry_index,
393 fib_source_t source,
394 fib_entry_flag_t flags,
395 const dpo_id_t *dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100396extern void fib_entry_special_update(fib_node_index_t fib_entry_index,
397 fib_source_t source,
398 fib_entry_flag_t flags,
399 const dpo_id_t *dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100400extern fib_entry_src_flag_t fib_entry_special_remove(fib_node_index_t fib_entry_index,
401 fib_source_t source);
402
403extern fib_entry_src_flag_t fib_entry_path_remove(fib_node_index_t fib_entry_index,
404 fib_source_t source,
Neale Ranns097fa662018-05-01 05:17:55 -0700405 const fib_route_path_t *rpaths);
Neale Ranns89541992017-04-06 04:41:02 -0700406
407extern void fib_entry_inherit(fib_node_index_t cover,
408 fib_node_index_t covered);
409
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100410extern fib_entry_src_flag_t fib_entry_delete(fib_node_index_t fib_entry_index,
411 fib_source_t source);
412
Neale Ranns2303cb12018-02-21 04:57:17 -0800413extern void fib_entry_recalculate_forwarding(
414 fib_node_index_t fib_entry_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100415extern void fib_entry_contribute_urpf(fib_node_index_t path_index,
416 index_t urpf);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100417extern void fib_entry_contribute_forwarding(
418 fib_node_index_t fib_entry_index,
419 fib_forward_chain_type_t type,
420 dpo_id_t *dpo);
421extern const dpo_id_t * fib_entry_contribute_ip_forwarding(
422 fib_node_index_t fib_entry_index);
423extern adj_index_t fib_entry_get_adj_for_source(
424 fib_node_index_t fib_entry_index,
425 fib_source_t source);
426extern const int fib_entry_get_dpo_for_source (
427 fib_node_index_t fib_entry_index,
428 fib_source_t source,
429 dpo_id_t *dpo);
Damjan Marion9260b882022-10-04 18:08:51 +0200430extern fib_node_index_t fib_entry_get_path_list_for_source (
431 fib_node_index_t fib_entry_index,
432 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100433
434extern adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index);
435
436extern int fib_entry_cmp_for_sort(void *i1, void *i2);
437
438extern void fib_entry_cover_changed(fib_node_index_t fib_entry);
439extern void fib_entry_cover_updated(fib_node_index_t fib_entry);
440extern int fib_entry_recursive_loop_detect(fib_node_index_t entry_index,
441 fib_node_index_t **entry_indicies);
442
443extern void fib_entry_lock(fib_node_index_t fib_entry_index);
444extern void fib_entry_unlock(fib_node_index_t fib_entry_index);
445
446extern u32 fib_entry_child_add(fib_node_index_t fib_entry_index,
447 fib_node_type_t type,
448 fib_node_index_t child_index);
449extern void fib_entry_child_remove(fib_node_index_t fib_entry_index,
450 u32 sibling_index);
451extern u32 fib_entry_get_resolving_interface(fib_node_index_t fib_entry_index);
Neale Rannscc4f7e12020-10-26 10:44:54 +0000452extern u32 fib_entry_get_any_resolving_interface(fib_node_index_t fib_entry_index);
Neale Rannsdf089a82016-10-02 16:39:06 +0100453extern u32 fib_entry_get_resolving_interface_for_source(
454 fib_node_index_t fib_entry_index,
455 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100456
Neale Ranns097fa662018-05-01 05:17:55 -0700457extern fib_route_path_t* fib_entry_encode(fib_node_index_t fib_entry_index);
458extern const fib_prefix_t* fib_entry_get_prefix(fib_node_index_t fib_entry_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100459extern u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index);
460extern void fib_entry_set_source_data(fib_node_index_t fib_entry_index,
461 fib_source_t source,
462 const void *data);
463extern const void* fib_entry_get_source_data(fib_node_index_t fib_entry_index,
464 fib_source_t source);
465
466extern fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index);
Neale Rannsdf089a82016-10-02 16:39:06 +0100467extern fib_entry_flag_t fib_entry_get_flags_for_source(
468 fib_node_index_t fib_entry_index,
469 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100470extern fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index);
471extern int fib_entry_is_sourced(fib_node_index_t fib_entry_index,
472 fib_source_t source);
473
474extern fib_node_index_t fib_entry_get_path_list(fib_node_index_t fib_entry_index);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700475extern int fib_entry_is_resolved(fib_node_index_t fib_entry_index);
Neale Ranns56f949b2018-04-25 01:41:24 -0700476extern int fib_entry_is_host(fib_node_index_t fib_entry_index);
Neale Ranns9db6ada2019-11-08 12:42:31 +0000477extern int fib_entry_is_marked(fib_node_index_t fib_entry_index, fib_source_t source);
478extern void fib_entry_mark(fib_node_index_t fib_entry_index, fib_source_t source);
Neale Ranns227038a2017-04-21 01:07:59 -0700479extern void fib_entry_set_flow_hash_config(fib_node_index_t fib_entry_index,
480 flow_hash_config_t hash_config);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100481
482extern void fib_entry_module_init(void);
483
Neale Ranns008dbe12018-09-07 09:32:36 -0700484extern u32 fib_entry_get_stats_index(fib_node_index_t fib_entry_index);
485
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100486/*
487 * unsafe... beware the raw pointer.
488 */
489extern fib_node_index_t fib_entry_get_index(const fib_entry_t * fib_entry);
490extern fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index);
491
492/*
493 * for testing purposes.
494 */
495extern u32 fib_entry_pool_size(void);
496
497#endif