2f9a107ab8b3ce459f4997d3b7ab20a4c988c394
[vpp.git] / vnet / vnet / fib / fib_node.h
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_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  */
24 typedef 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,
34     FIB_NODE_TYPE_PATH_LIST,
35     FIB_NODE_TYPE_PATH,
36     FIB_NODE_TYPE_ADJ,
37     FIB_NODE_TYPE_MPLS_ENTRY,
38     FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY,
39     FIB_NODE_TYPE_LISP_ADJ,
40     FIB_NODE_TYPE_MPLS_GRE_TUNNEL,
41     FIB_NODE_TYPE_GRE_TUNNEL,
42     /**
43      * Marker. New types before this one. leave the test last.
44      */
45     FIB_NODE_TYPE_TEST,
46     FIB_NODE_TYPE_LAST = FIB_NODE_TYPE_TEST,
47 } fib_node_type_t;
48
49 #define FIB_NODE_TYPE_MAX (FIB_NODE_TYPE_LAST + 1)
50
51 #define FIB_NODE_TYPES {                          \
52     [FIB_NODE_TYPE_ENTRY]     = "entry",          \
53     [FIB_NODE_TYPE_WALK]      = "walk",           \
54     [FIB_NODE_TYPE_PATH_LIST] = "path-list",      \
55     [FIB_NODE_TYPE_PATH]      = "path",           \
56     [FIB_NODE_TYPE_MPLS_ENTRY] = "mpls-entry",    \
57     [FIB_NODE_TYPE_ADJ] = "adj",                  \
58     [FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY] = "lisp-gpe-fwd-entry", \
59     [FIB_NODE_TYPE_LISP_ADJ] = "lisp-adj", \
60     [FIB_NODE_TYPE_MPLS_GRE_TUNNEL] = "mpls-gre-tunnel", \
61     [FIB_NODE_TYPE_GRE_TUNNEL] = "gre-tunnel", \
62 }
63
64 /**
65  * Reasons for backwalking the FIB object graph
66  */
67 typedef enum fib_node_back_walk_reason_t_ {
68     /**
69      * Marker. Add new ones after.
70      */
71     FIB_NODE_BW_REASON_FIRST = 0,
72     /**
73      * Walk to re-resolve the child.
74      * Used when the parent is no longer a valid resolution target
75      */
76     FIB_NODE_BW_REASON_RESOLVE = FIB_NODE_BW_REASON_FIRST,
77     /**
78      * Walk to re-evaluate the forwarding contributed by the parent.
79      * Used when a parent's forwarding changes and the child needs to
80      * incorporate this change in its forwarding.
81      */
82     FIB_NODE_BW_REASON_EVALUATE,
83     /**
84      * A resolving interface has come up
85      */
86     FIB_NODE_BW_REASON_INTERFACE_UP,
87     /**
88      * A resolving interface has gone down
89      */
90     FIB_NODE_BW_REASON_INTERFACE_DOWN,
91     /**
92      * A resolving interface has been deleted.
93      */
94     FIB_NODE_BW_REASON_INTERFACE_DELETE,
95     /**
96      * Walk to re-collapse the multipath adjs when the rewrite of
97      * a unipath adjacency changes
98      */
99     FIB_NODE_BW_REASON_ADJ_UPDATE,
100     /**
101      * Marker. Add new before and update
102      */
103     FIB_NODE_BW_REASON_LAST = FIB_NODE_BW_REASON_EVALUATE,
104 } fib_node_back_walk_reason_t;
105
106 #define FIB_NODE_BW_REASONS {                   \
107     [FIB_NODE_BW_REASON_RESOLVE] = "resolve"    \
108     [FIB_NODE_BW_REASON_EVALUATE] = "evaluate"  \
109     [FIB_NODE_BW_REASON_INTERFACE_UP] = "if-up" \
110     [FIB_NODE_BW_REASON_INTERFACE_DOWN] = "if-down"     \
111     [FIB_NODE_BW_REASON_INTERFACE_DELETE] = "if-delete" \
112     [FIB_NODE_BW_REASON_ADJ_UPDATE] = "adj-update"      \
113 }
114
115 /**
116  * Flags enum constructed from the reaons
117  */
118 typedef enum fib_node_bw_reason_flag_t_ {
119     FIB_NODE_BW_REASON_FLAG_NONE = 0,
120     FIB_NODE_BW_REASON_FLAG_RESOLVE = (1 << FIB_NODE_BW_REASON_RESOLVE),
121     FIB_NODE_BW_REASON_FLAG_EVALUATE = (1 << FIB_NODE_BW_REASON_EVALUATE),
122     FIB_NODE_BW_REASON_FLAG_INTERFACE_UP = (1 << FIB_NODE_BW_REASON_INTERFACE_UP),
123     FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN = (1 << FIB_NODE_BW_REASON_INTERFACE_DOWN),
124     FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE = (1 << FIB_NODE_BW_REASON_INTERFACE_DELETE),
125     FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE = (1 << FIB_NODE_BW_REASON_ADJ_UPDATE),
126 } __attribute__ ((packed)) fib_node_bw_reason_flag_t;
127
128 _Static_assert(sizeof(fib_node_bw_reason_flag_t) < 2,
129                "BW Reason enum < 2 byte. Consequences for cover_upd_res_t");
130
131 /**
132  * Forward eclarations
133  */
134 struct fib_node_t_;
135
136 /**
137  * A representation of one pointer to another node.
138  * To fully qualify a node, one must know its type and its index so it
139  * can be retrieved from the appropriate pool. Direct pointers to nodes
140  * are forbidden, since all nodes are allocated from pools, which are vectors,
141  * and thus subject to realloc at any time.
142  */
143 typedef struct fib_node_ptr_t_ {
144     /**
145      * node type
146      */
147     fib_node_type_t fnp_type;
148     /**
149      * node's index
150      */
151     fib_node_index_t fnp_index;
152 } fib_node_ptr_t;
153
154 /**
155  * @brief A list of FIB nodes.
156  */
157 typedef u32 fib_node_list_t;
158
159 /**
160  * Context passed between object during a back walk.
161  */
162 typedef struct fib_node_back_walk_ctx_t_ {
163     /**
164      * The reason/trigger for the backwalk
165      */
166     fib_node_bw_reason_flag_t fnbw_reason;
167
168     /**
169      * the number of levels the walk has already traversed.
170      * this value is maintained by the walk infra, tp limit the depth of
171      * a walk so it does not run indefinately the presence of a loop/cycle
172      * in the graph.
173      */
174     u32 fnbw_depth;
175 } fib_node_back_walk_ctx_t;
176
177 /**
178  * We consider a depth of 32 to be sufficient to cover all sane
179  * network topologies. Anything more is then an indication that
180  * there is a loop/cycle in the FIB graph.
181  * Note that all object types contribute to 1 to the depth.
182  */
183 #define FIB_NODE_GRAPH_MAX_DEPTH ((u32)32)
184
185 /**
186  * A callback function for walking a node dependency list
187  */
188 typedef int (*fib_node_ptr_walk_t)(fib_node_ptr_t *depend,
189                                    void *ctx);
190
191 /**
192  * A list of dependent nodes.
193  * This is currently implemented as a hash_table of fib_node_ptr_t
194  */
195 typedef fib_node_ptr_t fib_node_ptr_list_t;
196
197 /**
198  * Return code from a back walk function
199  */
200 typedef enum fib_node_back_walk_rc_t_ {
201     FIB_NODE_BACK_WALK_MERGE,
202     FIB_NODE_BACK_WALK_CONTINUE,
203 } fib_node_back_walk_rc_t;
204
205 /**
206  * Function definition to backwalk a FIB node
207  */
208 typedef fib_node_back_walk_rc_t (*fib_node_back_walk_t)(
209     struct fib_node_t_ *node,
210     fib_node_back_walk_ctx_t *ctx);
211
212 /**
213  * Function definition to get a FIB node from its index
214  */
215 typedef struct fib_node_t_* (*fib_node_get_t)(fib_node_index_t index);
216
217 /**
218  * Function definition to inform the FIB node that its last lock has gone.
219  */
220 typedef void (*fib_node_last_lock_gone_t)(struct fib_node_t_ *node);
221
222 /**
223  * Function definition to display the amount of memory used by a type.
224  * Implementations should call fib_show_memory_usage()
225  */
226 typedef void (*fib_node_memory_show_t)(void);
227
228 /**
229  * A FIB graph nodes virtual function table
230  */
231 typedef struct fib_node_vft_t_ {
232     fib_node_get_t fnv_get;
233     fib_node_last_lock_gone_t fnv_last_lock;
234     fib_node_back_walk_t fnv_back_walk;
235     format_function_t *fnv_format;
236     fib_node_memory_show_t fnv_mem_show;
237 } fib_node_vft_t;
238
239 /**
240  * An node in the FIB graph
241  *
242  * Objects in the FIB form a graph. 
243  */
244 typedef struct fib_node_t_ {
245 #if CLIB_DEBUG > 0
246     /**
247      * The node's type. make sure we are dynamic/down casting correctly
248      */
249     fib_node_type_t fn_type;
250 #endif
251     /**
252      * The node's VFT.
253      * we could store the type here instead, and lookup the VFT using that. But
254      * I like this better,
255      */
256     const fib_node_vft_t *fn_vft;
257
258     /**
259      * Vector of nodes that depend upon/use/share this node
260      */
261     fib_node_list_t fn_children;
262
263     /**
264      * Number of dependents on this node. This number includes the number
265      * of children
266      */
267     u32 fn_locks;
268 } fib_node_t;
269
270 /**
271  * @brief
272  *  Register the function table for a given type
273  *
274  * @param ft
275  *  FIB node type
276  *
277  * @param vft
278  * virtual function table
279  */
280 extern void fib_node_register_type (fib_node_type_t ft,
281                                     const fib_node_vft_t *vft);
282
283 /**
284  * @brief
285  *  Create a new FIB node type and Register the function table for it.
286  *
287  * @param vft
288  * virtual function table
289  *
290  * @return new FIB node type
291  */
292 extern fib_node_type_t fib_node_register_new_type (const fib_node_vft_t *vft);
293
294 /**
295  * @brief Show the memory usage for a type
296  *
297  * This should be invoked by the type in response to the infra calling
298  * its registered memory show function
299  *
300  * @param name the name of the type
301  * @param in_use_elts The number of elements in use
302  * @param allocd_elts The number of allocated pool elemenets
303  * @param size_elt The size of one element
304  */
305 extern void fib_show_memory_usage(const char *name,
306                                   u32 in_use_elts,
307                                   u32 allocd_elts,
308                                   size_t size_elt);
309
310 extern void fib_node_init(fib_node_t *node,
311                           fib_node_type_t ft);
312 extern void fib_node_deinit(fib_node_t *node);
313
314 extern void fib_node_lock(fib_node_t *node);
315 extern void fib_node_unlock(fib_node_t *node);
316
317 extern u32 fib_node_child_add(fib_node_type_t parent_type,
318                               fib_node_index_t parent_index,
319                               fib_node_type_t child_type,
320                               fib_node_index_t child_index);
321 extern void fib_node_child_remove(fib_node_type_t parent_type,
322                                   fib_node_index_t parent_index,
323                                   fib_node_index_t sibling_index);
324
325 extern fib_node_back_walk_rc_t fib_node_back_walk_one(fib_node_ptr_t *ptr,
326                                                       fib_node_back_walk_ctx_t *ctx);
327
328 extern u8* fib_node_children_format(fib_node_list_t list,
329                                     u8 *s);
330
331 extern const char* fib_node_type_get_name(fib_node_type_t type);
332
333 static inline int
334 fib_node_index_is_valid (fib_node_index_t ni)
335 {
336     return (FIB_NODE_INDEX_INVALID != ni);
337 }
338
339 #endif
340