blob: 76f876d8f10f44963264233342525d492a1faea9 [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/**
17 * Given a route of the form;
18 * q.r.s.t/Y
19 * via <interface> <next-hop>
20 *
21 * The prefix is: q.r.s.t./Y
22 * the path is: 'via <interface> <next-hop>
23 *
24 * The path is the description of where to send the traffic, and the
25 * the prefix is a description of which traffic to send.
26 * It is the aim of the FIB to resolve the path, i.e. to find the corresponding
27 * adjacency to match the path's description.
28 */
29
30#ifndef __FIB_PATH_H__
31#define __FIB_PATH_H__
32
33#include <vnet/ip/ip.h>
34#include <vnet/dpo/load_balance.h>
35
36#include <vnet/fib/fib_types.h>
37#include <vnet/adj/adj_types.h>
Neale Rannsd792d9c2017-10-21 10:53:20 -070038#include <vnet/bier/bier_types.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010039
40/**
41 * Enurmeration of path configuration attributes
42 */
43typedef enum fib_path_cfg_attribute_t_ {
44 /**
45 * Marker. Add new types after this one.
46 */
47 FIB_PATH_CFG_ATTRIBUTE_FIRST = 0,
48 /**
49 * The path is forced to a drop, whatever the next-hop info says.
50 * something somewhere knows better...
51 */
52 FIB_PATH_CFG_ATTRIBUTE_DROP = FIB_PATH_CFG_ATTRIBUTE_FIRST,
53 /**
54 * The path uses an adj that is exclusive. I.e. it is known only by
55 * the source of the route.
56 */
57 FIB_PATH_CFG_ATTRIBUTE_EXCLUSIVE,
58 /**
59 * Recursion constraint via host
60 */
61 FIB_PATH_CFG_ATTRIBUTE_RESOLVE_HOST,
62 /**
63 * Recursion constraint via attached
64 */
65 FIB_PATH_CFG_ATTRIBUTE_RESOLVE_ATTACHED,
66 /**
Neale Ranns4b919a52017-03-11 05:55:21 -080067 * The path is attached
68 */
69 FIB_PATH_CFG_ATTRIBUTE_ATTACHED,
70 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010071 * The path is a for-us path
72 */
Neale Ranns0f26c5a2017-03-01 15:12:11 -080073 FIB_PATH_CFG_ATTRIBUTE_INTF_RX,
74 /**
75 * The path is a deag with rpf-id
76 */
77 FIB_PATH_CFG_ATTRIBUTE_RPF_ID,
78 /**
79 * The path is an interface recieve
80 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +010081 FIB_PATH_CFG_ATTRIBUTE_LOCAL,
82 /**
Neale Ranns097fa662018-05-01 05:17:55 -070083 * The path reolves via an ICMP unreachable
84 */
85 FIB_PATH_CFG_ATTRIBUTE_ICMP_UNREACH,
86 /**
87 * The path reolves via an ICMP prohibit
88 */
89 FIB_PATH_CFG_ATTRIBUTE_ICMP_PROHIBIT,
90 /**
91 * The path reolves via a classify
92 */
93 FIB_PATH_CFG_ATTRIBUTE_CLASSIFY,
94 /**
Neale Ranns054c03a2017-10-13 05:15:07 -070095 * The deag path does a source lookup
Neale Rannsda78f952017-05-24 09:15:43 -070096 */
Neale Ranns054c03a2017-10-13 05:15:07 -070097 FIB_PATH_CFG_ATTRIBUTE_DEAG_SRC,
Neale Rannsda78f952017-05-24 09:15:43 -070098 /**
Neale Ranns1dbcf302019-07-19 11:44:53 +000099 * The path pops a Psuedo Wire Control Word
100 */
101 FIB_PATH_CFG_ATTRIBUTE_POP_PW_CW,
102 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100103 * Marker. Add new types before this one, then update it.
104 */
Neale Ranns1dbcf302019-07-19 11:44:53 +0000105 FIB_PATH_CFG_ATTRIBUTE_LAST = FIB_PATH_CFG_ATTRIBUTE_POP_PW_CW,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100106} __attribute__ ((packed)) fib_path_cfg_attribute_t;
107
108/**
109 * The maximum number of path attributes
110 */
111#define FIB_PATH_CFG_ATTRIBUTE_MAX (FIB_PATH_CFG_ATTRIBUTE_LAST + 1)
112
113#define FIB_PATH_CFG_ATTRIBUTES { \
114 [FIB_PATH_CFG_ATTRIBUTE_DROP] = "drop", \
115 [FIB_PATH_CFG_ATTRIBUTE_EXCLUSIVE] = "exclusive", \
116 [FIB_PATH_CFG_ATTRIBUTE_RESOLVE_HOST] = "resolve-host", \
117 [FIB_PATH_CFG_ATTRIBUTE_RESOLVE_ATTACHED] = "resolve-attached", \
118 [FIB_PATH_CFG_ATTRIBUTE_LOCAL] = "local", \
Neale Ranns097fa662018-05-01 05:17:55 -0700119 [FIB_PATH_CFG_ATTRIBUTE_ICMP_UNREACH] = "icmp-unreach", \
120 [FIB_PATH_CFG_ATTRIBUTE_ICMP_PROHIBIT] = "icmp-prohibit", \
121 [FIB_PATH_CFG_ATTRIBUTE_CLASSIFY] = "classify", \
Neale Ranns4b919a52017-03-11 05:55:21 -0800122 [FIB_PATH_CFG_ATTRIBUTE_ATTACHED] = "attached", \
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800123 [FIB_PATH_CFG_ATTRIBUTE_INTF_RX] = "interface-rx", \
124 [FIB_PATH_CFG_ATTRIBUTE_RPF_ID] = "rpf-id", \
Neale Ranns054c03a2017-10-13 05:15:07 -0700125 [FIB_PATH_CFG_ATTRIBUTE_DEAG_SRC] = "deag-src", \
Neale Ranns1dbcf302019-07-19 11:44:53 +0000126 [FIB_PATH_CFG_ATTRIBUTE_POP_PW_CW] = "pop-pw-cw", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100127}
128
129#define FOR_EACH_FIB_PATH_CFG_ATTRIBUTE(_item) \
130 for (_item = FIB_PATH_CFG_ATTRIBUTE_FIRST; \
131 _item <= FIB_PATH_CFG_ATTRIBUTE_LAST; \
132 _item++)
133
134/**
135 * Path config flags from the attributes
136 */
137typedef enum fib_path_cfg_flags_t_ {
138 FIB_PATH_CFG_FLAG_NONE = 0,
139 FIB_PATH_CFG_FLAG_DROP = (1 << FIB_PATH_CFG_ATTRIBUTE_DROP),
140 FIB_PATH_CFG_FLAG_EXCLUSIVE = (1 << FIB_PATH_CFG_ATTRIBUTE_EXCLUSIVE),
141 FIB_PATH_CFG_FLAG_RESOLVE_HOST = (1 << FIB_PATH_CFG_ATTRIBUTE_RESOLVE_HOST),
142 FIB_PATH_CFG_FLAG_RESOLVE_ATTACHED = (1 << FIB_PATH_CFG_ATTRIBUTE_RESOLVE_ATTACHED),
143 FIB_PATH_CFG_FLAG_LOCAL = (1 << FIB_PATH_CFG_ATTRIBUTE_LOCAL),
Neale Ranns097fa662018-05-01 05:17:55 -0700144 FIB_PATH_CFG_FLAG_ICMP_UNREACH = (1 << FIB_PATH_CFG_ATTRIBUTE_ICMP_UNREACH),
145 FIB_PATH_CFG_FLAG_ICMP_PROHIBIT = (1 << FIB_PATH_CFG_ATTRIBUTE_ICMP_PROHIBIT),
146 FIB_PATH_CFG_FLAG_CLASSIFY = (1 << FIB_PATH_CFG_ATTRIBUTE_CLASSIFY),
Neale Ranns4b919a52017-03-11 05:55:21 -0800147 FIB_PATH_CFG_FLAG_ATTACHED = (1 << FIB_PATH_CFG_ATTRIBUTE_ATTACHED),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800148 FIB_PATH_CFG_FLAG_INTF_RX = (1 << FIB_PATH_CFG_ATTRIBUTE_INTF_RX),
149 FIB_PATH_CFG_FLAG_RPF_ID = (1 << FIB_PATH_CFG_ATTRIBUTE_RPF_ID),
Neale Ranns054c03a2017-10-13 05:15:07 -0700150 FIB_PATH_CFG_FLAG_DEAG_SRC = (1 << FIB_PATH_CFG_ATTRIBUTE_DEAG_SRC),
Neale Ranns1dbcf302019-07-19 11:44:53 +0000151 FIB_PATH_CFG_FLAG_POP_PW_CW = (1 << FIB_PATH_CFG_ATTRIBUTE_POP_PW_CW),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100152} __attribute__ ((packed)) fib_path_cfg_flags_t;
153
Neale Ranns710071b2018-09-24 12:36:26 +0000154typedef enum fib_path_format_flags_t_
155{
156 FIB_PATH_FORMAT_FLAGS_NONE = 0,
157 FIB_PATH_FORMAT_FLAGS_ONE_LINE = (1 << 0),
158} fib_format_path_flags_t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100159
Neale Ranns91286372017-12-05 13:24:04 -0800160extern u8 *format_fib_path(u8 *s, va_list *args);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100161
162extern fib_node_index_t fib_path_create(fib_node_index_t pl_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100163 const fib_route_path_t *path);
164extern fib_node_index_t fib_path_create_special(fib_node_index_t pl_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700165 dpo_proto_t nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100166 fib_path_cfg_flags_t flags,
167 const dpo_id_t *dpo);
168
169extern int fib_path_cmp(fib_node_index_t path_index1,
170 fib_node_index_t path_index2);
171extern int fib_path_cmp_for_sort(void * a1, void * a2);
172extern int fib_path_cmp_w_route_path(fib_node_index_t path_index,
173 const fib_route_path_t *rpath);
174extern fib_node_index_t fib_path_copy(fib_node_index_t path_index,
175 fib_node_index_t path_list_index);
176extern int fib_path_resolve(fib_node_index_t path_index);
177extern int fib_path_is_resolved(fib_node_index_t path_index);
Neale Rannsf12a83f2017-04-18 09:09:40 -0700178extern int fib_path_is_recursive_constrained(fib_node_index_t path_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100179extern int fib_path_is_exclusive(fib_node_index_t path_index);
180extern int fib_path_is_deag(fib_node_index_t path_index);
181extern int fib_path_is_looped(fib_node_index_t path_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700182extern dpo_proto_t fib_path_get_proto(fib_node_index_t path_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100183extern void fib_path_destroy(fib_node_index_t path_index);
184extern uword fib_path_hash(fib_node_index_t path_index);
185extern load_balance_path_t * fib_path_append_nh_for_multipath_hash(
186 fib_node_index_t path_index,
187 fib_forward_chain_type_t fct,
188 load_balance_path_t *hash_key);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800189extern void fib_path_stack_mpls_disp(fib_node_index_t path_index,
190 dpo_proto_t payload_proto,
Neale Ranns31ed7442018-02-23 05:29:09 -0800191 fib_mpls_lsp_mode_t mode,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800192 dpo_id_t *dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100193extern void fib_path_contribute_forwarding(fib_node_index_t path_index,
194 fib_forward_chain_type_t type,
195 dpo_id_t *dpo);
Neale Ranns3ee44042016-10-03 13:05:48 +0100196extern void fib_path_contribute_urpf(fib_node_index_t path_index,
197 index_t urpf);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100198extern adj_index_t fib_path_get_adj(fib_node_index_t path_index);
199extern int fib_path_recursive_loop_detect(fib_node_index_t path_index,
200 fib_node_index_t **entry_indicies);
201extern u32 fib_path_get_resolving_interface(fib_node_index_t fib_entry_index);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700202extern index_t fib_path_get_resolving_index(fib_node_index_t path_index);
Neale Ranns57b58602017-07-15 07:37:25 -0700203extern u16 fib_path_get_weight(fib_node_index_t path_index);
204extern u16 fib_path_get_preference(fib_node_index_t path_index);
Neale Rannsd792d9c2017-10-21 10:53:20 -0700205extern u32 fib_path_get_rpf_id(fib_node_index_t path_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100206
207extern void fib_path_module_init(void);
Neale Ranns097fa662018-05-01 05:17:55 -0700208
209/**
210 * Path encode context to use when walking a path-list
211 * to encode paths
212 */
213typedef struct fib_path_encode_ctx_t_
214{
215 fib_route_path_t *rpaths;
216} fib_path_encode_ctx_t;
217
Neale Ranns81424992017-05-18 03:03:22 -0700218extern fib_path_list_walk_rc_t fib_path_encode(fib_node_index_t path_list_index,
219 fib_node_index_t path_index,
Neale Ranns775f73c2018-12-20 03:01:49 -0800220 const struct fib_path_ext_t_ *ext_list,
Neale Ranns81424992017-05-18 03:03:22 -0700221 void *ctx);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100222
223#endif