iof-bird-daemon / nest / route.h @ ba5e5940
History | View | Annotate | Download (15.8 KB)
1 |
/*
|
---|---|
2 |
* BIRD Internet Routing Daemon -- Routing Table
|
3 |
*
|
4 |
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
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 |
|
12 |
#include "lib/lists.h" |
13 |
#include "lib/resource.h" |
14 |
#include "lib/timer.h" |
15 |
|
16 |
struct protocol;
|
17 |
struct proto;
|
18 |
struct symbol;
|
19 |
struct filter;
|
20 |
struct cli;
|
21 |
|
22 |
/*
|
23 |
* Generic data structure for storing network prefixes. Also used
|
24 |
* for the master routing table. Currently implemented as a hash
|
25 |
* table.
|
26 |
*
|
27 |
* Available operations:
|
28 |
* - insertion of new entry
|
29 |
* - deletion of entry
|
30 |
* - searching for entry by network prefix
|
31 |
* - asynchronous retrieval of fib contents
|
32 |
*/
|
33 |
|
34 |
struct fib_node {
|
35 |
struct fib_node *next; /* Next in hash chain */ |
36 |
struct fib_iterator *readers; /* List of readers of this node */ |
37 |
byte pxlen; |
38 |
byte flags; /* User-defined */
|
39 |
byte x0, x1; /* User-defined */
|
40 |
u32 uid; /* Unique ID based on hash */
|
41 |
ip_addr prefix; /* In host order */
|
42 |
}; |
43 |
|
44 |
struct fib_iterator { /* See lib/slists.h for an explanation */ |
45 |
struct fib_iterator *prev, *next; /* Must be synced with struct fib_node! */ |
46 |
byte efef; /* 0xff to distinguish between iterator and node */
|
47 |
byte pad[3];
|
48 |
struct fib_node *node; /* Or NULL if freshly merged */ |
49 |
unsigned int hash; |
50 |
}; |
51 |
|
52 |
typedef void (*fib_init_func)(struct fib_node *); |
53 |
|
54 |
struct fib {
|
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 */ |
58 |
unsigned int hash_size; /* Number of hash table entries (a power of two) */ |
59 |
unsigned int hash_order; /* Binary logarithm of hash_size */ |
60 |
unsigned int hash_shift; /* 16 - hash_log */ |
61 |
unsigned int entries; /* Number of entries */ |
62 |
unsigned int entries_min, entries_max;/* Entry count limits (else start rehashing) */ |
63 |
fib_init_func init; /* Constructor */
|
64 |
}; |
65 |
|
66 |
void fib_init(struct fib *, pool *, unsigned node_size, unsigned hash_order, fib_init_func init); |
67 |
void *fib_find(struct fib *, ip_addr *, int); /* Find or return NULL if doesn't exist */ |
68 |
void *fib_get(struct fib *, ip_addr *, int); /* Find or create new if nonexistent */ |
69 |
void *fib_route(struct fib *, ip_addr, int); /* Longest-match routing lookup */ |
70 |
void fib_delete(struct fib *, void *); /* Remove fib entry */ |
71 |
void fib_free(struct fib *); /* Destroy the fib */ |
72 |
void fib_check(struct fib *); /* Consistency check for debugging */ |
73 |
|
74 |
void fit_init(struct fib_iterator *, struct fib *); /* Internal functions, don't call */ |
75 |
struct fib_node *fit_get(struct fib *, struct fib_iterator *); |
76 |
void fit_put(struct fib_iterator *, struct fib_node *); |
77 |
|
78 |
#define FIB_WALK(fib, z) do { \ |
79 |
struct fib_node *z, **ff = (fib)->hash_table; \
|
80 |
unsigned int count = (fib)->hash_size; \ |
81 |
while (count--) \
|
82 |
for(z = *ff++; z; z=z->next)
|
83 |
|
84 |
#define FIB_WALK_END } while (0) |
85 |
|
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(;;) { \
|
93 |
if (!z) \
|
94 |
{ \ |
95 |
if (++hpos >= count) \
|
96 |
break; \
|
97 |
z = (fib)->hash_table[hpos]; \ |
98 |
continue; \
|
99 |
} |
100 |
|
101 |
#define FIB_ITERATE_END(z) z = z->next; } } while(0) |
102 |
|
103 |
#define FIB_ITERATE_PUT(it, z) fit_put(it, z)
|
104 |
|
105 |
/*
|
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 |
*
|
110 |
* Each of the RTE's contains variable data (the preference and protocol-dependent
|
111 |
* metrics) and a pointer to a route attribute block common for many routes).
|
112 |
*
|
113 |
* It's guaranteed that there is at most one RTE for every (prefix,proto) pair.
|
114 |
*/
|
115 |
|
116 |
struct rtable_config {
|
117 |
node n; |
118 |
char *name;
|
119 |
struct rtable *table;
|
120 |
struct proto_config *krt_attached; /* Kernel syncer attached to this table */ |
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 */ |
123 |
}; |
124 |
|
125 |
typedef struct rtable { |
126 |
node n; /* Node in list of all tables */
|
127 |
struct fib fib;
|
128 |
char *name; /* Name of this table */ |
129 |
list hooks; /* List of announcement hooks */
|
130 |
int pipe_busy; /* Pipe loop detection */ |
131 |
int use_count; /* Number of protocols using this table */ |
132 |
struct hostcache *hostcache;
|
133 |
struct rtable_config *config; /* Configuration of this table */ |
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 |
*/
|
138 |
struct event *rt_event; /* Routing table event */ |
139 |
int gc_counter; /* Number of operations since last GC */ |
140 |
bird_clock_t gc_time; /* Time of last GC */
|
141 |
byte gc_scheduled; /* GC is scheduled */
|
142 |
byte hcu_scheduled; /* Hostcache update is scheduled */
|
143 |
byte nhu_state; /* Next Hop Update state */
|
144 |
struct fib_iterator nhu_fit; /* Next Hop Update FIB iterator */ |
145 |
} rtable; |
146 |
|
147 |
typedef struct network { |
148 |
struct fib_node n; /* FIB flags reserved for kernel syncer */ |
149 |
struct rte *routes; /* Available routes for this network */ |
150 |
} net; |
151 |
|
152 |
struct hostcache {
|
153 |
slab *slab; /* Slab holding all hostentries */
|
154 |
struct hostentry **hash_table; /* Hash table for hostentries */ |
155 |
unsigned hash_order, hash_shift;
|
156 |
unsigned hash_max, hash_min;
|
157 |
unsigned hash_items;
|
158 |
linpool *lp; /* Linpool for trie */
|
159 |
struct f_trie *trie; /* Trie of prefixes that might affect hostentries */ |
160 |
list hostentries; /* List of all hostentries */
|
161 |
byte update_hostcache; |
162 |
}; |
163 |
|
164 |
struct hostentry {
|
165 |
node ln; |
166 |
ip_addr addr; /* IP address of host, part of key */
|
167 |
ip_addr link; /* (link-local) IP address of host, used as gw
|
168 |
if host is directly attached */
|
169 |
struct rtable *tab; /* Dependent table, part of key*/ |
170 |
struct hostentry *next; /* Next in hash chain */ |
171 |
unsigned hash_key; /* Hash key */ |
172 |
unsigned uc; /* Use count */ |
173 |
struct iface *iface; /* Chosen outgoing interface */ |
174 |
ip_addr gw; /* Chosen next hop */
|
175 |
byte dest; /* Chosen route destination type (RTD_...) */
|
176 |
u32 igp_metric; /* Chosen route IGP metric */
|
177 |
}; |
178 |
|
179 |
typedef struct rte { |
180 |
struct rte *next;
|
181 |
net *net; /* Network this RTE belongs to */
|
182 |
struct proto *sender; /* Protocol instance that sent the route to the routing table */ |
183 |
struct rta *attrs; /* Attributes of this route */ |
184 |
byte flags; /* Flags (REF_...) */
|
185 |
byte pflags; /* Protocol-specific flags */
|
186 |
word pref; /* Route preference */
|
187 |
bird_clock_t lastmod; /* Last modified */
|
188 |
union { /* Protocol-dependent data (metrics etc.) */ |
189 |
#ifdef CONFIG_RIP
|
190 |
struct {
|
191 |
node garbage; /* List for garbage collection */
|
192 |
byte metric; /* RIP metric */
|
193 |
u16 tag; /* External route tag */
|
194 |
struct rip_entry *entry;
|
195 |
} rip; |
196 |
#endif
|
197 |
#ifdef CONFIG_OSPF
|
198 |
struct {
|
199 |
u32 metric1, metric2; /* OSPF Type 1 and Type 2 metrics */
|
200 |
u32 tag; /* External route tag */
|
201 |
u32 router_id; /* Router that originated this route */
|
202 |
} ospf; |
203 |
#endif
|
204 |
struct { /* Routes generated by krt sync (both temporary and inherited ones) */ |
205 |
s8 src; /* Alleged route source (see krt.h) */
|
206 |
u8 proto; /* Kernel source protocol ID */
|
207 |
u8 type; /* Kernel route type */
|
208 |
u8 seen; /* Seen during last scan */
|
209 |
u32 metric; /* Kernel metric */
|
210 |
} krt; |
211 |
} u; |
212 |
} rte; |
213 |
|
214 |
#define REF_COW 1 /* Copy this rte on write */ |
215 |
|
216 |
/* Types of route announcement, also used as flags */
|
217 |
#define RA_OPTIMAL 1 /* Announcement of optimal route change */ |
218 |
#define RA_ANY 2 /* Announcement of any route change */ |
219 |
|
220 |
struct config;
|
221 |
|
222 |
void rt_init(void); |
223 |
void rt_preconfig(struct config *); |
224 |
void rt_commit(struct config *new, struct config *old); |
225 |
void rt_lock_table(rtable *);
|
226 |
void rt_unlock_table(rtable *);
|
227 |
void rt_setup(pool *, rtable *, char *, struct rtable_config *); |
228 |
static inline net *net_find(rtable *tab, ip_addr addr, unsigned len) { return (net *) fib_find(&tab->fib, &addr, len); } |
229 |
static inline net *net_get(rtable *tab, ip_addr addr, unsigned len) { return (net *) fib_get(&tab->fib, &addr, len); } |
230 |
rte *rte_find(net *net, struct proto *p);
|
231 |
rte *rte_get_temp(struct rta *);
|
232 |
void rte_update(rtable *tab, net *net, struct proto *p, struct proto *src, rte *new); |
233 |
void rte_discard(rtable *tab, rte *old);
|
234 |
void rte_dump(rte *);
|
235 |
void rte_free(rte *);
|
236 |
rte *rte_do_cow(rte *); |
237 |
static inline rte * rte_cow(rte *r) { return (r->flags & REF_COW) ? rte_do_cow(r) : r; } |
238 |
void rt_dump(rtable *);
|
239 |
void rt_dump_all(void); |
240 |
int rt_feed_baby(struct proto *p); |
241 |
void rt_feed_baby_abort(struct proto *p); |
242 |
void rt_prune_all(void); |
243 |
struct rtable_config *rt_new_table(struct symbol *s); |
244 |
|
245 |
struct rt_show_data {
|
246 |
ip_addr prefix; |
247 |
unsigned pxlen;
|
248 |
rtable *table; |
249 |
struct filter *filter;
|
250 |
int verbose;
|
251 |
struct fib_iterator fit;
|
252 |
struct proto *show_protocol;
|
253 |
struct proto *export_protocol;
|
254 |
int export_mode, primary_only;
|
255 |
struct config *running_on_config;
|
256 |
int net_counter, rt_counter, show_counter;
|
257 |
int stats, show_for;
|
258 |
}; |
259 |
void rt_show(struct rt_show_data *); |
260 |
|
261 |
/*
|
262 |
* Route Attributes
|
263 |
*
|
264 |
* Beware: All standard BGP attributes must be represented here instead
|
265 |
* of making them local to the route. This is needed to ensure proper
|
266 |
* construction of BGP route attribute lists.
|
267 |
*/
|
268 |
|
269 |
typedef struct rta { |
270 |
struct rta *next, **pprev; /* Hash chain */ |
271 |
struct proto *proto; /* Protocol instance that originally created the route */ |
272 |
unsigned uc; /* Use count */ |
273 |
byte source; /* Route source (RTS_...) */
|
274 |
byte scope; /* Route scope (SCOPE_... -- see ip.h) */
|
275 |
byte cast; /* Casting type (RTC_...) */
|
276 |
byte dest; /* Route destination type (RTD_...) */
|
277 |
byte flags; /* Route flags (RTF_...), now unused */
|
278 |
byte aflags; /* Attribute cache flags (RTAF_...) */
|
279 |
u16 hash_key; /* Hash over important fields */
|
280 |
u32 igp_metric; /* IGP metric to next hop (for iBGP routes) */
|
281 |
ip_addr gw; /* Next hop */
|
282 |
ip_addr from; /* Advertising router */
|
283 |
struct hostentry *hostentry; /* Hostentry for recursive next-hops */ |
284 |
struct iface *iface; /* Outgoing interface */ |
285 |
struct ea_list *eattrs; /* Extended Attribute chain */ |
286 |
} rta; |
287 |
|
288 |
#define RTS_DUMMY 0 /* Dummy route to be removed soon */ |
289 |
#define RTS_STATIC 1 /* Normal static route */ |
290 |
#define RTS_INHERIT 2 /* Route inherited from kernel */ |
291 |
#define RTS_DEVICE 3 /* Device route */ |
292 |
#define RTS_STATIC_DEVICE 4 /* Static device route */ |
293 |
#define RTS_REDIRECT 5 /* Learned via redirect */ |
294 |
#define RTS_RIP 6 /* RIP route */ |
295 |
#define RTS_OSPF 7 /* OSPF route */ |
296 |
#define RTS_OSPF_IA 8 /* OSPF inter-area route */ |
297 |
#define RTS_OSPF_EXT1 9 /* OSPF external route type 1 */ |
298 |
#define RTS_OSPF_EXT2 10 /* OSPF external route type 2 */ |
299 |
#define RTS_BGP 11 /* BGP route */ |
300 |
#define RTS_PIPE 12 /* Inter-table wormhole */ |
301 |
|
302 |
#define RTC_UNICAST 0 |
303 |
#define RTC_BROADCAST 1 |
304 |
#define RTC_MULTICAST 2 |
305 |
#define RTC_ANYCAST 3 /* IPv6 Anycast */ |
306 |
|
307 |
#define RTD_ROUTER 0 /* Next hop is neighbor router */ |
308 |
#define RTD_DEVICE 1 /* Points to device */ |
309 |
#define RTD_BLACKHOLE 2 /* Silently drop packets */ |
310 |
#define RTD_UNREACHABLE 3 /* Reject as unreachable */ |
311 |
#define RTD_PROHIBIT 4 /* Administratively prohibited */ |
312 |
#define RTD_NONE 5 /* Invalid RTD */ |
313 |
|
314 |
#define RTAF_CACHED 1 /* This is a cached rta */ |
315 |
|
316 |
#define IGP_METRIC_UNKNOWN 0x80000000 /* Default igp_metric used when no other |
317 |
protocol-specific metric is availabe */
|
318 |
|
319 |
/*
|
320 |
* Extended Route Attributes
|
321 |
*/
|
322 |
|
323 |
typedef struct eattr { |
324 |
word id; /* EA_CODE(EAP_..., protocol-dependent ID) */
|
325 |
byte flags; /* Protocol-dependent flags */
|
326 |
byte type; /* Attribute type and several flags (EAF_...) */
|
327 |
union {
|
328 |
u32 data; |
329 |
struct adata *ptr; /* Attribute data elsewhere */ |
330 |
} u; |
331 |
} eattr; |
332 |
|
333 |
#define EAP_GENERIC 0 /* Generic attributes */ |
334 |
#define EAP_BGP 1 /* BGP attributes */ |
335 |
#define EAP_RIP 2 /* RIP */ |
336 |
#define EAP_OSPF 3 /* OSPF */ |
337 |
#define EAP_MAX 4 |
338 |
|
339 |
#define EA_CODE(proto,id) (((proto) << 8) | (id)) |
340 |
#define EA_PROTO(ea) ((ea) >> 8) |
341 |
#define EA_ID(ea) ((ea) & 0xff) |
342 |
|
343 |
#define EA_GEN_IGP_METRIC EA_CODE(EAP_GENERIC, 0) |
344 |
|
345 |
#define EA_CODE_MASK 0xffff |
346 |
#define EA_ALLOW_UNDEF 0x10000 /* ea_find: allow EAF_TYPE_UNDEF */ |
347 |
|
348 |
#define EAF_TYPE_MASK 0x0f /* Mask with this to get type */ |
349 |
#define EAF_TYPE_INT 0x01 /* 32-bit signed integer number */ |
350 |
#define EAF_TYPE_OPAQUE 0x02 /* Opaque byte string (not filterable) */ |
351 |
#define EAF_TYPE_IP_ADDRESS 0x04 /* IP address */ |
352 |
#define EAF_TYPE_ROUTER_ID 0x05 /* Router ID (IPv4 address) */ |
353 |
#define EAF_TYPE_AS_PATH 0x06 /* BGP AS path (encoding per RFC 1771:4.3) */ |
354 |
#define EAF_TYPE_INT_SET 0x0a /* Set of u32's (e.g., a community list) */ |
355 |
#define EAF_TYPE_UNDEF 0x0f /* `force undefined' entry */ |
356 |
#define EAF_EMBEDDED 0x01 /* Data stored in eattr.u.data (part of type spec) */ |
357 |
#define EAF_VAR_LENGTH 0x02 /* Attribute length is variable (part of type spec) */ |
358 |
#define EAF_ORIGINATED 0x40 /* The attribute has originated locally */ |
359 |
#define EAF_TEMP 0x80 /* A temporary attribute (the one stored in the tmp attr list) */ |
360 |
|
361 |
struct adata {
|
362 |
unsigned int length; /* Length of data */ |
363 |
byte data[0];
|
364 |
}; |
365 |
|
366 |
typedef struct ea_list { |
367 |
struct ea_list *next; /* In case we have an override list */ |
368 |
byte flags; /* Flags: EALF_... */
|
369 |
byte rfu; |
370 |
word count; /* Number of attributes */
|
371 |
eattr attrs[0]; /* Attribute definitions themselves */ |
372 |
} ea_list; |
373 |
|
374 |
#define EALF_SORTED 1 /* Attributes are sorted by code */ |
375 |
#define EALF_BISECT 2 /* Use interval bisection for searching */ |
376 |
#define EALF_CACHED 4 /* Attributes belonging to cached rta */ |
377 |
|
378 |
eattr *ea_find(ea_list *, unsigned ea);
|
379 |
int ea_get_int(ea_list *, unsigned ea, int def); |
380 |
void ea_dump(ea_list *);
|
381 |
void ea_sort(ea_list *); /* Sort entries in all sub-lists */ |
382 |
unsigned ea_scan(ea_list *); /* How many bytes do we need for merged ea_list */ |
383 |
void ea_merge(ea_list *from, ea_list *to); /* Merge sub-lists to allocated buffer */ |
384 |
int ea_same(ea_list *x, ea_list *y); /* Test whether two ea_lists are identical */ |
385 |
unsigned int ea_hash(ea_list *e); /* Calculate 16-bit hash value */ |
386 |
void ea_format(eattr *e, byte *buf);
|
387 |
#define EA_FORMAT_BUF_SIZE 256 |
388 |
ea_list *ea_append(ea_list *to, ea_list *what); |
389 |
|
390 |
void rta_init(void); |
391 |
rta *rta_lookup(rta *); /* Get rta equivalent to this one, uc++ */
|
392 |
static inline rta *rta_clone(rta *r) { r->uc++; return r; } |
393 |
void rta__free(rta *r);
|
394 |
static inline void rta_free(rta *r) { if (r && !--r->uc) rta__free(r); } |
395 |
void rta_dump(rta *);
|
396 |
void rta_dump_all(void); |
397 |
void rta_show(struct cli *, rta *, ea_list *); |
398 |
void rta_set_recursive_next_hop(rtable *dep, rta *a, rtable *tab, ip_addr *gw, ip_addr *ll);
|
399 |
|
400 |
/*
|
401 |
* rta_set_recursive_next_hop() acquires hostentry from hostcache and
|
402 |
* fills rta->hostentry field. New hostentry has zero use
|
403 |
* count. Cached rta locks its hostentry (increases its use count),
|
404 |
* uncached rta does not lock it. Hostentry with zero use count is
|
405 |
* removed asynchronously during host cache update, therefore it is
|
406 |
* safe to hold such hostentry temorarily. There is no need to hold
|
407 |
* a lock for hostentry->dep table, because that table contains routes
|
408 |
* responsible for that hostentry, and therefore is non-empty if given
|
409 |
* hostentry has non-zero use count. The protocol responsible for routes
|
410 |
* with recursive next hops should also hold a lock for a table governing
|
411 |
* that routes (argument tab to rta_set_recursive_next_hop()).
|
412 |
*/
|
413 |
|
414 |
static inline void rt_lock_hostentry(struct hostentry *he) { if (he) he->uc++; } |
415 |
static inline void rt_unlock_hostentry(struct hostentry *he) { if (he) he->uc--; } |
416 |
|
417 |
|
418 |
extern struct protocol *attr_class_to_protocol[EAP_MAX]; |
419 |
|
420 |
/*
|
421 |
* Default protocol preferences
|
422 |
*/
|
423 |
|
424 |
#define DEF_PREF_DIRECT 240 /* Directly connected */ |
425 |
#define DEF_PREF_STATIC 200 /* Static route */ |
426 |
#define DEF_PREF_OSPF 150 /* OSPF intra-area, inter-area and type 1 external routes */ |
427 |
#define DEF_PREF_RIP 120 /* RIP */ |
428 |
#define DEF_PREF_BGP 100 /* BGP */ |
429 |
#define DEF_PREF_PIPE 70 /* Routes piped from other tables */ |
430 |
#define DEF_PREF_INHERITED 10 /* Routes inherited from other routing daemons */ |
431 |
|
432 |
#endif
|