FD.io VPP  v18.07.1-19-g511ce25
Vector Packet Processing
fib_types.h
Go to the documentation of this file.
1  /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef __FIB_TYPES_H__
17 #define __FIB_TYPES_H__
18 
19 #include <stdbool.h>
20 #include <vlib/vlib.h>
21 #include <vnet/ip/ip6_packet.h>
22 #include <vnet/mpls/packet.h>
23 #include <vnet/dpo/dpo.h>
24 #include <vnet/bier/bier_types.h>
25 
26 /**
27  * A typedef of a node index.
28  * we make this typedef so the code becomes easier for a human to parse.
29  */
31 #define FIB_NODE_INDEX_INVALID ((fib_node_index_t)(~0))
32 
33 /**
34  * Protocol Type. packed so it consumes a u8 only
35  */
36 typedef enum fib_protocol_t_ {
40 } __attribute__ ((packed)) fib_protocol_t;
41 
42 #define FIB_PROTOCOLS { \
43  [FIB_PROTOCOL_IP4] = "ipv4", \
44  [FIB_PROTOCOL_IP6] = "ipv6", \
45  [FIB_PROTOCOL_MPLS] = "MPLS", \
46 }
47 
48 /**
49  * Definition outside of enum so it does not need to be included in non-defaulted
50  * switch statements
51  */
52 #define FIB_PROTOCOL_MAX (FIB_PROTOCOL_MPLS + 1)
53 
54 /**
55  * Definition outside of enum so it does not need to be included in non-defaulted
56  * switch statements
57  */
58 #define FIB_PROTOCOL_IP_MAX (FIB_PROTOCOL_IP6 + 1)
59 
60 /**
61  * Not part of the enum so it does not have to be handled in switch statements
62  */
63 #define FIB_PROTOCOL_NONE (FIB_PROTOCOL_MAX+1)
64 
65 #define FOR_EACH_FIB_PROTOCOL(_item) \
66  for (_item = FIB_PROTOCOL_IP4; \
67  _item <= FIB_PROTOCOL_MPLS; \
68  _item++)
69 
70 #define FOR_EACH_FIB_IP_PROTOCOL(_item) \
71  for (_item = FIB_PROTOCOL_IP4; \
72  _item <= FIB_PROTOCOL_IP6; \
73  _item++)
74 
75 /**
76  * @brief Convert from boolean is_ip6 to FIB protocol.
77  * Drop MPLS on the floor in favor of IPv4.
78  */
79 static inline fib_protocol_t
80 fib_ip_proto(bool is_ip6)
81 {
82  return (is_ip6) ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4;
83 }
84 
85 /**
86  * @brief Convert from a protocol to a link type
87  */
88 vnet_link_t fib_proto_to_link (fib_protocol_t proto);
89 
90 /**
91  * FIB output chain type. When a child object requests a forwarding contribution
92  * from a parent, it does so for a particular scenario. This enumererates those
93  * sceanrios
94  */
96  /**
97  * Contribute an object that is to be used to forward IP4 packets
98  */
100  /**
101  * Contribute an object that is to be used to forward IP6 packets
102  */
104  /**
105  * Contribute an object that is to be used to forward non-end-of-stack
106  * MPLS packets
107  */
109  /**
110  * Contribute an object that is to be used to forward BIER packets.
111  */
113  /**
114  * Contribute an object that is to be used to forward end-of-stack
115  * MPLS packets. This is a convenient ID for clients. A real EOS chain
116  * must be pay-load protocol specific. This
117  * option is converted into one of the other three internally.
118  */
120  /**
121  * Contribute an object that is to be used to forward IP4 packets
122  */
124  /**
125  * Contribute an object that is to be used to forward IP6 packets
126  */
128  /**
129  * Contribute an object that is to be used to forward Ethernet packets.
130  */
132  /**
133  * Contribute an object that is to be used to forward NSH packets.
134  * This is last in the list since it is not valid for many FIB objects,
135  * and thus their array of per-chain-type DPOs can be sized smaller.
136  */
138 } __attribute__ ((packed)) fib_forward_chain_type_t;
139 
140 #define FIB_FORW_CHAINS { \
141  [FIB_FORW_CHAIN_TYPE_ETHERNET] = "ethernet", \
142  [FIB_FORW_CHAIN_TYPE_BIER] = "bier", \
143  [FIB_FORW_CHAIN_TYPE_UNICAST_IP4] = "unicast-ip4", \
144  [FIB_FORW_CHAIN_TYPE_UNICAST_IP6] = "unicast-ip6", \
145  [FIB_FORW_CHAIN_TYPE_MCAST_IP4] = "multicast-ip4", \
146  [FIB_FORW_CHAIN_TYPE_MCAST_IP6] = "multicast-ip6", \
147  [FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS] = "mpls-neos", \
148  [FIB_FORW_CHAIN_TYPE_MPLS_EOS] = "mpls-eos", \
149  [FIB_FORW_CHAIN_TYPE_NSH] = "nsh", \
150 }
151 
152 #define FIB_FORW_CHAIN_NUM (FIB_FORW_CHAIN_TYPE_NSH+1)
153 #define FIB_FORW_CHAIN_MPLS_NUM (FIB_FORW_CHAIN_TYPE_MPLS_EOS+1)
154 
155 #define FOR_EACH_FIB_FORW_CHAIN(_item) \
156  for (_item = FIB_FORW_CHAIN_TYPE_UNICAST_IP4; \
157  _item <= FIB_FORW_CHAIN_TYPE_NSH; \
158  _item++)
159 
160 #define FOR_EACH_FIB_FORW_MPLS_CHAIN(_item) \
161  for (_item = FIB_FORW_CHAIN_TYPE_UNICAST_IP4; \
162  _item <= FIB_FORW_CHAIN_TYPE_MPLS_EOS; \
163  _item++)
164 
165 /**
166  * @brief Convert from a chain type to the adjacency's link type
167  */
168 extern vnet_link_t fib_forw_chain_type_to_link_type(fib_forward_chain_type_t fct);
169 
170 /**
171  * @brief Convert from a adjacency's link type to chain type
172  */
173 extern fib_forward_chain_type_t fib_forw_chain_type_from_link_type(vnet_link_t lt);
174 
175 /**
176  * @brief Convert from a payload-protocol to a chain type.
177  */
178 extern fib_forward_chain_type_t fib_forw_chain_type_from_dpo_proto(dpo_proto_t proto);
179 
180 /**
181  * @brief Convert from a fib-protocol to a chain type.
182  */
183 extern fib_forward_chain_type_t fib_forw_chain_type_from_fib_proto(fib_protocol_t proto);
184 
185 /**
186  * @brief Convert from a chain type to the DPO proto it will install
187  */
188 extern dpo_proto_t fib_forw_chain_type_to_dpo_proto(fib_forward_chain_type_t fct);
189 
190 /**
191  * Aggregrate type for a prefix
192  */
193 typedef struct fib_prefix_t_ {
194  /**
195  * The mask length
196  */
198 
199  /**
200  * protocol type
201  */
202  fib_protocol_t fp_proto;
203 
204  /**
205  * Pad to keep the address 4 byte aligned
206  */
207  u8 ___fp___pad;
208 
209  union {
210  /**
211  * The address type is not deriveable from the fp_addr member.
212  * If it's v4, then the first 3 u32s of the address will be 0.
213  * v6 addresses (even v4 mapped ones) have at least 2 u32s assigned
214  * to non-zero values. true. but when it's all zero, one cannot decide.
215  */
216  ip46_address_t fp_addr;
217 
218  struct {
221  /**
222  * This protocol determines the payload protocol of packets
223  * that will be forwarded by this entry once the label is popped.
224  * For a non-eos entry it will be MPLS.
225  */
227  };
228  };
229 } fib_prefix_t;
230 
232  "FIB Prefix's address is 4 byte aligned.");
233 
234 /**
235  * \brief Compare two prefixes for equality
236  */
237 extern int fib_prefix_cmp(const fib_prefix_t *p1,
238  const fib_prefix_t *p2);
239 
240 /**
241  * \brief Compare two prefixes for covering relationship
242  *
243  * \return non-zero if the first prefix is a cover for the second
244  */
245 extern int fib_prefix_is_cover(const fib_prefix_t *p1,
246  const fib_prefix_t *p2);
247 
248 /**
249  * \brief Return true is the prefix is a host prefix
250  */
251 extern int fib_prefix_is_host(const fib_prefix_t *p);
252 
253 
254 /**
255  * \brief Host prefix from ip
256  */
257 extern void fib_prefix_from_ip46_addr (const ip46_address_t *addr,
258  fib_prefix_t *pfx);
259 
260 extern u8 * format_fib_prefix(u8 * s, va_list * args);
261 extern u8 * format_fib_forw_chain_type(u8 * s, va_list * args);
262 
263 extern dpo_proto_t fib_proto_to_dpo(fib_protocol_t fib_proto);
264 extern fib_protocol_t dpo_proto_to_fib(dpo_proto_t dpo_proto);
265 
266 /**
267  * Convert from BIER next-hop proto to FIB proto
268  */
269 extern fib_protocol_t bier_hdr_proto_to_fib(bier_hdr_proto_id_t bproto);
270 
271 /**
272  * Enurmeration of special path/entry types
273  */
274 typedef enum fib_special_type_t_ {
275  /**
276  * Marker. Add new types after this one.
277  */
279  /**
280  * Local/for-us paths
281  */
283  /**
284  * drop paths
285  */
287  /**
288  * Marker. Add new types before this one, then update it.
289  */
291 } __attribute__ ((packed)) fib_special_type_t;
292 
293 /**
294  * The maximum number of types
295  */
296 #define FIB_SPEICAL_TYPE_MAX (FIB_SPEICAL_TYPE_LAST + 1)
297 
298 #define FOR_EACH_FIB_SPEICAL_TYPE(_item) \
299  for (_item = FIB_TYPE_SPEICAL_FIRST; \
300  _item <= FIB_SPEICAL_TYPE_LAST; _item++)
301 
302 extern u8 * format_fib_protocol(u8 * s, va_list *ap);
303 extern u8 * format_vnet_link(u8 *s, va_list *ap);
304 
305 /**
306  * Path flags from the control plane
307  */
309 {
311  /**
312  * Recursion constraint of via a host prefix
313  */
315  /**
316  * Recursion constraint of via an attahced prefix
317  */
319  /**
320  * A for-us/local path
321  */
323  /**
324  * Attached path
325  */
327  /**
328  * A Drop path - resolve the path on the drop DPO
329  */
331  /**
332  * Don't resolve the path, use the DPO the client provides
333  */
335  /**
336  * A path that result in received traffic being recieved/recirculated
337  * so that it appears to have arrived on the new interface
338  */
340  /**
341  * A local path with a RPF-ID => multicast traffic
342  */
344  /**
345  * A deag path using the packet's source not destination address.
346  */
348  /**
349  * A path via a UDP encap object.
350  */
352  /**
353  * A path that resolves via a BIER F-Mask
354  */
356  /**
357  * A path that resolves via a BIER [ECMP] Table
358  */
360  /**
361  * A path that resolves via a BIER impostion object
362  */
364  /**
365  * A path that resolves via another table
366  */
367  FIB_ROUTE_PATH_DEAG = (1 << 13),
368  /**
369  * A path that resolves via a DVR DPO
370  */
371  FIB_ROUTE_PATH_DVR = (1 << 14),
373 
374 /**
375  * An RPF-ID is numerical value that is used RPF validate. An entry
376  * has-a RPF-ID, when a packet egress from (e.g. an LSP) it gains an
377  * RPF-ID, these two are compared for the RPF check.
378  * This replaces the interfce based chack (since the LSP has no associated
379  * interface.
380  */
382 
383 #define MFIB_RPF_ID_NONE (0)
384 
385 /**
386  * MPLS LSP mode - only valid at the head and tail
387  */
389 {
390  /**
391  * Pipe Mode - the default.
392  * TTL and DSCP markings are not carried between the layers
393  */
395  /**
396  * Uniform mode.
397  * TTL and DSCP are copied between the layers
398  */
400 } __attribute__((packed)) fib_mpls_lsp_mode_t;
401 
402 #define FIB_MPLS_LSP_MODES { \
403  [FIB_MPLS_LSP_MODE_PIPE] = "pipe", \
404  [FIB_MPLS_LSP_MODE_UNIFORM] = "uniform", \
405 }
406 
407 /**
408  * Format an LSP mode type
409  */
410 extern u8 * format_fib_mpls_lsp_mode(u8 *s, va_list *ap);
411 
412 /**
413  * Configuration for each label value in the output-stack
414  */
415 typedef struct fib_mpls_label_t_
416 {
417  /**
418  * The label value
419  */
421 
422  /**
423  * The LSP mode
424  */
425  fib_mpls_lsp_mode_t fml_mode;
426 
427  /**
428  * TTL. valid only at imposition.
429  */
431 
432  /**
433  * EXP bits; valid only at imposition.
434  */
437 
438 /**
439  * Format an MPLS label
440  */
441 extern u8 * format_fib_mpls_label(u8 *s, va_list *ap);
442 
443 /**
444  * @brief
445  * A representation of a path as described by a route producer.
446  * These paramenters will determine the path 'type', of which there are:
447  * 1) Attached-next-hop:
448  * a single peer on a link.
449  * It is 'attached' because it is in the same sub-net as the router, on a link
450  * directly connected to the route.
451  * It is 'next=hop' since the next-hop address of the peer is known.
452  * 2) Attached:
453  * the next-hop is not known. but we can ARP for it.
454  * 3) Recursive.
455  * The next-hop is known but the interface is not. So to find the adj to use
456  * we must recursively resolve the next-hop.
457  * 3) deaggregate (deag)
458  * A further lookup is required.
459  */
460 typedef struct fib_route_path_t_ {
461  /**
462  * The protocol of the address below. We need this since the all
463  * zeros address is ambiguous.
464  */
466 
467  union {
468  struct {
469  union {
470  /**
471  * The next-hop address.
472  * Will be NULL for attached paths.
473  * Will be all zeros for attached-next-hop paths on a p2p interface
474  * Will be all zeros for a deag path.
475  */
476  ip46_address_t frp_addr;
477 
478  struct {
479  /**
480  * The MPLS local Label to reursively resolve through.
481  * This is valid when the path type is MPLS.
482  */
484  /**
485  * EOS bit for the resolving label
486  */
488  };
489  };
490  union {
491  /**
492  * The interface.
493  * Will be invalid for recursive paths.
494  */
496  /**
497  * The RPF-ID
498  */
499  fib_rpf_id_t frp_rpf_id;
500  };
501  union {
502  /**
503  * The FIB index to lookup the nexthop
504  * Only valid for recursive paths.
505  */
507  /**
508  * The BIER table to resolve the fmask in
509  */
511  };
512  /**
513  * The outgoing MPLS label Stack. NULL implies no label.
514  */
516  };
517  /**
518  * A path that resolves via a BIER Table.
519  * This would be for a MPLS label at a BIER midpoint or tail
520  */
522 
523  /**
524  * A path via a BIER imposition object.
525  * Present in an mfib path list
526  */
528 
529  /**
530  * UDP encap ID
531  */
533 
534  /**
535  * Resolving via a BIER Fmask
536  */
538  };
539  /**
540  * [un]equal cost path weight
541  */
543  /**
544  * A path preference. 0 is the best.
545  * Only paths of the best preference, that are 'up', are considered
546  * for forwarding.
547  */
549  /**
550  * flags on the path
551  */
554 
555 /**
556  * Unformat a fib_route_path_t from CLI input
557  */
558 extern uword unformat_fib_route_path(unformat_input_t * input, va_list * args);
559 
560 /**
561  * A help string to list the FIB path options
562  */
563 #define FIB_ROUTE_PATH_HELP "[next-hop-address] [next-hop-interface] [next-hop-table <value>] [weight <value>] [preference <value>] [udp-encap-id <value>] [ip4-lookup-in-table <value>] [ip6-lookup-in-table <value>] [mpls-lookup-in-table <value>] [resolve-via-host] [resolve-via-connected] [rx-ip4 <interface>] [out-labels <value value value>]"
564 
565 /**
566  * @brief
567  * A representation of a fib path for fib_path_encode to convey the information to the caller
568  */
569 typedef struct fib_route_path_encode_t_ {
573 
574 /**
575  * return code to control pat-hlist walk
576  */
578 {
582 
583 /**
584  * A list of path-extensions
585  */
586 typedef struct fib_path_ext_list_t_
587 {
590 
591 #endif
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:202
Contribute an object that is to be used to forward BIER packets.
Definition: fib_types.h:112
Contribute an object that is to be used to forward IP6 packets.
Definition: fib_types.h:127
ip46_address_t frp_addr
The next-hop address.
Definition: fib_types.h:476
A path that resolves via a DVR DPO.
Definition: fib_types.h:371
Contribute an object that is to be used to forward IP6 packets.
Definition: fib_types.h:103
Pipe Mode - the default.
Definition: fib_types.h:394
A representation of a fib path for fib_path_encode to convey the information to the caller...
Definition: fib_types.h:569
mpls_eos_bit_t frp_eos
EOS bit for the resolving label.
Definition: fib_types.h:487
A representation of a path as described by a route producer.
Definition: fib_types.h:460
A Drop path - resolve the path on the drop DPO.
Definition: fib_types.h:330
fib_forward_chain_type_t fib_forw_chain_type_from_fib_proto(fib_protocol_t proto)
Convert from a fib-protocol to a chain type.
Definition: fib_types.c:309
dpo_proto_t fib_forw_chain_type_to_dpo_proto(fib_forward_chain_type_t fct)
Convert from a chain type to the DPO proto it will install.
Definition: fib_types.c:376
Local/for-us paths.
Definition: fib_types.h:282
u8 * format_vnet_link(u8 *s, va_list *ap)
Definition: fib_types.c:40
A path that resolves via a BIER impostion object.
Definition: fib_types.h:363
index_t frp_bier_imp
A path via a BIER imposition object.
Definition: fib_types.h:527
vnet_link_t fib_forw_chain_type_to_link_type(fib_forward_chain_type_t fct)
Convert from a chain type to the adjacency&#39;s link type.
Definition: fib_types.c:325
u32 mpls_label_t
A label value only, i.e.
Definition: packet.h:24
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
u8 * format_fib_mpls_lsp_mode(u8 *s, va_list *ap)
Format an LSP mode type.
Definition: fib_types.c:56
A path that resolves via a BIER [ECMP] Table.
Definition: fib_types.h:359
struct fib_path_ext_t_ * fpel_exts
Definition: fib_types.h:588
Contribute an object that is to be used to forward IP4 packets.
Definition: fib_types.h:99
#define STRUCT_OFFSET_OF(t, f)
Definition: clib.h:62
fib_forward_chain_type_t fib_forw_chain_type_from_link_type(vnet_link_t lt)
Convert from a adjacency&#39;s link type to chain type.
Definition: fib_types.c:353
dpo_proto_t frp_proto
The protocol of the address below.
Definition: fib_types.h:465
bier_table_id_t frp_bier_tbl
A path that resolves via a BIER Table.
Definition: fib_types.h:521
A path that result in received traffic being recieved/recirculated so that it appears to have arrived...
Definition: fib_types.h:339
The ID of a table.
Definition: bier_types.h:394
vhost_vring_addr_t addr
Definition: vhost_user.h:116
unsigned char u8
Definition: types.h:56
fib_rpf_id_t frp_rpf_id
The RPF-ID.
Definition: fib_types.h:499
A local path with a RPF-ID => multicast traffic.
Definition: fib_types.h:343
dpo_proto_t fp_payload_proto
This protocol determines the payload protocol of packets that will be forwarded by this entry once th...
Definition: fib_types.h:226
fib_mpls_lsp_mode_t_
MPLS LSP mode - only valid at the head and tail.
Definition: fib_types.h:388
u32 frp_sw_if_index
The interface.
Definition: fib_types.h:495
fib_special_type_t_
Enurmeration of special path/entry types.
Definition: fib_types.h:274
Recursion constraint of via a host prefix.
Definition: fib_types.h:314
Aggregrate type for a prefix.
Definition: fib_types.h:193
A path via a UDP encap object.
Definition: fib_types.h:351
enum fib_route_path_flags_t_ fib_route_path_flags_t
Path flags from the control plane.
unsigned int u32
Definition: types.h:88
Contribute an object that is to be used to forward Ethernet packets.
Definition: fib_types.h:131
enum dpo_proto_t_ dpo_proto_t
Data path protocol.
u16 fp_len
The mask length.
Definition: fib_types.h:197
STATIC_ASSERT(STRUCT_OFFSET_OF(fib_prefix_t, fp_addr)==4,"FIB Prefix's address is 4 byte aligned.")
index_t frp_bier_fmask
Resolving via a BIER Fmask.
Definition: fib_types.h:537
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:168
Contribute an object that is to be used to forward end-of-stack MPLS packets.
Definition: fib_types.h:119
fib_protocol_t_
Protocol Type.
Definition: fib_types.h:36
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:216
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
u8 * format_fib_prefix(u8 *s, va_list *args)
Definition: fib_types.c:177
int fib_prefix_is_cover(const fib_prefix_t *p1, const fib_prefix_t *p2)
Compare two prefixes for covering relationship.
Definition: fib_types.c:140
Configuration for each label value in the output-stack.
Definition: fib_types.h:415
fib_mpls_label_t * frp_label_stack
The outgoing MPLS label Stack.
Definition: fib_types.h:515
Recursion constraint of via an attahced prefix.
Definition: fib_types.h:318
struct fib_route_path_t_ fib_route_path_t
A representation of a path as described by a route producer.
A list of path-extensions.
Definition: fib_types.h:586
fib_protocol_t dpo_proto_to_fib(dpo_proto_t dpo_proto)
Definition: fib_types.c:253
fib_path_list_walk_rc_t_
return code to control pat-hlist walk
Definition: fib_types.h:577
fib_mpls_lsp_mode_t fml_mode
The LSP mode.
Definition: fib_types.h:425
uword unformat_fib_route_path(unformat_input_t *input, va_list *args)
Unformat a fib_route_path_t from CLI input.
Definition: fib_types.c:400
struct fib_path_ext_list_t_ fib_path_ext_list_t
A list of path-extensions.
fib_forward_chain_type_t fib_forw_chain_type_from_dpo_proto(dpo_proto_t proto)
Convert from a payload-protocol to a chain type.
Definition: fib_types.c:287
struct fib_route_path_encode_t_ fib_route_path_encode_t
A representation of a fib path for fib_path_encode to convey the information to the caller...
struct fib_prefix_t_ fib_prefix_t
Aggregrate type for a prefix.
Contribute an object that is to be used to forward NSH packets.
Definition: fib_types.h:137
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
Don&#39;t resolve the path, use the DPO the client provides.
Definition: fib_types.h:334
mpls_label_t fml_value
The label value.
Definition: fib_types.h:420
enum bier_hdr_proto_id_t_ bier_hdr_proto_id_t
BIER header protocol payload types.
u8 * format_fib_mpls_label(u8 *s, va_list *ap)
Format an MPLS label.
Definition: fib_types.c:64
mpls_label_t fp_label
Definition: fib_types.h:219
u32 fib_rpf_id_t
An RPF-ID is numerical value that is used RPF validate.
Definition: fib_types.h:381
u8 * format_fib_protocol(u8 *s, va_list *ap)
Definition: fib_types.c:32
struct fib_mpls_label_t_ fib_mpls_label_t
Configuration for each label value in the output-stack.
vnet_link_t fib_proto_to_link(fib_protocol_t proto)
Convert from a protocol to a link type.
Definition: fib_types.c:271
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
u8 frp_preference
A path preference.
Definition: fib_types.h:548
A deag path using the packet&#39;s source not destination address.
Definition: fib_types.h:347
fib_route_path_flags_t frp_flags
flags on the path
Definition: fib_types.h:552
A path that resolves via a BIER F-Mask.
Definition: fib_types.h:355
int fib_prefix_cmp(const fib_prefix_t *p1, const fib_prefix_t *p2)
Compare two prefixes for equality.
Definition: fib_types.c:105
A path that resolves via another table.
Definition: fib_types.h:367
void fib_prefix_from_ip46_addr(const ip46_address_t *addr, fib_prefix_t *pfx)
Host prefix from ip.
Definition: fib_types.c:80
u8 * format_fib_forw_chain_type(u8 *s, va_list *args)
Definition: fib_types.c:48
mpls_label_t frp_local_label
The MPLS local Label to reursively resolve through.
Definition: fib_types.h:483
dpo_proto_t fib_proto_to_dpo(fib_protocol_t fib_proto)
Definition: fib_types.c:237
enum fib_path_list_walk_rc_t_ fib_path_list_walk_rc_t
return code to control pat-hlist walk
A for-us/local path.
Definition: fib_types.h:322
static fib_protocol_t fib_ip_proto(bool is_ip6)
Convert from boolean is_ip6 to FIB protocol.
Definition: fib_types.h:80
u64 uword
Definition: types.h:112
u32 frp_bier_fib_index
The BIER table to resolve the fmask in.
Definition: fib_types.h:510
fib_protocol_t bier_hdr_proto_to_fib(bier_hdr_proto_id_t bproto)
Convert from BIER next-hop proto to FIB proto.
A path extension is a per-entry addition to the forwarding information when packets are sent for that...
Definition: fib_path_ext.h:98
fib_route_path_t rpath
Definition: fib_types.h:570
u8 fml_exp
EXP bits; valid only at imposition.
Definition: fib_types.h:435
int fib_prefix_is_host(const fib_prefix_t *p)
Return true is the prefix is a host prefix.
Definition: fib_types.c:162
Contribute an object that is to be used to forward non-end-of-stack MPLS packets. ...
Definition: fib_types.h:108
Attached path.
Definition: fib_types.h:326
fib_route_path_flags_t_
Path flags from the control plane.
Definition: fib_types.h:308
u8 frp_weight
[un]equal cost path weight
Definition: fib_types.h:542
u32 frp_udp_encap_id
UDP encap ID.
Definition: fib_types.h:532
Contribute an object that is to be used to forward IP4 packets.
Definition: fib_types.h:123
u32 frp_fib_index
The FIB index to lookup the nexthop Only valid for recursive paths.
Definition: fib_types.h:506
fib_forward_chain_type_t_
FIB output chain type.
Definition: fib_types.h:95
mpls_eos_bit_t fp_eos
Definition: fib_types.h:220
enum mpls_eos_bit_t_ mpls_eos_bit_t