blob: 01140d5d0dc3d4075c479dc52a7176c3c56c7cb1 [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{
667 /*
Lijian.Zhang33af8c12019-09-16 16:22:36 +0800668 * resolve directly via the adjacency discribed by the
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100669 * interface and next-hop
670 */
Neale Rannsa4349552020-02-18 15:23:29 +0000671 path = fib_path_attached_next_hop_get_adj(path,
672 dpo_proto_to_link(path->fp_nh_proto),
673 &path->fp_dpo);
Neale Ranns3fd99042019-12-16 00:53:11 +0000674
675 ASSERT(dpo_is_adj(&path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100676
677 /*
678 * become a child of the adjacency so we receive updates
679 * when its rewrite changes
680 */
681 path->fp_sibling = adj_child_add(path->fp_dpo.dpoi_index,
682 FIB_NODE_TYPE_PATH,
683 fib_path_get_index(path));
Neale Ranns88fc83e2017-04-05 08:11:14 -0700684
Neale Ranns3e2e1902019-03-14 09:21:02 -0700685 if (!vnet_sw_interface_is_up(vnet_get_main(),
686 path->attached_next_hop.fp_interface) ||
Neale Ranns88fc83e2017-04-05 08:11:14 -0700687 !adj_is_up(path->fp_dpo.dpoi_index))
688 {
689 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
690 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100691}
692
Neale Ranns3fd99042019-12-16 00:53:11 +0000693static void
Neale Ranns8c4611b2017-05-23 03:43:47 -0700694fib_path_attached_get_adj (fib_path_t *path,
Neale Ranns3fd99042019-12-16 00:53:11 +0000695 vnet_link_t link,
696 dpo_id_t *dpo)
Neale Ranns8c4611b2017-05-23 03:43:47 -0700697{
Neale Ranns3fd99042019-12-16 00:53:11 +0000698 fib_protocol_t nh_proto;
699
700 nh_proto = dpo_proto_to_fib(path->fp_nh_proto);
701
Neale Ranns8c4611b2017-05-23 03:43:47 -0700702 if (vnet_sw_interface_is_p2p(vnet_get_main(),
703 path->attached.fp_interface))
704 {
705 /*
706 * point-2-point interfaces do not require a glean, since
707 * there is nothing to ARP. Install a rewrite/nbr adj instead
708 */
Neale Ranns3fd99042019-12-16 00:53:11 +0000709 adj_index_t ai;
710
711 ai = adj_nbr_add_or_lock(nh_proto, link, &zero_addr,
712 path->attached.fp_interface);
713
714 dpo_set(dpo, DPO_ADJACENCY, vnet_link_to_dpo_proto(link), ai);
715 adj_unlock(ai);
716 }
717 else if (vnet_sw_interface_is_nbma(vnet_get_main(),
718 path->attached.fp_interface))
719 {
720 dpo_copy(dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns8c4611b2017-05-23 03:43:47 -0700721 }
722 else
723 {
Neale Ranns3fd99042019-12-16 00:53:11 +0000724 adj_index_t ai;
725
726 ai = adj_glean_add_or_lock(nh_proto, link,
727 path->attached.fp_interface,
Neale Rannse2fe0972020-11-26 08:37:27 +0000728 &path->attached.fp_connected);
Neale Ranns3fd99042019-12-16 00:53:11 +0000729 dpo_set(dpo, DPO_ADJACENCY_GLEAN, vnet_link_to_dpo_proto(link), ai);
730 adj_unlock(ai);
Neale Ranns8c4611b2017-05-23 03:43:47 -0700731 }
732}
733
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100734/*
735 * create of update the paths recursive adj
736 */
737static void
738fib_path_recursive_adj_update (fib_path_t *path,
739 fib_forward_chain_type_t fct,
740 dpo_id_t *dpo)
741{
Neale Ranns948e00f2016-10-20 13:39:34 +0100742 dpo_id_t via_dpo = DPO_INVALID;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100743
744 /*
745 * get the DPO to resolve through from the via-entry
746 */
747 fib_entry_contribute_forwarding(path->fp_via_fib,
748 fct,
749 &via_dpo);
750
751
752 /*
753 * hope for the best - clear if restrictions apply.
754 */
755 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
756
757 /*
758 * Validate any recursion constraints and over-ride the via
759 * adj if not met
760 */
761 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RECURSIVE_LOOP)
762 {
763 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700764 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100765 }
766 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_HOST)
767 {
768 /*
769 * the via FIB must be a host route.
770 * note the via FIB just added will always be a host route
771 * since it is an RR source added host route. So what we need to
772 * check is whether the route has other sources. If it does then
773 * some other source has added it as a host route. If it doesn't
774 * then it was added only here and inherits forwarding from a cover.
775 * the cover is not a host route.
776 * The RR source is the lowest priority source, so we check if it
777 * is the best. if it is there are no other sources.
778 */
779 if (fib_entry_get_best_source(path->fp_via_fib) >= FIB_SOURCE_RR)
780 {
781 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700782 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100783
784 /*
785 * PIC edge trigger. let the load-balance maps know
786 */
787 load_balance_map_path_state_change(fib_path_get_index(path));
788 }
789 }
790 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED)
791 {
792 /*
793 * RR source entries inherit the flags from the cover, so
794 * we can check the via directly
795 */
796 if (!(FIB_ENTRY_FLAG_ATTACHED & fib_entry_get_flags(path->fp_via_fib)))
797 {
798 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700799 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100800
801 /*
802 * PIC edge trigger. let the load-balance maps know
803 */
804 load_balance_map_path_state_change(fib_path_get_index(path));
805 }
806 }
Neale Ranns88fc83e2017-04-05 08:11:14 -0700807 /*
808 * check for over-riding factors on the FIB entry itself
809 */
810 if (!fib_entry_is_resolved(path->fp_via_fib))
811 {
812 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700813 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns88fc83e2017-04-05 08:11:14 -0700814
815 /*
816 * PIC edge trigger. let the load-balance maps know
817 */
818 load_balance_map_path_state_change(fib_path_get_index(path));
819 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100820
821 /*
Neale Ranns57b58602017-07-15 07:37:25 -0700822 * If this path is contributing a drop, then it's not resolved
823 */
824 if (dpo_is_drop(&via_dpo) || load_balance_is_drop(&via_dpo))
825 {
826 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
827 }
828
829 /*
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100830 * update the path's contributed DPO
831 */
832 dpo_copy(dpo, &via_dpo);
833
Neale Rannsda78f952017-05-24 09:15:43 -0700834 FIB_PATH_DBG(path, "recursive update:");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100835
836 dpo_reset(&via_dpo);
837}
838
839/*
Neale Rannsd792d9c2017-10-21 10:53:20 -0700840 * re-evaulate the forwarding state for a via fmask path
841 */
842static void
843fib_path_bier_fmask_update (fib_path_t *path,
844 dpo_id_t *dpo)
845{
Neale Ranns91286372017-12-05 13:24:04 -0800846 bier_fmask_contribute_forwarding(path->bier_fmask.fp_bier_fmask, dpo);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700847
848 /*
849 * if we are stakcing on the drop, then the path is not resolved
850 */
851 if (dpo_is_drop(dpo))
852 {
853 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
854 }
855 else
856 {
857 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
858 }
859}
860
861/*
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100862 * fib_path_is_permanent_drop
863 *
864 * Return !0 if the path is configured to permanently drop,
865 * despite other attributes.
866 */
867static int
868fib_path_is_permanent_drop (fib_path_t *path)
869{
870 return ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP) ||
871 (path->fp_oper_flags & FIB_PATH_OPER_FLAG_DROP));
872}
873
874/*
875 * fib_path_unresolve
876 *
877 * Remove our dependency on the resolution target
878 */
879static void
880fib_path_unresolve (fib_path_t *path)
881{
882 /*
883 * the forced drop path does not need unresolving
884 */
885 if (fib_path_is_permanent_drop(path))
886 {
887 return;
888 }
889
890 switch (path->fp_type)
891 {
892 case FIB_PATH_TYPE_RECURSIVE:
893 if (FIB_NODE_INDEX_INVALID != path->fp_via_fib)
894 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100895 fib_entry_child_remove(path->fp_via_fib,
896 path->fp_sibling);
Neale Ranns097fa662018-05-01 05:17:55 -0700897 fib_table_entry_special_remove(path->recursive.fp_tbl_id,
898 fib_entry_get_prefix(path->fp_via_fib),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100899 FIB_SOURCE_RR);
Neale Ranns6fff24a2018-09-10 19:14:07 -0700900 fib_table_unlock(path->recursive.fp_tbl_id,
901 dpo_proto_to_fib(path->fp_nh_proto),
902 FIB_SOURCE_RR);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100903 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
904 }
905 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700906 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -0800907 bier_fmask_child_remove(path->fp_via_bier_fmask,
908 path->fp_sibling);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700909 break;
910 case FIB_PATH_TYPE_BIER_IMP:
911 bier_imp_unlock(path->fp_dpo.dpoi_index);
912 break;
913 case FIB_PATH_TYPE_BIER_TABLE:
914 bier_table_ecmp_unlock(path->fp_via_bier_tbl);
915 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100916 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
Neale Ranns6f631152017-10-03 08:20:21 -0700917 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns3fd99042019-12-16 00:53:11 +0000918 if (dpo_is_adj(&path->fp_dpo))
919 adj_child_remove(path->fp_dpo.dpoi_index,
920 path->fp_sibling);
Neale Ranns6f631152017-10-03 08:20:21 -0700921 break;
Neale Ranns810086d2017-11-05 16:26:46 -0800922 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns9c0a3c42018-09-07 08:57:41 -0700923 udp_encap_unlock(path->fp_dpo.dpoi_index);
Neale Ranns810086d2017-11-05 16:26:46 -0800924 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100925 case FIB_PATH_TYPE_EXCLUSIVE:
926 dpo_reset(&path->exclusive.fp_ex_dpo);
927 break;
928 case FIB_PATH_TYPE_SPECIAL:
929 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800930 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100931 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -0800932 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100933 /*
934 * these hold only the path's DPO, which is reset below.
935 */
936 break;
937 }
938
939 /*
940 * release the adj we were holding and pick up the
941 * drop just in case.
942 */
943 dpo_reset(&path->fp_dpo);
944 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
945
946 return;
947}
948
949static fib_forward_chain_type_t
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800950fib_path_to_chain_type (const fib_path_t *path)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100951{
Neale Rannsda78f952017-05-24 09:15:43 -0700952 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100953 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800954 if (FIB_PATH_TYPE_RECURSIVE == path->fp_type &&
955 MPLS_EOS == path->recursive.fp_nh.fp_eos)
956 {
957 return (FIB_FORW_CHAIN_TYPE_MPLS_EOS);
958 }
959 else
960 {
Neale Ranns9f171f52017-04-11 08:56:53 -0700961 return (FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800962 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100963 }
Neale Rannsda78f952017-05-24 09:15:43 -0700964 else
965 {
966 return (fib_forw_chain_type_from_dpo_proto(path->fp_nh_proto));
967 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100968}
969
970/*
971 * fib_path_back_walk_notify
972 *
973 * A back walk has reach this path.
974 */
975static fib_node_back_walk_rc_t
976fib_path_back_walk_notify (fib_node_t *node,
977 fib_node_back_walk_ctx_t *ctx)
978{
979 fib_path_t *path;
980
981 path = fib_path_from_fib_node(node);
982
Neale Ranns710071b2018-09-24 12:36:26 +0000983 FIB_PATH_DBG(path, "bw:%U",
984 format_fib_node_bw_reason, ctx->fnbw_reason);
985
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100986 switch (path->fp_type)
987 {
988 case FIB_PATH_TYPE_RECURSIVE:
989 if (FIB_NODE_BW_REASON_FLAG_EVALUATE & ctx->fnbw_reason)
990 {
991 /*
992 * modify the recursive adjacency to use the new forwarding
993 * of the via-fib.
994 * this update is visible to packets in flight in the DP.
995 */
996 fib_path_recursive_adj_update(
997 path,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800998 fib_path_to_chain_type(path),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100999 &path->fp_dpo);
1000 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001001 if ((FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason) ||
Neale Ranns8f5fef22020-12-21 08:29:34 +00001002 (FIB_NODE_BW_REASON_FLAG_ADJ_MTU & ctx->fnbw_reason) ||
Neale Rannsad95b5d2016-11-10 20:35:14 +00001003 (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason))
Neale Rannsb80c5362016-10-08 13:03:40 +01001004 {
1005 /*
1006 * ADJ updates (complete<->incomplete) do not need to propagate to
1007 * recursive entries.
1008 * The only reason its needed as far back as here, is that the adj
1009 * and the incomplete adj are a different DPO type, so the LBs need
1010 * to re-stack.
1011 * If this walk was quashed in the fib_entry, then any non-fib_path
1012 * children (like tunnels that collapse out the LB when they stack)
1013 * would not see the update.
1014 */
1015 return (FIB_NODE_BACK_WALK_CONTINUE);
1016 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001017 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001018 case FIB_PATH_TYPE_BIER_FMASK:
1019 if (FIB_NODE_BW_REASON_FLAG_EVALUATE & ctx->fnbw_reason)
1020 {
1021 /*
1022 * update to use the BIER fmask's new forwading
1023 */
1024 fib_path_bier_fmask_update(path, &path->fp_dpo);
1025 }
1026 if ((FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason) ||
1027 (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason))
1028 {
1029 /*
1030 * ADJ updates (complete<->incomplete) do not need to propagate to
1031 * recursive entries.
1032 * The only reason its needed as far back as here, is that the adj
1033 * and the incomplete adj are a different DPO type, so the LBs need
1034 * to re-stack.
1035 * If this walk was quashed in the fib_entry, then any non-fib_path
1036 * children (like tunnels that collapse out the LB when they stack)
1037 * would not see the update.
1038 */
1039 return (FIB_NODE_BACK_WALK_CONTINUE);
1040 }
1041 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001042 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1043 /*
1044FIXME comment
1045 * ADJ_UPDATE backwalk pass silently through here and up to
1046 * the path-list when the multipath adj collapse occurs.
1047 * The reason we do this is that the assumtption is that VPP
1048 * runs in an environment where the Control-Plane is remote
1049 * and hence reacts slowly to link up down. In order to remove
1050 * this down link from the ECMP set quickly, we back-walk.
1051 * VPP also has dedicated CPUs, so we are not stealing resources
1052 * from the CP to do so.
1053 */
1054 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_UP & ctx->fnbw_reason)
1055 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001056 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED)
1057 {
1058 /*
1059 * alreday resolved. no need to walk back again
1060 */
1061 return (FIB_NODE_BACK_WALK_CONTINUE);
1062 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001063 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1064 }
1065 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN & ctx->fnbw_reason)
1066 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001067 if (!(path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED))
1068 {
1069 /*
1070 * alreday unresolved. no need to walk back again
1071 */
1072 return (FIB_NODE_BACK_WALK_CONTINUE);
1073 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001074 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1075 }
1076 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE & ctx->fnbw_reason)
1077 {
1078 /*
1079 * The interface this path resolves through has been deleted.
1080 * This will leave the path in a permanent drop state. The route
1081 * needs to be removed and readded (and hence the path-list deleted)
1082 * before it can forward again.
1083 */
1084 fib_path_unresolve(path);
1085 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_DROP;
1086 }
1087 if (FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason)
1088 {
1089 /*
1090 * restack the DPO to pick up the correct DPO sub-type
1091 */
Neale Ranns8b37b872016-11-21 12:25:22 +00001092 uword if_is_up;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001093
Neale Ranns3e2e1902019-03-14 09:21:02 -07001094 if_is_up = vnet_sw_interface_is_up(
Neale Ranns8b37b872016-11-21 12:25:22 +00001095 vnet_get_main(),
1096 path->attached_next_hop.fp_interface);
1097
Neale Rannsa4349552020-02-18 15:23:29 +00001098 path = fib_path_attached_next_hop_get_adj(
Neale Ranns3fd99042019-12-16 00:53:11 +00001099 path,
1100 dpo_proto_to_link(path->fp_nh_proto),
1101 &path->fp_dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001102
Neale Ranns88fc83e2017-04-05 08:11:14 -07001103 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Ranns3fd99042019-12-16 00:53:11 +00001104 if (if_is_up && adj_is_up(path->fp_dpo.dpoi_index))
Neale Ranns88fc83e2017-04-05 08:11:14 -07001105 {
1106 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1107 }
1108
Neale Ranns8b37b872016-11-21 12:25:22 +00001109 if (!if_is_up)
1110 {
1111 /*
1112 * If the interface is not up there is no reason to walk
1113 * back to children. if we did they would only evalute
1114 * that this path is unresolved and hence it would
1115 * not contribute the adjacency - so it would be wasted
1116 * CPU time.
1117 */
1118 return (FIB_NODE_BACK_WALK_CONTINUE);
1119 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001120 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001121 if (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason)
1122 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001123 if (!(path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED))
1124 {
1125 /*
1126 * alreday unresolved. no need to walk back again
1127 */
1128 return (FIB_NODE_BACK_WALK_CONTINUE);
1129 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001130 /*
1131 * the adj has gone down. the path is no longer resolved.
1132 */
1133 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1134 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001135 break;
1136 case FIB_PATH_TYPE_ATTACHED:
Neale Rannsf068c3e2018-01-03 04:18:48 -08001137 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001138 /*
1139 * FIXME; this could schedule a lower priority walk, since attached
1140 * routes are not usually in ECMP configurations so the backwalk to
1141 * the FIB entry does not need to be high priority
1142 */
1143 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_UP & ctx->fnbw_reason)
1144 {
1145 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1146 }
1147 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN & ctx->fnbw_reason)
1148 {
1149 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1150 }
1151 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE & ctx->fnbw_reason)
1152 {
1153 fib_path_unresolve(path);
1154 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_DROP;
1155 }
1156 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001157 case FIB_PATH_TYPE_UDP_ENCAP:
1158 {
1159 dpo_id_t via_dpo = DPO_INVALID;
1160
1161 /*
1162 * hope for the best - clear if restrictions apply.
1163 */
1164 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1165
1166 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
1167 path->fp_nh_proto,
1168 &via_dpo);
1169 /*
1170 * If this path is contributing a drop, then it's not resolved
1171 */
1172 if (dpo_is_drop(&via_dpo) || load_balance_is_drop(&via_dpo))
1173 {
1174 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1175 }
1176
1177 /*
1178 * update the path's contributed DPO
1179 */
1180 dpo_copy(&path->fp_dpo, &via_dpo);
1181 dpo_reset(&via_dpo);
1182 break;
1183 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001184 case FIB_PATH_TYPE_INTF_RX:
1185 ASSERT(0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001186 case FIB_PATH_TYPE_DEAG:
1187 /*
1188 * FIXME When VRF delete is allowed this will need a poke.
1189 */
1190 case FIB_PATH_TYPE_SPECIAL:
1191 case FIB_PATH_TYPE_RECEIVE:
1192 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07001193 case FIB_PATH_TYPE_BIER_TABLE:
1194 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001195 /*
1196 * these path types have no parents. so to be
1197 * walked from one is unexpected.
1198 */
1199 ASSERT(0);
1200 break;
1201 }
1202
1203 /*
1204 * propagate the backwalk further to the path-list
1205 */
1206 fib_path_list_back_walk(path->fp_pl_index, ctx);
1207
1208 return (FIB_NODE_BACK_WALK_CONTINUE);
1209}
1210
Neale Ranns6c3ebcc2016-10-02 21:20:15 +01001211static void
1212fib_path_memory_show (void)
1213{
1214 fib_show_memory_usage("Path",
1215 pool_elts(fib_path_pool),
1216 pool_len(fib_path_pool),
1217 sizeof(fib_path_t));
1218}
1219
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001220/*
1221 * The FIB path's graph node virtual function table
1222 */
1223static const fib_node_vft_t fib_path_vft = {
1224 .fnv_get = fib_path_get_node,
1225 .fnv_last_lock = fib_path_last_lock_gone,
1226 .fnv_back_walk = fib_path_back_walk_notify,
Neale Ranns6c3ebcc2016-10-02 21:20:15 +01001227 .fnv_mem_show = fib_path_memory_show,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001228};
1229
1230static fib_path_cfg_flags_t
1231fib_path_route_flags_to_cfg_flags (const fib_route_path_t *rpath)
1232{
Neale Ranns450cd302016-11-09 17:49:42 +00001233 fib_path_cfg_flags_t cfg_flags = FIB_PATH_CFG_FLAG_NONE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001234
Neale Ranns1dbcf302019-07-19 11:44:53 +00001235 if (rpath->frp_flags & FIB_ROUTE_PATH_POP_PW_CW)
1236 cfg_flags |= FIB_PATH_CFG_FLAG_POP_PW_CW;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001237 if (rpath->frp_flags & FIB_ROUTE_PATH_RESOLVE_VIA_HOST)
1238 cfg_flags |= FIB_PATH_CFG_FLAG_RESOLVE_HOST;
1239 if (rpath->frp_flags & FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED)
1240 cfg_flags |= FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED;
Neale Ranns32e1c012016-11-22 17:07:28 +00001241 if (rpath->frp_flags & FIB_ROUTE_PATH_LOCAL)
1242 cfg_flags |= FIB_PATH_CFG_FLAG_LOCAL;
Neale Ranns4b919a52017-03-11 05:55:21 -08001243 if (rpath->frp_flags & FIB_ROUTE_PATH_ATTACHED)
1244 cfg_flags |= FIB_PATH_CFG_FLAG_ATTACHED;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001245 if (rpath->frp_flags & FIB_ROUTE_PATH_INTF_RX)
1246 cfg_flags |= FIB_PATH_CFG_FLAG_INTF_RX;
1247 if (rpath->frp_flags & FIB_ROUTE_PATH_RPF_ID)
1248 cfg_flags |= FIB_PATH_CFG_FLAG_RPF_ID;
1249 if (rpath->frp_flags & FIB_ROUTE_PATH_EXCLUSIVE)
1250 cfg_flags |= FIB_PATH_CFG_FLAG_EXCLUSIVE;
1251 if (rpath->frp_flags & FIB_ROUTE_PATH_DROP)
1252 cfg_flags |= FIB_PATH_CFG_FLAG_DROP;
Neale Ranns054c03a2017-10-13 05:15:07 -07001253 if (rpath->frp_flags & FIB_ROUTE_PATH_SOURCE_LOOKUP)
1254 cfg_flags |= FIB_PATH_CFG_FLAG_DEAG_SRC;
Neale Ranns097fa662018-05-01 05:17:55 -07001255 if (rpath->frp_flags & FIB_ROUTE_PATH_ICMP_UNREACH)
1256 cfg_flags |= FIB_PATH_CFG_FLAG_ICMP_UNREACH;
1257 if (rpath->frp_flags & FIB_ROUTE_PATH_ICMP_PROHIBIT)
1258 cfg_flags |= FIB_PATH_CFG_FLAG_ICMP_PROHIBIT;
Neale Rannse2fe0972020-11-26 08:37:27 +00001259 if (rpath->frp_flags & FIB_ROUTE_PATH_GLEAN)
1260 cfg_flags |= FIB_PATH_CFG_FLAG_GLEAN;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001261
1262 return (cfg_flags);
1263}
1264
1265/*
1266 * fib_path_create
1267 *
1268 * Create and initialise a new path object.
1269 * return the index of the path.
1270 */
1271fib_node_index_t
1272fib_path_create (fib_node_index_t pl_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001273 const fib_route_path_t *rpath)
1274{
1275 fib_path_t *path;
1276
1277 pool_get(fib_path_pool, path);
Dave Barachb7b92992018-10-17 10:38:51 -04001278 clib_memset(path, 0, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001279
1280 fib_node_init(&path->fp_node,
1281 FIB_NODE_TYPE_PATH);
1282
1283 dpo_reset(&path->fp_dpo);
1284 path->fp_pl_index = pl_index;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001285 path->fp_nh_proto = rpath->frp_proto;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001286 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
1287 path->fp_weight = rpath->frp_weight;
Neale Ranns0bd36ea2016-11-16 11:47:44 +00001288 if (0 == path->fp_weight)
1289 {
1290 /*
1291 * a weight of 0 is a meaningless value. We could either reject it, and thus force
1292 * clients to always use 1, or we can accept it and fixup approrpiately.
1293 */
1294 path->fp_weight = 1;
1295 }
Neale Ranns57b58602017-07-15 07:37:25 -07001296 path->fp_preference = rpath->frp_preference;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001297 path->fp_cfg_flags = fib_path_route_flags_to_cfg_flags(rpath);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001298
1299 /*
1300 * deduce the path's tpye from the parementers and save what is needed.
1301 */
Neale Ranns32e1c012016-11-22 17:07:28 +00001302 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_LOCAL)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001303 {
Neale Ranns32e1c012016-11-22 17:07:28 +00001304 path->fp_type = FIB_PATH_TYPE_RECEIVE;
1305 path->receive.fp_interface = rpath->frp_sw_if_index;
1306 path->receive.fp_addr = rpath->frp_addr;
1307 }
Neale Ranns810086d2017-11-05 16:26:46 -08001308 else if (rpath->frp_flags & FIB_ROUTE_PATH_UDP_ENCAP)
1309 {
1310 path->fp_type = FIB_PATH_TYPE_UDP_ENCAP;
1311 path->udp_encap.fp_udp_encap_id = rpath->frp_udp_encap_id;
1312 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001313 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_INTF_RX)
1314 {
1315 path->fp_type = FIB_PATH_TYPE_INTF_RX;
1316 path->intf_rx.fp_interface = rpath->frp_sw_if_index;
1317 }
1318 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID)
1319 {
1320 path->fp_type = FIB_PATH_TYPE_DEAG;
1321 path->deag.fp_tbl_id = rpath->frp_fib_index;
1322 path->deag.fp_rpf_id = rpath->frp_rpf_id;
1323 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07001324 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_FMASK)
1325 {
1326 path->fp_type = FIB_PATH_TYPE_BIER_FMASK;
Neale Ranns91286372017-12-05 13:24:04 -08001327 path->bier_fmask.fp_bier_fmask = rpath->frp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001328 }
1329 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_IMP)
1330 {
1331 path->fp_type = FIB_PATH_TYPE_BIER_IMP;
1332 path->bier_imp.fp_bier_imp = rpath->frp_bier_imp;
1333 }
1334 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_TABLE)
1335 {
1336 path->fp_type = FIB_PATH_TYPE_BIER_TABLE;
1337 path->bier_table.fp_bier_tbl = rpath->frp_bier_tbl;
1338 }
Florin Coras79ae2d32017-12-16 08:31:06 -08001339 else if (rpath->frp_flags & FIB_ROUTE_PATH_DEAG)
1340 {
1341 path->fp_type = FIB_PATH_TYPE_DEAG;
1342 path->deag.fp_tbl_id = rpath->frp_fib_index;
1343 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08001344 else if (rpath->frp_flags & FIB_ROUTE_PATH_DVR)
1345 {
1346 path->fp_type = FIB_PATH_TYPE_DVR;
1347 path->dvr.fp_interface = rpath->frp_sw_if_index;
1348 }
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001349 else if (rpath->frp_flags & FIB_ROUTE_PATH_EXCLUSIVE)
1350 {
1351 path->fp_type = FIB_PATH_TYPE_EXCLUSIVE;
1352 dpo_copy(&path->exclusive.fp_ex_dpo, &rpath->dpo);
1353 }
Neale Ranns097fa662018-05-01 05:17:55 -07001354 else if ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT) ||
1355 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH))
1356 {
1357 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1358 }
1359 else if ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_CLASSIFY))
1360 {
1361 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1362 path->classify.fp_classify_table_id = rpath->frp_classify_table_id;
1363 }
Neale Rannse2fe0972020-11-26 08:37:27 +00001364 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_GLEAN)
1365 {
1366 path->fp_type = FIB_PATH_TYPE_ATTACHED;
1367 path->attached.fp_interface = rpath->frp_sw_if_index;
1368 path->attached.fp_connected = rpath->frp_connected;
1369 }
Neale Ranns32e1c012016-11-22 17:07:28 +00001370 else if (~0 != rpath->frp_sw_if_index)
1371 {
1372 if (ip46_address_is_zero(&rpath->frp_addr))
1373 {
1374 path->fp_type = FIB_PATH_TYPE_ATTACHED;
1375 path->attached.fp_interface = rpath->frp_sw_if_index;
1376 }
1377 else
1378 {
1379 path->fp_type = FIB_PATH_TYPE_ATTACHED_NEXT_HOP;
1380 path->attached_next_hop.fp_interface = rpath->frp_sw_if_index;
1381 path->attached_next_hop.fp_nh = rpath->frp_addr;
1382 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001383 }
1384 else
1385 {
1386 if (ip46_address_is_zero(&rpath->frp_addr))
1387 {
1388 if (~0 == rpath->frp_fib_index)
1389 {
1390 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1391 }
1392 else
1393 {
1394 path->fp_type = FIB_PATH_TYPE_DEAG;
1395 path->deag.fp_tbl_id = rpath->frp_fib_index;
Neale Ranns31ed7442018-02-23 05:29:09 -08001396 path->deag.fp_rpf_id = ~0;
1397 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001398 }
1399 else
1400 {
1401 path->fp_type = FIB_PATH_TYPE_RECURSIVE;
Neale Rannsda78f952017-05-24 09:15:43 -07001402 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001403 {
1404 path->recursive.fp_nh.fp_local_label = rpath->frp_local_label;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001405 path->recursive.fp_nh.fp_eos = rpath->frp_eos;
Neale Rannsad422ed2016-11-02 14:20:04 +00001406 }
1407 else
1408 {
1409 path->recursive.fp_nh.fp_ip = rpath->frp_addr;
1410 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07001411 path->recursive.fp_tbl_id = rpath->frp_fib_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001412 }
1413 }
1414
1415 FIB_PATH_DBG(path, "create");
1416
1417 return (fib_path_get_index(path));
1418}
1419
1420/*
1421 * fib_path_create_special
1422 *
1423 * Create and initialise a new path object.
1424 * return the index of the path.
1425 */
1426fib_node_index_t
1427fib_path_create_special (fib_node_index_t pl_index,
Neale Rannsda78f952017-05-24 09:15:43 -07001428 dpo_proto_t nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001429 fib_path_cfg_flags_t flags,
1430 const dpo_id_t *dpo)
1431{
1432 fib_path_t *path;
1433
1434 pool_get(fib_path_pool, path);
Dave Barachb7b92992018-10-17 10:38:51 -04001435 clib_memset(path, 0, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001436
1437 fib_node_init(&path->fp_node,
1438 FIB_NODE_TYPE_PATH);
1439 dpo_reset(&path->fp_dpo);
1440
1441 path->fp_pl_index = pl_index;
1442 path->fp_weight = 1;
Neale Ranns57b58602017-07-15 07:37:25 -07001443 path->fp_preference = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001444 path->fp_nh_proto = nh_proto;
1445 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
1446 path->fp_cfg_flags = flags;
1447
1448 if (FIB_PATH_CFG_FLAG_DROP & flags)
1449 {
1450 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1451 }
1452 else if (FIB_PATH_CFG_FLAG_LOCAL & flags)
1453 {
1454 path->fp_type = FIB_PATH_TYPE_RECEIVE;
1455 path->attached.fp_interface = FIB_NODE_INDEX_INVALID;
1456 }
1457 else
1458 {
1459 path->fp_type = FIB_PATH_TYPE_EXCLUSIVE;
1460 ASSERT(NULL != dpo);
1461 dpo_copy(&path->exclusive.fp_ex_dpo, dpo);
1462 }
1463
1464 return (fib_path_get_index(path));
1465}
1466
1467/*
1468 * fib_path_copy
1469 *
1470 * Copy a path. return index of new path.
1471 */
1472fib_node_index_t
1473fib_path_copy (fib_node_index_t path_index,
1474 fib_node_index_t path_list_index)
1475{
1476 fib_path_t *path, *orig_path;
1477
1478 pool_get(fib_path_pool, path);
1479
1480 orig_path = fib_path_get(path_index);
1481 ASSERT(NULL != orig_path);
1482
Zhiyong Yangd3d7ef52020-01-09 04:20:57 -05001483 clib_memcpy(path, orig_path, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001484
1485 FIB_PATH_DBG(path, "create-copy:%d", path_index);
1486
1487 /*
1488 * reset the dynamic section
1489 */
1490 fib_node_init(&path->fp_node, FIB_NODE_TYPE_PATH);
1491 path->fp_oper_flags = FIB_PATH_OPER_FLAG_NONE;
1492 path->fp_pl_index = path_list_index;
1493 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
Dave Barachb7b92992018-10-17 10:38:51 -04001494 clib_memset(&path->fp_dpo, 0, sizeof(path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001495 dpo_reset(&path->fp_dpo);
1496
1497 return (fib_path_get_index(path));
1498}
1499
1500/*
1501 * fib_path_destroy
1502 *
1503 * destroy a path that is no longer required
1504 */
1505void
1506fib_path_destroy (fib_node_index_t path_index)
1507{
1508 fib_path_t *path;
1509
1510 path = fib_path_get(path_index);
1511
1512 ASSERT(NULL != path);
1513 FIB_PATH_DBG(path, "destroy");
1514
1515 fib_path_unresolve(path);
1516
1517 fib_node_deinit(&path->fp_node);
1518 pool_put(fib_path_pool, path);
1519}
1520
1521/*
1522 * fib_path_destroy
1523 *
1524 * destroy a path that is no longer required
1525 */
1526uword
1527fib_path_hash (fib_node_index_t path_index)
1528{
1529 fib_path_t *path;
1530
1531 path = fib_path_get(path_index);
1532
1533 return (hash_memory(STRUCT_MARK_PTR(path, path_hash_start),
1534 (STRUCT_OFFSET_OF(fib_path_t, path_hash_end) -
1535 STRUCT_OFFSET_OF(fib_path_t, path_hash_start)),
1536 0));
1537}
1538
1539/*
1540 * fib_path_cmp_i
1541 *
1542 * Compare two paths for equivalence.
1543 */
1544static int
1545fib_path_cmp_i (const fib_path_t *path1,
1546 const fib_path_t *path2)
1547{
1548 int res;
1549
1550 res = 1;
1551
1552 /*
1553 * paths of different types and protocol are not equal.
Neale Ranns57b58602017-07-15 07:37:25 -07001554 * different weights and/or preference only are the same path.
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001555 */
1556 if (path1->fp_type != path2->fp_type)
1557 {
1558 res = (path1->fp_type - path2->fp_type);
1559 }
Neale Ranns32e1c012016-11-22 17:07:28 +00001560 else if (path1->fp_nh_proto != path2->fp_nh_proto)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001561 {
1562 res = (path1->fp_nh_proto - path2->fp_nh_proto);
1563 }
1564 else
1565 {
1566 /*
1567 * both paths are of the same type.
1568 * consider each type and its attributes in turn.
1569 */
1570 switch (path1->fp_type)
1571 {
1572 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1573 res = ip46_address_cmp(&path1->attached_next_hop.fp_nh,
1574 &path2->attached_next_hop.fp_nh);
1575 if (0 == res) {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001576 res = (path1->attached_next_hop.fp_interface -
1577 path2->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001578 }
1579 break;
1580 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001581 res = (path1->attached.fp_interface -
1582 path2->attached.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001583 break;
1584 case FIB_PATH_TYPE_RECURSIVE:
Neale Rannscbe25aa2019-09-30 10:53:31 +00001585 res = ip46_address_cmp(&path1->recursive.fp_nh.fp_ip,
1586 &path2->recursive.fp_nh.fp_ip);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001587
1588 if (0 == res)
1589 {
1590 res = (path1->recursive.fp_tbl_id - path2->recursive.fp_tbl_id);
1591 }
1592 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001593 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08001594 res = (path1->bier_fmask.fp_bier_fmask -
1595 path2->bier_fmask.fp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07001596 break;
1597 case FIB_PATH_TYPE_BIER_IMP:
1598 res = (path1->bier_imp.fp_bier_imp -
1599 path2->bier_imp.fp_bier_imp);
1600 break;
1601 case FIB_PATH_TYPE_BIER_TABLE:
1602 res = bier_table_id_cmp(&path1->bier_table.fp_bier_tbl,
1603 &path2->bier_table.fp_bier_tbl);
1604 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001605 case FIB_PATH_TYPE_DEAG:
1606 res = (path1->deag.fp_tbl_id - path2->deag.fp_tbl_id);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001607 if (0 == res)
1608 {
1609 res = (path1->deag.fp_rpf_id - path2->deag.fp_rpf_id);
1610 }
1611 break;
1612 case FIB_PATH_TYPE_INTF_RX:
1613 res = (path1->intf_rx.fp_interface - path2->intf_rx.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001614 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001615 case FIB_PATH_TYPE_UDP_ENCAP:
1616 res = (path1->udp_encap.fp_udp_encap_id - path2->udp_encap.fp_udp_encap_id);
1617 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08001618 case FIB_PATH_TYPE_DVR:
1619 res = (path1->dvr.fp_interface - path2->dvr.fp_interface);
1620 break;
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001621 case FIB_PATH_TYPE_EXCLUSIVE:
1622 res = dpo_cmp(&path1->exclusive.fp_ex_dpo, &path2->exclusive.fp_ex_dpo);
1623 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001624 case FIB_PATH_TYPE_SPECIAL:
1625 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001626 res = 0;
1627 break;
1628 }
1629 }
1630 return (res);
1631}
1632
1633/*
1634 * fib_path_cmp_for_sort
1635 *
1636 * Compare two paths for equivalence. Used during path sorting.
1637 * As usual 0 means equal.
1638 */
1639int
1640fib_path_cmp_for_sort (void * v1,
1641 void * v2)
1642{
1643 fib_node_index_t *pi1 = v1, *pi2 = v2;
1644 fib_path_t *path1, *path2;
1645
1646 path1 = fib_path_get(*pi1);
1647 path2 = fib_path_get(*pi2);
1648
Neale Ranns57b58602017-07-15 07:37:25 -07001649 /*
1650 * when sorting paths we want the highest preference paths
1651 * first, so that the choices set built is in prefernce order
1652 */
1653 if (path1->fp_preference != path2->fp_preference)
1654 {
1655 return (path1->fp_preference - path2->fp_preference);
1656 }
1657
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001658 return (fib_path_cmp_i(path1, path2));
1659}
1660
1661/*
1662 * fib_path_cmp
1663 *
1664 * Compare two paths for equivalence.
1665 */
1666int
1667fib_path_cmp (fib_node_index_t pi1,
1668 fib_node_index_t pi2)
1669{
1670 fib_path_t *path1, *path2;
1671
1672 path1 = fib_path_get(pi1);
1673 path2 = fib_path_get(pi2);
1674
1675 return (fib_path_cmp_i(path1, path2));
1676}
1677
1678int
1679fib_path_cmp_w_route_path (fib_node_index_t path_index,
1680 const fib_route_path_t *rpath)
1681{
1682 fib_path_t *path;
1683 int res;
1684
1685 path = fib_path_get(path_index);
1686
1687 res = 1;
1688
1689 if (path->fp_weight != rpath->frp_weight)
1690 {
1691 res = (path->fp_weight - rpath->frp_weight);
1692 }
1693 else
1694 {
1695 /*
1696 * both paths are of the same type.
1697 * consider each type and its attributes in turn.
1698 */
1699 switch (path->fp_type)
1700 {
1701 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1702 res = ip46_address_cmp(&path->attached_next_hop.fp_nh,
1703 &rpath->frp_addr);
1704 if (0 == res)
1705 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001706 res = (path->attached_next_hop.fp_interface -
1707 rpath->frp_sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001708 }
1709 break;
1710 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001711 res = (path->attached.fp_interface - rpath->frp_sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001712 break;
1713 case FIB_PATH_TYPE_RECURSIVE:
Neale Rannsda78f952017-05-24 09:15:43 -07001714 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001715 {
1716 res = path->recursive.fp_nh.fp_local_label - rpath->frp_local_label;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001717
1718 if (res == 0)
1719 {
1720 res = path->recursive.fp_nh.fp_eos - rpath->frp_eos;
1721 }
Neale Rannsad422ed2016-11-02 14:20:04 +00001722 }
1723 else
1724 {
1725 res = ip46_address_cmp(&path->recursive.fp_nh.fp_ip,
1726 &rpath->frp_addr);
1727 }
1728
1729 if (0 == res)
1730 {
1731 res = (path->recursive.fp_tbl_id - rpath->frp_fib_index);
1732 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001733 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001734 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08001735 res = (path->bier_fmask.fp_bier_fmask - rpath->frp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07001736 break;
1737 case FIB_PATH_TYPE_BIER_IMP:
1738 res = (path->bier_imp.fp_bier_imp - rpath->frp_bier_imp);
1739 break;
1740 case FIB_PATH_TYPE_BIER_TABLE:
1741 res = bier_table_id_cmp(&path->bier_table.fp_bier_tbl,
1742 &rpath->frp_bier_tbl);
1743 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001744 case FIB_PATH_TYPE_INTF_RX:
1745 res = (path->intf_rx.fp_interface - rpath->frp_sw_if_index);
1746 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001747 case FIB_PATH_TYPE_UDP_ENCAP:
1748 res = (path->udp_encap.fp_udp_encap_id - rpath->frp_udp_encap_id);
1749 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001750 case FIB_PATH_TYPE_DEAG:
1751 res = (path->deag.fp_tbl_id - rpath->frp_fib_index);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001752 if (0 == res)
1753 {
1754 res = (path->deag.fp_rpf_id - rpath->frp_rpf_id);
1755 }
1756 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08001757 case FIB_PATH_TYPE_DVR:
1758 res = (path->dvr.fp_interface - rpath->frp_sw_if_index);
1759 break;
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001760 case FIB_PATH_TYPE_EXCLUSIVE:
1761 res = dpo_cmp(&path->exclusive.fp_ex_dpo, &rpath->dpo);
1762 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001763 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07001764 if (rpath->frp_flags & FIB_ROUTE_PATH_LOCAL)
1765 {
1766 res = 0;
1767 }
1768 else
1769 {
1770 res = 1;
1771 }
1772 break;
1773 case FIB_PATH_TYPE_SPECIAL:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001774 res = 0;
1775 break;
1776 }
1777 }
1778 return (res);
1779}
1780
1781/*
1782 * fib_path_recursive_loop_detect
1783 *
1784 * A forward walk of the FIB object graph to detect for a cycle/loop. This
1785 * walk is initiated when an entry is linking to a new path list or from an old.
1786 * The entry vector passed contains all the FIB entrys that are children of this
1787 * path (it is all the entries encountered on the walk so far). If this vector
1788 * contains the entry this path resolve via, then a loop is about to form.
1789 * The loop must be allowed to form, since we need the dependencies in place
1790 * so that we can track when the loop breaks.
1791 * However, we MUST not produce a loop in the forwarding graph (else packets
1792 * would loop around the switch path until the loop breaks), so we mark recursive
1793 * paths as looped so that they do not contribute forwarding information.
1794 * By marking the path as looped, an etry such as;
1795 * X/Y
1796 * via a.a.a.a (looped)
1797 * via b.b.b.b (not looped)
1798 * can still forward using the info provided by b.b.b.b only
1799 */
1800int
1801fib_path_recursive_loop_detect (fib_node_index_t path_index,
1802 fib_node_index_t **entry_indicies)
1803{
1804 fib_path_t *path;
1805
1806 path = fib_path_get(path_index);
1807
1808 /*
1809 * the forced drop path is never looped, cos it is never resolved.
1810 */
1811 if (fib_path_is_permanent_drop(path))
1812 {
1813 return (0);
1814 }
1815
1816 switch (path->fp_type)
1817 {
1818 case FIB_PATH_TYPE_RECURSIVE:
1819 {
1820 fib_node_index_t *entry_index, *entries;
1821 int looped = 0;
1822 entries = *entry_indicies;
1823
1824 vec_foreach(entry_index, entries) {
1825 if (*entry_index == path->fp_via_fib)
1826 {
1827 /*
1828 * the entry that is about to link to this path-list (or
1829 * one of this path-list's children) is the same entry that
1830 * this recursive path resolves through. this is a cycle.
1831 * abort the walk.
1832 */
1833 looped = 1;
1834 break;
1835 }
1836 }
1837
1838 if (looped)
1839 {
1840 FIB_PATH_DBG(path, "recursive loop formed");
1841 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1842
Neale Rannsda78f952017-05-24 09:15:43 -07001843 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001844 }
1845 else
1846 {
1847 /*
1848 * no loop here yet. keep forward walking the graph.
Neale Ranns521a8d72018-12-06 13:46:49 +00001849 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001850 if (fib_entry_recursive_loop_detect(path->fp_via_fib, entry_indicies))
1851 {
1852 FIB_PATH_DBG(path, "recursive loop formed");
1853 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1854 }
1855 else
1856 {
1857 FIB_PATH_DBG(path, "recursive loop cleared");
1858 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1859 }
1860 }
1861 break;
1862 }
1863 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1864 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns14053c92019-12-29 23:55:18 +00001865 if (dpo_is_adj(&path->fp_dpo) &&
1866 adj_recursive_loop_detect(path->fp_dpo.dpoi_index,
Neale Ranns521a8d72018-12-06 13:46:49 +00001867 entry_indicies))
1868 {
1869 FIB_PATH_DBG(path, "recursive loop formed");
1870 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1871 }
1872 else
1873 {
1874 FIB_PATH_DBG(path, "recursive loop cleared");
1875 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1876 }
1877 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001878 case FIB_PATH_TYPE_SPECIAL:
1879 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -08001880 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001881 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001882 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08001883 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001884 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07001885 case FIB_PATH_TYPE_BIER_FMASK:
1886 case FIB_PATH_TYPE_BIER_TABLE:
1887 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001888 /*
1889 * these path types cannot be part of a loop, since they are the leaves
1890 * of the graph.
1891 */
1892 break;
1893 }
1894
1895 return (fib_path_is_looped(path_index));
1896}
1897
1898int
1899fib_path_resolve (fib_node_index_t path_index)
1900{
1901 fib_path_t *path;
1902
1903 path = fib_path_get(path_index);
1904
1905 /*
1906 * hope for the best.
1907 */
1908 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1909
1910 /*
1911 * the forced drop path resolves via the drop adj
1912 */
1913 if (fib_path_is_permanent_drop(path))
1914 {
Neale Rannsda78f952017-05-24 09:15:43 -07001915 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001916 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1917 return (fib_path_is_resolved(path_index));
1918 }
1919
1920 switch (path->fp_type)
1921 {
1922 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1923 fib_path_attached_next_hop_set(path);
1924 break;
1925 case FIB_PATH_TYPE_ATTACHED:
Neale Rannsd35abc42019-04-18 09:42:20 +00001926 {
1927 dpo_id_t tmp = DPO_INVALID;
1928
Neale Rannsf068c3e2018-01-03 04:18:48 -08001929 /*
1930 * path->attached.fp_interface
1931 */
Neale Ranns3e2e1902019-03-14 09:21:02 -07001932 if (!vnet_sw_interface_is_up(vnet_get_main(),
1933 path->attached.fp_interface))
Neale Ranns6f631152017-10-03 08:20:21 -07001934 {
Neale Rannsf068c3e2018-01-03 04:18:48 -08001935 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Ranns6f631152017-10-03 08:20:21 -07001936 }
Neale Ranns3fd99042019-12-16 00:53:11 +00001937 fib_path_attached_get_adj(path,
1938 dpo_proto_to_link(path->fp_nh_proto),
1939 &tmp);
Neale Ranns8c4611b2017-05-23 03:43:47 -07001940
Neale Rannsf068c3e2018-01-03 04:18:48 -08001941 /*
Neale Rannsd35abc42019-04-18 09:42:20 +00001942 * re-fetch after possible mem realloc
1943 */
1944 path = fib_path_get(path_index);
1945 dpo_copy(&path->fp_dpo, &tmp);
1946
1947 /*
Neale Rannsf068c3e2018-01-03 04:18:48 -08001948 * become a child of the adjacency so we receive updates
1949 * when the interface state changes
1950 */
Neale Ranns3fd99042019-12-16 00:53:11 +00001951 if (dpo_is_adj(&path->fp_dpo))
1952 {
1953 path->fp_sibling = adj_child_add(path->fp_dpo.dpoi_index,
1954 FIB_NODE_TYPE_PATH,
1955 fib_path_get_index(path));
1956 }
Neale Rannsd35abc42019-04-18 09:42:20 +00001957 dpo_reset(&tmp);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001958 break;
Neale Rannsd35abc42019-04-18 09:42:20 +00001959 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001960 case FIB_PATH_TYPE_RECURSIVE:
1961 {
1962 /*
1963 * Create a RR source entry in the table for the address
1964 * that this path recurses through.
1965 * This resolve action is recursive, hence we may create
1966 * more paths in the process. more creates mean maybe realloc
1967 * of this path.
1968 */
1969 fib_node_index_t fei;
1970 fib_prefix_t pfx;
1971
1972 ASSERT(FIB_NODE_INDEX_INVALID == path->fp_via_fib);
1973
Neale Rannsda78f952017-05-24 09:15:43 -07001974 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001975 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001976 fib_prefix_from_mpls_label(path->recursive.fp_nh.fp_local_label,
1977 path->recursive.fp_nh.fp_eos,
1978 &pfx);
Neale Rannsad422ed2016-11-02 14:20:04 +00001979 }
1980 else
1981 {
1982 fib_prefix_from_ip46_addr(&path->recursive.fp_nh.fp_ip, &pfx);
1983 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001984
Neale Ranns6fff24a2018-09-10 19:14:07 -07001985 fib_table_lock(path->recursive.fp_tbl_id,
1986 dpo_proto_to_fib(path->fp_nh_proto),
1987 FIB_SOURCE_RR);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001988 fei = fib_table_entry_special_add(path->recursive.fp_tbl_id,
1989 &pfx,
1990 FIB_SOURCE_RR,
Neale Rannsa0558302017-04-13 00:44:52 -07001991 FIB_ENTRY_FLAG_NONE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001992
1993 path = fib_path_get(path_index);
1994 path->fp_via_fib = fei;
1995
1996 /*
1997 * become a dependent child of the entry so the path is
1998 * informed when the forwarding for the entry changes.
1999 */
2000 path->fp_sibling = fib_entry_child_add(path->fp_via_fib,
2001 FIB_NODE_TYPE_PATH,
2002 fib_path_get_index(path));
2003
2004 /*
2005 * create and configure the IP DPO
2006 */
2007 fib_path_recursive_adj_update(
2008 path,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002009 fib_path_to_chain_type(path),
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002010 &path->fp_dpo);
2011
2012 break;
2013 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07002014 case FIB_PATH_TYPE_BIER_FMASK:
2015 {
2016 /*
Neale Rannsd792d9c2017-10-21 10:53:20 -07002017 * become a dependent child of the entry so the path is
2018 * informed when the forwarding for the entry changes.
2019 */
Neale Ranns91286372017-12-05 13:24:04 -08002020 path->fp_sibling = bier_fmask_child_add(path->bier_fmask.fp_bier_fmask,
Neale Rannsd792d9c2017-10-21 10:53:20 -07002021 FIB_NODE_TYPE_PATH,
2022 fib_path_get_index(path));
2023
Neale Ranns91286372017-12-05 13:24:04 -08002024 path->fp_via_bier_fmask = path->bier_fmask.fp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002025 fib_path_bier_fmask_update(path, &path->fp_dpo);
2026
2027 break;
2028 }
2029 case FIB_PATH_TYPE_BIER_IMP:
2030 bier_imp_lock(path->bier_imp.fp_bier_imp);
2031 bier_imp_contribute_forwarding(path->bier_imp.fp_bier_imp,
2032 DPO_PROTO_IP4,
2033 &path->fp_dpo);
2034 break;
2035 case FIB_PATH_TYPE_BIER_TABLE:
2036 {
2037 /*
2038 * Find/create the BIER table to link to
2039 */
2040 ASSERT(FIB_NODE_INDEX_INVALID == path->fp_via_bier_tbl);
2041
2042 path->fp_via_bier_tbl =
2043 bier_table_ecmp_create_and_lock(&path->bier_table.fp_bier_tbl);
2044
2045 bier_table_contribute_forwarding(path->fp_via_bier_tbl,
2046 &path->fp_dpo);
2047 break;
2048 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002049 case FIB_PATH_TYPE_SPECIAL:
Neale Ranns097fa662018-05-01 05:17:55 -07002050 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT)
2051 {
2052 ip_null_dpo_add_and_lock (path->fp_nh_proto,
2053 IP_NULL_ACTION_SEND_ICMP_PROHIBIT,
2054 &path->fp_dpo);
2055 }
2056 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH)
2057 {
2058 ip_null_dpo_add_and_lock (path->fp_nh_proto,
2059 IP_NULL_ACTION_SEND_ICMP_UNREACH,
2060 &path->fp_dpo);
2061 }
2062 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_CLASSIFY)
2063 {
2064 dpo_set (&path->fp_dpo, DPO_CLASSIFY,
2065 path->fp_nh_proto,
2066 classify_dpo_create (path->fp_nh_proto,
2067 path->classify.fp_classify_table_id));
2068 }
2069 else
2070 {
2071 /*
2072 * Resolve via the drop
2073 */
2074 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
2075 }
2076 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002077 case FIB_PATH_TYPE_DEAG:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002078 {
Neale Ranns91286372017-12-05 13:24:04 -08002079 if (DPO_PROTO_BIER == path->fp_nh_proto)
2080 {
2081 bier_disp_table_contribute_forwarding(path->deag.fp_tbl_id,
2082 &path->fp_dpo);
2083 }
2084 else
2085 {
2086 /*
2087 * Resolve via a lookup DPO.
2088 * FIXME. control plane should add routes with a table ID
2089 */
2090 lookup_input_t input;
2091 lookup_cast_t cast;
Neale Ranns054c03a2017-10-13 05:15:07 -07002092
Neale Ranns91286372017-12-05 13:24:04 -08002093 cast = (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID ?
2094 LOOKUP_MULTICAST :
2095 LOOKUP_UNICAST);
2096 input = (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DEAG_SRC ?
2097 LOOKUP_INPUT_SRC_ADDR :
2098 LOOKUP_INPUT_DST_ADDR);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002099
Neale Ranns91286372017-12-05 13:24:04 -08002100 lookup_dpo_add_or_lock_w_fib_index(path->deag.fp_tbl_id,
2101 path->fp_nh_proto,
2102 cast,
2103 input,
2104 LOOKUP_TABLE_FROM_CONFIG,
2105 &path->fp_dpo);
2106 }
2107 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002108 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08002109 case FIB_PATH_TYPE_DVR:
Neale Rannse2fe0972020-11-26 08:37:27 +00002110 dvr_dpo_add_or_lock(path->dvr.fp_interface,
Neale Rannsf068c3e2018-01-03 04:18:48 -08002111 path->fp_nh_proto,
2112 &path->fp_dpo);
2113 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002114 case FIB_PATH_TYPE_RECEIVE:
2115 /*
2116 * Resolve via a receive DPO.
2117 */
Neale Rannsda78f952017-05-24 09:15:43 -07002118 receive_dpo_add_or_lock(path->fp_nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002119 path->receive.fp_interface,
2120 &path->receive.fp_addr,
2121 &path->fp_dpo);
2122 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002123 case FIB_PATH_TYPE_UDP_ENCAP:
2124 udp_encap_lock(path->udp_encap.fp_udp_encap_id);
2125 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
2126 path->fp_nh_proto,
2127 &path->fp_dpo);
2128 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002129 case FIB_PATH_TYPE_INTF_RX: {
2130 /*
2131 * Resolve via a receive DPO.
2132 */
Neale Ranns43161a82017-08-12 02:12:00 -07002133 interface_rx_dpo_add_or_lock(path->fp_nh_proto,
2134 path->intf_rx.fp_interface,
2135 &path->fp_dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002136 break;
2137 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002138 case FIB_PATH_TYPE_EXCLUSIVE:
2139 /*
2140 * Resolve via the user provided DPO
2141 */
2142 dpo_copy(&path->fp_dpo, &path->exclusive.fp_ex_dpo);
2143 break;
2144 }
2145
2146 return (fib_path_is_resolved(path_index));
2147}
2148
2149u32
2150fib_path_get_resolving_interface (fib_node_index_t path_index)
2151{
2152 fib_path_t *path;
2153
2154 path = fib_path_get(path_index);
2155
2156 switch (path->fp_type)
2157 {
2158 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2159 return (path->attached_next_hop.fp_interface);
2160 case FIB_PATH_TYPE_ATTACHED:
2161 return (path->attached.fp_interface);
2162 case FIB_PATH_TYPE_RECEIVE:
2163 return (path->receive.fp_interface);
2164 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns08b16482017-05-13 05:52:58 -07002165 if (fib_path_is_resolved(path_index))
2166 {
2167 return (fib_entry_get_resolving_interface(path->fp_via_fib));
2168 }
2169 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08002170 case FIB_PATH_TYPE_DVR:
2171 return (path->dvr.fp_interface);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002172 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08002173 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002174 case FIB_PATH_TYPE_SPECIAL:
2175 case FIB_PATH_TYPE_DEAG:
2176 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002177 case FIB_PATH_TYPE_BIER_FMASK:
2178 case FIB_PATH_TYPE_BIER_TABLE:
2179 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002180 break;
2181 }
Neale Ranns4a6d0232018-04-24 07:45:33 -07002182 return (dpo_get_urpf(&path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002183}
2184
Neale Rannsd792d9c2017-10-21 10:53:20 -07002185index_t
2186fib_path_get_resolving_index (fib_node_index_t path_index)
2187{
2188 fib_path_t *path;
2189
2190 path = fib_path_get(path_index);
2191
2192 switch (path->fp_type)
2193 {
2194 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2195 case FIB_PATH_TYPE_ATTACHED:
2196 case FIB_PATH_TYPE_RECEIVE:
2197 case FIB_PATH_TYPE_INTF_RX:
2198 case FIB_PATH_TYPE_SPECIAL:
2199 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002200 case FIB_PATH_TYPE_DVR:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002201 case FIB_PATH_TYPE_EXCLUSIVE:
2202 break;
2203 case FIB_PATH_TYPE_UDP_ENCAP:
2204 return (path->udp_encap.fp_udp_encap_id);
2205 case FIB_PATH_TYPE_RECURSIVE:
2206 return (path->fp_via_fib);
2207 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08002208 return (path->bier_fmask.fp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07002209 case FIB_PATH_TYPE_BIER_TABLE:
2210 return (path->fp_via_bier_tbl);
2211 case FIB_PATH_TYPE_BIER_IMP:
2212 return (path->bier_imp.fp_bier_imp);
2213 }
2214 return (~0);
2215}
2216
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002217adj_index_t
2218fib_path_get_adj (fib_node_index_t path_index)
2219{
2220 fib_path_t *path;
2221
2222 path = fib_path_get(path_index);
2223
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002224 if (dpo_is_adj(&path->fp_dpo))
2225 {
2226 return (path->fp_dpo.dpoi_index);
2227 }
2228 return (ADJ_INDEX_INVALID);
2229}
2230
Neale Ranns57b58602017-07-15 07:37:25 -07002231u16
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002232fib_path_get_weight (fib_node_index_t path_index)
2233{
2234 fib_path_t *path;
2235
2236 path = fib_path_get(path_index);
2237
2238 ASSERT(path);
2239
2240 return (path->fp_weight);
2241}
2242
Neale Ranns57b58602017-07-15 07:37:25 -07002243u16
2244fib_path_get_preference (fib_node_index_t path_index)
2245{
2246 fib_path_t *path;
2247
2248 path = fib_path_get(path_index);
2249
2250 ASSERT(path);
2251
2252 return (path->fp_preference);
2253}
2254
Neale Rannsd792d9c2017-10-21 10:53:20 -07002255u32
2256fib_path_get_rpf_id (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 if (FIB_PATH_CFG_FLAG_RPF_ID & path->fp_cfg_flags)
2265 {
2266 return (path->deag.fp_rpf_id);
2267 }
2268
2269 return (~0);
2270}
2271
Neale Ranns3ee44042016-10-03 13:05:48 +01002272/**
2273 * @brief Contribute the path's adjacency to the list passed.
2274 * By calling this function over all paths, recursively, a child
2275 * can construct its full set of forwarding adjacencies, and hence its
2276 * uRPF list.
2277 */
2278void
2279fib_path_contribute_urpf (fib_node_index_t path_index,
2280 index_t urpf)
2281{
2282 fib_path_t *path;
2283
Neale Ranns3ee44042016-10-03 13:05:48 +01002284 path = fib_path_get(path_index);
2285
Neale Ranns88fc83e2017-04-05 08:11:14 -07002286 /*
2287 * resolved and unresolved paths contribute to the RPF list.
2288 */
Neale Ranns3ee44042016-10-03 13:05:48 +01002289 switch (path->fp_type)
2290 {
2291 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2292 fib_urpf_list_append(urpf, path->attached_next_hop.fp_interface);
2293 break;
2294
2295 case FIB_PATH_TYPE_ATTACHED:
2296 fib_urpf_list_append(urpf, path->attached.fp_interface);
2297 break;
2298
2299 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns08b16482017-05-13 05:52:58 -07002300 if (FIB_NODE_INDEX_INVALID != path->fp_via_fib &&
2301 !fib_path_is_looped(path_index))
Neale Ranns88fc83e2017-04-05 08:11:14 -07002302 {
2303 /*
2304 * there's unresolved due to constraints, and there's unresolved
Neale Ranns08b16482017-05-13 05:52:58 -07002305 * due to ain't got no via. can't do nowt w'out via.
Neale Ranns88fc83e2017-04-05 08:11:14 -07002306 */
2307 fib_entry_contribute_urpf(path->fp_via_fib, urpf);
2308 }
Neale Ranns3ee44042016-10-03 13:05:48 +01002309 break;
2310
2311 case FIB_PATH_TYPE_EXCLUSIVE:
2312 case FIB_PATH_TYPE_SPECIAL:
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002313 {
2314 /*
Neale Ranns3ee44042016-10-03 13:05:48 +01002315 * these path types may link to an adj, if that's what
2316 * the clinet gave
2317 */
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002318 u32 rpf_sw_if_index;
2319
2320 rpf_sw_if_index = dpo_get_urpf(&path->fp_dpo);
2321
2322 if (~0 != rpf_sw_if_index)
Neale Ranns3ee44042016-10-03 13:05:48 +01002323 {
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002324 fib_urpf_list_append(urpf, rpf_sw_if_index);
Neale Ranns3ee44042016-10-03 13:05:48 +01002325 }
2326 break;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002327 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08002328 case FIB_PATH_TYPE_DVR:
2329 fib_urpf_list_append(urpf, path->dvr.fp_interface);
2330 break;
Neale Ranns3ee44042016-10-03 13:05:48 +01002331 case FIB_PATH_TYPE_DEAG:
2332 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002333 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08002334 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002335 case FIB_PATH_TYPE_BIER_FMASK:
2336 case FIB_PATH_TYPE_BIER_TABLE:
2337 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns3ee44042016-10-03 13:05:48 +01002338 /*
2339 * these path types don't link to an adj
2340 */
2341 break;
2342 }
2343}
2344
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002345void
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002346fib_path_stack_mpls_disp (fib_node_index_t path_index,
2347 dpo_proto_t payload_proto,
Neale Ranns31ed7442018-02-23 05:29:09 -08002348 fib_mpls_lsp_mode_t mode,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002349 dpo_id_t *dpo)
2350{
2351 fib_path_t *path;
2352
2353 path = fib_path_get(path_index);
2354
2355 ASSERT(path);
2356
2357 switch (path->fp_type)
2358 {
Neale Ranns62fe07c2017-10-31 12:28:22 -07002359 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2360 {
2361 dpo_id_t tmp = DPO_INVALID;
2362
2363 dpo_copy(&tmp, dpo);
Neale Ranns31ed7442018-02-23 05:29:09 -08002364
2365 mpls_disp_dpo_create(payload_proto, ~0, mode, &tmp, dpo);
Neale Ranns62fe07c2017-10-31 12:28:22 -07002366 dpo_reset(&tmp);
2367 break;
2368 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002369 case FIB_PATH_TYPE_DEAG:
2370 {
2371 dpo_id_t tmp = DPO_INVALID;
2372
2373 dpo_copy(&tmp, dpo);
Neale Ranns31ed7442018-02-23 05:29:09 -08002374
2375 mpls_disp_dpo_create(payload_proto,
2376 path->deag.fp_rpf_id,
2377 mode, &tmp, dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002378 dpo_reset(&tmp);
2379 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002380 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002381 case FIB_PATH_TYPE_RECEIVE:
2382 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002383 case FIB_PATH_TYPE_RECURSIVE:
2384 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08002385 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002386 case FIB_PATH_TYPE_EXCLUSIVE:
2387 case FIB_PATH_TYPE_SPECIAL:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002388 case FIB_PATH_TYPE_BIER_FMASK:
2389 case FIB_PATH_TYPE_BIER_TABLE:
2390 case FIB_PATH_TYPE_BIER_IMP:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002391 case FIB_PATH_TYPE_DVR:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002392 break;
2393 }
Neale Ranns1dbcf302019-07-19 11:44:53 +00002394
2395 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_POP_PW_CW)
2396 {
2397 dpo_id_t tmp = DPO_INVALID;
2398
2399 dpo_copy(&tmp, dpo);
2400
2401 pw_cw_dpo_create(&tmp, dpo);
2402 dpo_reset(&tmp);
2403 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002404}
2405
2406void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002407fib_path_contribute_forwarding (fib_node_index_t path_index,
2408 fib_forward_chain_type_t fct,
2409 dpo_id_t *dpo)
2410{
2411 fib_path_t *path;
2412
2413 path = fib_path_get(path_index);
2414
2415 ASSERT(path);
2416 ASSERT(FIB_FORW_CHAIN_TYPE_MPLS_EOS != fct);
2417
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002418 /*
2419 * The DPO stored in the path was created when the path was resolved.
2420 * This then represents the path's 'native' protocol; IP.
2421 * For all others will need to go find something else.
2422 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002423 if (fib_path_to_chain_type(path) == fct)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002424 {
2425 dpo_copy(dpo, &path->fp_dpo);
2426 }
Neale Ranns5e575b12016-10-03 09:40:25 +01002427 else
2428 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002429 switch (path->fp_type)
2430 {
2431 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2432 switch (fct)
2433 {
2434 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2435 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2436 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2437 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
Neale Ranns5e575b12016-10-03 09:40:25 +01002438 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002439 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Rannse821ab12017-06-01 07:45:05 -07002440 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2441 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
Neale Rannsa4349552020-02-18 15:23:29 +00002442 path = fib_path_attached_next_hop_get_adj(
2443 path,
2444 fib_forw_chain_type_to_link_type(fct),
2445 dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002446 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002447 case FIB_FORW_CHAIN_TYPE_BIER:
2448 break;
2449 }
Neale Ranns32e1c012016-11-22 17:07:28 +00002450 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002451 case FIB_PATH_TYPE_RECURSIVE:
2452 switch (fct)
2453 {
2454 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2455 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2456 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002457 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
Neale Ranns32e1c012016-11-22 17:07:28 +00002458 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2459 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002460 case FIB_FORW_CHAIN_TYPE_BIER:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002461 fib_path_recursive_adj_update(path, fct, dpo);
2462 break;
Neale Ranns5e575b12016-10-03 09:40:25 +01002463 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002464 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Ranns5e575b12016-10-03 09:40:25 +01002465 ASSERT(0);
2466 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002467 }
2468 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002469 case FIB_PATH_TYPE_BIER_TABLE:
2470 switch (fct)
2471 {
2472 case FIB_FORW_CHAIN_TYPE_BIER:
2473 bier_table_contribute_forwarding(path->fp_via_bier_tbl, dpo);
2474 break;
2475 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2476 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2477 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2478 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2479 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2480 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2481 case FIB_FORW_CHAIN_TYPE_ETHERNET:
2482 case FIB_FORW_CHAIN_TYPE_NSH:
2483 ASSERT(0);
2484 break;
2485 }
2486 break;
2487 case FIB_PATH_TYPE_BIER_FMASK:
2488 switch (fct)
2489 {
2490 case FIB_FORW_CHAIN_TYPE_BIER:
2491 fib_path_bier_fmask_update(path, dpo);
2492 break;
2493 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2494 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2495 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2496 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2497 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2498 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2499 case FIB_FORW_CHAIN_TYPE_ETHERNET:
2500 case FIB_FORW_CHAIN_TYPE_NSH:
2501 ASSERT(0);
2502 break;
2503 }
2504 break;
2505 case FIB_PATH_TYPE_BIER_IMP:
2506 bier_imp_contribute_forwarding(path->bier_imp.fp_bier_imp,
2507 fib_forw_chain_type_to_dpo_proto(fct),
2508 dpo);
2509 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002510 case FIB_PATH_TYPE_DEAG:
Neale Ranns32e1c012016-11-22 17:07:28 +00002511 switch (fct)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002512 {
2513 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2514 lookup_dpo_add_or_lock_w_table_id(MPLS_FIB_DEFAULT_TABLE_ID,
2515 DPO_PROTO_MPLS,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002516 LOOKUP_UNICAST,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002517 LOOKUP_INPUT_DST_ADDR,
2518 LOOKUP_TABLE_FROM_CONFIG,
2519 dpo);
2520 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002521 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002522 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2523 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
Neale Ranns32e1c012016-11-22 17:07:28 +00002524 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2525 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
Neale Ranns097fa662018-05-01 05:17:55 -07002526 dpo_copy(dpo, &path->fp_dpo);
2527 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002528 case FIB_FORW_CHAIN_TYPE_BIER:
2529 break;
Neale Ranns5e575b12016-10-03 09:40:25 +01002530 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002531 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Ranns5e575b12016-10-03 09:40:25 +01002532 ASSERT(0);
2533 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002534 }
2535 break;
2536 case FIB_PATH_TYPE_EXCLUSIVE:
2537 dpo_copy(dpo, &path->exclusive.fp_ex_dpo);
2538 break;
2539 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns32e1c012016-11-22 17:07:28 +00002540 switch (fct)
2541 {
2542 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2543 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2544 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2545 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2546 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002547 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002548 case FIB_FORW_CHAIN_TYPE_BIER:
Neale Ranns3fd99042019-12-16 00:53:11 +00002549 fib_path_attached_get_adj(path,
2550 fib_forw_chain_type_to_link_type(fct),
2551 dpo);
2552 break;
Neale Ranns32e1c012016-11-22 17:07:28 +00002553 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2554 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2555 {
2556 adj_index_t ai;
2557
2558 /*
2559 * Create the adj needed for sending IP multicast traffic
2560 */
Neale Rannsda0e7492019-10-07 22:44:54 -07002561 if (vnet_sw_interface_is_p2p(vnet_get_main(),
2562 path->attached.fp_interface))
2563 {
2564 /*
2565 * point-2-point interfaces do not require a glean, since
2566 * there is nothing to ARP. Install a rewrite/nbr adj instead
2567 */
2568 ai = adj_nbr_add_or_lock(dpo_proto_to_fib(path->fp_nh_proto),
2569 fib_forw_chain_type_to_link_type(fct),
2570 &zero_addr,
2571 path->attached.fp_interface);
2572 }
2573 else
2574 {
2575 ai = adj_mcast_add_or_lock(dpo_proto_to_fib(path->fp_nh_proto),
2576 fib_forw_chain_type_to_link_type(fct),
2577 path->attached.fp_interface);
2578 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002579 dpo_set(dpo, DPO_ADJACENCY,
Neale Ranns32e1c012016-11-22 17:07:28 +00002580 fib_forw_chain_type_to_dpo_proto(fct),
2581 ai);
2582 adj_unlock(ai);
2583 }
2584 break;
2585 }
2586 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002587 case FIB_PATH_TYPE_INTF_RX:
2588 /*
2589 * Create the adj needed for sending IP multicast traffic
2590 */
Neale Ranns43161a82017-08-12 02:12:00 -07002591 interface_rx_dpo_add_or_lock(fib_forw_chain_type_to_dpo_proto(fct),
2592 path->attached.fp_interface,
2593 dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002594 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002595 case FIB_PATH_TYPE_UDP_ENCAP:
2596 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
2597 path->fp_nh_proto,
2598 dpo);
2599 break;
Neale Ranns32e1c012016-11-22 17:07:28 +00002600 case FIB_PATH_TYPE_RECEIVE:
2601 case FIB_PATH_TYPE_SPECIAL:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002602 case FIB_PATH_TYPE_DVR:
Neale Ranns32e1c012016-11-22 17:07:28 +00002603 dpo_copy(dpo, &path->fp_dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002604 break;
2605 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002606 }
2607}
2608
2609load_balance_path_t *
2610fib_path_append_nh_for_multipath_hash (fib_node_index_t path_index,
2611 fib_forward_chain_type_t fct,
2612 load_balance_path_t *hash_key)
2613{
2614 load_balance_path_t *mnh;
2615 fib_path_t *path;
2616
2617 path = fib_path_get(path_index);
2618
2619 ASSERT(path);
2620
Neale Rannsac64b712018-10-08 14:51:11 +00002621 vec_add2(hash_key, mnh, 1);
2622
2623 mnh->path_weight = path->fp_weight;
2624 mnh->path_index = path_index;
2625
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002626 if (fib_path_is_resolved(path_index))
2627 {
Neale Rannsac64b712018-10-08 14:51:11 +00002628 fib_path_contribute_forwarding(path_index, fct, &mnh->path_dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002629 }
Neale Rannsac64b712018-10-08 14:51:11 +00002630 else
2631 {
2632 dpo_copy(&mnh->path_dpo,
2633 drop_dpo_get(fib_forw_chain_type_to_dpo_proto(fct)));
2634 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002635 return (hash_key);
2636}
2637
2638int
Neale Rannsf12a83f2017-04-18 09:09:40 -07002639fib_path_is_recursive_constrained (fib_node_index_t path_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002640{
2641 fib_path_t *path;
2642
2643 path = fib_path_get(path_index);
2644
Neale Rannsf12a83f2017-04-18 09:09:40 -07002645 return ((FIB_PATH_TYPE_RECURSIVE == path->fp_type) &&
2646 ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED) ||
2647 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_HOST)));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002648}
2649
2650int
2651fib_path_is_exclusive (fib_node_index_t path_index)
2652{
2653 fib_path_t *path;
2654
2655 path = fib_path_get(path_index);
2656
2657 return (FIB_PATH_TYPE_EXCLUSIVE == path->fp_type);
2658}
2659
2660int
2661fib_path_is_deag (fib_node_index_t path_index)
2662{
2663 fib_path_t *path;
2664
2665 path = fib_path_get(path_index);
2666
2667 return (FIB_PATH_TYPE_DEAG == path->fp_type);
2668}
2669
2670int
2671fib_path_is_resolved (fib_node_index_t path_index)
2672{
2673 fib_path_t *path;
2674
2675 path = fib_path_get(path_index);
2676
2677 return (dpo_id_is_valid(&path->fp_dpo) &&
2678 (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED) &&
2679 !fib_path_is_looped(path_index) &&
2680 !fib_path_is_permanent_drop(path));
2681}
2682
2683int
2684fib_path_is_looped (fib_node_index_t path_index)
2685{
2686 fib_path_t *path;
2687
2688 path = fib_path_get(path_index);
2689
2690 return (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RECURSIVE_LOOP);
2691}
2692
Neale Ranns81424992017-05-18 03:03:22 -07002693fib_path_list_walk_rc_t
Steven01b07122016-11-02 10:40:09 -07002694fib_path_encode (fib_node_index_t path_list_index,
Neale Ranns775f73c2018-12-20 03:01:49 -08002695 fib_node_index_t path_index,
2696 const fib_path_ext_t *path_ext,
Neale Ranns097fa662018-05-01 05:17:55 -07002697 void *args)
Steven01b07122016-11-02 10:40:09 -07002698{
Neale Ranns097fa662018-05-01 05:17:55 -07002699 fib_path_encode_ctx_t *ctx = args;
2700 fib_route_path_t *rpath;
Steven01b07122016-11-02 10:40:09 -07002701 fib_path_t *path;
2702
2703 path = fib_path_get(path_index);
2704 if (!path)
Neale Ranns81424992017-05-18 03:03:22 -07002705 return (FIB_PATH_LIST_WALK_CONTINUE);
Neale Ranns097fa662018-05-01 05:17:55 -07002706
2707 vec_add2(ctx->rpaths, rpath, 1);
2708 rpath->frp_weight = path->fp_weight;
2709 rpath->frp_preference = path->fp_preference;
2710 rpath->frp_proto = path->fp_nh_proto;
2711 rpath->frp_sw_if_index = ~0;
2712 rpath->frp_fib_index = 0;
Neale Rannsa161a6d2017-11-14 08:10:41 -08002713
Steven01b07122016-11-02 10:40:09 -07002714 switch (path->fp_type)
Neale Ranns775f73c2018-12-20 03:01:49 -08002715 {
Steven01b07122016-11-02 10:40:09 -07002716 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07002717 rpath->frp_addr = path->receive.fp_addr;
2718 rpath->frp_sw_if_index = path->receive.fp_interface;
2719 rpath->frp_flags |= FIB_ROUTE_PATH_LOCAL;
Steven01b07122016-11-02 10:40:09 -07002720 break;
2721 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns097fa662018-05-01 05:17:55 -07002722 rpath->frp_sw_if_index = path->attached.fp_interface;
Steven01b07122016-11-02 10:40:09 -07002723 break;
2724 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
Neale Ranns097fa662018-05-01 05:17:55 -07002725 rpath->frp_sw_if_index = path->attached_next_hop.fp_interface;
2726 rpath->frp_addr = path->attached_next_hop.fp_nh;
Steven01b07122016-11-02 10:40:09 -07002727 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002728 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns097fa662018-05-01 05:17:55 -07002729 rpath->frp_bier_fmask = path->bier_fmask.fp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002730 break;
Steven01b07122016-11-02 10:40:09 -07002731 case FIB_PATH_TYPE_SPECIAL:
2732 break;
2733 case FIB_PATH_TYPE_DEAG:
Neale Ranns097fa662018-05-01 05:17:55 -07002734 rpath->frp_fib_index = path->deag.fp_tbl_id;
Neale Ranns775f73c2018-12-20 03:01:49 -08002735 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID)
2736 {
Neale Ranns097fa662018-05-01 05:17:55 -07002737 rpath->frp_flags |= FIB_ROUTE_PATH_RPF_ID;
Neale Ranns775f73c2018-12-20 03:01:49 -08002738 }
Steven01b07122016-11-02 10:40:09 -07002739 break;
2740 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07002741 rpath->frp_addr = path->recursive.fp_nh.fp_ip;
2742 rpath->frp_fib_index = path->recursive.fp_tbl_id;
Steven01b07122016-11-02 10:40:09 -07002743 break;
Neale Ranns81458422018-03-12 06:59:36 -07002744 case FIB_PATH_TYPE_DVR:
Neale Ranns097fa662018-05-01 05:17:55 -07002745 rpath->frp_sw_if_index = path->dvr.fp_interface;
2746 rpath->frp_flags |= FIB_ROUTE_PATH_DVR;
Neale Ranns81458422018-03-12 06:59:36 -07002747 break;
2748 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns097fa662018-05-01 05:17:55 -07002749 rpath->frp_udp_encap_id = path->udp_encap.fp_udp_encap_id;
2750 rpath->frp_flags |= FIB_ROUTE_PATH_UDP_ENCAP;
Neale Ranns81458422018-03-12 06:59:36 -07002751 break;
Neale Ranns775f73c2018-12-20 03:01:49 -08002752 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns097fa662018-05-01 05:17:55 -07002753 rpath->frp_sw_if_index = path->receive.fp_interface;
2754 rpath->frp_flags |= FIB_ROUTE_PATH_INTF_RX;
Neale Ranns775f73c2018-12-20 03:01:49 -08002755 break;
Neale Ranns097fa662018-05-01 05:17:55 -07002756 case FIB_PATH_TYPE_EXCLUSIVE:
2757 rpath->frp_flags |= FIB_ROUTE_PATH_EXCLUSIVE;
Steven01b07122016-11-02 10:40:09 -07002758 default:
2759 break;
Neale Ranns775f73c2018-12-20 03:01:49 -08002760 }
2761
2762 if (path_ext && path_ext->fpe_type == FIB_PATH_EXT_MPLS)
2763 {
Neale Ranns097fa662018-05-01 05:17:55 -07002764 rpath->frp_label_stack = path_ext->fpe_path.frp_label_stack;
Neale Ranns775f73c2018-12-20 03:01:49 -08002765 }
Neale Rannsa161a6d2017-11-14 08:10:41 -08002766
Neale Ranns097fa662018-05-01 05:17:55 -07002767 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP)
2768 rpath->frp_flags |= FIB_ROUTE_PATH_DROP;
2769 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH)
2770 rpath->frp_flags |= FIB_ROUTE_PATH_ICMP_UNREACH;
2771 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT)
2772 rpath->frp_flags |= FIB_ROUTE_PATH_ICMP_PROHIBIT;
2773
Neale Ranns81424992017-05-18 03:03:22 -07002774 return (FIB_PATH_LIST_WALK_CONTINUE);
Steven01b07122016-11-02 10:40:09 -07002775}
2776
Neale Rannsda78f952017-05-24 09:15:43 -07002777dpo_proto_t
Neale Rannsad422ed2016-11-02 14:20:04 +00002778fib_path_get_proto (fib_node_index_t path_index)
2779{
2780 fib_path_t *path;
2781
2782 path = fib_path_get(path_index);
2783
2784 return (path->fp_nh_proto);
2785}
2786
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002787void
2788fib_path_module_init (void)
2789{
2790 fib_node_register_type (FIB_NODE_TYPE_PATH, &fib_path_vft);
Neale Ranns710071b2018-09-24 12:36:26 +00002791 fib_path_logger = vlib_log_register_class ("fib", "path");
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002792}
2793
2794static clib_error_t *
2795show_fib_path_command (vlib_main_t * vm,
2796 unformat_input_t * input,
2797 vlib_cli_command_t * cmd)
2798{
Neale Ranns33a7dd52016-10-07 15:14:33 +01002799 fib_node_index_t pi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002800 fib_path_t *path;
2801
Neale Ranns33a7dd52016-10-07 15:14:33 +01002802 if (unformat (input, "%d", &pi))
2803 {
2804 /*
2805 * show one in detail
2806 */
2807 if (!pool_is_free_index(fib_path_pool, pi))
2808 {
2809 path = fib_path_get(pi);
Neale Ranns710071b2018-09-24 12:36:26 +00002810 u8 *s = format(NULL, "%U", format_fib_path, pi, 1,
2811 FIB_PATH_FORMAT_FLAGS_NONE);
Neale Ranns521a8d72018-12-06 13:46:49 +00002812 s = format(s, "\n children:");
Neale Ranns33a7dd52016-10-07 15:14:33 +01002813 s = fib_node_children_format(path->fp_node.fn_children, s);
BenoƮt Ganne84382ae2020-02-04 16:45:09 +01002814 vlib_cli_output (vm, "%v", s);
Neale Ranns33a7dd52016-10-07 15:14:33 +01002815 vec_free(s);
2816 }
2817 else
2818 {
2819 vlib_cli_output (vm, "path %d invalid", pi);
2820 }
2821 }
2822 else
2823 {
2824 vlib_cli_output (vm, "FIB Paths");
Damjan Marionb2c31b62020-12-13 21:47:40 +01002825 pool_foreach_index (pi, fib_path_pool)
2826 {
Neale Ranns710071b2018-09-24 12:36:26 +00002827 vlib_cli_output (vm, "%U", format_fib_path, pi, 0,
2828 FIB_PATH_FORMAT_FLAGS_NONE);
Damjan Marionb2c31b62020-12-13 21:47:40 +01002829 }
Neale Ranns33a7dd52016-10-07 15:14:33 +01002830 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002831
2832 return (NULL);
2833}
2834
2835VLIB_CLI_COMMAND (show_fib_path, static) = {
2836 .path = "show fib paths",
2837 .function = show_fib_path_command,
2838 .short_help = "show fib paths",
2839};