]> git.ipfire.org Git - thirdparty/bird.git/blame - nest/route.h
Rewrite roa_check() for integrated BIRD
[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"
c0adf7e9 15#include "nest/protocol.h"
58ef912c 16
2326b001 17struct protocol;
4cc78c50 18struct proto;
730f2e2c
MM
19struct symbol;
20struct filter;
21struct cli;
2326b001 22
58ef912c
MM
23/*
24 * Generic data structure for storing network prefixes. Also used
3ab001b9 25 * for the master routing table. Currently implemented as a hash
62aa008a 26 * table.
58ef912c
MM
27 *
28 * Available operations:
29 * - insertion of new entry
30 * - deletion of entry
62aa008a 31 * - searching for entry by network prefix
3ab001b9 32 * - asynchronous retrieval of fib contents
58ef912c
MM
33 */
34
35struct fib_node {
3ab001b9
MM
36 struct fib_node *next; /* Next in hash chain */
37 struct fib_iterator *readers; /* List of readers of this node */
fe9f1a6d 38 byte flags; /* User-defined, will be removed */
fe9f1a6d 39 net_addr addr[0];
3ab001b9
MM
40};
41
42struct fib_iterator { /* See lib/slists.h for an explanation */
43 struct fib_iterator *prev, *next; /* Must be synced with struct fib_node! */
3ab001b9
MM
44 byte efef; /* 0xff to distinguish between iterator and node */
45 byte pad[3];
0ba8a614 46 struct fib_node *node; /* Or NULL if freshly merged */
ae80a2de 47 uint hash;
58ef912c
MM
48};
49
fe9f1a6d 50typedef void (*fib_init_fn)(void *);
ce4aca09 51
58ef912c 52struct fib {
62aa008a
MM
53 pool *fib_pool; /* Pool holding all our data */
54 slab *fib_slab; /* Slab holding all fib nodes */
55 struct fib_node **hash_table; /* Node hash table */
ae80a2de
PT
56 uint hash_size; /* Number of hash table entries (a power of two) */
57 uint hash_order; /* Binary logarithm of hash_size */
04632fd7 58 uint hash_shift; /* 32 - hash_order */
fe9f1a6d
OZ
59 uint addr_type; /* Type of address data stored in fib (NET_*) */
60 uint node_size; /* XXXX */
61 uint node_offset; /* XXXX */
ae80a2de
PT
62 uint entries; /* Number of entries */
63 uint entries_min, entries_max; /* Entry count limits (else start rehashing) */
fe9f1a6d 64 fib_init_fn init; /* Constructor */
58ef912c
MM
65};
66
600998fc
OZ
67static inline void * fib_node_to_user(struct fib *f, struct fib_node *e)
68{ return e ? (void *) ((char *) e - f->node_offset) : NULL; }
69
70static inline struct fib_node * fib_user_to_node(struct fib *f, void *e)
71{ return e ? (void *) ((char *) e + f->node_offset) : NULL; }
72
fe9f1a6d 73void fib_init(struct fib *f, pool *p, uint addr_type, uint node_size, uint node_offset, uint hash_order, fib_init_fn init);
0f7d5b1a 74void *fib_find(struct fib *, const net_addr *); /* Find or return NULL if doesn't exist */
0264ccf6 75void *fib_get_chain(struct fib *f, const net_addr *a); /* Find first node in linked list from hash table */
0f7d5b1a
OZ
76void *fib_get(struct fib *, const net_addr *); /* Find or create new if nonexistent */
77void *fib_route(struct fib *, const net_addr *); /* Longest-match routing lookup */
62aa008a 78void fib_delete(struct fib *, void *); /* Remove fib entry */
a8b60382 79void fib_free(struct fib *); /* Destroy the fib */
3ab001b9
MM
80void fib_check(struct fib *); /* Consistency check for debugging */
81
82void fit_init(struct fib_iterator *, struct fib *); /* Internal functions, don't call */
83struct fib_node *fit_get(struct fib *, struct fib_iterator *);
84void fit_put(struct fib_iterator *, struct fib_node *);
8465dccb
OZ
85void fit_put_next(struct fib *f, struct fib_iterator *i, struct fib_node *n, uint hpos);
86
600998fc
OZ
87
88#define FIB_WALK(fib, type, z) do { \
89 struct fib_node *fn_, **ff_ = (fib)->hash_table; \
90 uint count_ = (fib)->hash_size; \
91 type *z; \
92 while (count_--) \
93 for (fn_ = *ff_++; z = fib_node_to_user(fib, fn_); fn_=fn_->next)
236d4eb8
MM
94
95#define FIB_WALK_END } while (0)
a8b60382 96
3ab001b9
MM
97#define FIB_ITERATE_INIT(it, fib) fit_init(it, fib)
98
600998fc
OZ
99#define FIB_ITERATE_START(fib, it, type, z) do { \
100 struct fib_node *fn_ = fit_get(fib, it); \
101 uint count_ = (fib)->hash_size; \
102 uint hpos_ = (it)->hash; \
103 type *z; \
3ab001b9 104 for(;;) { \
600998fc 105 if (!fn_) \
8abbde02 106 { \
600998fc 107 if (++hpos_ >= count_) \
8abbde02 108 break; \
600998fc 109 fn_ = (fib)->hash_table[hpos_]; \
8abbde02 110 continue; \
600998fc
OZ
111 } \
112 z = fib_node_to_user(fib, fn_);
3ab001b9 113
600998fc 114#define FIB_ITERATE_END fn_ = fn_->next; } } while(0)
3ab001b9 115
600998fc 116#define FIB_ITERATE_PUT(it) fit_put(it, fn_)
3ab001b9 117
600998fc 118#define FIB_ITERATE_PUT_NEXT(it, fib) fit_put_next(fib, it, fn_, hpos_)
8465dccb
OZ
119
120#define FIB_ITERATE_UNLINK(it, fib) fit_get(fib, it)
121
122
58ef912c 123/*
08e2d625
MM
124 * Master Routing Tables. Generally speaking, each of them contains a FIB
125 * with each entry pointing to a list of route entries representing routes
126 * to given network (with the selected one at the head).
127 *
58ef912c 128 * Each of the RTE's contains variable data (the preference and protocol-dependent
62aa008a 129 * metrics) and a pointer to a route attribute block common for many routes).
08e2d625
MM
130 *
131 * It's guaranteed that there is at most one RTE for every (prefix,proto) pair.
58ef912c
MM
132 */
133
0e02abfd
MM
134struct rtable_config {
135 node n;
136 char *name;
137 struct rtable *table;
7de45ba4 138 struct proto_config *krt_attached; /* Kernel syncer attached to this table */
fe9f1a6d 139 uint addr_type; /* Type of address data stored in table (NET_*) */
b9626ec6
MM
140 int gc_max_ops; /* Maximum number of operations before GC is run */
141 int gc_min_time; /* Minimum time between two consecutive GC runs */
26822d8f 142 byte sorted; /* Routes of network are sorted according to rte_better() */
0e02abfd
MM
143};
144
62aa008a 145typedef struct rtable {
0e02abfd 146 node n; /* Node in list of all tables */
62aa008a
MM
147 struct fib fib;
148 char *name; /* Name of this table */
0e02abfd 149 list hooks; /* List of announcement hooks */
fe9f1a6d 150 uint addr_type; /* Type of address data stored in table (NET_*) */
9c11ec9e 151 int pipe_busy; /* Pipe loop detection */
50fe90ed 152 int use_count; /* Number of protocols using this table */
cfe34a31 153 struct hostcache *hostcache;
b9626ec6 154 struct rtable_config *config; /* Configuration of this table */
50fe90ed
MM
155 struct config *deleted; /* Table doesn't exist in current configuration,
156 * delete as soon as use_count becomes 0 and remove
157 * obstacle from this routing table.
158 */
cfe34a31 159 struct event *rt_event; /* Routing table event */
b9626ec6
MM
160 int gc_counter; /* Number of operations since last GC */
161 bird_clock_t gc_time; /* Time of last GC */
cfe34a31 162 byte gc_scheduled; /* GC is scheduled */
9135c1f0 163 byte prune_state; /* Table prune state, 1 -> scheduled, 2-> running */
cfe34a31
OZ
164 byte hcu_scheduled; /* Hostcache update is scheduled */
165 byte nhu_state; /* Next Hop Update state */
fb829de6 166 struct fib_iterator prune_fit; /* Rtable prune FIB iterator */
cfe34a31 167 struct fib_iterator nhu_fit; /* Next Hop Update FIB iterator */
62aa008a
MM
168} rtable;
169
0c791f87
OZ
170#define RPS_NONE 0
171#define RPS_SCHEDULED 1
172#define RPS_RUNNING 2
173
58ef912c 174typedef struct network {
58ef912c 175 struct rte *routes; /* Available routes for this network */
fe9f1a6d 176 struct fib_node n; /* FIB flags reserved for kernel syncer */
58ef912c
MM
177} net;
178
cfe34a31 179struct hostcache {
f2b76f2c
OZ
180 slab *slab; /* Slab holding all hostentries */
181 struct hostentry **hash_table; /* Hash table for hostentries */
182 unsigned hash_order, hash_shift;
183 unsigned hash_max, hash_min;
184 unsigned hash_items;
c477f489
OZ
185 linpool *lp; /* Linpool for trie */
186 struct f_trie *trie; /* Trie of prefixes that might affect hostentries */
187 list hostentries; /* List of all hostentries */
cfe34a31
OZ
188 byte update_hostcache;
189};
190
191struct hostentry {
cfe34a31 192 node ln;
1b180121
OZ
193 ip_addr addr; /* IP address of host, part of key */
194 ip_addr link; /* (link-local) IP address of host, used as gw
195 if host is directly attached */
acb04cfd 196 struct rtable *tab; /* Dependent table, part of key */
f2b76f2c
OZ
197 struct hostentry *next; /* Next in hash chain */
198 unsigned hash_key; /* Hash key */
cfe34a31 199 unsigned uc; /* Use count */
7e95c05d 200 struct rta *src; /* Source rta entry */
cfe34a31
OZ
201 ip_addr gw; /* Chosen next hop */
202 byte dest; /* Chosen route destination type (RTD_...) */
d1e146f2 203 u32 igp_metric; /* Chosen route IGP metric */
cfe34a31
OZ
204};
205
58ef912c
MM
206typedef struct rte {
207 struct rte *next;
a0762910 208 net *net; /* Network this RTE belongs to */
c0adf7e9 209 struct announce_hook *sender; /* Announce hook used to send the route to the routing table */
1b769b08 210 struct rta *attrs; /* Attributes of this route */
58ef912c 211 byte flags; /* Flags (REF_...) */
481f6985 212 byte pflags; /* Protocol-specific flags */
58ef912c 213 word pref; /* Route preference */
a2ccbb0b 214 bird_clock_t lastmod; /* Last modified */
58ef912c 215 union { /* Protocol-dependent data (metrics etc.) */
58ef912c
MM
216#ifdef CONFIG_RIP
217 struct {
8465dccb
OZ
218 struct iface *from; /* Incoming iface */
219 u8 metric; /* RIP metric */
481f6985 220 u16 tag; /* External route tag */
58ef912c
MM
221 } rip;
222#endif
223#ifdef CONFIG_OSPF
224 struct {
225 u32 metric1, metric2; /* OSPF Type 1 and Type 2 metrics */
481f6985 226 u32 tag; /* External route tag */
c27b2449 227 u32 router_id; /* Router that originated this route */
58ef912c 228 } ospf;
be4cd99a
OZ
229#endif
230#ifdef CONFIG_BGP
231 struct {
232 u8 suppressed; /* Used for deterministic MED comparison */
233 } bgp;
58ef912c 234#endif
c10421d3
MM
235 struct { /* Routes generated by krt sync (both temporary and inherited ones) */
236 s8 src; /* Alleged route source (see krt.h) */
237 u8 proto; /* Kernel source protocol ID */
238 u8 type; /* Kernel route type */
239 u8 seen; /* Seen during last scan */
240 u32 metric; /* Kernel metric */
241 } krt;
58ef912c
MM
242 } u;
243} rte;
244
00a09f3c 245#define REF_COW 1 /* Copy this rte on write */
15550957 246#define REF_FILTERED 2 /* Route is rejected by import filter */
0c791f87
OZ
247#define REF_STALE 4 /* Route is stale in a refresh cycle */
248#define REF_DISCARD 8 /* Route is scheduled for discard */
cf98be7b
OZ
249
250/* Route is valid for propagation (may depend on other flags in the future), accepts NULL */
15550957 251static inline int rte_is_valid(rte *r) { return r && !(r->flags & REF_FILTERED); }
cf98be7b 252
15550957
OZ
253/* Route just has REF_FILTERED flag */
254static inline int rte_is_filtered(rte *r) { return !!(r->flags & REF_FILTERED); }
cf98be7b 255
e2dc2f30 256
23ac9e9a 257/* Types of route announcement, also used as flags */
00a09f3c
OZ
258#define RA_OPTIMAL 1 /* Announcement of optimal route change */
259#define RA_ACCEPTED 2 /* Announcement of first accepted route */
260#define RA_ANY 3 /* Announcement of any route change */
8d9eef17 261#define RA_MERGED 4 /* Announcement of optimal route merged with next ones */
23ac9e9a 262
36da2857
OZ
263/* Return value of import_control() callback */
264#define RIC_ACCEPT 1 /* Accepted by protocol */
265#define RIC_PROCESS 0 /* Process it through import filter */
266#define RIC_REJECT -1 /* Rejected by protocol */
267#define RIC_DROP -2 /* Silently dropped by protocol */
268
0e02abfd 269struct config;
2326b001
MM
270
271void rt_init(void);
0e02abfd 272void rt_preconfig(struct config *);
50fe90ed
MM
273void rt_commit(struct config *new, struct config *old);
274void rt_lock_table(rtable *);
275void rt_unlock_table(rtable *);
b9626ec6 276void rt_setup(pool *, rtable *, char *, struct rtable_config *);
0264ccf6
PT
277static inline net *net_find(rtable *tab, const net_addr *addr) { return (net *) fib_find(&tab->fib, addr); }
278static inline net *net_get(rtable *tab, const net_addr *addr) { return (net *) fib_get(&tab->fib, addr); }
279byte net_roa_check(rtable *tab, const net_addr *n, u32 asn);
fe9f1a6d 280
094d2bdb 281rte *rte_find(net *net, struct rte_src *src);
1b769b08 282rte *rte_get_temp(struct rta *);
094d2bdb
OZ
283void rte_update2(struct announce_hook *ah, net *net, rte *new, struct rte_src *src);
284static inline void rte_update(struct proto *p, net *net, rte *new) { rte_update2(p->main_ahook, net, new, p->main_source); }
0e02abfd 285void rte_discard(rtable *tab, rte *old);
fe9f1a6d 286int rt_examine(rtable *t, net_addr *a, struct proto *p, struct filter *filter);
8d9eef17 287rte *rt_export_merged(struct announce_hook *ah, net *net, rte **rt_free, struct ea_list **tmpa, int silent);
0c791f87
OZ
288void rt_refresh_begin(rtable *t, struct announce_hook *ah);
289void rt_refresh_end(rtable *t, struct announce_hook *ah);
a0762910 290void rte_dump(rte *);
04925e90 291void rte_free(rte *);
e2dc2f30
MM
292rte *rte_do_cow(rte *);
293static inline rte * rte_cow(rte *r) { return (r->flags & REF_COW) ? rte_do_cow(r) : r; }
8d9eef17 294rte *rte_cow_rta(rte *r, linpool *lp);
2326b001 295void rt_dump(rtable *);
a2ccbb0b 296void rt_dump_all(void);
ac5d8012
MM
297int rt_feed_baby(struct proto *p);
298void rt_feed_baby_abort(struct proto *p);
fb829de6 299int rt_prune_loop(void);
fe9f1a6d 300struct rtable_config *rt_new_table(struct symbol *s, uint addr_type);
2326b001 301
0c791f87
OZ
302static inline void
303rt_mark_for_prune(rtable *tab)
304{
305 if (tab->prune_state == RPS_RUNNING)
306 fit_get(&tab->fib, &tab->prune_fit);
307
308 tab->prune_state = RPS_SCHEDULED;
309}
310
730f2e2c 311struct rt_show_data {
04632fd7 312 net_addr *addr;
730f2e2c
MM
313 rtable *table;
314 struct filter *filter;
315 int verbose;
316 struct fib_iterator fit;
4d176e14 317 struct proto *show_protocol;
ea2ae6dd 318 struct proto *export_protocol;
15550957 319 int export_mode, primary_only, filtered;
ce1da96e 320 struct config *running_on_config;
23693958 321 int net_counter, rt_counter, show_counter;
56d6c530 322 int stats, show_for;
730f2e2c
MM
323};
324void rt_show(struct rt_show_data *);
325
7aa80901
OZ
326/* Value of export_mode in struct rt_show_data */
327#define RSEM_NONE 0 /* Export mode not used */
328#define RSEM_PREEXPORT 1 /* Routes ready for export, before filtering */
329#define RSEM_EXPORT 2 /* Routes accepted by export filter */
330#define RSEM_NOEXPORT 3 /* Routes rejected by export filter */
331
58ef912c
MM
332/*
333 * Route Attributes
334 *
335 * Beware: All standard BGP attributes must be represented here instead
336 * of making them local to the route. This is needed to ensure proper
337 * construction of BGP route attribute lists.
338 */
339
7e95c05d
OZ
340/* Multipath next-hop */
341struct mpnh {
342 ip_addr gw; /* Next hop */
343 struct iface *iface; /* Outgoing interface */
344 struct mpnh *next;
e348ef01 345 byte weight;
7e95c05d
OZ
346};
347
094d2bdb
OZ
348struct rte_src {
349 struct rte_src *next; /* Hash chain */
350 struct proto *proto; /* Protocol the source is based on */
351 u32 private_id; /* Private ID, assigned by the protocol */
352 u32 global_id; /* Globally unique ID of the source */
353 unsigned uc; /* Use count */
354};
355
356
1b769b08 357typedef struct rta {
ee76a92a 358 struct rta *next, **pprev; /* Hash chain */
094d2bdb 359 struct rte_src *src; /* Route source that created the route */
58ef912c
MM
360 unsigned uc; /* Use count */
361 byte source; /* Route source (RTS_...) */
a8b60382 362 byte scope; /* Route scope (SCOPE_... -- see ip.h) */
58ef912c
MM
363 byte cast; /* Casting type (RTC_...) */
364 byte dest; /* Route destination type (RTD_...) */
c8518ae1 365 byte flags; /* Route flags (RTF_...), now unused */
04925e90 366 byte aflags; /* Attribute cache flags (RTAF_...) */
ee76a92a 367 u16 hash_key; /* Hash over important fields */
d1e146f2 368 u32 igp_metric; /* IGP metric to next hop (for iBGP routes) */
58ef912c 369 ip_addr gw; /* Next hop */
a8b60382 370 ip_addr from; /* Advertising router */
cfe34a31 371 struct hostentry *hostentry; /* Hostentry for recursive next-hops */
58ef912c 372 struct iface *iface; /* Outgoing interface */
7e95c05d 373 struct mpnh *nexthops; /* Next-hops for multipath routes */
2727bb7c 374 struct ea_list *eattrs; /* Extended Attribute chain */
58ef912c
MM
375} rta;
376
618533af 377#define RTS_DUMMY 0 /* Dummy route to be removed soon */
58ef912c
MM
378#define RTS_STATIC 1 /* Normal static route */
379#define RTS_INHERIT 2 /* Route inherited from kernel */
380#define RTS_DEVICE 3 /* Device route */
381#define RTS_STATIC_DEVICE 4 /* Static device route */
382#define RTS_REDIRECT 5 /* Learned via redirect */
383#define RTS_RIP 6 /* RIP route */
beaf86e1 384#define RTS_OSPF 7 /* OSPF route */
8bf684ec 385#define RTS_OSPF_IA 8 /* OSPF inter-area route */
98ac6176
OF
386#define RTS_OSPF_EXT1 9 /* OSPF external route type 1 */
387#define RTS_OSPF_EXT2 10 /* OSPF external route type 2 */
388#define RTS_BGP 11 /* BGP route */
389#define RTS_PIPE 12 /* Inter-table wormhole */
58ef912c 390
58ef912c
MM
391#define RTC_UNICAST 0
392#define RTC_BROADCAST 1
393#define RTC_MULTICAST 2
394#define RTC_ANYCAST 3 /* IPv6 Anycast */
395
396#define RTD_ROUTER 0 /* Next hop is neighbor router */
397#define RTD_DEVICE 1 /* Points to device */
398#define RTD_BLACKHOLE 2 /* Silently drop packets */
399#define RTD_UNREACHABLE 3 /* Reject as unreachable */
400#define RTD_PROHIBIT 4 /* Administratively prohibited */
7e95c05d
OZ
401#define RTD_MULTIPATH 5 /* Multipath route (nexthops != NULL) */
402#define RTD_NONE 6 /* Invalid RTD */
58ef912c 403
32f95476
OZ
404 /* Flags for net->n.flags, used by kernel syncer */
405#define KRF_INSTALLED 0x80 /* This route should be installed in the kernel */
406#define KRF_SYNC_ERROR 0x40 /* Error during kernel table synchronization */
407
04925e90
MM
408#define RTAF_CACHED 1 /* This is a cached rta */
409
d1e146f2
OZ
410#define IGP_METRIC_UNKNOWN 0x80000000 /* Default igp_metric used when no other
411 protocol-specific metric is availabe */
412
8d9eef17
OZ
413
414/* Route has regular, reachable nexthop (i.e. not RTD_UNREACHABLE and like) */
415static inline int rte_is_reachable(rte *r)
416{ uint d = r->attrs->dest; return (d == RTD_ROUTER) || (d == RTD_DEVICE) || (d == RTD_MULTIPATH); }
417
418
58ef912c
MM
419/*
420 * Extended Route Attributes
421 */
422
423typedef struct eattr {
b77ae37d
MM
424 word id; /* EA_CODE(EAP_..., protocol-dependent ID) */
425 byte flags; /* Protocol-dependent flags */
426 byte type; /* Attribute type and several flags (EAF_...) */
58ef912c
MM
427 union {
428 u32 data;
429 struct adata *ptr; /* Attribute data elsewhere */
430 } u;
431} eattr;
432
433#define EAP_GENERIC 0 /* Generic attributes */
434#define EAP_BGP 1 /* BGP attributes */
9c9e49ac 435#define EAP_RIP 2 /* RIP */
5919c66e 436#define EAP_OSPF 3 /* OSPF */
71ca7716
OZ
437#define EAP_KRT 4 /* Kernel route attributes */
438#define EAP_MAX 5
58ef912c 439
b77ae37d
MM
440#define EA_CODE(proto,id) (((proto) << 8) | (id))
441#define EA_PROTO(ea) ((ea) >> 8)
442#define EA_ID(ea) ((ea) & 0xff)
443
ba5e5940
OZ
444#define EA_GEN_IGP_METRIC EA_CODE(EAP_GENERIC, 0)
445
8d24b689
MM
446#define EA_CODE_MASK 0xffff
447#define EA_ALLOW_UNDEF 0x10000 /* ea_find: allow EAF_TYPE_UNDEF */
315f23a0 448#define EA_BIT(n) ((n) << 24) /* Used in bitfield accessors */
8d24b689 449
b77ae37d 450#define EAF_TYPE_MASK 0x0f /* Mask with this to get type */
315f23a0 451#define EAF_TYPE_INT 0x01 /* 32-bit unsigned integer number */
b77ae37d 452#define EAF_TYPE_OPAQUE 0x02 /* Opaque byte string (not filterable) */
ca97b489
MM
453#define EAF_TYPE_IP_ADDRESS 0x04 /* IP address */
454#define EAF_TYPE_ROUTER_ID 0x05 /* Router ID (IPv4 address) */
b475c543 455#define EAF_TYPE_AS_PATH 0x06 /* BGP AS path (encoding per RFC 1771:4.3) */
315f23a0 456#define EAF_TYPE_BITFIELD 0x09 /* 32-bit embedded bitfield */
b475c543 457#define EAF_TYPE_INT_SET 0x0a /* Set of u32's (e.g., a community list) */
42a0c054 458#define EAF_TYPE_EC_SET 0x0e /* Set of pairs of u32's - ext. community list */
8d24b689 459#define EAF_TYPE_UNDEF 0x0f /* `force undefined' entry */
b77ae37d 460#define EAF_EMBEDDED 0x01 /* Data stored in eattr.u.data (part of type spec) */
ca97b489 461#define EAF_VAR_LENGTH 0x02 /* Attribute length is variable (part of type spec) */
51a183af 462#define EAF_ORIGINATED 0x40 /* The attribute has originated locally */
9f4929e7 463#define EAF_TEMP 0x80 /* A temporary attribute (the one stored in the tmp attr list) */
58ef912c
MM
464
465struct adata {
ae80a2de 466 uint length; /* Length of data */
58ef912c
MM
467 byte data[0];
468};
469
28a10f84
OZ
470static inline int adata_same(struct adata *a, struct adata *b)
471{ return (a->length == b->length && !memcmp(a->data, b->data, a->length)); }
472
473
58ef912c
MM
474typedef struct ea_list {
475 struct ea_list *next; /* In case we have an override list */
b77ae37d 476 byte flags; /* Flags: EALF_... */
58ef912c 477 byte rfu;
b77ae37d 478 word count; /* Number of attributes */
58ef912c
MM
479 eattr attrs[0]; /* Attribute definitions themselves */
480} ea_list;
481
b77ae37d
MM
482#define EALF_SORTED 1 /* Attributes are sorted by code */
483#define EALF_BISECT 2 /* Use interval bisection for searching */
484#define EALF_CACHED 4 /* Attributes belonging to cached rta */
58ef912c 485
094d2bdb
OZ
486struct rte_src *rt_find_source(struct proto *p, u32 id);
487struct rte_src *rt_get_source(struct proto *p, u32 id);
488static inline void rt_lock_source(struct rte_src *src) { src->uc++; }
489static inline void rt_unlock_source(struct rte_src *src) { src->uc--; }
490void rt_prune_sources(void);
491
9fdf9d29
OZ
492struct ea_walk_state {
493 ea_list *eattrs; /* Ccurrent ea_list, initially set by caller */
494 eattr *ea; /* Current eattr, initially NULL */
495 u32 visited[4]; /* Bitfield, limiting max to 128 */
496};
094d2bdb 497
b77ae37d 498eattr *ea_find(ea_list *, unsigned ea);
9fdf9d29 499eattr *ea_walk(struct ea_walk_state *s, uint id, uint max);
c0100454 500int ea_get_int(ea_list *, unsigned ea, int def);
b77ae37d
MM
501void ea_dump(ea_list *);
502void ea_sort(ea_list *); /* Sort entries in all sub-lists */
6f57dcc0 503unsigned ea_scan(ea_list *); /* How many bytes do we need for merged ea_list */
b77ae37d 504void ea_merge(ea_list *from, ea_list *to); /* Merge sub-lists to allocated buffer */
6f57dcc0 505int ea_same(ea_list *x, ea_list *y); /* Test whether two ea_lists are identical */
ae80a2de 506uint ea_hash(ea_list *e); /* Calculate 16-bit hash value */
ce1da96e 507ea_list *ea_append(ea_list *to, ea_list *what);
315f23a0 508void ea_format_bitfield(struct eattr *a, byte *buf, int bufsize, const char **names, int min, int max);
58ef912c 509
7e95c05d
OZ
510int mpnh__same(struct mpnh *x, struct mpnh *y); /* Compare multipath nexthops */
511static inline int mpnh_same(struct mpnh *x, struct mpnh *y)
512{ return (x == y) || mpnh__same(x, y); }
d217ba51 513struct mpnh *mpnh_merge(struct mpnh *x, struct mpnh *y, int rx, int ry, int max, linpool *lp);
7e95c05d 514
2326b001
MM
515void rta_init(void);
516rta *rta_lookup(rta *); /* Get rta equivalent to this one, uc++ */
094d2bdb 517static inline int rta_is_cached(rta *r) { return r->aflags & RTAF_CACHED; }
2326b001 518static inline rta *rta_clone(rta *r) { r->uc++; return r; }
b77ae37d
MM
519void rta__free(rta *r);
520static inline void rta_free(rta *r) { if (r && !--r->uc) rta__free(r); }
8d9eef17
OZ
521rta *rta_do_cow(rta *o, linpool *lp);
522static inline rta * rta_cow(rta *r, linpool *lp) { return rta_is_cached(r) ? rta_do_cow(r, lp) : r; }
2326b001
MM
523void rta_dump(rta *);
524void rta_dump_all(void);
ce1da96e 525void rta_show(struct cli *, rta *, ea_list *);
1b180121 526void rta_set_recursive_next_hop(rtable *dep, rta *a, rtable *tab, ip_addr *gw, ip_addr *ll);
cfe34a31
OZ
527
528/*
acb04cfd
OZ
529 * rta_set_recursive_next_hop() acquires hostentry from hostcache and fills
530 * rta->hostentry field. New hostentry has zero use count. Cached rta locks its
531 * hostentry (increases its use count), uncached rta does not lock it. Hostentry
532 * with zero use count is removed asynchronously during host cache update,
533 * therefore it is safe to hold such hostentry temorarily. Hostentry holds a
534 * lock for a 'source' rta, mainly to share multipath nexthops.
535 *
536 * There is no need to hold a lock for hostentry->dep table, because that table
537 * contains routes responsible for that hostentry, and therefore is non-empty if
538 * given hostentry has non-zero use count. If the hostentry has zero use count,
539 * the entry is removed before dep is referenced.
540 *
541 * The protocol responsible for routes with recursive next hops should hold a
542 * lock for a 'source' table governing that routes (argument tab to
543 * rta_set_recursive_next_hop()), because its routes reference hostentries
544 * (through rta) related to the governing table. When all such routes are
545 * removed, rtas are immediately removed achieving zero uc. Then the 'source'
546 * table lock could be immediately released, although hostentries may still
547 * exist - they will be freed together with the 'source' table.
cfe34a31
OZ
548 */
549
550static inline void rt_lock_hostentry(struct hostentry *he) { if (he) he->uc++; }
551static inline void rt_unlock_hostentry(struct hostentry *he) { if (he) he->uc--; }
552
2326b001 553
3991d84e
MM
554extern struct protocol *attr_class_to_protocol[EAP_MAX];
555
a8b60382
MM
556/*
557 * Default protocol preferences
558 */
559
560#define DEF_PREF_DIRECT 240 /* Directly connected */
561#define DEF_PREF_STATIC 200 /* Static route */
916c8c0a 562#define DEF_PREF_OSPF 150 /* OSPF intra-area, inter-area and type 1 external routes */
a8b60382
MM
563#define DEF_PREF_RIP 120 /* RIP */
564#define DEF_PREF_BGP 100 /* BGP */
beaf86e1 565#define DEF_PREF_PIPE 70 /* Routes piped from other tables */
916c8c0a 566#define DEF_PREF_INHERITED 10 /* Routes inherited from other routing daemons */
a8b60382 567
cb1bd816
PT
568#define ROA_UNKNOWN 0
569#define ROA_VALID 1
570#define ROA_INVALID 2
571
9656dce7 572#if 0
af582c48
OZ
573
574/*
575 * Route Origin Authorization
576 */
577
578struct roa_item {
579 u32 asn;
580 byte maxlen;
581 byte src;
582 struct roa_item *next;
583};
584
585struct roa_node {
586 struct fib_node n;
587 struct roa_item *items;
588 // u32 cached_asn;
589};
590
591struct roa_table {
592 node n; /* Node in roa_table_list */
593 struct fib fib;
594 char *name; /* Name of this ROA table */
595 struct roa_table_config *cf; /* Configuration of this ROA table */
596};
597
598struct roa_item_config {
599 ip_addr prefix;
600 byte pxlen, maxlen;
601 u32 asn;
602 struct roa_item_config *next;
603};
604
605struct roa_table_config {
606 node n; /* Node in config->rpa_tables */
607 char *name; /* Name of this ROA table */
608 struct roa_table *table;
609
610 struct roa_item_config *roa_items; /* Preconfigured ROA items */
611
612 // char *filename;
613 // int gc_max_ops; /* Maximum number of operations before GC is run */
614 // int gc_min_time; /* Minimum time between two consecutive GC runs */
615};
616
617struct roa_show_data {
618 struct fib_iterator fit;
619 struct roa_table *table;
620 ip_addr prefix;
621 byte pxlen;
622 byte mode; /* ROA_SHOW_* values */
623 u32 asn; /* Filter ASN, 0 -> all */
624};
625
af582c48
OZ
626#define ROA_SRC_ANY 0
627#define ROA_SRC_CONFIG 1
628#define ROA_SRC_DYNAMIC 2
629
630#define ROA_SHOW_ALL 0
631#define ROA_SHOW_PX 1
632#define ROA_SHOW_IN 2
633#define ROA_SHOW_FOR 3
634
635extern struct roa_table *roa_table_default;
636
637void roa_add_item(struct roa_table *t, ip_addr prefix, byte pxlen, byte maxlen, u32 asn, byte src);
638void roa_delete_item(struct roa_table *t, ip_addr prefix, byte pxlen, byte maxlen, u32 asn, byte src);
639void roa_flush(struct roa_table *t, byte src);
640byte roa_check(struct roa_table *t, ip_addr prefix, byte pxlen, u32 asn);
641struct roa_table_config * roa_new_table_config(struct symbol *s);
642void roa_add_item_config(struct roa_table_config *rtc, ip_addr prefix, byte pxlen, byte maxlen, u32 asn);
643void roa_init(void);
644void roa_preconfig(struct config *c);
645void roa_commit(struct config *new, struct config *old);
646void roa_show(struct roa_show_data *d);
647
9656dce7 648#endif
58ef912c 649#endif