blob: 8bd87e9d2222523f52b36566de8fb3784be11f58 [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 /**
Benoît Ganne99c358d2019-07-17 14:47:23 +020031 * An invalid source
32 * This is not a real source, so don't use it to source a prefix.
33 * It exists here to provide a value for inexistant/uninitialized source
34 */
35 FIB_SOURCE_INVALID = 0,
36 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010037 * Marker. Add new values after this one.
38 */
39 FIB_SOURCE_FIRST,
40 /**
41 * Special sources. These are for entries that are added to all
42 * FIBs by default, and should never be over-ridden (hence they
43 * are the highest priority)
44 */
45 FIB_SOURCE_SPECIAL = FIB_SOURCE_FIRST,
46 /**
47 * Classify. A route that links directly to a classify adj
48 */
49 FIB_SOURCE_CLASSIFY,
50 /**
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -070051 * A route the is being 'proxied' on behalf of another device
52 */
53 FIB_SOURCE_PROXY,
54 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010055 * Route added as a result of interface configuration.
56 * this will also come from the API/CLI, but the distinction is
57 * that is from confiiguration on an interface, not a 'ip route' command
58 */
59 FIB_SOURCE_INTERFACE,
60 /**
Pablo Camarillo5d73eec2017-04-24 17:51:56 +020061 * SRv6 and SR-MPLS
62 */
63 FIB_SOURCE_SR,
64 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010065 * A high priority source a plugin can use
66 */
67 FIB_SOURCE_PLUGIN_HI,
68 /**
Neale Rannsd792d9c2017-10-21 10:53:20 -070069 * From the BIER subsystem
70 */
71 FIB_SOURCE_BIER,
72 /**
Neale Ranns61502112018-08-22 00:21:14 -070073 * From 6RD.
74 */
75 FIB_SOURCE_6RD,
76 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010077 * From the control plane API
78 */
79 FIB_SOURCE_API,
80 /**
81 * From the CLI.
82 */
83 FIB_SOURCE_CLI,
84 /**
Neale Ranns6df19032018-04-04 05:00:48 -070085 * A low (below routing) priority source a plugin can use
86 */
87 FIB_SOURCE_PLUGIN_LOW,
88 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010089 * LISP
90 */
91 FIB_SOURCE_LISP,
92 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010093 * IPv[46] Mapping
94 */
95 FIB_SOURCE_MAP,
96 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010097 * DHCP
98 */
99 FIB_SOURCE_DHCP,
100 /**
Neale Ranns3f844d02017-02-18 00:03:54 -0800101 * IPv6 Proxy ND
102 */
103 FIB_SOURCE_IP6_ND_PROXY,
104 /**
Neale Ranns53da2212018-02-24 02:11:19 -0800105 * IPv6 ND (seen in the link-local tables)
106 */
107 FIB_SOURCE_IP6_ND,
108 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100109 * Adjacency source.
110 * routes created as a result of ARP/ND entries. This is lower priority
111 * then the API/CLI. This is on purpose. trust me.
112 */
113 FIB_SOURCE_ADJ,
114 /**
115 * MPLS label. The prefix has been assigned a local label. This source
116 * never provides forwarding information, instead it acts as a place-holder
117 * so the association of label to prefix can be maintained
118 */
119 FIB_SOURCE_MPLS,
120 /**
121 * Attached Export source.
122 * routes created as a result of attahced export. routes thus sourced
123 * will be present in the export tables
124 */
125 FIB_SOURCE_AE,
126 /**
127 * Recursive resolution source.
Neale Ranns3ee44042016-10-03 13:05:48 +0100128 * Used to install an entry that is the resolution traget of another.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100129 */
130 FIB_SOURCE_RR,
131 /**
Neale Ranns3ee44042016-10-03 13:05:48 +0100132 * uRPF bypass/exemption.
133 * Used to install an entry that is exempt from the loose uRPF check
134 */
135 FIB_SOURCE_URPF_EXEMPT,
136 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100137 * The default route source.
138 * The default route is always added to the FIB table (like the
139 * special sources) but we need to be able to over-ride it with
140 * 'ip route' sources when provided
141 */
142 FIB_SOURCE_DEFAULT_ROUTE,
143 /**
Neale Ranns2303cb12018-02-21 04:57:17 -0800144 * The interpose source.
145 * This is not a real source, so don't use it to source a prefix.
146 * It exists here to provide a value against which to register to the
147 * VFT for providing the interpose actions to a real source.
148 */
149 FIB_SOURCE_INTERPOSE,
150 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100151 * Marker. add new entries before this one.
152 */
Neale Ranns2303cb12018-02-21 04:57:17 -0800153 FIB_SOURCE_LAST = FIB_SOURCE_INTERPOSE,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100154} __attribute__ ((packed)) fib_source_t;
155
Damjan Marioncf478942016-11-07 14:57:50 +0100156STATIC_ASSERT (sizeof(fib_source_t) == 1,
157 "FIB too many sources");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100158
159/**
160 * The maximum number of sources
161 */
162#define FIB_SOURCE_MAX (FIB_SOURCE_LAST+1)
163
164#define FIB_SOURCES { \
Benoît Ganne99c358d2019-07-17 14:47:23 +0200165 [FIB_SOURCE_INVALID] = "invalid", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100166 [FIB_SOURCE_SPECIAL] = "special", \
167 [FIB_SOURCE_INTERFACE] = "interface", \
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -0700168 [FIB_SOURCE_PROXY] = "proxy", \
Neale Rannsd792d9c2017-10-21 10:53:20 -0700169 [FIB_SOURCE_BIER] = "BIER", \
Neale Ranns61502112018-08-22 00:21:14 -0700170 [FIB_SOURCE_6RD] = "6RD", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100171 [FIB_SOURCE_API] = "API", \
172 [FIB_SOURCE_CLI] = "CLI", \
173 [FIB_SOURCE_ADJ] = "adjacency", \
174 [FIB_SOURCE_MAP] = "MAP", \
175 [FIB_SOURCE_SR] = "SR", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100176 [FIB_SOURCE_LISP] = "LISP", \
177 [FIB_SOURCE_CLASSIFY] = "classify", \
178 [FIB_SOURCE_DHCP] = "DHCP", \
Neale Ranns3f844d02017-02-18 00:03:54 -0800179 [FIB_SOURCE_IP6_ND_PROXY] = "IPv6-proxy-nd", \
Neale Ranns53da2212018-02-24 02:11:19 -0800180 [FIB_SOURCE_IP6_ND] = "IPv6-nd", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100181 [FIB_SOURCE_RR] = "recursive-resolution", \
182 [FIB_SOURCE_AE] = "attached_export", \
183 [FIB_SOURCE_MPLS] = "mpls", \
Neale Ranns3ee44042016-10-03 13:05:48 +0100184 [FIB_SOURCE_URPF_EXEMPT] = "urpf-exempt", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100185 [FIB_SOURCE_DEFAULT_ROUTE] = "default-route", \
Neale Ranns81458422018-03-12 06:59:36 -0700186 [FIB_SOURCE_PLUGIN_HI] = "plugin-hi", \
Neale Ranns6df19032018-04-04 05:00:48 -0700187 [FIB_SOURCE_PLUGIN_LOW] = "plugin-low", \
Neale Ranns2303cb12018-02-21 04:57:17 -0800188 [FIB_SOURCE_INTERPOSE] = "interpose", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100189}
190
191#define FOR_EACH_FIB_SOURCE(_item) \
192 for (_item = FIB_SOURCE_FIRST; _item < FIB_SOURCE_MAX; _item++)
193
194/**
195 * The different sources that can create a route.
196 * The sources are defined here the thier relative priority order.
197 * The lower the value the higher the priority
198 */
199typedef enum fib_entry_attribute_t_ {
200 /**
201 * Marker. Add new values after this one.
202 */
203 FIB_ENTRY_ATTRIBUTE_FIRST,
204 /**
205 * Connected. The prefix is configured on an interface.
206 */
207 FIB_ENTRY_ATTRIBUTE_CONNECTED = FIB_ENTRY_ATTRIBUTE_FIRST,
208 /**
209 * Attached. The prefix is attached to an interface.
210 */
211 FIB_ENTRY_ATTRIBUTE_ATTACHED,
212 /**
213 * The route is an explicit drop.
214 */
215 FIB_ENTRY_ATTRIBUTE_DROP,
216 /**
217 * The route is exclusive. The client creating the route is
218 * providing an exclusive adjacency.
219 */
220 FIB_ENTRY_ATTRIBUTE_EXCLUSIVE,
221 /**
222 * The route is attached cross tables and thus imports covered
223 * prefixes from the other table.
224 */
225 FIB_ENTRY_ATTRIBUTE_IMPORT,
226 /**
227 * The prefix/address is local to this device
228 */
229 FIB_ENTRY_ATTRIBUTE_LOCAL,
230 /**
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800231 * The prefix/address is a multicast prefix.
232 * this aplies only to MPLS. IP multicast is handled by mfib
233 */
234 FIB_ENTRY_ATTRIBUTE_MULTICAST,
235 /**
Shwetha Bhandari78372a92017-01-18 12:43:54 +0530236 * The prefix/address exempted from loose uRPF check
237 * To be used with caution
238 */
239 FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT,
240 /**
Neale Ranns53da2212018-02-24 02:11:19 -0800241 * The prefix/address exempted from attached export
242 */
243 FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT,
244 /**
Neale Ranns89541992017-04-06 04:41:02 -0700245 * This FIB entry imposes its source information on all prefixes
246 * that is covers
247 */
248 FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT,
249 /**
Neale Ranns2303cb12018-02-21 04:57:17 -0800250 * The interpose attribute.
251 * place the forwarding provided by the source infront of the forwarding
252 * provided by the best source, or failing that, by the cover.
253 */
254 FIB_ENTRY_ATTRIBUTE_INTERPOSE,
255 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100256 * Marker. add new entries before this one.
257 */
Neale Ranns2303cb12018-02-21 04:57:17 -0800258 FIB_ENTRY_ATTRIBUTE_LAST = FIB_ENTRY_ATTRIBUTE_INTERPOSE,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100259} fib_entry_attribute_t;
260
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100261#define FIB_ENTRY_ATTRIBUTES { \
262 [FIB_ENTRY_ATTRIBUTE_CONNECTED] = "connected", \
263 [FIB_ENTRY_ATTRIBUTE_ATTACHED] = "attached", \
264 [FIB_ENTRY_ATTRIBUTE_IMPORT] = "import", \
265 [FIB_ENTRY_ATTRIBUTE_DROP] = "drop", \
266 [FIB_ENTRY_ATTRIBUTE_EXCLUSIVE] = "exclusive", \
267 [FIB_ENTRY_ATTRIBUTE_LOCAL] = "local", \
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800268 [FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT] = "uRPF-exempt", \
269 [FIB_ENTRY_ATTRIBUTE_MULTICAST] = "multicast", \
Neale Ranns53da2212018-02-24 02:11:19 -0800270 [FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT] = "no-attached-export", \
Neale Ranns89541992017-04-06 04:41:02 -0700271 [FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT] = "covered-inherit", \
Neale Ranns2303cb12018-02-21 04:57:17 -0800272 [FIB_ENTRY_ATTRIBUTE_INTERPOSE] = "interpose", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100273}
274
275#define FOR_EACH_FIB_ATTRIBUTE(_item) \
276 for (_item = FIB_ENTRY_ATTRIBUTE_FIRST; \
Neale Ranns808c5b22017-08-02 05:15:07 -0700277 _item <= FIB_ENTRY_ATTRIBUTE_LAST; \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100278 _item++)
279
280typedef enum fib_entry_flag_t_ {
281 FIB_ENTRY_FLAG_NONE = 0,
282 FIB_ENTRY_FLAG_CONNECTED = (1 << FIB_ENTRY_ATTRIBUTE_CONNECTED),
283 FIB_ENTRY_FLAG_ATTACHED = (1 << FIB_ENTRY_ATTRIBUTE_ATTACHED),
284 FIB_ENTRY_FLAG_DROP = (1 << FIB_ENTRY_ATTRIBUTE_DROP),
285 FIB_ENTRY_FLAG_EXCLUSIVE = (1 << FIB_ENTRY_ATTRIBUTE_EXCLUSIVE),
286 FIB_ENTRY_FLAG_LOCAL = (1 << FIB_ENTRY_ATTRIBUTE_LOCAL),
287 FIB_ENTRY_FLAG_IMPORT = (1 << FIB_ENTRY_ATTRIBUTE_IMPORT),
Neale Ranns53da2212018-02-24 02:11:19 -0800288 FIB_ENTRY_FLAG_NO_ATTACHED_EXPORT = (1 << FIB_ENTRY_ATTRIBUTE_NO_ATTACHED_EXPORT),
Shwetha Bhandari78372a92017-01-18 12:43:54 +0530289 FIB_ENTRY_FLAG_LOOSE_URPF_EXEMPT = (1 << FIB_ENTRY_ATTRIBUTE_URPF_EXEMPT),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800290 FIB_ENTRY_FLAG_MULTICAST = (1 << FIB_ENTRY_ATTRIBUTE_MULTICAST),
Neale Ranns89541992017-04-06 04:41:02 -0700291 FIB_ENTRY_FLAG_COVERED_INHERIT = (1 << FIB_ENTRY_ATTRIBUTE_COVERED_INHERIT),
Neale Ranns2303cb12018-02-21 04:57:17 -0800292 FIB_ENTRY_FLAG_INTERPOSE = (1 << FIB_ENTRY_ATTRIBUTE_INTERPOSE),
Neale Ranns32e1c012016-11-22 17:07:28 +0000293} __attribute__((packed)) fib_entry_flag_t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100294
Neale Ranns710071b2018-09-24 12:36:26 +0000295extern u8 * format_fib_entry_flags(u8 *s, va_list *args);
296
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100297/**
298 * Flags for the source data
299 */
300typedef enum fib_entry_src_attribute_t_ {
301 /**
302 * Marker. Add new values after this one.
303 */
304 FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
305 /**
306 * the source has been added to the entry
307 */
308 FIB_ENTRY_SRC_ATTRIBUTE_ADDED = FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
309 /**
Neale Ranns2303cb12018-02-21 04:57:17 -0800310 * the source is contributing forwarding
311 */
312 FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING,
313 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100314 * the source is active/best
315 */
316 FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE,
317 /**
Neale Ranns89541992017-04-06 04:41:02 -0700318 * the source is inherited from its cover
319 */
320 FIB_ENTRY_SRC_ATTRIBUTE_INHERITED,
321 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322 * Marker. add new entries before this one.
323 */
Neale Ranns89541992017-04-06 04:41:02 -0700324 FIB_ENTRY_SRC_ATTRIBUTE_LAST = FIB_ENTRY_SRC_ATTRIBUTE_INHERITED,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100325} fib_entry_src_attribute_t;
326
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100327
328#define FIB_ENTRY_SRC_ATTRIBUTES { \
329 [FIB_ENTRY_SRC_ATTRIBUTE_ADDED] = "added", \
Neale Ranns2303cb12018-02-21 04:57:17 -0800330 [FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING] = "contributing", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100331 [FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE] = "active", \
Neale Ranns89541992017-04-06 04:41:02 -0700332 [FIB_ENTRY_SRC_ATTRIBUTE_INHERITED] = "inherited", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333}
334
Neale Ranns89541992017-04-06 04:41:02 -0700335#define FOR_EACH_FIB_SRC_ATTRIBUTE(_item) \
336 for (_item = FIB_ENTRY_SRC_ATTRIBUTE_FIRST; \
Neale Ranns2303cb12018-02-21 04:57:17 -0800337 _item <= FIB_ENTRY_SRC_ATTRIBUTE_LAST; \
Neale Ranns89541992017-04-06 04:41:02 -0700338 _item++)
339
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100340typedef enum fib_entry_src_flag_t_ {
341 FIB_ENTRY_SRC_FLAG_NONE = 0,
342 FIB_ENTRY_SRC_FLAG_ADDED = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ADDED),
Neale Ranns2303cb12018-02-21 04:57:17 -0800343 FIB_ENTRY_SRC_FLAG_CONTRIBUTING = (1 << FIB_ENTRY_SRC_ATTRIBUTE_CONTRIBUTING),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100344 FIB_ENTRY_SRC_FLAG_ACTIVE = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE),
Neale Ranns89541992017-04-06 04:41:02 -0700345 FIB_ENTRY_SRC_FLAG_INHERITED = (1 << FIB_ENTRY_SRC_ATTRIBUTE_INHERITED),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100346} __attribute__ ((packed)) fib_entry_src_flag_t;
347
Neale Ranns710071b2018-09-24 12:36:26 +0000348extern u8 * format_fib_entry_src_flags(u8 *s, va_list *args);
349
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100350/*
351 * Keep the size of the flags field to 2 bytes, so it
352 * can be placed next to the 2 bytes reference count
353 */
Damjan Marioncf478942016-11-07 14:57:50 +0100354STATIC_ASSERT (sizeof(fib_entry_src_flag_t) <= 2,
355 "FIB entry flags field size too big");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100356
357/**
358 * Information related to the source of a FIB entry
359 */
360typedef struct fib_entry_src_t_ {
361 /**
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100362 * A vector of path extensions
363 */
Neale Ranns81424992017-05-18 03:03:22 -0700364 fib_path_ext_list_t fes_path_exts;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100365
366 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100367 * The path-list created by the source
368 */
369 fib_node_index_t fes_pl;
Neale Ranns2303cb12018-02-21 04:57:17 -0800370
371 /**
372 * Flags the source contributes to the entry
373 */
374 fib_entry_flag_t fes_entry_flags;
375
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100376 /**
377 * Which source this info block is for
378 */
379 fib_source_t fes_src;
Neale Ranns2303cb12018-02-21 04:57:17 -0800380
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100381 /**
382 * Flags on the source
383 */
384 fib_entry_src_flag_t fes_flags;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100385
386 /**
387 * 1 bytes ref count. This is not the number of users of the Entry
388 * (which is itself not large, due to path-list sharing), but the number
389 * of times a given source has been added. Which is even fewer
390 */
391 u8 fes_ref_count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100392
393 /**
394 * Source specific info
395 */
396 union {
397 struct {
398 /**
399 * the index of the FIB entry that is the covering entry
400 */
401 fib_node_index_t fesr_cover;
402 /**
403 * This source's index in the cover's list
404 */
405 u32 fesr_sibling;
406 } rr;
407 struct {
408 /**
409 * the index of the FIB entry that is the covering entry
410 */
Neale Ranns2303cb12018-02-21 04:57:17 -0800411 fib_node_index_t fesi_cover;
412 /**
413 * This source's index in the cover's list
414 */
415 u32 fesi_sibling;
416 /**
417 * DPO type to interpose. The dpo type needs to have registered
418 * it's 'contribute interpose' callback function.
419 */
420 dpo_id_t fesi_dpo;
421 } interpose;
422 struct {
423 /**
424 * the index of the FIB entry that is the covering entry
425 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100426 fib_node_index_t fesa_cover;
427 /**
428 * This source's index in the cover's list
429 */
430 u32 fesa_sibling;
431 } adj;
432 struct {
433 /**
434 * the index of the FIB entry that is the covering entry
435 */
436 fib_node_index_t fesi_cover;
437 /**
438 * This source's index in the cover's list
439 */
440 u32 fesi_sibling;
441 } interface;
442 struct {
443 /**
444 * This MPLS local label associated with the prefix.
445 */
446 mpls_label_t fesm_label;
447
448 /**
449 * the indicies of the LFIB entries created
450 */
451 fib_node_index_t fesm_lfes[2];
452 } mpls;
453 struct {
454 /**
455 * The source FIB index.
456 */
457 fib_node_index_t fesl_fib_index;
458 } lisp;
Neale Ranns2303cb12018-02-21 04:57:17 -0800459 } u;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100460} fib_entry_src_t;
461
462/**
463 * An entry in a FIB table.
464 *
465 * This entry represents a route added to the FIB that is stored
466 * in one of the FIB tables.
467 */
468typedef struct fib_entry_t_ {
469 /**
470 * Base class. The entry's node representation in the graph.
471 */
472 fib_node_t fe_node;
473 /**
Neale Rannsad422ed2016-11-02 14:20:04 +0000474 * The prefix of the route. this is const just to be sure.
475 * It is the entry's key/identity and so should never change.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100476 */
Neale Rannsad422ed2016-11-02 14:20:04 +0000477 const fib_prefix_t fe_prefix;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100478 /**
479 * The index of the FIB table this entry is in
480 */
481 u32 fe_fib_index;
482 /**
483 * The load-balance used for forwarding.
484 *
485 * We don't share the EOS and non-EOS even in case when they could be
486 * because:
487 * - complexity & reliability v. memory
488 * determining the conditions where sharing is possible is non-trivial.
489 * - separate LBs means we can get the EOS bit right in the MPLS label DPO
490 * and so save a few clock cycles in the DP imposition node since we can
491 * paint the header straight on without the need to check the packet
492 * type to derive the EOS bit value.
493 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800494 dpo_id_t fe_lb;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100495 /**
Neale Rannsa4e77662017-12-04 20:00:30 +0000496 * Vector of source infos.
497 * Most entries will only have 1 source. So we optimise for memory usage,
498 * which is preferable since we have many entries.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100499 */
Neale Rannsa4e77662017-12-04 20:00:30 +0000500 fib_entry_src_t *fe_srcs;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100501 /**
502 * the path-list for which this entry is a child. This is also the path-list
503 * that is contributing forwarding for this entry.
504 */
505 fib_node_index_t fe_parent;
506 /**
507 * index of this entry in the parent's child list.
508 * This is set when this entry is added as a child, but can also
509 * be changed by the parent as it manages its list.
510 */
511 u32 fe_sibling;
Neale Rannsad422ed2016-11-02 14:20:04 +0000512
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100513 /**
Neale Ranns1f50bf82019-07-16 15:28:52 +0000514 * A vector of delegate indices.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100515 */
Neale Ranns1f50bf82019-07-16 15:28:52 +0000516 index_t *fe_delegates;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100517} fib_entry_t;
518
519#define FOR_EACH_FIB_ENTRY_FLAG(_item) \
520 for (_item = FIB_ENTRY_FLAG_FIRST; _item < FIB_ENTRY_FLAG_MAX; _item++)
521
522#define FIB_ENTRY_FORMAT_BRIEF (0x0)
523#define FIB_ENTRY_FORMAT_DETAIL (0x1)
524#define FIB_ENTRY_FORMAT_DETAIL2 (0x2)
525
526extern u8 *format_fib_entry (u8 * s, va_list * args);
Neale Ranns15002542017-09-10 04:39:11 -0700527extern u8 *format_fib_source (u8 * s, va_list * args);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100528
529extern fib_node_index_t fib_entry_create_special(u32 fib_index,
530 const fib_prefix_t *prefix,
531 fib_source_t source,
532 fib_entry_flag_t flags,
533 const dpo_id_t *dpo);
534
535extern fib_node_index_t fib_entry_create (u32 fib_index,
536 const fib_prefix_t *prefix,
537 fib_source_t source,
538 fib_entry_flag_t flags,
539 const fib_route_path_t *paths);
540extern void fib_entry_update (fib_node_index_t fib_entry_index,
541 fib_source_t source,
542 fib_entry_flag_t flags,
543 const fib_route_path_t *paths);
544
545extern void fib_entry_path_add(fib_node_index_t fib_entry_index,
546 fib_source_t source,
547 fib_entry_flag_t flags,
Neale Ranns097fa662018-05-01 05:17:55 -0700548 const fib_route_path_t *rpaths);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100549extern void fib_entry_special_add(fib_node_index_t fib_entry_index,
550 fib_source_t source,
551 fib_entry_flag_t flags,
552 const dpo_id_t *dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100553extern void fib_entry_special_update(fib_node_index_t fib_entry_index,
554 fib_source_t source,
555 fib_entry_flag_t flags,
556 const dpo_id_t *dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100557extern fib_entry_src_flag_t fib_entry_special_remove(fib_node_index_t fib_entry_index,
558 fib_source_t source);
559
560extern fib_entry_src_flag_t fib_entry_path_remove(fib_node_index_t fib_entry_index,
561 fib_source_t source,
Neale Ranns097fa662018-05-01 05:17:55 -0700562 const fib_route_path_t *rpaths);
Neale Ranns89541992017-04-06 04:41:02 -0700563
564extern void fib_entry_inherit(fib_node_index_t cover,
565 fib_node_index_t covered);
566
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100567extern fib_entry_src_flag_t fib_entry_delete(fib_node_index_t fib_entry_index,
568 fib_source_t source);
569
Neale Ranns2303cb12018-02-21 04:57:17 -0800570extern void fib_entry_recalculate_forwarding(
571 fib_node_index_t fib_entry_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100572extern void fib_entry_contribute_urpf(fib_node_index_t path_index,
573 index_t urpf);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100574extern void fib_entry_contribute_forwarding(
575 fib_node_index_t fib_entry_index,
576 fib_forward_chain_type_t type,
577 dpo_id_t *dpo);
578extern const dpo_id_t * fib_entry_contribute_ip_forwarding(
579 fib_node_index_t fib_entry_index);
580extern adj_index_t fib_entry_get_adj_for_source(
581 fib_node_index_t fib_entry_index,
582 fib_source_t source);
583extern const int fib_entry_get_dpo_for_source (
584 fib_node_index_t fib_entry_index,
585 fib_source_t source,
586 dpo_id_t *dpo);
587
588extern adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index);
589
590extern int fib_entry_cmp_for_sort(void *i1, void *i2);
591
592extern void fib_entry_cover_changed(fib_node_index_t fib_entry);
593extern void fib_entry_cover_updated(fib_node_index_t fib_entry);
594extern int fib_entry_recursive_loop_detect(fib_node_index_t entry_index,
595 fib_node_index_t **entry_indicies);
596
597extern void fib_entry_lock(fib_node_index_t fib_entry_index);
598extern void fib_entry_unlock(fib_node_index_t fib_entry_index);
599
600extern u32 fib_entry_child_add(fib_node_index_t fib_entry_index,
601 fib_node_type_t type,
602 fib_node_index_t child_index);
603extern void fib_entry_child_remove(fib_node_index_t fib_entry_index,
604 u32 sibling_index);
605extern u32 fib_entry_get_resolving_interface(fib_node_index_t fib_entry_index);
Neale Rannsdf089a82016-10-02 16:39:06 +0100606extern u32 fib_entry_get_resolving_interface_for_source(
607 fib_node_index_t fib_entry_index,
608 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100609
Neale Ranns097fa662018-05-01 05:17:55 -0700610extern fib_route_path_t* fib_entry_encode(fib_node_index_t fib_entry_index);
611extern const fib_prefix_t* fib_entry_get_prefix(fib_node_index_t fib_entry_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100612extern u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index);
613extern void fib_entry_set_source_data(fib_node_index_t fib_entry_index,
614 fib_source_t source,
615 const void *data);
616extern const void* fib_entry_get_source_data(fib_node_index_t fib_entry_index,
617 fib_source_t source);
618
619extern fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index);
Neale Rannsdf089a82016-10-02 16:39:06 +0100620extern fib_entry_flag_t fib_entry_get_flags_for_source(
621 fib_node_index_t fib_entry_index,
622 fib_source_t source);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100623extern fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index);
624extern int fib_entry_is_sourced(fib_node_index_t fib_entry_index,
625 fib_source_t source);
626
627extern fib_node_index_t fib_entry_get_path_list(fib_node_index_t fib_entry_index);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700628extern int fib_entry_is_resolved(fib_node_index_t fib_entry_index);
Neale Ranns56f949b2018-04-25 01:41:24 -0700629extern int fib_entry_is_host(fib_node_index_t fib_entry_index);
Neale Ranns227038a2017-04-21 01:07:59 -0700630extern void fib_entry_set_flow_hash_config(fib_node_index_t fib_entry_index,
631 flow_hash_config_t hash_config);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100632
633extern void fib_entry_module_init(void);
634
Neale Ranns008dbe12018-09-07 09:32:36 -0700635extern u32 fib_entry_get_stats_index(fib_node_index_t fib_entry_index);
636
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100637/*
638 * unsafe... beware the raw pointer.
639 */
640extern fib_node_index_t fib_entry_get_index(const fib_entry_t * fib_entry);
641extern fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index);
642
643/*
644 * for testing purposes.
645 */
646extern u32 fib_entry_pool_size(void);
647
648#endif