blob: 3fde97add327767306305d54f1b855e8688475ff [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 Rannsad422ed2016-11-02 14:20:04 +000020#include <vnet/fib/fib_entry_delegate.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.
27 * The sources are defined here the thier relative priority order.
28 * The lower the value the higher the priority
29 */
30typedef enum fib_source_t_ {
31 /**
32 * Marker. Add new values after this one.
33 */
34 FIB_SOURCE_FIRST,
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 */
40 FIB_SOURCE_SPECIAL = FIB_SOURCE_FIRST,
41 /**
42 * Classify. A route that links directly to a classify adj
43 */
44 FIB_SOURCE_CLASSIFY,
45 /**
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -070046 * A route the is being 'proxied' on behalf of another device
47 */
48 FIB_SOURCE_PROXY,
49 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010050 * 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 */
54 FIB_SOURCE_INTERFACE,
55 /**
Pablo Camarillo5d73eec2017-04-24 17:51:56 +020056 * SRv6 and SR-MPLS
57 */
58 FIB_SOURCE_SR,
59 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010060 * A high priority source a plugin can use
61 */
62 FIB_SOURCE_PLUGIN_HI,
63 /**
Neale Rannsd792d9c2017-10-21 10:53:20 -070064 * From the BIER subsystem
65 */
66 FIB_SOURCE_BIER,
67 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010068 * From the control plane API
69 */
70 FIB_SOURCE_API,
71 /**
72 * From the CLI.
73 */
74 FIB_SOURCE_CLI,
75 /**
76 * LISP
77 */
78 FIB_SOURCE_LISP,
79 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010080 * IPv[46] Mapping
81 */
82 FIB_SOURCE_MAP,
83 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010084 * DHCP
85 */
86 FIB_SOURCE_DHCP,
87 /**
Neale Ranns3f844d02017-02-18 00:03:54 -080088 * IPv6 Proxy ND
89 */
90 FIB_SOURCE_IP6_ND_PROXY,
91 /**
Neale Ranns53da2212018-02-24 02:11:19 -080092 * IPv6 ND (seen in the link-local tables)
93 */
94 FIB_SOURCE_IP6_ND,
95 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010096 * Adjacency source.
97 * routes created as a result of ARP/ND entries. This is lower priority
98 * then the API/CLI. This is on purpose. trust me.
99 */
100 FIB_SOURCE_ADJ,
101 /**
102 * MPLS label. The prefix has been assigned a local label. This source
103 * never provides forwarding information, instead it acts as a place-holder
104 * so the association of label to prefix can be maintained
105 */
106 FIB_SOURCE_MPLS,
107 /**
108 * Attached Export source.
109 * routes created as a result of attahced export. routes thus sourced
110 * will be present in the export tables
111 */
112 FIB_SOURCE_AE,
113 /**
114 * Recursive resolution source.
Neale Ranns3ee44042016-10-03 13:05:48 +0100115 * Used to install an entry that is the resolution traget of another.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100116 */
117 FIB_SOURCE_RR,
118 /**
Neale Ranns3ee44042016-10-03 13:05:48 +0100119 * uRPF bypass/exemption.
120 * Used to install an entry that is exempt from the loose uRPF check
121 */
122 FIB_SOURCE_URPF_EXEMPT,
123 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100124 * The default route source.
125 * The default route is always added to the FIB table (like the
126 * special sources) but we need to be able to over-ride it with
127 * 'ip route' sources when provided
128 */
129 FIB_SOURCE_DEFAULT_ROUTE,
130 /**
131 * Marker. add new entries before this one.
132 */
133 FIB_SOURCE_LAST = FIB_SOURCE_DEFAULT_ROUTE,
134} __attribute__ ((packed)) fib_source_t;
135
Damjan Marioncf478942016-11-07 14:57:50 +0100136STATIC_ASSERT (sizeof(fib_source_t) == 1,
137 "FIB too many sources");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100138
139/**
140 * The maximum number of sources
141 */
142#define FIB_SOURCE_MAX (FIB_SOURCE_LAST+1)
143
144#define FIB_SOURCES { \
145 [FIB_SOURCE_SPECIAL] = "special", \
146 [FIB_SOURCE_INTERFACE] = "interface", \
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -0700147 [FIB_SOURCE_PROXY] = "proxy", \
Neale Rannsd792d9c2017-10-21 10:53:20 -0700148 [FIB_SOURCE_BIER] = "BIER", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100149 [FIB_SOURCE_API] = "API", \
150 [FIB_SOURCE_CLI] = "CLI", \
151 [FIB_SOURCE_ADJ] = "adjacency", \
152 [FIB_SOURCE_MAP] = "MAP", \
153 [FIB_SOURCE_SR] = "SR", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100154 [FIB_SOURCE_LISP] = "LISP", \
155 [FIB_SOURCE_CLASSIFY] = "classify", \
156 [FIB_SOURCE_DHCP] = "DHCP", \
Neale Ranns3f844d02017-02-18 00:03:54 -0800157 [FIB_SOURCE_IP6_ND_PROXY] = "IPv6-proxy-nd", \
Neale Ranns53da2212018-02-24 02:11:19 -0800158 [FIB_SOURCE_IP6_ND] = "IPv6-nd", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100159 [FIB_SOURCE_RR] = "recursive-resolution", \
160 [FIB_SOURCE_AE] = "attached_export", \
161 [FIB_SOURCE_MPLS] = "mpls", \
Neale Ranns3ee44042016-10-03 13:05:48 +0100162 [FIB_SOURCE_URPF_EXEMPT] = "urpf-exempt", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100163 [FIB_SOURCE_DEFAULT_ROUTE] = "default-route", \
164}
165
166#define FOR_EACH_FIB_SOURCE(_item) \
167 for (_item = FIB_SOURCE_FIRST; _item < FIB_SOURCE_MAX; _item++)
168
169/**
170 * The different sources that can create a route.
171 * The sources are defined here the thier relative priority order.
172 * The lower the value the higher the priority
173 */
174typedef enum fib_entry_attribute_t_ {
175 /**
176 * Marker. Add new values after this one.
177 */
178 FIB_ENTRY_ATTRIBUTE_FIRST,
179 /**
180 * Connected. The prefix is configured on an interface.
181 */
182 FIB_ENTRY_ATTRIBUTE_CONNECTED = FIB_ENTRY_ATTRIBUTE_FIRST,
183 /**
184 * Attached. The prefix is attached to an interface.
185 */
186 FIB_ENTRY_ATTRIBUTE_ATTACHED,
187 /**
188 * The route is an explicit drop.
189 */
190 FIB_ENTRY_ATTRIBUTE_DROP,
191 /**
192 * The route is exclusive. The client creating the route is
193 * providing an exclusive adjacency.
194 */
195 FIB_ENTRY_ATTRIBUTE_EXCLUSIVE,
196 /**
197 * The route is attached cross tables and thus imports covered
198 * prefixes from the other table.
199 */
200 FIB_ENTRY_ATTRIBUTE_IMPORT,
201 /**
202 * The prefix/address is local to this device
203 */
204 FIB_ENTRY_ATTRIBUTE_LOCAL,
205 /**
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800206 * The prefix/address is a multicast prefix.
207 * this aplies only to MPLS. IP multicast is handled by mfib
208 */
209 FIB_ENTRY_ATTRIBUTE_MULTICAST,
210 /**
Shwetha Bhandari78372a92017-01-18 12:43:54 +0530211 * The prefix/address exempted from loose uRPF check
212 * To be used with caution
213 */
214 FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT,
215 /**
Neale Ranns53da2212018-02-24 02:11:19 -0800216 * The prefix/address exempted from attached export
217 */
218 FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT,
219 /**
Neale Ranns89541992017-04-06 04:41:02 -0700220 * This FIB entry imposes its source information on all prefixes
221 * that is covers
222 */
223 FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT,
224 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100225 * Marker. add new entries before this one.
226 */
Neale Ranns89541992017-04-06 04:41:02 -0700227 FIB_ENTRY_ATTRIBUTE_LAST = FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100228} fib_entry_attribute_t;
229
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100230#define FIB_ENTRY_ATTRIBUTES { \
231 [FIB_ENTRY_ATTRIBUTE_CONNECTED] = "connected", \
232 [FIB_ENTRY_ATTRIBUTE_ATTACHED] = "attached", \
233 [FIB_ENTRY_ATTRIBUTE_IMPORT] = "import", \
234 [FIB_ENTRY_ATTRIBUTE_DROP] = "drop", \
235 [FIB_ENTRY_ATTRIBUTE_EXCLUSIVE] = "exclusive", \
236 [FIB_ENTRY_ATTRIBUTE_LOCAL] = "local", \
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800237 [FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT] = "uRPF-exempt", \
238 [FIB_ENTRY_ATTRIBUTE_MULTICAST] = "multicast", \
Neale Ranns53da2212018-02-24 02:11:19 -0800239 [FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT] = "no-attached-export", \
Neale Ranns89541992017-04-06 04:41:02 -0700240 [FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT] = "covered-inherit", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100241}
242
243#define FOR_EACH_FIB_ATTRIBUTE(_item) \
244 for (_item = FIB_ENTRY_ATTRIBUTE_FIRST; \
Neale Ranns808c5b22017-08-02 05:15:07 -0700245 _item <= FIB_ENTRY_ATTRIBUTE_LAST; \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100246 _item++)
247
248typedef enum fib_entry_flag_t_ {
249 FIB_ENTRY_FLAG_NONE = 0,
250 FIB_ENTRY_FLAG_CONNECTED = (1 << FIB_ENTRY_ATTRIBUTE_CONNECTED),
251 FIB_ENTRY_FLAG_ATTACHED = (1 << FIB_ENTRY_ATTRIBUTE_ATTACHED),
252 FIB_ENTRY_FLAG_DROP = (1 << FIB_ENTRY_ATTRIBUTE_DROP),
253 FIB_ENTRY_FLAG_EXCLUSIVE = (1 << FIB_ENTRY_ATTRIBUTE_EXCLUSIVE),
254 FIB_ENTRY_FLAG_LOCAL = (1 << FIB_ENTRY_ATTRIBUTE_LOCAL),
255 FIB_ENTRY_FLAG_IMPORT = (1 << FIB_ENTRY_ATTRIBUTE_IMPORT),
Neale Ranns53da2212018-02-24 02:11:19 -0800256 FIB_ENTRY_FLAG_NO_ATTACHED_EXPORT = (1 << FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT),
Shwetha Bhandari78372a92017-01-18 12:43:54 +0530257 FIB_ENTRY_FLAG_LOOSE_URPF_EXEMPT = (1 << FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800258 FIB_ENTRY_FLAG_MULTICAST = (1 << FIB_ENTRY_ATTRIBUTE_MULTICAST),
Neale Ranns89541992017-04-06 04:41:02 -0700259 FIB_ENTRY_FLAG_COVERED_INHERIT = (1 << FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT),
Neale Ranns32e1c012016-11-22 17:07:28 +0000260} __attribute__((packed)) fib_entry_flag_t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100261
262/**
263 * Flags for the source data
264 */
265typedef enum fib_entry_src_attribute_t_ {
266 /**
267 * Marker. Add new values after this one.
268 */
269 FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
270 /**
271 * the source has been added to the entry
272 */
273 FIB_ENTRY_SRC_ATTRIBUTE_ADDED = FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
274 /**
275 * the source is active/best
276 */
277 FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE,
278 /**
Neale Ranns89541992017-04-06 04:41:02 -0700279 * the source is inherited from its cover
280 */
281 FIB_ENTRY_SRC_ATTRIBUTE_INHERITED,
282 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100283 * Marker. add new entries before this one.
284 */
Neale Ranns89541992017-04-06 04:41:02 -0700285 FIB_ENTRY_SRC_ATTRIBUTE_LAST = FIB_ENTRY_SRC_ATTRIBUTE_INHERITED,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100286} fib_entry_src_attribute_t;
287
288#define FIB_ENTRY_SRC_ATTRIBUTE_MAX (FIB_ENTRY_SRC_ATTRIBUTE_LAST+1)
289
290#define FIB_ENTRY_SRC_ATTRIBUTES { \
291 [FIB_ENTRY_SRC_ATTRIBUTE_ADDED] = "added", \
292 [FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE] = "active", \
Neale Ranns89541992017-04-06 04:41:02 -0700293 [FIB_ENTRY_SRC_ATTRIBUTE_INHERITED] = "inherited", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100294}
295
Neale Ranns89541992017-04-06 04:41:02 -0700296#define FOR_EACH_FIB_SRC_ATTRIBUTE(_item) \
297 for (_item = FIB_ENTRY_SRC_ATTRIBUTE_FIRST; \
298 _item < FIB_ENTRY_SRC_ATTRIBUTE_MAX; \
299 _item++)
300
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100301typedef enum fib_entry_src_flag_t_ {
302 FIB_ENTRY_SRC_FLAG_NONE = 0,
303 FIB_ENTRY_SRC_FLAG_ADDED = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ADDED),
304 FIB_ENTRY_SRC_FLAG_ACTIVE = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE),
Neale Ranns89541992017-04-06 04:41:02 -0700305 FIB_ENTRY_SRC_FLAG_INHERITED = (1 << FIB_ENTRY_SRC_ATTRIBUTE_INHERITED),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100306} __attribute__ ((packed)) fib_entry_src_flag_t;
307
308/*
309 * Keep the size of the flags field to 2 bytes, so it
310 * can be placed next to the 2 bytes reference count
311 */
Damjan Marioncf478942016-11-07 14:57:50 +0100312STATIC_ASSERT (sizeof(fib_entry_src_flag_t) <= 2,
313 "FIB entry flags field size too big");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100314
315/**
316 * Information related to the source of a FIB entry
317 */
318typedef struct fib_entry_src_t_ {
319 /**
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100320 * A vector of path extensions
321 */
Neale Ranns81424992017-05-18 03:03:22 -0700322 fib_path_ext_list_t fes_path_exts;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100323
324 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100325 * The path-list created by the source
326 */
327 fib_node_index_t fes_pl;
328 /**
329 * Which source this info block is for
330 */
331 fib_source_t fes_src;
332 /**
333 * Flags on the source
334 */
335 fib_entry_src_flag_t fes_flags;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100336
337 /**
338 * 1 bytes ref count. This is not the number of users of the Entry
339 * (which is itself not large, due to path-list sharing), but the number
340 * of times a given source has been added. Which is even fewer
341 */
342 u8 fes_ref_count;
343
344 /**
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100345 * Flags the source contributes to the entry
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100346 */
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100347 fib_entry_flag_t fes_entry_flags;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100348
349 /**
350 * Source specific info
351 */
352 union {
353 struct {
354 /**
355 * the index of the FIB entry that is the covering entry
356 */
357 fib_node_index_t fesr_cover;
358 /**
359 * This source's index in the cover's list
360 */
361 u32 fesr_sibling;
362 } rr;
363 struct {
364 /**
365 * the index of the FIB entry that is the covering entry
366 */
367 fib_node_index_t fesa_cover;
368 /**
369 * This source's index in the cover's list
370 */
371 u32 fesa_sibling;
372 } adj;
373 struct {
374 /**
375 * the index of the FIB entry that is the covering entry
376 */
377 fib_node_index_t fesi_cover;
378 /**
379 * This source's index in the cover's list
380 */
381 u32 fesi_sibling;
382 } interface;
383 struct {
384 /**
385 * This MPLS local label associated with the prefix.
386 */
387 mpls_label_t fesm_label;
388
389 /**
390 * the indicies of the LFIB entries created
391 */
392 fib_node_index_t fesm_lfes[2];
393 } mpls;
394 struct {
395 /**
396 * The source FIB index.
397 */
398 fib_node_index_t fesl_fib_index;
399 } lisp;
400 };
401} fib_entry_src_t;
402
403/**
404 * An entry in a FIB table.
405 *
406 * This entry represents a route added to the FIB that is stored
407 * in one of the FIB tables.
408 */
409typedef struct fib_entry_t_ {
410 /**
411 * Base class. The entry's node representation in the graph.
412 */
413 fib_node_t fe_node;
414 /**
Neale Rannsad422ed2016-11-02 14:20:04 +0000415 * The prefix of the route. this is const just to be sure.
416 * It is the entry's key/identity and so should never change.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100417 */
Neale Rannsad422ed2016-11-02 14:20:04 +0000418 const fib_prefix_t fe_prefix;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100419 /**
420 * The index of the FIB table this entry is in
421 */
422 u32 fe_fib_index;
423 /**
424 * The load-balance used for forwarding.
425 *
426 * We don't share the EOS and non-EOS even in case when they could be
427 * because:
428 * - complexity & reliability v. memory
429 * determining the conditions where sharing is possible is non-trivial.
430 * - separate LBs means we can get the EOS bit right in the MPLS label DPO
431 * and so save a few clock cycles in the DP imposition node since we can
432 * paint the header straight on without the need to check the packet
433 * type to derive the EOS bit value.
434 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800435 dpo_id_t fe_lb;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100436 /**
Neale Rannsa4e77662017-12-04 20:00:30 +0000437 * Vector of source infos.
438 * Most entries will only have 1 source. So we optimise for memory usage,
439 * which is preferable since we have many entries.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100440 */
Neale Rannsa4e77662017-12-04 20:00:30 +0000441 fib_entry_src_t *fe_srcs;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100442 /**
443 * the path-list for which this entry is a child. This is also the path-list
444 * that is contributing forwarding for this entry.
445 */
446 fib_node_index_t fe_parent;
447 /**
448 * index of this entry in the parent's child list.
449 * This is set when this entry is added as a child, but can also
450 * be changed by the parent as it manages its list.
451 */
452 u32 fe_sibling;
Neale Rannsad422ed2016-11-02 14:20:04 +0000453
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100454 /**
Neale Rannsad422ed2016-11-02 14:20:04 +0000455 * A vector of delegates.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100456 */
Neale Rannsad422ed2016-11-02 14:20:04 +0000457 fib_entry_delegate_t *fe_delegates;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100458} fib_entry_t;
459
460#define FOR_EACH_FIB_ENTRY_FLAG(_item) \
461 for (_item = FIB_ENTRY_FLAG_FIRST; _item < FIB_ENTRY_FLAG_MAX; _item++)
462
463#define FIB_ENTRY_FORMAT_BRIEF (0x0)
464#define FIB_ENTRY_FORMAT_DETAIL (0x1)
465#define FIB_ENTRY_FORMAT_DETAIL2 (0x2)
466
467extern u8 *format_fib_entry (u8 * s, va_list * args);
Neale Ranns15002542017-09-10 04:39:11 -0700468extern u8 *format_fib_source (u8 * s, va_list * args);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100469
470extern fib_node_index_t fib_entry_create_special(u32 fib_index,
471 const fib_prefix_t *prefix,
472 fib_source_t source,
473 fib_entry_flag_t flags,
474 const dpo_id_t *dpo);
475
476extern fib_node_index_t fib_entry_create (u32 fib_index,
477 const fib_prefix_t *prefix,
478 fib_source_t source,
479 fib_entry_flag_t flags,
480 const fib_route_path_t *paths);
481extern void fib_entry_update (fib_node_index_t fib_entry_index,
482 fib_source_t source,
483 fib_entry_flag_t flags,
484 const fib_route_path_t *paths);
485
486extern void fib_entry_path_add(fib_node_index_t fib_entry_index,
487 fib_source_t source,
488 fib_entry_flag_t flags,
489 const fib_route_path_t *rpath);
490extern void fib_entry_special_add(fib_node_index_t fib_entry_index,
491 fib_source_t source,
492 fib_entry_flag_t flags,
493 const dpo_id_t *dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100494extern void fib_entry_special_update(fib_node_index_t fib_entry_index,
495 fib_source_t source,
496 fib_entry_flag_t flags,
497 const dpo_id_t *dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100498extern fib_entry_src_flag_t fib_entry_special_remove(fib_node_index_t fib_entry_index,
499 fib_source_t source);
500
501extern fib_entry_src_flag_t fib_entry_path_remove(fib_node_index_t fib_entry_index,
502 fib_source_t source,
503 const fib_route_path_t *rpath);
Neale Ranns89541992017-04-06 04:41:02 -0700504
505extern void fib_entry_inherit(fib_node_index_t cover,
506 fib_node_index_t covered);
507
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100508extern fib_entry_src_flag_t fib_entry_delete(fib_node_index_t fib_entry_index,
509 fib_source_t source);
510
Neale Ranns3ee44042016-10-03 13:05:48 +0100511extern void fib_entry_contribute_urpf(fib_node_index_t path_index,
512 index_t urpf);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100513extern void fib_entry_contribute_forwarding(
514 fib_node_index_t fib_entry_index,
515 fib_forward_chain_type_t type,
516 dpo_id_t *dpo);
517extern const dpo_id_t * fib_entry_contribute_ip_forwarding(
518 fib_node_index_t fib_entry_index);
519extern adj_index_t fib_entry_get_adj_for_source(
520 fib_node_index_t fib_entry_index,
521 fib_source_t source);
522extern const int fib_entry_get_dpo_for_source (
523 fib_node_index_t fib_entry_index,
524 fib_source_t source,
525 dpo_id_t *dpo);
526
527extern adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index);
528
529extern int fib_entry_cmp_for_sort(void *i1, void *i2);
530
531extern void fib_entry_cover_changed(fib_node_index_t fib_entry);
532extern void fib_entry_cover_updated(fib_node_index_t fib_entry);
533extern int fib_entry_recursive_loop_detect(fib_node_index_t entry_index,
534 fib_node_index_t **entry_indicies);
535
536extern void fib_entry_lock(fib_node_index_t fib_entry_index);
537extern void fib_entry_unlock(fib_node_index_t fib_entry_index);
538
539extern u32 fib_entry_child_add(fib_node_index_t fib_entry_index,
540 fib_node_type_t type,
541 fib_node_index_t child_index);
542extern void fib_entry_child_remove(fib_node_index_t fib_entry_index,
543 u32 sibling_index);
544extern u32 fib_entry_get_resolving_interface(fib_node_index_t fib_entry_index);
Neale Rannsdf089a82016-10-02 16:39:06 +0100545extern u32 fib_entry_get_resolving_interface_for_source(
546 fib_node_index_t fib_entry_index,
547 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100548
Steven01b07122016-11-02 10:40:09 -0700549extern void fib_entry_encode(fib_node_index_t fib_entry_index,
550 fib_route_path_encode_t **api_rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100551extern void fib_entry_get_prefix(fib_node_index_t fib_entry_index,
552 fib_prefix_t *pfx);
553extern u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index);
554extern void fib_entry_set_source_data(fib_node_index_t fib_entry_index,
555 fib_source_t source,
556 const void *data);
557extern const void* fib_entry_get_source_data(fib_node_index_t fib_entry_index,
558 fib_source_t source);
559
560extern fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index);
Neale Rannsdf089a82016-10-02 16:39:06 +0100561extern fib_entry_flag_t fib_entry_get_flags_for_source(
562 fib_node_index_t fib_entry_index,
563 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100564extern fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index);
565extern int fib_entry_is_sourced(fib_node_index_t fib_entry_index,
566 fib_source_t source);
567
568extern fib_node_index_t fib_entry_get_path_list(fib_node_index_t fib_entry_index);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700569extern int fib_entry_is_resolved(fib_node_index_t fib_entry_index);
Neale Ranns227038a2017-04-21 01:07:59 -0700570extern void fib_entry_set_flow_hash_config(fib_node_index_t fib_entry_index,
571 flow_hash_config_t hash_config);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100572
573extern void fib_entry_module_init(void);
574
575/*
576 * unsafe... beware the raw pointer.
577 */
578extern fib_node_index_t fib_entry_get_index(const fib_entry_t * fib_entry);
579extern fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index);
580
581/*
582 * for testing purposes.
583 */
584extern u32 fib_entry_pool_size(void);
585
586#endif