blob: 1cc65b67cb81a55536c41c10efd2949324f7d156 [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#include <vlib/vlib.h>
17#include <vnet/vnet.h>
18#include <vnet/ip/format.h>
19#include <vnet/ip/ip.h>
20#include <vnet/dpo/drop_dpo.h>
21#include <vnet/dpo/receive_dpo.h>
22#include <vnet/dpo/load_balance_map.h>
23#include <vnet/dpo/lookup_dpo.h>
Neale Ranns43161a82017-08-12 02:12:00 -070024#include <vnet/dpo/interface_rx_dpo.h>
Neale Ranns0f26c5a2017-03-01 15:12:11 -080025#include <vnet/dpo/mpls_disposition.h>
Neale Rannsf068c3e2018-01-03 04:18:48 -080026#include <vnet/dpo/dvr_dpo.h>
Neale Ranns097fa662018-05-01 05:17:55 -070027#include <vnet/dpo/ip_null_dpo.h>
28#include <vnet/dpo/classify_dpo.h>
Neale Ranns1dbcf302019-07-19 11:44:53 +000029#include <vnet/dpo/pw_cw.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010030
31#include <vnet/adj/adj.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000032#include <vnet/adj/adj_mcast.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010033
Neale Ranns3ee44042016-10-03 13:05:48 +010034#include <vnet/fib/fib_path.h>
35#include <vnet/fib/fib_node.h>
36#include <vnet/fib/fib_table.h>
37#include <vnet/fib/fib_entry.h>
38#include <vnet/fib/fib_path_list.h>
39#include <vnet/fib/fib_internal.h>
40#include <vnet/fib/fib_urpf_list.h>
Neale Rannsa3af3372017-03-28 03:49:52 -070041#include <vnet/fib/mpls_fib.h>
Neale Ranns775f73c2018-12-20 03:01:49 -080042#include <vnet/fib/fib_path_ext.h>
Neale Ranns810086d2017-11-05 16:26:46 -080043#include <vnet/udp/udp_encap.h>
Neale Rannsd792d9c2017-10-21 10:53:20 -070044#include <vnet/bier/bier_fmask.h>
45#include <vnet/bier/bier_table.h>
46#include <vnet/bier/bier_imp.h>
Neale Ranns91286372017-12-05 13:24:04 -080047#include <vnet/bier/bier_disp_table.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010048
49/**
50 * Enurmeration of path types
51 */
52typedef enum fib_path_type_t_ {
53 /**
54 * Marker. Add new types after this one.
55 */
56 FIB_PATH_TYPE_FIRST = 0,
57 /**
58 * Attached-nexthop. An interface and a nexthop are known.
59 */
60 FIB_PATH_TYPE_ATTACHED_NEXT_HOP = FIB_PATH_TYPE_FIRST,
61 /**
62 * attached. Only the interface is known.
63 */
64 FIB_PATH_TYPE_ATTACHED,
65 /**
66 * recursive. Only the next-hop is known.
67 */
68 FIB_PATH_TYPE_RECURSIVE,
69 /**
70 * special. nothing is known. so we drop.
71 */
72 FIB_PATH_TYPE_SPECIAL,
73 /**
74 * exclusive. user provided adj.
75 */
76 FIB_PATH_TYPE_EXCLUSIVE,
77 /**
78 * deag. Link to a lookup adj in the next table
79 */
80 FIB_PATH_TYPE_DEAG,
81 /**
Neale Ranns0f26c5a2017-03-01 15:12:11 -080082 * interface receive.
83 */
84 FIB_PATH_TYPE_INTF_RX,
85 /**
Neale Ranns81458422018-03-12 06:59:36 -070086 * Path resolves via a UDP encap object.
Neale Ranns810086d2017-11-05 16:26:46 -080087 */
88 FIB_PATH_TYPE_UDP_ENCAP,
89 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010090 * receive. it's for-us.
91 */
92 FIB_PATH_TYPE_RECEIVE,
93 /**
Neale Rannsd792d9c2017-10-21 10:53:20 -070094 * bier-imp. it's via a BIER imposition.
95 */
96 FIB_PATH_TYPE_BIER_IMP,
97 /**
98 * bier-fmask. it's via a BIER ECMP-table.
99 */
100 FIB_PATH_TYPE_BIER_TABLE,
101 /**
102 * bier-fmask. it's via a BIER f-mask.
103 */
104 FIB_PATH_TYPE_BIER_FMASK,
105 /**
Neale Rannsf068c3e2018-01-03 04:18:48 -0800106 * via a DVR.
107 */
108 FIB_PATH_TYPE_DVR,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100109} __attribute__ ((packed)) fib_path_type_t;
110
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100111#define FIB_PATH_TYPES { \
112 [FIB_PATH_TYPE_ATTACHED_NEXT_HOP] = "attached-nexthop", \
113 [FIB_PATH_TYPE_ATTACHED] = "attached", \
114 [FIB_PATH_TYPE_RECURSIVE] = "recursive", \
115 [FIB_PATH_TYPE_SPECIAL] = "special", \
116 [FIB_PATH_TYPE_EXCLUSIVE] = "exclusive", \
117 [FIB_PATH_TYPE_DEAG] = "deag", \
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800118 [FIB_PATH_TYPE_INTF_RX] = "intf-rx", \
Neale Ranns810086d2017-11-05 16:26:46 -0800119 [FIB_PATH_TYPE_UDP_ENCAP] = "udp-encap", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100120 [FIB_PATH_TYPE_RECEIVE] = "receive", \
Neale Rannsd792d9c2017-10-21 10:53:20 -0700121 [FIB_PATH_TYPE_BIER_IMP] = "bier-imp", \
122 [FIB_PATH_TYPE_BIER_TABLE] = "bier-table", \
123 [FIB_PATH_TYPE_BIER_FMASK] = "bier-fmask", \
Neale Rannsf068c3e2018-01-03 04:18:48 -0800124 [FIB_PATH_TYPE_DVR] = "dvr", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100125}
126
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100127/**
128 * Enurmeration of path operational (i.e. derived) attributes
129 */
130typedef enum fib_path_oper_attribute_t_ {
131 /**
132 * Marker. Add new types after this one.
133 */
134 FIB_PATH_OPER_ATTRIBUTE_FIRST = 0,
135 /**
136 * The path forms part of a recursive loop.
137 */
138 FIB_PATH_OPER_ATTRIBUTE_RECURSIVE_LOOP = FIB_PATH_OPER_ATTRIBUTE_FIRST,
139 /**
140 * The path is resolved
141 */
142 FIB_PATH_OPER_ATTRIBUTE_RESOLVED,
143 /**
144 * The path has become a permanent drop.
145 */
146 FIB_PATH_OPER_ATTRIBUTE_DROP,
147 /**
148 * Marker. Add new types before this one, then update it.
149 */
150 FIB_PATH_OPER_ATTRIBUTE_LAST = FIB_PATH_OPER_ATTRIBUTE_DROP,
151} __attribute__ ((packed)) fib_path_oper_attribute_t;
152
153/**
154 * The maximum number of path operational attributes
155 */
156#define FIB_PATH_OPER_ATTRIBUTE_MAX (FIB_PATH_OPER_ATTRIBUTE_LAST + 1)
157
158#define FIB_PATH_OPER_ATTRIBUTES { \
159 [FIB_PATH_OPER_ATTRIBUTE_RECURSIVE_LOOP] = "recursive-loop", \
160 [FIB_PATH_OPER_ATTRIBUTE_RESOLVED] = "resolved", \
161 [FIB_PATH_OPER_ATTRIBUTE_DROP] = "drop", \
162}
163
164#define FOR_EACH_FIB_PATH_OPER_ATTRIBUTE(_item) \
165 for (_item = FIB_PATH_OPER_ATTRIBUTE_FIRST; \
166 _item <= FIB_PATH_OPER_ATTRIBUTE_LAST; \
167 _item++)
168
169/**
170 * Path flags from the attributes
171 */
172typedef enum fib_path_oper_flags_t_ {
173 FIB_PATH_OPER_FLAG_NONE = 0,
174 FIB_PATH_OPER_FLAG_RECURSIVE_LOOP = (1 << FIB_PATH_OPER_ATTRIBUTE_RECURSIVE_LOOP),
175 FIB_PATH_OPER_FLAG_DROP = (1 << FIB_PATH_OPER_ATTRIBUTE_DROP),
176 FIB_PATH_OPER_FLAG_RESOLVED = (1 << FIB_PATH_OPER_ATTRIBUTE_RESOLVED),
177} __attribute__ ((packed)) fib_path_oper_flags_t;
178
179/**
180 * A FIB path
181 */
182typedef struct fib_path_t_ {
183 /**
184 * A path is a node in the FIB graph.
185 */
186 fib_node_t fp_node;
187
188 /**
189 * The index of the path-list to which this path belongs
190 */
191 u32 fp_pl_index;
192
193 /**
194 * This marks the start of the memory area used to hash
195 * the path
196 */
197 STRUCT_MARK(path_hash_start);
198
199 /**
200 * Configuration Flags
201 */
202 fib_path_cfg_flags_t fp_cfg_flags;
203
204 /**
205 * The type of the path. This is the selector for the union
206 */
207 fib_path_type_t fp_type;
208
209 /**
210 * The protocol of the next-hop, i.e. the address family of the
211 * next-hop's address. We can't derive this from the address itself
212 * since the address can be all zeros
213 */
Neale Rannsda78f952017-05-24 09:15:43 -0700214 dpo_proto_t fp_nh_proto;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100215
216 /**
Neale Ranns57b58602017-07-15 07:37:25 -0700217 * UCMP [unnormalised] weigth
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100218 */
Neale Rannsa0a908f2017-08-01 11:40:03 -0700219 u8 fp_weight;
220
Neale Ranns57b58602017-07-15 07:37:25 -0700221 /**
222 * A path preference. 0 is the best.
223 * Only paths of the best preference, that are 'up', are considered
224 * for forwarding.
225 */
Neale Rannsa0a908f2017-08-01 11:40:03 -0700226 u8 fp_preference;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100227
228 /**
229 * per-type union of the data required to resolve the path
230 */
231 union {
232 struct {
233 /**
234 * The next-hop
235 */
236 ip46_address_t fp_nh;
237 /**
238 * The interface
239 */
240 u32 fp_interface;
241 } attached_next_hop;
242 struct {
243 /**
Neale Rannse2fe0972020-11-26 08:37:27 +0000244 * The Connected local address
245 */
246 fib_prefix_t fp_connected;
247 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100248 * The interface
249 */
250 u32 fp_interface;
251 } attached;
252 struct {
Neale Rannsad422ed2016-11-02 14:20:04 +0000253 union
254 {
255 /**
256 * The next-hop
257 */
258 ip46_address_t fp_ip;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800259 struct {
260 /**
261 * The local label to resolve through.
262 */
263 mpls_label_t fp_local_label;
264 /**
265 * The EOS bit of the resolving label
266 */
267 mpls_eos_bit_t fp_eos;
268 };
Neale Rannsad422ed2016-11-02 14:20:04 +0000269 } fp_nh;
Neale Rannsa705f712020-12-10 08:51:24 +0000270 /**
271 * The FIB table index in which to find the next-hop.
272 */
273 fib_node_index_t fp_tbl_id;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100274 } recursive;
275 struct {
Neale Rannsd792d9c2017-10-21 10:53:20 -0700276 /**
Neale Ranns91286372017-12-05 13:24:04 -0800277 * BIER FMask ID
Neale Rannsd792d9c2017-10-21 10:53:20 -0700278 */
Neale Ranns91286372017-12-05 13:24:04 -0800279 index_t fp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700280 } bier_fmask;
281 struct {
282 /**
283 * The BIER table's ID
284 */
285 bier_table_id_t fp_bier_tbl;
286 } bier_table;
287 struct {
288 /**
289 * The BIER imposition object
290 * this is part of the path's key, since the index_t
291 * of an imposition object is the object's key.
292 */
293 index_t fp_bier_imp;
294 } bier_imp;
295 struct {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100296 /**
Neale Rannsad422ed2016-11-02 14:20:04 +0000297 * The FIB index in which to perfom the next lookup
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100298 */
299 fib_node_index_t fp_tbl_id;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800300 /**
301 * The RPF-ID to tag the packets with
302 */
303 fib_rpf_id_t fp_rpf_id;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100304 } deag;
305 struct {
306 } special;
307 struct {
308 /**
309 * The user provided 'exclusive' DPO
310 */
311 dpo_id_t fp_ex_dpo;
312 } exclusive;
313 struct {
314 /**
315 * The interface on which the local address is configured
316 */
317 u32 fp_interface;
318 /**
319 * The next-hop
320 */
321 ip46_address_t fp_addr;
322 } receive;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800323 struct {
324 /**
325 * The interface on which the packets will be input.
326 */
327 u32 fp_interface;
328 } intf_rx;
Neale Ranns810086d2017-11-05 16:26:46 -0800329 struct {
330 /**
331 * The UDP Encap object this path resolves through
332 */
333 u32 fp_udp_encap_id;
334 } udp_encap;
Neale Rannsf068c3e2018-01-03 04:18:48 -0800335 struct {
336 /**
Neale Ranns097fa662018-05-01 05:17:55 -0700337 * The UDP Encap object this path resolves through
338 */
339 u32 fp_classify_table_id;
340 } classify;
341 struct {
342 /**
Neale Rannsf068c3e2018-01-03 04:18:48 -0800343 * The interface
344 */
345 u32 fp_interface;
346 } dvr;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100347 };
348 STRUCT_MARK(path_hash_end);
349
350 /**
Neale Rannsa705f712020-12-10 08:51:24 +0000351 * Members in this last section represent information that is
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100352 * dervied during resolution. It should not be copied to new paths
353 * nor compared.
354 */
355
356 /**
357 * Operational Flags
358 */
359 fib_path_oper_flags_t fp_oper_flags;
360
Neale Rannsd792d9c2017-10-21 10:53:20 -0700361 union {
362 /**
363 * the resolving via fib. not part of the union, since it it not part
364 * of the path's hash.
365 */
366 fib_node_index_t fp_via_fib;
367 /**
Neale Rannsd792d9c2017-10-21 10:53:20 -0700368 * the resolving bier-table
369 */
370 index_t fp_via_bier_tbl;
Neale Ranns91286372017-12-05 13:24:04 -0800371 /**
372 * the resolving bier-fmask
373 */
374 index_t fp_via_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700375 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100376
377 /**
378 * The Data-path objects through which this path resolves for IP.
379 */
380 dpo_id_t fp_dpo;
381
382 /**
383 * the index of this path in the parent's child list.
384 */
385 u32 fp_sibling;
386} fib_path_t;
387
388/*
389 * Array of strings/names for the path types and attributes
390 */
391static const char *fib_path_type_names[] = FIB_PATH_TYPES;
392static const char *fib_path_oper_attribute_names[] = FIB_PATH_OPER_ATTRIBUTES;
393static const char *fib_path_cfg_attribute_names[] = FIB_PATH_CFG_ATTRIBUTES;
394
395/*
396 * The memory pool from which we allocate all the paths
397 */
398static fib_path_t *fib_path_pool;
399
Neale Ranns710071b2018-09-24 12:36:26 +0000400/**
401 * the logger
402 */
403vlib_log_class_t fib_path_logger;
404
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100405/*
406 * Debug macro
407 */
Neale Ranns710071b2018-09-24 12:36:26 +0000408#define FIB_PATH_DBG(_p, _fmt, _args...) \
409{ \
410 vlib_log_debug (fib_path_logger, \
411 "[%U]: " _fmt, \
412 format_fib_path, fib_path_get_index(_p), 0, \
413 FIB_PATH_FORMAT_FLAGS_ONE_LINE, \
414 ##_args); \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100415}
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100416
417static fib_path_t *
418fib_path_get (fib_node_index_t index)
419{
420 return (pool_elt_at_index(fib_path_pool, index));
421}
422
423static fib_node_index_t
424fib_path_get_index (fib_path_t *path)
425{
426 return (path - fib_path_pool);
427}
428
429static fib_node_t *
430fib_path_get_node (fib_node_index_t index)
431{
432 return ((fib_node_t*)fib_path_get(index));
433}
434
435static fib_path_t*
436fib_path_from_fib_node (fib_node_t *node)
437{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100438 ASSERT(FIB_NODE_TYPE_PATH == node->fn_type);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100439 return ((fib_path_t*)node);
440}
441
442u8 *
443format_fib_path (u8 * s, va_list * args)
444{
Neale Ranns91286372017-12-05 13:24:04 -0800445 fib_node_index_t path_index = va_arg (*args, fib_node_index_t);
446 u32 indent = va_arg (*args, u32);
Neale Ranns710071b2018-09-24 12:36:26 +0000447 fib_format_path_flags_t flags = va_arg (*args, fib_format_path_flags_t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100448 vnet_main_t * vnm = vnet_get_main();
449 fib_path_oper_attribute_t oattr;
450 fib_path_cfg_attribute_t cattr;
Neale Ranns91286372017-12-05 13:24:04 -0800451 fib_path_t *path;
Neale Ranns710071b2018-09-24 12:36:26 +0000452 const char *eol;
453
454 if (flags & FIB_PATH_FORMAT_FLAGS_ONE_LINE)
455 {
456 eol = "";
457 }
458 else
459 {
460 eol = "\n";
461 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100462
Neale Ranns91286372017-12-05 13:24:04 -0800463 path = fib_path_get(path_index);
464
465 s = format (s, "%Upath:[%d] ", format_white_space, indent,
466 fib_path_get_index(path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100467 s = format (s, "pl-index:%d ", path->fp_pl_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700468 s = format (s, "%U ", format_dpo_proto, path->fp_nh_proto);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100469 s = format (s, "weight=%d ", path->fp_weight);
Neale Ranns57b58602017-07-15 07:37:25 -0700470 s = format (s, "pref=%d ", path->fp_preference);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100471 s = format (s, "%s: ", fib_path_type_names[path->fp_type]);
472 if (FIB_PATH_OPER_FLAG_NONE != path->fp_oper_flags) {
473 s = format(s, " oper-flags:");
474 FOR_EACH_FIB_PATH_OPER_ATTRIBUTE(oattr) {
475 if ((1<<oattr) & path->fp_oper_flags) {
476 s = format (s, "%s,", fib_path_oper_attribute_names[oattr]);
477 }
478 }
479 }
480 if (FIB_PATH_CFG_FLAG_NONE != path->fp_cfg_flags) {
481 s = format(s, " cfg-flags:");
482 FOR_EACH_FIB_PATH_CFG_ATTRIBUTE(cattr) {
483 if ((1<<cattr) & path->fp_cfg_flags) {
484 s = format (s, "%s,", fib_path_cfg_attribute_names[cattr]);
485 }
486 }
487 }
Neale Ranns710071b2018-09-24 12:36:26 +0000488 if (!(flags & FIB_PATH_FORMAT_FLAGS_ONE_LINE))
489 s = format(s, "\n%U", format_white_space, indent+2);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100490
491 switch (path->fp_type)
492 {
493 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
494 s = format (s, "%U", format_ip46_address,
495 &path->attached_next_hop.fp_nh,
496 IP46_TYPE_ANY);
497 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_DROP)
498 {
499 s = format (s, " if_index:%d", path->attached_next_hop.fp_interface);
500 }
501 else
502 {
503 s = format (s, " %U",
504 format_vnet_sw_interface_name,
505 vnm,
506 vnet_get_sw_interface(
507 vnm,
508 path->attached_next_hop.fp_interface));
509 if (vnet_sw_interface_is_p2p(vnet_get_main(),
510 path->attached_next_hop.fp_interface))
511 {
512 s = format (s, " (p2p)");
513 }
514 }
515 if (!dpo_id_is_valid(&path->fp_dpo))
516 {
Neale Ranns710071b2018-09-24 12:36:26 +0000517 s = format(s, "%s%Uunresolved", eol, format_white_space, indent+2);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100518 }
519 else
520 {
Neale Ranns710071b2018-09-24 12:36:26 +0000521 s = format(s, "%s%U%U", eol,
Neale Ranns91286372017-12-05 13:24:04 -0800522 format_white_space, indent,
523 format_dpo_id,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100524 &path->fp_dpo, 13);
525 }
526 break;
527 case FIB_PATH_TYPE_ATTACHED:
528 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_DROP)
529 {
Neale Ranns91286372017-12-05 13:24:04 -0800530 s = format (s, "if_index:%d", path->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100531 }
532 else
533 {
534 s = format (s, " %U",
535 format_vnet_sw_interface_name,
536 vnm,
537 vnet_get_sw_interface(
538 vnm,
539 path->attached.fp_interface));
540 }
541 break;
542 case FIB_PATH_TYPE_RECURSIVE:
Neale Rannsda78f952017-05-24 09:15:43 -0700543 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +0000544 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800545 s = format (s, "via %U %U",
Neale Rannsad422ed2016-11-02 14:20:04 +0000546 format_mpls_unicast_label,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800547 path->recursive.fp_nh.fp_local_label,
548 format_mpls_eos_bit,
549 path->recursive.fp_nh.fp_eos);
Neale Rannsad422ed2016-11-02 14:20:04 +0000550 }
551 else
552 {
553 s = format (s, "via %U",
554 format_ip46_address,
555 &path->recursive.fp_nh.fp_ip,
556 IP46_TYPE_ANY);
557 }
558 s = format (s, " in fib:%d",
559 path->recursive.fp_tbl_id,
560 path->fp_via_fib);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100561 s = format (s, " via-fib:%d", path->fp_via_fib);
562 s = format (s, " via-dpo:[%U:%d]",
563 format_dpo_type, path->fp_dpo.dpoi_type,
564 path->fp_dpo.dpoi_index);
565
566 break;
Neale Ranns810086d2017-11-05 16:26:46 -0800567 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns91286372017-12-05 13:24:04 -0800568 s = format (s, "UDP-encap ID:%d", path->udp_encap.fp_udp_encap_id);
Neale Ranns810086d2017-11-05 16:26:46 -0800569 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700570 case FIB_PATH_TYPE_BIER_TABLE:
571 s = format (s, "via bier-table:[%U}",
572 format_bier_table_id,
573 &path->bier_table.fp_bier_tbl);
574 s = format (s, " via-dpo:[%U:%d]",
575 format_dpo_type, path->fp_dpo.dpoi_type,
576 path->fp_dpo.dpoi_index);
577 break;
578 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -0800579 s = format (s, "via-fmask:%d", path->bier_fmask.fp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700580 s = format (s, " via-dpo:[%U:%d]",
581 format_dpo_type, path->fp_dpo.dpoi_type,
582 path->fp_dpo.dpoi_index);
583 break;
584 case FIB_PATH_TYPE_BIER_IMP:
585 s = format (s, "via %U", format_bier_imp,
586 path->bier_imp.fp_bier_imp, 0, BIER_SHOW_BRIEF);
587 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -0800588 case FIB_PATH_TYPE_DVR:
589 s = format (s, " %U",
590 format_vnet_sw_interface_name,
591 vnm,
592 vnet_get_sw_interface(
593 vnm,
594 path->dvr.fp_interface));
595 break;
Neale Ranns775f73c2018-12-20 03:01:49 -0800596 case FIB_PATH_TYPE_DEAG:
597 s = format (s, " %sfib-index:%d",
598 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID ? "m" : ""),
599 path->deag.fp_tbl_id);
600 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100601 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800602 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100603 case FIB_PATH_TYPE_SPECIAL:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100604 case FIB_PATH_TYPE_EXCLUSIVE:
605 if (dpo_id_is_valid(&path->fp_dpo))
606 {
607 s = format(s, "%U", format_dpo_id,
Neale Ranns91286372017-12-05 13:24:04 -0800608 &path->fp_dpo, indent+2);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100609 }
610 break;
611 }
612 return (s);
613}
614
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100615/*
616 * fib_path_last_lock_gone
617 *
618 * We don't share paths, we share path lists, so the [un]lock functions
619 * are no-ops
620 */
621static void
622fib_path_last_lock_gone (fib_node_t *node)
623{
624 ASSERT(0);
625}
626
Neale Rannsa4349552020-02-18 15:23:29 +0000627static fib_path_t*
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100628fib_path_attached_next_hop_get_adj (fib_path_t *path,
Neale Ranns3fd99042019-12-16 00:53:11 +0000629 vnet_link_t link,
630 dpo_id_t *dpo)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100631{
Neale Rannsa4349552020-02-18 15:23:29 +0000632 fib_node_index_t fib_path_index;
Neale Ranns3fd99042019-12-16 00:53:11 +0000633 fib_protocol_t nh_proto;
634 adj_index_t ai;
635
Neale Rannsa4349552020-02-18 15:23:29 +0000636 fib_path_index = fib_path_get_index(path);
Neale Ranns3fd99042019-12-16 00:53:11 +0000637 nh_proto = dpo_proto_to_fib(path->fp_nh_proto);
638
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100639 if (vnet_sw_interface_is_p2p(vnet_get_main(),
640 path->attached_next_hop.fp_interface))
641 {
642 /*
643 * if the interface is p2p then the adj for the specific
644 * neighbour on that link will never exist. on p2p links
645 * the subnet address (the attached route) links to the
646 * auto-adj (see below), we want that adj here too.
647 */
Neale Ranns3fd99042019-12-16 00:53:11 +0000648 ai = adj_nbr_add_or_lock(nh_proto, link, &zero_addr,
649 path->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100650 }
651 else
652 {
Neale Ranns3fd99042019-12-16 00:53:11 +0000653 ai = adj_nbr_add_or_lock(nh_proto, link,
654 &path->attached_next_hop.fp_nh,
655 path->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100656 }
Neale Ranns3fd99042019-12-16 00:53:11 +0000657
658 dpo_set(dpo, DPO_ADJACENCY, vnet_link_to_dpo_proto(link), ai);
659 adj_unlock(ai);
Neale Rannsa4349552020-02-18 15:23:29 +0000660
661 return (fib_path_get(fib_path_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100662}
663
664static void
665fib_path_attached_next_hop_set (fib_path_t *path)
666{
BenoƮt Gannee9d7b092021-06-08 18:44:37 +0200667 dpo_id_t tmp = DPO_INVALID;
668
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100669 /*
Lijian.Zhang33af8c12019-09-16 16:22:36 +0800670 * resolve directly via the adjacency discribed by the
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100671 * interface and next-hop
672 */
BenoƮt Gannee9d7b092021-06-08 18:44:37 +0200673 dpo_copy (&tmp, &path->fp_dpo);
Neale Rannsa4349552020-02-18 15:23:29 +0000674 path = fib_path_attached_next_hop_get_adj(path,
675 dpo_proto_to_link(path->fp_nh_proto),
BenoƮt Gannee9d7b092021-06-08 18:44:37 +0200676 &tmp);
677 dpo_copy(&path->fp_dpo, &tmp);
678 dpo_reset(&tmp);
Neale Ranns3fd99042019-12-16 00:53:11 +0000679 ASSERT(dpo_is_adj(&path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100680
681 /*
682 * become a child of the adjacency so we receive updates
683 * when its rewrite changes
684 */
685 path->fp_sibling = adj_child_add(path->fp_dpo.dpoi_index,
686 FIB_NODE_TYPE_PATH,
687 fib_path_get_index(path));
Neale Ranns88fc83e2017-04-05 08:11:14 -0700688
Neale Ranns3e2e1902019-03-14 09:21:02 -0700689 if (!vnet_sw_interface_is_up(vnet_get_main(),
690 path->attached_next_hop.fp_interface) ||
Neale Ranns88fc83e2017-04-05 08:11:14 -0700691 !adj_is_up(path->fp_dpo.dpoi_index))
692 {
693 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
694 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100695}
696
Neale Ranns3fd99042019-12-16 00:53:11 +0000697static void
Neale Ranns8c4611b2017-05-23 03:43:47 -0700698fib_path_attached_get_adj (fib_path_t *path,
Neale Ranns3fd99042019-12-16 00:53:11 +0000699 vnet_link_t link,
700 dpo_id_t *dpo)
Neale Ranns8c4611b2017-05-23 03:43:47 -0700701{
Neale Ranns3fd99042019-12-16 00:53:11 +0000702 fib_protocol_t nh_proto;
703
704 nh_proto = dpo_proto_to_fib(path->fp_nh_proto);
705
Neale Ranns8c4611b2017-05-23 03:43:47 -0700706 if (vnet_sw_interface_is_p2p(vnet_get_main(),
707 path->attached.fp_interface))
708 {
709 /*
710 * point-2-point interfaces do not require a glean, since
711 * there is nothing to ARP. Install a rewrite/nbr adj instead
712 */
Neale Ranns3fd99042019-12-16 00:53:11 +0000713 adj_index_t ai;
714
715 ai = adj_nbr_add_or_lock(nh_proto, link, &zero_addr,
716 path->attached.fp_interface);
717
718 dpo_set(dpo, DPO_ADJACENCY, vnet_link_to_dpo_proto(link), ai);
719 adj_unlock(ai);
720 }
721 else if (vnet_sw_interface_is_nbma(vnet_get_main(),
722 path->attached.fp_interface))
723 {
724 dpo_copy(dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns8c4611b2017-05-23 03:43:47 -0700725 }
726 else
727 {
Neale Ranns3fd99042019-12-16 00:53:11 +0000728 adj_index_t ai;
729
730 ai = adj_glean_add_or_lock(nh_proto, link,
731 path->attached.fp_interface,
Neale Rannse2fe0972020-11-26 08:37:27 +0000732 &path->attached.fp_connected);
Neale Ranns3fd99042019-12-16 00:53:11 +0000733 dpo_set(dpo, DPO_ADJACENCY_GLEAN, vnet_link_to_dpo_proto(link), ai);
734 adj_unlock(ai);
Neale Ranns8c4611b2017-05-23 03:43:47 -0700735 }
736}
737
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100738/*
739 * create of update the paths recursive adj
740 */
741static void
742fib_path_recursive_adj_update (fib_path_t *path,
743 fib_forward_chain_type_t fct,
744 dpo_id_t *dpo)
745{
Neale Ranns948e00f2016-10-20 13:39:34 +0100746 dpo_id_t via_dpo = DPO_INVALID;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100747
748 /*
749 * get the DPO to resolve through from the via-entry
750 */
751 fib_entry_contribute_forwarding(path->fp_via_fib,
752 fct,
753 &via_dpo);
754
755
756 /*
757 * hope for the best - clear if restrictions apply.
758 */
759 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
760
761 /*
762 * Validate any recursion constraints and over-ride the via
763 * adj if not met
764 */
765 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RECURSIVE_LOOP)
766 {
767 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700768 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100769 }
770 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_HOST)
771 {
772 /*
773 * the via FIB must be a host route.
774 * note the via FIB just added will always be a host route
775 * since it is an RR source added host route. So what we need to
776 * check is whether the route has other sources. If it does then
777 * some other source has added it as a host route. If it doesn't
778 * then it was added only here and inherits forwarding from a cover.
779 * the cover is not a host route.
780 * The RR source is the lowest priority source, so we check if it
781 * is the best. if it is there are no other sources.
782 */
783 if (fib_entry_get_best_source(path->fp_via_fib) >= FIB_SOURCE_RR)
784 {
785 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700786 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100787
788 /*
789 * PIC edge trigger. let the load-balance maps know
790 */
791 load_balance_map_path_state_change(fib_path_get_index(path));
792 }
793 }
794 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED)
795 {
796 /*
797 * RR source entries inherit the flags from the cover, so
798 * we can check the via directly
799 */
800 if (!(FIB_ENTRY_FLAG_ATTACHED & fib_entry_get_flags(path->fp_via_fib)))
801 {
802 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700803 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100804
805 /*
806 * PIC edge trigger. let the load-balance maps know
807 */
808 load_balance_map_path_state_change(fib_path_get_index(path));
809 }
810 }
Neale Ranns88fc83e2017-04-05 08:11:14 -0700811 /*
812 * check for over-riding factors on the FIB entry itself
813 */
814 if (!fib_entry_is_resolved(path->fp_via_fib))
815 {
816 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700817 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns88fc83e2017-04-05 08:11:14 -0700818
819 /*
820 * PIC edge trigger. let the load-balance maps know
821 */
822 load_balance_map_path_state_change(fib_path_get_index(path));
823 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100824
825 /*
Neale Ranns57b58602017-07-15 07:37:25 -0700826 * If this path is contributing a drop, then it's not resolved
827 */
828 if (dpo_is_drop(&via_dpo) || load_balance_is_drop(&via_dpo))
829 {
830 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
831 }
832
833 /*
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100834 * update the path's contributed DPO
835 */
836 dpo_copy(dpo, &via_dpo);
837
Neale Rannsda78f952017-05-24 09:15:43 -0700838 FIB_PATH_DBG(path, "recursive update:");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100839
840 dpo_reset(&via_dpo);
841}
842
843/*
Neale Rannsd792d9c2017-10-21 10:53:20 -0700844 * re-evaulate the forwarding state for a via fmask path
845 */
846static void
847fib_path_bier_fmask_update (fib_path_t *path,
848 dpo_id_t *dpo)
849{
Neale Ranns91286372017-12-05 13:24:04 -0800850 bier_fmask_contribute_forwarding(path->bier_fmask.fp_bier_fmask, dpo);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700851
852 /*
853 * if we are stakcing on the drop, then the path is not resolved
854 */
855 if (dpo_is_drop(dpo))
856 {
857 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
858 }
859 else
860 {
861 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
862 }
863}
864
865/*
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100866 * fib_path_is_permanent_drop
867 *
868 * Return !0 if the path is configured to permanently drop,
869 * despite other attributes.
870 */
871static int
872fib_path_is_permanent_drop (fib_path_t *path)
873{
874 return ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP) ||
875 (path->fp_oper_flags & FIB_PATH_OPER_FLAG_DROP));
876}
877
878/*
879 * fib_path_unresolve
880 *
881 * Remove our dependency on the resolution target
882 */
883static void
884fib_path_unresolve (fib_path_t *path)
885{
886 /*
887 * the forced drop path does not need unresolving
888 */
889 if (fib_path_is_permanent_drop(path))
890 {
891 return;
892 }
893
894 switch (path->fp_type)
895 {
896 case FIB_PATH_TYPE_RECURSIVE:
897 if (FIB_NODE_INDEX_INVALID != path->fp_via_fib)
898 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100899 fib_entry_child_remove(path->fp_via_fib,
900 path->fp_sibling);
Neale Ranns097fa662018-05-01 05:17:55 -0700901 fib_table_entry_special_remove(path->recursive.fp_tbl_id,
902 fib_entry_get_prefix(path->fp_via_fib),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100903 FIB_SOURCE_RR);
Neale Ranns6fff24a2018-09-10 19:14:07 -0700904 fib_table_unlock(path->recursive.fp_tbl_id,
905 dpo_proto_to_fib(path->fp_nh_proto),
906 FIB_SOURCE_RR);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100907 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
908 }
909 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700910 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -0800911 bier_fmask_child_remove(path->fp_via_bier_fmask,
912 path->fp_sibling);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700913 break;
914 case FIB_PATH_TYPE_BIER_IMP:
915 bier_imp_unlock(path->fp_dpo.dpoi_index);
916 break;
917 case FIB_PATH_TYPE_BIER_TABLE:
918 bier_table_ecmp_unlock(path->fp_via_bier_tbl);
919 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100920 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
Neale Ranns6f631152017-10-03 08:20:21 -0700921 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns3fd99042019-12-16 00:53:11 +0000922 if (dpo_is_adj(&path->fp_dpo))
923 adj_child_remove(path->fp_dpo.dpoi_index,
924 path->fp_sibling);
Neale Ranns6f631152017-10-03 08:20:21 -0700925 break;
Neale Ranns810086d2017-11-05 16:26:46 -0800926 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns9c0a3c42018-09-07 08:57:41 -0700927 udp_encap_unlock(path->fp_dpo.dpoi_index);
Neale Ranns810086d2017-11-05 16:26:46 -0800928 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100929 case FIB_PATH_TYPE_EXCLUSIVE:
930 dpo_reset(&path->exclusive.fp_ex_dpo);
931 break;
932 case FIB_PATH_TYPE_SPECIAL:
933 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800934 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100935 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -0800936 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100937 /*
938 * these hold only the path's DPO, which is reset below.
939 */
940 break;
941 }
942
943 /*
944 * release the adj we were holding and pick up the
945 * drop just in case.
946 */
947 dpo_reset(&path->fp_dpo);
948 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
949
950 return;
951}
952
953static fib_forward_chain_type_t
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800954fib_path_to_chain_type (const fib_path_t *path)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100955{
Neale Rannsda78f952017-05-24 09:15:43 -0700956 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100957 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800958 if (FIB_PATH_TYPE_RECURSIVE == path->fp_type &&
959 MPLS_EOS == path->recursive.fp_nh.fp_eos)
960 {
961 return (FIB_FORW_CHAIN_TYPE_MPLS_EOS);
962 }
963 else
964 {
Neale Ranns9f171f52017-04-11 08:56:53 -0700965 return (FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800966 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100967 }
Neale Rannsda78f952017-05-24 09:15:43 -0700968 else
969 {
970 return (fib_forw_chain_type_from_dpo_proto(path->fp_nh_proto));
971 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100972}
973
974/*
975 * fib_path_back_walk_notify
976 *
977 * A back walk has reach this path.
978 */
979static fib_node_back_walk_rc_t
980fib_path_back_walk_notify (fib_node_t *node,
981 fib_node_back_walk_ctx_t *ctx)
982{
983 fib_path_t *path;
984
985 path = fib_path_from_fib_node(node);
986
Neale Ranns710071b2018-09-24 12:36:26 +0000987 FIB_PATH_DBG(path, "bw:%U",
988 format_fib_node_bw_reason, ctx->fnbw_reason);
989
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100990 switch (path->fp_type)
991 {
992 case FIB_PATH_TYPE_RECURSIVE:
993 if (FIB_NODE_BW_REASON_FLAG_EVALUATE & ctx->fnbw_reason)
994 {
995 /*
996 * modify the recursive adjacency to use the new forwarding
997 * of the via-fib.
998 * this update is visible to packets in flight in the DP.
999 */
1000 fib_path_recursive_adj_update(
1001 path,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001002 fib_path_to_chain_type(path),
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001003 &path->fp_dpo);
1004 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001005 if ((FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason) ||
Neale Ranns8f5fef22020-12-21 08:29:34 +00001006 (FIB_NODE_BW_REASON_FLAG_ADJ_MTU & ctx->fnbw_reason) ||
Neale Rannsad95b5d2016-11-10 20:35:14 +00001007 (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason))
Neale Rannsb80c5362016-10-08 13:03:40 +01001008 {
1009 /*
1010 * ADJ updates (complete<->incomplete) do not need to propagate to
1011 * recursive entries.
1012 * The only reason its needed as far back as here, is that the adj
1013 * and the incomplete adj are a different DPO type, so the LBs need
1014 * to re-stack.
1015 * If this walk was quashed in the fib_entry, then any non-fib_path
1016 * children (like tunnels that collapse out the LB when they stack)
1017 * would not see the update.
1018 */
1019 return (FIB_NODE_BACK_WALK_CONTINUE);
1020 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001021 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001022 case FIB_PATH_TYPE_BIER_FMASK:
1023 if (FIB_NODE_BW_REASON_FLAG_EVALUATE & ctx->fnbw_reason)
1024 {
1025 /*
1026 * update to use the BIER fmask's new forwading
1027 */
1028 fib_path_bier_fmask_update(path, &path->fp_dpo);
1029 }
1030 if ((FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason) ||
1031 (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason))
1032 {
1033 /*
1034 * ADJ updates (complete<->incomplete) do not need to propagate to
1035 * recursive entries.
1036 * The only reason its needed as far back as here, is that the adj
1037 * and the incomplete adj are a different DPO type, so the LBs need
1038 * to re-stack.
1039 * If this walk was quashed in the fib_entry, then any non-fib_path
1040 * children (like tunnels that collapse out the LB when they stack)
1041 * would not see the update.
1042 */
1043 return (FIB_NODE_BACK_WALK_CONTINUE);
1044 }
1045 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001046 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1047 /*
1048FIXME comment
1049 * ADJ_UPDATE backwalk pass silently through here and up to
1050 * the path-list when the multipath adj collapse occurs.
1051 * The reason we do this is that the assumtption is that VPP
1052 * runs in an environment where the Control-Plane is remote
1053 * and hence reacts slowly to link up down. In order to remove
1054 * this down link from the ECMP set quickly, we back-walk.
1055 * VPP also has dedicated CPUs, so we are not stealing resources
1056 * from the CP to do so.
1057 */
1058 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_UP & ctx->fnbw_reason)
1059 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001060 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED)
1061 {
1062 /*
1063 * alreday resolved. no need to walk back again
1064 */
1065 return (FIB_NODE_BACK_WALK_CONTINUE);
1066 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001067 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1068 }
1069 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN & ctx->fnbw_reason)
1070 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001071 if (!(path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED))
1072 {
1073 /*
1074 * alreday unresolved. no need to walk back again
1075 */
1076 return (FIB_NODE_BACK_WALK_CONTINUE);
1077 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001078 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1079 }
1080 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE & ctx->fnbw_reason)
1081 {
1082 /*
1083 * The interface this path resolves through has been deleted.
1084 * This will leave the path in a permanent drop state. The route
1085 * needs to be removed and readded (and hence the path-list deleted)
1086 * before it can forward again.
1087 */
1088 fib_path_unresolve(path);
1089 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_DROP;
1090 }
1091 if (FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason)
1092 {
1093 /*
1094 * restack the DPO to pick up the correct DPO sub-type
1095 */
BenoƮt Gannee9d7b092021-06-08 18:44:37 +02001096 dpo_id_t tmp = DPO_INVALID;
Neale Ranns8b37b872016-11-21 12:25:22 +00001097 uword if_is_up;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001098
Neale Ranns3e2e1902019-03-14 09:21:02 -07001099 if_is_up = vnet_sw_interface_is_up(
Neale Ranns8b37b872016-11-21 12:25:22 +00001100 vnet_get_main(),
1101 path->attached_next_hop.fp_interface);
1102
BenoƮt Gannee9d7b092021-06-08 18:44:37 +02001103 dpo_copy (&tmp, &path->fp_dpo);
Neale Rannsa4349552020-02-18 15:23:29 +00001104 path = fib_path_attached_next_hop_get_adj(
Neale Ranns3fd99042019-12-16 00:53:11 +00001105 path,
1106 dpo_proto_to_link(path->fp_nh_proto),
BenoƮt Gannee9d7b092021-06-08 18:44:37 +02001107 &tmp);
1108 dpo_copy(&path->fp_dpo, &tmp);
1109 dpo_reset(&tmp);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001110
Neale Ranns88fc83e2017-04-05 08:11:14 -07001111 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Ranns3fd99042019-12-16 00:53:11 +00001112 if (if_is_up && adj_is_up(path->fp_dpo.dpoi_index))
Neale Ranns88fc83e2017-04-05 08:11:14 -07001113 {
1114 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1115 }
1116
Neale Ranns8b37b872016-11-21 12:25:22 +00001117 if (!if_is_up)
1118 {
1119 /*
1120 * If the interface is not up there is no reason to walk
1121 * back to children. if we did they would only evalute
1122 * that this path is unresolved and hence it would
1123 * not contribute the adjacency - so it would be wasted
1124 * CPU time.
1125 */
1126 return (FIB_NODE_BACK_WALK_CONTINUE);
1127 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001128 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001129 if (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason)
1130 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001131 if (!(path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED))
1132 {
1133 /*
1134 * alreday unresolved. no need to walk back again
1135 */
1136 return (FIB_NODE_BACK_WALK_CONTINUE);
1137 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001138 /*
1139 * the adj has gone down. the path is no longer resolved.
1140 */
1141 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1142 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001143 break;
1144 case FIB_PATH_TYPE_ATTACHED:
Neale Rannsf068c3e2018-01-03 04:18:48 -08001145 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001146 /*
1147 * FIXME; this could schedule a lower priority walk, since attached
1148 * routes are not usually in ECMP configurations so the backwalk to
1149 * the FIB entry does not need to be high priority
1150 */
1151 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_UP & ctx->fnbw_reason)
1152 {
1153 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1154 }
1155 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN & ctx->fnbw_reason)
1156 {
1157 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1158 }
1159 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE & ctx->fnbw_reason)
1160 {
1161 fib_path_unresolve(path);
1162 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_DROP;
1163 }
Neale Ranns50bd1d32021-10-08 07:16:12 +00001164 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_BIND & ctx->fnbw_reason)
1165 {
1166 /* bind walks should appear here and pass silently up to
1167 * to the fib_entry */
1168 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001169 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001170 case FIB_PATH_TYPE_UDP_ENCAP:
1171 {
1172 dpo_id_t via_dpo = DPO_INVALID;
1173
1174 /*
1175 * hope for the best - clear if restrictions apply.
1176 */
1177 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1178
1179 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
1180 path->fp_nh_proto,
1181 &via_dpo);
1182 /*
1183 * If this path is contributing a drop, then it's not resolved
1184 */
1185 if (dpo_is_drop(&via_dpo) || load_balance_is_drop(&via_dpo))
1186 {
1187 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1188 }
1189
1190 /*
1191 * update the path's contributed DPO
1192 */
1193 dpo_copy(&path->fp_dpo, &via_dpo);
1194 dpo_reset(&via_dpo);
1195 break;
1196 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001197 case FIB_PATH_TYPE_INTF_RX:
1198 ASSERT(0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001199 case FIB_PATH_TYPE_DEAG:
1200 /*
1201 * FIXME When VRF delete is allowed this will need a poke.
1202 */
1203 case FIB_PATH_TYPE_SPECIAL:
1204 case FIB_PATH_TYPE_RECEIVE:
1205 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07001206 case FIB_PATH_TYPE_BIER_TABLE:
1207 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001208 /*
1209 * these path types have no parents. so to be
1210 * walked from one is unexpected.
1211 */
1212 ASSERT(0);
1213 break;
1214 }
1215
1216 /*
1217 * propagate the backwalk further to the path-list
1218 */
1219 fib_path_list_back_walk(path->fp_pl_index, ctx);
1220
1221 return (FIB_NODE_BACK_WALK_CONTINUE);
1222}
1223
Neale Ranns6c3ebcc2016-10-02 21:20:15 +01001224static void
1225fib_path_memory_show (void)
1226{
1227 fib_show_memory_usage("Path",
1228 pool_elts(fib_path_pool),
1229 pool_len(fib_path_pool),
1230 sizeof(fib_path_t));
1231}
1232
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001233/*
1234 * The FIB path's graph node virtual function table
1235 */
1236static const fib_node_vft_t fib_path_vft = {
1237 .fnv_get = fib_path_get_node,
1238 .fnv_last_lock = fib_path_last_lock_gone,
1239 .fnv_back_walk = fib_path_back_walk_notify,
Neale Ranns6c3ebcc2016-10-02 21:20:15 +01001240 .fnv_mem_show = fib_path_memory_show,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001241};
1242
1243static fib_path_cfg_flags_t
1244fib_path_route_flags_to_cfg_flags (const fib_route_path_t *rpath)
1245{
Neale Ranns450cd302016-11-09 17:49:42 +00001246 fib_path_cfg_flags_t cfg_flags = FIB_PATH_CFG_FLAG_NONE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001247
Neale Ranns1dbcf302019-07-19 11:44:53 +00001248 if (rpath->frp_flags & FIB_ROUTE_PATH_POP_PW_CW)
1249 cfg_flags |= FIB_PATH_CFG_FLAG_POP_PW_CW;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001250 if (rpath->frp_flags & FIB_ROUTE_PATH_RESOLVE_VIA_HOST)
1251 cfg_flags |= FIB_PATH_CFG_FLAG_RESOLVE_HOST;
1252 if (rpath->frp_flags & FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED)
1253 cfg_flags |= FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED;
Neale Ranns32e1c012016-11-22 17:07:28 +00001254 if (rpath->frp_flags & FIB_ROUTE_PATH_LOCAL)
1255 cfg_flags |= FIB_PATH_CFG_FLAG_LOCAL;
Neale Ranns4b919a52017-03-11 05:55:21 -08001256 if (rpath->frp_flags & FIB_ROUTE_PATH_ATTACHED)
1257 cfg_flags |= FIB_PATH_CFG_FLAG_ATTACHED;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001258 if (rpath->frp_flags & FIB_ROUTE_PATH_INTF_RX)
1259 cfg_flags |= FIB_PATH_CFG_FLAG_INTF_RX;
1260 if (rpath->frp_flags & FIB_ROUTE_PATH_RPF_ID)
1261 cfg_flags |= FIB_PATH_CFG_FLAG_RPF_ID;
1262 if (rpath->frp_flags & FIB_ROUTE_PATH_EXCLUSIVE)
1263 cfg_flags |= FIB_PATH_CFG_FLAG_EXCLUSIVE;
1264 if (rpath->frp_flags & FIB_ROUTE_PATH_DROP)
1265 cfg_flags |= FIB_PATH_CFG_FLAG_DROP;
Neale Ranns054c03a2017-10-13 05:15:07 -07001266 if (rpath->frp_flags & FIB_ROUTE_PATH_SOURCE_LOOKUP)
1267 cfg_flags |= FIB_PATH_CFG_FLAG_DEAG_SRC;
Neale Ranns097fa662018-05-01 05:17:55 -07001268 if (rpath->frp_flags & FIB_ROUTE_PATH_ICMP_UNREACH)
1269 cfg_flags |= FIB_PATH_CFG_FLAG_ICMP_UNREACH;
1270 if (rpath->frp_flags & FIB_ROUTE_PATH_ICMP_PROHIBIT)
1271 cfg_flags |= FIB_PATH_CFG_FLAG_ICMP_PROHIBIT;
Neale Rannse2fe0972020-11-26 08:37:27 +00001272 if (rpath->frp_flags & FIB_ROUTE_PATH_GLEAN)
1273 cfg_flags |= FIB_PATH_CFG_FLAG_GLEAN;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001274
1275 return (cfg_flags);
1276}
1277
1278/*
1279 * fib_path_create
1280 *
1281 * Create and initialise a new path object.
1282 * return the index of the path.
1283 */
1284fib_node_index_t
1285fib_path_create (fib_node_index_t pl_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001286 const fib_route_path_t *rpath)
1287{
1288 fib_path_t *path;
1289
1290 pool_get(fib_path_pool, path);
Dave Barachb7b92992018-10-17 10:38:51 -04001291 clib_memset(path, 0, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001292
1293 fib_node_init(&path->fp_node,
1294 FIB_NODE_TYPE_PATH);
1295
1296 dpo_reset(&path->fp_dpo);
1297 path->fp_pl_index = pl_index;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001298 path->fp_nh_proto = rpath->frp_proto;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001299 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
1300 path->fp_weight = rpath->frp_weight;
Neale Ranns0bd36ea2016-11-16 11:47:44 +00001301 if (0 == path->fp_weight)
1302 {
1303 /*
1304 * a weight of 0 is a meaningless value. We could either reject it, and thus force
1305 * clients to always use 1, or we can accept it and fixup approrpiately.
1306 */
1307 path->fp_weight = 1;
1308 }
Neale Ranns57b58602017-07-15 07:37:25 -07001309 path->fp_preference = rpath->frp_preference;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001310 path->fp_cfg_flags = fib_path_route_flags_to_cfg_flags(rpath);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001311
1312 /*
1313 * deduce the path's tpye from the parementers and save what is needed.
1314 */
Neale Ranns32e1c012016-11-22 17:07:28 +00001315 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_LOCAL)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001316 {
Neale Ranns32e1c012016-11-22 17:07:28 +00001317 path->fp_type = FIB_PATH_TYPE_RECEIVE;
1318 path->receive.fp_interface = rpath->frp_sw_if_index;
1319 path->receive.fp_addr = rpath->frp_addr;
1320 }
Neale Ranns810086d2017-11-05 16:26:46 -08001321 else if (rpath->frp_flags & FIB_ROUTE_PATH_UDP_ENCAP)
1322 {
1323 path->fp_type = FIB_PATH_TYPE_UDP_ENCAP;
1324 path->udp_encap.fp_udp_encap_id = rpath->frp_udp_encap_id;
1325 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001326 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_INTF_RX)
1327 {
1328 path->fp_type = FIB_PATH_TYPE_INTF_RX;
1329 path->intf_rx.fp_interface = rpath->frp_sw_if_index;
1330 }
1331 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID)
1332 {
1333 path->fp_type = FIB_PATH_TYPE_DEAG;
1334 path->deag.fp_tbl_id = rpath->frp_fib_index;
1335 path->deag.fp_rpf_id = rpath->frp_rpf_id;
1336 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07001337 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_FMASK)
1338 {
1339 path->fp_type = FIB_PATH_TYPE_BIER_FMASK;
Neale Ranns91286372017-12-05 13:24:04 -08001340 path->bier_fmask.fp_bier_fmask = rpath->frp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001341 }
1342 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_IMP)
1343 {
1344 path->fp_type = FIB_PATH_TYPE_BIER_IMP;
1345 path->bier_imp.fp_bier_imp = rpath->frp_bier_imp;
1346 }
1347 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_TABLE)
1348 {
1349 path->fp_type = FIB_PATH_TYPE_BIER_TABLE;
1350 path->bier_table.fp_bier_tbl = rpath->frp_bier_tbl;
1351 }
Florin Coras79ae2d32017-12-16 08:31:06 -08001352 else if (rpath->frp_flags & FIB_ROUTE_PATH_DEAG)
1353 {
1354 path->fp_type = FIB_PATH_TYPE_DEAG;
1355 path->deag.fp_tbl_id = rpath->frp_fib_index;
1356 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08001357 else if (rpath->frp_flags & FIB_ROUTE_PATH_DVR)
1358 {
1359 path->fp_type = FIB_PATH_TYPE_DVR;
1360 path->dvr.fp_interface = rpath->frp_sw_if_index;
1361 }
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001362 else if (rpath->frp_flags & FIB_ROUTE_PATH_EXCLUSIVE)
1363 {
1364 path->fp_type = FIB_PATH_TYPE_EXCLUSIVE;
1365 dpo_copy(&path->exclusive.fp_ex_dpo, &rpath->dpo);
1366 }
Neale Ranns097fa662018-05-01 05:17:55 -07001367 else if ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT) ||
Alexander Skorichenko4b086322023-11-24 09:59:42 +01001368 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH) ||
1369 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP))
Neale Ranns097fa662018-05-01 05:17:55 -07001370 {
1371 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1372 }
1373 else if ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_CLASSIFY))
1374 {
1375 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1376 path->classify.fp_classify_table_id = rpath->frp_classify_table_id;
1377 }
Neale Rannse2fe0972020-11-26 08:37:27 +00001378 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_GLEAN)
1379 {
1380 path->fp_type = FIB_PATH_TYPE_ATTACHED;
1381 path->attached.fp_interface = rpath->frp_sw_if_index;
1382 path->attached.fp_connected = rpath->frp_connected;
1383 }
Neale Ranns32e1c012016-11-22 17:07:28 +00001384 else if (~0 != rpath->frp_sw_if_index)
1385 {
1386 if (ip46_address_is_zero(&rpath->frp_addr))
1387 {
1388 path->fp_type = FIB_PATH_TYPE_ATTACHED;
1389 path->attached.fp_interface = rpath->frp_sw_if_index;
1390 }
1391 else
1392 {
1393 path->fp_type = FIB_PATH_TYPE_ATTACHED_NEXT_HOP;
1394 path->attached_next_hop.fp_interface = rpath->frp_sw_if_index;
1395 path->attached_next_hop.fp_nh = rpath->frp_addr;
1396 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001397 }
1398 else
1399 {
1400 if (ip46_address_is_zero(&rpath->frp_addr))
1401 {
1402 if (~0 == rpath->frp_fib_index)
1403 {
1404 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1405 }
1406 else
1407 {
1408 path->fp_type = FIB_PATH_TYPE_DEAG;
1409 path->deag.fp_tbl_id = rpath->frp_fib_index;
Neale Ranns31ed7442018-02-23 05:29:09 -08001410 path->deag.fp_rpf_id = ~0;
1411 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001412 }
1413 else
1414 {
1415 path->fp_type = FIB_PATH_TYPE_RECURSIVE;
Neale Rannsda78f952017-05-24 09:15:43 -07001416 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001417 {
1418 path->recursive.fp_nh.fp_local_label = rpath->frp_local_label;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001419 path->recursive.fp_nh.fp_eos = rpath->frp_eos;
Neale Rannsad422ed2016-11-02 14:20:04 +00001420 }
1421 else
1422 {
1423 path->recursive.fp_nh.fp_ip = rpath->frp_addr;
1424 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07001425 path->recursive.fp_tbl_id = rpath->frp_fib_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001426 }
1427 }
1428
1429 FIB_PATH_DBG(path, "create");
1430
1431 return (fib_path_get_index(path));
1432}
1433
1434/*
1435 * fib_path_create_special
1436 *
1437 * Create and initialise a new path object.
1438 * return the index of the path.
1439 */
1440fib_node_index_t
1441fib_path_create_special (fib_node_index_t pl_index,
Neale Rannsda78f952017-05-24 09:15:43 -07001442 dpo_proto_t nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001443 fib_path_cfg_flags_t flags,
1444 const dpo_id_t *dpo)
1445{
1446 fib_path_t *path;
1447
1448 pool_get(fib_path_pool, path);
Dave Barachb7b92992018-10-17 10:38:51 -04001449 clib_memset(path, 0, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001450
1451 fib_node_init(&path->fp_node,
1452 FIB_NODE_TYPE_PATH);
1453 dpo_reset(&path->fp_dpo);
1454
1455 path->fp_pl_index = pl_index;
1456 path->fp_weight = 1;
Neale Ranns57b58602017-07-15 07:37:25 -07001457 path->fp_preference = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001458 path->fp_nh_proto = nh_proto;
1459 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
1460 path->fp_cfg_flags = flags;
1461
1462 if (FIB_PATH_CFG_FLAG_DROP & flags)
1463 {
1464 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1465 }
1466 else if (FIB_PATH_CFG_FLAG_LOCAL & flags)
1467 {
1468 path->fp_type = FIB_PATH_TYPE_RECEIVE;
1469 path->attached.fp_interface = FIB_NODE_INDEX_INVALID;
1470 }
1471 else
1472 {
1473 path->fp_type = FIB_PATH_TYPE_EXCLUSIVE;
1474 ASSERT(NULL != dpo);
1475 dpo_copy(&path->exclusive.fp_ex_dpo, dpo);
1476 }
1477
1478 return (fib_path_get_index(path));
1479}
1480
1481/*
1482 * fib_path_copy
1483 *
1484 * Copy a path. return index of new path.
1485 */
1486fib_node_index_t
1487fib_path_copy (fib_node_index_t path_index,
1488 fib_node_index_t path_list_index)
1489{
1490 fib_path_t *path, *orig_path;
1491
1492 pool_get(fib_path_pool, path);
1493
1494 orig_path = fib_path_get(path_index);
1495 ASSERT(NULL != orig_path);
1496
Zhiyong Yangd3d7ef52020-01-09 04:20:57 -05001497 clib_memcpy(path, orig_path, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001498
1499 FIB_PATH_DBG(path, "create-copy:%d", path_index);
1500
1501 /*
1502 * reset the dynamic section
1503 */
1504 fib_node_init(&path->fp_node, FIB_NODE_TYPE_PATH);
1505 path->fp_oper_flags = FIB_PATH_OPER_FLAG_NONE;
1506 path->fp_pl_index = path_list_index;
1507 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
Dave Barachb7b92992018-10-17 10:38:51 -04001508 clib_memset(&path->fp_dpo, 0, sizeof(path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001509 dpo_reset(&path->fp_dpo);
1510
Damjan Mariona27aa6b2022-09-07 17:54:39 +02001511 if (path->fp_type == FIB_PATH_TYPE_EXCLUSIVE)
1512 {
1513 clib_memset(&path->exclusive.fp_ex_dpo, 0, sizeof(dpo_id_t));
1514 dpo_copy(&path->exclusive.fp_ex_dpo, &orig_path->exclusive.fp_ex_dpo);
1515 }
1516
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001517 return (fib_path_get_index(path));
1518}
1519
1520/*
1521 * fib_path_destroy
1522 *
1523 * destroy a path that is no longer required
1524 */
1525void
1526fib_path_destroy (fib_node_index_t path_index)
1527{
1528 fib_path_t *path;
1529
1530 path = fib_path_get(path_index);
1531
1532 ASSERT(NULL != path);
1533 FIB_PATH_DBG(path, "destroy");
1534
1535 fib_path_unresolve(path);
1536
1537 fib_node_deinit(&path->fp_node);
1538 pool_put(fib_path_pool, path);
1539}
1540
1541/*
1542 * fib_path_destroy
1543 *
1544 * destroy a path that is no longer required
1545 */
1546uword
1547fib_path_hash (fib_node_index_t path_index)
1548{
1549 fib_path_t *path;
1550
1551 path = fib_path_get(path_index);
1552
1553 return (hash_memory(STRUCT_MARK_PTR(path, path_hash_start),
1554 (STRUCT_OFFSET_OF(fib_path_t, path_hash_end) -
1555 STRUCT_OFFSET_OF(fib_path_t, path_hash_start)),
1556 0));
1557}
1558
1559/*
1560 * fib_path_cmp_i
1561 *
1562 * Compare two paths for equivalence.
1563 */
1564static int
1565fib_path_cmp_i (const fib_path_t *path1,
1566 const fib_path_t *path2)
1567{
1568 int res;
1569
1570 res = 1;
1571
1572 /*
1573 * paths of different types and protocol are not equal.
Neale Ranns57b58602017-07-15 07:37:25 -07001574 * different weights and/or preference only are the same path.
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001575 */
1576 if (path1->fp_type != path2->fp_type)
1577 {
1578 res = (path1->fp_type - path2->fp_type);
1579 }
Neale Ranns32e1c012016-11-22 17:07:28 +00001580 else if (path1->fp_nh_proto != path2->fp_nh_proto)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001581 {
1582 res = (path1->fp_nh_proto - path2->fp_nh_proto);
1583 }
1584 else
1585 {
1586 /*
1587 * both paths are of the same type.
1588 * consider each type and its attributes in turn.
1589 */
1590 switch (path1->fp_type)
1591 {
1592 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1593 res = ip46_address_cmp(&path1->attached_next_hop.fp_nh,
1594 &path2->attached_next_hop.fp_nh);
1595 if (0 == res) {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001596 res = (path1->attached_next_hop.fp_interface -
1597 path2->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001598 }
1599 break;
1600 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001601 res = (path1->attached.fp_interface -
1602 path2->attached.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001603 break;
1604 case FIB_PATH_TYPE_RECURSIVE:
Neale Rannscbe25aa2019-09-30 10:53:31 +00001605 res = ip46_address_cmp(&path1->recursive.fp_nh.fp_ip,
1606 &path2->recursive.fp_nh.fp_ip);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001607
1608 if (0 == res)
1609 {
1610 res = (path1->recursive.fp_tbl_id - path2->recursive.fp_tbl_id);
1611 }
1612 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001613 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08001614 res = (path1->bier_fmask.fp_bier_fmask -
1615 path2->bier_fmask.fp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07001616 break;
1617 case FIB_PATH_TYPE_BIER_IMP:
1618 res = (path1->bier_imp.fp_bier_imp -
1619 path2->bier_imp.fp_bier_imp);
1620 break;
1621 case FIB_PATH_TYPE_BIER_TABLE:
1622 res = bier_table_id_cmp(&path1->bier_table.fp_bier_tbl,
1623 &path2->bier_table.fp_bier_tbl);
1624 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001625 case FIB_PATH_TYPE_DEAG:
1626 res = (path1->deag.fp_tbl_id - path2->deag.fp_tbl_id);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001627 if (0 == res)
1628 {
1629 res = (path1->deag.fp_rpf_id - path2->deag.fp_rpf_id);
1630 }
1631 break;
1632 case FIB_PATH_TYPE_INTF_RX:
1633 res = (path1->intf_rx.fp_interface - path2->intf_rx.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001634 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001635 case FIB_PATH_TYPE_UDP_ENCAP:
1636 res = (path1->udp_encap.fp_udp_encap_id - path2->udp_encap.fp_udp_encap_id);
1637 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08001638 case FIB_PATH_TYPE_DVR:
1639 res = (path1->dvr.fp_interface - path2->dvr.fp_interface);
1640 break;
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001641 case FIB_PATH_TYPE_EXCLUSIVE:
1642 res = dpo_cmp(&path1->exclusive.fp_ex_dpo, &path2->exclusive.fp_ex_dpo);
1643 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001644 case FIB_PATH_TYPE_SPECIAL:
1645 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001646 res = 0;
1647 break;
1648 }
1649 }
1650 return (res);
1651}
1652
1653/*
1654 * fib_path_cmp_for_sort
1655 *
1656 * Compare two paths for equivalence. Used during path sorting.
1657 * As usual 0 means equal.
1658 */
1659int
1660fib_path_cmp_for_sort (void * v1,
1661 void * v2)
1662{
1663 fib_node_index_t *pi1 = v1, *pi2 = v2;
1664 fib_path_t *path1, *path2;
1665
1666 path1 = fib_path_get(*pi1);
1667 path2 = fib_path_get(*pi2);
1668
Neale Ranns57b58602017-07-15 07:37:25 -07001669 /*
1670 * when sorting paths we want the highest preference paths
1671 * first, so that the choices set built is in prefernce order
1672 */
1673 if (path1->fp_preference != path2->fp_preference)
1674 {
1675 return (path1->fp_preference - path2->fp_preference);
1676 }
1677
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001678 return (fib_path_cmp_i(path1, path2));
1679}
1680
1681/*
1682 * fib_path_cmp
1683 *
1684 * Compare two paths for equivalence.
1685 */
1686int
1687fib_path_cmp (fib_node_index_t pi1,
1688 fib_node_index_t pi2)
1689{
1690 fib_path_t *path1, *path2;
1691
1692 path1 = fib_path_get(pi1);
1693 path2 = fib_path_get(pi2);
1694
1695 return (fib_path_cmp_i(path1, path2));
1696}
1697
1698int
1699fib_path_cmp_w_route_path (fib_node_index_t path_index,
1700 const fib_route_path_t *rpath)
1701{
1702 fib_path_t *path;
1703 int res;
1704
1705 path = fib_path_get(path_index);
1706
1707 res = 1;
1708
1709 if (path->fp_weight != rpath->frp_weight)
1710 {
1711 res = (path->fp_weight - rpath->frp_weight);
1712 }
1713 else
1714 {
1715 /*
1716 * both paths are of the same type.
1717 * consider each type and its attributes in turn.
1718 */
1719 switch (path->fp_type)
1720 {
1721 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1722 res = ip46_address_cmp(&path->attached_next_hop.fp_nh,
1723 &rpath->frp_addr);
1724 if (0 == res)
1725 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001726 res = (path->attached_next_hop.fp_interface -
1727 rpath->frp_sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001728 }
1729 break;
1730 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001731 res = (path->attached.fp_interface - rpath->frp_sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001732 break;
1733 case FIB_PATH_TYPE_RECURSIVE:
Neale Rannsda78f952017-05-24 09:15:43 -07001734 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001735 {
1736 res = path->recursive.fp_nh.fp_local_label - rpath->frp_local_label;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001737
1738 if (res == 0)
1739 {
1740 res = path->recursive.fp_nh.fp_eos - rpath->frp_eos;
1741 }
Neale Rannsad422ed2016-11-02 14:20:04 +00001742 }
1743 else
1744 {
1745 res = ip46_address_cmp(&path->recursive.fp_nh.fp_ip,
1746 &rpath->frp_addr);
1747 }
1748
1749 if (0 == res)
1750 {
1751 res = (path->recursive.fp_tbl_id - rpath->frp_fib_index);
1752 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001753 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001754 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08001755 res = (path->bier_fmask.fp_bier_fmask - rpath->frp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07001756 break;
1757 case FIB_PATH_TYPE_BIER_IMP:
1758 res = (path->bier_imp.fp_bier_imp - rpath->frp_bier_imp);
1759 break;
1760 case FIB_PATH_TYPE_BIER_TABLE:
1761 res = bier_table_id_cmp(&path->bier_table.fp_bier_tbl,
1762 &rpath->frp_bier_tbl);
1763 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001764 case FIB_PATH_TYPE_INTF_RX:
1765 res = (path->intf_rx.fp_interface - rpath->frp_sw_if_index);
1766 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001767 case FIB_PATH_TYPE_UDP_ENCAP:
1768 res = (path->udp_encap.fp_udp_encap_id - rpath->frp_udp_encap_id);
1769 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001770 case FIB_PATH_TYPE_DEAG:
1771 res = (path->deag.fp_tbl_id - rpath->frp_fib_index);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001772 if (0 == res)
1773 {
1774 res = (path->deag.fp_rpf_id - rpath->frp_rpf_id);
1775 }
1776 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08001777 case FIB_PATH_TYPE_DVR:
1778 res = (path->dvr.fp_interface - rpath->frp_sw_if_index);
1779 break;
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001780 case FIB_PATH_TYPE_EXCLUSIVE:
1781 res = dpo_cmp(&path->exclusive.fp_ex_dpo, &rpath->dpo);
1782 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001783 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07001784 if (rpath->frp_flags & FIB_ROUTE_PATH_LOCAL)
1785 {
1786 res = 0;
1787 }
1788 else
1789 {
1790 res = 1;
1791 }
1792 break;
1793 case FIB_PATH_TYPE_SPECIAL:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001794 res = 0;
1795 break;
1796 }
1797 }
1798 return (res);
1799}
1800
1801/*
1802 * fib_path_recursive_loop_detect
1803 *
1804 * A forward walk of the FIB object graph to detect for a cycle/loop. This
1805 * walk is initiated when an entry is linking to a new path list or from an old.
1806 * The entry vector passed contains all the FIB entrys that are children of this
1807 * path (it is all the entries encountered on the walk so far). If this vector
1808 * contains the entry this path resolve via, then a loop is about to form.
1809 * The loop must be allowed to form, since we need the dependencies in place
1810 * so that we can track when the loop breaks.
1811 * However, we MUST not produce a loop in the forwarding graph (else packets
1812 * would loop around the switch path until the loop breaks), so we mark recursive
1813 * paths as looped so that they do not contribute forwarding information.
1814 * By marking the path as looped, an etry such as;
1815 * X/Y
1816 * via a.a.a.a (looped)
1817 * via b.b.b.b (not looped)
1818 * can still forward using the info provided by b.b.b.b only
1819 */
1820int
1821fib_path_recursive_loop_detect (fib_node_index_t path_index,
1822 fib_node_index_t **entry_indicies)
1823{
1824 fib_path_t *path;
1825
1826 path = fib_path_get(path_index);
1827
1828 /*
1829 * the forced drop path is never looped, cos it is never resolved.
1830 */
1831 if (fib_path_is_permanent_drop(path))
1832 {
1833 return (0);
1834 }
1835
1836 switch (path->fp_type)
1837 {
1838 case FIB_PATH_TYPE_RECURSIVE:
1839 {
1840 fib_node_index_t *entry_index, *entries;
1841 int looped = 0;
1842 entries = *entry_indicies;
1843
1844 vec_foreach(entry_index, entries) {
1845 if (*entry_index == path->fp_via_fib)
1846 {
1847 /*
1848 * the entry that is about to link to this path-list (or
1849 * one of this path-list's children) is the same entry that
1850 * this recursive path resolves through. this is a cycle.
1851 * abort the walk.
1852 */
1853 looped = 1;
1854 break;
1855 }
1856 }
1857
1858 if (looped)
1859 {
1860 FIB_PATH_DBG(path, "recursive loop formed");
1861 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1862
Neale Rannsda78f952017-05-24 09:15:43 -07001863 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001864 }
1865 else
1866 {
1867 /*
1868 * no loop here yet. keep forward walking the graph.
Neale Ranns521a8d72018-12-06 13:46:49 +00001869 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001870 if (fib_entry_recursive_loop_detect(path->fp_via_fib, entry_indicies))
1871 {
1872 FIB_PATH_DBG(path, "recursive loop formed");
1873 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1874 }
1875 else
1876 {
1877 FIB_PATH_DBG(path, "recursive loop cleared");
1878 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1879 }
1880 }
1881 break;
1882 }
1883 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1884 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns14053c92019-12-29 23:55:18 +00001885 if (dpo_is_adj(&path->fp_dpo) &&
1886 adj_recursive_loop_detect(path->fp_dpo.dpoi_index,
Neale Ranns521a8d72018-12-06 13:46:49 +00001887 entry_indicies))
1888 {
1889 FIB_PATH_DBG(path, "recursive loop formed");
1890 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1891 }
1892 else
1893 {
1894 FIB_PATH_DBG(path, "recursive loop cleared");
1895 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1896 }
1897 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001898 case FIB_PATH_TYPE_SPECIAL:
1899 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -08001900 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001901 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001902 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08001903 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001904 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07001905 case FIB_PATH_TYPE_BIER_FMASK:
1906 case FIB_PATH_TYPE_BIER_TABLE:
1907 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001908 /*
1909 * these path types cannot be part of a loop, since they are the leaves
1910 * of the graph.
1911 */
1912 break;
1913 }
1914
1915 return (fib_path_is_looped(path_index));
1916}
1917
1918int
1919fib_path_resolve (fib_node_index_t path_index)
1920{
1921 fib_path_t *path;
1922
1923 path = fib_path_get(path_index);
1924
1925 /*
1926 * hope for the best.
1927 */
1928 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1929
1930 /*
1931 * the forced drop path resolves via the drop adj
1932 */
1933 if (fib_path_is_permanent_drop(path))
1934 {
Neale Rannsda78f952017-05-24 09:15:43 -07001935 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001936 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1937 return (fib_path_is_resolved(path_index));
1938 }
1939
1940 switch (path->fp_type)
1941 {
1942 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1943 fib_path_attached_next_hop_set(path);
1944 break;
1945 case FIB_PATH_TYPE_ATTACHED:
Neale Rannsd35abc42019-04-18 09:42:20 +00001946 {
1947 dpo_id_t tmp = DPO_INVALID;
1948
Neale Rannsf068c3e2018-01-03 04:18:48 -08001949 /*
1950 * path->attached.fp_interface
1951 */
Neale Ranns3e2e1902019-03-14 09:21:02 -07001952 if (!vnet_sw_interface_is_up(vnet_get_main(),
1953 path->attached.fp_interface))
Neale Ranns6f631152017-10-03 08:20:21 -07001954 {
Neale Rannsf068c3e2018-01-03 04:18:48 -08001955 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Ranns6f631152017-10-03 08:20:21 -07001956 }
Neale Ranns3fd99042019-12-16 00:53:11 +00001957 fib_path_attached_get_adj(path,
1958 dpo_proto_to_link(path->fp_nh_proto),
1959 &tmp);
Neale Ranns8c4611b2017-05-23 03:43:47 -07001960
Neale Rannsf068c3e2018-01-03 04:18:48 -08001961 /*
Neale Rannsd35abc42019-04-18 09:42:20 +00001962 * re-fetch after possible mem realloc
1963 */
1964 path = fib_path_get(path_index);
1965 dpo_copy(&path->fp_dpo, &tmp);
1966
1967 /*
Neale Rannsf068c3e2018-01-03 04:18:48 -08001968 * become a child of the adjacency so we receive updates
1969 * when the interface state changes
1970 */
Neale Ranns3fd99042019-12-16 00:53:11 +00001971 if (dpo_is_adj(&path->fp_dpo))
1972 {
1973 path->fp_sibling = adj_child_add(path->fp_dpo.dpoi_index,
1974 FIB_NODE_TYPE_PATH,
1975 fib_path_get_index(path));
1976 }
Neale Rannsd35abc42019-04-18 09:42:20 +00001977 dpo_reset(&tmp);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001978 break;
Neale Rannsd35abc42019-04-18 09:42:20 +00001979 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001980 case FIB_PATH_TYPE_RECURSIVE:
1981 {
1982 /*
1983 * Create a RR source entry in the table for the address
1984 * that this path recurses through.
1985 * This resolve action is recursive, hence we may create
1986 * more paths in the process. more creates mean maybe realloc
1987 * of this path.
1988 */
1989 fib_node_index_t fei;
1990 fib_prefix_t pfx;
1991
1992 ASSERT(FIB_NODE_INDEX_INVALID == path->fp_via_fib);
1993
Neale Rannsda78f952017-05-24 09:15:43 -07001994 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001995 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001996 fib_prefix_from_mpls_label(path->recursive.fp_nh.fp_local_label,
1997 path->recursive.fp_nh.fp_eos,
1998 &pfx);
Neale Rannsad422ed2016-11-02 14:20:04 +00001999 }
2000 else
2001 {
Huawei LI06923b32022-09-29 11:28:12 +08002002 ASSERT(!ip46_address_is_zero(&path->recursive.fp_nh.fp_ip));
2003
2004 fib_protocol_t fp = (ip46_address_is_ip4(&path->recursive.fp_nh.fp_ip) ?
2005 FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6);
2006 fib_prefix_from_ip46_addr(fp, &path->recursive.fp_nh.fp_ip, &pfx);
Neale Rannsad422ed2016-11-02 14:20:04 +00002007 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002008
Neale Ranns6fff24a2018-09-10 19:14:07 -07002009 fib_table_lock(path->recursive.fp_tbl_id,
2010 dpo_proto_to_fib(path->fp_nh_proto),
2011 FIB_SOURCE_RR);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002012 fei = fib_table_entry_special_add(path->recursive.fp_tbl_id,
2013 &pfx,
2014 FIB_SOURCE_RR,
Neale Rannsa0558302017-04-13 00:44:52 -07002015 FIB_ENTRY_FLAG_NONE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002016
2017 path = fib_path_get(path_index);
2018 path->fp_via_fib = fei;
2019
2020 /*
2021 * become a dependent child of the entry so the path is
2022 * informed when the forwarding for the entry changes.
2023 */
2024 path->fp_sibling = fib_entry_child_add(path->fp_via_fib,
2025 FIB_NODE_TYPE_PATH,
2026 fib_path_get_index(path));
2027
2028 /*
2029 * create and configure the IP DPO
2030 */
2031 fib_path_recursive_adj_update(
2032 path,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002033 fib_path_to_chain_type(path),
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002034 &path->fp_dpo);
2035
2036 break;
2037 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07002038 case FIB_PATH_TYPE_BIER_FMASK:
2039 {
2040 /*
Neale Rannsd792d9c2017-10-21 10:53:20 -07002041 * become a dependent child of the entry so the path is
2042 * informed when the forwarding for the entry changes.
2043 */
Neale Ranns91286372017-12-05 13:24:04 -08002044 path->fp_sibling = bier_fmask_child_add(path->bier_fmask.fp_bier_fmask,
Neale Rannsd792d9c2017-10-21 10:53:20 -07002045 FIB_NODE_TYPE_PATH,
2046 fib_path_get_index(path));
2047
Neale Ranns91286372017-12-05 13:24:04 -08002048 path->fp_via_bier_fmask = path->bier_fmask.fp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002049 fib_path_bier_fmask_update(path, &path->fp_dpo);
2050
2051 break;
2052 }
2053 case FIB_PATH_TYPE_BIER_IMP:
2054 bier_imp_lock(path->bier_imp.fp_bier_imp);
2055 bier_imp_contribute_forwarding(path->bier_imp.fp_bier_imp,
2056 DPO_PROTO_IP4,
2057 &path->fp_dpo);
2058 break;
2059 case FIB_PATH_TYPE_BIER_TABLE:
2060 {
2061 /*
2062 * Find/create the BIER table to link to
2063 */
2064 ASSERT(FIB_NODE_INDEX_INVALID == path->fp_via_bier_tbl);
2065
2066 path->fp_via_bier_tbl =
2067 bier_table_ecmp_create_and_lock(&path->bier_table.fp_bier_tbl);
2068
2069 bier_table_contribute_forwarding(path->fp_via_bier_tbl,
2070 &path->fp_dpo);
2071 break;
2072 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002073 case FIB_PATH_TYPE_SPECIAL:
Neale Ranns097fa662018-05-01 05:17:55 -07002074 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT)
2075 {
2076 ip_null_dpo_add_and_lock (path->fp_nh_proto,
2077 IP_NULL_ACTION_SEND_ICMP_PROHIBIT,
2078 &path->fp_dpo);
2079 }
2080 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH)
2081 {
2082 ip_null_dpo_add_and_lock (path->fp_nh_proto,
2083 IP_NULL_ACTION_SEND_ICMP_UNREACH,
2084 &path->fp_dpo);
2085 }
2086 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_CLASSIFY)
2087 {
2088 dpo_set (&path->fp_dpo, DPO_CLASSIFY,
2089 path->fp_nh_proto,
2090 classify_dpo_create (path->fp_nh_proto,
2091 path->classify.fp_classify_table_id));
2092 }
2093 else
2094 {
2095 /*
2096 * Resolve via the drop
2097 */
2098 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
2099 }
2100 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002101 case FIB_PATH_TYPE_DEAG:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002102 {
Neale Ranns91286372017-12-05 13:24:04 -08002103 if (DPO_PROTO_BIER == path->fp_nh_proto)
2104 {
2105 bier_disp_table_contribute_forwarding(path->deag.fp_tbl_id,
2106 &path->fp_dpo);
2107 }
2108 else
2109 {
2110 /*
2111 * Resolve via a lookup DPO.
2112 * FIXME. control plane should add routes with a table ID
2113 */
2114 lookup_input_t input;
2115 lookup_cast_t cast;
Neale Ranns054c03a2017-10-13 05:15:07 -07002116
Neale Ranns91286372017-12-05 13:24:04 -08002117 cast = (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID ?
2118 LOOKUP_MULTICAST :
2119 LOOKUP_UNICAST);
2120 input = (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DEAG_SRC ?
2121 LOOKUP_INPUT_SRC_ADDR :
2122 LOOKUP_INPUT_DST_ADDR);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002123
Neale Ranns91286372017-12-05 13:24:04 -08002124 lookup_dpo_add_or_lock_w_fib_index(path->deag.fp_tbl_id,
2125 path->fp_nh_proto,
2126 cast,
2127 input,
2128 LOOKUP_TABLE_FROM_CONFIG,
2129 &path->fp_dpo);
2130 }
2131 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002132 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08002133 case FIB_PATH_TYPE_DVR:
Neale Rannse2fe0972020-11-26 08:37:27 +00002134 dvr_dpo_add_or_lock(path->dvr.fp_interface,
Neale Rannsf068c3e2018-01-03 04:18:48 -08002135 path->fp_nh_proto,
2136 &path->fp_dpo);
2137 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002138 case FIB_PATH_TYPE_RECEIVE:
2139 /*
2140 * Resolve via a receive DPO.
2141 */
Neale Rannsda78f952017-05-24 09:15:43 -07002142 receive_dpo_add_or_lock(path->fp_nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002143 path->receive.fp_interface,
2144 &path->receive.fp_addr,
2145 &path->fp_dpo);
2146 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002147 case FIB_PATH_TYPE_UDP_ENCAP:
2148 udp_encap_lock(path->udp_encap.fp_udp_encap_id);
2149 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
2150 path->fp_nh_proto,
2151 &path->fp_dpo);
2152 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002153 case FIB_PATH_TYPE_INTF_RX: {
2154 /*
2155 * Resolve via a receive DPO.
2156 */
Neale Ranns43161a82017-08-12 02:12:00 -07002157 interface_rx_dpo_add_or_lock(path->fp_nh_proto,
2158 path->intf_rx.fp_interface,
2159 &path->fp_dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002160 break;
2161 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002162 case FIB_PATH_TYPE_EXCLUSIVE:
2163 /*
2164 * Resolve via the user provided DPO
2165 */
2166 dpo_copy(&path->fp_dpo, &path->exclusive.fp_ex_dpo);
2167 break;
2168 }
2169
2170 return (fib_path_is_resolved(path_index));
2171}
2172
2173u32
2174fib_path_get_resolving_interface (fib_node_index_t path_index)
2175{
2176 fib_path_t *path;
2177
2178 path = fib_path_get(path_index);
2179
2180 switch (path->fp_type)
2181 {
2182 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2183 return (path->attached_next_hop.fp_interface);
2184 case FIB_PATH_TYPE_ATTACHED:
2185 return (path->attached.fp_interface);
2186 case FIB_PATH_TYPE_RECEIVE:
2187 return (path->receive.fp_interface);
2188 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns08b16482017-05-13 05:52:58 -07002189 if (fib_path_is_resolved(path_index))
2190 {
2191 return (fib_entry_get_resolving_interface(path->fp_via_fib));
2192 }
2193 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08002194 case FIB_PATH_TYPE_DVR:
2195 return (path->dvr.fp_interface);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002196 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08002197 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002198 case FIB_PATH_TYPE_SPECIAL:
2199 case FIB_PATH_TYPE_DEAG:
2200 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002201 case FIB_PATH_TYPE_BIER_FMASK:
2202 case FIB_PATH_TYPE_BIER_TABLE:
2203 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002204 break;
2205 }
Neale Ranns4a6d0232018-04-24 07:45:33 -07002206 return (dpo_get_urpf(&path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002207}
2208
Neale Rannsd792d9c2017-10-21 10:53:20 -07002209index_t
2210fib_path_get_resolving_index (fib_node_index_t path_index)
2211{
2212 fib_path_t *path;
2213
2214 path = fib_path_get(path_index);
2215
2216 switch (path->fp_type)
2217 {
2218 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2219 case FIB_PATH_TYPE_ATTACHED:
2220 case FIB_PATH_TYPE_RECEIVE:
2221 case FIB_PATH_TYPE_INTF_RX:
2222 case FIB_PATH_TYPE_SPECIAL:
2223 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002224 case FIB_PATH_TYPE_DVR:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002225 case FIB_PATH_TYPE_EXCLUSIVE:
2226 break;
2227 case FIB_PATH_TYPE_UDP_ENCAP:
2228 return (path->udp_encap.fp_udp_encap_id);
2229 case FIB_PATH_TYPE_RECURSIVE:
2230 return (path->fp_via_fib);
2231 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08002232 return (path->bier_fmask.fp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07002233 case FIB_PATH_TYPE_BIER_TABLE:
2234 return (path->fp_via_bier_tbl);
2235 case FIB_PATH_TYPE_BIER_IMP:
2236 return (path->bier_imp.fp_bier_imp);
2237 }
2238 return (~0);
2239}
2240
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002241adj_index_t
2242fib_path_get_adj (fib_node_index_t path_index)
2243{
2244 fib_path_t *path;
2245
2246 path = fib_path_get(path_index);
2247
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002248 if (dpo_is_adj(&path->fp_dpo))
2249 {
2250 return (path->fp_dpo.dpoi_index);
2251 }
2252 return (ADJ_INDEX_INVALID);
2253}
2254
Neale Ranns57b58602017-07-15 07:37:25 -07002255u16
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002256fib_path_get_weight (fib_node_index_t path_index)
2257{
2258 fib_path_t *path;
2259
2260 path = fib_path_get(path_index);
2261
2262 ASSERT(path);
2263
2264 return (path->fp_weight);
2265}
2266
Neale Ranns57b58602017-07-15 07:37:25 -07002267u16
2268fib_path_get_preference (fib_node_index_t path_index)
2269{
2270 fib_path_t *path;
2271
2272 path = fib_path_get(path_index);
2273
2274 ASSERT(path);
2275
2276 return (path->fp_preference);
2277}
2278
Neale Rannsd792d9c2017-10-21 10:53:20 -07002279u32
2280fib_path_get_rpf_id (fib_node_index_t path_index)
2281{
2282 fib_path_t *path;
2283
2284 path = fib_path_get(path_index);
2285
2286 ASSERT(path);
2287
2288 if (FIB_PATH_CFG_FLAG_RPF_ID & path->fp_cfg_flags)
2289 {
2290 return (path->deag.fp_rpf_id);
2291 }
2292
2293 return (~0);
2294}
2295
Neale Ranns3ee44042016-10-03 13:05:48 +01002296/**
2297 * @brief Contribute the path's adjacency to the list passed.
2298 * By calling this function over all paths, recursively, a child
2299 * can construct its full set of forwarding adjacencies, and hence its
2300 * uRPF list.
2301 */
2302void
2303fib_path_contribute_urpf (fib_node_index_t path_index,
2304 index_t urpf)
2305{
2306 fib_path_t *path;
2307
Neale Ranns3ee44042016-10-03 13:05:48 +01002308 path = fib_path_get(path_index);
2309
Neale Ranns88fc83e2017-04-05 08:11:14 -07002310 /*
2311 * resolved and unresolved paths contribute to the RPF list.
2312 */
Neale Ranns3ee44042016-10-03 13:05:48 +01002313 switch (path->fp_type)
2314 {
2315 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2316 fib_urpf_list_append(urpf, path->attached_next_hop.fp_interface);
2317 break;
2318
2319 case FIB_PATH_TYPE_ATTACHED:
2320 fib_urpf_list_append(urpf, path->attached.fp_interface);
2321 break;
2322
2323 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns08b16482017-05-13 05:52:58 -07002324 if (FIB_NODE_INDEX_INVALID != path->fp_via_fib &&
2325 !fib_path_is_looped(path_index))
Neale Ranns88fc83e2017-04-05 08:11:14 -07002326 {
2327 /*
2328 * there's unresolved due to constraints, and there's unresolved
Neale Ranns08b16482017-05-13 05:52:58 -07002329 * due to ain't got no via. can't do nowt w'out via.
Neale Ranns88fc83e2017-04-05 08:11:14 -07002330 */
2331 fib_entry_contribute_urpf(path->fp_via_fib, urpf);
2332 }
Neale Ranns3ee44042016-10-03 13:05:48 +01002333 break;
2334
2335 case FIB_PATH_TYPE_EXCLUSIVE:
2336 case FIB_PATH_TYPE_SPECIAL:
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002337 {
2338 /*
Neale Ranns3ee44042016-10-03 13:05:48 +01002339 * these path types may link to an adj, if that's what
2340 * the clinet gave
2341 */
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002342 u32 rpf_sw_if_index;
2343
2344 rpf_sw_if_index = dpo_get_urpf(&path->fp_dpo);
2345
2346 if (~0 != rpf_sw_if_index)
Neale Ranns3ee44042016-10-03 13:05:48 +01002347 {
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002348 fib_urpf_list_append(urpf, rpf_sw_if_index);
Neale Ranns3ee44042016-10-03 13:05:48 +01002349 }
2350 break;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002351 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08002352 case FIB_PATH_TYPE_DVR:
2353 fib_urpf_list_append(urpf, path->dvr.fp_interface);
2354 break;
Arthur de Kerhor8a6f5d32021-05-20 11:48:00 +02002355 case FIB_PATH_TYPE_UDP_ENCAP:
2356 fib_urpf_list_append(urpf, path->udp_encap.fp_udp_encap_id);
2357 break;
Neale Ranns3ee44042016-10-03 13:05:48 +01002358 case FIB_PATH_TYPE_DEAG:
2359 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002360 case FIB_PATH_TYPE_INTF_RX:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002361 case FIB_PATH_TYPE_BIER_FMASK:
2362 case FIB_PATH_TYPE_BIER_TABLE:
2363 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns3ee44042016-10-03 13:05:48 +01002364 /*
2365 * these path types don't link to an adj
2366 */
2367 break;
2368 }
2369}
2370
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002371void
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002372fib_path_stack_mpls_disp (fib_node_index_t path_index,
2373 dpo_proto_t payload_proto,
Neale Ranns31ed7442018-02-23 05:29:09 -08002374 fib_mpls_lsp_mode_t mode,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002375 dpo_id_t *dpo)
2376{
2377 fib_path_t *path;
2378
2379 path = fib_path_get(path_index);
2380
2381 ASSERT(path);
2382
2383 switch (path->fp_type)
2384 {
Neale Ranns62fe07c2017-10-31 12:28:22 -07002385 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2386 {
2387 dpo_id_t tmp = DPO_INVALID;
2388
2389 dpo_copy(&tmp, dpo);
Neale Ranns31ed7442018-02-23 05:29:09 -08002390
2391 mpls_disp_dpo_create(payload_proto, ~0, mode, &tmp, dpo);
Neale Ranns62fe07c2017-10-31 12:28:22 -07002392 dpo_reset(&tmp);
2393 break;
2394 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002395 case FIB_PATH_TYPE_DEAG:
2396 {
2397 dpo_id_t tmp = DPO_INVALID;
2398
2399 dpo_copy(&tmp, dpo);
Neale Ranns31ed7442018-02-23 05:29:09 -08002400
2401 mpls_disp_dpo_create(payload_proto,
2402 path->deag.fp_rpf_id,
2403 mode, &tmp, dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002404 dpo_reset(&tmp);
2405 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002406 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002407 case FIB_PATH_TYPE_RECEIVE:
2408 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002409 case FIB_PATH_TYPE_RECURSIVE:
2410 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08002411 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002412 case FIB_PATH_TYPE_EXCLUSIVE:
2413 case FIB_PATH_TYPE_SPECIAL:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002414 case FIB_PATH_TYPE_BIER_FMASK:
2415 case FIB_PATH_TYPE_BIER_TABLE:
2416 case FIB_PATH_TYPE_BIER_IMP:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002417 case FIB_PATH_TYPE_DVR:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002418 break;
2419 }
Neale Ranns1dbcf302019-07-19 11:44:53 +00002420
2421 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_POP_PW_CW)
2422 {
2423 dpo_id_t tmp = DPO_INVALID;
2424
2425 dpo_copy(&tmp, dpo);
2426
2427 pw_cw_dpo_create(&tmp, dpo);
2428 dpo_reset(&tmp);
2429 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002430}
2431
2432void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002433fib_path_contribute_forwarding (fib_node_index_t path_index,
2434 fib_forward_chain_type_t fct,
Neale Ranns53962fb2021-12-20 18:18:42 +00002435 dpo_proto_t payload_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002436 dpo_id_t *dpo)
2437{
2438 fib_path_t *path;
2439
2440 path = fib_path_get(path_index);
2441
2442 ASSERT(path);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002443
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002444 /*
2445 * The DPO stored in the path was created when the path was resolved.
2446 * This then represents the path's 'native' protocol; IP.
2447 * For all others will need to go find something else.
2448 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002449 if (fib_path_to_chain_type(path) == fct)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002450 {
2451 dpo_copy(dpo, &path->fp_dpo);
2452 }
Neale Ranns5e575b12016-10-03 09:40:25 +01002453 else
2454 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002455 switch (path->fp_type)
2456 {
2457 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2458 switch (fct)
2459 {
Neale Ranns53962fb2021-12-20 18:18:42 +00002460 case FIB_FORW_CHAIN_TYPE_MPLS_EOS: {
2461 dpo_id_t tmp = DPO_INVALID;
2462 dpo_copy (&tmp, dpo);
2463 path = fib_path_attached_next_hop_get_adj(
2464 path,
2465 dpo_proto_to_link(payload_proto),
2466 &tmp);
2467 dpo_copy (dpo, &tmp);
2468 dpo_reset(&tmp);
2469 break;
2470 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002471 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2472 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002473 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
Neale Ranns5e575b12016-10-03 09:40:25 +01002474 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002475 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Rannse821ab12017-06-01 07:45:05 -07002476 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2477 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
BenoƮt Gannee9d7b092021-06-08 18:44:37 +02002478 {
2479 dpo_id_t tmp = DPO_INVALID;
2480 dpo_copy (&tmp, dpo);
2481 path = fib_path_attached_next_hop_get_adj(
2482 path,
2483 fib_forw_chain_type_to_link_type(fct),
2484 &tmp);
2485 dpo_copy (dpo, &tmp);
2486 dpo_reset(&tmp);
2487 break;
2488 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07002489 case FIB_FORW_CHAIN_TYPE_BIER:
2490 break;
2491 }
Neale Ranns32e1c012016-11-22 17:07:28 +00002492 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002493 case FIB_PATH_TYPE_RECURSIVE:
2494 switch (fct)
2495 {
2496 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2497 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2498 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002499 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
Neale Ranns32e1c012016-11-22 17:07:28 +00002500 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2501 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002502 case FIB_FORW_CHAIN_TYPE_BIER:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002503 fib_path_recursive_adj_update(path, fct, dpo);
2504 break;
Neale Ranns5e575b12016-10-03 09:40:25 +01002505 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002506 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Ranns5e575b12016-10-03 09:40:25 +01002507 ASSERT(0);
2508 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002509 }
2510 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002511 case FIB_PATH_TYPE_BIER_TABLE:
2512 switch (fct)
2513 {
2514 case FIB_FORW_CHAIN_TYPE_BIER:
2515 bier_table_contribute_forwarding(path->fp_via_bier_tbl, dpo);
2516 break;
2517 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2518 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2519 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2520 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2521 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2522 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2523 case FIB_FORW_CHAIN_TYPE_ETHERNET:
2524 case FIB_FORW_CHAIN_TYPE_NSH:
2525 ASSERT(0);
2526 break;
2527 }
2528 break;
2529 case FIB_PATH_TYPE_BIER_FMASK:
2530 switch (fct)
2531 {
2532 case FIB_FORW_CHAIN_TYPE_BIER:
2533 fib_path_bier_fmask_update(path, dpo);
2534 break;
2535 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2536 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2537 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2538 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2539 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2540 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2541 case FIB_FORW_CHAIN_TYPE_ETHERNET:
2542 case FIB_FORW_CHAIN_TYPE_NSH:
2543 ASSERT(0);
2544 break;
2545 }
2546 break;
2547 case FIB_PATH_TYPE_BIER_IMP:
2548 bier_imp_contribute_forwarding(path->bier_imp.fp_bier_imp,
2549 fib_forw_chain_type_to_dpo_proto(fct),
2550 dpo);
2551 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002552 case FIB_PATH_TYPE_DEAG:
Neale Ranns32e1c012016-11-22 17:07:28 +00002553 switch (fct)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002554 {
2555 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2556 lookup_dpo_add_or_lock_w_table_id(MPLS_FIB_DEFAULT_TABLE_ID,
2557 DPO_PROTO_MPLS,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002558 LOOKUP_UNICAST,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002559 LOOKUP_INPUT_DST_ADDR,
2560 LOOKUP_TABLE_FROM_CONFIG,
2561 dpo);
2562 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002563 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002564 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2565 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
Neale Ranns32e1c012016-11-22 17:07:28 +00002566 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2567 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
Neale Ranns097fa662018-05-01 05:17:55 -07002568 dpo_copy(dpo, &path->fp_dpo);
2569 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002570 case FIB_FORW_CHAIN_TYPE_BIER:
2571 break;
Neale Ranns5e575b12016-10-03 09:40:25 +01002572 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002573 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Ranns5e575b12016-10-03 09:40:25 +01002574 ASSERT(0);
2575 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002576 }
2577 break;
2578 case FIB_PATH_TYPE_EXCLUSIVE:
2579 dpo_copy(dpo, &path->exclusive.fp_ex_dpo);
2580 break;
2581 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns32e1c012016-11-22 17:07:28 +00002582 switch (fct)
2583 {
Neale Ranns53962fb2021-12-20 18:18:42 +00002584 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2585 /*
2586 * End of stack traffic via an attacehd path (a glean)
2587 * must forace an IP lookup so that the IP packet can
2588 * match against any installed adj-fibs
2589 */
2590 lookup_dpo_add_or_lock_w_fib_index(
2591 fib_table_get_index_for_sw_if_index(
2592 dpo_proto_to_fib(payload_proto),
2593 path->attached.fp_interface),
2594 payload_proto,
2595 LOOKUP_UNICAST,
2596 LOOKUP_INPUT_DST_ADDR,
2597 LOOKUP_TABLE_FROM_CONFIG,
2598 dpo);
2599 break;
Neale Ranns32e1c012016-11-22 17:07:28 +00002600 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2601 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2602 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
Neale Ranns32e1c012016-11-22 17:07:28 +00002603 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002604 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002605 case FIB_FORW_CHAIN_TYPE_BIER:
Neale Ranns3fd99042019-12-16 00:53:11 +00002606 fib_path_attached_get_adj(path,
2607 fib_forw_chain_type_to_link_type(fct),
2608 dpo);
2609 break;
Neale Ranns32e1c012016-11-22 17:07:28 +00002610 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2611 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2612 {
2613 adj_index_t ai;
2614
2615 /*
2616 * Create the adj needed for sending IP multicast traffic
2617 */
Neale Rannsda0e7492019-10-07 22:44:54 -07002618 if (vnet_sw_interface_is_p2p(vnet_get_main(),
2619 path->attached.fp_interface))
2620 {
2621 /*
2622 * point-2-point interfaces do not require a glean, since
2623 * there is nothing to ARP. Install a rewrite/nbr adj instead
2624 */
2625 ai = adj_nbr_add_or_lock(dpo_proto_to_fib(path->fp_nh_proto),
2626 fib_forw_chain_type_to_link_type(fct),
2627 &zero_addr,
2628 path->attached.fp_interface);
2629 }
2630 else
2631 {
2632 ai = adj_mcast_add_or_lock(dpo_proto_to_fib(path->fp_nh_proto),
2633 fib_forw_chain_type_to_link_type(fct),
2634 path->attached.fp_interface);
2635 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002636 dpo_set(dpo, DPO_ADJACENCY,
Neale Ranns32e1c012016-11-22 17:07:28 +00002637 fib_forw_chain_type_to_dpo_proto(fct),
2638 ai);
2639 adj_unlock(ai);
2640 }
2641 break;
2642 }
2643 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002644 case FIB_PATH_TYPE_INTF_RX:
2645 /*
2646 * Create the adj needed for sending IP multicast traffic
2647 */
Neale Ranns53962fb2021-12-20 18:18:42 +00002648 interface_rx_dpo_add_or_lock(payload_proto,
2649 path->intf_rx.fp_interface,
Neale Ranns43161a82017-08-12 02:12:00 -07002650 dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002651 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002652 case FIB_PATH_TYPE_UDP_ENCAP:
2653 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
2654 path->fp_nh_proto,
2655 dpo);
2656 break;
Neale Ranns32e1c012016-11-22 17:07:28 +00002657 case FIB_PATH_TYPE_RECEIVE:
2658 case FIB_PATH_TYPE_SPECIAL:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002659 case FIB_PATH_TYPE_DVR:
Neale Ranns32e1c012016-11-22 17:07:28 +00002660 dpo_copy(dpo, &path->fp_dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002661 break;
2662 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002663 }
2664}
2665
2666load_balance_path_t *
2667fib_path_append_nh_for_multipath_hash (fib_node_index_t path_index,
2668 fib_forward_chain_type_t fct,
Neale Ranns53962fb2021-12-20 18:18:42 +00002669 dpo_proto_t payload_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002670 load_balance_path_t *hash_key)
2671{
2672 load_balance_path_t *mnh;
2673 fib_path_t *path;
2674
2675 path = fib_path_get(path_index);
2676
2677 ASSERT(path);
2678
Neale Rannsac64b712018-10-08 14:51:11 +00002679 vec_add2(hash_key, mnh, 1);
2680
2681 mnh->path_weight = path->fp_weight;
2682 mnh->path_index = path_index;
2683
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002684 if (fib_path_is_resolved(path_index))
2685 {
Neale Ranns53962fb2021-12-20 18:18:42 +00002686 fib_path_contribute_forwarding(path_index, fct, payload_proto, &mnh->path_dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002687 }
Neale Rannsac64b712018-10-08 14:51:11 +00002688 else
2689 {
2690 dpo_copy(&mnh->path_dpo,
2691 drop_dpo_get(fib_forw_chain_type_to_dpo_proto(fct)));
2692 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002693 return (hash_key);
2694}
2695
2696int
Neale Rannsf12a83f2017-04-18 09:09:40 -07002697fib_path_is_recursive_constrained (fib_node_index_t path_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002698{
2699 fib_path_t *path;
2700
2701 path = fib_path_get(path_index);
2702
Neale Rannsf12a83f2017-04-18 09:09:40 -07002703 return ((FIB_PATH_TYPE_RECURSIVE == path->fp_type) &&
2704 ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED) ||
2705 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_HOST)));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002706}
2707
2708int
2709fib_path_is_exclusive (fib_node_index_t path_index)
2710{
2711 fib_path_t *path;
2712
2713 path = fib_path_get(path_index);
2714
2715 return (FIB_PATH_TYPE_EXCLUSIVE == path->fp_type);
2716}
2717
2718int
2719fib_path_is_deag (fib_node_index_t path_index)
2720{
2721 fib_path_t *path;
2722
2723 path = fib_path_get(path_index);
2724
2725 return (FIB_PATH_TYPE_DEAG == path->fp_type);
2726}
2727
2728int
2729fib_path_is_resolved (fib_node_index_t path_index)
2730{
2731 fib_path_t *path;
2732
2733 path = fib_path_get(path_index);
2734
2735 return (dpo_id_is_valid(&path->fp_dpo) &&
2736 (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED) &&
2737 !fib_path_is_looped(path_index) &&
2738 !fib_path_is_permanent_drop(path));
2739}
2740
2741int
2742fib_path_is_looped (fib_node_index_t path_index)
2743{
2744 fib_path_t *path;
2745
2746 path = fib_path_get(path_index);
2747
2748 return (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RECURSIVE_LOOP);
2749}
2750
Neale Ranns81424992017-05-18 03:03:22 -07002751fib_path_list_walk_rc_t
Steven01b07122016-11-02 10:40:09 -07002752fib_path_encode (fib_node_index_t path_list_index,
Neale Ranns775f73c2018-12-20 03:01:49 -08002753 fib_node_index_t path_index,
2754 const fib_path_ext_t *path_ext,
Neale Ranns097fa662018-05-01 05:17:55 -07002755 void *args)
Steven01b07122016-11-02 10:40:09 -07002756{
Neale Ranns097fa662018-05-01 05:17:55 -07002757 fib_path_encode_ctx_t *ctx = args;
2758 fib_route_path_t *rpath;
Steven01b07122016-11-02 10:40:09 -07002759 fib_path_t *path;
2760
2761 path = fib_path_get(path_index);
2762 if (!path)
Neale Ranns81424992017-05-18 03:03:22 -07002763 return (FIB_PATH_LIST_WALK_CONTINUE);
Neale Ranns097fa662018-05-01 05:17:55 -07002764
2765 vec_add2(ctx->rpaths, rpath, 1);
2766 rpath->frp_weight = path->fp_weight;
2767 rpath->frp_preference = path->fp_preference;
2768 rpath->frp_proto = path->fp_nh_proto;
2769 rpath->frp_sw_if_index = ~0;
2770 rpath->frp_fib_index = 0;
Neale Rannsa161a6d2017-11-14 08:10:41 -08002771
Steven01b07122016-11-02 10:40:09 -07002772 switch (path->fp_type)
Neale Ranns775f73c2018-12-20 03:01:49 -08002773 {
Steven01b07122016-11-02 10:40:09 -07002774 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07002775 rpath->frp_addr = path->receive.fp_addr;
2776 rpath->frp_sw_if_index = path->receive.fp_interface;
2777 rpath->frp_flags |= FIB_ROUTE_PATH_LOCAL;
Steven01b07122016-11-02 10:40:09 -07002778 break;
2779 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns097fa662018-05-01 05:17:55 -07002780 rpath->frp_sw_if_index = path->attached.fp_interface;
Steven01b07122016-11-02 10:40:09 -07002781 break;
2782 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
Neale Ranns097fa662018-05-01 05:17:55 -07002783 rpath->frp_sw_if_index = path->attached_next_hop.fp_interface;
2784 rpath->frp_addr = path->attached_next_hop.fp_nh;
Steven01b07122016-11-02 10:40:09 -07002785 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002786 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns097fa662018-05-01 05:17:55 -07002787 rpath->frp_bier_fmask = path->bier_fmask.fp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002788 break;
Steven01b07122016-11-02 10:40:09 -07002789 case FIB_PATH_TYPE_SPECIAL:
2790 break;
2791 case FIB_PATH_TYPE_DEAG:
Neale Ranns097fa662018-05-01 05:17:55 -07002792 rpath->frp_fib_index = path->deag.fp_tbl_id;
Neale Ranns775f73c2018-12-20 03:01:49 -08002793 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID)
2794 {
Neale Ranns097fa662018-05-01 05:17:55 -07002795 rpath->frp_flags |= FIB_ROUTE_PATH_RPF_ID;
Neale Ranns775f73c2018-12-20 03:01:49 -08002796 }
Steven01b07122016-11-02 10:40:09 -07002797 break;
2798 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07002799 rpath->frp_addr = path->recursive.fp_nh.fp_ip;
2800 rpath->frp_fib_index = path->recursive.fp_tbl_id;
Steven01b07122016-11-02 10:40:09 -07002801 break;
Neale Ranns81458422018-03-12 06:59:36 -07002802 case FIB_PATH_TYPE_DVR:
Neale Ranns097fa662018-05-01 05:17:55 -07002803 rpath->frp_sw_if_index = path->dvr.fp_interface;
2804 rpath->frp_flags |= FIB_ROUTE_PATH_DVR;
Neale Ranns81458422018-03-12 06:59:36 -07002805 break;
2806 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns097fa662018-05-01 05:17:55 -07002807 rpath->frp_udp_encap_id = path->udp_encap.fp_udp_encap_id;
2808 rpath->frp_flags |= FIB_ROUTE_PATH_UDP_ENCAP;
Neale Ranns81458422018-03-12 06:59:36 -07002809 break;
Neale Ranns775f73c2018-12-20 03:01:49 -08002810 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns097fa662018-05-01 05:17:55 -07002811 rpath->frp_sw_if_index = path->receive.fp_interface;
2812 rpath->frp_flags |= FIB_ROUTE_PATH_INTF_RX;
Neale Ranns775f73c2018-12-20 03:01:49 -08002813 break;
Neale Ranns097fa662018-05-01 05:17:55 -07002814 case FIB_PATH_TYPE_EXCLUSIVE:
2815 rpath->frp_flags |= FIB_ROUTE_PATH_EXCLUSIVE;
Steven01b07122016-11-02 10:40:09 -07002816 default:
2817 break;
Neale Ranns775f73c2018-12-20 03:01:49 -08002818 }
2819
2820 if (path_ext && path_ext->fpe_type == FIB_PATH_EXT_MPLS)
2821 {
Neale Ranns097fa662018-05-01 05:17:55 -07002822 rpath->frp_label_stack = path_ext->fpe_path.frp_label_stack;
Neale Ranns775f73c2018-12-20 03:01:49 -08002823 }
Neale Rannsa161a6d2017-11-14 08:10:41 -08002824
Neale Ranns097fa662018-05-01 05:17:55 -07002825 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP)
2826 rpath->frp_flags |= FIB_ROUTE_PATH_DROP;
2827 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH)
2828 rpath->frp_flags |= FIB_ROUTE_PATH_ICMP_UNREACH;
2829 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT)
2830 rpath->frp_flags |= FIB_ROUTE_PATH_ICMP_PROHIBIT;
2831
Neale Ranns81424992017-05-18 03:03:22 -07002832 return (FIB_PATH_LIST_WALK_CONTINUE);
Steven01b07122016-11-02 10:40:09 -07002833}
2834
Neale Rannsda78f952017-05-24 09:15:43 -07002835dpo_proto_t
Neale Rannsad422ed2016-11-02 14:20:04 +00002836fib_path_get_proto (fib_node_index_t path_index)
2837{
2838 fib_path_t *path;
2839
2840 path = fib_path_get(path_index);
2841
2842 return (path->fp_nh_proto);
2843}
2844
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002845void
2846fib_path_module_init (void)
2847{
2848 fib_node_register_type (FIB_NODE_TYPE_PATH, &fib_path_vft);
Neale Ranns710071b2018-09-24 12:36:26 +00002849 fib_path_logger = vlib_log_register_class ("fib", "path");
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002850}
2851
2852static clib_error_t *
2853show_fib_path_command (vlib_main_t * vm,
2854 unformat_input_t * input,
2855 vlib_cli_command_t * cmd)
2856{
Neale Ranns33a7dd52016-10-07 15:14:33 +01002857 fib_node_index_t pi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002858 fib_path_t *path;
2859
Neale Ranns33a7dd52016-10-07 15:14:33 +01002860 if (unformat (input, "%d", &pi))
2861 {
2862 /*
2863 * show one in detail
2864 */
2865 if (!pool_is_free_index(fib_path_pool, pi))
2866 {
2867 path = fib_path_get(pi);
Neale Ranns710071b2018-09-24 12:36:26 +00002868 u8 *s = format(NULL, "%U", format_fib_path, pi, 1,
2869 FIB_PATH_FORMAT_FLAGS_NONE);
Neale Ranns521a8d72018-12-06 13:46:49 +00002870 s = format(s, "\n children:");
Neale Ranns33a7dd52016-10-07 15:14:33 +01002871 s = fib_node_children_format(path->fp_node.fn_children, s);
BenoƮt Ganne84382ae2020-02-04 16:45:09 +01002872 vlib_cli_output (vm, "%v", s);
Neale Ranns33a7dd52016-10-07 15:14:33 +01002873 vec_free(s);
2874 }
2875 else
2876 {
2877 vlib_cli_output (vm, "path %d invalid", pi);
2878 }
2879 }
2880 else
2881 {
2882 vlib_cli_output (vm, "FIB Paths");
Damjan Marionb2c31b62020-12-13 21:47:40 +01002883 pool_foreach_index (pi, fib_path_pool)
2884 {
Neale Ranns710071b2018-09-24 12:36:26 +00002885 vlib_cli_output (vm, "%U", format_fib_path, pi, 0,
2886 FIB_PATH_FORMAT_FLAGS_NONE);
Damjan Marionb2c31b62020-12-13 21:47:40 +01002887 }
Neale Ranns33a7dd52016-10-07 15:14:33 +01002888 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002889
2890 return (NULL);
2891}
2892
2893VLIB_CLI_COMMAND (show_fib_path, static) = {
2894 .path = "show fib paths",
2895 .function = show_fib_path_command,
2896 .short_help = "show fib paths",
2897};