blob: c8a2a09cbff6ffbc506baca5bd44f455e23ede95 [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,
109 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100110 * Marker. Add new types before this one, then update it.
111 */
Neale Rannsd792d9c2017-10-21 10:53:20 -0700112 FIB_PATH_TYPE_LAST = FIB_PATH_TYPE_BIER_FMASK,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100113} __attribute__ ((packed)) fib_path_type_t;
114
115/**
116 * The maximum number of path_types
117 */
118#define FIB_PATH_TYPE_MAX (FIB_PATH_TYPE_LAST + 1)
119
120#define FIB_PATH_TYPES { \
121 [FIB_PATH_TYPE_ATTACHED_NEXT_HOP] = "attached-nexthop", \
122 [FIB_PATH_TYPE_ATTACHED] = "attached", \
123 [FIB_PATH_TYPE_RECURSIVE] = "recursive", \
124 [FIB_PATH_TYPE_SPECIAL] = "special", \
125 [FIB_PATH_TYPE_EXCLUSIVE] = "exclusive", \
126 [FIB_PATH_TYPE_DEAG] = "deag", \
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800127 [FIB_PATH_TYPE_INTF_RX] = "intf-rx", \
Neale Ranns810086d2017-11-05 16:26:46 -0800128 [FIB_PATH_TYPE_UDP_ENCAP] = "udp-encap", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100129 [FIB_PATH_TYPE_RECEIVE] = "receive", \
Neale Rannsd792d9c2017-10-21 10:53:20 -0700130 [FIB_PATH_TYPE_BIER_IMP] = "bier-imp", \
131 [FIB_PATH_TYPE_BIER_TABLE] = "bier-table", \
132 [FIB_PATH_TYPE_BIER_FMASK] = "bier-fmask", \
Neale Rannsf068c3e2018-01-03 04:18:48 -0800133 [FIB_PATH_TYPE_DVR] = "dvr", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100134}
135
Neale Rannsd792d9c2017-10-21 10:53:20 -0700136#define FOR_EACH_FIB_PATH_TYPE(_item) \
137 for (_item = FIB_PATH_TYPE_FIRST; \
138 _item <= FIB_PATH_TYPE_LAST; \
139 _item++)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100140
141/**
142 * Enurmeration of path operational (i.e. derived) attributes
143 */
144typedef enum fib_path_oper_attribute_t_ {
145 /**
146 * Marker. Add new types after this one.
147 */
148 FIB_PATH_OPER_ATTRIBUTE_FIRST = 0,
149 /**
150 * The path forms part of a recursive loop.
151 */
152 FIB_PATH_OPER_ATTRIBUTE_RECURSIVE_LOOP = FIB_PATH_OPER_ATTRIBUTE_FIRST,
153 /**
154 * The path is resolved
155 */
156 FIB_PATH_OPER_ATTRIBUTE_RESOLVED,
157 /**
Neale Ranns4b919a52017-03-11 05:55:21 -0800158 * The path is attached, despite what the next-hop may say.
159 */
160 FIB_PATH_OPER_ATTRIBUTE_ATTACHED,
161 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100162 * The path has become a permanent drop.
163 */
164 FIB_PATH_OPER_ATTRIBUTE_DROP,
165 /**
166 * Marker. Add new types before this one, then update it.
167 */
168 FIB_PATH_OPER_ATTRIBUTE_LAST = FIB_PATH_OPER_ATTRIBUTE_DROP,
169} __attribute__ ((packed)) fib_path_oper_attribute_t;
170
171/**
172 * The maximum number of path operational attributes
173 */
174#define FIB_PATH_OPER_ATTRIBUTE_MAX (FIB_PATH_OPER_ATTRIBUTE_LAST + 1)
175
176#define FIB_PATH_OPER_ATTRIBUTES { \
177 [FIB_PATH_OPER_ATTRIBUTE_RECURSIVE_LOOP] = "recursive-loop", \
178 [FIB_PATH_OPER_ATTRIBUTE_RESOLVED] = "resolved", \
179 [FIB_PATH_OPER_ATTRIBUTE_DROP] = "drop", \
180}
181
182#define FOR_EACH_FIB_PATH_OPER_ATTRIBUTE(_item) \
183 for (_item = FIB_PATH_OPER_ATTRIBUTE_FIRST; \
184 _item <= FIB_PATH_OPER_ATTRIBUTE_LAST; \
185 _item++)
186
187/**
188 * Path flags from the attributes
189 */
190typedef enum fib_path_oper_flags_t_ {
191 FIB_PATH_OPER_FLAG_NONE = 0,
192 FIB_PATH_OPER_FLAG_RECURSIVE_LOOP = (1 << FIB_PATH_OPER_ATTRIBUTE_RECURSIVE_LOOP),
193 FIB_PATH_OPER_FLAG_DROP = (1 << FIB_PATH_OPER_ATTRIBUTE_DROP),
194 FIB_PATH_OPER_FLAG_RESOLVED = (1 << FIB_PATH_OPER_ATTRIBUTE_RESOLVED),
Neale Ranns4b919a52017-03-11 05:55:21 -0800195 FIB_PATH_OPER_FLAG_ATTACHED = (1 << FIB_PATH_OPER_ATTRIBUTE_ATTACHED),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100196} __attribute__ ((packed)) fib_path_oper_flags_t;
197
198/**
199 * A FIB path
200 */
201typedef struct fib_path_t_ {
202 /**
203 * A path is a node in the FIB graph.
204 */
205 fib_node_t fp_node;
206
207 /**
208 * The index of the path-list to which this path belongs
209 */
210 u32 fp_pl_index;
211
212 /**
213 * This marks the start of the memory area used to hash
214 * the path
215 */
216 STRUCT_MARK(path_hash_start);
217
218 /**
219 * Configuration Flags
220 */
221 fib_path_cfg_flags_t fp_cfg_flags;
222
223 /**
224 * The type of the path. This is the selector for the union
225 */
226 fib_path_type_t fp_type;
227
228 /**
229 * The protocol of the next-hop, i.e. the address family of the
230 * next-hop's address. We can't derive this from the address itself
231 * since the address can be all zeros
232 */
Neale Rannsda78f952017-05-24 09:15:43 -0700233 dpo_proto_t fp_nh_proto;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100234
235 /**
Neale Ranns57b58602017-07-15 07:37:25 -0700236 * UCMP [unnormalised] weigth
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100237 */
Neale Rannsa0a908f2017-08-01 11:40:03 -0700238 u8 fp_weight;
239
Neale Ranns57b58602017-07-15 07:37:25 -0700240 /**
241 * A path preference. 0 is the best.
242 * Only paths of the best preference, that are 'up', are considered
243 * for forwarding.
244 */
Neale Rannsa0a908f2017-08-01 11:40:03 -0700245 u8 fp_preference;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100246
247 /**
248 * per-type union of the data required to resolve the path
249 */
250 union {
251 struct {
252 /**
253 * The next-hop
254 */
255 ip46_address_t fp_nh;
256 /**
257 * The interface
258 */
259 u32 fp_interface;
260 } attached_next_hop;
261 struct {
262 /**
263 * The interface
264 */
265 u32 fp_interface;
266 } attached;
267 struct {
Neale Rannsad422ed2016-11-02 14:20:04 +0000268 union
269 {
270 /**
271 * The next-hop
272 */
273 ip46_address_t fp_ip;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800274 struct {
275 /**
276 * The local label to resolve through.
277 */
278 mpls_label_t fp_local_label;
279 /**
280 * The EOS bit of the resolving label
281 */
282 mpls_eos_bit_t fp_eos;
283 };
Neale Rannsad422ed2016-11-02 14:20:04 +0000284 } fp_nh;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700285 union {
286 /**
287 * The FIB table index in which to find the next-hop.
288 */
289 fib_node_index_t fp_tbl_id;
290 /**
291 * The BIER FIB the fmask is in
292 */
293 index_t fp_bier_fib;
294 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100295 } recursive;
296 struct {
Neale Rannsd792d9c2017-10-21 10:53:20 -0700297 /**
Neale Ranns91286372017-12-05 13:24:04 -0800298 * BIER FMask ID
Neale Rannsd792d9c2017-10-21 10:53:20 -0700299 */
Neale Ranns91286372017-12-05 13:24:04 -0800300 index_t fp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700301 } bier_fmask;
302 struct {
303 /**
304 * The BIER table's ID
305 */
306 bier_table_id_t fp_bier_tbl;
307 } bier_table;
308 struct {
309 /**
310 * The BIER imposition object
311 * this is part of the path's key, since the index_t
312 * of an imposition object is the object's key.
313 */
314 index_t fp_bier_imp;
315 } bier_imp;
316 struct {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100317 /**
Neale Rannsad422ed2016-11-02 14:20:04 +0000318 * The FIB index in which to perfom the next lookup
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100319 */
320 fib_node_index_t fp_tbl_id;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800321 /**
322 * The RPF-ID to tag the packets with
323 */
324 fib_rpf_id_t fp_rpf_id;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100325 } deag;
326 struct {
327 } special;
328 struct {
329 /**
330 * The user provided 'exclusive' DPO
331 */
332 dpo_id_t fp_ex_dpo;
333 } exclusive;
334 struct {
335 /**
336 * The interface on which the local address is configured
337 */
338 u32 fp_interface;
339 /**
340 * The next-hop
341 */
342 ip46_address_t fp_addr;
343 } receive;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800344 struct {
345 /**
346 * The interface on which the packets will be input.
347 */
348 u32 fp_interface;
349 } intf_rx;
Neale Ranns810086d2017-11-05 16:26:46 -0800350 struct {
351 /**
352 * The UDP Encap object this path resolves through
353 */
354 u32 fp_udp_encap_id;
355 } udp_encap;
Neale Rannsf068c3e2018-01-03 04:18:48 -0800356 struct {
357 /**
Neale Ranns097fa662018-05-01 05:17:55 -0700358 * The UDP Encap object this path resolves through
359 */
360 u32 fp_classify_table_id;
361 } classify;
362 struct {
363 /**
Neale Rannsf068c3e2018-01-03 04:18:48 -0800364 * The interface
365 */
366 u32 fp_interface;
367 } dvr;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100368 };
369 STRUCT_MARK(path_hash_end);
370
371 /**
372 * Memebers in this last section represent information that is
373 * dervied during resolution. It should not be copied to new paths
374 * nor compared.
375 */
376
377 /**
378 * Operational Flags
379 */
380 fib_path_oper_flags_t fp_oper_flags;
381
Neale Rannsd792d9c2017-10-21 10:53:20 -0700382 union {
383 /**
384 * the resolving via fib. not part of the union, since it it not part
385 * of the path's hash.
386 */
387 fib_node_index_t fp_via_fib;
388 /**
Neale Rannsd792d9c2017-10-21 10:53:20 -0700389 * the resolving bier-table
390 */
391 index_t fp_via_bier_tbl;
Neale Ranns91286372017-12-05 13:24:04 -0800392 /**
393 * the resolving bier-fmask
394 */
395 index_t fp_via_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700396 };
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100397
398 /**
399 * The Data-path objects through which this path resolves for IP.
400 */
401 dpo_id_t fp_dpo;
402
403 /**
404 * the index of this path in the parent's child list.
405 */
406 u32 fp_sibling;
407} fib_path_t;
408
409/*
410 * Array of strings/names for the path types and attributes
411 */
412static const char *fib_path_type_names[] = FIB_PATH_TYPES;
413static const char *fib_path_oper_attribute_names[] = FIB_PATH_OPER_ATTRIBUTES;
414static const char *fib_path_cfg_attribute_names[] = FIB_PATH_CFG_ATTRIBUTES;
415
416/*
417 * The memory pool from which we allocate all the paths
418 */
419static fib_path_t *fib_path_pool;
420
Neale Ranns710071b2018-09-24 12:36:26 +0000421/**
422 * the logger
423 */
424vlib_log_class_t fib_path_logger;
425
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100426/*
427 * Debug macro
428 */
Neale Ranns710071b2018-09-24 12:36:26 +0000429#define FIB_PATH_DBG(_p, _fmt, _args...) \
430{ \
431 vlib_log_debug (fib_path_logger, \
432 "[%U]: " _fmt, \
433 format_fib_path, fib_path_get_index(_p), 0, \
434 FIB_PATH_FORMAT_FLAGS_ONE_LINE, \
435 ##_args); \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100436}
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100437
438static fib_path_t *
439fib_path_get (fib_node_index_t index)
440{
441 return (pool_elt_at_index(fib_path_pool, index));
442}
443
444static fib_node_index_t
445fib_path_get_index (fib_path_t *path)
446{
447 return (path - fib_path_pool);
448}
449
450static fib_node_t *
451fib_path_get_node (fib_node_index_t index)
452{
453 return ((fib_node_t*)fib_path_get(index));
454}
455
456static fib_path_t*
457fib_path_from_fib_node (fib_node_t *node)
458{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100459 ASSERT(FIB_NODE_TYPE_PATH == node->fn_type);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100460 return ((fib_path_t*)node);
461}
462
463u8 *
464format_fib_path (u8 * s, va_list * args)
465{
Neale Ranns91286372017-12-05 13:24:04 -0800466 fib_node_index_t path_index = va_arg (*args, fib_node_index_t);
467 u32 indent = va_arg (*args, u32);
Neale Ranns710071b2018-09-24 12:36:26 +0000468 fib_format_path_flags_t flags = va_arg (*args, fib_format_path_flags_t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100469 vnet_main_t * vnm = vnet_get_main();
470 fib_path_oper_attribute_t oattr;
471 fib_path_cfg_attribute_t cattr;
Neale Ranns91286372017-12-05 13:24:04 -0800472 fib_path_t *path;
Neale Ranns710071b2018-09-24 12:36:26 +0000473 const char *eol;
474
475 if (flags & FIB_PATH_FORMAT_FLAGS_ONE_LINE)
476 {
477 eol = "";
478 }
479 else
480 {
481 eol = "\n";
482 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100483
Neale Ranns91286372017-12-05 13:24:04 -0800484 path = fib_path_get(path_index);
485
486 s = format (s, "%Upath:[%d] ", format_white_space, indent,
487 fib_path_get_index(path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488 s = format (s, "pl-index:%d ", path->fp_pl_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700489 s = format (s, "%U ", format_dpo_proto, path->fp_nh_proto);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100490 s = format (s, "weight=%d ", path->fp_weight);
Neale Ranns57b58602017-07-15 07:37:25 -0700491 s = format (s, "pref=%d ", path->fp_preference);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100492 s = format (s, "%s: ", fib_path_type_names[path->fp_type]);
493 if (FIB_PATH_OPER_FLAG_NONE != path->fp_oper_flags) {
494 s = format(s, " oper-flags:");
495 FOR_EACH_FIB_PATH_OPER_ATTRIBUTE(oattr) {
496 if ((1<<oattr) & path->fp_oper_flags) {
497 s = format (s, "%s,", fib_path_oper_attribute_names[oattr]);
498 }
499 }
500 }
501 if (FIB_PATH_CFG_FLAG_NONE != path->fp_cfg_flags) {
502 s = format(s, " cfg-flags:");
503 FOR_EACH_FIB_PATH_CFG_ATTRIBUTE(cattr) {
504 if ((1<<cattr) & path->fp_cfg_flags) {
505 s = format (s, "%s,", fib_path_cfg_attribute_names[cattr]);
506 }
507 }
508 }
Neale Ranns710071b2018-09-24 12:36:26 +0000509 if (!(flags & FIB_PATH_FORMAT_FLAGS_ONE_LINE))
510 s = format(s, "\n%U", format_white_space, indent+2);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100511
512 switch (path->fp_type)
513 {
514 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
515 s = format (s, "%U", format_ip46_address,
516 &path->attached_next_hop.fp_nh,
517 IP46_TYPE_ANY);
518 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_DROP)
519 {
520 s = format (s, " if_index:%d", path->attached_next_hop.fp_interface);
521 }
522 else
523 {
524 s = format (s, " %U",
525 format_vnet_sw_interface_name,
526 vnm,
527 vnet_get_sw_interface(
528 vnm,
529 path->attached_next_hop.fp_interface));
530 if (vnet_sw_interface_is_p2p(vnet_get_main(),
531 path->attached_next_hop.fp_interface))
532 {
533 s = format (s, " (p2p)");
534 }
535 }
536 if (!dpo_id_is_valid(&path->fp_dpo))
537 {
Neale Ranns710071b2018-09-24 12:36:26 +0000538 s = format(s, "%s%Uunresolved", eol, format_white_space, indent+2);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100539 }
540 else
541 {
Neale Ranns710071b2018-09-24 12:36:26 +0000542 s = format(s, "%s%U%U", eol,
Neale Ranns91286372017-12-05 13:24:04 -0800543 format_white_space, indent,
544 format_dpo_id,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545 &path->fp_dpo, 13);
546 }
547 break;
548 case FIB_PATH_TYPE_ATTACHED:
549 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_DROP)
550 {
Neale Ranns91286372017-12-05 13:24:04 -0800551 s = format (s, "if_index:%d", path->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100552 }
553 else
554 {
555 s = format (s, " %U",
556 format_vnet_sw_interface_name,
557 vnm,
558 vnet_get_sw_interface(
559 vnm,
560 path->attached.fp_interface));
561 }
562 break;
563 case FIB_PATH_TYPE_RECURSIVE:
Neale Rannsda78f952017-05-24 09:15:43 -0700564 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +0000565 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800566 s = format (s, "via %U %U",
Neale Rannsad422ed2016-11-02 14:20:04 +0000567 format_mpls_unicast_label,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800568 path->recursive.fp_nh.fp_local_label,
569 format_mpls_eos_bit,
570 path->recursive.fp_nh.fp_eos);
Neale Rannsad422ed2016-11-02 14:20:04 +0000571 }
572 else
573 {
574 s = format (s, "via %U",
575 format_ip46_address,
576 &path->recursive.fp_nh.fp_ip,
577 IP46_TYPE_ANY);
578 }
579 s = format (s, " in fib:%d",
580 path->recursive.fp_tbl_id,
581 path->fp_via_fib);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100582 s = format (s, " via-fib:%d", path->fp_via_fib);
583 s = format (s, " via-dpo:[%U:%d]",
584 format_dpo_type, path->fp_dpo.dpoi_type,
585 path->fp_dpo.dpoi_index);
586
587 break;
Neale Ranns810086d2017-11-05 16:26:46 -0800588 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns91286372017-12-05 13:24:04 -0800589 s = format (s, "UDP-encap ID:%d", path->udp_encap.fp_udp_encap_id);
Neale Ranns810086d2017-11-05 16:26:46 -0800590 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700591 case FIB_PATH_TYPE_BIER_TABLE:
592 s = format (s, "via bier-table:[%U}",
593 format_bier_table_id,
594 &path->bier_table.fp_bier_tbl);
595 s = format (s, " via-dpo:[%U:%d]",
596 format_dpo_type, path->fp_dpo.dpoi_type,
597 path->fp_dpo.dpoi_index);
598 break;
599 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -0800600 s = format (s, "via-fmask:%d", path->bier_fmask.fp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700601 s = format (s, " via-dpo:[%U:%d]",
602 format_dpo_type, path->fp_dpo.dpoi_type,
603 path->fp_dpo.dpoi_index);
604 break;
605 case FIB_PATH_TYPE_BIER_IMP:
606 s = format (s, "via %U", format_bier_imp,
607 path->bier_imp.fp_bier_imp, 0, BIER_SHOW_BRIEF);
608 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -0800609 case FIB_PATH_TYPE_DVR:
610 s = format (s, " %U",
611 format_vnet_sw_interface_name,
612 vnm,
613 vnet_get_sw_interface(
614 vnm,
615 path->dvr.fp_interface));
616 break;
Neale Ranns775f73c2018-12-20 03:01:49 -0800617 case FIB_PATH_TYPE_DEAG:
618 s = format (s, " %sfib-index:%d",
619 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID ? "m" : ""),
620 path->deag.fp_tbl_id);
621 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100622 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800623 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100624 case FIB_PATH_TYPE_SPECIAL:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100625 case FIB_PATH_TYPE_EXCLUSIVE:
626 if (dpo_id_is_valid(&path->fp_dpo))
627 {
628 s = format(s, "%U", format_dpo_id,
Neale Ranns91286372017-12-05 13:24:04 -0800629 &path->fp_dpo, indent+2);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100630 }
631 break;
632 }
633 return (s);
634}
635
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100636/*
637 * fib_path_last_lock_gone
638 *
639 * We don't share paths, we share path lists, so the [un]lock functions
640 * are no-ops
641 */
642static void
643fib_path_last_lock_gone (fib_node_t *node)
644{
645 ASSERT(0);
646}
647
Neale Ranns3fd99042019-12-16 00:53:11 +0000648static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100649fib_path_attached_next_hop_get_adj (fib_path_t *path,
Neale Ranns3fd99042019-12-16 00:53:11 +0000650 vnet_link_t link,
651 dpo_id_t *dpo)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100652{
Neale Ranns3fd99042019-12-16 00:53:11 +0000653 fib_protocol_t nh_proto;
654 adj_index_t ai;
655
656 nh_proto = dpo_proto_to_fib(path->fp_nh_proto);
657
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100658 if (vnet_sw_interface_is_p2p(vnet_get_main(),
659 path->attached_next_hop.fp_interface))
660 {
661 /*
662 * if the interface is p2p then the adj for the specific
663 * neighbour on that link will never exist. on p2p links
664 * the subnet address (the attached route) links to the
665 * auto-adj (see below), we want that adj here too.
666 */
Neale Ranns3fd99042019-12-16 00:53:11 +0000667 ai = adj_nbr_add_or_lock(nh_proto, link, &zero_addr,
668 path->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100669 }
670 else
671 {
Neale Ranns3fd99042019-12-16 00:53:11 +0000672 ai = adj_nbr_add_or_lock(nh_proto, link,
673 &path->attached_next_hop.fp_nh,
674 path->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100675 }
Neale Ranns3fd99042019-12-16 00:53:11 +0000676
677 dpo_set(dpo, DPO_ADJACENCY, vnet_link_to_dpo_proto(link), ai);
678 adj_unlock(ai);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100679}
680
681static void
682fib_path_attached_next_hop_set (fib_path_t *path)
683{
684 /*
Lijian.Zhang33af8c12019-09-16 16:22:36 +0800685 * resolve directly via the adjacency discribed by the
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100686 * interface and next-hop
687 */
Neale Ranns3fd99042019-12-16 00:53:11 +0000688 fib_path_attached_next_hop_get_adj(path,
689 dpo_proto_to_link(path->fp_nh_proto),
690 &path->fp_dpo);
691
692 ASSERT(dpo_is_adj(&path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100693
694 /*
695 * become a child of the adjacency so we receive updates
696 * when its rewrite changes
697 */
698 path->fp_sibling = adj_child_add(path->fp_dpo.dpoi_index,
699 FIB_NODE_TYPE_PATH,
700 fib_path_get_index(path));
Neale Ranns88fc83e2017-04-05 08:11:14 -0700701
Neale Ranns3e2e1902019-03-14 09:21:02 -0700702 if (!vnet_sw_interface_is_up(vnet_get_main(),
703 path->attached_next_hop.fp_interface) ||
Neale Ranns88fc83e2017-04-05 08:11:14 -0700704 !adj_is_up(path->fp_dpo.dpoi_index))
705 {
706 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
707 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100708}
709
Neale Ranns3fd99042019-12-16 00:53:11 +0000710static void
Neale Ranns8c4611b2017-05-23 03:43:47 -0700711fib_path_attached_get_adj (fib_path_t *path,
Neale Ranns3fd99042019-12-16 00:53:11 +0000712 vnet_link_t link,
713 dpo_id_t *dpo)
Neale Ranns8c4611b2017-05-23 03:43:47 -0700714{
Neale Ranns3fd99042019-12-16 00:53:11 +0000715 fib_protocol_t nh_proto;
716
717 nh_proto = dpo_proto_to_fib(path->fp_nh_proto);
718
Neale Ranns8c4611b2017-05-23 03:43:47 -0700719 if (vnet_sw_interface_is_p2p(vnet_get_main(),
720 path->attached.fp_interface))
721 {
722 /*
723 * point-2-point interfaces do not require a glean, since
724 * there is nothing to ARP. Install a rewrite/nbr adj instead
725 */
Neale Ranns3fd99042019-12-16 00:53:11 +0000726 adj_index_t ai;
727
728 ai = adj_nbr_add_or_lock(nh_proto, link, &zero_addr,
729 path->attached.fp_interface);
730
731 dpo_set(dpo, DPO_ADJACENCY, vnet_link_to_dpo_proto(link), ai);
732 adj_unlock(ai);
733 }
734 else if (vnet_sw_interface_is_nbma(vnet_get_main(),
735 path->attached.fp_interface))
736 {
737 dpo_copy(dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns8c4611b2017-05-23 03:43:47 -0700738 }
739 else
740 {
Neale Ranns3fd99042019-12-16 00:53:11 +0000741 adj_index_t ai;
742
743 ai = adj_glean_add_or_lock(nh_proto, link,
744 path->attached.fp_interface,
745 NULL);
746 dpo_set(dpo, DPO_ADJACENCY_GLEAN, vnet_link_to_dpo_proto(link), ai);
747 adj_unlock(ai);
Neale Ranns8c4611b2017-05-23 03:43:47 -0700748 }
749}
750
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100751/*
752 * create of update the paths recursive adj
753 */
754static void
755fib_path_recursive_adj_update (fib_path_t *path,
756 fib_forward_chain_type_t fct,
757 dpo_id_t *dpo)
758{
Neale Ranns948e00f2016-10-20 13:39:34 +0100759 dpo_id_t via_dpo = DPO_INVALID;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100760
761 /*
762 * get the DPO to resolve through from the via-entry
763 */
764 fib_entry_contribute_forwarding(path->fp_via_fib,
765 fct,
766 &via_dpo);
767
768
769 /*
770 * hope for the best - clear if restrictions apply.
771 */
772 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
773
774 /*
775 * Validate any recursion constraints and over-ride the via
776 * adj if not met
777 */
778 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RECURSIVE_LOOP)
779 {
780 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700781 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100782 }
783 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_HOST)
784 {
785 /*
786 * the via FIB must be a host route.
787 * note the via FIB just added will always be a host route
788 * since it is an RR source added host route. So what we need to
789 * check is whether the route has other sources. If it does then
790 * some other source has added it as a host route. If it doesn't
791 * then it was added only here and inherits forwarding from a cover.
792 * the cover is not a host route.
793 * The RR source is the lowest priority source, so we check if it
794 * is the best. if it is there are no other sources.
795 */
796 if (fib_entry_get_best_source(path->fp_via_fib) >= FIB_SOURCE_RR)
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 }
807 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED)
808 {
809 /*
810 * RR source entries inherit the flags from the cover, so
811 * we can check the via directly
812 */
813 if (!(FIB_ENTRY_FLAG_ATTACHED & fib_entry_get_flags(path->fp_via_fib)))
814 {
815 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700816 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100817
818 /*
819 * PIC edge trigger. let the load-balance maps know
820 */
821 load_balance_map_path_state_change(fib_path_get_index(path));
822 }
823 }
Neale Ranns88fc83e2017-04-05 08:11:14 -0700824 /*
825 * check for over-riding factors on the FIB entry itself
826 */
827 if (!fib_entry_is_resolved(path->fp_via_fib))
828 {
829 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Rannsda78f952017-05-24 09:15:43 -0700830 dpo_copy(&via_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns88fc83e2017-04-05 08:11:14 -0700831
832 /*
833 * PIC edge trigger. let the load-balance maps know
834 */
835 load_balance_map_path_state_change(fib_path_get_index(path));
836 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100837
838 /*
Neale Ranns57b58602017-07-15 07:37:25 -0700839 * If this path is contributing a drop, then it's not resolved
840 */
841 if (dpo_is_drop(&via_dpo) || load_balance_is_drop(&via_dpo))
842 {
843 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
844 }
845
846 /*
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100847 * update the path's contributed DPO
848 */
849 dpo_copy(dpo, &via_dpo);
850
Neale Rannsda78f952017-05-24 09:15:43 -0700851 FIB_PATH_DBG(path, "recursive update:");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100852
853 dpo_reset(&via_dpo);
854}
855
856/*
Neale Rannsd792d9c2017-10-21 10:53:20 -0700857 * re-evaulate the forwarding state for a via fmask path
858 */
859static void
860fib_path_bier_fmask_update (fib_path_t *path,
861 dpo_id_t *dpo)
862{
Neale Ranns91286372017-12-05 13:24:04 -0800863 bier_fmask_contribute_forwarding(path->bier_fmask.fp_bier_fmask, dpo);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700864
865 /*
866 * if we are stakcing on the drop, then the path is not resolved
867 */
868 if (dpo_is_drop(dpo))
869 {
870 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
871 }
872 else
873 {
874 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
875 }
876}
877
878/*
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100879 * fib_path_is_permanent_drop
880 *
881 * Return !0 if the path is configured to permanently drop,
882 * despite other attributes.
883 */
884static int
885fib_path_is_permanent_drop (fib_path_t *path)
886{
887 return ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP) ||
888 (path->fp_oper_flags & FIB_PATH_OPER_FLAG_DROP));
889}
890
891/*
892 * fib_path_unresolve
893 *
894 * Remove our dependency on the resolution target
895 */
896static void
897fib_path_unresolve (fib_path_t *path)
898{
899 /*
900 * the forced drop path does not need unresolving
901 */
902 if (fib_path_is_permanent_drop(path))
903 {
904 return;
905 }
906
907 switch (path->fp_type)
908 {
909 case FIB_PATH_TYPE_RECURSIVE:
910 if (FIB_NODE_INDEX_INVALID != path->fp_via_fib)
911 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100912 fib_entry_child_remove(path->fp_via_fib,
913 path->fp_sibling);
Neale Ranns097fa662018-05-01 05:17:55 -0700914 fib_table_entry_special_remove(path->recursive.fp_tbl_id,
915 fib_entry_get_prefix(path->fp_via_fib),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100916 FIB_SOURCE_RR);
Neale Ranns6fff24a2018-09-10 19:14:07 -0700917 fib_table_unlock(path->recursive.fp_tbl_id,
918 dpo_proto_to_fib(path->fp_nh_proto),
919 FIB_SOURCE_RR);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100920 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
921 }
922 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -0700923 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -0800924 bier_fmask_child_remove(path->fp_via_bier_fmask,
925 path->fp_sibling);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700926 break;
927 case FIB_PATH_TYPE_BIER_IMP:
928 bier_imp_unlock(path->fp_dpo.dpoi_index);
929 break;
930 case FIB_PATH_TYPE_BIER_TABLE:
931 bier_table_ecmp_unlock(path->fp_via_bier_tbl);
932 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100933 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
Neale Ranns6f631152017-10-03 08:20:21 -0700934 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns3fd99042019-12-16 00:53:11 +0000935 if (dpo_is_adj(&path->fp_dpo))
936 adj_child_remove(path->fp_dpo.dpoi_index,
937 path->fp_sibling);
Neale Ranns6f631152017-10-03 08:20:21 -0700938 break;
Neale Ranns810086d2017-11-05 16:26:46 -0800939 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns9c0a3c42018-09-07 08:57:41 -0700940 udp_encap_unlock(path->fp_dpo.dpoi_index);
Neale Ranns810086d2017-11-05 16:26:46 -0800941 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100942 case FIB_PATH_TYPE_EXCLUSIVE:
943 dpo_reset(&path->exclusive.fp_ex_dpo);
944 break;
945 case FIB_PATH_TYPE_SPECIAL:
946 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800947 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100948 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -0800949 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100950 /*
951 * these hold only the path's DPO, which is reset below.
952 */
953 break;
954 }
955
956 /*
957 * release the adj we were holding and pick up the
958 * drop just in case.
959 */
960 dpo_reset(&path->fp_dpo);
961 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
962
963 return;
964}
965
966static fib_forward_chain_type_t
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800967fib_path_to_chain_type (const fib_path_t *path)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100968{
Neale Rannsda78f952017-05-24 09:15:43 -0700969 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100970 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800971 if (FIB_PATH_TYPE_RECURSIVE == path->fp_type &&
972 MPLS_EOS == path->recursive.fp_nh.fp_eos)
973 {
974 return (FIB_FORW_CHAIN_TYPE_MPLS_EOS);
975 }
976 else
977 {
Neale Ranns9f171f52017-04-11 08:56:53 -0700978 return (FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800979 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100980 }
Neale Rannsda78f952017-05-24 09:15:43 -0700981 else
982 {
983 return (fib_forw_chain_type_from_dpo_proto(path->fp_nh_proto));
984 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100985}
986
987/*
988 * fib_path_back_walk_notify
989 *
990 * A back walk has reach this path.
991 */
992static fib_node_back_walk_rc_t
993fib_path_back_walk_notify (fib_node_t *node,
994 fib_node_back_walk_ctx_t *ctx)
995{
996 fib_path_t *path;
997
998 path = fib_path_from_fib_node(node);
999
Neale Ranns710071b2018-09-24 12:36:26 +00001000 FIB_PATH_DBG(path, "bw:%U",
1001 format_fib_node_bw_reason, ctx->fnbw_reason);
1002
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001003 switch (path->fp_type)
1004 {
1005 case FIB_PATH_TYPE_RECURSIVE:
1006 if (FIB_NODE_BW_REASON_FLAG_EVALUATE & ctx->fnbw_reason)
1007 {
1008 /*
1009 * modify the recursive adjacency to use the new forwarding
1010 * of the via-fib.
1011 * this update is visible to packets in flight in the DP.
1012 */
1013 fib_path_recursive_adj_update(
1014 path,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001015 fib_path_to_chain_type(path),
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001016 &path->fp_dpo);
1017 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001018 if ((FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason) ||
1019 (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason))
Neale Rannsb80c5362016-10-08 13:03:40 +01001020 {
1021 /*
1022 * ADJ updates (complete<->incomplete) do not need to propagate to
1023 * recursive entries.
1024 * The only reason its needed as far back as here, is that the adj
1025 * and the incomplete adj are a different DPO type, so the LBs need
1026 * to re-stack.
1027 * If this walk was quashed in the fib_entry, then any non-fib_path
1028 * children (like tunnels that collapse out the LB when they stack)
1029 * would not see the update.
1030 */
1031 return (FIB_NODE_BACK_WALK_CONTINUE);
1032 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001033 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001034 case FIB_PATH_TYPE_BIER_FMASK:
1035 if (FIB_NODE_BW_REASON_FLAG_EVALUATE & ctx->fnbw_reason)
1036 {
1037 /*
1038 * update to use the BIER fmask's new forwading
1039 */
1040 fib_path_bier_fmask_update(path, &path->fp_dpo);
1041 }
1042 if ((FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason) ||
1043 (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason))
1044 {
1045 /*
1046 * ADJ updates (complete<->incomplete) do not need to propagate to
1047 * recursive entries.
1048 * The only reason its needed as far back as here, is that the adj
1049 * and the incomplete adj are a different DPO type, so the LBs need
1050 * to re-stack.
1051 * If this walk was quashed in the fib_entry, then any non-fib_path
1052 * children (like tunnels that collapse out the LB when they stack)
1053 * would not see the update.
1054 */
1055 return (FIB_NODE_BACK_WALK_CONTINUE);
1056 }
1057 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001058 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1059 /*
1060FIXME comment
1061 * ADJ_UPDATE backwalk pass silently through here and up to
1062 * the path-list when the multipath adj collapse occurs.
1063 * The reason we do this is that the assumtption is that VPP
1064 * runs in an environment where the Control-Plane is remote
1065 * and hence reacts slowly to link up down. In order to remove
1066 * this down link from the ECMP set quickly, we back-walk.
1067 * VPP also has dedicated CPUs, so we are not stealing resources
1068 * from the CP to do so.
1069 */
1070 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_UP & ctx->fnbw_reason)
1071 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001072 if (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED)
1073 {
1074 /*
1075 * alreday resolved. no need to walk back again
1076 */
1077 return (FIB_NODE_BACK_WALK_CONTINUE);
1078 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001079 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1080 }
1081 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN & ctx->fnbw_reason)
1082 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001083 if (!(path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED))
1084 {
1085 /*
1086 * alreday unresolved. no need to walk back again
1087 */
1088 return (FIB_NODE_BACK_WALK_CONTINUE);
1089 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001090 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1091 }
1092 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE & ctx->fnbw_reason)
1093 {
1094 /*
1095 * The interface this path resolves through has been deleted.
1096 * This will leave the path in a permanent drop state. The route
1097 * needs to be removed and readded (and hence the path-list deleted)
1098 * before it can forward again.
1099 */
1100 fib_path_unresolve(path);
1101 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_DROP;
1102 }
1103 if (FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE & ctx->fnbw_reason)
1104 {
1105 /*
1106 * restack the DPO to pick up the correct DPO sub-type
1107 */
Neale Ranns8b37b872016-11-21 12:25:22 +00001108 uword if_is_up;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001109
Neale Ranns3e2e1902019-03-14 09:21:02 -07001110 if_is_up = vnet_sw_interface_is_up(
Neale Ranns8b37b872016-11-21 12:25:22 +00001111 vnet_get_main(),
1112 path->attached_next_hop.fp_interface);
1113
Neale Ranns3fd99042019-12-16 00:53:11 +00001114 fib_path_attached_next_hop_get_adj(
1115 path,
1116 dpo_proto_to_link(path->fp_nh_proto),
1117 &path->fp_dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001118
Neale Ranns88fc83e2017-04-05 08:11:14 -07001119 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Ranns3fd99042019-12-16 00:53:11 +00001120 if (if_is_up && adj_is_up(path->fp_dpo.dpoi_index))
Neale Ranns88fc83e2017-04-05 08:11:14 -07001121 {
1122 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1123 }
1124
Neale Ranns8b37b872016-11-21 12:25:22 +00001125 if (!if_is_up)
1126 {
1127 /*
1128 * If the interface is not up there is no reason to walk
1129 * back to children. if we did they would only evalute
1130 * that this path is unresolved and hence it would
1131 * not contribute the adjacency - so it would be wasted
1132 * CPU time.
1133 */
1134 return (FIB_NODE_BACK_WALK_CONTINUE);
1135 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001136 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001137 if (FIB_NODE_BW_REASON_FLAG_ADJ_DOWN & ctx->fnbw_reason)
1138 {
Neale Ranns8b37b872016-11-21 12:25:22 +00001139 if (!(path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED))
1140 {
1141 /*
1142 * alreday unresolved. no need to walk back again
1143 */
1144 return (FIB_NODE_BACK_WALK_CONTINUE);
1145 }
Neale Rannsad95b5d2016-11-10 20:35:14 +00001146 /*
1147 * the adj has gone down. the path is no longer resolved.
1148 */
1149 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1150 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001151 break;
1152 case FIB_PATH_TYPE_ATTACHED:
Neale Rannsf068c3e2018-01-03 04:18:48 -08001153 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001154 /*
1155 * FIXME; this could schedule a lower priority walk, since attached
1156 * routes are not usually in ECMP configurations so the backwalk to
1157 * the FIB entry does not need to be high priority
1158 */
1159 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_UP & ctx->fnbw_reason)
1160 {
1161 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1162 }
1163 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN & ctx->fnbw_reason)
1164 {
1165 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1166 }
1167 if (FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE & ctx->fnbw_reason)
1168 {
1169 fib_path_unresolve(path);
1170 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_DROP;
1171 }
1172 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001173 case FIB_PATH_TYPE_UDP_ENCAP:
1174 {
1175 dpo_id_t via_dpo = DPO_INVALID;
1176
1177 /*
1178 * hope for the best - clear if restrictions apply.
1179 */
1180 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1181
1182 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
1183 path->fp_nh_proto,
1184 &via_dpo);
1185 /*
1186 * If this path is contributing a drop, then it's not resolved
1187 */
1188 if (dpo_is_drop(&via_dpo) || load_balance_is_drop(&via_dpo))
1189 {
1190 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1191 }
1192
1193 /*
1194 * update the path's contributed DPO
1195 */
1196 dpo_copy(&path->fp_dpo, &via_dpo);
1197 dpo_reset(&via_dpo);
1198 break;
1199 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001200 case FIB_PATH_TYPE_INTF_RX:
1201 ASSERT(0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001202 case FIB_PATH_TYPE_DEAG:
1203 /*
1204 * FIXME When VRF delete is allowed this will need a poke.
1205 */
1206 case FIB_PATH_TYPE_SPECIAL:
1207 case FIB_PATH_TYPE_RECEIVE:
1208 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07001209 case FIB_PATH_TYPE_BIER_TABLE:
1210 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001211 /*
1212 * these path types have no parents. so to be
1213 * walked from one is unexpected.
1214 */
1215 ASSERT(0);
1216 break;
1217 }
1218
1219 /*
1220 * propagate the backwalk further to the path-list
1221 */
1222 fib_path_list_back_walk(path->fp_pl_index, ctx);
1223
1224 return (FIB_NODE_BACK_WALK_CONTINUE);
1225}
1226
Neale Ranns6c3ebcc2016-10-02 21:20:15 +01001227static void
1228fib_path_memory_show (void)
1229{
1230 fib_show_memory_usage("Path",
1231 pool_elts(fib_path_pool),
1232 pool_len(fib_path_pool),
1233 sizeof(fib_path_t));
1234}
1235
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001236/*
1237 * The FIB path's graph node virtual function table
1238 */
1239static const fib_node_vft_t fib_path_vft = {
1240 .fnv_get = fib_path_get_node,
1241 .fnv_last_lock = fib_path_last_lock_gone,
1242 .fnv_back_walk = fib_path_back_walk_notify,
Neale Ranns6c3ebcc2016-10-02 21:20:15 +01001243 .fnv_mem_show = fib_path_memory_show,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001244};
1245
1246static fib_path_cfg_flags_t
1247fib_path_route_flags_to_cfg_flags (const fib_route_path_t *rpath)
1248{
Neale Ranns450cd302016-11-09 17:49:42 +00001249 fib_path_cfg_flags_t cfg_flags = FIB_PATH_CFG_FLAG_NONE;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001250
Neale Ranns1dbcf302019-07-19 11:44:53 +00001251 if (rpath->frp_flags & FIB_ROUTE_PATH_POP_PW_CW)
1252 cfg_flags |= FIB_PATH_CFG_FLAG_POP_PW_CW;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001253 if (rpath->frp_flags & FIB_ROUTE_PATH_RESOLVE_VIA_HOST)
1254 cfg_flags |= FIB_PATH_CFG_FLAG_RESOLVE_HOST;
1255 if (rpath->frp_flags & FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED)
1256 cfg_flags |= FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED;
Neale Ranns32e1c012016-11-22 17:07:28 +00001257 if (rpath->frp_flags & FIB_ROUTE_PATH_LOCAL)
1258 cfg_flags |= FIB_PATH_CFG_FLAG_LOCAL;
Neale Ranns4b919a52017-03-11 05:55:21 -08001259 if (rpath->frp_flags & FIB_ROUTE_PATH_ATTACHED)
1260 cfg_flags |= FIB_PATH_CFG_FLAG_ATTACHED;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001261 if (rpath->frp_flags & FIB_ROUTE_PATH_INTF_RX)
1262 cfg_flags |= FIB_PATH_CFG_FLAG_INTF_RX;
1263 if (rpath->frp_flags & FIB_ROUTE_PATH_RPF_ID)
1264 cfg_flags |= FIB_PATH_CFG_FLAG_RPF_ID;
1265 if (rpath->frp_flags & FIB_ROUTE_PATH_EXCLUSIVE)
1266 cfg_flags |= FIB_PATH_CFG_FLAG_EXCLUSIVE;
1267 if (rpath->frp_flags & FIB_ROUTE_PATH_DROP)
1268 cfg_flags |= FIB_PATH_CFG_FLAG_DROP;
Neale Ranns054c03a2017-10-13 05:15:07 -07001269 if (rpath->frp_flags & FIB_ROUTE_PATH_SOURCE_LOOKUP)
1270 cfg_flags |= FIB_PATH_CFG_FLAG_DEAG_SRC;
Neale Ranns097fa662018-05-01 05:17:55 -07001271 if (rpath->frp_flags & FIB_ROUTE_PATH_ICMP_UNREACH)
1272 cfg_flags |= FIB_PATH_CFG_FLAG_ICMP_UNREACH;
1273 if (rpath->frp_flags & FIB_ROUTE_PATH_ICMP_PROHIBIT)
1274 cfg_flags |= FIB_PATH_CFG_FLAG_ICMP_PROHIBIT;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001275
1276 return (cfg_flags);
1277}
1278
1279/*
1280 * fib_path_create
1281 *
1282 * Create and initialise a new path object.
1283 * return the index of the path.
1284 */
1285fib_node_index_t
1286fib_path_create (fib_node_index_t pl_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001287 const fib_route_path_t *rpath)
1288{
1289 fib_path_t *path;
1290
1291 pool_get(fib_path_pool, path);
Dave Barachb7b92992018-10-17 10:38:51 -04001292 clib_memset(path, 0, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001293
1294 fib_node_init(&path->fp_node,
1295 FIB_NODE_TYPE_PATH);
1296
1297 dpo_reset(&path->fp_dpo);
1298 path->fp_pl_index = pl_index;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001299 path->fp_nh_proto = rpath->frp_proto;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001300 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
1301 path->fp_weight = rpath->frp_weight;
Neale Ranns0bd36ea2016-11-16 11:47:44 +00001302 if (0 == path->fp_weight)
1303 {
1304 /*
1305 * a weight of 0 is a meaningless value. We could either reject it, and thus force
1306 * clients to always use 1, or we can accept it and fixup approrpiately.
1307 */
1308 path->fp_weight = 1;
1309 }
Neale Ranns57b58602017-07-15 07:37:25 -07001310 path->fp_preference = rpath->frp_preference;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001311 path->fp_cfg_flags = fib_path_route_flags_to_cfg_flags(rpath);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001312
1313 /*
1314 * deduce the path's tpye from the parementers and save what is needed.
1315 */
Neale Ranns32e1c012016-11-22 17:07:28 +00001316 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_LOCAL)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001317 {
Neale Ranns32e1c012016-11-22 17:07:28 +00001318 path->fp_type = FIB_PATH_TYPE_RECEIVE;
1319 path->receive.fp_interface = rpath->frp_sw_if_index;
1320 path->receive.fp_addr = rpath->frp_addr;
1321 }
Neale Ranns810086d2017-11-05 16:26:46 -08001322 else if (rpath->frp_flags & FIB_ROUTE_PATH_UDP_ENCAP)
1323 {
1324 path->fp_type = FIB_PATH_TYPE_UDP_ENCAP;
1325 path->udp_encap.fp_udp_encap_id = rpath->frp_udp_encap_id;
1326 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001327 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_INTF_RX)
1328 {
1329 path->fp_type = FIB_PATH_TYPE_INTF_RX;
1330 path->intf_rx.fp_interface = rpath->frp_sw_if_index;
1331 }
1332 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID)
1333 {
1334 path->fp_type = FIB_PATH_TYPE_DEAG;
1335 path->deag.fp_tbl_id = rpath->frp_fib_index;
1336 path->deag.fp_rpf_id = rpath->frp_rpf_id;
1337 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07001338 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_FMASK)
1339 {
1340 path->fp_type = FIB_PATH_TYPE_BIER_FMASK;
Neale Ranns91286372017-12-05 13:24:04 -08001341 path->bier_fmask.fp_bier_fmask = rpath->frp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001342 }
1343 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_IMP)
1344 {
1345 path->fp_type = FIB_PATH_TYPE_BIER_IMP;
1346 path->bier_imp.fp_bier_imp = rpath->frp_bier_imp;
1347 }
1348 else if (rpath->frp_flags & FIB_ROUTE_PATH_BIER_TABLE)
1349 {
1350 path->fp_type = FIB_PATH_TYPE_BIER_TABLE;
1351 path->bier_table.fp_bier_tbl = rpath->frp_bier_tbl;
1352 }
Florin Coras79ae2d32017-12-16 08:31:06 -08001353 else if (rpath->frp_flags & FIB_ROUTE_PATH_DEAG)
1354 {
1355 path->fp_type = FIB_PATH_TYPE_DEAG;
1356 path->deag.fp_tbl_id = rpath->frp_fib_index;
1357 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08001358 else if (rpath->frp_flags & FIB_ROUTE_PATH_DVR)
1359 {
1360 path->fp_type = FIB_PATH_TYPE_DVR;
1361 path->dvr.fp_interface = rpath->frp_sw_if_index;
1362 }
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001363 else if (rpath->frp_flags & FIB_ROUTE_PATH_EXCLUSIVE)
1364 {
1365 path->fp_type = FIB_PATH_TYPE_EXCLUSIVE;
1366 dpo_copy(&path->exclusive.fp_ex_dpo, &rpath->dpo);
1367 }
Neale Ranns097fa662018-05-01 05:17:55 -07001368 else if ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT) ||
1369 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH))
1370 {
1371 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1372 }
1373 else if ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_CLASSIFY))
1374 {
1375 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1376 path->classify.fp_classify_table_id = rpath->frp_classify_table_id;
1377 }
Neale Ranns32e1c012016-11-22 17:07:28 +00001378 else if (~0 != rpath->frp_sw_if_index)
1379 {
1380 if (ip46_address_is_zero(&rpath->frp_addr))
1381 {
1382 path->fp_type = FIB_PATH_TYPE_ATTACHED;
1383 path->attached.fp_interface = rpath->frp_sw_if_index;
1384 }
1385 else
1386 {
1387 path->fp_type = FIB_PATH_TYPE_ATTACHED_NEXT_HOP;
1388 path->attached_next_hop.fp_interface = rpath->frp_sw_if_index;
1389 path->attached_next_hop.fp_nh = rpath->frp_addr;
1390 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001391 }
1392 else
1393 {
1394 if (ip46_address_is_zero(&rpath->frp_addr))
1395 {
1396 if (~0 == rpath->frp_fib_index)
1397 {
1398 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1399 }
1400 else
1401 {
1402 path->fp_type = FIB_PATH_TYPE_DEAG;
1403 path->deag.fp_tbl_id = rpath->frp_fib_index;
Neale Ranns31ed7442018-02-23 05:29:09 -08001404 path->deag.fp_rpf_id = ~0;
1405 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001406 }
1407 else
1408 {
1409 path->fp_type = FIB_PATH_TYPE_RECURSIVE;
Neale Rannsda78f952017-05-24 09:15:43 -07001410 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001411 {
1412 path->recursive.fp_nh.fp_local_label = rpath->frp_local_label;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001413 path->recursive.fp_nh.fp_eos = rpath->frp_eos;
Neale Rannsad422ed2016-11-02 14:20:04 +00001414 }
1415 else
1416 {
1417 path->recursive.fp_nh.fp_ip = rpath->frp_addr;
1418 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07001419 path->recursive.fp_tbl_id = rpath->frp_fib_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001420 }
1421 }
1422
1423 FIB_PATH_DBG(path, "create");
1424
1425 return (fib_path_get_index(path));
1426}
1427
1428/*
1429 * fib_path_create_special
1430 *
1431 * Create and initialise a new path object.
1432 * return the index of the path.
1433 */
1434fib_node_index_t
1435fib_path_create_special (fib_node_index_t pl_index,
Neale Rannsda78f952017-05-24 09:15:43 -07001436 dpo_proto_t nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001437 fib_path_cfg_flags_t flags,
1438 const dpo_id_t *dpo)
1439{
1440 fib_path_t *path;
1441
1442 pool_get(fib_path_pool, path);
Dave Barachb7b92992018-10-17 10:38:51 -04001443 clib_memset(path, 0, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001444
1445 fib_node_init(&path->fp_node,
1446 FIB_NODE_TYPE_PATH);
1447 dpo_reset(&path->fp_dpo);
1448
1449 path->fp_pl_index = pl_index;
1450 path->fp_weight = 1;
Neale Ranns57b58602017-07-15 07:37:25 -07001451 path->fp_preference = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001452 path->fp_nh_proto = nh_proto;
1453 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
1454 path->fp_cfg_flags = flags;
1455
1456 if (FIB_PATH_CFG_FLAG_DROP & flags)
1457 {
1458 path->fp_type = FIB_PATH_TYPE_SPECIAL;
1459 }
1460 else if (FIB_PATH_CFG_FLAG_LOCAL & flags)
1461 {
1462 path->fp_type = FIB_PATH_TYPE_RECEIVE;
1463 path->attached.fp_interface = FIB_NODE_INDEX_INVALID;
1464 }
1465 else
1466 {
1467 path->fp_type = FIB_PATH_TYPE_EXCLUSIVE;
1468 ASSERT(NULL != dpo);
1469 dpo_copy(&path->exclusive.fp_ex_dpo, dpo);
1470 }
1471
1472 return (fib_path_get_index(path));
1473}
1474
1475/*
1476 * fib_path_copy
1477 *
1478 * Copy a path. return index of new path.
1479 */
1480fib_node_index_t
1481fib_path_copy (fib_node_index_t path_index,
1482 fib_node_index_t path_list_index)
1483{
1484 fib_path_t *path, *orig_path;
1485
1486 pool_get(fib_path_pool, path);
1487
1488 orig_path = fib_path_get(path_index);
1489 ASSERT(NULL != orig_path);
1490
Zhiyong Yangd3d7ef52020-01-09 04:20:57 -05001491 clib_memcpy(path, orig_path, sizeof(*path));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001492
1493 FIB_PATH_DBG(path, "create-copy:%d", path_index);
1494
1495 /*
1496 * reset the dynamic section
1497 */
1498 fib_node_init(&path->fp_node, FIB_NODE_TYPE_PATH);
1499 path->fp_oper_flags = FIB_PATH_OPER_FLAG_NONE;
1500 path->fp_pl_index = path_list_index;
1501 path->fp_via_fib = FIB_NODE_INDEX_INVALID;
Dave Barachb7b92992018-10-17 10:38:51 -04001502 clib_memset(&path->fp_dpo, 0, sizeof(path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001503 dpo_reset(&path->fp_dpo);
1504
1505 return (fib_path_get_index(path));
1506}
1507
1508/*
1509 * fib_path_destroy
1510 *
1511 * destroy a path that is no longer required
1512 */
1513void
1514fib_path_destroy (fib_node_index_t path_index)
1515{
1516 fib_path_t *path;
1517
1518 path = fib_path_get(path_index);
1519
1520 ASSERT(NULL != path);
1521 FIB_PATH_DBG(path, "destroy");
1522
1523 fib_path_unresolve(path);
1524
1525 fib_node_deinit(&path->fp_node);
1526 pool_put(fib_path_pool, path);
1527}
1528
1529/*
1530 * fib_path_destroy
1531 *
1532 * destroy a path that is no longer required
1533 */
1534uword
1535fib_path_hash (fib_node_index_t path_index)
1536{
1537 fib_path_t *path;
1538
1539 path = fib_path_get(path_index);
1540
1541 return (hash_memory(STRUCT_MARK_PTR(path, path_hash_start),
1542 (STRUCT_OFFSET_OF(fib_path_t, path_hash_end) -
1543 STRUCT_OFFSET_OF(fib_path_t, path_hash_start)),
1544 0));
1545}
1546
1547/*
1548 * fib_path_cmp_i
1549 *
1550 * Compare two paths for equivalence.
1551 */
1552static int
1553fib_path_cmp_i (const fib_path_t *path1,
1554 const fib_path_t *path2)
1555{
1556 int res;
1557
1558 res = 1;
1559
1560 /*
1561 * paths of different types and protocol are not equal.
Neale Ranns57b58602017-07-15 07:37:25 -07001562 * different weights and/or preference only are the same path.
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001563 */
1564 if (path1->fp_type != path2->fp_type)
1565 {
1566 res = (path1->fp_type - path2->fp_type);
1567 }
Neale Ranns32e1c012016-11-22 17:07:28 +00001568 else if (path1->fp_nh_proto != path2->fp_nh_proto)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001569 {
1570 res = (path1->fp_nh_proto - path2->fp_nh_proto);
1571 }
1572 else
1573 {
1574 /*
1575 * both paths are of the same type.
1576 * consider each type and its attributes in turn.
1577 */
1578 switch (path1->fp_type)
1579 {
1580 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1581 res = ip46_address_cmp(&path1->attached_next_hop.fp_nh,
1582 &path2->attached_next_hop.fp_nh);
1583 if (0 == res) {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001584 res = (path1->attached_next_hop.fp_interface -
1585 path2->attached_next_hop.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001586 }
1587 break;
1588 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001589 res = (path1->attached.fp_interface -
1590 path2->attached.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001591 break;
1592 case FIB_PATH_TYPE_RECURSIVE:
Neale Rannscbe25aa2019-09-30 10:53:31 +00001593 res = ip46_address_cmp(&path1->recursive.fp_nh.fp_ip,
1594 &path2->recursive.fp_nh.fp_ip);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001595
1596 if (0 == res)
1597 {
1598 res = (path1->recursive.fp_tbl_id - path2->recursive.fp_tbl_id);
1599 }
1600 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001601 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08001602 res = (path1->bier_fmask.fp_bier_fmask -
1603 path2->bier_fmask.fp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07001604 break;
1605 case FIB_PATH_TYPE_BIER_IMP:
1606 res = (path1->bier_imp.fp_bier_imp -
1607 path2->bier_imp.fp_bier_imp);
1608 break;
1609 case FIB_PATH_TYPE_BIER_TABLE:
1610 res = bier_table_id_cmp(&path1->bier_table.fp_bier_tbl,
1611 &path2->bier_table.fp_bier_tbl);
1612 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001613 case FIB_PATH_TYPE_DEAG:
1614 res = (path1->deag.fp_tbl_id - path2->deag.fp_tbl_id);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001615 if (0 == res)
1616 {
1617 res = (path1->deag.fp_rpf_id - path2->deag.fp_rpf_id);
1618 }
1619 break;
1620 case FIB_PATH_TYPE_INTF_RX:
1621 res = (path1->intf_rx.fp_interface - path2->intf_rx.fp_interface);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001622 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001623 case FIB_PATH_TYPE_UDP_ENCAP:
1624 res = (path1->udp_encap.fp_udp_encap_id - path2->udp_encap.fp_udp_encap_id);
1625 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08001626 case FIB_PATH_TYPE_DVR:
1627 res = (path1->dvr.fp_interface - path2->dvr.fp_interface);
1628 break;
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001629 case FIB_PATH_TYPE_EXCLUSIVE:
1630 res = dpo_cmp(&path1->exclusive.fp_ex_dpo, &path2->exclusive.fp_ex_dpo);
1631 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001632 case FIB_PATH_TYPE_SPECIAL:
1633 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001634 res = 0;
1635 break;
1636 }
1637 }
1638 return (res);
1639}
1640
1641/*
1642 * fib_path_cmp_for_sort
1643 *
1644 * Compare two paths for equivalence. Used during path sorting.
1645 * As usual 0 means equal.
1646 */
1647int
1648fib_path_cmp_for_sort (void * v1,
1649 void * v2)
1650{
1651 fib_node_index_t *pi1 = v1, *pi2 = v2;
1652 fib_path_t *path1, *path2;
1653
1654 path1 = fib_path_get(*pi1);
1655 path2 = fib_path_get(*pi2);
1656
Neale Ranns57b58602017-07-15 07:37:25 -07001657 /*
1658 * when sorting paths we want the highest preference paths
1659 * first, so that the choices set built is in prefernce order
1660 */
1661 if (path1->fp_preference != path2->fp_preference)
1662 {
1663 return (path1->fp_preference - path2->fp_preference);
1664 }
1665
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001666 return (fib_path_cmp_i(path1, path2));
1667}
1668
1669/*
1670 * fib_path_cmp
1671 *
1672 * Compare two paths for equivalence.
1673 */
1674int
1675fib_path_cmp (fib_node_index_t pi1,
1676 fib_node_index_t pi2)
1677{
1678 fib_path_t *path1, *path2;
1679
1680 path1 = fib_path_get(pi1);
1681 path2 = fib_path_get(pi2);
1682
1683 return (fib_path_cmp_i(path1, path2));
1684}
1685
1686int
1687fib_path_cmp_w_route_path (fib_node_index_t path_index,
1688 const fib_route_path_t *rpath)
1689{
1690 fib_path_t *path;
1691 int res;
1692
1693 path = fib_path_get(path_index);
1694
1695 res = 1;
1696
1697 if (path->fp_weight != rpath->frp_weight)
1698 {
1699 res = (path->fp_weight - rpath->frp_weight);
1700 }
1701 else
1702 {
1703 /*
1704 * both paths are of the same type.
1705 * consider each type and its attributes in turn.
1706 */
1707 switch (path->fp_type)
1708 {
1709 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1710 res = ip46_address_cmp(&path->attached_next_hop.fp_nh,
1711 &rpath->frp_addr);
1712 if (0 == res)
1713 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001714 res = (path->attached_next_hop.fp_interface -
1715 rpath->frp_sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001716 }
1717 break;
1718 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001719 res = (path->attached.fp_interface - rpath->frp_sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001720 break;
1721 case FIB_PATH_TYPE_RECURSIVE:
Neale Rannsda78f952017-05-24 09:15:43 -07001722 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001723 {
1724 res = path->recursive.fp_nh.fp_local_label - rpath->frp_local_label;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001725
1726 if (res == 0)
1727 {
1728 res = path->recursive.fp_nh.fp_eos - rpath->frp_eos;
1729 }
Neale Rannsad422ed2016-11-02 14:20:04 +00001730 }
1731 else
1732 {
1733 res = ip46_address_cmp(&path->recursive.fp_nh.fp_ip,
1734 &rpath->frp_addr);
1735 }
1736
1737 if (0 == res)
1738 {
1739 res = (path->recursive.fp_tbl_id - rpath->frp_fib_index);
1740 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001741 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07001742 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08001743 res = (path->bier_fmask.fp_bier_fmask - rpath->frp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07001744 break;
1745 case FIB_PATH_TYPE_BIER_IMP:
1746 res = (path->bier_imp.fp_bier_imp - rpath->frp_bier_imp);
1747 break;
1748 case FIB_PATH_TYPE_BIER_TABLE:
1749 res = bier_table_id_cmp(&path->bier_table.fp_bier_tbl,
1750 &rpath->frp_bier_tbl);
1751 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001752 case FIB_PATH_TYPE_INTF_RX:
1753 res = (path->intf_rx.fp_interface - rpath->frp_sw_if_index);
1754 break;
Neale Ranns810086d2017-11-05 16:26:46 -08001755 case FIB_PATH_TYPE_UDP_ENCAP:
1756 res = (path->udp_encap.fp_udp_encap_id - rpath->frp_udp_encap_id);
1757 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001758 case FIB_PATH_TYPE_DEAG:
1759 res = (path->deag.fp_tbl_id - rpath->frp_fib_index);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001760 if (0 == res)
1761 {
1762 res = (path->deag.fp_rpf_id - rpath->frp_rpf_id);
1763 }
1764 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08001765 case FIB_PATH_TYPE_DVR:
1766 res = (path->dvr.fp_interface - rpath->frp_sw_if_index);
1767 break;
Vijayabhaskar Katamreddycef5db02018-10-05 11:24:56 -07001768 case FIB_PATH_TYPE_EXCLUSIVE:
1769 res = dpo_cmp(&path->exclusive.fp_ex_dpo, &rpath->dpo);
1770 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001771 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07001772 if (rpath->frp_flags & FIB_ROUTE_PATH_LOCAL)
1773 {
1774 res = 0;
1775 }
1776 else
1777 {
1778 res = 1;
1779 }
1780 break;
1781 case FIB_PATH_TYPE_SPECIAL:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001782 res = 0;
1783 break;
1784 }
1785 }
1786 return (res);
1787}
1788
1789/*
1790 * fib_path_recursive_loop_detect
1791 *
1792 * A forward walk of the FIB object graph to detect for a cycle/loop. This
1793 * walk is initiated when an entry is linking to a new path list or from an old.
1794 * The entry vector passed contains all the FIB entrys that are children of this
1795 * path (it is all the entries encountered on the walk so far). If this vector
1796 * contains the entry this path resolve via, then a loop is about to form.
1797 * The loop must be allowed to form, since we need the dependencies in place
1798 * so that we can track when the loop breaks.
1799 * However, we MUST not produce a loop in the forwarding graph (else packets
1800 * would loop around the switch path until the loop breaks), so we mark recursive
1801 * paths as looped so that they do not contribute forwarding information.
1802 * By marking the path as looped, an etry such as;
1803 * X/Y
1804 * via a.a.a.a (looped)
1805 * via b.b.b.b (not looped)
1806 * can still forward using the info provided by b.b.b.b only
1807 */
1808int
1809fib_path_recursive_loop_detect (fib_node_index_t path_index,
1810 fib_node_index_t **entry_indicies)
1811{
1812 fib_path_t *path;
1813
1814 path = fib_path_get(path_index);
1815
1816 /*
1817 * the forced drop path is never looped, cos it is never resolved.
1818 */
1819 if (fib_path_is_permanent_drop(path))
1820 {
1821 return (0);
1822 }
1823
1824 switch (path->fp_type)
1825 {
1826 case FIB_PATH_TYPE_RECURSIVE:
1827 {
1828 fib_node_index_t *entry_index, *entries;
1829 int looped = 0;
1830 entries = *entry_indicies;
1831
1832 vec_foreach(entry_index, entries) {
1833 if (*entry_index == path->fp_via_fib)
1834 {
1835 /*
1836 * the entry that is about to link to this path-list (or
1837 * one of this path-list's children) is the same entry that
1838 * this recursive path resolves through. this is a cycle.
1839 * abort the walk.
1840 */
1841 looped = 1;
1842 break;
1843 }
1844 }
1845
1846 if (looped)
1847 {
1848 FIB_PATH_DBG(path, "recursive loop formed");
1849 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1850
Neale Rannsda78f952017-05-24 09:15:43 -07001851 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001852 }
1853 else
1854 {
1855 /*
1856 * no loop here yet. keep forward walking the graph.
Neale Ranns521a8d72018-12-06 13:46:49 +00001857 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001858 if (fib_entry_recursive_loop_detect(path->fp_via_fib, entry_indicies))
1859 {
1860 FIB_PATH_DBG(path, "recursive loop formed");
1861 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1862 }
1863 else
1864 {
1865 FIB_PATH_DBG(path, "recursive loop cleared");
1866 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1867 }
1868 }
1869 break;
1870 }
1871 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1872 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns521a8d72018-12-06 13:46:49 +00001873 if (adj_recursive_loop_detect(path->fp_dpo.dpoi_index,
1874 entry_indicies))
1875 {
1876 FIB_PATH_DBG(path, "recursive loop formed");
1877 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1878 }
1879 else
1880 {
1881 FIB_PATH_DBG(path, "recursive loop cleared");
1882 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RECURSIVE_LOOP;
1883 }
1884 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001885 case FIB_PATH_TYPE_SPECIAL:
1886 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -08001887 case FIB_PATH_TYPE_DVR:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001888 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001889 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08001890 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001891 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07001892 case FIB_PATH_TYPE_BIER_FMASK:
1893 case FIB_PATH_TYPE_BIER_TABLE:
1894 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001895 /*
1896 * these path types cannot be part of a loop, since they are the leaves
1897 * of the graph.
1898 */
1899 break;
1900 }
1901
1902 return (fib_path_is_looped(path_index));
1903}
1904
1905int
1906fib_path_resolve (fib_node_index_t path_index)
1907{
1908 fib_path_t *path;
1909
1910 path = fib_path_get(path_index);
1911
1912 /*
1913 * hope for the best.
1914 */
1915 path->fp_oper_flags |= FIB_PATH_OPER_FLAG_RESOLVED;
1916
1917 /*
1918 * the forced drop path resolves via the drop adj
1919 */
1920 if (fib_path_is_permanent_drop(path))
1921 {
Neale Rannsda78f952017-05-24 09:15:43 -07001922 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001923 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
1924 return (fib_path_is_resolved(path_index));
1925 }
1926
1927 switch (path->fp_type)
1928 {
1929 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
1930 fib_path_attached_next_hop_set(path);
1931 break;
1932 case FIB_PATH_TYPE_ATTACHED:
Neale Rannsd35abc42019-04-18 09:42:20 +00001933 {
1934 dpo_id_t tmp = DPO_INVALID;
1935
Neale Rannsf068c3e2018-01-03 04:18:48 -08001936 /*
1937 * path->attached.fp_interface
1938 */
Neale Ranns3e2e1902019-03-14 09:21:02 -07001939 if (!vnet_sw_interface_is_up(vnet_get_main(),
1940 path->attached.fp_interface))
Neale Ranns6f631152017-10-03 08:20:21 -07001941 {
Neale Rannsf068c3e2018-01-03 04:18:48 -08001942 path->fp_oper_flags &= ~FIB_PATH_OPER_FLAG_RESOLVED;
Neale Ranns6f631152017-10-03 08:20:21 -07001943 }
Neale Ranns3fd99042019-12-16 00:53:11 +00001944 fib_path_attached_get_adj(path,
1945 dpo_proto_to_link(path->fp_nh_proto),
1946 &tmp);
Neale Ranns8c4611b2017-05-23 03:43:47 -07001947
Neale Rannsf068c3e2018-01-03 04:18:48 -08001948 /*
Neale Rannsd35abc42019-04-18 09:42:20 +00001949 * re-fetch after possible mem realloc
1950 */
1951 path = fib_path_get(path_index);
1952 dpo_copy(&path->fp_dpo, &tmp);
1953
1954 /*
Neale Rannsf068c3e2018-01-03 04:18:48 -08001955 * become a child of the adjacency so we receive updates
1956 * when the interface state changes
1957 */
Neale Ranns3fd99042019-12-16 00:53:11 +00001958 if (dpo_is_adj(&path->fp_dpo))
1959 {
1960 path->fp_sibling = adj_child_add(path->fp_dpo.dpoi_index,
1961 FIB_NODE_TYPE_PATH,
1962 fib_path_get_index(path));
1963 }
Neale Rannsd35abc42019-04-18 09:42:20 +00001964 dpo_reset(&tmp);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001965 break;
Neale Rannsd35abc42019-04-18 09:42:20 +00001966 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001967 case FIB_PATH_TYPE_RECURSIVE:
1968 {
1969 /*
1970 * Create a RR source entry in the table for the address
1971 * that this path recurses through.
1972 * This resolve action is recursive, hence we may create
1973 * more paths in the process. more creates mean maybe realloc
1974 * of this path.
1975 */
1976 fib_node_index_t fei;
1977 fib_prefix_t pfx;
1978
1979 ASSERT(FIB_NODE_INDEX_INVALID == path->fp_via_fib);
1980
Neale Rannsda78f952017-05-24 09:15:43 -07001981 if (DPO_PROTO_MPLS == path->fp_nh_proto)
Neale Rannsad422ed2016-11-02 14:20:04 +00001982 {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001983 fib_prefix_from_mpls_label(path->recursive.fp_nh.fp_local_label,
1984 path->recursive.fp_nh.fp_eos,
1985 &pfx);
Neale Rannsad422ed2016-11-02 14:20:04 +00001986 }
1987 else
1988 {
1989 fib_prefix_from_ip46_addr(&path->recursive.fp_nh.fp_ip, &pfx);
1990 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001991
Neale Ranns6fff24a2018-09-10 19:14:07 -07001992 fib_table_lock(path->recursive.fp_tbl_id,
1993 dpo_proto_to_fib(path->fp_nh_proto),
1994 FIB_SOURCE_RR);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001995 fei = fib_table_entry_special_add(path->recursive.fp_tbl_id,
1996 &pfx,
1997 FIB_SOURCE_RR,
Neale Rannsa0558302017-04-13 00:44:52 -07001998 FIB_ENTRY_FLAG_NONE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001999
2000 path = fib_path_get(path_index);
2001 path->fp_via_fib = fei;
2002
2003 /*
2004 * become a dependent child of the entry so the path is
2005 * informed when the forwarding for the entry changes.
2006 */
2007 path->fp_sibling = fib_entry_child_add(path->fp_via_fib,
2008 FIB_NODE_TYPE_PATH,
2009 fib_path_get_index(path));
2010
2011 /*
2012 * create and configure the IP DPO
2013 */
2014 fib_path_recursive_adj_update(
2015 path,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002016 fib_path_to_chain_type(path),
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002017 &path->fp_dpo);
2018
2019 break;
2020 }
Neale Rannsd792d9c2017-10-21 10:53:20 -07002021 case FIB_PATH_TYPE_BIER_FMASK:
2022 {
2023 /*
Neale Rannsd792d9c2017-10-21 10:53:20 -07002024 * become a dependent child of the entry so the path is
2025 * informed when the forwarding for the entry changes.
2026 */
Neale Ranns91286372017-12-05 13:24:04 -08002027 path->fp_sibling = bier_fmask_child_add(path->bier_fmask.fp_bier_fmask,
Neale Rannsd792d9c2017-10-21 10:53:20 -07002028 FIB_NODE_TYPE_PATH,
2029 fib_path_get_index(path));
2030
Neale Ranns91286372017-12-05 13:24:04 -08002031 path->fp_via_bier_fmask = path->bier_fmask.fp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002032 fib_path_bier_fmask_update(path, &path->fp_dpo);
2033
2034 break;
2035 }
2036 case FIB_PATH_TYPE_BIER_IMP:
2037 bier_imp_lock(path->bier_imp.fp_bier_imp);
2038 bier_imp_contribute_forwarding(path->bier_imp.fp_bier_imp,
2039 DPO_PROTO_IP4,
2040 &path->fp_dpo);
2041 break;
2042 case FIB_PATH_TYPE_BIER_TABLE:
2043 {
2044 /*
2045 * Find/create the BIER table to link to
2046 */
2047 ASSERT(FIB_NODE_INDEX_INVALID == path->fp_via_bier_tbl);
2048
2049 path->fp_via_bier_tbl =
2050 bier_table_ecmp_create_and_lock(&path->bier_table.fp_bier_tbl);
2051
2052 bier_table_contribute_forwarding(path->fp_via_bier_tbl,
2053 &path->fp_dpo);
2054 break;
2055 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002056 case FIB_PATH_TYPE_SPECIAL:
Neale Ranns097fa662018-05-01 05:17:55 -07002057 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT)
2058 {
2059 ip_null_dpo_add_and_lock (path->fp_nh_proto,
2060 IP_NULL_ACTION_SEND_ICMP_PROHIBIT,
2061 &path->fp_dpo);
2062 }
2063 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH)
2064 {
2065 ip_null_dpo_add_and_lock (path->fp_nh_proto,
2066 IP_NULL_ACTION_SEND_ICMP_UNREACH,
2067 &path->fp_dpo);
2068 }
2069 else if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_CLASSIFY)
2070 {
2071 dpo_set (&path->fp_dpo, DPO_CLASSIFY,
2072 path->fp_nh_proto,
2073 classify_dpo_create (path->fp_nh_proto,
2074 path->classify.fp_classify_table_id));
2075 }
2076 else
2077 {
2078 /*
2079 * Resolve via the drop
2080 */
2081 dpo_copy(&path->fp_dpo, drop_dpo_get(path->fp_nh_proto));
2082 }
2083 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002084 case FIB_PATH_TYPE_DEAG:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002085 {
Neale Ranns91286372017-12-05 13:24:04 -08002086 if (DPO_PROTO_BIER == path->fp_nh_proto)
2087 {
2088 bier_disp_table_contribute_forwarding(path->deag.fp_tbl_id,
2089 &path->fp_dpo);
2090 }
2091 else
2092 {
2093 /*
2094 * Resolve via a lookup DPO.
2095 * FIXME. control plane should add routes with a table ID
2096 */
2097 lookup_input_t input;
2098 lookup_cast_t cast;
Neale Ranns054c03a2017-10-13 05:15:07 -07002099
Neale Ranns91286372017-12-05 13:24:04 -08002100 cast = (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID ?
2101 LOOKUP_MULTICAST :
2102 LOOKUP_UNICAST);
2103 input = (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DEAG_SRC ?
2104 LOOKUP_INPUT_SRC_ADDR :
2105 LOOKUP_INPUT_DST_ADDR);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002106
Neale Ranns91286372017-12-05 13:24:04 -08002107 lookup_dpo_add_or_lock_w_fib_index(path->deag.fp_tbl_id,
2108 path->fp_nh_proto,
2109 cast,
2110 input,
2111 LOOKUP_TABLE_FROM_CONFIG,
2112 &path->fp_dpo);
2113 }
2114 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002115 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08002116 case FIB_PATH_TYPE_DVR:
2117 dvr_dpo_add_or_lock(path->attached.fp_interface,
2118 path->fp_nh_proto,
2119 &path->fp_dpo);
2120 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002121 case FIB_PATH_TYPE_RECEIVE:
2122 /*
2123 * Resolve via a receive DPO.
2124 */
Neale Rannsda78f952017-05-24 09:15:43 -07002125 receive_dpo_add_or_lock(path->fp_nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002126 path->receive.fp_interface,
2127 &path->receive.fp_addr,
2128 &path->fp_dpo);
2129 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002130 case FIB_PATH_TYPE_UDP_ENCAP:
2131 udp_encap_lock(path->udp_encap.fp_udp_encap_id);
2132 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
2133 path->fp_nh_proto,
2134 &path->fp_dpo);
2135 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002136 case FIB_PATH_TYPE_INTF_RX: {
2137 /*
2138 * Resolve via a receive DPO.
2139 */
Neale Ranns43161a82017-08-12 02:12:00 -07002140 interface_rx_dpo_add_or_lock(path->fp_nh_proto,
2141 path->intf_rx.fp_interface,
2142 &path->fp_dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002143 break;
2144 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002145 case FIB_PATH_TYPE_EXCLUSIVE:
2146 /*
2147 * Resolve via the user provided DPO
2148 */
2149 dpo_copy(&path->fp_dpo, &path->exclusive.fp_ex_dpo);
2150 break;
2151 }
2152
2153 return (fib_path_is_resolved(path_index));
2154}
2155
2156u32
2157fib_path_get_resolving_interface (fib_node_index_t path_index)
2158{
2159 fib_path_t *path;
2160
2161 path = fib_path_get(path_index);
2162
2163 switch (path->fp_type)
2164 {
2165 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2166 return (path->attached_next_hop.fp_interface);
2167 case FIB_PATH_TYPE_ATTACHED:
2168 return (path->attached.fp_interface);
2169 case FIB_PATH_TYPE_RECEIVE:
2170 return (path->receive.fp_interface);
2171 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns08b16482017-05-13 05:52:58 -07002172 if (fib_path_is_resolved(path_index))
2173 {
2174 return (fib_entry_get_resolving_interface(path->fp_via_fib));
2175 }
2176 break;
Neale Rannsf068c3e2018-01-03 04:18:48 -08002177 case FIB_PATH_TYPE_DVR:
2178 return (path->dvr.fp_interface);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002179 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08002180 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002181 case FIB_PATH_TYPE_SPECIAL:
2182 case FIB_PATH_TYPE_DEAG:
2183 case FIB_PATH_TYPE_EXCLUSIVE:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002184 case FIB_PATH_TYPE_BIER_FMASK:
2185 case FIB_PATH_TYPE_BIER_TABLE:
2186 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002187 break;
2188 }
Neale Ranns4a6d0232018-04-24 07:45:33 -07002189 return (dpo_get_urpf(&path->fp_dpo));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002190}
2191
Neale Rannsd792d9c2017-10-21 10:53:20 -07002192index_t
2193fib_path_get_resolving_index (fib_node_index_t path_index)
2194{
2195 fib_path_t *path;
2196
2197 path = fib_path_get(path_index);
2198
2199 switch (path->fp_type)
2200 {
2201 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2202 case FIB_PATH_TYPE_ATTACHED:
2203 case FIB_PATH_TYPE_RECEIVE:
2204 case FIB_PATH_TYPE_INTF_RX:
2205 case FIB_PATH_TYPE_SPECIAL:
2206 case FIB_PATH_TYPE_DEAG:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002207 case FIB_PATH_TYPE_DVR:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002208 case FIB_PATH_TYPE_EXCLUSIVE:
2209 break;
2210 case FIB_PATH_TYPE_UDP_ENCAP:
2211 return (path->udp_encap.fp_udp_encap_id);
2212 case FIB_PATH_TYPE_RECURSIVE:
2213 return (path->fp_via_fib);
2214 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns91286372017-12-05 13:24:04 -08002215 return (path->bier_fmask.fp_bier_fmask);
Neale Rannsd792d9c2017-10-21 10:53:20 -07002216 case FIB_PATH_TYPE_BIER_TABLE:
2217 return (path->fp_via_bier_tbl);
2218 case FIB_PATH_TYPE_BIER_IMP:
2219 return (path->bier_imp.fp_bier_imp);
2220 }
2221 return (~0);
2222}
2223
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002224adj_index_t
2225fib_path_get_adj (fib_node_index_t path_index)
2226{
2227 fib_path_t *path;
2228
2229 path = fib_path_get(path_index);
2230
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002231 if (dpo_is_adj(&path->fp_dpo))
2232 {
2233 return (path->fp_dpo.dpoi_index);
2234 }
2235 return (ADJ_INDEX_INVALID);
2236}
2237
Neale Ranns57b58602017-07-15 07:37:25 -07002238u16
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002239fib_path_get_weight (fib_node_index_t path_index)
2240{
2241 fib_path_t *path;
2242
2243 path = fib_path_get(path_index);
2244
2245 ASSERT(path);
2246
2247 return (path->fp_weight);
2248}
2249
Neale Ranns57b58602017-07-15 07:37:25 -07002250u16
2251fib_path_get_preference (fib_node_index_t path_index)
2252{
2253 fib_path_t *path;
2254
2255 path = fib_path_get(path_index);
2256
2257 ASSERT(path);
2258
2259 return (path->fp_preference);
2260}
2261
Neale Rannsd792d9c2017-10-21 10:53:20 -07002262u32
2263fib_path_get_rpf_id (fib_node_index_t path_index)
2264{
2265 fib_path_t *path;
2266
2267 path = fib_path_get(path_index);
2268
2269 ASSERT(path);
2270
2271 if (FIB_PATH_CFG_FLAG_RPF_ID & path->fp_cfg_flags)
2272 {
2273 return (path->deag.fp_rpf_id);
2274 }
2275
2276 return (~0);
2277}
2278
Neale Ranns3ee44042016-10-03 13:05:48 +01002279/**
2280 * @brief Contribute the path's adjacency to the list passed.
2281 * By calling this function over all paths, recursively, a child
2282 * can construct its full set of forwarding adjacencies, and hence its
2283 * uRPF list.
2284 */
2285void
2286fib_path_contribute_urpf (fib_node_index_t path_index,
2287 index_t urpf)
2288{
2289 fib_path_t *path;
2290
Neale Ranns3ee44042016-10-03 13:05:48 +01002291 path = fib_path_get(path_index);
2292
Neale Ranns88fc83e2017-04-05 08:11:14 -07002293 /*
2294 * resolved and unresolved paths contribute to the RPF list.
2295 */
Neale Ranns3ee44042016-10-03 13:05:48 +01002296 switch (path->fp_type)
2297 {
2298 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2299 fib_urpf_list_append(urpf, path->attached_next_hop.fp_interface);
2300 break;
2301
2302 case FIB_PATH_TYPE_ATTACHED:
2303 fib_urpf_list_append(urpf, path->attached.fp_interface);
2304 break;
2305
2306 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns08b16482017-05-13 05:52:58 -07002307 if (FIB_NODE_INDEX_INVALID != path->fp_via_fib &&
2308 !fib_path_is_looped(path_index))
Neale Ranns88fc83e2017-04-05 08:11:14 -07002309 {
2310 /*
2311 * there's unresolved due to constraints, and there's unresolved
Neale Ranns08b16482017-05-13 05:52:58 -07002312 * due to ain't got no via. can't do nowt w'out via.
Neale Ranns88fc83e2017-04-05 08:11:14 -07002313 */
2314 fib_entry_contribute_urpf(path->fp_via_fib, urpf);
2315 }
Neale Ranns3ee44042016-10-03 13:05:48 +01002316 break;
2317
2318 case FIB_PATH_TYPE_EXCLUSIVE:
2319 case FIB_PATH_TYPE_SPECIAL:
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002320 {
2321 /*
Neale Ranns3ee44042016-10-03 13:05:48 +01002322 * these path types may link to an adj, if that's what
2323 * the clinet gave
2324 */
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002325 u32 rpf_sw_if_index;
2326
2327 rpf_sw_if_index = dpo_get_urpf(&path->fp_dpo);
2328
2329 if (~0 != rpf_sw_if_index)
Neale Ranns3ee44042016-10-03 13:05:48 +01002330 {
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002331 fib_urpf_list_append(urpf, rpf_sw_if_index);
Neale Ranns3ee44042016-10-03 13:05:48 +01002332 }
2333 break;
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07002334 }
Neale Rannsf068c3e2018-01-03 04:18:48 -08002335 case FIB_PATH_TYPE_DVR:
2336 fib_urpf_list_append(urpf, path->dvr.fp_interface);
2337 break;
Neale Ranns3ee44042016-10-03 13:05:48 +01002338 case FIB_PATH_TYPE_DEAG:
2339 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002340 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08002341 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002342 case FIB_PATH_TYPE_BIER_FMASK:
2343 case FIB_PATH_TYPE_BIER_TABLE:
2344 case FIB_PATH_TYPE_BIER_IMP:
Neale Ranns3ee44042016-10-03 13:05:48 +01002345 /*
2346 * these path types don't link to an adj
2347 */
2348 break;
2349 }
2350}
2351
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002352void
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002353fib_path_stack_mpls_disp (fib_node_index_t path_index,
2354 dpo_proto_t payload_proto,
Neale Ranns31ed7442018-02-23 05:29:09 -08002355 fib_mpls_lsp_mode_t mode,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002356 dpo_id_t *dpo)
2357{
2358 fib_path_t *path;
2359
2360 path = fib_path_get(path_index);
2361
2362 ASSERT(path);
2363
2364 switch (path->fp_type)
2365 {
Neale Ranns62fe07c2017-10-31 12:28:22 -07002366 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2367 {
2368 dpo_id_t tmp = DPO_INVALID;
2369
2370 dpo_copy(&tmp, dpo);
Neale Ranns31ed7442018-02-23 05:29:09 -08002371
2372 mpls_disp_dpo_create(payload_proto, ~0, mode, &tmp, dpo);
Neale Ranns62fe07c2017-10-31 12:28:22 -07002373 dpo_reset(&tmp);
2374 break;
2375 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002376 case FIB_PATH_TYPE_DEAG:
2377 {
2378 dpo_id_t tmp = DPO_INVALID;
2379
2380 dpo_copy(&tmp, dpo);
Neale Ranns31ed7442018-02-23 05:29:09 -08002381
2382 mpls_disp_dpo_create(payload_proto,
2383 path->deag.fp_rpf_id,
2384 mode, &tmp, dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002385 dpo_reset(&tmp);
2386 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002387 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002388 case FIB_PATH_TYPE_RECEIVE:
2389 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002390 case FIB_PATH_TYPE_RECURSIVE:
2391 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns810086d2017-11-05 16:26:46 -08002392 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002393 case FIB_PATH_TYPE_EXCLUSIVE:
2394 case FIB_PATH_TYPE_SPECIAL:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002395 case FIB_PATH_TYPE_BIER_FMASK:
2396 case FIB_PATH_TYPE_BIER_TABLE:
2397 case FIB_PATH_TYPE_BIER_IMP:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002398 case FIB_PATH_TYPE_DVR:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002399 break;
2400 }
Neale Ranns1dbcf302019-07-19 11:44:53 +00002401
2402 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_POP_PW_CW)
2403 {
2404 dpo_id_t tmp = DPO_INVALID;
2405
2406 dpo_copy(&tmp, dpo);
2407
2408 pw_cw_dpo_create(&tmp, dpo);
2409 dpo_reset(&tmp);
2410 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002411}
2412
2413void
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002414fib_path_contribute_forwarding (fib_node_index_t path_index,
2415 fib_forward_chain_type_t fct,
2416 dpo_id_t *dpo)
2417{
2418 fib_path_t *path;
2419
2420 path = fib_path_get(path_index);
2421
2422 ASSERT(path);
2423 ASSERT(FIB_FORW_CHAIN_TYPE_MPLS_EOS != fct);
2424
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002425 /*
2426 * The DPO stored in the path was created when the path was resolved.
2427 * This then represents the path's 'native' protocol; IP.
2428 * For all others will need to go find something else.
2429 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002430 if (fib_path_to_chain_type(path) == fct)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002431 {
2432 dpo_copy(dpo, &path->fp_dpo);
2433 }
Neale Ranns5e575b12016-10-03 09:40:25 +01002434 else
2435 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002436 switch (path->fp_type)
2437 {
2438 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
2439 switch (fct)
2440 {
2441 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2442 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2443 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2444 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
Neale Ranns5e575b12016-10-03 09:40:25 +01002445 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002446 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Rannse821ab12017-06-01 07:45:05 -07002447 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2448 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
Neale Ranns3fd99042019-12-16 00:53:11 +00002449 fib_path_attached_next_hop_get_adj(
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002450 path,
Neale Ranns3fd99042019-12-16 00:53:11 +00002451 fib_forw_chain_type_to_link_type(fct),
2452 dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002453 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002454 case FIB_FORW_CHAIN_TYPE_BIER:
2455 break;
2456 }
Neale Ranns32e1c012016-11-22 17:07:28 +00002457 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002458 case FIB_PATH_TYPE_RECURSIVE:
2459 switch (fct)
2460 {
2461 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2462 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2463 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002464 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
Neale Ranns32e1c012016-11-22 17:07:28 +00002465 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2466 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002467 case FIB_FORW_CHAIN_TYPE_BIER:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002468 fib_path_recursive_adj_update(path, fct, dpo);
2469 break;
Neale Ranns5e575b12016-10-03 09:40:25 +01002470 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002471 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Ranns5e575b12016-10-03 09:40:25 +01002472 ASSERT(0);
2473 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002474 }
2475 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002476 case FIB_PATH_TYPE_BIER_TABLE:
2477 switch (fct)
2478 {
2479 case FIB_FORW_CHAIN_TYPE_BIER:
2480 bier_table_contribute_forwarding(path->fp_via_bier_tbl, dpo);
2481 break;
2482 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2483 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2484 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2485 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2486 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2487 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2488 case FIB_FORW_CHAIN_TYPE_ETHERNET:
2489 case FIB_FORW_CHAIN_TYPE_NSH:
2490 ASSERT(0);
2491 break;
2492 }
2493 break;
2494 case FIB_PATH_TYPE_BIER_FMASK:
2495 switch (fct)
2496 {
2497 case FIB_FORW_CHAIN_TYPE_BIER:
2498 fib_path_bier_fmask_update(path, dpo);
2499 break;
2500 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2501 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2502 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2503 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2504 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2505 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2506 case FIB_FORW_CHAIN_TYPE_ETHERNET:
2507 case FIB_FORW_CHAIN_TYPE_NSH:
2508 ASSERT(0);
2509 break;
2510 }
2511 break;
2512 case FIB_PATH_TYPE_BIER_IMP:
2513 bier_imp_contribute_forwarding(path->bier_imp.fp_bier_imp,
2514 fib_forw_chain_type_to_dpo_proto(fct),
2515 dpo);
2516 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002517 case FIB_PATH_TYPE_DEAG:
Neale Ranns32e1c012016-11-22 17:07:28 +00002518 switch (fct)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002519 {
2520 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2521 lookup_dpo_add_or_lock_w_table_id(MPLS_FIB_DEFAULT_TABLE_ID,
2522 DPO_PROTO_MPLS,
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002523 LOOKUP_UNICAST,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002524 LOOKUP_INPUT_DST_ADDR,
2525 LOOKUP_TABLE_FROM_CONFIG,
2526 dpo);
2527 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002528 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002529 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2530 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
Neale Ranns32e1c012016-11-22 17:07:28 +00002531 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2532 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
Neale Ranns097fa662018-05-01 05:17:55 -07002533 dpo_copy(dpo, &path->fp_dpo);
2534 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002535 case FIB_FORW_CHAIN_TYPE_BIER:
2536 break;
Neale Ranns5e575b12016-10-03 09:40:25 +01002537 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002538 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Ranns5e575b12016-10-03 09:40:25 +01002539 ASSERT(0);
2540 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002541 }
2542 break;
2543 case FIB_PATH_TYPE_EXCLUSIVE:
2544 dpo_copy(dpo, &path->exclusive.fp_ex_dpo);
2545 break;
2546 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns32e1c012016-11-22 17:07:28 +00002547 switch (fct)
2548 {
2549 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
2550 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
2551 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
2552 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
2553 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08002554 case FIB_FORW_CHAIN_TYPE_NSH:
Neale Rannsd792d9c2017-10-21 10:53:20 -07002555 case FIB_FORW_CHAIN_TYPE_BIER:
Neale Ranns3fd99042019-12-16 00:53:11 +00002556 fib_path_attached_get_adj(path,
2557 fib_forw_chain_type_to_link_type(fct),
2558 dpo);
2559 break;
Neale Ranns32e1c012016-11-22 17:07:28 +00002560 case FIB_FORW_CHAIN_TYPE_MCAST_IP4:
2561 case FIB_FORW_CHAIN_TYPE_MCAST_IP6:
2562 {
2563 adj_index_t ai;
2564
2565 /*
2566 * Create the adj needed for sending IP multicast traffic
2567 */
Neale Rannsda0e7492019-10-07 22:44:54 -07002568 if (vnet_sw_interface_is_p2p(vnet_get_main(),
2569 path->attached.fp_interface))
2570 {
2571 /*
2572 * point-2-point interfaces do not require a glean, since
2573 * there is nothing to ARP. Install a rewrite/nbr adj instead
2574 */
2575 ai = adj_nbr_add_or_lock(dpo_proto_to_fib(path->fp_nh_proto),
2576 fib_forw_chain_type_to_link_type(fct),
2577 &zero_addr,
2578 path->attached.fp_interface);
2579 }
2580 else
2581 {
2582 ai = adj_mcast_add_or_lock(dpo_proto_to_fib(path->fp_nh_proto),
2583 fib_forw_chain_type_to_link_type(fct),
2584 path->attached.fp_interface);
2585 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002586 dpo_set(dpo, DPO_ADJACENCY,
Neale Ranns32e1c012016-11-22 17:07:28 +00002587 fib_forw_chain_type_to_dpo_proto(fct),
2588 ai);
2589 adj_unlock(ai);
2590 }
2591 break;
2592 }
2593 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002594 case FIB_PATH_TYPE_INTF_RX:
2595 /*
2596 * Create the adj needed for sending IP multicast traffic
2597 */
Neale Ranns43161a82017-08-12 02:12:00 -07002598 interface_rx_dpo_add_or_lock(fib_forw_chain_type_to_dpo_proto(fct),
2599 path->attached.fp_interface,
2600 dpo);
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002601 break;
Neale Ranns810086d2017-11-05 16:26:46 -08002602 case FIB_PATH_TYPE_UDP_ENCAP:
2603 udp_encap_contribute_forwarding(path->udp_encap.fp_udp_encap_id,
2604 path->fp_nh_proto,
2605 dpo);
2606 break;
Neale Ranns32e1c012016-11-22 17:07:28 +00002607 case FIB_PATH_TYPE_RECEIVE:
2608 case FIB_PATH_TYPE_SPECIAL:
Neale Rannsf068c3e2018-01-03 04:18:48 -08002609 case FIB_PATH_TYPE_DVR:
Neale Ranns32e1c012016-11-22 17:07:28 +00002610 dpo_copy(dpo, &path->fp_dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002611 break;
2612 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002613 }
2614}
2615
2616load_balance_path_t *
2617fib_path_append_nh_for_multipath_hash (fib_node_index_t path_index,
2618 fib_forward_chain_type_t fct,
2619 load_balance_path_t *hash_key)
2620{
2621 load_balance_path_t *mnh;
2622 fib_path_t *path;
2623
2624 path = fib_path_get(path_index);
2625
2626 ASSERT(path);
2627
Neale Rannsac64b712018-10-08 14:51:11 +00002628 vec_add2(hash_key, mnh, 1);
2629
2630 mnh->path_weight = path->fp_weight;
2631 mnh->path_index = path_index;
2632
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002633 if (fib_path_is_resolved(path_index))
2634 {
Neale Rannsac64b712018-10-08 14:51:11 +00002635 fib_path_contribute_forwarding(path_index, fct, &mnh->path_dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002636 }
Neale Rannsac64b712018-10-08 14:51:11 +00002637 else
2638 {
2639 dpo_copy(&mnh->path_dpo,
2640 drop_dpo_get(fib_forw_chain_type_to_dpo_proto(fct)));
2641 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002642 return (hash_key);
2643}
2644
2645int
Neale Rannsf12a83f2017-04-18 09:09:40 -07002646fib_path_is_recursive_constrained (fib_node_index_t path_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002647{
2648 fib_path_t *path;
2649
2650 path = fib_path_get(path_index);
2651
Neale Rannsf12a83f2017-04-18 09:09:40 -07002652 return ((FIB_PATH_TYPE_RECURSIVE == path->fp_type) &&
2653 ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED) ||
2654 (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RESOLVE_HOST)));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002655}
2656
2657int
2658fib_path_is_exclusive (fib_node_index_t path_index)
2659{
2660 fib_path_t *path;
2661
2662 path = fib_path_get(path_index);
2663
2664 return (FIB_PATH_TYPE_EXCLUSIVE == path->fp_type);
2665}
2666
2667int
2668fib_path_is_deag (fib_node_index_t path_index)
2669{
2670 fib_path_t *path;
2671
2672 path = fib_path_get(path_index);
2673
2674 return (FIB_PATH_TYPE_DEAG == path->fp_type);
2675}
2676
2677int
2678fib_path_is_resolved (fib_node_index_t path_index)
2679{
2680 fib_path_t *path;
2681
2682 path = fib_path_get(path_index);
2683
2684 return (dpo_id_is_valid(&path->fp_dpo) &&
2685 (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RESOLVED) &&
2686 !fib_path_is_looped(path_index) &&
2687 !fib_path_is_permanent_drop(path));
2688}
2689
2690int
2691fib_path_is_looped (fib_node_index_t path_index)
2692{
2693 fib_path_t *path;
2694
2695 path = fib_path_get(path_index);
2696
2697 return (path->fp_oper_flags & FIB_PATH_OPER_FLAG_RECURSIVE_LOOP);
2698}
2699
Neale Ranns81424992017-05-18 03:03:22 -07002700fib_path_list_walk_rc_t
Steven01b07122016-11-02 10:40:09 -07002701fib_path_encode (fib_node_index_t path_list_index,
Neale Ranns775f73c2018-12-20 03:01:49 -08002702 fib_node_index_t path_index,
2703 const fib_path_ext_t *path_ext,
Neale Ranns097fa662018-05-01 05:17:55 -07002704 void *args)
Steven01b07122016-11-02 10:40:09 -07002705{
Neale Ranns097fa662018-05-01 05:17:55 -07002706 fib_path_encode_ctx_t *ctx = args;
2707 fib_route_path_t *rpath;
Steven01b07122016-11-02 10:40:09 -07002708 fib_path_t *path;
2709
2710 path = fib_path_get(path_index);
2711 if (!path)
Neale Ranns81424992017-05-18 03:03:22 -07002712 return (FIB_PATH_LIST_WALK_CONTINUE);
Neale Ranns097fa662018-05-01 05:17:55 -07002713
2714 vec_add2(ctx->rpaths, rpath, 1);
2715 rpath->frp_weight = path->fp_weight;
2716 rpath->frp_preference = path->fp_preference;
2717 rpath->frp_proto = path->fp_nh_proto;
2718 rpath->frp_sw_if_index = ~0;
2719 rpath->frp_fib_index = 0;
Neale Rannsa161a6d2017-11-14 08:10:41 -08002720
Steven01b07122016-11-02 10:40:09 -07002721 switch (path->fp_type)
Neale Ranns775f73c2018-12-20 03:01:49 -08002722 {
Steven01b07122016-11-02 10:40:09 -07002723 case FIB_PATH_TYPE_RECEIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07002724 rpath->frp_addr = path->receive.fp_addr;
2725 rpath->frp_sw_if_index = path->receive.fp_interface;
2726 rpath->frp_flags |= FIB_ROUTE_PATH_LOCAL;
Steven01b07122016-11-02 10:40:09 -07002727 break;
2728 case FIB_PATH_TYPE_ATTACHED:
Neale Ranns097fa662018-05-01 05:17:55 -07002729 rpath->frp_sw_if_index = path->attached.fp_interface;
Steven01b07122016-11-02 10:40:09 -07002730 break;
2731 case FIB_PATH_TYPE_ATTACHED_NEXT_HOP:
Neale Ranns097fa662018-05-01 05:17:55 -07002732 rpath->frp_sw_if_index = path->attached_next_hop.fp_interface;
2733 rpath->frp_addr = path->attached_next_hop.fp_nh;
Steven01b07122016-11-02 10:40:09 -07002734 break;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002735 case FIB_PATH_TYPE_BIER_FMASK:
Neale Ranns097fa662018-05-01 05:17:55 -07002736 rpath->frp_bier_fmask = path->bier_fmask.fp_bier_fmask;
Neale Rannsd792d9c2017-10-21 10:53:20 -07002737 break;
Steven01b07122016-11-02 10:40:09 -07002738 case FIB_PATH_TYPE_SPECIAL:
2739 break;
2740 case FIB_PATH_TYPE_DEAG:
Neale Ranns097fa662018-05-01 05:17:55 -07002741 rpath->frp_fib_index = path->deag.fp_tbl_id;
Neale Ranns775f73c2018-12-20 03:01:49 -08002742 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_RPF_ID)
2743 {
Neale Ranns097fa662018-05-01 05:17:55 -07002744 rpath->frp_flags |= FIB_ROUTE_PATH_RPF_ID;
Neale Ranns775f73c2018-12-20 03:01:49 -08002745 }
Steven01b07122016-11-02 10:40:09 -07002746 break;
2747 case FIB_PATH_TYPE_RECURSIVE:
Neale Ranns097fa662018-05-01 05:17:55 -07002748 rpath->frp_addr = path->recursive.fp_nh.fp_ip;
2749 rpath->frp_fib_index = path->recursive.fp_tbl_id;
Steven01b07122016-11-02 10:40:09 -07002750 break;
Neale Ranns81458422018-03-12 06:59:36 -07002751 case FIB_PATH_TYPE_DVR:
Neale Ranns097fa662018-05-01 05:17:55 -07002752 rpath->frp_sw_if_index = path->dvr.fp_interface;
2753 rpath->frp_flags |= FIB_ROUTE_PATH_DVR;
Neale Ranns81458422018-03-12 06:59:36 -07002754 break;
2755 case FIB_PATH_TYPE_UDP_ENCAP:
Neale Ranns097fa662018-05-01 05:17:55 -07002756 rpath->frp_udp_encap_id = path->udp_encap.fp_udp_encap_id;
2757 rpath->frp_flags |= FIB_ROUTE_PATH_UDP_ENCAP;
Neale Ranns81458422018-03-12 06:59:36 -07002758 break;
Neale Ranns775f73c2018-12-20 03:01:49 -08002759 case FIB_PATH_TYPE_INTF_RX:
Neale Ranns097fa662018-05-01 05:17:55 -07002760 rpath->frp_sw_if_index = path->receive.fp_interface;
2761 rpath->frp_flags |= FIB_ROUTE_PATH_INTF_RX;
Neale Ranns775f73c2018-12-20 03:01:49 -08002762 break;
Neale Ranns097fa662018-05-01 05:17:55 -07002763 case FIB_PATH_TYPE_EXCLUSIVE:
2764 rpath->frp_flags |= FIB_ROUTE_PATH_EXCLUSIVE;
Steven01b07122016-11-02 10:40:09 -07002765 default:
2766 break;
Neale Ranns775f73c2018-12-20 03:01:49 -08002767 }
2768
2769 if (path_ext && path_ext->fpe_type == FIB_PATH_EXT_MPLS)
2770 {
Neale Ranns097fa662018-05-01 05:17:55 -07002771 rpath->frp_label_stack = path_ext->fpe_path.frp_label_stack;
Neale Ranns775f73c2018-12-20 03:01:49 -08002772 }
Neale Rannsa161a6d2017-11-14 08:10:41 -08002773
Neale Ranns097fa662018-05-01 05:17:55 -07002774 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP)
2775 rpath->frp_flags |= FIB_ROUTE_PATH_DROP;
2776 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH)
2777 rpath->frp_flags |= FIB_ROUTE_PATH_ICMP_UNREACH;
2778 if (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT)
2779 rpath->frp_flags |= FIB_ROUTE_PATH_ICMP_PROHIBIT;
2780
Neale Ranns81424992017-05-18 03:03:22 -07002781 return (FIB_PATH_LIST_WALK_CONTINUE);
Steven01b07122016-11-02 10:40:09 -07002782}
2783
Neale Rannsda78f952017-05-24 09:15:43 -07002784dpo_proto_t
Neale Rannsad422ed2016-11-02 14:20:04 +00002785fib_path_get_proto (fib_node_index_t path_index)
2786{
2787 fib_path_t *path;
2788
2789 path = fib_path_get(path_index);
2790
2791 return (path->fp_nh_proto);
2792}
2793
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002794void
2795fib_path_module_init (void)
2796{
2797 fib_node_register_type (FIB_NODE_TYPE_PATH, &fib_path_vft);
Neale Ranns710071b2018-09-24 12:36:26 +00002798 fib_path_logger = vlib_log_register_class ("fib", "path");
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002799}
2800
2801static clib_error_t *
2802show_fib_path_command (vlib_main_t * vm,
2803 unformat_input_t * input,
2804 vlib_cli_command_t * cmd)
2805{
Neale Ranns33a7dd52016-10-07 15:14:33 +01002806 fib_node_index_t pi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002807 fib_path_t *path;
2808
Neale Ranns33a7dd52016-10-07 15:14:33 +01002809 if (unformat (input, "%d", &pi))
2810 {
2811 /*
2812 * show one in detail
2813 */
2814 if (!pool_is_free_index(fib_path_pool, pi))
2815 {
2816 path = fib_path_get(pi);
Neale Ranns710071b2018-09-24 12:36:26 +00002817 u8 *s = format(NULL, "%U", format_fib_path, pi, 1,
2818 FIB_PATH_FORMAT_FLAGS_NONE);
Neale Ranns521a8d72018-12-06 13:46:49 +00002819 s = format(s, "\n children:");
Neale Ranns33a7dd52016-10-07 15:14:33 +01002820 s = fib_node_children_format(path->fp_node.fn_children, s);
2821 vlib_cli_output (vm, "%s", s);
2822 vec_free(s);
2823 }
2824 else
2825 {
2826 vlib_cli_output (vm, "path %d invalid", pi);
2827 }
2828 }
2829 else
2830 {
2831 vlib_cli_output (vm, "FIB Paths");
Florin Coras119dd3a2017-12-14 11:34:37 -08002832 pool_foreach_index (pi, fib_path_pool,
Neale Ranns33a7dd52016-10-07 15:14:33 +01002833 ({
Neale Ranns710071b2018-09-24 12:36:26 +00002834 vlib_cli_output (vm, "%U", format_fib_path, pi, 0,
2835 FIB_PATH_FORMAT_FLAGS_NONE);
Neale Ranns33a7dd52016-10-07 15:14:33 +01002836 }));
2837 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002838
2839 return (NULL);
2840}
2841
2842VLIB_CLI_COMMAND (show_fib_path, static) = {
2843 .path = "show fib paths",
2844 .function = show_fib_path_command,
2845 .short_help = "show fib paths",
2846};