blob: 70c662171568996749e2bdc8945883a3715b0382 [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>
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 the thier relative priority order.
27 * The lower the value the higher the priority
28 */
29typedef enum fib_source_t_ {
30 /**
31 * Marker. Add new values after this one.
32 */
33 FIB_SOURCE_FIRST,
34 /**
35 * Special sources. These are for entries that are added to all
36 * FIBs by default, and should never be over-ridden (hence they
37 * are the highest priority)
38 */
39 FIB_SOURCE_SPECIAL = FIB_SOURCE_FIRST,
40 /**
41 * Classify. A route that links directly to a classify adj
42 */
43 FIB_SOURCE_CLASSIFY,
44 /**
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -070045 * A route the is being 'proxied' on behalf of another device
46 */
47 FIB_SOURCE_PROXY,
48 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010049 * Route added as a result of interface configuration.
50 * this will also come from the API/CLI, but the distinction is
51 * that is from confiiguration on an interface, not a 'ip route' command
52 */
53 FIB_SOURCE_INTERFACE,
54 /**
Pablo Camarillo5d73eec2017-04-24 17:51:56 +020055 * SRv6 and SR-MPLS
56 */
57 FIB_SOURCE_SR,
58 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010059 * A high priority source a plugin can use
60 */
61 FIB_SOURCE_PLUGIN_HI,
62 /**
Neale Rannsd792d9c2017-10-21 10:53:20 -070063 * From the BIER subsystem
64 */
65 FIB_SOURCE_BIER,
66 /**
Neale Ranns61502112018-08-22 00:21:14 -070067 * From 6RD.
68 */
69 FIB_SOURCE_6RD,
70 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010071 * From the control plane API
72 */
73 FIB_SOURCE_API,
74 /**
75 * From the CLI.
76 */
77 FIB_SOURCE_CLI,
78 /**
Neale Ranns6df19032018-04-04 05:00:48 -070079 * A low (below routing) priority source a plugin can use
80 */
81 FIB_SOURCE_PLUGIN_LOW,
82 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010083 * LISP
84 */
85 FIB_SOURCE_LISP,
86 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010087 * IPv[46] Mapping
88 */
89 FIB_SOURCE_MAP,
90 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010091 * DHCP
92 */
93 FIB_SOURCE_DHCP,
94 /**
Neale Ranns3f844d02017-02-18 00:03:54 -080095 * IPv6 Proxy ND
96 */
97 FIB_SOURCE_IP6_ND_PROXY,
98 /**
Neale Ranns53da2212018-02-24 02:11:19 -080099 * IPv6 ND (seen in the link-local tables)
100 */
101 FIB_SOURCE_IP6_ND,
102 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100103 * Adjacency source.
104 * routes created as a result of ARP/ND entries. This is lower priority
105 * then the API/CLI. This is on purpose. trust me.
106 */
107 FIB_SOURCE_ADJ,
108 /**
109 * MPLS label. The prefix has been assigned a local label. This source
110 * never provides forwarding information, instead it acts as a place-holder
111 * so the association of label to prefix can be maintained
112 */
113 FIB_SOURCE_MPLS,
114 /**
115 * Attached Export source.
116 * routes created as a result of attahced export. routes thus sourced
117 * will be present in the export tables
118 */
119 FIB_SOURCE_AE,
120 /**
121 * Recursive resolution source.
Neale Ranns3ee44042016-10-03 13:05:48 +0100122 * Used to install an entry that is the resolution traget of another.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100123 */
124 FIB_SOURCE_RR,
125 /**
Neale Ranns3ee44042016-10-03 13:05:48 +0100126 * uRPF bypass/exemption.
127 * Used to install an entry that is exempt from the loose uRPF check
128 */
129 FIB_SOURCE_URPF_EXEMPT,
130 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100131 * The default route source.
132 * The default route is always added to the FIB table (like the
133 * special sources) but we need to be able to over-ride it with
134 * 'ip route' sources when provided
135 */
136 FIB_SOURCE_DEFAULT_ROUTE,
137 /**
Neale Ranns2303cb12018-02-21 04:57:17 -0800138 * The interpose source.
139 * This is not a real source, so don't use it to source a prefix.
140 * It exists here to provide a value against which to register to the
141 * VFT for providing the interpose actions to a real source.
142 */
143 FIB_SOURCE_INTERPOSE,
144 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100145 * Marker. add new entries before this one.
146 */
Neale Ranns2303cb12018-02-21 04:57:17 -0800147 FIB_SOURCE_LAST = FIB_SOURCE_INTERPOSE,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100148} __attribute__ ((packed)) fib_source_t;
149
Damjan Marioncf478942016-11-07 14:57:50 +0100150STATIC_ASSERT (sizeof(fib_source_t) == 1,
151 "FIB too many sources");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100152
153/**
154 * The maximum number of sources
155 */
156#define FIB_SOURCE_MAX (FIB_SOURCE_LAST+1)
157
158#define FIB_SOURCES { \
159 [FIB_SOURCE_SPECIAL] = "special", \
160 [FIB_SOURCE_INTERFACE] = "interface", \
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -0700161 [FIB_SOURCE_PROXY] = "proxy", \
Neale Rannsd792d9c2017-10-21 10:53:20 -0700162 [FIB_SOURCE_BIER] = "BIER", \
Neale Ranns61502112018-08-22 00:21:14 -0700163 [FIB_SOURCE_6RD] = "6RD", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100164 [FIB_SOURCE_API] = "API", \
165 [FIB_SOURCE_CLI] = "CLI", \
166 [FIB_SOURCE_ADJ] = "adjacency", \
167 [FIB_SOURCE_MAP] = "MAP", \
168 [FIB_SOURCE_SR] = "SR", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100169 [FIB_SOURCE_LISP] = "LISP", \
170 [FIB_SOURCE_CLASSIFY] = "classify", \
171 [FIB_SOURCE_DHCP] = "DHCP", \
Neale Ranns3f844d02017-02-18 00:03:54 -0800172 [FIB_SOURCE_IP6_ND_PROXY] = "IPv6-proxy-nd", \
Neale Ranns53da2212018-02-24 02:11:19 -0800173 [FIB_SOURCE_IP6_ND] = "IPv6-nd", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100174 [FIB_SOURCE_RR] = "recursive-resolution", \
175 [FIB_SOURCE_AE] = "attached_export", \
176 [FIB_SOURCE_MPLS] = "mpls", \
Neale Ranns3ee44042016-10-03 13:05:48 +0100177 [FIB_SOURCE_URPF_EXEMPT] = "urpf-exempt", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100178 [FIB_SOURCE_DEFAULT_ROUTE] = "default-route", \
Neale Ranns81458422018-03-12 06:59:36 -0700179 [FIB_SOURCE_PLUGIN_HI] = "plugin-hi", \
Neale Ranns6df19032018-04-04 05:00:48 -0700180 [FIB_SOURCE_PLUGIN_LOW] = "plugin-low", \
Neale Ranns2303cb12018-02-21 04:57:17 -0800181 [FIB_SOURCE_INTERPOSE] = "interpose", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100182}
183
184#define FOR_EACH_FIB_SOURCE(_item) \
185 for (_item = FIB_SOURCE_FIRST; _item < FIB_SOURCE_MAX; _item++)
186
187/**
188 * The different sources that can create a route.
189 * The sources are defined here the thier relative priority order.
190 * The lower the value the higher the priority
191 */
192typedef enum fib_entry_attribute_t_ {
193 /**
194 * Marker. Add new values after this one.
195 */
196 FIB_ENTRY_ATTRIBUTE_FIRST,
197 /**
198 * Connected. The prefix is configured on an interface.
199 */
200 FIB_ENTRY_ATTRIBUTE_CONNECTED = FIB_ENTRY_ATTRIBUTE_FIRST,
201 /**
202 * Attached. The prefix is attached to an interface.
203 */
204 FIB_ENTRY_ATTRIBUTE_ATTACHED,
205 /**
206 * The route is an explicit drop.
207 */
208 FIB_ENTRY_ATTRIBUTE_DROP,
209 /**
210 * The route is exclusive. The client creating the route is
211 * providing an exclusive adjacency.
212 */
213 FIB_ENTRY_ATTRIBUTE_EXCLUSIVE,
214 /**
215 * The route is attached cross tables and thus imports covered
216 * prefixes from the other table.
217 */
218 FIB_ENTRY_ATTRIBUTE_IMPORT,
219 /**
220 * The prefix/address is local to this device
221 */
222 FIB_ENTRY_ATTRIBUTE_LOCAL,
223 /**
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800224 * The prefix/address is a multicast prefix.
225 * this aplies only to MPLS. IP multicast is handled by mfib
226 */
227 FIB_ENTRY_ATTRIBUTE_MULTICAST,
228 /**
Shwetha Bhandari78372a92017-01-18 12:43:54 +0530229 * The prefix/address exempted from loose uRPF check
230 * To be used with caution
231 */
232 FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT,
233 /**
Neale Ranns53da2212018-02-24 02:11:19 -0800234 * The prefix/address exempted from attached export
235 */
236 FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT,
237 /**
Neale Ranns89541992017-04-06 04:41:02 -0700238 * This FIB entry imposes its source information on all prefixes
239 * that is covers
240 */
241 FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT,
242 /**
Neale Ranns2303cb12018-02-21 04:57:17 -0800243 * The interpose attribute.
244 * place the forwarding provided by the source infront of the forwarding
245 * provided by the best source, or failing that, by the cover.
246 */
247 FIB_ENTRY_ATTRIBUTE_INTERPOSE,
248 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100249 * Marker. add new entries before this one.
250 */
Neale Ranns2303cb12018-02-21 04:57:17 -0800251 FIB_ENTRY_ATTRIBUTE_LAST = FIB_ENTRY_ATTRIBUTE_INTERPOSE,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100252} fib_entry_attribute_t;
253
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100254#define FIB_ENTRY_ATTRIBUTES { \
255 [FIB_ENTRY_ATTRIBUTE_CONNECTED] = "connected", \
256 [FIB_ENTRY_ATTRIBUTE_ATTACHED] = "attached", \
257 [FIB_ENTRY_ATTRIBUTE_IMPORT] = "import", \
258 [FIB_ENTRY_ATTRIBUTE_DROP] = "drop", \
259 [FIB_ENTRY_ATTRIBUTE_EXCLUSIVE] = "exclusive", \
260 [FIB_ENTRY_ATTRIBUTE_LOCAL] = "local", \
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800261 [FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT] = "uRPF-exempt", \
262 [FIB_ENTRY_ATTRIBUTE_MULTICAST] = "multicast", \
Neale Ranns53da2212018-02-24 02:11:19 -0800263 [FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT] = "no-attached-export", \
Neale Ranns89541992017-04-06 04:41:02 -0700264 [FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT] = "covered-inherit", \
Neale Ranns2303cb12018-02-21 04:57:17 -0800265 [FIB_ENTRY_ATTRIBUTE_INTERPOSE] = "interpose", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100266}
267
268#define FOR_EACH_FIB_ATTRIBUTE(_item) \
269 for (_item = FIB_ENTRY_ATTRIBUTE_FIRST; \
Neale Ranns808c5b22017-08-02 05:15:07 -0700270 _item <= FIB_ENTRY_ATTRIBUTE_LAST; \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100271 _item++)
272
273typedef enum fib_entry_flag_t_ {
274 FIB_ENTRY_FLAG_NONE = 0,
275 FIB_ENTRY_FLAG_CONNECTED = (1 << FIB_ENTRY_ATTRIBUTE_CONNECTED),
276 FIB_ENTRY_FLAG_ATTACHED = (1 << FIB_ENTRY_ATTRIBUTE_ATTACHED),
277 FIB_ENTRY_FLAG_DROP = (1 << FIB_ENTRY_ATTRIBUTE_DROP),
278 FIB_ENTRY_FLAG_EXCLUSIVE = (1 << FIB_ENTRY_ATTRIBUTE_EXCLUSIVE),
279 FIB_ENTRY_FLAG_LOCAL = (1 << FIB_ENTRY_ATTRIBUTE_LOCAL),
280 FIB_ENTRY_FLAG_IMPORT = (1 << FIB_ENTRY_ATTRIBUTE_IMPORT),
Neale Ranns53da2212018-02-24 02:11:19 -0800281 FIB_ENTRY_FLAG_NO_ATTACHED_EXPORT = (1 << FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT),
Shwetha Bhandari78372a92017-01-18 12:43:54 +0530282 FIB_ENTRY_FLAG_LOOSE_URPF_EXEMPT = (1 << FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800283 FIB_ENTRY_FLAG_MULTICAST = (1 << FIB_ENTRY_ATTRIBUTE_MULTICAST),
Neale Ranns89541992017-04-06 04:41:02 -0700284 FIB_ENTRY_FLAG_COVERED_INHERIT = (1 << FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT),
Neale Ranns2303cb12018-02-21 04:57:17 -0800285 FIB_ENTRY_FLAG_INTERPOSE = (1 << FIB_ENTRY_ATTRIBUTE_INTERPOSE),
Neale Ranns32e1c012016-11-22 17:07:28 +0000286} __attribute__((packed)) fib_entry_flag_t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100287
Neale Ranns710071b2018-09-24 12:36:26 +0000288extern u8 * format_fib_entry_flags(u8 *s, va_list *args);
289
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100290/**
291 * Flags for the source data
292 */
293typedef enum fib_entry_src_attribute_t_ {
294 /**
295 * Marker. Add new values after this one.
296 */
297 FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
298 /**
299 * the source has been added to the entry
300 */
301 FIB_ENTRY_SRC_ATTRIBUTE_ADDED = FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
302 /**
Neale Ranns2303cb12018-02-21 04:57:17 -0800303 * the source is contributing forwarding
304 */
305 FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING,
306 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100307 * the source is active/best
308 */
309 FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE,
310 /**
Neale Ranns89541992017-04-06 04:41:02 -0700311 * the source is inherited from its cover
312 */
313 FIB_ENTRY_SRC_ATTRIBUTE_INHERITED,
314 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100315 * Marker. add new entries before this one.
316 */
Neale Ranns89541992017-04-06 04:41:02 -0700317 FIB_ENTRY_SRC_ATTRIBUTE_LAST = FIB_ENTRY_SRC_ATTRIBUTE_INHERITED,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100318} fib_entry_src_attribute_t;
319
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100320
321#define FIB_ENTRY_SRC_ATTRIBUTES { \
322 [FIB_ENTRY_SRC_ATTRIBUTE_ADDED] = "added", \
Neale Ranns2303cb12018-02-21 04:57:17 -0800323 [FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING] = "contributing", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100324 [FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE] = "active", \
Neale Ranns89541992017-04-06 04:41:02 -0700325 [FIB_ENTRY_SRC_ATTRIBUTE_INHERITED] = "inherited", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100326}
327
Neale Ranns89541992017-04-06 04:41:02 -0700328#define FOR_EACH_FIB_SRC_ATTRIBUTE(_item) \
329 for (_item = FIB_ENTRY_SRC_ATTRIBUTE_FIRST; \
Neale Ranns2303cb12018-02-21 04:57:17 -0800330 _item <= FIB_ENTRY_SRC_ATTRIBUTE_LAST; \
Neale Ranns89541992017-04-06 04:41:02 -0700331 _item++)
332
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333typedef enum fib_entry_src_flag_t_ {
334 FIB_ENTRY_SRC_FLAG_NONE = 0,
335 FIB_ENTRY_SRC_FLAG_ADDED = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ADDED),
Neale Ranns2303cb12018-02-21 04:57:17 -0800336 FIB_ENTRY_SRC_FLAG_CONTRIBUTING = (1 << FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337 FIB_ENTRY_SRC_FLAG_ACTIVE = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE),
Neale Ranns89541992017-04-06 04:41:02 -0700338 FIB_ENTRY_SRC_FLAG_INHERITED = (1 << FIB_ENTRY_SRC_ATTRIBUTE_INHERITED),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100339} __attribute__ ((packed)) fib_entry_src_flag_t;
340
Neale Ranns710071b2018-09-24 12:36:26 +0000341extern u8 * format_fib_entry_src_flags(u8 *s, va_list *args);
342
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100343/*
344 * Keep the size of the flags field to 2 bytes, so it
345 * can be placed next to the 2 bytes reference count
346 */
Damjan Marioncf478942016-11-07 14:57:50 +0100347STATIC_ASSERT (sizeof(fib_entry_src_flag_t) <= 2,
348 "FIB entry flags field size too big");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100349
350/**
351 * Information related to the source of a FIB entry
352 */
353typedef struct fib_entry_src_t_ {
354 /**
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100355 * A vector of path extensions
356 */
Neale Ranns81424992017-05-18 03:03:22 -0700357 fib_path_ext_list_t fes_path_exts;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100358
359 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100360 * The path-list created by the source
361 */
362 fib_node_index_t fes_pl;
Neale Ranns2303cb12018-02-21 04:57:17 -0800363
364 /**
365 * Flags the source contributes to the entry
366 */
367 fib_entry_flag_t fes_entry_flags;
368
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100369 /**
370 * Which source this info block is for
371 */
372 fib_source_t fes_src;
Neale Ranns2303cb12018-02-21 04:57:17 -0800373
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100374 /**
375 * Flags on the source
376 */
377 fib_entry_src_flag_t fes_flags;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100378
379 /**
380 * 1 bytes ref count. This is not the number of users of the Entry
381 * (which is itself not large, due to path-list sharing), but the number
382 * of times a given source has been added. Which is even fewer
383 */
384 u8 fes_ref_count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100385
386 /**
387 * Source specific info
388 */
389 union {
390 struct {
391 /**
392 * the index of the FIB entry that is the covering entry
393 */
394 fib_node_index_t fesr_cover;
395 /**
396 * This source's index in the cover's list
397 */
398 u32 fesr_sibling;
399 } rr;
400 struct {
401 /**
402 * the index of the FIB entry that is the covering entry
403 */
Neale Ranns2303cb12018-02-21 04:57:17 -0800404 fib_node_index_t fesi_cover;
405 /**
406 * This source's index in the cover's list
407 */
408 u32 fesi_sibling;
409 /**
410 * DPO type to interpose. The dpo type needs to have registered
411 * it's 'contribute interpose' callback function.
412 */
413 dpo_id_t fesi_dpo;
414 } interpose;
415 struct {
416 /**
417 * the index of the FIB entry that is the covering entry
418 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100419 fib_node_index_t fesa_cover;
420 /**
421 * This source's index in the cover's list
422 */
423 u32 fesa_sibling;
424 } adj;
425 struct {
426 /**
427 * the index of the FIB entry that is the covering entry
428 */
429 fib_node_index_t fesi_cover;
430 /**
431 * This source's index in the cover's list
432 */
433 u32 fesi_sibling;
434 } interface;
435 struct {
436 /**
437 * This MPLS local label associated with the prefix.
438 */
439 mpls_label_t fesm_label;
440
441 /**
442 * the indicies of the LFIB entries created
443 */
444 fib_node_index_t fesm_lfes[2];
445 } mpls;
446 struct {
447 /**
448 * The source FIB index.
449 */
450 fib_node_index_t fesl_fib_index;
451 } lisp;
Neale Ranns2303cb12018-02-21 04:57:17 -0800452 } u;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100453} fib_entry_src_t;
454
455/**
456 * An entry in a FIB table.
457 *
458 * This entry represents a route added to the FIB that is stored
459 * in one of the FIB tables.
460 */
461typedef struct fib_entry_t_ {
462 /**
463 * Base class. The entry's node representation in the graph.
464 */
465 fib_node_t fe_node;
466 /**
Neale Rannsad422ed2016-11-02 14:20:04 +0000467 * The prefix of the route. this is const just to be sure.
468 * It is the entry's key/identity and so should never change.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100469 */
Neale Rannsad422ed2016-11-02 14:20:04 +0000470 const fib_prefix_t fe_prefix;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100471 /**
472 * The index of the FIB table this entry is in
473 */
474 u32 fe_fib_index;
475 /**
476 * The load-balance used for forwarding.
477 *
478 * We don't share the EOS and non-EOS even in case when they could be
479 * because:
480 * - complexity & reliability v. memory
481 * determining the conditions where sharing is possible is non-trivial.
482 * - separate LBs means we can get the EOS bit right in the MPLS label DPO
483 * and so save a few clock cycles in the DP imposition node since we can
484 * paint the header straight on without the need to check the packet
485 * type to derive the EOS bit value.
486 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800487 dpo_id_t fe_lb;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488 /**
Neale Rannsa4e77662017-12-04 20:00:30 +0000489 * Vector of source infos.
490 * Most entries will only have 1 source. So we optimise for memory usage,
491 * which is preferable since we have many entries.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100492 */
Neale Rannsa4e77662017-12-04 20:00:30 +0000493 fib_entry_src_t *fe_srcs;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100494 /**
495 * the path-list for which this entry is a child. This is also the path-list
496 * that is contributing forwarding for this entry.
497 */
498 fib_node_index_t fe_parent;
499 /**
500 * index of this entry in the parent's child list.
501 * This is set when this entry is added as a child, but can also
502 * be changed by the parent as it manages its list.
503 */
504 u32 fe_sibling;
Neale Rannsad422ed2016-11-02 14:20:04 +0000505
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100506 /**
Neale Ranns1f50bf82019-07-16 15:28:52 +0000507 * A vector of delegate indices.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100508 */
Neale Ranns1f50bf82019-07-16 15:28:52 +0000509 index_t *fe_delegates;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100510} fib_entry_t;
511
512#define FOR_EACH_FIB_ENTRY_FLAG(_item) \
513 for (_item = FIB_ENTRY_FLAG_FIRST; _item < FIB_ENTRY_FLAG_MAX; _item++)
514
515#define FIB_ENTRY_FORMAT_BRIEF (0x0)
516#define FIB_ENTRY_FORMAT_DETAIL (0x1)
517#define FIB_ENTRY_FORMAT_DETAIL2 (0x2)
518
519extern u8 *format_fib_entry (u8 * s, va_list * args);
Neale Ranns15002542017-09-10 04:39:11 -0700520extern u8 *format_fib_source (u8 * s, va_list * args);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100521
522extern fib_node_index_t fib_entry_create_special(u32 fib_index,
523 const fib_prefix_t *prefix,
524 fib_source_t source,
525 fib_entry_flag_t flags,
526 const dpo_id_t *dpo);
527
528extern fib_node_index_t fib_entry_create (u32 fib_index,
529 const fib_prefix_t *prefix,
530 fib_source_t source,
531 fib_entry_flag_t flags,
532 const fib_route_path_t *paths);
533extern void fib_entry_update (fib_node_index_t fib_entry_index,
534 fib_source_t source,
535 fib_entry_flag_t flags,
536 const fib_route_path_t *paths);
537
538extern void fib_entry_path_add(fib_node_index_t fib_entry_index,
539 fib_source_t source,
540 fib_entry_flag_t flags,
Neale Ranns097fa662018-05-01 05:17:55 -0700541 const fib_route_path_t *rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100542extern void fib_entry_special_add(fib_node_index_t fib_entry_index,
543 fib_source_t source,
544 fib_entry_flag_t flags,
545 const dpo_id_t *dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100546extern void fib_entry_special_update(fib_node_index_t fib_entry_index,
547 fib_source_t source,
548 fib_entry_flag_t flags,
549 const dpo_id_t *dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100550extern fib_entry_src_flag_t fib_entry_special_remove(fib_node_index_t fib_entry_index,
551 fib_source_t source);
552
553extern fib_entry_src_flag_t fib_entry_path_remove(fib_node_index_t fib_entry_index,
554 fib_source_t source,
Neale Ranns097fa662018-05-01 05:17:55 -0700555 const fib_route_path_t *rpaths);
Neale Ranns89541992017-04-06 04:41:02 -0700556
557extern void fib_entry_inherit(fib_node_index_t cover,
558 fib_node_index_t covered);
559
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100560extern fib_entry_src_flag_t fib_entry_delete(fib_node_index_t fib_entry_index,
561 fib_source_t source);
562
Neale Ranns2303cb12018-02-21 04:57:17 -0800563extern void fib_entry_recalculate_forwarding(
564 fib_node_index_t fib_entry_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100565extern void fib_entry_contribute_urpf(fib_node_index_t path_index,
566 index_t urpf);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100567extern void fib_entry_contribute_forwarding(
568 fib_node_index_t fib_entry_index,
569 fib_forward_chain_type_t type,
570 dpo_id_t *dpo);
571extern const dpo_id_t * fib_entry_contribute_ip_forwarding(
572 fib_node_index_t fib_entry_index);
573extern adj_index_t fib_entry_get_adj_for_source(
574 fib_node_index_t fib_entry_index,
575 fib_source_t source);
576extern const int fib_entry_get_dpo_for_source (
577 fib_node_index_t fib_entry_index,
578 fib_source_t source,
579 dpo_id_t *dpo);
580
581extern adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index);
582
583extern int fib_entry_cmp_for_sort(void *i1, void *i2);
584
585extern void fib_entry_cover_changed(fib_node_index_t fib_entry);
586extern void fib_entry_cover_updated(fib_node_index_t fib_entry);
587extern int fib_entry_recursive_loop_detect(fib_node_index_t entry_index,
588 fib_node_index_t **entry_indicies);
589
590extern void fib_entry_lock(fib_node_index_t fib_entry_index);
591extern void fib_entry_unlock(fib_node_index_t fib_entry_index);
592
593extern u32 fib_entry_child_add(fib_node_index_t fib_entry_index,
594 fib_node_type_t type,
595 fib_node_index_t child_index);
596extern void fib_entry_child_remove(fib_node_index_t fib_entry_index,
597 u32 sibling_index);
598extern u32 fib_entry_get_resolving_interface(fib_node_index_t fib_entry_index);
Neale Rannsdf089a82016-10-02 16:39:06 +0100599extern u32 fib_entry_get_resolving_interface_for_source(
600 fib_node_index_t fib_entry_index,
601 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100602
Neale Ranns097fa662018-05-01 05:17:55 -0700603extern fib_route_path_t* fib_entry_encode(fib_node_index_t fib_entry_index);
604extern const fib_prefix_t* fib_entry_get_prefix(fib_node_index_t fib_entry_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100605extern u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index);
606extern void fib_entry_set_source_data(fib_node_index_t fib_entry_index,
607 fib_source_t source,
608 const void *data);
609extern const void* fib_entry_get_source_data(fib_node_index_t fib_entry_index,
610 fib_source_t source);
611
612extern fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index);
Neale Rannsdf089a82016-10-02 16:39:06 +0100613extern fib_entry_flag_t fib_entry_get_flags_for_source(
614 fib_node_index_t fib_entry_index,
615 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100616extern fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index);
617extern int fib_entry_is_sourced(fib_node_index_t fib_entry_index,
618 fib_source_t source);
619
620extern fib_node_index_t fib_entry_get_path_list(fib_node_index_t fib_entry_index);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700621extern int fib_entry_is_resolved(fib_node_index_t fib_entry_index);
Neale Ranns56f949b2018-04-25 01:41:24 -0700622extern int fib_entry_is_host(fib_node_index_t fib_entry_index);
Neale Ranns227038a2017-04-21 01:07:59 -0700623extern void fib_entry_set_flow_hash_config(fib_node_index_t fib_entry_index,
624 flow_hash_config_t hash_config);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100625
626extern void fib_entry_module_init(void);
627
Neale Ranns008dbe12018-09-07 09:32:36 -0700628extern u32 fib_entry_get_stats_index(fib_node_index_t fib_entry_index);
629
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100630/*
631 * unsafe... beware the raw pointer.
632 */
633extern fib_node_index_t fib_entry_get_index(const fib_entry_t * fib_entry);
634extern fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index);
635
636/*
637 * for testing purposes.
638 */
639extern u32 fib_entry_pool_size(void);
640
641#endif