1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Routing Table
* Copyright (C) 1998 Kunihiro Ishiguro
*/
#ifndef _ZEBRA_TABLE_H
#define _ZEBRA_TABLE_H
#include "memory.h"
#include "hash.h"
#include "prefix.h"
#include "typesafe.h"
#ifdef __cplusplus
extern "C" {
#endif
DECLARE_MTYPE(ROUTE_NODE);
/*
* Forward declarations.
*/
struct route_node;
struct route_table;
/*
* route_table_delegate_t
*
* Function vector that can be used by a client to customize the
* behavior of one or more route tables.
*/
typedef const struct route_table_delegate_t_ route_table_delegate_t;
typedef struct route_node *(*route_table_create_node_func_t)(
route_table_delegate_t *, struct route_table *);
typedef void (*route_table_destroy_node_func_t)(route_table_delegate_t *,
struct route_table *,
struct route_node *);
struct route_table_delegate_t_ {
route_table_create_node_func_t create_node;
route_table_destroy_node_func_t destroy_node;
};
PREDECL_HASH(rn_hash_node);
/* Routing table top structure. */
struct route_table {
struct route_node *top;
struct rn_hash_node_head hash;
/*
* Delegate that performs certain functions for this table.
*/
route_table_delegate_t *delegate;
void (*cleanup)(struct route_table *, struct route_node *);
unsigned long count;
/*
* User data.
*/
void *info;
};
/*
* node->link is really internal to the table code and should not be
* accessed by outside code. We don't have any writers (yay), though some
* readers are left to be fixed.
*
* rationale: we need to add a hash table in parallel, to speed up
* exact-match lookups.
*
* same really applies for node->parent, though that's less of an issue.
* table->link should be - and is - NEVER written by outside code
*/
#ifdef FRR_COMPILING_TABLE_C
#define table_rdonly(x) x
#define table_internal(x) x
#else
#define table_rdonly(x) const x
#define table_internal(x) \
const x __attribute__( \
(deprecated("this should only be accessed by lib/table.c")))
/* table_internal is for node->link and node->lock, once we have done
* something about remaining accesses */
#endif
/* so... the problem with this is that "const" doesn't mean "readonly".
* It in fact may allow the compiler to optimize based on the assumption
* that the value doesn't change. Hence, since the only purpose of this
* is to aid in development, don't put the "const" in release builds.
*
* (I haven't seen this actually break, but GCC and LLVM are getting ever
* more aggressive in optimizing...)
*/
#ifndef DEV_BUILD
#undef table_rdonly
#define table_rdonly(x) x
#endif
/*
* Macro that defines all fields in a route node.
*/
#define ROUTE_NODE_FIELDS \
/* Actual prefix of this radix. */ \
struct prefix p; \
\
/* Tree link. */ \
struct route_table *table_rdonly(table); \
struct route_node *table_rdonly(parent); \
struct route_node *table_rdonly(link[2]); \
\
/* Lock of this radix */ \
unsigned int table_rdonly(lock); \
\
struct rn_hash_node_item nodehash; \
/* Each node of route. */ \
void *info; \
/* Each routing entry. */
struct route_node {
ROUTE_NODE_FIELDS
#define l_left link[0]
#define l_right link[1]
};
typedef struct route_table_iter_t_ route_table_iter_t;
typedef enum {
RT_ITER_STATE_INIT,
RT_ITER_STATE_ITERATING,
RT_ITER_STATE_PAUSED,
RT_ITER_STATE_DONE
} route_table_iter_state_t;
/*
* route_table_iter_t
*
* Structure that holds state for iterating over a route table.
*/
struct route_table_iter_t_ {
route_table_iter_state_t state;
/*
* Routing table that we are iterating over. The caller must ensure
* that that table outlives the iterator.
*/
struct route_table *table;
/*
* The node that the iterator is currently on.
*/
struct route_node *current;
/*
* The last prefix that the iterator processed before it was paused.
*/
struct prefix pause_prefix;
};
/* Prototypes. */
extern struct route_table *route_table_init(void);
extern struct route_table *
route_table_init_with_delegate(route_table_delegate_t *delegate);
extern route_table_delegate_t *route_table_get_default_delegate(void);
static inline void *route_table_get_info(struct route_table *table)
{
return table->info;
}
static inline void route_table_set_info(struct route_table *table, void *d)
{
table->info = d;
}
extern void route_table_finish(struct route_table *table);
extern struct route_node *route_top(struct route_table *table);
extern struct route_node *route_next(struct route_node *node);
extern struct route_node *route_next_until(struct route_node *node,
const struct route_node *limit);
extern struct route_node *route_node_get(struct route_table *table,
union prefixconstptr pu);
extern struct route_node *route_node_lookup(struct route_table *table,
union prefixconstptr pu);
extern struct route_node *route_node_lookup_maynull(struct route_table *table,
union prefixconstptr pu);
extern struct route_node *route_node_match(struct route_table *table,
union prefixconstptr pu);
extern unsigned long route_table_count(struct route_table *table);
extern struct route_node *route_node_create(route_table_delegate_t *delegate,
struct route_table *table);
extern void route_node_delete(struct route_node *node);
extern void route_node_destroy(route_table_delegate_t *delegate,
struct route_table *table,
struct route_node *node);
extern struct route_node *route_table_get_next(struct route_table *table,
union prefixconstptr pu);
extern int route_table_prefix_iter_cmp(const struct prefix *p1,
const struct prefix *p2);
/*
* Iterator functions.
*/
extern void route_table_iter_init(route_table_iter_t *iter,
struct route_table *table);
extern void route_table_iter_pause(route_table_iter_t *iter);
extern void route_table_iter_cleanup(route_table_iter_t *iter);
/*
* Inline functions.
*/
/* Lock node. */
static inline struct route_node *route_lock_node(struct route_node *node)
{
(*(unsigned *)&node->lock)++;
return node;
}
/* Unlock node. */
static inline void route_unlock_node(struct route_node *node)
{
assert(node->lock > 0);
(*(unsigned *)&node->lock)--;
if (node->lock == 0)
route_node_delete(node);
}
static inline unsigned int route_node_get_lock_count(struct route_node *node)
{
return node->lock;
}
/*
* route_table_iter_next
*
* Get the next node in the tree.
*/
static inline struct route_node *route_table_iter_next(route_table_iter_t *iter)
{
struct route_node *node;
switch (iter->state) {
case RT_ITER_STATE_INIT:
/*
* We're just starting the iteration.
*/
node = route_top(iter->table);
break;
case RT_ITER_STATE_ITERATING:
node = route_next(iter->current);
break;
case RT_ITER_STATE_PAUSED:
/*
* Start with the node following pause_prefix.
*/
node = route_table_get_next(iter->table, &iter->pause_prefix);
break;
case RT_ITER_STATE_DONE:
return NULL;
default:
/* Suppress uninitialized variable warning */
node = NULL;
assert(0);
}
iter->current = node;
if (node)
iter->state = RT_ITER_STATE_ITERATING;
else
iter->state = RT_ITER_STATE_DONE;
return node;
}
/*
* route_table_iter_is_done
*
* Returns true if the iteration is complete.
*/
static inline int route_table_iter_is_done(route_table_iter_t *iter)
{
return iter->state == RT_ITER_STATE_DONE;
}
/*
* route_table_iter_started
*
* Returns true if this iterator has started iterating over the tree.
*/
static inline int route_table_iter_started(route_table_iter_t *iter)
{
return iter->state != RT_ITER_STATE_INIT;
}
#ifdef _FRR_ATTRIBUTE_PRINTFRR
#pragma FRR printfrr_ext "%pRN" (struct route_node *)
#endif
#ifdef __cplusplus
}
#endif
#endif /* _ZEBRA_TABLE_H */
|