]> git.ipfire.org Git - thirdparty/bird.git/blame - nest/route.h
Fixes responsiveness for protocol shutdown.
[thirdparty/bird.git] / nest / route.h
CommitLineData
58ef912c
MM
1/*
2 * BIRD Internet Routing Daemon -- Routing Table
3 *
50fe90ed 4 * (c) 1998--2000 Martin Mares <mj@ucw.cz>
58ef912c
MM
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9#ifndef _BIRD_ROUTE_H_
10#define _BIRD_ROUTE_H_
11
0e02abfd 12#include "lib/lists.h"
1feea03e 13#include "lib/resource.h"
a2ccbb0b 14#include "lib/timer.h"
58ef912c 15
2326b001 16struct protocol;
4cc78c50 17struct proto;
730f2e2c
MM
18struct symbol;
19struct filter;
20struct cli;
2326b001 21
58ef912c
MM
22/*
23 * Generic data structure for storing network prefixes. Also used
3ab001b9 24 * for the master routing table. Currently implemented as a hash
62aa008a 25 * table.
58ef912c
MM
26 *
27 * Available operations:
28 * - insertion of new entry
29 * - deletion of entry
62aa008a 30 * - searching for entry by network prefix
3ab001b9 31 * - asynchronous retrieval of fib contents
58ef912c
MM
32 */
33
34struct fib_node {
3ab001b9
MM
35 struct fib_node *next; /* Next in hash chain */
36 struct fib_iterator *readers; /* List of readers of this node */
58ef912c 37 byte pxlen;
4c45595e 38 byte flags; /* User-defined */
12df4d90 39 byte x0, x1; /* User-defined */
d82fc18d 40 u32 uid; /* Unique ID based on hash */
3ab001b9
MM
41 ip_addr prefix; /* In host order */
42};
43
44struct fib_iterator { /* See lib/slists.h for an explanation */
45 struct fib_iterator *prev, *next; /* Must be synced with struct fib_node! */
3ab001b9
MM
46 byte efef; /* 0xff to distinguish between iterator and node */
47 byte pad[3];
0ba8a614 48 struct fib_node *node; /* Or NULL if freshly merged */
3ab001b9 49 unsigned int hash;
58ef912c
MM
50};
51
ce4aca09
MM
52typedef void (*fib_init_func)(struct fib_node *);
53
58ef912c 54struct fib {
62aa008a
MM
55 pool *fib_pool; /* Pool holding all our data */
56 slab *fib_slab; /* Slab holding all fib nodes */
57 struct fib_node **hash_table; /* Node hash table */
a8b60382 58 unsigned int hash_size; /* Number of hash table entries (a power of two) */
3ab001b9
MM
59 unsigned int hash_order; /* Binary logarithm of hash_size */
60 unsigned int hash_shift; /* 16 - hash_log */
a8b60382
MM
61 unsigned int entries; /* Number of entries */
62 unsigned int entries_min, entries_max;/* Entry count limits (else start rehashing) */
ce4aca09 63 fib_init_func init; /* Constructor */
58ef912c
MM
64};
65
ce4aca09 66void fib_init(struct fib *, pool *, unsigned node_size, unsigned hash_order, fib_init_func init);
58ef912c 67void *fib_find(struct fib *, ip_addr *, int); /* Find or return NULL if doesn't exist */
58ef912c 68void *fib_get(struct fib *, ip_addr *, int); /* Find or create new if nonexistent */
56d6c530 69void *fib_route(struct fib *, ip_addr, int); /* Longest-match routing lookup */
62aa008a 70void fib_delete(struct fib *, void *); /* Remove fib entry */
a8b60382 71void fib_free(struct fib *); /* Destroy the fib */
3ab001b9
MM
72void fib_check(struct fib *); /* Consistency check for debugging */
73
74void fit_init(struct fib_iterator *, struct fib *); /* Internal functions, don't call */
75struct fib_node *fit_get(struct fib *, struct fib_iterator *);
76void fit_put(struct fib_iterator *, struct fib_node *);
a8b60382 77
236d4eb8 78#define FIB_WALK(fib, z) do { \
62aa008a 79 struct fib_node *z, **ff = (fib)->hash_table; \
a8b60382
MM
80 unsigned int count = (fib)->hash_size; \
81 while (count--) \
236d4eb8
MM
82 for(z = *ff++; z; z=z->next)
83
84#define FIB_WALK_END } while (0)
a8b60382 85
3ab001b9
MM
86#define FIB_ITERATE_INIT(it, fib) fit_init(it, fib)
87
88#define FIB_ITERATE_START(fib, it, z) do { \
89 struct fib_node *z = fit_get(fib, it); \
90 unsigned int count = (fib)->hash_size; \
91 unsigned int hpos = (it)->hash; \
92 for(;;) { \
8abbde02
MM
93 if (!z) \
94 { \
95 if (++hpos >= count) \
96 break; \
97 z = (fib)->hash_table[hpos]; \
98 continue; \
99 }
3ab001b9 100
2569bc40 101#define FIB_ITERATE_END(z) z = z->next; } } while(0)
3ab001b9
MM
102
103#define FIB_ITERATE_PUT(it, z) fit_put(it, z)
104
58ef912c 105/*
08e2d625
MM
106 * Master Routing Tables. Generally speaking, each of them contains a FIB
107 * with each entry pointing to a list of route entries representing routes
108 * to given network (with the selected one at the head).
109 *
58ef912c 110 * Each of the RTE's contains variable data (the preference and protocol-dependent
62aa008a 111 * metrics) and a pointer to a route attribute block common for many routes).
08e2d625
MM
112 *
113 * It's guaranteed that there is at most one RTE for every (prefix,proto) pair.
58ef912c
MM
114 */
115
0e02abfd
MM
116struct rtable_config {
117 node n;
118 char *name;
119 struct rtable *table;
7de45ba4 120 struct proto_config *krt_attached; /* Kernel syncer attached to this table */
b9626ec6
MM
121 int gc_max_ops; /* Maximum number of operations before GC is run */
122 int gc_min_time; /* Minimum time between two consecutive GC runs */
0e02abfd
MM
123};
124
62aa008a 125typedef struct rtable {
0e02abfd 126 node n; /* Node in list of all tables */
62aa008a
MM
127 struct fib fib;
128 char *name; /* Name of this table */
0e02abfd 129 list hooks; /* List of announcement hooks */
9c11ec9e 130 int pipe_busy; /* Pipe loop detection */
50fe90ed 131 int use_count; /* Number of protocols using this table */
cfe34a31 132 struct hostcache *hostcache;
b9626ec6 133 struct rtable_config *config; /* Configuration of this table */
50fe90ed
MM
134 struct config *deleted; /* Table doesn't exist in current configuration,
135 * delete as soon as use_count becomes 0 and remove
136 * obstacle from this routing table.
137 */
cfe34a31 138 struct event *rt_event; /* Routing table event */
b9626ec6
MM
139 int gc_counter; /* Number of operations since last GC */
140 bird_clock_t gc_time; /* Time of last GC */
cfe34a31 141 byte gc_scheduled; /* GC is scheduled */
fb829de6 142 byte prune_state; /* Table prune state, 1 -> prune is running */
cfe34a31
OZ
143 byte hcu_scheduled; /* Hostcache update is scheduled */
144 byte nhu_state; /* Next Hop Update state */
fb829de6 145 struct fib_iterator prune_fit; /* Rtable prune FIB iterator */
cfe34a31 146 struct fib_iterator nhu_fit; /* Next Hop Update FIB iterator */
62aa008a
MM
147} rtable;
148
58ef912c 149typedef struct network {
3ab001b9 150 struct fib_node n; /* FIB flags reserved for kernel syncer */
58ef912c 151 struct rte *routes; /* Available routes for this network */
58ef912c
MM
152} net;
153
cfe34a31 154struct hostcache {
f2b76f2c
OZ
155 slab *slab; /* Slab holding all hostentries */
156 struct hostentry **hash_table; /* Hash table for hostentries */
157 unsigned hash_order, hash_shift;
158 unsigned hash_max, hash_min;
159 unsigned hash_items;
c477f489
OZ
160 linpool *lp; /* Linpool for trie */
161 struct f_trie *trie; /* Trie of prefixes that might affect hostentries */
162 list hostentries; /* List of all hostentries */
cfe34a31
OZ
163 byte update_hostcache;
164};
165
166struct hostentry {
cfe34a31 167 node ln;
1b180121
OZ
168 ip_addr addr; /* IP address of host, part of key */
169 ip_addr link; /* (link-local) IP address of host, used as gw
170 if host is directly attached */
f2b76f2c
OZ
171 struct rtable *tab; /* Dependent table, part of key*/
172 struct hostentry *next; /* Next in hash chain */
173 unsigned hash_key; /* Hash key */
cfe34a31 174 unsigned uc; /* Use count */
7e95c05d 175 struct rta *src; /* Source rta entry */
cfe34a31
OZ
176 ip_addr gw; /* Chosen next hop */
177 byte dest; /* Chosen route destination type (RTD_...) */
d1e146f2 178 u32 igp_metric; /* Chosen route IGP metric */
cfe34a31
OZ
179};
180
58ef912c
MM
181typedef struct rte {
182 struct rte *next;
a0762910 183 net *net; /* Network this RTE belongs to */
23ac9e9a 184 struct proto *sender; /* Protocol instance that sent the route to the routing table */
1b769b08 185 struct rta *attrs; /* Attributes of this route */
58ef912c 186 byte flags; /* Flags (REF_...) */
481f6985 187 byte pflags; /* Protocol-specific flags */
58ef912c 188 word pref; /* Route preference */
a2ccbb0b 189 bird_clock_t lastmod; /* Last modified */
58ef912c 190 union { /* Protocol-dependent data (metrics etc.) */
58ef912c
MM
191#ifdef CONFIG_RIP
192 struct {
feb6abe0 193 node garbage; /* List for garbage collection */
58ef912c 194 byte metric; /* RIP metric */
481f6985 195 u16 tag; /* External route tag */
ec21aecf 196 struct rip_entry *entry;
58ef912c
MM
197 } rip;
198#endif
199#ifdef CONFIG_OSPF
200 struct {
201 u32 metric1, metric2; /* OSPF Type 1 and Type 2 metrics */
481f6985 202 u32 tag; /* External route tag */
c27b2449 203 u32 router_id; /* Router that originated this route */
58ef912c 204 } ospf;
be4cd99a
OZ
205#endif
206#ifdef CONFIG_BGP
207 struct {
208 u8 suppressed; /* Used for deterministic MED comparison */
209 } bgp;
58ef912c 210#endif
c10421d3
MM
211 struct { /* Routes generated by krt sync (both temporary and inherited ones) */
212 s8 src; /* Alleged route source (see krt.h) */
213 u8 proto; /* Kernel source protocol ID */
214 u8 type; /* Kernel route type */
215 u8 seen; /* Seen during last scan */
216 u32 metric; /* Kernel metric */
217 } krt;
58ef912c
MM
218 } u;
219} rte;
220
e2dc2f30
MM
221#define REF_COW 1 /* Copy this rte on write */
222
23ac9e9a
OZ
223/* Types of route announcement, also used as flags */
224#define RA_OPTIMAL 1 /* Announcement of optimal route change */
225#define RA_ANY 2 /* Announcement of any route change */
226
0e02abfd 227struct config;
2326b001
MM
228
229void rt_init(void);
0e02abfd 230void rt_preconfig(struct config *);
50fe90ed
MM
231void rt_commit(struct config *new, struct config *old);
232void rt_lock_table(rtable *);
233void rt_unlock_table(rtable *);
b9626ec6 234void rt_setup(pool *, rtable *, char *, struct rtable_config *);
08e2d625
MM
235static inline net *net_find(rtable *tab, ip_addr addr, unsigned len) { return (net *) fib_find(&tab->fib, &addr, len); }
236static inline net *net_get(rtable *tab, ip_addr addr, unsigned len) { return (net *) fib_get(&tab->fib, &addr, len); }
2326b001 237rte *rte_find(net *net, struct proto *p);
1b769b08 238rte *rte_get_temp(struct rta *);
f98e2915 239void rte_update(rtable *tab, net *net, struct proto *p, struct proto *src, rte *new);
0e02abfd 240void rte_discard(rtable *tab, rte *old);
a0762910 241void rte_dump(rte *);
04925e90 242void rte_free(rte *);
e2dc2f30
MM
243rte *rte_do_cow(rte *);
244static inline rte * rte_cow(rte *r) { return (r->flags & REF_COW) ? rte_do_cow(r) : r; }
2326b001 245void rt_dump(rtable *);
a2ccbb0b 246void rt_dump_all(void);
ac5d8012
MM
247int rt_feed_baby(struct proto *p);
248void rt_feed_baby_abort(struct proto *p);
fb829de6
OZ
249void rt_schedule_prune_all(void);
250int rt_prune_loop(void);
b9626ec6 251struct rtable_config *rt_new_table(struct symbol *s);
2326b001 252
730f2e2c
MM
253struct rt_show_data {
254 ip_addr prefix;
255 unsigned pxlen;
256 rtable *table;
257 struct filter *filter;
258 int verbose;
259 struct fib_iterator fit;
4d176e14 260 struct proto *show_protocol;
ea2ae6dd
OZ
261 struct proto *export_protocol;
262 int export_mode, primary_only;
ce1da96e 263 struct config *running_on_config;
23693958 264 int net_counter, rt_counter, show_counter;
56d6c530 265 int stats, show_for;
730f2e2c
MM
266};
267void rt_show(struct rt_show_data *);
268
58ef912c
MM
269/*
270 * Route Attributes
271 *
272 * Beware: All standard BGP attributes must be represented here instead
273 * of making them local to the route. This is needed to ensure proper
274 * construction of BGP route attribute lists.
275 */
276
7e95c05d
OZ
277/* Multipath next-hop */
278struct mpnh {
279 ip_addr gw; /* Next hop */
280 struct iface *iface; /* Outgoing interface */
281 struct mpnh *next;
282 unsigned char weight;
283};
284
1b769b08 285typedef struct rta {
ee76a92a 286 struct rta *next, **pprev; /* Hash chain */
23ac9e9a 287 struct proto *proto; /* Protocol instance that originally created the route */
58ef912c
MM
288 unsigned uc; /* Use count */
289 byte source; /* Route source (RTS_...) */
a8b60382 290 byte scope; /* Route scope (SCOPE_... -- see ip.h) */
58ef912c
MM
291 byte cast; /* Casting type (RTC_...) */
292 byte dest; /* Route destination type (RTD_...) */
c8518ae1 293 byte flags; /* Route flags (RTF_...), now unused */
04925e90 294 byte aflags; /* Attribute cache flags (RTAF_...) */
ee76a92a 295 u16 hash_key; /* Hash over important fields */
d1e146f2 296 u32 igp_metric; /* IGP metric to next hop (for iBGP routes) */
58ef912c 297 ip_addr gw; /* Next hop */
a8b60382 298 ip_addr from; /* Advertising router */
cfe34a31 299 struct hostentry *hostentry; /* Hostentry for recursive next-hops */
58ef912c 300 struct iface *iface; /* Outgoing interface */
7e95c05d 301 struct mpnh *nexthops; /* Next-hops for multipath routes */
2727bb7c 302 struct ea_list *eattrs; /* Extended Attribute chain */
58ef912c
MM
303} rta;
304
618533af 305#define RTS_DUMMY 0 /* Dummy route to be removed soon */
58ef912c
MM
306#define RTS_STATIC 1 /* Normal static route */
307#define RTS_INHERIT 2 /* Route inherited from kernel */
308#define RTS_DEVICE 3 /* Device route */
309#define RTS_STATIC_DEVICE 4 /* Static device route */
310#define RTS_REDIRECT 5 /* Learned via redirect */
311#define RTS_RIP 6 /* RIP route */
beaf86e1 312#define RTS_OSPF 7 /* OSPF route */
8bf684ec 313#define RTS_OSPF_IA 8 /* OSPF inter-area route */
98ac6176
OF
314#define RTS_OSPF_EXT1 9 /* OSPF external route type 1 */
315#define RTS_OSPF_EXT2 10 /* OSPF external route type 2 */
316#define RTS_BGP 11 /* BGP route */
317#define RTS_PIPE 12 /* Inter-table wormhole */
58ef912c 318
58ef912c
MM
319#define RTC_UNICAST 0
320#define RTC_BROADCAST 1
321#define RTC_MULTICAST 2
322#define RTC_ANYCAST 3 /* IPv6 Anycast */
323
324#define RTD_ROUTER 0 /* Next hop is neighbor router */
325#define RTD_DEVICE 1 /* Points to device */
326#define RTD_BLACKHOLE 2 /* Silently drop packets */
327#define RTD_UNREACHABLE 3 /* Reject as unreachable */
328#define RTD_PROHIBIT 4 /* Administratively prohibited */
7e95c05d
OZ
329#define RTD_MULTIPATH 5 /* Multipath route (nexthops != NULL) */
330#define RTD_NONE 6 /* Invalid RTD */
58ef912c 331
32f95476
OZ
332 /* Flags for net->n.flags, used by kernel syncer */
333#define KRF_INSTALLED 0x80 /* This route should be installed in the kernel */
334#define KRF_SYNC_ERROR 0x40 /* Error during kernel table synchronization */
335
04925e90
MM
336#define RTAF_CACHED 1 /* This is a cached rta */
337
d1e146f2
OZ
338#define IGP_METRIC_UNKNOWN 0x80000000 /* Default igp_metric used when no other
339 protocol-specific metric is availabe */
340
58ef912c
MM
341/*
342 * Extended Route Attributes
343 */
344
345typedef struct eattr {
b77ae37d
MM
346 word id; /* EA_CODE(EAP_..., protocol-dependent ID) */
347 byte flags; /* Protocol-dependent flags */
348 byte type; /* Attribute type and several flags (EAF_...) */
58ef912c
MM
349 union {
350 u32 data;
351 struct adata *ptr; /* Attribute data elsewhere */
352 } u;
353} eattr;
354
355#define EAP_GENERIC 0 /* Generic attributes */
356#define EAP_BGP 1 /* BGP attributes */
9c9e49ac 357#define EAP_RIP 2 /* RIP */
5919c66e 358#define EAP_OSPF 3 /* OSPF */
71ca7716
OZ
359#define EAP_KRT 4 /* Kernel route attributes */
360#define EAP_MAX 5
58ef912c 361
b77ae37d
MM
362#define EA_CODE(proto,id) (((proto) << 8) | (id))
363#define EA_PROTO(ea) ((ea) >> 8)
364#define EA_ID(ea) ((ea) & 0xff)
365
ba5e5940
OZ
366#define EA_GEN_IGP_METRIC EA_CODE(EAP_GENERIC, 0)
367
8d24b689
MM
368#define EA_CODE_MASK 0xffff
369#define EA_ALLOW_UNDEF 0x10000 /* ea_find: allow EAF_TYPE_UNDEF */
370
b77ae37d
MM
371#define EAF_TYPE_MASK 0x0f /* Mask with this to get type */
372#define EAF_TYPE_INT 0x01 /* 32-bit signed integer number */
373#define EAF_TYPE_OPAQUE 0x02 /* Opaque byte string (not filterable) */
ca97b489
MM
374#define EAF_TYPE_IP_ADDRESS 0x04 /* IP address */
375#define EAF_TYPE_ROUTER_ID 0x05 /* Router ID (IPv4 address) */
b475c543
MM
376#define EAF_TYPE_AS_PATH 0x06 /* BGP AS path (encoding per RFC 1771:4.3) */
377#define EAF_TYPE_INT_SET 0x0a /* Set of u32's (e.g., a community list) */
42a0c054 378#define EAF_TYPE_EC_SET 0x0e /* Set of pairs of u32's - ext. community list */
8d24b689 379#define EAF_TYPE_UNDEF 0x0f /* `force undefined' entry */
b77ae37d 380#define EAF_EMBEDDED 0x01 /* Data stored in eattr.u.data (part of type spec) */
ca97b489 381#define EAF_VAR_LENGTH 0x02 /* Attribute length is variable (part of type spec) */
51a183af 382#define EAF_ORIGINATED 0x40 /* The attribute has originated locally */
9f4929e7 383#define EAF_TEMP 0x80 /* A temporary attribute (the one stored in the tmp attr list) */
58ef912c
MM
384
385struct adata {
b475c543 386 unsigned int length; /* Length of data */
58ef912c
MM
387 byte data[0];
388};
389
390typedef struct ea_list {
391 struct ea_list *next; /* In case we have an override list */
b77ae37d 392 byte flags; /* Flags: EALF_... */
58ef912c 393 byte rfu;
b77ae37d 394 word count; /* Number of attributes */
58ef912c
MM
395 eattr attrs[0]; /* Attribute definitions themselves */
396} ea_list;
397
b77ae37d
MM
398#define EALF_SORTED 1 /* Attributes are sorted by code */
399#define EALF_BISECT 2 /* Use interval bisection for searching */
400#define EALF_CACHED 4 /* Attributes belonging to cached rta */
58ef912c 401
b77ae37d 402eattr *ea_find(ea_list *, unsigned ea);
c0100454 403int ea_get_int(ea_list *, unsigned ea, int def);
b77ae37d
MM
404void ea_dump(ea_list *);
405void ea_sort(ea_list *); /* Sort entries in all sub-lists */
6f57dcc0 406unsigned ea_scan(ea_list *); /* How many bytes do we need for merged ea_list */
b77ae37d 407void ea_merge(ea_list *from, ea_list *to); /* Merge sub-lists to allocated buffer */
6f57dcc0
MM
408int ea_same(ea_list *x, ea_list *y); /* Test whether two ea_lists are identical */
409unsigned int ea_hash(ea_list *e); /* Calculate 16-bit hash value */
ce1da96e 410ea_list *ea_append(ea_list *to, ea_list *what);
58ef912c 411
7e95c05d
OZ
412int mpnh__same(struct mpnh *x, struct mpnh *y); /* Compare multipath nexthops */
413static inline int mpnh_same(struct mpnh *x, struct mpnh *y)
414{ return (x == y) || mpnh__same(x, y); }
415
2326b001
MM
416void rta_init(void);
417rta *rta_lookup(rta *); /* Get rta equivalent to this one, uc++ */
418static inline rta *rta_clone(rta *r) { r->uc++; return r; }
b77ae37d
MM
419void rta__free(rta *r);
420static inline void rta_free(rta *r) { if (r && !--r->uc) rta__free(r); }
2326b001
MM
421void rta_dump(rta *);
422void rta_dump_all(void);
ce1da96e 423void rta_show(struct cli *, rta *, ea_list *);
1b180121 424void rta_set_recursive_next_hop(rtable *dep, rta *a, rtable *tab, ip_addr *gw, ip_addr *ll);
cfe34a31
OZ
425
426/*
427 * rta_set_recursive_next_hop() acquires hostentry from hostcache and
428 * fills rta->hostentry field. New hostentry has zero use
429 * count. Cached rta locks its hostentry (increases its use count),
430 * uncached rta does not lock it. Hostentry with zero use count is
431 * removed asynchronously during host cache update, therefore it is
7e95c05d
OZ
432 * safe to hold such hostentry temorarily. Hostentry holds a lock for
433 * a 'source' rta, mainly to share multipath nexthops. There is no
434 * need to hold a lock for hostentry->dep table, because that table
435 * contains routes responsible for that hostentry, and therefore is
436 * non-empty if given hostentry has non-zero use count. The protocol
437 * responsible for routes with recursive next hops should also hold a
438 * lock for a table governing that routes (argument tab to
439 * rta_set_recursive_next_hop()).
cfe34a31
OZ
440 */
441
442static inline void rt_lock_hostentry(struct hostentry *he) { if (he) he->uc++; }
443static inline void rt_unlock_hostentry(struct hostentry *he) { if (he) he->uc--; }
444
2326b001 445
3991d84e
MM
446extern struct protocol *attr_class_to_protocol[EAP_MAX];
447
a8b60382
MM
448/*
449 * Default protocol preferences
450 */
451
452#define DEF_PREF_DIRECT 240 /* Directly connected */
453#define DEF_PREF_STATIC 200 /* Static route */
916c8c0a 454#define DEF_PREF_OSPF 150 /* OSPF intra-area, inter-area and type 1 external routes */
a8b60382
MM
455#define DEF_PREF_RIP 120 /* RIP */
456#define DEF_PREF_BGP 100 /* BGP */
beaf86e1 457#define DEF_PREF_PIPE 70 /* Routes piped from other tables */
916c8c0a 458#define DEF_PREF_INHERITED 10 /* Routes inherited from other routing daemons */
a8b60382 459
af582c48
OZ
460
461/*
462 * Route Origin Authorization
463 */
464
465struct roa_item {
466 u32 asn;
467 byte maxlen;
468 byte src;
469 struct roa_item *next;
470};
471
472struct roa_node {
473 struct fib_node n;
474 struct roa_item *items;
475 // u32 cached_asn;
476};
477
478struct roa_table {
479 node n; /* Node in roa_table_list */
480 struct fib fib;
481 char *name; /* Name of this ROA table */
482 struct roa_table_config *cf; /* Configuration of this ROA table */
483};
484
485struct roa_item_config {
486 ip_addr prefix;
487 byte pxlen, maxlen;
488 u32 asn;
489 struct roa_item_config *next;
490};
491
492struct roa_table_config {
493 node n; /* Node in config->rpa_tables */
494 char *name; /* Name of this ROA table */
495 struct roa_table *table;
496
497 struct roa_item_config *roa_items; /* Preconfigured ROA items */
498
499 // char *filename;
500 // int gc_max_ops; /* Maximum number of operations before GC is run */
501 // int gc_min_time; /* Minimum time between two consecutive GC runs */
502};
503
504struct roa_show_data {
505 struct fib_iterator fit;
506 struct roa_table *table;
507 ip_addr prefix;
508 byte pxlen;
509 byte mode; /* ROA_SHOW_* values */
510 u32 asn; /* Filter ASN, 0 -> all */
511};
512
513#define ROA_UNKNOWN 0
514#define ROA_VALID 1
515#define ROA_INVALID 2
516
517#define ROA_SRC_ANY 0
518#define ROA_SRC_CONFIG 1
519#define ROA_SRC_DYNAMIC 2
520
521#define ROA_SHOW_ALL 0
522#define ROA_SHOW_PX 1
523#define ROA_SHOW_IN 2
524#define ROA_SHOW_FOR 3
525
526extern struct roa_table *roa_table_default;
527
528void roa_add_item(struct roa_table *t, ip_addr prefix, byte pxlen, byte maxlen, u32 asn, byte src);
529void roa_delete_item(struct roa_table *t, ip_addr prefix, byte pxlen, byte maxlen, u32 asn, byte src);
530void roa_flush(struct roa_table *t, byte src);
531byte roa_check(struct roa_table *t, ip_addr prefix, byte pxlen, u32 asn);
532struct roa_table_config * roa_new_table_config(struct symbol *s);
533void roa_add_item_config(struct roa_table_config *rtc, ip_addr prefix, byte pxlen, byte maxlen, u32 asn);
534void roa_init(void);
535void roa_preconfig(struct config *c);
536void roa_commit(struct config *new, struct config *old);
537void roa_show(struct roa_show_data *d);
538
539
58ef912c 540#endif