Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 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, |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 34 | FIB_NODE_TYPE_MFIB_ENTRY, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 35 | FIB_NODE_TYPE_PATH_LIST, |
| 36 | FIB_NODE_TYPE_PATH, |
| 37 | FIB_NODE_TYPE_ADJ, |
| 38 | FIB_NODE_TYPE_MPLS_ENTRY, |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 39 | FIB_NODE_TYPE_MPLS_TUNNEL, |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 40 | FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 41 | FIB_NODE_TYPE_LISP_ADJ, |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 42 | FIB_NODE_TYPE_VXLAN_TUNNEL, |
Neale Ranns | 8082380 | 2017-02-20 18:23:41 -0800 | [diff] [blame] | 43 | FIB_NODE_TYPE_MAP_E, |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 44 | FIB_NODE_TYPE_VXLAN_GPE_TUNNEL, |
Marco Varlese | b598f1d | 2017-09-19 14:25:28 +0200 | [diff] [blame] | 45 | FIB_NODE_TYPE_GENEVE_TUNNEL, |
Neale Ranns | 810086d | 2017-11-05 16:26:46 -0800 | [diff] [blame] | 46 | FIB_NODE_TYPE_UDP_ENCAP, |
Neale Ranns | d792d9c | 2017-10-21 10:53:20 -0700 | [diff] [blame] | 47 | FIB_NODE_TYPE_BIER_FMASK, |
| 48 | FIB_NODE_TYPE_BIER_ENTRY, |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 49 | FIB_NODE_TYPE_VXLAN_GBP_TUNNEL, |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 50 | FIB_NODE_TYPE_IPSEC_SA, |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 51 | FIB_NODE_TYPE_IP_PUNT_REDIRECT, |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 52 | FIB_NODE_TYPE_ENTRY_TRACK, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 53 | /** |
| 54 | * Marker. New types before this one. leave the test last. |
| 55 | */ |
Neale Ranns | f575617 | 2022-02-09 13:30:37 +0000 | [diff] [blame] | 56 | FIB_NODE_TYPE_LAST = FIB_NODE_TYPE_ENTRY_TRACK, |
Neale Ranns | 630b974 | 2017-11-25 10:04:32 -0800 | [diff] [blame] | 57 | } __attribute__ ((packed)) fib_node_type_t; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 58 | |
| 59 | #define FIB_NODE_TYPE_MAX (FIB_NODE_TYPE_LAST + 1) |
| 60 | |
Neale Ranns | d79a43c | 2018-02-19 02:36:19 -0800 | [diff] [blame] | 61 | #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", \ |
Neale Ranns | d79a43c | 2018-02-19 02:36:19 -0800 | [diff] [blame] | 72 | [FIB_NODE_TYPE_VXLAN_TUNNEL] = "vxlan-tunnel", \ |
| 73 | [FIB_NODE_TYPE_MAP_E] = "map-e", \ |
| 74 | [FIB_NODE_TYPE_VXLAN_GPE_TUNNEL] = "vxlan-gpe-tunnel", \ |
| 75 | [FIB_NODE_TYPE_UDP_ENCAP] = "udp-encap", \ |
| 76 | [FIB_NODE_TYPE_BIER_FMASK] = "bier-fmask", \ |
| 77 | [FIB_NODE_TYPE_BIER_ENTRY] = "bier-entry", \ |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 78 | [FIB_NODE_TYPE_VXLAN_GBP_TUNNEL] = "vxlan-gbp-tunnel", \ |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 79 | [FIB_NODE_TYPE_IPSEC_SA] = "ipsec-sa", \ |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 80 | [FIB_NODE_TYPE_IP_PUNT_REDIRECT] = "ip-punt-redirect", \ |
| 81 | [FIB_NODE_TYPE_ENTRY_TRACK] = "fib-entry-track" \ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Reasons for backwalking the FIB object graph |
| 86 | */ |
| 87 | typedef enum fib_node_back_walk_reason_t_ { |
| 88 | /** |
| 89 | * Marker. Add new ones after. |
| 90 | */ |
| 91 | FIB_NODE_BW_REASON_FIRST = 0, |
| 92 | /** |
| 93 | * Walk to re-resolve the child. |
| 94 | * Used when the parent is no longer a valid resolution target |
| 95 | */ |
| 96 | FIB_NODE_BW_REASON_RESOLVE = FIB_NODE_BW_REASON_FIRST, |
| 97 | /** |
| 98 | * Walk to re-evaluate the forwarding contributed by the parent. |
| 99 | * Used when a parent's forwarding changes and the child needs to |
| 100 | * incorporate this change in its forwarding. |
| 101 | */ |
| 102 | FIB_NODE_BW_REASON_EVALUATE, |
| 103 | /** |
| 104 | * A resolving interface has come up |
| 105 | */ |
| 106 | FIB_NODE_BW_REASON_INTERFACE_UP, |
| 107 | /** |
| 108 | * A resolving interface has gone down |
| 109 | */ |
| 110 | FIB_NODE_BW_REASON_INTERFACE_DOWN, |
| 111 | /** |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 112 | * A resolving interface has been bound to another table |
| 113 | */ |
| 114 | FIB_NODE_BW_REASON_INTERFACE_BIND, |
| 115 | /** |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 116 | * A resolving interface has been deleted. |
| 117 | */ |
| 118 | FIB_NODE_BW_REASON_INTERFACE_DELETE, |
| 119 | /** |
| 120 | * Walk to re-collapse the multipath adjs when the rewrite of |
| 121 | * a unipath adjacency changes |
| 122 | */ |
| 123 | FIB_NODE_BW_REASON_ADJ_UPDATE, |
| 124 | /** |
Neale Ranns | 8f5fef2 | 2020-12-21 08:29:34 +0000 | [diff] [blame] | 125 | * Walk update the adjacency MTU |
| 126 | */ |
| 127 | FIB_NODE_BW_REASON_ADJ_MTU, |
| 128 | /** |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 129 | * Walk to update children to inform them the adjacency is now down. |
| 130 | */ |
| 131 | FIB_NODE_BW_REASON_ADJ_DOWN, |
| 132 | /** |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 133 | * Marker. Add new before and update |
| 134 | */ |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 135 | FIB_NODE_BW_REASON_LAST = FIB_NODE_BW_REASON_ADJ_DOWN, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 136 | } fib_node_back_walk_reason_t; |
| 137 | |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 138 | #define FIB_NODE_BW_REASONS { \ |
| 139 | [FIB_NODE_BW_REASON_RESOLVE] = "resolve", \ |
| 140 | [FIB_NODE_BW_REASON_EVALUATE] = "evaluate", \ |
| 141 | [FIB_NODE_BW_REASON_INTERFACE_UP] = "if-up", \ |
| 142 | [FIB_NODE_BW_REASON_INTERFACE_DOWN] = "if-down", \ |
| 143 | [FIB_NODE_BW_REASON_INTERFACE_DELETE] = "if-delete", \ |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 144 | [FIB_NODE_BW_REASON_INTERFACE_BIND] = "if-bind", \ |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 145 | [FIB_NODE_BW_REASON_ADJ_UPDATE] = "adj-update", \ |
Neale Ranns | 8f5fef2 | 2020-12-21 08:29:34 +0000 | [diff] [blame] | 146 | [FIB_NODE_BW_REASON_ADJ_MTU] = "adj-mtu", \ |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 147 | [FIB_NODE_BW_REASON_ADJ_DOWN] = "adj-down", \ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 148 | } |
| 149 | |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 150 | #define FOR_EACH_FIB_NODE_BW_REASON(_item) \ |
| 151 | for (_item = FIB_NODE_BW_REASON_FIRST; \ |
| 152 | _item <= FIB_NODE_BW_REASON_LAST; \ |
| 153 | _item++) |
| 154 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 155 | /** |
| 156 | * Flags enum constructed from the reaons |
| 157 | */ |
| 158 | typedef enum fib_node_bw_reason_flag_t_ { |
| 159 | FIB_NODE_BW_REASON_FLAG_NONE = 0, |
| 160 | FIB_NODE_BW_REASON_FLAG_RESOLVE = (1 << FIB_NODE_BW_REASON_RESOLVE), |
| 161 | FIB_NODE_BW_REASON_FLAG_EVALUATE = (1 << FIB_NODE_BW_REASON_EVALUATE), |
| 162 | FIB_NODE_BW_REASON_FLAG_INTERFACE_UP = (1 << FIB_NODE_BW_REASON_INTERFACE_UP), |
| 163 | FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN = (1 << FIB_NODE_BW_REASON_INTERFACE_DOWN), |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 164 | FIB_NODE_BW_REASON_FLAG_INTERFACE_BIND = (1 << FIB_NODE_BW_REASON_INTERFACE_BIND), |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 165 | FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE = (1 << FIB_NODE_BW_REASON_INTERFACE_DELETE), |
| 166 | FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE = (1 << FIB_NODE_BW_REASON_ADJ_UPDATE), |
Neale Ranns | 8f5fef2 | 2020-12-21 08:29:34 +0000 | [diff] [blame] | 167 | FIB_NODE_BW_REASON_FLAG_ADJ_MTU = (1 << FIB_NODE_BW_REASON_ADJ_MTU), |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 168 | FIB_NODE_BW_REASON_FLAG_ADJ_DOWN = (1 << FIB_NODE_BW_REASON_ADJ_DOWN), |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 169 | } __attribute__ ((packed)) fib_node_bw_reason_flag_t; |
| 170 | |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 171 | STATIC_ASSERT(sizeof(fib_node_bw_reason_flag_t) < 3, |
| 172 | "BW Reason enum < 2 byte. Consequences for fib_entry_src_cover_res_t"); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 173 | |
Neale Ranns | 710071b | 2018-09-24 12:36:26 +0000 | [diff] [blame] | 174 | extern u8 *format_fib_node_bw_reason(u8 *s, va_list *args); |
| 175 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 176 | /** |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 177 | * Flags on the walk |
| 178 | */ |
| 179 | typedef enum fib_node_bw_flags_t_ |
| 180 | { |
Neale Ranns | 30d5364 | 2018-08-27 07:29:15 -0700 | [diff] [blame] | 181 | FIB_NODE_BW_FLAG_NONE = 0, |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 182 | /** |
| 183 | * Force the walk to be synchronous |
| 184 | */ |
| 185 | FIB_NODE_BW_FLAG_FORCE_SYNC = (1 << 0), |
| 186 | } fib_node_bw_flags_t; |
| 187 | |
| 188 | /** |
Lijian.Zhang | 33af8c1 | 2019-09-16 16:22:36 +0800 | [diff] [blame] | 189 | * Forward declarations |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 190 | */ |
| 191 | struct fib_node_t_; |
| 192 | |
| 193 | /** |
| 194 | * A representation of one pointer to another node. |
| 195 | * To fully qualify a node, one must know its type and its index so it |
| 196 | * can be retrieved from the appropriate pool. Direct pointers to nodes |
| 197 | * are forbidden, since all nodes are allocated from pools, which are vectors, |
| 198 | * and thus subject to realloc at any time. |
| 199 | */ |
| 200 | typedef struct fib_node_ptr_t_ { |
| 201 | /** |
| 202 | * node type |
| 203 | */ |
| 204 | fib_node_type_t fnp_type; |
| 205 | /** |
| 206 | * node's index |
| 207 | */ |
| 208 | fib_node_index_t fnp_index; |
| 209 | } fib_node_ptr_t; |
| 210 | |
| 211 | /** |
| 212 | * @brief A list of FIB nodes. |
| 213 | */ |
| 214 | typedef u32 fib_node_list_t; |
| 215 | |
| 216 | /** |
| 217 | * Context passed between object during a back walk. |
| 218 | */ |
| 219 | typedef struct fib_node_back_walk_ctx_t_ { |
| 220 | /** |
| 221 | * The reason/trigger for the backwalk |
| 222 | */ |
| 223 | fib_node_bw_reason_flag_t fnbw_reason; |
| 224 | |
| 225 | /** |
Neale Ranns | ad95b5d | 2016-11-10 20:35:14 +0000 | [diff] [blame] | 226 | * additional flags for the walk |
| 227 | */ |
| 228 | fib_node_bw_flags_t fnbw_flags; |
| 229 | |
| 230 | /** |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 231 | * the number of levels the walk has already traversed. |
| 232 | * this value is maintained by the walk infra, tp limit the depth of |
| 233 | * a walk so it does not run indefinately the presence of a loop/cycle |
| 234 | * in the graph. |
| 235 | */ |
| 236 | u32 fnbw_depth; |
Neale Ranns | 50bd1d3 | 2021-10-08 07:16:12 +0000 | [diff] [blame] | 237 | |
| 238 | /** |
| 239 | * Additional data associated with the reason the walk is occuring |
| 240 | */ |
| 241 | union |
| 242 | { |
| 243 | struct { |
| 244 | u32 fnbw_from_fib_index; |
| 245 | u32 fnbw_to_fib_index; |
| 246 | } interface_bind; |
| 247 | }; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 248 | } fib_node_back_walk_ctx_t; |
| 249 | |
| 250 | /** |
| 251 | * We consider a depth of 32 to be sufficient to cover all sane |
| 252 | * network topologies. Anything more is then an indication that |
| 253 | * there is a loop/cycle in the FIB graph. |
| 254 | * Note that all object types contribute to 1 to the depth. |
| 255 | */ |
| 256 | #define FIB_NODE_GRAPH_MAX_DEPTH ((u32)32) |
| 257 | |
| 258 | /** |
| 259 | * A callback function for walking a node dependency list |
| 260 | */ |
| 261 | typedef int (*fib_node_ptr_walk_t)(fib_node_ptr_t *depend, |
| 262 | void *ctx); |
| 263 | |
| 264 | /** |
| 265 | * A list of dependent nodes. |
| 266 | * This is currently implemented as a hash_table of fib_node_ptr_t |
| 267 | */ |
| 268 | typedef fib_node_ptr_t fib_node_ptr_list_t; |
| 269 | |
| 270 | /** |
| 271 | * Return code from a back walk function |
| 272 | */ |
| 273 | typedef enum fib_node_back_walk_rc_t_ { |
| 274 | FIB_NODE_BACK_WALK_MERGE, |
| 275 | FIB_NODE_BACK_WALK_CONTINUE, |
| 276 | } fib_node_back_walk_rc_t; |
| 277 | |
| 278 | /** |
| 279 | * Function definition to backwalk a FIB node |
| 280 | */ |
| 281 | typedef fib_node_back_walk_rc_t (*fib_node_back_walk_t)( |
| 282 | struct fib_node_t_ *node, |
| 283 | fib_node_back_walk_ctx_t *ctx); |
| 284 | |
| 285 | /** |
| 286 | * Function definition to get a FIB node from its index |
| 287 | */ |
| 288 | typedef struct fib_node_t_* (*fib_node_get_t)(fib_node_index_t index); |
| 289 | |
| 290 | /** |
| 291 | * Function definition to inform the FIB node that its last lock has gone. |
| 292 | */ |
| 293 | typedef void (*fib_node_last_lock_gone_t)(struct fib_node_t_ *node); |
| 294 | |
| 295 | /** |
Neale Ranns | 6c3ebcc | 2016-10-02 21:20:15 +0100 | [diff] [blame] | 296 | * Function definition to display the amount of memory used by a type. |
| 297 | * Implementations should call fib_show_memory_usage() |
| 298 | */ |
| 299 | typedef void (*fib_node_memory_show_t)(void); |
| 300 | |
| 301 | /** |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 302 | * A FIB graph nodes virtual function table |
| 303 | */ |
| 304 | typedef struct fib_node_vft_t_ { |
| 305 | fib_node_get_t fnv_get; |
| 306 | fib_node_last_lock_gone_t fnv_last_lock; |
| 307 | fib_node_back_walk_t fnv_back_walk; |
Neale Ranns | 6c3ebcc | 2016-10-02 21:20:15 +0100 | [diff] [blame] | 308 | fib_node_memory_show_t fnv_mem_show; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 309 | } fib_node_vft_t; |
| 310 | |
| 311 | /** |
| 312 | * An node in the FIB graph |
| 313 | * |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 314 | * Objects in the FIB form a graph. |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 315 | */ |
| 316 | typedef struct fib_node_t_ { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 317 | /** |
| 318 | * The node's type. make sure we are dynamic/down casting correctly |
| 319 | */ |
| 320 | fib_node_type_t fn_type; |
Neale Ranns | 630b974 | 2017-11-25 10:04:32 -0800 | [diff] [blame] | 321 | |
| 322 | /** |
| 323 | * Some pad space the concrete/derived type is free to use |
| 324 | */ |
| 325 | u16 fn_pad; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 326 | |
| 327 | /** |
| 328 | * Vector of nodes that depend upon/use/share this node |
| 329 | */ |
| 330 | fib_node_list_t fn_children; |
| 331 | |
| 332 | /** |
| 333 | * Number of dependents on this node. This number includes the number |
| 334 | * of children |
| 335 | */ |
| 336 | u32 fn_locks; |
| 337 | } fib_node_t; |
| 338 | |
Neale Ranns | 630b974 | 2017-11-25 10:04:32 -0800 | [diff] [blame] | 339 | STATIC_ASSERT(sizeof(fib_node_t) == 12, "FIB node type is growing"); |
| 340 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 341 | /** |
| 342 | * @brief |
| 343 | * Register the function table for a given type |
| 344 | * |
| 345 | * @param ft |
| 346 | * FIB node type |
| 347 | * |
| 348 | * @param vft |
| 349 | * virtual function table |
| 350 | */ |
| 351 | extern void fib_node_register_type (fib_node_type_t ft, |
| 352 | const fib_node_vft_t *vft); |
| 353 | |
| 354 | /** |
| 355 | * @brief |
| 356 | * Create a new FIB node type and Register the function table for it. |
| 357 | * |
Neale Ranns | 2008912 | 2021-12-02 17:07:14 +0000 | [diff] [blame] | 358 | * @param name Name of the type (as display when printing children) |
| 359 | * @param vft virtual function table |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 360 | * |
| 361 | * @return new FIB node type |
| 362 | */ |
Neale Ranns | 2008912 | 2021-12-02 17:07:14 +0000 | [diff] [blame] | 363 | extern fib_node_type_t fib_node_register_new_type (const char *name, |
| 364 | const fib_node_vft_t *vft); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 365 | |
Neale Ranns | 6c3ebcc | 2016-10-02 21:20:15 +0100 | [diff] [blame] | 366 | /** |
| 367 | * @brief Show the memory usage for a type |
| 368 | * |
| 369 | * This should be invoked by the type in response to the infra calling |
| 370 | * its registered memory show function |
| 371 | * |
| 372 | * @param name the name of the type |
| 373 | * @param in_use_elts The number of elements in use |
| 374 | * @param allocd_elts The number of allocated pool elemenets |
| 375 | * @param size_elt The size of one element |
| 376 | */ |
| 377 | extern void fib_show_memory_usage(const char *name, |
| 378 | u32 in_use_elts, |
| 379 | u32 allocd_elts, |
| 380 | size_t size_elt); |
| 381 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 382 | extern void fib_node_init(fib_node_t *node, |
| 383 | fib_node_type_t ft); |
| 384 | extern void fib_node_deinit(fib_node_t *node); |
| 385 | |
| 386 | extern void fib_node_lock(fib_node_t *node); |
| 387 | extern void fib_node_unlock(fib_node_t *node); |
| 388 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 389 | extern u32 fib_node_get_n_children(fib_node_type_t parent_type, |
| 390 | fib_node_index_t parent_index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 391 | extern u32 fib_node_child_add(fib_node_type_t parent_type, |
| 392 | fib_node_index_t parent_index, |
| 393 | fib_node_type_t child_type, |
| 394 | fib_node_index_t child_index); |
| 395 | extern void fib_node_child_remove(fib_node_type_t parent_type, |
| 396 | fib_node_index_t parent_index, |
| 397 | fib_node_index_t sibling_index); |
| 398 | |
| 399 | extern fib_node_back_walk_rc_t fib_node_back_walk_one(fib_node_ptr_t *ptr, |
| 400 | fib_node_back_walk_ctx_t *ctx); |
| 401 | |
| 402 | extern u8* fib_node_children_format(fib_node_list_t list, |
| 403 | u8 *s); |
| 404 | |
| 405 | extern const char* fib_node_type_get_name(fib_node_type_t type); |
| 406 | |
| 407 | static inline int |
| 408 | fib_node_index_is_valid (fib_node_index_t ni) |
| 409 | { |
| 410 | return (FIB_NODE_INDEX_INVALID != ni); |
| 411 | } |
| 412 | |
| 413 | #endif |
| 414 | |