blob: e9c45c55efd6acd73ea6843fd2ed94f383a56fc1 [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#ifndef __FIB_NODE_H__
17#define __FIB_NODE_H__
18
19#include <vnet/fib/fib_types.h>
20
21/**
22 * The types of nodes in a FIB graph
23 */
24typedef enum fib_node_type_t_ {
25 /**
26 * Marker. New types after this one.
27 */
28 FIB_NODE_TYPE_FIRST = 0,
29 /**
30 * See the respective fib_*.h files for descriptions of these objects.
31 */
32 FIB_NODE_TYPE_WALK,
33 FIB_NODE_TYPE_ENTRY,
Neale Ranns32e1c012016-11-22 17:07:28 +000034 FIB_NODE_TYPE_MFIB_ENTRY,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010035 FIB_NODE_TYPE_PATH_LIST,
36 FIB_NODE_TYPE_PATH,
37 FIB_NODE_TYPE_ADJ,
38 FIB_NODE_TYPE_MPLS_ENTRY,
Neale Rannsad422ed2016-11-02 14:20:04 +000039 FIB_NODE_TYPE_MPLS_TUNNEL,
Neale Ranns5e575b12016-10-03 09:40:25 +010040 FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010041 FIB_NODE_TYPE_LISP_ADJ,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010042 FIB_NODE_TYPE_GRE_TUNNEL,
John Loc42912d2016-11-07 18:30:47 -050043 FIB_NODE_TYPE_VXLAN_TUNNEL,
Neale Ranns80823802017-02-20 18:23:41 -080044 FIB_NODE_TYPE_MAP_E,
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080045 FIB_NODE_TYPE_VXLAN_GPE_TUNNEL,
Marco Varleseb598f1d2017-09-19 14:25:28 +020046 FIB_NODE_TYPE_GENEVE_TUNNEL,
Neale Ranns810086d2017-11-05 16:26:46 -080047 FIB_NODE_TYPE_UDP_ENCAP,
Neale Rannsd792d9c2017-10-21 10:53:20 -070048 FIB_NODE_TYPE_BIER_FMASK,
49 FIB_NODE_TYPE_BIER_ENTRY,
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020050 FIB_NODE_TYPE_VXLAN_GBP_TUNNEL,
Neale Ranns8d7c5022019-02-06 01:41:05 -080051 FIB_NODE_TYPE_IPSEC_SA,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010052 /**
53 * Marker. New types before this one. leave the test last.
54 */
55 FIB_NODE_TYPE_TEST,
56 FIB_NODE_TYPE_LAST = FIB_NODE_TYPE_TEST,
Neale Ranns630b9742017-11-25 10:04:32 -080057} __attribute__ ((packed)) fib_node_type_t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010058
59#define FIB_NODE_TYPE_MAX (FIB_NODE_TYPE_LAST + 1)
60
Neale Rannsd79a43c2018-02-19 02:36:19 -080061#define FIB_NODE_TYPES { \
62 [FIB_NODE_TYPE_ENTRY] = "entry", \
63 [FIB_NODE_TYPE_MFIB_ENTRY] = "mfib-entry", \
64 [FIB_NODE_TYPE_WALK] = "walk", \
65 [FIB_NODE_TYPE_PATH_LIST] = "path-list", \
66 [FIB_NODE_TYPE_PATH] = "path", \
67 [FIB_NODE_TYPE_MPLS_ENTRY] = "mpls-entry", \
68 [FIB_NODE_TYPE_MPLS_TUNNEL] = "mpls-tunnel", \
69 [FIB_NODE_TYPE_ADJ] = "adj", \
70 [FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY] = "lisp-gpe-fwd-entry", \
71 [FIB_NODE_TYPE_LISP_ADJ] = "lisp-adj", \
72 [FIB_NODE_TYPE_GRE_TUNNEL] = "gre-tunnel", \
73 [FIB_NODE_TYPE_VXLAN_TUNNEL] = "vxlan-tunnel", \
74 [FIB_NODE_TYPE_MAP_E] = "map-e", \
75 [FIB_NODE_TYPE_VXLAN_GPE_TUNNEL] = "vxlan-gpe-tunnel", \
76 [FIB_NODE_TYPE_UDP_ENCAP] = "udp-encap", \
77 [FIB_NODE_TYPE_BIER_FMASK] = "bier-fmask", \
78 [FIB_NODE_TYPE_BIER_ENTRY] = "bier-entry", \
Neale Ranns8d7c5022019-02-06 01:41:05 -080079 [FIB_NODE_TYPE_VXLAN_GBP_TUNNEL] = "vxlan-gbp-tunnel", \
80 [FIB_NODE_TYPE_IPSEC_SA] = "ipsec-sa" \
Neale Ranns0bfe5d82016-08-25 15:29:12 +010081}
82
83/**
84 * Reasons for backwalking the FIB object graph
85 */
86typedef enum fib_node_back_walk_reason_t_ {
87 /**
88 * Marker. Add new ones after.
89 */
90 FIB_NODE_BW_REASON_FIRST = 0,
91 /**
92 * Walk to re-resolve the child.
93 * Used when the parent is no longer a valid resolution target
94 */
95 FIB_NODE_BW_REASON_RESOLVE = FIB_NODE_BW_REASON_FIRST,
96 /**
97 * Walk to re-evaluate the forwarding contributed by the parent.
98 * Used when a parent's forwarding changes and the child needs to
99 * incorporate this change in its forwarding.
100 */
101 FIB_NODE_BW_REASON_EVALUATE,
102 /**
103 * A resolving interface has come up
104 */
105 FIB_NODE_BW_REASON_INTERFACE_UP,
106 /**
107 * A resolving interface has gone down
108 */
109 FIB_NODE_BW_REASON_INTERFACE_DOWN,
110 /**
111 * A resolving interface has been deleted.
112 */
113 FIB_NODE_BW_REASON_INTERFACE_DELETE,
114 /**
115 * Walk to re-collapse the multipath adjs when the rewrite of
116 * a unipath adjacency changes
117 */
118 FIB_NODE_BW_REASON_ADJ_UPDATE,
119 /**
Neale Rannsad95b5d2016-11-10 20:35:14 +0000120 * Walk to update children to inform them the adjacency is now down.
121 */
122 FIB_NODE_BW_REASON_ADJ_DOWN,
123 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100124 * Marker. Add new before and update
125 */
Neale Rannsad95b5d2016-11-10 20:35:14 +0000126 FIB_NODE_BW_REASON_LAST = FIB_NODE_BW_REASON_ADJ_DOWN,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100127} fib_node_back_walk_reason_t;
128
Neale Rannsad95b5d2016-11-10 20:35:14 +0000129#define FIB_NODE_BW_REASONS { \
130 [FIB_NODE_BW_REASON_RESOLVE] = "resolve", \
131 [FIB_NODE_BW_REASON_EVALUATE] = "evaluate", \
132 [FIB_NODE_BW_REASON_INTERFACE_UP] = "if-up", \
133 [FIB_NODE_BW_REASON_INTERFACE_DOWN] = "if-down", \
134 [FIB_NODE_BW_REASON_INTERFACE_DELETE] = "if-delete", \
135 [FIB_NODE_BW_REASON_ADJ_UPDATE] = "adj-update", \
136 [FIB_NODE_BW_REASON_ADJ_DOWN] = "adj-down", \
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100137}
138
Neale Rannsad95b5d2016-11-10 20:35:14 +0000139#define FOR_EACH_FIB_NODE_BW_REASON(_item) \
140 for (_item = FIB_NODE_BW_REASON_FIRST; \
141 _item <= FIB_NODE_BW_REASON_LAST; \
142 _item++)
143
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100144/**
145 * Flags enum constructed from the reaons
146 */
147typedef enum fib_node_bw_reason_flag_t_ {
148 FIB_NODE_BW_REASON_FLAG_NONE = 0,
149 FIB_NODE_BW_REASON_FLAG_RESOLVE = (1 << FIB_NODE_BW_REASON_RESOLVE),
150 FIB_NODE_BW_REASON_FLAG_EVALUATE = (1 << FIB_NODE_BW_REASON_EVALUATE),
151 FIB_NODE_BW_REASON_FLAG_INTERFACE_UP = (1 << FIB_NODE_BW_REASON_INTERFACE_UP),
152 FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN = (1 << FIB_NODE_BW_REASON_INTERFACE_DOWN),
153 FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE = (1 << FIB_NODE_BW_REASON_INTERFACE_DELETE),
154 FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE = (1 << FIB_NODE_BW_REASON_ADJ_UPDATE),
Neale Rannsad95b5d2016-11-10 20:35:14 +0000155 FIB_NODE_BW_REASON_FLAG_ADJ_DOWN = (1 << FIB_NODE_BW_REASON_ADJ_DOWN),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100156} __attribute__ ((packed)) fib_node_bw_reason_flag_t;
157
Damjan Marioncf478942016-11-07 14:57:50 +0100158STATIC_ASSERT(sizeof(fib_node_bw_reason_flag_t) < 2,
159 "BW Reason enum < 2 byte. Consequences for cover_upd_res_t");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100160
Neale Ranns710071b2018-09-24 12:36:26 +0000161extern u8 *format_fib_node_bw_reason(u8 *s, va_list *args);
162
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100163/**
Neale Rannsad95b5d2016-11-10 20:35:14 +0000164 * Flags on the walk
165 */
166typedef enum fib_node_bw_flags_t_
167{
Neale Ranns30d53642018-08-27 07:29:15 -0700168 FIB_NODE_BW_FLAG_NONE = 0,
Neale Rannsad95b5d2016-11-10 20:35:14 +0000169 /**
170 * Force the walk to be synchronous
171 */
172 FIB_NODE_BW_FLAG_FORCE_SYNC = (1 << 0),
173} fib_node_bw_flags_t;
174
175/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100176 * Forward eclarations
177 */
178struct fib_node_t_;
179
180/**
181 * A representation of one pointer to another node.
182 * To fully qualify a node, one must know its type and its index so it
183 * can be retrieved from the appropriate pool. Direct pointers to nodes
184 * are forbidden, since all nodes are allocated from pools, which are vectors,
185 * and thus subject to realloc at any time.
186 */
187typedef struct fib_node_ptr_t_ {
188 /**
189 * node type
190 */
191 fib_node_type_t fnp_type;
192 /**
193 * node's index
194 */
195 fib_node_index_t fnp_index;
196} fib_node_ptr_t;
197
198/**
199 * @brief A list of FIB nodes.
200 */
201typedef u32 fib_node_list_t;
202
203/**
204 * Context passed between object during a back walk.
205 */
206typedef struct fib_node_back_walk_ctx_t_ {
207 /**
208 * The reason/trigger for the backwalk
209 */
210 fib_node_bw_reason_flag_t fnbw_reason;
211
212 /**
Neale Rannsad95b5d2016-11-10 20:35:14 +0000213 * additional flags for the walk
214 */
215 fib_node_bw_flags_t fnbw_flags;
216
217 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100218 * the number of levels the walk has already traversed.
219 * this value is maintained by the walk infra, tp limit the depth of
220 * a walk so it does not run indefinately the presence of a loop/cycle
221 * in the graph.
222 */
223 u32 fnbw_depth;
224} fib_node_back_walk_ctx_t;
225
226/**
227 * We consider a depth of 32 to be sufficient to cover all sane
228 * network topologies. Anything more is then an indication that
229 * there is a loop/cycle in the FIB graph.
230 * Note that all object types contribute to 1 to the depth.
231 */
232#define FIB_NODE_GRAPH_MAX_DEPTH ((u32)32)
233
234/**
235 * A callback function for walking a node dependency list
236 */
237typedef int (*fib_node_ptr_walk_t)(fib_node_ptr_t *depend,
238 void *ctx);
239
240/**
241 * A list of dependent nodes.
242 * This is currently implemented as a hash_table of fib_node_ptr_t
243 */
244typedef fib_node_ptr_t fib_node_ptr_list_t;
245
246/**
247 * Return code from a back walk function
248 */
249typedef enum fib_node_back_walk_rc_t_ {
250 FIB_NODE_BACK_WALK_MERGE,
251 FIB_NODE_BACK_WALK_CONTINUE,
252} fib_node_back_walk_rc_t;
253
254/**
255 * Function definition to backwalk a FIB node
256 */
257typedef fib_node_back_walk_rc_t (*fib_node_back_walk_t)(
258 struct fib_node_t_ *node,
259 fib_node_back_walk_ctx_t *ctx);
260
261/**
262 * Function definition to get a FIB node from its index
263 */
264typedef struct fib_node_t_* (*fib_node_get_t)(fib_node_index_t index);
265
266/**
267 * Function definition to inform the FIB node that its last lock has gone.
268 */
269typedef void (*fib_node_last_lock_gone_t)(struct fib_node_t_ *node);
270
271/**
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100272 * Function definition to display the amount of memory used by a type.
273 * Implementations should call fib_show_memory_usage()
274 */
275typedef void (*fib_node_memory_show_t)(void);
276
277/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100278 * A FIB graph nodes virtual function table
279 */
280typedef struct fib_node_vft_t_ {
281 fib_node_get_t fnv_get;
282 fib_node_last_lock_gone_t fnv_last_lock;
283 fib_node_back_walk_t fnv_back_walk;
284 format_function_t *fnv_format;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100285 fib_node_memory_show_t fnv_mem_show;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100286} fib_node_vft_t;
287
288/**
289 * An node in the FIB graph
290 *
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800291 * Objects in the FIB form a graph.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100292 */
293typedef struct fib_node_t_ {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100294 /**
295 * The node's type. make sure we are dynamic/down casting correctly
296 */
297 fib_node_type_t fn_type;
Neale Ranns630b9742017-11-25 10:04:32 -0800298
299 /**
300 * Some pad space the concrete/derived type is free to use
301 */
302 u16 fn_pad;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100303
304 /**
305 * Vector of nodes that depend upon/use/share this node
306 */
307 fib_node_list_t fn_children;
308
309 /**
310 * Number of dependents on this node. This number includes the number
311 * of children
312 */
313 u32 fn_locks;
314} fib_node_t;
315
Neale Ranns630b9742017-11-25 10:04:32 -0800316STATIC_ASSERT(sizeof(fib_node_t) == 12, "FIB node type is growing");
317
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100318/**
319 * @brief
320 * Register the function table for a given type
321 *
322 * @param ft
323 * FIB node type
324 *
325 * @param vft
326 * virtual function table
327 */
328extern void fib_node_register_type (fib_node_type_t ft,
329 const fib_node_vft_t *vft);
330
331/**
332 * @brief
333 * Create a new FIB node type and Register the function table for it.
334 *
335 * @param vft
336 * virtual function table
337 *
338 * @return new FIB node type
339 */
340extern fib_node_type_t fib_node_register_new_type (const fib_node_vft_t *vft);
341
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100342/**
343 * @brief Show the memory usage for a type
344 *
345 * This should be invoked by the type in response to the infra calling
346 * its registered memory show function
347 *
348 * @param name the name of the type
349 * @param in_use_elts The number of elements in use
350 * @param allocd_elts The number of allocated pool elemenets
351 * @param size_elt The size of one element
352 */
353extern void fib_show_memory_usage(const char *name,
354 u32 in_use_elts,
355 u32 allocd_elts,
356 size_t size_elt);
357
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100358extern void fib_node_init(fib_node_t *node,
359 fib_node_type_t ft);
360extern void fib_node_deinit(fib_node_t *node);
361
362extern void fib_node_lock(fib_node_t *node);
363extern void fib_node_unlock(fib_node_t *node);
364
Neale Rannsad422ed2016-11-02 14:20:04 +0000365extern u32 fib_node_get_n_children(fib_node_type_t parent_type,
366 fib_node_index_t parent_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100367extern u32 fib_node_child_add(fib_node_type_t parent_type,
368 fib_node_index_t parent_index,
369 fib_node_type_t child_type,
370 fib_node_index_t child_index);
371extern void fib_node_child_remove(fib_node_type_t parent_type,
372 fib_node_index_t parent_index,
373 fib_node_index_t sibling_index);
374
375extern fib_node_back_walk_rc_t fib_node_back_walk_one(fib_node_ptr_t *ptr,
376 fib_node_back_walk_ctx_t *ctx);
377
378extern u8* fib_node_children_format(fib_node_list_t list,
379 u8 *s);
380
381extern const char* fib_node_type_get_name(fib_node_type_t type);
382
383static inline int
384fib_node_index_is_valid (fib_node_index_t ni)
385{
386 return (FIB_NODE_INDEX_INVALID != ni);
387}
388
389#endif
390